diff --git a/bower.json b/bower.json index c99e414b673d24141abf188099212337f4ca9e61..ca57065d96bb8efcaf2c5b8abc6f8df2d6347bf8 100644 --- a/bower.json +++ b/bower.json @@ -26,7 +26,8 @@ "isotope": "<3.0", "openSans": "https://google-fonts.azurewebsites.net/googleFonts/openSans?family=Open+Sans:400,300,300italic,400italic,600,600italic,700,700italic,800,800italic", "jquery-backstretch": "~2.1.15", - "jsgettext": "~0.8.1" + "jsgettext": "~0.8.1", + "jquery.redirect": "^1.0.4" }, "resolutions": { "bootstrap": "~3.3.6", diff --git a/gui/slick/js/ajaxEpSearch.js b/gui/slick/js/ajaxEpSearch.js index e7931794258000840b7476a2e623de086293deae..ca107faabae57203a9917db2fd7d2b082fc610b8 100644 --- a/gui/slick/js/ajaxEpSearch.js +++ b/gui/slick/js/ajaxEpSearch.js @@ -143,8 +143,8 @@ $(document).ready(function () { // Create var for img under anchor and set options for the loading gif var icon = selectedEpisode.children('span'); - icon.prop('title','Loading'); - icon.prop('alt','Loading'); + icon.prop('title', _('Loading') ); + icon.prop('alt', _('Loading') ); icon.prop('class', stupidOptions.loadingClass); var url = selectedEpisode.prop('href'); diff --git a/gui/slick/js/browser.js b/gui/slick/js/browser.js index dd2ed88ed6fee29eebe26b2e9ae6dd804f8a1c45..336fbe9507d15e3684f87177de768fcaa9c22bc0 100644 --- a/gui/slick/js/browser.js +++ b/gui/slick/js/browser.js @@ -3,7 +3,7 @@ $.Browser = { defaults: { - title: 'Choose Directory', + title: _('Choose Directory'), url: srRoot + '/browser/', autocompleteURL: srRoot + '/browser/complete', includeFiles: 0, diff --git a/gui/slick/js/core.js b/gui/slick/js/core.js index 7e3e5566bcfb2c6380ec3aa7204934c78338d2f6..69223d825a8de06f8f692c2ed2c6d41bae37ad9e 100644 --- a/gui/slick/js/core.js +++ b/gui/slick/js/core.js @@ -88,13 +88,11 @@ var gt = null; if ($('html').attr('lang') !== '') { $.ajax({ dataType: "json", - url: srRoot + '/locale/messages.json', + url: srRoot + '/ui/locale.json', async: true, // NOTE: This should be false, but it logs a `deprecated` warning from jQuery. success: function(data) { - gt = new Gettext(data.messages); // jshint ignore:line - }, - failure: function() { - gt = new Gettext(); // jshint ignore:line + var toLoad = data === undefined ? null : data.messages; + gt = new Gettext(toLoad); // jshint ignore:line } }); } else { @@ -442,9 +440,9 @@ var SICKRAGE = { }); }, index: function() { - $('#log_dir').fileBrowser({title: 'Select log file folder location'}); - $('#sickrage_background_path').fileBrowser({title: 'Select Background Image', key: 'sickrage_background_path', includeFiles: 1, fileTypes: ['images']}); - $('#custom_css_path').fileBrowser({title: 'Select CSS file', key: 'custom_css_path', includeFiles: 1, fileTypes: ['css']}); + $('#log_dir').fileBrowser({title: _('Select log file folder location')}); + $('#sickrage_background_path').fileBrowser({title: _('Select Background Image'), key: 'sickrage_background_path', includeFiles: 1, fileTypes: ['images']}); + $('#custom_css_path').fileBrowser({title: _('Select CSS file'), key: 'custom_css_path', includeFiles: 1, fileTypes: ['css']}); }, backupRestore: function(){ $('#Backup').on('click', function() { @@ -468,8 +466,8 @@ var SICKRAGE = { }); }); - $('#backupDir').fileBrowser({ title: 'Select backup folder to save to', key: 'backupPath' }); - $('#backupFile').fileBrowser({ title: 'Select backup files to restore', key: 'backupFile', includeFiles: 1 }); + $('#backupDir').fileBrowser({ title: _('Select backup folder to save to'), key: 'backupPath' }); + $('#backupFile').fileBrowser({ title: _('Select backup files to restore'), key: 'backupFile', includeFiles: 1 }); $('#config-components').tabs(); }, notifications: function() { @@ -478,7 +476,7 @@ var SICKRAGE = { growl.host = $.trim($('#growl_host').val()); growl.password = $.trim($('#growl_password').val()); if (!growl.host) { - $('#testGrowl-result').html(_('Please fill out the necessary fields above.')); + $('#testGrowl-result').html( _('Please fill out the necessary fields above.') ); $('#growl_host').addClass('warning'); return; } @@ -499,7 +497,7 @@ var SICKRAGE = { prowl.api = $.trim($('#prowl_api').val()); prowl.priority = $('#prowl_priority').val(); if (!prowl.api) { - $('#testProwl-result').html(_('Please fill out the necessary fields above.')); + $('#testProwl-result').html( _('Please fill out the necessary fields above.') ); $('#prowl_api').addClass('warning'); return; } @@ -521,7 +519,7 @@ var SICKRAGE = { kodi.username = $.trim($('#kodi_username').val()); kodi.password = $.trim($('#kodi_password').val()); if (!kodi.host) { - $('#testKODI-result').html(_('Please fill out the necessary fields above.')); + $('#testKODI-result').html( _('Please fill out the necessary fields above.') ); $('#kodi_host').addClass('warning'); return; } @@ -545,7 +543,7 @@ var SICKRAGE = { plex.client.username = $.trim($('#plex_client_username').val()); plex.client.password = $.trim($('#plex_client_password').val()); if (!plex.client.host) { - $('#testPHT-result').html(_('Please fill out the necessary fields above.')); + $('#testPHT-result').html( _('Please fill out the necessary fields above.') ); $('#plex_client_host').addClass('warning'); return; } @@ -570,7 +568,7 @@ var SICKRAGE = { plex.server.password = $.trim($('#plex_server_password').val()); plex.server.token = $.trim($('#plex_server_token').val()); if (!plex.server.host) { - $('#testPMS-result').html(_('Please fill out the necessary fields above.')); + $('#testPMS-result').html( _('Please fill out the necessary fields above.') ); $('#plex_server_host').addClass('warning'); return; } @@ -593,7 +591,7 @@ var SICKRAGE = { emby.host = $('#emby_host').val(); emby.apikey = $('#emby_apikey').val(); if (!emby.host || !emby.apikey) { - $('#testEMBY-result').html(_('Please fill out the necessary fields above.')); + $('#testEMBY-result').html( _('Please fill out the necessary fields above.') ); if (!emby.host) { $('#emby_host').addClass('warning'); } else { @@ -622,7 +620,7 @@ var SICKRAGE = { var boxcar2 = {}; boxcar2.accesstoken = $.trim($('#boxcar2_accesstoken').val()); if (!boxcar2.accesstoken) { - $('#testBoxcar2-result').html(_('Please fill out the necessary fields above.')); + $('#testBoxcar2-result').html( _('Please fill out the necessary fields above.') ); $('#boxcar2_accesstoken').addClass('warning'); return; } @@ -642,7 +640,7 @@ var SICKRAGE = { pushover.userkey = $('#pushover_userkey').val(); pushover.apikey = $('#pushover_apikey').val(); if (!pushover.userkey || !pushover.apikey) { - $('#testPushover-result').html(_('Please fill out the necessary fields above.')); + $('#testPushover-result').html( _('Please fill out the necessary fields above.') ); if (!pushover.userkey) { $('#pushover_userkey').addClass('warning'); } else { @@ -679,7 +677,7 @@ var SICKRAGE = { $.get(srRoot + '/home/twitterStep1', function (data) { window.open(data); }).done(function() { - $('#testTwitter-result').html('<b>Step1:</b> Confirm Authorization'); + $('#testTwitter-result').html( _('<b>Step 1:</b> Confirm Authorization') ); }); }); @@ -687,7 +685,7 @@ var SICKRAGE = { var twitter = {}; twitter.key = $.trim($('#twitter_key').val()); if (!twitter.key) { - $('#testTwitter-result').html(_('Please fill out the necessary fields above.')); + $('#testTwitter-result').html( _('Please fill out the necessary fields above.') ); $('#twitter_key').addClass('warning'); return; } @@ -766,7 +764,7 @@ var SICKRAGE = { nmj.database = $('#nmj_database').val(); nmj.mount = $('#nmj_mount').val(); if (!nmj.host) { - $('#testNMJ-result').html(_('Please fill out the necessary fields above.')); + $('#testNMJ-result').html( _('Please fill out the necessary fields above.') ); $('#nmj_host').addClass('warning'); return; } @@ -826,7 +824,7 @@ var SICKRAGE = { var nmjv2 = {}; nmjv2.host = $.trim($('#nmjv2_host').val()); if (!nmjv2.host) { - $('#testNMJv2-result').html(_('Please fill out the necessary fields above.')); + $('#testNMJv2-result').html( _('Please fill out the necessary fields above.') ); $('#nmjv2_host').addClass('warning'); return; } @@ -846,7 +844,7 @@ var SICKRAGE = { freemobile.id = $.trim($('#freemobile_id').val()); freemobile.apikey = $.trim($('#freemobile_apikey').val()); if (!freemobile.id || !freemobile.apikey) { - $('#testFreeMobile-result').html(_('Please fill out the necessary fields above.')); + $('#testFreeMobile-result').html( _('Please fill out the necessary fields above.') ); if (!freemobile.id) { $('#freemobile_id').addClass('warning'); } else { @@ -876,7 +874,7 @@ var SICKRAGE = { telegram.id = $.trim($('#telegram_id').val()); telegram.apikey = $.trim($('#telegram_apikey').val()); if (!telegram.id || !telegram.apikey) { - $('#testTelegram-result').html(_('Please fill out the necessary fields above.')); + $('#testTelegram-result').html( _('Please fill out the necessary fields above.') ); if (!telegram.id) { $('#telegram_id').addClass('warning'); } else { @@ -906,7 +904,7 @@ var SICKRAGE = { join.id = $.trim($('#join_id').val()); join.apikey = $.trim($('#join_apikey').val()); if (!join.id || !join.apikey) { - $('#testJoin-result').html(_('Please fill out the necessary fields above.')); + $('#testJoin-result').html( _('Please fill out the necessary fields above.') ); if (!join.id) { $('#join_id').addClass('warning'); } else { @@ -966,7 +964,7 @@ var SICKRAGE = { trakt.username = $.trim($('#trakt_username').val()); trakt.trendingBlacklist = $.trim($('#trakt_blacklist_name').val()); if (!trakt.username) { - $('#testTrakt-result').html(_('Please fill out the necessary fields above.')); + $('#testTrakt-result').html( _('Please fill out the necessary fields above.') ); if (!trakt.username) { $('#trakt_username').addClass('warning'); } else { @@ -976,7 +974,7 @@ var SICKRAGE = { } if (/\s/g.test(trakt.trendingBlacklist)) { - $('#testTrakt-result').html('Check blacklist name; the value needs to be a trakt slug'); + $('#testTrakt-result').html( _('Check blacklist name; the value needs to be a trakt slug') ); $('#trakt_blacklist_name').addClass('warning'); return; } @@ -1021,7 +1019,7 @@ var SICKRAGE = { } else { to = prompt('Enter an email address to send the test to:', null); if (to === null || to.length === 0 || to.match(/.*@.*/) === null) { - status.html('<p style="color: red;">You must provide a recipient email address!</p>'); + status.html('<p style="color: red;">' + _('You must provide a recipient email address!') + '</p>'); } else { $.post(srRoot + '/home/testEmail', { 'host': host, @@ -1043,7 +1041,7 @@ var SICKRAGE = { nma.api = $.trim($('#nma_api').val()); nma.priority = $('#nma_priority').val(); if (!nma.api) { - $('#testNMA-result').html(_('Please fill out the necessary fields above.')); + $('#testNMA-result').html( _('Please fill out the necessary fields above.') ); $('#nma_api').addClass('warning'); return; } @@ -1063,7 +1061,7 @@ var SICKRAGE = { var pushalot = {}; pushalot.authToken = $.trim($('#pushalot_authorizationtoken').val()); if (!pushalot.authToken) { - $('#testPushalot-result').html(_('Please fill out the necessary fields above.')); + $('#testPushalot-result').html( _('Please fill out the necessary fields above.') ); $('#pushalot_authorizationtoken').addClass('warning'); return; } @@ -1082,7 +1080,7 @@ var SICKRAGE = { var pushbullet = {}; pushbullet.api = $.trim($('#pushbullet_api').val()); if (!pushbullet.api) { - $('#testPushbullet-result').html(_('Please fill out the necessary fields above.')); + $('#testPushbullet-result').html( _('Please fill out the necessary fields above.') ); $('#pushbullet_api').addClass('warning'); return; } @@ -1106,7 +1104,7 @@ var SICKRAGE = { } if(!pushbullet.api) { - $('#testPushbullet-result').html("You didn't supply a Pushbullet api key"); + $('#testPushbullet-result').html( _("You didn't supply a Pushbullet api key") ); $("#pushbullet_api").focus(); return false; } @@ -1132,7 +1130,7 @@ var SICKRAGE = { $("#pushbullet_device_list").on('change', function(){ $("#pushbullet_device").val($("#pushbullet_device_list").val()); - $('#testPushbullet-result').html("Don't forget to save your new pushbullet settings."); + $('#testPushbullet-result').html( _("Don't forget to save your new pushbullet settings.") ); }); $.post(srRoot + "/home/getPushbulletChannels", { @@ -1161,7 +1159,7 @@ var SICKRAGE = { $("#pushbullet_channel_list").on('change', function () { $("#pushbullet_channel").val($("#pushbullet_channel_list").val()); - $('#testPushbullet-result').html("Don't forget to save your new pushbullet settings."); + $('#testPushbullet-result').html( _("Don't forget to save your new pushbullet settings.") ); }); }); } @@ -1261,8 +1259,8 @@ var SICKRAGE = { }, postProcessing: function() { $('#config-components').tabs(); - $('#tv_download_dir').fileBrowser({ title: 'Select TV Download Directory' }); - $('#unpack_dir').fileBrowser({ title: 'Select Unpack Directory' }); + $('#tv_download_dir').fileBrowser({ title: _('Select TV Download Directory') }); + $('#unpack_dir').fileBrowser({ title: _('Select Unpack Directory') }); // http://stackoverflow.com/questions/2219924/idiomatic-jquery-delayed-event-only-after-a-short-pause-in-typing-e-g-timew var typewatch = (function () { @@ -1817,9 +1815,9 @@ var SICKRAGE = { }, search: function() { $('#config-components').tabs(); - $('#nzb_dir').fileBrowser({ title: 'Select .nzb black hole/watch location' }); - $('#torrent_dir').fileBrowser({ title: 'Select .torrent black hole/watch location' }); - $('#torrent_path').fileBrowser({ title: 'Select .torrent download location' }); + $('#nzb_dir').fileBrowser({ title: _('Select .nzb black hole/watch location') }); + $('#torrent_dir').fileBrowser({ title: _('Select .torrent black hole/watch location') }); + $('#torrent_path').fileBrowser({ title: _('Select .torrent download location') }); $.fn.nzbMethodHandler = function() { var selectedProvider = $('#nzb_method :selected').val(), @@ -1899,18 +1897,18 @@ var SICKRAGE = { if (selectedProvider.toLowerCase() === 'utorrent') { client = 'uTorrent'; $('#torrent_path_option').hide(); - $('#torrent_seed_time_label').text('Minimum seeding time is'); + $('#torrent_seed_time_label').text( _('Minimum seeding time is') ); $('#torrent_seed_time_option').show(); - $('#host_desc_torrent').text('URL to your uTorrent client (e.g. http://localhost:8000)'); + $('#host_desc_torrent').text( _('URL to your uTorrent client (e.g. http://localhost:8000)') ); } else if (selectedProvider.toLowerCase() === 'transmission'){ client = 'Transmission'; - $('#torrent_seed_time_label').text('Stop seeding when inactive for'); + $('#torrent_seed_time_label').text( _('Stop seeding when inactive for') ); $('#torrent_seed_time_option').show(); $('#torrent_high_bandwidth_option').show(); $('#torrent_label_option').hide(); $('#torrent_label_anime_option').hide(); $('#torrent_rpcurl_option').show(); - $('#host_desc_torrent').text('URL to your Transmission client (e.g. http://localhost:9091)'); + $('#host_desc_torrent').text( _('URL to your Transmission client (e.g. http://localhost:9091)') ); } else if (selectedProvider.toLowerCase() === 'deluge'){ client = 'Deluge'; $('#torrent_verify_cert_option').show(); @@ -1920,7 +1918,7 @@ var SICKRAGE = { $('#label_anime_warning_deluge').show(); $('#torrent_username_option').hide(); $('#torrent_username').prop('value', ''); - $('#host_desc_torrent').text('URL to your Deluge client (e.g. http://localhost:8112)'); + $('#host_desc_torrent').text( _('URL to your Deluge client (e.g. http://localhost:8112)') ); } else if (selectedProvider.toLowerCase() === 'deluged'){ client = 'Deluge'; $('#torrent_verify_cert_option').hide(); @@ -1929,18 +1927,19 @@ var SICKRAGE = { $('#label_warning_deluge').show(); $('#label_anime_warning_deluge').show(); $('#torrent_username_option').show(); - $('#host_desc_torrent').text('IP or Hostname of your Deluge Daemon (e.g. scgi://localhost:58846)'); + $('#host_desc_torrent').text( _('IP or Hostname of your Deluge Daemon (e.g. scgi://localhost:58846)') ); } else if (selectedProvider.toLowerCase() === 'download_station'){ client = 'Synology DS'; $('#torrent_label_option').hide(); $('#torrent_label_anime_option').hide(); $('#torrent_paused_option').hide(); $('#torrent_path_option').find('.fileBrowser').hide(); - $('#host_desc_torrent').text('URL to your Synology DS client (e.g. http://localhost:5000)'); + $('#host_desc_torrent').text( _('URL to your Synology DS client (e.g. http://localhost:5000)') ); $('#path_synology').show(); } else if (selectedProvider.toLowerCase() === 'rtorrent'){ client = 'rTorrent'; - $('#host_desc_torrent').text('URL to your rTorrent client (e.g. scgi://localhost:5000 <br> or https://localhost/rutorrent/plugins/httprpc/action.php)'); + $('#host_desc_torrent').html( _('URL to your rTorrent client (e.g. scgi://localhost:5000 <br> ' + + 'or https://localhost/rutorrent/plugins/httprpc/action.php)') ); $('#torrent_verify_cert_option').show(); $('#torrent_verify_deluge').hide(); $('#torrent_verify_rtorrent').show(); @@ -1950,7 +1949,7 @@ var SICKRAGE = { $('#torrent_path_option').hide(); $('#label_warning_qbittorrent').show(); $('#label_anime_warning_qbittorrent').show(); - $('#host_desc_torrent').text('URL to your qbittorrent client (e.g. http://localhost:8080)'); + $('#host_desc_torrent').text( _('URL to your qBittorrent client (e.g. http://localhost:8080)') ); } else if (selectedProvider.toLowerCase() === 'mlnet'){ client = 'mlnet'; $('#torrent_path_option').hide(); @@ -1960,7 +1959,7 @@ var SICKRAGE = { $('#torrent_verify_rtorrent').hide(); $('#torrent_label_anime_option').hide(); $('#torrent_paused_option').hide(); - $('#host_desc_torrent').text('URL to your MLDonkey (e.g. http://localhost:4080)'); + $('#host_desc_torrent').text( _('URL to your MLDonkey (e.g. http://localhost:4080)') ); } else if (selectedProvider.toLowerCase() === 'putio'){ client = 'putio'; @@ -1972,10 +1971,11 @@ var SICKRAGE = { $('#torrent_label_anime_option').hide(); $('#torrent_paused_option').hide(); $('#torrent_host_option').hide(); - $('#host_desc_torrent').text('URL to your putio client (e.g. http://localhost:8080)'); - $('label[for="torrent_password"]').text('Create a new OAuth app for put.io at https://app.put.io/oauth/apps/new'); - $('#username_title.component-title').text('Put.io Parent Folder'); - $('#password_title.component-title').text('Put.io OAuth Token'); + $('#host_desc_torrent').text( _('URL to your putio client (e.g. http://localhost:8080)') ); + $('label[for="torrent_password"]').text( _('<a herf="https://app.put.io/oauth/apps/new" target="_blank"> ' + + 'Create a new OAuth app for put.io</a>') ); + $('#username_title.component-title').text( _('Put.io Parent Folder') ); + $('#password_title.component-title').text( _('Put.io OAuth Token') ); } $('#host_title').text(client + host); $('#username_title').text(client + username); @@ -3380,12 +3380,12 @@ var SICKRAGE = { $('.collapse.toggle').on('hide.bs.collapse', function () { var reg = /collapseSeason-([0-9]+)/g; var result = reg.exec(this.id); - $('#showseason-' + result[1]).text('Show Episodes'); + $('#showseason-' + result[1]).text( _('Show Episodes') ); }); $('.collapse.toggle').on('show.bs.collapse', function () { var reg = /collapseSeason-([0-9]+)/g; var result = reg.exec(this.id); - $('#showseason-' + result[1]).text('Hide Episodes'); + $('#showseason-' + result[1]).text( _('Hide Episodes') ); }); }); @@ -3393,7 +3393,7 @@ var SICKRAGE = { editShow: function() { var allExceptions = []; - $('#location').fileBrowser({ title: 'Select Show Location' }); + $('#location').fileBrowser({ title: _('Select Show Location') }); SICKRAGE.common.QualityChooser.init(); @@ -3457,7 +3457,7 @@ var SICKRAGE = { $(this).toggleSceneException(); }, postProcess: function() { - $('#episodeDir').fileBrowser({ title: 'Select Unprocessed Episode Folder', key: 'postprocessPath' }); + $('#episodeDir').fileBrowser({ title: _('Select Unprocessed Episode Folder'), key: 'postprocessPath' }); }, status: function() { $("#schedulerStatusTable").tablesorter({ @@ -3787,7 +3787,7 @@ var SICKRAGE = { $('.delete_root_dir').click(function(){ var curIndex = findDirIndex($(this).attr('id')); $('#new_root_dir_'+curIndex).val(null); - $('#display_new_root_dir_'+curIndex).html('<b>DELETED</b>'); + $('#display_new_root_dir_'+curIndex).html('<b>' + _('DELETED') + '</b>'); }); SICKRAGE.common.QualityChooser.init(); @@ -4320,7 +4320,7 @@ var SICKRAGE = { if (searchRequestXhr) { searchRequestXhr.abort(); } var searchingFor = $('#nameToSearch').val().trim() + ' on ' + $('#providedIndexer option:selected').text() + ' in ' + $('#indexerLangSelect').val(); - $('#searchResults').empty().html('<img id="searchingAnim" src="' + srRoot + '/images/loading32' + themeSpinner + '.gif" height="32" width="32" /> searching ' + searchingFor + '...'); + $('#searchResults').empty().html('<img id="searchingAnim" src="' + srRoot + '/images/loading32' + themeSpinner + '.gif" height="32" width="32" /> ' + _('searching {searchingFor}...').replace(/{searchingFor}/, searchingFor)); searchRequestXhr = $.ajax({ url: srRoot + '/addShows/searchIndexersForShowName', @@ -4331,7 +4331,7 @@ var SICKRAGE = { timeout: parseInt($('#indexer_timeout').val(), 10) * 1000, dataType: 'json', error: function () { - $('#searchResults').empty().html('search timed out, try again or try another indexer'); + $('#searchResults').empty().html( _('search timed out, try again or try another indexer') ); }, success: function (data) { var firstResult = true; @@ -4500,7 +4500,7 @@ var SICKRAGE = { } }); - $('#tableDiv').html('<img id="searchingAnim" src="' + srRoot + '/images/loading32.gif" height="32" width="32" /> loading folders...'); + $('#tableDiv').html('<img id="searchingAnim" src="' + srRoot + '/images/loading32.gif" height="32" width="32" /> ' + _('loading folders...')); $.post(srRoot + '/addShows/massAddTable/', url, function(data) { $('#tableDiv').html(data); $("#addRootDirTable").tablesorter({ diff --git a/gui/slick/js/core.min.js b/gui/slick/js/core.min.js index e4fb2ef156c80f76e2b3f0eb93c7578018cca52d..c52fc019f710d61bd0362b6d84315f0e3936c027 100644 Binary files a/gui/slick/js/core.min.js and b/gui/slick/js/core.min.js differ diff --git a/gui/slick/js/parsers.js b/gui/slick/js/parsers.js index f6a42403c23cff2eb9c910f29b2f7ee62e1e47d0..f54f91edf32dcb7aec765e3c4534a7e70232bed2 100644 --- a/gui/slick/js/parsers.js +++ b/gui/slick/js/parsers.js @@ -4,8 +4,8 @@ $.tablesorter.addParser({ return false; }, format: function(s) { - if (0 === s.indexOf('Loading...')) { - return s.replace('Loading...', '000'); + if (0 === s.indexOf( _('Loading...') )) { + return s.replace( _('Loading...') , '000'); } else { return (metaToBool('sickbeard.SORT_ARTICLE') ? (s || '') : (s || '').replace(/^(The|A|An)\s/i,'')); } diff --git a/gui/slick/js/plotTooltip.js b/gui/slick/js/plotTooltip.js index 57e7b94cdb52499347df9d811e03d2e5086392d5..4d5b62bdcba07b21dbe455fc3f166602cf45489f 100644 --- a/gui/slick/js/plotTooltip.js +++ b/gui/slick/js/plotTooltip.js @@ -3,7 +3,7 @@ $(function () { var match = $(this).attr("id").match(/^plot_info_(\d+)_(\d+)_(\d+)$/); $(this).qtip({ content: { - text: 'Loading...', + text: _('Loading...'), ajax: { url: $("#srRoot").val() + '/home/plotDetails', type: 'GET', diff --git a/gui/slick/js/sceneExceptionsTooltip.js b/gui/slick/js/sceneExceptionsTooltip.js index face3cdd58f20aad25d9b01fdb5053bd29b56560..7f99b99d89929f158dfcfc1a04ce4031fbb84093 100644 --- a/gui/slick/js/sceneExceptionsTooltip.js +++ b/gui/slick/js/sceneExceptionsTooltip.js @@ -3,7 +3,7 @@ $(function () { var match = $(this).parent().attr("id").match(/^scene_exception_(\d+)$/); $(this).qtip({ content: { - text: 'Loading...', + text: _('Loading...'), ajax: { url: $("#srRoot").val() + '/home/sceneExceptions', type: 'GET', diff --git a/gui/slick/js/testRename.js b/gui/slick/js/testRename.js index d0ee191c9b2258e2dbbb0fae37534835d89a7c42..2f12fe1e84fe0002b8b9759247ac1db702f04d18 100644 --- a/gui/slick/js/testRename.js +++ b/gui/slick/js/testRename.js @@ -34,13 +34,7 @@ $(document).ready(function(){ }); if (epArr.length === 0) { return false; } - - var url = srRoot+'/home/doRename?show='+$('#showID').attr('value')+'&eps='+epArr.join('|'); - if(url.length < 2083) { - window.location.href = url; - } else { - alert("You've selected too many shows, please uncheck some and try again. [" + url.length + "/2083 characters]"); - } + $.redirect(srRoot + '/home/doRename', {show: $('#showID').attr('value'), eps: epArr.join('|')}, 'POST'); }); }); diff --git a/gui/slick/js/vender.min.js b/gui/slick/js/vender.min.js index 670e8a42b348a07efaf355e2787b26c21f0b0f58..23f7f692e9eafdb91749005ea075333a708f5f4f 100644 Binary files a/gui/slick/js/vender.min.js and b/gui/slick/js/vender.min.js differ diff --git a/gui/slick/views/editShow.mako b/gui/slick/views/editShow.mako index 2a291e677d2f9b29907ac712a832d20a87771e2b..3c105fb2b22d1bab37b67a3fc614f01b51ed4285 100644 --- a/gui/slick/views/editShow.mako +++ b/gui/slick/views/editShow.mako @@ -290,6 +290,7 @@ <div class="row"> <div class="col-md-12"> <label>${_('search results with one or more words from this list will be ignored.')}</label> + <label><b>${_('note')}:</b> ${_('this option overrides the globally ignored words!')}</label> </div> </div> </div> @@ -310,12 +311,13 @@ </div> <div class="row"> <div class="col-md-12"> - <label for="rls_require_words">comma-separated <i>${_('e.g. "word1,word2,word3"')}</i></label> + <label for="rls_require_words">${_('comma-separated <i>e.g. "word1,word2,word3</i>"')}</label> </div> </div> <div class="row"> <div class="col-md-12"> <label>${_('search results with no words from this list will be ignored.')}</label> + <label><b>${_('note')}:</b> ${_('this option overrides the globally required words!')}</label> </div> </div> </div> diff --git a/locale/af_ZA/LC_MESSAGES/messages.json b/locale/af_ZA/LC_MESSAGES/messages.json index 64403bbbd6e674d935c91d14988101d792f257ff..e9673e26ec4fe6e4d3ebbf8fd933b620c00256b0 100644 --- a/locale/af_ZA/LC_MESSAGES/messages.json +++ b/locale/af_ZA/LC_MESSAGES/messages.json @@ -1 +1 @@ -{"messages":{"domain":"messages","locale_data":{"messages":{"100":[null,""],"250":[null,""],"500":[null,""],"":{"domain":"messages","plural_forms":"nplurals=2; plural=(n != 1);","lang":"af_ZA"},"Drama":[null,"Drama"],"Mystery":[null,"Misterie"],"Science-Fiction":[null,"Wetenskapsfiksie"],"Crime":[null,"Misdaad"],"Action":[null,"Aksie"],"Comedy":[null,"Komedie"],"Thriller":[null,"Riller"],"Animation":[null,"Animasie"],"Family":[null,"Familie"],"Fantasy":[null,"Fantasie"],"Adventure":[null,"Avontuur"],"Horror":[null,"Gruwel"],"Film-Noir":[null,"Film Noir"],"Sci-Fi":[null,"Wetenskapsfiksie"],"Romance":[null,"Romanties"],"Sport":[null,"Sport"],"War":[null,"Oorlog"],"Biography":[null,"Biografie"],"History":[null,"Geskiedenis"],"Music":[null,"Musiek"],"Western":[null,"Western"],"News":[null,"Nuus"],"Sitcom":[null,"Reeks"],"Reality-TV":[null,"Realiteits TV"],"Documentary":[null,"Dokumentêr"],"Game-Show":[null,"Speletjiesprogram"],"Musical":[null,"Musikaal"],"Talk-Show":[null,"Klets Program"],"Started Download":[null,"Het begin met aflaai taak"],"Download Finished":[null,"Klaar met aflaai taak"],"Subtitle Download Finished":[null,"Sub titel het klaar afgelaai"],"SickRage Updated":[null,"SickRage het opgedateer"],"SickRage Updated To Commit#: ":[null,"SickRage het opgedateer na Commit#: "],"SickRage new login":[null,"Nuwe SickRage anntekening"],"New login from IP: {0}. http://geomaplookup.net/?ip={0}":[null,"Nuwe aantekening van IP: {0}. http://geomaplookup.net/?ip={0}"],"Repeat":[null,"Herhaling"],"Repeat (Separated)":[null,"Herhaling(Apart)"],"Extend":[null,"Verleng"],"Extend (Limited)":[null,"Verleng(Beperk)"],"Extend (Limited, E-prefixed)":[null,"Verleng(Beperk, E vooraan)"],"Downloaded":[null,"Afgelaai"],"Snatched":[null,"Gegryp"],"Snatched (Proper)":[null,"Gegryp (Oordentelik)"],"Failed":[null,"Onsuksesvol"],"Snatched (Best)":[null,"Gegryp (Beste)"],"Archived":[null,"Argief"],"Unknown":[null,"Onbekend"],"Unaired":[null,"Nog nie uitgesaai"],"Skipped":[null,"Oorgeslaan"],"Wanted":[null,"Gesoek"],"Ignored":[null,"Geignoreerd"],"Subtitled":[null,"Subtiteleerd"],"<No Filter>":[null,"<Geen Filter>"],"Daily Searcher":[null,""],"Backlog":[null,"Agterstand"],"Show Updater":[null,""],"Check Version":[null,"Bevestig Weergawe"],"Show Queue":[null,"Program Pyplyn"],"Search Queue (All)":[null,""],"Search Queue (Daily Searcher)":[null,""],"Search Queue (Backlog)":[null,""],"Search Queue (Manual)":[null,""],"Search Queue (Retry/Failed)":[null,""],"Search Queue (RSS)":[null,""],"Find Propers":[null,""],"Postprocessor":[null,""],"Find Subtitles":[null,""],"Trakt Checker":[null,"Trakt Kontroleerder"],"Event":[null,""],"Error":[null,"Fout"],"Tornado":[null,""],"Thread":[null,""],"Main":[null,""],"Loading":[null,""],"New update found for SickRage, starting auto-updater":[null,"Nuwe weergawe gevind vir SickRage, outomatiese opdatering begin"],"Update was successful":[null,"Opdatering was suksesvol"],"Update failed!":[null,"Opdatering het gefaal!"],"Backup":[null,"Rugsteun"],"Config backup in progress...":[null,"Besig met konfigurasie rugsteun proses..."],"Config backup successful, updating...":[null,"Konfigurasie rugsteun proses was suksesvol, besig met opdatering..."],"Config backup failed, aborting update":[null,"Konfigurasie rugsteun taak het misluk, opdatering word gestaak"],"No update needed":[null,"Geen opdatering benodig"],"Mako Error":[null,"Mako Probleem"],"Oops":[null,"Oeps"],"Wrong API key used":[null,"Verkeerde API sleutel gebruik"],"Login":[null,"Teken aan"],"API Key not generated":[null,"API sleutel nie gegenereer nie"],"API Builder":[null,"API Bouer"],"Schedule":[null,"Skedule"],"Test 1":[null,"Toets 1"],"This is test number 1":[null,"Die is toets nommer 1"],"Test 2":[null,"Toets 2"],"This is test number 2":[null,"Die is toets nommer 2"],"You're using the {branch} branch. Please use 'master' unless specifically asked":[null,"Jy gebruik die {branch} tak. Gebruik asseblief 'master' tensy anders gevra word"],"Invalid show parameters":[null,"Ontoelaatbare vertoning parameters"],"Invalid parameters":[null,""],"Episode couldn't be retrieved":[null,"Kon nie die episode ontrek nie"],"Home":[null,"Tuis"],"Show List":[null,"Program Lys"],"Error: Unsupported Request. Send jsonp request with 'callback' variable in the query string.":[null,"Fout: Ontoelaatbare Versoek: Stuur jsonp versoek met 'callback' veranderlike in die navraag string."],"Success. Connected and authenticated":[null,"Sukses. Gekonnekteerd en bemagtig"],"Authentication failed. SABnzbd expects":[null,"Bemagtiging het gefaal. SABnzbd verwag"],"as authentication method":[null,"as bemagtigings metode"],"Unable to connect to host":[null,"Kon nie aan die gasheer konnekteer nie"],"SMS sent successfully":[null,"SMS suksesvol gestuur"],"Problem sending SMS: {message}":[null,"SMS versending probleem: {message}"],"Telegram notification succeeded. Check your Telegram clients to make sure it worked":[null,"Telegram kennisgewing was suksesvol. Gaan jou Telegram kliënte na om seker te maak dit het gewerk"],"Error sending Telegram notification: {message}":[null,"Fout met Telegram kennisgewing versending: {message}"],"join notification succeeded. Check your join clients to make sure it worked":[null,"aansluitings kennisgewing suksesvol. Toets jou aansluitings kliënte om te bevestig dat dit werk"],"Error sending join notification: {message}":[null,""]," with password":[null," met 'n wagwoord"],"Registered and Tested growl successfully {growl_host}":[null,"growl suksesvol getoets en geregistreer {growl_host}"],"Registration and Testing of growl failed {growl_host}":[null,"growl toets en registrasie het gefaal {growl_host}"],"Test prowl notice sent successfully":[null,"Toets kennisgewing na prowl was suksesvol"],"Test prowl notice failed":[null,"Toets kennisgewing na prowl het gefaal"],"Boxcar2 notification succeeded. Check your Boxcar2 clients to make sure it worked":[null,"Boxcar 2 kennisgewing was suksesvol. Gaan jou Boxcar 2 kliënte na om seker te maak dit het gewerk"],"Error sending Boxcar2 notification":[null,"Fout met Boxcar2 kennisgewing versending"],"Pushover notification succeeded. Check your Pushover clients to make sure it worked":[null,"Pushover kennisgewing was suksesvol. Gaan jou Pushover kliënte na om seker te maak dit het gewerk"],"Error sending Pushover notification":[null,"Fout met Pushover kennisgewing versending"],"Key verification successful":[null,"Sleutel suksesvol geverifieer"],"Unable to verify key":[null,"Nie in staat om die sleutel te verifieer nie"],"Tweet successful, check your twitter to make sure it worked":[null,"Tweet was suksesvol, gaan jou Twitter na om seker te maak dit het gewerk"],"Error sending tweet":[null,"Fout met Tweet versending"],"Please enter a valid account sid":[null,""],"Please enter a valid auth token":[null,""],"Please enter a valid phone sid":[null,""],"Please format the phone number as \"+1-###-###-####\"":[null,""],"Authorization successful and number ownership verified":[null,""],"Error sending sms":[null,""],"Slack message successful":[null,""],"Slack message failed":[null,""],"Discord message successful":[null,""],"Discord message failed":[null,""],"Test KODI notice sent successfully to {kodi_host}":[null,"Kodi toets-kennisgewing suksesvol gestuur na {kodi_host}"],"Test KODI notice failed to {kodi_host}":[null,"Kodi toets kennisgewing het misluk na {kodi_host}"],"Successful test notice sent to Plex Home Theater ... {plex_clients}":[null,"'n Suksesvolle toets boodskap was gestuur na Plex Home Theater ... {plex_clients}"],"Test failed for Plex Home Theater ... {plex_clients}":[null,"Onsuksesvolle toets vir Plex Home Theater ... {plex_clients}"],"Tested Plex Home Theater(s)":[null,"Plex Home Theater(s) getoets"],"Successful test of Plex Media Server(s) ... {plex_servers}":[null,"Suksesvolle toets van Plex Media Server(s) ... {plex_servers}"],"Test failed, No Plex Media Server host specified":[null,"Toets was onsuksesvol, geen Plex Media Server gasheer gespesifiseer"],"Test failed for Plex Media Server(s) ... {plex_servers}":[null,"Onsuksesvolle toets vir Plex Media Server(s) ... {plex_servers}"],"Tested Plex Media Server host(s)":[null,"Plex Media Server gasheer(e) getoets"],"Tried sending desktop notification via libnotify":[null,"Het probeer om desktop kennisgewing te stuur via libnotify"],"Test notice sent successfully to {emby_host}":[null,"Toets kennisgewing was suksesvol na {emby_host} gestuur"],"Test notice failed to {emby_host}":[null,"Toets kennisgewing het gefaal na {emby_host}"],"Successfully started the scan update":[null,"Scan opdatering suksesvol begin"],"Test failed to start the scan update":[null,"Toets het gefaal om die scan opdatering te begin"],"Test notice sent successfully to {nmj2_host}":[null,"Toets kennisgewing was suksesvol na {nmj2_host} gestuur"],"Test notice failed to {nmj2_host}":[null,"Toets boodskap na {nmj2_host} het misluk"],"Trakt Authorized":[null,"Trakt was gemagtig"],"Trakt Not Authorized!":[null,"Trakt is nie gemagtig nie!"],"Test email sent successfully! Check inbox.":[null,"Toets e-pos suksesvol gestuur! Kontroleer jou inboks."],"ERROR: {last_error}":[null,"FOUT: {last_error}"],"Test NMA notice sent successfully":[null,"NMA toets boodskap met sukses gestuur"],"Test NMA notice failed":[null,"NMA toets boodskap het misluk"],"Pushalot notification succeeded. Check your Pushalot clients to make sure it worked":[null,"Pushalot kennisgewing was suksesvol. Kontroleer jou Pushalot kliënte om seker te maak dit het gewerk"],"Error sending Pushalot notification":[null,"Fout met die versending van Pushalot kennisgewing"],"Pushbullet notification succeeded. Check your device to make sure it worked":[null,"Pushbullet kennisgewing was suksesvol. Kontroleer jou toestel om seker te maak dit het gewerk"],"Error sending Pushbullet notification":[null,"Fout met versending van Pushbullet kennisgewing"],"Status":[null,"Status"],"Restarting SickRage":[null,"SickRage aan die herlaai"],"Update Failed":[null,"Opdatering het gefaal"],"Update wasn't successful, not restarting. Check your log for more information.":[null,"Opdatering was nie suksesvol nie, gaan nie herlaai nie. Kontroleer jou log vir meer inligting."],"Checking out branch":[null,"Besig om tak uit te teken"],"Already on branch":[null,"Reeds op tak"],"Invalid show ID: {show}":[null,"Verkeerde vertoning ID: {show}"],"Show not in show list":[null,"Program nie in program lys"],"Edit":[null,"Wysig"],"This show is in the process of being downloaded - the info below is incomplete.":[null,""],"The information on this page is in the process of being updated.":[null,""],"The episodes below are currently being refreshed from disk":[null,""],"Currently downloading subtitles for this show":[null,""],"This show is queued to be refreshed.":[null,""],"This show is queued and awaiting an update.":[null,""],"This show is queued and awaiting subtitles download.":[null,""],"Resume":[null,"Hervat"],"Pause":[null,"Pause"],"Remove":[null,"Verwyder"],"Re-scan files":[null,"Scan weer die leêrs"],"Force Full Update":[null,"Forseer 'n volledige opdatering"],"Update show in KODI":[null,"Dateer die program op in KODI"],"Update show in Emby":[null,"Dateer die program op in Emby"],"Hide specials":[null,""],"Show specials":[null,""],"Preview Rename":[null,"Voorskou van nuwe naam"],"Download Subtitles":[null,"Laai subtitels af"],"No scene exceptions":[null,"Geen \"scene\" uitsonderings"],"Invalid show ID":[null,"Verkeerde program ID"],"Unable to find the specified show":[null,"Kan nie die spesifiseerde program vind nie"],"Unable to retreive Fansub Groups from AniDB.":[null,"Kan nie die Fansub Groepe vanaf AniDB ontwin nie."],"Edit Show":[null,"Wysig Program"],"Unable to refresh this show: {error}":[null,"Kan nie die program verfris nie: {error}"],"New location <tt>{location}</tt> does not exist":[null,"Nuwe plek <tt>{location}</tt> bestaan nie"],"Unable to update show: {error}":[null,"Kan nie die program opdateer nie: {error}"],"Unable to force an update on scene exceptions of the show.":[null,""],"Unable to force an update on scene numbering of the show.":[null,""],"{num_errors:d} error{plural} while saving changes:":[null,""],"{show_name} has been {paused_resumed}":[null,""],"resumed":[null,"hervat"],"paused":[null,"veronderbreek"],"{show_name} has been {deleted_trashed} {was_deleted}":[null,""],"deleted":[null,"geskrap"],"trashed":[null,"verskuif na asblik"],"(media untouched)":[null,"(media onaangeraak)"],"(with all related media)":[null,"(met alle verwante media)"],"Unable to refresh this show.":[null,"Kan nie hierdie program verfris nie."],"Unable to update this show.":[null,"Kan nie hierdie program opdateer nie."],"Library update command sent to KODI host(s)): {kodi_hosts}":[null,""],"Unable to contact one or more KODI host(s)): {kodi_hosts}":[null,""],"Library update command sent to Plex Media Server host: {plex_server}":[null,""],"Unable to contact Plex Media Server host: {plex_server}":[null,""],"Library update command sent to Emby host: {emby_host}":[null,""],"Unable to contact Emby host: {emby_host}":[null,"Emby host:{emby_host} kontak nie moontlik"],"You must specify a show and at least one episode":[null,""],"Invalid status":[null,"Ongeldige status"],"Backlog was automatically started for the following seasons of <b>{show_name}</b>":[null,"Agterstand soektog het automaties begin vir die volgende seisoene van <b>{show_name}</b>"],"Season":[null,"Seisoen"],"Backlog started":[null,"Agterstand soektog het begin"],"Retrying Search was automatically started for the following season of <b>{show_name}</b>":[null,"Probeer-weer Soektog is outomaties weer begin vir die volgende seisoen van <b>{show_name}</b>"],"Retry Search started":[null,"Probeer-weer Soektog het begin"],"You must specify a show":[null,"Jy moet 'n show spesifiseer"],"Can't rename episodes when the show dir is missing.":[null,"Kan nie die episodes hernoem wanneer die program leêr vermis word nie."],"New subtitles downloaded: {new_subtitle_languages}":[null,""],"No subtitles downloaded":[null,"Geen onderskrifte afgelaai"],"IRC":[null,"IRC"],"Could not load news from the repo. [Click here for news.md])({news_url})":[null,"Kon nie die nuus van die repo af laai nie. [Kliek hier vir nuus.md])({news_url})"],"The was a problem connecting to github, please refresh and try again":[null,""],"Could not load changes from the repo. [Click here for CHANGES.md]({changes_url})":[null,""],"Changelog":[null,""],"Post Processing":[null,""],"Add Shows":[null,""],"No folders selected.":[null,""],"New Show":[null,""],"Trending Shows":[null,""],"Popular Shows":[null,""],"Most Anticipated Shows":[null,""],"Most Collected Shows":[null,""],"Most Watched Shows":[null,""],"Most Played Shows":[null,""],"Recommended Shows":[null,""],"New Shows":[null,""],"Season Premieres":[null,""],"Existing Show":[null,""],"No root directories setup, please go back and add one.":[null,""],"Show added":[null,""],"Adding the specified show {show_name}":[null,""],"Missing params, no Indexer ID or folder: {show_to_add} and {root_dir}/{show_path}":[null,"Afwesige parameters, geen Indekser ID of leêr: {show_to_add} and {root_dir}/{show_path}"],"Unknown error. Unable to add show due to problem with show selection.":[null,""],"Unable to add show":[null,""],"Folder {show_dir} exists already":[null,""],"Unable to create the folder {show_dir}, can't add the show":[null,""],"Adding the specified show into {show_dir}":[null,""],"Shows Added":[null,""],"Automatically added {num_shows} from their existing metadata files":[null,""],"Mass Update":[null,""],"Episode Overview":[null,""],"Missing Subtitles":[null,"Afwesige Subtitels"],"Backlog Overview":[null,"Agterstand Opsommig"],"Mass Edit":[null,""],"Unable to update show: {excption_format}":[null,""],"Unable to refresh show {show_name}: {excption_format}":[null,""],"Errors encountered":[null,""],"Updates":[null,""],"Refreshes":[null,""],"Renames":[null,""],"Subtitles":[null,"Onderskrifte"],"The following actions were queued":[null,""],"For best results please set the Download Station alias as":[null,""],"You can check this setting in the Synology DSM":[null,""],"Control Panel":[null,""],"Application Portal":[null,""],"Make sure you allow DSM to be embedded with iFrames too in":[null,""],"DSM Settings":[null,""],"Security":[null,""],"Manage Torrents":[null,""],"Failed Downloads":[null,""],"Manage Searches":[null,""],"Backlog search started":[null,"Agterstand Soektog het begin"],"Daily search started":[null,""],"Find propers search started":[null,""],"Subtitle search started":[null,""],"Remove Selected":[null,""],"Clear History":[null,""],"Trim History":[null,""],"Selected history entries removed":[null,""],"History cleared":[null,""],"Removed history entries older than 30 days":[null,""],"General":[null,""],"Backup/Restore":[null,""],"Search Settings":[null,""],"Search Providers":[null,"Soektog Voorsieners"],"Subtitles Settings":[null,""],"Notifications":[null,""],"Anime":[null,""],"SickRage Configuration":[null,""],"Config - Shares":[null,""],"Windows Shares Configuration":[null,""],"Saved Shares":[null,""],"Your Windows share settings have been saved":[null,""],"Config - General":[null,""],"General Configuration":[null,""],"Saved Defaults":[null,""],"Your \"add show\" defaults have been set to your current selections.":[null,""],"Unable to create directory {directory}, log directory not changed.":[null,""],"Unable to create directory {directory}, https cert directory not changed.":[null,""],"Unable to create directory {directory}, https key directory not changed.":[null,""],"Error(s) Saving Configuration":[null,""],"Configuration Saved":[null,""],"Config - Backup/Restore":[null,""],"Config - Episode Search":[null,""],"Config - Post Processing":[null,""],"Unpacking Not Supported, disabling unpack setting":[null,""],"You tried saving an invalid normal naming config, not saving your naming settings":[null,""],"You tried saving an invalid anime naming config, not saving your naming settings":[null,""],"Config - Providers":[null,"Konfigurasie - Voorsieners"],"No Provider Name specified":[null,"Geen Voorsiener Naam gespesifiseer"],"No Provider Url specified":[null,"Geen Voorsiener Url gespesifiseer"],"No Provider Api key specified":[null,"Geen Voorsiener Api sleutel gespesifiseer"],"Config - Notifications":[null,""],"Config - Subtitles":[null,""],"Config - Anime":[null,""],"Clear Errors":[null,""],"Clear Warnings":[null,""],"Submit Errors":[null,""],"Logs & Errors":[null,""],"Log File":[null,""],"Logs":[null,""],"This is a test notification from SickRage":[null,""],"Please fill out the necessary fields above.":[null,""],"This pattern is invalid.":[null,""],"This pattern would be invalid without the folders, using it will force \"Season Folders\" on for all shows.":[null,""],"This pattern is valid.":[null,""],"Resume updating the log on this page.":[null,""],"Pause updating the log on this page.":[null,""],"You have reached this page by accident, please check the url.":[null,""],"A mako error has occured.<br>\n If this happened during an update a simple page refresh may be the solution.<br>\n Mako errors that happen during updates may be a one time error if there were significant ui changes.":[null,""],"Show/Hide Error":[null,""],"Add New Show":[null,""],"For shows that you haven't downloaded yet, this option finds a show on theTVDB.com, creates a directory for it's episodes, and adds it to SickRage.":[null,""],"Add From Trakt Lists":[null,""],"For shows that you haven't downloaded yet, this option lets you choose from a show from one of the Trakt lists to add to SickRage.":[null,""],"Add From IMDB's Popular Shows":[null,""],"View IMDB's list of the most popular shows. This feature uses IMDB's MOVIEMeter algorithm to identify popular TV Series.":[null,""],"Add Existing Shows":[null,""],"Use this option to add shows that already have a folder created on your hard drive. SickRage will scan your existing metadata/episodes and add the show accordingly.":[null,""],"Add Existing Show":[null,""],"Manage Directories":[null,""],"Customize Options":[null,""],"SickRage can add existing shows, using the current options, by using locally stored NFO/XML metadata to eliminate user interaction. If you would rather have SickRage prompt you to customize each show, then use the checkbox below.":[null,""],"Prompt me to set settings for each show":[null,""],"Displaying folders within these directories which aren't already added to SickRage":[null,""],"Submit":[null,""],"Find a show on theTVDB":[null,""],"Show retrieved from existing metadata":[null,""],"All Indexers":[null,""],"Search":[null,""],"This will only affect the language of the retrieved metadata file contents and episode filenames.":[null,""],"This <b>DOES NOT</b> allow SickRage to download non-english TV episodes!":[null,""],"Pick the parent folder":[null,""],"Pre-chosen Destination Folder":[null,""],"Customize options":[null,""],"Add Show":[null,""],"Skip Show":[null,""],"Sort By":[null,""],"Name":[null,""],"Original":[null,""],"Votes":[null,""],"Rating":[null,""],"Rating > Votes":[null,""],"Sort Order":[null,""],"Asc":[null,""],"Desc":[null,""],"Fetching of IMDB Data failed. Are you online?":[null,""],"Exception":[null,""],"Select Trakt List":[null,""],"Most Anticipated":[null,""],"Trending":[null,""],"Popular":[null,""],"Most Watched":[null,""],"Most Played":[null,""],"Most Collected":[null,""],"Recommended":[null,""],"Toggle navigation":[null,""],"Profile":[null,""],"JSONP":[null,"JSONP"],"Back to SickRage":[null,""],"Parameters":[null,""],"Required":[null,""],"Description":[null,""],"Type":[null,""],"Default value":[null,""],"Allowed values":[null,""],"Playground":[null,""],"Clear":[null,""],"Yes":[null,"Ja"],"No":[null,"Nee"],"season":[null,""],"episode":[null,""],"Python Version":[null,""],"SSL Version":[null,""],"OS":[null,""],"Locale":[null,""],"User":[null,"Gebruiker"],"Program Folder":[null,""],"Config File":[null,""],"Database File":[null,""],"Cache Folder":[null,""],"Log Folder":[null,""],"Arguments":[null,""],"Web Root":[null,""],"Website":[null,""],"Wiki":[null,""],"Source":[null,""],"IRC Chat":[null,""],"AnimeDB Settings":[null,""],"Look & Feel":[null,""],"AniDB is non-profit database of anime information that is freely open to the public":[null,""],"Enable":[null,"Aktiveer"],"should SickRage use data from AniDB?":[null,""],"AniDB Username":[null,""],"username of your AniDB account":[null,""],"AniDB Password":[null,""],"password of your AniDB account":[null,""],"AniDB MyList":[null,""],"do you want to add the PostProcessed episodes to the MyList?":[null,""],"Look and Feel":[null,""],"How should the anime functions show and behave.":[null,""],"Split show lists":[null,""],"separate anime and normal shows in groups":[null,""],"Split in tabs":[null,""],"use tabs for when splitting show lists":[null,""],"Restore":[null,""],"Backup your main database file and config.":[null,""],"Select the folder you wish to save your backup file to":[null,""],"Restore your main database file and config.":[null,""],"Select the backup file you wish to restore":[null,""],"Misc":[null,""],"Interface":[null,""],"Advanced Settings":[null,""],"Startup options. Indexer options. Log and show file locations.":[null,""],"Some options may require a manual restart to take effect.":[null,""],"Default Indexer Language":[null,""],"for adding shows and metadata providers":[null,"om programme en metadata voersieners by te voeg"],"Launch browser":[null,""],"open the SickRage home page on startup":[null,""],"Initial page":[null,""],"Shows":[null,""],"when launching SickRage interface":[null,""],"Choose hour to update shows":[null,""],"with information such as next air dates, show ended, etc. Use 15 for 3pm, 4 for 4am etc.":[null,""],"note":[null,""],"minutes are randomized each time SickRage is started":[null,""],"Send to trash for actions":[null,""],"when using show \"Remove\" and delete files":[null,""],"on scheduled deletes of the oldest log files":[null,""],"selected actions use trash (recycle bin) instead of the default permanent delete":[null,""],"Log file folder location":[null,""],"Number of Log files saved":[null,""],"number of log files saved when rotating logs (default: 5) (REQUIRES RESTART)":[null,""],"Size of Log files saved":[null,""],"maximum size in MB of the log file (default: 1MB) (REQUIRES RESTART)":[null,""],"Use initial indexer set to":[null,""],"as the default selection when adding new shows":[null,""],"Timeout show indexer at":[null,""],"seconds of inactivity when finding new shows (default:20)":[null,""],"Show root directories":[null,""],"where the files of shows are located":[null,""],"Save Changes":[null,""],"Options for software updates.":[null,""],"Check software updates":[null,""],"and display notifications when updates are available. Checks are run on startup and at the frequency set below*":[null,""],"Automatically update":[null,""],"fetch and install software updates. Updates are run on startup and in the background at the frequency set below*":[null,""],"Check the server every*":[null,""],"hours for software updates (default:1)":[null,""],"Notify on software update":[null,""],"send a message to all enabled notifiers when SickRage has been updated":[null,"stuur 'n boodskap aan alle aktiveerde aankondigers wanneer SickRage opgedateer was"],"User Interface":[null,""],"Options for visual appearance.":[null,""],"Interface Language":[null,""],"System Language":[null,""],"for appearance to take effect, save then refresh your browser":[null,""],"Display theme":[null,""],"Dark":[null,""],"Light":[null,""],"Use a background image":[null,""],"use a custom image as background for SickRage":[null,""],"Background Path":[null,""],"Path to the background image":[null,""],"Show fanart in the background":[null,""],"on the show summary page":[null,""],"Fanart transparency":[null,""],"transparency of the fanart in the background":[null,""],"Use a custom stylesheet file":[null,""],"use a custom .css file to style SickRage (for advanced users)":[null,""],"Stylesheet File Path":[null,""],"Path to the stylesheet (.css) file":[null,""],"Show all seasons":[null,""],"Sort with \"The\", \"A\", \"An\"":[null,""],"include articles (\"The\", \"A\", \"An\") when sorting show lists":[null,""],"Missed episodes range":[null,""],"set the range in days of the missed episodes in the Schedule page":[null,""],"Display fuzzy dates":[null,""],"move absolute dates into tooltips and display e.g. \"Last Thu\", \"On Tue\"":[null,""],"Trim zero padding":[null,""],"remove the leading number \"0\" shown on hour of day, and date of month":[null,""],"Date style":[null,""],"Use System Default":[null,""],"Time style":[null,""],"seconds are only shown on the History page":[null,""],"Timezone":[null,""],"Local":[null,""],"Network":[null,"Netwerk"],"display dates and times in either your timezone or the shows network timezone":[null,""],"use local timezone to start searching for episodes minutes after show ends (depends on your dailysearch frequency)":[null,""],"Download url":[null,""],"URL where the shows can be downloaded.":[null,""],"Web Interface":[null,""],"it is recommended that you enable a username and password to secure SickRage from being tampered with remotely.":[null,""],"these options require a manual restart to take effect.":[null,""],"API key":[null,""],"used to give 3rd party programs limited access to SickRage":[null,""],"you can try all the features of the API":[null,""],"here":[null,"hier"],"HTTP logs":[null,""],"enable logs from the internal Tornado web server":[null,""],"HTTP username":[null,""],"set blank for no login":[null,""],"HTTP password":[null,""],"blank = no authentication":[null,""],"HTTP port":[null,""],"web port to browse and access SickRage (default:8081)":[null,""],"Notify on login":[null,""],"enable to be notified when a new login happens in webserver":[null,""],"Listen on IPv6":[null,""],"attempt binding to any available IPv6 address":[null,""],"Enable HTTPS":[null,""],"enable access to the web interface using a HTTPS address":[null,""],"HTTPS certificate":[null,""],"file name or path to HTTPS certificate":[null,""],"HTTPS key":[null,""],"file name or path to HTTPS key":[null,""],"Reverse proxy headers":[null,""],"accept the following reverse proxy headers (advanced)...":[null,""],"(X-Forwarded-For, X-Forwarded-Host, and X-Forwarded-Proto)":[null,""],"CPU throttling":[null,""],"Normal (default). High is lower and Low is higher CPU use":[null,""],"Anonymous redirect":[null,""],"backlink protection via anonymizer service, must end in \"?\"":[null,""],"Enable debug":[null,""],"enable debug logs":[null,""],"Verify SSL Certs":[null,""],"verify SSL Certificates (Disable this for broken SSL installs (Like QNAP))":[null,""],"No Restart":[null,""],"only shutdown when restarting SR":[null,""],"only select this when you have external software restarting SR automatically when it stops (like FireDaemon)":[null,""],"Encrypt passwords":[null,""],"in the <code>config.ini</code> file":[null,""],"warning":[null,""],"passwords must only contain":[null,""],"ASCII characters":[null,""],"Unprotected calendar":[null,""],"allow subscribing to the calendar without user and password":[null,""],"some services like Google Calendar only work this way":[null,""],"Google Calendar Icons":[null,""],"show an icon next to exported calendar events in Google Calendar":[null,""],"Proxy host":[null,""],"blank to disable or proxy to use when connecting to providers":[null,"blanko om te deaktiveer of proxy om te gbruik wanneer aan voorsieners konnekteer word"],"also use global proxy setting for indexers (tvdb, xem, anidb, etc.)":[null,""],"Skip Remove Detection":[null,""],"skip detection of removed files":[null,""],"if disabled the episode will be set to the default deleted status":[null,""],"Default deleted episode status":[null,""],"define the status to be set for media file that has been deleted.":[null,""],"Archived option will keep previous downloaded quality":[null,""],"example: Downloaded (1080p WEB-DL) ==> Archived (1080p WEB-DL)":[null,""],"Options for github related features.":[null,""],"Branch version":[null,""],"error: No branches found.":[null,""],"select branch to use (restart required)":[null,""],"Authorization Type":[null,""],"Username and password":[null,""],"Personal access token":[null,""],"You must use a personal access token if you're using \"two-factor authentication\" on GitHub.":[null,""],"GitHub username":[null,""],"*** (REQUIRED FOR SUBMITTING ISSUES) ***":[null,""],"GitHub password":[null,""],"GitHub personal access token":[null,""],"Generate Token":[null,""],"Manage Tokens":[null,""],"GitHub remote for branch":[null,""],"access repo configured remotes (save then refresh browser)":[null,""],"default":[null,""],"origin":[null,""],"Git executable path":[null,""],"only needed if OS is unable to locate git from env":[null,""],"Git reset":[null,""],"removes untracked files and performs a hard reset on git branch automatically to help resolve update issues":[null,""],"Home Theater / NAS":[null,""],"Devices":[null,"Toestelle"],"Social":[null,""],"A free and open source cross-platform media center and home entertainment system software with a 10-foot user interface designed for the living-room TV.":[null,""],"send KODI commands?":[null,""],"Always on":[null,"Altyd aan"],"log errors when unreachable?":[null,""],"Notify on snatch":[null,""],"send a notification when a download starts?":[null,""],"Notify on download":[null,""],"send a notification when a download finishes?":[null,""],"Notify on subtitle download":[null,""],"send a notification when subtitles are downloaded?":[null,""],"Update library":[null,""],"update KODI library when a download finishes?":[null,""],"Full library update":[null,""],"perform a full library update if update per-show fails?":[null,""],"Only update first host":[null,""],"only send library updates to the first active host?":[null,""],"KODI IP:Port":[null,""],"host running KODI (eg. 192.168.1.100:8080)":[null,""],"(multiple host strings must be separated by commas)":[null,""],"Username":[null,""],"username for your KODI server (blank for none)":[null,""],"Password":[null,""],"password for your KODI server (blank for none)":[null,""],"Click below to test.":[null,""],"Experience your media on a visually stunning, easy to use interface on your Mac connected to your TV. Your media library has never looked this good!":[null,""],"For sending notifications to Plex Home Theater (PHT) clients, use the KODI notifier with port <b>3005</b>.":[null,""],"send Plex Media Server library updates?":[null,""],"Plex Media Server Auth Token":[null,""],"auth token used by Plex":[null,""],"Update Library":[null,""],"update Plex Media Server library when a download finishes":[null,""],"Plex Media Server IP:Port":[null,""],"one or more hosts running Plex Media Server<br/>(eg. 192.168.1.1:32400, 192.168.1.2:32400)":[null,""],"HTTPS":[null,""],"use https for plex media server requests?":[null,""],"Click below to test Plex Media Server(s)":[null,""],"Test Plex Media Server":[null,""],"Plex Home Theater":[null,""],"send Plex Home Theater notifications?":[null,""],"Plex Home Theater IP:Port":[null,""],"one or more hosts running Plex Home Theater<br>(eg. 192.168.1.100:3000, 192.168.1.101:3000)":[null,""],"Click below to test Plex Home Theater(s)":[null,""],"Test Plex Home Theater":[null,""],"some Plex Home Theaters <b class=\"boldest\">do not</b> support notifications e.g. Plexapp for Samsung TVs":[null,""],"Emby":[null,""],"A home media server built using other popular open source technologies.":[null,""],"send update commands to Emby?":[null,""],"Emby IP:Port":[null,""],"host running Emby (eg. 192.168.1.100:8096)":[null,""],"Emby API Key":[null,""],"Networked Media Jukebox":[null,""],"The Networked Media Jukebox, or NMJ, is the official media jukebox interface made available for the Popcorn Hour 200-series.":[null,""],"send update commands to NMJ?":[null,""],"Popcorn IP address":[null,""],"IP address of Popcorn 200-series (eg. 192.168.1.100)":[null,""],"Get settings":[null,""],"Get Settings":[null,""],"the Popcorn Hour device must be powered on and NMJ running.":[null,""],"NMJ database":[null,""],"automatically filled via the 'Get Settings' button.":[null,""],"NMJ mount url":[null,""],"Networked Media Jukebox v2":[null,""],"The Networked Media Jukebox, or NMJv2, is the official media jukebox interface made available for the Popcorn Hour 300 & 400-series.":[null,""],"send update commands to NMJv2?":[null,""],"IP address of Popcorn 300/400-series (eg. 192.168.1.100)":[null,""],"Database location":[null,""],"Database instance":[null,""],"adjust this value if the wrong database is selected.":[null,""],"Find database":[null,""],"Find Database":[null,""],"the Popcorn Hour device must be powered on.":[null,""],"NMJv2 database":[null,""],"automatically filled via the 'Find Database' buttons.":[null,""],"Synology":[null,""],"The Synology DiskStation NAS.":[null,""],"Synology Indexer is the daemon running on the Synology NAS to build its media database.":[null,""],"send Synology notifications?":[null,""],"requires SickRage to be running on your Synology NAS.":[null,""],"Synology Indexer":[null,""],"Synology Notifier is the notification system of Synology DSM":[null,""],"send notifications to the Synology Notifier?":[null,""],"pyTivo":[null,""],"pyTivo is both an HMO and GoBack server. This notifier will load the completed downloads to your Tivo.":[null,""],"send notifications to pyTivo?":[null,""],"requires the downloaded files to be accessible by pyTivo.":[null,""],"pyTivo IP:Port":[null,""],"host running pyTivo (eg. 192.168.1.1:9032)":[null,""],"pyTivo share name":[null,""],"value used in pyTivo Web Configuration to name the share.":[null,""],"Tivo name":[null,""],"(Messages & Settings > Account & System Information > System Information > DVR name)":[null,"(Boodskappe & Settings > Rekening & Stelsel Informasie > Stelsel Informasie > DVR naam)"],"Growl":[null,""],"A cross-platform unobtrusive global notification system.":[null,""],"send Growl notifications?":[null,""],"Growl IP:Port":[null,""],"host running Growl (eg. 192.168.1.100:23053)":[null,""],"may leave blank if SickRage is on the same host.":[null,""],"otherwise Growl <b>requires</b> a password to be used.":[null,""],"Click below to register and test Growl, this is required for Growl notifications to work.":[null,""],"Register Growl":[null,""],"Prowl":[null,""],"A Growl client for iOS.":[null,""],"send Prowl notifications?":[null,""],"Prowl Message Title":[null,"Prowl Boodskap Titel"],"Global Prowl API key(s)":[null,""],"Prowl API(s) listed here, separated by commas if applicable, will<br> receive notifications for <b>all</b> shows. Your Prowl API key is available at:":[null,""],"(this field may be blank except when testing.)":[null,""],"Show notification list":[null,""],"-- Select a Show --":[null,""],"Configure per-show notifications here by entering Prowl API key(s), separated by commas, '\n 'after selecting a show in the drop-down box. Be sure to activate the 'Save for this show' '\n 'button below after each entry.":[null,""],"Save for this show":[null,""],"Prowl priority":[null,""],"Very Low":[null,""],"Moderate":[null,""],"Normal":[null,""],"High":[null,""],"Emergency":[null,""],"priority of Prowl messages from SickRage.":[null,"prioriteit van Prowl boodskappe vanaf SickRage."],"Libnotify":[null,""],"The standard desktop notification API for Linux/*nix systems. This notifier will only function if the pynotify module is installed (Ubuntu/Debian package <a href=\"apt:python-notify\">python-notify</a>).":[null,""],"send Libnotify notifications?":[null,""],"Pushover":[null,""],"Pushover makes it easy to send real-time notifications to your Android and iOS devices.":[null,""],"send Pushover notifications?":[null,""],"Pushover key":[null,""],"user key of your Pushover account":[null,""],"Pushover API key":[null,""],"click here":[null,""]," to create a Pushover API key":[null,""],"Pushover devices":[null,""],"comma separated list of pushover devices you want to send notifications to":[null,""],"Pushover notification sound":[null,""],"Bike":[null,""],"Bugle":[null,""],"Cash Register":[null,""],"Classical":[null,""],"Cosmic":[null,""],"Falling":[null,""],"Gamelan":[null,""],"Incoming":[null,""],"Intermission":[null,""],"Magic":[null,""],"Mechanical":[null,""],"Piano Bar":[null,""],"Siren":[null,""],"Space Alarm":[null,""],"Tug Boat":[null,""],"Alien Alarm (long)":[null,""],"Climb (long)":[null,""],"Persistent (long)":[null,""],"Pushover Echo (long)":[null,""],"Up Down (long)":[null,""],"None (silent)":[null,""],"Device specific":[null,""],"choose notification sound to use":[null,""],"Pushover priority":[null,""],"Choose priority to use":[null,""],"Boxcar 2":[null,""],"Read your messages where and when you want them!":[null,"Lees jou boodskappe waar en wanneer jy dit wil hê!"],"send Boxcar notifications?":[null,""],"Boxcar2 access token":[null,""],"access token for your Boxcar account.":[null,""],"NMA":[null,""],"Notify My Android":[null,""],"Notify My Android is a Prowl-like Android App and API that offers an easy way to send notifications from your application directly to your Android device.":[null,""],"send NMA notifications?":[null,""],"NMA API key":[null,""],"(multiple keys must be separated by commas, up to a maximum of 5)":[null,""],"NMA priority":[null,""],"priority of NMA messages from SickRage.":[null,"prioriteit van NMA boodskappe vanaf SickRage."],"Pushalot":[null,""],"Pushalot is a platform for receiving custom push notifications to connected devices running Windows Phone or Windows 8.":[null,""],"send Pushalot notifications ?":[null,""],"Pushalot authorization token":[null,""],"authorization token of your Pushalot account.":[null,""],"Pushbullet":[null,""],"Pushbullet is a platform for receiving custom push notifications to connected devices running Android/iOS and desktop browsers such as Chrome, Firefox or Opera.":[null,""],"send Pushbullet notifications?":[null,""],"Pushbullet API key":[null,""],"API key of your Pushbullet account":[null,""],"Pushbullet devices":[null,""],"Update device list":[null,""],"Pushbullet channels":[null,""],"Free Mobile":[null,""],"Free Mobile is a famous French cellular network provider.<br> It provides to their customer a free SMS API.":[null,"Free Mobile is 'n bekende Franse sellulêre netwerk voorsiener.<br> Dit voorsien 'n gratis SMS API aan hul gebruikers."],"send SMS notifications?":[null,""],"send a SMS when a download starts?":[null,""],"send a SMS when a download finishes?":[null,""],"send a SMS when subtitles are downloaded?":[null,""],"Free Mobile customer ID":[null,""],"it's your Free Mobile customer ID (8 digits)":[null,""],"Free Mobile API key":[null,""],"find your API key in your customer portal.":[null,""],"Click below to test your settings.":[null,""],"Telegram":[null,""],"Telegram is a cloud-based instant messaging service.":[null,""],"send Telegram notifications?":[null,""],"send a message when a download starts?":[null,""],"send a message when a download finishes?":[null,""],"send a message when subtitles are downloaded?":[null,""],"User/group ID":[null,""],"contact @myidbot on Telegram to get an ID":[null,""],"Bot API token":[null,""],"contact @BotFather on Telegram to set up one":[null,""],"Join":[null,""],"Join all of your devices together!":[null,""],"send Join notifications?":[null,""],"Device ID":[null,""],"per device specific id":[null,""]," to create a Join API key":[null,""],"Twilio":[null,""],"Twilio is a webservice API that allows you to communicate directly with a mobile number. This notifier will send a text directly to your mobile device.":[null,""],"should SickRage text your mobile device?":[null,""],"Twilio Account SID":[null,""],"account SID of your Twilio account.":[null,""],"Twilio Auth Token":[null,""],"Twilio Phone SID":[null,""],"phone SID that you would like to send the sms from":[null,""],"Your phone number":[null,""],"phone number that will receive the sms. Please use the format +1-###-###-####":[null,""],"Twitter":[null,""],"A social networking and microblogging service, enabling its users to send and read other users' messages called tweets.":[null,"'n Sosiale netwerk en microblogging diens, wat hul gebruikers in staat stel om ander gebruikers se boodskappe, genoem tweets, te lees en stuur."],"should SickRage post tweets on Twitter?":[null,""],"you may want to use a secondary account.":[null,""],"send direct message":[null,""],"send a notification via Direct Message, not via status update":[null,"stuur 'n kennisgewing via Direkte boodskap, nie via status opdatering nie"],"send DM to":[null,""],"Twitter account to send Direct Messages to (must follow you)":[null,"Twitter rekening aan wie direkte boodskappe gestuur moet word (moet jou volg)"],"Step One":[null,""],"Request Authorization":[null,""],"Click the \"Request Authorization\" button.<br> This will open a new page containing an auth key.<br> <b>note:</b> if nothing happens check your popup blocker.":[null,""],"Step Two":[null,""],"Enter the key Twitter gave you below, and click \"Verify Key\".":[null,""],"Trakt":[null,""],"Trakt helps keep a record of what TV shows and movies you are watching. Based on your favorites, Trakt recommends additional shows and movies you'll enjoy!":[null,""],"send Trakt.tv notifications?":[null,""],"username of your Trakt account.":[null,""],"Trakt PIN":[null,""],"Get Trakt PIN":[null,""],"PIN code to authorize SickRage to access Trakt on your behalf.":[null,""],"API Timeout":[null,""],"seconds to wait for Trakt API to respond. (Use 0 to wait forever)":[null,""],"Default indexer":[null,""],"Sync libraries":[null,""],"sync your SickRage show library with your trakt show library.":[null,""],"Remove Episodes From Collection":[null,""],"remove an episode from your Trakt Collection if it is not in your SickRage Library.":[null,""],"Sync watchlist":[null,""],"sync your SickRage show watchlist with your trakt show watchlist (either Show and Episode).":[null,""],"episode will be added on watch list when wanted or snatched and will be removed when downloaded ":[null,""],"Watchlist add method":[null,""],"Skip All":[null,""],"Download Pilot Only":[null,""],"Get whole show":[null,""],"method in which to download episodes for new shows.":[null,""],"Remove episode":[null,""],"remove an episode from your watchlist after it is downloaded.":[null,""],"Remove series":[null,""],"remove the whole series from your watchlist after any download.":[null,""],"Remove watched show":[null,""],"remove the show from sickrage if it's ended and completely watched":[null,""],"Start paused":[null,""],"shows grabbed from your trakt watchlist start paused.":[null,""],"Trakt blackList name":[null,""],"name (slug) of list on Trakt for blacklisting show on 'Add Trending Show' & 'Add Recommended Shows' pages":[null,""],"Email":[null,""],"Allows configuration of email notifications on a per show basis.":[null,""],"send email notifications?":[null,""],"SMTP host":[null,""],"hostname of your SMTP email server.":[null,""],"SMTP port":[null,""],"port number used to connect to your SMTP host.":[null,""],"SMTP from":[null,""],"sender email address, some hosts require a real address.":[null,""],"Use TLS":[null,""],"check to use TLS encryption.":[null,""],"SMTP user":[null,""],"(optional) your SMTP server username.":[null,""],"SMTP password":[null,""],"(optional) your SMTP server password.":[null,""],"Global email list":[null,""],"email addresses listed here, separated by commas if applicable, will<br> receive notifications for <b>all</b> shows.":[null,""],"(This field may be blank except when testing.)":[null,""],"Email Subject":[null,""],"use a custom subject for some privacy protection?":[null,""],"(leave blank for the default SickRage subject)":[null,""],"configure per-show notifications here by entering email address(es), separated by commas,":[null,""],"after selecting a show in the drop-down box. Be sure to activate the 'Save for this show'":[null,""],"button below after each entry.":[null,""],"Slack":[null,""],"Slack brings all your communication together in one place. It's real-time messaging, archiving and search for modern teams.":[null,""],"should SickRage post messages on Slack?":[null,""],"Slack Incoming Webhook":[null,""],"Discord":[null,""],"All-in-one voice and text chat for gamers that's free, secure, and works on both your desktop and phone.":[null,""],"Should SickRage post messages on Discord?":[null,""],"Discord Incoming Webhook":[null,""],"Create webhook under channel settings.":[null,""],"Discord Bot Name":[null,""],"Blank will use webhook default Name.":[null,""],"Discord Avatar URL":[null,""],"Blank will use webhook default Avatar.":[null,""],"Discord TTS":[null,""],"Send notifications using text-to-speech":[null,""],"Post-Processing":[null,""],"Episode Naming":[null,""],"Metadata":[null,""],"Settings that dictate how SickRage should process completed downloads.":[null,""],"enable the automatic post processor to scan and process any files in your Post Processing Dir":[null,""],"do not use if you use an external Post Processing script":[null,""],"Post Processing Dir":[null,""],"the folder where your download client puts the completed TV downloads.":[null,""],"please use seperate downloading and completed folders in your download client if possible.":[null,""],"Processing Method":[null,""],"what method should be used to put files into the library?":[null,""],"if you keep seeding torrents after they finish, please avoid the 'move' processing method to prevent errors.":[null,""],"Auto Post-Processing Frequency":[null,""],"time in minutes to check for new files to auto post-process (min 10)":[null,""],"Postpone post processing":[null,""],"wait to process a folder if sync files are present.":[null,""],"Sync File Extensions":[null,""],"comma seperated list of extensions or filename globs SickRage ignores when Post Processing":[null,""],"Rename Episodes":[null,""],"rename episode using the Episode Naming settings?":[null,""],"Create missing show directories":[null,"Maak afwesige program leêrs"],"create missing show directories when they get deleted":[null,""],"Add shows without directory":[null,""],"add shows without creating a directory (not recommended)":[null,""],"Move associated files":[null,""],"move associated (srt/srr/sfv/etc) files while post processing?":[null,""],"Rename .nfo file":[null,""],"rename the original .nfo file to .nfo-orig to avoid conflicts?":[null,""],"Associated file extensions":[null,""],"comma separated list of associated file extensions SickRage should keep while post processing.":[null,""],"leaving it empty means no associated files will be post processed":[null,""],"Delete non associated files":[null,""],"delete non associated files while post processing?":[null,""],"Change File Date":[null,""],"set last modified filedate to the date that the episode aired?":[null,""],"some systems may ignore this feature.":[null,""],"Timezone for File Date":[null,""],"local":[null,""],"network":[null,""],"what timezone should be used to change File Date?":[null,""],"Unpack":[null,""],"What to do with archived releases found in your <i>TV Download Dir</i>?":[null,""],"Ignore (do not process contents)":[null,""],"Unpack (process contents)":[null,""],"Treat as video (process archive as-is)":[null,""],"'Unpack' only works with RAR archives":[null,""],"Windows":[null,""],"WinRar is required on windows":[null,""],"Unpack Directory":[null,""],"Choose a path to unpack files, leave blank to unpack in download dir":[null,""],"Unrar Location":[null,""],"add the path to unrar if it is not in the system path":[null,""],"Alternate Unrar Tool":[null,""],"add the path to an alternate unrar tool if it is not in the system path":[null,""],"Delete RAR contents":[null,""],"delete content of RAR files, even if Process Method not set to move?":[null,""],"only working with RAR archive":[null,""],"Don't delete empty folders":[null,""],"leave empty folders when Post Processing?":[null,""],"can be overridden using manual Post Processing":[null,""],"Follow symbolic-links":[null,""],"follow down symbolic links in download directory?":[null,""],"<b>EXPERTS ONLY.</b><br>Enable only if you know what <b>circular symbolic links</b> are,<br>and can <b>verify that you have none</b>.":[null,""],"Use icacls":[null,""],"Windows only":[null,""],"sets video permissions after using the move method in post processing":[null,""],"Extra Scripts":[null,""],"see":[null,""],"for script arguments description and usage.":[null,""],"How SickRage will name and sort your episodes.":[null,""],"Name Pattern":[null,""],"Toggle Naming Legend":[null,""],"don't forget to add quality pattern. Otherwise after post-processing the episode will have UNKNOWN quality":[null,""],"Meaning":[null,""],"Pattern":[null,""],"Result":[null,""],"Use lower case if you want lower case names (eg. %sn, %e.n, %q_n etc)":[null,""],"Show Name":[null,""],"Show.Name":[null,""],"Show_Name":[null,""],"Season Number":[null,""],"XEM Season Number":[null,""],"Episode Number":[null,""],"XEM Episode Number":[null,""],"Episode Name":[null,""],"Episode.Name":[null,""],"Episode_Name":[null,""],"Air Date":[null,""],"Post-Processing Date":[null,""],"Quality":[null,""],"Scene Quality":[null,""],"Release Name":[null,""],"SickRage' is used in place of RLSGROUP if it could not be properly detected":[null,""],"Release Group":[null,""],"If episode is proper/repack add 'proper' to name.":[null,""],"Release Type":[null,""],"Multi-Episode Style":[null,""],"Single-EP Sample":[null,""],"Multi-EP sample":[null,""],"Strip Show Year":[null,""],"remove the TV show's year when renaming the file?":[null,""],"only applies to shows that have year inside parentheses":[null,""],"Custom Air-By-Date":[null,""],"name air-by-date shows differently than regular shows?":[null,""],"Toggle ABD Naming Legend":[null,""],"Regular Air Date":[null,""],"Year":[null,""],"Month":[null,""],"Day":[null,""],"Multi-EP style is ignored":[null,""],"Custom Sports":[null,""],"name sports shows differently than regular shows?":[null,""],"Toggle Sports Naming Legend":[null,""],"Sports Air Date":[null,""],"Custom Anime":[null,""],"name anime shows differently than regular shows?":[null,""],"Toggle Anime Naming Legend":[null,""],">XEM Season Number":[null,""],"Single-EP Anime Sample":[null,""],"Multi-EP Anime sample":[null,""],"Add Absolute Number":[null,""],"add the absolute number to the season/episode format?":[null,""],"only applies to anime. (eg. S15E45 - 310 vs S15E45)":[null,""],"Only Absolute Number":[null,""],"replace season/episode format with absolute number":[null,""],"only applies to anime.":[null,""],"No Absolute Number":[null,""],"don't include the absolute number":[null,""],"The data associated to the data. These are files associated to a TV show in the form of images and text that, when supported, will enhance the viewing experience.":[null,""],"Metadata Type":[null,""],"toggle metadata options that you wish to be created":[null,""],"multiple targets may be used":[null,""],"Select Metadata":[null,""],"Provider Priorities":[null,"Voorsiener Prioriteite"],"Provider Options":[null,"Voorsiener Stellings"],"Configure Custom Newznab Providers":[null,"Konfigureer persoonlike Newsnab Voorsieners"],"Configure Custom Torrent Providers":[null,"Konfigureer persoonlike Torrent Voorsieners"],"Check off and drag the providers into the order you want them to be used.":[null,"Merk en sleep die voorsieners in die orde wat jy wil hê hulle gebruik moet word."],"At least one provider is required but two are recommended.":[null,"Ten minste een voorsiener word vereis maar twee word aanbeveel."],"Torrent providers can be toggled in ":[null,"Torrent voorsieners kan aan en af gesit word in "],"Provider does not support backlog searches at this time.":[null,"Voorsiener ondersteun nie tans agterstand soektogte nie."],"Provider is <b>NOT WORKING</b>.":[null,"Voorsiener is <b>BUITE WERKING</b>."],"Configure individual provider settings here.":[null,"Konfigureer individuele voorsiener stellings hier."],"Check with provider's website on how to obtain an API key if needed.":[null,"Gebruik voorsiener se web tuiste om te sien hoe om 'n API sleutel te kry indien nodig."],"Configure provider":[null,"Konfigureer voorsiener"],"no providers available to configure.":[null,""],"URL":[null,""],"Enable daily searches":[null,""],"enable provider to perform daily searches.":[null,"aktiveer voorsiener om daaglikse soektogte te doen."],"Enable backlog searches":[null,"Aktiveer agterstand soektogte"],"enable provider to perform backlog searches.":[null,"aktiveer voorsiener om agterstand soektogte te doen."],"Season search mode":[null,""],"when searching for complete seasons you can choose to have it look for season packs only, or choose to have it build a complete season from just single episodes.":[null,""],"season packs only.":[null,""],"episodes only.":[null,""],"Enable fallback":[null,""],"when searching for a complete season depending on search mode you may return no results, this helps by restarting the search using the opposite search mode.":[null,""],"Custom URL":[null,""],"the URL should include the protocol (and port if applicable). Examples: http://192.168.1.4/ or http://localhost:3000/":[null,""],"Api key":[null,""],"Digest":[null,""],"Hash":[null,""],"Passkey":[null,""],"Cookies":[null,""],"example: uid=1234;pass=567845439634987<br>note: uid and pass are not your username/password.<br>use DevTools or Firebug to get these values after logging in on your browser.":[null,""],"Pin":[null,""],"Seed ratio":[null,""],"stop transfer when ratio is reached<br>(-1 SickRage default to seed forever, or leave blank for downloader default)":[null,""],"Minimum seeders":[null,""],"Minimum leechers":[null,""],"Confirmed download":[null,""],"only download torrents from trusted or verified uploaders ?":[null,""],"Ranked torrents":[null,""],"only download ranked torrents (trusted releases)":[null,""],"English torrents":[null,""],"only download english torrents, or torrents containing english subtitles":[null,""],"For Spanish torrents":[null,""],"ONLY search on this provider if show info is defined as \"Spanish\" (avoid provider's use for VOS shows)":[null,"Soek SLEGS op hierdie voorsiener as die program informasie gedefinieer is as \"Spanish\" (vermy voorsiener se gebruik vir VOS programme)"],"Sorting results by":[null,""],"Freeleech":[null,""],"only download <b>\"FreeLeech\"</b> torrents.":[null,""],"Category":[null,""],"select torrent with Italian subtitle":[null,""],"Configure Custom<br>Newznab Providers":[null,"Konfigureer Persoonlike<br>Newsnab Voorsieners"],"Add and setup or remove custom Newznab providers.":[null,"Voeg by, stel op of verwyder persoonlike Newsnab voorsieners."],"Select provider":[null,"Selekteer voorsiener"],"-- add new provider --":[null,"-- voeg nuwe voorsiener by --"],"Provider name":[null,"Voorsiener naam"],"Site URL":[null,""],"Newznab search categories":[null,""],"select your Newznab categories on the left, and click the \"update categories\" button to use them for searching.) <b>don't forget to to save the form!":[null,""],"Update Categories":[null,""],"Add":[null,""],"Delete":[null,""],"Add and setup or remove custom RSS providers.":[null,"Voeg by, stel op of verwyder persoonlike RSS voorsieners."],"RSS URL":[null,""],"Search element":[null,""],"eg: title":[null,""],"Episode Search":[null,""],"NZB Search":[null,""],"Torrent Search":[null,""],"How to manage searching with":[null,""],"Randomize Providers":[null,"Kies Voorsiener Ewekansig"],"randomize the provider search order instead of going in order of placement":[null,"kies voorsiener soektog orde ewekansig in plaas van van posisie in die lys"],"Download propers":[null,""],"replace original download with \"Proper\" or \"Repack\" if nuked":[null,""],"Check propers every":[null,""],"24 hours":[null,""],"4 hours":[null,""],"90 mins":[null,""],"45 mins":[null,""],"15 mins":[null,""],"Backlog search day(s)":[null,"Agterstand soektog dae"],"number of day(s) that the \"Forced Backlog Search\" will cover (e.g. 7 Days)":[null,"aantal dae waaroor die \"Forseer Agterstand Soektog\" sal strek (vb. 7 Dae)"],"Backlog search frequency":[null,"Agterstand soektog frekwensie"],"time in minutes between searches (min.":[null,""],"Daily search frequency":[null,""],"Usenet retention":[null,""],"age limit in days for usenet articles to be used (e.g. 500)":[null,""],"Ignore words":[null,""],"results with one or more word from this list will be ignored<br>separate words with a comma, e.g. \"word1,word2,word3\"":[null,""],"Require words":[null,""],"results with no word from this list will be ignored<br>separate words with a comma, e.g. \"word1,word2,word3\"":[null,""],"Trackers list":[null,""],"trackers that will be added to magnets without trackers<br>separate trackers with a comma, e.g. \"tracker1,tracker2,tracker3\"":[null,""],"Ignore language names in subbed results":[null,""],"ignore subbed releases based on language names <br>\n Example: \"dk\" will ignore words: dksub, dksubs, dksubbed, dksubed <br>\n separate languages with a comma, e.g. \"lang1,lang2,lang3":[null,""],"Allow high priority":[null,""],"set downloads of recently aired episodes to high priority":[null,""],"Use Failed Downloads":[null,""],"use Failed Download Handling?":[null,""],"will only work with snatched/downloaded episodes after enabling this":[null,""],"Delete Failed":[null,""],"delete files left over from a failed download?":[null,""],"this only works if Use Failed Downloads is enabled.":[null,""],"How to handle NZB search results.":[null,""],"Search NZBs":[null,""],"enable NZB search providers":[null,""],"Send .nzb files to":[null,""],"SABnzbd server URL":[null,""],"URL to your SABnzbd server (e.g. http://localhost:8080/)":[null,""],"SABnzbd username":[null,""],"(blank for none)":[null,""],"SABnzbd password":[null,""],"SABnzbd API key":[null,""],"locate at... SABnzbd Config -> General -> API Key":[null,""],"Use SABnzbd category":[null,""],"add downloads to this category (e.g. TV)":[null,""],"Use SABnzbd category (backlog episodes)":[null,"Gebruik SABnzbd kategorie (agterstand episodes)"],"add downloads of old episodes to this category (e.g. TV)":[null,""],"Use SABnzbd category for anime":[null,""],"add anime downloads to this category (e.g. anime)":[null,""],"Use SABnzbd category for anime (backlog episodes)":[null,"Gebruik SABnzbd kategorie vir anime (agterstand episodes)"],"add anime downloads of old episodes to this category (e.g. anime)":[null,""],"Use forced priority":[null,""],"enable to change priority from HIGH to FORCED":[null,""],"Black hole folder location":[null,""],"<b>.nzb</b> files are stored at this location for external software to find and use":[null,""],"Connect using HTTPS":[null,""],"enable Secure control in NZBGet and set the correct Secure Port here":[null,""],"NZBget host:port":[null,""],"(e.g. localhost:6789)":[null,""],"NZBget RPC host name and port number (not NZBgetweb!)":[null,""],"NZBget username":[null,""],"locate in nzbget.conf (default:nzbget)":[null,""],"NZBget password":[null,""],"locate in nzbget.conf (default:tegbzn6789)":[null,""],"Use NZBget category":[null,""],"send downloads marked this category (e.g. TV)":[null,""],"Use NZBget category (backlog episodes)":[null,"Gebruik NZBget kategorie (agterstand episodes)"],"send downloads of old episodes marked this category (e.g. TV)":[null,""],"Use NZBget category for anime":[null,""],"send anime downloads marked this category (e.g. anime)":[null,""],"Use NZBget category for anime (backlog episodes)":[null,"Gebruik NZBget kategorie vir anime (agterstand episodes)"],"send anime downloads of old episodes marked this category (e.g. anime)":[null,""],"NZBget priority":[null,""],"Very low":[null,""],"Low":[null,""],"Very high":[null,""],"Force":[null,""],"priority for daily snatches (no backlog)":[null,"prioriteit vir daaglikse gryp-aksies (geen agterstand)"],"Torrent host:port":[null,""],"URL to your Synology DSM (e.g. http://localhost:5000/)":[null,""],"Client username":[null,""],"Client password":[null,""],"Downloaded files location":[null,""],"where Synology Download Station will save downloaded files (blank for client default)":[null,""],"the destination has to be a shared folder for Synology DS":[null,""],"Click below to test":[null,""],"How to handle Torrent search results.":[null,""],"Search torrents":[null,""],"enable torrent search providers":[null,"aktiveer torrent soektog voorsieners"],"Send .torrent files to":[null,""],"<b>.torrent</b> files are stored at this location for external software to find and use":[null,""],"URL to your torrent client (e.g. http://localhost:8000/)":[null,""],"Torrent RPC URL":[null,""],"the path without leading and trailing slashes (e.g. transmission)":[null,""],"Http Authentication":[null,""],"Verify certificate":[null,""],"disable if you get \"Deluge: Authentication Error\" in your log":[null,""],"verify SSL certificates for HTTPS requests":[null,""],"Add label to torrent":[null,""],"(blank spaces are not allowed)":[null,""],"label plugin must be enabled in Deluge clients":[null,""],"for QBitTorrent 3.3.1 and up":[null,""],"Add label to torrent for anime":[null,""],"for QBitTorrent 3.3.1 and up ":[null,""],"where <span id=\"torrent_client\">the torrent client</span> will save downloaded files (blank for client default)":[null,""],"the destination has to be a shared folder for Synology DS</span>":[null,""],"Minimum seeding time":[null,""],"time in hours":[null,""],"(default:'0' passes blank to client and '-1' passes nothing)":[null,""],"Start torrent paused":[null,""],"add .torrent to client but do <b style=\"font-weight:900\">not</b> start downloading":[null,""],"Allow high bandwidth":[null,""],"use high bandwidth allocation if priority is high":[null,""],"Test Connection":[null,""],"Windows Shares":[null,""],"Defines your existing windows shares so that we can add them to the browse dialog":[null,""],"Share #{number}":[null,""],"Share label":[null,""],"Hostname or IP":[null,""],"Share path":[null,""],"Subtitles Search":[null,""],"Subtitles Plugin":[null,""],"Plugin Settings":[null,""],"Settings that dictate how SickRage handles subtitles search results.":[null,""],"Search Subtitles":[null,""],"Subtitle Languages":[null,""],"Subtitle Directory":[null,""],"the directory where SickRage should store your <i>Subtitles</i> files.":[null,""],"leave empty if you want store subtitle in episode path.":[null,""],"Subtitle Find Frequency":[null,""],"time in hours between scans (default: 1)":[null,""],"Include Specials":[null,""],"include the show's specials when searching for subtitles?":[null,""],"Perfect matches":[null,""],"only download subtitles that match: release group, video codec, audio codec and resolution":[null,""],"if disabled you may get out of sync subtitles":[null,""],"Subtitles History":[null,""],"log downloaded Subtitle on History page?":[null,""],"Subtitles Multi-Language":[null,""],"append language codes to subtitle filenames?":[null,""],"this option is required if you use multiple subtitle languages":[null,""],"Delete unwanted subtitles":[null,""],"enable to delete unwanted subtitle languages bundled with release":[null,""],"Embedded Subtitles":[null,""],"ignore subtitles embedded inside video file?":[null,""],"this will ignore <u>all</u> embedded subtitles for every video file!":[null,""],"Hearing Impaired Subtitles":[null,""],"download hearing impaired style subtitles?":[null,""],"See":[null,""],"for a script arguments description.":[null,""],"Additional scripts separated by <b>|</b>.":[null,""],"Scripts are called after each episode has searched and downloaded subtitles.":[null,""],"For any scripted languages, include the interpreter executable before the script. See the following example":[null,""],"For Windows:":[null,""],"For Linux / OS X:":[null,""],"Subtitle Providers":[null,"Subtitel Voorsieners"],"Check off and drag the plugins into the order you want them to be used.":[null,""],"At least one plugin is required.":[null,""]," Web-scraping plugin":[null,""],"Provider Settings":[null,"Voorsiener Stellings"],"Set user and password for each provider":[null,"Voorsien gebruiker en wagwoord vir elke voorsiener"],"User Name":[null,""],"Change Show":[null,""],"Prev Show":[null,""],"Next Show":[null,""],"Jump to Season":[null,""],"Specials":[null,""],"Poster for":[null,""],"Stars":[null,""],"minutes":[null,""],"View other popular {genre} shows on trakt.tv.":[null,""],"View other popular {imdbgenre} shows on IMDB.":[null,""],"Allowed":[null,""],"Preferred":[null,""],"Originally Airs":[null,""],"Show Status":[null,""],"Default EP Status":[null,""],"Location":[null,""],"Missing":[null,"Afwesig"],"Scene Name":[null,""],"Required Words":[null,""],"Ignored Words":[null,""],"Size":[null,""],"Info Language":[null,""],"Subtitles SR Metadata":[null,""],"Season Folders":[null,""],"Paused":[null,""],"Air-by-Date":[null,""],"Sports":[null,""],"DVD Order":[null,""],"Scene Numbering":[null,""],"Select Filtered Episodes":[null,""],"Clear All":[null,""],"Change selected episodes to":[null,""],"Select Columns":[null,""],"Hide Episodes":[null,""],"Show Episodes":[null,""],"NFO":[null,""],"TBN":[null,""],"Episode":[null,""],"Absolute":[null,""],"Scene":[null,""],"Scene Absolute":[null,""],"File Name":[null,""],"Airdate":[null,""],"Download":[null,""],"Change the value here if scene numbering differs from the indexer episode numbering":[null,""],"Change the value here if scene absolute numbering differs from the indexer absolute numbering":[null,""],"Manual Search":[null,""],"Do you want to mark this episode as failed?":[null,""],"The episode release name will be added to the failed history, preventing it to be downloaded again.":[null,""],"Do you want to include the current episode quality in the search?":[null,""],"Choosing No will ignore any releases with the same episode quality as the one currently downloaded/snatched.":[null,""],"Download subtitle":[null,""],"Do you want to re-download the subtitle for this language?":[null,""],"It will overwrite your current subtitle":[null,""],"Format":[null,""],"Advanced":[null,""],"Main Settings":[null,""],"Show Location":[null,""],"Preferred Quality":[null,""],"Default Episode Status":[null,""],"this will set the status for future episodes.":[null,""],"this only applies to episode filenames and the contents of metadata files.":[null,""],"search for subtitles":[null,""],"Use SR Metdata":[null,""],"use SickRage metadata when searching for subtitle, this will override the autodiscovered metadata":[null,""],"pause this show (SickRage will not download episodes)":[null,""],"Format Settings":[null,""],"Air by date":[null,""],"check if the show is released as Show.03.02.2010 rather than Show.S02E03.":[null,""],"in case of an air date conflict between regular and special episodes, the later will be ignored.":[null,""],"check if the show is Anime and episodes are released as Show.265 rather than Show.S02E03":[null,""],"check if the show is a sporting or MMA event released as Show.03.02.2010 rather than Show.S02E03":[null,""],"Season folders":[null,""],"group episodes by season folder (uncheck to store in a single folder)":[null,""],"search by scene numbering (uncheck to search by indexer numbering)":[null,""],"use the DVD order instead of the air order":[null,""],"a \"Force Full Update\" is necessary, and if you have existing episodes you need to sort them manually.":[null,""],"comma-separated <i>e.g. \"word1,word2,word3</i>\"":[null,""],"search results with one or more words from this list will be ignored.":[null,""],"e.g. \"word1,word2,word3\"":[null,""],"search results with no words from this list will be ignored.":[null,""],"Scene Exception":[null,""],"this will affect episode search on NZB and torrent providers.":[null,""],"this list appends to the original show name.":[null,""],"WARNING logs":[null,""],"ERROR logs":[null,""],"There are no events to display.":[null,""],"Limit":[null,""],"Layout":[null,""],"HistoryLayout":[null,""],"Compact":[null,""],"Detailed":[null,""],"Time":[null,""],"Provider":[null,"Voorsiener"],"Missing Provider":[null,"Afwesige Voorsiener"],"missing provider":[null,"afwesige voorsiener"],"Directory":[null,""],"Show Name (tvshow.nfo)":[null,""],"Indexer":[null,""],"Enter the folder containing the episode":[null,""],"Process Method to be used":[null,""],"Copy":[null,""],"Move":[null,""],"Hard Link":[null,""],"Symbolic Link":[null,""],"Symbolic Link Reversed":[null,""],"Force already Post Processed Dir/Files":[null,""],"Mark Dir/Files as priority download":[null,""],"(Check it to replace the file even if it exists at higher quality)":[null,""],"Delete files and folders":[null,""],"(Check it to delete files and folders like auto processing)":[null,""],"Don't use processing queue":[null,""],"(If checked this will return the result of the process here, but may be slow!)":[null,""],"Mark download as failed":[null,""],"Process":[null,""],"Download subtitles for this show?":[null,""],"use SickRage metadata when searching for subtitle, <br />this will override the autodiscovered metadata":[null,""],"Status for previously aired episodes":[null,""],"Status for all future episodes":[null,""],"Group episodes by season folder?":[null,""],"Is this show an Anime?":[null,""],"Is this show scene numbered?":[null,""],"Save Defaults":[null,""],"Use current values as the defaults":[null,""],"<p>Select your preferred fansub groups from the <b>Available Groups</b> and add them to the <b>Whitelist</b>. Add groups to the <b>Blacklist</b> to ignore them.</p>\n <p>The <b>Whitelist</b> is checked <i>before</i> the <b>Blacklist</b>.</p>\n <p>Groups are shown as <b>Name</b> | <b>Rating</b> | <b>Number of subbed episodes</b>.</p>\n <p>You may also add any fansub group not listed to either list manually.</p>\n <p>When doing this please note that you can only use groups listed on anidb for this anime.\n <br>If a group is not listed on anidb but subbed this anime, please correct anidb's data.</p>":[null,""],"Whitelist":[null,""],"Available Groups":[null,""],"Add to Whitelist":[null,""],"Add to Blacklist":[null,""],"Blacklist":[null,""],"Custom Group":[null,""],"Allowed Quality:":[null,""],"Preferred Quality:":[null,""],"Filter Show Name":[null,""],"Root":[null,""],"All":[null,""],"Clear Filter(s)":[null,""],"Poster":[null,"Plakaat"],"Small Poster":[null,""],"Banner":[null,"Banier"],"Simple":[null,""],"Next Episode":[null,""],"Progress":[null,""],"Direction":[null,""],"Ascending":[null,""],"Descending":[null,""],"Poster Size":[null,""],"Continuing":[null,""],"Ended":[null,""],"Total":[null,""],"Invalid date":[null,""],"No Network":[null,""],"Next Ep":[null,""],"Prev Ep":[null,""],"Show":[null,"Wys"],"Downloads":[null,""],"Active":[null,""],"loading":[null,""],"Loading...":[null,""],"<p><b><u>Preferred</u></b> qualities will replace those in <b><u>allowed</u></b>, even if they are lower.</p>":[null,""],"New":[null,""],"Set as Default":[null,""],"Remember me":[null,""],"Edit Selected":[null,""],"Subtitle":[null,""],"Default Ep Status":[null,""],"Update":[null,""],"Rescan":[null,""],"Rename":[null,""],"Search Subtitle":[null,""],"Force Metadata Regen":[null,""],"Snatched (Allowed)":[null,""],"Jump to Show":[null,""],"Force Backlog":[null,"Forseer Agterstand Soektog"],"Manage episodes with status":[null,""],"Manage":[null,""],"None of your episodes have status":[null,""],"Shows containing":[null,""],"episodes":[null,""],"Set checked shows/episodes to":[null,""],"Go":[null,""],"Select all":[null,""],"Clear all":[null,""],"Release":[null,""],"Backlog Search":[null,"Agterstand Soektog"],"Not in progress":[null,"Nie besig nie"],"In Progress":[null,"Besig"],"Daily Search":[null,"Daaglikse Soektog"],"Find Propers Search":[null,"Vind \"Propers\" Soektog"],"Propers search disabled":[null,"\"Propers\" soektog gedeaktiveer"],"Subtitle Search":[null,"Subtitel Soektog"],"Subtitle search disabled":[null,"Subtitel soektog gedeaktiveer"],"Search Queue":[null,"Pyplyn Soektog"],"pending items":[null,""],"Daily":[null,""],"Manual":[null,""],"Changing any settings marked with (<span class=\"separator\">*</span>) will force a refresh of the selected shows.":[null,""],"Selected Shows":[null,""],"Root Directories":[null,""],"Current":[null,""],"Keep":[null,""],"Custom":[null,""],"Group episodes by season folder (set to \"No\" to store in a single folder).":[null,""],"Pause these shows (SickRage will not download episodes).":[null,""],"This will set the status for future episodes.":[null,""],"Search by scene numbering (set to \"No\" to search by indexer numbering).":[null,""],"Set if these shows are Anime and episodes are released as Show.265 rather than Show.S02E03":[null,""],"Set if these shows are sporting or MMA events released as Show.03.02.2010 rather than Show.S02E03.":[null,""],"In case of an air date conflict between regular and special episodes, the later will be ignored.":[null,""],"Set if these shows are released as Show.03.02.2010 rather than Show.S02E03.":[null,""],"Search for subtitles.":[null,""],"All of your episodes have {subsLanguage} subtitles.":[null,""],"Manage episodes without":[null,""],"Episodes without {subsLanguage} subtitles.":[null,""],"Episodes without {subtitleLanguage} (undefined) subtitles.":[null,""],"Download missed subtitles for selected episodes":[null,""],"Performing Restart":[null,""],"Waiting for SickRage to shut down":[null,""],"Waiting for SickRage to start again":[null,""],"Loading the default page":[null,""],"Error: The restart has timed out, perhaps something prevented SickRage from starting again?":[null,""],"Key":[null,""],"Missed":[null,""],"Today":[null,""],"Soon":[null,""],"Later":[null,""],"Subscribe":[null,""],"Date":[null,""],"View Paused":[null,""],"Hidden":[null,""],"Shown":[null,""],"Calendar":[null,"Kalender"],"List":[null,"Lys"],"Ends":[null,""],"Next Ep Name":[null,""],"Run time":[null,""],"Indexers":[null,""],"No shows for this day":[null,"Geen programme vir hierdie dag"],"Airs":[null,""],"Plot":[null,"Opsomming"],"Show Update":[null,"Program Opdatering"],"Version Check":[null,"Weergawe Kontroleerder"],"Proper Finder":[null,"Proper Soeker"],"Post Process":[null,"Post Prosesering"],"Subtitles Finder":[null,"Subtitel Soeker"],"Scheduler":[null,"Skeduleerder"],"Alive":[null,"Lewendig"],"Start Time":[null,"Begin Tyd"],"Cycle Time":[null,"Siklus Tyd"],"Next Run":[null,"Volgende Iterasie"],"Last Run":[null,"Laaste Iterasie"],"Silent":[null,"Stil"],"True":[null,"Waar"],"N/A":[null,"N/A"],"Show id":[null,"Program id"],"Show name":[null,"Program naam"],"Priority":[null,"Prioriteit"],"Added":[null,"Bygevoeg"],"Queue type":[null,"Pyplyn tipe"],"LOW":[null,"LAAG"],"NORMAL":[null,"NORMAAL"],"HIGH":[null,"HOOG"],"Disk Space":[null,"Skyf Spasie"],"Free space":[null,"Vrye Spasie"],"TV Download Directory":[null,"TV Aflaai Leêr"],"Media Root Directories":[null,"Media Wortel Leêrs"],"Preview of the proposed name changes":[null,"Voorskou van die voorgestelde naam veranderings"],"All Seasons":[null,"Alle Seisoene"],"select all":[null,""],"Rename Selected":[null,"Herbenoem die seleksie"],"Cancel Rename":[null,"Kanselleer Herbenoeming"],"Old Location":[null,"Ou Bestemming"],"New Location":[null,"Nuwe Bestemming"],"Trakt API did not return any results, please check your config.":[null,"Trakt API het nie enige resultate terug gebring nie, verifieer jou konfigurasie."],"votes":[null,"stemme"],"Remove Show":[null,"Verwyder Program"],"Level":[null,""],"Filter":[null,""],"All non-absolute folder locations are relative to ":[null,""],"Manual Post-Processing":[null,""],"Episode Status Management":[null,"Episode Status Beheer"],"Update PLEX":[null,"Dateer PLEX op"],"Update KODI":[null,"Dateer KODI op"],"Update Emby":[null,"Dateer Emby op"],"Missed Subtitle Management":[null,"Vermisde Subtitel Beheer"],"Help & Info":[null,"Help & Info"],"Backup & Restore":[null,"Rugsteun & Restoreer"],"Tools":[null,"Gereedskap"],"Support SickRage":[null,"Ondersteun SickRage"],"View Errors":[null,"Besigtig Foute"],"View Warnings":[null,"Besigtig Waarskuwings"],"View Log":[null,"Besigtig Log"],"Check For Updates":[null,"Soek vir opdaterings"],"Restart":[null,"Herlaai"],"Shutdown":[null,"Sit af"],"Logout":[null,"Teken af"],"Server Status":[null,"Bediener Status"],"View overview of snatched episodes":[null,"Besigtig opsomming van gegrypte episodes"],"Episodes Downloaded":[null,"Episodes Afgelaai"],"Memory used":[null,"Geheue gebruik"],"Load time":[null,"Laai tyd"],"Branch":[null,"Tak"],"Now":[null,"Nou"]}}}} \ No newline at end of file +{"messages":{"domain":"messages","locale_data":{"messages":{"100":[null,""],"250":[null,""],"500":[null,""],"":{"domain":"messages","plural_forms":"nplurals=2; plural=(n != 1);","lang":"af_ZA"},"Drama":[null,"Drama"],"Mystery":[null,"Misterie"],"Science-Fiction":[null,"Wetenskapsfiksie"],"Crime":[null,"Misdaad"],"Action":[null,"Aksie"],"Comedy":[null,"Komedie"],"Thriller":[null,"Riller"],"Animation":[null,"Animasie"],"Family":[null,"Familie"],"Fantasy":[null,"Fantasie"],"Adventure":[null,"Avontuur"],"Horror":[null,"Gruwel"],"Film-Noir":[null,"Film Noir"],"Sci-Fi":[null,"Wetenskapsfiksie"],"Romance":[null,"Romanties"],"Sport":[null,"Sport"],"War":[null,"Oorlog"],"Biography":[null,"Biografie"],"History":[null,"Geskiedenis"],"Music":[null,"Musiek"],"Western":[null,"Western"],"News":[null,"Nuus"],"Sitcom":[null,"Reeks"],"Reality-TV":[null,"Realiteits TV"],"Documentary":[null,"Dokumentêr"],"Game-Show":[null,"Speletjiesprogram"],"Musical":[null,"Musikaal"],"Talk-Show":[null,"Klets Program"],"Started Download":[null,"Het begin met aflaai taak"],"Download Finished":[null,"Klaar met aflaai taak"],"Subtitle Download Finished":[null,"Sub titel het klaar afgelaai"],"SickRage Updated":[null,"SickRage het opgedateer"],"SickRage Updated To Commit#: ":[null,"SickRage het opgedateer na Commit#: "],"SickRage new login":[null,"Nuwe SickRage anntekening"],"New login from IP: {0}. http://geomaplookup.net/?ip={0}":[null,"Nuwe aantekening van IP: {0}. http://geomaplookup.net/?ip={0}"],"Repeat":[null,"Herhaling"],"Repeat (Separated)":[null,"Herhaling(Apart)"],"Extend":[null,"Verleng"],"Extend (Limited)":[null,"Verleng(Beperk)"],"Extend (Limited, E-prefixed)":[null,"Verleng(Beperk, E vooraan)"],"Downloaded":[null,"Afgelaai"],"Snatched":[null,"Gegryp"],"Snatched (Proper)":[null,"Gegryp (Oordentelik)"],"Failed":[null,"Onsuksesvol"],"Snatched (Best)":[null,"Gegryp (Beste)"],"Archived":[null,"Argief"],"Unknown":[null,"Onbekend"],"Unaired":[null,"Nog nie uitgesaai"],"Skipped":[null,"Oorgeslaan"],"Wanted":[null,"Gesoek"],"Ignored":[null,"Geignoreerd"],"Subtitled":[null,"Subtiteleerd"],"For best results please set the Download Station alias as":[null,""],"You can check this setting in the Synology DSM":[null,""],"Control Panel":[null,""],"Application Portal":[null,""],"Make sure you allow DSM to be embedded with iFrames too in":[null,""],"DSM Settings":[null,""],"Security":[null,""],"<No Filter>":[null,"<Geen Filter>"],"Daily Searcher":[null,""],"Backlog":[null,"Agterstand"],"Show Updater":[null,""],"Check Version":[null,"Bevestig Weergawe"],"Show Queue":[null,"Program Pyplyn"],"Search Queue (All)":[null,""],"Search Queue (Daily Searcher)":[null,""],"Search Queue (Backlog)":[null,""],"Search Queue (Manual)":[null,""],"Search Queue (Retry/Failed)":[null,""],"Search Queue (RSS)":[null,""],"Find Propers":[null,""],"Postprocessor":[null,""],"Find Subtitles":[null,""],"Trakt Checker":[null,"Trakt Kontroleerder"],"Event":[null,""],"Error":[null,"Fout"],"Tornado":[null,""],"Thread":[null,""],"Main":[null,""],"Loading":[null,""],"New update found for SickRage, starting auto-updater":[null,"Nuwe weergawe gevind vir SickRage, outomatiese opdatering begin"],"Update was successful":[null,"Opdatering was suksesvol"],"Update failed!":[null,"Opdatering het gefaal!"],"Backup":[null,"Rugsteun"],"Config backup in progress...":[null,"Besig met konfigurasie rugsteun proses..."],"Config backup successful, updating...":[null,"Konfigurasie rugsteun proses was suksesvol, besig met opdatering..."],"Config backup failed, aborting update":[null,"Konfigurasie rugsteun taak het misluk, opdatering word gestaak"],"No update needed":[null,"Geen opdatering benodig"],"Mako Error":[null,"Mako Probleem"],"Oops":[null,"Oeps"],"Wrong API key used":[null,"Verkeerde API sleutel gebruik"],"Login":[null,"Teken aan"],"API Key not generated":[null,"API sleutel nie gegenereer nie"],"API Builder":[null,"API Bouer"],"Schedule":[null,"Skedule"],"Test 1":[null,"Toets 1"],"This is test number 1":[null,"Die is toets nommer 1"],"Test 2":[null,"Toets 2"],"This is test number 2":[null,"Die is toets nommer 2"],"You're using the {branch} branch. Please use 'master' unless specifically asked":[null,"Jy gebruik die {branch} tak. Gebruik asseblief 'master' tensy anders gevra word"],"Invalid show parameters":[null,"Ontoelaatbare vertoning parameters"],"Invalid parameters":[null,""],"Episode couldn't be retrieved":[null,"Kon nie die episode ontrek nie"],"Home":[null,"Tuis"],"Show List":[null,"Program Lys"],"Error: Unsupported Request. Send jsonp request with 'callback' variable in the query string.":[null,"Fout: Ontoelaatbare Versoek: Stuur jsonp versoek met 'callback' veranderlike in die navraag string."],"Success. Connected and authenticated":[null,"Sukses. Gekonnekteerd en bemagtig"],"Authentication failed. SABnzbd expects":[null,"Bemagtiging het gefaal. SABnzbd verwag"],"as authentication method":[null,"as bemagtigings metode"],"Unable to connect to host":[null,"Kon nie aan die gasheer konnekteer nie"],"SMS sent successfully":[null,"SMS suksesvol gestuur"],"Problem sending SMS: {message}":[null,"SMS versending probleem: {message}"],"Telegram notification succeeded. Check your Telegram clients to make sure it worked":[null,"Telegram kennisgewing was suksesvol. Gaan jou Telegram kliënte na om seker te maak dit het gewerk"],"Error sending Telegram notification: {message}":[null,"Fout met Telegram kennisgewing versending: {message}"],"join notification succeeded. Check your join clients to make sure it worked":[null,"aansluitings kennisgewing suksesvol. Toets jou aansluitings kliënte om te bevestig dat dit werk"],"Error sending join notification: {message}":[null,""]," with password":[null," met 'n wagwoord"],"Registered and Tested growl successfully {growl_host}":[null,"growl suksesvol getoets en geregistreer {growl_host}"],"Registration and Testing of growl failed {growl_host}":[null,"growl toets en registrasie het gefaal {growl_host}"],"Test prowl notice sent successfully":[null,"Toets kennisgewing na prowl was suksesvol"],"Test prowl notice failed":[null,"Toets kennisgewing na prowl het gefaal"],"Boxcar2 notification succeeded. Check your Boxcar2 clients to make sure it worked":[null,"Boxcar 2 kennisgewing was suksesvol. Gaan jou Boxcar 2 kliënte na om seker te maak dit het gewerk"],"Error sending Boxcar2 notification":[null,"Fout met Boxcar2 kennisgewing versending"],"Pushover notification succeeded. Check your Pushover clients to make sure it worked":[null,"Pushover kennisgewing was suksesvol. Gaan jou Pushover kliënte na om seker te maak dit het gewerk"],"Error sending Pushover notification":[null,"Fout met Pushover kennisgewing versending"],"Key verification successful":[null,"Sleutel suksesvol geverifieer"],"Unable to verify key":[null,"Nie in staat om die sleutel te verifieer nie"],"Tweet successful, check your twitter to make sure it worked":[null,"Tweet was suksesvol, gaan jou Twitter na om seker te maak dit het gewerk"],"Error sending tweet":[null,"Fout met Tweet versending"],"Please enter a valid account sid":[null,""],"Please enter a valid auth token":[null,""],"Please enter a valid phone sid":[null,""],"Please format the phone number as \"+1-###-###-####\"":[null,""],"Authorization successful and number ownership verified":[null,""],"Error sending sms":[null,""],"Slack message successful":[null,""],"Slack message failed":[null,""],"Discord message successful":[null,""],"Discord message failed":[null,""],"Test KODI notice sent successfully to {kodi_host}":[null,"Kodi toets-kennisgewing suksesvol gestuur na {kodi_host}"],"Test KODI notice failed to {kodi_host}":[null,"Kodi toets kennisgewing het misluk na {kodi_host}"],"Successful test notice sent to Plex Home Theater ... {plex_clients}":[null,"'n Suksesvolle toets boodskap was gestuur na Plex Home Theater ... {plex_clients}"],"Test failed for Plex Home Theater ... {plex_clients}":[null,"Onsuksesvolle toets vir Plex Home Theater ... {plex_clients}"],"Tested Plex Home Theater(s)":[null,"Plex Home Theater(s) getoets"],"Successful test of Plex Media Server(s) ... {plex_servers}":[null,"Suksesvolle toets van Plex Media Server(s) ... {plex_servers}"],"Test failed, No Plex Media Server host specified":[null,"Toets was onsuksesvol, geen Plex Media Server gasheer gespesifiseer"],"Test failed for Plex Media Server(s) ... {plex_servers}":[null,"Onsuksesvolle toets vir Plex Media Server(s) ... {plex_servers}"],"Tested Plex Media Server host(s)":[null,"Plex Media Server gasheer(e) getoets"],"Tried sending desktop notification via libnotify":[null,"Het probeer om desktop kennisgewing te stuur via libnotify"],"Test notice sent successfully to {emby_host}":[null,"Toets kennisgewing was suksesvol na {emby_host} gestuur"],"Test notice failed to {emby_host}":[null,"Toets kennisgewing het gefaal na {emby_host}"],"Successfully started the scan update":[null,"Scan opdatering suksesvol begin"],"Test failed to start the scan update":[null,"Toets het gefaal om die scan opdatering te begin"],"Test notice sent successfully to {nmj2_host}":[null,"Toets kennisgewing was suksesvol na {nmj2_host} gestuur"],"Test notice failed to {nmj2_host}":[null,"Toets boodskap na {nmj2_host} het misluk"],"Trakt Authorized":[null,"Trakt was gemagtig"],"Trakt Not Authorized!":[null,"Trakt is nie gemagtig nie!"],"Test email sent successfully! Check inbox.":[null,"Toets e-pos suksesvol gestuur! Kontroleer jou inboks."],"ERROR: {last_error}":[null,"FOUT: {last_error}"],"Test NMA notice sent successfully":[null,"NMA toets boodskap met sukses gestuur"],"Test NMA notice failed":[null,"NMA toets boodskap het misluk"],"Pushalot notification succeeded. Check your Pushalot clients to make sure it worked":[null,"Pushalot kennisgewing was suksesvol. Kontroleer jou Pushalot kliënte om seker te maak dit het gewerk"],"Error sending Pushalot notification":[null,"Fout met die versending van Pushalot kennisgewing"],"Pushbullet notification succeeded. Check your device to make sure it worked":[null,"Pushbullet kennisgewing was suksesvol. Kontroleer jou toestel om seker te maak dit het gewerk"],"Error sending Pushbullet notification":[null,"Fout met versending van Pushbullet kennisgewing"],"Status":[null,"Status"],"Restarting SickRage":[null,"SickRage aan die herlaai"],"Update Failed":[null,"Opdatering het gefaal"],"Update wasn't successful, not restarting. Check your log for more information.":[null,"Opdatering was nie suksesvol nie, gaan nie herlaai nie. Kontroleer jou log vir meer inligting."],"Checking out branch":[null,"Besig om tak uit te teken"],"Already on branch":[null,"Reeds op tak"],"Invalid show ID: {show}":[null,"Verkeerde vertoning ID: {show}"],"Show not in show list":[null,"Program nie in program lys"],"Edit":[null,"Wysig"],"This show is in the process of being downloaded - the info below is incomplete.":[null,""],"The information on this page is in the process of being updated.":[null,""],"The episodes below are currently being refreshed from disk":[null,""],"Currently downloading subtitles for this show":[null,""],"This show is queued to be refreshed.":[null,""],"This show is queued and awaiting an update.":[null,""],"This show is queued and awaiting subtitles download.":[null,""],"Resume":[null,"Hervat"],"Pause":[null,"Pause"],"Remove":[null,"Verwyder"],"Re-scan files":[null,"Scan weer die leêrs"],"Force Full Update":[null,"Forseer 'n volledige opdatering"],"Update show in KODI":[null,"Dateer die program op in KODI"],"Update show in Emby":[null,"Dateer die program op in Emby"],"Hide specials":[null,""],"Show specials":[null,""],"Preview Rename":[null,"Voorskou van nuwe naam"],"Download Subtitles":[null,"Laai subtitels af"],"No scene exceptions":[null,"Geen \"scene\" uitsonderings"],"Invalid show ID":[null,"Verkeerde program ID"],"Unable to find the specified show":[null,"Kan nie die spesifiseerde program vind nie"],"Unable to retreive Fansub Groups from AniDB.":[null,"Kan nie die Fansub Groepe vanaf AniDB ontwin nie."],"Edit Show":[null,"Wysig Program"],"Unable to refresh this show: {error}":[null,"Kan nie die program verfris nie: {error}"],"New location <tt>{location}</tt> does not exist":[null,"Nuwe plek <tt>{location}</tt> bestaan nie"],"Unable to update show: {error}":[null,"Kan nie die program opdateer nie: {error}"],"Unable to force an update on scene exceptions of the show.":[null,""],"Unable to force an update on scene numbering of the show.":[null,""],"{num_errors:d} error{plural} while saving changes:":[null,""],"{show_name} has been {paused_resumed}":[null,""],"resumed":[null,"hervat"],"paused":[null,"veronderbreek"],"{show_name} has been {deleted_trashed} {was_deleted}":[null,""],"deleted":[null,"geskrap"],"trashed":[null,"verskuif na asblik"],"(media untouched)":[null,"(media onaangeraak)"],"(with all related media)":[null,"(met alle verwante media)"],"Unable to refresh this show.":[null,"Kan nie hierdie program verfris nie."],"Unable to update this show.":[null,"Kan nie hierdie program opdateer nie."],"Library update command sent to KODI host(s)): {kodi_hosts}":[null,""],"Unable to contact one or more KODI host(s)): {kodi_hosts}":[null,""],"Library update command sent to Plex Media Server host: {plex_server}":[null,""],"Unable to contact Plex Media Server host: {plex_server}":[null,""],"Library update command sent to Emby host: {emby_host}":[null,""],"Unable to contact Emby host: {emby_host}":[null,"Emby host:{emby_host} kontak nie moontlik"],"You must specify a show and at least one episode":[null,""],"Invalid status":[null,"Ongeldige status"],"Backlog was automatically started for the following seasons of <b>{show_name}</b>":[null,"Agterstand soektog het automaties begin vir die volgende seisoene van <b>{show_name}</b>"],"Season":[null,"Seisoen"],"Backlog started":[null,"Agterstand soektog het begin"],"Retrying Search was automatically started for the following season of <b>{show_name}</b>":[null,"Probeer-weer Soektog is outomaties weer begin vir die volgende seisoen van <b>{show_name}</b>"],"Retry Search started":[null,"Probeer-weer Soektog het begin"],"You must specify a show":[null,"Jy moet 'n show spesifiseer"],"Can't rename episodes when the show dir is missing.":[null,"Kan nie die episodes hernoem wanneer die program leêr vermis word nie."],"New subtitles downloaded: {new_subtitle_languages}":[null,""],"No subtitles downloaded":[null,"Geen onderskrifte afgelaai"],"IRC":[null,"IRC"],"Could not load news from the repo. [Click here for news.md])({news_url})":[null,"Kon nie die nuus van die repo af laai nie. [Kliek hier vir nuus.md])({news_url})"],"The was a problem connecting to github, please refresh and try again":[null,""],"Could not load changes from the repo. [Click here for CHANGES.md]({changes_url})":[null,""],"Changelog":[null,""],"Post Processing":[null,""],"Add Shows":[null,""],"No folders selected.":[null,""],"New Show":[null,""],"Trending Shows":[null,""],"Popular Shows":[null,""],"Most Anticipated Shows":[null,""],"Most Collected Shows":[null,""],"Most Watched Shows":[null,""],"Most Played Shows":[null,""],"Recommended Shows":[null,""],"New Shows":[null,""],"Season Premieres":[null,""],"Existing Show":[null,""],"No root directories setup, please go back and add one.":[null,""],"Show added":[null,""],"Adding the specified show {show_name}":[null,""],"Missing params, no Indexer ID or folder: {show_to_add} and {root_dir}/{show_path}":[null,"Afwesige parameters, geen Indekser ID of leêr: {show_to_add} and {root_dir}/{show_path}"],"Unknown error. Unable to add show due to problem with show selection.":[null,""],"Unable to add show":[null,""],"Folder {show_dir} exists already":[null,""],"Unable to create the folder {show_dir}, can't add the show":[null,""],"Adding the specified show into {show_dir}":[null,""],"Shows Added":[null,""],"Automatically added {num_shows} from their existing metadata files":[null,""],"Mass Update":[null,""],"Episode Overview":[null,""],"Missing Subtitles":[null,"Afwesige Subtitels"],"Backlog Overview":[null,"Agterstand Opsommig"],"Mass Edit":[null,""],"Unable to update show: {excption_format}":[null,""],"Unable to refresh show {show_name}: {excption_format}":[null,""],"Errors encountered":[null,""],"Updates":[null,""],"Refreshes":[null,""],"Renames":[null,""],"Subtitles":[null,"Onderskrifte"],"The following actions were queued":[null,""],"Failed Downloads":[null,""],"Manage Searches":[null,""],"Backlog search started":[null,"Agterstand Soektog het begin"],"Daily search started":[null,""],"Find propers search started":[null,""],"Subtitle search started":[null,""],"Remove Selected":[null,""],"Clear History":[null,""],"Trim History":[null,""],"Selected history entries removed":[null,""],"History cleared":[null,""],"Removed history entries older than 30 days":[null,""],"General":[null,""],"Backup/Restore":[null,""],"Search Settings":[null,""],"Search Providers":[null,"Soektog Voorsieners"],"Subtitles Settings":[null,""],"Notifications":[null,""],"Anime":[null,""],"SickRage Configuration":[null,""],"Config - Shares":[null,""],"Windows Shares Configuration":[null,""],"Saved Shares":[null,""],"Your Windows share settings have been saved":[null,""],"Config - General":[null,""],"General Configuration":[null,""],"Saved Defaults":[null,""],"Your \"add show\" defaults have been set to your current selections.":[null,""],"Unable to create directory {directory}, log directory not changed.":[null,""],"Unable to create directory {directory}, https cert directory not changed.":[null,""],"Unable to create directory {directory}, https key directory not changed.":[null,""],"Error(s) Saving Configuration":[null,""],"Configuration Saved":[null,""],"Config - Backup/Restore":[null,""],"Config - Episode Search":[null,""],"Config - Post Processing":[null,""],"Unpacking Not Supported, disabling unpack setting":[null,""],"You tried saving an invalid normal naming config, not saving your naming settings":[null,""],"You tried saving an invalid anime naming config, not saving your naming settings":[null,""],"Config - Providers":[null,"Konfigurasie - Voorsieners"],"No Provider Name specified":[null,"Geen Voorsiener Naam gespesifiseer"],"No Provider Url specified":[null,"Geen Voorsiener Url gespesifiseer"],"No Provider Api key specified":[null,"Geen Voorsiener Api sleutel gespesifiseer"],"Config - Notifications":[null,""],"Config - Subtitles":[null,""],"Config - Anime":[null,""],"Clear Errors":[null,""],"Clear Warnings":[null,""],"Submit Errors":[null,""],"Logs & Errors":[null,""],"Log File":[null,""],"Logs":[null,""],"This is a test notification from SickRage":[null,""],"Choose Directory":[null,""],"Select log file folder location":[null,""],"Select CSS file":[null,""],"Select backup folder to save to":[null,""],"Select backup files to restore":[null,""],"Please fill out the necessary fields above.":[null,""],"<b>Step 1:</b> Confirm Authorization":[null,""],"Check blacklist name; the value needs to be a trakt slug":[null,""],"You must provide a recipient email address!":[null,""],"You didn't supply a Pushbullet api key":[null,""],"Don't forget to save your new pushbullet settings.":[null,""],"Select TV Download Directory":[null,""],"Select Unpack Directory":[null,""],"This pattern is invalid.":[null,""],"This pattern would be invalid without the folders, using it will force \"Season Folders\" on for all shows.":[null,""],"This pattern is valid.":[null,""],"Select .nzb black hole/watch location":[null,""],"Select .torrent black hole/watch location":[null,""],"Select .torrent download location":[null,""],"Minimum seeding time is":[null,""],"URL to your uTorrent client (e.g. http://localhost:8000)":[null,""],"Stop seeding when inactive for":[null,""],"URL to your Transmission client (e.g. http://localhost:9091)":[null,""],"URL to your Deluge client (e.g. http://localhost:8112)":[null,""],"IP or Hostname of your Deluge Daemon (e.g. scgi://localhost:58846)":[null,""],"URL to your Synology DS client (e.g. http://localhost:5000)":[null,""],"URL to your rTorrent client (e.g. scgi://localhost:5000 <br> or https://localhost/rutorrent/plugins/httprpc/action.php)":[null,""],"URL to your qBittorrent client (e.g. http://localhost:8080)":[null,""],"URL to your MLDonkey (e.g. http://localhost:4080)":[null,""],"URL to your putio client (e.g. http://localhost:8080)":[null,""],"<a herf=\"https://app.put.io/oauth/apps/new\" target=\"_blank\"> Create a new OAuth app for put.io</a>":[null,""],"Put.io Parent Folder":[null,""],"Put.io OAuth Token":[null,""],"Show Episodes":[null,""],"Hide Episodes":[null,""],"Select Show Location":[null,""],"Select Unprocessed Episode Folder":[null,""],"DELETED":[null,""],"Resume updating the log on this page.":[null,""],"Pause updating the log on this page.":[null,""],"searching {searchingFor}...":[null,""],"search timed out, try again or try another indexer":[null,""],"loading folders...":[null,""],"Loading...":[null,""],"You have reached this page by accident, please check the url.":[null,""],"A mako error has occured.<br>\n If this happened during an update a simple page refresh may be the solution.<br>\n Mako errors that happen during updates may be a one time error if there were significant ui changes.":[null,""],"Show/Hide Error":[null,""],"Add New Show":[null,""],"For shows that you haven't downloaded yet, this option finds a show on theTVDB.com, creates a directory for it's episodes, and adds it to SickRage.":[null,""],"Add From Trakt Lists":[null,""],"For shows that you haven't downloaded yet, this option lets you choose from a show from one of the Trakt lists to add to SickRage.":[null,""],"Add From IMDB's Popular Shows":[null,""],"View IMDB's list of the most popular shows. This feature uses IMDB's MOVIEMeter algorithm to identify popular TV Series.":[null,""],"Add Existing Shows":[null,""],"Use this option to add shows that already have a folder created on your hard drive. SickRage will scan your existing metadata/episodes and add the show accordingly.":[null,""],"Add Existing Show":[null,""],"Manage Directories":[null,""],"Customize Options":[null,""],"SickRage can add existing shows, using the current options, by using locally stored NFO/XML metadata to eliminate user interaction. If you would rather have SickRage prompt you to customize each show, then use the checkbox below.":[null,""],"Prompt me to set settings for each show":[null,""],"Displaying folders within these directories which aren't already added to SickRage":[null,""],"Submit":[null,""],"Find a show on theTVDB":[null,""],"Show retrieved from existing metadata":[null,""],"All Indexers":[null,""],"Search":[null,""],"This will only affect the language of the retrieved metadata file contents and episode filenames.":[null,""],"This <b>DOES NOT</b> allow SickRage to download non-english TV episodes!":[null,""],"Pick the parent folder":[null,""],"Pre-chosen Destination Folder":[null,""],"Customize options":[null,""],"Add Show":[null,""],"Skip Show":[null,""],"Sort By":[null,""],"Name":[null,""],"Original":[null,""],"Votes":[null,""],"Rating":[null,""],"Rating > Votes":[null,""],"Sort Order":[null,""],"Asc":[null,""],"Desc":[null,""],"Fetching of IMDB Data failed. Are you online?":[null,""],"Exception":[null,""],"Select Trakt List":[null,""],"Most Anticipated":[null,""],"Trending":[null,""],"Popular":[null,""],"Most Watched":[null,""],"Most Played":[null,""],"Most Collected":[null,""],"Recommended":[null,""],"Toggle navigation":[null,""],"Profile":[null,""],"JSONP":[null,"JSONP"],"Back to SickRage":[null,""],"Parameters":[null,""],"Required":[null,""],"Description":[null,""],"Type":[null,""],"Default value":[null,""],"Allowed values":[null,""],"Playground":[null,""],"Clear":[null,""],"Yes":[null,"Ja"],"No":[null,"Nee"],"season":[null,""],"episode":[null,""],"Python Version":[null,""],"SSL Version":[null,""],"OS":[null,""],"Locale":[null,""],"User":[null,"Gebruiker"],"Program Folder":[null,""],"Config File":[null,""],"Database File":[null,""],"Cache Folder":[null,""],"Log Folder":[null,""],"Arguments":[null,""],"Web Root":[null,""],"Website":[null,""],"Wiki":[null,""],"Source":[null,""],"IRC Chat":[null,""],"AnimeDB Settings":[null,""],"Look & Feel":[null,""],"AniDB is non-profit database of anime information that is freely open to the public":[null,""],"Enable":[null,"Aktiveer"],"should SickRage use data from AniDB?":[null,""],"AniDB Username":[null,""],"username of your AniDB account":[null,""],"AniDB Password":[null,""],"password of your AniDB account":[null,""],"AniDB MyList":[null,""],"do you want to add the PostProcessed episodes to the MyList?":[null,""],"Look and Feel":[null,""],"How should the anime functions show and behave.":[null,""],"Split show lists":[null,""],"separate anime and normal shows in groups":[null,""],"Split in tabs":[null,""],"use tabs for when splitting show lists":[null,""],"Restore":[null,""],"Backup your main database file and config.":[null,""],"Select the folder you wish to save your backup file to":[null,""],"Restore your main database file and config.":[null,""],"Select the backup file you wish to restore":[null,""],"Misc":[null,""],"Interface":[null,""],"Advanced Settings":[null,""],"Startup options. Indexer options. Log and show file locations.":[null,""],"Some options may require a manual restart to take effect.":[null,""],"Default Indexer Language":[null,""],"for adding shows and metadata providers":[null,"om programme en metadata voersieners by te voeg"],"Launch browser":[null,""],"open the SickRage home page on startup":[null,""],"Initial page":[null,""],"Shows":[null,""],"when launching SickRage interface":[null,""],"Choose hour to update shows":[null,""],"with information such as next air dates, show ended, etc. Use 15 for 3pm, 4 for 4am etc.":[null,""],"note":[null,""],"minutes are randomized each time SickRage is started":[null,""],"Send to trash for actions":[null,""],"when using show \"Remove\" and delete files":[null,""],"on scheduled deletes of the oldest log files":[null,""],"selected actions use trash (recycle bin) instead of the default permanent delete":[null,""],"Log file folder location":[null,""],"Number of Log files saved":[null,""],"number of log files saved when rotating logs (default: 5) (REQUIRES RESTART)":[null,""],"Size of Log files saved":[null,""],"maximum size in MB of the log file (default: 1MB) (REQUIRES RESTART)":[null,""],"Use initial indexer set to":[null,""],"as the default selection when adding new shows":[null,""],"Timeout show indexer at":[null,""],"seconds of inactivity when finding new shows (default:20)":[null,""],"Show root directories":[null,""],"where the files of shows are located":[null,""],"Save Changes":[null,""],"Options for software updates.":[null,""],"Check software updates":[null,""],"and display notifications when updates are available. Checks are run on startup and at the frequency set below*":[null,""],"Automatically update":[null,""],"fetch and install software updates. Updates are run on startup and in the background at the frequency set below*":[null,""],"Check the server every*":[null,""],"hours for software updates (default:1)":[null,""],"Notify on software update":[null,""],"send a message to all enabled notifiers when SickRage has been updated":[null,"stuur 'n boodskap aan alle aktiveerde aankondigers wanneer SickRage opgedateer was"],"User Interface":[null,""],"Options for visual appearance.":[null,""],"Interface Language":[null,""],"System Language":[null,""],"for appearance to take effect, save then refresh your browser":[null,""],"Display theme":[null,""],"Dark":[null,""],"Light":[null,""],"Use a background image":[null,""],"use a custom image as background for SickRage":[null,""],"Background Path":[null,""],"Path to the background image":[null,""],"Show fanart in the background":[null,""],"on the show summary page":[null,""],"Fanart transparency":[null,""],"transparency of the fanart in the background":[null,""],"Use a custom stylesheet file":[null,""],"use a custom .css file to style SickRage (for advanced users)":[null,""],"Stylesheet File Path":[null,""],"Path to the stylesheet (.css) file":[null,""],"Show all seasons":[null,""],"Sort with \"The\", \"A\", \"An\"":[null,""],"include articles (\"The\", \"A\", \"An\") when sorting show lists":[null,""],"Missed episodes range":[null,""],"set the range in days of the missed episodes in the Schedule page":[null,""],"Display fuzzy dates":[null,""],"move absolute dates into tooltips and display e.g. \"Last Thu\", \"On Tue\"":[null,""],"Trim zero padding":[null,""],"remove the leading number \"0\" shown on hour of day, and date of month":[null,""],"Date style":[null,""],"Use System Default":[null,""],"Time style":[null,""],"seconds are only shown on the History page":[null,""],"Timezone":[null,""],"Local":[null,""],"Network":[null,"Netwerk"],"display dates and times in either your timezone or the shows network timezone":[null,""],"use local timezone to start searching for episodes minutes after show ends (depends on your dailysearch frequency)":[null,""],"Download url":[null,""],"URL where the shows can be downloaded.":[null,""],"Web Interface":[null,""],"it is recommended that you enable a username and password to secure SickRage from being tampered with remotely.":[null,""],"these options require a manual restart to take effect.":[null,""],"API key":[null,""],"used to give 3rd party programs limited access to SickRage":[null,""],"you can try all the features of the API":[null,""],"here":[null,"hier"],"HTTP logs":[null,""],"enable logs from the internal Tornado web server":[null,""],"HTTP username":[null,""],"set blank for no login":[null,""],"HTTP password":[null,""],"blank = no authentication":[null,""],"HTTP port":[null,""],"web port to browse and access SickRage (default:8081)":[null,""],"Notify on login":[null,""],"enable to be notified when a new login happens in webserver":[null,""],"Listen on IPv6":[null,""],"attempt binding to any available IPv6 address":[null,""],"Enable HTTPS":[null,""],"enable access to the web interface using a HTTPS address":[null,""],"HTTPS certificate":[null,""],"file name or path to HTTPS certificate":[null,""],"HTTPS key":[null,""],"file name or path to HTTPS key":[null,""],"Reverse proxy headers":[null,""],"accept the following reverse proxy headers (advanced)...":[null,""],"(X-Forwarded-For, X-Forwarded-Host, and X-Forwarded-Proto)":[null,""],"CPU throttling":[null,""],"Normal (default). High is lower and Low is higher CPU use":[null,""],"Anonymous redirect":[null,""],"backlink protection via anonymizer service, must end in \"?\"":[null,""],"Enable debug":[null,""],"enable debug logs":[null,""],"Verify SSL Certs":[null,""],"verify SSL Certificates (Disable this for broken SSL installs (Like QNAP))":[null,""],"No Restart":[null,""],"only shutdown when restarting SR":[null,""],"only select this when you have external software restarting SR automatically when it stops (like FireDaemon)":[null,""],"Encrypt passwords":[null,""],"in the <code>config.ini</code> file":[null,""],"warning":[null,""],"passwords must only contain":[null,""],"ASCII characters":[null,""],"Unprotected calendar":[null,""],"allow subscribing to the calendar without user and password":[null,""],"some services like Google Calendar only work this way":[null,""],"Google Calendar Icons":[null,""],"show an icon next to exported calendar events in Google Calendar":[null,""],"Proxy host":[null,""],"blank to disable or proxy to use when connecting to providers":[null,"blanko om te deaktiveer of proxy om te gbruik wanneer aan voorsieners konnekteer word"],"also use global proxy setting for indexers (tvdb, xem, anidb, etc.)":[null,""],"Skip Remove Detection":[null,""],"skip detection of removed files":[null,""],"if disabled the episode will be set to the default deleted status":[null,""],"Default deleted episode status":[null,""],"define the status to be set for media file that has been deleted.":[null,""],"Archived option will keep previous downloaded quality":[null,""],"example: Downloaded (1080p WEB-DL) ==> Archived (1080p WEB-DL)":[null,""],"Options for github related features.":[null,""],"Branch version":[null,""],"error: No branches found.":[null,""],"select branch to use (restart required)":[null,""],"Authorization Type":[null,""],"Username and password":[null,""],"Personal access token":[null,""],"You must use a personal access token if you're using \"two-factor authentication\" on GitHub.":[null,""],"GitHub username":[null,""],"*** (REQUIRED FOR SUBMITTING ISSUES) ***":[null,""],"GitHub password":[null,""],"GitHub personal access token":[null,""],"Generate Token":[null,""],"Manage Tokens":[null,""],"GitHub remote for branch":[null,""],"access repo configured remotes (save then refresh browser)":[null,""],"default":[null,""],"origin":[null,""],"Git executable path":[null,""],"only needed if OS is unable to locate git from env":[null,""],"Git reset":[null,""],"removes untracked files and performs a hard reset on git branch automatically to help resolve update issues":[null,""],"Home Theater / NAS":[null,""],"Devices":[null,"Toestelle"],"Social":[null,""],"A free and open source cross-platform media center and home entertainment system software with a 10-foot user interface designed for the living-room TV.":[null,""],"send KODI commands?":[null,""],"Always on":[null,"Altyd aan"],"log errors when unreachable?":[null,""],"Notify on snatch":[null,""],"send a notification when a download starts?":[null,""],"Notify on download":[null,""],"send a notification when a download finishes?":[null,""],"Notify on subtitle download":[null,""],"send a notification when subtitles are downloaded?":[null,""],"Update library":[null,""],"update KODI library when a download finishes?":[null,""],"Full library update":[null,""],"perform a full library update if update per-show fails?":[null,""],"Only update first host":[null,""],"only send library updates to the first active host?":[null,""],"KODI IP:Port":[null,""],"host running KODI (eg. 192.168.1.100:8080)":[null,""],"(multiple host strings must be separated by commas)":[null,""],"Username":[null,""],"username for your KODI server (blank for none)":[null,""],"Password":[null,""],"password for your KODI server (blank for none)":[null,""],"Click below to test.":[null,""],"Experience your media on a visually stunning, easy to use interface on your Mac connected to your TV. Your media library has never looked this good!":[null,""],"For sending notifications to Plex Home Theater (PHT) clients, use the KODI notifier with port <b>3005</b>.":[null,""],"send Plex Media Server library updates?":[null,""],"Plex Media Server Auth Token":[null,""],"auth token used by Plex":[null,""],"Update Library":[null,""],"update Plex Media Server library when a download finishes":[null,""],"Plex Media Server IP:Port":[null,""],"one or more hosts running Plex Media Server<br/>(eg. 192.168.1.1:32400, 192.168.1.2:32400)":[null,""],"HTTPS":[null,""],"use https for plex media server requests?":[null,""],"Click below to test Plex Media Server(s)":[null,""],"Test Plex Media Server":[null,""],"Plex Home Theater":[null,""],"send Plex Home Theater notifications?":[null,""],"Plex Home Theater IP:Port":[null,""],"one or more hosts running Plex Home Theater<br>(eg. 192.168.1.100:3000, 192.168.1.101:3000)":[null,""],"Click below to test Plex Home Theater(s)":[null,""],"Test Plex Home Theater":[null,""],"some Plex Home Theaters <b class=\"boldest\">do not</b> support notifications e.g. Plexapp for Samsung TVs":[null,""],"Emby":[null,""],"A home media server built using other popular open source technologies.":[null,""],"send update commands to Emby?":[null,""],"Emby IP:Port":[null,""],"host running Emby (eg. 192.168.1.100:8096)":[null,""],"Emby API Key":[null,""],"Networked Media Jukebox":[null,""],"The Networked Media Jukebox, or NMJ, is the official media jukebox interface made available for the Popcorn Hour 200-series.":[null,""],"send update commands to NMJ?":[null,""],"Popcorn IP address":[null,""],"IP address of Popcorn 200-series (eg. 192.168.1.100)":[null,""],"Get settings":[null,""],"Get Settings":[null,""],"the Popcorn Hour device must be powered on and NMJ running.":[null,""],"NMJ database":[null,""],"automatically filled via the 'Get Settings' button.":[null,""],"NMJ mount url":[null,""],"Networked Media Jukebox v2":[null,""],"The Networked Media Jukebox, or NMJv2, is the official media jukebox interface made available for the Popcorn Hour 300 & 400-series.":[null,""],"send update commands to NMJv2?":[null,""],"IP address of Popcorn 300/400-series (eg. 192.168.1.100)":[null,""],"Database location":[null,""],"Database instance":[null,""],"adjust this value if the wrong database is selected.":[null,""],"Find database":[null,""],"Find Database":[null,""],"the Popcorn Hour device must be powered on.":[null,""],"NMJv2 database":[null,""],"automatically filled via the 'Find Database' buttons.":[null,""],"Synology":[null,""],"The Synology DiskStation NAS.":[null,""],"Synology Indexer is the daemon running on the Synology NAS to build its media database.":[null,""],"send Synology notifications?":[null,""],"requires SickRage to be running on your Synology NAS.":[null,""],"Synology Indexer":[null,""],"Synology Notifier is the notification system of Synology DSM":[null,""],"send notifications to the Synology Notifier?":[null,""],"pyTivo":[null,""],"pyTivo is both an HMO and GoBack server. This notifier will load the completed downloads to your Tivo.":[null,""],"send notifications to pyTivo?":[null,""],"requires the downloaded files to be accessible by pyTivo.":[null,""],"pyTivo IP:Port":[null,""],"host running pyTivo (eg. 192.168.1.1:9032)":[null,""],"pyTivo share name":[null,""],"value used in pyTivo Web Configuration to name the share.":[null,""],"Tivo name":[null,""],"(Messages & Settings > Account & System Information > System Information > DVR name)":[null,"(Boodskappe & Settings > Rekening & Stelsel Informasie > Stelsel Informasie > DVR naam)"],"Growl":[null,""],"A cross-platform unobtrusive global notification system.":[null,""],"send Growl notifications?":[null,""],"Growl IP:Port":[null,""],"host running Growl (eg. 192.168.1.100:23053)":[null,""],"may leave blank if SickRage is on the same host.":[null,""],"otherwise Growl <b>requires</b> a password to be used.":[null,""],"Click below to register and test Growl, this is required for Growl notifications to work.":[null,""],"Register Growl":[null,""],"Prowl":[null,""],"A Growl client for iOS.":[null,""],"send Prowl notifications?":[null,""],"Prowl Message Title":[null,"Prowl Boodskap Titel"],"Global Prowl API key(s)":[null,""],"Prowl API(s) listed here, separated by commas if applicable, will<br> receive notifications for <b>all</b> shows. Your Prowl API key is available at:":[null,""],"(this field may be blank except when testing.)":[null,""],"Show notification list":[null,""],"-- Select a Show --":[null,""],"Configure per-show notifications here by entering Prowl API key(s), separated by commas, '\n 'after selecting a show in the drop-down box. Be sure to activate the 'Save for this show' '\n 'button below after each entry.":[null,""],"Save for this show":[null,""],"Prowl priority":[null,""],"Very Low":[null,""],"Moderate":[null,""],"Normal":[null,""],"High":[null,""],"Emergency":[null,""],"priority of Prowl messages from SickRage.":[null,"prioriteit van Prowl boodskappe vanaf SickRage."],"Libnotify":[null,""],"The standard desktop notification API for Linux/*nix systems. This notifier will only function if the pynotify module is installed (Ubuntu/Debian package <a href=\"apt:python-notify\">python-notify</a>).":[null,""],"send Libnotify notifications?":[null,""],"Pushover":[null,""],"Pushover makes it easy to send real-time notifications to your Android and iOS devices.":[null,""],"send Pushover notifications?":[null,""],"Pushover key":[null,""],"user key of your Pushover account":[null,""],"Pushover API key":[null,""],"click here":[null,""]," to create a Pushover API key":[null,""],"Pushover devices":[null,""],"comma separated list of pushover devices you want to send notifications to":[null,""],"Pushover notification sound":[null,""],"Bike":[null,""],"Bugle":[null,""],"Cash Register":[null,""],"Classical":[null,""],"Cosmic":[null,""],"Falling":[null,""],"Gamelan":[null,""],"Incoming":[null,""],"Intermission":[null,""],"Magic":[null,""],"Mechanical":[null,""],"Piano Bar":[null,""],"Siren":[null,""],"Space Alarm":[null,""],"Tug Boat":[null,""],"Alien Alarm (long)":[null,""],"Climb (long)":[null,""],"Persistent (long)":[null,""],"Pushover Echo (long)":[null,""],"Up Down (long)":[null,""],"None (silent)":[null,""],"Device specific":[null,""],"choose notification sound to use":[null,""],"Pushover priority":[null,""],"Choose priority to use":[null,""],"Boxcar 2":[null,""],"Read your messages where and when you want them!":[null,"Lees jou boodskappe waar en wanneer jy dit wil hê!"],"send Boxcar notifications?":[null,""],"Boxcar2 access token":[null,""],"access token for your Boxcar account.":[null,""],"NMA":[null,""],"Notify My Android":[null,""],"Notify My Android is a Prowl-like Android App and API that offers an easy way to send notifications from your application directly to your Android device.":[null,""],"send NMA notifications?":[null,""],"NMA API key":[null,""],"(multiple keys must be separated by commas, up to a maximum of 5)":[null,""],"NMA priority":[null,""],"priority of NMA messages from SickRage.":[null,"prioriteit van NMA boodskappe vanaf SickRage."],"Pushalot":[null,""],"Pushalot is a platform for receiving custom push notifications to connected devices running Windows Phone or Windows 8.":[null,""],"send Pushalot notifications ?":[null,""],"Pushalot authorization token":[null,""],"authorization token of your Pushalot account.":[null,""],"Pushbullet":[null,""],"Pushbullet is a platform for receiving custom push notifications to connected devices running Android/iOS and desktop browsers such as Chrome, Firefox or Opera.":[null,""],"send Pushbullet notifications?":[null,""],"Pushbullet API key":[null,""],"API key of your Pushbullet account":[null,""],"Pushbullet devices":[null,""],"Update device list":[null,""],"Pushbullet channels":[null,""],"Free Mobile":[null,""],"Free Mobile is a famous French cellular network provider.<br> It provides to their customer a free SMS API.":[null,"Free Mobile is 'n bekende Franse sellulêre netwerk voorsiener.<br> Dit voorsien 'n gratis SMS API aan hul gebruikers."],"send SMS notifications?":[null,""],"send a SMS when a download starts?":[null,""],"send a SMS when a download finishes?":[null,""],"send a SMS when subtitles are downloaded?":[null,""],"Free Mobile customer ID":[null,""],"it's your Free Mobile customer ID (8 digits)":[null,""],"Free Mobile API key":[null,""],"find your API key in your customer portal.":[null,""],"Click below to test your settings.":[null,""],"Telegram":[null,""],"Telegram is a cloud-based instant messaging service.":[null,""],"send Telegram notifications?":[null,""],"send a message when a download starts?":[null,""],"send a message when a download finishes?":[null,""],"send a message when subtitles are downloaded?":[null,""],"User/group ID":[null,""],"contact @myidbot on Telegram to get an ID":[null,""],"Bot API token":[null,""],"contact @BotFather on Telegram to set up one":[null,""],"Join":[null,""],"Join all of your devices together!":[null,""],"send Join notifications?":[null,""],"Device ID":[null,""],"per device specific id":[null,""]," to create a Join API key":[null,""],"Twilio":[null,""],"Twilio is a webservice API that allows you to communicate directly with a mobile number. This notifier will send a text directly to your mobile device.":[null,""],"should SickRage text your mobile device?":[null,""],"Twilio Account SID":[null,""],"account SID of your Twilio account.":[null,""],"Twilio Auth Token":[null,""],"Twilio Phone SID":[null,""],"phone SID that you would like to send the sms from":[null,""],"Your phone number":[null,""],"phone number that will receive the sms. Please use the format +1-###-###-####":[null,""],"Twitter":[null,""],"A social networking and microblogging service, enabling its users to send and read other users' messages called tweets.":[null,"'n Sosiale netwerk en microblogging diens, wat hul gebruikers in staat stel om ander gebruikers se boodskappe, genoem tweets, te lees en stuur."],"should SickRage post tweets on Twitter?":[null,""],"you may want to use a secondary account.":[null,""],"send direct message":[null,""],"send a notification via Direct Message, not via status update":[null,"stuur 'n kennisgewing via Direkte boodskap, nie via status opdatering nie"],"send DM to":[null,""],"Twitter account to send Direct Messages to (must follow you)":[null,"Twitter rekening aan wie direkte boodskappe gestuur moet word (moet jou volg)"],"Step One":[null,""],"Request Authorization":[null,""],"Click the \"Request Authorization\" button.<br> This will open a new page containing an auth key.<br> <b>note:</b> if nothing happens check your popup blocker.":[null,""],"Step Two":[null,""],"Enter the key Twitter gave you below, and click \"Verify Key\".":[null,""],"Trakt":[null,""],"Trakt helps keep a record of what TV shows and movies you are watching. Based on your favorites, Trakt recommends additional shows and movies you'll enjoy!":[null,""],"send Trakt.tv notifications?":[null,""],"username of your Trakt account.":[null,""],"Trakt PIN":[null,""],"Get Trakt PIN":[null,""],"PIN code to authorize SickRage to access Trakt on your behalf.":[null,""],"API Timeout":[null,""],"seconds to wait for Trakt API to respond. (Use 0 to wait forever)":[null,""],"Default indexer":[null,""],"Sync libraries":[null,""],"sync your SickRage show library with your trakt show library.":[null,""],"Remove Episodes From Collection":[null,""],"remove an episode from your Trakt Collection if it is not in your SickRage Library.":[null,""],"Sync watchlist":[null,""],"sync your SickRage show watchlist with your trakt show watchlist (either Show and Episode).":[null,""],"episode will be added on watch list when wanted or snatched and will be removed when downloaded ":[null,""],"Watchlist add method":[null,""],"Skip All":[null,""],"Download Pilot Only":[null,""],"Get whole show":[null,""],"method in which to download episodes for new shows.":[null,""],"Remove episode":[null,""],"remove an episode from your watchlist after it is downloaded.":[null,""],"Remove series":[null,""],"remove the whole series from your watchlist after any download.":[null,""],"Remove watched show":[null,""],"remove the show from sickrage if it's ended and completely watched":[null,""],"Start paused":[null,""],"shows grabbed from your trakt watchlist start paused.":[null,""],"Trakt blackList name":[null,""],"name (slug) of list on Trakt for blacklisting show on 'Add Trending Show' & 'Add Recommended Shows' pages":[null,""],"Email":[null,""],"Allows configuration of email notifications on a per show basis.":[null,""],"send email notifications?":[null,""],"SMTP host":[null,""],"hostname of your SMTP email server.":[null,""],"SMTP port":[null,""],"port number used to connect to your SMTP host.":[null,""],"SMTP from":[null,""],"sender email address, some hosts require a real address.":[null,""],"Use TLS":[null,""],"check to use TLS encryption.":[null,""],"SMTP user":[null,""],"(optional) your SMTP server username.":[null,""],"SMTP password":[null,""],"(optional) your SMTP server password.":[null,""],"Global email list":[null,""],"email addresses listed here, separated by commas if applicable, will<br> receive notifications for <b>all</b> shows.":[null,""],"(This field may be blank except when testing.)":[null,""],"Email Subject":[null,""],"use a custom subject for some privacy protection?":[null,""],"(leave blank for the default SickRage subject)":[null,""],"configure per-show notifications here by entering email address(es), separated by commas,":[null,""],"after selecting a show in the drop-down box. Be sure to activate the 'Save for this show'":[null,""],"button below after each entry.":[null,""],"Slack":[null,""],"Slack brings all your communication together in one place. It's real-time messaging, archiving and search for modern teams.":[null,""],"should SickRage post messages on Slack?":[null,""],"Slack Incoming Webhook":[null,""],"Discord":[null,""],"All-in-one voice and text chat for gamers that's free, secure, and works on both your desktop and phone.":[null,""],"Should SickRage post messages on Discord?":[null,""],"Discord Incoming Webhook":[null,""],"Create webhook under channel settings.":[null,""],"Discord Bot Name":[null,""],"Blank will use webhook default Name.":[null,""],"Discord Avatar URL":[null,""],"Blank will use webhook default Avatar.":[null,""],"Discord TTS":[null,""],"Send notifications using text-to-speech":[null,""],"Post-Processing":[null,""],"Episode Naming":[null,""],"Metadata":[null,""],"Settings that dictate how SickRage should process completed downloads.":[null,""],"enable the automatic post processor to scan and process any files in your Post Processing Dir":[null,""],"do not use if you use an external Post Processing script":[null,""],"Post Processing Dir":[null,""],"the folder where your download client puts the completed TV downloads.":[null,""],"please use seperate downloading and completed folders in your download client if possible.":[null,""],"Processing Method":[null,""],"what method should be used to put files into the library?":[null,""],"if you keep seeding torrents after they finish, please avoid the 'move' processing method to prevent errors.":[null,""],"Auto Post-Processing Frequency":[null,""],"time in minutes to check for new files to auto post-process (min 10)":[null,""],"Postpone post processing":[null,""],"wait to process a folder if sync files are present.":[null,""],"Sync File Extensions":[null,""],"comma seperated list of extensions or filename globs SickRage ignores when Post Processing":[null,""],"Rename Episodes":[null,""],"rename episode using the Episode Naming settings?":[null,""],"Create missing show directories":[null,"Maak afwesige program leêrs"],"create missing show directories when they get deleted":[null,""],"Add shows without directory":[null,""],"add shows without creating a directory (not recommended)":[null,""],"Move associated files":[null,""],"move associated (srt/srr/sfv/etc) files while post processing?":[null,""],"Rename .nfo file":[null,""],"rename the original .nfo file to .nfo-orig to avoid conflicts?":[null,""],"Associated file extensions":[null,""],"comma separated list of associated file extensions SickRage should keep while post processing.":[null,""],"leaving it empty means no associated files will be post processed":[null,""],"Delete non associated files":[null,""],"delete non associated files while post processing?":[null,""],"Change File Date":[null,""],"set last modified filedate to the date that the episode aired?":[null,""],"some systems may ignore this feature.":[null,""],"Timezone for File Date":[null,""],"local":[null,""],"network":[null,""],"what timezone should be used to change File Date?":[null,""],"Unpack":[null,""],"What to do with archived releases found in your <i>TV Download Dir</i>?":[null,""],"Ignore (do not process contents)":[null,""],"Unpack (process contents)":[null,""],"Treat as video (process archive as-is)":[null,""],"'Unpack' only works with RAR archives":[null,""],"Windows":[null,""],"WinRar is required on windows":[null,""],"Unpack Directory":[null,""],"Choose a path to unpack files, leave blank to unpack in download dir":[null,""],"Unrar Location":[null,""],"add the path to unrar if it is not in the system path":[null,""],"Alternate Unrar Tool":[null,""],"add the path to an alternate unrar tool if it is not in the system path":[null,""],"Delete RAR contents":[null,""],"delete content of RAR files, even if Process Method not set to move?":[null,""],"only working with RAR archive":[null,""],"Don't delete empty folders":[null,""],"leave empty folders when Post Processing?":[null,""],"can be overridden using manual Post Processing":[null,""],"Follow symbolic-links":[null,""],"follow down symbolic links in download directory?":[null,""],"<b>EXPERTS ONLY.</b><br>Enable only if you know what <b>circular symbolic links</b> are,<br>and can <b>verify that you have none</b>.":[null,""],"Use icacls":[null,""],"Windows only":[null,""],"sets video permissions after using the move method in post processing":[null,""],"Extra Scripts":[null,""],"see":[null,""],"for script arguments description and usage.":[null,""],"How SickRage will name and sort your episodes.":[null,""],"Name Pattern":[null,""],"Toggle Naming Legend":[null,""],"don't forget to add quality pattern. Otherwise after post-processing the episode will have UNKNOWN quality":[null,""],"Meaning":[null,""],"Pattern":[null,""],"Result":[null,""],"Use lower case if you want lower case names (eg. %sn, %e.n, %q_n etc)":[null,""],"Show Name":[null,""],"Show.Name":[null,""],"Show_Name":[null,""],"Season Number":[null,""],"XEM Season Number":[null,""],"Episode Number":[null,""],"XEM Episode Number":[null,""],"Episode Name":[null,""],"Episode.Name":[null,""],"Episode_Name":[null,""],"Air Date":[null,""],"Post-Processing Date":[null,""],"Quality":[null,""],"Scene Quality":[null,""],"Release Name":[null,""],"SickRage' is used in place of RLSGROUP if it could not be properly detected":[null,""],"Release Group":[null,""],"If episode is proper/repack add 'proper' to name.":[null,""],"Release Type":[null,""],"Multi-Episode Style":[null,""],"Single-EP Sample":[null,""],"Multi-EP sample":[null,""],"Strip Show Year":[null,""],"remove the TV show's year when renaming the file?":[null,""],"only applies to shows that have year inside parentheses":[null,""],"Custom Air-By-Date":[null,""],"name air-by-date shows differently than regular shows?":[null,""],"Toggle ABD Naming Legend":[null,""],"Regular Air Date":[null,""],"Year":[null,""],"Month":[null,""],"Day":[null,""],"Multi-EP style is ignored":[null,""],"Custom Sports":[null,""],"name sports shows differently than regular shows?":[null,""],"Toggle Sports Naming Legend":[null,""],"Sports Air Date":[null,""],"Custom Anime":[null,""],"name anime shows differently than regular shows?":[null,""],"Toggle Anime Naming Legend":[null,""],">XEM Season Number":[null,""],"Single-EP Anime Sample":[null,""],"Multi-EP Anime sample":[null,""],"Add Absolute Number":[null,""],"add the absolute number to the season/episode format?":[null,""],"only applies to anime. (eg. S15E45 - 310 vs S15E45)":[null,""],"Only Absolute Number":[null,""],"replace season/episode format with absolute number":[null,""],"only applies to anime.":[null,""],"No Absolute Number":[null,""],"don't include the absolute number":[null,""],"The data associated to the data. These are files associated to a TV show in the form of images and text that, when supported, will enhance the viewing experience.":[null,""],"Metadata Type":[null,""],"toggle metadata options that you wish to be created":[null,""],"multiple targets may be used":[null,""],"Select Metadata":[null,""],"Provider Priorities":[null,"Voorsiener Prioriteite"],"Provider Options":[null,"Voorsiener Stellings"],"Configure Custom Newznab Providers":[null,"Konfigureer persoonlike Newsnab Voorsieners"],"Configure Custom Torrent Providers":[null,"Konfigureer persoonlike Torrent Voorsieners"],"Check off and drag the providers into the order you want them to be used.":[null,"Merk en sleep die voorsieners in die orde wat jy wil hê hulle gebruik moet word."],"At least one provider is required but two are recommended.":[null,"Ten minste een voorsiener word vereis maar twee word aanbeveel."],"Torrent providers can be toggled in ":[null,"Torrent voorsieners kan aan en af gesit word in "],"Provider does not support backlog searches at this time.":[null,"Voorsiener ondersteun nie tans agterstand soektogte nie."],"Provider is <b>NOT WORKING</b>.":[null,"Voorsiener is <b>BUITE WERKING</b>."],"Configure individual provider settings here.":[null,"Konfigureer individuele voorsiener stellings hier."],"Check with provider's website on how to obtain an API key if needed.":[null,"Gebruik voorsiener se web tuiste om te sien hoe om 'n API sleutel te kry indien nodig."],"Configure provider":[null,"Konfigureer voorsiener"],"no providers available to configure.":[null,""],"URL":[null,""],"Enable daily searches":[null,""],"enable provider to perform daily searches.":[null,"aktiveer voorsiener om daaglikse soektogte te doen."],"Enable backlog searches":[null,"Aktiveer agterstand soektogte"],"enable provider to perform backlog searches.":[null,"aktiveer voorsiener om agterstand soektogte te doen."],"Season search mode":[null,""],"when searching for complete seasons you can choose to have it look for season packs only, or choose to have it build a complete season from just single episodes.":[null,""],"season packs only.":[null,""],"episodes only.":[null,""],"Enable fallback":[null,""],"when searching for a complete season depending on search mode you may return no results, this helps by restarting the search using the opposite search mode.":[null,""],"Custom URL":[null,""],"the URL should include the protocol (and port if applicable). Examples: http://192.168.1.4/ or http://localhost:3000/":[null,""],"Api key":[null,""],"Digest":[null,""],"Hash":[null,""],"Passkey":[null,""],"Cookies":[null,""],"example: uid=1234;pass=567845439634987<br>note: uid and pass are not your username/password.<br>use DevTools or Firebug to get these values after logging in on your browser.":[null,""],"Pin":[null,""],"Seed ratio":[null,""],"stop transfer when ratio is reached<br>(-1 SickRage default to seed forever, or leave blank for downloader default)":[null,""],"Minimum seeders":[null,""],"Minimum leechers":[null,""],"Confirmed download":[null,""],"only download torrents from trusted or verified uploaders ?":[null,""],"Ranked torrents":[null,""],"only download ranked torrents (trusted releases)":[null,""],"English torrents":[null,""],"only download english torrents, or torrents containing english subtitles":[null,""],"For Spanish torrents":[null,""],"ONLY search on this provider if show info is defined as \"Spanish\" (avoid provider's use for VOS shows)":[null,"Soek SLEGS op hierdie voorsiener as die program informasie gedefinieer is as \"Spanish\" (vermy voorsiener se gebruik vir VOS programme)"],"Sorting results by":[null,""],"Freeleech":[null,""],"only download <b>\"FreeLeech\"</b> torrents.":[null,""],"Category":[null,""],"select torrent with Italian subtitle":[null,""],"Configure Custom<br>Newznab Providers":[null,"Konfigureer Persoonlike<br>Newsnab Voorsieners"],"Add and setup or remove custom Newznab providers.":[null,"Voeg by, stel op of verwyder persoonlike Newsnab voorsieners."],"Select provider":[null,"Selekteer voorsiener"],"-- add new provider --":[null,"-- voeg nuwe voorsiener by --"],"Provider name":[null,"Voorsiener naam"],"Site URL":[null,""],"Newznab search categories":[null,""],"select your Newznab categories on the left, and click the \"update categories\" button to use them for searching.) <b>don't forget to to save the form!":[null,""],"Update Categories":[null,""],"Add":[null,""],"Delete":[null,""],"Add and setup or remove custom RSS providers.":[null,"Voeg by, stel op of verwyder persoonlike RSS voorsieners."],"RSS URL":[null,""],"Search element":[null,""],"eg: title":[null,""],"Episode Search":[null,""],"NZB Search":[null,""],"Torrent Search":[null,""],"How to manage searching with":[null,""],"Randomize Providers":[null,"Kies Voorsiener Ewekansig"],"randomize the provider search order instead of going in order of placement":[null,"kies voorsiener soektog orde ewekansig in plaas van van posisie in die lys"],"Download propers":[null,""],"replace original download with \"Proper\" or \"Repack\" if nuked":[null,""],"Check propers every":[null,""],"24 hours":[null,""],"4 hours":[null,""],"90 mins":[null,""],"45 mins":[null,""],"15 mins":[null,""],"Backlog search day(s)":[null,"Agterstand soektog dae"],"number of day(s) that the \"Forced Backlog Search\" will cover (e.g. 7 Days)":[null,"aantal dae waaroor die \"Forseer Agterstand Soektog\" sal strek (vb. 7 Dae)"],"Backlog search frequency":[null,"Agterstand soektog frekwensie"],"time in minutes between searches (min.":[null,""],"Daily search frequency":[null,""],"Usenet retention":[null,""],"age limit in days for usenet articles to be used (e.g. 500)":[null,""],"Ignore words":[null,""],"results with one or more word from this list will be ignored<br>separate words with a comma, e.g. \"word1,word2,word3\"":[null,""],"Require words":[null,""],"results with no word from this list will be ignored<br>separate words with a comma, e.g. \"word1,word2,word3\"":[null,""],"Trackers list":[null,""],"trackers that will be added to magnets without trackers<br>separate trackers with a comma, e.g. \"tracker1,tracker2,tracker3\"":[null,""],"Ignore language names in subbed results":[null,""],"ignore subbed releases based on language names <br>\n Example: \"dk\" will ignore words: dksub, dksubs, dksubbed, dksubed <br>\n separate languages with a comma, e.g. \"lang1,lang2,lang3":[null,""],"Allow high priority":[null,""],"set downloads of recently aired episodes to high priority":[null,""],"Use Failed Downloads":[null,""],"use Failed Download Handling?":[null,""],"will only work with snatched/downloaded episodes after enabling this":[null,""],"Delete Failed":[null,""],"delete files left over from a failed download?":[null,""],"this only works if Use Failed Downloads is enabled.":[null,""],"How to handle NZB search results.":[null,""],"Search NZBs":[null,""],"enable NZB search providers":[null,""],"Send .nzb files to":[null,""],"SABnzbd server URL":[null,""],"URL to your SABnzbd server (e.g. http://localhost:8080/)":[null,""],"SABnzbd username":[null,""],"(blank for none)":[null,""],"SABnzbd password":[null,""],"SABnzbd API key":[null,""],"locate at... SABnzbd Config -> General -> API Key":[null,""],"Use SABnzbd category":[null,""],"add downloads to this category (e.g. TV)":[null,""],"Use SABnzbd category (backlog episodes)":[null,"Gebruik SABnzbd kategorie (agterstand episodes)"],"add downloads of old episodes to this category (e.g. TV)":[null,""],"Use SABnzbd category for anime":[null,""],"add anime downloads to this category (e.g. anime)":[null,""],"Use SABnzbd category for anime (backlog episodes)":[null,"Gebruik SABnzbd kategorie vir anime (agterstand episodes)"],"add anime downloads of old episodes to this category (e.g. anime)":[null,""],"Use forced priority":[null,""],"enable to change priority from HIGH to FORCED":[null,""],"Black hole folder location":[null,""],"<b>.nzb</b> files are stored at this location for external software to find and use":[null,""],"Connect using HTTPS":[null,""],"enable Secure control in NZBGet and set the correct Secure Port here":[null,""],"NZBget host:port":[null,""],"(e.g. localhost:6789)":[null,""],"NZBget RPC host name and port number (not NZBgetweb!)":[null,""],"NZBget username":[null,""],"locate in nzbget.conf (default:nzbget)":[null,""],"NZBget password":[null,""],"locate in nzbget.conf (default:tegbzn6789)":[null,""],"Use NZBget category":[null,""],"send downloads marked this category (e.g. TV)":[null,""],"Use NZBget category (backlog episodes)":[null,"Gebruik NZBget kategorie (agterstand episodes)"],"send downloads of old episodes marked this category (e.g. TV)":[null,""],"Use NZBget category for anime":[null,""],"send anime downloads marked this category (e.g. anime)":[null,""],"Use NZBget category for anime (backlog episodes)":[null,"Gebruik NZBget kategorie vir anime (agterstand episodes)"],"send anime downloads of old episodes marked this category (e.g. anime)":[null,""],"NZBget priority":[null,""],"Very low":[null,""],"Low":[null,""],"Very high":[null,""],"Force":[null,""],"priority for daily snatches (no backlog)":[null,"prioriteit vir daaglikse gryp-aksies (geen agterstand)"],"Torrent host:port":[null,""],"URL to your Synology DSM (e.g. http://localhost:5000/)":[null,""],"Client username":[null,""],"Client password":[null,""],"Downloaded files location":[null,""],"where Synology Download Station will save downloaded files (blank for client default)":[null,""],"the destination has to be a shared folder for Synology DS":[null,""],"Click below to test":[null,""],"How to handle Torrent search results.":[null,""],"Search torrents":[null,""],"enable torrent search providers":[null,"aktiveer torrent soektog voorsieners"],"Send .torrent files to":[null,""],"<b>.torrent</b> files are stored at this location for external software to find and use":[null,""],"URL to your torrent client (e.g. http://localhost:8000/)":[null,""],"Torrent RPC URL":[null,""],"the path without leading and trailing slashes (e.g. transmission)":[null,""],"Http Authentication":[null,""],"Verify certificate":[null,""],"disable if you get \"Deluge: Authentication Error\" in your log":[null,""],"verify SSL certificates for HTTPS requests":[null,""],"Add label to torrent":[null,""],"(blank spaces are not allowed)":[null,""],"label plugin must be enabled in Deluge clients":[null,""],"for QBitTorrent 3.3.1 and up":[null,""],"Add label to torrent for anime":[null,""],"for QBitTorrent 3.3.1 and up ":[null,""],"where <span id=\"torrent_client\">the torrent client</span> will save downloaded files (blank for client default)":[null,""],"the destination has to be a shared folder for Synology DS</span>":[null,""],"Minimum seeding time":[null,""],"time in hours":[null,""],"(default:'0' passes blank to client and '-1' passes nothing)":[null,""],"Start torrent paused":[null,""],"add .torrent to client but do <b style=\"font-weight:900\">not</b> start downloading":[null,""],"Allow high bandwidth":[null,""],"use high bandwidth allocation if priority is high":[null,""],"Test Connection":[null,""],"Windows Shares":[null,""],"Defines your existing windows shares so that we can add them to the browse dialog":[null,""],"Share #{number}":[null,""],"Share label":[null,""],"Hostname or IP":[null,""],"Share path":[null,""],"Subtitles Search":[null,""],"Subtitles Plugin":[null,""],"Plugin Settings":[null,""],"Settings that dictate how SickRage handles subtitles search results.":[null,""],"Search Subtitles":[null,""],"Subtitle Languages":[null,""],"Subtitle Directory":[null,""],"the directory where SickRage should store your <i>Subtitles</i> files.":[null,""],"leave empty if you want store subtitle in episode path.":[null,""],"Subtitle Find Frequency":[null,""],"time in hours between scans (default: 1)":[null,""],"Include Specials":[null,""],"include the show's specials when searching for subtitles?":[null,""],"Perfect matches":[null,""],"only download subtitles that match: release group, video codec, audio codec and resolution":[null,""],"if disabled you may get out of sync subtitles":[null,""],"Subtitles History":[null,""],"log downloaded Subtitle on History page?":[null,""],"Subtitles Multi-Language":[null,""],"append language codes to subtitle filenames?":[null,""],"this option is required if you use multiple subtitle languages":[null,""],"Delete unwanted subtitles":[null,""],"enable to delete unwanted subtitle languages bundled with release":[null,""],"Embedded Subtitles":[null,""],"ignore subtitles embedded inside video file?":[null,""],"this will ignore <u>all</u> embedded subtitles for every video file!":[null,""],"Hearing Impaired Subtitles":[null,""],"download hearing impaired style subtitles?":[null,""],"See":[null,""],"for a script arguments description.":[null,""],"Additional scripts separated by <b>|</b>.":[null,""],"Scripts are called after each episode has searched and downloaded subtitles.":[null,""],"For any scripted languages, include the interpreter executable before the script. See the following example":[null,""],"For Windows:":[null,""],"For Linux / OS X:":[null,""],"Subtitle Providers":[null,"Subtitel Voorsieners"],"Check off and drag the plugins into the order you want them to be used.":[null,""],"At least one plugin is required.":[null,""]," Web-scraping plugin":[null,""],"Provider Settings":[null,"Voorsiener Stellings"],"Set user and password for each provider":[null,"Voorsien gebruiker en wagwoord vir elke voorsiener"],"User Name":[null,""],"Change Show":[null,""],"Prev Show":[null,""],"Next Show":[null,""],"Jump to Season":[null,""],"Specials":[null,""],"Poster for":[null,""],"Stars":[null,""],"minutes":[null,""],"View other popular {genre} shows on trakt.tv.":[null,""],"View other popular {imdbgenre} shows on IMDB.":[null,""],"Allowed":[null,""],"Preferred":[null,""],"Originally Airs":[null,""],"Show Status":[null,""],"Default EP Status":[null,""],"Location":[null,""],"Missing":[null,"Afwesig"],"Scene Name":[null,""],"Required Words":[null,""],"Ignored Words":[null,""],"Size":[null,""],"Info Language":[null,""],"Subtitles SR Metadata":[null,""],"Season Folders":[null,""],"Paused":[null,""],"Air-by-Date":[null,""],"Sports":[null,""],"DVD Order":[null,""],"Scene Numbering":[null,""],"Select Filtered Episodes":[null,""],"Clear All":[null,""],"Change selected episodes to":[null,""],"Select Columns":[null,""],"NFO":[null,""],"TBN":[null,""],"Episode":[null,""],"Absolute":[null,""],"Scene":[null,""],"Scene Absolute":[null,""],"File Name":[null,""],"Airdate":[null,""],"Download":[null,""],"Change the value here if scene numbering differs from the indexer episode numbering":[null,""],"Change the value here if scene absolute numbering differs from the indexer absolute numbering":[null,""],"Manual Search":[null,""],"Do you want to mark this episode as failed?":[null,""],"The episode release name will be added to the failed history, preventing it to be downloaded again.":[null,""],"Do you want to include the current episode quality in the search?":[null,""],"Choosing No will ignore any releases with the same episode quality as the one currently downloaded/snatched.":[null,""],"Download subtitle":[null,""],"Do you want to re-download the subtitle for this language?":[null,""],"It will overwrite your current subtitle":[null,""],"Format":[null,""],"Advanced":[null,""],"Main Settings":[null,""],"Show Location":[null,""],"Preferred Quality":[null,""],"Default Episode Status":[null,""],"this will set the status for future episodes.":[null,""],"this only applies to episode filenames and the contents of metadata files.":[null,""],"search for subtitles":[null,""],"Use SR Metdata":[null,""],"use SickRage metadata when searching for subtitle, this will override the autodiscovered metadata":[null,""],"pause this show (SickRage will not download episodes)":[null,""],"Format Settings":[null,""],"Air by date":[null,""],"check if the show is released as Show.03.02.2010 rather than Show.S02E03.":[null,""],"in case of an air date conflict between regular and special episodes, the later will be ignored.":[null,""],"check if the show is Anime and episodes are released as Show.265 rather than Show.S02E03":[null,""],"check if the show is a sporting or MMA event released as Show.03.02.2010 rather than Show.S02E03":[null,""],"Season folders":[null,""],"group episodes by season folder (uncheck to store in a single folder)":[null,""],"search by scene numbering (uncheck to search by indexer numbering)":[null,""],"use the DVD order instead of the air order":[null,""],"a \"Force Full Update\" is necessary, and if you have existing episodes you need to sort them manually.":[null,""],"comma-separated <i>e.g. \"word1,word2,word3</i>\"":[null,""],"search results with one or more words from this list will be ignored.":[null,""],"e.g. \"word1,word2,word3\"":[null,""],"search results with no words from this list will be ignored.":[null,""],"Scene Exception":[null,""],"this will affect episode search on NZB and torrent providers.":[null,""],"this list appends to the original show name.":[null,""],"WARNING logs":[null,""],"ERROR logs":[null,""],"There are no events to display.":[null,""],"Limit":[null,""],"Layout":[null,""],"HistoryLayout":[null,""],"Compact":[null,""],"Detailed":[null,""],"Time":[null,""],"Provider":[null,"Voorsiener"],"Missing Provider":[null,"Afwesige Voorsiener"],"missing provider":[null,"afwesige voorsiener"],"Directory":[null,""],"Show Name (tvshow.nfo)":[null,""],"Indexer":[null,""],"Enter the folder containing the episode":[null,""],"Process Method to be used":[null,""],"Copy":[null,""],"Move":[null,""],"Hard Link":[null,""],"Symbolic Link":[null,""],"Symbolic Link Reversed":[null,""],"Force already Post Processed Dir/Files":[null,""],"Mark Dir/Files as priority download":[null,""],"(Check it to replace the file even if it exists at higher quality)":[null,""],"Delete files and folders":[null,""],"(Check it to delete files and folders like auto processing)":[null,""],"Don't use processing queue":[null,""],"(If checked this will return the result of the process here, but may be slow!)":[null,""],"Mark download as failed":[null,""],"Process":[null,""],"Download subtitles for this show?":[null,""],"use SickRage metadata when searching for subtitle, <br />this will override the autodiscovered metadata":[null,""],"Status for previously aired episodes":[null,""],"Status for all future episodes":[null,""],"Group episodes by season folder?":[null,""],"Is this show an Anime?":[null,""],"Is this show scene numbered?":[null,""],"Save Defaults":[null,""],"Use current values as the defaults":[null,""],"<p>Select your preferred fansub groups from the <b>Available Groups</b> and add them to the <b>Whitelist</b>. Add groups to the <b>Blacklist</b> to ignore them.</p>\n <p>The <b>Whitelist</b> is checked <i>before</i> the <b>Blacklist</b>.</p>\n <p>Groups are shown as <b>Name</b> | <b>Rating</b> | <b>Number of subbed episodes</b>.</p>\n <p>You may also add any fansub group not listed to either list manually.</p>\n <p>When doing this please note that you can only use groups listed on anidb for this anime.\n <br>If a group is not listed on anidb but subbed this anime, please correct anidb's data.</p>":[null,""],"Whitelist":[null,""],"Available Groups":[null,""],"Add to Whitelist":[null,""],"Add to Blacklist":[null,""],"Blacklist":[null,""],"Custom Group":[null,""],"Allowed Quality:":[null,""],"Preferred Quality:":[null,""],"Filter Show Name":[null,""],"Root":[null,""],"All":[null,""],"Clear Filter(s)":[null,""],"Poster":[null,"Plakaat"],"Small Poster":[null,""],"Banner":[null,"Banier"],"Simple":[null,""],"Next Episode":[null,""],"Progress":[null,""],"Direction":[null,""],"Ascending":[null,""],"Descending":[null,""],"Poster Size":[null,""],"Continuing":[null,""],"Ended":[null,""],"Total":[null,""],"Invalid date":[null,""],"No Network":[null,""],"Next Ep":[null,""],"Prev Ep":[null,""],"Show":[null,"Wys"],"Downloads":[null,""],"Active":[null,""],"loading":[null,""],"<p><b><u>Preferred</u></b> qualities will replace those in <b><u>allowed</u></b>, even if they are lower.</p>":[null,""],"New":[null,""],"Set as Default":[null,""],"Remember me":[null,""],"Edit Selected":[null,""],"Subtitle":[null,""],"Default Ep Status":[null,""],"Update":[null,""],"Rescan":[null,""],"Rename":[null,""],"Search Subtitle":[null,""],"Force Metadata Regen":[null,""],"Snatched (Allowed)":[null,""],"Jump to Show":[null,""],"Force Backlog":[null,"Forseer Agterstand Soektog"],"Manage episodes with status":[null,""],"Manage":[null,""],"None of your episodes have status":[null,""],"Shows containing":[null,""],"episodes":[null,""],"Set checked shows/episodes to":[null,""],"Go":[null,""],"Select all":[null,""],"Clear all":[null,""],"Release":[null,""],"Backlog Search":[null,"Agterstand Soektog"],"Not in progress":[null,"Nie besig nie"],"In Progress":[null,"Besig"],"Daily Search":[null,"Daaglikse Soektog"],"Find Propers Search":[null,"Vind \"Propers\" Soektog"],"Propers search disabled":[null,"\"Propers\" soektog gedeaktiveer"],"Subtitle Search":[null,"Subtitel Soektog"],"Subtitle search disabled":[null,"Subtitel soektog gedeaktiveer"],"Search Queue":[null,"Pyplyn Soektog"],"pending items":[null,""],"Daily":[null,""],"Manual":[null,""],"Changing any settings marked with (<span class=\"separator\">*</span>) will force a refresh of the selected shows.":[null,""],"Selected Shows":[null,""],"Root Directories":[null,""],"Current":[null,""],"Keep":[null,""],"Custom":[null,""],"Group episodes by season folder (set to \"No\" to store in a single folder).":[null,""],"Pause these shows (SickRage will not download episodes).":[null,""],"This will set the status for future episodes.":[null,""],"Search by scene numbering (set to \"No\" to search by indexer numbering).":[null,""],"Set if these shows are Anime and episodes are released as Show.265 rather than Show.S02E03":[null,""],"Set if these shows are sporting or MMA events released as Show.03.02.2010 rather than Show.S02E03.":[null,""],"In case of an air date conflict between regular and special episodes, the later will be ignored.":[null,""],"Set if these shows are released as Show.03.02.2010 rather than Show.S02E03.":[null,""],"Search for subtitles.":[null,""],"All of your episodes have {subsLanguage} subtitles.":[null,""],"Manage episodes without":[null,""],"Episodes without {subsLanguage} subtitles.":[null,""],"Episodes without {subtitleLanguage} (undefined) subtitles.":[null,""],"Download missed subtitles for selected episodes":[null,""],"Performing Restart":[null,""],"Waiting for SickRage to shut down":[null,""],"Waiting for SickRage to start again":[null,""],"Loading the default page":[null,""],"Error: The restart has timed out, perhaps something prevented SickRage from starting again?":[null,""],"Key":[null,""],"Missed":[null,""],"Today":[null,""],"Soon":[null,""],"Later":[null,""],"Subscribe":[null,""],"Date":[null,""],"View Paused":[null,""],"Hidden":[null,""],"Shown":[null,""],"Calendar":[null,"Kalender"],"List":[null,"Lys"],"Ends":[null,""],"Next Ep Name":[null,""],"Run time":[null,""],"Indexers":[null,""],"No shows for this day":[null,"Geen programme vir hierdie dag"],"Airs":[null,""],"Plot":[null,"Opsomming"],"Show Update":[null,"Program Opdatering"],"Version Check":[null,"Weergawe Kontroleerder"],"Proper Finder":[null,"Proper Soeker"],"Post Process":[null,"Post Prosesering"],"Subtitles Finder":[null,"Subtitel Soeker"],"Scheduler":[null,"Skeduleerder"],"Alive":[null,"Lewendig"],"Start Time":[null,"Begin Tyd"],"Cycle Time":[null,"Siklus Tyd"],"Next Run":[null,"Volgende Iterasie"],"Last Run":[null,"Laaste Iterasie"],"Silent":[null,"Stil"],"True":[null,"Waar"],"N/A":[null,"N/A"],"Show id":[null,"Program id"],"Show name":[null,"Program naam"],"Priority":[null,"Prioriteit"],"Added":[null,"Bygevoeg"],"Queue type":[null,"Pyplyn tipe"],"LOW":[null,"LAAG"],"NORMAL":[null,"NORMAAL"],"HIGH":[null,"HOOG"],"Disk Space":[null,"Skyf Spasie"],"Free space":[null,"Vrye Spasie"],"TV Download Directory":[null,"TV Aflaai Leêr"],"Media Root Directories":[null,"Media Wortel Leêrs"],"Preview of the proposed name changes":[null,"Voorskou van die voorgestelde naam veranderings"],"All Seasons":[null,"Alle Seisoene"],"select all":[null,""],"Rename Selected":[null,"Herbenoem die seleksie"],"Cancel Rename":[null,"Kanselleer Herbenoeming"],"Old Location":[null,"Ou Bestemming"],"New Location":[null,"Nuwe Bestemming"],"Trakt API did not return any results, please check your config.":[null,"Trakt API het nie enige resultate terug gebring nie, verifieer jou konfigurasie."],"votes":[null,"stemme"],"Remove Show":[null,"Verwyder Program"],"Level":[null,""],"Filter":[null,""],"All non-absolute folder locations are relative to ":[null,""],"Manual Post-Processing":[null,""],"Episode Status Management":[null,"Episode Status Beheer"],"Update PLEX":[null,"Dateer PLEX op"],"Update KODI":[null,"Dateer KODI op"],"Update Emby":[null,"Dateer Emby op"],"Manage Torrents":[null,""],"Missed Subtitle Management":[null,"Vermisde Subtitel Beheer"],"Help & Info":[null,"Help & Info"],"Backup & Restore":[null,"Rugsteun & Restoreer"],"Tools":[null,"Gereedskap"],"Support SickRage":[null,"Ondersteun SickRage"],"View Errors":[null,"Besigtig Foute"],"View Warnings":[null,"Besigtig Waarskuwings"],"View Log":[null,"Besigtig Log"],"Check For Updates":[null,"Soek vir opdaterings"],"Restart":[null,"Herlaai"],"Shutdown":[null,"Sit af"],"Logout":[null,"Teken af"],"Server Status":[null,"Bediener Status"],"View overview of snatched episodes":[null,"Besigtig opsomming van gegrypte episodes"],"Episodes Downloaded":[null,"Episodes Afgelaai"],"Memory used":[null,"Geheue gebruik"],"Load time":[null,"Laai tyd"],"Branch":[null,"Tak"],"Now":[null,"Nou"]}}}} \ No newline at end of file diff --git a/locale/af_ZA/LC_MESSAGES/messages.mo b/locale/af_ZA/LC_MESSAGES/messages.mo index 828fcb04c0fcd36ca4e6838a6f47f12ad7df1fa9..e35b30b04dac51f72586aa7b840220c339192b7c 100644 Binary files a/locale/af_ZA/LC_MESSAGES/messages.mo and b/locale/af_ZA/LC_MESSAGES/messages.mo differ diff --git a/locale/af_ZA/LC_MESSAGES/messages.po b/locale/af_ZA/LC_MESSAGES/messages.po index 24fdccefd1ac8de3aba2aa35a27895180a97d952..711ab2299adb392341abe592818cb58fbee61dff 100644 --- a/locale/af_ZA/LC_MESSAGES/messages.po +++ b/locale/af_ZA/LC_MESSAGES/messages.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: sickrage\n" "Report-Msgid-Bugs-To: miigotu@gmail.com\n" -"POT-Creation-Date: 2017-03-25 09:28-0700\n" -"PO-Revision-Date: 2017-03-25 12:28-0400\n" +"POT-Creation-Date: 2017-03-28 09:10-0700\n" +"PO-Revision-Date: 2017-03-28 12:11-0400\n" "Last-Translator: miigotu <miigotu@gmail.com>\n" "Language-Team: Afrikaans\n" "MIME-Version: 1.0\n" @@ -90,7 +90,7 @@ msgid "Biography" msgstr "Biografie" #: gui/slick/views/config_general.mako:78 gui/slick/views/layouts/main.mako:145 -#: sickbeard/__init__.py:79 sickbeard/webserve.py:3807 +#: sickbeard/__init__.py:79 sickbeard/webserve.py:3778 msgid "History" msgstr "Geskiedenis" @@ -103,7 +103,7 @@ msgid "Western" msgstr "Western" #: gui/slick/views/config_general.mako:79 gui/slick/views/layouts/main.mako:221 -#: sickbeard/__init__.py:80 sickbeard/webserve.py:2385 +#: sickbeard/__init__.py:80 sickbeard/webserve.py:2384 msgid "News" msgstr "Nuus" @@ -238,6 +238,34 @@ msgstr "Geignoreerd" msgid "Subtitled" msgstr "Subtiteleerd" +#: sickbeard/helpers.py:1887 +msgid "For best results please set the Download Station alias as" +msgstr "" + +#: sickbeard/helpers.py:1888 +msgid "You can check this setting in the Synology DSM" +msgstr "" + +#: sickbeard/helpers.py:1888 sickbeard/helpers.py:1890 +msgid "Control Panel" +msgstr "" + +#: sickbeard/helpers.py:1888 +msgid "Application Portal" +msgstr "" + +#: sickbeard/helpers.py:1889 +msgid "Make sure you allow DSM to be embedded with iFrames too in" +msgstr "" + +#: sickbeard/helpers.py:1890 +msgid "DSM Settings" +msgstr "" + +#: sickbeard/helpers.py:1890 +msgid "Security" +msgstr "" + #: sickbeard/logger.py:474 msgid "<No Filter>" msgstr "<Geen Filter>" @@ -308,15 +336,15 @@ msgstr "Trakt Kontroleerder" msgid "Event" msgstr "" -#: sickbeard/logger.py:491 sickbeard/webserve.py:1339 sickbeard/webserve.py:1342 -#: sickbeard/webserve.py:1520 sickbeard/webserve.py:1529 sickbeard/webserve.py:1717 -#: sickbeard/webserve.py:1728 sickbeard/webserve.py:1751 sickbeard/webserve.py:1764 -#: sickbeard/webserve.py:1769 sickbeard/webserve.py:1785 sickbeard/webserve.py:1790 -#: sickbeard/webserve.py:1854 sickbeard/webserve.py:1857 sickbeard/webserve.py:1863 -#: sickbeard/webserve.py:1866 sickbeard/webserve.py:1873 sickbeard/webserve.py:1876 -#: sickbeard/webserve.py:1899 sickbeard/webserve.py:1997 sickbeard/webserve.py:2002 -#: sickbeard/webserve.py:2007 sickbeard/webserve.py:2036 sickbeard/webserve.py:2040 -#: sickbeard/webserve.py:2045 +#: sickbeard/logger.py:491 sickbeard/webserve.py:1338 sickbeard/webserve.py:1341 +#: sickbeard/webserve.py:1519 sickbeard/webserve.py:1528 sickbeard/webserve.py:1716 +#: sickbeard/webserve.py:1727 sickbeard/webserve.py:1750 sickbeard/webserve.py:1763 +#: sickbeard/webserve.py:1768 sickbeard/webserve.py:1784 sickbeard/webserve.py:1789 +#: sickbeard/webserve.py:1853 sickbeard/webserve.py:1856 sickbeard/webserve.py:1862 +#: sickbeard/webserve.py:1865 sickbeard/webserve.py:1872 sickbeard/webserve.py:1875 +#: sickbeard/webserve.py:1898 sickbeard/webserve.py:1996 sickbeard/webserve.py:2001 +#: sickbeard/webserve.py:2006 sickbeard/webserve.py:2035 sickbeard/webserve.py:2039 +#: sickbeard/webserve.py:2044 msgid "Error" msgstr "Fout" @@ -333,6 +361,7 @@ msgstr "" msgid "Main" msgstr "" +#: gui/slick/js/ajaxEpSearch.js:146 gui/slick/js/ajaxEpSearch.js:147 #: gui/slick/views/inc_home_showList.mako:27 sickbeard/show_queue.py:298 msgid "Loading" msgstr "" @@ -372,867 +401,835 @@ msgstr "Konfigurasie rugsteun taak het misluk, opdatering word gestaak" msgid "No update needed" msgstr "Geen opdatering benodig" -#: sickbeard/webserve.py:170 +#: sickbeard/webserve.py:171 msgid "Mako Error" msgstr "Mako Probleem" -#: sickbeard/webserve.py:195 +#: sickbeard/webserve.py:196 msgid "Oops" msgstr "Oeps" -#: sickbeard/webserve.py:197 +#: sickbeard/webserve.py:198 msgid "Wrong API key used" msgstr "Verkeerde API sleutel gebruik" -#: gui/slick/views/login.mako:34 sickbeard/webserve.py:302 +#: gui/slick/views/login.mako:34 sickbeard/webserve.py:303 msgid "Login" msgstr "Teken aan" -#: sickbeard/webserve.py:406 +#: sickbeard/webserve.py:392 msgid "API Key not generated" msgstr "API sleutel nie gegenereer nie" -#: sickbeard/webserve.py:409 +#: sickbeard/webserve.py:395 msgid "API Builder" msgstr "API Bouer" #: gui/slick/views/config_general.mako:77 gui/slick/views/layouts/main.mako:141 -#: sickbeard/webserve.py:512 +#: sickbeard/webserve.py:498 msgid "Schedule" msgstr "Skedule" -#: sickbeard/webserve.py:610 +#: sickbeard/webserve.py:609 msgid "Test 1" msgstr "Toets 1" -#: sickbeard/webserve.py:610 +#: sickbeard/webserve.py:609 msgid "This is test number 1" msgstr "Die is toets nommer 1" -#: sickbeard/webserve.py:611 +#: sickbeard/webserve.py:610 msgid "Test 2" msgstr "Toets 2" -#: sickbeard/webserve.py:611 +#: sickbeard/webserve.py:610 msgid "This is test number 2" msgstr "Die is toets nommer 2" -#: sickbeard/webserve.py:634 +#: sickbeard/webserve.py:633 msgid "You're using the {branch} branch. Please use 'master' unless specifically asked" msgstr "Jy gebruik die {branch} tak. Gebruik asseblief 'master' tensy anders gevra word" -#: sickbeard/webserve.py:698 sickbeard/webserve.py:703 +#: sickbeard/webserve.py:697 sickbeard/webserve.py:702 msgid "Invalid show parameters" msgstr "Ontoelaatbare vertoning parameters" -#: sickbeard/webserve.py:710 +#: sickbeard/webserve.py:709 msgid "Invalid parameters" msgstr "" -#: sickbeard/webserve.py:713 sickbeard/webserve.py:1899 +#: sickbeard/webserve.py:712 sickbeard/webserve.py:1898 msgid "Episode couldn't be retrieved" msgstr "Kon nie die episode ontrek nie" -#: sickbeard/webserve.py:759 sickbeard/webserve.py:1268 sickbeard/webserve.py:1297 +#: sickbeard/webserve.py:758 sickbeard/webserve.py:1267 sickbeard/webserve.py:1296 msgid "Home" msgstr "Tuis" -#: gui/slick/views/layouts/main.mako:127 sickbeard/webserve.py:759 +#: gui/slick/views/layouts/main.mako:127 sickbeard/webserve.py:758 msgid "Show List" msgstr "Program Lys" -#: sickbeard/webserve.py:807 +#: sickbeard/webserve.py:806 msgid "Error: Unsupported Request. Send jsonp request with 'callback' variable in the query string." msgstr "Fout: Ontoelaatbare Versoek: Stuur jsonp versoek met 'callback' veranderlike in die navraag string." -#: sickbeard/webserve.py:851 +#: sickbeard/webserve.py:850 msgid "Success. Connected and authenticated" msgstr "Sukses. Gekonnekteerd en bemagtig" -#: sickbeard/webserve.py:853 +#: sickbeard/webserve.py:852 msgid "Authentication failed. SABnzbd expects" msgstr "Bemagtiging het gefaal. SABnzbd verwag" -#: sickbeard/webserve.py:853 +#: sickbeard/webserve.py:852 msgid "as authentication method" msgstr "as bemagtigings metode" -#: sickbeard/webserve.py:855 +#: sickbeard/webserve.py:854 msgid "Unable to connect to host" msgstr "Kon nie aan die gasheer konnekteer nie" -#: sickbeard/webserve.py:876 +#: sickbeard/webserve.py:875 msgid "SMS sent successfully" msgstr "SMS suksesvol gestuur" -#: sickbeard/webserve.py:878 +#: sickbeard/webserve.py:877 msgid "Problem sending SMS: {message}" msgstr "SMS versending probleem: {message}" -#: sickbeard/webserve.py:885 +#: sickbeard/webserve.py:884 msgid "Telegram notification succeeded. Check your Telegram clients to make sure it worked" msgstr "Telegram kennisgewing was suksesvol. Gaan jou Telegram kliënte na om seker te maak dit het gewerk" -#: sickbeard/webserve.py:887 +#: sickbeard/webserve.py:886 msgid "Error sending Telegram notification: {message}" msgstr "Fout met Telegram kennisgewing versending: {message}" -#: sickbeard/webserve.py:894 +#: sickbeard/webserve.py:893 msgid "join notification succeeded. Check your join clients to make sure it worked" msgstr "aansluitings kennisgewing suksesvol. Toets jou aansluitings kliënte om te bevestig dat dit werk" -#: sickbeard/webserve.py:896 +#: sickbeard/webserve.py:895 msgid "Error sending join notification: {message}" msgstr "" -#: sickbeard/webserve.py:906 +#: sickbeard/webserve.py:905 msgid " with password" msgstr " met 'n wagwoord" -#: sickbeard/webserve.py:908 +#: sickbeard/webserve.py:907 msgid "Registered and Tested growl successfully {growl_host}" msgstr "growl suksesvol getoets en geregistreer {growl_host}" -#: sickbeard/webserve.py:910 +#: sickbeard/webserve.py:909 msgid "Registration and Testing of growl failed {growl_host}" msgstr "growl toets en registrasie het gefaal {growl_host}" -#: sickbeard/webserve.py:917 +#: sickbeard/webserve.py:916 msgid "Test prowl notice sent successfully" msgstr "Toets kennisgewing na prowl was suksesvol" -#: sickbeard/webserve.py:919 +#: sickbeard/webserve.py:918 msgid "Test prowl notice failed" msgstr "Toets kennisgewing na prowl het gefaal" -#: sickbeard/webserve.py:926 +#: sickbeard/webserve.py:925 msgid "Boxcar2 notification succeeded. Check your Boxcar2 clients to make sure it worked" msgstr "Boxcar 2 kennisgewing was suksesvol. Gaan jou Boxcar 2 kliënte na om seker te maak dit het gewerk" -#: sickbeard/webserve.py:928 +#: sickbeard/webserve.py:927 msgid "Error sending Boxcar2 notification" msgstr "Fout met Boxcar2 kennisgewing versending" -#: sickbeard/webserve.py:935 +#: sickbeard/webserve.py:934 msgid "Pushover notification succeeded. Check your Pushover clients to make sure it worked" msgstr "Pushover kennisgewing was suksesvol. Gaan jou Pushover kliënte na om seker te maak dit het gewerk" -#: sickbeard/webserve.py:937 +#: sickbeard/webserve.py:936 msgid "Error sending Pushover notification" msgstr "Fout met Pushover kennisgewing versending" -#: sickbeard/webserve.py:949 +#: sickbeard/webserve.py:948 msgid "Key verification successful" msgstr "Sleutel suksesvol geverifieer" -#: sickbeard/webserve.py:951 +#: sickbeard/webserve.py:950 msgid "Unable to verify key" msgstr "Nie in staat om die sleutel te verifieer nie" -#: sickbeard/webserve.py:958 +#: sickbeard/webserve.py:957 msgid "Tweet successful, check your twitter to make sure it worked" msgstr "Tweet was suksesvol, gaan jou Twitter na om seker te maak dit het gewerk" -#: sickbeard/webserve.py:960 +#: sickbeard/webserve.py:959 msgid "Error sending tweet" msgstr "Fout met Tweet versending" -#: sickbeard/webserve.py:965 +#: sickbeard/webserve.py:964 msgid "Please enter a valid account sid" msgstr "" -#: sickbeard/webserve.py:968 +#: sickbeard/webserve.py:967 msgid "Please enter a valid auth token" msgstr "" -#: sickbeard/webserve.py:971 +#: sickbeard/webserve.py:970 msgid "Please enter a valid phone sid" msgstr "" -#: sickbeard/webserve.py:974 +#: sickbeard/webserve.py:973 msgid "Please format the phone number as \"+1-###-###-####\"" msgstr "" -#: sickbeard/webserve.py:978 +#: sickbeard/webserve.py:977 msgid "Authorization successful and number ownership verified" msgstr "" -#: sickbeard/webserve.py:980 +#: sickbeard/webserve.py:979 msgid "Error sending sms" msgstr "" -#: sickbeard/webserve.py:986 +#: sickbeard/webserve.py:985 msgid "Slack message successful" msgstr "" -#: sickbeard/webserve.py:988 +#: sickbeard/webserve.py:987 msgid "Slack message failed" msgstr "" -#: sickbeard/webserve.py:994 +#: sickbeard/webserve.py:993 msgid "Discord message successful" msgstr "" -#: sickbeard/webserve.py:996 +#: sickbeard/webserve.py:995 msgid "Discord message failed" msgstr "" -#: sickbeard/webserve.py:1006 +#: sickbeard/webserve.py:1005 msgid "Test KODI notice sent successfully to {kodi_host}" msgstr "Kodi toets-kennisgewing suksesvol gestuur na {kodi_host}" -#: sickbeard/webserve.py:1008 +#: sickbeard/webserve.py:1007 msgid "Test KODI notice failed to {kodi_host}" msgstr "Kodi toets kennisgewing het misluk na {kodi_host}" -#: sickbeard/webserve.py:1023 +#: sickbeard/webserve.py:1022 msgid "Successful test notice sent to Plex Home Theater ... {plex_clients}" msgstr "'n Suksesvolle toets boodskap was gestuur na Plex Home Theater ... {plex_clients}" -#: sickbeard/webserve.py:1025 +#: sickbeard/webserve.py:1024 msgid "Test failed for Plex Home Theater ... {plex_clients}" msgstr "Onsuksesvolle toets vir Plex Home Theater ... {plex_clients}" -#: sickbeard/webserve.py:1028 +#: sickbeard/webserve.py:1027 msgid "Tested Plex Home Theater(s)" msgstr "Plex Home Theater(s) getoets" -#: sickbeard/webserve.py:1042 +#: sickbeard/webserve.py:1041 msgid "Successful test of Plex Media Server(s) ... {plex_servers}" msgstr "Suksesvolle toets van Plex Media Server(s) ... {plex_servers}" -#: sickbeard/webserve.py:1044 +#: sickbeard/webserve.py:1043 msgid "Test failed, No Plex Media Server host specified" msgstr "Toets was onsuksesvol, geen Plex Media Server gasheer gespesifiseer" -#: sickbeard/webserve.py:1046 +#: sickbeard/webserve.py:1045 msgid "Test failed for Plex Media Server(s) ... {plex_servers}" msgstr "Onsuksesvolle toets vir Plex Media Server(s) ... {plex_servers}" -#: sickbeard/webserve.py:1049 +#: sickbeard/webserve.py:1048 msgid "Tested Plex Media Server host(s)" msgstr "Plex Media Server gasheer(e) getoets" -#: sickbeard/webserve.py:1057 +#: sickbeard/webserve.py:1056 msgid "Tried sending desktop notification via libnotify" msgstr "Het probeer om desktop kennisgewing te stuur via libnotify" -#: sickbeard/webserve.py:1066 +#: sickbeard/webserve.py:1065 msgid "Test notice sent successfully to {emby_host}" msgstr "Toets kennisgewing was suksesvol na {emby_host} gestuur" -#: sickbeard/webserve.py:1068 +#: sickbeard/webserve.py:1067 msgid "Test notice failed to {emby_host}" msgstr "Toets kennisgewing het gefaal na {emby_host}" -#: sickbeard/webserve.py:1076 +#: sickbeard/webserve.py:1075 msgid "Successfully started the scan update" msgstr "Scan opdatering suksesvol begin" -#: sickbeard/webserve.py:1078 +#: sickbeard/webserve.py:1077 msgid "Test failed to start the scan update" msgstr "Toets het gefaal om die scan opdatering te begin" -#: sickbeard/webserve.py:1097 +#: sickbeard/webserve.py:1096 msgid "Test notice sent successfully to {nmj2_host}" msgstr "Toets kennisgewing was suksesvol na {nmj2_host} gestuur" -#: sickbeard/webserve.py:1099 +#: sickbeard/webserve.py:1098 msgid "Test notice failed to {nmj2_host}" msgstr "Toets boodskap na {nmj2_host} het misluk" -#: sickbeard/webserve.py:1119 +#: sickbeard/webserve.py:1118 msgid "Trakt Authorized" msgstr "Trakt was gemagtig" -#: sickbeard/webserve.py:1120 +#: sickbeard/webserve.py:1119 msgid "Trakt Not Authorized!" msgstr "Trakt is nie gemagtig nie!" -#: sickbeard/webserve.py:1184 +#: sickbeard/webserve.py:1183 msgid "Test email sent successfully! Check inbox." msgstr "Toets e-pos suksesvol gestuur! Kontroleer jou inboks." -#: sickbeard/webserve.py:1186 +#: sickbeard/webserve.py:1185 msgid "ERROR: {last_error}" msgstr "FOUT: {last_error}" -#: sickbeard/webserve.py:1193 +#: sickbeard/webserve.py:1192 msgid "Test NMA notice sent successfully" msgstr "NMA toets boodskap met sukses gestuur" -#: sickbeard/webserve.py:1195 +#: sickbeard/webserve.py:1194 msgid "Test NMA notice failed" msgstr "NMA toets boodskap het misluk" -#: sickbeard/webserve.py:1202 +#: sickbeard/webserve.py:1201 msgid "Pushalot notification succeeded. Check your Pushalot clients to make sure it worked" msgstr "Pushalot kennisgewing was suksesvol. Kontroleer jou Pushalot kliënte om seker te maak dit het gewerk" -#: sickbeard/webserve.py:1204 +#: sickbeard/webserve.py:1203 msgid "Error sending Pushalot notification" msgstr "Fout met die versending van Pushalot kennisgewing" -#: sickbeard/webserve.py:1211 +#: sickbeard/webserve.py:1210 msgid "Pushbullet notification succeeded. Check your device to make sure it worked" msgstr "Pushbullet kennisgewing was suksesvol. Kontroleer jou toestel om seker te maak dit het gewerk" -#: sickbeard/webserve.py:1213 sickbeard/webserve.py:1223 sickbeard/webserve.py:1232 +#: sickbeard/webserve.py:1212 sickbeard/webserve.py:1222 sickbeard/webserve.py:1231 msgid "Error sending Pushbullet notification" msgstr "Fout met versending van Pushbullet kennisgewing" #: gui/slick/views/displayShow.mako:436 gui/slick/views/inc_home_showList.mako:174 -#: gui/slick/views/manage.mako:49 sickbeard/webserve.py:1249 +#: gui/slick/views/manage.mako:49 sickbeard/webserve.py:1248 msgid "Status" msgstr "Status" -#: sickbeard/webserve.py:1268 sickbeard/webserve.py:1297 +#: sickbeard/webserve.py:1267 sickbeard/webserve.py:1296 msgid "Restarting SickRage" msgstr "SickRage aan die herlaai" -#: sickbeard/webserve.py:1300 +#: sickbeard/webserve.py:1299 msgid "Update Failed" msgstr "Opdatering het gefaal" -#: sickbeard/webserve.py:1301 +#: sickbeard/webserve.py:1300 msgid "Update wasn't successful, not restarting. Check your log for more information." msgstr "Opdatering was nie suksesvol nie, gaan nie herlaai nie. Kontroleer jou log vir meer inligting." -#: sickbeard/webserve.py:1308 +#: sickbeard/webserve.py:1307 msgid "Checking out branch" msgstr "Besig om tak uit te teken" -#: sickbeard/webserve.py:1311 +#: sickbeard/webserve.py:1310 msgid "Already on branch" msgstr "Reeds op tak" -#: sickbeard/webserve.py:1339 +#: sickbeard/webserve.py:1338 msgid "Invalid show ID: {show}" msgstr "Verkeerde vertoning ID: {show}" -#: sickbeard/webserve.py:1342 sickbeard/webserve.py:1871 sickbeard/webserve.py:2002 -#: sickbeard/webserve.py:2040 +#: sickbeard/webserve.py:1341 sickbeard/webserve.py:1870 sickbeard/webserve.py:2001 +#: sickbeard/webserve.py:2039 msgid "Show not in show list" msgstr "Program nie in program lys" #: gui/slick/views/inc_rootDirs.mako:31 gui/slick/views/manage.mako:38 -#: gui/slick/views/manage_massEdit.mako:74 sickbeard/webserve.py:1358 -#: sickbeard/webserve.py:2027 +#: gui/slick/views/manage_massEdit.mako:74 sickbeard/webserve.py:1357 +#: sickbeard/webserve.py:2026 msgid "Edit" msgstr "Wysig" -#: sickbeard/webserve.py:1368 +#: sickbeard/webserve.py:1367 msgid "This show is in the process of being downloaded - the info below is incomplete." msgstr "" -#: sickbeard/webserve.py:1371 +#: sickbeard/webserve.py:1370 msgid "The information on this page is in the process of being updated." msgstr "" -#: sickbeard/webserve.py:1374 +#: sickbeard/webserve.py:1373 msgid "The episodes below are currently being refreshed from disk" msgstr "" -#: sickbeard/webserve.py:1377 +#: sickbeard/webserve.py:1376 msgid "Currently downloading subtitles for this show" msgstr "" -#: sickbeard/webserve.py:1380 +#: sickbeard/webserve.py:1379 msgid "This show is queued to be refreshed." msgstr "" -#: sickbeard/webserve.py:1383 +#: sickbeard/webserve.py:1382 msgid "This show is queued and awaiting an update." msgstr "" -#: sickbeard/webserve.py:1386 +#: sickbeard/webserve.py:1385 msgid "This show is queued and awaiting subtitles download." msgstr "" -#: gui/slick/js/core.js:4081 sickbeard/webserve.py:1391 +#: gui/slick/js/core.js:4081 sickbeard/webserve.py:1390 msgid "Resume" msgstr "Hervat" #: gui/slick/js/core.js:4081 gui/slick/views/viewlogs.mako:12 -#: sickbeard/webserve.py:1393 +#: sickbeard/webserve.py:1392 msgid "Pause" msgstr "Pause" #: gui/slick/views/editShow.mako:345 gui/slick/views/inc_blackwhitelist.mako:40 #: gui/slick/views/inc_blackwhitelist.mako:85 gui/slick/views/manage.mako:58 -#: gui/slick/views/manage_failedDownloads.mako:43 sickbeard/webserve.py:1395 +#: gui/slick/views/manage_failedDownloads.mako:43 sickbeard/webserve.py:1394 msgid "Remove" msgstr "Verwyder" -#: sickbeard/webserve.py:1396 +#: sickbeard/webserve.py:1395 msgid "Re-scan files" msgstr "Scan weer die leêrs" -#: sickbeard/webserve.py:1397 +#: sickbeard/webserve.py:1396 msgid "Force Full Update" msgstr "Forseer 'n volledige opdatering" -#: sickbeard/webserve.py:1398 +#: sickbeard/webserve.py:1397 msgid "Update show in KODI" msgstr "Dateer die program op in KODI" -#: sickbeard/webserve.py:1399 +#: sickbeard/webserve.py:1398 msgid "Update show in Emby" msgstr "Dateer die program op in Emby" -#: sickbeard/webserve.py:1402 +#: sickbeard/webserve.py:1401 msgid "Hide specials" msgstr "" -#: sickbeard/webserve.py:1404 +#: sickbeard/webserve.py:1403 msgid "Show specials" msgstr "" -#: sickbeard/webserve.py:1406 sickbeard/webserve.py:2030 sickbeard/webserve.py:2031 +#: sickbeard/webserve.py:1405 sickbeard/webserve.py:2029 sickbeard/webserve.py:2030 msgid "Preview Rename" msgstr "Voorskou van nuwe naam" -#: sickbeard/webserve.py:1409 +#: sickbeard/webserve.py:1408 msgid "Download Subtitles" msgstr "Laai subtitels af" -#: sickbeard/webserve.py:1498 +#: sickbeard/webserve.py:1497 msgid "No scene exceptions" msgstr "Geen \"scene\" uitsonderings" -#: sickbeard/webserve.py:1516 sickbeard/webserve.py:1764 sickbeard/webserve.py:1785 +#: sickbeard/webserve.py:1515 sickbeard/webserve.py:1763 sickbeard/webserve.py:1784 msgid "Invalid show ID" msgstr "Verkeerde program ID" -#: sickbeard/webserve.py:1525 sickbeard/webserve.py:1769 sickbeard/webserve.py:1790 +#: sickbeard/webserve.py:1524 sickbeard/webserve.py:1768 sickbeard/webserve.py:1789 msgid "Unable to find the specified show" msgstr "Kan nie die spesifiseerde program vind nie" -#: sickbeard/webserve.py:1550 +#: sickbeard/webserve.py:1549 msgid "Unable to retreive Fansub Groups from AniDB." msgstr "Kan nie die Fansub Groepe vanaf AniDB ontwin nie." -#: sickbeard/webserve.py:1559 sickbeard/webserve.py:1561 +#: sickbeard/webserve.py:1558 sickbeard/webserve.py:1560 msgid "Edit Show" msgstr "Wysig Program" -#: sickbeard/webserve.py:1637 sickbeard/webserve.py:1671 +#: sickbeard/webserve.py:1636 sickbeard/webserve.py:1670 msgid "Unable to refresh this show: {error}" msgstr "Kan nie die program verfris nie: {error}" -#: sickbeard/webserve.py:1663 +#: sickbeard/webserve.py:1662 msgid "New location <tt>{location}</tt> does not exist" msgstr "Nuwe plek <tt>{location}</tt> bestaan nie" -#: sickbeard/webserve.py:1688 +#: sickbeard/webserve.py:1687 msgid "Unable to update show: {error}" msgstr "Kan nie die program opdateer nie: {error}" -#: sickbeard/webserve.py:1695 +#: sickbeard/webserve.py:1694 msgid "Unable to force an update on scene exceptions of the show." msgstr "" -#: sickbeard/webserve.py:1702 +#: sickbeard/webserve.py:1701 msgid "Unable to force an update on scene numbering of the show." msgstr "" -#: sickbeard/webserve.py:1708 sickbeard/webserve.py:3540 +#: sickbeard/webserve.py:1707 sickbeard/webserve.py:3539 msgid "{num_errors:d} error{plural} while saving changes:" msgstr "" -#: sickbeard/webserve.py:1719 +#: sickbeard/webserve.py:1718 msgid "{show_name} has been {paused_resumed}" msgstr "" -#: sickbeard/webserve.py:1719 +#: sickbeard/webserve.py:1718 msgid "resumed" msgstr "hervat" -#: sickbeard/webserve.py:1719 +#: sickbeard/webserve.py:1718 msgid "paused" msgstr "veronderbreek" -#: sickbeard/webserve.py:1731 +#: sickbeard/webserve.py:1730 msgid "{show_name} has been {deleted_trashed} {was_deleted}" msgstr "" -#: sickbeard/webserve.py:1733 +#: sickbeard/webserve.py:1732 msgid "deleted" msgstr "geskrap" -#: sickbeard/webserve.py:1733 +#: sickbeard/webserve.py:1732 msgid "trashed" msgstr "verskuif na asblik" -#: sickbeard/webserve.py:1734 +#: sickbeard/webserve.py:1733 msgid "(media untouched)" msgstr "(media onaangeraak)" -#: sickbeard/webserve.py:1734 +#: sickbeard/webserve.py:1733 msgid "(with all related media)" msgstr "(met alle verwante media)" -#: sickbeard/webserve.py:1755 +#: sickbeard/webserve.py:1754 msgid "Unable to refresh this show." msgstr "Kan nie hierdie program verfris nie." -#: sickbeard/webserve.py:1775 +#: sickbeard/webserve.py:1774 msgid "Unable to update this show." msgstr "Kan nie hierdie program opdateer nie." -#: sickbeard/webserve.py:1814 +#: sickbeard/webserve.py:1813 msgid "Library update command sent to KODI host(s)): {kodi_hosts}" msgstr "" -#: sickbeard/webserve.py:1816 +#: sickbeard/webserve.py:1815 msgid "Unable to contact one or more KODI host(s)): {kodi_hosts}" msgstr "" -#: sickbeard/webserve.py:1825 +#: sickbeard/webserve.py:1824 msgid "Library update command sent to Plex Media Server host: {plex_server}" msgstr "" -#: sickbeard/webserve.py:1828 +#: sickbeard/webserve.py:1827 msgid "Unable to contact Plex Media Server host: {plex_server}" msgstr "" -#: sickbeard/webserve.py:1840 +#: sickbeard/webserve.py:1839 msgid "Library update command sent to Emby host: {emby_host}" msgstr "" -#: sickbeard/webserve.py:1842 +#: sickbeard/webserve.py:1841 msgid "Unable to contact Emby host: {emby_host}" msgstr "Emby host:{emby_host} kontak nie moontlik" -#: sickbeard/webserve.py:1852 sickbeard/webserve.py:2036 +#: sickbeard/webserve.py:1851 sickbeard/webserve.py:2035 msgid "You must specify a show and at least one episode" msgstr "" -#: sickbeard/webserve.py:1861 +#: sickbeard/webserve.py:1860 msgid "Invalid status" msgstr "Ongeldige status" -#: sickbeard/webserve.py:1954 +#: sickbeard/webserve.py:1953 msgid "Backlog was automatically started for the following seasons of <b>{show_name}</b>" msgstr "Agterstand soektog het automaties begin vir die volgende seisoene van <b>{show_name}</b>" #: gui/slick/views/displayShow.mako:74 gui/slick/views/displayShow.mako:79 -#: gui/slick/views/displayShow.mako:404 sickbeard/webserve.py:1961 -#: sickbeard/webserve.py:1980 +#: gui/slick/views/displayShow.mako:404 sickbeard/webserve.py:1960 +#: sickbeard/webserve.py:1979 msgid "Season" msgstr "Seisoen" -#: sickbeard/webserve.py:1968 +#: sickbeard/webserve.py:1967 msgid "Backlog started" msgstr "Agterstand soektog het begin" -#: sickbeard/webserve.py:1973 +#: sickbeard/webserve.py:1972 msgid "Retrying Search was automatically started for the following season of <b>{show_name}</b>" msgstr "Probeer-weer Soektog is outomaties weer begin vir die volgende seisoen van <b>{show_name}</b>" -#: sickbeard/webserve.py:1987 +#: sickbeard/webserve.py:1986 msgid "Retry Search started" msgstr "Probeer-weer Soektog het begin" -#: sickbeard/webserve.py:1997 +#: sickbeard/webserve.py:1996 msgid "You must specify a show" msgstr "Jy moet 'n show spesifiseer" -#: sickbeard/webserve.py:2007 sickbeard/webserve.py:2045 +#: sickbeard/webserve.py:2006 sickbeard/webserve.py:2044 msgid "Can't rename episodes when the show dir is missing." msgstr "Kan nie die episodes hernoem wanneer die program leêr vermis word nie." -#: sickbeard/webserve.py:2212 sickbeard/webserve.py:2233 +#: sickbeard/webserve.py:2211 sickbeard/webserve.py:2232 msgid "New subtitles downloaded: {new_subtitle_languages}" msgstr "" -#: sickbeard/webserve.py:2215 sickbeard/webserve.py:2236 +#: sickbeard/webserve.py:2214 sickbeard/webserve.py:2235 msgid "No subtitles downloaded" msgstr "Geen onderskrifte afgelaai" #: gui/slick/views/config_general.mako:80 gui/slick/views/layouts/main.mako:222 -#: sickbeard/webserve.py:2363 +#: sickbeard/webserve.py:2362 msgid "IRC" msgstr "IRC" -#: sickbeard/webserve.py:2376 +#: sickbeard/webserve.py:2375 msgid "Could not load news from the repo. [Click here for news.md])({news_url})" msgstr "Kon nie die nuus van die repo af laai nie. [Kliek hier vir nuus.md])({news_url})" -#: sickbeard/webserve.py:2383 sickbeard/webserve.py:2401 +#: sickbeard/webserve.py:2382 sickbeard/webserve.py:2400 msgid "The was a problem connecting to github, please refresh and try again" msgstr "" -#: sickbeard/webserve.py:2398 +#: sickbeard/webserve.py:2397 msgid "Could not load changes from the repo. [Click here for CHANGES.md]({changes_url})" msgstr "" -#: gui/slick/views/layouts/main.mako:223 sickbeard/webserve.py:2403 +#: gui/slick/views/layouts/main.mako:223 sickbeard/webserve.py:2402 msgid "Changelog" msgstr "" -#: gui/slick/views/layouts/main.mako:190 sickbeard/webserve.py:2413 -#: sickbeard/webserve.py:3855 sickbeard/webserve.py:4341 +#: gui/slick/views/layouts/main.mako:190 sickbeard/webserve.py:2412 +#: sickbeard/webserve.py:3826 sickbeard/webserve.py:4312 msgid "Post Processing" msgstr "" -#: gui/slick/views/layouts/main.mako:128 sickbeard/webserve.py:2445 +#: gui/slick/views/layouts/main.mako:128 sickbeard/webserve.py:2444 msgid "Add Shows" msgstr "" -#: sickbeard/webserve.py:2510 +#: sickbeard/webserve.py:2509 msgid "No folders selected." msgstr "" -#: sickbeard/webserve.py:2632 +#: sickbeard/webserve.py:2631 msgid "New Show" msgstr "" -#: sickbeard/webserve.py:2647 +#: sickbeard/webserve.py:2646 msgid "Trending Shows" msgstr "" -#: sickbeard/webserve.py:2649 sickbeard/webserve.py:2772 +#: sickbeard/webserve.py:2648 sickbeard/webserve.py:2771 msgid "Popular Shows" msgstr "" -#: sickbeard/webserve.py:2651 sickbeard/webserve.py:2665 +#: sickbeard/webserve.py:2650 sickbeard/webserve.py:2664 msgid "Most Anticipated Shows" msgstr "" -#: sickbeard/webserve.py:2653 +#: sickbeard/webserve.py:2652 msgid "Most Collected Shows" msgstr "" -#: sickbeard/webserve.py:2655 +#: sickbeard/webserve.py:2654 msgid "Most Watched Shows" msgstr "" -#: sickbeard/webserve.py:2657 +#: sickbeard/webserve.py:2656 msgid "Most Played Shows" msgstr "" -#: sickbeard/webserve.py:2659 +#: sickbeard/webserve.py:2658 msgid "Recommended Shows" msgstr "" -#: gui/slick/views/addShows_trendingShows.mako:60 sickbeard/webserve.py:2661 +#: gui/slick/views/addShows_trendingShows.mako:60 sickbeard/webserve.py:2660 msgid "New Shows" msgstr "" -#: gui/slick/views/addShows_trendingShows.mako:61 sickbeard/webserve.py:2663 +#: gui/slick/views/addShows_trendingShows.mako:61 sickbeard/webserve.py:2662 msgid "Season Premieres" msgstr "" -#: sickbeard/webserve.py:2792 sickbeard/webserve.py:2793 +#: sickbeard/webserve.py:2791 sickbeard/webserve.py:2792 msgid "Existing Show" msgstr "" -#: sickbeard/webserve.py:2871 +#: sickbeard/webserve.py:2870 msgid "No root directories setup, please go back and add one." msgstr "" -#: sickbeard/webserve.py:2883 sickbeard/webserve.py:3002 +#: sickbeard/webserve.py:2882 sickbeard/webserve.py:3001 msgid "Show added" msgstr "" -#: sickbeard/webserve.py:2883 +#: sickbeard/webserve.py:2882 msgid "Adding the specified show {show_name}" msgstr "" -#: sickbeard/webserve.py:2924 +#: sickbeard/webserve.py:2923 msgid "Missing params, no Indexer ID or folder: {show_to_add} and {root_dir}/{show_path}" msgstr "Afwesige parameters, geen Indekser ID of leêr: {show_to_add} and {root_dir}/{show_path}" -#: sickbeard/webserve.py:2933 +#: sickbeard/webserve.py:2932 msgid "Unknown error. Unable to add show due to problem with show selection." msgstr "" -#: sickbeard/webserve.py:2957 sickbeard/webserve.py:2967 +#: sickbeard/webserve.py:2956 sickbeard/webserve.py:2966 msgid "Unable to add show" msgstr "" -#: sickbeard/webserve.py:2957 +#: sickbeard/webserve.py:2956 msgid "Folder {show_dir} exists already" msgstr "" -#: sickbeard/webserve.py:2968 +#: sickbeard/webserve.py:2967 msgid "Unable to create the folder {show_dir}, can't add the show" msgstr "" -#: sickbeard/webserve.py:3002 +#: sickbeard/webserve.py:3001 msgid "Adding the specified show into {show_dir}" msgstr "" -#: sickbeard/webserve.py:3078 +#: sickbeard/webserve.py:3077 msgid "Shows Added" msgstr "" -#: sickbeard/webserve.py:3079 +#: sickbeard/webserve.py:3078 msgid "Automatically added {num_shows} from their existing metadata files" msgstr "" -#: gui/slick/views/layouts/main.mako:153 sickbeard/webserve.py:3096 +#: gui/slick/views/layouts/main.mako:153 sickbeard/webserve.py:3095 msgid "Mass Update" msgstr "" -#: sickbeard/webserve.py:3134 sickbeard/webserve.py:3161 sickbeard/webserve.py:3237 -#: sickbeard/webserve.py:3238 +#: sickbeard/webserve.py:3133 sickbeard/webserve.py:3160 sickbeard/webserve.py:3236 +#: sickbeard/webserve.py:3237 msgid "Episode Overview" msgstr "" -#: sickbeard/webserve.py:3270 +#: sickbeard/webserve.py:3269 msgid "Missing Subtitles" msgstr "Afwesige Subtitels" -#: gui/slick/views/layouts/main.mako:154 sickbeard/webserve.py:3356 -#: sickbeard/webserve.py:3357 +#: gui/slick/views/layouts/main.mako:154 sickbeard/webserve.py:3355 +#: sickbeard/webserve.py:3356 msgid "Backlog Overview" msgstr "Agterstand Opsommig" -#: sickbeard/webserve.py:3481 +#: sickbeard/webserve.py:3480 msgid "Mass Edit" msgstr "" -#: sickbeard/webserve.py:3586 +#: sickbeard/webserve.py:3585 msgid "Unable to update show: {excption_format}" msgstr "" -#: sickbeard/webserve.py:3594 +#: sickbeard/webserve.py:3593 msgid "Unable to refresh show {show_name}: {excption_format}" msgstr "" -#: sickbeard/webserve.py:3605 +#: sickbeard/webserve.py:3604 msgid "Errors encountered" msgstr "" -#: gui/slick/views/config_general.mako:261 sickbeard/webserve.py:3611 +#: gui/slick/views/config_general.mako:261 sickbeard/webserve.py:3610 msgid "Updates" msgstr "" -#: sickbeard/webserve.py:3616 +#: sickbeard/webserve.py:3615 msgid "Refreshes" msgstr "" -#: sickbeard/webserve.py:3621 +#: sickbeard/webserve.py:3620 msgid "Renames" msgstr "" #: gui/slick/views/displayShow.mako:260 gui/slick/views/displayShow.mako:435 #: gui/slick/views/editShow.mako:119 gui/slick/views/inc_addShowOptions.mako:20 -#: gui/slick/views/manage_massEdit.mako:262 sickbeard/webserve.py:3626 -#: sickbeard/webserve.py:5244 +#: gui/slick/views/manage_massEdit.mako:262 sickbeard/webserve.py:3625 +#: sickbeard/webserve.py:5215 msgid "Subtitles" msgstr "Onderskrifte" -#: sickbeard/webserve.py:3631 +#: sickbeard/webserve.py:3630 msgid "The following actions were queued" msgstr "" -#: sickbeard/webserve.py:3651 -msgid "For best results please set the Download Station alias as" -msgstr "" - -#: sickbeard/webserve.py:3652 -msgid "You can check this setting in the Synology DSM" -msgstr "" - -#: sickbeard/webserve.py:3652 sickbeard/webserve.py:3654 -msgid "Control Panel" -msgstr "" - -#: sickbeard/webserve.py:3652 -msgid "Application Portal" -msgstr "" - -#: sickbeard/webserve.py:3653 -msgid "Make sure you allow DSM to be embedded with iFrames too in" -msgstr "" - -#: sickbeard/webserve.py:3654 -msgid "DSM Settings" -msgstr "" - -#: sickbeard/webserve.py:3654 -msgid "Security" -msgstr "" - -#: gui/slick/views/layouts/main.mako:167 sickbeard/webserve.py:3662 -msgid "Manage Torrents" -msgstr "" - -#: gui/slick/views/layouts/main.mako:170 sickbeard/webserve.py:3683 +#: gui/slick/views/layouts/main.mako:170 sickbeard/webserve.py:3654 msgid "Failed Downloads" msgstr "" -#: gui/slick/views/layouts/main.mako:155 sickbeard/webserve.py:3701 +#: gui/slick/views/layouts/main.mako:155 sickbeard/webserve.py:3672 msgid "Manage Searches" msgstr "" -#: sickbeard/webserve.py:3709 +#: sickbeard/webserve.py:3680 msgid "Backlog search started" msgstr "Agterstand Soektog het begin" -#: sickbeard/webserve.py:3719 +#: sickbeard/webserve.py:3690 msgid "Daily search started" msgstr "" -#: sickbeard/webserve.py:3728 +#: sickbeard/webserve.py:3699 msgid "Find propers search started" msgstr "" -#: sickbeard/webserve.py:3737 +#: sickbeard/webserve.py:3708 msgid "Subtitle search started" msgstr "" -#: sickbeard/webserve.py:3801 +#: sickbeard/webserve.py:3772 msgid "Remove Selected" msgstr "" -#: sickbeard/webserve.py:3802 +#: sickbeard/webserve.py:3773 msgid "Clear History" msgstr "" -#: sickbeard/webserve.py:3803 +#: sickbeard/webserve.py:3774 msgid "Trim History" msgstr "" -#: sickbeard/webserve.py:3823 +#: sickbeard/webserve.py:3794 msgid "Selected history entries removed" msgstr "" -#: sickbeard/webserve.py:3830 +#: sickbeard/webserve.py:3801 msgid "History cleared" msgstr "" -#: sickbeard/webserve.py:3837 +#: sickbeard/webserve.py:3808 msgid "Removed history entries older than 30 days" msgstr "" -#: gui/slick/views/layouts/main.mako:185 sickbeard/webserve.py:3850 +#: gui/slick/views/layouts/main.mako:185 sickbeard/webserve.py:3821 msgid "General" msgstr "" -#: sickbeard/webserve.py:3851 sickbeard/webserve.py:4143 +#: sickbeard/webserve.py:3822 sickbeard/webserve.py:4114 msgid "Backup/Restore" msgstr "" -#: gui/slick/views/layouts/main.mako:187 sickbeard/webserve.py:3852 -#: sickbeard/webserve.py:4206 +#: gui/slick/views/layouts/main.mako:187 sickbeard/webserve.py:3823 +#: sickbeard/webserve.py:4177 msgid "Search Settings" msgstr "" -#: gui/slick/views/layouts/main.mako:188 sickbeard/webserve.py:3853 -#: sickbeard/webserve.py:4518 +#: gui/slick/views/layouts/main.mako:188 sickbeard/webserve.py:3824 +#: sickbeard/webserve.py:4489 msgid "Search Providers" msgstr "Soektog Voorsieners" -#: gui/slick/views/layouts/main.mako:189 sickbeard/webserve.py:3854 +#: gui/slick/views/layouts/main.mako:189 sickbeard/webserve.py:3825 msgid "Subtitles Settings" msgstr "" -#: gui/slick/views/layouts/main.mako:191 sickbeard/webserve.py:3856 -#: sickbeard/webserve.py:4964 +#: gui/slick/views/layouts/main.mako:191 sickbeard/webserve.py:3827 +#: sickbeard/webserve.py:4935 msgid "Notifications" msgstr "" @@ -1240,142 +1237,142 @@ msgstr "" #: gui/slick/views/home.mako:35 gui/slick/views/inc_addShowOptions.mako:79 #: gui/slick/views/inc_home_showList.mako:179 gui/slick/views/layouts/main.mako:192 #: gui/slick/views/manage.mako:44 gui/slick/views/manage_massEdit.mako:202 -#: sickbeard/webserve.py:3857 sickbeard/webserve.py:5309 +#: sickbeard/webserve.py:3828 sickbeard/webserve.py:5280 msgid "Anime" msgstr "" -#: sickbeard/webserve.py:3895 sickbeard/webserve.py:3896 +#: sickbeard/webserve.py:3866 sickbeard/webserve.py:3867 msgid "SickRage Configuration" msgstr "" -#: sickbeard/webserve.py:3910 +#: sickbeard/webserve.py:3881 msgid "Config - Shares" msgstr "" -#: sickbeard/webserve.py:3910 +#: sickbeard/webserve.py:3881 msgid "Windows Shares Configuration" msgstr "" -#: sickbeard/webserve.py:3937 +#: sickbeard/webserve.py:3908 msgid "Saved Shares" msgstr "" -#: sickbeard/webserve.py:3937 +#: sickbeard/webserve.py:3908 msgid "Your Windows share settings have been saved" msgstr "" -#: sickbeard/webserve.py:3948 +#: sickbeard/webserve.py:3919 msgid "Config - General" msgstr "" -#: sickbeard/webserve.py:3948 +#: sickbeard/webserve.py:3919 msgid "General Configuration" msgstr "" -#: sickbeard/webserve.py:3988 +#: sickbeard/webserve.py:3959 msgid "Saved Defaults" msgstr "" -#: sickbeard/webserve.py:3988 +#: sickbeard/webserve.py:3959 msgid "Your \"add show\" defaults have been set to your current selections." msgstr "" -#: sickbeard/webserve.py:4095 +#: sickbeard/webserve.py:4066 msgid "Unable to create directory {directory}, log directory not changed." msgstr "" -#: sickbeard/webserve.py:4103 +#: sickbeard/webserve.py:4074 msgid "Unable to create directory {directory}, https cert directory not changed." msgstr "" -#: sickbeard/webserve.py:4107 +#: sickbeard/webserve.py:4078 msgid "Unable to create directory {directory}, https key directory not changed." msgstr "" -#: sickbeard/webserve.py:4126 sickbeard/webserve.py:4324 sickbeard/webserve.py:4456 -#: sickbeard/webserve.py:5227 +#: sickbeard/webserve.py:4097 sickbeard/webserve.py:4295 sickbeard/webserve.py:4427 +#: sickbeard/webserve.py:5198 msgid "Error(s) Saving Configuration" msgstr "" -#: sickbeard/webserve.py:4129 sickbeard/webserve.py:4327 sickbeard/webserve.py:4458 -#: sickbeard/webserve.py:4950 sickbeard/webserve.py:5230 sickbeard/webserve.py:5294 -#: sickbeard/webserve.py:5323 +#: sickbeard/webserve.py:4100 sickbeard/webserve.py:4298 sickbeard/webserve.py:4429 +#: sickbeard/webserve.py:4921 sickbeard/webserve.py:5201 sickbeard/webserve.py:5265 +#: sickbeard/webserve.py:5294 msgid "Configuration Saved" msgstr "" -#: sickbeard/webserve.py:4142 +#: sickbeard/webserve.py:4113 msgid "Config - Backup/Restore" msgstr "" -#: sickbeard/webserve.py:4205 +#: sickbeard/webserve.py:4176 msgid "Config - Episode Search" msgstr "" -#: sickbeard/webserve.py:4340 +#: sickbeard/webserve.py:4311 msgid "Config - Post Processing" msgstr "" -#: sickbeard/webserve.py:4380 +#: sickbeard/webserve.py:4351 msgid "Unpacking Not Supported, disabling unpack setting" msgstr "" -#: sickbeard/webserve.py:4431 +#: sickbeard/webserve.py:4402 msgid "You tried saving an invalid normal naming config, not saving your naming settings" msgstr "" -#: sickbeard/webserve.py:4439 +#: sickbeard/webserve.py:4410 msgid "You tried saving an invalid anime naming config, not saving your naming settings" msgstr "" -#: sickbeard/webserve.py:4517 +#: sickbeard/webserve.py:4488 msgid "Config - Providers" msgstr "Konfigurasie - Voorsieners" -#: sickbeard/webserve.py:4547 +#: sickbeard/webserve.py:4518 msgid "No Provider Name specified" msgstr "Geen Voorsiener Naam gespesifiseer" -#: sickbeard/webserve.py:4549 +#: sickbeard/webserve.py:4520 msgid "No Provider Url specified" msgstr "Geen Voorsiener Url gespesifiseer" -#: sickbeard/webserve.py:4551 +#: sickbeard/webserve.py:4522 msgid "No Provider Api key specified" msgstr "Geen Voorsiener Api sleutel gespesifiseer" -#: sickbeard/webserve.py:4963 +#: sickbeard/webserve.py:4934 msgid "Config - Notifications" msgstr "" -#: sickbeard/webserve.py:5243 +#: sickbeard/webserve.py:5214 msgid "Config - Subtitles" msgstr "" -#: sickbeard/webserve.py:5308 +#: sickbeard/webserve.py:5279 msgid "Config - Anime" msgstr "" -#: sickbeard/webserve.py:5336 +#: sickbeard/webserve.py:5307 msgid "Clear Errors" msgstr "" -#: sickbeard/webserve.py:5342 +#: sickbeard/webserve.py:5313 msgid "Clear Warnings" msgstr "" -#: sickbeard/webserve.py:5348 +#: sickbeard/webserve.py:5319 msgid "Submit Errors" msgstr "" -#: sickbeard/webserve.py:5363 +#: sickbeard/webserve.py:5334 msgid "Logs & Errors" msgstr "" -#: sickbeard/webserve.py:5388 +#: sickbeard/webserve.py:5359 msgid "Log File" msgstr "" -#: sickbeard/webserve.py:5388 +#: sickbeard/webserve.py:5359 msgid "Logs" msgstr "" @@ -1383,30 +1380,166 @@ msgstr "" msgid "This is a test notification from SickRage" msgstr "" -#: gui/slick/js/core.js:481 gui/slick/js/core.js:502 gui/slick/js/core.js:524 -#: gui/slick/js/core.js:548 gui/slick/js/core.js:573 gui/slick/js/core.js:596 -#: gui/slick/js/core.js:625 gui/slick/js/core.js:645 gui/slick/js/core.js:690 -#: gui/slick/js/core.js:769 gui/slick/js/core.js:829 gui/slick/js/core.js:849 -#: gui/slick/js/core.js:879 gui/slick/js/core.js:909 gui/slick/js/core.js:969 -#: gui/slick/js/core.js:1046 gui/slick/js/core.js:1066 gui/slick/js/core.js:1085 +#: gui/slick/js/browser.js:6 +msgid "Choose Directory" +msgstr "" + +#: gui/slick/js/core.js:443 +msgid "Select log file folder location" +msgstr "" + +#: gui/slick/js/core.js:445 +msgid "Select CSS file" +msgstr "" + +#: gui/slick/js/core.js:469 +msgid "Select backup folder to save to" +msgstr "" + +#: gui/slick/js/core.js:470 +msgid "Select backup files to restore" +msgstr "" + +#: gui/slick/js/core.js:479 gui/slick/js/core.js:500 gui/slick/js/core.js:522 +#: gui/slick/js/core.js:546 gui/slick/js/core.js:571 gui/slick/js/core.js:594 +#: gui/slick/js/core.js:623 gui/slick/js/core.js:643 gui/slick/js/core.js:688 +#: gui/slick/js/core.js:767 gui/slick/js/core.js:827 gui/slick/js/core.js:847 +#: gui/slick/js/core.js:877 gui/slick/js/core.js:907 gui/slick/js/core.js:967 +#: gui/slick/js/core.js:1044 gui/slick/js/core.js:1064 gui/slick/js/core.js:1083 msgid "Please fill out the necessary fields above." msgstr "" -#: gui/slick/js/core.js:1328 gui/slick/js/core.js:1378 gui/slick/js/core.js:1427 -#: gui/slick/js/core.js:1493 +#: gui/slick/js/core.js:680 +msgid "<b>Step 1:</b> Confirm Authorization" +msgstr "" + +#: gui/slick/js/core.js:977 +msgid "Check blacklist name; the value needs to be a trakt slug" +msgstr "" + +#: gui/slick/js/core.js:1022 +msgid "You must provide a recipient email address!" +msgstr "" + +#: gui/slick/js/core.js:1107 +msgid "You didn't supply a Pushbullet api key" +msgstr "" + +#: gui/slick/js/core.js:1133 gui/slick/js/core.js:1162 +msgid "Don't forget to save your new pushbullet settings." +msgstr "" + +#: gui/slick/js/core.js:1262 +msgid "Select TV Download Directory" +msgstr "" + +#: gui/slick/js/core.js:1263 +msgid "Select Unpack Directory" +msgstr "" + +#: gui/slick/js/core.js:1326 gui/slick/js/core.js:1376 gui/slick/js/core.js:1425 +#: gui/slick/js/core.js:1491 msgid "This pattern is invalid." msgstr "" -#: gui/slick/js/core.js:1336 gui/slick/js/core.js:1386 gui/slick/js/core.js:1435 -#: gui/slick/js/core.js:1501 +#: gui/slick/js/core.js:1334 gui/slick/js/core.js:1384 gui/slick/js/core.js:1433 +#: gui/slick/js/core.js:1499 msgid "This pattern would be invalid without the folders, using it will force \"Season Folders\" on for all shows." msgstr "" -#: gui/slick/js/core.js:1344 gui/slick/js/core.js:1394 gui/slick/js/core.js:1443 -#: gui/slick/js/core.js:1509 +#: gui/slick/js/core.js:1342 gui/slick/js/core.js:1392 gui/slick/js/core.js:1441 +#: gui/slick/js/core.js:1507 msgid "This pattern is valid." msgstr "" +#: gui/slick/js/core.js:1818 +msgid "Select .nzb black hole/watch location" +msgstr "" + +#: gui/slick/js/core.js:1819 +msgid "Select .torrent black hole/watch location" +msgstr "" + +#: gui/slick/js/core.js:1820 +msgid "Select .torrent download location" +msgstr "" + +#: gui/slick/js/core.js:1900 +msgid "Minimum seeding time is" +msgstr "" + +#: gui/slick/js/core.js:1902 +msgid "URL to your uTorrent client (e.g. http://localhost:8000)" +msgstr "" + +#: gui/slick/js/core.js:1905 +msgid "Stop seeding when inactive for" +msgstr "" + +#: gui/slick/js/core.js:1911 +msgid "URL to your Transmission client (e.g. http://localhost:9091)" +msgstr "" + +#: gui/slick/js/core.js:1921 +msgid "URL to your Deluge client (e.g. http://localhost:8112)" +msgstr "" + +#: gui/slick/js/core.js:1930 +msgid "IP or Hostname of your Deluge Daemon (e.g. scgi://localhost:58846)" +msgstr "" + +#: gui/slick/js/core.js:1937 +msgid "URL to your Synology DS client (e.g. http://localhost:5000)" +msgstr "" + +#: gui/slick/js/core.js:1941 +msgid "URL to your rTorrent client (e.g. scgi://localhost:5000 <br> or https://localhost/rutorrent/plugins/httprpc/action.php)" +msgstr "" + +#: gui/slick/js/core.js:1952 +msgid "URL to your qBittorrent client (e.g. http://localhost:8080)" +msgstr "" + +#: gui/slick/js/core.js:1962 +msgid "URL to your MLDonkey (e.g. http://localhost:4080)" +msgstr "" + +#: gui/slick/js/core.js:1974 +msgid "URL to your putio client (e.g. http://localhost:8080)" +msgstr "" + +#: gui/slick/js/core.js:1975 +msgid "<a herf=\"https://app.put.io/oauth/apps/new\" target=\"_blank\"> Create a new OAuth app for put.io</a>" +msgstr "" + +#: gui/slick/js/core.js:1977 +msgid "Put.io Parent Folder" +msgstr "" + +#: gui/slick/js/core.js:1978 +msgid "Put.io OAuth Token" +msgstr "" + +#: gui/slick/js/core.js:3383 gui/slick/views/displayShow.mako:410 +msgid "Show Episodes" +msgstr "" + +#: gui/slick/js/core.js:3388 gui/slick/views/displayShow.mako:408 +msgid "Hide Episodes" +msgstr "" + +#: gui/slick/js/core.js:3396 +msgid "Select Show Location" +msgstr "" + +#: gui/slick/js/core.js:3460 +msgid "Select Unprocessed Episode Folder" +msgstr "" + +#: gui/slick/js/core.js:3790 +msgid "DELETED" +msgstr "" + #: gui/slick/js/core.js:4082 msgid "Resume updating the log on this page." msgstr "" @@ -1415,6 +1548,26 @@ msgstr "" msgid "Pause updating the log on this page." msgstr "" +#: gui/slick/js/core.js:4323 +msgid "searching {searchingFor}..." +msgstr "" + +#: gui/slick/js/core.js:4334 +msgid "search timed out, try again or try another indexer" +msgstr "" + +#: gui/slick/js/core.js:4503 +msgid "loading folders..." +msgstr "" + +#: gui/slick/js/parsers.js:7 gui/slick/js/parsers.js:8 +#: gui/slick/js/plotTooltip.js:6 gui/slick/js/sceneExceptionsTooltip.js:6 +#: gui/slick/views/inc_home_showList.mako:209 +#: gui/slick/views/inc_home_showList.mako:215 +#: gui/slick/views/inc_home_showList.mako:231 +msgid "Loading..." +msgstr "" + #: gui/slick/views/404.mako:5 msgid "You have reached this page by accident, please check the url." msgstr "" @@ -5711,14 +5864,6 @@ msgstr "" msgid "Select Columns" msgstr "" -#: gui/slick/views/displayShow.mako:408 -msgid "Hide Episodes" -msgstr "" - -#: gui/slick/views/displayShow.mako:410 -msgid "Show Episodes" -msgstr "" - #: gui/slick/views/displayShow.mako:424 msgid "NFO" msgstr "" @@ -6232,12 +6377,6 @@ msgstr "" msgid "loading" msgstr "" -#: gui/slick/views/inc_home_showList.mako:209 -#: gui/slick/views/inc_home_showList.mako:215 -#: gui/slick/views/inc_home_showList.mako:231 -msgid "Loading..." -msgstr "" - #: gui/slick/views/inc_qualityChooser.mako:31 msgid "<p><b><u>Preferred</u></b> qualities will replace those in <b><u>allowed</u></b>, even if they are lower.</p>" msgstr "" @@ -6775,6 +6914,10 @@ msgstr "Dateer KODI op" msgid "Update Emby" msgstr "Dateer Emby op" +#: gui/slick/views/layouts/main.mako:167 +msgid "Manage Torrents" +msgstr "" + #: gui/slick/views/layouts/main.mako:173 msgid "Missed Subtitle Management" msgstr "Vermisde Subtitel Beheer" diff --git a/locale/ar_SA/LC_MESSAGES/messages.json b/locale/ar_SA/LC_MESSAGES/messages.json index 961a634bad547d1bc25aa4dadd6d57d1441283c7..8fbc22ac454aa7edded89e48813738175d6cb710 100644 --- a/locale/ar_SA/LC_MESSAGES/messages.json +++ b/locale/ar_SA/LC_MESSAGES/messages.json @@ -1 +1 @@ -{"messages":{"domain":"messages","locale_data":{"messages":{"100":[null,"100"],"250":[null,"250"],"500":[null,"500"],"":{"domain":"messages","plural_forms":"nplurals=6; plural=(n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5);","lang":"ar_SA"},"Drama":[null,"دراما"],"Mystery":[null,"غموض"],"Science-Fiction":[null,"خيال علمي"],"Crime":[null,"جريمة"],"Action":[null,"حركة"],"Comedy":[null,"كوميديا"],"Thriller":[null,"إثارة"],"Animation":[null,"رسوم متحركة"],"Family":[null,"عائلي"],"Fantasy":[null,"خيال"],"Adventure":[null,"مغامرة"],"Horror":[null,"رعب"],"Film-Noir":[null,"Film-Noir"],"Sci-Fi":[null,"خيال علمي"],"Romance":[null,"رومانسي"],"Sport":[null,"رياضة"],"War":[null,"حرب"],"Biography":[null,"سيرة ذاتية"],"History":[null,"السجل"],"Music":[null,"موسيقى"],"Western":[null,"غربي"],"News":[null,"الأخبار"],"Sitcom":[null,"مسلسل كوميدي"],"Reality-TV":[null,"تلفزيون الواقع"],"Documentary":[null,"وثائقي"],"Game-Show":[null,"برنامج ألعاب"],"Musical":[null,"موسيقي"],"Talk-Show":[null,"برنامج حواري"],"Started Download":[null,"بدأ التحميل"],"Download Finished":[null,"انتهى التحميل"],"Subtitle Download Finished":[null,"انتهى تحميل الترجمة"],"SickRage Updated":[null,"تم تحديث سيكراج"],"SickRage Updated To Commit#: ":[null,"تم تحديث سيكراج الى تجديد#: "],"SickRage new login":[null,"تسجيل دخول جديد سيكراج"],"New login from IP: {0}. http://geomaplookup.net/?ip={0}":[null,"تسجيل دخول جديد من IP: {0}. http://geomaplookup.net/?ip={0}"],"Repeat":[null,"تكرار"],"Repeat (Separated)":[null,"تكرار (مفصولة)"],"Extend":[null,"تمديد"],"Extend (Limited)":[null,"تمديد (محدود)"],"Extend (Limited, E-prefixed)":[null,"تمديد (محدود، مسبوقة بحرف-E)"],"Downloaded":[null,"تم التحميل"],"Snatched":[null,"تم جلبها"],"Snatched (Proper)":[null,"تم جلبها (إصدار مصحح)"],"Failed":[null,"فشل"],"Snatched (Best)":[null,"تم جلبها (الإصدار الأفضل)"],"Archived":[null,"مؤرشفة"],"Unknown":[null,"غير معروف"],"Unaired":[null,"غير مذاع"],"Skipped":[null,"متخطى"],"Wanted":[null,"مطلوب"],"Ignored":[null,"تجاهل"],"Subtitled":[null,"مترجم"],"<No Filter>":[null,"< لا يوجد تصفية >"],"Daily Searcher":[null,"الباحث اليومي"],"Backlog":[null,"المتراكم"],"Show Updater":[null,"مُحدث المسلسلات"],"Check Version":[null,"التحقق من الإصدار"],"Show Queue":[null,"عرض قائمة الانتظار"],"Search Queue (All)":[null,"قائمة انتظار البحث (الكل)"],"Search Queue (Daily Searcher)":[null,"قائمة انتظار البحث (الباحث اليومي)"],"Search Queue (Backlog)":[null,"قائمة انتظار البحث (المتراكم)"],"Search Queue (Manual)":[null,"قائمة انتظار البحث (اليدوي)"],"Search Queue (Retry/Failed)":[null,"قائمة انتظار البحث (إعادة المحاولة/الفشل)"],"Search Queue (RSS)":[null,"قائمة انتظار البحث (RSS)"],"Find Propers":[null,"العثور على الإصدارات المصححه"],"Postprocessor":[null,""],"Find Subtitles":[null,"العثور على ترجمات"],"Trakt Checker":[null,"مدقق Trakt"],"Event":[null,"حدث"],"Error":[null,"خطأ"],"Tornado":[null,"Tornado"],"Thread":[null,"موضوع"],"Main":[null,"الرئيسية"],"Loading":[null,""],"New update found for SickRage, starting auto-updater":[null,"تحديث جديد لـ SickRage، بدء تشغيل التحديث التلقائي"],"Update was successful":[null,"تم التحديث بنجاح"],"Update failed!":[null,"فشل التحديث!"],"Backup":[null,"النسخ الاحتياطي"],"Config backup in progress...":[null,"جاري ضبط النسخ الاحتياطي..."],"Config backup successful, updating...":[null,"ضبط النسخ الاحتياطي تم بنجاح، جاري التحديث..."],"Config backup failed, aborting update":[null,"فشل ضبط النسخ الاحتياطي، تم إلغا التحديث"],"No update needed":[null,"لا يوجد حاجة للتحديث"],"Mako Error":[null,"خطأ Mako"],"Oops":[null,"عفوا"],"Wrong API key used":[null,"تم استخدام مفتاح API خاطيء"],"Login":[null,"تسجيل الدخول"],"API Key not generated":[null,"لم يتم إنشاء مفتاح API"],"API Builder":[null,"منشئ API"],"Schedule":[null,"مواعيد العرض"],"Test 1":[null,"اختبار 1"],"This is test number 1":[null,"هذا الاختبار رقم 1"],"Test 2":[null,"اختبار 2"],"This is test number 2":[null,"هذا الاختبار رقم 2"],"You're using the {branch} branch. Please use 'master' unless specifically asked":[null,"أنت تستخدم فرع {branch}. الرجاء استخدام 'الرئيسي' إلا إذا طلب على وجه التحديد"],"Invalid show parameters":[null,"متغيرات المسلسل غير صالحة"],"Invalid parameters":[null,""],"Episode couldn't be retrieved":[null,"لا يمكن العثورعلى الحلقة"],"Home":[null,"الصفحة الرئيسية"],"Show List":[null,"قائمة المسلسلات"],"Error: Unsupported Request. Send jsonp request with 'callback' variable in the query string.":[null,"خطأ: الطلب غير مدعوم. Send jsonp request with 'callback' variable in the query string."],"Success. Connected and authenticated":[null,"تم الإتصال و المصادقة بنجاح"],"Authentication failed. SABnzbd expects":[null,"فشلت المصادقة، يجب استخدام SABnzbd"],"as authentication method":[null,"كطريقة مصادقة"],"Unable to connect to host":[null,"غير قادر على الاتصال بالمضيف"],"SMS sent successfully":[null,"تم إرسالة رسالة قصيرة بنجاح"],"Problem sending SMS: {message}":[null,"مشكلة عند إرسال الرسائل القصيرة: {message}"],"Telegram notification succeeded. Check your Telegram clients to make sure it worked":[null,"تم إرسال إشعار تيليغرام بنجاح. تحقق من برنامج تيليغرام الخاص بك للتأكد من وصول الإشعار"],"Error sending Telegram notification: {message}":[null,"خطأ في إرسال إشعار لبرنامج تيليغرام: {message}"],"join notification succeeded. Check your join clients to make sure it worked":[null,"تم إرسال إشعار join بنجاح. تحقق من join الخاص بك للتأكد من وصول الإشعار"],"Error sending join notification: {message}":[null,"خطأ في إرسال إشعار لبرنامج join ؛: {message}"]," with password":[null," مع كلمة المرور"],"Registered and Tested growl successfully {growl_host}":[null,"تم التسجيل و التأكد growl بنجاح {growl_host}"],"Registration and Testing of growl failed {growl_host}":[null,"فشل التسجيل و التأكد من growl بنجاح {growl_host}"],"Test prowl notice sent successfully":[null,"تم التحقق من تجربة ارسال إشعار prowl بنجاح"],"Test prowl notice failed":[null,"فشل التحقق من تجربة إرسال إشعار prowl"],"Boxcar2 notification succeeded. Check your Boxcar2 clients to make sure it worked":[null,"تم إرسال إشعار Boxcar2 بنجاح. تحقق من Boxcar2 الخاص بك للتأكد من وصول الإشعار"],"Error sending Boxcar2 notification":[null,"خطأ في إرسال إشعار Boxcar2"],"Pushover notification succeeded. Check your Pushover clients to make sure it worked":[null,"تم إرسال إشعار Pushover بنجاح. تحقق من Pushover الخاص بك للتأكد من وصول الإشعار"],"Error sending Pushover notification":[null,"خطأ في إرسال إشعار Pushover"],"Key verification successful":[null,"تم التحقق من المفتاح بنجاح"],"Unable to verify key":[null,"غير قادر على التحقق من المفتاح"],"Tweet successful, check your twitter to make sure it worked":[null,"تم إرسال التغريدة بنجاح. تحقق من تويتر الخاص بك للتأكد من وصول التغريدة"],"Error sending tweet":[null,"خطأ في إرسال التغريدة"],"Please enter a valid account sid":[null,""],"Please enter a valid auth token":[null,""],"Please enter a valid phone sid":[null,""],"Please format the phone number as \"+1-###-###-####\"":[null,""],"Authorization successful and number ownership verified":[null,""],"Error sending sms":[null,"خطأ في إرسال الرسائل القصيرة"],"Slack message successful":[null,""],"Slack message failed":[null,""],"Discord message successful":[null,""],"Discord message failed":[null,""],"Test KODI notice sent successfully to {kodi_host}":[null,"تم تجربة إرسال إشعار لبرنامج KODI إلى {kodi_host} بنجاح"],"Test KODI notice failed to {kodi_host}":[null,"فشل تجربة إرسال إشعار لبرنامج KODI إلى {kodi_host}"],"Successful test notice sent to Plex Home Theater ... {plex_clients}":[null,"تم تجربة إرسال إشعار لبرنامج Plex Home Theater بنجاح... {plex_clients}"],"Test failed for Plex Home Theater ... {plex_clients}":[null,"تجربة برنامج Plex Home Theater فشلت... {plex_clients}"],"Tested Plex Home Theater(s)":[null,"سيرفرات Plex Home Theater المجربة بنجاح"],"Successful test of Plex Media Server(s) ... {plex_servers}":[null,"تم تجربة Plex Media Server بنجاح... {plex_servers}"],"Test failed, No Plex Media Server host specified":[null,"تجربة Plex Media Server فشلت، لم يتم تحديد عنوان المضيف"],"Test failed for Plex Media Server(s) ... {plex_servers}":[null,"تجربة Plex Media Server فشلت... {plex_servers}"],"Tested Plex Media Server host(s)":[null,"سيرفرات Plex Media Server المجربة بنجاح"],"Tried sending desktop notification via libnotify":[null,"محاولة إرسال إشعار سطح المكتب عن طريق libnotify"],"Test notice sent successfully to {emby_host}":[null,"تم تجربة إرسال الإشعار بنجاح إلى {emby_host}"],"Test notice failed to {emby_host}":[null,"فشل تجربة إرسال الإشعار إلى {emby_host}"],"Successfully started the scan update":[null,"بدأ البحث عن التحديث بنجاح"],"Test failed to start the scan update":[null,"فشل بدأ البحث عن التحديث"],"Test notice sent successfully to {nmj2_host}":[null,"تم تجربة إرسال الإشعار بنجاح إلى {nmj2_host}"],"Test notice failed to {nmj2_host}":[null,"فشل تجربة إرسال الإشعار إلى {nmj2_host}"],"Trakt Authorized":[null,"Trakt مفوض"],"Trakt Not Authorized!":[null,"Trakt غير مفوض!"],"Test email sent successfully! Check inbox.":[null,"تم إرسال بريد إليكتروني بنجاح! تحقق من صندوق الوارد."],"ERROR: {last_error}":[null,"خطأ: {last_error}"],"Test NMA notice sent successfully":[null,"تم التحقق من تجربة ارسال إشعار NMA بنجاح"],"Test NMA notice failed":[null,"فشل تجربة إرسال إشعار لـ NMA"],"Pushalot notification succeeded. Check your Pushalot clients to make sure it worked":[null,"تم إرسال إشعار Pushalot بنجاح. تحقق من Pushalot الخاص بك للتأكد من وصول الإشعار"],"Error sending Pushalot notification":[null,"خطأ في إرسال إشعار Pushalot"],"Pushbullet notification succeeded. Check your device to make sure it worked":[null,"تم إرسال إشعار Pushbullet بنجاح. تحقق من Pushbullet الخاص بك للتأكد من وصول الإشعار"],"Error sending Pushbullet notification":[null,"خطأ في إرسال إشعار Pushbullet"],"Status":[null,"الحالة"],"Restarting SickRage":[null,"إعادة تشغيل سيكراج"],"Update Failed":[null,"فشل التحديث"],"Update wasn't successful, not restarting. Check your log for more information.":[null,"التحديث لم يكن ناجحاً، لن اعيد التشغيل. تحقق من السجل الخاص بك للحصول على مزيد من المعلومات."],"Checking out branch":[null,"التحقق من الفرع"],"Already on branch":[null,"موجود مسبقا في الفرع"],"Invalid show ID: {show}":[null,"رقم معرف المسلسل غير صحيح: {show}"],"Show not in show list":[null,"المسلسل غير موجود في قائمة المسلسلات"],"Edit":[null,"تحرير"],"This show is in the process of being downloaded - the info below is incomplete.":[null,"جاري تحميل هذا المسلسل - المعلومات أدناه غير مكتملة."],"The information on this page is in the process of being updated.":[null,"جاري تحديث المعلومات على هذه الصفحة."],"The episodes below are currently being refreshed from disk":[null,"جاري تحديث الحلقات أدناه من القرص"],"Currently downloading subtitles for this show":[null,"جاري تحميل ترجمات لهذا المسلسل"],"This show is queued to be refreshed.":[null,"هذا المسلسل على قائمة الانتظار للتحديث."],"This show is queued and awaiting an update.":[null,"هذا المسلسل على قائمة الانتظار حتى يتم تحديثه."],"This show is queued and awaiting subtitles download.":[null,"هذا المسلسل على قائمة الانتظار حتى يتم تحميل الترجمات."],"Resume":[null,"استئناف"],"Pause":[null,"إيقاف مؤقت"],"Remove":[null,"إزالة"],"Re-scan files":[null,"إعادة تفحص الملفات"],"Force Full Update":[null,"إجبار التحديث الكامل"],"Update show in KODI":[null,"تحديث المسلسل في برنامج KODI"],"Update show in Emby":[null,"تحديث المسلسل في برنامج Emby"],"Hide specials":[null,""],"Show specials":[null,""],"Preview Rename":[null,"معاينة التسمية"],"Download Subtitles":[null,"تحميل الترجمة"],"No scene exceptions":[null,"لا توجد (استثناءات للأسماء)"],"Invalid show ID":[null,"رقم معرف المسلسل غير صحيح"],"Unable to find the specified show":[null,"غير قادر على العثور على المسلسل المحدد"],"Unable to retreive Fansub Groups from AniDB.":[null,"غير قادر على استرداد مجموعات Fansub من AniDB."],"Edit Show":[null,"تعديل العرض"],"Unable to refresh this show: {error}":[null,"غير قادر على تحديث هذا المسلسل: {error}"],"New location <tt>{location}</tt> does not exist":[null,"موقع جديد <tt>{location}</tt> غير موجود"],"Unable to update show: {error}":[null,"غير قادر على تحديث المسلسل: {error}"],"Unable to force an update on scene exceptions of the show.":[null,"غير قادر على فرض التحديث على (استثناءات الأسماء) للمسلسل."],"Unable to force an update on scene numbering of the show.":[null,"غير قادر على فرض التحديث على (استثناءات أرقام الحلقات) للمسلسل."],"{num_errors:d} error{plural} while saving changes:":[null,"{num_errors:d} خطأ {plural} أثناء حفظ التغييرات:"],"{show_name} has been {paused_resumed}":[null,"{show_name} قد تم{paused_resumed}"],"resumed":[null,"استأنفت"],"paused":[null,"توقف مؤقت"],"{show_name} has been {deleted_trashed} {was_deleted}":[null,"{show_name} قد تم {deleted_trashed} {was_deleted}"],"deleted":[null,"محذوف"],"trashed":[null,"مهمل"],"(media untouched)":[null,"(media untouched)"],"(with all related media)":[null,"(مع كل الوسائط المتعلقة)"],"Unable to refresh this show.":[null,"غير قادر على تحديث هذا المسلسل."],"Unable to update this show.":[null,"غير قادر على تحديث هذا المسلسل."],"Library update command sent to KODI host(s)): {kodi_hosts}":[null,"تم إرسال أمرالتحديث إلى مضيفين برنامج KODI؛ {kodi_hosts}"],"Unable to contact one or more KODI host(s)): {kodi_hosts}":[null,"غير قادر على الاتصال بواحد أو أكثر من مضيفين برنامج KODI؛ {kodi_hosts}"],"Library update command sent to Plex Media Server host: {plex_server}":[null,"تم إرسال أمرالتحديث إلى مضيف برنامج Plex Media Server؛ {plex_server}"],"Unable to contact Plex Media Server host: {plex_server}":[null,"غير قادر على الاتصال بواحد أو أكثر من مضيف برنامج Plex Media Server؛ {plex_server}"],"Library update command sent to Emby host: {emby_host}":[null,"تم إرسال أمرالتحديث إلى مضيف برنامج Emby؛ {emby_host}"],"Unable to contact Emby host: {emby_host}":[null,"غير قادر على الاتصال بواحد أو أكثر من مضيف برنامج Emby؛ {emby_host}"],"You must specify a show and at least one episode":[null,"يجب عليك تحديد مسلسل وحلقة واحدة على الأقل"],"Invalid status":[null,"حالة غير صالحة"],"Backlog was automatically started for the following seasons of <b>{show_name}</b>":[null,"البحث عن المواسم المتراكمة بدأ تلقائياً لـ <b>{show_name}</b>"],"Season":[null,"الموسم"],"Backlog started":[null,"بدأ البحث المتراكم"],"Retrying Search was automatically started for the following season of <b>{show_name}</b>":[null,"إعادة محاولة البحث تلقائياً بدأت في الموسم التالي من <b>{show_name}</b>"],"Retry Search started":[null,"بدأت إعادة البحث"],"You must specify a show":[null,"يجب عليك تحديد مسلسل"],"Can't rename episodes when the show dir is missing.":[null,"لا يمكن إعادة تسمية الحلقات اذا كان دليل ملفات المسلسل مفقود."],"New subtitles downloaded: {new_subtitle_languages}":[null,"تم تحميل ترجمات جديدة: {new_subtitle_languages}"],"No subtitles downloaded":[null,"لم يتم تحميل الترجمة"],"IRC":[null,"IRC"],"Could not load news from the repo. [Click here for news.md])({news_url})":[null,"تعذر تحميل الأخبار من المصدر. [انقر هنا للأخبار]{news_url}"],"The was a problem connecting to github, please refresh and try again":[null,"كانت هناك مشكلة تتعلق بالاتصال بـ github، الرجاء التحديث ثم حاول مرة أخرى"],"Could not load changes from the repo. [Click here for CHANGES.md]({changes_url})":[null,"تعذر تحميل التغييرات من المصدر. [انقر هنا للتغييرات]{changes_url}"],"Changelog":[null,"سجل التغييرات"],"Post Processing":[null,"المعالجة"],"Add Shows":[null,"إضافة مسلسلات"],"No folders selected.":[null,"لم يتم تحديد أي مجلد."],"New Show":[null,"مسلسل جديد"],"Trending Shows":[null,"مسلسلات ساخنة"],"Popular Shows":[null,"مسلسلات مشهورة"],"Most Anticipated Shows":[null,"مسلسلات الأكثر إنتظارا"],"Most Collected Shows":[null,""],"Most Watched Shows":[null,""],"Most Played Shows":[null,""],"Recommended Shows":[null,""],"New Shows":[null,"مسلسلات جديدة"],"Season Premieres":[null,"بدايات الموسم"],"Existing Show":[null,"مسلسل موجود"],"No root directories setup, please go back and add one.":[null,"لم يتم إضافة مجلدات رئيسية، الرجاء الرجوع و إضافة مجلد."],"Show added":[null,"تم إضافة المسلسل"],"Adding the specified show {show_name}":[null,"إضافة المسلسل المحدد {show_name}"],"Missing params, no Indexer ID or folder: {show_to_add} and {root_dir}/{show_path}":[null,"المعاملات مفقودة، لايوجد رقم معرف المفهرس أو المجلد: {show_to_add} و {root_dir} / {show_path}"],"Unknown error. Unable to add show due to problem with show selection.":[null,"خطأ غير معروف. غير قادر على إضافة المسلسل بسبب مشكلة في تحديد المسلسل."],"Unable to add show":[null,"غير قادر على اضافة المسلسل"],"Folder {show_dir} exists already":[null,"مجلد {show_dir} موجود مسبقا"],"Unable to create the folder {show_dir}, can't add the show":[null,"غير قادر على إنشاء المجلد {show_dir}، لا يمكن إضافة المسلسل"],"Adding the specified show into {show_dir}":[null,"إضافة المسلسل المحدد إلى {show_dir}"],"Shows Added":[null,"تم إضافة المسلسلات"],"Automatically added {num_shows} from their existing metadata files":[null,"إضافة تلقائية لـ {num_shows} مسلسل من بياناتها التعريفية الموجودة"],"Mass Update":[null,"تحديث شامل"],"Episode Overview":[null,"نظرة عامة على الحلقة"],"Missing Subtitles":[null,"ترجمات مفقودة"],"Backlog Overview":[null,"نظرة عامة على السجل التراكمي"],"Mass Edit":[null,"تعديل شامل"],"Unable to update show: {excption_format}":[null,"غير قادر على تحديث المسلسل: {excption_format}"],"Unable to refresh show {show_name}: {excption_format}":[null,"غير قادر على تحديث المسلسل {show_name}؛ {excption_format}"],"Errors encountered":[null,"صادف وجود أخطاء"],"Updates":[null,"التحديثات"],"Refreshes":[null,"يقوم بتحديث"],"Renames":[null,"إعادة تسمية"],"Subtitles":[null,"ترجمة"],"The following actions were queued":[null,"الإجراءات التالية في قائمة الانتظار"],"For best results please set the Download Station alias as":[null,"للحصول على أفضل النتائج يرجى تعيين اسم مستعار لـ Download Station"],"You can check this setting in the Synology DSM":[null,"يمكنك التحقق من هذا الإعداد في Synology DSM"],"Control Panel":[null,"لوحة التحكم"],"Application Portal":[null,"بوابة التطبيقات"],"Make sure you allow DSM to be embedded with iFrames too in":[null,"تأكد من السماح لـ DSM بأن يكون مضمّن في iFrames أيضاً في"],"DSM Settings":[null,"إعدادات DSM"],"Security":[null,"الأمان"],"Manage Torrents":[null,"إدارة التورنت"],"Failed Downloads":[null,"تنزيلات فشلت"],"Manage Searches":[null,"إدارة عمليات البحث"],"Backlog search started":[null,"بدأ البحث عن حلقات متراكمة"],"Daily search started":[null,"بدأ البحث اليومي"],"Find propers search started":[null,"بدأ البحث عن النسخ المصححه"],"Subtitle search started":[null,"بدأ البحث عن الترجمة"],"Remove Selected":[null,""],"Clear History":[null,"مسح المحفوظات"],"Trim History":[null,"تخفيض حجم سجل المحفوظات"],"Selected history entries removed":[null,""],"History cleared":[null,"تم مسح المحفوظات"],"Removed history entries older than 30 days":[null,"إزالة السجلات الأقدم من 30 يوما"],"General":[null,"عام"],"Backup/Restore":[null,"النسخ الاحتياطي/الاستعادة"],"Search Settings":[null,"إعدادات البحث"],"Search Providers":[null,"مقدمي خدمة البحث"],"Subtitles Settings":[null,"إعدادات الترجمة"],"Notifications":[null,"الإشعارات"],"Anime":[null,"أنمي"],"SickRage Configuration":[null,"ضبط سيكراج"],"Config - Shares":[null,""],"Windows Shares Configuration":[null,""],"Saved Shares":[null,""],"Your Windows share settings have been saved":[null,""],"Config - General":[null,"ضبط - عام"],"General Configuration":[null,"ضبط عام"],"Saved Defaults":[null,"تم حفظ الإعدادات الافتراضية"],"Your \"add show\" defaults have been set to your current selections.":[null,""],"Unable to create directory {directory}, log directory not changed.":[null,"غير قادر على إنشاء الدليل {directory}، دليل السجل لم يتغير."],"Unable to create directory {directory}, https cert directory not changed.":[null,"غير قادر على إنشاء الدليل {directory}، دليل شهادة https لم يتغير."],"Unable to create directory {directory}, https key directory not changed.":[null,"غير قادر على إنشاء الدليل {directory}، دليل مفتاح https لم يتغير."],"Error(s) Saving Configuration":[null,"خطأ (أخطاء) حفظ الضبط"],"Configuration Saved":[null,"تم حفظ الضبط"],"Config - Backup/Restore":[null,"ضبط - نسخ الاحتياط/الاستعادة"],"Config - Episode Search":[null,"الضبط - البحث عن الحلقة"],"Config - Post Processing":[null,"الضبط - المعالجة"],"Unpacking Not Supported, disabling unpack setting":[null,"فك الضغط غير مدعوم، يتم تعطيل اعداد فك الضغط"],"You tried saving an invalid normal naming config, not saving your naming settings":[null,""],"You tried saving an invalid anime naming config, not saving your naming settings":[null,"لقد حاولت حفظ إعدادات تسمية أنمي غير صالحة، لم يتم حفظ إعدادات التسمية"],"Config - Providers":[null,"التكوين - مقدمي الخدمات"],"No Provider Name specified":[null,"لم يتم تحديد اسم مقدم الخدمة"],"No Provider Url specified":[null,"لم يتم تحديدعنوان مقدم الخدمة"],"No Provider Api key specified":[null,"لم يتم تحديد مفاح Api لمقدم الخدمة"],"Config - Notifications":[null,"الضبط - الإشعارات"],"Config - Subtitles":[null,"الضبط - الترجمة"],"Config - Anime":[null,"الضبط - أنيمي"],"Clear Errors":[null,"مسح الأخطاء"],"Clear Warnings":[null,"مسح التحذيرات"],"Submit Errors":[null,"إرسال الأخطاء"],"Logs & Errors":[null,"السجلات & الأخطاء"],"Log File":[null,"ملف السجل"],"Logs":[null,"سجلات"],"This is a test notification from SickRage":[null,""],"Please fill out the necessary fields above.":[null,""],"This pattern is invalid.":[null,""],"This pattern would be invalid without the folders, using it will force \"Season Folders\" on for all shows.":[null,""],"This pattern is valid.":[null,""],"Resume updating the log on this page.":[null,""],"Pause updating the log on this page.":[null,""],"You have reached this page by accident, please check the url.":[null,"لقد وصلت إلى هذه الصفحة بالخطأ، الرجاء التحقق من العنوان."],"A mako error has occured.<br>\n If this happened during an update a simple page refresh may be the solution.<br>\n Mako errors that happen during updates may be a one time error if there were significant ui changes.":[null,"لقد حدث خطأ mako؛<br>؛ \nهذا حدث أثناء التحديث، تحديث بسيطة في للصفحة قد يكون الحل.<br>؛\nالأخطاء التي تحدث أثناء التحديثات قد تكون مرة واحدة إذا كانت هناك تغييرات كبيرة في واجهة المستخدم."],"Show/Hide Error":[null,"إظهار/إخفاء الخطأ"],"Add New Show":[null,"إضافة مسلسل جديد"],"For shows that you haven't downloaded yet, this option finds a show on theTVDB.com, creates a directory for it's episodes, and adds it to SickRage.":[null,"للمسلسلات اللتي لم تقم بتحميلها بعد، هذا الخيار يبحث عن المسلسل في موقع theTVDB.com، و ينشيء مجلد خاص بحلقاته، ويضيفه إلى SickRage."],"Add From Trakt Lists":[null,"إضافة من Trakt Lists"],"For shows that you haven't downloaded yet, this option lets you choose from a show from one of the Trakt lists to add to SickRage.":[null,"للمسلسلات اللتي لم تقم بتحميلها حتى الآن، هذا الخيار يتيح لك اختيار المسلسل من إحدى قوائم Trakt وإضافته إلى SickRage."],"Add From IMDB's Popular Shows":[null,"إضافة مسلسلات مشهورة في موقع IMDB"],"View IMDB's list of the most popular shows. This feature uses IMDB's MOVIEMeter algorithm to identify popular TV Series.":[null,"عرض قائمة IMDB للمسلسلات الأكثر شعبية. تستخدم هذه الميزة خوارزمية MOVIEMeter في IMDB لتحديد شعبية المسلسل التلفزيوني."],"Add Existing Shows":[null,"إضافة مسلسلات موجود"],"Use this option to add shows that already have a folder created on your hard drive. SickRage will scan your existing metadata/episodes and add the show accordingly.":[null,"استخدم هذا الخيار لإضافة مسلسلات لديها بالفعل مجلد تم إنشاؤه على محرك القرص الثابت. SickRage سوف يبحث في البيانات التعريفية/الحلقات الخاص بك الموجودة وإضافة المسلسل وفقا لذلك."],"Add Existing Show":[null,"إضافة مسلسل موجود"],"Manage Directories":[null,"إدارة المجلدات"],"Customize Options":[null,"تخصيص الخيارات"],"SickRage can add existing shows, using the current options, by using locally stored NFO/XML metadata to eliminate user interaction. If you would rather have SickRage prompt you to customize each show, then use the checkbox below.":[null,"يمكن لـ SickRage إضافة مسلسلات موجوده لديك، باستخدام الخيارات الحالية، و استخدام بيانات التعريف NFO/XML دون الحاجة إلى تدخل المستخدم. \n إذا كنت بدلاً من ذلك تريد من SickRage أن يطلب منك تخصيص كل مسلسل، استخدم خانة الاختيار أدناه."],"Prompt me to set settings for each show":[null,"أظهر لي إعدادات كل مسلسل على حده"],"Displaying folders within these directories which aren't already added to SickRage":[null,"عرض المجلدات الموجودة في هذه المسارات التي لم يتم إضافتها بالفعل إلى SickRage"],"Submit":[null,"إرسال"],"Find a show on theTVDB":[null,"البحث عن مسلسل في موقع theTVDB"],"Show retrieved from existing metadata":[null,"تم استرجاع المسلسل من بيانات التعريف الموجودة"],"All Indexers":[null,"جميع المفهرسات"],"Search":[null,"بحث"],"This will only affect the language of the retrieved metadata file contents and episode filenames.":[null,"هذا يؤثرفقط على لغة ملف محتويات بيانات التعريف وأسماء الحلقات."],"This <b>DOES NOT</b> allow SickRage to download non-english TV episodes!":[null,"هذا <b>لا</b> يسمح لـ SickRage بتحميل الحلقات التلفزيونية غير الإنجليزية!"],"Pick the parent folder":[null,"اختيار المجلد الرئيسي"],"Pre-chosen Destination Folder":[null,"المجلد الوجهة الذي اخترته مسبقاً"],"Customize options":[null,"تخصيص الخيارات"],"Add Show":[null,"إضافة مسلسل"],"Skip Show":[null,"تخطي المسلسل"],"Sort By":[null,"ترتيب حسب"],"Name":[null,"الإسم"],"Original":[null,"المنشأ"],"Votes":[null,"التصويت"],"Rating":[null,"التقييم"],"Rating > Votes":[null,"التقييم > التصويت"],"Sort Order":[null,"ترتيب الفرز"],"Asc":[null,"تصاعدي"],"Desc":[null,"تنازلي"],"Fetching of IMDB Data failed. Are you online?":[null,"فشل في إحضار بيانات IMDB. هل أنت متصل بالإنترنت؟"],"Exception":[null,"استثناء"],"Select Trakt List":[null,"اختر قائمة Trakt"],"Most Anticipated":[null,"الأكثر توقع"],"Trending":[null,"شائع"],"Popular":[null,"شائع"],"Most Watched":[null,"الأكثر مشاهدة"],"Most Played":[null,"الأكثر تشغيلاً"],"Most Collected":[null,"الأكثر تجميعا"],"Recommended":[null,"ننصح به"],"Toggle navigation":[null,"تفعيل التنقل"],"Profile":[null,"الملفّ الشخصيّ"],"JSONP":[null,"JSONP"],"Back to SickRage":[null,"العودة إلى SickRage"],"Parameters":[null,"المتغيرات"],"Required":[null,"مطلوب"],"Description":[null,"الوصف"],"Type":[null,"النوع"],"Default value":[null,"القيمة الافتراضية"],"Allowed values":[null,"القيم المسموح بها"],"Playground":[null,"Playground"],"Clear":[null,"مسح"],"Yes":[null,"نعم"],"No":[null,"لا"],"season":[null,"الموسم"],"episode":[null,"الحلقة"],"Python Version":[null,"نسخة Python"],"SSL Version":[null,"نسخة SSL"],"OS":[null,"نظام التشغيل"],"Locale":[null,"الإعدادات المحلية"],"User":[null,"مستخدم"],"Program Folder":[null,"مجلد البرنامج"],"Config File":[null,"ملف الضبط"],"Database File":[null,"ملف قاعدة البيانات"],"Cache Folder":[null,"مجلد التخزين المؤقت"],"Log Folder":[null,"مجلد السجل"],"Arguments":[null,"Arguments"],"Web Root":[null,"الشبكة الرئيسية"],"Website":[null,"الموقع"],"Wiki":[null,"ويكي"],"Source":[null,"المصدر"],"IRC Chat":[null,"دردشة IRC"],"AnimeDB Settings":[null,"إعدادات AnimeDB"],"Look & Feel":[null,"الشكل ;amp& المظهر"],"AniDB is non-profit database of anime information that is freely open to the public":[null,"AniDB هو قاعدة بيانات غير هادفة للربح لمعلومات الأنمي وهي مفتوحة للجمهور"],"Enable":[null,"تفعيل"],"should SickRage use data from AniDB?":[null,"هل يستخدام SickRage البيانات من AniDB؟"],"AniDB Username":[null,"اسم المستخدم في AniDB"],"username of your AniDB account":[null,"اسم المستخدم للحساب الخاص بك في AniDB"],"AniDB Password":[null,"كلمة المرور في AniDB"],"password of your AniDB account":[null,"كلمة المرور للحساب الخاص بك في AniDB"],"AniDB MyList":[null,"MyList في AniDB"],"do you want to add the PostProcessed episodes to the MyList?":[null,"هل تريد إضافة الحلقات المعالجة إلى MyList؟"],"Look and Feel":[null,"الشكل و المظهر"],"How should the anime functions show and behave.":[null,"كيف ينبغي أن تظهر مهام الأنيمي وتتصرف."],"Split show lists":[null,"تقسيم قوائم المسلسل"],"separate anime and normal shows in groups":[null,"فصل مسلسلات الأنمي و المسلسلات العادية في مجموعات"],"Split in tabs":[null,""],"use tabs for when splitting show lists":[null,""],"Restore":[null,"الإستعادة"],"Backup your main database file and config.":[null,"نسخ احتياطي لملف قاعدة البيانات الرئيسية و الضبط الخاصة بك."],"Select the folder you wish to save your backup file to":[null,"حدد المجلد اللذي تريد حفظ ملف النسخ الاحتياطي فيه"],"Restore your main database file and config.":[null,"استعادة ملف قاعدة البيانات الرئيسية و الضبط الخاصة بك."],"Select the backup file you wish to restore":[null,"حدد ملف النسخة الاحتياطية التي ترغب في استعادته"],"Misc":[null,"متفرقات"],"Interface":[null,"واجهة"],"Advanced Settings":[null,"الإعدادات المتقدمة"],"Startup options. Indexer options. Log and show file locations.":[null,"خيارات بدء التشغيل. خيارات المفهرس. أماكن حفظ السجل و ملفات المسلسلات."],"Some options may require a manual restart to take effect.":[null,"قد تتطلب بعض الخيارات إعادة تشغيل يدوي لتصبح فعالة."],"Default Indexer Language":[null,"اللغة الافتراضية للمفهرس"],"for adding shows and metadata providers":[null,"لإضافة مسلسلات وموفري بيانات التعريف"],"Launch browser":[null,"تشغيل المتصفح"],"open the SickRage home page on startup":[null,"فتح الصفحة الرئيسية لـ SickRage في بدء التشغيل"],"Initial page":[null,"صفحة البداية"],"Shows":[null,"مسلسلات"],"when launching SickRage interface":[null,"عند بدء تشغيل واجهة SickRage"],"Choose hour to update shows":[null,"اختر ساعة لتحديث المسلسلات"],"with information such as next air dates, show ended, etc. Use 15 for 3pm, 4 for 4am etc.":[null,"مع معلومات مثل تواريخ عرض الحلقات القادمة، نهاية المسلسلات، إلخ. استخدم مثلا 15 لـ 3 مساء, 4 لـ 4 صباحا إلخ."],"note":[null,"ملاحظة"],"minutes are randomized each time SickRage is started":[null,"الدقائق عشوائية في كل مرة يتم فيها بدء تشغيل SickRage"],"Send to trash for actions":[null,"إرسال إلى سلة المهملات لإتخاذ إجراءات"],"when using show \"Remove\" and delete files":[null,"عند استخدام عرض \"إزالة\" وحذف الملفات"],"on scheduled deletes of the oldest log files":[null,"حذف ملفات السجل الأقدم في الوقت المحدد"],"selected actions use trash (recycle bin) instead of the default permanent delete":[null,"الإجراءات المحددة تستخدام سلة المهملات (سلة المحذوفات) بدلاً من الحذف الدائم"],"Log file folder location":[null,"موقع مجلد ملف السجل"],"Number of Log files saved":[null,"عدد ملفات السجلات المحفوظة"],"number of log files saved when rotating logs (default: 5) (REQUIRES RESTART)":[null,"عدد ملفات السجلات المحفوظة عند تدوير السجلات (الافتراضي: 5) (يتطلب إعادة التشغيل)"],"Size of Log files saved":[null,"حجم ملفات السجلات المحفوظة"],"maximum size in MB of the log file (default: 1MB) (REQUIRES RESTART)":[null,"الحجم الأقصى بالميغا بايت لملف السجل (الافتراضي: 1 ميغابايت) (يتطلب إعادة التشغيل)"],"Use initial indexer set to":[null,"المفهرس المبدئي هو"],"as the default selection when adding new shows":[null,"كإختيار افتراضي عند إضافة مسلسلات جديدة"],"Timeout show indexer at":[null,"تعليق فهرسة المسلسل عند"],"seconds of inactivity when finding new shows (default:20)":[null,"ثواني سكون عند العثور على مسلسلات جديدة (الافتراضي: 20)"],"Show root directories":[null,"إظهار المجلدات الرئيسية"],"where the files of shows are located":[null,"حيث توجد ملفات المسلسلات"],"Save Changes":[null,"حفظ التغييرات"],"Options for software updates.":[null,"خيارات للحصول على تحديثات البرنامج."],"Check software updates":[null,"التحقق من تحديثات البرنامج"],"and display notifications when updates are available. Checks are run on startup and at the frequency set below*":[null,"وعرض إعلامات عند توفر تحديثات. \n التحقق يعمل عند بدء التشغيل وعند التكرار الموضح أدناه*"],"Automatically update":[null,"تحديث تلقائي"],"fetch and install software updates. Updates are run on startup and in the background at the frequency set below*":[null,"جلب وتثبيت تحديثات البرنامج. \n التحديثات يتم تشغيلها عند بدء التشغيل وفي الخلفية بناءً على التكرار الموضح أدناه*"],"Check the server every*":[null,"تحقق من الخادم كل*"],"hours for software updates (default:1)":[null,"ساعات لتحديثات البرنامج (الافتراضي: 1)"],"Notify on software update":[null,"إشعار عند تحديث البرنامج"],"send a message to all enabled notifiers when SickRage has been updated":[null,"إرسال رسالة إلى جميع مرسلي الإشعارات المفعلين عندما يتم تحديث SickRage"],"User Interface":[null,"واجهة المستخدم"],"Options for visual appearance.":[null,"خيارات المظهر."],"Interface Language":[null,"لغة الواجهة"],"System Language":[null,"لغة النظام"],"for appearance to take effect, save then refresh your browser":[null,"لكي يتم تفعيل المظهر، احفظ، ثم قم بتحديث المستعرض الخاص بك"],"Display theme":[null,"سمة العرض"],"Dark":[null,"غامق"],"Light":[null,"فاتح"],"Use a background image":[null,"استخدام صورة كخلفية"],"use a custom image as background for SickRage":[null,"استخدام صورة مخصصة كخلفية لـ SickRage"],"Background Path":[null,"مسار الخلفية"],"Path to the background image":[null,"المسار إلى صورة الخلفية"],"Show fanart in the background":[null,"إظهار خلفيات المسلسل في الخلفية"],"on the show summary page":[null,"في صفحة ملخص المسلسل"],"Fanart transparency":[null,"شفافية خلفيات المسلسل"],"transparency of the fanart in the background":[null,"شفافية خلفية المسلسل في الخلفية"],"Use a custom stylesheet file":[null,""],"use a custom .css file to style SickRage (for advanced users)":[null,""],"Stylesheet File Path":[null,""],"Path to the stylesheet (.css) file":[null,""],"Show all seasons":[null,"إظهار جميع المواسم"],"Sort with \"The\", \"A\", \"An\"":[null,"الفرز مع \"The\", \"A\", \"An\""],"include articles (\"The\", \"A\", \"An\") when sorting show lists":[null,"شمول (\"The\", \"A\", \"An\") عند ترتيب قوائم المسلسل"],"Missed episodes range":[null,"نطاق الحلقات المفقودة"],"set the range in days of the missed episodes in the Schedule page":[null,"تعيين النطاق في أيام للحلقات المفقودة في صفحة الجدول الزمني"],"Display fuzzy dates":[null,"عرض التواريخ الغامضة"],"move absolute dates into tooltips and display e.g. \"Last Thu\", \"On Tue\"":[null,"نقل التواريخ المطلقة في تلميحات الأدوات و العرض مثل \"آخر خميس\"، \"الثلاثاء\""],"Trim zero padding":[null,"ازالة zero padding"],"remove the leading number \"0\" shown on hour of day, and date of month":[null,"إزالة الرقم \"0\" في بدايات ساعات النهار، وتاريخ الشهر"],"Date style":[null,"نمط التاريخ"],"Use System Default":[null,"استخدام الإعداد الافتراضي للنظام"],"Time style":[null,"نمط الوقت"],"seconds are only shown on the History page":[null,"الثواني تظهر فقط في صفحة المحفوظات"],"Timezone":[null,"المنطقة الزمنية"],"Local":[null,"محلي"],"Network":[null,"الشبكة"],"display dates and times in either your timezone or the shows network timezone":[null,"عرض التواريخ والأوقات إما للمنطقة الزمنية الخاصة بك أو للمنطقة الزمنية للشبكة المعروض عليها المسلسل"],"use local timezone to start searching for episodes minutes after show ends (depends on your dailysearch frequency)":[null,"استخدام التوقيت المحلي في بدء البحث عن الحلقات بعد انتهاء العرض بدقائق (يعتمد على تكرار البحث اليومي)"],"Download url":[null,"عنوان التحميل"],"URL where the shows can be downloaded.":[null,"عنوان URL اللذي يمكن تحميل المسلسلات منه."],"Web Interface":[null,"واجهة ويب"],"it is recommended that you enable a username and password to secure SickRage from being tampered with remotely.":[null,"من المستحسن أن تقوم بتمكين اسم مستخدم وكلمة مرور لتأمين SickRage من العبث عن بعد."],"these options require a manual restart to take effect.":[null,"هذه الخيارات تتطلب إعادة تشغيل يدوي لتصبح فعالة."],"API key":[null,"مفتاح API"],"used to give 3rd party programs limited access to SickRage":[null,"تستخدم لإعطاء البرامج الخارجية صلاحية محدودة للوصول إلى SickRage"],"you can try all the features of the API":[null,"يمكنك أن تجرب كافة ميزات API"],"here":[null,"هنا"],"HTTP logs":[null,"سجلات HTTP"],"enable logs from the internal Tornado web server":[null,"تمكين السجلات من ملقم ويب الداخلي Tornado"],"HTTP username":[null,"اسم المستخدم HTTP"],"set blank for no login":[null,"اتركه فارغاً للدخول بدون تسجيل دخول"],"HTTP password":[null,"كلمة مرور HTTP"],"blank = no authentication":[null,"فارغ = بدون مصادقة"],"HTTP port":[null,"منفذ HTTP"],"web port to browse and access SickRage (default:8081)":[null,"منفذ الشبكة للتصفح والوصول إلى SickRage (الافتراضي: 8081)"],"Notify on login":[null,"إشعار عند تسجيل الدخول"],"enable to be notified when a new login happens in webserver":[null,"مكِّن هذا الخيار لكي يتم إشعارك عند حدوث تسجيل دخول جديد في خادم الويب"],"Listen on IPv6":[null,"الاستماع على IPv6"],"attempt binding to any available IPv6 address":[null,"محاولة ربط إلى أي عنوان IPv6 متوفر"],"Enable HTTPS":[null,"تمكين HTTPS"],"enable access to the web interface using a HTTPS address":[null,"تمكين الوصول إلى واجهة الويب باستخدام عنوان HTTPS"],"HTTPS certificate":[null,"شهادة HTTPS"],"file name or path to HTTPS certificate":[null,"اسم الملف أو المسار إلى شهادة HTTPS"],"HTTPS key":[null,"مفتاح HTTPS"],"file name or path to HTTPS key":[null,"اسم الملف أو المسار إلى مفتاح HTTPS"],"Reverse proxy headers":[null,"عكس proxy headers"],"accept the following reverse proxy headers (advanced)...":[null,""],"(X-Forwarded-For, X-Forwarded-Host, and X-Forwarded-Proto)":[null,""],"CPU throttling":[null,"اختناق المعالج"],"Normal (default). High is lower and Low is higher CPU use":[null,"عادي (افتراضي). العالي هو منخفض و المنخفض هو الأعلى في استخدام المعالج"],"Anonymous redirect":[null,"إعادة التوجيه المجهولة"],"backlink protection via anonymizer service, must end in \"?\"":[null,"حماية صلة العودة عن طريق خدمة anonymizer، يجب أن ينتهي بـ\"؟\""],"Enable debug":[null,"تمكين التصحيح"],"enable debug logs":[null,"تمكين سجلات التصحيح"],"Verify SSL Certs":[null,"التحقق من شهادات SSL"],"verify SSL Certificates (Disable this for broken SSL installs (Like QNAP))":[null,"التحقق من شهادات SSL (تعطيل هذا للـ SSL المعطوبة (مثل QNAP))"],"No Restart":[null,"لا يتطلب إعادة التشغيل"],"only shutdown when restarting SR":[null,"إيقاف التشغيل فقط عند إعادة تشغيل SickRage"],"only select this when you have external software restarting SR automatically when it stops (like FireDaemon)":[null,"فقط حدد هذا الخيار عندما يكون لديك برامج خارجية تقوم بإعادة تشغيل SickRage عندما يتوقف تلقائياً (مثل FireDaemon)"],"Encrypt passwords":[null,"تشفير كلمة المرور"],"in the <code>config.ini</code> file":[null,"في ملف <code>config.ini</code>"],"warning":[null,"تحذير"],"passwords must only contain":[null,"يجب أن تحتوي كلمات المرور على"],"ASCII characters":[null,"رموز ASCII"],"Unprotected calendar":[null,"تقويم غير محمي"],"allow subscribing to the calendar without user and password":[null,"السماح بالاشتراك في التقويم بدون اسم مستخدم و كلمة المرور"],"some services like Google Calendar only work this way":[null,"تعمل بعض الخدمات مثل تقويم جوجل فقط بهذه الطريقة"],"Google Calendar Icons":[null,"أيقونات تقويم جوجل"],"show an icon next to exported calendar events in Google Calendar":[null,"أظهر أيقونة بجوار أحداث التقويم اللتي تم تصديرها في تقويم جوجل"],"Proxy host":[null,"مضيف الوكيل"],"blank to disable or proxy to use when connecting to providers":[null,"اتركه فارغاً لتعطيله أو استخدم الوكيل عند الاتصال بمقدمي الخدمات"],"also use global proxy setting for indexers (tvdb, xem, anidb, etc.)":[null,""],"Skip Remove Detection":[null,"تخطي إزالة الكشف"],"skip detection of removed files":[null,"تخطي الكشف عن الملفات المزالة"],"if disabled the episode will be set to the default deleted status":[null,""],"Default deleted episode status":[null,"الحالة الافتراضية لحذف الحلقة"],"define the status to be set for media file that has been deleted.":[null,"تحديد الحالة لملفات الوسائط اللتي يتم حذفها."],"Archived option will keep previous downloaded quality":[null,"سيحافظ الخيار المؤرشف على جودة التحميل السابقة"],"example: Downloaded (1080p WEB-DL) ==> Archived (1080p WEB-DL)":[null,"على سبيل المثال: المحملة (1080p WEB-DL) ==> المؤرشفة (1080p WEB-DL)"],"Options for github related features.":[null,"خيارات مميزات github ذات الصلة."],"Branch version":[null,"فرع إصدار"],"error: No branches found.":[null,"خطأ: لا يوجد فروع."],"select branch to use (restart required)":[null,"حدد فرع لإستخدامه (يتطلب إعادة التشغيل)"],"Authorization Type":[null,""],"Username and password":[null,""],"Personal access token":[null,""],"You must use a personal access token if you're using \"two-factor authentication\" on GitHub.":[null,""],"GitHub username":[null,"اسم المستخدم GitHub"],"*** (REQUIRED FOR SUBMITTING ISSUES) ***":[null,"*** (مطلوب لإرسال المشاكل) * * *"],"GitHub password":[null,"كلمة مرور GitHub"],"GitHub personal access token":[null,""],"Generate Token":[null,""],"Manage Tokens":[null,""],"GitHub remote for branch":[null,"GitHub عن بعد للفرع"],"access repo configured remotes (save then refresh browser)":[null,"الوصول إلى ضبط المصدر عن بعد (احفظ ثم حدث المتصفح)"],"default":[null,"الافتراضي"],"origin":[null,"الأصل"],"Git executable path":[null,"مسار التنفيذ الخاص بـ Git"],"only needed if OS is unable to locate git from env":[null,"تحتاج إليه فقط إذا كان نظام التشغيل غير قادر على تحديد موقع git من النظام"],"Git reset":[null,"إعادة تعيين Git"],"removes untracked files and performs a hard reset on git branch automatically to help resolve update issues":[null,"إزالة الملفات الغير متعقبة و القيام بإعادة تعيين فرع Git تلقائياً للمساعدة على حل مشاكل التحديث"],"Home Theater / NAS":[null,"مسرح منزلي/ وحدة التخزين الشبكية NAS"],"Devices":[null,"الأجهزة"],"Social":[null,"اجتماعي"],"A free and open source cross-platform media center and home entertainment system software with a 10-foot user interface designed for the living-room TV.":[null,"نظام وسائط وترفيه منزلي مجاني ومفتوح المصدر يعمل على منصات مختلفة يعمل بواجهة مستخدم مخصصه لأجهزة العرض الكبيرة كالتلفزيون."],"send KODI commands?":[null,"إرسال أوامر برنامج KODI؟"],"Always on":[null,"تشغيل دومًا"],"log errors when unreachable?":[null,"تسجيل الأخطاء عندما يتعذر الوصول ؟"],"Notify on snatch":[null,"إشعار عند جلب الحلقات"],"send a notification when a download starts?":[null,"إرسال إشعار عند بدء التحميل؟"],"Notify on download":[null,"إشعار عند التحميل"],"send a notification when a download finishes?":[null,"إرسال إشعار عند انتهاء التحميل؟"],"Notify on subtitle download":[null,"إشعار عند تحميل الترجمة"],"send a notification when subtitles are downloaded?":[null,"إرسال إشعر عندما يتم تحميل الترجمة؟"],"Update library":[null,"تحديث المكتبة"],"update KODI library when a download finishes?":[null,"تحديث مكتبة برنامج KODI عند انتهاء تحميل؟"],"Full library update":[null,"تحديث كامل للمكتبة"],"perform a full library update if update per-show fails?":[null,"تنفيذ تحديث كامل للمكتبة في حالة فشل التحديث لكل مسلسل؟"],"Only update first host":[null,"تحديث المضيف الأول فقط"],"only send library updates to the first active host?":[null,"إرسال أمر تحديث المكتبة للمضيف المفعل الأول فقط؟"],"KODI IP:Port":[null,"عنوان IP والمنفذ لبرنامج KODI"],"host running KODI (eg. 192.168.1.100:8080)":[null,"المضيف الموجود عليه KODI (مثلا. 192.168.1.100:8096)"],"(multiple host strings must be separated by commas)":[null,"(عناوين المضيفين المتعددة يجب أن تكون مفصولة بفواصل)"],"Username":[null,"اسم المُستخدم"],"username for your KODI server (blank for none)":[null,"اسم المستخدم الخاص بـ KODI (فارغة إذا لم يوجد)"],"Password":[null,"كلمة المرور"],"password for your KODI server (blank for none)":[null,"كلمة المرور الخاصة بـ KODI (فارغة إذا لم يوجد)"],"Click below to test.":[null,"انقر أدناه للتحقق."],"Experience your media on a visually stunning, easy to use interface on your Mac connected to your TV. Your media library has never looked this good!":[null,"عش تجربة تشغيل الوسائط الخاصة بك على واجهة سهلة الاستخدام مذهلة بصريا، على ماك الخاص بك متصل بجهاز التلفزيون. مكتبة الوسائط الخاصة بك لم تنظهر ابدأ بهذا الجمال!"],"For sending notifications to Plex Home Theater (PHT) clients, use the KODI notifier with port <b>3005</b>.":[null,"لإرسال إشعارات إلى Plex Home Theater، استخدم إشعارات برنامج KODI مع منفذ <b>3005</b>."],"send Plex Media Server library updates?":[null,"إرسال تحديثات المكتبة إلى Plex Media Server؟"],"Plex Media Server Auth Token":[null,"رمز المصادقة لـ Plex Media Server"],"auth token used by Plex":[null,"رمز المصادقة المستخدم من طرف برنامج plex"],"Update Library":[null,"تحديث المكتبة"],"update Plex Media Server library when a download finishes":[null,"تحديث مكتبة Plex Media Server بعد نهاية التحميل"],"Plex Media Server IP:Port":[null,"عنوان IP و منفذ Plex Media Server"],"one or more hosts running Plex Media Server<br/>(eg. 192.168.1.1:32400, 192.168.1.2:32400)":[null,"مضيف واحد أو أكثر تعمل بـ Plex Media Server <br/>(مثلا. 192.168.1.1:32400, 192.168.1.2:32400)"],"HTTPS":[null,"HTTPS"],"use https for plex media server requests?":[null,"استخدام https لطلبات plex media server؟"],"Click below to test Plex Media Server(s)":[null,"انقر أدناه للتحقق من Plex Media Server"],"Test Plex Media Server":[null,"التحقق من Plex Media Server"],"Plex Home Theater":[null,"Plex Home Theater"],"send Plex Home Theater notifications?":[null,"إرسال إشعارات Plex Home Theater؟"],"Plex Home Theater IP:Port":[null,"عنوان IP و منفذ Plex Home Theater"],"one or more hosts running Plex Home Theater<br>(eg. 192.168.1.100:3000, 192.168.1.101:3000)":[null,"مضيف واحد أو أكثر تعمل بـ Plex Home Theater <br>(مثلا. 192.168.1.1:32400, 192.168.1.2:32400)"],"Click below to test Plex Home Theater(s)":[null,"انقر أدناه للتحقق من Plex Home Theater"],"Test Plex Home Theater":[null,"التحقق من Plex Home Theater"],"some Plex Home Theaters <b class=\"boldest\">do not</b> support notifications e.g. Plexapp for Samsung TVs":[null,"بعض Plex Home Theaters هي <b class=\"boldest\">لا تدعم</b> الإشعارات، مثل Plexapp لتلفزيونات سامسونج"],"Emby":[null,"Emby"],"A home media server built using other popular open source technologies.":[null,"خادم وسائط منزلية تم إنشاؤه باستخدام تقنيات المصادر المفتوحه."],"send update commands to Emby?":[null,"إرسال أوامر التحديث إلى برنامج Emby؟"],"Emby IP:Port":[null,"عنوان IP و منفذ Emby"],"host running Emby (eg. 192.168.1.100:8096)":[null,"المضيف الموجود عليه Emby (مثلا. 192.168.1.100:8096)"],"Emby API Key":[null,"مفتاح Emby API"],"Networked Media Jukebox":[null,"خزانة الوسائط الشبكية"],"The Networked Media Jukebox, or NMJ, is the official media jukebox interface made available for the Popcorn Hour 200-series.":[null,"خزانة الوسائط الشبكية، أو NMJ، هي خزانة الوسائط الرسمية لسلسلة Popcorn Hour 200."],"send update commands to NMJ?":[null,"إرسال أوامر التحديث إلى NMJ؟"],"Popcorn IP address":[null,"عنوان IP للـ Popcorn"],"IP address of Popcorn 200-series (eg. 192.168.1.100)":[null,"عنوان IP لسلسلة Popcorn 200 (مثلا. 192.168.1.100)"],"Get settings":[null,"الحصول على الإعدادات"],"Get Settings":[null,"الحصول على الإعدادات"],"the Popcorn Hour device must be powered on and NMJ running.":[null,"جهاز Popcorn Hour يجب أن يكون في وضع التشغيل وخدمة الـ NMJ تعمل."],"NMJ database":[null,"قاعدة بيانات NMJ"],"automatically filled via the 'Get Settings' button.":[null,"ملء تلقائياً عن طريق الزر \"الحصول على إعدادات\"."],"NMJ mount url":[null,"عنوان ربط NMJ"],"Networked Media Jukebox v2":[null,"خزانة الوسائط الشبكية الأصدار 2"],"The Networked Media Jukebox, or NMJv2, is the official media jukebox interface made available for the Popcorn Hour 300 & 400-series.":[null,"خزانة الوسائط الشبكية الإصدار 2، أو NMJv2، هي خزانة الوسائط الرسمية لسلسلة Popcorn Hour 300 & 400."],"send update commands to NMJv2?":[null,"إرسال أوامر التحديث إلى NMJv2؟"],"IP address of Popcorn 300/400-series (eg. 192.168.1.100)":[null,"عنوان IP لسلسلة Popcorn 300/400 (مثلا. 192.168.1.100)"],"Database location":[null,"موقع قاعدة البيانات"],"Database instance":[null,"مثيل قاعدة البيانات"],"adjust this value if the wrong database is selected.":[null,"تعديل هذه القيمة إذا تم تحديد قاعدة البيانات الخطأ."],"Find database":[null,"العثور على قاعدة البيانات"],"Find Database":[null,"العثور على قاعدة البيانات"],"the Popcorn Hour device must be powered on.":[null,"جهاز Popcorn Hour يجب أن يكون في وضع التشغيل."],"NMJv2 database":[null,"قاعدة بيانات NMJv2"],"automatically filled via the 'Find Database' buttons.":[null,"ملء تلقائياً عن طريق الزر \"العثور على قاعدة البيانات\"."],"Synology":[null,"Synology"],"The Synology DiskStation NAS.":[null,"وحدة تخزين شبكية Synology DiskStation NAS."],"Synology Indexer is the daemon running on the Synology NAS to build its media database.":[null,"مفهرس Synology هو daemon يعمل على Synology لبناء قاعدة بيانات الوسائط الخاصة به."],"send Synology notifications?":[null,"إرسال إشعارات Synology؟"],"requires SickRage to be running on your Synology NAS.":[null,"يتطلب SickRage أن يعمل على Synology (وحدة التخزين الشبكية NAS)؛ الخاص بك."],"Synology Indexer":[null,"مفهرس Synology"],"Synology Notifier is the notification system of Synology DSM":[null,"Synology Notifier هو نظام الإشعارات الخاص بنظام التشغيل Synology DSM"],"send notifications to the Synology Notifier?":[null,"إرسال إشعارات إلى Synology Notifier؟"],"pyTivo":[null,"pyTivo"],"pyTivo is both an HMO and GoBack server. This notifier will load the completed downloads to your Tivo.":[null,"pyTivo هو خادم HMO و GoBack معاً. مزود خدمة الإشعارات هذا سيرفع جميع التنزيلات المكتملة إلى Tivo الخاص بك."],"send notifications to pyTivo?":[null,"ارسال الإخطارات إلى pyTivo؟"],"requires the downloaded files to be accessible by pyTivo.":[null,"يتطلب الملفات التي تم تحميلها ليتمكن pyTivo من الوصول إليها."],"pyTivo IP:Port":[null,"عنوان IP ومنفذ pyTivo"],"host running pyTivo (eg. 192.168.1.1:9032)":[null,"المضيف الموجود عليه pyTivo (مثلا. 192.168.1.100:8096)"],"pyTivo share name":[null,"اسم مشاركة pyTivo"],"value used in pyTivo Web Configuration to name the share.":[null,"القيمة المستخدمة لتسمية المشاركة في ملف تكوين ويب الخص بـ pyTivo."],"Tivo name":[null,"اسم Tivo"],"(Messages & Settings > Account & System Information > System Information > DVR name)":[null,"(رسائل & إعدادات > الحساب & معلومات النظام > معلومات النظام > اسم DVR)"],"Growl":[null,"Growl"],"A cross-platform unobtrusive global notification system.":[null,"نظام إشعرات عالمي غير مزعج يعمل على منصات تشغيل متعددة."],"send Growl notifications?":[null,"إرسال إشعارات لـ Growl؟"],"Growl IP:Port":[null,"عنوان IP ومنفذ Growl"],"host running Growl (eg. 192.168.1.100:23053)":[null,"المضيف الموجود عليه Growl (مثلا. 192.168.1.100:8096)"],"may leave blank if SickRage is on the same host.":[null,"اتركه فارغاً إذا كان SickRage يعمل على نفس المضيف."],"otherwise Growl <b>requires</b> a password to be used.":[null,"خلاف ذلك Growl؛<b>يتطلب</b> كلمة مرور لاستخدامها."],"Click below to register and test Growl, this is required for Growl notifications to work.":[null,"انقر أدناه لتسجيل واختبار Growl، وهذا مطلوب لكي تعمل إشعارات Growl."],"Register Growl":[null,"سجل Growl"],"Prowl":[null,"Prowl"],"A Growl client for iOS.":[null,"عميل Growl للأجهزة اللتي تعمل بنظام iOS."],"send Prowl notifications?":[null,"إرسال إشعارات لـ Prowl؟"],"Prowl Message Title":[null,"عنوان رسالة Prowl"],"Global Prowl API key(s)":[null,"مفاتيح API الشاملة لـ Prowl"],"Prowl API(s) listed here, separated by commas if applicable, will<br> receive notifications for <b>all</b> shows. Your Prowl API key is available at:":[null,"API الخاصة بـ Prowl المذكورة هنا، مفصولة بفواصل إذا كان ذلك ممكناً، سوف <br>تتلقى إشعارات <b>لكل</b> المسلسلات. مفتاح API Prowl الخاص بك متاح في:"],"(this field may be blank except when testing.)":[null,"(قد يكون هذا الحقل فارغاً ما عدا عند التحقق)"],"Show notification list":[null,"قائمة إشعارات المسلسل"],"-- Select a Show --":[null,"--حدد مسلسل-"],"Configure per-show notifications here by entering Prowl API key(s), separated by commas, '\n 'after selecting a show in the drop-down box. Be sure to activate the 'Save for this show' '\n 'button below after each entry.":[null,"تكوين الإشعارات لكل مسلسل بإدخال مفتاح (مفاتيح) Prowl API، مفصولة بفواصل، \n بعد تحديد المسلسل في مربع القائمة المنسدلة. تأكد من تنشيط الزر \n 'حفظ لهذا المسلسل' أدناه بعد كل إدخال."],"Save for this show":[null,"حفظ لهذا المسلسل"],"Prowl priority":[null,"أولوية Prowl"],"Very Low":[null,"منخفض جداً"],"Moderate":[null,"متوسطة"],"Normal":[null,"عادية"],"High":[null,"عالية"],"Emergency":[null,"طارئة"],"priority of Prowl messages from SickRage.":[null,"الأولوية في Prowl للرسائل من SickRage."],"Libnotify":[null,"Libnotify"],"The standard desktop notification API for Linux/*nix systems. This notifier will only function if the pynotify module is installed (Ubuntu/Debian package <a href=\"apt:python-notify\">python-notify</a>).":[null,"API لإشعارات سطح المكتب القياسية لأنظمة لينكس. سيعمل هذا الإشعار فقط إذا كانت الوحدة النمطية pynotify مثبتة (حزمة أنظمة أوبونتو أو ديبيان <a href=\"apt:python-notify\">python-notify</a>)."],"send Libnotify notifications?":[null,"إرسال إشعارات Libnotify؟"],"Pushover":[null,"Pushover"],"Pushover makes it easy to send real-time notifications to your Android and iOS devices.":[null,"Pushover يجعل من السهل إرسال إشعارات مباشرةً لأجهزة الأندرويد و الـ iOS."],"send Pushover notifications?":[null,"إرسال إشعارات لـ Pushover؟"],"Pushover key":[null,"مفتاح Pushover"],"user key of your Pushover account":[null,"مفتاح المستخدم الخاص بحسابك في Pushover"],"Pushover API key":[null,"مفتاح API للـ Pushover"],"click here":[null,""]," to create a Pushover API key":[null,""],"Pushover devices":[null,"أجهزة Pushover"],"comma separated list of pushover devices you want to send notifications to":[null,"قائمة بأجهزة pushover اللتي تريد إرسال إشعارات لها، مفصولة بفاصلة"],"Pushover notification sound":[null,"صوت الإشعار لـ Pushover"],"Bike":[null,"الدراجة"],"Bugle":[null,"بوق"],"Cash Register":[null,"تسجيل الذاكره المؤقته"],"Classical":[null,"كلاسيكي"],"Cosmic":[null,"Cosmic"],"Falling":[null,"السقوط"],"Gamelan":[null,"Gamelan"],"Incoming":[null,"الوارد"],"Intermission":[null,"استراحة"],"Magic":[null,"سحر"],"Mechanical":[null,"ميكانيكي"],"Piano Bar":[null,"بيانو بار"],"Siren":[null,"صفارة الإنذار"],"Space Alarm":[null,"إنذار الفضاء"],"Tug Boat":[null,"زورق القطر"],"Alien Alarm (long)":[null,"إنذار الفضائيين (طويل)"],"Climb (long)":[null,"تسلق (طويلة)"],"Persistent (long)":[null,"المستمر (طويلة)"],"Pushover Echo (long)":[null,"صدى المهمة اليسيرة (طويلة)"],"Up Down (long)":[null,"أعلى أسفل (طويلة)"],"None (silent)":[null,"بلا (صامت)"],"Device specific":[null,"تحدد بناءً على الجهاز"],"choose notification sound to use":[null,"اختر نغمة الإشعار"],"Pushover priority":[null,""],"Choose priority to use":[null,"اختر أولوية للإستخدام"],"Boxcar 2":[null,"Boxcar 2"],"Read your messages where and when you want them!":[null,"قراءة الرسائل الخاصة بك متى وأين تريد!"],"send Boxcar notifications?":[null,"إرسال إشعارات Boxcar؟"],"Boxcar2 access token":[null,"رمز مصادقة الوصول لـ Boxcar2"],"access token for your Boxcar account.":[null,"رمز مصادقة الوصول لحسابك في Boxcar."],"NMA":[null,"NMA"],"Notify My Android":[null,"Notify My Android"],"Notify My Android is a Prowl-like Android App and API that offers an easy way to send notifications from your application directly to your Android device.":[null,"Notify My Android هو برنامج و API لنظام الأندرويد و اللذي يقدم خدمة إرسال الإشعارات من أي برنامج لجهازك الأندرويد بطريقه سهلة."],"send NMA notifications?":[null,"إرسال إشعارات لـ NMA؟"],"NMA API key":[null,"مفتاح API لـ NMA"],"(multiple keys must be separated by commas, up to a maximum of 5)":[null,"(المفاتيح المتعددة يجب أن تكون مفصولة بفواصل، بحد أقصى 5)"],"NMA priority":[null,"أولوية NMA"],"priority of NMA messages from SickRage.":[null,"الأولوية في NMA للرسائل من SickRage."],"Pushalot":[null,"Pushalot"],"Pushalot is a platform for receiving custom push notifications to connected devices running Windows Phone or Windows 8.":[null,"Pushalot هي منصة لتلقي إشعارات مخصصة للأجهزة اللتي تعمل بنظام التشغيل ويندوز فون أو ويندوز 8."],"send Pushalot notifications ?":[null,"إرسال إشعارات لـ Pushalot؟"],"Pushalot authorization token":[null,"رمز مصادقة التفويض لـ Pushalot"],"authorization token of your Pushalot account.":[null,"رمز مصادقة التفويض لحسابك في Pushalot."],"Pushbullet":[null,"Pushbullet"],"Pushbullet is a platform for receiving custom push notifications to connected devices running Android/iOS and desktop browsers such as Chrome, Firefox or Opera.":[null,"Pushbullet هي منصة لتلقي إشعارات مخصصة للأجهزة العاملة بأنظمة أندرويد و iOS أو متصفحات الكروم و أوبرا أو فايرفوكس على سطح المكتب."],"send Pushbullet notifications?":[null,"إرسال إشعارات لـ Pushbullet؟"],"Pushbullet API key":[null,"مفتاح API للـ Pushbullet"],"API key of your Pushbullet account":[null,"مفتاح API الخاص بحسابك في Pushbullet"],"Pushbullet devices":[null,"أجهزة Pushbullet"],"Update device list":[null,"تحديث قائمة الأجهزة"],"Pushbullet channels":[null,"قنوات Pushbullet"],"Free Mobile":[null,"Free Mobile"],"Free Mobile is a famous French cellular network provider.<br> It provides to their customer a free SMS API.":[null,"Free Mobile هو موفر شبكة خليوية فرنسية شهيرة. <br>يوفر للعملاء API للرسائل القصيرة مجاناً."],"send SMS notifications?":[null,"إرسال إشعارات الرسائل القصيرة؟"],"send a SMS when a download starts?":[null,"إرسال رسالة نصية قصيرة عند بدء تحميل؟"],"send a SMS when a download finishes?":[null,"إرسال رسالة نصية قصيرة عند إكتمال التحميل؟"],"send a SMS when subtitles are downloaded?":[null,"إرسال رسالة نصية قصيرة عندما يتم تحميل الترجمة؟"],"Free Mobile customer ID":[null,"معرف العميل في Free Mobile"],"it's your Free Mobile customer ID (8 digits)":[null,"هو معرف العميل الخاصة بك في Free Mobile؛ (8 أرقام)"],"Free Mobile API key":[null,"مفتاح API لـ Free Mobile"],"find your API key in your customer portal.":[null,"العثور على مفتاح API في صفحة العميل الخاص بك."],"Click below to test your settings.":[null,"انقر أدناه لاختبار الإعدادات الخاصة بك."],"Telegram":[null,"تيليغرام"],"Telegram is a cloud-based instant messaging service.":[null,"تيليغرام هو خدمة مراسلة فورية سحابية."],"send Telegram notifications?":[null,"إرسال إشعارات إلى تيليغرام؟"],"send a message when a download starts?":[null,"إرسال رسالة عند بدء تحميل؟"],"send a message when a download finishes?":[null,"إرسال رسالة عند انتهاء التحميل؟"],"send a message when subtitles are downloaded?":[null,"إرسال رسالة عندما يتم تحميل الترجمة؟"],"User/group ID":[null,"المستخدم/معرف المجموعة"],"contact @myidbot on Telegram to get an ID":[null,"تواصل مع @myidbot في تيليغرام للحصول على المعرف"],"Bot API token":[null,"الرمز المميز لـ API Bot"],"contact @BotFather on Telegram to set up one":[null,"تواصل مع @BotFather على تليغرام للحصول على واحد"],"Join":[null,"Join"],"Join all of your devices together!":[null,"اجمع كل الأجهزة الخاصة بك معا!"],"send Join notifications?":[null,"إرسال إشعارات لـ Join؟"],"Device ID":[null,"رقم معرف الجهاز"],"per device specific id":[null,"معرف محدد لكل جهاز"]," to create a Join API key":[null,""],"Twilio":[null,"Twilio"],"Twilio is a webservice API that allows you to communicate directly with a mobile number. This notifier will send a text directly to your mobile device.":[null,""],"should SickRage text your mobile device?":[null,""],"Twilio Account SID":[null,""],"account SID of your Twilio account.":[null,""],"Twilio Auth Token":[null,""],"Twilio Phone SID":[null,""],"phone SID that you would like to send the sms from":[null,""],"Your phone number":[null,"رقم الهاتف الخاص بك"],"phone number that will receive the sms. Please use the format +1-###-###-####":[null,""],"Twitter":[null,"تويتر"],"A social networking and microblogging service, enabling its users to send and read other users' messages called tweets.":[null,"هي خدمة شبكة إجتماعية و تدوين، تمكن المستخدمين من إرسال وقراءة رسائل المستخدمين الآخرين وتسمى تغريدات."],"should SickRage post tweets on Twitter?":[null,"هل ينشر SickRage تغريدات على حسابك في تويتر؟"],"you may want to use a secondary account.":[null,"قد ترغب في استخدام حساب ثانوي."],"send direct message":[null,"إرسال رسالة مباشرة"],"send a notification via Direct Message, not via status update":[null,"إرسال إشعار عبر رسالة خاصة، وليس عن طريق تحديث الحالة"],"send DM to":[null,""],"Twitter account to send Direct Messages to (must follow you)":[null,"حساب تويتر إرسال رسائل خاصة إلى (يجب أن يكون متابعاً لك)"],"Step One":[null,"الخطوة الأولى"],"Request Authorization":[null,"طلب التفويض"],"Click the \"Request Authorization\" button.<br> This will open a new page containing an auth key.<br> <b>note:</b> if nothing happens check your popup blocker.":[null,"انقر فوق الزر \"طلب الحصول على إذن\". <br>هذا سيفتح صفحة جديدة تحتوي على مفتاح مصادقة. <br><b>ملاحظة:</b> إذا لم يحدث شيء تحقق من حظر الإطارات المنبثقة الخاصة بك."],"Step Two":[null,"الخطوة الثانية"],"Enter the key Twitter gave you below, and click \"Verify Key\".":[null,"أدخل المفتاح اللذي أعطاك إياه تويتر أدناه، ثم انقر فوق \"التحقق من المفتاح\"."],"Trakt":[null,"Trakt"],"Trakt helps keep a record of what TV shows and movies you are watching. Based on your favorites, Trakt recommends additional shows and movies you'll enjoy!":[null,"Trakt يساعد على الاحتفاظ بسجل البرامج التلفزيونية والأفلام. استناداً إلى المفضلة الخاصة بك، يوصي trakt بمسلسلات إضافية وأفلام سوف تستمتع!"],"send Trakt.tv notifications?":[null,"إرسال إشعارات لـ Trakt.tv؟"],"username of your Trakt account.":[null,"اسم المستخدم للحساب الخاص بك في Trakt."],"Trakt PIN":[null,"رقم PIN لـ Trakt"],"Get Trakt PIN":[null,"الحصول على رقم PIN من Trakt"],"PIN code to authorize SickRage to access Trakt on your behalf.":[null,"رقم PIN يعطي الإذن لـ SickRage للوصول إلى Trakt بالنيابة عنك."],"API Timeout":[null,"مهلة API"],"seconds to wait for Trakt API to respond. (Use 0 to wait forever)":[null,"الثواني لانتظار Trakt API للاستجابة. (استخدم 0 للانتظار إلى الأبد)"],"Default indexer":[null,"المفهرس الافتراضي"],"Sync libraries":[null,"مزامنة المكتبات"],"sync your SickRage show library with your trakt show library.":[null,"مزامنة مكتبة مسلسلات SickRage مع مكتبة المسلسلات الخاصة بك في trakt."],"Remove Episodes From Collection":[null,"إزالة الحلقات من المكتبة"],"remove an episode from your Trakt Collection if it is not in your SickRage Library.":[null,"إزالة الحلقة من مكتبة Trakt الخاص بك إذا لم تكن في مكتبة SickRage."],"Sync watchlist":[null,"مزامنة قائمة المراقبة"],"sync your SickRage show watchlist with your trakt show watchlist (either Show and Episode).":[null,"مزامنة قائمة المراقبة للمسلسلات في SickRage الخاص بك مع trakt الخاص بك (المسلسلات و الحلقات)."],"episode will be added on watch list when wanted or snatched and will be removed when downloaded ":[null,"سيتم إضافة الحلقة على قائمة المراقبة عندما تكون مطلوبة أو مجلوبة وسيتم إزالتها عند تحميلها "],"Watchlist add method":[null,"طريقة الإضافة إلى قائمة المراقبة"],"Skip All":[null,"تخطي الجميع"],"Download Pilot Only":[null,"تحميل الحلقة التجريبية فقط"],"Get whole show":[null,"الحصول على المسلسل كامل"],"method in which to download episodes for new shows.":[null,"الطريقة لتحميل الحلقات للمسلسلات الجديدة."],"Remove episode":[null,"إزالة الحلقة"],"remove an episode from your watchlist after it is downloaded.":[null,"إزالة الحلقة من قائمة المراقبة الخاصة بك بعد تنزيلها."],"Remove series":[null,"إزالة المسلسل"],"remove the whole series from your watchlist after any download.":[null,"إزالة المسلسل كامل من قائمة المراقبة بعد التحميل."],"Remove watched show":[null,"إزالة المسلسل اللذي تمت مشاهدته"],"remove the show from sickrage if it's ended and completely watched":[null,"إزالة المسلسل من sickrage إذا كان قد انتهى و مشاهدته"],"Start paused":[null,"البدأ في وضع الإيقاف المؤقت"],"shows grabbed from your trakt watchlist start paused.":[null,"المسلسلات المجلوبة من قائمة المراقبة trakt الخاصة بك تبدأ في وضع الإيقاف المؤقت."],"Trakt blackList name":[null,"اسم القائمة السوداء الخاصة بـ Trakt"],"name (slug) of list on Trakt for blacklisting show on 'Add Trending Show' & 'Add Recommended Shows' pages":[null,"اسم(slug) على قائمة Trakt لمسلسللات القائمة السوداء على صفحات \"إضافة مسلسل شائع\" و \"إضافة مسلسلات موصى بها\""],"Email":[null,"البريد الإلكتروني"],"Allows configuration of email notifications on a per show basis.":[null,"السماح بتكوين إشعارات البريد الإلكتروني لكل مسلسل."],"send email notifications?":[null,"إرسال إشعارات البريد الإلكتروني؟"],"SMTP host":[null,"مضيف SMTP"],"hostname of your SMTP email server.":[null,"اسم المضيف لخادم البريد الإلكتروني SMTP الخاص بك."],"SMTP port":[null,"منفذ SMTP"],"port number used to connect to your SMTP host.":[null,"رقم المنفذ المستخدم في الاتصال بمضيف SMTP الخاص بك."],"SMTP from":[null,"من SMTP"],"sender email address, some hosts require a real address.":[null,"عنوان البريد الإلكتروني المرسل، يتطلب بعض المضيفين عنوان حقيقي."],"Use TLS":[null,"استخدام TLS"],"check to use TLS encryption.":[null,"الاختيار لاستخدام تشفير TLS."],"SMTP user":[null,"اسم مستخدم SMTP"],"(optional) your SMTP server username.":[null,"(اختياري) اسم خادم SMTP الخاص بك."],"SMTP password":[null,"كلمة مرور SMTP"],"(optional) your SMTP server password.":[null,"(اختياري) كلمة مرور خادم SMTP الخاص بك."],"Global email list":[null,"قائمة البريد الإلكتروني الشاملة"],"email addresses listed here, separated by commas if applicable, will<br> receive notifications for <b>all</b> shows.":[null,"عناوين البريد الإلكتروني المدرجة هنا، مفصولة بفواصل إذا كان ذلك ممكناً، سوف <br>تستقبل إشعارات <b>لكافة</b> المسلسلات."],"(This field may be blank except when testing.)":[null,"(قد يكون هذا الحقل فارغاً ما عدا عند التحقق)"],"Email Subject":[null,"موضوع البريد الإلكتروني"],"use a custom subject for some privacy protection?":[null,"استخدام موضوع مخصصة لحماية الخصوصية؟"],"(leave blank for the default SickRage subject)":[null,"(اترك فارغة لموضوع SickRage الافتراضي)"],"configure per-show notifications here by entering email address(es), separated by commas,":[null,"ضبط إشعارات لكل مسلسل هنا عن طريق إدخال عنوان أو عناوين البريد الإلكتروني، مفصولة بفواصل،"],"after selecting a show in the drop-down box. Be sure to activate the 'Save for this show'":[null,"بعد اختيار المسلسل في مربع القائمة المنسدلة. تأكد من تنشيط 'حفظ' لهذا المسلسل"],"button below after each entry.":[null,"الزر أدناه بعد كل إدخال."],"Slack":[null,""],"Slack brings all your communication together in one place. It's real-time messaging, archiving and search for modern teams.":[null,""],"should SickRage post messages on Slack?":[null,""],"Slack Incoming Webhook":[null,""],"Discord":[null,""],"All-in-one voice and text chat for gamers that's free, secure, and works on both your desktop and phone.":[null,""],"Should SickRage post messages on Discord?":[null,""],"Discord Incoming Webhook":[null,""],"Create webhook under channel settings.":[null,""],"Discord Bot Name":[null,""],"Blank will use webhook default Name.":[null,""],"Discord Avatar URL":[null,""],"Blank will use webhook default Avatar.":[null,""],"Discord TTS":[null,""],"Send notifications using text-to-speech":[null,""],"Post-Processing":[null,"المعالجة"],"Episode Naming":[null,"تسمية الحلقات"],"Metadata":[null,"بيانات التعريف"],"Settings that dictate how SickRage should process completed downloads.":[null,"الإعدادات التي تملي على SickRage كيفية معالجة الحلقات اللتي تم تحميلها."],"enable the automatic post processor to scan and process any files in your Post Processing Dir":[null,"تمكين المعالجه التلقائيه لمسح و معالجة أي ملفات في مجلد المعالجة الخاص بك"],"do not use if you use an external Post Processing script":[null,"لا تستخدمه، إذا كنت تستخدم برنامج معالجة نصي آخر خارجي"],"Post Processing Dir":[null,"مجلد المعالجة"],"the folder where your download client puts the completed TV downloads.":[null,"المجلد الخاص ببرمامج التحميل الخاص بك لوضع الحلقات فيه بعد إكتمال تحميلها."],"please use seperate downloading and completed folders in your download client if possible.":[null,"الرجاء استخدام مجلدات تحميل مختلفة للملفات المكتملة والغير مكتملة في برنامج التحميل الخاص بك إذا كان ذلك ممكناً."],"Processing Method":[null,"طريقة المعالجة"],"what method should be used to put files into the library?":[null,"ماهي الطريقة المراد استخدامها لوضع الملفات في المكتبة؟"],"if you keep seeding torrents after they finish, please avoid the 'move' processing method to prevent errors.":[null,"إذا كنت تستمر برفع ملفات التورنت بعد اكتمال تحميلها، الرجاء تجنب ضبط طريقة المعالجة على الخيار \"نقل\" لمنع حدوث الأخطاء."],"Auto Post-Processing Frequency":[null,"تكرار المعالجة التلقائي"],"time in minutes to check for new files to auto post-process (min 10)":[null,"الوقت بالدقائق للتحقق من وجود ملفات جديدة لبدأ المعالجة التلقائية (10 دقيقة)"],"Postpone post processing":[null,"تأجيل المعالجة"],"wait to process a folder if sync files are present.":[null,"الانتظار عن معالجة الملف إذا كانت المزامنة جارية حاليا."],"Sync File Extensions":[null,"مزامنة ملحقات الملفات"],"comma seperated list of extensions or filename globs SickRage ignores when Post Processing":[null,"قائمة مفصولة بفاصلة لملحقات أو اسماء ملفات عامة يتم تجاهلها من SickRage عند مرحلة المعالجة"],"Rename Episodes":[null,"إعادة تسمية الحلقات"],"rename episode using the Episode Naming settings?":[null,"قم بإعادة تسمية الحلقة باستخدام إعدادات التسمية؟"],"Create missing show directories":[null,"إنشاء مجلدات المسلسلات المفقودة"],"create missing show directories when they get deleted":[null,"إنشاء مجلدات المسلسلات المفقودة عندما يتم حذفها"],"Add shows without directory":[null,"إضافة المسلسلات دون مجلد"],"add shows without creating a directory (not recommended)":[null,"إضافة المسلسلات دون إنشاء مجلد (غير مستحسن)"],"Move associated files":[null,""],"move associated (srt/srr/sfv/etc) files while post processing?":[null,""],"Rename .nfo file":[null,"إعادة تسمية ملف.nfo"],"rename the original .nfo file to .nfo-orig to avoid conflicts?":[null,"إعادة تسمية ملف.nfo الأصلي إلى.nfo-orig لتجنب التعارض؟"],"Associated file extensions":[null,""],"comma separated list of associated file extensions SickRage should keep while post processing.":[null,""],"leaving it empty means no associated files will be post processed":[null,""],"Delete non associated files":[null,""],"delete non associated files while post processing?":[null,""],"Change File Date":[null,"تغيير تاريخ الملف"],"set last modified filedate to the date that the episode aired?":[null,"ضبط آخر تعديل لتاريخ الملف إلى تاريخ بثت الحلقة؟"],"some systems may ignore this feature.":[null,"بعض الأنظمة قد تتجاهل هذه الميزة."],"Timezone for File Date":[null,"المنطقة الزمنية لتاريخ الملف"],"local":[null,"محلي"],"network":[null,"الشبكة"],"what timezone should be used to change File Date?":[null,"ما هي المنطقة الزمنية التي ينبغي استخدامها لتغيير \"تاريخ الملف\"؟"],"Unpack":[null,"فك الضغط"],"What to do with archived releases found in your <i>TV Download Dir</i>?":[null,""],"Ignore (do not process contents)":[null,""],"Unpack (process contents)":[null,""],"Treat as video (process archive as-is)":[null,""],"'Unpack' only works with RAR archives":[null,""],"Windows":[null,"ويندوز"],"WinRar is required on windows":[null,"يجب استخدام برنامج WinRar على ويندوز"],"Unpack Directory":[null,""],"Choose a path to unpack files, leave blank to unpack in download dir":[null,""],"Unrar Location":[null,"موقع فك الضغط"],"add the path to unrar if it is not in the system path":[null,"إضافة المسار إلى فك الضغط إذا لم يكن في مسار النظام"],"Alternate Unrar Tool":[null,"أداة فك الضغط بديلة"],"add the path to an alternate unrar tool if it is not in the system path":[null,"إضافة مسار أداة فك الضغط البديلة إذا لم يكن مضافا في مسار النظام"],"Delete RAR contents":[null,"حذف محتويات الملفات المغوطه"],"delete content of RAR files, even if Process Method not set to move?":[null,"حذف محتوى ملفات الضغط، حتى لو كانت طريقة المعالجة المختارة هي النقل؟"],"only working with RAR archive":[null,"تعمل فقط مع ملفات الضغط من نوع RAR"],"Don't delete empty folders":[null,"لا تقم بحذف المجلدات الفارغة"],"leave empty folders when Post Processing?":[null,"اترك المجلدات الفارغة بعد المعالجة؟"],"can be overridden using manual Post Processing":[null,"يمكن أن يتم تجاوزه باستخدام المعالجه اليدوية"],"Follow symbolic-links":[null,""],"follow down symbolic links in download directory?":[null,""],"<b>EXPERTS ONLY.</b><br>Enable only if you know what <b>circular symbolic links</b> are,<br>and can <b>verify that you have none</b>.":[null,""],"Use icacls":[null,"استخدام icacls"],"Windows only":[null,"نظام ويندوز فقط"],"sets video permissions after using the move method in post processing":[null,"تعيين أذونات الفيديو بعد استخدام أسلوب النقل في مرحلة ما بعد المعالجة"],"Extra Scripts":[null,"برامج نصية إضافية"],"see":[null,""],"for script arguments description and usage.":[null,"للحصول على وصف و استخدام script arguments."],"How SickRage will name and sort your episodes.":[null,"كيف يمكن لـ SickRage تسمية و ترتيب الحلقات."],"Name Pattern":[null,"نمط التسمية"],"Toggle Naming Legend":[null,"تبديل وسيلة إيضاح التسمية"],"don't forget to add quality pattern. Otherwise after post-processing the episode will have UNKNOWN quality":[null,"لا تنسى إضافة نمط الجودة. و إلا ستكون الحلقة مجهولة الجودة بعد معالجتها"],"Meaning":[null,"المعنى"],"Pattern":[null,"النمط"],"Result":[null,"النتيجة"],"Use lower case if you want lower case names (eg. %sn, %e.n, %q_n etc)":[null,"استخدم الأحرف الصغيرة إذا كنت تريد أسماء بالأحرف الصغيرة (eg. %sn, %e.n, %q_n etc)"],"Show Name":[null,"اسم المسلسل"],"Show.Name":[null,"اسم.المسلسل"],"Show_Name":[null,"اسم_المسلسل"],"Season Number":[null,"رقم الموسم"],"XEM Season Number":[null,"رقم الموسم من XEM"],"Episode Number":[null,"رقم الحلقة"],"XEM Episode Number":[null,"رقم الحلقة من XEM"],"Episode Name":[null,"اسم الحلقة"],"Episode.Name":[null,"اسم.الحلقة"],"Episode_Name":[null,"اسم_الحلقة"],"Air Date":[null,"تاريخ العرض"],"Post-Processing Date":[null,"تاريخ المعالجة"],"Quality":[null,"الجودة"],"Scene Quality":[null,"جودة المشهد"],"Release Name":[null,"اسم الإصدار"],"SickRage' is used in place of RLSGROUP if it could not be properly detected":[null,"سيتم استبدال اسم مجموعة الإصدار في حالة عدم القدرة على العثور عليه باسم SickRage"],"Release Group":[null,"اسم مجموعة الإصدار"],"If episode is proper/repack add 'proper' to name.":[null,"إذا كانت الحلقة اصدار مصحح أو معاد ضغطها قم بإضافة عِبارة 'مصحح proper' إلى اسم الحلقة."],"Release Type":[null,"نوع الإصدار"],"Multi-Episode Style":[null,"أسلوب الحلقة المتعددة الأجزاء"],"Single-EP Sample":[null,"عينة الحلقة"],"Multi-EP sample":[null,"عينة الحلقة المتعددة الأجزاء"],"Strip Show Year":[null,"شريط سنة العرض"],"remove the TV show's year when renaming the file?":[null,"إزالة تاريخ سنة عرض المسلسل عند إعادة تسمية الملف؟"],"only applies to shows that have year inside parentheses":[null,"لا ينطبق إلا على المسلسلات اللتي تحتوي على تاريخ سنة العرض داخل أقواس"],"Custom Air-By-Date":[null,"تخصيص Air-By-Date"],"name air-by-date shows differently than regular shows?":[null,"تسمية مسلسلات Air-By-Date بإختلاف عن المسلسلات العادية؟"],"Toggle ABD Naming Legend":[null,"تبديل وسيلة إيضاح التسمية لـ ABD"],"Regular Air Date":[null,"تاريخ العرض العادي"],"Year":[null,"السنة"],"Month":[null,"الشهر"],"Day":[null,"اليوم"],"Multi-EP style is ignored":[null,"تجاهل أسلوب الحلقة المتعددة الأجزاء"],"Custom Sports":[null,"الرياضة المخصصة"],"name sports shows differently than regular shows?":[null,"تسمية مسلسلات الأنيمي بإختلاف عن المسلسلات العادية؟"],"Toggle Sports Naming Legend":[null,"تبديل وسيلة إيضاح التسمية لبرامج الرياضة"],"Sports Air Date":[null,"تاريخ عرض العروض الرياضية"],"Custom Anime":[null,"أنمي مخصص"],"name anime shows differently than regular shows?":[null,"تسمية مسلسلات الأنيمي بإختلاف عن المسلسلات العادية؟"],"Toggle Anime Naming Legend":[null,"تفعيل تسمية Legend للأنيمي"],">XEM Season Number":[null,">رقم الموسم من XEM"],"Single-EP Anime Sample":[null,"عينة حلقة الإنيمي"],"Multi-EP Anime sample":[null,"عينة حلقة الأنيمي المتعددة الأجزاء"],"Add Absolute Number":[null,"إضافة العدد المطلق"],"add the absolute number to the season/episode format?":[null,"إضافة العدد المطلق لتنسيق الموسم/الحلقة؟"],"only applies to anime. (eg. S15E45 - 310 vs S15E45)":[null,""],"Only Absolute Number":[null,"فقط العدد المطلق"],"replace season/episode format with absolute number":[null,"استبدال تنسيق الموسم/الحلقة مع العدد المطلق"],"only applies to anime.":[null,""],"No Absolute Number":[null,"بدون العدد المطلق"],"don't include the absolute number":[null,"لا تشتمل على العدد المطلق"],"The data associated to the data. These are files associated to a TV show in the form of images and text that, when supported, will enhance the viewing experience.":[null,"البيانات المرتبطة بالبيانات. هذه هي الملفات المرتبطة بمسلسل في شكل نصوص و صور، و اللتي عندما تكون مدعومة، سوف تعزز من تجربة المشاهدة."],"Metadata Type":[null,"نوع بيانات التعريف"],"toggle metadata options that you wish to be created":[null,""],"multiple targets may be used":[null,""],"Select Metadata":[null,"حدد بيانات التعريف"],"Provider Priorities":[null,"أولويات مقدمي الخدمة"],"Provider Options":[null,"خيارات مقدمي الخدمة"],"Configure Custom Newznab Providers":[null,"إعدادات مقدمي خدمة Newznab مخصصين"],"Configure Custom Torrent Providers":[null,"إعدادات مقدمي خدمة تورينت مخصصين"],"Check off and drag the providers into the order you want them to be used.":[null,"اختر واسحب مقدمي الخدمات في الترتيب الذي تريده."],"At least one provider is required but two are recommended.":[null,"مقدم خدمة واحد على الأقل مطلوب ولكن ينصح باثنين."],"Torrent providers can be toggled in ":[null,"مقدمي خدمات التورينت يمكن تفعيلهم في "],"Provider does not support backlog searches at this time.":[null,"لا يدعم مقدم الخدمة البحث المتراكم في هذا الوقت."],"Provider is <b>NOT WORKING</b>.":[null,"مقدم الخدمة <b>لا يعمل</b>."],"Configure individual provider settings here.":[null,"ضبط إعدادات مقدم الخدمة."],"Check with provider's website on how to obtain an API key if needed.":[null,"تحقق من موقع ويب الخاص بمقدم الخدمة عن كيفية الحصول على مفتاح API إذا تطلب الأمر."],"Configure provider":[null,"الضبط - مقدمي الخدمات"],"no providers available to configure.":[null,"لا يوجد مقدمي خدمات متاحين للضبط."],"URL":[null,"عنوان URL"],"Enable daily searches":[null,"تمكين عمليات البحث اليومية"],"enable provider to perform daily searches.":[null,"تمكين مقدم الخدمة لإجراء عمليات البحث اليومية."],"Enable backlog searches":[null,"تمكين عمليات البحث المتراكمة"],"enable provider to perform backlog searches.":[null,"تمكين مقدم الخدمة لإجراء عمليات البحث المتراكة."],"Season search mode":[null,"وضع بحث الموسم"],"when searching for complete seasons you can choose to have it look for season packs only, or choose to have it build a complete season from just single episodes.":[null,"عند البحث عن مواسم كاملة يمكنك اختيار أن يكون البحث عن تحميل موسم كامل فقط، أو اختيار أن يكون التحميل لكل حلقة على حدة."],"season packs only.":[null,"موسم كامل فقط."],"episodes only.":[null,"الحلقات فقط."],"Enable fallback":[null,"تمكين التراجع"],"when searching for a complete season depending on search mode you may return no results, this helps by restarting the search using the opposite search mode.":[null,"عند البحث عن موسم كامل تبعاً لوضع البحث قد لا يتم العثور على نتائج، يساعد هذا قبل إعادة تشغيل البحث باستخدام طريقة البحث العكسي."],"Custom URL":[null,"عنوان URL مخصص"],"the URL should include the protocol (and port if applicable). Examples: http://192.168.1.4/ or http://localhost:3000/":[null,"ينبغي أن يتضمن عنوان URL على البروتوكول (والمنفذ إذا كان ذلك ممكناً). على سبيل المثال: http://192.168.1.4/أو http://localhost:3000/"],"Api key":[null,"مفتاح Api"],"Digest":[null,"Digest"],"Hash":[null,"Hash"],"Passkey":[null,"مفتاح المرور"],"Cookies":[null,"ملفات تعريف الارتباط"],"example: uid=1234;pass=567845439634987<br>note: uid and pass are not your username/password.<br>use DevTools or Firebug to get these values after logging in on your browser.":[null,""],"Pin":[null,"رقم التعريف الشخصي"],"Seed ratio":[null,"نسبة الـ Seed"],"stop transfer when ratio is reached<br>(-1 SickRage default to seed forever, or leave blank for downloader default)":[null,"إيقاف النقل عندما يتم التوصل إلى نسبة<br>؛ (-1 الافتراضي لـ SickRage هو -1 للرفع إلى الأبد، أو اترك المساحة فارغة لتنزيل الافتراضي)"],"Minimum seeders":[null,"الحد الأدنى من seeders"],"Minimum leechers":[null,"الحد الأدنى من leechers"],"Confirmed download":[null,"تأكيد التحميل"],"only download torrents from trusted or verified uploaders ?":[null,"تحميل التورنت فقط من المصادر الموثوق بها أو اللتي تم التحقق منها؟"],"Ranked torrents":[null,"ملفات تورينت المُصنفة"],"only download ranked torrents (trusted releases)":[null,"فقط تحميل ملفات التورينت المصنفة (الإصدارات الموثوق بها)"],"English torrents":[null,"التورينت الإنجليزية"],"only download english torrents, or torrents containing english subtitles":[null,"فقط قم بتحميل التورينت الإنجليزية، أو التورينت التي تحتوي على ترجمة باللغة الإنجليزية"],"For Spanish torrents":[null,"التورينت الإسبانية"],"ONLY search on this provider if show info is defined as \"Spanish\" (avoid provider's use for VOS shows)":[null,"البحث فقط في مقدم الخدمة هذا إذا كانت معلومات المسلسل معرفة بالـ \"الإسبانية\" (تجنب استخدام مقدم مسلسلات VOS)"],"Sorting results by":[null,"فرز النتائج حسب"],"Freeleech":[null,"Freeleech"],"only download <b>\"FreeLeech\"</b> torrents.":[null,"فقط تحميل ملفات التورنت <b>\"FreeLeech\"</b>."],"Category":[null,"الفئة"],"select torrent with Italian subtitle":[null,"حدد تورنت مع الترجمة الإيطالية"],"Configure Custom<br>Newznab Providers":[null,"إعدادات مقدمي<br>خدمات Newznab مخصصين"],"Add and setup or remove custom Newznab providers.":[null,"إضافة وإعداد أو إزالة مقدم خدمات Newznab مخصص."],"Select provider":[null,"حدد مقدم خدمة"],"-- add new provider --":[null,"-إضافة مقدم خدمة جديد-"],"Provider name":[null,"اسم مقدم الخدمة"],"Site URL":[null,"عنوان الموقع"],"Newznab search categories":[null,"فئات بحث Newznab"],"select your Newznab categories on the left, and click the \"update categories\" button to use them for searching.) <b>don't forget to to save the form!":[null,"حدد الفئات الخاصة بك في Newznab على الجانب الأيمن، وانقر فوق الزر \"تحديث الفئات\" لإستخدامها في البحث). <b>لا تنسى حفظ النموذج!"],"Update Categories":[null,"تحديث الفئات"],"Add":[null,"إضافة"],"Delete":[null,"حذف"],"Add and setup or remove custom RSS providers.":[null,"إضافة وإعداد أو إزالة مقدمي خدمة RSS مخصصة."],"RSS URL":[null,"رابط RSS"],"Search element":[null,"عنصر البحث"],"eg: title":[null,"مثلا: العنوان"],"Episode Search":[null,"البحث عن الحلقة"],"NZB Search":[null,"بحث NZB"],"Torrent Search":[null,"بحث تورينت"],"How to manage searching with":[null,"كيفية إدارة البحث مع"],"Randomize Providers":[null,"مقدمي الخدمات بطريقة عشوائية"],"randomize the provider search order instead of going in order of placement":[null,"عشوائية اختيار مقدمي الخدمة في البحث بدلاً من الترتيب المختار"],"Download propers":[null,"تحميل الإصدارات المصححة"],"replace original download with \"Proper\" or \"Repack\" if nuked":[null,"استبدال التحميل الأصلي بالـ \"المصحح\" أو \"المعاد ضغطه\" إن وجد"],"Check propers every":[null,"التحقق من الإصدارات المصححة كل"],"24 hours":[null,"24 ساعة"],"4 hours":[null,"4 ساعات"],"90 mins":[null,"90 دقيقة"],"45 mins":[null,"45 دقيقة"],"15 mins":[null,"15 دقيقة"],"Backlog search day(s)":[null,"أيام البحث المتراكم"],"number of day(s) that the \"Forced Backlog Search\" will cover (e.g. 7 Days)":[null,"عدد الأيام اللتي \"يجبر البحث المتراكم فيها\" سوف تغطي (مثلاً 7 أيام)"],"Backlog search frequency":[null,"تكرار البحث المتراكم"],"time in minutes between searches (min.":[null,"الوقت بالدقائق بين عمليات البحث (دقيقة."],"Daily search frequency":[null,"تكرار البحث اليومي"],"Usenet retention":[null,"مدة الاحتفاظ في Usenet"],"age limit in days for usenet articles to be used (e.g. 500)":[null,"الحد الأدنى لأيام استخدام مواد usenet (مثلاً 500)"],"Ignore words":[null,"الكلمات المتجاهله"],"results with one or more word from this list will be ignored<br>separate words with a comma, e.g. \"word1,word2,word3\"":[null,"أي نتيجة تحتوي على كلمة أو أكثر من هذه القائمة سيتم تجاهلها<br> الكلمات تفصل بفاصلة، مثلا \"كلمة 1، كلمة 2، كلمة 3\""],"Require words":[null,"الكلمات المطلوبة"],"results with no word from this list will be ignored<br>separate words with a comma, e.g. \"word1,word2,word3\"":[null,"أي نتيجة لا تحتوي على كلمة من هذه القائمة سيتم تجاهلها<br> الكلمات تفصل بفاصلة، مثلا \"كلمة 1، كلمة 2، كلمة 3\""],"Trackers list":[null,"قائمة الـ Trackers"],"trackers that will be added to magnets without trackers<br>separate trackers with a comma, e.g. \"tracker1,tracker2,tracker3\"":[null,"الـ Trackers التي ستضاف إلى روابط الـ magnets دون trackers؛ <br>منفصلة بفاصلة, مثل \"tracker1، tracker2، tracker3\""],"Ignore language names in subbed results":[null,"تجاهل أسماء اللغة في النتائج الفرعية"],"ignore subbed releases based on language names <br>\n Example: \"dk\" will ignore words: dksub, dksubs, dksubbed, dksubed <br>\n separate languages with a comma, e.g. \"lang1,lang2,lang3":[null,"تجاهل الإصدارات الفرعية على أساس أسماء اللغة <br>؛\n مثال: \"dk\" سيتم تجاهل الكلمات: dksub, dksubs, dksubbed, dksubed; و <br>؛ \n فصل اللغات بالفاصله ، مثل \"اللغة 1، الغة 2، اللغة 3\""],"Allow high priority":[null,"السماح بأولوية عالية"],"set downloads of recently aired episodes to high priority":[null,"ضبط الحلقات اللتي بثت مؤخرا إلى أولوية عالية"],"Use Failed Downloads":[null,"استخدام التحميلات اللتي فشلت"],"use Failed Download Handling?":[null,"استخدام معالجة فشل التحميل؟"],"will only work with snatched/downloaded episodes after enabling this":[null,"سوف تعمل فقط مع الحلقات المجلوبه/المحمله بعد تمكين هذا الخيار"],"Delete Failed":[null,"حذف التحميل الفاشل"],"delete files left over from a failed download?":[null,"حذف الملفات التي خلفها فشل التحميل؟"],"this only works if Use Failed Downloads is enabled.":[null,"يعمل هذا فقط إذا تم تمكين \"استخدام التحميلات اللتي فشلت\"."],"How to handle NZB search results.":[null,"كيفية التعامل مع نتائج بحث NZB."],"Search NZBs":[null,"بحث NZBs"],"enable NZB search providers":[null,"تمكين موفري بحث NZB"],"Send .nzb files to":[null,"إرسال ملفات.nzb إلى"],"SABnzbd server URL":[null,"عنوان URL لخادم SABnzbd"],"URL to your SABnzbd server (e.g. http://localhost:8080/)":[null,"عنوان URL الخاص بخادم SABnzbd (مثلاً من http://localhost:8080)"],"SABnzbd username":[null,"اسم المستخدم لـ SABnzbd"],"(blank for none)":[null,"(فارغ إذا لم يوجد)"],"SABnzbd password":[null,"كلمة المرور لـ SABnzbd"],"SABnzbd API key":[null,"مفتاح API لـ SABnzbd"],"locate at... SABnzbd Config -> General -> API Key":[null,"تجده في... ضبط SABnzbd -> عام -> مفتاح API"],"Use SABnzbd category":[null,"استخدام فئة SABnzbd"],"add downloads to this category (e.g. TV)":[null,"إضافة التحميل لهذه الفئة (مثل TV)"],"Use SABnzbd category (backlog episodes)":[null,"استخدم فئة SABnzbd (الحلقات المتراكمة)"],"add downloads of old episodes to this category (e.g. TV)":[null,"إضافة التحميل للحلقات القديمة لهذه الفئة (مثل TV)"],"Use SABnzbd category for anime":[null,"استخدام فئة SABnzbd للأنمي"],"add anime downloads to this category (e.g. anime)":[null,"إضافة تحميل الأنمي لهذه الفئة (مثل anime)"],"Use SABnzbd category for anime (backlog episodes)":[null,"استخدام فئة SABnzbd للأنمي (الحلقات المتراكمة)"],"add anime downloads of old episodes to this category (e.g. anime)":[null,"إضافة تحميل الأنيمي للحلقات القديمة لهذه الفئة (مثل anime)"],"Use forced priority":[null,"استخدام إجبار الأولوية"],"enable to change priority from HIGH to FORCED":[null,"تمكين تغيير الأولوية من عالية إلى إجبار"],"Black hole folder location":[null,"موقع المجلد لوضع الملفات فيه"],"<b>.nzb</b> files are stored at this location for external software to find and use":[null,"يتم تخزين ملفات <b>.nzb</b> في هذا الموقع لكي يتم إيجاده واستخدامه من البرامج الخارجية"],"Connect using HTTPS":[null,"الاتصال باستخدام HTTPS"],"enable Secure control in NZBGet and set the correct Secure Port here":[null,"تمكين التحكم بالمصدرفي NZBGet، و تعيين المنفذ الصحيح الآمن هنا"],"NZBget host:port":[null,"عنوان المضيف:المنفذ لـ NZBget"],"(e.g. localhost:6789)":[null,"(مثل localhost:6789)"],"NZBget RPC host name and port number (not NZBgetweb!)":[null,"عنوان المضيف و رقم المنفذ لـ NZBget RPC (وليس NZBgetweb!)"],"NZBget username":[null,"اسم المستخدم لـ NZBget"],"locate in nzbget.conf (default:nzbget)":[null,"حدده في nzbget.conf (الافتراضي: nzbget)"],"NZBget password":[null,"كلمة المرور لـ NZBget"],"locate in nzbget.conf (default:tegbzn6789)":[null,"حدده في nzbget.conf (الافتراضي: tegbzn6789)"],"Use NZBget category":[null,"استخدام فئة NZBget"],"send downloads marked this category (e.g. TV)":[null,"إضافة التحميل لهذه الفئة (مثل TV)"],"Use NZBget category (backlog episodes)":[null,"استخدم فئة NZBget (الحلقات المتراكمة)"],"send downloads of old episodes marked this category (e.g. TV)":[null,"إضافة التحميل للحلقات القديمة لهذه الفئة (مثل TV)"],"Use NZBget category for anime":[null,"استخدام فئة NZBget للأنمي"],"send anime downloads marked this category (e.g. anime)":[null,"إرسال تحميل الأنمي المحدد لهذه الفئة (مثل anime)"],"Use NZBget category for anime (backlog episodes)":[null,"استخدام فئة NZBget للأنمي (الحلقات المتراكمة)"],"send anime downloads of old episodes marked this category (e.g. anime)":[null,"إرسال تحميل الأنيمي المحدد للحلقات القديمة لهذه الفئة (مثل anime)"],"NZBget priority":[null,"الأولوية لـ NZBget"],"Very low":[null,"منخفضة جدًا"],"Low":[null,"منخفضة"],"Very high":[null,"عالية جدًا"],"Force":[null,"إجبار"],"priority for daily snatches (no backlog)":[null,"الأولوية بالنسبة للحلقات المجلوبة يوميا (بدون تراكم)"],"Torrent host:port":[null,"عنوان المضيف:المنفذ للتورينت"],"URL to your Synology DSM (e.g. http://localhost:5000/)":[null,"عنوان URL الخاص بـ Synology DSM (مثلاً http://localhost:5000)"],"Client username":[null,"اسم المستخدم للعميل"],"Client password":[null,"كلمة مرور العميل"],"Downloaded files location":[null,"موقع الملفات التي تم تحميلها"],"where Synology Download Station will save downloaded files (blank for client default)":[null,"حيث سيتم حفظ ملفات Synology Download Station (فارغة للعميل الافتراضي)"],"the destination has to be a shared folder for Synology DS":[null,"الوجهة يجب أن يكون مجلد مشاركة لـ Synology DS"],"Click below to test":[null,"انقر أدناه للتحقق"],"How to handle Torrent search results.":[null,"كيفية التعامل مع نتائج بحث التورينت."],"Search torrents":[null,"البحث في التورينت"],"enable torrent search providers":[null,"تمكين موفري البحث تورنت"],"Send .torrent files to":[null,"إرسال ملفات تورنت إلى"],"<b>.torrent</b> files are stored at this location for external software to find and use":[null,"يتم تخزين ملفات <b>.torrent</b> في هذا الموقع لكي يتم إيجاده واستخدامه من البرامج الخارجية"],"URL to your torrent client (e.g. http://localhost:8000/)":[null,"عنوان URL الخاص ببرنامج التورينت (مثلاً من http://localhost:8000)"],"Torrent RPC URL":[null,"عنوان URL تورينت RPC"],"the path without leading and trailing slashes (e.g. transmission)":[null,"المسار دون علامة \"\\\" البادئة والزائدة (مثل transmission)"],"Http Authentication":[null,"مصادقة http"],"Verify certificate":[null,"التحقق من الشهادة"],"disable if you get \"Deluge: Authentication Error\" in your log":[null,"تعطيل إذا كنت تحصل على \"Deluge: خطأ مصادقة\" في السجل الخاص بك"],"verify SSL certificates for HTTPS requests":[null,"التحقق من شهادات SSL لطلبات HTTPS"],"Add label to torrent":[null,"إضافة تسمية \"label \" إلى التورينت"],"(blank spaces are not allowed)":[null,"(غير مسموح بمسافات فارغة)"],"label plugin must be enabled in Deluge clients":[null,"يجب تفعيل إضافة التسمية في عملاء Deluge"],"for QBitTorrent 3.3.1 and up":[null,"لـ QBitTorrent 3.3.1 وما فوق"],"Add label to torrent for anime":[null,"إضافة تسمية \"label \" إلى تورينت لأنمي"],"for QBitTorrent 3.3.1 and up ":[null,"لـ QBitTorrent 3.3.1 وما فوق "],"where <span id=\"torrent_client\">the torrent client</span> will save downloaded files (blank for client default)":[null,"حيث سيحفظ <span id=\"torrent_client\">برنامج التورينت</span> المفات (فارغ للإفتراضي من البرنامج)"],"the destination has to be a shared folder for Synology DS</span>":[null,"الوجهة يجب أن يكون مجلد مشاركة لـ Synology DS"],"Minimum seeding time":[null,"الحد الأدنى لمدة الرفع"],"time in hours":[null,"الوقت بالساعات"],"(default:'0' passes blank to client and '-1' passes nothing)":[null,"(الافتراضي: '0' يمرر فارغ إلى البرنامج و'-1' يمرر لا شيء)"],"Start torrent paused":[null,"بدء التورنت في وضع التوقف المؤقت"],"add .torrent to client but do <b style=\"font-weight:900\">not</b> start downloading":[null,"إضافة تورنت إلى برنامج التورينت ولكن <b style=\"font-weight:900\">لا</b> تبدأ تحميله"],"Allow high bandwidth":[null,"السماح بنطاق عالي"],"use high bandwidth allocation if priority is high":[null,"استخدام النطاق العالي إذا كانت الأولوية عالية"],"Test Connection":[null,"تجربة الإتصال"],"Windows Shares":[null,""],"Defines your existing windows shares so that we can add them to the browse dialog":[null,""],"Share #{number}":[null,""],"Share label":[null,""],"Hostname or IP":[null,""],"Share path":[null,""],"Subtitles Search":[null,"البحث عن الترجمة"],"Subtitles Plugin":[null,"إضافات الترجمة"],"Plugin Settings":[null,"إعدادات الإضافات"],"Settings that dictate how SickRage handles subtitles search results.":[null,"الإعدادات التي تملي كيف يتعامل SickRage مع نتائج بحث ترجمة."],"Search Subtitles":[null,"البحث عن الترجمة"],"Subtitle Languages":[null,"لغات الترجمة"],"Subtitle Directory":[null,"مجلد الترجمة"],"the directory where SickRage should store your <i>Subtitles</i> files.":[null,"المجلد حيث يقوم SickRage بتخزين ملفات <i>الترجمة</i> الخاصة بك."],"leave empty if you want store subtitle in episode path.":[null,"اتركه فارغاً إذا كنت تريد تخزين الترجمة في مجلد الحلقة."],"Subtitle Find Frequency":[null,"تكرار البحث عن الترجمة"],"time in hours between scans (default: 1)":[null,"الوقت بالساعات بين المسح (الافتراضي: 1)"],"Include Specials":[null,""],"include the show's specials when searching for subtitles?":[null,""],"Perfect matches":[null,"تطابق تام"],"only download subtitles that match: release group, video codec, audio codec and resolution":[null,"تحميل فقط الترجمة التي تتطابق مع: مجموعة الإصدار و ترميز الفيديو، وترميز الصوت و الجودة"],"if disabled you may get out of sync subtitles":[null,"في حال التعطيل، قد تحصل على ترجمات غير متزامنة"],"Subtitles History":[null,"سجل الترجمة"],"log downloaded Subtitle on History page?":[null,"تسجيل الترجمات المحملة في صفحة المحفوظات؟"],"Subtitles Multi-Language":[null,"ترجمات متعددة اللغات"],"append language codes to subtitle filenames?":[null,"إلحاق رموز اللغة بأسماء ملفات الترجمة ؟"],"this option is required if you use multiple subtitle languages":[null,"هذا الخيار مطلوب إذا كنت تستخدم لغات متعددة في الترجمة"],"Delete unwanted subtitles":[null,"حذف الترجمات غير المرغوب فيها"],"enable to delete unwanted subtitle languages bundled with release":[null,"تمكين حذف لغات الترجمة غير المرغوب فيها المحملة مع الحلقة"],"Embedded Subtitles":[null,"الترجمات المحملة مع الحلقة"],"ignore subtitles embedded inside video file?":[null,"تجاهل الترجمة المضمنة داخل ملف الفيديو؟"],"this will ignore <u>all</u> embedded subtitles for every video file!":[null,"سيتم تجاهل <u>كافة</u>الترجمات المضمنة لكل ملف فيديو!"],"Hearing Impaired Subtitles":[null,"ترجمات ضعاف السمع"],"download hearing impaired style subtitles?":[null,"تحميل نمط ترجمات ضعيفي السمع؟"],"See":[null,"انظر"],"for a script arguments description.":[null,"للحصول على وصف script arguments."],"Additional scripts separated by <b>|</b>.":[null,"برامج نصية إضافية مفصولة بـ <b>|</b>."],"Scripts are called after each episode has searched and downloaded subtitles.":[null,"البرامج النصية تستدعى بعد البحث عن الحلقة و تحميلها ترجمتها."],"For any scripted languages, include the interpreter executable before the script. See the following example":[null,"للغات البرمجة النصية، وتشمل مترجم قابل للتنفيذ من قبل البرنامج النصي. انظر المثال التالي"],"For Windows:":[null,"لنظام التشغيل ويندوز:"],"For Linux / OS X:":[null,"لنظام لينكس/ماك:"],"Subtitle Providers":[null,"مقدمي خدمات الترجمة"],"Check off and drag the plugins into the order you want them to be used.":[null,"اختر واسحب الإضافات المراد استخدامها في الترتيب الذي تريده."],"At least one plugin is required.":[null,"إضافة واحده على الأقل مطلوبة."]," Web-scraping plugin":[null," إضافات Web-scraping"],"Provider Settings":[null,"خيارات مقدمي الخدمة"],"Set user and password for each provider":[null,"تعيين اسم المستخدم وكلمة المرور لكل مقدم خدمة"],"User Name":[null,"اسم المستخدم"],"Change Show":[null,"تغيير المسلسل"],"Prev Show":[null,"المسلسل السابق"],"Next Show":[null,"المسلسل التالي"],"Jump to Season":[null,"الانتقال إلى المسلسل"],"Specials":[null,"الحلقات الخاصة"],"Poster for":[null,"ملصق لـ"],"Stars":[null,"نجوم"],"minutes":[null,"دقائق"],"View other popular {genre} shows on trakt.tv.":[null,"عرض مسلسلات شائعه أخرى {genre} في trakt.tv."],"View other popular {imdbgenre} shows on IMDB.":[null,"عرض مسلسلات شائعه أخرى {imdbgenre} في IMDB."],"Allowed":[null,"مسموح به"],"Preferred":[null,"المفضل"],"Originally Airs":[null,"البث الرئيسي"],"Show Status":[null,"حالة المسلسل"],"Default EP Status":[null,"الحالة الإفتراضية للحلقة"],"Location":[null,"الموقع"],"Missing":[null,"مفقوده"],"Scene Name":[null,"اسم المشهد"],"Required Words":[null,"الكلمات المطلوبة"],"Ignored Words":[null,"الكلمات المتجاهله"],"Size":[null,"الحجم"],"Info Language":[null,"معلومات اللغة"],"Subtitles SR Metadata":[null,""],"Season Folders":[null,"مجلدات الموسم"],"Paused":[null,"الإيقاف المؤقت"],"Air-by-Date":[null,"Air-By-Date"],"Sports":[null,"عرض رياضي"],"DVD Order":[null,"ترتيب دي ڤي دي"],"Scene Numbering":[null,"استثناءات أرقام الحلقات"],"Select Filtered Episodes":[null,"حدد الحلقات التي تمت تصفيتها"],"Clear All":[null,"مسح الكل"],"Change selected episodes to":[null,"تغيير الحلقات المختارة إلى"],"Select Columns":[null,"حدد الأعمدة"],"Hide Episodes":[null,""],"Show Episodes":[null,"حلقات المسلسل"],"NFO":[null,"NFO"],"TBN":[null,"TBN"],"Episode":[null,"الحلقة"],"Absolute":[null,"مُطلق"],"Scene":[null,"المشهد"],"Scene Absolute":[null,"المشهد المطلق"],"File Name":[null,"اسم الملف"],"Airdate":[null,"موعد العرض"],"Download":[null,"التحميل"],"Change the value here if scene numbering differs from the indexer episode numbering":[null,"قم بتغيير القيمة هنا إذا كانت (استثناءات أرقام الحلقات) تختلف عن ترقيم المفهرس للحلقة"],"Change the value here if scene absolute numbering differs from the indexer absolute numbering":[null,"قم بتغيير القيمة هنا إذا كانت رقم الحلقة المطلق يختلف عن ترقيم المفهرس المطلق للحلقة"],"Manual Search":[null,"البحث اليدوي"],"Do you want to mark this episode as failed?":[null,"هل تريد وضع علامة على هذه الحلقة بأنها فشلت؟"],"The episode release name will be added to the failed history, preventing it to be downloaded again.":[null,"اسم إصدار الحلقة سيضاف إلى سجل المحفوظات الفاشلة، مما سيمنع من تحميلها مرة أخرى."],"Do you want to include the current episode quality in the search?":[null,"هل تريد أن تشمل جودة الحلقة الحالية في البحث؟"],"Choosing No will ignore any releases with the same episode quality as the one currently downloaded/snatched.":[null,"اذا تم اختيار لا، سيتم تجاهل أي إصدارات بنفس جودة الحلقة اللتي تم تحميلها/ جلبها حاليا."],"Download subtitle":[null,"تحميل الترجمة"],"Do you want to re-download the subtitle for this language?":[null,""],"It will overwrite your current subtitle":[null,""],"Format":[null,"التنسيق"],"Advanced":[null,"إعدادات متقدمة"],"Main Settings":[null,"الإعدادات الرئيسية"],"Show Location":[null,"مكان المسلسل"],"Preferred Quality":[null,"الجودة المفضلة"],"Default Episode Status":[null,"الحالة الإفتراضية للحلقة"],"this will set the status for future episodes.":[null,"سيؤدي هذا إلى تعيين الحالة للحلقات المقبلة."],"this only applies to episode filenames and the contents of metadata files.":[null,"ينطبق هذا فقط على أسماء الحلقة ومحتويات ملفات بيانات التعريف."],"search for subtitles":[null,"البحث عن الترجمة"],"Use SR Metdata":[null,"استخدام بيانات تعريف SickRage"],"use SickRage metadata when searching for subtitle, this will override the autodiscovered metadata":[null,""],"pause this show (SickRage will not download episodes)":[null,"إيقاف هذا المسلسل (SickRage لن يقوم بتحميل الحلقات)"],"Format Settings":[null,"إعدادات التنسيق"],"Air by date":[null,"Air by date"],"check if the show is released as Show.03.02.2010 rather than Show.S02E03.":[null,"تحقق إذا كان المسلسل أُصدر كـ Show.03.02.2010 بدلاً من Show.S02E03."],"in case of an air date conflict between regular and special episodes, the later will be ignored.":[null,"في حالة تعارض مواعيد العرض بين الحلقات العادية والخاصة، سيتم تجاهل المتأخره."],"check if the show is Anime and episodes are released as Show.265 rather than Show.S02E03":[null,"تحقق إذا كان المسلسل أنيمي وتم إصدار الحلقات كـ Show.265 بدلاً من Show.S02E03"],"check if the show is a sporting or MMA event released as Show.03.02.2010 rather than Show.S02E03":[null,"تحقق إذا كان المسلسل عرض رياضي أو حدث MMA وتم إصداره كـ Show.03.02.2010 بدلاً من Show.S02E03"],"Season folders":[null,"مجلدات الموسم"],"group episodes by season folder (uncheck to store in a single folder)":[null,"جمع الحلقات حسب مجلد الموسم (قم بإلغاء التحديد للتخزين في مجلد واحد)"],"search by scene numbering (uncheck to search by indexer numbering)":[null,"البحث عن طريق استثناءات أرقام الحلقات (قم بإلغاء التحديد للبحث بواسطة ترقيم المفهرس)"],"use the DVD order instead of the air order":[null,"استخدام ترتيب دي في دي بدلاً من موعد العرض"],"a \"Force Full Update\" is necessary, and if you have existing episodes you need to sort them manually.":[null,"\"إجبار التحديث\" أمر ضروري، وإذا كان لديك حلقات موجودة تحتاج إلى فرزها يدوياً."],"comma-separated <i>e.g. \"word1,word2,word3</i>\"":[null,"مفصول بفاصلة <i>مثل \"الكلمة 1، الكلمة 2، الكلمة 3\"</i>"],"search results with one or more words from this list will be ignored.":[null,"نتائج البحث اللتي تحتوي على كلمة من هذه الكلمات سيتم تجاهلها."],"e.g. \"word1,word2,word3\"":[null,"مثل \"الكلمة 1، الكلمة 2، الكلمة 3\""],"search results with no words from this list will be ignored.":[null,"نتائج البحث اللتي لا تحتوي على كلمة من هذه الكلمات سيتم تجاهلها."],"Scene Exception":[null,"استثناءات أسماء الحلقات"],"this will affect episode search on NZB and torrent providers.":[null,""],"this list appends to the original show name.":[null,""],"WARNING logs":[null,"سجلات التحذير"],"ERROR logs":[null,"سجلات الخطأ"],"There are no events to display.":[null,"لا توجد أية أحداث لعرضها."],"Limit":[null,"الحد الأقصى"],"Layout":[null,"التصميم"],"HistoryLayout":[null,"طريقة عرض المحفوظات"],"Compact":[null,"مضغوط"],"Detailed":[null,"مفصلة"],"Time":[null,"الوقت"],"Provider":[null,"مقدم الخدمة"],"Missing Provider":[null,"مقدم الخدمة مفقود"],"missing provider":[null,"مقدم الخدمة مفقود"],"Directory":[null,"المجلد"],"Show Name (tvshow.nfo)":[null,"اسم المسلسل (tvshow.nfo)"],"Indexer":[null,"المفهرس"],"Enter the folder containing the episode":[null,"أدخل المجلد الذي يحتوي الحلقة"],"Process Method to be used":[null,"طريقة المعالجة اللتي تريد استخدامها"],"Copy":[null,"نسخ"],"Move":[null,"نقل"],"Hard Link":[null,"ارتباط ثابت"],"Symbolic Link":[null,"ارتباط رمزي"],"Symbolic Link Reversed":[null,""],"Force already Post Processed Dir/Files":[null,"إجبار المجلدات/الملفات المعالجة مسبقا"],"Mark Dir/Files as priority download":[null,"تحديد المجلدات/الملفات حسب أولوية التحميل"],"(Check it to replace the file even if it exists at higher quality)":[null,"(التحقق لإستبدال الملف حتى إذا كان موجود بجودة أعلى)"],"Delete files and folders":[null,"حذف الملفات والمجلدات"],"(Check it to delete files and folders like auto processing)":[null,"(التحقق منه لحذف الملفات والمجلدات مثل المعالجة التلقائية)"],"Don't use processing queue":[null,""],"(If checked this will return the result of the process here, but may be slow!)":[null,""],"Mark download as failed":[null,"وسم التحميل كفاشل"],"Process":[null,"معالجة"],"Download subtitles for this show?":[null,"تحميل ترجمات لهذا المسلسل؟"],"use SickRage metadata when searching for subtitle, <br />this will override the autodiscovered metadata":[null,""],"Status for previously aired episodes":[null,"حالة الحلقات اللتي بثت سابقا"],"Status for all future episodes":[null,"حالة الحلقات اللتي ستبثت مستقبلا"],"Group episodes by season folder?":[null,""],"Is this show an Anime?":[null,"هل هذا المسلسل أنمي؟"],"Is this show scene numbered?":[null,"هل هناك استثناءات أرقام الحلقات في هذا المسلسل؟"],"Save Defaults":[null,"حفظ الإعدادات الافتراضية"],"Use current values as the defaults":[null,"استخدام القيم الحالية كافتراضية"],"<p>Select your preferred fansub groups from the <b>Available Groups</b> and add them to the <b>Whitelist</b>. Add groups to the <b>Blacklist</b> to ignore them.</p>\n <p>The <b>Whitelist</b> is checked <i>before</i> the <b>Blacklist</b>.</p>\n <p>Groups are shown as <b>Name</b> | <b>Rating</b> | <b>Number of subbed episodes</b>.</p>\n <p>You may also add any fansub group not listed to either list manually.</p>\n <p>When doing this please note that you can only use groups listed on anidb for this anime.\n <br>If a group is not listed on anidb but subbed this anime, please correct anidb's data.</p>":[null,"<p>تحديد المجموعات fansub المفضلة الخاصة بك من <b>المجموعات المتوفرة</b> وإضافتها إلى <b>القائمة البيضاء</b>. إضافة مجموعات إلى <b>القائمة السوداء</b> لتجاهلها.</p> \n <p><b>القائمة البيضاء</b> يتم فحصها <i>قبل</i> <b>القائمة السوداء.</b>-</p> \n <p>يتم عرض المجموعات كـ<b>اسم</b> | <b>تصنيف</b> | <b>عدد الحلقات subbed</b>-</p> \n <p>يمكنك أيضا إضافة أي مجموعة fansub غير مدرجة على أي من القائمتين يدوياً.</p> \n <p>عند القيام بهذا يرجى ملاحظة أنه يمكنك فقط استخدام المجموعات المدرجة في anidb لهذا الـ anime؛.\n ؛<br>إذا لم يتم سرد مجموعة في anidb، يرجى تصحيح البيانات في anidb ؛-</p>"],"Whitelist":[null,"القائمة البيضاء"],"Available Groups":[null,"المجموعات المتوفرة"],"Add to Whitelist":[null,"إضافة إلى القائمة البيضاء"],"Add to Blacklist":[null,"إضافة إلى القائمة السوداء"],"Blacklist":[null,"القائمة السوداء"],"Custom Group":[null,"مجموعة مخصصة"],"Allowed Quality:":[null,"الجودة المسموحه:"],"Preferred Quality:":[null,"الجودة المفضلة:"],"Filter Show Name":[null,"تصفية اسم المسلسل"],"Root":[null,"الجذر"],"All":[null,"الكل"],"Clear Filter(s)":[null,"مسح التصفية"],"Poster":[null,"ملصق"],"Small Poster":[null,"ملصق صغير"],"Banner":[null,"شعار"],"Simple":[null,"بسيط"],"Next Episode":[null,"الحلقة القادمة"],"Progress":[null,"تقدم"],"Direction":[null,"الاتجاه"],"Ascending":[null,"ترتيب تصاعدي"],"Descending":[null,"ترتيب تنازلي"],"Poster Size":[null,"حجم الملصق"],"Continuing":[null,"مستمر"],"Ended":[null,"منتهي"],"Total":[null,"المجموع"],"Invalid date":[null,"تاريخ غير صالح"],"No Network":[null,"لا توجد شبكة"],"Next Ep":[null,"الحلقة التالية"],"Prev Ep":[null,"الحلقة السابقة"],"Show":[null,"مسلسل"],"Downloads":[null,"التحميلات"],"Active":[null,"نشط"],"loading":[null,"جار التحميل"],"Loading...":[null,"جاري التحميل..."],"<p><b><u>Preferred</u></b> qualities will replace those in <b><u>allowed</u></b>, even if they are lower.</p>":[null,"<u><b><p>االجودة المفضلة</u>؛</b> ستستبدل الجودات <u><b>المسموحه</u>؛</b> حتى لو كانت أقل منها.</p>"],"New":[null,"جديد"],"Set as Default":[null,"تعيين كافتراضي"],"Remember me":[null,"تذكّرني"],"Edit Selected":[null,"تعديل المحددة"],"Subtitle":[null,"الترجمة"],"Default Ep Status":[null,"الحالة الإفتراضية للحلقة"],"Update":[null,"تحديث"],"Rescan":[null,"إعادة فحص"],"Rename":[null,"إعادة التسمية"],"Search Subtitle":[null,"البحث عن الترجمة"],"Force Metadata Regen":[null,"إجبار ملفات تعريف Regen"],"Snatched (Allowed)":[null,"تم جلبها (إصدار مسموح به)"],"Jump to Show":[null,"الانتقال إلى المسلسل"],"Force Backlog":[null,"إجبار المتراكم"],"Manage episodes with status":[null,"إدارة الحلقات الموجود لها حالة"],"Manage":[null,"إدارة"],"None of your episodes have status":[null,"ليس لدى أي من الحلقات الخاصة بك حالة"],"Shows containing":[null,"المسلسلات تحتوي على"],"episodes":[null,"الحلقات"],"Set checked shows/episodes to":[null,"ضبط المسلسلات/الحلقات المحددة إلى"],"Go":[null,"اذهب"],"Select all":[null,"تحديد الكل"],"Clear all":[null,"مسح الكل"],"Release":[null,"الإصدار"],"Backlog Search":[null,"البحث المتراكم"],"Not in progress":[null,"ليس في طور التقدم"],"In Progress":[null,"مستمر"],"Daily Search":[null,"البحث اليومي"],"Find Propers Search":[null,"العثور على البحث المصحح"],"Propers search disabled":[null,"البحث عن المصحح، معطل"],"Subtitle Search":[null,"البحث عن الترجمة"],"Subtitle search disabled":[null,"البحث عن الترجمة معطل"],"Search Queue":[null,"البحث في قائمة الإنتظار"],"pending items":[null,"العناصر المعلقة"],"Daily":[null,"يومي"],"Manual":[null,"يدوي"],"Changing any settings marked with (<span class=\"separator\">*</span>) will force a refresh of the selected shows.":[null,"تغيير أي إعدادات محدده بـ (<span class=\"separator\">*</span>) سيتم إجبار تحديث المسلسلات المحددة."],"Selected Shows":[null,"مسلسلات مختارة"],"Root Directories":[null,"المجلدات الرئيسية"],"Current":[null,"الحالي"],"Keep":[null,"الإحتفاظ"],"Custom":[null,"مخصص"],"Group episodes by season folder (set to \"No\" to store in a single folder).":[null,"جمع الحلقات بمجلد الموسم (اختر \"لا\" للتخزين في مجلد واحد)."],"Pause these shows (SickRage will not download episodes).":[null,"إيقاف هذه المسلسلات (SickRage لن يقوم بتحميل الحلقات)."],"This will set the status for future episodes.":[null,"سيؤدي هذا إلى تعيين الحالة للحلقات المقبلة."],"Search by scene numbering (set to \"No\" to search by indexer numbering).":[null,"البحث عن طريق استثناءات أرقام الحلقات (اختر \"لا\" للبحث بواسطة ترقيم المفهرس)."],"Set if these shows are Anime and episodes are released as Show.265 rather than Show.S02E03":[null,"تحقق إذا كانت هذه المسلسلات أنيمي وتم إصدار الحلقات كـ Show.265 بدلاً من Show.S02E03"],"Set if these shows are sporting or MMA events released as Show.03.02.2010 rather than Show.S02E03.":[null,"تحقق إذا كانت هذه المسلسلات هي عروض رياضية أو أحداث MMA وتم إصدارها كـ Show.03.02.2010 بدلاً من Show.S02E03."],"In case of an air date conflict between regular and special episodes, the later will be ignored.":[null,"في حالة تعارض مواعيد العرض بين الحلقات العادية والخاصة، سيتم تجاهل المتأخره."],"Set if these shows are released as Show.03.02.2010 rather than Show.S02E03.":[null,"تحقق إذا كانت المسلسلات أُصدرت كـ Show.03.02.2010 بدلاً من Show.S02E03."],"Search for subtitles.":[null,"البحث عن الترجمة."],"All of your episodes have {subsLanguage} subtitles.":[null,"جميع الحلقات الخاصة بك تحتوي على ترجمات {subsLanguage}."],"Manage episodes without":[null,"إدارة الحلقات بدون"],"Episodes without {subsLanguage} subtitles.":[null,"حلقات دون ترجمة {subsLanguage}."],"Episodes without {subtitleLanguage} (undefined) subtitles.":[null,"الحلقات دون ترجمات {subtitleLanguage} (غير محدد)."],"Download missed subtitles for selected episodes":[null,"تحميل ترجمة للحلقات المحددة"],"Performing Restart":[null,"يتم إعادة التشغيل"],"Waiting for SickRage to shut down":[null,"في انتظار إيقاف SickRage"],"Waiting for SickRage to start again":[null,"في انتظار تشغيل SickRage"],"Loading the default page":[null,"تحميل الصفحة الافتراضية"],"Error: The restart has timed out, perhaps something prevented SickRage from starting again?":[null,"خطأ: انتهت مهلة إعادة التشغيل ، ربما شيء يمنع SickRage من بدء التشغيل مرة أخرى؟"],"Key":[null,"مفتاح"],"Missed":[null,"فائتة"],"Today":[null,"اليوم"],"Soon":[null,"قريبا"],"Later":[null,"لاحقاً"],"Subscribe":[null,"الاشتراك"],"Date":[null,"التّاريخ"],"View Paused":[null,"العرض متوقف"],"Hidden":[null,"مخفي"],"Shown":[null,"ظاهر"],"Calendar":[null,"التقويم"],"List":[null,"القائمة"],"Ends":[null,"إنتهى"],"Next Ep Name":[null,"اسم الحلقة التالية"],"Run time":[null,"وقت التشغيل"],"Indexers":[null,"المفهرسين"],"No shows for this day":[null,"لا مسلسلات في هذا اليوم"],"Airs":[null,"تبث"],"Plot":[null,"الحبكة"],"Show Update":[null,"عرض التحديث"],"Version Check":[null,"التحقق من الإصدار"],"Proper Finder":[null,"الباحث عن الإصدار المصحح"],"Post Process":[null,"المعالجة"],"Subtitles Finder":[null,"الباحث عن الترجمة"],"Scheduler":[null,"الجدولة"],"Alive":[null,"مستمر"],"Start Time":[null,"وقت البداية"],"Cycle Time":[null,"وقت الدورة"],"Next Run":[null,"التشغيل التالي"],"Last Run":[null,"آخر تشغيل"],"Silent":[null,"صامت"],"True":[null,"صحيح"],"N/A":[null,"غير موجود"],"Show id":[null,"رقم معرف المسلسل"],"Show name":[null,"اسم المسلسل"],"Priority":[null,"الأولوية"],"Added":[null,"أضيف"],"Queue type":[null,"نوع قائمة الانتظار"],"LOW":[null,"منخفض"],"NORMAL":[null,"عادي"],"HIGH":[null,"عالي"],"Disk Space":[null,"مساحة القرص"],"Free space":[null,"المساحة الحرة"],"TV Download Directory":[null,"مجلد تحميل المسلسلات"],"Media Root Directories":[null,"المجلدات الرئيسية للوسائط"],"Preview of the proposed name changes":[null,"معاينة التغييرات المقترحه للإسم"],"All Seasons":[null,"جميع المواسم"],"select all":[null,"اختيار الكل"],"Rename Selected":[null,"إعادة تسمية المحدد"],"Cancel Rename":[null,"إلغاء إعادة تسمية"],"Old Location":[null,"الموقع القديم"],"New Location":[null,"الموقع الجديد"],"Trakt API did not return any results, please check your config.":[null,"Trakt API لم ترجع أي نتائج، الرجاء التحقق من الضبط الخاص بك."],"votes":[null,"التصويت"],"Remove Show":[null,"إزالة المسلسل"],"Level":[null,"المستوى"],"Filter":[null,"المرشح"],"All non-absolute folder locations are relative to ":[null,"جميع مواقع المجلدات غير المطلقة منسوبة إلى "],"Manual Post-Processing":[null,"المالجة اليدوية"],"Episode Status Management":[null,"إدارة حالة الحلقات"],"Update PLEX":[null,"تحديث PLEX"],"Update KODI":[null,"تحديث KODI"],"Update Emby":[null,"تحديث Emby"],"Missed Subtitle Management":[null,"إدارة الترجمات المفقودة"],"Help & Info":[null,"مساعدة & معلومات"],"Backup & Restore":[null,"النسخ الاحتياطي & الإستعادة"],"Tools":[null,"أدوات"],"Support SickRage":[null,"دعم SickRage"],"View Errors":[null,"عرض الأخطاء"],"View Warnings":[null,"عرض التحذيرات"],"View Log":[null,"عرض السجل"],"Check For Updates":[null,"التحقق من وجود تحديثات"],"Restart":[null,"إعادة التشغيل"],"Shutdown":[null,"إيقاف التشغيل"],"Logout":[null,"تسجيل خروج"],"Server Status":[null,"حالة الخادم"],"View overview of snatched episodes":[null,"عرض نظرة عامة على الحلقات المجلوبة"],"Episodes Downloaded":[null,"الحلقات المحملة"],"Memory used":[null,"الذاكرة المستخدمة"],"Load time":[null,"وقت التحميل"],"Branch":[null,"فرع"],"Now":[null,"الآن"]}}}} \ No newline at end of file +{"messages":{"domain":"messages","locale_data":{"messages":{"100":[null,"100"],"250":[null,"250"],"500":[null,"500"],"":{"domain":"messages","plural_forms":"nplurals=6; plural=(n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5);","lang":"ar_SA"},"Drama":[null,"دراما"],"Mystery":[null,"غموض"],"Science-Fiction":[null,"خيال علمي"],"Crime":[null,"جريمة"],"Action":[null,"حركة"],"Comedy":[null,"كوميديا"],"Thriller":[null,"إثارة"],"Animation":[null,"رسوم متحركة"],"Family":[null,"عائلي"],"Fantasy":[null,"خيال"],"Adventure":[null,"مغامرة"],"Horror":[null,"رعب"],"Film-Noir":[null,"Film-Noir"],"Sci-Fi":[null,"خيال علمي"],"Romance":[null,"رومانسي"],"Sport":[null,"رياضة"],"War":[null,"حرب"],"Biography":[null,"سيرة ذاتية"],"History":[null,"السجل"],"Music":[null,"موسيقى"],"Western":[null,"غربي"],"News":[null,"الأخبار"],"Sitcom":[null,"مسلسل كوميدي"],"Reality-TV":[null,"تلفزيون الواقع"],"Documentary":[null,"وثائقي"],"Game-Show":[null,"برنامج ألعاب"],"Musical":[null,"موسيقي"],"Talk-Show":[null,"برنامج حواري"],"Started Download":[null,"بدأ التحميل"],"Download Finished":[null,"انتهى التحميل"],"Subtitle Download Finished":[null,"انتهى تحميل الترجمة"],"SickRage Updated":[null,"تم تحديث سيكراج"],"SickRage Updated To Commit#: ":[null,"تم تحديث سيكراج الى تجديد#: "],"SickRage new login":[null,"تسجيل دخول جديد سيكراج"],"New login from IP: {0}. http://geomaplookup.net/?ip={0}":[null,"تسجيل دخول جديد من IP: {0}. http://geomaplookup.net/?ip={0}"],"Repeat":[null,"تكرار"],"Repeat (Separated)":[null,"تكرار (مفصولة)"],"Extend":[null,"تمديد"],"Extend (Limited)":[null,"تمديد (محدود)"],"Extend (Limited, E-prefixed)":[null,"تمديد (محدود، مسبوقة بحرف-E)"],"Downloaded":[null,"تم التحميل"],"Snatched":[null,"تم جلبها"],"Snatched (Proper)":[null,"تم جلبها (إصدار مصحح)"],"Failed":[null,"فشل"],"Snatched (Best)":[null,"تم جلبها (الإصدار الأفضل)"],"Archived":[null,"مؤرشفة"],"Unknown":[null,"غير معروف"],"Unaired":[null,"غير مذاع"],"Skipped":[null,"متخطى"],"Wanted":[null,"مطلوب"],"Ignored":[null,"تجاهل"],"Subtitled":[null,"مترجم"],"For best results please set the Download Station alias as":[null,"للحصول على أفضل النتائج يرجى تعيين اسم مستعار لـ Download Station"],"You can check this setting in the Synology DSM":[null,"يمكنك التحقق من هذا الإعداد في Synology DSM"],"Control Panel":[null,"لوحة التحكم"],"Application Portal":[null,"بوابة التطبيقات"],"Make sure you allow DSM to be embedded with iFrames too in":[null,"تأكد من السماح لـ DSM بأن يكون مضمّن في iFrames أيضاً في"],"DSM Settings":[null,"إعدادات DSM"],"Security":[null,"الأمان"],"<No Filter>":[null,"< لا يوجد تصفية >"],"Daily Searcher":[null,"الباحث اليومي"],"Backlog":[null,"المتراكم"],"Show Updater":[null,"مُحدث المسلسلات"],"Check Version":[null,"التحقق من الإصدار"],"Show Queue":[null,"عرض قائمة الانتظار"],"Search Queue (All)":[null,"قائمة انتظار البحث (الكل)"],"Search Queue (Daily Searcher)":[null,"قائمة انتظار البحث (الباحث اليومي)"],"Search Queue (Backlog)":[null,"قائمة انتظار البحث (المتراكم)"],"Search Queue (Manual)":[null,"قائمة انتظار البحث (اليدوي)"],"Search Queue (Retry/Failed)":[null,"قائمة انتظار البحث (إعادة المحاولة/الفشل)"],"Search Queue (RSS)":[null,"قائمة انتظار البحث (RSS)"],"Find Propers":[null,"العثور على الإصدارات المصححه"],"Postprocessor":[null,""],"Find Subtitles":[null,"العثور على ترجمات"],"Trakt Checker":[null,"مدقق Trakt"],"Event":[null,"حدث"],"Error":[null,"خطأ"],"Tornado":[null,"Tornado"],"Thread":[null,"موضوع"],"Main":[null,"الرئيسية"],"Loading":[null,""],"New update found for SickRage, starting auto-updater":[null,"تحديث جديد لـ SickRage، بدء تشغيل التحديث التلقائي"],"Update was successful":[null,"تم التحديث بنجاح"],"Update failed!":[null,"فشل التحديث!"],"Backup":[null,"النسخ الاحتياطي"],"Config backup in progress...":[null,"جاري ضبط النسخ الاحتياطي..."],"Config backup successful, updating...":[null,"ضبط النسخ الاحتياطي تم بنجاح، جاري التحديث..."],"Config backup failed, aborting update":[null,"فشل ضبط النسخ الاحتياطي، تم إلغا التحديث"],"No update needed":[null,"لا يوجد حاجة للتحديث"],"Mako Error":[null,"خطأ Mako"],"Oops":[null,"عفوا"],"Wrong API key used":[null,"تم استخدام مفتاح API خاطيء"],"Login":[null,"تسجيل الدخول"],"API Key not generated":[null,"لم يتم إنشاء مفتاح API"],"API Builder":[null,"منشئ API"],"Schedule":[null,"مواعيد العرض"],"Test 1":[null,"اختبار 1"],"This is test number 1":[null,"هذا الاختبار رقم 1"],"Test 2":[null,"اختبار 2"],"This is test number 2":[null,"هذا الاختبار رقم 2"],"You're using the {branch} branch. Please use 'master' unless specifically asked":[null,"أنت تستخدم فرع {branch}. الرجاء استخدام 'الرئيسي' إلا إذا طلب على وجه التحديد"],"Invalid show parameters":[null,"متغيرات المسلسل غير صالحة"],"Invalid parameters":[null,""],"Episode couldn't be retrieved":[null,"لا يمكن العثورعلى الحلقة"],"Home":[null,"الصفحة الرئيسية"],"Show List":[null,"قائمة المسلسلات"],"Error: Unsupported Request. Send jsonp request with 'callback' variable in the query string.":[null,"خطأ: الطلب غير مدعوم. Send jsonp request with 'callback' variable in the query string."],"Success. Connected and authenticated":[null,"تم الإتصال و المصادقة بنجاح"],"Authentication failed. SABnzbd expects":[null,"فشلت المصادقة، يجب استخدام SABnzbd"],"as authentication method":[null,"كطريقة مصادقة"],"Unable to connect to host":[null,"غير قادر على الاتصال بالمضيف"],"SMS sent successfully":[null,"تم إرسالة رسالة قصيرة بنجاح"],"Problem sending SMS: {message}":[null,"مشكلة عند إرسال الرسائل القصيرة: {message}"],"Telegram notification succeeded. Check your Telegram clients to make sure it worked":[null,"تم إرسال إشعار تيليغرام بنجاح. تحقق من برنامج تيليغرام الخاص بك للتأكد من وصول الإشعار"],"Error sending Telegram notification: {message}":[null,"خطأ في إرسال إشعار لبرنامج تيليغرام: {message}"],"join notification succeeded. Check your join clients to make sure it worked":[null,"تم إرسال إشعار join بنجاح. تحقق من join الخاص بك للتأكد من وصول الإشعار"],"Error sending join notification: {message}":[null,"خطأ في إرسال إشعار لبرنامج join ؛: {message}"]," with password":[null," مع كلمة المرور"],"Registered and Tested growl successfully {growl_host}":[null,"تم التسجيل و التأكد growl بنجاح {growl_host}"],"Registration and Testing of growl failed {growl_host}":[null,"فشل التسجيل و التأكد من growl بنجاح {growl_host}"],"Test prowl notice sent successfully":[null,"تم التحقق من تجربة ارسال إشعار prowl بنجاح"],"Test prowl notice failed":[null,"فشل التحقق من تجربة إرسال إشعار prowl"],"Boxcar2 notification succeeded. Check your Boxcar2 clients to make sure it worked":[null,"تم إرسال إشعار Boxcar2 بنجاح. تحقق من Boxcar2 الخاص بك للتأكد من وصول الإشعار"],"Error sending Boxcar2 notification":[null,"خطأ في إرسال إشعار Boxcar2"],"Pushover notification succeeded. Check your Pushover clients to make sure it worked":[null,"تم إرسال إشعار Pushover بنجاح. تحقق من Pushover الخاص بك للتأكد من وصول الإشعار"],"Error sending Pushover notification":[null,"خطأ في إرسال إشعار Pushover"],"Key verification successful":[null,"تم التحقق من المفتاح بنجاح"],"Unable to verify key":[null,"غير قادر على التحقق من المفتاح"],"Tweet successful, check your twitter to make sure it worked":[null,"تم إرسال التغريدة بنجاح. تحقق من تويتر الخاص بك للتأكد من وصول التغريدة"],"Error sending tweet":[null,"خطأ في إرسال التغريدة"],"Please enter a valid account sid":[null,""],"Please enter a valid auth token":[null,""],"Please enter a valid phone sid":[null,""],"Please format the phone number as \"+1-###-###-####\"":[null,""],"Authorization successful and number ownership verified":[null,""],"Error sending sms":[null,"خطأ في إرسال الرسائل القصيرة"],"Slack message successful":[null,""],"Slack message failed":[null,""],"Discord message successful":[null,""],"Discord message failed":[null,""],"Test KODI notice sent successfully to {kodi_host}":[null,"تم تجربة إرسال إشعار لبرنامج KODI إلى {kodi_host} بنجاح"],"Test KODI notice failed to {kodi_host}":[null,"فشل تجربة إرسال إشعار لبرنامج KODI إلى {kodi_host}"],"Successful test notice sent to Plex Home Theater ... {plex_clients}":[null,"تم تجربة إرسال إشعار لبرنامج Plex Home Theater بنجاح... {plex_clients}"],"Test failed for Plex Home Theater ... {plex_clients}":[null,"تجربة برنامج Plex Home Theater فشلت... {plex_clients}"],"Tested Plex Home Theater(s)":[null,"سيرفرات Plex Home Theater المجربة بنجاح"],"Successful test of Plex Media Server(s) ... {plex_servers}":[null,"تم تجربة Plex Media Server بنجاح... {plex_servers}"],"Test failed, No Plex Media Server host specified":[null,"تجربة Plex Media Server فشلت، لم يتم تحديد عنوان المضيف"],"Test failed for Plex Media Server(s) ... {plex_servers}":[null,"تجربة Plex Media Server فشلت... {plex_servers}"],"Tested Plex Media Server host(s)":[null,"سيرفرات Plex Media Server المجربة بنجاح"],"Tried sending desktop notification via libnotify":[null,"محاولة إرسال إشعار سطح المكتب عن طريق libnotify"],"Test notice sent successfully to {emby_host}":[null,"تم تجربة إرسال الإشعار بنجاح إلى {emby_host}"],"Test notice failed to {emby_host}":[null,"فشل تجربة إرسال الإشعار إلى {emby_host}"],"Successfully started the scan update":[null,"بدأ البحث عن التحديث بنجاح"],"Test failed to start the scan update":[null,"فشل بدأ البحث عن التحديث"],"Test notice sent successfully to {nmj2_host}":[null,"تم تجربة إرسال الإشعار بنجاح إلى {nmj2_host}"],"Test notice failed to {nmj2_host}":[null,"فشل تجربة إرسال الإشعار إلى {nmj2_host}"],"Trakt Authorized":[null,"Trakt مفوض"],"Trakt Not Authorized!":[null,"Trakt غير مفوض!"],"Test email sent successfully! Check inbox.":[null,"تم إرسال بريد إليكتروني بنجاح! تحقق من صندوق الوارد."],"ERROR: {last_error}":[null,"خطأ: {last_error}"],"Test NMA notice sent successfully":[null,"تم التحقق من تجربة ارسال إشعار NMA بنجاح"],"Test NMA notice failed":[null,"فشل تجربة إرسال إشعار لـ NMA"],"Pushalot notification succeeded. Check your Pushalot clients to make sure it worked":[null,"تم إرسال إشعار Pushalot بنجاح. تحقق من Pushalot الخاص بك للتأكد من وصول الإشعار"],"Error sending Pushalot notification":[null,"خطأ في إرسال إشعار Pushalot"],"Pushbullet notification succeeded. Check your device to make sure it worked":[null,"تم إرسال إشعار Pushbullet بنجاح. تحقق من Pushbullet الخاص بك للتأكد من وصول الإشعار"],"Error sending Pushbullet notification":[null,"خطأ في إرسال إشعار Pushbullet"],"Status":[null,"الحالة"],"Restarting SickRage":[null,"إعادة تشغيل سيكراج"],"Update Failed":[null,"فشل التحديث"],"Update wasn't successful, not restarting. Check your log for more information.":[null,"التحديث لم يكن ناجحاً، لن اعيد التشغيل. تحقق من السجل الخاص بك للحصول على مزيد من المعلومات."],"Checking out branch":[null,"التحقق من الفرع"],"Already on branch":[null,"موجود مسبقا في الفرع"],"Invalid show ID: {show}":[null,"رقم معرف المسلسل غير صحيح: {show}"],"Show not in show list":[null,"المسلسل غير موجود في قائمة المسلسلات"],"Edit":[null,"تحرير"],"This show is in the process of being downloaded - the info below is incomplete.":[null,"جاري تحميل هذا المسلسل - المعلومات أدناه غير مكتملة."],"The information on this page is in the process of being updated.":[null,"جاري تحديث المعلومات على هذه الصفحة."],"The episodes below are currently being refreshed from disk":[null,"جاري تحديث الحلقات أدناه من القرص"],"Currently downloading subtitles for this show":[null,"جاري تحميل ترجمات لهذا المسلسل"],"This show is queued to be refreshed.":[null,"هذا المسلسل على قائمة الانتظار للتحديث."],"This show is queued and awaiting an update.":[null,"هذا المسلسل على قائمة الانتظار حتى يتم تحديثه."],"This show is queued and awaiting subtitles download.":[null,"هذا المسلسل على قائمة الانتظار حتى يتم تحميل الترجمات."],"Resume":[null,"استئناف"],"Pause":[null,"إيقاف مؤقت"],"Remove":[null,"إزالة"],"Re-scan files":[null,"إعادة تفحص الملفات"],"Force Full Update":[null,"إجبار التحديث الكامل"],"Update show in KODI":[null,"تحديث المسلسل في برنامج KODI"],"Update show in Emby":[null,"تحديث المسلسل في برنامج Emby"],"Hide specials":[null,""],"Show specials":[null,""],"Preview Rename":[null,"معاينة التسمية"],"Download Subtitles":[null,"تحميل الترجمة"],"No scene exceptions":[null,"لا توجد (استثناءات للأسماء)"],"Invalid show ID":[null,"رقم معرف المسلسل غير صحيح"],"Unable to find the specified show":[null,"غير قادر على العثور على المسلسل المحدد"],"Unable to retreive Fansub Groups from AniDB.":[null,"غير قادر على استرداد مجموعات Fansub من AniDB."],"Edit Show":[null,"تعديل العرض"],"Unable to refresh this show: {error}":[null,"غير قادر على تحديث هذا المسلسل: {error}"],"New location <tt>{location}</tt> does not exist":[null,"موقع جديد <tt>{location}</tt> غير موجود"],"Unable to update show: {error}":[null,"غير قادر على تحديث المسلسل: {error}"],"Unable to force an update on scene exceptions of the show.":[null,"غير قادر على فرض التحديث على (استثناءات الأسماء) للمسلسل."],"Unable to force an update on scene numbering of the show.":[null,"غير قادر على فرض التحديث على (استثناءات أرقام الحلقات) للمسلسل."],"{num_errors:d} error{plural} while saving changes:":[null,"{num_errors:d} خطأ {plural} أثناء حفظ التغييرات:"],"{show_name} has been {paused_resumed}":[null,"{show_name} قد تم{paused_resumed}"],"resumed":[null,"استأنفت"],"paused":[null,"توقف مؤقت"],"{show_name} has been {deleted_trashed} {was_deleted}":[null,"{show_name} قد تم {deleted_trashed} {was_deleted}"],"deleted":[null,"محذوف"],"trashed":[null,"مهمل"],"(media untouched)":[null,"(media untouched)"],"(with all related media)":[null,"(مع كل الوسائط المتعلقة)"],"Unable to refresh this show.":[null,"غير قادر على تحديث هذا المسلسل."],"Unable to update this show.":[null,"غير قادر على تحديث هذا المسلسل."],"Library update command sent to KODI host(s)): {kodi_hosts}":[null,"تم إرسال أمرالتحديث إلى مضيفين برنامج KODI؛ {kodi_hosts}"],"Unable to contact one or more KODI host(s)): {kodi_hosts}":[null,"غير قادر على الاتصال بواحد أو أكثر من مضيفين برنامج KODI؛ {kodi_hosts}"],"Library update command sent to Plex Media Server host: {plex_server}":[null,"تم إرسال أمرالتحديث إلى مضيف برنامج Plex Media Server؛ {plex_server}"],"Unable to contact Plex Media Server host: {plex_server}":[null,"غير قادر على الاتصال بواحد أو أكثر من مضيف برنامج Plex Media Server؛ {plex_server}"],"Library update command sent to Emby host: {emby_host}":[null,"تم إرسال أمرالتحديث إلى مضيف برنامج Emby؛ {emby_host}"],"Unable to contact Emby host: {emby_host}":[null,"غير قادر على الاتصال بواحد أو أكثر من مضيف برنامج Emby؛ {emby_host}"],"You must specify a show and at least one episode":[null,"يجب عليك تحديد مسلسل وحلقة واحدة على الأقل"],"Invalid status":[null,"حالة غير صالحة"],"Backlog was automatically started for the following seasons of <b>{show_name}</b>":[null,"البحث عن المواسم المتراكمة بدأ تلقائياً لـ <b>{show_name}</b>"],"Season":[null,"الموسم"],"Backlog started":[null,"بدأ البحث المتراكم"],"Retrying Search was automatically started for the following season of <b>{show_name}</b>":[null,"إعادة محاولة البحث تلقائياً بدأت في الموسم التالي من <b>{show_name}</b>"],"Retry Search started":[null,"بدأت إعادة البحث"],"You must specify a show":[null,"يجب عليك تحديد مسلسل"],"Can't rename episodes when the show dir is missing.":[null,"لا يمكن إعادة تسمية الحلقات اذا كان دليل ملفات المسلسل مفقود."],"New subtitles downloaded: {new_subtitle_languages}":[null,"تم تحميل ترجمات جديدة: {new_subtitle_languages}"],"No subtitles downloaded":[null,"لم يتم تحميل الترجمة"],"IRC":[null,"IRC"],"Could not load news from the repo. [Click here for news.md])({news_url})":[null,"تعذر تحميل الأخبار من المصدر. [انقر هنا للأخبار]{news_url}"],"The was a problem connecting to github, please refresh and try again":[null,"كانت هناك مشكلة تتعلق بالاتصال بـ github، الرجاء التحديث ثم حاول مرة أخرى"],"Could not load changes from the repo. [Click here for CHANGES.md]({changes_url})":[null,"تعذر تحميل التغييرات من المصدر. [انقر هنا للتغييرات]{changes_url}"],"Changelog":[null,"سجل التغييرات"],"Post Processing":[null,"المعالجة"],"Add Shows":[null,"إضافة مسلسلات"],"No folders selected.":[null,"لم يتم تحديد أي مجلد."],"New Show":[null,"مسلسل جديد"],"Trending Shows":[null,"مسلسلات ساخنة"],"Popular Shows":[null,"مسلسلات مشهورة"],"Most Anticipated Shows":[null,"مسلسلات الأكثر إنتظارا"],"Most Collected Shows":[null,""],"Most Watched Shows":[null,""],"Most Played Shows":[null,""],"Recommended Shows":[null,""],"New Shows":[null,"مسلسلات جديدة"],"Season Premieres":[null,"بدايات الموسم"],"Existing Show":[null,"مسلسل موجود"],"No root directories setup, please go back and add one.":[null,"لم يتم إضافة مجلدات رئيسية، الرجاء الرجوع و إضافة مجلد."],"Show added":[null,"تم إضافة المسلسل"],"Adding the specified show {show_name}":[null,"إضافة المسلسل المحدد {show_name}"],"Missing params, no Indexer ID or folder: {show_to_add} and {root_dir}/{show_path}":[null,"المعاملات مفقودة، لايوجد رقم معرف المفهرس أو المجلد: {show_to_add} و {root_dir} / {show_path}"],"Unknown error. Unable to add show due to problem with show selection.":[null,"خطأ غير معروف. غير قادر على إضافة المسلسل بسبب مشكلة في تحديد المسلسل."],"Unable to add show":[null,"غير قادر على اضافة المسلسل"],"Folder {show_dir} exists already":[null,"مجلد {show_dir} موجود مسبقا"],"Unable to create the folder {show_dir}, can't add the show":[null,"غير قادر على إنشاء المجلد {show_dir}، لا يمكن إضافة المسلسل"],"Adding the specified show into {show_dir}":[null,"إضافة المسلسل المحدد إلى {show_dir}"],"Shows Added":[null,"تم إضافة المسلسلات"],"Automatically added {num_shows} from their existing metadata files":[null,"إضافة تلقائية لـ {num_shows} مسلسل من بياناتها التعريفية الموجودة"],"Mass Update":[null,"تحديث شامل"],"Episode Overview":[null,"نظرة عامة على الحلقة"],"Missing Subtitles":[null,"ترجمات مفقودة"],"Backlog Overview":[null,"نظرة عامة على السجل التراكمي"],"Mass Edit":[null,"تعديل شامل"],"Unable to update show: {excption_format}":[null,"غير قادر على تحديث المسلسل: {excption_format}"],"Unable to refresh show {show_name}: {excption_format}":[null,"غير قادر على تحديث المسلسل {show_name}؛ {excption_format}"],"Errors encountered":[null,"صادف وجود أخطاء"],"Updates":[null,"التحديثات"],"Refreshes":[null,"يقوم بتحديث"],"Renames":[null,"إعادة تسمية"],"Subtitles":[null,"ترجمة"],"The following actions were queued":[null,"الإجراءات التالية في قائمة الانتظار"],"Failed Downloads":[null,"تنزيلات فشلت"],"Manage Searches":[null,"إدارة عمليات البحث"],"Backlog search started":[null,"بدأ البحث عن حلقات متراكمة"],"Daily search started":[null,"بدأ البحث اليومي"],"Find propers search started":[null,"بدأ البحث عن النسخ المصححه"],"Subtitle search started":[null,"بدأ البحث عن الترجمة"],"Remove Selected":[null,""],"Clear History":[null,"مسح المحفوظات"],"Trim History":[null,"تخفيض حجم سجل المحفوظات"],"Selected history entries removed":[null,""],"History cleared":[null,"تم مسح المحفوظات"],"Removed history entries older than 30 days":[null,"إزالة السجلات الأقدم من 30 يوما"],"General":[null,"عام"],"Backup/Restore":[null,"النسخ الاحتياطي/الاستعادة"],"Search Settings":[null,"إعدادات البحث"],"Search Providers":[null,"مقدمي خدمة البحث"],"Subtitles Settings":[null,"إعدادات الترجمة"],"Notifications":[null,"الإشعارات"],"Anime":[null,"أنمي"],"SickRage Configuration":[null,"ضبط سيكراج"],"Config - Shares":[null,""],"Windows Shares Configuration":[null,""],"Saved Shares":[null,""],"Your Windows share settings have been saved":[null,""],"Config - General":[null,"ضبط - عام"],"General Configuration":[null,"ضبط عام"],"Saved Defaults":[null,"تم حفظ الإعدادات الافتراضية"],"Your \"add show\" defaults have been set to your current selections.":[null,""],"Unable to create directory {directory}, log directory not changed.":[null,"غير قادر على إنشاء الدليل {directory}، دليل السجل لم يتغير."],"Unable to create directory {directory}, https cert directory not changed.":[null,"غير قادر على إنشاء الدليل {directory}، دليل شهادة https لم يتغير."],"Unable to create directory {directory}, https key directory not changed.":[null,"غير قادر على إنشاء الدليل {directory}، دليل مفتاح https لم يتغير."],"Error(s) Saving Configuration":[null,"خطأ (أخطاء) حفظ الضبط"],"Configuration Saved":[null,"تم حفظ الضبط"],"Config - Backup/Restore":[null,"ضبط - نسخ الاحتياط/الاستعادة"],"Config - Episode Search":[null,"الضبط - البحث عن الحلقة"],"Config - Post Processing":[null,"الضبط - المعالجة"],"Unpacking Not Supported, disabling unpack setting":[null,"فك الضغط غير مدعوم، يتم تعطيل اعداد فك الضغط"],"You tried saving an invalid normal naming config, not saving your naming settings":[null,""],"You tried saving an invalid anime naming config, not saving your naming settings":[null,"لقد حاولت حفظ إعدادات تسمية أنمي غير صالحة، لم يتم حفظ إعدادات التسمية"],"Config - Providers":[null,"التكوين - مقدمي الخدمات"],"No Provider Name specified":[null,"لم يتم تحديد اسم مقدم الخدمة"],"No Provider Url specified":[null,"لم يتم تحديدعنوان مقدم الخدمة"],"No Provider Api key specified":[null,"لم يتم تحديد مفاح Api لمقدم الخدمة"],"Config - Notifications":[null,"الضبط - الإشعارات"],"Config - Subtitles":[null,"الضبط - الترجمة"],"Config - Anime":[null,"الضبط - أنيمي"],"Clear Errors":[null,"مسح الأخطاء"],"Clear Warnings":[null,"مسح التحذيرات"],"Submit Errors":[null,"إرسال الأخطاء"],"Logs & Errors":[null,"السجلات & الأخطاء"],"Log File":[null,"ملف السجل"],"Logs":[null,"سجلات"],"This is a test notification from SickRage":[null,""],"Choose Directory":[null,""],"Select log file folder location":[null,""],"Select CSS file":[null,""],"Select backup folder to save to":[null,""],"Select backup files to restore":[null,""],"Please fill out the necessary fields above.":[null,""],"<b>Step 1:</b> Confirm Authorization":[null,""],"Check blacklist name; the value needs to be a trakt slug":[null,""],"You must provide a recipient email address!":[null,""],"You didn't supply a Pushbullet api key":[null,""],"Don't forget to save your new pushbullet settings.":[null,""],"Select TV Download Directory":[null,""],"Select Unpack Directory":[null,""],"This pattern is invalid.":[null,""],"This pattern would be invalid without the folders, using it will force \"Season Folders\" on for all shows.":[null,""],"This pattern is valid.":[null,""],"Select .nzb black hole/watch location":[null,""],"Select .torrent black hole/watch location":[null,""],"Select .torrent download location":[null,""],"Minimum seeding time is":[null,""],"URL to your uTorrent client (e.g. http://localhost:8000)":[null,""],"Stop seeding when inactive for":[null,""],"URL to your Transmission client (e.g. http://localhost:9091)":[null,""],"URL to your Deluge client (e.g. http://localhost:8112)":[null,""],"IP or Hostname of your Deluge Daemon (e.g. scgi://localhost:58846)":[null,""],"URL to your Synology DS client (e.g. http://localhost:5000)":[null,""],"URL to your rTorrent client (e.g. scgi://localhost:5000 <br> or https://localhost/rutorrent/plugins/httprpc/action.php)":[null,""],"URL to your qBittorrent client (e.g. http://localhost:8080)":[null,""],"URL to your MLDonkey (e.g. http://localhost:4080)":[null,""],"URL to your putio client (e.g. http://localhost:8080)":[null,""],"<a herf=\"https://app.put.io/oauth/apps/new\" target=\"_blank\"> Create a new OAuth app for put.io</a>":[null,""],"Put.io Parent Folder":[null,""],"Put.io OAuth Token":[null,""],"Show Episodes":[null,"حلقات المسلسل"],"Hide Episodes":[null,""],"Select Show Location":[null,""],"Select Unprocessed Episode Folder":[null,""],"DELETED":[null,""],"Resume updating the log on this page.":[null,""],"Pause updating the log on this page.":[null,""],"searching {searchingFor}...":[null,""],"search timed out, try again or try another indexer":[null,""],"loading folders...":[null,""],"Loading...":[null,"جاري التحميل..."],"You have reached this page by accident, please check the url.":[null,"لقد وصلت إلى هذه الصفحة بالخطأ، الرجاء التحقق من العنوان."],"A mako error has occured.<br>\n If this happened during an update a simple page refresh may be the solution.<br>\n Mako errors that happen during updates may be a one time error if there were significant ui changes.":[null,"لقد حدث خطأ mako؛<br>؛ \nهذا حدث أثناء التحديث، تحديث بسيطة في للصفحة قد يكون الحل.<br>؛\nالأخطاء التي تحدث أثناء التحديثات قد تكون مرة واحدة إذا كانت هناك تغييرات كبيرة في واجهة المستخدم."],"Show/Hide Error":[null,"إظهار/إخفاء الخطأ"],"Add New Show":[null,"إضافة مسلسل جديد"],"For shows that you haven't downloaded yet, this option finds a show on theTVDB.com, creates a directory for it's episodes, and adds it to SickRage.":[null,"للمسلسلات اللتي لم تقم بتحميلها بعد، هذا الخيار يبحث عن المسلسل في موقع theTVDB.com، و ينشيء مجلد خاص بحلقاته، ويضيفه إلى SickRage."],"Add From Trakt Lists":[null,"إضافة من Trakt Lists"],"For shows that you haven't downloaded yet, this option lets you choose from a show from one of the Trakt lists to add to SickRage.":[null,"للمسلسلات اللتي لم تقم بتحميلها حتى الآن، هذا الخيار يتيح لك اختيار المسلسل من إحدى قوائم Trakt وإضافته إلى SickRage."],"Add From IMDB's Popular Shows":[null,"إضافة مسلسلات مشهورة في موقع IMDB"],"View IMDB's list of the most popular shows. This feature uses IMDB's MOVIEMeter algorithm to identify popular TV Series.":[null,"عرض قائمة IMDB للمسلسلات الأكثر شعبية. تستخدم هذه الميزة خوارزمية MOVIEMeter في IMDB لتحديد شعبية المسلسل التلفزيوني."],"Add Existing Shows":[null,"إضافة مسلسلات موجود"],"Use this option to add shows that already have a folder created on your hard drive. SickRage will scan your existing metadata/episodes and add the show accordingly.":[null,"استخدم هذا الخيار لإضافة مسلسلات لديها بالفعل مجلد تم إنشاؤه على محرك القرص الثابت. SickRage سوف يبحث في البيانات التعريفية/الحلقات الخاص بك الموجودة وإضافة المسلسل وفقا لذلك."],"Add Existing Show":[null,"إضافة مسلسل موجود"],"Manage Directories":[null,"إدارة المجلدات"],"Customize Options":[null,"تخصيص الخيارات"],"SickRage can add existing shows, using the current options, by using locally stored NFO/XML metadata to eliminate user interaction. If you would rather have SickRage prompt you to customize each show, then use the checkbox below.":[null,"يمكن لـ SickRage إضافة مسلسلات موجوده لديك، باستخدام الخيارات الحالية، و استخدام بيانات التعريف NFO/XML دون الحاجة إلى تدخل المستخدم. \n إذا كنت بدلاً من ذلك تريد من SickRage أن يطلب منك تخصيص كل مسلسل، استخدم خانة الاختيار أدناه."],"Prompt me to set settings for each show":[null,"أظهر لي إعدادات كل مسلسل على حده"],"Displaying folders within these directories which aren't already added to SickRage":[null,"عرض المجلدات الموجودة في هذه المسارات التي لم يتم إضافتها بالفعل إلى SickRage"],"Submit":[null,"إرسال"],"Find a show on theTVDB":[null,"البحث عن مسلسل في موقع theTVDB"],"Show retrieved from existing metadata":[null,"تم استرجاع المسلسل من بيانات التعريف الموجودة"],"All Indexers":[null,"جميع المفهرسات"],"Search":[null,"بحث"],"This will only affect the language of the retrieved metadata file contents and episode filenames.":[null,"هذا يؤثرفقط على لغة ملف محتويات بيانات التعريف وأسماء الحلقات."],"This <b>DOES NOT</b> allow SickRage to download non-english TV episodes!":[null,"هذا <b>لا</b> يسمح لـ SickRage بتحميل الحلقات التلفزيونية غير الإنجليزية!"],"Pick the parent folder":[null,"اختيار المجلد الرئيسي"],"Pre-chosen Destination Folder":[null,"المجلد الوجهة الذي اخترته مسبقاً"],"Customize options":[null,"تخصيص الخيارات"],"Add Show":[null,"إضافة مسلسل"],"Skip Show":[null,"تخطي المسلسل"],"Sort By":[null,"ترتيب حسب"],"Name":[null,"الإسم"],"Original":[null,"المنشأ"],"Votes":[null,"التصويت"],"Rating":[null,"التقييم"],"Rating > Votes":[null,"التقييم > التصويت"],"Sort Order":[null,"ترتيب الفرز"],"Asc":[null,"تصاعدي"],"Desc":[null,"تنازلي"],"Fetching of IMDB Data failed. Are you online?":[null,"فشل في إحضار بيانات IMDB. هل أنت متصل بالإنترنت؟"],"Exception":[null,"استثناء"],"Select Trakt List":[null,"اختر قائمة Trakt"],"Most Anticipated":[null,"الأكثر توقع"],"Trending":[null,"شائع"],"Popular":[null,"شائع"],"Most Watched":[null,"الأكثر مشاهدة"],"Most Played":[null,"الأكثر تشغيلاً"],"Most Collected":[null,"الأكثر تجميعا"],"Recommended":[null,"ننصح به"],"Toggle navigation":[null,"تفعيل التنقل"],"Profile":[null,"الملفّ الشخصيّ"],"JSONP":[null,"JSONP"],"Back to SickRage":[null,"العودة إلى SickRage"],"Parameters":[null,"المتغيرات"],"Required":[null,"مطلوب"],"Description":[null,"الوصف"],"Type":[null,"النوع"],"Default value":[null,"القيمة الافتراضية"],"Allowed values":[null,"القيم المسموح بها"],"Playground":[null,"Playground"],"Clear":[null,"مسح"],"Yes":[null,"نعم"],"No":[null,"لا"],"season":[null,"الموسم"],"episode":[null,"الحلقة"],"Python Version":[null,"نسخة Python"],"SSL Version":[null,"نسخة SSL"],"OS":[null,"نظام التشغيل"],"Locale":[null,"الإعدادات المحلية"],"User":[null,"مستخدم"],"Program Folder":[null,"مجلد البرنامج"],"Config File":[null,"ملف الضبط"],"Database File":[null,"ملف قاعدة البيانات"],"Cache Folder":[null,"مجلد التخزين المؤقت"],"Log Folder":[null,"مجلد السجل"],"Arguments":[null,"Arguments"],"Web Root":[null,"الشبكة الرئيسية"],"Website":[null,"الموقع"],"Wiki":[null,"ويكي"],"Source":[null,"المصدر"],"IRC Chat":[null,"دردشة IRC"],"AnimeDB Settings":[null,"إعدادات AnimeDB"],"Look & Feel":[null,"الشكل ;amp& المظهر"],"AniDB is non-profit database of anime information that is freely open to the public":[null,"AniDB هو قاعدة بيانات غير هادفة للربح لمعلومات الأنمي وهي مفتوحة للجمهور"],"Enable":[null,"تفعيل"],"should SickRage use data from AniDB?":[null,"هل يستخدام SickRage البيانات من AniDB؟"],"AniDB Username":[null,"اسم المستخدم في AniDB"],"username of your AniDB account":[null,"اسم المستخدم للحساب الخاص بك في AniDB"],"AniDB Password":[null,"كلمة المرور في AniDB"],"password of your AniDB account":[null,"كلمة المرور للحساب الخاص بك في AniDB"],"AniDB MyList":[null,"MyList في AniDB"],"do you want to add the PostProcessed episodes to the MyList?":[null,"هل تريد إضافة الحلقات المعالجة إلى MyList؟"],"Look and Feel":[null,"الشكل و المظهر"],"How should the anime functions show and behave.":[null,"كيف ينبغي أن تظهر مهام الأنيمي وتتصرف."],"Split show lists":[null,"تقسيم قوائم المسلسل"],"separate anime and normal shows in groups":[null,"فصل مسلسلات الأنمي و المسلسلات العادية في مجموعات"],"Split in tabs":[null,""],"use tabs for when splitting show lists":[null,""],"Restore":[null,"الإستعادة"],"Backup your main database file and config.":[null,"نسخ احتياطي لملف قاعدة البيانات الرئيسية و الضبط الخاصة بك."],"Select the folder you wish to save your backup file to":[null,"حدد المجلد اللذي تريد حفظ ملف النسخ الاحتياطي فيه"],"Restore your main database file and config.":[null,"استعادة ملف قاعدة البيانات الرئيسية و الضبط الخاصة بك."],"Select the backup file you wish to restore":[null,"حدد ملف النسخة الاحتياطية التي ترغب في استعادته"],"Misc":[null,"متفرقات"],"Interface":[null,"واجهة"],"Advanced Settings":[null,"الإعدادات المتقدمة"],"Startup options. Indexer options. Log and show file locations.":[null,"خيارات بدء التشغيل. خيارات المفهرس. أماكن حفظ السجل و ملفات المسلسلات."],"Some options may require a manual restart to take effect.":[null,"قد تتطلب بعض الخيارات إعادة تشغيل يدوي لتصبح فعالة."],"Default Indexer Language":[null,"اللغة الافتراضية للمفهرس"],"for adding shows and metadata providers":[null,"لإضافة مسلسلات وموفري بيانات التعريف"],"Launch browser":[null,"تشغيل المتصفح"],"open the SickRage home page on startup":[null,"فتح الصفحة الرئيسية لـ SickRage في بدء التشغيل"],"Initial page":[null,"صفحة البداية"],"Shows":[null,"مسلسلات"],"when launching SickRage interface":[null,"عند بدء تشغيل واجهة SickRage"],"Choose hour to update shows":[null,"اختر ساعة لتحديث المسلسلات"],"with information such as next air dates, show ended, etc. Use 15 for 3pm, 4 for 4am etc.":[null,"مع معلومات مثل تواريخ عرض الحلقات القادمة، نهاية المسلسلات، إلخ. استخدم مثلا 15 لـ 3 مساء, 4 لـ 4 صباحا إلخ."],"note":[null,"ملاحظة"],"minutes are randomized each time SickRage is started":[null,"الدقائق عشوائية في كل مرة يتم فيها بدء تشغيل SickRage"],"Send to trash for actions":[null,"إرسال إلى سلة المهملات لإتخاذ إجراءات"],"when using show \"Remove\" and delete files":[null,"عند استخدام عرض \"إزالة\" وحذف الملفات"],"on scheduled deletes of the oldest log files":[null,"حذف ملفات السجل الأقدم في الوقت المحدد"],"selected actions use trash (recycle bin) instead of the default permanent delete":[null,"الإجراءات المحددة تستخدام سلة المهملات (سلة المحذوفات) بدلاً من الحذف الدائم"],"Log file folder location":[null,"موقع مجلد ملف السجل"],"Number of Log files saved":[null,"عدد ملفات السجلات المحفوظة"],"number of log files saved when rotating logs (default: 5) (REQUIRES RESTART)":[null,"عدد ملفات السجلات المحفوظة عند تدوير السجلات (الافتراضي: 5) (يتطلب إعادة التشغيل)"],"Size of Log files saved":[null,"حجم ملفات السجلات المحفوظة"],"maximum size in MB of the log file (default: 1MB) (REQUIRES RESTART)":[null,"الحجم الأقصى بالميغا بايت لملف السجل (الافتراضي: 1 ميغابايت) (يتطلب إعادة التشغيل)"],"Use initial indexer set to":[null,"المفهرس المبدئي هو"],"as the default selection when adding new shows":[null,"كإختيار افتراضي عند إضافة مسلسلات جديدة"],"Timeout show indexer at":[null,"تعليق فهرسة المسلسل عند"],"seconds of inactivity when finding new shows (default:20)":[null,"ثواني سكون عند العثور على مسلسلات جديدة (الافتراضي: 20)"],"Show root directories":[null,"إظهار المجلدات الرئيسية"],"where the files of shows are located":[null,"حيث توجد ملفات المسلسلات"],"Save Changes":[null,"حفظ التغييرات"],"Options for software updates.":[null,"خيارات للحصول على تحديثات البرنامج."],"Check software updates":[null,"التحقق من تحديثات البرنامج"],"and display notifications when updates are available. Checks are run on startup and at the frequency set below*":[null,"وعرض إعلامات عند توفر تحديثات. \n التحقق يعمل عند بدء التشغيل وعند التكرار الموضح أدناه*"],"Automatically update":[null,"تحديث تلقائي"],"fetch and install software updates. Updates are run on startup and in the background at the frequency set below*":[null,"جلب وتثبيت تحديثات البرنامج. \n التحديثات يتم تشغيلها عند بدء التشغيل وفي الخلفية بناءً على التكرار الموضح أدناه*"],"Check the server every*":[null,"تحقق من الخادم كل*"],"hours for software updates (default:1)":[null,"ساعات لتحديثات البرنامج (الافتراضي: 1)"],"Notify on software update":[null,"إشعار عند تحديث البرنامج"],"send a message to all enabled notifiers when SickRage has been updated":[null,"إرسال رسالة إلى جميع مرسلي الإشعارات المفعلين عندما يتم تحديث SickRage"],"User Interface":[null,"واجهة المستخدم"],"Options for visual appearance.":[null,"خيارات المظهر."],"Interface Language":[null,"لغة الواجهة"],"System Language":[null,"لغة النظام"],"for appearance to take effect, save then refresh your browser":[null,"لكي يتم تفعيل المظهر، احفظ، ثم قم بتحديث المستعرض الخاص بك"],"Display theme":[null,"سمة العرض"],"Dark":[null,"غامق"],"Light":[null,"فاتح"],"Use a background image":[null,"استخدام صورة كخلفية"],"use a custom image as background for SickRage":[null,"استخدام صورة مخصصة كخلفية لـ SickRage"],"Background Path":[null,"مسار الخلفية"],"Path to the background image":[null,"المسار إلى صورة الخلفية"],"Show fanart in the background":[null,"إظهار خلفيات المسلسل في الخلفية"],"on the show summary page":[null,"في صفحة ملخص المسلسل"],"Fanart transparency":[null,"شفافية خلفيات المسلسل"],"transparency of the fanart in the background":[null,"شفافية خلفية المسلسل في الخلفية"],"Use a custom stylesheet file":[null,""],"use a custom .css file to style SickRage (for advanced users)":[null,""],"Stylesheet File Path":[null,""],"Path to the stylesheet (.css) file":[null,""],"Show all seasons":[null,"إظهار جميع المواسم"],"Sort with \"The\", \"A\", \"An\"":[null,"الفرز مع \"The\", \"A\", \"An\""],"include articles (\"The\", \"A\", \"An\") when sorting show lists":[null,"شمول (\"The\", \"A\", \"An\") عند ترتيب قوائم المسلسل"],"Missed episodes range":[null,"نطاق الحلقات المفقودة"],"set the range in days of the missed episodes in the Schedule page":[null,"تعيين النطاق في أيام للحلقات المفقودة في صفحة الجدول الزمني"],"Display fuzzy dates":[null,"عرض التواريخ الغامضة"],"move absolute dates into tooltips and display e.g. \"Last Thu\", \"On Tue\"":[null,"نقل التواريخ المطلقة في تلميحات الأدوات و العرض مثل \"آخر خميس\"، \"الثلاثاء\""],"Trim zero padding":[null,"ازالة zero padding"],"remove the leading number \"0\" shown on hour of day, and date of month":[null,"إزالة الرقم \"0\" في بدايات ساعات النهار، وتاريخ الشهر"],"Date style":[null,"نمط التاريخ"],"Use System Default":[null,"استخدام الإعداد الافتراضي للنظام"],"Time style":[null,"نمط الوقت"],"seconds are only shown on the History page":[null,"الثواني تظهر فقط في صفحة المحفوظات"],"Timezone":[null,"المنطقة الزمنية"],"Local":[null,"محلي"],"Network":[null,"الشبكة"],"display dates and times in either your timezone or the shows network timezone":[null,"عرض التواريخ والأوقات إما للمنطقة الزمنية الخاصة بك أو للمنطقة الزمنية للشبكة المعروض عليها المسلسل"],"use local timezone to start searching for episodes minutes after show ends (depends on your dailysearch frequency)":[null,"استخدام التوقيت المحلي في بدء البحث عن الحلقات بعد انتهاء العرض بدقائق (يعتمد على تكرار البحث اليومي)"],"Download url":[null,"عنوان التحميل"],"URL where the shows can be downloaded.":[null,"عنوان URL اللذي يمكن تحميل المسلسلات منه."],"Web Interface":[null,"واجهة ويب"],"it is recommended that you enable a username and password to secure SickRage from being tampered with remotely.":[null,"من المستحسن أن تقوم بتمكين اسم مستخدم وكلمة مرور لتأمين SickRage من العبث عن بعد."],"these options require a manual restart to take effect.":[null,"هذه الخيارات تتطلب إعادة تشغيل يدوي لتصبح فعالة."],"API key":[null,"مفتاح API"],"used to give 3rd party programs limited access to SickRage":[null,"تستخدم لإعطاء البرامج الخارجية صلاحية محدودة للوصول إلى SickRage"],"you can try all the features of the API":[null,"يمكنك أن تجرب كافة ميزات API"],"here":[null,"هنا"],"HTTP logs":[null,"سجلات HTTP"],"enable logs from the internal Tornado web server":[null,"تمكين السجلات من ملقم ويب الداخلي Tornado"],"HTTP username":[null,"اسم المستخدم HTTP"],"set blank for no login":[null,"اتركه فارغاً للدخول بدون تسجيل دخول"],"HTTP password":[null,"كلمة مرور HTTP"],"blank = no authentication":[null,"فارغ = بدون مصادقة"],"HTTP port":[null,"منفذ HTTP"],"web port to browse and access SickRage (default:8081)":[null,"منفذ الشبكة للتصفح والوصول إلى SickRage (الافتراضي: 8081)"],"Notify on login":[null,"إشعار عند تسجيل الدخول"],"enable to be notified when a new login happens in webserver":[null,"مكِّن هذا الخيار لكي يتم إشعارك عند حدوث تسجيل دخول جديد في خادم الويب"],"Listen on IPv6":[null,"الاستماع على IPv6"],"attempt binding to any available IPv6 address":[null,"محاولة ربط إلى أي عنوان IPv6 متوفر"],"Enable HTTPS":[null,"تمكين HTTPS"],"enable access to the web interface using a HTTPS address":[null,"تمكين الوصول إلى واجهة الويب باستخدام عنوان HTTPS"],"HTTPS certificate":[null,"شهادة HTTPS"],"file name or path to HTTPS certificate":[null,"اسم الملف أو المسار إلى شهادة HTTPS"],"HTTPS key":[null,"مفتاح HTTPS"],"file name or path to HTTPS key":[null,"اسم الملف أو المسار إلى مفتاح HTTPS"],"Reverse proxy headers":[null,"عكس proxy headers"],"accept the following reverse proxy headers (advanced)...":[null,""],"(X-Forwarded-For, X-Forwarded-Host, and X-Forwarded-Proto)":[null,""],"CPU throttling":[null,"اختناق المعالج"],"Normal (default). High is lower and Low is higher CPU use":[null,"عادي (افتراضي). العالي هو منخفض و المنخفض هو الأعلى في استخدام المعالج"],"Anonymous redirect":[null,"إعادة التوجيه المجهولة"],"backlink protection via anonymizer service, must end in \"?\"":[null,"حماية صلة العودة عن طريق خدمة anonymizer، يجب أن ينتهي بـ\"؟\""],"Enable debug":[null,"تمكين التصحيح"],"enable debug logs":[null,"تمكين سجلات التصحيح"],"Verify SSL Certs":[null,"التحقق من شهادات SSL"],"verify SSL Certificates (Disable this for broken SSL installs (Like QNAP))":[null,"التحقق من شهادات SSL (تعطيل هذا للـ SSL المعطوبة (مثل QNAP))"],"No Restart":[null,"لا يتطلب إعادة التشغيل"],"only shutdown when restarting SR":[null,"إيقاف التشغيل فقط عند إعادة تشغيل SickRage"],"only select this when you have external software restarting SR automatically when it stops (like FireDaemon)":[null,"فقط حدد هذا الخيار عندما يكون لديك برامج خارجية تقوم بإعادة تشغيل SickRage عندما يتوقف تلقائياً (مثل FireDaemon)"],"Encrypt passwords":[null,"تشفير كلمة المرور"],"in the <code>config.ini</code> file":[null,"في ملف <code>config.ini</code>"],"warning":[null,"تحذير"],"passwords must only contain":[null,"يجب أن تحتوي كلمات المرور على"],"ASCII characters":[null,"رموز ASCII"],"Unprotected calendar":[null,"تقويم غير محمي"],"allow subscribing to the calendar without user and password":[null,"السماح بالاشتراك في التقويم بدون اسم مستخدم و كلمة المرور"],"some services like Google Calendar only work this way":[null,"تعمل بعض الخدمات مثل تقويم جوجل فقط بهذه الطريقة"],"Google Calendar Icons":[null,"أيقونات تقويم جوجل"],"show an icon next to exported calendar events in Google Calendar":[null,"أظهر أيقونة بجوار أحداث التقويم اللتي تم تصديرها في تقويم جوجل"],"Proxy host":[null,"مضيف الوكيل"],"blank to disable or proxy to use when connecting to providers":[null,"اتركه فارغاً لتعطيله أو استخدم الوكيل عند الاتصال بمقدمي الخدمات"],"also use global proxy setting for indexers (tvdb, xem, anidb, etc.)":[null,""],"Skip Remove Detection":[null,"تخطي إزالة الكشف"],"skip detection of removed files":[null,"تخطي الكشف عن الملفات المزالة"],"if disabled the episode will be set to the default deleted status":[null,""],"Default deleted episode status":[null,"الحالة الافتراضية لحذف الحلقة"],"define the status to be set for media file that has been deleted.":[null,"تحديد الحالة لملفات الوسائط اللتي يتم حذفها."],"Archived option will keep previous downloaded quality":[null,"سيحافظ الخيار المؤرشف على جودة التحميل السابقة"],"example: Downloaded (1080p WEB-DL) ==> Archived (1080p WEB-DL)":[null,"على سبيل المثال: المحملة (1080p WEB-DL) ==> المؤرشفة (1080p WEB-DL)"],"Options for github related features.":[null,"خيارات مميزات github ذات الصلة."],"Branch version":[null,"فرع إصدار"],"error: No branches found.":[null,"خطأ: لا يوجد فروع."],"select branch to use (restart required)":[null,"حدد فرع لإستخدامه (يتطلب إعادة التشغيل)"],"Authorization Type":[null,""],"Username and password":[null,""],"Personal access token":[null,""],"You must use a personal access token if you're using \"two-factor authentication\" on GitHub.":[null,""],"GitHub username":[null,"اسم المستخدم GitHub"],"*** (REQUIRED FOR SUBMITTING ISSUES) ***":[null,"*** (مطلوب لإرسال المشاكل) * * *"],"GitHub password":[null,"كلمة مرور GitHub"],"GitHub personal access token":[null,""],"Generate Token":[null,""],"Manage Tokens":[null,""],"GitHub remote for branch":[null,"GitHub عن بعد للفرع"],"access repo configured remotes (save then refresh browser)":[null,"الوصول إلى ضبط المصدر عن بعد (احفظ ثم حدث المتصفح)"],"default":[null,"الافتراضي"],"origin":[null,"الأصل"],"Git executable path":[null,"مسار التنفيذ الخاص بـ Git"],"only needed if OS is unable to locate git from env":[null,"تحتاج إليه فقط إذا كان نظام التشغيل غير قادر على تحديد موقع git من النظام"],"Git reset":[null,"إعادة تعيين Git"],"removes untracked files and performs a hard reset on git branch automatically to help resolve update issues":[null,"إزالة الملفات الغير متعقبة و القيام بإعادة تعيين فرع Git تلقائياً للمساعدة على حل مشاكل التحديث"],"Home Theater / NAS":[null,"مسرح منزلي/ وحدة التخزين الشبكية NAS"],"Devices":[null,"الأجهزة"],"Social":[null,"اجتماعي"],"A free and open source cross-platform media center and home entertainment system software with a 10-foot user interface designed for the living-room TV.":[null,"نظام وسائط وترفيه منزلي مجاني ومفتوح المصدر يعمل على منصات مختلفة يعمل بواجهة مستخدم مخصصه لأجهزة العرض الكبيرة كالتلفزيون."],"send KODI commands?":[null,"إرسال أوامر برنامج KODI؟"],"Always on":[null,"تشغيل دومًا"],"log errors when unreachable?":[null,"تسجيل الأخطاء عندما يتعذر الوصول ؟"],"Notify on snatch":[null,"إشعار عند جلب الحلقات"],"send a notification when a download starts?":[null,"إرسال إشعار عند بدء التحميل؟"],"Notify on download":[null,"إشعار عند التحميل"],"send a notification when a download finishes?":[null,"إرسال إشعار عند انتهاء التحميل؟"],"Notify on subtitle download":[null,"إشعار عند تحميل الترجمة"],"send a notification when subtitles are downloaded?":[null,"إرسال إشعر عندما يتم تحميل الترجمة؟"],"Update library":[null,"تحديث المكتبة"],"update KODI library when a download finishes?":[null,"تحديث مكتبة برنامج KODI عند انتهاء تحميل؟"],"Full library update":[null,"تحديث كامل للمكتبة"],"perform a full library update if update per-show fails?":[null,"تنفيذ تحديث كامل للمكتبة في حالة فشل التحديث لكل مسلسل؟"],"Only update first host":[null,"تحديث المضيف الأول فقط"],"only send library updates to the first active host?":[null,"إرسال أمر تحديث المكتبة للمضيف المفعل الأول فقط؟"],"KODI IP:Port":[null,"عنوان IP والمنفذ لبرنامج KODI"],"host running KODI (eg. 192.168.1.100:8080)":[null,"المضيف الموجود عليه KODI (مثلا. 192.168.1.100:8096)"],"(multiple host strings must be separated by commas)":[null,"(عناوين المضيفين المتعددة يجب أن تكون مفصولة بفواصل)"],"Username":[null,"اسم المُستخدم"],"username for your KODI server (blank for none)":[null,"اسم المستخدم الخاص بـ KODI (فارغة إذا لم يوجد)"],"Password":[null,"كلمة المرور"],"password for your KODI server (blank for none)":[null,"كلمة المرور الخاصة بـ KODI (فارغة إذا لم يوجد)"],"Click below to test.":[null,"انقر أدناه للتحقق."],"Experience your media on a visually stunning, easy to use interface on your Mac connected to your TV. Your media library has never looked this good!":[null,"عش تجربة تشغيل الوسائط الخاصة بك على واجهة سهلة الاستخدام مذهلة بصريا، على ماك الخاص بك متصل بجهاز التلفزيون. مكتبة الوسائط الخاصة بك لم تنظهر ابدأ بهذا الجمال!"],"For sending notifications to Plex Home Theater (PHT) clients, use the KODI notifier with port <b>3005</b>.":[null,"لإرسال إشعارات إلى Plex Home Theater، استخدم إشعارات برنامج KODI مع منفذ <b>3005</b>."],"send Plex Media Server library updates?":[null,"إرسال تحديثات المكتبة إلى Plex Media Server؟"],"Plex Media Server Auth Token":[null,"رمز المصادقة لـ Plex Media Server"],"auth token used by Plex":[null,"رمز المصادقة المستخدم من طرف برنامج plex"],"Update Library":[null,"تحديث المكتبة"],"update Plex Media Server library when a download finishes":[null,"تحديث مكتبة Plex Media Server بعد نهاية التحميل"],"Plex Media Server IP:Port":[null,"عنوان IP و منفذ Plex Media Server"],"one or more hosts running Plex Media Server<br/>(eg. 192.168.1.1:32400, 192.168.1.2:32400)":[null,"مضيف واحد أو أكثر تعمل بـ Plex Media Server <br/>(مثلا. 192.168.1.1:32400, 192.168.1.2:32400)"],"HTTPS":[null,"HTTPS"],"use https for plex media server requests?":[null,"استخدام https لطلبات plex media server؟"],"Click below to test Plex Media Server(s)":[null,"انقر أدناه للتحقق من Plex Media Server"],"Test Plex Media Server":[null,"التحقق من Plex Media Server"],"Plex Home Theater":[null,"Plex Home Theater"],"send Plex Home Theater notifications?":[null,"إرسال إشعارات Plex Home Theater؟"],"Plex Home Theater IP:Port":[null,"عنوان IP و منفذ Plex Home Theater"],"one or more hosts running Plex Home Theater<br>(eg. 192.168.1.100:3000, 192.168.1.101:3000)":[null,"مضيف واحد أو أكثر تعمل بـ Plex Home Theater <br>(مثلا. 192.168.1.1:32400, 192.168.1.2:32400)"],"Click below to test Plex Home Theater(s)":[null,"انقر أدناه للتحقق من Plex Home Theater"],"Test Plex Home Theater":[null,"التحقق من Plex Home Theater"],"some Plex Home Theaters <b class=\"boldest\">do not</b> support notifications e.g. Plexapp for Samsung TVs":[null,"بعض Plex Home Theaters هي <b class=\"boldest\">لا تدعم</b> الإشعارات، مثل Plexapp لتلفزيونات سامسونج"],"Emby":[null,"Emby"],"A home media server built using other popular open source technologies.":[null,"خادم وسائط منزلية تم إنشاؤه باستخدام تقنيات المصادر المفتوحه."],"send update commands to Emby?":[null,"إرسال أوامر التحديث إلى برنامج Emby؟"],"Emby IP:Port":[null,"عنوان IP و منفذ Emby"],"host running Emby (eg. 192.168.1.100:8096)":[null,"المضيف الموجود عليه Emby (مثلا. 192.168.1.100:8096)"],"Emby API Key":[null,"مفتاح Emby API"],"Networked Media Jukebox":[null,"خزانة الوسائط الشبكية"],"The Networked Media Jukebox, or NMJ, is the official media jukebox interface made available for the Popcorn Hour 200-series.":[null,"خزانة الوسائط الشبكية، أو NMJ، هي خزانة الوسائط الرسمية لسلسلة Popcorn Hour 200."],"send update commands to NMJ?":[null,"إرسال أوامر التحديث إلى NMJ؟"],"Popcorn IP address":[null,"عنوان IP للـ Popcorn"],"IP address of Popcorn 200-series (eg. 192.168.1.100)":[null,"عنوان IP لسلسلة Popcorn 200 (مثلا. 192.168.1.100)"],"Get settings":[null,"الحصول على الإعدادات"],"Get Settings":[null,"الحصول على الإعدادات"],"the Popcorn Hour device must be powered on and NMJ running.":[null,"جهاز Popcorn Hour يجب أن يكون في وضع التشغيل وخدمة الـ NMJ تعمل."],"NMJ database":[null,"قاعدة بيانات NMJ"],"automatically filled via the 'Get Settings' button.":[null,"ملء تلقائياً عن طريق الزر \"الحصول على إعدادات\"."],"NMJ mount url":[null,"عنوان ربط NMJ"],"Networked Media Jukebox v2":[null,"خزانة الوسائط الشبكية الأصدار 2"],"The Networked Media Jukebox, or NMJv2, is the official media jukebox interface made available for the Popcorn Hour 300 & 400-series.":[null,"خزانة الوسائط الشبكية الإصدار 2، أو NMJv2، هي خزانة الوسائط الرسمية لسلسلة Popcorn Hour 300 & 400."],"send update commands to NMJv2?":[null,"إرسال أوامر التحديث إلى NMJv2؟"],"IP address of Popcorn 300/400-series (eg. 192.168.1.100)":[null,"عنوان IP لسلسلة Popcorn 300/400 (مثلا. 192.168.1.100)"],"Database location":[null,"موقع قاعدة البيانات"],"Database instance":[null,"مثيل قاعدة البيانات"],"adjust this value if the wrong database is selected.":[null,"تعديل هذه القيمة إذا تم تحديد قاعدة البيانات الخطأ."],"Find database":[null,"العثور على قاعدة البيانات"],"Find Database":[null,"العثور على قاعدة البيانات"],"the Popcorn Hour device must be powered on.":[null,"جهاز Popcorn Hour يجب أن يكون في وضع التشغيل."],"NMJv2 database":[null,"قاعدة بيانات NMJv2"],"automatically filled via the 'Find Database' buttons.":[null,"ملء تلقائياً عن طريق الزر \"العثور على قاعدة البيانات\"."],"Synology":[null,"Synology"],"The Synology DiskStation NAS.":[null,"وحدة تخزين شبكية Synology DiskStation NAS."],"Synology Indexer is the daemon running on the Synology NAS to build its media database.":[null,"مفهرس Synology هو daemon يعمل على Synology لبناء قاعدة بيانات الوسائط الخاصة به."],"send Synology notifications?":[null,"إرسال إشعارات Synology؟"],"requires SickRage to be running on your Synology NAS.":[null,"يتطلب SickRage أن يعمل على Synology (وحدة التخزين الشبكية NAS)؛ الخاص بك."],"Synology Indexer":[null,"مفهرس Synology"],"Synology Notifier is the notification system of Synology DSM":[null,"Synology Notifier هو نظام الإشعارات الخاص بنظام التشغيل Synology DSM"],"send notifications to the Synology Notifier?":[null,"إرسال إشعارات إلى Synology Notifier؟"],"pyTivo":[null,"pyTivo"],"pyTivo is both an HMO and GoBack server. This notifier will load the completed downloads to your Tivo.":[null,"pyTivo هو خادم HMO و GoBack معاً. مزود خدمة الإشعارات هذا سيرفع جميع التنزيلات المكتملة إلى Tivo الخاص بك."],"send notifications to pyTivo?":[null,"ارسال الإخطارات إلى pyTivo؟"],"requires the downloaded files to be accessible by pyTivo.":[null,"يتطلب الملفات التي تم تحميلها ليتمكن pyTivo من الوصول إليها."],"pyTivo IP:Port":[null,"عنوان IP ومنفذ pyTivo"],"host running pyTivo (eg. 192.168.1.1:9032)":[null,"المضيف الموجود عليه pyTivo (مثلا. 192.168.1.100:8096)"],"pyTivo share name":[null,"اسم مشاركة pyTivo"],"value used in pyTivo Web Configuration to name the share.":[null,"القيمة المستخدمة لتسمية المشاركة في ملف تكوين ويب الخص بـ pyTivo."],"Tivo name":[null,"اسم Tivo"],"(Messages & Settings > Account & System Information > System Information > DVR name)":[null,"(رسائل & إعدادات > الحساب & معلومات النظام > معلومات النظام > اسم DVR)"],"Growl":[null,"Growl"],"A cross-platform unobtrusive global notification system.":[null,"نظام إشعرات عالمي غير مزعج يعمل على منصات تشغيل متعددة."],"send Growl notifications?":[null,"إرسال إشعارات لـ Growl؟"],"Growl IP:Port":[null,"عنوان IP ومنفذ Growl"],"host running Growl (eg. 192.168.1.100:23053)":[null,"المضيف الموجود عليه Growl (مثلا. 192.168.1.100:8096)"],"may leave blank if SickRage is on the same host.":[null,"اتركه فارغاً إذا كان SickRage يعمل على نفس المضيف."],"otherwise Growl <b>requires</b> a password to be used.":[null,"خلاف ذلك Growl؛<b>يتطلب</b> كلمة مرور لاستخدامها."],"Click below to register and test Growl, this is required for Growl notifications to work.":[null,"انقر أدناه لتسجيل واختبار Growl، وهذا مطلوب لكي تعمل إشعارات Growl."],"Register Growl":[null,"سجل Growl"],"Prowl":[null,"Prowl"],"A Growl client for iOS.":[null,"عميل Growl للأجهزة اللتي تعمل بنظام iOS."],"send Prowl notifications?":[null,"إرسال إشعارات لـ Prowl؟"],"Prowl Message Title":[null,"عنوان رسالة Prowl"],"Global Prowl API key(s)":[null,"مفاتيح API الشاملة لـ Prowl"],"Prowl API(s) listed here, separated by commas if applicable, will<br> receive notifications for <b>all</b> shows. Your Prowl API key is available at:":[null,"API الخاصة بـ Prowl المذكورة هنا، مفصولة بفواصل إذا كان ذلك ممكناً، سوف <br>تتلقى إشعارات <b>لكل</b> المسلسلات. مفتاح API Prowl الخاص بك متاح في:"],"(this field may be blank except when testing.)":[null,"(قد يكون هذا الحقل فارغاً ما عدا عند التحقق)"],"Show notification list":[null,"قائمة إشعارات المسلسل"],"-- Select a Show --":[null,"--حدد مسلسل-"],"Configure per-show notifications here by entering Prowl API key(s), separated by commas, '\n 'after selecting a show in the drop-down box. Be sure to activate the 'Save for this show' '\n 'button below after each entry.":[null,"تكوين الإشعارات لكل مسلسل بإدخال مفتاح (مفاتيح) Prowl API، مفصولة بفواصل، \n بعد تحديد المسلسل في مربع القائمة المنسدلة. تأكد من تنشيط الزر \n 'حفظ لهذا المسلسل' أدناه بعد كل إدخال."],"Save for this show":[null,"حفظ لهذا المسلسل"],"Prowl priority":[null,"أولوية Prowl"],"Very Low":[null,"منخفض جداً"],"Moderate":[null,"متوسطة"],"Normal":[null,"عادية"],"High":[null,"عالية"],"Emergency":[null,"طارئة"],"priority of Prowl messages from SickRage.":[null,"الأولوية في Prowl للرسائل من SickRage."],"Libnotify":[null,"Libnotify"],"The standard desktop notification API for Linux/*nix systems. This notifier will only function if the pynotify module is installed (Ubuntu/Debian package <a href=\"apt:python-notify\">python-notify</a>).":[null,"API لإشعارات سطح المكتب القياسية لأنظمة لينكس. سيعمل هذا الإشعار فقط إذا كانت الوحدة النمطية pynotify مثبتة (حزمة أنظمة أوبونتو أو ديبيان <a href=\"apt:python-notify\">python-notify</a>)."],"send Libnotify notifications?":[null,"إرسال إشعارات Libnotify؟"],"Pushover":[null,"Pushover"],"Pushover makes it easy to send real-time notifications to your Android and iOS devices.":[null,"Pushover يجعل من السهل إرسال إشعارات مباشرةً لأجهزة الأندرويد و الـ iOS."],"send Pushover notifications?":[null,"إرسال إشعارات لـ Pushover؟"],"Pushover key":[null,"مفتاح Pushover"],"user key of your Pushover account":[null,"مفتاح المستخدم الخاص بحسابك في Pushover"],"Pushover API key":[null,"مفتاح API للـ Pushover"],"click here":[null,""]," to create a Pushover API key":[null,""],"Pushover devices":[null,"أجهزة Pushover"],"comma separated list of pushover devices you want to send notifications to":[null,"قائمة بأجهزة pushover اللتي تريد إرسال إشعارات لها، مفصولة بفاصلة"],"Pushover notification sound":[null,"صوت الإشعار لـ Pushover"],"Bike":[null,"الدراجة"],"Bugle":[null,"بوق"],"Cash Register":[null,"تسجيل الذاكره المؤقته"],"Classical":[null,"كلاسيكي"],"Cosmic":[null,"Cosmic"],"Falling":[null,"السقوط"],"Gamelan":[null,"Gamelan"],"Incoming":[null,"الوارد"],"Intermission":[null,"استراحة"],"Magic":[null,"سحر"],"Mechanical":[null,"ميكانيكي"],"Piano Bar":[null,"بيانو بار"],"Siren":[null,"صفارة الإنذار"],"Space Alarm":[null,"إنذار الفضاء"],"Tug Boat":[null,"زورق القطر"],"Alien Alarm (long)":[null,"إنذار الفضائيين (طويل)"],"Climb (long)":[null,"تسلق (طويلة)"],"Persistent (long)":[null,"المستمر (طويلة)"],"Pushover Echo (long)":[null,"صدى المهمة اليسيرة (طويلة)"],"Up Down (long)":[null,"أعلى أسفل (طويلة)"],"None (silent)":[null,"بلا (صامت)"],"Device specific":[null,"تحدد بناءً على الجهاز"],"choose notification sound to use":[null,"اختر نغمة الإشعار"],"Pushover priority":[null,""],"Choose priority to use":[null,"اختر أولوية للإستخدام"],"Boxcar 2":[null,"Boxcar 2"],"Read your messages where and when you want them!":[null,"قراءة الرسائل الخاصة بك متى وأين تريد!"],"send Boxcar notifications?":[null,"إرسال إشعارات Boxcar؟"],"Boxcar2 access token":[null,"رمز مصادقة الوصول لـ Boxcar2"],"access token for your Boxcar account.":[null,"رمز مصادقة الوصول لحسابك في Boxcar."],"NMA":[null,"NMA"],"Notify My Android":[null,"Notify My Android"],"Notify My Android is a Prowl-like Android App and API that offers an easy way to send notifications from your application directly to your Android device.":[null,"Notify My Android هو برنامج و API لنظام الأندرويد و اللذي يقدم خدمة إرسال الإشعارات من أي برنامج لجهازك الأندرويد بطريقه سهلة."],"send NMA notifications?":[null,"إرسال إشعارات لـ NMA؟"],"NMA API key":[null,"مفتاح API لـ NMA"],"(multiple keys must be separated by commas, up to a maximum of 5)":[null,"(المفاتيح المتعددة يجب أن تكون مفصولة بفواصل، بحد أقصى 5)"],"NMA priority":[null,"أولوية NMA"],"priority of NMA messages from SickRage.":[null,"الأولوية في NMA للرسائل من SickRage."],"Pushalot":[null,"Pushalot"],"Pushalot is a platform for receiving custom push notifications to connected devices running Windows Phone or Windows 8.":[null,"Pushalot هي منصة لتلقي إشعارات مخصصة للأجهزة اللتي تعمل بنظام التشغيل ويندوز فون أو ويندوز 8."],"send Pushalot notifications ?":[null,"إرسال إشعارات لـ Pushalot؟"],"Pushalot authorization token":[null,"رمز مصادقة التفويض لـ Pushalot"],"authorization token of your Pushalot account.":[null,"رمز مصادقة التفويض لحسابك في Pushalot."],"Pushbullet":[null,"Pushbullet"],"Pushbullet is a platform for receiving custom push notifications to connected devices running Android/iOS and desktop browsers such as Chrome, Firefox or Opera.":[null,"Pushbullet هي منصة لتلقي إشعارات مخصصة للأجهزة العاملة بأنظمة أندرويد و iOS أو متصفحات الكروم و أوبرا أو فايرفوكس على سطح المكتب."],"send Pushbullet notifications?":[null,"إرسال إشعارات لـ Pushbullet؟"],"Pushbullet API key":[null,"مفتاح API للـ Pushbullet"],"API key of your Pushbullet account":[null,"مفتاح API الخاص بحسابك في Pushbullet"],"Pushbullet devices":[null,"أجهزة Pushbullet"],"Update device list":[null,"تحديث قائمة الأجهزة"],"Pushbullet channels":[null,"قنوات Pushbullet"],"Free Mobile":[null,"Free Mobile"],"Free Mobile is a famous French cellular network provider.<br> It provides to their customer a free SMS API.":[null,"Free Mobile هو موفر شبكة خليوية فرنسية شهيرة. <br>يوفر للعملاء API للرسائل القصيرة مجاناً."],"send SMS notifications?":[null,"إرسال إشعارات الرسائل القصيرة؟"],"send a SMS when a download starts?":[null,"إرسال رسالة نصية قصيرة عند بدء تحميل؟"],"send a SMS when a download finishes?":[null,"إرسال رسالة نصية قصيرة عند إكتمال التحميل؟"],"send a SMS when subtitles are downloaded?":[null,"إرسال رسالة نصية قصيرة عندما يتم تحميل الترجمة؟"],"Free Mobile customer ID":[null,"معرف العميل في Free Mobile"],"it's your Free Mobile customer ID (8 digits)":[null,"هو معرف العميل الخاصة بك في Free Mobile؛ (8 أرقام)"],"Free Mobile API key":[null,"مفتاح API لـ Free Mobile"],"find your API key in your customer portal.":[null,"العثور على مفتاح API في صفحة العميل الخاص بك."],"Click below to test your settings.":[null,"انقر أدناه لاختبار الإعدادات الخاصة بك."],"Telegram":[null,"تيليغرام"],"Telegram is a cloud-based instant messaging service.":[null,"تيليغرام هو خدمة مراسلة فورية سحابية."],"send Telegram notifications?":[null,"إرسال إشعارات إلى تيليغرام؟"],"send a message when a download starts?":[null,"إرسال رسالة عند بدء تحميل؟"],"send a message when a download finishes?":[null,"إرسال رسالة عند انتهاء التحميل؟"],"send a message when subtitles are downloaded?":[null,"إرسال رسالة عندما يتم تحميل الترجمة؟"],"User/group ID":[null,"المستخدم/معرف المجموعة"],"contact @myidbot on Telegram to get an ID":[null,"تواصل مع @myidbot في تيليغرام للحصول على المعرف"],"Bot API token":[null,"الرمز المميز لـ API Bot"],"contact @BotFather on Telegram to set up one":[null,"تواصل مع @BotFather على تليغرام للحصول على واحد"],"Join":[null,"Join"],"Join all of your devices together!":[null,"اجمع كل الأجهزة الخاصة بك معا!"],"send Join notifications?":[null,"إرسال إشعارات لـ Join؟"],"Device ID":[null,"رقم معرف الجهاز"],"per device specific id":[null,"معرف محدد لكل جهاز"]," to create a Join API key":[null,""],"Twilio":[null,"Twilio"],"Twilio is a webservice API that allows you to communicate directly with a mobile number. This notifier will send a text directly to your mobile device.":[null,""],"should SickRage text your mobile device?":[null,""],"Twilio Account SID":[null,""],"account SID of your Twilio account.":[null,""],"Twilio Auth Token":[null,""],"Twilio Phone SID":[null,""],"phone SID that you would like to send the sms from":[null,""],"Your phone number":[null,"رقم الهاتف الخاص بك"],"phone number that will receive the sms. Please use the format +1-###-###-####":[null,""],"Twitter":[null,"تويتر"],"A social networking and microblogging service, enabling its users to send and read other users' messages called tweets.":[null,"هي خدمة شبكة إجتماعية و تدوين، تمكن المستخدمين من إرسال وقراءة رسائل المستخدمين الآخرين وتسمى تغريدات."],"should SickRage post tweets on Twitter?":[null,"هل ينشر SickRage تغريدات على حسابك في تويتر؟"],"you may want to use a secondary account.":[null,"قد ترغب في استخدام حساب ثانوي."],"send direct message":[null,"إرسال رسالة مباشرة"],"send a notification via Direct Message, not via status update":[null,"إرسال إشعار عبر رسالة خاصة، وليس عن طريق تحديث الحالة"],"send DM to":[null,""],"Twitter account to send Direct Messages to (must follow you)":[null,"حساب تويتر إرسال رسائل خاصة إلى (يجب أن يكون متابعاً لك)"],"Step One":[null,"الخطوة الأولى"],"Request Authorization":[null,"طلب التفويض"],"Click the \"Request Authorization\" button.<br> This will open a new page containing an auth key.<br> <b>note:</b> if nothing happens check your popup blocker.":[null,"انقر فوق الزر \"طلب الحصول على إذن\". <br>هذا سيفتح صفحة جديدة تحتوي على مفتاح مصادقة. <br><b>ملاحظة:</b> إذا لم يحدث شيء تحقق من حظر الإطارات المنبثقة الخاصة بك."],"Step Two":[null,"الخطوة الثانية"],"Enter the key Twitter gave you below, and click \"Verify Key\".":[null,"أدخل المفتاح اللذي أعطاك إياه تويتر أدناه، ثم انقر فوق \"التحقق من المفتاح\"."],"Trakt":[null,"Trakt"],"Trakt helps keep a record of what TV shows and movies you are watching. Based on your favorites, Trakt recommends additional shows and movies you'll enjoy!":[null,"Trakt يساعد على الاحتفاظ بسجل البرامج التلفزيونية والأفلام. استناداً إلى المفضلة الخاصة بك، يوصي trakt بمسلسلات إضافية وأفلام سوف تستمتع!"],"send Trakt.tv notifications?":[null,"إرسال إشعارات لـ Trakt.tv؟"],"username of your Trakt account.":[null,"اسم المستخدم للحساب الخاص بك في Trakt."],"Trakt PIN":[null,"رقم PIN لـ Trakt"],"Get Trakt PIN":[null,"الحصول على رقم PIN من Trakt"],"PIN code to authorize SickRage to access Trakt on your behalf.":[null,"رقم PIN يعطي الإذن لـ SickRage للوصول إلى Trakt بالنيابة عنك."],"API Timeout":[null,"مهلة API"],"seconds to wait for Trakt API to respond. (Use 0 to wait forever)":[null,"الثواني لانتظار Trakt API للاستجابة. (استخدم 0 للانتظار إلى الأبد)"],"Default indexer":[null,"المفهرس الافتراضي"],"Sync libraries":[null,"مزامنة المكتبات"],"sync your SickRage show library with your trakt show library.":[null,"مزامنة مكتبة مسلسلات SickRage مع مكتبة المسلسلات الخاصة بك في trakt."],"Remove Episodes From Collection":[null,"إزالة الحلقات من المكتبة"],"remove an episode from your Trakt Collection if it is not in your SickRage Library.":[null,"إزالة الحلقة من مكتبة Trakt الخاص بك إذا لم تكن في مكتبة SickRage."],"Sync watchlist":[null,"مزامنة قائمة المراقبة"],"sync your SickRage show watchlist with your trakt show watchlist (either Show and Episode).":[null,"مزامنة قائمة المراقبة للمسلسلات في SickRage الخاص بك مع trakt الخاص بك (المسلسلات و الحلقات)."],"episode will be added on watch list when wanted or snatched and will be removed when downloaded ":[null,"سيتم إضافة الحلقة على قائمة المراقبة عندما تكون مطلوبة أو مجلوبة وسيتم إزالتها عند تحميلها "],"Watchlist add method":[null,"طريقة الإضافة إلى قائمة المراقبة"],"Skip All":[null,"تخطي الجميع"],"Download Pilot Only":[null,"تحميل الحلقة التجريبية فقط"],"Get whole show":[null,"الحصول على المسلسل كامل"],"method in which to download episodes for new shows.":[null,"الطريقة لتحميل الحلقات للمسلسلات الجديدة."],"Remove episode":[null,"إزالة الحلقة"],"remove an episode from your watchlist after it is downloaded.":[null,"إزالة الحلقة من قائمة المراقبة الخاصة بك بعد تنزيلها."],"Remove series":[null,"إزالة المسلسل"],"remove the whole series from your watchlist after any download.":[null,"إزالة المسلسل كامل من قائمة المراقبة بعد التحميل."],"Remove watched show":[null,"إزالة المسلسل اللذي تمت مشاهدته"],"remove the show from sickrage if it's ended and completely watched":[null,"إزالة المسلسل من sickrage إذا كان قد انتهى و مشاهدته"],"Start paused":[null,"البدأ في وضع الإيقاف المؤقت"],"shows grabbed from your trakt watchlist start paused.":[null,"المسلسلات المجلوبة من قائمة المراقبة trakt الخاصة بك تبدأ في وضع الإيقاف المؤقت."],"Trakt blackList name":[null,"اسم القائمة السوداء الخاصة بـ Trakt"],"name (slug) of list on Trakt for blacklisting show on 'Add Trending Show' & 'Add Recommended Shows' pages":[null,"اسم(slug) على قائمة Trakt لمسلسللات القائمة السوداء على صفحات \"إضافة مسلسل شائع\" و \"إضافة مسلسلات موصى بها\""],"Email":[null,"البريد الإلكتروني"],"Allows configuration of email notifications on a per show basis.":[null,"السماح بتكوين إشعارات البريد الإلكتروني لكل مسلسل."],"send email notifications?":[null,"إرسال إشعارات البريد الإلكتروني؟"],"SMTP host":[null,"مضيف SMTP"],"hostname of your SMTP email server.":[null,"اسم المضيف لخادم البريد الإلكتروني SMTP الخاص بك."],"SMTP port":[null,"منفذ SMTP"],"port number used to connect to your SMTP host.":[null,"رقم المنفذ المستخدم في الاتصال بمضيف SMTP الخاص بك."],"SMTP from":[null,"من SMTP"],"sender email address, some hosts require a real address.":[null,"عنوان البريد الإلكتروني المرسل، يتطلب بعض المضيفين عنوان حقيقي."],"Use TLS":[null,"استخدام TLS"],"check to use TLS encryption.":[null,"الاختيار لاستخدام تشفير TLS."],"SMTP user":[null,"اسم مستخدم SMTP"],"(optional) your SMTP server username.":[null,"(اختياري) اسم خادم SMTP الخاص بك."],"SMTP password":[null,"كلمة مرور SMTP"],"(optional) your SMTP server password.":[null,"(اختياري) كلمة مرور خادم SMTP الخاص بك."],"Global email list":[null,"قائمة البريد الإلكتروني الشاملة"],"email addresses listed here, separated by commas if applicable, will<br> receive notifications for <b>all</b> shows.":[null,"عناوين البريد الإلكتروني المدرجة هنا، مفصولة بفواصل إذا كان ذلك ممكناً، سوف <br>تستقبل إشعارات <b>لكافة</b> المسلسلات."],"(This field may be blank except when testing.)":[null,"(قد يكون هذا الحقل فارغاً ما عدا عند التحقق)"],"Email Subject":[null,"موضوع البريد الإلكتروني"],"use a custom subject for some privacy protection?":[null,"استخدام موضوع مخصصة لحماية الخصوصية؟"],"(leave blank for the default SickRage subject)":[null,"(اترك فارغة لموضوع SickRage الافتراضي)"],"configure per-show notifications here by entering email address(es), separated by commas,":[null,"ضبط إشعارات لكل مسلسل هنا عن طريق إدخال عنوان أو عناوين البريد الإلكتروني، مفصولة بفواصل،"],"after selecting a show in the drop-down box. Be sure to activate the 'Save for this show'":[null,"بعد اختيار المسلسل في مربع القائمة المنسدلة. تأكد من تنشيط 'حفظ' لهذا المسلسل"],"button below after each entry.":[null,"الزر أدناه بعد كل إدخال."],"Slack":[null,""],"Slack brings all your communication together in one place. It's real-time messaging, archiving and search for modern teams.":[null,""],"should SickRage post messages on Slack?":[null,""],"Slack Incoming Webhook":[null,""],"Discord":[null,""],"All-in-one voice and text chat for gamers that's free, secure, and works on both your desktop and phone.":[null,""],"Should SickRage post messages on Discord?":[null,""],"Discord Incoming Webhook":[null,""],"Create webhook under channel settings.":[null,""],"Discord Bot Name":[null,""],"Blank will use webhook default Name.":[null,""],"Discord Avatar URL":[null,""],"Blank will use webhook default Avatar.":[null,""],"Discord TTS":[null,""],"Send notifications using text-to-speech":[null,""],"Post-Processing":[null,"المعالجة"],"Episode Naming":[null,"تسمية الحلقات"],"Metadata":[null,"بيانات التعريف"],"Settings that dictate how SickRage should process completed downloads.":[null,"الإعدادات التي تملي على SickRage كيفية معالجة الحلقات اللتي تم تحميلها."],"enable the automatic post processor to scan and process any files in your Post Processing Dir":[null,"تمكين المعالجه التلقائيه لمسح و معالجة أي ملفات في مجلد المعالجة الخاص بك"],"do not use if you use an external Post Processing script":[null,"لا تستخدمه، إذا كنت تستخدم برنامج معالجة نصي آخر خارجي"],"Post Processing Dir":[null,"مجلد المعالجة"],"the folder where your download client puts the completed TV downloads.":[null,"المجلد الخاص ببرمامج التحميل الخاص بك لوضع الحلقات فيه بعد إكتمال تحميلها."],"please use seperate downloading and completed folders in your download client if possible.":[null,"الرجاء استخدام مجلدات تحميل مختلفة للملفات المكتملة والغير مكتملة في برنامج التحميل الخاص بك إذا كان ذلك ممكناً."],"Processing Method":[null,"طريقة المعالجة"],"what method should be used to put files into the library?":[null,"ماهي الطريقة المراد استخدامها لوضع الملفات في المكتبة؟"],"if you keep seeding torrents after they finish, please avoid the 'move' processing method to prevent errors.":[null,"إذا كنت تستمر برفع ملفات التورنت بعد اكتمال تحميلها، الرجاء تجنب ضبط طريقة المعالجة على الخيار \"نقل\" لمنع حدوث الأخطاء."],"Auto Post-Processing Frequency":[null,"تكرار المعالجة التلقائي"],"time in minutes to check for new files to auto post-process (min 10)":[null,"الوقت بالدقائق للتحقق من وجود ملفات جديدة لبدأ المعالجة التلقائية (10 دقيقة)"],"Postpone post processing":[null,"تأجيل المعالجة"],"wait to process a folder if sync files are present.":[null,"الانتظار عن معالجة الملف إذا كانت المزامنة جارية حاليا."],"Sync File Extensions":[null,"مزامنة ملحقات الملفات"],"comma seperated list of extensions or filename globs SickRage ignores when Post Processing":[null,"قائمة مفصولة بفاصلة لملحقات أو اسماء ملفات عامة يتم تجاهلها من SickRage عند مرحلة المعالجة"],"Rename Episodes":[null,"إعادة تسمية الحلقات"],"rename episode using the Episode Naming settings?":[null,"قم بإعادة تسمية الحلقة باستخدام إعدادات التسمية؟"],"Create missing show directories":[null,"إنشاء مجلدات المسلسلات المفقودة"],"create missing show directories when they get deleted":[null,"إنشاء مجلدات المسلسلات المفقودة عندما يتم حذفها"],"Add shows without directory":[null,"إضافة المسلسلات دون مجلد"],"add shows without creating a directory (not recommended)":[null,"إضافة المسلسلات دون إنشاء مجلد (غير مستحسن)"],"Move associated files":[null,""],"move associated (srt/srr/sfv/etc) files while post processing?":[null,""],"Rename .nfo file":[null,"إعادة تسمية ملف.nfo"],"rename the original .nfo file to .nfo-orig to avoid conflicts?":[null,"إعادة تسمية ملف.nfo الأصلي إلى.nfo-orig لتجنب التعارض؟"],"Associated file extensions":[null,""],"comma separated list of associated file extensions SickRage should keep while post processing.":[null,""],"leaving it empty means no associated files will be post processed":[null,""],"Delete non associated files":[null,""],"delete non associated files while post processing?":[null,""],"Change File Date":[null,"تغيير تاريخ الملف"],"set last modified filedate to the date that the episode aired?":[null,"ضبط آخر تعديل لتاريخ الملف إلى تاريخ بثت الحلقة؟"],"some systems may ignore this feature.":[null,"بعض الأنظمة قد تتجاهل هذه الميزة."],"Timezone for File Date":[null,"المنطقة الزمنية لتاريخ الملف"],"local":[null,"محلي"],"network":[null,"الشبكة"],"what timezone should be used to change File Date?":[null,"ما هي المنطقة الزمنية التي ينبغي استخدامها لتغيير \"تاريخ الملف\"؟"],"Unpack":[null,"فك الضغط"],"What to do with archived releases found in your <i>TV Download Dir</i>?":[null,""],"Ignore (do not process contents)":[null,""],"Unpack (process contents)":[null,""],"Treat as video (process archive as-is)":[null,""],"'Unpack' only works with RAR archives":[null,""],"Windows":[null,"ويندوز"],"WinRar is required on windows":[null,"يجب استخدام برنامج WinRar على ويندوز"],"Unpack Directory":[null,""],"Choose a path to unpack files, leave blank to unpack in download dir":[null,""],"Unrar Location":[null,"موقع فك الضغط"],"add the path to unrar if it is not in the system path":[null,"إضافة المسار إلى فك الضغط إذا لم يكن في مسار النظام"],"Alternate Unrar Tool":[null,"أداة فك الضغط بديلة"],"add the path to an alternate unrar tool if it is not in the system path":[null,"إضافة مسار أداة فك الضغط البديلة إذا لم يكن مضافا في مسار النظام"],"Delete RAR contents":[null,"حذف محتويات الملفات المغوطه"],"delete content of RAR files, even if Process Method not set to move?":[null,"حذف محتوى ملفات الضغط، حتى لو كانت طريقة المعالجة المختارة هي النقل؟"],"only working with RAR archive":[null,"تعمل فقط مع ملفات الضغط من نوع RAR"],"Don't delete empty folders":[null,"لا تقم بحذف المجلدات الفارغة"],"leave empty folders when Post Processing?":[null,"اترك المجلدات الفارغة بعد المعالجة؟"],"can be overridden using manual Post Processing":[null,"يمكن أن يتم تجاوزه باستخدام المعالجه اليدوية"],"Follow symbolic-links":[null,""],"follow down symbolic links in download directory?":[null,""],"<b>EXPERTS ONLY.</b><br>Enable only if you know what <b>circular symbolic links</b> are,<br>and can <b>verify that you have none</b>.":[null,""],"Use icacls":[null,"استخدام icacls"],"Windows only":[null,"نظام ويندوز فقط"],"sets video permissions after using the move method in post processing":[null,"تعيين أذونات الفيديو بعد استخدام أسلوب النقل في مرحلة ما بعد المعالجة"],"Extra Scripts":[null,"برامج نصية إضافية"],"see":[null,""],"for script arguments description and usage.":[null,"للحصول على وصف و استخدام script arguments."],"How SickRage will name and sort your episodes.":[null,"كيف يمكن لـ SickRage تسمية و ترتيب الحلقات."],"Name Pattern":[null,"نمط التسمية"],"Toggle Naming Legend":[null,"تبديل وسيلة إيضاح التسمية"],"don't forget to add quality pattern. Otherwise after post-processing the episode will have UNKNOWN quality":[null,"لا تنسى إضافة نمط الجودة. و إلا ستكون الحلقة مجهولة الجودة بعد معالجتها"],"Meaning":[null,"المعنى"],"Pattern":[null,"النمط"],"Result":[null,"النتيجة"],"Use lower case if you want lower case names (eg. %sn, %e.n, %q_n etc)":[null,"استخدم الأحرف الصغيرة إذا كنت تريد أسماء بالأحرف الصغيرة (eg. %sn, %e.n, %q_n etc)"],"Show Name":[null,"اسم المسلسل"],"Show.Name":[null,"اسم.المسلسل"],"Show_Name":[null,"اسم_المسلسل"],"Season Number":[null,"رقم الموسم"],"XEM Season Number":[null,"رقم الموسم من XEM"],"Episode Number":[null,"رقم الحلقة"],"XEM Episode Number":[null,"رقم الحلقة من XEM"],"Episode Name":[null,"اسم الحلقة"],"Episode.Name":[null,"اسم.الحلقة"],"Episode_Name":[null,"اسم_الحلقة"],"Air Date":[null,"تاريخ العرض"],"Post-Processing Date":[null,"تاريخ المعالجة"],"Quality":[null,"الجودة"],"Scene Quality":[null,"جودة المشهد"],"Release Name":[null,"اسم الإصدار"],"SickRage' is used in place of RLSGROUP if it could not be properly detected":[null,"سيتم استبدال اسم مجموعة الإصدار في حالة عدم القدرة على العثور عليه باسم SickRage"],"Release Group":[null,"اسم مجموعة الإصدار"],"If episode is proper/repack add 'proper' to name.":[null,"إذا كانت الحلقة اصدار مصحح أو معاد ضغطها قم بإضافة عِبارة 'مصحح proper' إلى اسم الحلقة."],"Release Type":[null,"نوع الإصدار"],"Multi-Episode Style":[null,"أسلوب الحلقة المتعددة الأجزاء"],"Single-EP Sample":[null,"عينة الحلقة"],"Multi-EP sample":[null,"عينة الحلقة المتعددة الأجزاء"],"Strip Show Year":[null,"شريط سنة العرض"],"remove the TV show's year when renaming the file?":[null,"إزالة تاريخ سنة عرض المسلسل عند إعادة تسمية الملف؟"],"only applies to shows that have year inside parentheses":[null,"لا ينطبق إلا على المسلسلات اللتي تحتوي على تاريخ سنة العرض داخل أقواس"],"Custom Air-By-Date":[null,"تخصيص Air-By-Date"],"name air-by-date shows differently than regular shows?":[null,"تسمية مسلسلات Air-By-Date بإختلاف عن المسلسلات العادية؟"],"Toggle ABD Naming Legend":[null,"تبديل وسيلة إيضاح التسمية لـ ABD"],"Regular Air Date":[null,"تاريخ العرض العادي"],"Year":[null,"السنة"],"Month":[null,"الشهر"],"Day":[null,"اليوم"],"Multi-EP style is ignored":[null,"تجاهل أسلوب الحلقة المتعددة الأجزاء"],"Custom Sports":[null,"الرياضة المخصصة"],"name sports shows differently than regular shows?":[null,"تسمية مسلسلات الأنيمي بإختلاف عن المسلسلات العادية؟"],"Toggle Sports Naming Legend":[null,"تبديل وسيلة إيضاح التسمية لبرامج الرياضة"],"Sports Air Date":[null,"تاريخ عرض العروض الرياضية"],"Custom Anime":[null,"أنمي مخصص"],"name anime shows differently than regular shows?":[null,"تسمية مسلسلات الأنيمي بإختلاف عن المسلسلات العادية؟"],"Toggle Anime Naming Legend":[null,"تفعيل تسمية Legend للأنيمي"],">XEM Season Number":[null,">رقم الموسم من XEM"],"Single-EP Anime Sample":[null,"عينة حلقة الإنيمي"],"Multi-EP Anime sample":[null,"عينة حلقة الأنيمي المتعددة الأجزاء"],"Add Absolute Number":[null,"إضافة العدد المطلق"],"add the absolute number to the season/episode format?":[null,"إضافة العدد المطلق لتنسيق الموسم/الحلقة؟"],"only applies to anime. (eg. S15E45 - 310 vs S15E45)":[null,""],"Only Absolute Number":[null,"فقط العدد المطلق"],"replace season/episode format with absolute number":[null,"استبدال تنسيق الموسم/الحلقة مع العدد المطلق"],"only applies to anime.":[null,""],"No Absolute Number":[null,"بدون العدد المطلق"],"don't include the absolute number":[null,"لا تشتمل على العدد المطلق"],"The data associated to the data. These are files associated to a TV show in the form of images and text that, when supported, will enhance the viewing experience.":[null,"البيانات المرتبطة بالبيانات. هذه هي الملفات المرتبطة بمسلسل في شكل نصوص و صور، و اللتي عندما تكون مدعومة، سوف تعزز من تجربة المشاهدة."],"Metadata Type":[null,"نوع بيانات التعريف"],"toggle metadata options that you wish to be created":[null,""],"multiple targets may be used":[null,""],"Select Metadata":[null,"حدد بيانات التعريف"],"Provider Priorities":[null,"أولويات مقدمي الخدمة"],"Provider Options":[null,"خيارات مقدمي الخدمة"],"Configure Custom Newznab Providers":[null,"إعدادات مقدمي خدمة Newznab مخصصين"],"Configure Custom Torrent Providers":[null,"إعدادات مقدمي خدمة تورينت مخصصين"],"Check off and drag the providers into the order you want them to be used.":[null,"اختر واسحب مقدمي الخدمات في الترتيب الذي تريده."],"At least one provider is required but two are recommended.":[null,"مقدم خدمة واحد على الأقل مطلوب ولكن ينصح باثنين."],"Torrent providers can be toggled in ":[null,"مقدمي خدمات التورينت يمكن تفعيلهم في "],"Provider does not support backlog searches at this time.":[null,"لا يدعم مقدم الخدمة البحث المتراكم في هذا الوقت."],"Provider is <b>NOT WORKING</b>.":[null,"مقدم الخدمة <b>لا يعمل</b>."],"Configure individual provider settings here.":[null,"ضبط إعدادات مقدم الخدمة."],"Check with provider's website on how to obtain an API key if needed.":[null,"تحقق من موقع ويب الخاص بمقدم الخدمة عن كيفية الحصول على مفتاح API إذا تطلب الأمر."],"Configure provider":[null,"الضبط - مقدمي الخدمات"],"no providers available to configure.":[null,"لا يوجد مقدمي خدمات متاحين للضبط."],"URL":[null,"عنوان URL"],"Enable daily searches":[null,"تمكين عمليات البحث اليومية"],"enable provider to perform daily searches.":[null,"تمكين مقدم الخدمة لإجراء عمليات البحث اليومية."],"Enable backlog searches":[null,"تمكين عمليات البحث المتراكمة"],"enable provider to perform backlog searches.":[null,"تمكين مقدم الخدمة لإجراء عمليات البحث المتراكة."],"Season search mode":[null,"وضع بحث الموسم"],"when searching for complete seasons you can choose to have it look for season packs only, or choose to have it build a complete season from just single episodes.":[null,"عند البحث عن مواسم كاملة يمكنك اختيار أن يكون البحث عن تحميل موسم كامل فقط، أو اختيار أن يكون التحميل لكل حلقة على حدة."],"season packs only.":[null,"موسم كامل فقط."],"episodes only.":[null,"الحلقات فقط."],"Enable fallback":[null,"تمكين التراجع"],"when searching for a complete season depending on search mode you may return no results, this helps by restarting the search using the opposite search mode.":[null,"عند البحث عن موسم كامل تبعاً لوضع البحث قد لا يتم العثور على نتائج، يساعد هذا قبل إعادة تشغيل البحث باستخدام طريقة البحث العكسي."],"Custom URL":[null,"عنوان URL مخصص"],"the URL should include the protocol (and port if applicable). Examples: http://192.168.1.4/ or http://localhost:3000/":[null,"ينبغي أن يتضمن عنوان URL على البروتوكول (والمنفذ إذا كان ذلك ممكناً). على سبيل المثال: http://192.168.1.4/أو http://localhost:3000/"],"Api key":[null,"مفتاح Api"],"Digest":[null,"Digest"],"Hash":[null,"Hash"],"Passkey":[null,"مفتاح المرور"],"Cookies":[null,"ملفات تعريف الارتباط"],"example: uid=1234;pass=567845439634987<br>note: uid and pass are not your username/password.<br>use DevTools or Firebug to get these values after logging in on your browser.":[null,""],"Pin":[null,"رقم التعريف الشخصي"],"Seed ratio":[null,"نسبة الـ Seed"],"stop transfer when ratio is reached<br>(-1 SickRage default to seed forever, or leave blank for downloader default)":[null,"إيقاف النقل عندما يتم التوصل إلى نسبة<br>؛ (-1 الافتراضي لـ SickRage هو -1 للرفع إلى الأبد، أو اترك المساحة فارغة لتنزيل الافتراضي)"],"Minimum seeders":[null,"الحد الأدنى من seeders"],"Minimum leechers":[null,"الحد الأدنى من leechers"],"Confirmed download":[null,"تأكيد التحميل"],"only download torrents from trusted or verified uploaders ?":[null,"تحميل التورنت فقط من المصادر الموثوق بها أو اللتي تم التحقق منها؟"],"Ranked torrents":[null,"ملفات تورينت المُصنفة"],"only download ranked torrents (trusted releases)":[null,"فقط تحميل ملفات التورينت المصنفة (الإصدارات الموثوق بها)"],"English torrents":[null,"التورينت الإنجليزية"],"only download english torrents, or torrents containing english subtitles":[null,"فقط قم بتحميل التورينت الإنجليزية، أو التورينت التي تحتوي على ترجمة باللغة الإنجليزية"],"For Spanish torrents":[null,"التورينت الإسبانية"],"ONLY search on this provider if show info is defined as \"Spanish\" (avoid provider's use for VOS shows)":[null,"البحث فقط في مقدم الخدمة هذا إذا كانت معلومات المسلسل معرفة بالـ \"الإسبانية\" (تجنب استخدام مقدم مسلسلات VOS)"],"Sorting results by":[null,"فرز النتائج حسب"],"Freeleech":[null,"Freeleech"],"only download <b>\"FreeLeech\"</b> torrents.":[null,"فقط تحميل ملفات التورنت <b>\"FreeLeech\"</b>."],"Category":[null,"الفئة"],"select torrent with Italian subtitle":[null,"حدد تورنت مع الترجمة الإيطالية"],"Configure Custom<br>Newznab Providers":[null,"إعدادات مقدمي<br>خدمات Newznab مخصصين"],"Add and setup or remove custom Newznab providers.":[null,"إضافة وإعداد أو إزالة مقدم خدمات Newznab مخصص."],"Select provider":[null,"حدد مقدم خدمة"],"-- add new provider --":[null,"-إضافة مقدم خدمة جديد-"],"Provider name":[null,"اسم مقدم الخدمة"],"Site URL":[null,"عنوان الموقع"],"Newznab search categories":[null,"فئات بحث Newznab"],"select your Newznab categories on the left, and click the \"update categories\" button to use them for searching.) <b>don't forget to to save the form!":[null,"حدد الفئات الخاصة بك في Newznab على الجانب الأيمن، وانقر فوق الزر \"تحديث الفئات\" لإستخدامها في البحث). <b>لا تنسى حفظ النموذج!"],"Update Categories":[null,"تحديث الفئات"],"Add":[null,"إضافة"],"Delete":[null,"حذف"],"Add and setup or remove custom RSS providers.":[null,"إضافة وإعداد أو إزالة مقدمي خدمة RSS مخصصة."],"RSS URL":[null,"رابط RSS"],"Search element":[null,"عنصر البحث"],"eg: title":[null,"مثلا: العنوان"],"Episode Search":[null,"البحث عن الحلقة"],"NZB Search":[null,"بحث NZB"],"Torrent Search":[null,"بحث تورينت"],"How to manage searching with":[null,"كيفية إدارة البحث مع"],"Randomize Providers":[null,"مقدمي الخدمات بطريقة عشوائية"],"randomize the provider search order instead of going in order of placement":[null,"عشوائية اختيار مقدمي الخدمة في البحث بدلاً من الترتيب المختار"],"Download propers":[null,"تحميل الإصدارات المصححة"],"replace original download with \"Proper\" or \"Repack\" if nuked":[null,"استبدال التحميل الأصلي بالـ \"المصحح\" أو \"المعاد ضغطه\" إن وجد"],"Check propers every":[null,"التحقق من الإصدارات المصححة كل"],"24 hours":[null,"24 ساعة"],"4 hours":[null,"4 ساعات"],"90 mins":[null,"90 دقيقة"],"45 mins":[null,"45 دقيقة"],"15 mins":[null,"15 دقيقة"],"Backlog search day(s)":[null,"أيام البحث المتراكم"],"number of day(s) that the \"Forced Backlog Search\" will cover (e.g. 7 Days)":[null,"عدد الأيام اللتي \"يجبر البحث المتراكم فيها\" سوف تغطي (مثلاً 7 أيام)"],"Backlog search frequency":[null,"تكرار البحث المتراكم"],"time in minutes between searches (min.":[null,"الوقت بالدقائق بين عمليات البحث (دقيقة."],"Daily search frequency":[null,"تكرار البحث اليومي"],"Usenet retention":[null,"مدة الاحتفاظ في Usenet"],"age limit in days for usenet articles to be used (e.g. 500)":[null,"الحد الأدنى لأيام استخدام مواد usenet (مثلاً 500)"],"Ignore words":[null,"الكلمات المتجاهله"],"results with one or more word from this list will be ignored<br>separate words with a comma, e.g. \"word1,word2,word3\"":[null,"أي نتيجة تحتوي على كلمة أو أكثر من هذه القائمة سيتم تجاهلها<br> الكلمات تفصل بفاصلة، مثلا \"كلمة 1، كلمة 2، كلمة 3\""],"Require words":[null,"الكلمات المطلوبة"],"results with no word from this list will be ignored<br>separate words with a comma, e.g. \"word1,word2,word3\"":[null,"أي نتيجة لا تحتوي على كلمة من هذه القائمة سيتم تجاهلها<br> الكلمات تفصل بفاصلة، مثلا \"كلمة 1، كلمة 2، كلمة 3\""],"Trackers list":[null,"قائمة الـ Trackers"],"trackers that will be added to magnets without trackers<br>separate trackers with a comma, e.g. \"tracker1,tracker2,tracker3\"":[null,"الـ Trackers التي ستضاف إلى روابط الـ magnets دون trackers؛ <br>منفصلة بفاصلة, مثل \"tracker1، tracker2، tracker3\""],"Ignore language names in subbed results":[null,"تجاهل أسماء اللغة في النتائج الفرعية"],"ignore subbed releases based on language names <br>\n Example: \"dk\" will ignore words: dksub, dksubs, dksubbed, dksubed <br>\n separate languages with a comma, e.g. \"lang1,lang2,lang3":[null,"تجاهل الإصدارات الفرعية على أساس أسماء اللغة <br>؛\n مثال: \"dk\" سيتم تجاهل الكلمات: dksub, dksubs, dksubbed, dksubed; و <br>؛ \n فصل اللغات بالفاصله ، مثل \"اللغة 1، الغة 2، اللغة 3\""],"Allow high priority":[null,"السماح بأولوية عالية"],"set downloads of recently aired episodes to high priority":[null,"ضبط الحلقات اللتي بثت مؤخرا إلى أولوية عالية"],"Use Failed Downloads":[null,"استخدام التحميلات اللتي فشلت"],"use Failed Download Handling?":[null,"استخدام معالجة فشل التحميل؟"],"will only work with snatched/downloaded episodes after enabling this":[null,"سوف تعمل فقط مع الحلقات المجلوبه/المحمله بعد تمكين هذا الخيار"],"Delete Failed":[null,"حذف التحميل الفاشل"],"delete files left over from a failed download?":[null,"حذف الملفات التي خلفها فشل التحميل؟"],"this only works if Use Failed Downloads is enabled.":[null,"يعمل هذا فقط إذا تم تمكين \"استخدام التحميلات اللتي فشلت\"."],"How to handle NZB search results.":[null,"كيفية التعامل مع نتائج بحث NZB."],"Search NZBs":[null,"بحث NZBs"],"enable NZB search providers":[null,"تمكين موفري بحث NZB"],"Send .nzb files to":[null,"إرسال ملفات.nzb إلى"],"SABnzbd server URL":[null,"عنوان URL لخادم SABnzbd"],"URL to your SABnzbd server (e.g. http://localhost:8080/)":[null,"عنوان URL الخاص بخادم SABnzbd (مثلاً من http://localhost:8080)"],"SABnzbd username":[null,"اسم المستخدم لـ SABnzbd"],"(blank for none)":[null,"(فارغ إذا لم يوجد)"],"SABnzbd password":[null,"كلمة المرور لـ SABnzbd"],"SABnzbd API key":[null,"مفتاح API لـ SABnzbd"],"locate at... SABnzbd Config -> General -> API Key":[null,"تجده في... ضبط SABnzbd -> عام -> مفتاح API"],"Use SABnzbd category":[null,"استخدام فئة SABnzbd"],"add downloads to this category (e.g. TV)":[null,"إضافة التحميل لهذه الفئة (مثل TV)"],"Use SABnzbd category (backlog episodes)":[null,"استخدم فئة SABnzbd (الحلقات المتراكمة)"],"add downloads of old episodes to this category (e.g. TV)":[null,"إضافة التحميل للحلقات القديمة لهذه الفئة (مثل TV)"],"Use SABnzbd category for anime":[null,"استخدام فئة SABnzbd للأنمي"],"add anime downloads to this category (e.g. anime)":[null,"إضافة تحميل الأنمي لهذه الفئة (مثل anime)"],"Use SABnzbd category for anime (backlog episodes)":[null,"استخدام فئة SABnzbd للأنمي (الحلقات المتراكمة)"],"add anime downloads of old episodes to this category (e.g. anime)":[null,"إضافة تحميل الأنيمي للحلقات القديمة لهذه الفئة (مثل anime)"],"Use forced priority":[null,"استخدام إجبار الأولوية"],"enable to change priority from HIGH to FORCED":[null,"تمكين تغيير الأولوية من عالية إلى إجبار"],"Black hole folder location":[null,"موقع المجلد لوضع الملفات فيه"],"<b>.nzb</b> files are stored at this location for external software to find and use":[null,"يتم تخزين ملفات <b>.nzb</b> في هذا الموقع لكي يتم إيجاده واستخدامه من البرامج الخارجية"],"Connect using HTTPS":[null,"الاتصال باستخدام HTTPS"],"enable Secure control in NZBGet and set the correct Secure Port here":[null,"تمكين التحكم بالمصدرفي NZBGet، و تعيين المنفذ الصحيح الآمن هنا"],"NZBget host:port":[null,"عنوان المضيف:المنفذ لـ NZBget"],"(e.g. localhost:6789)":[null,"(مثل localhost:6789)"],"NZBget RPC host name and port number (not NZBgetweb!)":[null,"عنوان المضيف و رقم المنفذ لـ NZBget RPC (وليس NZBgetweb!)"],"NZBget username":[null,"اسم المستخدم لـ NZBget"],"locate in nzbget.conf (default:nzbget)":[null,"حدده في nzbget.conf (الافتراضي: nzbget)"],"NZBget password":[null,"كلمة المرور لـ NZBget"],"locate in nzbget.conf (default:tegbzn6789)":[null,"حدده في nzbget.conf (الافتراضي: tegbzn6789)"],"Use NZBget category":[null,"استخدام فئة NZBget"],"send downloads marked this category (e.g. TV)":[null,"إضافة التحميل لهذه الفئة (مثل TV)"],"Use NZBget category (backlog episodes)":[null,"استخدم فئة NZBget (الحلقات المتراكمة)"],"send downloads of old episodes marked this category (e.g. TV)":[null,"إضافة التحميل للحلقات القديمة لهذه الفئة (مثل TV)"],"Use NZBget category for anime":[null,"استخدام فئة NZBget للأنمي"],"send anime downloads marked this category (e.g. anime)":[null,"إرسال تحميل الأنمي المحدد لهذه الفئة (مثل anime)"],"Use NZBget category for anime (backlog episodes)":[null,"استخدام فئة NZBget للأنمي (الحلقات المتراكمة)"],"send anime downloads of old episodes marked this category (e.g. anime)":[null,"إرسال تحميل الأنيمي المحدد للحلقات القديمة لهذه الفئة (مثل anime)"],"NZBget priority":[null,"الأولوية لـ NZBget"],"Very low":[null,"منخفضة جدًا"],"Low":[null,"منخفضة"],"Very high":[null,"عالية جدًا"],"Force":[null,"إجبار"],"priority for daily snatches (no backlog)":[null,"الأولوية بالنسبة للحلقات المجلوبة يوميا (بدون تراكم)"],"Torrent host:port":[null,"عنوان المضيف:المنفذ للتورينت"],"URL to your Synology DSM (e.g. http://localhost:5000/)":[null,"عنوان URL الخاص بـ Synology DSM (مثلاً http://localhost:5000)"],"Client username":[null,"اسم المستخدم للعميل"],"Client password":[null,"كلمة مرور العميل"],"Downloaded files location":[null,"موقع الملفات التي تم تحميلها"],"where Synology Download Station will save downloaded files (blank for client default)":[null,"حيث سيتم حفظ ملفات Synology Download Station (فارغة للعميل الافتراضي)"],"the destination has to be a shared folder for Synology DS":[null,"الوجهة يجب أن يكون مجلد مشاركة لـ Synology DS"],"Click below to test":[null,"انقر أدناه للتحقق"],"How to handle Torrent search results.":[null,"كيفية التعامل مع نتائج بحث التورينت."],"Search torrents":[null,"البحث في التورينت"],"enable torrent search providers":[null,"تمكين موفري البحث تورنت"],"Send .torrent files to":[null,"إرسال ملفات تورنت إلى"],"<b>.torrent</b> files are stored at this location for external software to find and use":[null,"يتم تخزين ملفات <b>.torrent</b> في هذا الموقع لكي يتم إيجاده واستخدامه من البرامج الخارجية"],"URL to your torrent client (e.g. http://localhost:8000/)":[null,"عنوان URL الخاص ببرنامج التورينت (مثلاً من http://localhost:8000)"],"Torrent RPC URL":[null,"عنوان URL تورينت RPC"],"the path without leading and trailing slashes (e.g. transmission)":[null,"المسار دون علامة \"\\\" البادئة والزائدة (مثل transmission)"],"Http Authentication":[null,"مصادقة http"],"Verify certificate":[null,"التحقق من الشهادة"],"disable if you get \"Deluge: Authentication Error\" in your log":[null,"تعطيل إذا كنت تحصل على \"Deluge: خطأ مصادقة\" في السجل الخاص بك"],"verify SSL certificates for HTTPS requests":[null,"التحقق من شهادات SSL لطلبات HTTPS"],"Add label to torrent":[null,"إضافة تسمية \"label \" إلى التورينت"],"(blank spaces are not allowed)":[null,"(غير مسموح بمسافات فارغة)"],"label plugin must be enabled in Deluge clients":[null,"يجب تفعيل إضافة التسمية في عملاء Deluge"],"for QBitTorrent 3.3.1 and up":[null,"لـ QBitTorrent 3.3.1 وما فوق"],"Add label to torrent for anime":[null,"إضافة تسمية \"label \" إلى تورينت لأنمي"],"for QBitTorrent 3.3.1 and up ":[null,"لـ QBitTorrent 3.3.1 وما فوق "],"where <span id=\"torrent_client\">the torrent client</span> will save downloaded files (blank for client default)":[null,"حيث سيحفظ <span id=\"torrent_client\">برنامج التورينت</span> المفات (فارغ للإفتراضي من البرنامج)"],"the destination has to be a shared folder for Synology DS</span>":[null,"الوجهة يجب أن يكون مجلد مشاركة لـ Synology DS"],"Minimum seeding time":[null,"الحد الأدنى لمدة الرفع"],"time in hours":[null,"الوقت بالساعات"],"(default:'0' passes blank to client and '-1' passes nothing)":[null,"(الافتراضي: '0' يمرر فارغ إلى البرنامج و'-1' يمرر لا شيء)"],"Start torrent paused":[null,"بدء التورنت في وضع التوقف المؤقت"],"add .torrent to client but do <b style=\"font-weight:900\">not</b> start downloading":[null,"إضافة تورنت إلى برنامج التورينت ولكن <b style=\"font-weight:900\">لا</b> تبدأ تحميله"],"Allow high bandwidth":[null,"السماح بنطاق عالي"],"use high bandwidth allocation if priority is high":[null,"استخدام النطاق العالي إذا كانت الأولوية عالية"],"Test Connection":[null,"تجربة الإتصال"],"Windows Shares":[null,""],"Defines your existing windows shares so that we can add them to the browse dialog":[null,""],"Share #{number}":[null,""],"Share label":[null,""],"Hostname or IP":[null,""],"Share path":[null,""],"Subtitles Search":[null,"البحث عن الترجمة"],"Subtitles Plugin":[null,"إضافات الترجمة"],"Plugin Settings":[null,"إعدادات الإضافات"],"Settings that dictate how SickRage handles subtitles search results.":[null,"الإعدادات التي تملي كيف يتعامل SickRage مع نتائج بحث ترجمة."],"Search Subtitles":[null,"البحث عن الترجمة"],"Subtitle Languages":[null,"لغات الترجمة"],"Subtitle Directory":[null,"مجلد الترجمة"],"the directory where SickRage should store your <i>Subtitles</i> files.":[null,"المجلد حيث يقوم SickRage بتخزين ملفات <i>الترجمة</i> الخاصة بك."],"leave empty if you want store subtitle in episode path.":[null,"اتركه فارغاً إذا كنت تريد تخزين الترجمة في مجلد الحلقة."],"Subtitle Find Frequency":[null,"تكرار البحث عن الترجمة"],"time in hours between scans (default: 1)":[null,"الوقت بالساعات بين المسح (الافتراضي: 1)"],"Include Specials":[null,""],"include the show's specials when searching for subtitles?":[null,""],"Perfect matches":[null,"تطابق تام"],"only download subtitles that match: release group, video codec, audio codec and resolution":[null,"تحميل فقط الترجمة التي تتطابق مع: مجموعة الإصدار و ترميز الفيديو، وترميز الصوت و الجودة"],"if disabled you may get out of sync subtitles":[null,"في حال التعطيل، قد تحصل على ترجمات غير متزامنة"],"Subtitles History":[null,"سجل الترجمة"],"log downloaded Subtitle on History page?":[null,"تسجيل الترجمات المحملة في صفحة المحفوظات؟"],"Subtitles Multi-Language":[null,"ترجمات متعددة اللغات"],"append language codes to subtitle filenames?":[null,"إلحاق رموز اللغة بأسماء ملفات الترجمة ؟"],"this option is required if you use multiple subtitle languages":[null,"هذا الخيار مطلوب إذا كنت تستخدم لغات متعددة في الترجمة"],"Delete unwanted subtitles":[null,"حذف الترجمات غير المرغوب فيها"],"enable to delete unwanted subtitle languages bundled with release":[null,"تمكين حذف لغات الترجمة غير المرغوب فيها المحملة مع الحلقة"],"Embedded Subtitles":[null,"الترجمات المحملة مع الحلقة"],"ignore subtitles embedded inside video file?":[null,"تجاهل الترجمة المضمنة داخل ملف الفيديو؟"],"this will ignore <u>all</u> embedded subtitles for every video file!":[null,"سيتم تجاهل <u>كافة</u>الترجمات المضمنة لكل ملف فيديو!"],"Hearing Impaired Subtitles":[null,"ترجمات ضعاف السمع"],"download hearing impaired style subtitles?":[null,"تحميل نمط ترجمات ضعيفي السمع؟"],"See":[null,"انظر"],"for a script arguments description.":[null,"للحصول على وصف script arguments."],"Additional scripts separated by <b>|</b>.":[null,"برامج نصية إضافية مفصولة بـ <b>|</b>."],"Scripts are called after each episode has searched and downloaded subtitles.":[null,"البرامج النصية تستدعى بعد البحث عن الحلقة و تحميلها ترجمتها."],"For any scripted languages, include the interpreter executable before the script. See the following example":[null,"للغات البرمجة النصية، وتشمل مترجم قابل للتنفيذ من قبل البرنامج النصي. انظر المثال التالي"],"For Windows:":[null,"لنظام التشغيل ويندوز:"],"For Linux / OS X:":[null,"لنظام لينكس/ماك:"],"Subtitle Providers":[null,"مقدمي خدمات الترجمة"],"Check off and drag the plugins into the order you want them to be used.":[null,"اختر واسحب الإضافات المراد استخدامها في الترتيب الذي تريده."],"At least one plugin is required.":[null,"إضافة واحده على الأقل مطلوبة."]," Web-scraping plugin":[null," إضافات Web-scraping"],"Provider Settings":[null,"خيارات مقدمي الخدمة"],"Set user and password for each provider":[null,"تعيين اسم المستخدم وكلمة المرور لكل مقدم خدمة"],"User Name":[null,"اسم المستخدم"],"Change Show":[null,"تغيير المسلسل"],"Prev Show":[null,"المسلسل السابق"],"Next Show":[null,"المسلسل التالي"],"Jump to Season":[null,"الانتقال إلى المسلسل"],"Specials":[null,"الحلقات الخاصة"],"Poster for":[null,"ملصق لـ"],"Stars":[null,"نجوم"],"minutes":[null,"دقائق"],"View other popular {genre} shows on trakt.tv.":[null,"عرض مسلسلات شائعه أخرى {genre} في trakt.tv."],"View other popular {imdbgenre} shows on IMDB.":[null,"عرض مسلسلات شائعه أخرى {imdbgenre} في IMDB."],"Allowed":[null,"مسموح به"],"Preferred":[null,"المفضل"],"Originally Airs":[null,"البث الرئيسي"],"Show Status":[null,"حالة المسلسل"],"Default EP Status":[null,"الحالة الإفتراضية للحلقة"],"Location":[null,"الموقع"],"Missing":[null,"مفقوده"],"Scene Name":[null,"اسم المشهد"],"Required Words":[null,"الكلمات المطلوبة"],"Ignored Words":[null,"الكلمات المتجاهله"],"Size":[null,"الحجم"],"Info Language":[null,"معلومات اللغة"],"Subtitles SR Metadata":[null,""],"Season Folders":[null,"مجلدات الموسم"],"Paused":[null,"الإيقاف المؤقت"],"Air-by-Date":[null,"Air-By-Date"],"Sports":[null,"عرض رياضي"],"DVD Order":[null,"ترتيب دي ڤي دي"],"Scene Numbering":[null,"استثناءات أرقام الحلقات"],"Select Filtered Episodes":[null,"حدد الحلقات التي تمت تصفيتها"],"Clear All":[null,"مسح الكل"],"Change selected episodes to":[null,"تغيير الحلقات المختارة إلى"],"Select Columns":[null,"حدد الأعمدة"],"NFO":[null,"NFO"],"TBN":[null,"TBN"],"Episode":[null,"الحلقة"],"Absolute":[null,"مُطلق"],"Scene":[null,"المشهد"],"Scene Absolute":[null,"المشهد المطلق"],"File Name":[null,"اسم الملف"],"Airdate":[null,"موعد العرض"],"Download":[null,"التحميل"],"Change the value here if scene numbering differs from the indexer episode numbering":[null,"قم بتغيير القيمة هنا إذا كانت (استثناءات أرقام الحلقات) تختلف عن ترقيم المفهرس للحلقة"],"Change the value here if scene absolute numbering differs from the indexer absolute numbering":[null,"قم بتغيير القيمة هنا إذا كانت رقم الحلقة المطلق يختلف عن ترقيم المفهرس المطلق للحلقة"],"Manual Search":[null,"البحث اليدوي"],"Do you want to mark this episode as failed?":[null,"هل تريد وضع علامة على هذه الحلقة بأنها فشلت؟"],"The episode release name will be added to the failed history, preventing it to be downloaded again.":[null,"اسم إصدار الحلقة سيضاف إلى سجل المحفوظات الفاشلة، مما سيمنع من تحميلها مرة أخرى."],"Do you want to include the current episode quality in the search?":[null,"هل تريد أن تشمل جودة الحلقة الحالية في البحث؟"],"Choosing No will ignore any releases with the same episode quality as the one currently downloaded/snatched.":[null,"اذا تم اختيار لا، سيتم تجاهل أي إصدارات بنفس جودة الحلقة اللتي تم تحميلها/ جلبها حاليا."],"Download subtitle":[null,"تحميل الترجمة"],"Do you want to re-download the subtitle for this language?":[null,""],"It will overwrite your current subtitle":[null,""],"Format":[null,"التنسيق"],"Advanced":[null,"إعدادات متقدمة"],"Main Settings":[null,"الإعدادات الرئيسية"],"Show Location":[null,"مكان المسلسل"],"Preferred Quality":[null,"الجودة المفضلة"],"Default Episode Status":[null,"الحالة الإفتراضية للحلقة"],"this will set the status for future episodes.":[null,"سيؤدي هذا إلى تعيين الحالة للحلقات المقبلة."],"this only applies to episode filenames and the contents of metadata files.":[null,"ينطبق هذا فقط على أسماء الحلقة ومحتويات ملفات بيانات التعريف."],"search for subtitles":[null,"البحث عن الترجمة"],"Use SR Metdata":[null,"استخدام بيانات تعريف SickRage"],"use SickRage metadata when searching for subtitle, this will override the autodiscovered metadata":[null,""],"pause this show (SickRage will not download episodes)":[null,"إيقاف هذا المسلسل (SickRage لن يقوم بتحميل الحلقات)"],"Format Settings":[null,"إعدادات التنسيق"],"Air by date":[null,"Air by date"],"check if the show is released as Show.03.02.2010 rather than Show.S02E03.":[null,"تحقق إذا كان المسلسل أُصدر كـ Show.03.02.2010 بدلاً من Show.S02E03."],"in case of an air date conflict between regular and special episodes, the later will be ignored.":[null,"في حالة تعارض مواعيد العرض بين الحلقات العادية والخاصة، سيتم تجاهل المتأخره."],"check if the show is Anime and episodes are released as Show.265 rather than Show.S02E03":[null,"تحقق إذا كان المسلسل أنيمي وتم إصدار الحلقات كـ Show.265 بدلاً من Show.S02E03"],"check if the show is a sporting or MMA event released as Show.03.02.2010 rather than Show.S02E03":[null,"تحقق إذا كان المسلسل عرض رياضي أو حدث MMA وتم إصداره كـ Show.03.02.2010 بدلاً من Show.S02E03"],"Season folders":[null,"مجلدات الموسم"],"group episodes by season folder (uncheck to store in a single folder)":[null,"جمع الحلقات حسب مجلد الموسم (قم بإلغاء التحديد للتخزين في مجلد واحد)"],"search by scene numbering (uncheck to search by indexer numbering)":[null,"البحث عن طريق استثناءات أرقام الحلقات (قم بإلغاء التحديد للبحث بواسطة ترقيم المفهرس)"],"use the DVD order instead of the air order":[null,"استخدام ترتيب دي في دي بدلاً من موعد العرض"],"a \"Force Full Update\" is necessary, and if you have existing episodes you need to sort them manually.":[null,"\"إجبار التحديث\" أمر ضروري، وإذا كان لديك حلقات موجودة تحتاج إلى فرزها يدوياً."],"comma-separated <i>e.g. \"word1,word2,word3</i>\"":[null,"مفصول بفاصلة <i>مثل \"الكلمة 1، الكلمة 2، الكلمة 3\"</i>"],"search results with one or more words from this list will be ignored.":[null,"نتائج البحث اللتي تحتوي على كلمة من هذه الكلمات سيتم تجاهلها."],"e.g. \"word1,word2,word3\"":[null,"مثل \"الكلمة 1، الكلمة 2، الكلمة 3\""],"search results with no words from this list will be ignored.":[null,"نتائج البحث اللتي لا تحتوي على كلمة من هذه الكلمات سيتم تجاهلها."],"Scene Exception":[null,"استثناءات أسماء الحلقات"],"this will affect episode search on NZB and torrent providers.":[null,""],"this list appends to the original show name.":[null,""],"WARNING logs":[null,"سجلات التحذير"],"ERROR logs":[null,"سجلات الخطأ"],"There are no events to display.":[null,"لا توجد أية أحداث لعرضها."],"Limit":[null,"الحد الأقصى"],"Layout":[null,"التصميم"],"HistoryLayout":[null,"طريقة عرض المحفوظات"],"Compact":[null,"مضغوط"],"Detailed":[null,"مفصلة"],"Time":[null,"الوقت"],"Provider":[null,"مقدم الخدمة"],"Missing Provider":[null,"مقدم الخدمة مفقود"],"missing provider":[null,"مقدم الخدمة مفقود"],"Directory":[null,"المجلد"],"Show Name (tvshow.nfo)":[null,"اسم المسلسل (tvshow.nfo)"],"Indexer":[null,"المفهرس"],"Enter the folder containing the episode":[null,"أدخل المجلد الذي يحتوي الحلقة"],"Process Method to be used":[null,"طريقة المعالجة اللتي تريد استخدامها"],"Copy":[null,"نسخ"],"Move":[null,"نقل"],"Hard Link":[null,"ارتباط ثابت"],"Symbolic Link":[null,"ارتباط رمزي"],"Symbolic Link Reversed":[null,""],"Force already Post Processed Dir/Files":[null,"إجبار المجلدات/الملفات المعالجة مسبقا"],"Mark Dir/Files as priority download":[null,"تحديد المجلدات/الملفات حسب أولوية التحميل"],"(Check it to replace the file even if it exists at higher quality)":[null,"(التحقق لإستبدال الملف حتى إذا كان موجود بجودة أعلى)"],"Delete files and folders":[null,"حذف الملفات والمجلدات"],"(Check it to delete files and folders like auto processing)":[null,"(التحقق منه لحذف الملفات والمجلدات مثل المعالجة التلقائية)"],"Don't use processing queue":[null,""],"(If checked this will return the result of the process here, but may be slow!)":[null,""],"Mark download as failed":[null,"وسم التحميل كفاشل"],"Process":[null,"معالجة"],"Download subtitles for this show?":[null,"تحميل ترجمات لهذا المسلسل؟"],"use SickRage metadata when searching for subtitle, <br />this will override the autodiscovered metadata":[null,""],"Status for previously aired episodes":[null,"حالة الحلقات اللتي بثت سابقا"],"Status for all future episodes":[null,"حالة الحلقات اللتي ستبثت مستقبلا"],"Group episodes by season folder?":[null,""],"Is this show an Anime?":[null,"هل هذا المسلسل أنمي؟"],"Is this show scene numbered?":[null,"هل هناك استثناءات أرقام الحلقات في هذا المسلسل؟"],"Save Defaults":[null,"حفظ الإعدادات الافتراضية"],"Use current values as the defaults":[null,"استخدام القيم الحالية كافتراضية"],"<p>Select your preferred fansub groups from the <b>Available Groups</b> and add them to the <b>Whitelist</b>. Add groups to the <b>Blacklist</b> to ignore them.</p>\n <p>The <b>Whitelist</b> is checked <i>before</i> the <b>Blacklist</b>.</p>\n <p>Groups are shown as <b>Name</b> | <b>Rating</b> | <b>Number of subbed episodes</b>.</p>\n <p>You may also add any fansub group not listed to either list manually.</p>\n <p>When doing this please note that you can only use groups listed on anidb for this anime.\n <br>If a group is not listed on anidb but subbed this anime, please correct anidb's data.</p>":[null,"<p>تحديد المجموعات fansub المفضلة الخاصة بك من <b>المجموعات المتوفرة</b> وإضافتها إلى <b>القائمة البيضاء</b>. إضافة مجموعات إلى <b>القائمة السوداء</b> لتجاهلها.</p> \n <p><b>القائمة البيضاء</b> يتم فحصها <i>قبل</i> <b>القائمة السوداء.</b>-</p> \n <p>يتم عرض المجموعات كـ<b>اسم</b> | <b>تصنيف</b> | <b>عدد الحلقات subbed</b>-</p> \n <p>يمكنك أيضا إضافة أي مجموعة fansub غير مدرجة على أي من القائمتين يدوياً.</p> \n <p>عند القيام بهذا يرجى ملاحظة أنه يمكنك فقط استخدام المجموعات المدرجة في anidb لهذا الـ anime؛.\n ؛<br>إذا لم يتم سرد مجموعة في anidb، يرجى تصحيح البيانات في anidb ؛-</p>"],"Whitelist":[null,"القائمة البيضاء"],"Available Groups":[null,"المجموعات المتوفرة"],"Add to Whitelist":[null,"إضافة إلى القائمة البيضاء"],"Add to Blacklist":[null,"إضافة إلى القائمة السوداء"],"Blacklist":[null,"القائمة السوداء"],"Custom Group":[null,"مجموعة مخصصة"],"Allowed Quality:":[null,"الجودة المسموحه:"],"Preferred Quality:":[null,"الجودة المفضلة:"],"Filter Show Name":[null,"تصفية اسم المسلسل"],"Root":[null,"الجذر"],"All":[null,"الكل"],"Clear Filter(s)":[null,"مسح التصفية"],"Poster":[null,"ملصق"],"Small Poster":[null,"ملصق صغير"],"Banner":[null,"شعار"],"Simple":[null,"بسيط"],"Next Episode":[null,"الحلقة القادمة"],"Progress":[null,"تقدم"],"Direction":[null,"الاتجاه"],"Ascending":[null,"ترتيب تصاعدي"],"Descending":[null,"ترتيب تنازلي"],"Poster Size":[null,"حجم الملصق"],"Continuing":[null,"مستمر"],"Ended":[null,"منتهي"],"Total":[null,"المجموع"],"Invalid date":[null,"تاريخ غير صالح"],"No Network":[null,"لا توجد شبكة"],"Next Ep":[null,"الحلقة التالية"],"Prev Ep":[null,"الحلقة السابقة"],"Show":[null,"مسلسل"],"Downloads":[null,"التحميلات"],"Active":[null,"نشط"],"loading":[null,"جار التحميل"],"<p><b><u>Preferred</u></b> qualities will replace those in <b><u>allowed</u></b>, even if they are lower.</p>":[null,"<u><b><p>االجودة المفضلة</u>؛</b> ستستبدل الجودات <u><b>المسموحه</u>؛</b> حتى لو كانت أقل منها.</p>"],"New":[null,"جديد"],"Set as Default":[null,"تعيين كافتراضي"],"Remember me":[null,"تذكّرني"],"Edit Selected":[null,"تعديل المحددة"],"Subtitle":[null,"الترجمة"],"Default Ep Status":[null,"الحالة الإفتراضية للحلقة"],"Update":[null,"تحديث"],"Rescan":[null,"إعادة فحص"],"Rename":[null,"إعادة التسمية"],"Search Subtitle":[null,"البحث عن الترجمة"],"Force Metadata Regen":[null,"إجبار ملفات تعريف Regen"],"Snatched (Allowed)":[null,"تم جلبها (إصدار مسموح به)"],"Jump to Show":[null,"الانتقال إلى المسلسل"],"Force Backlog":[null,"إجبار المتراكم"],"Manage episodes with status":[null,"إدارة الحلقات الموجود لها حالة"],"Manage":[null,"إدارة"],"None of your episodes have status":[null,"ليس لدى أي من الحلقات الخاصة بك حالة"],"Shows containing":[null,"المسلسلات تحتوي على"],"episodes":[null,"الحلقات"],"Set checked shows/episodes to":[null,"ضبط المسلسلات/الحلقات المحددة إلى"],"Go":[null,"اذهب"],"Select all":[null,"تحديد الكل"],"Clear all":[null,"مسح الكل"],"Release":[null,"الإصدار"],"Backlog Search":[null,"البحث المتراكم"],"Not in progress":[null,"ليس في طور التقدم"],"In Progress":[null,"مستمر"],"Daily Search":[null,"البحث اليومي"],"Find Propers Search":[null,"العثور على البحث المصحح"],"Propers search disabled":[null,"البحث عن المصحح، معطل"],"Subtitle Search":[null,"البحث عن الترجمة"],"Subtitle search disabled":[null,"البحث عن الترجمة معطل"],"Search Queue":[null,"البحث في قائمة الإنتظار"],"pending items":[null,"العناصر المعلقة"],"Daily":[null,"يومي"],"Manual":[null,"يدوي"],"Changing any settings marked with (<span class=\"separator\">*</span>) will force a refresh of the selected shows.":[null,"تغيير أي إعدادات محدده بـ (<span class=\"separator\">*</span>) سيتم إجبار تحديث المسلسلات المحددة."],"Selected Shows":[null,"مسلسلات مختارة"],"Root Directories":[null,"المجلدات الرئيسية"],"Current":[null,"الحالي"],"Keep":[null,"الإحتفاظ"],"Custom":[null,"مخصص"],"Group episodes by season folder (set to \"No\" to store in a single folder).":[null,"جمع الحلقات بمجلد الموسم (اختر \"لا\" للتخزين في مجلد واحد)."],"Pause these shows (SickRage will not download episodes).":[null,"إيقاف هذه المسلسلات (SickRage لن يقوم بتحميل الحلقات)."],"This will set the status for future episodes.":[null,"سيؤدي هذا إلى تعيين الحالة للحلقات المقبلة."],"Search by scene numbering (set to \"No\" to search by indexer numbering).":[null,"البحث عن طريق استثناءات أرقام الحلقات (اختر \"لا\" للبحث بواسطة ترقيم المفهرس)."],"Set if these shows are Anime and episodes are released as Show.265 rather than Show.S02E03":[null,"تحقق إذا كانت هذه المسلسلات أنيمي وتم إصدار الحلقات كـ Show.265 بدلاً من Show.S02E03"],"Set if these shows are sporting or MMA events released as Show.03.02.2010 rather than Show.S02E03.":[null,"تحقق إذا كانت هذه المسلسلات هي عروض رياضية أو أحداث MMA وتم إصدارها كـ Show.03.02.2010 بدلاً من Show.S02E03."],"In case of an air date conflict between regular and special episodes, the later will be ignored.":[null,"في حالة تعارض مواعيد العرض بين الحلقات العادية والخاصة، سيتم تجاهل المتأخره."],"Set if these shows are released as Show.03.02.2010 rather than Show.S02E03.":[null,"تحقق إذا كانت المسلسلات أُصدرت كـ Show.03.02.2010 بدلاً من Show.S02E03."],"Search for subtitles.":[null,"البحث عن الترجمة."],"All of your episodes have {subsLanguage} subtitles.":[null,"جميع الحلقات الخاصة بك تحتوي على ترجمات {subsLanguage}."],"Manage episodes without":[null,"إدارة الحلقات بدون"],"Episodes without {subsLanguage} subtitles.":[null,"حلقات دون ترجمة {subsLanguage}."],"Episodes without {subtitleLanguage} (undefined) subtitles.":[null,"الحلقات دون ترجمات {subtitleLanguage} (غير محدد)."],"Download missed subtitles for selected episodes":[null,"تحميل ترجمة للحلقات المحددة"],"Performing Restart":[null,"يتم إعادة التشغيل"],"Waiting for SickRage to shut down":[null,"في انتظار إيقاف SickRage"],"Waiting for SickRage to start again":[null,"في انتظار تشغيل SickRage"],"Loading the default page":[null,"تحميل الصفحة الافتراضية"],"Error: The restart has timed out, perhaps something prevented SickRage from starting again?":[null,"خطأ: انتهت مهلة إعادة التشغيل ، ربما شيء يمنع SickRage من بدء التشغيل مرة أخرى؟"],"Key":[null,"مفتاح"],"Missed":[null,"فائتة"],"Today":[null,"اليوم"],"Soon":[null,"قريبا"],"Later":[null,"لاحقاً"],"Subscribe":[null,"الاشتراك"],"Date":[null,"التّاريخ"],"View Paused":[null,"العرض متوقف"],"Hidden":[null,"مخفي"],"Shown":[null,"ظاهر"],"Calendar":[null,"التقويم"],"List":[null,"القائمة"],"Ends":[null,"إنتهى"],"Next Ep Name":[null,"اسم الحلقة التالية"],"Run time":[null,"وقت التشغيل"],"Indexers":[null,"المفهرسين"],"No shows for this day":[null,"لا مسلسلات في هذا اليوم"],"Airs":[null,"تبث"],"Plot":[null,"الحبكة"],"Show Update":[null,"عرض التحديث"],"Version Check":[null,"التحقق من الإصدار"],"Proper Finder":[null,"الباحث عن الإصدار المصحح"],"Post Process":[null,"المعالجة"],"Subtitles Finder":[null,"الباحث عن الترجمة"],"Scheduler":[null,"الجدولة"],"Alive":[null,"مستمر"],"Start Time":[null,"وقت البداية"],"Cycle Time":[null,"وقت الدورة"],"Next Run":[null,"التشغيل التالي"],"Last Run":[null,"آخر تشغيل"],"Silent":[null,"صامت"],"True":[null,"صحيح"],"N/A":[null,"غير موجود"],"Show id":[null,"رقم معرف المسلسل"],"Show name":[null,"اسم المسلسل"],"Priority":[null,"الأولوية"],"Added":[null,"أضيف"],"Queue type":[null,"نوع قائمة الانتظار"],"LOW":[null,"منخفض"],"NORMAL":[null,"عادي"],"HIGH":[null,"عالي"],"Disk Space":[null,"مساحة القرص"],"Free space":[null,"المساحة الحرة"],"TV Download Directory":[null,"مجلد تحميل المسلسلات"],"Media Root Directories":[null,"المجلدات الرئيسية للوسائط"],"Preview of the proposed name changes":[null,"معاينة التغييرات المقترحه للإسم"],"All Seasons":[null,"جميع المواسم"],"select all":[null,"اختيار الكل"],"Rename Selected":[null,"إعادة تسمية المحدد"],"Cancel Rename":[null,"إلغاء إعادة تسمية"],"Old Location":[null,"الموقع القديم"],"New Location":[null,"الموقع الجديد"],"Trakt API did not return any results, please check your config.":[null,"Trakt API لم ترجع أي نتائج، الرجاء التحقق من الضبط الخاص بك."],"votes":[null,"التصويت"],"Remove Show":[null,"إزالة المسلسل"],"Level":[null,"المستوى"],"Filter":[null,"المرشح"],"All non-absolute folder locations are relative to ":[null,"جميع مواقع المجلدات غير المطلقة منسوبة إلى "],"Manual Post-Processing":[null,"المالجة اليدوية"],"Episode Status Management":[null,"إدارة حالة الحلقات"],"Update PLEX":[null,"تحديث PLEX"],"Update KODI":[null,"تحديث KODI"],"Update Emby":[null,"تحديث Emby"],"Manage Torrents":[null,"إدارة التورنت"],"Missed Subtitle Management":[null,"إدارة الترجمات المفقودة"],"Help & Info":[null,"مساعدة & معلومات"],"Backup & Restore":[null,"النسخ الاحتياطي & الإستعادة"],"Tools":[null,"أدوات"],"Support SickRage":[null,"دعم SickRage"],"View Errors":[null,"عرض الأخطاء"],"View Warnings":[null,"عرض التحذيرات"],"View Log":[null,"عرض السجل"],"Check For Updates":[null,"التحقق من وجود تحديثات"],"Restart":[null,"إعادة التشغيل"],"Shutdown":[null,"إيقاف التشغيل"],"Logout":[null,"تسجيل خروج"],"Server Status":[null,"حالة الخادم"],"View overview of snatched episodes":[null,"عرض نظرة عامة على الحلقات المجلوبة"],"Episodes Downloaded":[null,"الحلقات المحملة"],"Memory used":[null,"الذاكرة المستخدمة"],"Load time":[null,"وقت التحميل"],"Branch":[null,"فرع"],"Now":[null,"الآن"]}}}} \ No newline at end of file diff --git a/locale/ar_SA/LC_MESSAGES/messages.mo b/locale/ar_SA/LC_MESSAGES/messages.mo index ac2bc48b24cdb33f08b90c0ab95b907bf97b5820..b0343e007d64ad63fe540896d4209cc9f563a790 100644 Binary files a/locale/ar_SA/LC_MESSAGES/messages.mo and b/locale/ar_SA/LC_MESSAGES/messages.mo differ diff --git a/locale/ar_SA/LC_MESSAGES/messages.po b/locale/ar_SA/LC_MESSAGES/messages.po index 68718479cbbfe09c4df259ca32137fefcfa2d34e..d518f29d4e393259ecd55fdcf195277b70d5a329 100644 --- a/locale/ar_SA/LC_MESSAGES/messages.po +++ b/locale/ar_SA/LC_MESSAGES/messages.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: sickrage\n" "Report-Msgid-Bugs-To: miigotu@gmail.com\n" -"POT-Creation-Date: 2017-03-25 09:28-0700\n" -"PO-Revision-Date: 2017-03-25 12:29-0400\n" +"POT-Creation-Date: 2017-03-28 09:10-0700\n" +"PO-Revision-Date: 2017-03-28 12:11-0400\n" "Last-Translator: miigotu <miigotu@gmail.com>\n" "Language-Team: Arabic\n" "MIME-Version: 1.0\n" @@ -90,7 +90,7 @@ msgid "Biography" msgstr "سيرة ذاتية" #: gui/slick/views/config_general.mako:78 gui/slick/views/layouts/main.mako:145 -#: sickbeard/__init__.py:79 sickbeard/webserve.py:3807 +#: sickbeard/__init__.py:79 sickbeard/webserve.py:3778 msgid "History" msgstr "السجل" @@ -103,7 +103,7 @@ msgid "Western" msgstr "غربي" #: gui/slick/views/config_general.mako:79 gui/slick/views/layouts/main.mako:221 -#: sickbeard/__init__.py:80 sickbeard/webserve.py:2385 +#: sickbeard/__init__.py:80 sickbeard/webserve.py:2384 msgid "News" msgstr "الأخبار" @@ -238,6 +238,34 @@ msgstr "تجاهل" msgid "Subtitled" msgstr "مترجم" +#: sickbeard/helpers.py:1887 +msgid "For best results please set the Download Station alias as" +msgstr "للحصول على أفضل النتائج يرجى تعيين اسم مستعار لـ Download Station" + +#: sickbeard/helpers.py:1888 +msgid "You can check this setting in the Synology DSM" +msgstr "يمكنك التحقق من هذا الإعداد في Synology DSM" + +#: sickbeard/helpers.py:1888 sickbeard/helpers.py:1890 +msgid "Control Panel" +msgstr "لوحة التحكم" + +#: sickbeard/helpers.py:1888 +msgid "Application Portal" +msgstr "بوابة التطبيقات" + +#: sickbeard/helpers.py:1889 +msgid "Make sure you allow DSM to be embedded with iFrames too in" +msgstr "تأكد من السماح لـ DSM بأن يكون مضمّن في iFrames أيضاً في" + +#: sickbeard/helpers.py:1890 +msgid "DSM Settings" +msgstr "إعدادات DSM" + +#: sickbeard/helpers.py:1890 +msgid "Security" +msgstr "الأمان" + #: sickbeard/logger.py:474 msgid "<No Filter>" msgstr "< لا يوجد تصفية >" @@ -308,15 +336,15 @@ msgstr "مدقق Trakt" msgid "Event" msgstr "حدث" -#: sickbeard/logger.py:491 sickbeard/webserve.py:1339 sickbeard/webserve.py:1342 -#: sickbeard/webserve.py:1520 sickbeard/webserve.py:1529 sickbeard/webserve.py:1717 -#: sickbeard/webserve.py:1728 sickbeard/webserve.py:1751 sickbeard/webserve.py:1764 -#: sickbeard/webserve.py:1769 sickbeard/webserve.py:1785 sickbeard/webserve.py:1790 -#: sickbeard/webserve.py:1854 sickbeard/webserve.py:1857 sickbeard/webserve.py:1863 -#: sickbeard/webserve.py:1866 sickbeard/webserve.py:1873 sickbeard/webserve.py:1876 -#: sickbeard/webserve.py:1899 sickbeard/webserve.py:1997 sickbeard/webserve.py:2002 -#: sickbeard/webserve.py:2007 sickbeard/webserve.py:2036 sickbeard/webserve.py:2040 -#: sickbeard/webserve.py:2045 +#: sickbeard/logger.py:491 sickbeard/webserve.py:1338 sickbeard/webserve.py:1341 +#: sickbeard/webserve.py:1519 sickbeard/webserve.py:1528 sickbeard/webserve.py:1716 +#: sickbeard/webserve.py:1727 sickbeard/webserve.py:1750 sickbeard/webserve.py:1763 +#: sickbeard/webserve.py:1768 sickbeard/webserve.py:1784 sickbeard/webserve.py:1789 +#: sickbeard/webserve.py:1853 sickbeard/webserve.py:1856 sickbeard/webserve.py:1862 +#: sickbeard/webserve.py:1865 sickbeard/webserve.py:1872 sickbeard/webserve.py:1875 +#: sickbeard/webserve.py:1898 sickbeard/webserve.py:1996 sickbeard/webserve.py:2001 +#: sickbeard/webserve.py:2006 sickbeard/webserve.py:2035 sickbeard/webserve.py:2039 +#: sickbeard/webserve.py:2044 msgid "Error" msgstr "خطأ" @@ -333,6 +361,7 @@ msgstr "موضوع" msgid "Main" msgstr "الرئيسية" +#: gui/slick/js/ajaxEpSearch.js:146 gui/slick/js/ajaxEpSearch.js:147 #: gui/slick/views/inc_home_showList.mako:27 sickbeard/show_queue.py:298 msgid "Loading" msgstr "" @@ -372,867 +401,835 @@ msgstr "فشل ضبط النسخ الاحتياطي، تم إلغا التحدي msgid "No update needed" msgstr "لا يوجد حاجة للتحديث" -#: sickbeard/webserve.py:170 +#: sickbeard/webserve.py:171 msgid "Mako Error" msgstr "خطأ Mako" -#: sickbeard/webserve.py:195 +#: sickbeard/webserve.py:196 msgid "Oops" msgstr "عفوا" -#: sickbeard/webserve.py:197 +#: sickbeard/webserve.py:198 msgid "Wrong API key used" msgstr "تم استخدام مفتاح API خاطيء" -#: gui/slick/views/login.mako:34 sickbeard/webserve.py:302 +#: gui/slick/views/login.mako:34 sickbeard/webserve.py:303 msgid "Login" msgstr "تسجيل الدخول" -#: sickbeard/webserve.py:406 +#: sickbeard/webserve.py:392 msgid "API Key not generated" msgstr "لم يتم إنشاء مفتاح API" -#: sickbeard/webserve.py:409 +#: sickbeard/webserve.py:395 msgid "API Builder" msgstr "منشئ API" #: gui/slick/views/config_general.mako:77 gui/slick/views/layouts/main.mako:141 -#: sickbeard/webserve.py:512 +#: sickbeard/webserve.py:498 msgid "Schedule" msgstr "مواعيد العرض" -#: sickbeard/webserve.py:610 +#: sickbeard/webserve.py:609 msgid "Test 1" msgstr "اختبار 1" -#: sickbeard/webserve.py:610 +#: sickbeard/webserve.py:609 msgid "This is test number 1" msgstr "هذا الاختبار رقم 1" -#: sickbeard/webserve.py:611 +#: sickbeard/webserve.py:610 msgid "Test 2" msgstr "اختبار 2" -#: sickbeard/webserve.py:611 +#: sickbeard/webserve.py:610 msgid "This is test number 2" msgstr "هذا الاختبار رقم 2" -#: sickbeard/webserve.py:634 +#: sickbeard/webserve.py:633 msgid "You're using the {branch} branch. Please use 'master' unless specifically asked" msgstr "أنت تستخدم فرع {branch}. الرجاء استخدام 'الرئيسي' إلا إذا طلب على وجه التحديد" -#: sickbeard/webserve.py:698 sickbeard/webserve.py:703 +#: sickbeard/webserve.py:697 sickbeard/webserve.py:702 msgid "Invalid show parameters" msgstr "متغيرات المسلسل غير صالحة" -#: sickbeard/webserve.py:710 +#: sickbeard/webserve.py:709 msgid "Invalid parameters" msgstr "" -#: sickbeard/webserve.py:713 sickbeard/webserve.py:1899 +#: sickbeard/webserve.py:712 sickbeard/webserve.py:1898 msgid "Episode couldn't be retrieved" msgstr "لا يمكن العثورعلى الحلقة" -#: sickbeard/webserve.py:759 sickbeard/webserve.py:1268 sickbeard/webserve.py:1297 +#: sickbeard/webserve.py:758 sickbeard/webserve.py:1267 sickbeard/webserve.py:1296 msgid "Home" msgstr "الصفحة الرئيسية" -#: gui/slick/views/layouts/main.mako:127 sickbeard/webserve.py:759 +#: gui/slick/views/layouts/main.mako:127 sickbeard/webserve.py:758 msgid "Show List" msgstr "قائمة المسلسلات" -#: sickbeard/webserve.py:807 +#: sickbeard/webserve.py:806 msgid "Error: Unsupported Request. Send jsonp request with 'callback' variable in the query string." msgstr "خطأ: الطلب غير مدعوم. Send jsonp request with 'callback' variable in the query string." -#: sickbeard/webserve.py:851 +#: sickbeard/webserve.py:850 msgid "Success. Connected and authenticated" msgstr "تم الإتصال و المصادقة بنجاح" -#: sickbeard/webserve.py:853 +#: sickbeard/webserve.py:852 msgid "Authentication failed. SABnzbd expects" msgstr "فشلت المصادقة، يجب استخدام SABnzbd" -#: sickbeard/webserve.py:853 +#: sickbeard/webserve.py:852 msgid "as authentication method" msgstr "كطريقة مصادقة" -#: sickbeard/webserve.py:855 +#: sickbeard/webserve.py:854 msgid "Unable to connect to host" msgstr "غير قادر على الاتصال بالمضيف" -#: sickbeard/webserve.py:876 +#: sickbeard/webserve.py:875 msgid "SMS sent successfully" msgstr "تم إرسالة رسالة قصيرة بنجاح" -#: sickbeard/webserve.py:878 +#: sickbeard/webserve.py:877 msgid "Problem sending SMS: {message}" msgstr "مشكلة عند إرسال الرسائل القصيرة: {message}" -#: sickbeard/webserve.py:885 +#: sickbeard/webserve.py:884 msgid "Telegram notification succeeded. Check your Telegram clients to make sure it worked" msgstr "تم إرسال إشعار تيليغرام بنجاح. تحقق من برنامج تيليغرام الخاص بك للتأكد من وصول الإشعار" -#: sickbeard/webserve.py:887 +#: sickbeard/webserve.py:886 msgid "Error sending Telegram notification: {message}" msgstr "خطأ في إرسال إشعار لبرنامج تيليغرام: {message}" -#: sickbeard/webserve.py:894 +#: sickbeard/webserve.py:893 msgid "join notification succeeded. Check your join clients to make sure it worked" msgstr "تم إرسال إشعار join بنجاح. تحقق من join الخاص بك للتأكد من وصول الإشعار" -#: sickbeard/webserve.py:896 +#: sickbeard/webserve.py:895 msgid "Error sending join notification: {message}" msgstr "خطأ في إرسال إشعار لبرنامج join ؛: {message}" -#: sickbeard/webserve.py:906 +#: sickbeard/webserve.py:905 msgid " with password" msgstr " مع كلمة المرور" -#: sickbeard/webserve.py:908 +#: sickbeard/webserve.py:907 msgid "Registered and Tested growl successfully {growl_host}" msgstr "تم التسجيل و التأكد growl بنجاح {growl_host}" -#: sickbeard/webserve.py:910 +#: sickbeard/webserve.py:909 msgid "Registration and Testing of growl failed {growl_host}" msgstr "فشل التسجيل و التأكد من growl بنجاح {growl_host}" -#: sickbeard/webserve.py:917 +#: sickbeard/webserve.py:916 msgid "Test prowl notice sent successfully" msgstr "تم التحقق من تجربة ارسال إشعار prowl بنجاح" -#: sickbeard/webserve.py:919 +#: sickbeard/webserve.py:918 msgid "Test prowl notice failed" msgstr "فشل التحقق من تجربة إرسال إشعار prowl" -#: sickbeard/webserve.py:926 +#: sickbeard/webserve.py:925 msgid "Boxcar2 notification succeeded. Check your Boxcar2 clients to make sure it worked" msgstr "تم إرسال إشعار Boxcar2 بنجاح. تحقق من Boxcar2 الخاص بك للتأكد من وصول الإشعار" -#: sickbeard/webserve.py:928 +#: sickbeard/webserve.py:927 msgid "Error sending Boxcar2 notification" msgstr "خطأ في إرسال إشعار Boxcar2" -#: sickbeard/webserve.py:935 +#: sickbeard/webserve.py:934 msgid "Pushover notification succeeded. Check your Pushover clients to make sure it worked" msgstr "تم إرسال إشعار Pushover بنجاح. تحقق من Pushover الخاص بك للتأكد من وصول الإشعار" -#: sickbeard/webserve.py:937 +#: sickbeard/webserve.py:936 msgid "Error sending Pushover notification" msgstr "خطأ في إرسال إشعار Pushover" -#: sickbeard/webserve.py:949 +#: sickbeard/webserve.py:948 msgid "Key verification successful" msgstr "تم التحقق من المفتاح بنجاح" -#: sickbeard/webserve.py:951 +#: sickbeard/webserve.py:950 msgid "Unable to verify key" msgstr "غير قادر على التحقق من المفتاح" -#: sickbeard/webserve.py:958 +#: sickbeard/webserve.py:957 msgid "Tweet successful, check your twitter to make sure it worked" msgstr "تم إرسال التغريدة بنجاح. تحقق من تويتر الخاص بك للتأكد من وصول التغريدة" -#: sickbeard/webserve.py:960 +#: sickbeard/webserve.py:959 msgid "Error sending tweet" msgstr "خطأ في إرسال التغريدة" -#: sickbeard/webserve.py:965 +#: sickbeard/webserve.py:964 msgid "Please enter a valid account sid" msgstr "" -#: sickbeard/webserve.py:968 +#: sickbeard/webserve.py:967 msgid "Please enter a valid auth token" msgstr "" -#: sickbeard/webserve.py:971 +#: sickbeard/webserve.py:970 msgid "Please enter a valid phone sid" msgstr "" -#: sickbeard/webserve.py:974 +#: sickbeard/webserve.py:973 msgid "Please format the phone number as \"+1-###-###-####\"" msgstr "" -#: sickbeard/webserve.py:978 +#: sickbeard/webserve.py:977 msgid "Authorization successful and number ownership verified" msgstr "" -#: sickbeard/webserve.py:980 +#: sickbeard/webserve.py:979 msgid "Error sending sms" msgstr "خطأ في إرسال الرسائل القصيرة" -#: sickbeard/webserve.py:986 +#: sickbeard/webserve.py:985 msgid "Slack message successful" msgstr "" -#: sickbeard/webserve.py:988 +#: sickbeard/webserve.py:987 msgid "Slack message failed" msgstr "" -#: sickbeard/webserve.py:994 +#: sickbeard/webserve.py:993 msgid "Discord message successful" msgstr "" -#: sickbeard/webserve.py:996 +#: sickbeard/webserve.py:995 msgid "Discord message failed" msgstr "" -#: sickbeard/webserve.py:1006 +#: sickbeard/webserve.py:1005 msgid "Test KODI notice sent successfully to {kodi_host}" msgstr "تم تجربة إرسال إشعار لبرنامج KODI إلى {kodi_host} بنجاح" -#: sickbeard/webserve.py:1008 +#: sickbeard/webserve.py:1007 msgid "Test KODI notice failed to {kodi_host}" msgstr "فشل تجربة إرسال إشعار لبرنامج KODI إلى {kodi_host}" -#: sickbeard/webserve.py:1023 +#: sickbeard/webserve.py:1022 msgid "Successful test notice sent to Plex Home Theater ... {plex_clients}" msgstr "تم تجربة إرسال إشعار لبرنامج Plex Home Theater بنجاح... {plex_clients}" -#: sickbeard/webserve.py:1025 +#: sickbeard/webserve.py:1024 msgid "Test failed for Plex Home Theater ... {plex_clients}" msgstr "تجربة برنامج Plex Home Theater فشلت... {plex_clients}" -#: sickbeard/webserve.py:1028 +#: sickbeard/webserve.py:1027 msgid "Tested Plex Home Theater(s)" msgstr "سيرفرات Plex Home Theater المجربة بنجاح" -#: sickbeard/webserve.py:1042 +#: sickbeard/webserve.py:1041 msgid "Successful test of Plex Media Server(s) ... {plex_servers}" msgstr "تم تجربة Plex Media Server بنجاح... {plex_servers}" -#: sickbeard/webserve.py:1044 +#: sickbeard/webserve.py:1043 msgid "Test failed, No Plex Media Server host specified" msgstr "تجربة Plex Media Server فشلت، لم يتم تحديد عنوان المضيف" -#: sickbeard/webserve.py:1046 +#: sickbeard/webserve.py:1045 msgid "Test failed for Plex Media Server(s) ... {plex_servers}" msgstr "تجربة Plex Media Server فشلت... {plex_servers}" -#: sickbeard/webserve.py:1049 +#: sickbeard/webserve.py:1048 msgid "Tested Plex Media Server host(s)" msgstr "سيرفرات Plex Media Server المجربة بنجاح" -#: sickbeard/webserve.py:1057 +#: sickbeard/webserve.py:1056 msgid "Tried sending desktop notification via libnotify" msgstr "محاولة إرسال إشعار سطح المكتب عن طريق libnotify" -#: sickbeard/webserve.py:1066 +#: sickbeard/webserve.py:1065 msgid "Test notice sent successfully to {emby_host}" msgstr "تم تجربة إرسال الإشعار بنجاح إلى {emby_host}" -#: sickbeard/webserve.py:1068 +#: sickbeard/webserve.py:1067 msgid "Test notice failed to {emby_host}" msgstr "فشل تجربة إرسال الإشعار إلى {emby_host}" -#: sickbeard/webserve.py:1076 +#: sickbeard/webserve.py:1075 msgid "Successfully started the scan update" msgstr "بدأ البحث عن التحديث بنجاح" -#: sickbeard/webserve.py:1078 +#: sickbeard/webserve.py:1077 msgid "Test failed to start the scan update" msgstr "فشل بدأ البحث عن التحديث" -#: sickbeard/webserve.py:1097 +#: sickbeard/webserve.py:1096 msgid "Test notice sent successfully to {nmj2_host}" msgstr "تم تجربة إرسال الإشعار بنجاح إلى {nmj2_host}" -#: sickbeard/webserve.py:1099 +#: sickbeard/webserve.py:1098 msgid "Test notice failed to {nmj2_host}" msgstr "فشل تجربة إرسال الإشعار إلى {nmj2_host}" -#: sickbeard/webserve.py:1119 +#: sickbeard/webserve.py:1118 msgid "Trakt Authorized" msgstr "Trakt مفوض" -#: sickbeard/webserve.py:1120 +#: sickbeard/webserve.py:1119 msgid "Trakt Not Authorized!" msgstr "Trakt غير مفوض!" -#: sickbeard/webserve.py:1184 +#: sickbeard/webserve.py:1183 msgid "Test email sent successfully! Check inbox." msgstr "تم إرسال بريد إليكتروني بنجاح! تحقق من صندوق الوارد." -#: sickbeard/webserve.py:1186 +#: sickbeard/webserve.py:1185 msgid "ERROR: {last_error}" msgstr "خطأ: {last_error}" -#: sickbeard/webserve.py:1193 +#: sickbeard/webserve.py:1192 msgid "Test NMA notice sent successfully" msgstr "تم التحقق من تجربة ارسال إشعار NMA بنجاح" -#: sickbeard/webserve.py:1195 +#: sickbeard/webserve.py:1194 msgid "Test NMA notice failed" msgstr "فشل تجربة إرسال إشعار لـ NMA" -#: sickbeard/webserve.py:1202 +#: sickbeard/webserve.py:1201 msgid "Pushalot notification succeeded. Check your Pushalot clients to make sure it worked" msgstr "تم إرسال إشعار Pushalot بنجاح. تحقق من Pushalot الخاص بك للتأكد من وصول الإشعار" -#: sickbeard/webserve.py:1204 +#: sickbeard/webserve.py:1203 msgid "Error sending Pushalot notification" msgstr "خطأ في إرسال إشعار Pushalot" -#: sickbeard/webserve.py:1211 +#: sickbeard/webserve.py:1210 msgid "Pushbullet notification succeeded. Check your device to make sure it worked" msgstr "تم إرسال إشعار Pushbullet بنجاح. تحقق من Pushbullet الخاص بك للتأكد من وصول الإشعار" -#: sickbeard/webserve.py:1213 sickbeard/webserve.py:1223 sickbeard/webserve.py:1232 +#: sickbeard/webserve.py:1212 sickbeard/webserve.py:1222 sickbeard/webserve.py:1231 msgid "Error sending Pushbullet notification" msgstr "خطأ في إرسال إشعار Pushbullet" #: gui/slick/views/displayShow.mako:436 gui/slick/views/inc_home_showList.mako:174 -#: gui/slick/views/manage.mako:49 sickbeard/webserve.py:1249 +#: gui/slick/views/manage.mako:49 sickbeard/webserve.py:1248 msgid "Status" msgstr "الحالة" -#: sickbeard/webserve.py:1268 sickbeard/webserve.py:1297 +#: sickbeard/webserve.py:1267 sickbeard/webserve.py:1296 msgid "Restarting SickRage" msgstr "إعادة تشغيل سيكراج" -#: sickbeard/webserve.py:1300 +#: sickbeard/webserve.py:1299 msgid "Update Failed" msgstr "فشل التحديث" -#: sickbeard/webserve.py:1301 +#: sickbeard/webserve.py:1300 msgid "Update wasn't successful, not restarting. Check your log for more information." msgstr "التحديث لم يكن ناجحاً، لن اعيد التشغيل. تحقق من السجل الخاص بك للحصول على مزيد من المعلومات." -#: sickbeard/webserve.py:1308 +#: sickbeard/webserve.py:1307 msgid "Checking out branch" msgstr "التحقق من الفرع" -#: sickbeard/webserve.py:1311 +#: sickbeard/webserve.py:1310 msgid "Already on branch" msgstr "موجود مسبقا في الفرع" -#: sickbeard/webserve.py:1339 +#: sickbeard/webserve.py:1338 msgid "Invalid show ID: {show}" msgstr "رقم معرف المسلسل غير صحيح: {show}" -#: sickbeard/webserve.py:1342 sickbeard/webserve.py:1871 sickbeard/webserve.py:2002 -#: sickbeard/webserve.py:2040 +#: sickbeard/webserve.py:1341 sickbeard/webserve.py:1870 sickbeard/webserve.py:2001 +#: sickbeard/webserve.py:2039 msgid "Show not in show list" msgstr "المسلسل غير موجود في قائمة المسلسلات" #: gui/slick/views/inc_rootDirs.mako:31 gui/slick/views/manage.mako:38 -#: gui/slick/views/manage_massEdit.mako:74 sickbeard/webserve.py:1358 -#: sickbeard/webserve.py:2027 +#: gui/slick/views/manage_massEdit.mako:74 sickbeard/webserve.py:1357 +#: sickbeard/webserve.py:2026 msgid "Edit" msgstr "تحرير" -#: sickbeard/webserve.py:1368 +#: sickbeard/webserve.py:1367 msgid "This show is in the process of being downloaded - the info below is incomplete." msgstr "جاري تحميل هذا المسلسل - المعلومات أدناه غير مكتملة." -#: sickbeard/webserve.py:1371 +#: sickbeard/webserve.py:1370 msgid "The information on this page is in the process of being updated." msgstr "جاري تحديث المعلومات على هذه الصفحة." -#: sickbeard/webserve.py:1374 +#: sickbeard/webserve.py:1373 msgid "The episodes below are currently being refreshed from disk" msgstr "جاري تحديث الحلقات أدناه من القرص" -#: sickbeard/webserve.py:1377 +#: sickbeard/webserve.py:1376 msgid "Currently downloading subtitles for this show" msgstr "جاري تحميل ترجمات لهذا المسلسل" -#: sickbeard/webserve.py:1380 +#: sickbeard/webserve.py:1379 msgid "This show is queued to be refreshed." msgstr "هذا المسلسل على قائمة الانتظار للتحديث." -#: sickbeard/webserve.py:1383 +#: sickbeard/webserve.py:1382 msgid "This show is queued and awaiting an update." msgstr "هذا المسلسل على قائمة الانتظار حتى يتم تحديثه." -#: sickbeard/webserve.py:1386 +#: sickbeard/webserve.py:1385 msgid "This show is queued and awaiting subtitles download." msgstr "هذا المسلسل على قائمة الانتظار حتى يتم تحميل الترجمات." -#: gui/slick/js/core.js:4081 sickbeard/webserve.py:1391 +#: gui/slick/js/core.js:4081 sickbeard/webserve.py:1390 msgid "Resume" msgstr "استئناف" #: gui/slick/js/core.js:4081 gui/slick/views/viewlogs.mako:12 -#: sickbeard/webserve.py:1393 +#: sickbeard/webserve.py:1392 msgid "Pause" msgstr "إيقاف مؤقت" #: gui/slick/views/editShow.mako:345 gui/slick/views/inc_blackwhitelist.mako:40 #: gui/slick/views/inc_blackwhitelist.mako:85 gui/slick/views/manage.mako:58 -#: gui/slick/views/manage_failedDownloads.mako:43 sickbeard/webserve.py:1395 +#: gui/slick/views/manage_failedDownloads.mako:43 sickbeard/webserve.py:1394 msgid "Remove" msgstr "إزالة" -#: sickbeard/webserve.py:1396 +#: sickbeard/webserve.py:1395 msgid "Re-scan files" msgstr "إعادة تفحص الملفات" -#: sickbeard/webserve.py:1397 +#: sickbeard/webserve.py:1396 msgid "Force Full Update" msgstr "إجبار التحديث الكامل" -#: sickbeard/webserve.py:1398 +#: sickbeard/webserve.py:1397 msgid "Update show in KODI" msgstr "تحديث المسلسل في برنامج KODI" -#: sickbeard/webserve.py:1399 +#: sickbeard/webserve.py:1398 msgid "Update show in Emby" msgstr "تحديث المسلسل في برنامج Emby" -#: sickbeard/webserve.py:1402 +#: sickbeard/webserve.py:1401 msgid "Hide specials" msgstr "" -#: sickbeard/webserve.py:1404 +#: sickbeard/webserve.py:1403 msgid "Show specials" msgstr "" -#: sickbeard/webserve.py:1406 sickbeard/webserve.py:2030 sickbeard/webserve.py:2031 +#: sickbeard/webserve.py:1405 sickbeard/webserve.py:2029 sickbeard/webserve.py:2030 msgid "Preview Rename" msgstr "معاينة التسمية" -#: sickbeard/webserve.py:1409 +#: sickbeard/webserve.py:1408 msgid "Download Subtitles" msgstr "تحميل الترجمة" -#: sickbeard/webserve.py:1498 +#: sickbeard/webserve.py:1497 msgid "No scene exceptions" msgstr "لا توجد (استثناءات للأسماء)" -#: sickbeard/webserve.py:1516 sickbeard/webserve.py:1764 sickbeard/webserve.py:1785 +#: sickbeard/webserve.py:1515 sickbeard/webserve.py:1763 sickbeard/webserve.py:1784 msgid "Invalid show ID" msgstr "رقم معرف المسلسل غير صحيح" -#: sickbeard/webserve.py:1525 sickbeard/webserve.py:1769 sickbeard/webserve.py:1790 +#: sickbeard/webserve.py:1524 sickbeard/webserve.py:1768 sickbeard/webserve.py:1789 msgid "Unable to find the specified show" msgstr "غير قادر على العثور على المسلسل المحدد" -#: sickbeard/webserve.py:1550 +#: sickbeard/webserve.py:1549 msgid "Unable to retreive Fansub Groups from AniDB." msgstr "غير قادر على استرداد مجموعات Fansub من AniDB." -#: sickbeard/webserve.py:1559 sickbeard/webserve.py:1561 +#: sickbeard/webserve.py:1558 sickbeard/webserve.py:1560 msgid "Edit Show" msgstr "تعديل العرض" -#: sickbeard/webserve.py:1637 sickbeard/webserve.py:1671 +#: sickbeard/webserve.py:1636 sickbeard/webserve.py:1670 msgid "Unable to refresh this show: {error}" msgstr "غير قادر على تحديث هذا المسلسل: {error}" -#: sickbeard/webserve.py:1663 +#: sickbeard/webserve.py:1662 msgid "New location <tt>{location}</tt> does not exist" msgstr "موقع جديد <tt>{location}</tt> غير موجود" -#: sickbeard/webserve.py:1688 +#: sickbeard/webserve.py:1687 msgid "Unable to update show: {error}" msgstr "غير قادر على تحديث المسلسل: {error}" -#: sickbeard/webserve.py:1695 +#: sickbeard/webserve.py:1694 msgid "Unable to force an update on scene exceptions of the show." msgstr "غير قادر على فرض التحديث على (استثناءات الأسماء) للمسلسل." -#: sickbeard/webserve.py:1702 +#: sickbeard/webserve.py:1701 msgid "Unable to force an update on scene numbering of the show." msgstr "غير قادر على فرض التحديث على (استثناءات أرقام الحلقات) للمسلسل." -#: sickbeard/webserve.py:1708 sickbeard/webserve.py:3540 +#: sickbeard/webserve.py:1707 sickbeard/webserve.py:3539 msgid "{num_errors:d} error{plural} while saving changes:" msgstr "{num_errors:d} خطأ {plural} أثناء حفظ التغييرات:" -#: sickbeard/webserve.py:1719 +#: sickbeard/webserve.py:1718 msgid "{show_name} has been {paused_resumed}" msgstr "{show_name} قد تم{paused_resumed}" -#: sickbeard/webserve.py:1719 +#: sickbeard/webserve.py:1718 msgid "resumed" msgstr "استأنفت" -#: sickbeard/webserve.py:1719 +#: sickbeard/webserve.py:1718 msgid "paused" msgstr "توقف مؤقت" -#: sickbeard/webserve.py:1731 +#: sickbeard/webserve.py:1730 msgid "{show_name} has been {deleted_trashed} {was_deleted}" msgstr "{show_name} قد تم {deleted_trashed} {was_deleted}" -#: sickbeard/webserve.py:1733 +#: sickbeard/webserve.py:1732 msgid "deleted" msgstr "محذوف" -#: sickbeard/webserve.py:1733 +#: sickbeard/webserve.py:1732 msgid "trashed" msgstr "مهمل" -#: sickbeard/webserve.py:1734 +#: sickbeard/webserve.py:1733 msgid "(media untouched)" msgstr "(media untouched)" -#: sickbeard/webserve.py:1734 +#: sickbeard/webserve.py:1733 msgid "(with all related media)" msgstr "(مع كل الوسائط المتعلقة)" -#: sickbeard/webserve.py:1755 +#: sickbeard/webserve.py:1754 msgid "Unable to refresh this show." msgstr "غير قادر على تحديث هذا المسلسل." -#: sickbeard/webserve.py:1775 +#: sickbeard/webserve.py:1774 msgid "Unable to update this show." msgstr "غير قادر على تحديث هذا المسلسل." -#: sickbeard/webserve.py:1814 +#: sickbeard/webserve.py:1813 msgid "Library update command sent to KODI host(s)): {kodi_hosts}" msgstr "تم إرسال أمرالتحديث إلى مضيفين برنامج KODI؛ {kodi_hosts}" -#: sickbeard/webserve.py:1816 +#: sickbeard/webserve.py:1815 msgid "Unable to contact one or more KODI host(s)): {kodi_hosts}" msgstr "غير قادر على الاتصال بواحد أو أكثر من مضيفين برنامج KODI؛ {kodi_hosts}" -#: sickbeard/webserve.py:1825 +#: sickbeard/webserve.py:1824 msgid "Library update command sent to Plex Media Server host: {plex_server}" msgstr "تم إرسال أمرالتحديث إلى مضيف برنامج Plex Media Server؛ {plex_server}" -#: sickbeard/webserve.py:1828 +#: sickbeard/webserve.py:1827 msgid "Unable to contact Plex Media Server host: {plex_server}" msgstr "غير قادر على الاتصال بواحد أو أكثر من مضيف برنامج Plex Media Server؛ {plex_server}" -#: sickbeard/webserve.py:1840 +#: sickbeard/webserve.py:1839 msgid "Library update command sent to Emby host: {emby_host}" msgstr "تم إرسال أمرالتحديث إلى مضيف برنامج Emby؛ {emby_host}" -#: sickbeard/webserve.py:1842 +#: sickbeard/webserve.py:1841 msgid "Unable to contact Emby host: {emby_host}" msgstr "غير قادر على الاتصال بواحد أو أكثر من مضيف برنامج Emby؛ {emby_host}" -#: sickbeard/webserve.py:1852 sickbeard/webserve.py:2036 +#: sickbeard/webserve.py:1851 sickbeard/webserve.py:2035 msgid "You must specify a show and at least one episode" msgstr "يجب عليك تحديد مسلسل وحلقة واحدة على الأقل" -#: sickbeard/webserve.py:1861 +#: sickbeard/webserve.py:1860 msgid "Invalid status" msgstr "حالة غير صالحة" -#: sickbeard/webserve.py:1954 +#: sickbeard/webserve.py:1953 msgid "Backlog was automatically started for the following seasons of <b>{show_name}</b>" msgstr "البحث عن المواسم المتراكمة بدأ تلقائياً لـ <b>{show_name}</b>" #: gui/slick/views/displayShow.mako:74 gui/slick/views/displayShow.mako:79 -#: gui/slick/views/displayShow.mako:404 sickbeard/webserve.py:1961 -#: sickbeard/webserve.py:1980 +#: gui/slick/views/displayShow.mako:404 sickbeard/webserve.py:1960 +#: sickbeard/webserve.py:1979 msgid "Season" msgstr "الموسم" -#: sickbeard/webserve.py:1968 +#: sickbeard/webserve.py:1967 msgid "Backlog started" msgstr "بدأ البحث المتراكم" -#: sickbeard/webserve.py:1973 +#: sickbeard/webserve.py:1972 msgid "Retrying Search was automatically started for the following season of <b>{show_name}</b>" msgstr "إعادة محاولة البحث تلقائياً بدأت في الموسم التالي من <b>{show_name}</b>" -#: sickbeard/webserve.py:1987 +#: sickbeard/webserve.py:1986 msgid "Retry Search started" msgstr "بدأت إعادة البحث" -#: sickbeard/webserve.py:1997 +#: sickbeard/webserve.py:1996 msgid "You must specify a show" msgstr "يجب عليك تحديد مسلسل" -#: sickbeard/webserve.py:2007 sickbeard/webserve.py:2045 +#: sickbeard/webserve.py:2006 sickbeard/webserve.py:2044 msgid "Can't rename episodes when the show dir is missing." msgstr "لا يمكن إعادة تسمية الحلقات اذا كان دليل ملفات المسلسل مفقود." -#: sickbeard/webserve.py:2212 sickbeard/webserve.py:2233 +#: sickbeard/webserve.py:2211 sickbeard/webserve.py:2232 msgid "New subtitles downloaded: {new_subtitle_languages}" msgstr "تم تحميل ترجمات جديدة: {new_subtitle_languages}" -#: sickbeard/webserve.py:2215 sickbeard/webserve.py:2236 +#: sickbeard/webserve.py:2214 sickbeard/webserve.py:2235 msgid "No subtitles downloaded" msgstr "لم يتم تحميل الترجمة" #: gui/slick/views/config_general.mako:80 gui/slick/views/layouts/main.mako:222 -#: sickbeard/webserve.py:2363 +#: sickbeard/webserve.py:2362 msgid "IRC" msgstr "IRC" -#: sickbeard/webserve.py:2376 +#: sickbeard/webserve.py:2375 msgid "Could not load news from the repo. [Click here for news.md])({news_url})" msgstr "تعذر تحميل الأخبار من المصدر. [انقر هنا للأخبار]{news_url}" -#: sickbeard/webserve.py:2383 sickbeard/webserve.py:2401 +#: sickbeard/webserve.py:2382 sickbeard/webserve.py:2400 msgid "The was a problem connecting to github, please refresh and try again" msgstr "كانت هناك مشكلة تتعلق بالاتصال بـ github، الرجاء التحديث ثم حاول مرة أخرى" -#: sickbeard/webserve.py:2398 +#: sickbeard/webserve.py:2397 msgid "Could not load changes from the repo. [Click here for CHANGES.md]({changes_url})" msgstr "تعذر تحميل التغييرات من المصدر. [انقر هنا للتغييرات]{changes_url}" -#: gui/slick/views/layouts/main.mako:223 sickbeard/webserve.py:2403 +#: gui/slick/views/layouts/main.mako:223 sickbeard/webserve.py:2402 msgid "Changelog" msgstr "سجل التغييرات" -#: gui/slick/views/layouts/main.mako:190 sickbeard/webserve.py:2413 -#: sickbeard/webserve.py:3855 sickbeard/webserve.py:4341 +#: gui/slick/views/layouts/main.mako:190 sickbeard/webserve.py:2412 +#: sickbeard/webserve.py:3826 sickbeard/webserve.py:4312 msgid "Post Processing" msgstr "المعالجة" -#: gui/slick/views/layouts/main.mako:128 sickbeard/webserve.py:2445 +#: gui/slick/views/layouts/main.mako:128 sickbeard/webserve.py:2444 msgid "Add Shows" msgstr "إضافة مسلسلات" -#: sickbeard/webserve.py:2510 +#: sickbeard/webserve.py:2509 msgid "No folders selected." msgstr "لم يتم تحديد أي مجلد." -#: sickbeard/webserve.py:2632 +#: sickbeard/webserve.py:2631 msgid "New Show" msgstr "مسلسل جديد" -#: sickbeard/webserve.py:2647 +#: sickbeard/webserve.py:2646 msgid "Trending Shows" msgstr "مسلسلات ساخنة" -#: sickbeard/webserve.py:2649 sickbeard/webserve.py:2772 +#: sickbeard/webserve.py:2648 sickbeard/webserve.py:2771 msgid "Popular Shows" msgstr "مسلسلات مشهورة" -#: sickbeard/webserve.py:2651 sickbeard/webserve.py:2665 +#: sickbeard/webserve.py:2650 sickbeard/webserve.py:2664 msgid "Most Anticipated Shows" msgstr "مسلسلات الأكثر إنتظارا" -#: sickbeard/webserve.py:2653 +#: sickbeard/webserve.py:2652 msgid "Most Collected Shows" msgstr "" -#: sickbeard/webserve.py:2655 +#: sickbeard/webserve.py:2654 msgid "Most Watched Shows" msgstr "" -#: sickbeard/webserve.py:2657 +#: sickbeard/webserve.py:2656 msgid "Most Played Shows" msgstr "" -#: sickbeard/webserve.py:2659 +#: sickbeard/webserve.py:2658 msgid "Recommended Shows" msgstr "" -#: gui/slick/views/addShows_trendingShows.mako:60 sickbeard/webserve.py:2661 +#: gui/slick/views/addShows_trendingShows.mako:60 sickbeard/webserve.py:2660 msgid "New Shows" msgstr "مسلسلات جديدة" -#: gui/slick/views/addShows_trendingShows.mako:61 sickbeard/webserve.py:2663 +#: gui/slick/views/addShows_trendingShows.mako:61 sickbeard/webserve.py:2662 msgid "Season Premieres" msgstr "بدايات الموسم" -#: sickbeard/webserve.py:2792 sickbeard/webserve.py:2793 +#: sickbeard/webserve.py:2791 sickbeard/webserve.py:2792 msgid "Existing Show" msgstr "مسلسل موجود" -#: sickbeard/webserve.py:2871 +#: sickbeard/webserve.py:2870 msgid "No root directories setup, please go back and add one." msgstr "لم يتم إضافة مجلدات رئيسية، الرجاء الرجوع و إضافة مجلد." -#: sickbeard/webserve.py:2883 sickbeard/webserve.py:3002 +#: sickbeard/webserve.py:2882 sickbeard/webserve.py:3001 msgid "Show added" msgstr "تم إضافة المسلسل" -#: sickbeard/webserve.py:2883 +#: sickbeard/webserve.py:2882 msgid "Adding the specified show {show_name}" msgstr "إضافة المسلسل المحدد {show_name}" -#: sickbeard/webserve.py:2924 +#: sickbeard/webserve.py:2923 msgid "Missing params, no Indexer ID or folder: {show_to_add} and {root_dir}/{show_path}" msgstr "المعاملات مفقودة، لايوجد رقم معرف المفهرس أو المجلد: {show_to_add} و {root_dir} / {show_path}" -#: sickbeard/webserve.py:2933 +#: sickbeard/webserve.py:2932 msgid "Unknown error. Unable to add show due to problem with show selection." msgstr "خطأ غير معروف. غير قادر على إضافة المسلسل بسبب مشكلة في تحديد المسلسل." -#: sickbeard/webserve.py:2957 sickbeard/webserve.py:2967 +#: sickbeard/webserve.py:2956 sickbeard/webserve.py:2966 msgid "Unable to add show" msgstr "غير قادر على اضافة المسلسل" -#: sickbeard/webserve.py:2957 +#: sickbeard/webserve.py:2956 msgid "Folder {show_dir} exists already" msgstr "مجلد {show_dir} موجود مسبقا" -#: sickbeard/webserve.py:2968 +#: sickbeard/webserve.py:2967 msgid "Unable to create the folder {show_dir}, can't add the show" msgstr "غير قادر على إنشاء المجلد {show_dir}، لا يمكن إضافة المسلسل" -#: sickbeard/webserve.py:3002 +#: sickbeard/webserve.py:3001 msgid "Adding the specified show into {show_dir}" msgstr "إضافة المسلسل المحدد إلى {show_dir}" -#: sickbeard/webserve.py:3078 +#: sickbeard/webserve.py:3077 msgid "Shows Added" msgstr "تم إضافة المسلسلات" -#: sickbeard/webserve.py:3079 +#: sickbeard/webserve.py:3078 msgid "Automatically added {num_shows} from their existing metadata files" msgstr "إضافة تلقائية لـ {num_shows} مسلسل من بياناتها التعريفية الموجودة" -#: gui/slick/views/layouts/main.mako:153 sickbeard/webserve.py:3096 +#: gui/slick/views/layouts/main.mako:153 sickbeard/webserve.py:3095 msgid "Mass Update" msgstr "تحديث شامل" -#: sickbeard/webserve.py:3134 sickbeard/webserve.py:3161 sickbeard/webserve.py:3237 -#: sickbeard/webserve.py:3238 +#: sickbeard/webserve.py:3133 sickbeard/webserve.py:3160 sickbeard/webserve.py:3236 +#: sickbeard/webserve.py:3237 msgid "Episode Overview" msgstr "نظرة عامة على الحلقة" -#: sickbeard/webserve.py:3270 +#: sickbeard/webserve.py:3269 msgid "Missing Subtitles" msgstr "ترجمات مفقودة" -#: gui/slick/views/layouts/main.mako:154 sickbeard/webserve.py:3356 -#: sickbeard/webserve.py:3357 +#: gui/slick/views/layouts/main.mako:154 sickbeard/webserve.py:3355 +#: sickbeard/webserve.py:3356 msgid "Backlog Overview" msgstr "نظرة عامة على السجل التراكمي" -#: sickbeard/webserve.py:3481 +#: sickbeard/webserve.py:3480 msgid "Mass Edit" msgstr "تعديل شامل" -#: sickbeard/webserve.py:3586 +#: sickbeard/webserve.py:3585 msgid "Unable to update show: {excption_format}" msgstr "غير قادر على تحديث المسلسل: {excption_format}" -#: sickbeard/webserve.py:3594 +#: sickbeard/webserve.py:3593 msgid "Unable to refresh show {show_name}: {excption_format}" msgstr "غير قادر على تحديث المسلسل {show_name}؛ {excption_format}" -#: sickbeard/webserve.py:3605 +#: sickbeard/webserve.py:3604 msgid "Errors encountered" msgstr "صادف وجود أخطاء" -#: gui/slick/views/config_general.mako:261 sickbeard/webserve.py:3611 +#: gui/slick/views/config_general.mako:261 sickbeard/webserve.py:3610 msgid "Updates" msgstr "التحديثات" -#: sickbeard/webserve.py:3616 +#: sickbeard/webserve.py:3615 msgid "Refreshes" msgstr "يقوم بتحديث" -#: sickbeard/webserve.py:3621 +#: sickbeard/webserve.py:3620 msgid "Renames" msgstr "إعادة تسمية" #: gui/slick/views/displayShow.mako:260 gui/slick/views/displayShow.mako:435 #: gui/slick/views/editShow.mako:119 gui/slick/views/inc_addShowOptions.mako:20 -#: gui/slick/views/manage_massEdit.mako:262 sickbeard/webserve.py:3626 -#: sickbeard/webserve.py:5244 +#: gui/slick/views/manage_massEdit.mako:262 sickbeard/webserve.py:3625 +#: sickbeard/webserve.py:5215 msgid "Subtitles" msgstr "ترجمة" -#: sickbeard/webserve.py:3631 +#: sickbeard/webserve.py:3630 msgid "The following actions were queued" msgstr "الإجراءات التالية في قائمة الانتظار" -#: sickbeard/webserve.py:3651 -msgid "For best results please set the Download Station alias as" -msgstr "للحصول على أفضل النتائج يرجى تعيين اسم مستعار لـ Download Station" - -#: sickbeard/webserve.py:3652 -msgid "You can check this setting in the Synology DSM" -msgstr "يمكنك التحقق من هذا الإعداد في Synology DSM" - -#: sickbeard/webserve.py:3652 sickbeard/webserve.py:3654 -msgid "Control Panel" -msgstr "لوحة التحكم" - -#: sickbeard/webserve.py:3652 -msgid "Application Portal" -msgstr "بوابة التطبيقات" - -#: sickbeard/webserve.py:3653 -msgid "Make sure you allow DSM to be embedded with iFrames too in" -msgstr "تأكد من السماح لـ DSM بأن يكون مضمّن في iFrames أيضاً في" - -#: sickbeard/webserve.py:3654 -msgid "DSM Settings" -msgstr "إعدادات DSM" - -#: sickbeard/webserve.py:3654 -msgid "Security" -msgstr "الأمان" - -#: gui/slick/views/layouts/main.mako:167 sickbeard/webserve.py:3662 -msgid "Manage Torrents" -msgstr "إدارة التورنت" - -#: gui/slick/views/layouts/main.mako:170 sickbeard/webserve.py:3683 +#: gui/slick/views/layouts/main.mako:170 sickbeard/webserve.py:3654 msgid "Failed Downloads" msgstr "تنزيلات فشلت" -#: gui/slick/views/layouts/main.mako:155 sickbeard/webserve.py:3701 +#: gui/slick/views/layouts/main.mako:155 sickbeard/webserve.py:3672 msgid "Manage Searches" msgstr "إدارة عمليات البحث" -#: sickbeard/webserve.py:3709 +#: sickbeard/webserve.py:3680 msgid "Backlog search started" msgstr "بدأ البحث عن حلقات متراكمة" -#: sickbeard/webserve.py:3719 +#: sickbeard/webserve.py:3690 msgid "Daily search started" msgstr "بدأ البحث اليومي" -#: sickbeard/webserve.py:3728 +#: sickbeard/webserve.py:3699 msgid "Find propers search started" msgstr "بدأ البحث عن النسخ المصححه" -#: sickbeard/webserve.py:3737 +#: sickbeard/webserve.py:3708 msgid "Subtitle search started" msgstr "بدأ البحث عن الترجمة" -#: sickbeard/webserve.py:3801 +#: sickbeard/webserve.py:3772 msgid "Remove Selected" msgstr "" -#: sickbeard/webserve.py:3802 +#: sickbeard/webserve.py:3773 msgid "Clear History" msgstr "مسح المحفوظات" -#: sickbeard/webserve.py:3803 +#: sickbeard/webserve.py:3774 msgid "Trim History" msgstr "تخفيض حجم سجل المحفوظات" -#: sickbeard/webserve.py:3823 +#: sickbeard/webserve.py:3794 msgid "Selected history entries removed" msgstr "" -#: sickbeard/webserve.py:3830 +#: sickbeard/webserve.py:3801 msgid "History cleared" msgstr "تم مسح المحفوظات" -#: sickbeard/webserve.py:3837 +#: sickbeard/webserve.py:3808 msgid "Removed history entries older than 30 days" msgstr "إزالة السجلات الأقدم من 30 يوما" -#: gui/slick/views/layouts/main.mako:185 sickbeard/webserve.py:3850 +#: gui/slick/views/layouts/main.mako:185 sickbeard/webserve.py:3821 msgid "General" msgstr "عام" -#: sickbeard/webserve.py:3851 sickbeard/webserve.py:4143 +#: sickbeard/webserve.py:3822 sickbeard/webserve.py:4114 msgid "Backup/Restore" msgstr "النسخ الاحتياطي/الاستعادة" -#: gui/slick/views/layouts/main.mako:187 sickbeard/webserve.py:3852 -#: sickbeard/webserve.py:4206 +#: gui/slick/views/layouts/main.mako:187 sickbeard/webserve.py:3823 +#: sickbeard/webserve.py:4177 msgid "Search Settings" msgstr "إعدادات البحث" -#: gui/slick/views/layouts/main.mako:188 sickbeard/webserve.py:3853 -#: sickbeard/webserve.py:4518 +#: gui/slick/views/layouts/main.mako:188 sickbeard/webserve.py:3824 +#: sickbeard/webserve.py:4489 msgid "Search Providers" msgstr "مقدمي خدمة البحث" -#: gui/slick/views/layouts/main.mako:189 sickbeard/webserve.py:3854 +#: gui/slick/views/layouts/main.mako:189 sickbeard/webserve.py:3825 msgid "Subtitles Settings" msgstr "إعدادات الترجمة" -#: gui/slick/views/layouts/main.mako:191 sickbeard/webserve.py:3856 -#: sickbeard/webserve.py:4964 +#: gui/slick/views/layouts/main.mako:191 sickbeard/webserve.py:3827 +#: sickbeard/webserve.py:4935 msgid "Notifications" msgstr "الإشعارات" @@ -1240,142 +1237,142 @@ msgstr "الإشعارات" #: gui/slick/views/home.mako:35 gui/slick/views/inc_addShowOptions.mako:79 #: gui/slick/views/inc_home_showList.mako:179 gui/slick/views/layouts/main.mako:192 #: gui/slick/views/manage.mako:44 gui/slick/views/manage_massEdit.mako:202 -#: sickbeard/webserve.py:3857 sickbeard/webserve.py:5309 +#: sickbeard/webserve.py:3828 sickbeard/webserve.py:5280 msgid "Anime" msgstr "أنمي" -#: sickbeard/webserve.py:3895 sickbeard/webserve.py:3896 +#: sickbeard/webserve.py:3866 sickbeard/webserve.py:3867 msgid "SickRage Configuration" msgstr "ضبط سيكراج" -#: sickbeard/webserve.py:3910 +#: sickbeard/webserve.py:3881 msgid "Config - Shares" msgstr "" -#: sickbeard/webserve.py:3910 +#: sickbeard/webserve.py:3881 msgid "Windows Shares Configuration" msgstr "" -#: sickbeard/webserve.py:3937 +#: sickbeard/webserve.py:3908 msgid "Saved Shares" msgstr "" -#: sickbeard/webserve.py:3937 +#: sickbeard/webserve.py:3908 msgid "Your Windows share settings have been saved" msgstr "" -#: sickbeard/webserve.py:3948 +#: sickbeard/webserve.py:3919 msgid "Config - General" msgstr "ضبط - عام" -#: sickbeard/webserve.py:3948 +#: sickbeard/webserve.py:3919 msgid "General Configuration" msgstr "ضبط عام" -#: sickbeard/webserve.py:3988 +#: sickbeard/webserve.py:3959 msgid "Saved Defaults" msgstr "تم حفظ الإعدادات الافتراضية" -#: sickbeard/webserve.py:3988 +#: sickbeard/webserve.py:3959 msgid "Your \"add show\" defaults have been set to your current selections." msgstr "" -#: sickbeard/webserve.py:4095 +#: sickbeard/webserve.py:4066 msgid "Unable to create directory {directory}, log directory not changed." msgstr "غير قادر على إنشاء الدليل {directory}، دليل السجل لم يتغير." -#: sickbeard/webserve.py:4103 +#: sickbeard/webserve.py:4074 msgid "Unable to create directory {directory}, https cert directory not changed." msgstr "غير قادر على إنشاء الدليل {directory}، دليل شهادة https لم يتغير." -#: sickbeard/webserve.py:4107 +#: sickbeard/webserve.py:4078 msgid "Unable to create directory {directory}, https key directory not changed." msgstr "غير قادر على إنشاء الدليل {directory}، دليل مفتاح https لم يتغير." -#: sickbeard/webserve.py:4126 sickbeard/webserve.py:4324 sickbeard/webserve.py:4456 -#: sickbeard/webserve.py:5227 +#: sickbeard/webserve.py:4097 sickbeard/webserve.py:4295 sickbeard/webserve.py:4427 +#: sickbeard/webserve.py:5198 msgid "Error(s) Saving Configuration" msgstr "خطأ (أخطاء) حفظ الضبط" -#: sickbeard/webserve.py:4129 sickbeard/webserve.py:4327 sickbeard/webserve.py:4458 -#: sickbeard/webserve.py:4950 sickbeard/webserve.py:5230 sickbeard/webserve.py:5294 -#: sickbeard/webserve.py:5323 +#: sickbeard/webserve.py:4100 sickbeard/webserve.py:4298 sickbeard/webserve.py:4429 +#: sickbeard/webserve.py:4921 sickbeard/webserve.py:5201 sickbeard/webserve.py:5265 +#: sickbeard/webserve.py:5294 msgid "Configuration Saved" msgstr "تم حفظ الضبط" -#: sickbeard/webserve.py:4142 +#: sickbeard/webserve.py:4113 msgid "Config - Backup/Restore" msgstr "ضبط - نسخ الاحتياط/الاستعادة" -#: sickbeard/webserve.py:4205 +#: sickbeard/webserve.py:4176 msgid "Config - Episode Search" msgstr "الضبط - البحث عن الحلقة" -#: sickbeard/webserve.py:4340 +#: sickbeard/webserve.py:4311 msgid "Config - Post Processing" msgstr "الضبط - المعالجة" -#: sickbeard/webserve.py:4380 +#: sickbeard/webserve.py:4351 msgid "Unpacking Not Supported, disabling unpack setting" msgstr "فك الضغط غير مدعوم، يتم تعطيل اعداد فك الضغط" -#: sickbeard/webserve.py:4431 +#: sickbeard/webserve.py:4402 msgid "You tried saving an invalid normal naming config, not saving your naming settings" msgstr "" -#: sickbeard/webserve.py:4439 +#: sickbeard/webserve.py:4410 msgid "You tried saving an invalid anime naming config, not saving your naming settings" msgstr "لقد حاولت حفظ إعدادات تسمية أنمي غير صالحة، لم يتم حفظ إعدادات التسمية" -#: sickbeard/webserve.py:4517 +#: sickbeard/webserve.py:4488 msgid "Config - Providers" msgstr "التكوين - مقدمي الخدمات" -#: sickbeard/webserve.py:4547 +#: sickbeard/webserve.py:4518 msgid "No Provider Name specified" msgstr "لم يتم تحديد اسم مقدم الخدمة" -#: sickbeard/webserve.py:4549 +#: sickbeard/webserve.py:4520 msgid "No Provider Url specified" msgstr "لم يتم تحديدعنوان مقدم الخدمة" -#: sickbeard/webserve.py:4551 +#: sickbeard/webserve.py:4522 msgid "No Provider Api key specified" msgstr "لم يتم تحديد مفاح Api لمقدم الخدمة" -#: sickbeard/webserve.py:4963 +#: sickbeard/webserve.py:4934 msgid "Config - Notifications" msgstr "الضبط - الإشعارات" -#: sickbeard/webserve.py:5243 +#: sickbeard/webserve.py:5214 msgid "Config - Subtitles" msgstr "الضبط - الترجمة" -#: sickbeard/webserve.py:5308 +#: sickbeard/webserve.py:5279 msgid "Config - Anime" msgstr "الضبط - أنيمي" -#: sickbeard/webserve.py:5336 +#: sickbeard/webserve.py:5307 msgid "Clear Errors" msgstr "مسح الأخطاء" -#: sickbeard/webserve.py:5342 +#: sickbeard/webserve.py:5313 msgid "Clear Warnings" msgstr "مسح التحذيرات" -#: sickbeard/webserve.py:5348 +#: sickbeard/webserve.py:5319 msgid "Submit Errors" msgstr "إرسال الأخطاء" -#: sickbeard/webserve.py:5363 +#: sickbeard/webserve.py:5334 msgid "Logs & Errors" msgstr "السجلات & الأخطاء" -#: sickbeard/webserve.py:5388 +#: sickbeard/webserve.py:5359 msgid "Log File" msgstr "ملف السجل" -#: sickbeard/webserve.py:5388 +#: sickbeard/webserve.py:5359 msgid "Logs" msgstr "سجلات" @@ -1383,30 +1380,166 @@ msgstr "سجلات" msgid "This is a test notification from SickRage" msgstr "" -#: gui/slick/js/core.js:481 gui/slick/js/core.js:502 gui/slick/js/core.js:524 -#: gui/slick/js/core.js:548 gui/slick/js/core.js:573 gui/slick/js/core.js:596 -#: gui/slick/js/core.js:625 gui/slick/js/core.js:645 gui/slick/js/core.js:690 -#: gui/slick/js/core.js:769 gui/slick/js/core.js:829 gui/slick/js/core.js:849 -#: gui/slick/js/core.js:879 gui/slick/js/core.js:909 gui/slick/js/core.js:969 -#: gui/slick/js/core.js:1046 gui/slick/js/core.js:1066 gui/slick/js/core.js:1085 +#: gui/slick/js/browser.js:6 +msgid "Choose Directory" +msgstr "" + +#: gui/slick/js/core.js:443 +msgid "Select log file folder location" +msgstr "" + +#: gui/slick/js/core.js:445 +msgid "Select CSS file" +msgstr "" + +#: gui/slick/js/core.js:469 +msgid "Select backup folder to save to" +msgstr "" + +#: gui/slick/js/core.js:470 +msgid "Select backup files to restore" +msgstr "" + +#: gui/slick/js/core.js:479 gui/slick/js/core.js:500 gui/slick/js/core.js:522 +#: gui/slick/js/core.js:546 gui/slick/js/core.js:571 gui/slick/js/core.js:594 +#: gui/slick/js/core.js:623 gui/slick/js/core.js:643 gui/slick/js/core.js:688 +#: gui/slick/js/core.js:767 gui/slick/js/core.js:827 gui/slick/js/core.js:847 +#: gui/slick/js/core.js:877 gui/slick/js/core.js:907 gui/slick/js/core.js:967 +#: gui/slick/js/core.js:1044 gui/slick/js/core.js:1064 gui/slick/js/core.js:1083 msgid "Please fill out the necessary fields above." msgstr "" -#: gui/slick/js/core.js:1328 gui/slick/js/core.js:1378 gui/slick/js/core.js:1427 -#: gui/slick/js/core.js:1493 +#: gui/slick/js/core.js:680 +msgid "<b>Step 1:</b> Confirm Authorization" +msgstr "" + +#: gui/slick/js/core.js:977 +msgid "Check blacklist name; the value needs to be a trakt slug" +msgstr "" + +#: gui/slick/js/core.js:1022 +msgid "You must provide a recipient email address!" +msgstr "" + +#: gui/slick/js/core.js:1107 +msgid "You didn't supply a Pushbullet api key" +msgstr "" + +#: gui/slick/js/core.js:1133 gui/slick/js/core.js:1162 +msgid "Don't forget to save your new pushbullet settings." +msgstr "" + +#: gui/slick/js/core.js:1262 +msgid "Select TV Download Directory" +msgstr "" + +#: gui/slick/js/core.js:1263 +msgid "Select Unpack Directory" +msgstr "" + +#: gui/slick/js/core.js:1326 gui/slick/js/core.js:1376 gui/slick/js/core.js:1425 +#: gui/slick/js/core.js:1491 msgid "This pattern is invalid." msgstr "" -#: gui/slick/js/core.js:1336 gui/slick/js/core.js:1386 gui/slick/js/core.js:1435 -#: gui/slick/js/core.js:1501 +#: gui/slick/js/core.js:1334 gui/slick/js/core.js:1384 gui/slick/js/core.js:1433 +#: gui/slick/js/core.js:1499 msgid "This pattern would be invalid without the folders, using it will force \"Season Folders\" on for all shows." msgstr "" -#: gui/slick/js/core.js:1344 gui/slick/js/core.js:1394 gui/slick/js/core.js:1443 -#: gui/slick/js/core.js:1509 +#: gui/slick/js/core.js:1342 gui/slick/js/core.js:1392 gui/slick/js/core.js:1441 +#: gui/slick/js/core.js:1507 msgid "This pattern is valid." msgstr "" +#: gui/slick/js/core.js:1818 +msgid "Select .nzb black hole/watch location" +msgstr "" + +#: gui/slick/js/core.js:1819 +msgid "Select .torrent black hole/watch location" +msgstr "" + +#: gui/slick/js/core.js:1820 +msgid "Select .torrent download location" +msgstr "" + +#: gui/slick/js/core.js:1900 +msgid "Minimum seeding time is" +msgstr "" + +#: gui/slick/js/core.js:1902 +msgid "URL to your uTorrent client (e.g. http://localhost:8000)" +msgstr "" + +#: gui/slick/js/core.js:1905 +msgid "Stop seeding when inactive for" +msgstr "" + +#: gui/slick/js/core.js:1911 +msgid "URL to your Transmission client (e.g. http://localhost:9091)" +msgstr "" + +#: gui/slick/js/core.js:1921 +msgid "URL to your Deluge client (e.g. http://localhost:8112)" +msgstr "" + +#: gui/slick/js/core.js:1930 +msgid "IP or Hostname of your Deluge Daemon (e.g. scgi://localhost:58846)" +msgstr "" + +#: gui/slick/js/core.js:1937 +msgid "URL to your Synology DS client (e.g. http://localhost:5000)" +msgstr "" + +#: gui/slick/js/core.js:1941 +msgid "URL to your rTorrent client (e.g. scgi://localhost:5000 <br> or https://localhost/rutorrent/plugins/httprpc/action.php)" +msgstr "" + +#: gui/slick/js/core.js:1952 +msgid "URL to your qBittorrent client (e.g. http://localhost:8080)" +msgstr "" + +#: gui/slick/js/core.js:1962 +msgid "URL to your MLDonkey (e.g. http://localhost:4080)" +msgstr "" + +#: gui/slick/js/core.js:1974 +msgid "URL to your putio client (e.g. http://localhost:8080)" +msgstr "" + +#: gui/slick/js/core.js:1975 +msgid "<a herf=\"https://app.put.io/oauth/apps/new\" target=\"_blank\"> Create a new OAuth app for put.io</a>" +msgstr "" + +#: gui/slick/js/core.js:1977 +msgid "Put.io Parent Folder" +msgstr "" + +#: gui/slick/js/core.js:1978 +msgid "Put.io OAuth Token" +msgstr "" + +#: gui/slick/js/core.js:3383 gui/slick/views/displayShow.mako:410 +msgid "Show Episodes" +msgstr "حلقات المسلسل" + +#: gui/slick/js/core.js:3388 gui/slick/views/displayShow.mako:408 +msgid "Hide Episodes" +msgstr "" + +#: gui/slick/js/core.js:3396 +msgid "Select Show Location" +msgstr "" + +#: gui/slick/js/core.js:3460 +msgid "Select Unprocessed Episode Folder" +msgstr "" + +#: gui/slick/js/core.js:3790 +msgid "DELETED" +msgstr "" + #: gui/slick/js/core.js:4082 msgid "Resume updating the log on this page." msgstr "" @@ -1415,6 +1548,26 @@ msgstr "" msgid "Pause updating the log on this page." msgstr "" +#: gui/slick/js/core.js:4323 +msgid "searching {searchingFor}..." +msgstr "" + +#: gui/slick/js/core.js:4334 +msgid "search timed out, try again or try another indexer" +msgstr "" + +#: gui/slick/js/core.js:4503 +msgid "loading folders..." +msgstr "" + +#: gui/slick/js/parsers.js:7 gui/slick/js/parsers.js:8 +#: gui/slick/js/plotTooltip.js:6 gui/slick/js/sceneExceptionsTooltip.js:6 +#: gui/slick/views/inc_home_showList.mako:209 +#: gui/slick/views/inc_home_showList.mako:215 +#: gui/slick/views/inc_home_showList.mako:231 +msgid "Loading..." +msgstr "جاري التحميل..." + #: gui/slick/views/404.mako:5 msgid "You have reached this page by accident, please check the url." msgstr "لقد وصلت إلى هذه الصفحة بالخطأ، الرجاء التحقق من العنوان." @@ -5720,14 +5873,6 @@ msgstr "تغيير الحلقات المختارة إلى" msgid "Select Columns" msgstr "حدد الأعمدة" -#: gui/slick/views/displayShow.mako:408 -msgid "Hide Episodes" -msgstr "" - -#: gui/slick/views/displayShow.mako:410 -msgid "Show Episodes" -msgstr "حلقات المسلسل" - #: gui/slick/views/displayShow.mako:424 msgid "NFO" msgstr "NFO" @@ -6246,12 +6391,6 @@ msgstr "نشط" msgid "loading" msgstr "جار التحميل" -#: gui/slick/views/inc_home_showList.mako:209 -#: gui/slick/views/inc_home_showList.mako:215 -#: gui/slick/views/inc_home_showList.mako:231 -msgid "Loading..." -msgstr "جاري التحميل..." - #: gui/slick/views/inc_qualityChooser.mako:31 msgid "<p><b><u>Preferred</u></b> qualities will replace those in <b><u>allowed</u></b>, even if they are lower.</p>" msgstr "<u><b><p>االجودة المفضلة</u>؛</b> ستستبدل الجودات <u><b>المسموحه</u>؛</b> حتى لو كانت أقل منها.</p>" @@ -6789,6 +6928,10 @@ msgstr "تحديث KODI" msgid "Update Emby" msgstr "تحديث Emby" +#: gui/slick/views/layouts/main.mako:167 +msgid "Manage Torrents" +msgstr "إدارة التورنت" + #: gui/slick/views/layouts/main.mako:173 msgid "Missed Subtitle Management" msgstr "إدارة الترجمات المفقودة" diff --git a/locale/bg_BG/LC_MESSAGES/messages.json b/locale/bg_BG/LC_MESSAGES/messages.json index 32952170b0614094b2883189343589ac0c931b52..508cc708852a50a9cb19e8d710da6cfe3200d1f8 100644 --- a/locale/bg_BG/LC_MESSAGES/messages.json +++ b/locale/bg_BG/LC_MESSAGES/messages.json @@ -1 +1 @@ -{"messages":{"domain":"messages","locale_data":{"messages":{"100":[null,"100"],"250":[null,"250"],"500":[null,"500"],"":{"domain":"messages","plural_forms":"nplurals=2; plural=(n != 1);","lang":"bg_BG"},"Drama":[null,"Драма"],"Mystery":[null,"Мистерия"],"Science-Fiction":[null,"Научна фантастика"],"Crime":[null,"Крими"],"Action":[null,"Действие"],"Comedy":[null,"Комедия"],"Thriller":[null,"Трилър"],"Animation":[null,"Анимация"],"Family":[null,"Семеен"],"Fantasy":[null,"Фентъзи"],"Adventure":[null,"Приключенски"],"Horror":[null,"Ужаси"],"Film-Noir":[null,"Филм-ноар"],"Sci-Fi":[null,"Sci-Fi"],"Romance":[null,"Романтичен"],"Sport":[null,"Спортен"],"War":[null,"Военен"],"Biography":[null,"Биографичен"],"History":[null,"История"],"Music":[null,"Музикален"],"Western":[null,"Уестърн"],"News":[null,"Новини"],"Sitcom":[null,"Ситком"],"Reality-TV":[null,"Реалити"],"Documentary":[null,"Документален филм"],"Game-Show":[null,"Геймърски"],"Musical":[null,"Мюзикъл"],"Talk-Show":[null,"Токшоу"],"Started Download":[null,"Започнато изтегляне"],"Download Finished":[null,"Изтеглянето завърши"],"Subtitle Download Finished":[null,"Изтеглени са субтитри"],"SickRage Updated":[null,"SickRage беше актуализиран"],"SickRage Updated To Commit#: ":[null,"SickRage беше актуализиран към Commit#: "],"SickRage new login":[null,"Нов вход в SickRage"],"New login from IP: {0}. http://geomaplookup.net/?ip={0}":[null,"Нов вход от IP адрес: {0}. http://geomaplookup.net/?IP={0}"],"Repeat":[null,"Repeat"],"Repeat (Separated)":[null,"Repeat (Separated)"],"Extend":[null,"Extend"],"Extend (Limited)":[null,"Extend (Limited)"],"Extend (Limited, E-prefixed)":[null,"Extend (Limited, E-prefixed)"],"Downloaded":[null,"Изтеглен(и)"],"Snatched":[null,"Намерен"],"Snatched (Proper)":[null,"Намерен (Proper)"],"Failed":[null,"Неуспешно"],"Snatched (Best)":[null,"Намерен (най-добро)"],"Archived":[null,"Архивиран"],"Unknown":[null,"Неизвестно"],"Unaired":[null,"Неизлъчен"],"Skipped":[null,"Пропуснат"],"Wanted":[null,"Търсен"],"Ignored":[null,"Игнориран"],"Subtitled":[null,"Субтитри"],"<No Filter>":[null,"<без филтър>"],"Daily Searcher":[null,"Дневно търсене"],"Backlog":[null,"Backlog"],"Show Updater":[null,"Актуализатор на предавания"],"Check Version":[null,"Проверка на версията"],"Show Queue":[null,"Опашка на предавания"],"Search Queue (All)":[null,"Опашка за търсене (всички)"],"Search Queue (Daily Searcher)":[null,"Опашка за търсене (дневно търсене)"],"Search Queue (Backlog)":[null,"Опашка за търсене (Backlog)"],"Search Queue (Manual)":[null,"Опашка за търсене (ръчно)"],"Search Queue (Retry/Failed)":[null,"Опашка за търсене (повторен опит/неуспешни)"],"Search Queue (RSS)":[null,"Опашка за търсене (RSS)"],"Find Propers":[null,"Намери Propers"],"Postprocessor":[null,"Последваща обработка"],"Find Subtitles":[null,"Намери субтитри"],"Trakt Checker":[null,"Проверка на Trakt"],"Event":[null,"Събитие"],"Error":[null,"Грешка"],"Tornado":[null,"Tornado"],"Thread":[null,"Thread"],"Main":[null,"Основни"],"Loading":[null,""],"New update found for SickRage, starting auto-updater":[null,"Открит е нова актуализация за SickRage, стартира автоматично обновяване"],"Update was successful":[null,"Актуализирането е успешно"],"Update failed!":[null,"Неуспешно актуализиране!"],"Backup":[null,"Архивиране"],"Config backup in progress...":[null,"Архивиране на настройките..."],"Config backup successful, updating...":[null,"Успешно архивиране на настройките, актуализиране..."],"Config backup failed, aborting update":[null,"Неуспешно архивиране на настройките, прекратена актуализация"],"No update needed":[null,"Не е необходима актуализация"],"Mako Error":[null,"Грешка в Mako"],"Oops":[null,"Опа"],"Wrong API key used":[null,"Използван е грешен API ключ"],"Login":[null,"Вход"],"API Key not generated":[null,"Не е генериран API ключ"],"API Builder":[null,"API Builder"],"Schedule":[null,"График"],"Test 1":[null,"Тест 1"],"This is test number 1":[null,"Това е тест номер 1"],"Test 2":[null,"Тест 2"],"This is test number 2":[null,"Това е тест номер 2"],"You're using the {branch} branch. Please use 'master' unless specifically asked":[null,"В момента използвате клон {branch}. Моля използвайте \"master\", освен ако специално не е изискано друго"],"Invalid show parameters":[null,"Невалидни параметри за предаване"],"Invalid parameters":[null,"Невалидни параметри"],"Episode couldn't be retrieved":[null,"Епизодът не може да бъде открит"],"Home":[null,"Начало"],"Show List":[null,"Списък с предавания"],"Error: Unsupported Request. Send jsonp request with 'callback' variable in the query string.":[null,"Грешка: Неподдържано искане. Изпрати jsonp заявка с \"callback\" променлива в низа на заявката."],"Success. Connected and authenticated":[null,"Успешно свързан и удостоверен"],"Authentication failed. SABnzbd expects":[null,"Неуспешно удостоверяване. SABnzbd очаква"],"as authentication method":[null,"като метод за удостоверяване"],"Unable to connect to host":[null,"Не може да се свърже със сървъра"],"SMS sent successfully":[null,"SMS е изпратен успешно"],"Problem sending SMS: {message}":[null,"Проблем с изпращането на SMS: {message}"],"Telegram notification succeeded. Check your Telegram clients to make sure it worked":[null,"Успешно испращане на уведомление към Telegram. Проверете вашите Telegram клиенти, за да се уверите, че е получено успешно"],"Error sending Telegram notification: {message}":[null,"Грешка при изпращането на Telegram уведомяване: {message}"],"join notification succeeded. Check your join clients to make sure it worked":[null,"успешно испращане на уведомление към join. Проверете вашите join клиенти, за да се уверите, че е получено успешно"],"Error sending join notification: {message}":[null,"Грешка при изпращането на join уведомяване: {message}"]," with password":[null," с парола"],"Registered and Tested growl successfully {growl_host}":[null,"Регистриран и тестван успешно growl {growl_host}"],"Registration and Testing of growl failed {growl_host}":[null,"Регистрацията и тестването на growl е неуспешно {growl_host}"],"Test prowl notice sent successfully":[null,"Пробното уведомление на prowl е изпратено успешно"],"Test prowl notice failed":[null,"Тестът на уведомлението на prowl е неуспешно"],"Boxcar2 notification succeeded. Check your Boxcar2 clients to make sure it worked":[null,"Успешно испращане на уведомление към Boxcar2. Проверете вашите Boxcar2 клиенти, за да се уверите, че е получено успешно"],"Error sending Boxcar2 notification":[null,"Грешка при изпращане на уведомление на Boxcar2"],"Pushover notification succeeded. Check your Pushover clients to make sure it worked":[null,"Успешно испращане на уведомление към Pushover. Проверете вашите Pushover клиенти, за да се уверите, че е получено успешно"],"Error sending Pushover notification":[null,"Грешка при изпращане на Pushover уведомяване"],"Key verification successful":[null,"Успешна проверка на ключ"],"Unable to verify key":[null,"Невъзможна проверка на ключ"],"Tweet successful, check your twitter to make sure it worked":[null,"Успешен Tweet. Проверете вашия twitter, за да се уверите че е проработило"],"Error sending tweet":[null,"Грешка при изпращане на tweet"],"Please enter a valid account sid":[null,"Моля, въведете валиден sid за акаунт"],"Please enter a valid auth token":[null,"Моля въведете валиден auth token"],"Please enter a valid phone sid":[null,"Моля, въведете валиден телефонен sid"],"Please format the phone number as \"+1-###-###-####\"":[null,"Моля форматирайте телефонния номер като \"+1-###-###-####\""],"Authorization successful and number ownership verified":[null,"Потвърждението е успешно и собствеността а номера е потвърдена"],"Error sending sms":[null,"Грешка при изпращане на sms"],"Slack message successful":[null,"Успешно съобщение към Slack"],"Slack message failed":[null,"Неуспешно съобщение към Slack"],"Discord message successful":[null,"Успешно съобщение към Discord"],"Discord message failed":[null,"Неуспешно съобщение към Discord"],"Test KODI notice sent successfully to {kodi_host}":[null,"Упсшено тестово уведомление на KODI към {kodi_host}"],"Test KODI notice failed to {kodi_host}":[null,"Неуспешно тестово уведомление на KODI към {kodi_host}"],"Successful test notice sent to Plex Home Theater ... {plex_clients}":[null,"Успешно тестово уведомление на Plex Home Theater ... {plex_clients}"],"Test failed for Plex Home Theater ... {plex_clients}":[null,"Неуспешно тестово уведомление на Plex Home Theater ... {plex_clients}"],"Tested Plex Home Theater(s)":[null,"Тествани Plex Home Theater(s)"],"Successful test of Plex Media Server(s) ... {plex_servers}":[null,"Успешен тест на Plex Media Server(s) ... {plex_servers}"],"Test failed, No Plex Media Server host specified":[null,"Неуспешен тест. Не е посочен адрес на Plex Media Server"],"Test failed for Plex Media Server(s) ... {plex_servers}":[null,"Неуспешен тест на Plex Media Server(s) ... {plex_servers}"],"Tested Plex Media Server host(s)":[null,"Тествани адреси на Plex Media Server(s)"],"Tried sending desktop notification via libnotify":[null,"Опитва да изпрати съобшение до десктоп чрез libnotify"],"Test notice sent successfully to {emby_host}":[null,"Тестото уведомление беше изпратено успешно към {emby_host}"],"Test notice failed to {emby_host}":[null,"Неуспешно тестово уведомление на {emby_host}"],"Successfully started the scan update":[null,"Успешно започна сканиране за актуализация"],"Test failed to start the scan update":[null,"Тестът не успя да стартира сканиране за актуализация"],"Test notice sent successfully to {nmj2_host}":[null,"Тест уведомление изпратено успешно към {nmj2_host}"],"Test notice failed to {nmj2_host}":[null,"Неуспешно тестово уведомление на {nmj2_host}"],"Trakt Authorized":[null,"Оторизиран в Trakt"],"Trakt Not Authorized!":[null,"Не е оторизиран в Trakt!"],"Test email sent successfully! Check inbox.":[null,"Успешно изпратен тестов имейл! Проверете пощенската кутия."],"ERROR: {last_error}":[null,"ГРЕШКА: {last_error}"],"Test NMA notice sent successfully":[null,"Пробното уведомление на NMA е изпратено успешно"],"Test NMA notice failed":[null,"Тестът на уведомлението на NMA е неуспешно"],"Pushalot notification succeeded. Check your Pushalot clients to make sure it worked":[null,"Успешно испращане на уведомление към Pushalot. Проверете вашите Pushalot клиенти, за да се уверите, че е получено успешно"],"Error sending Pushalot notification":[null,"Грешка при изпращане на Pushalot уведомяване"],"Pushbullet notification succeeded. Check your device to make sure it worked":[null,"Успешно испращане на уведомление към Pushalot. Проверете вашето устройство, за да се уверите, че е получено успешно"],"Error sending Pushbullet notification":[null,"Грешка при изпращане на Pushover уведомяване"],"Status":[null,"Статус"],"Restarting SickRage":[null,"Рестартиране на SickRage"],"Update Failed":[null,"Неуспешно актуализиране"],"Update wasn't successful, not restarting. Check your log for more information.":[null,"Актуализацията не беше успешна, няма да рестартира. Разгледайте регистрационния log файл за повече информация."],"Checking out branch":[null,"Проверка на branch"],"Already on branch":[null,"Вече се използва този branch"],"Invalid show ID: {show}":[null,"Невалиден ID на сериал: {show}"],"Show not in show list":[null,"Сериалът не е в списъка със сериали"],"Edit":[null,"Редактирай"],"This show is in the process of being downloaded - the info below is incomplete.":[null,"Това предаване е в процес на изтегляне - информацията по-долу е непълна."],"The information on this page is in the process of being updated.":[null,"Информацията на тази страница е в процес на обновяване."],"The episodes below are currently being refreshed from disk":[null,"Епизодите по-долу в момента се обновяват от диска"],"Currently downloading subtitles for this show":[null,"В момента се изтеглят субтитри за това предаване"],"This show is queued to be refreshed.":[null,"Това предаване е в опашката за обновяване."],"This show is queued and awaiting an update.":[null,"Това предаване е в опашка и изчаква обновяване."],"This show is queued and awaiting subtitles download.":[null,"Това предаване е в опашка и изчаква изтегляне на субтитри."],"Resume":[null,"Възобнови"],"Pause":[null,"Пауза"],"Remove":[null,"Премахни"],"Re-scan files":[null,"Ново сканиране за файлове"],"Force Full Update":[null,"Изпълни пълно актуализиране"],"Update show in KODI":[null,"Актуализирай в KODI"],"Update show in Emby":[null,"Актуализирай в Emby"],"Hide specials":[null,"Скрий специалните епизоди"],"Show specials":[null,"Покажи специалните епизоди"],"Preview Rename":[null,"Преглед на преименуването"],"Download Subtitles":[null,"Изтегляне на субтитри"],"No scene exceptions":[null,"Няма алтернативни имена"],"Invalid show ID":[null,"Невалиден ID за предаване"],"Unable to find the specified show":[null,"Не е намерено търсеното предаване"],"Unable to retreive Fansub Groups from AniDB.":[null,"Не може да изтеглите Fansub групи от AniDB."],"Edit Show":[null,"Редактиране на шоуто"],"Unable to refresh this show: {error}":[null,"Не може да се обнови информацията за тоза предаване: {error}"],"New location <tt>{location}</tt> does not exist":[null,"Ново местоположение <tt>{location}</tt> не съществува"],"Unable to update show: {error}":[null,"Неуспешна актуализация на сериал: {error}"],"Unable to force an update on scene exceptions of the show.":[null,"Неуспешна принудителна актуализация на предаване чрез аналогичните имена (scene exceptions)."],"Unable to force an update on scene numbering of the show.":[null,"Неуспешна принудителна актуализация на номерирането по сцена за предаване."],"{num_errors:d} error{plural} while saving changes:":[null,"{num_errors:d} error{plural} при запазването на промените:"],"{show_name} has been {paused_resumed}":[null,"{show_name} беше {paused_resumed}"],"resumed":[null,"възобновен"],"paused":[null,"в пауза"],"{show_name} has been {deleted_trashed} {was_deleted}":[null,"{show_name} беше {deleted_trashed} {was_deleted}"],"deleted":[null,"изтрит"],"trashed":[null,"изхвърлен"],"(media untouched)":[null,"(файловете ще са непроменени)"],"(with all related media)":[null,"(с всички свързани файлове)"],"Unable to refresh this show.":[null,"Не може да се обнови този сериал."],"Unable to update this show.":[null,"Не може да актуализира този сериал."],"Library update command sent to KODI host(s)): {kodi_hosts}":[null,"Изпратена е команда за обновяване на библиотеката в KODI на адрес(и): {kodi_hosts}"],"Unable to contact one or more KODI host(s)): {kodi_hosts}":[null,"Неуспешно свързване с един или повече адреси на KODI: {kodi_hosts}"],"Library update command sent to Plex Media Server host: {plex_server}":[null,"Изпратена е команда за обновяване на библиотеката в Plex Media Server на адрес(и): {plex_server}"],"Unable to contact Plex Media Server host: {plex_server}":[null,"Неуспешно свързване с адрес на Plex Media Server: {plex_server}"],"Library update command sent to Emby host: {emby_host}":[null,"Изпратена е команда за обновяване на библиотеката в Emby на адрес: {emby_host}"],"Unable to contact Emby host: {emby_host}":[null,"не може да се свърже с Emby на адрес: {emby_host}"],"You must specify a show and at least one episode":[null,"Трябва да зададете предаване и поне един епизод"],"Invalid status":[null,"Невалиден статус"],"Backlog was automatically started for the following seasons of <b>{show_name}</b>":[null,"Backlog беше стартиран автоматично за следните сезони на <b>{show_name}</b>"],"Season":[null,"Сезон"],"Backlog started":[null,"Backlog е стартиран"],"Retrying Search was automatically started for the following season of <b>{show_name}</b>":[null,"Повторен опит за търсене беше стартиран автоматично за следния сезон на <b>{show_name}</b>"],"Retry Search started":[null,"Започна повторно търсене"],"You must specify a show":[null,"Трябва да зададете предаване"],"Can't rename episodes when the show dir is missing.":[null,"Не може да преименува епизоди, когато липсва папка за предаването."],"New subtitles downloaded: {new_subtitle_languages}":[null,"Изтеглени са нови субтитри: {new_subtitle_languages}"],"No subtitles downloaded":[null,"Няма свалени субтитри"],"IRC":[null,"IRC"],"Could not load news from the repo. [Click here for news.md])({news_url})":[null,"Не може да зареди новини от източника (repo). [Кликнете тук за news.md]) ({news_url})"],"The was a problem connecting to github, please refresh and try again":[null,"Възникна проблем в свързването към github, Моля презаредете и опитайте отново"],"Could not load changes from the repo. [Click here for CHANGES.md]({changes_url})":[null,"Не може да зареди файла с промени от източника (repo). [Кликнете тук за CHANGES.md] ({changes_url})"],"Changelog":[null,"Списък с промени"],"Post Processing":[null,"Обработка"],"Add Shows":[null,"Добави предаване"],"No folders selected.":[null,"Няма избрани папки."],"New Show":[null,"Ново предаване"],"Trending Shows":[null,"Налагащи се сериали"],"Popular Shows":[null,"Популярни сериали"],"Most Anticipated Shows":[null,"Най-очакваните сериали"],"Most Collected Shows":[null,"Най-много събирани предавания"],"Most Watched Shows":[null,"Най-много гледани предавания"],"Most Played Shows":[null,"Най-много следени предавания"],"Recommended Shows":[null,"Препоръчани предавания"],"New Shows":[null,"Нови сериали"],"Season Premieres":[null,"Премиери на сезони"],"Existing Show":[null,"Съществуващ сериал"],"No root directories setup, please go back and add one.":[null,"Няма настроена root директория, моля да се върнете и да добавите една."],"Show added":[null,"Сериалът е добавен"],"Adding the specified show {show_name}":[null,"Добавяне на зададения сериал {show_name}"],"Missing params, no Indexer ID or folder: {show_to_add} and {root_dir}/{show_path}":[null,"Липсват параметри, няма Indexer ID или папка: {show_to_add} и {root_dir}/{show_path}"],"Unknown error. Unable to add show due to problem with show selection.":[null,"Неизвестна грешка. Сериалът не може да бъде добавен поради проблем изборът на сериал."],"Unable to add show":[null,"Сериалът не може да бъде добавен"],"Folder {show_dir} exists already":[null,"Вече съществува папка {show_dir}"],"Unable to create the folder {show_dir}, can't add the show":[null,"Не може да бъде създадена папката {show_dir}, сериалът не може да бъде добавен"],"Adding the specified show into {show_dir}":[null,"Добавяне на избрания сериал в {show_dir}"],"Shows Added":[null,"Довабени сериали"],"Automatically added {num_shows} from their existing metadata files":[null,"Автоматично бяха добавени {num_shows} от налични файлове с мета-информация"],"Mass Update":[null,"Цялостна актуализация"],"Episode Overview":[null,"Преглед на епизодите"],"Missing Subtitles":[null,"Липсващи субтитри"],"Backlog Overview":[null,"Преглед на Backlog"],"Mass Edit":[null,"Масово редактиране"],"Unable to update show: {excption_format}":[null,"Неуспешна актуализация на сериал: {excption_format}"],"Unable to refresh show {show_name}: {excption_format}":[null,"Неуспешно обновяване на сериалът {show_name}: {excption_format}"],"Errors encountered":[null,"Срещнати грешки"],"Updates":[null,"Актуализации"],"Refreshes":[null,"Опреснявания"],"Renames":[null,"Преименувания"],"Subtitles":[null,"Субтитри"],"The following actions were queued":[null,"Следните действия бяха добавени на опашката"],"For best results please set the Download Station alias as":[null,"За най-добри резултати моля задайте псевдоним на Станцията за изтегляне като"],"You can check this setting in the Synology DSM":[null,"Можете да проверите тази настройка в Synology DSM"],"Control Panel":[null,"Контролен Панел"],"Application Portal":[null,"Портал за приложения"],"Make sure you allow DSM to be embedded with iFrames too in":[null,"Не забравяйте да позволите DSM да бъдат вградени и в iFrames"],"DSM Settings":[null,"DSM настройки"],"Security":[null,"Сигурност"],"Manage Torrents":[null,"Управление на торенти"],"Failed Downloads":[null,"Неуспешни изтегляния"],"Manage Searches":[null,"Управление на търсенията"],"Backlog search started":[null,"Започна Backlog търсене"],"Daily search started":[null,"Започна ежедневно търсене"],"Find propers search started":[null,"Започна търсене на propers"],"Subtitle search started":[null,"Започна търсене за субтитри"],"Remove Selected":[null,"Премахни избраното"],"Clear History":[null,"Изчисти историята"],"Trim History":[null,"Съкрати историята"],"Selected history entries removed":[null,""],"History cleared":[null,"Историята е изчистена"],"Removed history entries older than 30 days":[null,"Премахни записи в историята, които са по-стари от 30 дни"],"General":[null,"Общи"],"Backup/Restore":[null,"Архивиране/Възстановяване"],"Search Settings":[null,"Настройки на търсенето"],"Search Providers":[null,"Доставчици на търсене"],"Subtitles Settings":[null,"Настройки на субтитри"],"Notifications":[null,"Известия"],"Anime":[null,"Аниме"],"SickRage Configuration":[null,"SickRage настройки"],"Config - Shares":[null,""],"Windows Shares Configuration":[null,""],"Saved Shares":[null,""],"Your Windows share settings have been saved":[null,""],"Config - General":[null,"Настройки - Общи"],"General Configuration":[null,"Основни настройки"],"Saved Defaults":[null,"Записани по подразбиране"],"Your \"add show\" defaults have been set to your current selections.":[null,"Вашият избор по подразбиране за \"Добави предаване\" са зададени на вашия текущ избор."],"Unable to create directory {directory}, log directory not changed.":[null,"Не може да се създаде директория {directory}, директорията за log файл не беше променена."],"Unable to create directory {directory}, https cert directory not changed.":[null,"Не може да се създаде директория {directory}, директорията с https сертификат не беше променена."],"Unable to create directory {directory}, https key directory not changed.":[null,"Не може да се създаде директория {directory}, директорията с https ключ не беше променена."],"Error(s) Saving Configuration":[null,"Грешка(и) при запаметяване на настройките"],"Configuration Saved":[null,"Настройките са запаметени"],"Config - Backup/Restore":[null,"Настройки - Архивиране/Възстановяване"],"Config - Episode Search":[null,"Настройки - Търсене на епизоди"],"Config - Post Processing":[null,"Настройки - Обработка"],"Unpacking Not Supported, disabling unpack setting":[null,"Разархивирането не се поддържа, деактивирани са съответните настройките"],"You tried saving an invalid normal naming config, not saving your naming settings":[null,""],"You tried saving an invalid anime naming config, not saving your naming settings":[null,"Вие се опитахте за запазите невалидна настройка за име на аниме, настройки за именуване не бяха запазени"],"Config - Providers":[null,"Настройка - Доставчици"],"No Provider Name specified":[null,"Не е зададено име за доставчик"],"No Provider Url specified":[null,"Не е зададен Url адрес за доставчик"],"No Provider Api key specified":[null,"Не е зададен Api ключ за доставчик"],"Config - Notifications":[null,"Настройка - Известия"],"Config - Subtitles":[null,"Настройки - субтитри"],"Config - Anime":[null,"Настройки - аниме"],"Clear Errors":[null,"Изчистване на грешки"],"Clear Warnings":[null,"Изчистване на предупреждения"],"Submit Errors":[null,"Подаване на грешки"],"Logs & Errors":[null,"Logs & грешки"],"Log File":[null,"Log File"],"Logs":[null,"Logs"],"This is a test notification from SickRage":[null,"Това е тестово съобщение от SickRage"],"Please fill out the necessary fields above.":[null,""],"This pattern is invalid.":[null,"Този модел е невалиден."],"This pattern would be invalid without the folders, using it will force \"Season Folders\" on for all shows.":[null,""],"This pattern is valid.":[null,"Този модел е валиден."],"Resume updating the log on this page.":[null,""],"Pause updating the log on this page.":[null,""],"You have reached this page by accident, please check the url.":[null,"Вие сте достигнали до тази страница по погрешка, моля проверете URL адреса."],"A mako error has occured.<br>\n If this happened during an update a simple page refresh may be the solution.<br>\n Mako errors that happen during updates may be a one time error if there were significant ui changes.":[null,"Възникна е грешка в Mako.<br>\n Ако това се е случило по време на актуализация, опресняване на страницата може да бъде решение на проблема.<br>\n Mako грешки, които се случват по време на актуализации може да бъдат еднократно събитие ако са настъпили значителни промени в потребителския интерфейс."],"Show/Hide Error":[null,"Показване/скриване на грешка"],"Add New Show":[null,"Добавяне на нов сериал"],"For shows that you haven't downloaded yet, this option finds a show on theTVDB.com, creates a directory for it's episodes, and adds it to SickRage.":[null,"За предавания, които не сте изтеглили все още, тази опция намира предаване от theTVDB.com, създава директория за епизодите и я добавя към SickRage."],"Add From Trakt Lists":[null,"Добави от Trakt списъци"],"For shows that you haven't downloaded yet, this option lets you choose from a show from one of the Trakt lists to add to SickRage.":[null,"За предавания, които не сте изтеглили все още, тази опция ви позволява да изберете предаване от един от списъците в Trakt, и го добавя към SickRage."],"Add From IMDB's Popular Shows":[null,"Добави популярни предавания от IMDB"],"View IMDB's list of the most popular shows. This feature uses IMDB's MOVIEMeter algorithm to identify popular TV Series.":[null,"Преглед на списъка от най-популярните предавания в IMDB. Тази възможност използва алгоритъм на IMDB MOVIEMeter за идентифициране на популярни Телевизионни сериали."],"Add Existing Shows":[null,"Добавяне на съществуващи сериали"],"Use this option to add shows that already have a folder created on your hard drive. SickRage will scan your existing metadata/episodes and add the show accordingly.":[null,"Използвайте тази опция, за да добавите предавания, за които вече има създадена папка на вашия твърд диск. SickRage ще сканира вашите съществуващи метаданни/епизоди и ще добавете съответното предаване."],"Add Existing Show":[null,"Добавяне на съществуващ сериал"],"Manage Directories":[null,"Управление на директории"],"Customize Options":[null,"Персонализиране на опции"],"SickRage can add existing shows, using the current options, by using locally stored NFO/XML metadata to eliminate user interaction. If you would rather have SickRage prompt you to customize each show, then use the checkbox below.":[null,"SickRage може да добави съществуващи предавания използвайки текущите опции, с помощта на локално съхранени NFO/XML мета-данни за пропускане на потребителското взаимодействие. Ако предпочитате SickRage да ви пита да персонализирате всяко отделно предаване, моля сложете отметка в квадратчето по-долу."],"Prompt me to set settings for each show":[null,"Питай ме да задам настройки за всеки отделен сериал"],"Displaying folders within these directories which aren't already added to SickRage":[null,"Показване на папки в рамките на тези директории, които не са добавени вече към SickRage"],"Submit":[null,"Изпрати"],"Find a show on theTVDB":[null,"Намерете сериал в theTVDB"],"Show retrieved from existing metadata":[null,"Сериал извлечен от съществуващите метаданни"],"All Indexers":[null,"Всички източници"],"Search":[null,"Търси"],"This will only affect the language of the retrieved metadata file contents and episode filenames.":[null,"Това ще повлияе само на езика на съдържанието на файла с извлечените метаданни и имена на епизоди."],"This <b>DOES NOT</b> allow SickRage to download non-english TV episodes!":[null,"Това <b>НЕ ПОЗВОЛЯВА</b> на SickRage да изтегля не-английски Телевизионни епизоди!"],"Pick the parent folder":[null,"Изберете родителската папка"],"Pre-chosen Destination Folder":[null,"Предварително избраната целева папка"],"Customize options":[null,"Персонализиране на опции"],"Add Show":[null,"Добави предаване"],"Skip Show":[null,"Спропусни предаване"],"Sort By":[null,"Сортирай по"],"Name":[null,"Име"],"Original":[null,"Произход"],"Votes":[null,"Гласове"],"Rating":[null,"Рейтинг"],"Rating > Votes":[null,"Рейтинг > Гласове"],"Sort Order":[null,"Ред на сортиране"],"Asc":[null,"Възходящо"],"Desc":[null,"Низходящо"],"Fetching of IMDB Data failed. Are you online?":[null,"Извличане на IMDB данни неуспешно. Дали сте онлайн?"],"Exception":[null,"Изключение"],"Select Trakt List":[null,"Изберете Trakt списък"],"Most Anticipated":[null,"Най-очакваните"],"Trending":[null,"Тенденции"],"Popular":[null,"Полулярни"],"Most Watched":[null,"Най-гледани"],"Most Played":[null,"Най-пускани"],"Most Collected":[null,"Най-много събирани"],"Recommended":[null,"Препоръчани"],"Toggle navigation":[null,"Превключи навигация"],"Profile":[null,"Профил"],"JSONP":[null,"JSONP"],"Back to SickRage":[null,"Обратно към SickRage"],"Parameters":[null,"Параметри"],"Required":[null,"Задължително"],"Description":[null,"Описание"],"Type":[null,"Тип"],"Default value":[null,"Стойност по подразбиране"],"Allowed values":[null,"Позволени стойности"],"Playground":[null,"Playground"],"Clear":[null,"Изчисти"],"Yes":[null,"да"],"No":[null,"Не"],"season":[null,"сезон"],"episode":[null,"епизод"],"Python Version":[null,"Python версия"],"SSL Version":[null,"SSL версия"],"OS":[null,"ОС"],"Locale":[null,"Език"],"User":[null,"Потребител"],"Program Folder":[null,"Програмна папка"],"Config File":[null,"Конфигурационен файл"],"Database File":[null,"Файл с база данни"],"Cache Folder":[null,"Папка за кеширане"],"Log Folder":[null,"Log папка"],"Arguments":[null,"Аргументи"],"Web Root":[null,"Web Root"],"Website":[null,"Уебсайт"],"Wiki":[null,"Wiki"],"Source":[null,"Source"],"IRC Chat":[null,"IRC чат"],"AnimeDB Settings":[null,"AnimeDB настройки"],"Look & Feel":[null,"Изглед & усещане"],"AniDB is non-profit database of anime information that is freely open to the public":[null,"AniDB е нестопанска база данни на аниме информация, която е свободно отворена за обществеността"],"Enable":[null,"Включи"],"should SickRage use data from AniDB?":[null,"трябва ли SickRage да използва данни от AniDB?"],"AniDB Username":[null,"AniDB потребителско име"],"username of your AniDB account":[null,"потребителско име на вашия AniDB акаунт"],"AniDB Password":[null,"AniDB парола"],"password of your AniDB account":[null,"парола на вашия AniDB акаунт"],"AniDB MyList":[null,"AniDB MyList"],"do you want to add the PostProcessed episodes to the MyList?":[null,"искате ли да добавите обработените епизоди към MyList?"],"Look and Feel":[null,"Изглед и усещане"],"How should the anime functions show and behave.":[null,"Визия и управление на аниме функциите."],"Split show lists":[null,"Разделен списък с предавания"],"separate anime and normal shows in groups":[null,"отдели аниме и нормалните предавания в групи"],"Split in tabs":[null,"Раздели в раздели"],"use tabs for when splitting show lists":[null,""],"Restore":[null,"Възстанови"],"Backup your main database file and config.":[null,"Архивиране на вашия файл с основната база данни и настройки."],"Select the folder you wish to save your backup file to":[null,"Изберете папката, в която желаете да запишете архивния файл"],"Restore your main database file and config.":[null,"Възстанови файлът с основната база данни и настройките."],"Select the backup file you wish to restore":[null,"Изберете архивния файл, който искате да възстановите"],"Misc":[null,"Разни"],"Interface":[null,"Интерфейс"],"Advanced Settings":[null,"Разширени настройки"],"Startup options. Indexer options. Log and show file locations.":[null,"Опции за стартиране. Опции за индексиране. Местоположенията на Log и файловете на предаванията."],"Some options may require a manual restart to take effect.":[null,"Някои настройки може да се нуждаят от ръчно рестартиране на SickRage, за да влязат в сила."],"Default Indexer Language":[null,"Език по подразбиране за индексатор"],"for adding shows and metadata providers":[null,"за добавяне на предавания и доставчици на метаданни"],"Launch browser":[null,"Стартиране на браузъра"],"open the SickRage home page on startup":[null,"отвори началната страница на SickRage при стартиране"],"Initial page":[null,"Начална страница"],"Shows":[null,"Предавания"],"when launching SickRage interface":[null,"при стартирането на SickRage интерфейс"],"Choose hour to update shows":[null,"Изберете час за актуализиране на предаванията"],"with information such as next air dates, show ended, etc. Use 15 for 3pm, 4 for 4am etc.":[null,"с информация относно следващите дати за излъчване, дата на приключване и др. Използвайте 15 за 3 часа следобяд, 4 за 4 часа сутринта и т.н."],"note":[null,"бележка"],"minutes are randomized each time SickRage is started":[null,"минути се избират произволно при всяко стартиране на SickRage"],"Send to trash for actions":[null,"Изпрати в кошчето за действия"],"when using show \"Remove\" and delete files":[null,"когато използвате \"Премахване\" на предаване и изтриване на файлове"],"on scheduled deletes of the oldest log files":[null,"планирано изтриване на най-старите Log файлове"],"selected actions use trash (recycle bin) instead of the default permanent delete":[null,"избраните действия използват trash (кошче) вместо по подразбиране постоянно изтриване"],"Log file folder location":[null,"Местоположение на папката с Log файл"],"Number of Log files saved":[null,"Брой записани Log файлове"],"number of log files saved when rotating logs (default: 5) (REQUIRES RESTART)":[null,"брой Log файлове, записани при въртене на файловете (по подразбиране: 5) (ИЗИСКВА СЕ РЕСТАРТИРАНЕ)"],"Size of Log files saved":[null,"Размер на записаните Log файлове"],"maximum size in MB of the log file (default: 1MB) (REQUIRES RESTART)":[null,"максималният размер в МБ на Log файл (по подразбиране: 1MB) (ИЗИСКВА СЕ РЕСТАРТИРАНЕ)"],"Use initial indexer set to":[null,"Задай първоначален индексатор да е"],"as the default selection when adding new shows":[null,"като избор по подразбиране когато се добавя ново предаване"],"Timeout show indexer at":[null,""],"seconds of inactivity when finding new shows (default:20)":[null,"секунди без действие при намиране на нови предавания (по подразбиране: 20)"],"Show root directories":[null,"Покажи root директории"],"where the files of shows are located":[null,"където се намират файловете на предавания"],"Save Changes":[null,"Запиши промените"],"Options for software updates.":[null,"Опции за софтуерни актуализации."],"Check software updates":[null,"Провери за обновяване"],"and display notifications when updates are available. Checks are run on startup and at the frequency set below*":[null,"и покажи съобщение при наличие на обновление. Проверките се задействат при стартиране и с избраната по-долу честота*"],"Automatically update":[null,"Автоматична актуализация"],"fetch and install software updates. Updates are run on startup and in the background at the frequency set below*":[null,"свали и инсталирай софтуерни актуализации. Процесът по актуализация да се задейства при стартиране и във фонов режим с честотата, определена по-долу *"],"Check the server every*":[null,"Проверете сървъра на всеки *"],"hours for software updates (default:1)":[null,"часа за софтуерни актуализации (по подразбиране:1)"],"Notify on software update":[null,"Уведоми за актуализация на софтуера"],"send a message to all enabled notifiers when SickRage has been updated":[null,"Изпрати съобщение до всички разрешени услуги за уведомление, когато SickRage е бил актуализиран"],"User Interface":[null,"Потребителски интерфейс"],"Options for visual appearance.":[null,"Опции за външния вид."],"Interface Language":[null,"Език на интерфейса"],"System Language":[null,"Системен език"],"for appearance to take effect, save then refresh your browser":[null,"за да влязат в сила промените, запишете и след това презаредете наново страницата"],"Display theme":[null,"Тема"],"Dark":[null,"Тъмна"],"Light":[null,"Светла"],"Use a background image":[null,"Използвай фоново изображение"],"use a custom image as background for SickRage":[null,"използвай на персонализирано изображение като фон за SickRage"],"Background Path":[null,"Папка на изображение за фон"],"Path to the background image":[null,"Път към фоново изображение"],"Show fanart in the background":[null,"Покажи fanart във фонов режим"],"on the show summary page":[null,"на страницата с обощението за сериала"],"Fanart transparency":[null,"Fanart прозрачност"],"transparency of the fanart in the background":[null,"прозрачност на fanart във фонов режим"],"Use a custom stylesheet file":[null,""],"use a custom .css file to style SickRage (for advanced users)":[null,""],"Stylesheet File Path":[null,""],"Path to the stylesheet (.css) file":[null,""],"Show all seasons":[null,"Покажи всички сезони"],"Sort with \"The\", \"A\", \"An\"":[null,"Сортиране с \"The\", \"A\", \"An\""],"include articles (\"The\", \"A\", \"An\") when sorting show lists":[null,"включва и (\"The\", \"A\", \"An\") при сортиране на списъци"],"Missed episodes range":[null,"Диапазон на пропуснати епизоди"],"set the range in days of the missed episodes in the Schedule page":[null,"задайте диапазона в дни на пропуснати епизоди в страницата с графика"],"Display fuzzy dates":[null,"Показване на неясни дати"],"move absolute dates into tooltips and display e.g. \"Last Thu\", \"On Tue\"":[null,"премести абсолютна дати в пояснения и покажете например \"посл. Четв.\", \"в Четв.\""],"Trim zero padding":[null,"Премахни нулата"],"remove the leading number \"0\" shown on hour of day, and date of month":[null,"премахни \"0\" от показваните час от деня, и ден от месеца"],"Date style":[null,"Стил на дата"],"Use System Default":[null,"Настройка по подразбиране"],"Time style":[null,"Стил на час"],"seconds are only shown on the History page":[null,"секундите са показват само на страницата с история"],"Timezone":[null,"Часовата зона"],"Local":[null,"Локално"],"Network":[null,"ТВ Мрежа"],"display dates and times in either your timezone or the shows network timezone":[null,"показвай на дати и часове във вашата часовата зона или оригиналната часовата зона на излъчване"],"use local timezone to start searching for episodes minutes after show ends (depends on your dailysearch frequency)":[null,"използвайте местната часова зона за да започне търсенето на епизоди минути след излъчването на серията (зависи от вашите настройки за честота на дневно търсене)"],"Download url":[null,"Изтегляне url"],"URL where the shows can be downloaded.":[null,"URL адрес, от където предаванията могат да бъдат изтеглени."],"Web Interface":[null,"Уеб интерфейс"],"it is recommended that you enable a username and password to secure SickRage from being tampered with remotely.":[null,"препоръчително е да зададете потребителско име и парола, за да се защитите SickRage от дистанционно посегателство."],"these options require a manual restart to take effect.":[null,"тези настройки изискват ръчно рестартиране, за да влязат в сила."],"API key":[null,"API ключ"],"used to give 3rd party programs limited access to SickRage":[null,"използван за даване на ограничен достъп до SickRage на външни програми"],"you can try all the features of the API":[null,"Можете да тествате всички функции на API"],"here":[null,"тук"],"HTTP logs":[null,"HTTP logs"],"enable logs from the internal Tornado web server":[null,"разреши log от вградения Tornado уеб сървър"],"HTTP username":[null,"HTTP потребителско име"],"set blank for no login":[null,"задайте празно за ограничение на влизането"],"HTTP password":[null,"HTTP парола"],"blank = no authentication":[null,"празен = няма удостоверяване"],"HTTP port":[null,"HTTP порт"],"web port to browse and access SickRage (default:8081)":[null,"уеб порт за разглеждате и достъп до SickRage (по подразбиране:8081)"],"Notify on login":[null,"Уведоми при вход"],"enable to be notified when a new login happens in webserver":[null,"активирайте за да бъдете уведомявани, когато се осъществи нов вход в уеб сървъра"],"Listen on IPv6":[null,"Слушайте на IPv6"],"attempt binding to any available IPv6 address":[null,"опит за свързване с всеки наличен IPv6 адрес"],"Enable HTTPS":[null,"Активирате на HTTPS"],"enable access to the web interface using a HTTPS address":[null,"разрешаване на достъп до уеб интерфейсът с помощта на HTTPS адрес"],"HTTPS certificate":[null,"HTTPS сертификат"],"file name or path to HTTPS certificate":[null,"името на файла или път към HTTPS сертификат"],"HTTPS key":[null,"HTTPS ключ"],"file name or path to HTTPS key":[null,"името на файла или път към HTTPS ключ"],"Reverse proxy headers":[null,"Reverse proxy headers"],"accept the following reverse proxy headers (advanced)...":[null,"приемай следните reverse proxy headers (за напреднали)..."],"(X-Forwarded-For, X-Forwarded-Host, and X-Forwarded-Proto)":[null,"(X-Forwarded-For, X-Forwarded-Host, and X-Forwarded-Proto)"],"CPU throttling":[null,"CPU ограничение"],"Normal (default). High is lower and Low is higher CPU use":[null,"Нормален (по подразбиране). Висок е по-ниско и Нисък е по-високо натоварване на CPU"],"Anonymous redirect":[null,"Анонимно пренасочване"],"backlink protection via anonymizer service, must end in \"?\"":[null,"backlink защита чрез услуга за анонимност, трябва да завършва с \"?\""],"Enable debug":[null,"Активирай debug режим"],"enable debug logs":[null,"разрешаване debug logs"],"Verify SSL Certs":[null,"Проверка на SSL сертификати"],"verify SSL Certificates (Disable this for broken SSL installs (Like QNAP))":[null,"проверка на SSL сертификати (забрани при счупена SSL инсталация (като QNAP))"],"No Restart":[null,"Без рестартиране"],"only shutdown when restarting SR":[null,"само спирай напълно кога рестартира SR"],"only select this when you have external software restarting SR automatically when it stops (like FireDaemon)":[null,"изберете това само, когато имате външен софтуер, който рестартира SR автоматично, когато той спре (като FireDaemon)"],"Encrypt passwords":[null,"Шифроване на паролите"],"in the <code>config.ini</code> file":[null,"в файла <code>config.ini</code>"],"warning":[null,"внимание"],"passwords must only contain":[null,"паролите трябва да съдържат само"],"ASCII characters":[null,"ASCII знаци"],"Unprotected calendar":[null,"Незащитен календар"],"allow subscribing to the calendar without user and password":[null,"позволи абониране за календара без потребителско име и парола"],"some services like Google Calendar only work this way":[null,"някои услуги като Google Календар работят само по този начин"],"Google Calendar Icons":[null,"Google Календар икони"],"show an icon next to exported calendar events in Google Calendar":[null,"покажи икона до експортираните календарни събития в Google Календар"],"Proxy host":[null,"Прокси хост"],"blank to disable or proxy to use when connecting to providers":[null,"празно за деактивиране, или прокси сървър, който да се използва при свързване към доставчици"],"also use global proxy setting for indexers (tvdb, xem, anidb, etc.)":[null,"също така използвай глобални прокси настройки за индексаторите (tvdb, xem, anidb и др.)"],"Skip Remove Detection":[null,"Пропусни откриването на премахнати"],"skip detection of removed files":[null,"пропусни откриване на премахнати файлове"],"if disabled the episode will be set to the default deleted status":[null,""],"Default deleted episode status":[null,"Статус по подразбиране на изтрити епизоди"],"define the status to be set for media file that has been deleted.":[null,"задаване на статус, който да бъде зададен, за вече изтрити медийни файлове."],"Archived option will keep previous downloaded quality":[null,"Избира за архивиране ще запази прешното изтеглено качество"],"example: Downloaded (1080p WEB-DL) ==> Archived (1080p WEB-DL)":[null,"пример: Изтеглен (1080p WEB-DL) ==> Архивиран (1080p WEB-DL)"],"Options for github related features.":[null,"Опции за github свързани функции."],"Branch version":[null,"Версия на branch"],"error: No branches found.":[null,"грешка: Няма намерени branch."],"select branch to use (restart required)":[null,"избор на използван клон (branch) (изисква се рестартиране)"],"Authorization Type":[null,"Тип на удостоверяване"],"Username and password":[null,"Потребителско име и парола"],"Personal access token":[null,""],"You must use a personal access token if you're using \"two-factor authentication\" on GitHub.":[null,""],"GitHub username":[null,"GitHub потребителско име"],"*** (REQUIRED FOR SUBMITTING ISSUES) ***":[null,"*** (ИЗИСКВА СЕ ЗА ПОДАВАНЕ НА СИГНАЛИ ЗА ПРОБЛЕМИ) ***"],"GitHub password":[null,"GitHub парола"],"GitHub personal access token":[null,""],"Generate Token":[null,""],"Manage Tokens":[null,""],"GitHub remote for branch":[null,"GitHub дистанционен достъп до клон"],"access repo configured remotes (save then refresh browser)":[null,"настроен дистанционен достъп на repo (запазете и презаредете броузъра)"],"default":[null,"по подразбиране"],"origin":[null,"произход"],"Git executable path":[null,"Git път до изпълнимия файл"],"only needed if OS is unable to locate git from env":[null,"необходим е само ако OС не може да локализира git в системата"],"Git reset":[null,"Git нулиране"],"removes untracked files and performs a hard reset on git branch automatically to help resolve update issues":[null,""],"Home Theater / NAS":[null,"Home Theater / NAS"],"Devices":[null,"Устройства"],"Social":[null,"Социални"],"A free and open source cross-platform media center and home entertainment system software with a 10-foot user interface designed for the living-room TV.":[null,""],"send KODI commands?":[null,"изпрати KODI команди?"],"Always on":[null,"Винаги вкл."],"log errors when unreachable?":[null,"регистъра грешки при недостъпност?"],"Notify on snatch":[null,"Уведомяване при намиране"],"send a notification when a download starts?":[null,"изпрати уведомление, когато започне изтеглянето?"],"Notify on download":[null,"Уведомяване при изтегляне"],"send a notification when a download finishes?":[null,"изпрати уведомление, когато изтеглянето завърши?"],"Notify on subtitle download":[null,"Уведомяване при изтегляне на субтитри"],"send a notification when subtitles are downloaded?":[null,"изпрати уведомление, когато субтитрите са изтеглени?"],"Update library":[null,"Актуализирай библиотеката"],"update KODI library when a download finishes?":[null,"актуализира библиотеката на KODI когато изтеглянето завърши?"],"Full library update":[null,"Пълна актуализация на библиотеката"],"perform a full library update if update per-show fails?":[null,"извършите пълна актуализация на библиотека, ако обновяванто на отделни сериали пропадне?"],"Only update first host":[null,"Актуализация само на първия адрес"],"only send library updates to the first active host?":[null,"изпрти актуализация на библиотеката само на първия активен хост?"],"KODI IP:Port":[null,"KODI IP: порт"],"host running KODI (eg. 192.168.1.100:8080)":[null,"адрес с активен KODI (напр. 192.168.1.100:8080)"],"(multiple host strings must be separated by commas)":[null,"(множество адреси трябва да бъдат разделени със запетаи)"],"Username":[null,"Потребител"],"username for your KODI server (blank for none)":[null,"потребителско име за вашия KODI сървър (празен за без)"],"Password":[null,"Парола"],"password for your KODI server (blank for none)":[null,"парола за вашия KODI сървър (празен за без)"],"Click below to test.":[null,"Щракнете по-долу, за да тествате."],"Experience your media on a visually stunning, easy to use interface on your Mac connected to your TV. Your media library has never looked this good!":[null,"Изживейте вашата медия по визуално зашеметяващ начин, с лесен за използване интерфейс на вашия Mac, свързан към вашия Телевизор. Вашата медийна библиотека никога не е изглеждала толкова добре!"],"For sending notifications to Plex Home Theater (PHT) clients, use the KODI notifier with port <b>3005</b>.":[null,"За изпращане на уведомления до Plex Home Theater (PHT) клиенти, използвайте KODI нотификатор с порт <b>3005</b>."],"send Plex Media Server library updates?":[null,"Да изпраща ли заявки за актуализация на библиотеката на Plex Media Server?"],"Plex Media Server Auth Token":[null,"Plex Media Server Auth Token"],"auth token used by Plex":[null,"auth token използван от plex"],"Update Library":[null,"Актуализирай библиотека"],"update Plex Media Server library when a download finishes":[null,"актуализирай библиотеката на Plex Media Server, когато изтеглянето завърши"],"Plex Media Server IP:Port":[null,"Plex Media Server IP:Port"],"one or more hosts running Plex Media Server<br/>(eg. 192.168.1.1:32400, 192.168.1.2:32400)":[null,"един или повече адреси с работещ Plex Media Server<br/>(напр. 192.168.1.1:32400, 192.168.1.2:32400)"],"HTTPS":[null,"HTTPS"],"use https for plex media server requests?":[null,"използване на https за заявки към plex media server?"],"Click below to test Plex Media Server(s)":[null,"Натиснете долу, за да тествате Plex Media Server(s)"],"Test Plex Media Server":[null,"Тествай Plex Media Server"],"Plex Home Theater":[null,"Plex Home Theater"],"send Plex Home Theater notifications?":[null,"Да изпраща ли уведомления до Plex Home Theater?"],"Plex Home Theater IP:Port":[null,"Plex Home Theater IP:Port"],"one or more hosts running Plex Home Theater<br>(eg. 192.168.1.100:3000, 192.168.1.101:3000)":[null,"един или повече адреси с работещ Plex Home Theater<br>(напр. 192.168.1.100:3000, 192.168.1.101:3000)"],"Click below to test Plex Home Theater(s)":[null,"Натиснете долу, за да тествате Plex Home Theater(s)"],"Test Plex Home Theater":[null,"Тествай Plex Home Theater"],"some Plex Home Theaters <b class=\"boldest\">do not</b> support notifications e.g. Plexapp for Samsung TVs":[null,"забележка: някои Plex Home Theaters <b class=\"boldest\">не</b> поддържат известия, например Plex за телевизори Samsung"],"Emby":[null,"Emby"],"A home media server built using other popular open source technologies.":[null,"Домашен медия сървър изграден с помощта на други популярни технологии с отворен код."],"send update commands to Emby?":[null,"изпрати команда за актуализация към Emby?"],"Emby IP:Port":[null,"Emby IP: порт"],"host running Emby (eg. 192.168.1.100:8096)":[null,"адресс активен Emby (напр. 192.168.1.100:8096)"],"Emby API Key":[null,"Emby API ключ"],"Networked Media Jukebox":[null,"Мрежов Media Jukebox"],"The Networked Media Jukebox, or NMJ, is the official media jukebox interface made available for the Popcorn Hour 200-series.":[null,"Мрежовия Media Jukebox, или NMJ, е официален медиен джубокс интерфейс предоставен за серия Popcorn Hour 200."],"send update commands to NMJ?":[null,"изпрати команда за актуализация към NMJ?"],"Popcorn IP address":[null,"Popcorn IP адрес"],"IP address of Popcorn 200-series (eg. 192.168.1.100)":[null,"IP адрес на серия Popcorn 200 (напр. 192.168.1.100)"],"Get settings":[null,"Получи настройки"],"Get Settings":[null,"Получи настройки"],"the Popcorn Hour device must be powered on and NMJ running.":[null,"Устройството Popcorn Hour трябва да бъде включено и NMJ да работи."],"NMJ database":[null,"NMJ база данни"],"automatically filled via the 'Get Settings' button.":[null,"автоматично попълнени чрез бутона \"Получи настройки\"."],"NMJ mount url":[null,"NMJ mount url"],"Networked Media Jukebox v2":[null,"Мрежов Media Jukebox v2"],"The Networked Media Jukebox, or NMJv2, is the official media jukebox interface made available for the Popcorn Hour 300 & 400-series.":[null,"Мрежовия Media Jukebox v2, или NMJv2, е официален медиен джубокс интерфейс предоставен за серии Popcorn Hour 300 и 400."],"send update commands to NMJv2?":[null,"изпрати команда за актуализация към NMJv2?"],"IP address of Popcorn 300/400-series (eg. 192.168.1.100)":[null,"IP адрес на серия Popcorn 300/400 (напр. 192.168.1.100)"],"Database location":[null,"Database местоположение"],"Database instance":[null,"Database instance"],"adjust this value if the wrong database is selected.":[null,"применете тази стойност, ако е избрана погрешна база данни."],"Find database":[null,"Намери база данни"],"Find Database":[null,"Намери база данни"],"the Popcorn Hour device must be powered on.":[null,"устройството Popcorn Hour трябва да бъде включено."],"NMJv2 database":[null,"NMJv2 база данни"],"automatically filled via the 'Find Database' buttons.":[null,"автоматично попълнени чрез бутона \"Намери базата данни\"."],"Synology":[null,"Synology"],"The Synology DiskStation NAS.":[null,"Synology DiskStation NAS."],"Synology Indexer is the daemon running on the Synology NAS to build its media database.":[null,"Synology индексатор е демон, активен на Synology NAS за изграждане на своята мултимедийна база данни."],"send Synology notifications?":[null,"изпрати Synology уведомления?"],"requires SickRage to be running on your Synology NAS.":[null,"изисква SickRage да работи на вашия Synology NAS."],"Synology Indexer":[null,"Synology индексатор"],"Synology Notifier is the notification system of Synology DSM":[null,"Synology Notifier е системата за уведомяване на Synology DSM"],"send notifications to the Synology Notifier?":[null,"изпращане на известия до уведомителя Synology?"],"pyTivo":[null,"pyTivo"],"pyTivo is both an HMO and GoBack server. This notifier will load the completed downloads to your Tivo.":[null,"pyTivo е едновременно HMO и GoBack сървър. Този нотификатор ще зареди завършените изтегляния на вашия Tivo."],"send notifications to pyTivo?":[null,"изпрати известия към pyTivo?"],"requires the downloaded files to be accessible by pyTivo.":[null,"изисква изтеглените файлове да бъдат достъпни от pyTivo."],"pyTivo IP:Port":[null,"pyTivo IP:Port"],"host running pyTivo (eg. 192.168.1.1:9032)":[null,"адрес с активен pyTivo (напр. 192.168.1.1:9032)"],"pyTivo share name":[null,"pyTivo име на споделянето"],"value used in pyTivo Web Configuration to name the share.":[null,"стойност, използвана в pyTivo уеб конфигурацията за име на споделяне."],"Tivo name":[null,"TiVo име"],"(Messages & Settings > Account & System Information > System Information > DVR name)":[null,"(Messages & Settings > Account & System Information > System Information > DVR name)"],"Growl":[null,"Growl"],"A cross-platform unobtrusive global notification system.":[null,"Крос-платформена ненатрапчива глобална система за уведомяване."],"send Growl notifications?":[null,"изпращане на Growl уведомления?"],"Growl IP:Port":[null,"Growl IP: порт"],"host running Growl (eg. 192.168.1.100:23053)":[null,"адрес с активен Growl (напр. 192.168.1.100:23053)"],"may leave blank if SickRage is on the same host.":[null,"може да оставите празно, ако SickRage е на същия хост."],"otherwise Growl <b>requires</b> a password to be used.":[null,""],"Click below to register and test Growl, this is required for Growl notifications to work.":[null,""],"Register Growl":[null,"Регистрирай Growl"],"Prowl":[null,"Prowl"],"A Growl client for iOS.":[null,"Growl клиент за iOS."],"send Prowl notifications?":[null,"изпращане на Prowl уведомления?"],"Prowl Message Title":[null,"Заглавие на съобщение за Prowl"],"Global Prowl API key(s)":[null,"Глобални Prowl API ключ(ове)"],"Prowl API(s) listed here, separated by commas if applicable, will<br> receive notifications for <b>all</b> shows. Your Prowl API key is available at:":[null,""],"(this field may be blank except when testing.)":[null,"(това поле може да бъде празно, освен когато тествате.)"],"Show notification list":[null,"Списък с предавания за известяване"],"-- Select a Show --":[null,"-- Избери предаване --"],"Configure per-show notifications here by entering Prowl API key(s), separated by commas, '\n 'after selecting a show in the drop-down box. Be sure to activate the 'Save for this show' '\n 'button below after each entry.":[null,""],"Save for this show":[null,"Запази за това предаване"],"Prowl priority":[null,"Prowl приоритет"],"Very Low":[null,"Много нисък"],"Moderate":[null,"Умерен"],"Normal":[null,"Нормален"],"High":[null,"Висок"],"Emergency":[null,"Авариен режим"],"priority of Prowl messages from SickRage.":[null,"приоритет на Prowl съобщения от SickRage."],"Libnotify":[null,"Libnotify"],"The standard desktop notification API for Linux/*nix systems. This notifier will only function if the pynotify module is installed (Ubuntu/Debian package <a href=\"apt:python-notify\">python-notify</a>).":[null,"Стандартното АPI за десктоп уведомления за Linux/*nix системи. Този нотификатор ще функционира само ако модулът pynotify е инсталиран (Ubuntu/Debian пакет <a href=\"apt:python-notify\">python-notify</a>)."],"send Libnotify notifications?":[null,"изпрати Libnotify уведомления?"],"Pushover":[null,"Pushover"],"Pushover makes it easy to send real-time notifications to your Android and iOS devices.":[null,"Pushover прави лесно изпращането в реално време на известия към вашите Android и iOS устройства."],"send Pushover notifications?":[null,"изпрати Pushover уведомления?"],"Pushover key":[null,"Pushover ключ"],"user key of your Pushover account":[null,"потребител ключ на Pushover акаунт"],"Pushover API key":[null,"Pushover API ключ"],"click here":[null,""]," to create a Pushover API key":[null,""],"Pushover devices":[null,"Pushover устройства"],"comma separated list of pushover devices you want to send notifications to":[null,"списък на pushover устройствата, разделени със запетая, до които искате да изпратите известия"],"Pushover notification sound":[null,"Pushover звук за съобщаване"],"Bike":[null,"Bike"],"Bugle":[null,"Bugle"],"Cash Register":[null,"Cash Register"],"Classical":[null,"Classical"],"Cosmic":[null,"Cosmic"],"Falling":[null,"Falling"],"Gamelan":[null,"Gamelan"],"Incoming":[null,"Incoming"],"Intermission":[null,"Intermission"],"Magic":[null,"Magic"],"Mechanical":[null,"Mechanical"],"Piano Bar":[null,"Piano Bar"],"Siren":[null,"Siren"],"Space Alarm":[null,"Space Alarm"],"Tug Boat":[null,"Tug Boat"],"Alien Alarm (long)":[null,"Alien Alarm (long)"],"Climb (long)":[null,"Climb (long)"],"Persistent (long)":[null,"Persistent (long)"],"Pushover Echo (long)":[null,"Pushover Echo (long)"],"Up Down (long)":[null,"Up Down (long)"],"None (silent)":[null,"None (silent)"],"Device specific":[null,"Специфично за устройството"],"choose notification sound to use":[null,"изберете звук за уведомяване"],"Pushover priority":[null,"Pushover приоритет"],"Choose priority to use":[null,"Изберете приоритет за използване"],"Boxcar 2":[null,"Boxcar 2"],"Read your messages where and when you want them!":[null,"Четете съобщенията където и когато си искате!"],"send Boxcar notifications?":[null,"изпращане на Boxcar уведомления?"],"Boxcar2 access token":[null,"Boxcar2 token за достъп"],"access token for your Boxcar account.":[null,"token за достъп за вашия Boxcar акаунт."],"NMA":[null,"NMA"],"Notify My Android":[null,"Уведоми моя Андроид"],"Notify My Android is a Prowl-like Android App and API that offers an easy way to send notifications from your application directly to your Android device.":[null,"Уведоми че моят Андроид е Prowl-подобно приложение за Андроид и е с API, който предлага лесен начин за изпращане на уведомления от вашето приложение директно на вашето Андроид устройство."],"send NMA notifications?":[null,"изпращане на NMA уведомления?"],"NMA API key":[null,"NMA API ключ"],"(multiple keys must be separated by commas, up to a maximum of 5)":[null,"(повече от един ключове трябва да бъдат разделени със запетаи, максимум до 5)"],"NMA priority":[null,"NMA приоритет"],"priority of NMA messages from SickRage.":[null,"приоритет на NMA съобщения от SickRage."],"Pushalot":[null,"Pushalot"],"Pushalot is a platform for receiving custom push notifications to connected devices running Windows Phone or Windows 8.":[null,"Pushalot е платформа за получаване на потребителски уведомления на свързани устройства, работещи с Windows Phone или Windows 8."],"send Pushalot notifications ?":[null,"изпрати Pushalot уведомления?"],"Pushalot authorization token":[null,"Pushalot token за удостоверяване"],"authorization token of your Pushalot account.":[null,"token за удостоверяване на вашия Pushalot профил."],"Pushbullet":[null,"Pushbullet"],"Pushbullet is a platform for receiving custom push notifications to connected devices running Android/iOS and desktop browsers such as Chrome, Firefox or Opera.":[null,"Pushbullet е платформа за получаване на потребителски уведомления на свързани устройства с Андроид/iOS и десктоп браузъри като Chrome, Firefox или Opera."],"send Pushbullet notifications?":[null,"изпрати Pushbullet уведомления?"],"Pushbullet API key":[null,"Pushbullet API ключ"],"API key of your Pushbullet account":[null,"API ключ на вашия акаунт на Pushbullet"],"Pushbullet devices":[null,"Pushbullet устройства"],"Update device list":[null,"Акт. на списъка с устройства"],"Pushbullet channels":[null,"Pushbullet канали"],"Free Mobile":[null,"Free Mobile"],"Free Mobile is a famous French cellular network provider.<br> It provides to their customer a free SMS API.":[null,"Free Mobile е известен френски GSM мрежов оператор.<br> Той осигурява на своите клиенти безплатен SMS API."],"send SMS notifications?":[null,"изпращане на SMS уведомления?"],"send a SMS when a download starts?":[null,"изпрати SMS, когато започне изтеглянето?"],"send a SMS when a download finishes?":[null,"изпрати SMS, когато изтеглянето завърши?"],"send a SMS when subtitles are downloaded?":[null,"изпрати SMS, когато се изтеглят субтитри?"],"Free Mobile customer ID":[null,"Free Mobile клиентско ID"],"it's your Free Mobile customer ID (8 digits)":[null,"това е вашето Free Mobile клиентско ID (8 цифри)"],"Free Mobile API key":[null,"Free Mobile API ключ"],"find your API key in your customer portal.":[null,"намерете вашия API ключ във вашия клиентски портал."],"Click below to test your settings.":[null,"Щракнете по-долу, за да тествате настройките."],"Telegram":[null,"Telegram"],"Telegram is a cloud-based instant messaging service.":[null,"Telegram е базирана на облак услугата за съобщения."],"send Telegram notifications?":[null,"изпрати Telegram уведомления?"],"send a message when a download starts?":[null,"изпращане на съобщение, когато започне изтеглянето?"],"send a message when a download finishes?":[null,"изпращане на съобщение, когато изтеглянето завърши?"],"send a message when subtitles are downloaded?":[null,"изпращане на съобщение, когато се изтеглят субтитри?"],"User/group ID":[null,"Потребител/Група ID"],"contact @myidbot on Telegram to get an ID":[null,"свържете се с @myidbot в Telegram за да получите ID"],"Bot API token":[null,"Bot API token"],"contact @BotFather on Telegram to set up one":[null,"свържете се с @BotFather в Telegram за да създадете нов"],"Join":[null,"Join"],"Join all of your devices together!":[null,"Присъединете заедно всички ваши устройства!"],"send Join notifications?":[null,"изпращане на Join уведомления?"],"Device ID":[null,"Ид. № на устройство"],"per device specific id":[null,"на специфично id на устройство"]," to create a Join API key":[null,""],"Twilio":[null,"Twilio"],"Twilio is a webservice API that allows you to communicate directly with a mobile number. This notifier will send a text directly to your mobile device.":[null,"Twilio е API уеб услуга, която ви позволява да комуникира директно с мобилен номер. Този уведомител ще изпрати текст директно към вашето мобилно устройство."],"should SickRage text your mobile device?":[null,"да изпраща ли SickRage текст към мобилното ви устройство?"],"Twilio Account SID":[null,"Twilio Account SID"],"account SID of your Twilio account.":[null,"SID на акаунта в Twilio."],"Twilio Auth Token":[null,"Twilio Auth Token"],"Twilio Phone SID":[null,"Twilio телефонен SID"],"phone SID that you would like to send the sms from":[null,"телефонен SID, от който желаете да изпращате sms"],"Your phone number":[null,"Моят телефонен номер"],"phone number that will receive the sms. Please use the format +1-###-###-####":[null,"телефонен номер, който ще получава sms. Моля използвайте формата +1-###-###-####"],"Twitter":[null,"Twitter"],"A social networking and microblogging service, enabling its users to send and read other users' messages called tweets.":[null,""],"should SickRage post tweets on Twitter?":[null,"трябва да SickRage да публикува tweets в Twitter?"],"you may want to use a secondary account.":[null,"препоръчително е използването на втори акаунт."],"send direct message":[null,"изпрати директно съобщение"],"send a notification via Direct Message, not via status update":[null,"изпрати уведомление чрез директно съобщение (ДС) вместо чрез актуализиране на състоянието"],"send DM to":[null,"изпрати ДС на"],"Twitter account to send Direct Messages to (must follow you)":[null,"Twitter акаунт към който да изпращате директни съобщения (трябва да ви следва)"],"Step One":[null,"Първа стъпка"],"Request Authorization":[null,"Искане за разрешение"],"Click the \"Request Authorization\" button.<br> This will open a new page containing an auth key.<br> <b>note:</b> if nothing happens check your popup blocker.":[null,""],"Step Two":[null,"Втора стъпка"],"Enter the key Twitter gave you below, and click \"Verify Key\".":[null,""],"Trakt":[null,"Trakt"],"Trakt helps keep a record of what TV shows and movies you are watching. Based on your favorites, Trakt recommends additional shows and movies you'll enjoy!":[null,""],"send Trakt.tv notifications?":[null,"изпращане на Trakt.tv уведомления?"],"username of your Trakt account.":[null,"потребителското име на вашия Trakt акаунт."],"Trakt PIN":[null,"Trakt PIN"],"Get Trakt PIN":[null,"Вземи Trakt PIN"],"PIN code to authorize SickRage to access Trakt on your behalf.":[null,"ПИН код за разрешаване на SickRage за достъп до Trakt от ваше име."],"API Timeout":[null,"API Timeout"],"seconds to wait for Trakt API to respond. (Use 0 to wait forever)":[null,""],"Default indexer":[null,"Индексатор по подразбиране"],"Sync libraries":[null,"Синхронизиране на библиотеки"],"sync your SickRage show library with your trakt show library.":[null,"синхронизира предаванията от SickRage библиотеката с trakt библиотеката."],"Remove Episodes From Collection":[null,"Премахване на епизоди от колекция"],"remove an episode from your Trakt Collection if it is not in your SickRage Library.":[null,"премахване на епизод от колекция в Trakt, ако не е във вашата SickRage библиотека."],"Sync watchlist":[null,"Синхронизиране на гледаните"],"sync your SickRage show watchlist with your trakt show watchlist (either Show and Episode).":[null,""],"episode will be added on watch list when wanted or snatched and will be removed when downloaded ":[null,""],"Watchlist add method":[null,"Метод за добавяне към спъск на гледаните"],"Skip All":[null,"Пропусни всички"],"Download Pilot Only":[null,"Изтегли само пилотен епизод"],"Get whole show":[null,"Получи цялото шоу"],"method in which to download episodes for new shows.":[null,"метод, при който да изтеглите епизоди за нови предавания."],"Remove episode":[null,"Премахване на епизод"],"remove an episode from your watchlist after it is downloaded.":[null,""],"Remove series":[null,"Премахване на сезон"],"remove the whole series from your watchlist after any download.":[null,""],"Remove watched show":[null,"Премахване на гледаното предаване"],"remove the show from sickrage if it's ended and completely watched":[null,""],"Start paused":[null,"Стартиране на изчакващите"],"shows grabbed from your trakt watchlist start paused.":[null,""],"Trakt blackList name":[null,"Име на черен списък в Trakt"],"name (slug) of list on Trakt for blacklisting show on 'Add Trending Show' & 'Add Recommended Shows' pages":[null,""],"Email":[null,"Email"],"Allows configuration of email notifications on a per show basis.":[null,"Позволи настройване на имейл съобщения за отделни предавания."],"send email notifications?":[null,"изпращане на email уведомления?"],"SMTP host":[null,"SMTP хост"],"hostname of your SMTP email server.":[null,"адрес на вашия SMTP пощенски сървър."],"SMTP port":[null,"SMTP порт"],"port number used to connect to your SMTP host.":[null,"номер на порта, използван за свързване към вашия SMTP сървър."],"SMTP from":[null,"SMTP от"],"sender email address, some hosts require a real address.":[null,"имейл адрес на подателя, някои сървъри изискват реален адрес."],"Use TLS":[null,"Вкл. TLS"],"check to use TLS encryption.":[null,"изберете за използване на TLS кодиране."],"SMTP user":[null,"SMTP потребител"],"(optional) your SMTP server username.":[null,"(по избор) потребителското име за SMTP сървър."],"SMTP password":[null,"SMTP парола"],"(optional) your SMTP server password.":[null,"(по избор) парола за SMTP сървър."],"Global email list":[null,"Глобален имейл списък"],"email addresses listed here, separated by commas if applicable, will<br> receive notifications for <b>all</b> shows.":[null,"Изброените имейл адреси, ако е приложимо разделени с запетаи, ще<br> получават известия за <b>всички</b> предавания."],"(This field may be blank except when testing.)":[null,"(Това поле може да бъде празно, освен когато тествате.)"],"Email Subject":[null,"Email заглавие"],"use a custom subject for some privacy protection?":[null,"използване на заглавие по избор за ваша собствена защита?"],"(leave blank for the default SickRage subject)":[null,"(Оставете празно за SickRage заглавие по подразбиране)"],"configure per-show notifications here by entering email address(es), separated by commas,":[null,"конфигуриране на съобщаване за отделни предавания чрез въвеждането на имейл адреси, разделени с запетаи,"],"after selecting a show in the drop-down box. Be sure to activate the 'Save for this show'":[null,"след като изберете предаване от падащото меню. Изберете задължително бутона \"Запази за това предаване\""],"button below after each entry.":[null,"бутона отдолу за всеки избор."],"Slack":[null,"Slack"],"Slack brings all your communication together in one place. It's real-time messaging, archiving and search for modern teams.":[null,""],"should SickRage post messages on Slack?":[null,""],"Slack Incoming Webhook":[null,""],"Discord":[null,"Discord"],"All-in-one voice and text chat for gamers that's free, secure, and works on both your desktop and phone.":[null,""],"Should SickRage post messages on Discord?":[null,""],"Discord Incoming Webhook":[null,""],"Create webhook under channel settings.":[null,""],"Discord Bot Name":[null,""],"Blank will use webhook default Name.":[null,""],"Discord Avatar URL":[null,""],"Blank will use webhook default Avatar.":[null,""],"Discord TTS":[null,""],"Send notifications using text-to-speech":[null,""],"Post-Processing":[null,"Последващата обработка"],"Episode Naming":[null,"Именуване на епизод"],"Metadata":[null,"Метаданни"],"Settings that dictate how SickRage should process completed downloads.":[null,"Настройки, които инструктурат SickRage как трябва да обработва завършените изтегляния."],"enable the automatic post processor to scan and process any files in your Post Processing Dir":[null,"разреши автоматичната обработка на медия да сканира и обработва всички файлове във вашата Папка за обработка"],"do not use if you use an external Post Processing script":[null,""],"Post Processing Dir":[null,"Папка за последваща обработка"],"the folder where your download client puts the completed TV downloads.":[null,""],"please use seperate downloading and completed folders in your download client if possible.":[null,""],"Processing Method":[null,"Метод за обработка"],"what method should be used to put files into the library?":[null,""],"if you keep seeding torrents after they finish, please avoid the 'move' processing method to prevent errors.":[null,""],"Auto Post-Processing Frequency":[null,"Честота за автоматична последваща обработка"],"time in minutes to check for new files to auto post-process (min 10)":[null,""],"Postpone post processing":[null,"Отложи последващата обработка"],"wait to process a folder if sync files are present.":[null,"изчакай с обработката на папка докато са налични sync файлове."],"Sync File Extensions":[null,"Синхронизиране файлови разширения"],"comma seperated list of extensions or filename globs SickRage ignores when Post Processing":[null,"списък на разширения или части от имена, разделени с запетая, които SickRage да игнорира при последващата обработка"],"Rename Episodes":[null,"Преименуване на епизоди"],"rename episode using the Episode Naming settings?":[null,"преименувай епизодите спрямо настройките за Преименуване на епизоди?"],"Create missing show directories":[null,"Създай липсващите папки на предавания"],"create missing show directories when they get deleted":[null,""],"Add shows without directory":[null,"Добави предавания без папка"],"add shows without creating a directory (not recommended)":[null,"добави предавания без да създаваш папки (не е препоръчително)"],"Move associated files":[null,""],"move associated (srt/srr/sfv/etc) files while post processing?":[null,""],"Rename .nfo file":[null,"Преименуване на файл NFO"],"rename the original .nfo file to .nfo-orig to avoid conflicts?":[null,"преименуване на оригиналния файл NFO в. NFO-orig да се избегнат конфликти?"],"Associated file extensions":[null,""],"comma separated list of associated file extensions SickRage should keep while post processing.":[null,""],"leaving it empty means no associated files will be post processed":[null,""],"Delete non associated files":[null,""],"delete non associated files while post processing?":[null,""],"Change File Date":[null,"Промяна дата на файла"],"set last modified filedate to the date that the episode aired?":[null,"да задам ли дата на последна промяна на файла да е датата на излъчване на епизода?"],"some systems may ignore this feature.":[null,"някои системи могат да игнорират тази функция."],"Timezone for File Date":[null,"Часова зона за дата на файла"],"local":[null,"локално"],"network":[null,"тв мрежа"],"what timezone should be used to change File Date?":[null,"коя часовата зона трябва да се използва за промяна датата на файлът?"],"Unpack":[null,"Разархивирай"],"What to do with archived releases found in your <i>TV Download Dir</i>?":[null,""],"Ignore (do not process contents)":[null,""],"Unpack (process contents)":[null,""],"Treat as video (process archive as-is)":[null,""],"'Unpack' only works with RAR archives":[null,""],"Windows":[null,"Windows"],"WinRar is required on windows":[null,"WinRar е необходимо на windows"],"Unpack Directory":[null,""],"Choose a path to unpack files, leave blank to unpack in download dir":[null,""],"Unrar Location":[null,"Местоположение на Unrar"],"add the path to unrar if it is not in the system path":[null,"добавете на път към unrar, ако не е в системния път"],"Alternate Unrar Tool":[null,"Алтернативен Unrar инструмент"],"add the path to an alternate unrar tool if it is not in the system path":[null,"добавете на път към алтернативен unrar, ако не е в системния път"],"Delete RAR contents":[null,"Изтриване съдържанието на RAR"],"delete content of RAR files, even if Process Method not set to move?":[null,"изтриване съдържанието на RAR файловете, дори ако мотод на обработка не е зададен на преместване?"],"only working with RAR archive":[null,"работи само с RAR архив"],"Don't delete empty folders":[null,"Не изтривай празни папки"],"leave empty folders when Post Processing?":[null,"остави празни папки след последваща обработка?"],"can be overridden using manual Post Processing":[null,"може да се бъде презаписан използвайки ръчна последваща обработка"],"Follow symbolic-links":[null,""],"follow down symbolic links in download directory?":[null,""],"<b>EXPERTS ONLY.</b><br>Enable only if you know what <b>circular symbolic links</b> are,<br>and can <b>verify that you have none</b>.":[null,""],"Use icacls":[null,"Използвай icacls"],"Windows only":[null,"само Windows"],"sets video permissions after using the move method in post processing":[null,"задава права на видео файлове след използване преместване като метод за последваща обработка"],"Extra Scripts":[null,"Допълнителни скриптове"],"see":[null,"виж"],"for script arguments description and usage.":[null,"за описание на аргументите и начина на използване на скриптове."],"How SickRage will name and sort your episodes.":[null,"Как SickRage ще именува и сортира вашите епизоди."],"Name Pattern":[null,"Структура на имената"],"Toggle Naming Legend":[null,""],"don't forget to add quality pattern. Otherwise after post-processing the episode will have UNKNOWN quality":[null,""],"Meaning":[null,""],"Pattern":[null,"Модел"],"Result":[null,"Резултат"],"Use lower case if you want lower case names (eg. %sn, %e.n, %q_n etc)":[null,""],"Show Name":[null,"Име на предаване"],"Show.Name":[null,"Име.Предаване"],"Show_Name":[null,"Предаване_Име"],"Season Number":[null,"Сезон номер"],"XEM Season Number":[null,"XEM номер на сезон"],"Episode Number":[null,"Епизод номер"],"XEM Episode Number":[null,"XEM номер на епизод"],"Episode Name":[null,"Епизод име"],"Episode.Name":[null,"Епизод.име"],"Episode_Name":[null,"Епизод_име"],"Air Date":[null,"Дата излъчване"],"Post-Processing Date":[null,"Дата на обработка"],"Quality":[null,"Качество"],"Scene Quality":[null,"Качество на сцена"],"Release Name":[null,"Име на издаване"],"SickRage' is used in place of RLSGROUP if it could not be properly detected":[null,""],"Release Group":[null,"Release група"],"If episode is proper/repack add 'proper' to name.":[null,""],"Release Type":[null,"Тип на изданието"],"Multi-Episode Style":[null,"Стил на мулти-епизод"],"Single-EP Sample":[null,"Пример за единичен епизод"],"Multi-EP sample":[null,"Пример за мулти-епизод"],"Strip Show Year":[null,"Пропусни годината на предаването"],"remove the TV show's year when renaming the file?":[null,"премахване на годината на предаване при преименуването на файла?"],"only applies to shows that have year inside parentheses":[null,"отнася се само за предаванията, които имат година в скоби"],"Custom Air-By-Date":[null,"Потребителски По-дата-на-излъчване"],"name air-by-date shows differently than regular shows?":[null,"именувай предаванията По-дата-на-излъчване по различен начин от редовните предавания?"],"Toggle ABD Naming Legend":[null,""],"Regular Air Date":[null,"Редовна дата на излъчване"],"Year":[null,"Година"],"Month":[null,"Месец"],"Day":[null,"Ден"],"Multi-EP style is ignored":[null,"Игнориран е стилът за мулти-епизоди"],"Custom Sports":[null,"Персонализиран спорт"],"name sports shows differently than regular shows?":[null,"именувай спортните предавания по различен начин от редовните предавания?"],"Toggle Sports Naming Legend":[null,""],"Sports Air Date":[null,"Спортни - дата на излъчване"],"Custom Anime":[null,"Персонализирано аниме"],"name anime shows differently than regular shows?":[null,"именувай аниме предаванията по различен начин от редовните предавания?"],"Toggle Anime Naming Legend":[null,""],">XEM Season Number":[null,">XEM номер на сезон"],"Single-EP Anime Sample":[null,"Пример за единичен аниме епизод"],"Multi-EP Anime sample":[null,"Пример за мулти-епизод на аниме"],"Add Absolute Number":[null,"Добавяне на абсолютно число"],"add the absolute number to the season/episode format?":[null,"добавяне на абсолютно число към формат за сезон/епизод?"],"only applies to anime. (eg. S15E45 - 310 vs S15E45)":[null,""],"Only Absolute Number":[null,"Само абсолютен номер"],"replace season/episode format with absolute number":[null,"замести формат на сезон/епизод с абсолютно число"],"only applies to anime.":[null,""],"No Absolute Number":[null,"Без абсолютен номер"],"don't include the absolute number":[null,"не включвай абсолютен номер"],"The data associated to the data. These are files associated to a TV show in the form of images and text that, when supported, will enhance the viewing experience.":[null,""],"Metadata Type":[null,"Тип на метаданни"],"toggle metadata options that you wish to be created":[null,""],"multiple targets may be used":[null,""],"Select Metadata":[null,"Изберете метаданни"],"Provider Priorities":[null,"Приоритет за доставчик"],"Provider Options":[null,"Опции за доставчик"],"Configure Custom Newznab Providers":[null,"Конфигуриране на потребителски Newznab доставчици"],"Configure Custom Torrent Providers":[null,"Конфигуриране на потребителски торент доставчици"],"Check off and drag the providers into the order you want them to be used.":[null,"Отмятате и плъзнете доставчиците в реда, който искате да се използват."],"At least one provider is required but two are recommended.":[null,"Поне един доставчик е задължителен, но два са препоръчителни."],"Torrent providers can be toggled in ":[null,"Торент търсенето може да се активира в "],"Provider does not support backlog searches at this time.":[null,"Доставчикът все още не поддържа backlog търсене."],"Provider is <b>NOT WORKING</b>.":[null,"Доставчикът <b>НЕ РАБОТИ</b>."],"Configure individual provider settings here.":[null,"Конфигурирайте тук индивидуални настройки за доставчик."],"Check with provider's website on how to obtain an API key if needed.":[null,"Проверете страницата на доставчика за да научите ако е необходимо как да получите API ключ."],"Configure provider":[null,"Настройки на доставчик"],"no providers available to configure.":[null,"няма налични доставчици за настройване."],"URL":[null,"URL"],"Enable daily searches":[null,"Разреши ежедневно търсене"],"enable provider to perform daily searches.":[null,"разреши доставчик да изпълнява ежедневни търсения."],"Enable backlog searches":[null,"Разреши backlog търсене"],"enable provider to perform backlog searches.":[null,"разреши доставчик да изпълнява backlog търсения."],"Season search mode":[null,"Режим за търсене на сезони"],"when searching for complete seasons you can choose to have it look for season packs only, or choose to have it build a complete season from just single episodes.":[null,""],"season packs only.":[null,"само цели пакети на сезони."],"episodes only.":[null,"само епизоди."],"Enable fallback":[null,"Разреши fallback"],"when searching for a complete season depending on search mode you may return no results, this helps by restarting the search using the opposite search mode.":[null,""],"Custom URL":[null,"Потребителски URL"],"the URL should include the protocol (and port if applicable). Examples: http://192.168.1.4/ or http://localhost:3000/":[null,"URL адресът трябва да включва протокол (и порт, ако е приложимо). Примери: http://192.168.1.4/ или http://localhost:3000/"],"Api key":[null,"Api ключ"],"Digest":[null,"Digest"],"Hash":[null,"Хеш"],"Passkey":[null,"Секретен ключ"],"Cookies":[null,"„Бисквитки“"],"example: uid=1234;pass=567845439634987<br>note: uid and pass are not your username/password.<br>use DevTools or Firebug to get these values after logging in on your browser.":[null,""],"Pin":[null,"ПИН"],"Seed ratio":[null,"Съотношение за споделяне"],"stop transfer when ratio is reached<br>(-1 SickRage default to seed forever, or leave blank for downloader default)":[null,""],"Minimum seeders":[null,"Най-малко източници"],"Minimum leechers":[null,"Най-малко теглещи"],"Confirmed download":[null,"Потвърдено изтегляне"],"only download torrents from trusted or verified uploaders ?":[null,"само изтегляне от надеждни или проверени източници?"],"Ranked torrents":[null,"Класирани торенти"],"only download ranked torrents (trusted releases)":[null,"само изтегляне от класирани торенти (доверени версии)"],"English torrents":[null,"Торенти на английски"],"only download english torrents, or torrents containing english subtitles":[null,""],"For Spanish torrents":[null,"Само торенти на испански"],"ONLY search on this provider if show info is defined as \"Spanish\" (avoid provider's use for VOS shows)":[null,""],"Sorting results by":[null,"Сортиране на резултатите по"],"Freeleech":[null,"Freeleech"],"only download <b>\"FreeLeech\"</b> torrents.":[null,"изтегляй само <b>\"FreeLeech\"</b> торенти."],"Category":[null,"Категория"],"select torrent with Italian subtitle":[null,"избери торент с италиански субтитри"],"Configure Custom<br>Newznab Providers":[null,"Конфигуриране на потребителски<br>Newznab доставчици"],"Add and setup or remove custom Newznab providers.":[null,"Добавяне и настройка или премахване на потребителски Newznab доставчици."],"Select provider":[null,"Изберете доставчик"],"-- add new provider --":[null,"--добавяне на нов доставчик--"],"Provider name":[null,"Име на доставчик"],"Site URL":[null,"URL на сайта"],"Newznab search categories":[null,"Newznab категории на търсене"],"select your Newznab categories on the left, and click the \"update categories\" button to use them for searching.) <b>don't forget to to save the form!":[null,""],"Update Categories":[null,"Актуализиране на категории"],"Add":[null,"Добави"],"Delete":[null,"Изтрий"],"Add and setup or remove custom RSS providers.":[null,"Добавяне и настройка или премахване на потребителски RSS доставчици."],"RSS URL":[null,"RSS URL"],"Search element":[null,"Търсене на елемент"],"eg: title":[null,"напр.: заглавие"],"Episode Search":[null,"Търсене на епизод"],"NZB Search":[null,"NZB търсене"],"Torrent Search":[null,"Търсене на торент"],"How to manage searching with":[null,"Как да се управлява търсенето чрез"],"Randomize Providers":[null,"Произволен доставчик"],"randomize the provider search order instead of going in order of placement":[null,"използвай произволен ред на доставчик за търсене, вместо да става по реда на подредба"],"Download propers":[null,"Изтегляне на propers"],"replace original download with \"Proper\" or \"Repack\" if nuked":[null,"замени първоначалното изтегляне с \"Proper\" или \"Repack\" ако е наличен"],"Check propers every":[null,"Проверете за propers на всеки"],"24 hours":[null,"24 часа"],"4 hours":[null,"4 часа"],"90 mins":[null,"90 мин"],"45 mins":[null,"45 мин"],"15 mins":[null,"15 мин"],"Backlog search day(s)":[null,"Дни за Backlog търсене"],"number of day(s) that the \"Forced Backlog Search\" will cover (e.g. 7 Days)":[null,"броят на дните, които \"Принудително Backlog търсене\" ще покрива (например 7 дни)"],"Backlog search frequency":[null,"Честота на backlog търсене"],"time in minutes between searches (min.":[null,"времето в минути между търсения (мин."],"Daily search frequency":[null,"Честота на ежедневно търсене"],"Usenet retention":[null,"Usenet retention"],"age limit in days for usenet articles to be used (e.g. 500)":[null,"възрастова граница в дни за usenet статии, които да се използват (например 500)"],"Ignore words":[null,"Игнорирани думи"],"results with one or more word from this list will be ignored<br>separate words with a comma, e.g. \"word1,word2,word3\"":[null,""],"Require words":[null,"Задължителни думи"],"results with no word from this list will be ignored<br>separate words with a comma, e.g. \"word1,word2,word3\"":[null,""],"Trackers list":[null,"Списък на тракери"],"trackers that will be added to magnets without trackers<br>separate trackers with a comma, e.g. \"tracker1,tracker2,tracker3\"":[null,""],"Ignore language names in subbed results":[null,"Пренебрегвай следните езици за резултати с вграден превод"],"ignore subbed releases based on language names <br>\n Example: \"dk\" will ignore words: dksub, dksubs, dksubbed, dksubed <br>\n separate languages with a comma, e.g. \"lang1,lang2,lang3":[null,""],"Allow high priority":[null,"Позволи висок приоритет"],"set downloads of recently aired episodes to high priority":[null,""],"Use Failed Downloads":[null,"Използвай Неуспешни изтегляния"],"use Failed Download Handling?":[null,""],"will only work with snatched/downloaded episodes after enabling this":[null,""],"Delete Failed":[null,"Изтриване не е успешните"],"delete files left over from a failed download?":[null,"изтриване на файловете, останали след неуспешно изтегляне?"],"this only works if Use Failed Downloads is enabled.":[null,"това работи само ако е разрешено използването на неуспешно сваляне."],"How to handle NZB search results.":[null,"Как да обработва NZB резултатите от търсенето."],"Search NZBs":[null,"Търси NZBs"],"enable NZB search providers":[null,"разреши NZB доставчици за търсене"],"Send .nzb files to":[null,"Изпрати .nzb файлове към"],"SABnzbd server URL":[null,"SABnzbd URL адрес на сървъра"],"URL to your SABnzbd server (e.g. http://localhost:8080/)":[null,"URL към вашия SABnzbd сървър (например http://Localhost: 8080 /)"],"SABnzbd username":[null,"SABnzbd потребителско име"],"(blank for none)":[null,"(празно за без)"],"SABnzbd password":[null,"SABnzbd парола"],"SABnzbd API key":[null,"SABnzbd API ключ"],"locate at... SABnzbd Config -> General -> API Key":[null,"намерете в... SABnzbd Config -> General -> API Key"],"Use SABnzbd category":[null,"Използвай SABnzbd категория"],"add downloads to this category (e.g. TV)":[null,"добавяне на файлове към тази категория (например TV)"],"Use SABnzbd category (backlog episodes)":[null,"Използвай SABnzbd категория (backlog епизоди)"],"add downloads of old episodes to this category (e.g. TV)":[null,"добавяне на стари файлове към тази категория (например TV)"],"Use SABnzbd category for anime":[null,"Използвай SABnzbd категория за аниме"],"add anime downloads to this category (e.g. anime)":[null,"добавяне на аниме файлове към тази категория (например anime)"],"Use SABnzbd category for anime (backlog episodes)":[null,"Използвай SABnzbd категория за аниме (backlog епизоди)"],"add anime downloads of old episodes to this category (e.g. anime)":[null,"добавяне на стари аниме файлове към тази категория (например anime)"],"Use forced priority":[null,"Използвайте принудителен приоритет"],"enable to change priority from HIGH to FORCED":[null,"разреши за промяна на приоритет от ВИСОК на ПРИНУДИТЕЛЕН"],"Black hole folder location":[null,"Местоположение на папката с Black hole"],"<b>.nzb</b> files are stored at this location for external software to find and use":[null,"<b>.nzb</b> файловете се съхраняват на това място за намеране и използване от външен софтуер"],"Connect using HTTPS":[null,"Свързвай се чрез HTTPS"],"enable Secure control in NZBGet and set the correct Secure Port here":[null,""],"NZBget host:port":[null,"NZBget host:port"],"(e.g. localhost:6789)":[null,"(например localhost:6789)"],"NZBget RPC host name and port number (not NZBgetweb!)":[null,""],"NZBget username":[null,"NZBget потребителско име"],"locate in nzbget.conf (default:nzbget)":[null,"намерете в nzbget.conf (default:nzbget)"],"NZBget password":[null,"NZBget парола"],"locate in nzbget.conf (default:tegbzn6789)":[null,"намерете в nzbget.conf (default:tegbzn6789)"],"Use NZBget category":[null,"Използвай NZBget категория"],"send downloads marked this category (e.g. TV)":[null,"изпрати на файлове маркирани към тази категория (например TV)"],"Use NZBget category (backlog episodes)":[null,"Използвай NZBget категория (backlog епизоди)"],"send downloads of old episodes marked this category (e.g. TV)":[null,"добавяне на стари файлове маркирани към тази категория (например TV)"],"Use NZBget category for anime":[null,"Използвай NZBget категория за аниме"],"send anime downloads marked this category (e.g. anime)":[null,"добавяне на аниме файлове маркирани към тази категория (например anime)"],"Use NZBget category for anime (backlog episodes)":[null,"Използвай NZBget категория за аниме (backlog епизоди)"],"send anime downloads of old episodes marked this category (e.g. anime)":[null,"добавяне на стари аниме файлове маркирани към тази категория (например anime)"],"NZBget priority":[null,"NZBget приоритет"],"Very low":[null,"Много нисък"],"Low":[null,"Нисък"],"Very high":[null,"Много висок"],"Force":[null,"Наложи"],"priority for daily snatches (no backlog)":[null,"приоритет за намерени ежедневно (не backlog)"],"Torrent host:port":[null,"Торент адрес:порт"],"URL to your Synology DSM (e.g. http://localhost:5000/)":[null,"URL към вашия Synology DSM (например http://localhost:5000/)"],"Client username":[null,"Потребителско име за клиент"],"Client password":[null,"Парола за клиент"],"Downloaded files location":[null,"Местоположение на изтеглените файлове"],"where Synology Download Station will save downloaded files (blank for client default)":[null,""],"the destination has to be a shared folder for Synology DS":[null,"местоназначението трябва да бъде споделена папка за Synology DS"],"Click below to test":[null,"Щракнете по-долу, за да тествате"],"How to handle Torrent search results.":[null,"Как да обработва торент резултатите от търсенето."],"Search torrents":[null,"Търсене на торенти"],"enable torrent search providers":[null,"включи доставчиците за търсене на торент"],"Send .torrent files to":[null,"Изпрати .torrent файлове към"],"<b>.torrent</b> files are stored at this location for external software to find and use":[null,"<b>.torrent</b> файловете се съхраняват на това място за намеране и използване от външен софтуер"],"URL to your torrent client (e.g. http://localhost:8000/)":[null,"URL на вашия торент клиент (например http://localhost:8000/)"],"Torrent RPC URL":[null,"Torrent RPC URL"],"the path without leading and trailing slashes (e.g. transmission)":[null,"път без водещи и крайни наклонени черти (например transmission)"],"Http Authentication":[null,"Http удостоверяване"],"Verify certificate":[null,"Провери сертификат"],"disable if you get \"Deluge: Authentication Error\" in your log":[null,"изключете ако получавате \"Deluge: Authentication Error\" грешка в регистъра за събития (log)"],"verify SSL certificates for HTTPS requests":[null,"провери SSL сертификати за HTTPS заявки"],"Add label to torrent":[null,"Добави етикет към торент"],"(blank spaces are not allowed)":[null,"(интервалите не са позволени)"],"label plugin must be enabled in Deluge clients":[null,"label plugin трябва да бъде разрешен в Deluge клиентите"],"for QBitTorrent 3.3.1 and up":[null,"за QBitTorrent 3.3.1 и нагоре"],"Add label to torrent for anime":[null,"Добави етикет към аниме торент"],"for QBitTorrent 3.3.1 and up ":[null,"за QBitTorrent 3.3.1 и нагоре "],"where <span id=\"torrent_client\">the torrent client</span> will save downloaded files (blank for client default)":[null,"където <span id=\"torrent_client\">торент клиент</span> ще запазва изтеглените файлове (празно за настройка по подразбиране в клиента)"],"the destination has to be a shared folder for Synology DS</span>":[null,"местоназначението трябва да бъде споделена папка за Synology DS</span>"],"Minimum seeding time":[null,"Минимално време за споделяне"],"time in hours":[null,"време в часове"],"(default:'0' passes blank to client and '-1' passes nothing)":[null,"(по подразбиране: '0' задава празно към клиента, а \"-1\" не задава нищо)"],"Start torrent paused":[null,"Стартирай торента като изчакващ"],"add .torrent to client but do <b style=\"font-weight:900\">not</b> start downloading":[null,"добави .torrent към клиента, но <b style=\"font-weight:900\">не</b> започвай изтегляне"],"Allow high bandwidth":[null,"Позволи висока сорост"],"use high bandwidth allocation if priority is high":[null,"използвай максимална скорост ако е с висок приоритет"],"Test Connection":[null,"Тест на връзка"],"Windows Shares":[null,""],"Defines your existing windows shares so that we can add them to the browse dialog":[null,""],"Share #{number}":[null,""],"Share label":[null,""],"Hostname or IP":[null,""],"Share path":[null,""],"Subtitles Search":[null,"Търсене на субтитри"],"Subtitles Plugin":[null,"Субтитри плъгин"],"Plugin Settings":[null,"Плъгин настройки"],"Settings that dictate how SickRage handles subtitles search results.":[null,"Настройки, които управляват това, как SickRage обработва резултатите от търсене на субтитри."],"Search Subtitles":[null,"Търсене на субтитри"],"Subtitle Languages":[null,"Езици за субтитрите"],"Subtitle Directory":[null,"Директория на субтитрите"],"the directory where SickRage should store your <i>Subtitles</i> files.":[null,"папката, в която SickRage трябва да съхранявате вашите файлове със <i>субтитри</i>."],"leave empty if you want store subtitle in episode path.":[null,"оставете празно, ако желаете субтитрите да бъдат запазвани в папката с епизода."],"Subtitle Find Frequency":[null,"Честота за търсене на субтитри"],"time in hours between scans (default: 1)":[null,"времето в часове между всяко сканиране (по подразбиране: 1)"],"Include Specials":[null,""],"include the show's specials when searching for subtitles?":[null,""],"Perfect matches":[null,"Идеални съвпадения"],"only download subtitles that match: release group, video codec, audio codec and resolution":[null,"изтегляне само на субтитри, които съвпадат с: публикуваща група, видео кодек, аудио кодек и резолюция"],"if disabled you may get out of sync subtitles":[null,"ако е изключено може да получавате не-синхронизирани субтитри"],"Subtitles History":[null,"История на субтитри"],"log downloaded Subtitle on History page?":[null,"регистрирай изтеглените субтитри на страницата с история?"],"Subtitles Multi-Language":[null,"Субтитри на повече езици"],"append language codes to subtitle filenames?":[null,"добавяне на езиковите кодове към имената на файлове със субтитри?"],"this option is required if you use multiple subtitle languages":[null,"тази опция се задължителна, ако използвате повече от един език за субтитри"],"Delete unwanted subtitles":[null,"Изтриване на нежелани субтитри"],"enable to delete unwanted subtitle languages bundled with release":[null,"разреши за да се изтриват прикачените субтитри на нежелан език"],"Embedded Subtitles":[null,"Вградени субтитри"],"ignore subtitles embedded inside video file?":[null,"игнорирай субтитри вградени в самия видео файл?"],"this will ignore <u>all</u> embedded subtitles for every video file!":[null,"това ще игнорира <u>всички</u> вградени субтитри за всеки видео файл!"],"Hearing Impaired Subtitles":[null,"Субтитри за увреден слух"],"download hearing impaired style subtitles?":[null,"изтегляне на субтитри в стил подходящ за хора с нарушен слух?"],"See":[null,"Посетете"],"for a script arguments description.":[null,"за описание на аргументите на скрипт."],"Additional scripts separated by <b>|</b>.":[null,"Допълнителни скриптове, разделени от <b>|</b>."],"Scripts are called after each episode has searched and downloaded subtitles.":[null,"Скриптове се изпълняват след като за всеки епизод са потърсени и изтеглени субтитри."],"For any scripted languages, include the interpreter executable before the script. See the following example":[null,""],"For Windows:":[null,"За Windows:"],"For Linux / OS X:":[null,"За Linux / OS X:"],"Subtitle Providers":[null,"Доставчици на субтитри"],"Check off and drag the plugins into the order you want them to be used.":[null,"Отмятате и плъзнете добавките в реда, който искате да се използват."],"At least one plugin is required.":[null,"Най-малко един плъгин е необходим."]," Web-scraping plugin":[null,""],"Provider Settings":[null,"Настройки на доставчика"],"Set user and password for each provider":[null,"Задаване на потребител и парола за всеки доставчик"],"User Name":[null,"Потребителско име"],"Change Show":[null,"Избор на предаване"],"Prev Show":[null,"Предишен сериал"],"Next Show":[null,"Следващ сериал"],"Jump to Season":[null,"Направо към сезон"],"Specials":[null,"Специални"],"Poster for":[null,""],"Stars":[null,"Звезди"],"minutes":[null,"минути"],"View other popular {genre} shows on trakt.tv.":[null,"Разгледай други популярни {genre} предавания в trakt.tv."],"View other popular {imdbgenre} shows on IMDB.":[null,"Разгледай други популярни {imdbgenre} предавания в IMDB."],"Allowed":[null,"Разрешено"],"Preferred":[null,"Предпочитан"],"Originally Airs":[null,"Първоначално излъчен"],"Show Status":[null,"Статус на предаване"],"Default EP Status":[null,"Статус на сериал по подразбиране"],"Location":[null,"Местоположение"],"Missing":[null,"Липсващ"],"Scene Name":[null,"Име на сцена"],"Required Words":[null,"Задължителни думи"],"Ignored Words":[null,"Игнорирани думи"],"Size":[null,"Размер"],"Info Language":[null,"Език на информация"],"Subtitles SR Metadata":[null,""],"Season Folders":[null,"Папки по сезони"],"Paused":[null,"В пауза"],"Air-by-Date":[null,"По дата на излъчване"],"Sports":[null,"Спорт"],"DVD Order":[null,"DVD ред"],"Scene Numbering":[null,"Номериране по сцена"],"Select Filtered Episodes":[null,"Изберете филтрирани епизоди"],"Clear All":[null,"Изчисти всички"],"Change selected episodes to":[null,"Промяна на избраните епизоди на"],"Select Columns":[null,"Избор на колони"],"Hide Episodes":[null,""],"Show Episodes":[null,"Епизоди на сериал"],"NFO":[null,"NFO"],"TBN":[null,"TBN"],"Episode":[null,"Епизод"],"Absolute":[null,"Абсолютни"],"Scene":[null,"Сцена"],"Scene Absolute":[null,""],"File Name":[null,"Име на файл"],"Airdate":[null,"Излъчен на"],"Download":[null,"Свали"],"Change the value here if scene numbering differs from the indexer episode numbering":[null,""],"Change the value here if scene absolute numbering differs from the indexer absolute numbering":[null,""],"Manual Search":[null,"Ръчно търсене"],"Do you want to mark this episode as failed?":[null,"Искате ли да отбележите този епизод като неуспешен?"],"The episode release name will be added to the failed history, preventing it to be downloaded again.":[null,""],"Do you want to include the current episode quality in the search?":[null,"Искате ли да включите текущото качество на епизода в търсенето?"],"Choosing No will ignore any releases with the same episode quality as the one currently downloaded/snatched.":[null,"Ако изберете Не, ще игнорира всички издания със същото качество на епизода като това на вече изтегления/намерен."],"Download subtitle":[null,"Изтегляне на субтитри"],"Do you want to re-download the subtitle for this language?":[null,""],"It will overwrite your current subtitle":[null,""],"Format":[null,"Форматиране"],"Advanced":[null,"Разширени"],"Main Settings":[null,"Основни настройки"],"Show Location":[null,"Местоположение на предаването"],"Preferred Quality":[null,"Предпочитано качество"],"Default Episode Status":[null,"Състоянието по подразбиране на епизод"],"this will set the status for future episodes.":[null,""],"this only applies to episode filenames and the contents of metadata files.":[null,""],"search for subtitles":[null,"търси за субтитри"],"Use SR Metdata":[null,""],"use SickRage metadata when searching for subtitle, this will override the autodiscovered metadata":[null,""],"pause this show (SickRage will not download episodes)":[null,""],"Format Settings":[null,"Настройки за форматиране"],"Air by date":[null,"По дата на излъчване"],"check if the show is released as Show.03.02.2010 rather than Show.S02E03.":[null,""],"in case of an air date conflict between regular and special episodes, the later will be ignored.":[null,""],"check if the show is Anime and episodes are released as Show.265 rather than Show.S02E03":[null,""],"check if the show is a sporting or MMA event released as Show.03.02.2010 rather than Show.S02E03":[null,""],"Season folders":[null,"Папки по сезони"],"group episodes by season folder (uncheck to store in a single folder)":[null,""],"search by scene numbering (uncheck to search by indexer numbering)":[null,""],"use the DVD order instead of the air order":[null,"използвайте DVD подредба вместо ред на излъчване"],"a \"Force Full Update\" is necessary, and if you have existing episodes you need to sort them manually.":[null,""],"comma-separated <i>e.g. \"word1,word2,word3</i>\"":[null,""],"search results with one or more words from this list will be ignored.":[null,""],"e.g. \"word1,word2,word3\"":[null,"например \"дума1, дума2, дума3\""],"search results with no words from this list will be ignored.":[null,""],"Scene Exception":[null,"Алтернативно име"],"this will affect episode search on NZB and torrent providers.":[null,""],"this list appends to the original show name.":[null,""],"WARNING logs":[null,"Логове с ПРЕДУПРЕЖДЕНИЯ"],"ERROR logs":[null,"Логове с ГРЕШКИ"],"There are no events to display.":[null,"Няма събития за показване."],"Limit":[null,"Лимит"],"Layout":[null,"Изглед"],"HistoryLayout":[null,"HistoryLayout"],"Compact":[null,"Компактен"],"Detailed":[null,"Подробен"],"Time":[null,"Време"],"Provider":[null,"Доставчик"],"Missing Provider":[null,"Липсва доставчик"],"missing provider":[null,"липсва доставчик"],"Directory":[null,"Директория"],"Show Name (tvshow.nfo)":[null,"Име на предаване (tvshow.nfo)"],"Indexer":[null,"Индексатор"],"Enter the folder containing the episode":[null,"Достъп до папката съдържаща този епизод"],"Process Method to be used":[null,"Да се използва метод за обработка"],"Copy":[null,"Копирай"],"Move":[null,"Премести"],"Hard Link":[null,"Hard Link"],"Symbolic Link":[null,"Symbolic Link"],"Symbolic Link Reversed":[null,""],"Force already Post Processed Dir/Files":[null,"Наложи отново обработка на вече обработени папки/файлове"],"Mark Dir/Files as priority download":[null,"Маркирай Папка/Файлове с приоритет за изтегляне"],"(Check it to replace the file even if it exists at higher quality)":[null,"(Изберете за да замените файл, дори ако той вече съществува с по-високо качество)"],"Delete files and folders":[null,"Изтриване на файлове и папки"],"(Check it to delete files and folders like auto processing)":[null,"(Изберете за да изтриете файлове и папки като процеса по автоматична обработка)"],"Don't use processing queue":[null,""],"(If checked this will return the result of the process here, but may be slow!)":[null,""],"Mark download as failed":[null,"Маркирай изтеглянето като неуспешно"],"Process":[null,"Обработка"],"Download subtitles for this show?":[null,"Изтегляне на субтитри за това предаване?"],"use SickRage metadata when searching for subtitle, <br />this will override the autodiscovered metadata":[null,""],"Status for previously aired episodes":[null,"Състояние за вече излъчени епизоди"],"Status for all future episodes":[null,"Състоянието за всички бъдещи епизоди"],"Group episodes by season folder?":[null,""],"Is this show an Anime?":[null,"Това предаване Аниме ли е?"],"Is this show scene numbered?":[null,"Предаването номерирано ли е по сцена?"],"Save Defaults":[null,"Запиши по подразбиране"],"Use current values as the defaults":[null,"Използвайте текущите стойности като настройки по подразбиране"],"<p>Select your preferred fansub groups from the <b>Available Groups</b> and add them to the <b>Whitelist</b>. Add groups to the <b>Blacklist</b> to ignore them.</p>\n <p>The <b>Whitelist</b> is checked <i>before</i> the <b>Blacklist</b>.</p>\n <p>Groups are shown as <b>Name</b> | <b>Rating</b> | <b>Number of subbed episodes</b>.</p>\n <p>You may also add any fansub group not listed to either list manually.</p>\n <p>When doing this please note that you can only use groups listed on anidb for this anime.\n <br>If a group is not listed on anidb but subbed this anime, please correct anidb's data.</p>":[null,""],"Whitelist":[null,"Бял списък"],"Available Groups":[null,"Налични групи"],"Add to Whitelist":[null,"Добави към белия списък"],"Add to Blacklist":[null,"Добави към черния списък"],"Blacklist":[null,"Черен списък"],"Custom Group":[null,""],"Allowed Quality:":[null,"Разрешено качество:"],"Preferred Quality:":[null,"Предпочитано качество:"],"Filter Show Name":[null,"Филтър за име на предаване"],"Root":[null,"Root"],"All":[null,"Всички"],"Clear Filter(s)":[null,"Изчисти филтър(ри)"],"Poster":[null,"Плакат"],"Small Poster":[null,"Малък плакат"],"Banner":[null,"Банер"],"Simple":[null,"Опростен"],"Next Episode":[null,"Следващ епизод"],"Progress":[null,"Прогрес"],"Direction":[null,"Посока"],"Ascending":[null,"Възходящ"],"Descending":[null,"Низходящ"],"Poster Size":[null,"Размер на плакат"],"Continuing":[null,"Продължава"],"Ended":[null,"Приключил"],"Total":[null,"Общо"],"Invalid date":[null,"невалидна дата"],"No Network":[null,"Без ТВ мрежа"],"Next Ep":[null,"Следващ"],"Prev Ep":[null,"Предишен"],"Show":[null,"Предаване"],"Downloads":[null,"Изтеглени"],"Active":[null,"Активен"],"loading":[null,"зарежда"],"Loading...":[null,"Зареждане..."],"<p><b><u>Preferred</u></b> qualities will replace those in <b><u>allowed</u></b>, even if they are lower.</p>":[null,"<p><b><u>Предпочитани</u></b> качества ще заменят тези в <b><u>позволени</u></b>, дори ако те са по-лоши.</p>"],"New":[null,"Нов"],"Set as Default":[null,"Задай по подразбиране"],"Remember me":[null,"Запомни ме"],"Edit Selected":[null,"Редактиране на избрани"],"Subtitle":[null,"Субтитри"],"Default Ep Status":[null,"Статус по подразбиране на серия"],"Update":[null,"Актуализация"],"Rescan":[null,"Повторно сканиране"],"Rename":[null,"Преименувай"],"Search Subtitle":[null,"Търси субтитри"],"Force Metadata Regen":[null,"Наново генерирай метаданни"],"Snatched (Allowed)":[null,"Намерен (Разрешен)"],"Jump to Show":[null,"отиди на предаване"],"Force Backlog":[null,"Стартирай принудително Backlog"],"Manage episodes with status":[null,"Управление на епизоди със статус"],"Manage":[null,"Управлявай"],"None of your episodes have status":[null,"Никой от вашите епизода няма статус"],"Shows containing":[null,"Предавания съдържащи"],"episodes":[null,"епизоди"],"Set checked shows/episodes to":[null,"Задайте отметнатите предавания/епизоди като"],"Go":[null,"Старт"],"Select all":[null,"Избери всички"],"Clear all":[null,"Изчисти всички"],"Release":[null,"Издание"],"Backlog Search":[null,"Backlog търсене"],"Not in progress":[null,"не е в ход"],"In Progress":[null,"в ход"],"Daily Search":[null,"Дневно търсене"],"Find Propers Search":[null,"Търсене на Propers"],"Propers search disabled":[null,"Забранено е търсене за propers"],"Subtitle Search":[null,"Търсене на субтитри"],"Subtitle search disabled":[null,"Забранено търсенето на субтитри"],"Search Queue":[null,"Опашка за търсене"],"pending items":[null,"изчакващи"],"Daily":[null,"Ежедневно"],"Manual":[null,"Ръчно"],"Changing any settings marked with (<span class=\"separator\">*</span>) will force a refresh of the selected shows.":[null,"Промяна на някоя настройка, отбелязана с (<span class=\"separator\">*</span>) ще задейства обновяване на избраното предаване (предавания)."],"Selected Shows":[null,"Избрани предавания"],"Root Directories":[null,"Root директории"],"Current":[null,"Текущ"],"Keep":[null,"Запази"],"Custom":[null,"По избор"],"Group episodes by season folder (set to \"No\" to store in a single folder).":[null,"Групирай епизоди по сезони в папка (изберете \"Не\" за да се съхраняват в една обща папка)."],"Pause these shows (SickRage will not download episodes).":[null,"Пауза на тези предавания. (SickRage няма да сваля нови епизоди)"],"This will set the status for future episodes.":[null,"Това ще зададе състоянието за бъдещи епизоди."],"Search by scene numbering (set to \"No\" to search by indexer numbering).":[null,"Търсене по номериране по сцена (изберете \"Не\" за търсене по номерация от индексатор)."],"Set if these shows are Anime and episodes are released as Show.265 rather than Show.S02E03":[null,"Изберете ако предаванията са аниме и епизоди са публикувани като Show.265, а не като Show.S02E03"],"Set if these shows are sporting or MMA events released as Show.03.02.2010 rather than Show.S02E03.":[null,"Изберете ако предаванията са спортни или ММА събития публикувани като Show.03.02.2010, а не като Show.S02E03."],"In case of an air date conflict between regular and special episodes, the later will be ignored.":[null,""],"Set if these shows are released as Show.03.02.2010 rather than Show.S02E03.":[null,"Изберете ако предаванията се публикуват като Show.03.02.2010, а не като Show.S02E03."],"Search for subtitles.":[null,"Търси за субтитри."],"All of your episodes have {subsLanguage} subtitles.":[null,"Всички ваши епизоди имат {subsLanguage} субтитри."],"Manage episodes without":[null,"Управление на епизоди без"],"Episodes without {subsLanguage} subtitles.":[null,"Епизоди без {subsLanguage} субтитри."],"Episodes without {subtitleLanguage} (undefined) subtitles.":[null,"Епизоди без {subtitleLanguage} (неопределен) субтитри."],"Download missed subtitles for selected episodes":[null,"Изтегляне на липсващите субтитри за избраните епизоди"],"Performing Restart":[null,"Извършва се рестартиране"],"Waiting for SickRage to shut down":[null,"Изчаква SickRage да се изключи"],"Waiting for SickRage to start again":[null,"Изчаква SickRage да се стартира отново"],"Loading the default page":[null,"Зареждане на страница по подразбиране"],"Error: The restart has timed out, perhaps something prevented SickRage from starting again?":[null,"Грешка: Времето за рестартиране изтече, може би нещо възпрепятстван SickRage се се стартира отново?"],"Key":[null,"Легенда"],"Missed":[null,"Пропуснат"],"Today":[null,"Днес"],"Soon":[null,"Скоро"],"Later":[null,"По-късно"],"Subscribe":[null,"Абонирай се"],"Date":[null,"Дата"],"View Paused":[null,"Преглед на изчакващите"],"Hidden":[null,"Скрити"],"Shown":[null,"Видими"],"Calendar":[null,"Календар"],"List":[null,"Списък"],"Ends":[null,"Завършва"],"Next Ep Name":[null,"Име на следващ еп."],"Run time":[null,"Време за изпълнение"],"Indexers":[null,"Индексатори"],"No shows for this day":[null,"Няма предавания за този ден"],"Airs":[null,"Дата на излъчване"],"Plot":[null,"Описание"],"Show Update":[null,"Актуализатор на предавания"],"Version Check":[null,"Проверка на версията"],"Proper Finder":[null,"Намиране на Proper"],"Post Process":[null,"Последваща обработка"],"Subtitles Finder":[null,"Търсач на субтитри"],"Scheduler":[null,"Планировчик"],"Alive":[null,"Активен"],"Start Time":[null,"Начало в"],"Cycle Time":[null,"Цикъл"],"Next Run":[null,"Акт. след"],"Last Run":[null,"Последно акт."],"Silent":[null,"Тих режим"],"True":[null,"Да"],"N/A":[null,"N/A"],"Show id":[null,"ID на предаване"],"Show name":[null,"Име на предаване"],"Priority":[null,"Приоритет"],"Added":[null,"Добавено"],"Queue type":[null,"Тип на опашка"],"LOW":[null,"НИСЪК"],"NORMAL":[null,"НОРМАЛЕН"],"HIGH":[null,"ВИСОК"],"Disk Space":[null,"Дисково пространство"],"Free space":[null,"Свободно пространство"],"TV Download Directory":[null,"Директория за изтегляне на предаването"],"Media Root Directories":[null,"Основна папка със съдържание"],"Preview of the proposed name changes":[null,"Преглед на предложените промени в имената"],"All Seasons":[null,"Всички сезони"],"select all":[null,"избери всички"],"Rename Selected":[null,"Преименувай избраните"],"Cancel Rename":[null,"Отмени преименуване"],"Old Location":[null,"Старо местоположение"],"New Location":[null,"Ново местоположение"],"Trakt API did not return any results, please check your config.":[null,"Trakt API не върна резултати, проверете настройките."],"votes":[null,"гласа"],"Remove Show":[null,"Премахни предаването"],"Level":[null,"Ниво"],"Filter":[null,"Филтър"],"All non-absolute folder locations are relative to ":[null,"Всички не-абсолютни местоположенията са релативни спрямо "],"Manual Post-Processing":[null,"Ръчна обработка"],"Episode Status Management":[null,"Управление статусът на епизодите"],"Update PLEX":[null,"Обнови PLEX"],"Update KODI":[null,"Обнови KODI"],"Update Emby":[null,"Обнови Emby"],"Missed Subtitle Management":[null,"Управление на липсващите субтитри"],"Help & Info":[null,"Помощ & Информация"],"Backup & Restore":[null,"Архивиране & Възстановяване"],"Tools":[null,"Инструменти"],"Support SickRage":[null,"Подкрепи SickRage"],"View Errors":[null,"Виж грешките"],"View Warnings":[null,"Виж предупрежденията"],"View Log":[null,"Вижте лог-а"],"Check For Updates":[null,"Провери за актуализации"],"Restart":[null,"Рестартиране"],"Shutdown":[null,"Изключване"],"Logout":[null,"Отписване"],"Server Status":[null,"Състояние на сървъра"],"View overview of snatched episodes":[null,"Обобщен преглед на намерените епизоди"],"Episodes Downloaded":[null,"Изтеглени епизоди"],"Memory used":[null,"Памет в употреба"],"Load time":[null,"Load time"],"Branch":[null,"Branch"],"Now":[null,"Сега"]}}}} \ No newline at end of file +{"messages":{"domain":"messages","locale_data":{"messages":{"100":[null,"100"],"250":[null,"250"],"500":[null,"500"],"":{"domain":"messages","plural_forms":"nplurals=2; plural=(n != 1);","lang":"bg_BG"},"Drama":[null,"Драма"],"Mystery":[null,"Мистерия"],"Science-Fiction":[null,"Научна фантастика"],"Crime":[null,"Крими"],"Action":[null,"Действие"],"Comedy":[null,"Комедия"],"Thriller":[null,"Трилър"],"Animation":[null,"Анимация"],"Family":[null,"Семеен"],"Fantasy":[null,"Фентъзи"],"Adventure":[null,"Приключенски"],"Horror":[null,"Ужаси"],"Film-Noir":[null,"Филм-ноар"],"Sci-Fi":[null,"Sci-Fi"],"Romance":[null,"Романтичен"],"Sport":[null,"Спортен"],"War":[null,"Военен"],"Biography":[null,"Биографичен"],"History":[null,"История"],"Music":[null,"Музикален"],"Western":[null,"Уестърн"],"News":[null,"Новини"],"Sitcom":[null,"Ситком"],"Reality-TV":[null,"Реалити"],"Documentary":[null,"Документален филм"],"Game-Show":[null,"Геймърски"],"Musical":[null,"Мюзикъл"],"Talk-Show":[null,"Токшоу"],"Started Download":[null,"Започнато изтегляне"],"Download Finished":[null,"Изтеглянето завърши"],"Subtitle Download Finished":[null,"Изтеглени са субтитри"],"SickRage Updated":[null,"SickRage беше актуализиран"],"SickRage Updated To Commit#: ":[null,"SickRage беше актуализиран към Commit#: "],"SickRage new login":[null,"Нов вход в SickRage"],"New login from IP: {0}. http://geomaplookup.net/?ip={0}":[null,"Нов вход от IP адрес: {0}. http://geomaplookup.net/?IP={0}"],"Repeat":[null,"Repeat"],"Repeat (Separated)":[null,"Repeat (Separated)"],"Extend":[null,"Extend"],"Extend (Limited)":[null,"Extend (Limited)"],"Extend (Limited, E-prefixed)":[null,"Extend (Limited, E-prefixed)"],"Downloaded":[null,"Изтеглен(и)"],"Snatched":[null,"Намерен"],"Snatched (Proper)":[null,"Намерен (Proper)"],"Failed":[null,"Неуспешно"],"Snatched (Best)":[null,"Намерен (най-добро)"],"Archived":[null,"Архивиран"],"Unknown":[null,"Неизвестно"],"Unaired":[null,"Неизлъчен"],"Skipped":[null,"Пропуснат"],"Wanted":[null,"Търсен"],"Ignored":[null,"Игнориран"],"Subtitled":[null,"Субтитри"],"For best results please set the Download Station alias as":[null,"За най-добри резултати моля задайте псевдоним на Станцията за изтегляне като"],"You can check this setting in the Synology DSM":[null,"Можете да проверите тази настройка в Synology DSM"],"Control Panel":[null,"Контролен Панел"],"Application Portal":[null,"Портал за приложения"],"Make sure you allow DSM to be embedded with iFrames too in":[null,"Не забравяйте да позволите DSM да бъдат вградени и в iFrames"],"DSM Settings":[null,"DSM настройки"],"Security":[null,"Сигурност"],"<No Filter>":[null,"<без филтър>"],"Daily Searcher":[null,"Дневно търсене"],"Backlog":[null,"Backlog"],"Show Updater":[null,"Актуализатор на предавания"],"Check Version":[null,"Проверка на версията"],"Show Queue":[null,"Опашка на предавания"],"Search Queue (All)":[null,"Опашка за търсене (всички)"],"Search Queue (Daily Searcher)":[null,"Опашка за търсене (дневно търсене)"],"Search Queue (Backlog)":[null,"Опашка за търсене (Backlog)"],"Search Queue (Manual)":[null,"Опашка за търсене (ръчно)"],"Search Queue (Retry/Failed)":[null,"Опашка за търсене (повторен опит/неуспешни)"],"Search Queue (RSS)":[null,"Опашка за търсене (RSS)"],"Find Propers":[null,"Намери Propers"],"Postprocessor":[null,"Последваща обработка"],"Find Subtitles":[null,"Намери субтитри"],"Trakt Checker":[null,"Проверка на Trakt"],"Event":[null,"Събитие"],"Error":[null,"Грешка"],"Tornado":[null,"Tornado"],"Thread":[null,"Thread"],"Main":[null,"Основни"],"Loading":[null,""],"New update found for SickRage, starting auto-updater":[null,"Открит е нова актуализация за SickRage, стартира автоматично обновяване"],"Update was successful":[null,"Актуализирането е успешно"],"Update failed!":[null,"Неуспешно актуализиране!"],"Backup":[null,"Архивиране"],"Config backup in progress...":[null,"Архивиране на настройките..."],"Config backup successful, updating...":[null,"Успешно архивиране на настройките, актуализиране..."],"Config backup failed, aborting update":[null,"Неуспешно архивиране на настройките, прекратена актуализация"],"No update needed":[null,"Не е необходима актуализация"],"Mako Error":[null,"Грешка в Mako"],"Oops":[null,"Опа"],"Wrong API key used":[null,"Използван е грешен API ключ"],"Login":[null,"Вход"],"API Key not generated":[null,"Не е генериран API ключ"],"API Builder":[null,"API Builder"],"Schedule":[null,"График"],"Test 1":[null,"Тест 1"],"This is test number 1":[null,"Това е тест номер 1"],"Test 2":[null,"Тест 2"],"This is test number 2":[null,"Това е тест номер 2"],"You're using the {branch} branch. Please use 'master' unless specifically asked":[null,"В момента използвате клон {branch}. Моля използвайте \"master\", освен ако специално не е изискано друго"],"Invalid show parameters":[null,"Невалидни параметри за предаване"],"Invalid parameters":[null,"Невалидни параметри"],"Episode couldn't be retrieved":[null,"Епизодът не може да бъде открит"],"Home":[null,"Начало"],"Show List":[null,"Списък с предавания"],"Error: Unsupported Request. Send jsonp request with 'callback' variable in the query string.":[null,"Грешка: Неподдържано искане. Изпрати jsonp заявка с \"callback\" променлива в низа на заявката."],"Success. Connected and authenticated":[null,"Успешно свързан и удостоверен"],"Authentication failed. SABnzbd expects":[null,"Неуспешно удостоверяване. SABnzbd очаква"],"as authentication method":[null,"като метод за удостоверяване"],"Unable to connect to host":[null,"Не може да се свърже със сървъра"],"SMS sent successfully":[null,"SMS е изпратен успешно"],"Problem sending SMS: {message}":[null,"Проблем с изпращането на SMS: {message}"],"Telegram notification succeeded. Check your Telegram clients to make sure it worked":[null,"Успешно испращане на уведомление към Telegram. Проверете вашите Telegram клиенти, за да се уверите, че е получено успешно"],"Error sending Telegram notification: {message}":[null,"Грешка при изпращането на Telegram уведомяване: {message}"],"join notification succeeded. Check your join clients to make sure it worked":[null,"успешно испращане на уведомление към join. Проверете вашите join клиенти, за да се уверите, че е получено успешно"],"Error sending join notification: {message}":[null,"Грешка при изпращането на join уведомяване: {message}"]," with password":[null," с парола"],"Registered and Tested growl successfully {growl_host}":[null,"Регистриран и тестван успешно growl {growl_host}"],"Registration and Testing of growl failed {growl_host}":[null,"Регистрацията и тестването на growl е неуспешно {growl_host}"],"Test prowl notice sent successfully":[null,"Пробното уведомление на prowl е изпратено успешно"],"Test prowl notice failed":[null,"Тестът на уведомлението на prowl е неуспешно"],"Boxcar2 notification succeeded. Check your Boxcar2 clients to make sure it worked":[null,"Успешно испращане на уведомление към Boxcar2. Проверете вашите Boxcar2 клиенти, за да се уверите, че е получено успешно"],"Error sending Boxcar2 notification":[null,"Грешка при изпращане на уведомление на Boxcar2"],"Pushover notification succeeded. Check your Pushover clients to make sure it worked":[null,"Успешно испращане на уведомление към Pushover. Проверете вашите Pushover клиенти, за да се уверите, че е получено успешно"],"Error sending Pushover notification":[null,"Грешка при изпращане на Pushover уведомяване"],"Key verification successful":[null,"Успешна проверка на ключ"],"Unable to verify key":[null,"Невъзможна проверка на ключ"],"Tweet successful, check your twitter to make sure it worked":[null,"Успешен Tweet. Проверете вашия twitter, за да се уверите че е проработило"],"Error sending tweet":[null,"Грешка при изпращане на tweet"],"Please enter a valid account sid":[null,"Моля, въведете валиден sid за акаунт"],"Please enter a valid auth token":[null,"Моля въведете валиден auth token"],"Please enter a valid phone sid":[null,"Моля, въведете валиден телефонен sid"],"Please format the phone number as \"+1-###-###-####\"":[null,"Моля форматирайте телефонния номер като \"+1-###-###-####\""],"Authorization successful and number ownership verified":[null,"Потвърждението е успешно и собствеността а номера е потвърдена"],"Error sending sms":[null,"Грешка при изпращане на sms"],"Slack message successful":[null,"Успешно съобщение към Slack"],"Slack message failed":[null,"Неуспешно съобщение към Slack"],"Discord message successful":[null,"Успешно съобщение към Discord"],"Discord message failed":[null,"Неуспешно съобщение към Discord"],"Test KODI notice sent successfully to {kodi_host}":[null,"Упсшено тестово уведомление на KODI към {kodi_host}"],"Test KODI notice failed to {kodi_host}":[null,"Неуспешно тестово уведомление на KODI към {kodi_host}"],"Successful test notice sent to Plex Home Theater ... {plex_clients}":[null,"Успешно тестово уведомление на Plex Home Theater ... {plex_clients}"],"Test failed for Plex Home Theater ... {plex_clients}":[null,"Неуспешно тестово уведомление на Plex Home Theater ... {plex_clients}"],"Tested Plex Home Theater(s)":[null,"Тествани Plex Home Theater(s)"],"Successful test of Plex Media Server(s) ... {plex_servers}":[null,"Успешен тест на Plex Media Server(s) ... {plex_servers}"],"Test failed, No Plex Media Server host specified":[null,"Неуспешен тест. Не е посочен адрес на Plex Media Server"],"Test failed for Plex Media Server(s) ... {plex_servers}":[null,"Неуспешен тест на Plex Media Server(s) ... {plex_servers}"],"Tested Plex Media Server host(s)":[null,"Тествани адреси на Plex Media Server(s)"],"Tried sending desktop notification via libnotify":[null,"Опитва да изпрати съобшение до десктоп чрез libnotify"],"Test notice sent successfully to {emby_host}":[null,"Тестото уведомление беше изпратено успешно към {emby_host}"],"Test notice failed to {emby_host}":[null,"Неуспешно тестово уведомление на {emby_host}"],"Successfully started the scan update":[null,"Успешно започна сканиране за актуализация"],"Test failed to start the scan update":[null,"Тестът не успя да стартира сканиране за актуализация"],"Test notice sent successfully to {nmj2_host}":[null,"Тест уведомление изпратено успешно към {nmj2_host}"],"Test notice failed to {nmj2_host}":[null,"Неуспешно тестово уведомление на {nmj2_host}"],"Trakt Authorized":[null,"Оторизиран в Trakt"],"Trakt Not Authorized!":[null,"Не е оторизиран в Trakt!"],"Test email sent successfully! Check inbox.":[null,"Успешно изпратен тестов имейл! Проверете пощенската кутия."],"ERROR: {last_error}":[null,"ГРЕШКА: {last_error}"],"Test NMA notice sent successfully":[null,"Пробното уведомление на NMA е изпратено успешно"],"Test NMA notice failed":[null,"Тестът на уведомлението на NMA е неуспешно"],"Pushalot notification succeeded. Check your Pushalot clients to make sure it worked":[null,"Успешно испращане на уведомление към Pushalot. Проверете вашите Pushalot клиенти, за да се уверите, че е получено успешно"],"Error sending Pushalot notification":[null,"Грешка при изпращане на Pushalot уведомяване"],"Pushbullet notification succeeded. Check your device to make sure it worked":[null,"Успешно испращане на уведомление към Pushalot. Проверете вашето устройство, за да се уверите, че е получено успешно"],"Error sending Pushbullet notification":[null,"Грешка при изпращане на Pushover уведомяване"],"Status":[null,"Статус"],"Restarting SickRage":[null,"Рестартиране на SickRage"],"Update Failed":[null,"Неуспешно актуализиране"],"Update wasn't successful, not restarting. Check your log for more information.":[null,"Актуализацията не беше успешна, няма да рестартира. Разгледайте регистрационния log файл за повече информация."],"Checking out branch":[null,"Проверка на branch"],"Already on branch":[null,"Вече се използва този branch"],"Invalid show ID: {show}":[null,"Невалиден ID на сериал: {show}"],"Show not in show list":[null,"Сериалът не е в списъка със сериали"],"Edit":[null,"Редактирай"],"This show is in the process of being downloaded - the info below is incomplete.":[null,"Това предаване е в процес на изтегляне - информацията по-долу е непълна."],"The information on this page is in the process of being updated.":[null,"Информацията на тази страница е в процес на обновяване."],"The episodes below are currently being refreshed from disk":[null,"Епизодите по-долу в момента се обновяват от диска"],"Currently downloading subtitles for this show":[null,"В момента се изтеглят субтитри за това предаване"],"This show is queued to be refreshed.":[null,"Това предаване е в опашката за обновяване."],"This show is queued and awaiting an update.":[null,"Това предаване е в опашка и изчаква обновяване."],"This show is queued and awaiting subtitles download.":[null,"Това предаване е в опашка и изчаква изтегляне на субтитри."],"Resume":[null,"Възобнови"],"Pause":[null,"Пауза"],"Remove":[null,"Премахни"],"Re-scan files":[null,"Ново сканиране за файлове"],"Force Full Update":[null,"Изпълни пълно актуализиране"],"Update show in KODI":[null,"Актуализирай в KODI"],"Update show in Emby":[null,"Актуализирай в Emby"],"Hide specials":[null,"Скрий специалните епизоди"],"Show specials":[null,"Покажи специалните епизоди"],"Preview Rename":[null,"Преглед на преименуването"],"Download Subtitles":[null,"Изтегляне на субтитри"],"No scene exceptions":[null,"Няма алтернативни имена"],"Invalid show ID":[null,"Невалиден ID за предаване"],"Unable to find the specified show":[null,"Не е намерено търсеното предаване"],"Unable to retreive Fansub Groups from AniDB.":[null,"Не може да изтеглите Fansub групи от AniDB."],"Edit Show":[null,"Редактиране на шоуто"],"Unable to refresh this show: {error}":[null,"Не може да се обнови информацията за тоза предаване: {error}"],"New location <tt>{location}</tt> does not exist":[null,"Ново местоположение <tt>{location}</tt> не съществува"],"Unable to update show: {error}":[null,"Неуспешна актуализация на сериал: {error}"],"Unable to force an update on scene exceptions of the show.":[null,"Неуспешна принудителна актуализация на предаване чрез аналогичните имена (scene exceptions)."],"Unable to force an update on scene numbering of the show.":[null,"Неуспешна принудителна актуализация на номерирането по сцена за предаване."],"{num_errors:d} error{plural} while saving changes:":[null,"{num_errors:d} error{plural} при запазването на промените:"],"{show_name} has been {paused_resumed}":[null,"{show_name} беше {paused_resumed}"],"resumed":[null,"възобновен"],"paused":[null,"в пауза"],"{show_name} has been {deleted_trashed} {was_deleted}":[null,"{show_name} беше {deleted_trashed} {was_deleted}"],"deleted":[null,"изтрит"],"trashed":[null,"изхвърлен"],"(media untouched)":[null,"(файловете ще са непроменени)"],"(with all related media)":[null,"(с всички свързани файлове)"],"Unable to refresh this show.":[null,"Не може да се обнови този сериал."],"Unable to update this show.":[null,"Не може да актуализира този сериал."],"Library update command sent to KODI host(s)): {kodi_hosts}":[null,"Изпратена е команда за обновяване на библиотеката в KODI на адрес(и): {kodi_hosts}"],"Unable to contact one or more KODI host(s)): {kodi_hosts}":[null,"Неуспешно свързване с един или повече адреси на KODI: {kodi_hosts}"],"Library update command sent to Plex Media Server host: {plex_server}":[null,"Изпратена е команда за обновяване на библиотеката в Plex Media Server на адрес(и): {plex_server}"],"Unable to contact Plex Media Server host: {plex_server}":[null,"Неуспешно свързване с адрес на Plex Media Server: {plex_server}"],"Library update command sent to Emby host: {emby_host}":[null,"Изпратена е команда за обновяване на библиотеката в Emby на адрес: {emby_host}"],"Unable to contact Emby host: {emby_host}":[null,"не може да се свърже с Emby на адрес: {emby_host}"],"You must specify a show and at least one episode":[null,"Трябва да зададете предаване и поне един епизод"],"Invalid status":[null,"Невалиден статус"],"Backlog was automatically started for the following seasons of <b>{show_name}</b>":[null,"Backlog беше стартиран автоматично за следните сезони на <b>{show_name}</b>"],"Season":[null,"Сезон"],"Backlog started":[null,"Backlog е стартиран"],"Retrying Search was automatically started for the following season of <b>{show_name}</b>":[null,"Повторен опит за търсене беше стартиран автоматично за следния сезон на <b>{show_name}</b>"],"Retry Search started":[null,"Започна повторно търсене"],"You must specify a show":[null,"Трябва да зададете предаване"],"Can't rename episodes when the show dir is missing.":[null,"Не може да преименува епизоди, когато липсва папка за предаването."],"New subtitles downloaded: {new_subtitle_languages}":[null,"Изтеглени са нови субтитри: {new_subtitle_languages}"],"No subtitles downloaded":[null,"Няма свалени субтитри"],"IRC":[null,"IRC"],"Could not load news from the repo. [Click here for news.md])({news_url})":[null,"Не може да зареди новини от източника (repo). [Кликнете тук за news.md]) ({news_url})"],"The was a problem connecting to github, please refresh and try again":[null,"Възникна проблем в свързването към github, Моля презаредете и опитайте отново"],"Could not load changes from the repo. [Click here for CHANGES.md]({changes_url})":[null,"Не може да зареди файла с промени от източника (repo). [Кликнете тук за CHANGES.md] ({changes_url})"],"Changelog":[null,"Списък с промени"],"Post Processing":[null,"Обработка"],"Add Shows":[null,"Добави предаване"],"No folders selected.":[null,"Няма избрани папки."],"New Show":[null,"Ново предаване"],"Trending Shows":[null,"Налагащи се сериали"],"Popular Shows":[null,"Популярни сериали"],"Most Anticipated Shows":[null,"Най-очакваните сериали"],"Most Collected Shows":[null,"Най-много събирани предавания"],"Most Watched Shows":[null,"Най-много гледани предавания"],"Most Played Shows":[null,"Най-много следени предавания"],"Recommended Shows":[null,"Препоръчани предавания"],"New Shows":[null,"Нови сериали"],"Season Premieres":[null,"Премиери на сезони"],"Existing Show":[null,"Съществуващ сериал"],"No root directories setup, please go back and add one.":[null,"Няма настроена root директория, моля да се върнете и да добавите една."],"Show added":[null,"Сериалът е добавен"],"Adding the specified show {show_name}":[null,"Добавяне на зададения сериал {show_name}"],"Missing params, no Indexer ID or folder: {show_to_add} and {root_dir}/{show_path}":[null,"Липсват параметри, няма Indexer ID или папка: {show_to_add} и {root_dir}/{show_path}"],"Unknown error. Unable to add show due to problem with show selection.":[null,"Неизвестна грешка. Сериалът не може да бъде добавен поради проблем изборът на сериал."],"Unable to add show":[null,"Сериалът не може да бъде добавен"],"Folder {show_dir} exists already":[null,"Вече съществува папка {show_dir}"],"Unable to create the folder {show_dir}, can't add the show":[null,"Не може да бъде създадена папката {show_dir}, сериалът не може да бъде добавен"],"Adding the specified show into {show_dir}":[null,"Добавяне на избрания сериал в {show_dir}"],"Shows Added":[null,"Довабени сериали"],"Automatically added {num_shows} from their existing metadata files":[null,"Автоматично бяха добавени {num_shows} от налични файлове с мета-информация"],"Mass Update":[null,"Цялостна актуализация"],"Episode Overview":[null,"Преглед на епизодите"],"Missing Subtitles":[null,"Липсващи субтитри"],"Backlog Overview":[null,"Преглед на Backlog"],"Mass Edit":[null,"Масово редактиране"],"Unable to update show: {excption_format}":[null,"Неуспешна актуализация на сериал: {excption_format}"],"Unable to refresh show {show_name}: {excption_format}":[null,"Неуспешно обновяване на сериалът {show_name}: {excption_format}"],"Errors encountered":[null,"Срещнати грешки"],"Updates":[null,"Актуализации"],"Refreshes":[null,"Опреснявания"],"Renames":[null,"Преименувания"],"Subtitles":[null,"Субтитри"],"The following actions were queued":[null,"Следните действия бяха добавени на опашката"],"Failed Downloads":[null,"Неуспешни изтегляния"],"Manage Searches":[null,"Управление на търсенията"],"Backlog search started":[null,"Започна Backlog търсене"],"Daily search started":[null,"Започна ежедневно търсене"],"Find propers search started":[null,"Започна търсене на propers"],"Subtitle search started":[null,"Започна търсене за субтитри"],"Remove Selected":[null,"Премахни избраното"],"Clear History":[null,"Изчисти историята"],"Trim History":[null,"Съкрати историята"],"Selected history entries removed":[null,""],"History cleared":[null,"Историята е изчистена"],"Removed history entries older than 30 days":[null,"Премахни записи в историята, които са по-стари от 30 дни"],"General":[null,"Общи"],"Backup/Restore":[null,"Архивиране/Възстановяване"],"Search Settings":[null,"Настройки на търсенето"],"Search Providers":[null,"Доставчици на търсене"],"Subtitles Settings":[null,"Настройки на субтитри"],"Notifications":[null,"Известия"],"Anime":[null,"Аниме"],"SickRage Configuration":[null,"SickRage настройки"],"Config - Shares":[null,""],"Windows Shares Configuration":[null,""],"Saved Shares":[null,""],"Your Windows share settings have been saved":[null,""],"Config - General":[null,"Настройки - Общи"],"General Configuration":[null,"Основни настройки"],"Saved Defaults":[null,"Записани по подразбиране"],"Your \"add show\" defaults have been set to your current selections.":[null,"Вашият избор по подразбиране за \"Добави предаване\" са зададени на вашия текущ избор."],"Unable to create directory {directory}, log directory not changed.":[null,"Не може да се създаде директория {directory}, директорията за log файл не беше променена."],"Unable to create directory {directory}, https cert directory not changed.":[null,"Не може да се създаде директория {directory}, директорията с https сертификат не беше променена."],"Unable to create directory {directory}, https key directory not changed.":[null,"Не може да се създаде директория {directory}, директорията с https ключ не беше променена."],"Error(s) Saving Configuration":[null,"Грешка(и) при запаметяване на настройките"],"Configuration Saved":[null,"Настройките са запаметени"],"Config - Backup/Restore":[null,"Настройки - Архивиране/Възстановяване"],"Config - Episode Search":[null,"Настройки - Търсене на епизоди"],"Config - Post Processing":[null,"Настройки - Обработка"],"Unpacking Not Supported, disabling unpack setting":[null,"Разархивирането не се поддържа, деактивирани са съответните настройките"],"You tried saving an invalid normal naming config, not saving your naming settings":[null,""],"You tried saving an invalid anime naming config, not saving your naming settings":[null,"Вие се опитахте за запазите невалидна настройка за име на аниме, настройки за именуване не бяха запазени"],"Config - Providers":[null,"Настройка - Доставчици"],"No Provider Name specified":[null,"Не е зададено име за доставчик"],"No Provider Url specified":[null,"Не е зададен Url адрес за доставчик"],"No Provider Api key specified":[null,"Не е зададен Api ключ за доставчик"],"Config - Notifications":[null,"Настройка - Известия"],"Config - Subtitles":[null,"Настройки - субтитри"],"Config - Anime":[null,"Настройки - аниме"],"Clear Errors":[null,"Изчистване на грешки"],"Clear Warnings":[null,"Изчистване на предупреждения"],"Submit Errors":[null,"Подаване на грешки"],"Logs & Errors":[null,"Logs & грешки"],"Log File":[null,"Log File"],"Logs":[null,"Logs"],"This is a test notification from SickRage":[null,"Това е тестово съобщение от SickRage"],"Choose Directory":[null,""],"Select log file folder location":[null,""],"Select CSS file":[null,""],"Select backup folder to save to":[null,""],"Select backup files to restore":[null,""],"Please fill out the necessary fields above.":[null,""],"<b>Step 1:</b> Confirm Authorization":[null,""],"Check blacklist name; the value needs to be a trakt slug":[null,""],"You must provide a recipient email address!":[null,""],"You didn't supply a Pushbullet api key":[null,""],"Don't forget to save your new pushbullet settings.":[null,""],"Select TV Download Directory":[null,""],"Select Unpack Directory":[null,""],"This pattern is invalid.":[null,"Този модел е невалиден."],"This pattern would be invalid without the folders, using it will force \"Season Folders\" on for all shows.":[null,""],"This pattern is valid.":[null,"Този модел е валиден."],"Select .nzb black hole/watch location":[null,""],"Select .torrent black hole/watch location":[null,""],"Select .torrent download location":[null,""],"Minimum seeding time is":[null,""],"URL to your uTorrent client (e.g. http://localhost:8000)":[null,""],"Stop seeding when inactive for":[null,""],"URL to your Transmission client (e.g. http://localhost:9091)":[null,""],"URL to your Deluge client (e.g. http://localhost:8112)":[null,""],"IP or Hostname of your Deluge Daemon (e.g. scgi://localhost:58846)":[null,""],"URL to your Synology DS client (e.g. http://localhost:5000)":[null,""],"URL to your rTorrent client (e.g. scgi://localhost:5000 <br> or https://localhost/rutorrent/plugins/httprpc/action.php)":[null,""],"URL to your qBittorrent client (e.g. http://localhost:8080)":[null,""],"URL to your MLDonkey (e.g. http://localhost:4080)":[null,""],"URL to your putio client (e.g. http://localhost:8080)":[null,""],"<a herf=\"https://app.put.io/oauth/apps/new\" target=\"_blank\"> Create a new OAuth app for put.io</a>":[null,""],"Put.io Parent Folder":[null,""],"Put.io OAuth Token":[null,""],"Show Episodes":[null,"Епизоди на сериал"],"Hide Episodes":[null,""],"Select Show Location":[null,""],"Select Unprocessed Episode Folder":[null,""],"DELETED":[null,""],"Resume updating the log on this page.":[null,""],"Pause updating the log on this page.":[null,""],"searching {searchingFor}...":[null,""],"search timed out, try again or try another indexer":[null,""],"loading folders...":[null,""],"Loading...":[null,"Зареждане..."],"You have reached this page by accident, please check the url.":[null,"Вие сте достигнали до тази страница по погрешка, моля проверете URL адреса."],"A mako error has occured.<br>\n If this happened during an update a simple page refresh may be the solution.<br>\n Mako errors that happen during updates may be a one time error if there were significant ui changes.":[null,"Възникна е грешка в Mako.<br>\n Ако това се е случило по време на актуализация, опресняване на страницата може да бъде решение на проблема.<br>\n Mako грешки, които се случват по време на актуализации може да бъдат еднократно събитие ако са настъпили значителни промени в потребителския интерфейс."],"Show/Hide Error":[null,"Показване/скриване на грешка"],"Add New Show":[null,"Добавяне на нов сериал"],"For shows that you haven't downloaded yet, this option finds a show on theTVDB.com, creates a directory for it's episodes, and adds it to SickRage.":[null,"За предавания, които не сте изтеглили все още, тази опция намира предаване от theTVDB.com, създава директория за епизодите и я добавя към SickRage."],"Add From Trakt Lists":[null,"Добави от Trakt списъци"],"For shows that you haven't downloaded yet, this option lets you choose from a show from one of the Trakt lists to add to SickRage.":[null,"За предавания, които не сте изтеглили все още, тази опция ви позволява да изберете предаване от един от списъците в Trakt, и го добавя към SickRage."],"Add From IMDB's Popular Shows":[null,"Добави популярни предавания от IMDB"],"View IMDB's list of the most popular shows. This feature uses IMDB's MOVIEMeter algorithm to identify popular TV Series.":[null,"Преглед на списъка от най-популярните предавания в IMDB. Тази възможност използва алгоритъм на IMDB MOVIEMeter за идентифициране на популярни Телевизионни сериали."],"Add Existing Shows":[null,"Добавяне на съществуващи сериали"],"Use this option to add shows that already have a folder created on your hard drive. SickRage will scan your existing metadata/episodes and add the show accordingly.":[null,"Използвайте тази опция, за да добавите предавания, за които вече има създадена папка на вашия твърд диск. SickRage ще сканира вашите съществуващи метаданни/епизоди и ще добавете съответното предаване."],"Add Existing Show":[null,"Добавяне на съществуващ сериал"],"Manage Directories":[null,"Управление на директории"],"Customize Options":[null,"Персонализиране на опции"],"SickRage can add existing shows, using the current options, by using locally stored NFO/XML metadata to eliminate user interaction. If you would rather have SickRage prompt you to customize each show, then use the checkbox below.":[null,"SickRage може да добави съществуващи предавания използвайки текущите опции, с помощта на локално съхранени NFO/XML мета-данни за пропускане на потребителското взаимодействие. Ако предпочитате SickRage да ви пита да персонализирате всяко отделно предаване, моля сложете отметка в квадратчето по-долу."],"Prompt me to set settings for each show":[null,"Питай ме да задам настройки за всеки отделен сериал"],"Displaying folders within these directories which aren't already added to SickRage":[null,"Показване на папки в рамките на тези директории, които не са добавени вече към SickRage"],"Submit":[null,"Изпрати"],"Find a show on theTVDB":[null,"Намерете сериал в theTVDB"],"Show retrieved from existing metadata":[null,"Сериал извлечен от съществуващите метаданни"],"All Indexers":[null,"Всички източници"],"Search":[null,"Търси"],"This will only affect the language of the retrieved metadata file contents and episode filenames.":[null,"Това ще повлияе само на езика на съдържанието на файла с извлечените метаданни и имена на епизоди."],"This <b>DOES NOT</b> allow SickRage to download non-english TV episodes!":[null,"Това <b>НЕ ПОЗВОЛЯВА</b> на SickRage да изтегля не-английски Телевизионни епизоди!"],"Pick the parent folder":[null,"Изберете родителската папка"],"Pre-chosen Destination Folder":[null,"Предварително избраната целева папка"],"Customize options":[null,"Персонализиране на опции"],"Add Show":[null,"Добави предаване"],"Skip Show":[null,"Спропусни предаване"],"Sort By":[null,"Сортирай по"],"Name":[null,"Име"],"Original":[null,"Произход"],"Votes":[null,"Гласове"],"Rating":[null,"Рейтинг"],"Rating > Votes":[null,"Рейтинг > Гласове"],"Sort Order":[null,"Ред на сортиране"],"Asc":[null,"Възходящо"],"Desc":[null,"Низходящо"],"Fetching of IMDB Data failed. Are you online?":[null,"Извличане на IMDB данни неуспешно. Дали сте онлайн?"],"Exception":[null,"Изключение"],"Select Trakt List":[null,"Изберете Trakt списък"],"Most Anticipated":[null,"Най-очакваните"],"Trending":[null,"Тенденции"],"Popular":[null,"Полулярни"],"Most Watched":[null,"Най-гледани"],"Most Played":[null,"Най-пускани"],"Most Collected":[null,"Най-много събирани"],"Recommended":[null,"Препоръчани"],"Toggle navigation":[null,"Превключи навигация"],"Profile":[null,"Профил"],"JSONP":[null,"JSONP"],"Back to SickRage":[null,"Обратно към SickRage"],"Parameters":[null,"Параметри"],"Required":[null,"Задължително"],"Description":[null,"Описание"],"Type":[null,"Тип"],"Default value":[null,"Стойност по подразбиране"],"Allowed values":[null,"Позволени стойности"],"Playground":[null,"Playground"],"Clear":[null,"Изчисти"],"Yes":[null,"да"],"No":[null,"Не"],"season":[null,"сезон"],"episode":[null,"епизод"],"Python Version":[null,"Python версия"],"SSL Version":[null,"SSL версия"],"OS":[null,"ОС"],"Locale":[null,"Език"],"User":[null,"Потребител"],"Program Folder":[null,"Програмна папка"],"Config File":[null,"Конфигурационен файл"],"Database File":[null,"Файл с база данни"],"Cache Folder":[null,"Папка за кеширане"],"Log Folder":[null,"Log папка"],"Arguments":[null,"Аргументи"],"Web Root":[null,"Web Root"],"Website":[null,"Уебсайт"],"Wiki":[null,"Wiki"],"Source":[null,"Source"],"IRC Chat":[null,"IRC чат"],"AnimeDB Settings":[null,"AnimeDB настройки"],"Look & Feel":[null,"Изглед & усещане"],"AniDB is non-profit database of anime information that is freely open to the public":[null,"AniDB е нестопанска база данни на аниме информация, която е свободно отворена за обществеността"],"Enable":[null,"Включи"],"should SickRage use data from AniDB?":[null,"трябва ли SickRage да използва данни от AniDB?"],"AniDB Username":[null,"AniDB потребителско име"],"username of your AniDB account":[null,"потребителско име на вашия AniDB акаунт"],"AniDB Password":[null,"AniDB парола"],"password of your AniDB account":[null,"парола на вашия AniDB акаунт"],"AniDB MyList":[null,"AniDB MyList"],"do you want to add the PostProcessed episodes to the MyList?":[null,"искате ли да добавите обработените епизоди към MyList?"],"Look and Feel":[null,"Изглед и усещане"],"How should the anime functions show and behave.":[null,"Визия и управление на аниме функциите."],"Split show lists":[null,"Разделен списък с предавания"],"separate anime and normal shows in groups":[null,"отдели аниме и нормалните предавания в групи"],"Split in tabs":[null,"Раздели в раздели"],"use tabs for when splitting show lists":[null,""],"Restore":[null,"Възстанови"],"Backup your main database file and config.":[null,"Архивиране на вашия файл с основната база данни и настройки."],"Select the folder you wish to save your backup file to":[null,"Изберете папката, в която желаете да запишете архивния файл"],"Restore your main database file and config.":[null,"Възстанови файлът с основната база данни и настройките."],"Select the backup file you wish to restore":[null,"Изберете архивния файл, който искате да възстановите"],"Misc":[null,"Разни"],"Interface":[null,"Интерфейс"],"Advanced Settings":[null,"Разширени настройки"],"Startup options. Indexer options. Log and show file locations.":[null,"Опции за стартиране. Опции за индексиране. Местоположенията на Log и файловете на предаванията."],"Some options may require a manual restart to take effect.":[null,"Някои настройки може да се нуждаят от ръчно рестартиране на SickRage, за да влязат в сила."],"Default Indexer Language":[null,"Език по подразбиране за индексатор"],"for adding shows and metadata providers":[null,"за добавяне на предавания и доставчици на метаданни"],"Launch browser":[null,"Стартиране на браузъра"],"open the SickRage home page on startup":[null,"отвори началната страница на SickRage при стартиране"],"Initial page":[null,"Начална страница"],"Shows":[null,"Предавания"],"when launching SickRage interface":[null,"при стартирането на SickRage интерфейс"],"Choose hour to update shows":[null,"Изберете час за актуализиране на предаванията"],"with information such as next air dates, show ended, etc. Use 15 for 3pm, 4 for 4am etc.":[null,"с информация относно следващите дати за излъчване, дата на приключване и др. Използвайте 15 за 3 часа следобяд, 4 за 4 часа сутринта и т.н."],"note":[null,"бележка"],"minutes are randomized each time SickRage is started":[null,"минути се избират произволно при всяко стартиране на SickRage"],"Send to trash for actions":[null,"Изпрати в кошчето за действия"],"when using show \"Remove\" and delete files":[null,"когато използвате \"Премахване\" на предаване и изтриване на файлове"],"on scheduled deletes of the oldest log files":[null,"планирано изтриване на най-старите Log файлове"],"selected actions use trash (recycle bin) instead of the default permanent delete":[null,"избраните действия използват trash (кошче) вместо по подразбиране постоянно изтриване"],"Log file folder location":[null,"Местоположение на папката с Log файл"],"Number of Log files saved":[null,"Брой записани Log файлове"],"number of log files saved when rotating logs (default: 5) (REQUIRES RESTART)":[null,"брой Log файлове, записани при въртене на файловете (по подразбиране: 5) (ИЗИСКВА СЕ РЕСТАРТИРАНЕ)"],"Size of Log files saved":[null,"Размер на записаните Log файлове"],"maximum size in MB of the log file (default: 1MB) (REQUIRES RESTART)":[null,"максималният размер в МБ на Log файл (по подразбиране: 1MB) (ИЗИСКВА СЕ РЕСТАРТИРАНЕ)"],"Use initial indexer set to":[null,"Задай първоначален индексатор да е"],"as the default selection when adding new shows":[null,"като избор по подразбиране когато се добавя ново предаване"],"Timeout show indexer at":[null,""],"seconds of inactivity when finding new shows (default:20)":[null,"секунди без действие при намиране на нови предавания (по подразбиране: 20)"],"Show root directories":[null,"Покажи root директории"],"where the files of shows are located":[null,"където се намират файловете на предавания"],"Save Changes":[null,"Запиши промените"],"Options for software updates.":[null,"Опции за софтуерни актуализации."],"Check software updates":[null,"Провери за обновяване"],"and display notifications when updates are available. Checks are run on startup and at the frequency set below*":[null,"и покажи съобщение при наличие на обновление. Проверките се задействат при стартиране и с избраната по-долу честота*"],"Automatically update":[null,"Автоматична актуализация"],"fetch and install software updates. Updates are run on startup and in the background at the frequency set below*":[null,"свали и инсталирай софтуерни актуализации. Процесът по актуализация да се задейства при стартиране и във фонов режим с честотата, определена по-долу *"],"Check the server every*":[null,"Проверете сървъра на всеки *"],"hours for software updates (default:1)":[null,"часа за софтуерни актуализации (по подразбиране:1)"],"Notify on software update":[null,"Уведоми за актуализация на софтуера"],"send a message to all enabled notifiers when SickRage has been updated":[null,"Изпрати съобщение до всички разрешени услуги за уведомление, когато SickRage е бил актуализиран"],"User Interface":[null,"Потребителски интерфейс"],"Options for visual appearance.":[null,"Опции за външния вид."],"Interface Language":[null,"Език на интерфейса"],"System Language":[null,"Системен език"],"for appearance to take effect, save then refresh your browser":[null,"за да влязат в сила промените, запишете и след това презаредете наново страницата"],"Display theme":[null,"Тема"],"Dark":[null,"Тъмна"],"Light":[null,"Светла"],"Use a background image":[null,"Използвай фоново изображение"],"use a custom image as background for SickRage":[null,"използвай на персонализирано изображение като фон за SickRage"],"Background Path":[null,"Папка на изображение за фон"],"Path to the background image":[null,"Път към фоново изображение"],"Show fanart in the background":[null,"Покажи fanart във фонов режим"],"on the show summary page":[null,"на страницата с обощението за сериала"],"Fanart transparency":[null,"Fanart прозрачност"],"transparency of the fanart in the background":[null,"прозрачност на fanart във фонов режим"],"Use a custom stylesheet file":[null,""],"use a custom .css file to style SickRage (for advanced users)":[null,""],"Stylesheet File Path":[null,""],"Path to the stylesheet (.css) file":[null,""],"Show all seasons":[null,"Покажи всички сезони"],"Sort with \"The\", \"A\", \"An\"":[null,"Сортиране с \"The\", \"A\", \"An\""],"include articles (\"The\", \"A\", \"An\") when sorting show lists":[null,"включва и (\"The\", \"A\", \"An\") при сортиране на списъци"],"Missed episodes range":[null,"Диапазон на пропуснати епизоди"],"set the range in days of the missed episodes in the Schedule page":[null,"задайте диапазона в дни на пропуснати епизоди в страницата с графика"],"Display fuzzy dates":[null,"Показване на неясни дати"],"move absolute dates into tooltips and display e.g. \"Last Thu\", \"On Tue\"":[null,"премести абсолютна дати в пояснения и покажете например \"посл. Четв.\", \"в Четв.\""],"Trim zero padding":[null,"Премахни нулата"],"remove the leading number \"0\" shown on hour of day, and date of month":[null,"премахни \"0\" от показваните час от деня, и ден от месеца"],"Date style":[null,"Стил на дата"],"Use System Default":[null,"Настройка по подразбиране"],"Time style":[null,"Стил на час"],"seconds are only shown on the History page":[null,"секундите са показват само на страницата с история"],"Timezone":[null,"Часовата зона"],"Local":[null,"Локално"],"Network":[null,"ТВ Мрежа"],"display dates and times in either your timezone or the shows network timezone":[null,"показвай на дати и часове във вашата часовата зона или оригиналната часовата зона на излъчване"],"use local timezone to start searching for episodes minutes after show ends (depends on your dailysearch frequency)":[null,"използвайте местната часова зона за да започне търсенето на епизоди минути след излъчването на серията (зависи от вашите настройки за честота на дневно търсене)"],"Download url":[null,"Изтегляне url"],"URL where the shows can be downloaded.":[null,"URL адрес, от където предаванията могат да бъдат изтеглени."],"Web Interface":[null,"Уеб интерфейс"],"it is recommended that you enable a username and password to secure SickRage from being tampered with remotely.":[null,"препоръчително е да зададете потребителско име и парола, за да се защитите SickRage от дистанционно посегателство."],"these options require a manual restart to take effect.":[null,"тези настройки изискват ръчно рестартиране, за да влязат в сила."],"API key":[null,"API ключ"],"used to give 3rd party programs limited access to SickRage":[null,"използван за даване на ограничен достъп до SickRage на външни програми"],"you can try all the features of the API":[null,"Можете да тествате всички функции на API"],"here":[null,"тук"],"HTTP logs":[null,"HTTP logs"],"enable logs from the internal Tornado web server":[null,"разреши log от вградения Tornado уеб сървър"],"HTTP username":[null,"HTTP потребителско име"],"set blank for no login":[null,"задайте празно за ограничение на влизането"],"HTTP password":[null,"HTTP парола"],"blank = no authentication":[null,"празен = няма удостоверяване"],"HTTP port":[null,"HTTP порт"],"web port to browse and access SickRage (default:8081)":[null,"уеб порт за разглеждате и достъп до SickRage (по подразбиране:8081)"],"Notify on login":[null,"Уведоми при вход"],"enable to be notified when a new login happens in webserver":[null,"активирайте за да бъдете уведомявани, когато се осъществи нов вход в уеб сървъра"],"Listen on IPv6":[null,"Слушайте на IPv6"],"attempt binding to any available IPv6 address":[null,"опит за свързване с всеки наличен IPv6 адрес"],"Enable HTTPS":[null,"Активирате на HTTPS"],"enable access to the web interface using a HTTPS address":[null,"разрешаване на достъп до уеб интерфейсът с помощта на HTTPS адрес"],"HTTPS certificate":[null,"HTTPS сертификат"],"file name or path to HTTPS certificate":[null,"името на файла или път към HTTPS сертификат"],"HTTPS key":[null,"HTTPS ключ"],"file name or path to HTTPS key":[null,"името на файла или път към HTTPS ключ"],"Reverse proxy headers":[null,"Reverse proxy headers"],"accept the following reverse proxy headers (advanced)...":[null,"приемай следните reverse proxy headers (за напреднали)..."],"(X-Forwarded-For, X-Forwarded-Host, and X-Forwarded-Proto)":[null,"(X-Forwarded-For, X-Forwarded-Host, and X-Forwarded-Proto)"],"CPU throttling":[null,"CPU ограничение"],"Normal (default). High is lower and Low is higher CPU use":[null,"Нормален (по подразбиране). Висок е по-ниско и Нисък е по-високо натоварване на CPU"],"Anonymous redirect":[null,"Анонимно пренасочване"],"backlink protection via anonymizer service, must end in \"?\"":[null,"backlink защита чрез услуга за анонимност, трябва да завършва с \"?\""],"Enable debug":[null,"Активирай debug режим"],"enable debug logs":[null,"разрешаване debug logs"],"Verify SSL Certs":[null,"Проверка на SSL сертификати"],"verify SSL Certificates (Disable this for broken SSL installs (Like QNAP))":[null,"проверка на SSL сертификати (забрани при счупена SSL инсталация (като QNAP))"],"No Restart":[null,"Без рестартиране"],"only shutdown when restarting SR":[null,"само спирай напълно кога рестартира SR"],"only select this when you have external software restarting SR automatically when it stops (like FireDaemon)":[null,"изберете това само, когато имате външен софтуер, който рестартира SR автоматично, когато той спре (като FireDaemon)"],"Encrypt passwords":[null,"Шифроване на паролите"],"in the <code>config.ini</code> file":[null,"в файла <code>config.ini</code>"],"warning":[null,"внимание"],"passwords must only contain":[null,"паролите трябва да съдържат само"],"ASCII characters":[null,"ASCII знаци"],"Unprotected calendar":[null,"Незащитен календар"],"allow subscribing to the calendar without user and password":[null,"позволи абониране за календара без потребителско име и парола"],"some services like Google Calendar only work this way":[null,"някои услуги като Google Календар работят само по този начин"],"Google Calendar Icons":[null,"Google Календар икони"],"show an icon next to exported calendar events in Google Calendar":[null,"покажи икона до експортираните календарни събития в Google Календар"],"Proxy host":[null,"Прокси хост"],"blank to disable or proxy to use when connecting to providers":[null,"празно за деактивиране, или прокси сървър, който да се използва при свързване към доставчици"],"also use global proxy setting for indexers (tvdb, xem, anidb, etc.)":[null,"също така използвай глобални прокси настройки за индексаторите (tvdb, xem, anidb и др.)"],"Skip Remove Detection":[null,"Пропусни откриването на премахнати"],"skip detection of removed files":[null,"пропусни откриване на премахнати файлове"],"if disabled the episode will be set to the default deleted status":[null,""],"Default deleted episode status":[null,"Статус по подразбиране на изтрити епизоди"],"define the status to be set for media file that has been deleted.":[null,"задаване на статус, който да бъде зададен, за вече изтрити медийни файлове."],"Archived option will keep previous downloaded quality":[null,"Избира за архивиране ще запази прешното изтеглено качество"],"example: Downloaded (1080p WEB-DL) ==> Archived (1080p WEB-DL)":[null,"пример: Изтеглен (1080p WEB-DL) ==> Архивиран (1080p WEB-DL)"],"Options for github related features.":[null,"Опции за github свързани функции."],"Branch version":[null,"Версия на branch"],"error: No branches found.":[null,"грешка: Няма намерени branch."],"select branch to use (restart required)":[null,"избор на използван клон (branch) (изисква се рестартиране)"],"Authorization Type":[null,"Тип на удостоверяване"],"Username and password":[null,"Потребителско име и парола"],"Personal access token":[null,""],"You must use a personal access token if you're using \"two-factor authentication\" on GitHub.":[null,""],"GitHub username":[null,"GitHub потребителско име"],"*** (REQUIRED FOR SUBMITTING ISSUES) ***":[null,"*** (ИЗИСКВА СЕ ЗА ПОДАВАНЕ НА СИГНАЛИ ЗА ПРОБЛЕМИ) ***"],"GitHub password":[null,"GitHub парола"],"GitHub personal access token":[null,""],"Generate Token":[null,""],"Manage Tokens":[null,""],"GitHub remote for branch":[null,"GitHub дистанционен достъп до клон"],"access repo configured remotes (save then refresh browser)":[null,"настроен дистанционен достъп на repo (запазете и презаредете броузъра)"],"default":[null,"по подразбиране"],"origin":[null,"произход"],"Git executable path":[null,"Git път до изпълнимия файл"],"only needed if OS is unable to locate git from env":[null,"необходим е само ако OС не може да локализира git в системата"],"Git reset":[null,"Git нулиране"],"removes untracked files and performs a hard reset on git branch automatically to help resolve update issues":[null,""],"Home Theater / NAS":[null,"Home Theater / NAS"],"Devices":[null,"Устройства"],"Social":[null,"Социални"],"A free and open source cross-platform media center and home entertainment system software with a 10-foot user interface designed for the living-room TV.":[null,""],"send KODI commands?":[null,"изпрати KODI команди?"],"Always on":[null,"Винаги вкл."],"log errors when unreachable?":[null,"регистъра грешки при недостъпност?"],"Notify on snatch":[null,"Уведомяване при намиране"],"send a notification when a download starts?":[null,"изпрати уведомление, когато започне изтеглянето?"],"Notify on download":[null,"Уведомяване при изтегляне"],"send a notification when a download finishes?":[null,"изпрати уведомление, когато изтеглянето завърши?"],"Notify on subtitle download":[null,"Уведомяване при изтегляне на субтитри"],"send a notification when subtitles are downloaded?":[null,"изпрати уведомление, когато субтитрите са изтеглени?"],"Update library":[null,"Актуализирай библиотеката"],"update KODI library when a download finishes?":[null,"актуализира библиотеката на KODI когато изтеглянето завърши?"],"Full library update":[null,"Пълна актуализация на библиотеката"],"perform a full library update if update per-show fails?":[null,"извършите пълна актуализация на библиотека, ако обновяванто на отделни сериали пропадне?"],"Only update first host":[null,"Актуализация само на първия адрес"],"only send library updates to the first active host?":[null,"изпрти актуализация на библиотеката само на първия активен хост?"],"KODI IP:Port":[null,"KODI IP: порт"],"host running KODI (eg. 192.168.1.100:8080)":[null,"адрес с активен KODI (напр. 192.168.1.100:8080)"],"(multiple host strings must be separated by commas)":[null,"(множество адреси трябва да бъдат разделени със запетаи)"],"Username":[null,"Потребител"],"username for your KODI server (blank for none)":[null,"потребителско име за вашия KODI сървър (празен за без)"],"Password":[null,"Парола"],"password for your KODI server (blank for none)":[null,"парола за вашия KODI сървър (празен за без)"],"Click below to test.":[null,"Щракнете по-долу, за да тествате."],"Experience your media on a visually stunning, easy to use interface on your Mac connected to your TV. Your media library has never looked this good!":[null,"Изживейте вашата медия по визуално зашеметяващ начин, с лесен за използване интерфейс на вашия Mac, свързан към вашия Телевизор. Вашата медийна библиотека никога не е изглеждала толкова добре!"],"For sending notifications to Plex Home Theater (PHT) clients, use the KODI notifier with port <b>3005</b>.":[null,"За изпращане на уведомления до Plex Home Theater (PHT) клиенти, използвайте KODI нотификатор с порт <b>3005</b>."],"send Plex Media Server library updates?":[null,"Да изпраща ли заявки за актуализация на библиотеката на Plex Media Server?"],"Plex Media Server Auth Token":[null,"Plex Media Server Auth Token"],"auth token used by Plex":[null,"auth token използван от plex"],"Update Library":[null,"Актуализирай библиотека"],"update Plex Media Server library when a download finishes":[null,"актуализирай библиотеката на Plex Media Server, когато изтеглянето завърши"],"Plex Media Server IP:Port":[null,"Plex Media Server IP:Port"],"one or more hosts running Plex Media Server<br/>(eg. 192.168.1.1:32400, 192.168.1.2:32400)":[null,"един или повече адреси с работещ Plex Media Server<br/>(напр. 192.168.1.1:32400, 192.168.1.2:32400)"],"HTTPS":[null,"HTTPS"],"use https for plex media server requests?":[null,"използване на https за заявки към plex media server?"],"Click below to test Plex Media Server(s)":[null,"Натиснете долу, за да тествате Plex Media Server(s)"],"Test Plex Media Server":[null,"Тествай Plex Media Server"],"Plex Home Theater":[null,"Plex Home Theater"],"send Plex Home Theater notifications?":[null,"Да изпраща ли уведомления до Plex Home Theater?"],"Plex Home Theater IP:Port":[null,"Plex Home Theater IP:Port"],"one or more hosts running Plex Home Theater<br>(eg. 192.168.1.100:3000, 192.168.1.101:3000)":[null,"един или повече адреси с работещ Plex Home Theater<br>(напр. 192.168.1.100:3000, 192.168.1.101:3000)"],"Click below to test Plex Home Theater(s)":[null,"Натиснете долу, за да тествате Plex Home Theater(s)"],"Test Plex Home Theater":[null,"Тествай Plex Home Theater"],"some Plex Home Theaters <b class=\"boldest\">do not</b> support notifications e.g. Plexapp for Samsung TVs":[null,"забележка: някои Plex Home Theaters <b class=\"boldest\">не</b> поддържат известия, например Plex за телевизори Samsung"],"Emby":[null,"Emby"],"A home media server built using other popular open source technologies.":[null,"Домашен медия сървър изграден с помощта на други популярни технологии с отворен код."],"send update commands to Emby?":[null,"изпрати команда за актуализация към Emby?"],"Emby IP:Port":[null,"Emby IP: порт"],"host running Emby (eg. 192.168.1.100:8096)":[null,"адресс активен Emby (напр. 192.168.1.100:8096)"],"Emby API Key":[null,"Emby API ключ"],"Networked Media Jukebox":[null,"Мрежов Media Jukebox"],"The Networked Media Jukebox, or NMJ, is the official media jukebox interface made available for the Popcorn Hour 200-series.":[null,"Мрежовия Media Jukebox, или NMJ, е официален медиен джубокс интерфейс предоставен за серия Popcorn Hour 200."],"send update commands to NMJ?":[null,"изпрати команда за актуализация към NMJ?"],"Popcorn IP address":[null,"Popcorn IP адрес"],"IP address of Popcorn 200-series (eg. 192.168.1.100)":[null,"IP адрес на серия Popcorn 200 (напр. 192.168.1.100)"],"Get settings":[null,"Получи настройки"],"Get Settings":[null,"Получи настройки"],"the Popcorn Hour device must be powered on and NMJ running.":[null,"Устройството Popcorn Hour трябва да бъде включено и NMJ да работи."],"NMJ database":[null,"NMJ база данни"],"automatically filled via the 'Get Settings' button.":[null,"автоматично попълнени чрез бутона \"Получи настройки\"."],"NMJ mount url":[null,"NMJ mount url"],"Networked Media Jukebox v2":[null,"Мрежов Media Jukebox v2"],"The Networked Media Jukebox, or NMJv2, is the official media jukebox interface made available for the Popcorn Hour 300 & 400-series.":[null,"Мрежовия Media Jukebox v2, или NMJv2, е официален медиен джубокс интерфейс предоставен за серии Popcorn Hour 300 и 400."],"send update commands to NMJv2?":[null,"изпрати команда за актуализация към NMJv2?"],"IP address of Popcorn 300/400-series (eg. 192.168.1.100)":[null,"IP адрес на серия Popcorn 300/400 (напр. 192.168.1.100)"],"Database location":[null,"Database местоположение"],"Database instance":[null,"Database instance"],"adjust this value if the wrong database is selected.":[null,"применете тази стойност, ако е избрана погрешна база данни."],"Find database":[null,"Намери база данни"],"Find Database":[null,"Намери база данни"],"the Popcorn Hour device must be powered on.":[null,"устройството Popcorn Hour трябва да бъде включено."],"NMJv2 database":[null,"NMJv2 база данни"],"automatically filled via the 'Find Database' buttons.":[null,"автоматично попълнени чрез бутона \"Намери базата данни\"."],"Synology":[null,"Synology"],"The Synology DiskStation NAS.":[null,"Synology DiskStation NAS."],"Synology Indexer is the daemon running on the Synology NAS to build its media database.":[null,"Synology индексатор е демон, активен на Synology NAS за изграждане на своята мултимедийна база данни."],"send Synology notifications?":[null,"изпрати Synology уведомления?"],"requires SickRage to be running on your Synology NAS.":[null,"изисква SickRage да работи на вашия Synology NAS."],"Synology Indexer":[null,"Synology индексатор"],"Synology Notifier is the notification system of Synology DSM":[null,"Synology Notifier е системата за уведомяване на Synology DSM"],"send notifications to the Synology Notifier?":[null,"изпращане на известия до уведомителя Synology?"],"pyTivo":[null,"pyTivo"],"pyTivo is both an HMO and GoBack server. This notifier will load the completed downloads to your Tivo.":[null,"pyTivo е едновременно HMO и GoBack сървър. Този нотификатор ще зареди завършените изтегляния на вашия Tivo."],"send notifications to pyTivo?":[null,"изпрати известия към pyTivo?"],"requires the downloaded files to be accessible by pyTivo.":[null,"изисква изтеглените файлове да бъдат достъпни от pyTivo."],"pyTivo IP:Port":[null,"pyTivo IP:Port"],"host running pyTivo (eg. 192.168.1.1:9032)":[null,"адрес с активен pyTivo (напр. 192.168.1.1:9032)"],"pyTivo share name":[null,"pyTivo име на споделянето"],"value used in pyTivo Web Configuration to name the share.":[null,"стойност, използвана в pyTivo уеб конфигурацията за име на споделяне."],"Tivo name":[null,"TiVo име"],"(Messages & Settings > Account & System Information > System Information > DVR name)":[null,"(Messages & Settings > Account & System Information > System Information > DVR name)"],"Growl":[null,"Growl"],"A cross-platform unobtrusive global notification system.":[null,"Крос-платформена ненатрапчива глобална система за уведомяване."],"send Growl notifications?":[null,"изпращане на Growl уведомления?"],"Growl IP:Port":[null,"Growl IP: порт"],"host running Growl (eg. 192.168.1.100:23053)":[null,"адрес с активен Growl (напр. 192.168.1.100:23053)"],"may leave blank if SickRage is on the same host.":[null,"може да оставите празно, ако SickRage е на същия хост."],"otherwise Growl <b>requires</b> a password to be used.":[null,""],"Click below to register and test Growl, this is required for Growl notifications to work.":[null,""],"Register Growl":[null,"Регистрирай Growl"],"Prowl":[null,"Prowl"],"A Growl client for iOS.":[null,"Growl клиент за iOS."],"send Prowl notifications?":[null,"изпращане на Prowl уведомления?"],"Prowl Message Title":[null,"Заглавие на съобщение за Prowl"],"Global Prowl API key(s)":[null,"Глобални Prowl API ключ(ове)"],"Prowl API(s) listed here, separated by commas if applicable, will<br> receive notifications for <b>all</b> shows. Your Prowl API key is available at:":[null,""],"(this field may be blank except when testing.)":[null,"(това поле може да бъде празно, освен когато тествате.)"],"Show notification list":[null,"Списък с предавания за известяване"],"-- Select a Show --":[null,"-- Избери предаване --"],"Configure per-show notifications here by entering Prowl API key(s), separated by commas, '\n 'after selecting a show in the drop-down box. Be sure to activate the 'Save for this show' '\n 'button below after each entry.":[null,""],"Save for this show":[null,"Запази за това предаване"],"Prowl priority":[null,"Prowl приоритет"],"Very Low":[null,"Много нисък"],"Moderate":[null,"Умерен"],"Normal":[null,"Нормален"],"High":[null,"Висок"],"Emergency":[null,"Авариен режим"],"priority of Prowl messages from SickRage.":[null,"приоритет на Prowl съобщения от SickRage."],"Libnotify":[null,"Libnotify"],"The standard desktop notification API for Linux/*nix systems. This notifier will only function if the pynotify module is installed (Ubuntu/Debian package <a href=\"apt:python-notify\">python-notify</a>).":[null,"Стандартното АPI за десктоп уведомления за Linux/*nix системи. Този нотификатор ще функционира само ако модулът pynotify е инсталиран (Ubuntu/Debian пакет <a href=\"apt:python-notify\">python-notify</a>)."],"send Libnotify notifications?":[null,"изпрати Libnotify уведомления?"],"Pushover":[null,"Pushover"],"Pushover makes it easy to send real-time notifications to your Android and iOS devices.":[null,"Pushover прави лесно изпращането в реално време на известия към вашите Android и iOS устройства."],"send Pushover notifications?":[null,"изпрати Pushover уведомления?"],"Pushover key":[null,"Pushover ключ"],"user key of your Pushover account":[null,"потребител ключ на Pushover акаунт"],"Pushover API key":[null,"Pushover API ключ"],"click here":[null,""]," to create a Pushover API key":[null,""],"Pushover devices":[null,"Pushover устройства"],"comma separated list of pushover devices you want to send notifications to":[null,"списък на pushover устройствата, разделени със запетая, до които искате да изпратите известия"],"Pushover notification sound":[null,"Pushover звук за съобщаване"],"Bike":[null,"Bike"],"Bugle":[null,"Bugle"],"Cash Register":[null,"Cash Register"],"Classical":[null,"Classical"],"Cosmic":[null,"Cosmic"],"Falling":[null,"Falling"],"Gamelan":[null,"Gamelan"],"Incoming":[null,"Incoming"],"Intermission":[null,"Intermission"],"Magic":[null,"Magic"],"Mechanical":[null,"Mechanical"],"Piano Bar":[null,"Piano Bar"],"Siren":[null,"Siren"],"Space Alarm":[null,"Space Alarm"],"Tug Boat":[null,"Tug Boat"],"Alien Alarm (long)":[null,"Alien Alarm (long)"],"Climb (long)":[null,"Climb (long)"],"Persistent (long)":[null,"Persistent (long)"],"Pushover Echo (long)":[null,"Pushover Echo (long)"],"Up Down (long)":[null,"Up Down (long)"],"None (silent)":[null,"None (silent)"],"Device specific":[null,"Специфично за устройството"],"choose notification sound to use":[null,"изберете звук за уведомяване"],"Pushover priority":[null,"Pushover приоритет"],"Choose priority to use":[null,"Изберете приоритет за използване"],"Boxcar 2":[null,"Boxcar 2"],"Read your messages where and when you want them!":[null,"Четете съобщенията където и когато си искате!"],"send Boxcar notifications?":[null,"изпращане на Boxcar уведомления?"],"Boxcar2 access token":[null,"Boxcar2 token за достъп"],"access token for your Boxcar account.":[null,"token за достъп за вашия Boxcar акаунт."],"NMA":[null,"NMA"],"Notify My Android":[null,"Уведоми моя Андроид"],"Notify My Android is a Prowl-like Android App and API that offers an easy way to send notifications from your application directly to your Android device.":[null,"Уведоми че моят Андроид е Prowl-подобно приложение за Андроид и е с API, който предлага лесен начин за изпращане на уведомления от вашето приложение директно на вашето Андроид устройство."],"send NMA notifications?":[null,"изпращане на NMA уведомления?"],"NMA API key":[null,"NMA API ключ"],"(multiple keys must be separated by commas, up to a maximum of 5)":[null,"(повече от един ключове трябва да бъдат разделени със запетаи, максимум до 5)"],"NMA priority":[null,"NMA приоритет"],"priority of NMA messages from SickRage.":[null,"приоритет на NMA съобщения от SickRage."],"Pushalot":[null,"Pushalot"],"Pushalot is a platform for receiving custom push notifications to connected devices running Windows Phone or Windows 8.":[null,"Pushalot е платформа за получаване на потребителски уведомления на свързани устройства, работещи с Windows Phone или Windows 8."],"send Pushalot notifications ?":[null,"изпрати Pushalot уведомления?"],"Pushalot authorization token":[null,"Pushalot token за удостоверяване"],"authorization token of your Pushalot account.":[null,"token за удостоверяване на вашия Pushalot профил."],"Pushbullet":[null,"Pushbullet"],"Pushbullet is a platform for receiving custom push notifications to connected devices running Android/iOS and desktop browsers such as Chrome, Firefox or Opera.":[null,"Pushbullet е платформа за получаване на потребителски уведомления на свързани устройства с Андроид/iOS и десктоп браузъри като Chrome, Firefox или Opera."],"send Pushbullet notifications?":[null,"изпрати Pushbullet уведомления?"],"Pushbullet API key":[null,"Pushbullet API ключ"],"API key of your Pushbullet account":[null,"API ключ на вашия акаунт на Pushbullet"],"Pushbullet devices":[null,"Pushbullet устройства"],"Update device list":[null,"Акт. на списъка с устройства"],"Pushbullet channels":[null,"Pushbullet канали"],"Free Mobile":[null,"Free Mobile"],"Free Mobile is a famous French cellular network provider.<br> It provides to their customer a free SMS API.":[null,"Free Mobile е известен френски GSM мрежов оператор.<br> Той осигурява на своите клиенти безплатен SMS API."],"send SMS notifications?":[null,"изпращане на SMS уведомления?"],"send a SMS when a download starts?":[null,"изпрати SMS, когато започне изтеглянето?"],"send a SMS when a download finishes?":[null,"изпрати SMS, когато изтеглянето завърши?"],"send a SMS when subtitles are downloaded?":[null,"изпрати SMS, когато се изтеглят субтитри?"],"Free Mobile customer ID":[null,"Free Mobile клиентско ID"],"it's your Free Mobile customer ID (8 digits)":[null,"това е вашето Free Mobile клиентско ID (8 цифри)"],"Free Mobile API key":[null,"Free Mobile API ключ"],"find your API key in your customer portal.":[null,"намерете вашия API ключ във вашия клиентски портал."],"Click below to test your settings.":[null,"Щракнете по-долу, за да тествате настройките."],"Telegram":[null,"Telegram"],"Telegram is a cloud-based instant messaging service.":[null,"Telegram е базирана на облак услугата за съобщения."],"send Telegram notifications?":[null,"изпрати Telegram уведомления?"],"send a message when a download starts?":[null,"изпращане на съобщение, когато започне изтеглянето?"],"send a message when a download finishes?":[null,"изпращане на съобщение, когато изтеглянето завърши?"],"send a message when subtitles are downloaded?":[null,"изпращане на съобщение, когато се изтеглят субтитри?"],"User/group ID":[null,"Потребител/Група ID"],"contact @myidbot on Telegram to get an ID":[null,"свържете се с @myidbot в Telegram за да получите ID"],"Bot API token":[null,"Bot API token"],"contact @BotFather on Telegram to set up one":[null,"свържете се с @BotFather в Telegram за да създадете нов"],"Join":[null,"Join"],"Join all of your devices together!":[null,"Присъединете заедно всички ваши устройства!"],"send Join notifications?":[null,"изпращане на Join уведомления?"],"Device ID":[null,"Ид. № на устройство"],"per device specific id":[null,"на специфично id на устройство"]," to create a Join API key":[null,""],"Twilio":[null,"Twilio"],"Twilio is a webservice API that allows you to communicate directly with a mobile number. This notifier will send a text directly to your mobile device.":[null,"Twilio е API уеб услуга, която ви позволява да комуникира директно с мобилен номер. Този уведомител ще изпрати текст директно към вашето мобилно устройство."],"should SickRage text your mobile device?":[null,"да изпраща ли SickRage текст към мобилното ви устройство?"],"Twilio Account SID":[null,"Twilio Account SID"],"account SID of your Twilio account.":[null,"SID на акаунта в Twilio."],"Twilio Auth Token":[null,"Twilio Auth Token"],"Twilio Phone SID":[null,"Twilio телефонен SID"],"phone SID that you would like to send the sms from":[null,"телефонен SID, от който желаете да изпращате sms"],"Your phone number":[null,"Моят телефонен номер"],"phone number that will receive the sms. Please use the format +1-###-###-####":[null,"телефонен номер, който ще получава sms. Моля използвайте формата +1-###-###-####"],"Twitter":[null,"Twitter"],"A social networking and microblogging service, enabling its users to send and read other users' messages called tweets.":[null,""],"should SickRage post tweets on Twitter?":[null,"трябва да SickRage да публикува tweets в Twitter?"],"you may want to use a secondary account.":[null,"препоръчително е използването на втори акаунт."],"send direct message":[null,"изпрати директно съобщение"],"send a notification via Direct Message, not via status update":[null,"изпрати уведомление чрез директно съобщение (ДС) вместо чрез актуализиране на състоянието"],"send DM to":[null,"изпрати ДС на"],"Twitter account to send Direct Messages to (must follow you)":[null,"Twitter акаунт към който да изпращате директни съобщения (трябва да ви следва)"],"Step One":[null,"Първа стъпка"],"Request Authorization":[null,"Искане за разрешение"],"Click the \"Request Authorization\" button.<br> This will open a new page containing an auth key.<br> <b>note:</b> if nothing happens check your popup blocker.":[null,""],"Step Two":[null,"Втора стъпка"],"Enter the key Twitter gave you below, and click \"Verify Key\".":[null,""],"Trakt":[null,"Trakt"],"Trakt helps keep a record of what TV shows and movies you are watching. Based on your favorites, Trakt recommends additional shows and movies you'll enjoy!":[null,""],"send Trakt.tv notifications?":[null,"изпращане на Trakt.tv уведомления?"],"username of your Trakt account.":[null,"потребителското име на вашия Trakt акаунт."],"Trakt PIN":[null,"Trakt PIN"],"Get Trakt PIN":[null,"Вземи Trakt PIN"],"PIN code to authorize SickRage to access Trakt on your behalf.":[null,"ПИН код за разрешаване на SickRage за достъп до Trakt от ваше име."],"API Timeout":[null,"API Timeout"],"seconds to wait for Trakt API to respond. (Use 0 to wait forever)":[null,""],"Default indexer":[null,"Индексатор по подразбиране"],"Sync libraries":[null,"Синхронизиране на библиотеки"],"sync your SickRage show library with your trakt show library.":[null,"синхронизира предаванията от SickRage библиотеката с trakt библиотеката."],"Remove Episodes From Collection":[null,"Премахване на епизоди от колекция"],"remove an episode from your Trakt Collection if it is not in your SickRage Library.":[null,"премахване на епизод от колекция в Trakt, ако не е във вашата SickRage библиотека."],"Sync watchlist":[null,"Синхронизиране на гледаните"],"sync your SickRage show watchlist with your trakt show watchlist (either Show and Episode).":[null,""],"episode will be added on watch list when wanted or snatched and will be removed when downloaded ":[null,""],"Watchlist add method":[null,"Метод за добавяне към спъск на гледаните"],"Skip All":[null,"Пропусни всички"],"Download Pilot Only":[null,"Изтегли само пилотен епизод"],"Get whole show":[null,"Получи цялото шоу"],"method in which to download episodes for new shows.":[null,"метод, при който да изтеглите епизоди за нови предавания."],"Remove episode":[null,"Премахване на епизод"],"remove an episode from your watchlist after it is downloaded.":[null,""],"Remove series":[null,"Премахване на сезон"],"remove the whole series from your watchlist after any download.":[null,""],"Remove watched show":[null,"Премахване на гледаното предаване"],"remove the show from sickrage if it's ended and completely watched":[null,""],"Start paused":[null,"Стартиране на изчакващите"],"shows grabbed from your trakt watchlist start paused.":[null,""],"Trakt blackList name":[null,"Име на черен списък в Trakt"],"name (slug) of list on Trakt for blacklisting show on 'Add Trending Show' & 'Add Recommended Shows' pages":[null,""],"Email":[null,"Email"],"Allows configuration of email notifications on a per show basis.":[null,"Позволи настройване на имейл съобщения за отделни предавания."],"send email notifications?":[null,"изпращане на email уведомления?"],"SMTP host":[null,"SMTP хост"],"hostname of your SMTP email server.":[null,"адрес на вашия SMTP пощенски сървър."],"SMTP port":[null,"SMTP порт"],"port number used to connect to your SMTP host.":[null,"номер на порта, използван за свързване към вашия SMTP сървър."],"SMTP from":[null,"SMTP от"],"sender email address, some hosts require a real address.":[null,"имейл адрес на подателя, някои сървъри изискват реален адрес."],"Use TLS":[null,"Вкл. TLS"],"check to use TLS encryption.":[null,"изберете за използване на TLS кодиране."],"SMTP user":[null,"SMTP потребител"],"(optional) your SMTP server username.":[null,"(по избор) потребителското име за SMTP сървър."],"SMTP password":[null,"SMTP парола"],"(optional) your SMTP server password.":[null,"(по избор) парола за SMTP сървър."],"Global email list":[null,"Глобален имейл списък"],"email addresses listed here, separated by commas if applicable, will<br> receive notifications for <b>all</b> shows.":[null,"Изброените имейл адреси, ако е приложимо разделени с запетаи, ще<br> получават известия за <b>всички</b> предавания."],"(This field may be blank except when testing.)":[null,"(Това поле може да бъде празно, освен когато тествате.)"],"Email Subject":[null,"Email заглавие"],"use a custom subject for some privacy protection?":[null,"използване на заглавие по избор за ваша собствена защита?"],"(leave blank for the default SickRage subject)":[null,"(Оставете празно за SickRage заглавие по подразбиране)"],"configure per-show notifications here by entering email address(es), separated by commas,":[null,"конфигуриране на съобщаване за отделни предавания чрез въвеждането на имейл адреси, разделени с запетаи,"],"after selecting a show in the drop-down box. Be sure to activate the 'Save for this show'":[null,"след като изберете предаване от падащото меню. Изберете задължително бутона \"Запази за това предаване\""],"button below after each entry.":[null,"бутона отдолу за всеки избор."],"Slack":[null,"Slack"],"Slack brings all your communication together in one place. It's real-time messaging, archiving and search for modern teams.":[null,""],"should SickRage post messages on Slack?":[null,""],"Slack Incoming Webhook":[null,""],"Discord":[null,"Discord"],"All-in-one voice and text chat for gamers that's free, secure, and works on both your desktop and phone.":[null,""],"Should SickRage post messages on Discord?":[null,""],"Discord Incoming Webhook":[null,""],"Create webhook under channel settings.":[null,""],"Discord Bot Name":[null,""],"Blank will use webhook default Name.":[null,""],"Discord Avatar URL":[null,""],"Blank will use webhook default Avatar.":[null,""],"Discord TTS":[null,""],"Send notifications using text-to-speech":[null,""],"Post-Processing":[null,"Последващата обработка"],"Episode Naming":[null,"Именуване на епизод"],"Metadata":[null,"Метаданни"],"Settings that dictate how SickRage should process completed downloads.":[null,"Настройки, които инструктурат SickRage как трябва да обработва завършените изтегляния."],"enable the automatic post processor to scan and process any files in your Post Processing Dir":[null,"разреши автоматичната обработка на медия да сканира и обработва всички файлове във вашата Папка за обработка"],"do not use if you use an external Post Processing script":[null,""],"Post Processing Dir":[null,"Папка за последваща обработка"],"the folder where your download client puts the completed TV downloads.":[null,""],"please use seperate downloading and completed folders in your download client if possible.":[null,""],"Processing Method":[null,"Метод за обработка"],"what method should be used to put files into the library?":[null,""],"if you keep seeding torrents after they finish, please avoid the 'move' processing method to prevent errors.":[null,""],"Auto Post-Processing Frequency":[null,"Честота за автоматична последваща обработка"],"time in minutes to check for new files to auto post-process (min 10)":[null,""],"Postpone post processing":[null,"Отложи последващата обработка"],"wait to process a folder if sync files are present.":[null,"изчакай с обработката на папка докато са налични sync файлове."],"Sync File Extensions":[null,"Синхронизиране файлови разширения"],"comma seperated list of extensions or filename globs SickRage ignores when Post Processing":[null,"списък на разширения или части от имена, разделени с запетая, които SickRage да игнорира при последващата обработка"],"Rename Episodes":[null,"Преименуване на епизоди"],"rename episode using the Episode Naming settings?":[null,"преименувай епизодите спрямо настройките за Преименуване на епизоди?"],"Create missing show directories":[null,"Създай липсващите папки на предавания"],"create missing show directories when they get deleted":[null,""],"Add shows without directory":[null,"Добави предавания без папка"],"add shows without creating a directory (not recommended)":[null,"добави предавания без да създаваш папки (не е препоръчително)"],"Move associated files":[null,""],"move associated (srt/srr/sfv/etc) files while post processing?":[null,""],"Rename .nfo file":[null,"Преименуване на файл NFO"],"rename the original .nfo file to .nfo-orig to avoid conflicts?":[null,"преименуване на оригиналния файл NFO в. NFO-orig да се избегнат конфликти?"],"Associated file extensions":[null,""],"comma separated list of associated file extensions SickRage should keep while post processing.":[null,""],"leaving it empty means no associated files will be post processed":[null,""],"Delete non associated files":[null,""],"delete non associated files while post processing?":[null,""],"Change File Date":[null,"Промяна дата на файла"],"set last modified filedate to the date that the episode aired?":[null,"да задам ли дата на последна промяна на файла да е датата на излъчване на епизода?"],"some systems may ignore this feature.":[null,"някои системи могат да игнорират тази функция."],"Timezone for File Date":[null,"Часова зона за дата на файла"],"local":[null,"локално"],"network":[null,"тв мрежа"],"what timezone should be used to change File Date?":[null,"коя часовата зона трябва да се използва за промяна датата на файлът?"],"Unpack":[null,"Разархивирай"],"What to do with archived releases found in your <i>TV Download Dir</i>?":[null,""],"Ignore (do not process contents)":[null,""],"Unpack (process contents)":[null,""],"Treat as video (process archive as-is)":[null,""],"'Unpack' only works with RAR archives":[null,""],"Windows":[null,"Windows"],"WinRar is required on windows":[null,"WinRar е необходимо на windows"],"Unpack Directory":[null,""],"Choose a path to unpack files, leave blank to unpack in download dir":[null,""],"Unrar Location":[null,"Местоположение на Unrar"],"add the path to unrar if it is not in the system path":[null,"добавете на път към unrar, ако не е в системния път"],"Alternate Unrar Tool":[null,"Алтернативен Unrar инструмент"],"add the path to an alternate unrar tool if it is not in the system path":[null,"добавете на път към алтернативен unrar, ако не е в системния път"],"Delete RAR contents":[null,"Изтриване съдържанието на RAR"],"delete content of RAR files, even if Process Method not set to move?":[null,"изтриване съдържанието на RAR файловете, дори ако мотод на обработка не е зададен на преместване?"],"only working with RAR archive":[null,"работи само с RAR архив"],"Don't delete empty folders":[null,"Не изтривай празни папки"],"leave empty folders when Post Processing?":[null,"остави празни папки след последваща обработка?"],"can be overridden using manual Post Processing":[null,"може да се бъде презаписан използвайки ръчна последваща обработка"],"Follow symbolic-links":[null,""],"follow down symbolic links in download directory?":[null,""],"<b>EXPERTS ONLY.</b><br>Enable only if you know what <b>circular symbolic links</b> are,<br>and can <b>verify that you have none</b>.":[null,""],"Use icacls":[null,"Използвай icacls"],"Windows only":[null,"само Windows"],"sets video permissions after using the move method in post processing":[null,"задава права на видео файлове след използване преместване като метод за последваща обработка"],"Extra Scripts":[null,"Допълнителни скриптове"],"see":[null,"виж"],"for script arguments description and usage.":[null,"за описание на аргументите и начина на използване на скриптове."],"How SickRage will name and sort your episodes.":[null,"Как SickRage ще именува и сортира вашите епизоди."],"Name Pattern":[null,"Структура на имената"],"Toggle Naming Legend":[null,""],"don't forget to add quality pattern. Otherwise after post-processing the episode will have UNKNOWN quality":[null,""],"Meaning":[null,""],"Pattern":[null,"Модел"],"Result":[null,"Резултат"],"Use lower case if you want lower case names (eg. %sn, %e.n, %q_n etc)":[null,""],"Show Name":[null,"Име на предаване"],"Show.Name":[null,"Име.Предаване"],"Show_Name":[null,"Предаване_Име"],"Season Number":[null,"Сезон номер"],"XEM Season Number":[null,"XEM номер на сезон"],"Episode Number":[null,"Епизод номер"],"XEM Episode Number":[null,"XEM номер на епизод"],"Episode Name":[null,"Епизод име"],"Episode.Name":[null,"Епизод.име"],"Episode_Name":[null,"Епизод_име"],"Air Date":[null,"Дата излъчване"],"Post-Processing Date":[null,"Дата на обработка"],"Quality":[null,"Качество"],"Scene Quality":[null,"Качество на сцена"],"Release Name":[null,"Име на издаване"],"SickRage' is used in place of RLSGROUP if it could not be properly detected":[null,""],"Release Group":[null,"Release група"],"If episode is proper/repack add 'proper' to name.":[null,""],"Release Type":[null,"Тип на изданието"],"Multi-Episode Style":[null,"Стил на мулти-епизод"],"Single-EP Sample":[null,"Пример за единичен епизод"],"Multi-EP sample":[null,"Пример за мулти-епизод"],"Strip Show Year":[null,"Пропусни годината на предаването"],"remove the TV show's year when renaming the file?":[null,"премахване на годината на предаване при преименуването на файла?"],"only applies to shows that have year inside parentheses":[null,"отнася се само за предаванията, които имат година в скоби"],"Custom Air-By-Date":[null,"Потребителски По-дата-на-излъчване"],"name air-by-date shows differently than regular shows?":[null,"именувай предаванията По-дата-на-излъчване по различен начин от редовните предавания?"],"Toggle ABD Naming Legend":[null,""],"Regular Air Date":[null,"Редовна дата на излъчване"],"Year":[null,"Година"],"Month":[null,"Месец"],"Day":[null,"Ден"],"Multi-EP style is ignored":[null,"Игнориран е стилът за мулти-епизоди"],"Custom Sports":[null,"Персонализиран спорт"],"name sports shows differently than regular shows?":[null,"именувай спортните предавания по различен начин от редовните предавания?"],"Toggle Sports Naming Legend":[null,""],"Sports Air Date":[null,"Спортни - дата на излъчване"],"Custom Anime":[null,"Персонализирано аниме"],"name anime shows differently than regular shows?":[null,"именувай аниме предаванията по различен начин от редовните предавания?"],"Toggle Anime Naming Legend":[null,""],">XEM Season Number":[null,">XEM номер на сезон"],"Single-EP Anime Sample":[null,"Пример за единичен аниме епизод"],"Multi-EP Anime sample":[null,"Пример за мулти-епизод на аниме"],"Add Absolute Number":[null,"Добавяне на абсолютно число"],"add the absolute number to the season/episode format?":[null,"добавяне на абсолютно число към формат за сезон/епизод?"],"only applies to anime. (eg. S15E45 - 310 vs S15E45)":[null,""],"Only Absolute Number":[null,"Само абсолютен номер"],"replace season/episode format with absolute number":[null,"замести формат на сезон/епизод с абсолютно число"],"only applies to anime.":[null,""],"No Absolute Number":[null,"Без абсолютен номер"],"don't include the absolute number":[null,"не включвай абсолютен номер"],"The data associated to the data. These are files associated to a TV show in the form of images and text that, when supported, will enhance the viewing experience.":[null,""],"Metadata Type":[null,"Тип на метаданни"],"toggle metadata options that you wish to be created":[null,""],"multiple targets may be used":[null,""],"Select Metadata":[null,"Изберете метаданни"],"Provider Priorities":[null,"Приоритет за доставчик"],"Provider Options":[null,"Опции за доставчик"],"Configure Custom Newznab Providers":[null,"Конфигуриране на потребителски Newznab доставчици"],"Configure Custom Torrent Providers":[null,"Конфигуриране на потребителски торент доставчици"],"Check off and drag the providers into the order you want them to be used.":[null,"Отмятате и плъзнете доставчиците в реда, който искате да се използват."],"At least one provider is required but two are recommended.":[null,"Поне един доставчик е задължителен, но два са препоръчителни."],"Torrent providers can be toggled in ":[null,"Торент търсенето може да се активира в "],"Provider does not support backlog searches at this time.":[null,"Доставчикът все още не поддържа backlog търсене."],"Provider is <b>NOT WORKING</b>.":[null,"Доставчикът <b>НЕ РАБОТИ</b>."],"Configure individual provider settings here.":[null,"Конфигурирайте тук индивидуални настройки за доставчик."],"Check with provider's website on how to obtain an API key if needed.":[null,"Проверете страницата на доставчика за да научите ако е необходимо как да получите API ключ."],"Configure provider":[null,"Настройки на доставчик"],"no providers available to configure.":[null,"няма налични доставчици за настройване."],"URL":[null,"URL"],"Enable daily searches":[null,"Разреши ежедневно търсене"],"enable provider to perform daily searches.":[null,"разреши доставчик да изпълнява ежедневни търсения."],"Enable backlog searches":[null,"Разреши backlog търсене"],"enable provider to perform backlog searches.":[null,"разреши доставчик да изпълнява backlog търсения."],"Season search mode":[null,"Режим за търсене на сезони"],"when searching for complete seasons you can choose to have it look for season packs only, or choose to have it build a complete season from just single episodes.":[null,""],"season packs only.":[null,"само цели пакети на сезони."],"episodes only.":[null,"само епизоди."],"Enable fallback":[null,"Разреши fallback"],"when searching for a complete season depending on search mode you may return no results, this helps by restarting the search using the opposite search mode.":[null,""],"Custom URL":[null,"Потребителски URL"],"the URL should include the protocol (and port if applicable). Examples: http://192.168.1.4/ or http://localhost:3000/":[null,"URL адресът трябва да включва протокол (и порт, ако е приложимо). Примери: http://192.168.1.4/ или http://localhost:3000/"],"Api key":[null,"Api ключ"],"Digest":[null,"Digest"],"Hash":[null,"Хеш"],"Passkey":[null,"Секретен ключ"],"Cookies":[null,"„Бисквитки“"],"example: uid=1234;pass=567845439634987<br>note: uid and pass are not your username/password.<br>use DevTools or Firebug to get these values after logging in on your browser.":[null,""],"Pin":[null,"ПИН"],"Seed ratio":[null,"Съотношение за споделяне"],"stop transfer when ratio is reached<br>(-1 SickRage default to seed forever, or leave blank for downloader default)":[null,""],"Minimum seeders":[null,"Най-малко източници"],"Minimum leechers":[null,"Най-малко теглещи"],"Confirmed download":[null,"Потвърдено изтегляне"],"only download torrents from trusted or verified uploaders ?":[null,"само изтегляне от надеждни или проверени източници?"],"Ranked torrents":[null,"Класирани торенти"],"only download ranked torrents (trusted releases)":[null,"само изтегляне от класирани торенти (доверени версии)"],"English torrents":[null,"Торенти на английски"],"only download english torrents, or torrents containing english subtitles":[null,""],"For Spanish torrents":[null,"Само торенти на испански"],"ONLY search on this provider if show info is defined as \"Spanish\" (avoid provider's use for VOS shows)":[null,""],"Sorting results by":[null,"Сортиране на резултатите по"],"Freeleech":[null,"Freeleech"],"only download <b>\"FreeLeech\"</b> torrents.":[null,"изтегляй само <b>\"FreeLeech\"</b> торенти."],"Category":[null,"Категория"],"select torrent with Italian subtitle":[null,"избери торент с италиански субтитри"],"Configure Custom<br>Newznab Providers":[null,"Конфигуриране на потребителски<br>Newznab доставчици"],"Add and setup or remove custom Newznab providers.":[null,"Добавяне и настройка или премахване на потребителски Newznab доставчици."],"Select provider":[null,"Изберете доставчик"],"-- add new provider --":[null,"--добавяне на нов доставчик--"],"Provider name":[null,"Име на доставчик"],"Site URL":[null,"URL на сайта"],"Newznab search categories":[null,"Newznab категории на търсене"],"select your Newznab categories on the left, and click the \"update categories\" button to use them for searching.) <b>don't forget to to save the form!":[null,""],"Update Categories":[null,"Актуализиране на категории"],"Add":[null,"Добави"],"Delete":[null,"Изтрий"],"Add and setup or remove custom RSS providers.":[null,"Добавяне и настройка или премахване на потребителски RSS доставчици."],"RSS URL":[null,"RSS URL"],"Search element":[null,"Търсене на елемент"],"eg: title":[null,"напр.: заглавие"],"Episode Search":[null,"Търсене на епизод"],"NZB Search":[null,"NZB търсене"],"Torrent Search":[null,"Търсене на торент"],"How to manage searching with":[null,"Как да се управлява търсенето чрез"],"Randomize Providers":[null,"Произволен доставчик"],"randomize the provider search order instead of going in order of placement":[null,"използвай произволен ред на доставчик за търсене, вместо да става по реда на подредба"],"Download propers":[null,"Изтегляне на propers"],"replace original download with \"Proper\" or \"Repack\" if nuked":[null,"замени първоначалното изтегляне с \"Proper\" или \"Repack\" ако е наличен"],"Check propers every":[null,"Проверете за propers на всеки"],"24 hours":[null,"24 часа"],"4 hours":[null,"4 часа"],"90 mins":[null,"90 мин"],"45 mins":[null,"45 мин"],"15 mins":[null,"15 мин"],"Backlog search day(s)":[null,"Дни за Backlog търсене"],"number of day(s) that the \"Forced Backlog Search\" will cover (e.g. 7 Days)":[null,"броят на дните, които \"Принудително Backlog търсене\" ще покрива (например 7 дни)"],"Backlog search frequency":[null,"Честота на backlog търсене"],"time in minutes between searches (min.":[null,"времето в минути между търсения (мин."],"Daily search frequency":[null,"Честота на ежедневно търсене"],"Usenet retention":[null,"Usenet retention"],"age limit in days for usenet articles to be used (e.g. 500)":[null,"възрастова граница в дни за usenet статии, които да се използват (например 500)"],"Ignore words":[null,"Игнорирани думи"],"results with one or more word from this list will be ignored<br>separate words with a comma, e.g. \"word1,word2,word3\"":[null,""],"Require words":[null,"Задължителни думи"],"results with no word from this list will be ignored<br>separate words with a comma, e.g. \"word1,word2,word3\"":[null,""],"Trackers list":[null,"Списък на тракери"],"trackers that will be added to magnets without trackers<br>separate trackers with a comma, e.g. \"tracker1,tracker2,tracker3\"":[null,""],"Ignore language names in subbed results":[null,"Пренебрегвай следните езици за резултати с вграден превод"],"ignore subbed releases based on language names <br>\n Example: \"dk\" will ignore words: dksub, dksubs, dksubbed, dksubed <br>\n separate languages with a comma, e.g. \"lang1,lang2,lang3":[null,""],"Allow high priority":[null,"Позволи висок приоритет"],"set downloads of recently aired episodes to high priority":[null,""],"Use Failed Downloads":[null,"Използвай Неуспешни изтегляния"],"use Failed Download Handling?":[null,""],"will only work with snatched/downloaded episodes after enabling this":[null,""],"Delete Failed":[null,"Изтриване не е успешните"],"delete files left over from a failed download?":[null,"изтриване на файловете, останали след неуспешно изтегляне?"],"this only works if Use Failed Downloads is enabled.":[null,"това работи само ако е разрешено използването на неуспешно сваляне."],"How to handle NZB search results.":[null,"Как да обработва NZB резултатите от търсенето."],"Search NZBs":[null,"Търси NZBs"],"enable NZB search providers":[null,"разреши NZB доставчици за търсене"],"Send .nzb files to":[null,"Изпрати .nzb файлове към"],"SABnzbd server URL":[null,"SABnzbd URL адрес на сървъра"],"URL to your SABnzbd server (e.g. http://localhost:8080/)":[null,"URL към вашия SABnzbd сървър (например http://Localhost: 8080 /)"],"SABnzbd username":[null,"SABnzbd потребителско име"],"(blank for none)":[null,"(празно за без)"],"SABnzbd password":[null,"SABnzbd парола"],"SABnzbd API key":[null,"SABnzbd API ключ"],"locate at... SABnzbd Config -> General -> API Key":[null,"намерете в... SABnzbd Config -> General -> API Key"],"Use SABnzbd category":[null,"Използвай SABnzbd категория"],"add downloads to this category (e.g. TV)":[null,"добавяне на файлове към тази категория (например TV)"],"Use SABnzbd category (backlog episodes)":[null,"Използвай SABnzbd категория (backlog епизоди)"],"add downloads of old episodes to this category (e.g. TV)":[null,"добавяне на стари файлове към тази категория (например TV)"],"Use SABnzbd category for anime":[null,"Използвай SABnzbd категория за аниме"],"add anime downloads to this category (e.g. anime)":[null,"добавяне на аниме файлове към тази категория (например anime)"],"Use SABnzbd category for anime (backlog episodes)":[null,"Използвай SABnzbd категория за аниме (backlog епизоди)"],"add anime downloads of old episodes to this category (e.g. anime)":[null,"добавяне на стари аниме файлове към тази категория (например anime)"],"Use forced priority":[null,"Използвайте принудителен приоритет"],"enable to change priority from HIGH to FORCED":[null,"разреши за промяна на приоритет от ВИСОК на ПРИНУДИТЕЛЕН"],"Black hole folder location":[null,"Местоположение на папката с Black hole"],"<b>.nzb</b> files are stored at this location for external software to find and use":[null,"<b>.nzb</b> файловете се съхраняват на това място за намеране и използване от външен софтуер"],"Connect using HTTPS":[null,"Свързвай се чрез HTTPS"],"enable Secure control in NZBGet and set the correct Secure Port here":[null,""],"NZBget host:port":[null,"NZBget host:port"],"(e.g. localhost:6789)":[null,"(например localhost:6789)"],"NZBget RPC host name and port number (not NZBgetweb!)":[null,""],"NZBget username":[null,"NZBget потребителско име"],"locate in nzbget.conf (default:nzbget)":[null,"намерете в nzbget.conf (default:nzbget)"],"NZBget password":[null,"NZBget парола"],"locate in nzbget.conf (default:tegbzn6789)":[null,"намерете в nzbget.conf (default:tegbzn6789)"],"Use NZBget category":[null,"Използвай NZBget категория"],"send downloads marked this category (e.g. TV)":[null,"изпрати на файлове маркирани към тази категория (например TV)"],"Use NZBget category (backlog episodes)":[null,"Използвай NZBget категория (backlog епизоди)"],"send downloads of old episodes marked this category (e.g. TV)":[null,"добавяне на стари файлове маркирани към тази категория (например TV)"],"Use NZBget category for anime":[null,"Използвай NZBget категория за аниме"],"send anime downloads marked this category (e.g. anime)":[null,"добавяне на аниме файлове маркирани към тази категория (например anime)"],"Use NZBget category for anime (backlog episodes)":[null,"Използвай NZBget категория за аниме (backlog епизоди)"],"send anime downloads of old episodes marked this category (e.g. anime)":[null,"добавяне на стари аниме файлове маркирани към тази категория (например anime)"],"NZBget priority":[null,"NZBget приоритет"],"Very low":[null,"Много нисък"],"Low":[null,"Нисък"],"Very high":[null,"Много висок"],"Force":[null,"Наложи"],"priority for daily snatches (no backlog)":[null,"приоритет за намерени ежедневно (не backlog)"],"Torrent host:port":[null,"Торент адрес:порт"],"URL to your Synology DSM (e.g. http://localhost:5000/)":[null,"URL към вашия Synology DSM (например http://localhost:5000/)"],"Client username":[null,"Потребителско име за клиент"],"Client password":[null,"Парола за клиент"],"Downloaded files location":[null,"Местоположение на изтеглените файлове"],"where Synology Download Station will save downloaded files (blank for client default)":[null,""],"the destination has to be a shared folder for Synology DS":[null,"местоназначението трябва да бъде споделена папка за Synology DS"],"Click below to test":[null,"Щракнете по-долу, за да тествате"],"How to handle Torrent search results.":[null,"Как да обработва торент резултатите от търсенето."],"Search torrents":[null,"Търсене на торенти"],"enable torrent search providers":[null,"включи доставчиците за търсене на торент"],"Send .torrent files to":[null,"Изпрати .torrent файлове към"],"<b>.torrent</b> files are stored at this location for external software to find and use":[null,"<b>.torrent</b> файловете се съхраняват на това място за намеране и използване от външен софтуер"],"URL to your torrent client (e.g. http://localhost:8000/)":[null,"URL на вашия торент клиент (например http://localhost:8000/)"],"Torrent RPC URL":[null,"Torrent RPC URL"],"the path without leading and trailing slashes (e.g. transmission)":[null,"път без водещи и крайни наклонени черти (например transmission)"],"Http Authentication":[null,"Http удостоверяване"],"Verify certificate":[null,"Провери сертификат"],"disable if you get \"Deluge: Authentication Error\" in your log":[null,"изключете ако получавате \"Deluge: Authentication Error\" грешка в регистъра за събития (log)"],"verify SSL certificates for HTTPS requests":[null,"провери SSL сертификати за HTTPS заявки"],"Add label to torrent":[null,"Добави етикет към торент"],"(blank spaces are not allowed)":[null,"(интервалите не са позволени)"],"label plugin must be enabled in Deluge clients":[null,"label plugin трябва да бъде разрешен в Deluge клиентите"],"for QBitTorrent 3.3.1 and up":[null,"за QBitTorrent 3.3.1 и нагоре"],"Add label to torrent for anime":[null,"Добави етикет към аниме торент"],"for QBitTorrent 3.3.1 and up ":[null,"за QBitTorrent 3.3.1 и нагоре "],"where <span id=\"torrent_client\">the torrent client</span> will save downloaded files (blank for client default)":[null,"където <span id=\"torrent_client\">торент клиент</span> ще запазва изтеглените файлове (празно за настройка по подразбиране в клиента)"],"the destination has to be a shared folder for Synology DS</span>":[null,"местоназначението трябва да бъде споделена папка за Synology DS</span>"],"Minimum seeding time":[null,"Минимално време за споделяне"],"time in hours":[null,"време в часове"],"(default:'0' passes blank to client and '-1' passes nothing)":[null,"(по подразбиране: '0' задава празно към клиента, а \"-1\" не задава нищо)"],"Start torrent paused":[null,"Стартирай торента като изчакващ"],"add .torrent to client but do <b style=\"font-weight:900\">not</b> start downloading":[null,"добави .torrent към клиента, но <b style=\"font-weight:900\">не</b> започвай изтегляне"],"Allow high bandwidth":[null,"Позволи висока сорост"],"use high bandwidth allocation if priority is high":[null,"използвай максимална скорост ако е с висок приоритет"],"Test Connection":[null,"Тест на връзка"],"Windows Shares":[null,""],"Defines your existing windows shares so that we can add them to the browse dialog":[null,""],"Share #{number}":[null,""],"Share label":[null,""],"Hostname or IP":[null,""],"Share path":[null,""],"Subtitles Search":[null,"Търсене на субтитри"],"Subtitles Plugin":[null,"Субтитри плъгин"],"Plugin Settings":[null,"Плъгин настройки"],"Settings that dictate how SickRage handles subtitles search results.":[null,"Настройки, които управляват това, как SickRage обработва резултатите от търсене на субтитри."],"Search Subtitles":[null,"Търсене на субтитри"],"Subtitle Languages":[null,"Езици за субтитрите"],"Subtitle Directory":[null,"Директория на субтитрите"],"the directory where SickRage should store your <i>Subtitles</i> files.":[null,"папката, в която SickRage трябва да съхранявате вашите файлове със <i>субтитри</i>."],"leave empty if you want store subtitle in episode path.":[null,"оставете празно, ако желаете субтитрите да бъдат запазвани в папката с епизода."],"Subtitle Find Frequency":[null,"Честота за търсене на субтитри"],"time in hours between scans (default: 1)":[null,"времето в часове между всяко сканиране (по подразбиране: 1)"],"Include Specials":[null,""],"include the show's specials when searching for subtitles?":[null,""],"Perfect matches":[null,"Идеални съвпадения"],"only download subtitles that match: release group, video codec, audio codec and resolution":[null,"изтегляне само на субтитри, които съвпадат с: публикуваща група, видео кодек, аудио кодек и резолюция"],"if disabled you may get out of sync subtitles":[null,"ако е изключено може да получавате не-синхронизирани субтитри"],"Subtitles History":[null,"История на субтитри"],"log downloaded Subtitle on History page?":[null,"регистрирай изтеглените субтитри на страницата с история?"],"Subtitles Multi-Language":[null,"Субтитри на повече езици"],"append language codes to subtitle filenames?":[null,"добавяне на езиковите кодове към имената на файлове със субтитри?"],"this option is required if you use multiple subtitle languages":[null,"тази опция се задължителна, ако използвате повече от един език за субтитри"],"Delete unwanted subtitles":[null,"Изтриване на нежелани субтитри"],"enable to delete unwanted subtitle languages bundled with release":[null,"разреши за да се изтриват прикачените субтитри на нежелан език"],"Embedded Subtitles":[null,"Вградени субтитри"],"ignore subtitles embedded inside video file?":[null,"игнорирай субтитри вградени в самия видео файл?"],"this will ignore <u>all</u> embedded subtitles for every video file!":[null,"това ще игнорира <u>всички</u> вградени субтитри за всеки видео файл!"],"Hearing Impaired Subtitles":[null,"Субтитри за увреден слух"],"download hearing impaired style subtitles?":[null,"изтегляне на субтитри в стил подходящ за хора с нарушен слух?"],"See":[null,"Посетете"],"for a script arguments description.":[null,"за описание на аргументите на скрипт."],"Additional scripts separated by <b>|</b>.":[null,"Допълнителни скриптове, разделени от <b>|</b>."],"Scripts are called after each episode has searched and downloaded subtitles.":[null,"Скриптове се изпълняват след като за всеки епизод са потърсени и изтеглени субтитри."],"For any scripted languages, include the interpreter executable before the script. See the following example":[null,""],"For Windows:":[null,"За Windows:"],"For Linux / OS X:":[null,"За Linux / OS X:"],"Subtitle Providers":[null,"Доставчици на субтитри"],"Check off and drag the plugins into the order you want them to be used.":[null,"Отмятате и плъзнете добавките в реда, който искате да се използват."],"At least one plugin is required.":[null,"Най-малко един плъгин е необходим."]," Web-scraping plugin":[null,""],"Provider Settings":[null,"Настройки на доставчика"],"Set user and password for each provider":[null,"Задаване на потребител и парола за всеки доставчик"],"User Name":[null,"Потребителско име"],"Change Show":[null,"Избор на предаване"],"Prev Show":[null,"Предишен сериал"],"Next Show":[null,"Следващ сериал"],"Jump to Season":[null,"Направо към сезон"],"Specials":[null,"Специални"],"Poster for":[null,""],"Stars":[null,"Звезди"],"minutes":[null,"минути"],"View other popular {genre} shows on trakt.tv.":[null,"Разгледай други популярни {genre} предавания в trakt.tv."],"View other popular {imdbgenre} shows on IMDB.":[null,"Разгледай други популярни {imdbgenre} предавания в IMDB."],"Allowed":[null,"Разрешено"],"Preferred":[null,"Предпочитан"],"Originally Airs":[null,"Първоначално излъчен"],"Show Status":[null,"Статус на предаване"],"Default EP Status":[null,"Статус на сериал по подразбиране"],"Location":[null,"Местоположение"],"Missing":[null,"Липсващ"],"Scene Name":[null,"Име на сцена"],"Required Words":[null,"Задължителни думи"],"Ignored Words":[null,"Игнорирани думи"],"Size":[null,"Размер"],"Info Language":[null,"Език на информация"],"Subtitles SR Metadata":[null,""],"Season Folders":[null,"Папки по сезони"],"Paused":[null,"В пауза"],"Air-by-Date":[null,"По дата на излъчване"],"Sports":[null,"Спорт"],"DVD Order":[null,"DVD ред"],"Scene Numbering":[null,"Номериране по сцена"],"Select Filtered Episodes":[null,"Изберете филтрирани епизоди"],"Clear All":[null,"Изчисти всички"],"Change selected episodes to":[null,"Промяна на избраните епизоди на"],"Select Columns":[null,"Избор на колони"],"NFO":[null,"NFO"],"TBN":[null,"TBN"],"Episode":[null,"Епизод"],"Absolute":[null,"Абсолютни"],"Scene":[null,"Сцена"],"Scene Absolute":[null,""],"File Name":[null,"Име на файл"],"Airdate":[null,"Излъчен на"],"Download":[null,"Свали"],"Change the value here if scene numbering differs from the indexer episode numbering":[null,""],"Change the value here if scene absolute numbering differs from the indexer absolute numbering":[null,""],"Manual Search":[null,"Ръчно търсене"],"Do you want to mark this episode as failed?":[null,"Искате ли да отбележите този епизод като неуспешен?"],"The episode release name will be added to the failed history, preventing it to be downloaded again.":[null,""],"Do you want to include the current episode quality in the search?":[null,"Искате ли да включите текущото качество на епизода в търсенето?"],"Choosing No will ignore any releases with the same episode quality as the one currently downloaded/snatched.":[null,"Ако изберете Не, ще игнорира всички издания със същото качество на епизода като това на вече изтегления/намерен."],"Download subtitle":[null,"Изтегляне на субтитри"],"Do you want to re-download the subtitle for this language?":[null,""],"It will overwrite your current subtitle":[null,""],"Format":[null,"Форматиране"],"Advanced":[null,"Разширени"],"Main Settings":[null,"Основни настройки"],"Show Location":[null,"Местоположение на предаването"],"Preferred Quality":[null,"Предпочитано качество"],"Default Episode Status":[null,"Състоянието по подразбиране на епизод"],"this will set the status for future episodes.":[null,""],"this only applies to episode filenames and the contents of metadata files.":[null,""],"search for subtitles":[null,"търси за субтитри"],"Use SR Metdata":[null,""],"use SickRage metadata when searching for subtitle, this will override the autodiscovered metadata":[null,""],"pause this show (SickRage will not download episodes)":[null,""],"Format Settings":[null,"Настройки за форматиране"],"Air by date":[null,"По дата на излъчване"],"check if the show is released as Show.03.02.2010 rather than Show.S02E03.":[null,""],"in case of an air date conflict between regular and special episodes, the later will be ignored.":[null,""],"check if the show is Anime and episodes are released as Show.265 rather than Show.S02E03":[null,""],"check if the show is a sporting or MMA event released as Show.03.02.2010 rather than Show.S02E03":[null,""],"Season folders":[null,"Папки по сезони"],"group episodes by season folder (uncheck to store in a single folder)":[null,""],"search by scene numbering (uncheck to search by indexer numbering)":[null,""],"use the DVD order instead of the air order":[null,"използвайте DVD подредба вместо ред на излъчване"],"a \"Force Full Update\" is necessary, and if you have existing episodes you need to sort them manually.":[null,""],"comma-separated <i>e.g. \"word1,word2,word3</i>\"":[null,""],"search results with one or more words from this list will be ignored.":[null,""],"e.g. \"word1,word2,word3\"":[null,"например \"дума1, дума2, дума3\""],"search results with no words from this list will be ignored.":[null,""],"Scene Exception":[null,"Алтернативно име"],"this will affect episode search on NZB and torrent providers.":[null,""],"this list appends to the original show name.":[null,""],"WARNING logs":[null,"Логове с ПРЕДУПРЕЖДЕНИЯ"],"ERROR logs":[null,"Логове с ГРЕШКИ"],"There are no events to display.":[null,"Няма събития за показване."],"Limit":[null,"Лимит"],"Layout":[null,"Изглед"],"HistoryLayout":[null,"HistoryLayout"],"Compact":[null,"Компактен"],"Detailed":[null,"Подробен"],"Time":[null,"Време"],"Provider":[null,"Доставчик"],"Missing Provider":[null,"Липсва доставчик"],"missing provider":[null,"липсва доставчик"],"Directory":[null,"Директория"],"Show Name (tvshow.nfo)":[null,"Име на предаване (tvshow.nfo)"],"Indexer":[null,"Индексатор"],"Enter the folder containing the episode":[null,"Достъп до папката съдържаща този епизод"],"Process Method to be used":[null,"Да се използва метод за обработка"],"Copy":[null,"Копирай"],"Move":[null,"Премести"],"Hard Link":[null,"Hard Link"],"Symbolic Link":[null,"Symbolic Link"],"Symbolic Link Reversed":[null,""],"Force already Post Processed Dir/Files":[null,"Наложи отново обработка на вече обработени папки/файлове"],"Mark Dir/Files as priority download":[null,"Маркирай Папка/Файлове с приоритет за изтегляне"],"(Check it to replace the file even if it exists at higher quality)":[null,"(Изберете за да замените файл, дори ако той вече съществува с по-високо качество)"],"Delete files and folders":[null,"Изтриване на файлове и папки"],"(Check it to delete files and folders like auto processing)":[null,"(Изберете за да изтриете файлове и папки като процеса по автоматична обработка)"],"Don't use processing queue":[null,""],"(If checked this will return the result of the process here, but may be slow!)":[null,""],"Mark download as failed":[null,"Маркирай изтеглянето като неуспешно"],"Process":[null,"Обработка"],"Download subtitles for this show?":[null,"Изтегляне на субтитри за това предаване?"],"use SickRage metadata when searching for subtitle, <br />this will override the autodiscovered metadata":[null,""],"Status for previously aired episodes":[null,"Състояние за вече излъчени епизоди"],"Status for all future episodes":[null,"Състоянието за всички бъдещи епизоди"],"Group episodes by season folder?":[null,""],"Is this show an Anime?":[null,"Това предаване Аниме ли е?"],"Is this show scene numbered?":[null,"Предаването номерирано ли е по сцена?"],"Save Defaults":[null,"Запиши по подразбиране"],"Use current values as the defaults":[null,"Използвайте текущите стойности като настройки по подразбиране"],"<p>Select your preferred fansub groups from the <b>Available Groups</b> and add them to the <b>Whitelist</b>. Add groups to the <b>Blacklist</b> to ignore them.</p>\n <p>The <b>Whitelist</b> is checked <i>before</i> the <b>Blacklist</b>.</p>\n <p>Groups are shown as <b>Name</b> | <b>Rating</b> | <b>Number of subbed episodes</b>.</p>\n <p>You may also add any fansub group not listed to either list manually.</p>\n <p>When doing this please note that you can only use groups listed on anidb for this anime.\n <br>If a group is not listed on anidb but subbed this anime, please correct anidb's data.</p>":[null,""],"Whitelist":[null,"Бял списък"],"Available Groups":[null,"Налични групи"],"Add to Whitelist":[null,"Добави към белия списък"],"Add to Blacklist":[null,"Добави към черния списък"],"Blacklist":[null,"Черен списък"],"Custom Group":[null,""],"Allowed Quality:":[null,"Разрешено качество:"],"Preferred Quality:":[null,"Предпочитано качество:"],"Filter Show Name":[null,"Филтър за име на предаване"],"Root":[null,"Root"],"All":[null,"Всички"],"Clear Filter(s)":[null,"Изчисти филтър(ри)"],"Poster":[null,"Плакат"],"Small Poster":[null,"Малък плакат"],"Banner":[null,"Банер"],"Simple":[null,"Опростен"],"Next Episode":[null,"Следващ епизод"],"Progress":[null,"Прогрес"],"Direction":[null,"Посока"],"Ascending":[null,"Възходящ"],"Descending":[null,"Низходящ"],"Poster Size":[null,"Размер на плакат"],"Continuing":[null,"Продължава"],"Ended":[null,"Приключил"],"Total":[null,"Общо"],"Invalid date":[null,"невалидна дата"],"No Network":[null,"Без ТВ мрежа"],"Next Ep":[null,"Следващ"],"Prev Ep":[null,"Предишен"],"Show":[null,"Предаване"],"Downloads":[null,"Изтеглени"],"Active":[null,"Активен"],"loading":[null,"зарежда"],"<p><b><u>Preferred</u></b> qualities will replace those in <b><u>allowed</u></b>, even if they are lower.</p>":[null,"<p><b><u>Предпочитани</u></b> качества ще заменят тези в <b><u>позволени</u></b>, дори ако те са по-лоши.</p>"],"New":[null,"Нов"],"Set as Default":[null,"Задай по подразбиране"],"Remember me":[null,"Запомни ме"],"Edit Selected":[null,"Редактиране на избрани"],"Subtitle":[null,"Субтитри"],"Default Ep Status":[null,"Статус по подразбиране на серия"],"Update":[null,"Актуализация"],"Rescan":[null,"Повторно сканиране"],"Rename":[null,"Преименувай"],"Search Subtitle":[null,"Търси субтитри"],"Force Metadata Regen":[null,"Наново генерирай метаданни"],"Snatched (Allowed)":[null,"Намерен (Разрешен)"],"Jump to Show":[null,"отиди на предаване"],"Force Backlog":[null,"Стартирай принудително Backlog"],"Manage episodes with status":[null,"Управление на епизоди със статус"],"Manage":[null,"Управлявай"],"None of your episodes have status":[null,"Никой от вашите епизода няма статус"],"Shows containing":[null,"Предавания съдържащи"],"episodes":[null,"епизоди"],"Set checked shows/episodes to":[null,"Задайте отметнатите предавания/епизоди като"],"Go":[null,"Старт"],"Select all":[null,"Избери всички"],"Clear all":[null,"Изчисти всички"],"Release":[null,"Издание"],"Backlog Search":[null,"Backlog търсене"],"Not in progress":[null,"не е в ход"],"In Progress":[null,"в ход"],"Daily Search":[null,"Дневно търсене"],"Find Propers Search":[null,"Търсене на Propers"],"Propers search disabled":[null,"Забранено е търсене за propers"],"Subtitle Search":[null,"Търсене на субтитри"],"Subtitle search disabled":[null,"Забранено търсенето на субтитри"],"Search Queue":[null,"Опашка за търсене"],"pending items":[null,"изчакващи"],"Daily":[null,"Ежедневно"],"Manual":[null,"Ръчно"],"Changing any settings marked with (<span class=\"separator\">*</span>) will force a refresh of the selected shows.":[null,"Промяна на някоя настройка, отбелязана с (<span class=\"separator\">*</span>) ще задейства обновяване на избраното предаване (предавания)."],"Selected Shows":[null,"Избрани предавания"],"Root Directories":[null,"Root директории"],"Current":[null,"Текущ"],"Keep":[null,"Запази"],"Custom":[null,"По избор"],"Group episodes by season folder (set to \"No\" to store in a single folder).":[null,"Групирай епизоди по сезони в папка (изберете \"Не\" за да се съхраняват в една обща папка)."],"Pause these shows (SickRage will not download episodes).":[null,"Пауза на тези предавания. (SickRage няма да сваля нови епизоди)"],"This will set the status for future episodes.":[null,"Това ще зададе състоянието за бъдещи епизоди."],"Search by scene numbering (set to \"No\" to search by indexer numbering).":[null,"Търсене по номериране по сцена (изберете \"Не\" за търсене по номерация от индексатор)."],"Set if these shows are Anime and episodes are released as Show.265 rather than Show.S02E03":[null,"Изберете ако предаванията са аниме и епизоди са публикувани като Show.265, а не като Show.S02E03"],"Set if these shows are sporting or MMA events released as Show.03.02.2010 rather than Show.S02E03.":[null,"Изберете ако предаванията са спортни или ММА събития публикувани като Show.03.02.2010, а не като Show.S02E03."],"In case of an air date conflict between regular and special episodes, the later will be ignored.":[null,""],"Set if these shows are released as Show.03.02.2010 rather than Show.S02E03.":[null,"Изберете ако предаванията се публикуват като Show.03.02.2010, а не като Show.S02E03."],"Search for subtitles.":[null,"Търси за субтитри."],"All of your episodes have {subsLanguage} subtitles.":[null,"Всички ваши епизоди имат {subsLanguage} субтитри."],"Manage episodes without":[null,"Управление на епизоди без"],"Episodes without {subsLanguage} subtitles.":[null,"Епизоди без {subsLanguage} субтитри."],"Episodes without {subtitleLanguage} (undefined) subtitles.":[null,"Епизоди без {subtitleLanguage} (неопределен) субтитри."],"Download missed subtitles for selected episodes":[null,"Изтегляне на липсващите субтитри за избраните епизоди"],"Performing Restart":[null,"Извършва се рестартиране"],"Waiting for SickRage to shut down":[null,"Изчаква SickRage да се изключи"],"Waiting for SickRage to start again":[null,"Изчаква SickRage да се стартира отново"],"Loading the default page":[null,"Зареждане на страница по подразбиране"],"Error: The restart has timed out, perhaps something prevented SickRage from starting again?":[null,"Грешка: Времето за рестартиране изтече, може би нещо възпрепятстван SickRage се се стартира отново?"],"Key":[null,"Легенда"],"Missed":[null,"Пропуснат"],"Today":[null,"Днес"],"Soon":[null,"Скоро"],"Later":[null,"По-късно"],"Subscribe":[null,"Абонирай се"],"Date":[null,"Дата"],"View Paused":[null,"Преглед на изчакващите"],"Hidden":[null,"Скрити"],"Shown":[null,"Видими"],"Calendar":[null,"Календар"],"List":[null,"Списък"],"Ends":[null,"Завършва"],"Next Ep Name":[null,"Име на следващ еп."],"Run time":[null,"Време за изпълнение"],"Indexers":[null,"Индексатори"],"No shows for this day":[null,"Няма предавания за този ден"],"Airs":[null,"Дата на излъчване"],"Plot":[null,"Описание"],"Show Update":[null,"Актуализатор на предавания"],"Version Check":[null,"Проверка на версията"],"Proper Finder":[null,"Намиране на Proper"],"Post Process":[null,"Последваща обработка"],"Subtitles Finder":[null,"Търсач на субтитри"],"Scheduler":[null,"Планировчик"],"Alive":[null,"Активен"],"Start Time":[null,"Начало в"],"Cycle Time":[null,"Цикъл"],"Next Run":[null,"Акт. след"],"Last Run":[null,"Последно акт."],"Silent":[null,"Тих режим"],"True":[null,"Да"],"N/A":[null,"N/A"],"Show id":[null,"ID на предаване"],"Show name":[null,"Име на предаване"],"Priority":[null,"Приоритет"],"Added":[null,"Добавено"],"Queue type":[null,"Тип на опашка"],"LOW":[null,"НИСЪК"],"NORMAL":[null,"НОРМАЛЕН"],"HIGH":[null,"ВИСОК"],"Disk Space":[null,"Дисково пространство"],"Free space":[null,"Свободно пространство"],"TV Download Directory":[null,"Директория за изтегляне на предаването"],"Media Root Directories":[null,"Основна папка със съдържание"],"Preview of the proposed name changes":[null,"Преглед на предложените промени в имената"],"All Seasons":[null,"Всички сезони"],"select all":[null,"избери всички"],"Rename Selected":[null,"Преименувай избраните"],"Cancel Rename":[null,"Отмени преименуване"],"Old Location":[null,"Старо местоположение"],"New Location":[null,"Ново местоположение"],"Trakt API did not return any results, please check your config.":[null,"Trakt API не върна резултати, проверете настройките."],"votes":[null,"гласа"],"Remove Show":[null,"Премахни предаването"],"Level":[null,"Ниво"],"Filter":[null,"Филтър"],"All non-absolute folder locations are relative to ":[null,"Всички не-абсолютни местоположенията са релативни спрямо "],"Manual Post-Processing":[null,"Ръчна обработка"],"Episode Status Management":[null,"Управление статусът на епизодите"],"Update PLEX":[null,"Обнови PLEX"],"Update KODI":[null,"Обнови KODI"],"Update Emby":[null,"Обнови Emby"],"Manage Torrents":[null,"Управление на торенти"],"Missed Subtitle Management":[null,"Управление на липсващите субтитри"],"Help & Info":[null,"Помощ & Информация"],"Backup & Restore":[null,"Архивиране & Възстановяване"],"Tools":[null,"Инструменти"],"Support SickRage":[null,"Подкрепи SickRage"],"View Errors":[null,"Виж грешките"],"View Warnings":[null,"Виж предупрежденията"],"View Log":[null,"Вижте лог-а"],"Check For Updates":[null,"Провери за актуализации"],"Restart":[null,"Рестартиране"],"Shutdown":[null,"Изключване"],"Logout":[null,"Отписване"],"Server Status":[null,"Състояние на сървъра"],"View overview of snatched episodes":[null,"Обобщен преглед на намерените епизоди"],"Episodes Downloaded":[null,"Изтеглени епизоди"],"Memory used":[null,"Памет в употреба"],"Load time":[null,"Load time"],"Branch":[null,"Branch"],"Now":[null,"Сега"]}}}} \ No newline at end of file diff --git a/locale/bg_BG/LC_MESSAGES/messages.mo b/locale/bg_BG/LC_MESSAGES/messages.mo index a825483b7f12762c42d3d9ef5ae0f6ed528b213d..40694de1db0e597028ff0e3d0a26abc6d925a4d8 100644 Binary files a/locale/bg_BG/LC_MESSAGES/messages.mo and b/locale/bg_BG/LC_MESSAGES/messages.mo differ diff --git a/locale/bg_BG/LC_MESSAGES/messages.po b/locale/bg_BG/LC_MESSAGES/messages.po index da1f2259e9e0396cb8b7a91f4daf28de06c83338..90fac54ea2cb0a6910a7883d6741379bbb27482b 100644 --- a/locale/bg_BG/LC_MESSAGES/messages.po +++ b/locale/bg_BG/LC_MESSAGES/messages.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: sickrage\n" "Report-Msgid-Bugs-To: miigotu@gmail.com\n" -"POT-Creation-Date: 2017-03-25 09:28-0700\n" -"PO-Revision-Date: 2017-03-25 12:29-0400\n" +"POT-Creation-Date: 2017-03-28 09:10-0700\n" +"PO-Revision-Date: 2017-03-28 12:11-0400\n" "Last-Translator: miigotu <miigotu@gmail.com>\n" "Language-Team: Bulgarian\n" "MIME-Version: 1.0\n" @@ -90,7 +90,7 @@ msgid "Biography" msgstr "Биографичен" #: gui/slick/views/config_general.mako:78 gui/slick/views/layouts/main.mako:145 -#: sickbeard/__init__.py:79 sickbeard/webserve.py:3807 +#: sickbeard/__init__.py:79 sickbeard/webserve.py:3778 msgid "History" msgstr "История" @@ -103,7 +103,7 @@ msgid "Western" msgstr "Уестърн" #: gui/slick/views/config_general.mako:79 gui/slick/views/layouts/main.mako:221 -#: sickbeard/__init__.py:80 sickbeard/webserve.py:2385 +#: sickbeard/__init__.py:80 sickbeard/webserve.py:2384 msgid "News" msgstr "Новини" @@ -238,6 +238,34 @@ msgstr "Игнориран" msgid "Subtitled" msgstr "Субтитри" +#: sickbeard/helpers.py:1887 +msgid "For best results please set the Download Station alias as" +msgstr "За най-добри резултати моля задайте псевдоним на Станцията за изтегляне като" + +#: sickbeard/helpers.py:1888 +msgid "You can check this setting in the Synology DSM" +msgstr "Можете да проверите тази настройка в Synology DSM" + +#: sickbeard/helpers.py:1888 sickbeard/helpers.py:1890 +msgid "Control Panel" +msgstr "Контролен Панел" + +#: sickbeard/helpers.py:1888 +msgid "Application Portal" +msgstr "Портал за приложения" + +#: sickbeard/helpers.py:1889 +msgid "Make sure you allow DSM to be embedded with iFrames too in" +msgstr "Не забравяйте да позволите DSM да бъдат вградени и в iFrames" + +#: sickbeard/helpers.py:1890 +msgid "DSM Settings" +msgstr "DSM настройки" + +#: sickbeard/helpers.py:1890 +msgid "Security" +msgstr "Сигурност" + #: sickbeard/logger.py:474 msgid "<No Filter>" msgstr "<без филтър>" @@ -308,15 +336,15 @@ msgstr "Проверка на Trakt" msgid "Event" msgstr "Събитие" -#: sickbeard/logger.py:491 sickbeard/webserve.py:1339 sickbeard/webserve.py:1342 -#: sickbeard/webserve.py:1520 sickbeard/webserve.py:1529 sickbeard/webserve.py:1717 -#: sickbeard/webserve.py:1728 sickbeard/webserve.py:1751 sickbeard/webserve.py:1764 -#: sickbeard/webserve.py:1769 sickbeard/webserve.py:1785 sickbeard/webserve.py:1790 -#: sickbeard/webserve.py:1854 sickbeard/webserve.py:1857 sickbeard/webserve.py:1863 -#: sickbeard/webserve.py:1866 sickbeard/webserve.py:1873 sickbeard/webserve.py:1876 -#: sickbeard/webserve.py:1899 sickbeard/webserve.py:1997 sickbeard/webserve.py:2002 -#: sickbeard/webserve.py:2007 sickbeard/webserve.py:2036 sickbeard/webserve.py:2040 -#: sickbeard/webserve.py:2045 +#: sickbeard/logger.py:491 sickbeard/webserve.py:1338 sickbeard/webserve.py:1341 +#: sickbeard/webserve.py:1519 sickbeard/webserve.py:1528 sickbeard/webserve.py:1716 +#: sickbeard/webserve.py:1727 sickbeard/webserve.py:1750 sickbeard/webserve.py:1763 +#: sickbeard/webserve.py:1768 sickbeard/webserve.py:1784 sickbeard/webserve.py:1789 +#: sickbeard/webserve.py:1853 sickbeard/webserve.py:1856 sickbeard/webserve.py:1862 +#: sickbeard/webserve.py:1865 sickbeard/webserve.py:1872 sickbeard/webserve.py:1875 +#: sickbeard/webserve.py:1898 sickbeard/webserve.py:1996 sickbeard/webserve.py:2001 +#: sickbeard/webserve.py:2006 sickbeard/webserve.py:2035 sickbeard/webserve.py:2039 +#: sickbeard/webserve.py:2044 msgid "Error" msgstr "Грешка" @@ -333,6 +361,7 @@ msgstr "Thread" msgid "Main" msgstr "Основни" +#: gui/slick/js/ajaxEpSearch.js:146 gui/slick/js/ajaxEpSearch.js:147 #: gui/slick/views/inc_home_showList.mako:27 sickbeard/show_queue.py:298 msgid "Loading" msgstr "" @@ -372,867 +401,835 @@ msgstr "Неуспешно архивиране на настройките, п msgid "No update needed" msgstr "Не е необходима актуализация" -#: sickbeard/webserve.py:170 +#: sickbeard/webserve.py:171 msgid "Mako Error" msgstr "Грешка в Mako" -#: sickbeard/webserve.py:195 +#: sickbeard/webserve.py:196 msgid "Oops" msgstr "Опа" -#: sickbeard/webserve.py:197 +#: sickbeard/webserve.py:198 msgid "Wrong API key used" msgstr "Използван е грешен API ключ" -#: gui/slick/views/login.mako:34 sickbeard/webserve.py:302 +#: gui/slick/views/login.mako:34 sickbeard/webserve.py:303 msgid "Login" msgstr "Вход" -#: sickbeard/webserve.py:406 +#: sickbeard/webserve.py:392 msgid "API Key not generated" msgstr "Не е генериран API ключ" -#: sickbeard/webserve.py:409 +#: sickbeard/webserve.py:395 msgid "API Builder" msgstr "API Builder" #: gui/slick/views/config_general.mako:77 gui/slick/views/layouts/main.mako:141 -#: sickbeard/webserve.py:512 +#: sickbeard/webserve.py:498 msgid "Schedule" msgstr "График" -#: sickbeard/webserve.py:610 +#: sickbeard/webserve.py:609 msgid "Test 1" msgstr "Тест 1" -#: sickbeard/webserve.py:610 +#: sickbeard/webserve.py:609 msgid "This is test number 1" msgstr "Това е тест номер 1" -#: sickbeard/webserve.py:611 +#: sickbeard/webserve.py:610 msgid "Test 2" msgstr "Тест 2" -#: sickbeard/webserve.py:611 +#: sickbeard/webserve.py:610 msgid "This is test number 2" msgstr "Това е тест номер 2" -#: sickbeard/webserve.py:634 +#: sickbeard/webserve.py:633 msgid "You're using the {branch} branch. Please use 'master' unless specifically asked" msgstr "В момента използвате клон {branch}. Моля използвайте \"master\", освен ако специално не е изискано друго" -#: sickbeard/webserve.py:698 sickbeard/webserve.py:703 +#: sickbeard/webserve.py:697 sickbeard/webserve.py:702 msgid "Invalid show parameters" msgstr "Невалидни параметри за предаване" -#: sickbeard/webserve.py:710 +#: sickbeard/webserve.py:709 msgid "Invalid parameters" msgstr "Невалидни параметри" -#: sickbeard/webserve.py:713 sickbeard/webserve.py:1899 +#: sickbeard/webserve.py:712 sickbeard/webserve.py:1898 msgid "Episode couldn't be retrieved" msgstr "Епизодът не може да бъде открит" -#: sickbeard/webserve.py:759 sickbeard/webserve.py:1268 sickbeard/webserve.py:1297 +#: sickbeard/webserve.py:758 sickbeard/webserve.py:1267 sickbeard/webserve.py:1296 msgid "Home" msgstr "Начало" -#: gui/slick/views/layouts/main.mako:127 sickbeard/webserve.py:759 +#: gui/slick/views/layouts/main.mako:127 sickbeard/webserve.py:758 msgid "Show List" msgstr "Списък с предавания" -#: sickbeard/webserve.py:807 +#: sickbeard/webserve.py:806 msgid "Error: Unsupported Request. Send jsonp request with 'callback' variable in the query string." msgstr "Грешка: Неподдържано искане. Изпрати jsonp заявка с \"callback\" променлива в низа на заявката." -#: sickbeard/webserve.py:851 +#: sickbeard/webserve.py:850 msgid "Success. Connected and authenticated" msgstr "Успешно свързан и удостоверен" -#: sickbeard/webserve.py:853 +#: sickbeard/webserve.py:852 msgid "Authentication failed. SABnzbd expects" msgstr "Неуспешно удостоверяване. SABnzbd очаква" -#: sickbeard/webserve.py:853 +#: sickbeard/webserve.py:852 msgid "as authentication method" msgstr "като метод за удостоверяване" -#: sickbeard/webserve.py:855 +#: sickbeard/webserve.py:854 msgid "Unable to connect to host" msgstr "Не може да се свърже със сървъра" -#: sickbeard/webserve.py:876 +#: sickbeard/webserve.py:875 msgid "SMS sent successfully" msgstr "SMS е изпратен успешно" -#: sickbeard/webserve.py:878 +#: sickbeard/webserve.py:877 msgid "Problem sending SMS: {message}" msgstr "Проблем с изпращането на SMS: {message}" -#: sickbeard/webserve.py:885 +#: sickbeard/webserve.py:884 msgid "Telegram notification succeeded. Check your Telegram clients to make sure it worked" msgstr "Успешно испращане на уведомление към Telegram. Проверете вашите Telegram клиенти, за да се уверите, че е получено успешно" -#: sickbeard/webserve.py:887 +#: sickbeard/webserve.py:886 msgid "Error sending Telegram notification: {message}" msgstr "Грешка при изпращането на Telegram уведомяване: {message}" -#: sickbeard/webserve.py:894 +#: sickbeard/webserve.py:893 msgid "join notification succeeded. Check your join clients to make sure it worked" msgstr "успешно испращане на уведомление към join. Проверете вашите join клиенти, за да се уверите, че е получено успешно" -#: sickbeard/webserve.py:896 +#: sickbeard/webserve.py:895 msgid "Error sending join notification: {message}" msgstr "Грешка при изпращането на join уведомяване: {message}" -#: sickbeard/webserve.py:906 +#: sickbeard/webserve.py:905 msgid " with password" msgstr " с парола" -#: sickbeard/webserve.py:908 +#: sickbeard/webserve.py:907 msgid "Registered and Tested growl successfully {growl_host}" msgstr "Регистриран и тестван успешно growl {growl_host}" -#: sickbeard/webserve.py:910 +#: sickbeard/webserve.py:909 msgid "Registration and Testing of growl failed {growl_host}" msgstr "Регистрацията и тестването на growl е неуспешно {growl_host}" -#: sickbeard/webserve.py:917 +#: sickbeard/webserve.py:916 msgid "Test prowl notice sent successfully" msgstr "Пробното уведомление на prowl е изпратено успешно" -#: sickbeard/webserve.py:919 +#: sickbeard/webserve.py:918 msgid "Test prowl notice failed" msgstr "Тестът на уведомлението на prowl е неуспешно" -#: sickbeard/webserve.py:926 +#: sickbeard/webserve.py:925 msgid "Boxcar2 notification succeeded. Check your Boxcar2 clients to make sure it worked" msgstr "Успешно испращане на уведомление към Boxcar2. Проверете вашите Boxcar2 клиенти, за да се уверите, че е получено успешно" -#: sickbeard/webserve.py:928 +#: sickbeard/webserve.py:927 msgid "Error sending Boxcar2 notification" msgstr "Грешка при изпращане на уведомление на Boxcar2" -#: sickbeard/webserve.py:935 +#: sickbeard/webserve.py:934 msgid "Pushover notification succeeded. Check your Pushover clients to make sure it worked" msgstr "Успешно испращане на уведомление към Pushover. Проверете вашите Pushover клиенти, за да се уверите, че е получено успешно" -#: sickbeard/webserve.py:937 +#: sickbeard/webserve.py:936 msgid "Error sending Pushover notification" msgstr "Грешка при изпращане на Pushover уведомяване" -#: sickbeard/webserve.py:949 +#: sickbeard/webserve.py:948 msgid "Key verification successful" msgstr "Успешна проверка на ключ" -#: sickbeard/webserve.py:951 +#: sickbeard/webserve.py:950 msgid "Unable to verify key" msgstr "Невъзможна проверка на ключ" -#: sickbeard/webserve.py:958 +#: sickbeard/webserve.py:957 msgid "Tweet successful, check your twitter to make sure it worked" msgstr "Успешен Tweet. Проверете вашия twitter, за да се уверите че е проработило" -#: sickbeard/webserve.py:960 +#: sickbeard/webserve.py:959 msgid "Error sending tweet" msgstr "Грешка при изпращане на tweet" -#: sickbeard/webserve.py:965 +#: sickbeard/webserve.py:964 msgid "Please enter a valid account sid" msgstr "Моля, въведете валиден sid за акаунт" -#: sickbeard/webserve.py:968 +#: sickbeard/webserve.py:967 msgid "Please enter a valid auth token" msgstr "Моля въведете валиден auth token" -#: sickbeard/webserve.py:971 +#: sickbeard/webserve.py:970 msgid "Please enter a valid phone sid" msgstr "Моля, въведете валиден телефонен sid" -#: sickbeard/webserve.py:974 +#: sickbeard/webserve.py:973 msgid "Please format the phone number as \"+1-###-###-####\"" msgstr "Моля форматирайте телефонния номер като \"+1-###-###-####\"" -#: sickbeard/webserve.py:978 +#: sickbeard/webserve.py:977 msgid "Authorization successful and number ownership verified" msgstr "Потвърждението е успешно и собствеността а номера е потвърдена" -#: sickbeard/webserve.py:980 +#: sickbeard/webserve.py:979 msgid "Error sending sms" msgstr "Грешка при изпращане на sms" -#: sickbeard/webserve.py:986 +#: sickbeard/webserve.py:985 msgid "Slack message successful" msgstr "Успешно съобщение към Slack" -#: sickbeard/webserve.py:988 +#: sickbeard/webserve.py:987 msgid "Slack message failed" msgstr "Неуспешно съобщение към Slack" -#: sickbeard/webserve.py:994 +#: sickbeard/webserve.py:993 msgid "Discord message successful" msgstr "Успешно съобщение към Discord" -#: sickbeard/webserve.py:996 +#: sickbeard/webserve.py:995 msgid "Discord message failed" msgstr "Неуспешно съобщение към Discord" -#: sickbeard/webserve.py:1006 +#: sickbeard/webserve.py:1005 msgid "Test KODI notice sent successfully to {kodi_host}" msgstr "Упсшено тестово уведомление на KODI към {kodi_host}" -#: sickbeard/webserve.py:1008 +#: sickbeard/webserve.py:1007 msgid "Test KODI notice failed to {kodi_host}" msgstr "Неуспешно тестово уведомление на KODI към {kodi_host}" -#: sickbeard/webserve.py:1023 +#: sickbeard/webserve.py:1022 msgid "Successful test notice sent to Plex Home Theater ... {plex_clients}" msgstr "Успешно тестово уведомление на Plex Home Theater ... {plex_clients}" -#: sickbeard/webserve.py:1025 +#: sickbeard/webserve.py:1024 msgid "Test failed for Plex Home Theater ... {plex_clients}" msgstr "Неуспешно тестово уведомление на Plex Home Theater ... {plex_clients}" -#: sickbeard/webserve.py:1028 +#: sickbeard/webserve.py:1027 msgid "Tested Plex Home Theater(s)" msgstr "Тествани Plex Home Theater(s)" -#: sickbeard/webserve.py:1042 +#: sickbeard/webserve.py:1041 msgid "Successful test of Plex Media Server(s) ... {plex_servers}" msgstr "Успешен тест на Plex Media Server(s) ... {plex_servers}" -#: sickbeard/webserve.py:1044 +#: sickbeard/webserve.py:1043 msgid "Test failed, No Plex Media Server host specified" msgstr "Неуспешен тест. Не е посочен адрес на Plex Media Server" -#: sickbeard/webserve.py:1046 +#: sickbeard/webserve.py:1045 msgid "Test failed for Plex Media Server(s) ... {plex_servers}" msgstr "Неуспешен тест на Plex Media Server(s) ... {plex_servers}" -#: sickbeard/webserve.py:1049 +#: sickbeard/webserve.py:1048 msgid "Tested Plex Media Server host(s)" msgstr "Тествани адреси на Plex Media Server(s)" -#: sickbeard/webserve.py:1057 +#: sickbeard/webserve.py:1056 msgid "Tried sending desktop notification via libnotify" msgstr "Опитва да изпрати съобшение до десктоп чрез libnotify" -#: sickbeard/webserve.py:1066 +#: sickbeard/webserve.py:1065 msgid "Test notice sent successfully to {emby_host}" msgstr "Тестото уведомление беше изпратено успешно към {emby_host}" -#: sickbeard/webserve.py:1068 +#: sickbeard/webserve.py:1067 msgid "Test notice failed to {emby_host}" msgstr "Неуспешно тестово уведомление на {emby_host}" -#: sickbeard/webserve.py:1076 +#: sickbeard/webserve.py:1075 msgid "Successfully started the scan update" msgstr "Успешно започна сканиране за актуализация" -#: sickbeard/webserve.py:1078 +#: sickbeard/webserve.py:1077 msgid "Test failed to start the scan update" msgstr "Тестът не успя да стартира сканиране за актуализация" -#: sickbeard/webserve.py:1097 +#: sickbeard/webserve.py:1096 msgid "Test notice sent successfully to {nmj2_host}" msgstr "Тест уведомление изпратено успешно към {nmj2_host}" -#: sickbeard/webserve.py:1099 +#: sickbeard/webserve.py:1098 msgid "Test notice failed to {nmj2_host}" msgstr "Неуспешно тестово уведомление на {nmj2_host}" -#: sickbeard/webserve.py:1119 +#: sickbeard/webserve.py:1118 msgid "Trakt Authorized" msgstr "Оторизиран в Trakt" -#: sickbeard/webserve.py:1120 +#: sickbeard/webserve.py:1119 msgid "Trakt Not Authorized!" msgstr "Не е оторизиран в Trakt!" -#: sickbeard/webserve.py:1184 +#: sickbeard/webserve.py:1183 msgid "Test email sent successfully! Check inbox." msgstr "Успешно изпратен тестов имейл! Проверете пощенската кутия." -#: sickbeard/webserve.py:1186 +#: sickbeard/webserve.py:1185 msgid "ERROR: {last_error}" msgstr "ГРЕШКА: {last_error}" -#: sickbeard/webserve.py:1193 +#: sickbeard/webserve.py:1192 msgid "Test NMA notice sent successfully" msgstr "Пробното уведомление на NMA е изпратено успешно" -#: sickbeard/webserve.py:1195 +#: sickbeard/webserve.py:1194 msgid "Test NMA notice failed" msgstr "Тестът на уведомлението на NMA е неуспешно" -#: sickbeard/webserve.py:1202 +#: sickbeard/webserve.py:1201 msgid "Pushalot notification succeeded. Check your Pushalot clients to make sure it worked" msgstr "Успешно испращане на уведомление към Pushalot. Проверете вашите Pushalot клиенти, за да се уверите, че е получено успешно" -#: sickbeard/webserve.py:1204 +#: sickbeard/webserve.py:1203 msgid "Error sending Pushalot notification" msgstr "Грешка при изпращане на Pushalot уведомяване" -#: sickbeard/webserve.py:1211 +#: sickbeard/webserve.py:1210 msgid "Pushbullet notification succeeded. Check your device to make sure it worked" msgstr "Успешно испращане на уведомление към Pushalot. Проверете вашето устройство, за да се уверите, че е получено успешно" -#: sickbeard/webserve.py:1213 sickbeard/webserve.py:1223 sickbeard/webserve.py:1232 +#: sickbeard/webserve.py:1212 sickbeard/webserve.py:1222 sickbeard/webserve.py:1231 msgid "Error sending Pushbullet notification" msgstr "Грешка при изпращане на Pushover уведомяване" #: gui/slick/views/displayShow.mako:436 gui/slick/views/inc_home_showList.mako:174 -#: gui/slick/views/manage.mako:49 sickbeard/webserve.py:1249 +#: gui/slick/views/manage.mako:49 sickbeard/webserve.py:1248 msgid "Status" msgstr "Статус" -#: sickbeard/webserve.py:1268 sickbeard/webserve.py:1297 +#: sickbeard/webserve.py:1267 sickbeard/webserve.py:1296 msgid "Restarting SickRage" msgstr "Рестартиране на SickRage" -#: sickbeard/webserve.py:1300 +#: sickbeard/webserve.py:1299 msgid "Update Failed" msgstr "Неуспешно актуализиране" -#: sickbeard/webserve.py:1301 +#: sickbeard/webserve.py:1300 msgid "Update wasn't successful, not restarting. Check your log for more information." msgstr "Актуализацията не беше успешна, няма да рестартира. Разгледайте регистрационния log файл за повече информация." -#: sickbeard/webserve.py:1308 +#: sickbeard/webserve.py:1307 msgid "Checking out branch" msgstr "Проверка на branch" -#: sickbeard/webserve.py:1311 +#: sickbeard/webserve.py:1310 msgid "Already on branch" msgstr "Вече се използва този branch" -#: sickbeard/webserve.py:1339 +#: sickbeard/webserve.py:1338 msgid "Invalid show ID: {show}" msgstr "Невалиден ID на сериал: {show}" -#: sickbeard/webserve.py:1342 sickbeard/webserve.py:1871 sickbeard/webserve.py:2002 -#: sickbeard/webserve.py:2040 +#: sickbeard/webserve.py:1341 sickbeard/webserve.py:1870 sickbeard/webserve.py:2001 +#: sickbeard/webserve.py:2039 msgid "Show not in show list" msgstr "Сериалът не е в списъка със сериали" #: gui/slick/views/inc_rootDirs.mako:31 gui/slick/views/manage.mako:38 -#: gui/slick/views/manage_massEdit.mako:74 sickbeard/webserve.py:1358 -#: sickbeard/webserve.py:2027 +#: gui/slick/views/manage_massEdit.mako:74 sickbeard/webserve.py:1357 +#: sickbeard/webserve.py:2026 msgid "Edit" msgstr "Редактирай" -#: sickbeard/webserve.py:1368 +#: sickbeard/webserve.py:1367 msgid "This show is in the process of being downloaded - the info below is incomplete." msgstr "Това предаване е в процес на изтегляне - информацията по-долу е непълна." -#: sickbeard/webserve.py:1371 +#: sickbeard/webserve.py:1370 msgid "The information on this page is in the process of being updated." msgstr "Информацията на тази страница е в процес на обновяване." -#: sickbeard/webserve.py:1374 +#: sickbeard/webserve.py:1373 msgid "The episodes below are currently being refreshed from disk" msgstr "Епизодите по-долу в момента се обновяват от диска" -#: sickbeard/webserve.py:1377 +#: sickbeard/webserve.py:1376 msgid "Currently downloading subtitles for this show" msgstr "В момента се изтеглят субтитри за това предаване" -#: sickbeard/webserve.py:1380 +#: sickbeard/webserve.py:1379 msgid "This show is queued to be refreshed." msgstr "Това предаване е в опашката за обновяване." -#: sickbeard/webserve.py:1383 +#: sickbeard/webserve.py:1382 msgid "This show is queued and awaiting an update." msgstr "Това предаване е в опашка и изчаква обновяване." -#: sickbeard/webserve.py:1386 +#: sickbeard/webserve.py:1385 msgid "This show is queued and awaiting subtitles download." msgstr "Това предаване е в опашка и изчаква изтегляне на субтитри." -#: gui/slick/js/core.js:4081 sickbeard/webserve.py:1391 +#: gui/slick/js/core.js:4081 sickbeard/webserve.py:1390 msgid "Resume" msgstr "Възобнови" #: gui/slick/js/core.js:4081 gui/slick/views/viewlogs.mako:12 -#: sickbeard/webserve.py:1393 +#: sickbeard/webserve.py:1392 msgid "Pause" msgstr "Пауза" #: gui/slick/views/editShow.mako:345 gui/slick/views/inc_blackwhitelist.mako:40 #: gui/slick/views/inc_blackwhitelist.mako:85 gui/slick/views/manage.mako:58 -#: gui/slick/views/manage_failedDownloads.mako:43 sickbeard/webserve.py:1395 +#: gui/slick/views/manage_failedDownloads.mako:43 sickbeard/webserve.py:1394 msgid "Remove" msgstr "Премахни" -#: sickbeard/webserve.py:1396 +#: sickbeard/webserve.py:1395 msgid "Re-scan files" msgstr "Ново сканиране за файлове" -#: sickbeard/webserve.py:1397 +#: sickbeard/webserve.py:1396 msgid "Force Full Update" msgstr "Изпълни пълно актуализиране" -#: sickbeard/webserve.py:1398 +#: sickbeard/webserve.py:1397 msgid "Update show in KODI" msgstr "Актуализирай в KODI" -#: sickbeard/webserve.py:1399 +#: sickbeard/webserve.py:1398 msgid "Update show in Emby" msgstr "Актуализирай в Emby" -#: sickbeard/webserve.py:1402 +#: sickbeard/webserve.py:1401 msgid "Hide specials" msgstr "Скрий специалните епизоди" -#: sickbeard/webserve.py:1404 +#: sickbeard/webserve.py:1403 msgid "Show specials" msgstr "Покажи специалните епизоди" -#: sickbeard/webserve.py:1406 sickbeard/webserve.py:2030 sickbeard/webserve.py:2031 +#: sickbeard/webserve.py:1405 sickbeard/webserve.py:2029 sickbeard/webserve.py:2030 msgid "Preview Rename" msgstr "Преглед на преименуването" -#: sickbeard/webserve.py:1409 +#: sickbeard/webserve.py:1408 msgid "Download Subtitles" msgstr "Изтегляне на субтитри" -#: sickbeard/webserve.py:1498 +#: sickbeard/webserve.py:1497 msgid "No scene exceptions" msgstr "Няма алтернативни имена" -#: sickbeard/webserve.py:1516 sickbeard/webserve.py:1764 sickbeard/webserve.py:1785 +#: sickbeard/webserve.py:1515 sickbeard/webserve.py:1763 sickbeard/webserve.py:1784 msgid "Invalid show ID" msgstr "Невалиден ID за предаване" -#: sickbeard/webserve.py:1525 sickbeard/webserve.py:1769 sickbeard/webserve.py:1790 +#: sickbeard/webserve.py:1524 sickbeard/webserve.py:1768 sickbeard/webserve.py:1789 msgid "Unable to find the specified show" msgstr "Не е намерено търсеното предаване" -#: sickbeard/webserve.py:1550 +#: sickbeard/webserve.py:1549 msgid "Unable to retreive Fansub Groups from AniDB." msgstr "Не може да изтеглите Fansub групи от AniDB." -#: sickbeard/webserve.py:1559 sickbeard/webserve.py:1561 +#: sickbeard/webserve.py:1558 sickbeard/webserve.py:1560 msgid "Edit Show" msgstr "Редактиране на шоуто" -#: sickbeard/webserve.py:1637 sickbeard/webserve.py:1671 +#: sickbeard/webserve.py:1636 sickbeard/webserve.py:1670 msgid "Unable to refresh this show: {error}" msgstr "Не може да се обнови информацията за тоза предаване: {error}" -#: sickbeard/webserve.py:1663 +#: sickbeard/webserve.py:1662 msgid "New location <tt>{location}</tt> does not exist" msgstr "Ново местоположение <tt>{location}</tt> не съществува" -#: sickbeard/webserve.py:1688 +#: sickbeard/webserve.py:1687 msgid "Unable to update show: {error}" msgstr "Неуспешна актуализация на сериал: {error}" -#: sickbeard/webserve.py:1695 +#: sickbeard/webserve.py:1694 msgid "Unable to force an update on scene exceptions of the show." msgstr "Неуспешна принудителна актуализация на предаване чрез аналогичните имена (scene exceptions)." -#: sickbeard/webserve.py:1702 +#: sickbeard/webserve.py:1701 msgid "Unable to force an update on scene numbering of the show." msgstr "Неуспешна принудителна актуализация на номерирането по сцена за предаване." -#: sickbeard/webserve.py:1708 sickbeard/webserve.py:3540 +#: sickbeard/webserve.py:1707 sickbeard/webserve.py:3539 msgid "{num_errors:d} error{plural} while saving changes:" msgstr "{num_errors:d} error{plural} при запазването на промените:" -#: sickbeard/webserve.py:1719 +#: sickbeard/webserve.py:1718 msgid "{show_name} has been {paused_resumed}" msgstr "{show_name} беше {paused_resumed}" -#: sickbeard/webserve.py:1719 +#: sickbeard/webserve.py:1718 msgid "resumed" msgstr "възобновен" -#: sickbeard/webserve.py:1719 +#: sickbeard/webserve.py:1718 msgid "paused" msgstr "в пауза" -#: sickbeard/webserve.py:1731 +#: sickbeard/webserve.py:1730 msgid "{show_name} has been {deleted_trashed} {was_deleted}" msgstr "{show_name} беше {deleted_trashed} {was_deleted}" -#: sickbeard/webserve.py:1733 +#: sickbeard/webserve.py:1732 msgid "deleted" msgstr "изтрит" -#: sickbeard/webserve.py:1733 +#: sickbeard/webserve.py:1732 msgid "trashed" msgstr "изхвърлен" -#: sickbeard/webserve.py:1734 +#: sickbeard/webserve.py:1733 msgid "(media untouched)" msgstr "(файловете ще са непроменени)" -#: sickbeard/webserve.py:1734 +#: sickbeard/webserve.py:1733 msgid "(with all related media)" msgstr "(с всички свързани файлове)" -#: sickbeard/webserve.py:1755 +#: sickbeard/webserve.py:1754 msgid "Unable to refresh this show." msgstr "Не може да се обнови този сериал." -#: sickbeard/webserve.py:1775 +#: sickbeard/webserve.py:1774 msgid "Unable to update this show." msgstr "Не може да актуализира този сериал." -#: sickbeard/webserve.py:1814 +#: sickbeard/webserve.py:1813 msgid "Library update command sent to KODI host(s)): {kodi_hosts}" msgstr "Изпратена е команда за обновяване на библиотеката в KODI на адрес(и): {kodi_hosts}" -#: sickbeard/webserve.py:1816 +#: sickbeard/webserve.py:1815 msgid "Unable to contact one or more KODI host(s)): {kodi_hosts}" msgstr "Неуспешно свързване с един или повече адреси на KODI: {kodi_hosts}" -#: sickbeard/webserve.py:1825 +#: sickbeard/webserve.py:1824 msgid "Library update command sent to Plex Media Server host: {plex_server}" msgstr "Изпратена е команда за обновяване на библиотеката в Plex Media Server на адрес(и): {plex_server}" -#: sickbeard/webserve.py:1828 +#: sickbeard/webserve.py:1827 msgid "Unable to contact Plex Media Server host: {plex_server}" msgstr "Неуспешно свързване с адрес на Plex Media Server: {plex_server}" -#: sickbeard/webserve.py:1840 +#: sickbeard/webserve.py:1839 msgid "Library update command sent to Emby host: {emby_host}" msgstr "Изпратена е команда за обновяване на библиотеката в Emby на адрес: {emby_host}" -#: sickbeard/webserve.py:1842 +#: sickbeard/webserve.py:1841 msgid "Unable to contact Emby host: {emby_host}" msgstr "не може да се свърже с Emby на адрес: {emby_host}" -#: sickbeard/webserve.py:1852 sickbeard/webserve.py:2036 +#: sickbeard/webserve.py:1851 sickbeard/webserve.py:2035 msgid "You must specify a show and at least one episode" msgstr "Трябва да зададете предаване и поне един епизод" -#: sickbeard/webserve.py:1861 +#: sickbeard/webserve.py:1860 msgid "Invalid status" msgstr "Невалиден статус" -#: sickbeard/webserve.py:1954 +#: sickbeard/webserve.py:1953 msgid "Backlog was automatically started for the following seasons of <b>{show_name}</b>" msgstr "Backlog беше стартиран автоматично за следните сезони на <b>{show_name}</b>" #: gui/slick/views/displayShow.mako:74 gui/slick/views/displayShow.mako:79 -#: gui/slick/views/displayShow.mako:404 sickbeard/webserve.py:1961 -#: sickbeard/webserve.py:1980 +#: gui/slick/views/displayShow.mako:404 sickbeard/webserve.py:1960 +#: sickbeard/webserve.py:1979 msgid "Season" msgstr "Сезон" -#: sickbeard/webserve.py:1968 +#: sickbeard/webserve.py:1967 msgid "Backlog started" msgstr "Backlog е стартиран" -#: sickbeard/webserve.py:1973 +#: sickbeard/webserve.py:1972 msgid "Retrying Search was automatically started for the following season of <b>{show_name}</b>" msgstr "Повторен опит за търсене беше стартиран автоматично за следния сезон на <b>{show_name}</b>" -#: sickbeard/webserve.py:1987 +#: sickbeard/webserve.py:1986 msgid "Retry Search started" msgstr "Започна повторно търсене" -#: sickbeard/webserve.py:1997 +#: sickbeard/webserve.py:1996 msgid "You must specify a show" msgstr "Трябва да зададете предаване" -#: sickbeard/webserve.py:2007 sickbeard/webserve.py:2045 +#: sickbeard/webserve.py:2006 sickbeard/webserve.py:2044 msgid "Can't rename episodes when the show dir is missing." msgstr "Не може да преименува епизоди, когато липсва папка за предаването." -#: sickbeard/webserve.py:2212 sickbeard/webserve.py:2233 +#: sickbeard/webserve.py:2211 sickbeard/webserve.py:2232 msgid "New subtitles downloaded: {new_subtitle_languages}" msgstr "Изтеглени са нови субтитри: {new_subtitle_languages}" -#: sickbeard/webserve.py:2215 sickbeard/webserve.py:2236 +#: sickbeard/webserve.py:2214 sickbeard/webserve.py:2235 msgid "No subtitles downloaded" msgstr "Няма свалени субтитри" #: gui/slick/views/config_general.mako:80 gui/slick/views/layouts/main.mako:222 -#: sickbeard/webserve.py:2363 +#: sickbeard/webserve.py:2362 msgid "IRC" msgstr "IRC" -#: sickbeard/webserve.py:2376 +#: sickbeard/webserve.py:2375 msgid "Could not load news from the repo. [Click here for news.md])({news_url})" msgstr "Не може да зареди новини от източника (repo). [Кликнете тук за news.md]) ({news_url})" -#: sickbeard/webserve.py:2383 sickbeard/webserve.py:2401 +#: sickbeard/webserve.py:2382 sickbeard/webserve.py:2400 msgid "The was a problem connecting to github, please refresh and try again" msgstr "Възникна проблем в свързването към github, Моля презаредете и опитайте отново" -#: sickbeard/webserve.py:2398 +#: sickbeard/webserve.py:2397 msgid "Could not load changes from the repo. [Click here for CHANGES.md]({changes_url})" msgstr "Не може да зареди файла с промени от източника (repo). [Кликнете тук за CHANGES.md] ({changes_url})" -#: gui/slick/views/layouts/main.mako:223 sickbeard/webserve.py:2403 +#: gui/slick/views/layouts/main.mako:223 sickbeard/webserve.py:2402 msgid "Changelog" msgstr "Списък с промени" -#: gui/slick/views/layouts/main.mako:190 sickbeard/webserve.py:2413 -#: sickbeard/webserve.py:3855 sickbeard/webserve.py:4341 +#: gui/slick/views/layouts/main.mako:190 sickbeard/webserve.py:2412 +#: sickbeard/webserve.py:3826 sickbeard/webserve.py:4312 msgid "Post Processing" msgstr "Обработка" -#: gui/slick/views/layouts/main.mako:128 sickbeard/webserve.py:2445 +#: gui/slick/views/layouts/main.mako:128 sickbeard/webserve.py:2444 msgid "Add Shows" msgstr "Добави предаване" -#: sickbeard/webserve.py:2510 +#: sickbeard/webserve.py:2509 msgid "No folders selected." msgstr "Няма избрани папки." -#: sickbeard/webserve.py:2632 +#: sickbeard/webserve.py:2631 msgid "New Show" msgstr "Ново предаване" -#: sickbeard/webserve.py:2647 +#: sickbeard/webserve.py:2646 msgid "Trending Shows" msgstr "Налагащи се сериали" -#: sickbeard/webserve.py:2649 sickbeard/webserve.py:2772 +#: sickbeard/webserve.py:2648 sickbeard/webserve.py:2771 msgid "Popular Shows" msgstr "Популярни сериали" -#: sickbeard/webserve.py:2651 sickbeard/webserve.py:2665 +#: sickbeard/webserve.py:2650 sickbeard/webserve.py:2664 msgid "Most Anticipated Shows" msgstr "Най-очакваните сериали" -#: sickbeard/webserve.py:2653 +#: sickbeard/webserve.py:2652 msgid "Most Collected Shows" msgstr "Най-много събирани предавания" -#: sickbeard/webserve.py:2655 +#: sickbeard/webserve.py:2654 msgid "Most Watched Shows" msgstr "Най-много гледани предавания" -#: sickbeard/webserve.py:2657 +#: sickbeard/webserve.py:2656 msgid "Most Played Shows" msgstr "Най-много следени предавания" -#: sickbeard/webserve.py:2659 +#: sickbeard/webserve.py:2658 msgid "Recommended Shows" msgstr "Препоръчани предавания" -#: gui/slick/views/addShows_trendingShows.mako:60 sickbeard/webserve.py:2661 +#: gui/slick/views/addShows_trendingShows.mako:60 sickbeard/webserve.py:2660 msgid "New Shows" msgstr "Нови сериали" -#: gui/slick/views/addShows_trendingShows.mako:61 sickbeard/webserve.py:2663 +#: gui/slick/views/addShows_trendingShows.mako:61 sickbeard/webserve.py:2662 msgid "Season Premieres" msgstr "Премиери на сезони" -#: sickbeard/webserve.py:2792 sickbeard/webserve.py:2793 +#: sickbeard/webserve.py:2791 sickbeard/webserve.py:2792 msgid "Existing Show" msgstr "Съществуващ сериал" -#: sickbeard/webserve.py:2871 +#: sickbeard/webserve.py:2870 msgid "No root directories setup, please go back and add one." msgstr "Няма настроена root директория, моля да се върнете и да добавите една." -#: sickbeard/webserve.py:2883 sickbeard/webserve.py:3002 +#: sickbeard/webserve.py:2882 sickbeard/webserve.py:3001 msgid "Show added" msgstr "Сериалът е добавен" -#: sickbeard/webserve.py:2883 +#: sickbeard/webserve.py:2882 msgid "Adding the specified show {show_name}" msgstr "Добавяне на зададения сериал {show_name}" -#: sickbeard/webserve.py:2924 +#: sickbeard/webserve.py:2923 msgid "Missing params, no Indexer ID or folder: {show_to_add} and {root_dir}/{show_path}" msgstr "Липсват параметри, няма Indexer ID или папка: {show_to_add} и {root_dir}/{show_path}" -#: sickbeard/webserve.py:2933 +#: sickbeard/webserve.py:2932 msgid "Unknown error. Unable to add show due to problem with show selection." msgstr "Неизвестна грешка. Сериалът не може да бъде добавен поради проблем изборът на сериал." -#: sickbeard/webserve.py:2957 sickbeard/webserve.py:2967 +#: sickbeard/webserve.py:2956 sickbeard/webserve.py:2966 msgid "Unable to add show" msgstr "Сериалът не може да бъде добавен" -#: sickbeard/webserve.py:2957 +#: sickbeard/webserve.py:2956 msgid "Folder {show_dir} exists already" msgstr "Вече съществува папка {show_dir}" -#: sickbeard/webserve.py:2968 +#: sickbeard/webserve.py:2967 msgid "Unable to create the folder {show_dir}, can't add the show" msgstr "Не може да бъде създадена папката {show_dir}, сериалът не може да бъде добавен" -#: sickbeard/webserve.py:3002 +#: sickbeard/webserve.py:3001 msgid "Adding the specified show into {show_dir}" msgstr "Добавяне на избрания сериал в {show_dir}" -#: sickbeard/webserve.py:3078 +#: sickbeard/webserve.py:3077 msgid "Shows Added" msgstr "Довабени сериали" -#: sickbeard/webserve.py:3079 +#: sickbeard/webserve.py:3078 msgid "Automatically added {num_shows} from their existing metadata files" msgstr "Автоматично бяха добавени {num_shows} от налични файлове с мета-информация" -#: gui/slick/views/layouts/main.mako:153 sickbeard/webserve.py:3096 +#: gui/slick/views/layouts/main.mako:153 sickbeard/webserve.py:3095 msgid "Mass Update" msgstr "Цялостна актуализация" -#: sickbeard/webserve.py:3134 sickbeard/webserve.py:3161 sickbeard/webserve.py:3237 -#: sickbeard/webserve.py:3238 +#: sickbeard/webserve.py:3133 sickbeard/webserve.py:3160 sickbeard/webserve.py:3236 +#: sickbeard/webserve.py:3237 msgid "Episode Overview" msgstr "Преглед на епизодите" -#: sickbeard/webserve.py:3270 +#: sickbeard/webserve.py:3269 msgid "Missing Subtitles" msgstr "Липсващи субтитри" -#: gui/slick/views/layouts/main.mako:154 sickbeard/webserve.py:3356 -#: sickbeard/webserve.py:3357 +#: gui/slick/views/layouts/main.mako:154 sickbeard/webserve.py:3355 +#: sickbeard/webserve.py:3356 msgid "Backlog Overview" msgstr "Преглед на Backlog" -#: sickbeard/webserve.py:3481 +#: sickbeard/webserve.py:3480 msgid "Mass Edit" msgstr "Масово редактиране" -#: sickbeard/webserve.py:3586 +#: sickbeard/webserve.py:3585 msgid "Unable to update show: {excption_format}" msgstr "Неуспешна актуализация на сериал: {excption_format}" -#: sickbeard/webserve.py:3594 +#: sickbeard/webserve.py:3593 msgid "Unable to refresh show {show_name}: {excption_format}" msgstr "Неуспешно обновяване на сериалът {show_name}: {excption_format}" -#: sickbeard/webserve.py:3605 +#: sickbeard/webserve.py:3604 msgid "Errors encountered" msgstr "Срещнати грешки" -#: gui/slick/views/config_general.mako:261 sickbeard/webserve.py:3611 +#: gui/slick/views/config_general.mako:261 sickbeard/webserve.py:3610 msgid "Updates" msgstr "Актуализации" -#: sickbeard/webserve.py:3616 +#: sickbeard/webserve.py:3615 msgid "Refreshes" msgstr "Опреснявания" -#: sickbeard/webserve.py:3621 +#: sickbeard/webserve.py:3620 msgid "Renames" msgstr "Преименувания" #: gui/slick/views/displayShow.mako:260 gui/slick/views/displayShow.mako:435 #: gui/slick/views/editShow.mako:119 gui/slick/views/inc_addShowOptions.mako:20 -#: gui/slick/views/manage_massEdit.mako:262 sickbeard/webserve.py:3626 -#: sickbeard/webserve.py:5244 +#: gui/slick/views/manage_massEdit.mako:262 sickbeard/webserve.py:3625 +#: sickbeard/webserve.py:5215 msgid "Subtitles" msgstr "Субтитри" -#: sickbeard/webserve.py:3631 +#: sickbeard/webserve.py:3630 msgid "The following actions were queued" msgstr "Следните действия бяха добавени на опашката" -#: sickbeard/webserve.py:3651 -msgid "For best results please set the Download Station alias as" -msgstr "За най-добри резултати моля задайте псевдоним на Станцията за изтегляне като" - -#: sickbeard/webserve.py:3652 -msgid "You can check this setting in the Synology DSM" -msgstr "Можете да проверите тази настройка в Synology DSM" - -#: sickbeard/webserve.py:3652 sickbeard/webserve.py:3654 -msgid "Control Panel" -msgstr "Контролен Панел" - -#: sickbeard/webserve.py:3652 -msgid "Application Portal" -msgstr "Портал за приложения" - -#: sickbeard/webserve.py:3653 -msgid "Make sure you allow DSM to be embedded with iFrames too in" -msgstr "Не забравяйте да позволите DSM да бъдат вградени и в iFrames" - -#: sickbeard/webserve.py:3654 -msgid "DSM Settings" -msgstr "DSM настройки" - -#: sickbeard/webserve.py:3654 -msgid "Security" -msgstr "Сигурност" - -#: gui/slick/views/layouts/main.mako:167 sickbeard/webserve.py:3662 -msgid "Manage Torrents" -msgstr "Управление на торенти" - -#: gui/slick/views/layouts/main.mako:170 sickbeard/webserve.py:3683 +#: gui/slick/views/layouts/main.mako:170 sickbeard/webserve.py:3654 msgid "Failed Downloads" msgstr "Неуспешни изтегляния" -#: gui/slick/views/layouts/main.mako:155 sickbeard/webserve.py:3701 +#: gui/slick/views/layouts/main.mako:155 sickbeard/webserve.py:3672 msgid "Manage Searches" msgstr "Управление на търсенията" -#: sickbeard/webserve.py:3709 +#: sickbeard/webserve.py:3680 msgid "Backlog search started" msgstr "Започна Backlog търсене" -#: sickbeard/webserve.py:3719 +#: sickbeard/webserve.py:3690 msgid "Daily search started" msgstr "Започна ежедневно търсене" -#: sickbeard/webserve.py:3728 +#: sickbeard/webserve.py:3699 msgid "Find propers search started" msgstr "Започна търсене на propers" -#: sickbeard/webserve.py:3737 +#: sickbeard/webserve.py:3708 msgid "Subtitle search started" msgstr "Започна търсене за субтитри" -#: sickbeard/webserve.py:3801 +#: sickbeard/webserve.py:3772 msgid "Remove Selected" msgstr "Премахни избраното" -#: sickbeard/webserve.py:3802 +#: sickbeard/webserve.py:3773 msgid "Clear History" msgstr "Изчисти историята" -#: sickbeard/webserve.py:3803 +#: sickbeard/webserve.py:3774 msgid "Trim History" msgstr "Съкрати историята" -#: sickbeard/webserve.py:3823 +#: sickbeard/webserve.py:3794 msgid "Selected history entries removed" msgstr "" -#: sickbeard/webserve.py:3830 +#: sickbeard/webserve.py:3801 msgid "History cleared" msgstr "Историята е изчистена" -#: sickbeard/webserve.py:3837 +#: sickbeard/webserve.py:3808 msgid "Removed history entries older than 30 days" msgstr "Премахни записи в историята, които са по-стари от 30 дни" -#: gui/slick/views/layouts/main.mako:185 sickbeard/webserve.py:3850 +#: gui/slick/views/layouts/main.mako:185 sickbeard/webserve.py:3821 msgid "General" msgstr "Общи" -#: sickbeard/webserve.py:3851 sickbeard/webserve.py:4143 +#: sickbeard/webserve.py:3822 sickbeard/webserve.py:4114 msgid "Backup/Restore" msgstr "Архивиране/Възстановяване" -#: gui/slick/views/layouts/main.mako:187 sickbeard/webserve.py:3852 -#: sickbeard/webserve.py:4206 +#: gui/slick/views/layouts/main.mako:187 sickbeard/webserve.py:3823 +#: sickbeard/webserve.py:4177 msgid "Search Settings" msgstr "Настройки на търсенето" -#: gui/slick/views/layouts/main.mako:188 sickbeard/webserve.py:3853 -#: sickbeard/webserve.py:4518 +#: gui/slick/views/layouts/main.mako:188 sickbeard/webserve.py:3824 +#: sickbeard/webserve.py:4489 msgid "Search Providers" msgstr "Доставчици на търсене" -#: gui/slick/views/layouts/main.mako:189 sickbeard/webserve.py:3854 +#: gui/slick/views/layouts/main.mako:189 sickbeard/webserve.py:3825 msgid "Subtitles Settings" msgstr "Настройки на субтитри" -#: gui/slick/views/layouts/main.mako:191 sickbeard/webserve.py:3856 -#: sickbeard/webserve.py:4964 +#: gui/slick/views/layouts/main.mako:191 sickbeard/webserve.py:3827 +#: sickbeard/webserve.py:4935 msgid "Notifications" msgstr "Известия" @@ -1240,142 +1237,142 @@ msgstr "Известия" #: gui/slick/views/home.mako:35 gui/slick/views/inc_addShowOptions.mako:79 #: gui/slick/views/inc_home_showList.mako:179 gui/slick/views/layouts/main.mako:192 #: gui/slick/views/manage.mako:44 gui/slick/views/manage_massEdit.mako:202 -#: sickbeard/webserve.py:3857 sickbeard/webserve.py:5309 +#: sickbeard/webserve.py:3828 sickbeard/webserve.py:5280 msgid "Anime" msgstr "Аниме" -#: sickbeard/webserve.py:3895 sickbeard/webserve.py:3896 +#: sickbeard/webserve.py:3866 sickbeard/webserve.py:3867 msgid "SickRage Configuration" msgstr "SickRage настройки" -#: sickbeard/webserve.py:3910 +#: sickbeard/webserve.py:3881 msgid "Config - Shares" msgstr "" -#: sickbeard/webserve.py:3910 +#: sickbeard/webserve.py:3881 msgid "Windows Shares Configuration" msgstr "" -#: sickbeard/webserve.py:3937 +#: sickbeard/webserve.py:3908 msgid "Saved Shares" msgstr "" -#: sickbeard/webserve.py:3937 +#: sickbeard/webserve.py:3908 msgid "Your Windows share settings have been saved" msgstr "" -#: sickbeard/webserve.py:3948 +#: sickbeard/webserve.py:3919 msgid "Config - General" msgstr "Настройки - Общи" -#: sickbeard/webserve.py:3948 +#: sickbeard/webserve.py:3919 msgid "General Configuration" msgstr "Основни настройки" -#: sickbeard/webserve.py:3988 +#: sickbeard/webserve.py:3959 msgid "Saved Defaults" msgstr "Записани по подразбиране" -#: sickbeard/webserve.py:3988 +#: sickbeard/webserve.py:3959 msgid "Your \"add show\" defaults have been set to your current selections." msgstr "Вашият избор по подразбиране за \"Добави предаване\" са зададени на вашия текущ избор." -#: sickbeard/webserve.py:4095 +#: sickbeard/webserve.py:4066 msgid "Unable to create directory {directory}, log directory not changed." msgstr "Не може да се създаде директория {directory}, директорията за log файл не беше променена." -#: sickbeard/webserve.py:4103 +#: sickbeard/webserve.py:4074 msgid "Unable to create directory {directory}, https cert directory not changed." msgstr "Не може да се създаде директория {directory}, директорията с https сертификат не беше променена." -#: sickbeard/webserve.py:4107 +#: sickbeard/webserve.py:4078 msgid "Unable to create directory {directory}, https key directory not changed." msgstr "Не може да се създаде директория {directory}, директорията с https ключ не беше променена." -#: sickbeard/webserve.py:4126 sickbeard/webserve.py:4324 sickbeard/webserve.py:4456 -#: sickbeard/webserve.py:5227 +#: sickbeard/webserve.py:4097 sickbeard/webserve.py:4295 sickbeard/webserve.py:4427 +#: sickbeard/webserve.py:5198 msgid "Error(s) Saving Configuration" msgstr "Грешка(и) при запаметяване на настройките" -#: sickbeard/webserve.py:4129 sickbeard/webserve.py:4327 sickbeard/webserve.py:4458 -#: sickbeard/webserve.py:4950 sickbeard/webserve.py:5230 sickbeard/webserve.py:5294 -#: sickbeard/webserve.py:5323 +#: sickbeard/webserve.py:4100 sickbeard/webserve.py:4298 sickbeard/webserve.py:4429 +#: sickbeard/webserve.py:4921 sickbeard/webserve.py:5201 sickbeard/webserve.py:5265 +#: sickbeard/webserve.py:5294 msgid "Configuration Saved" msgstr "Настройките са запаметени" -#: sickbeard/webserve.py:4142 +#: sickbeard/webserve.py:4113 msgid "Config - Backup/Restore" msgstr "Настройки - Архивиране/Възстановяване" -#: sickbeard/webserve.py:4205 +#: sickbeard/webserve.py:4176 msgid "Config - Episode Search" msgstr "Настройки - Търсене на епизоди" -#: sickbeard/webserve.py:4340 +#: sickbeard/webserve.py:4311 msgid "Config - Post Processing" msgstr "Настройки - Обработка" -#: sickbeard/webserve.py:4380 +#: sickbeard/webserve.py:4351 msgid "Unpacking Not Supported, disabling unpack setting" msgstr "Разархивирането не се поддържа, деактивирани са съответните настройките" -#: sickbeard/webserve.py:4431 +#: sickbeard/webserve.py:4402 msgid "You tried saving an invalid normal naming config, not saving your naming settings" msgstr "" -#: sickbeard/webserve.py:4439 +#: sickbeard/webserve.py:4410 msgid "You tried saving an invalid anime naming config, not saving your naming settings" msgstr "Вие се опитахте за запазите невалидна настройка за име на аниме, настройки за именуване не бяха запазени" -#: sickbeard/webserve.py:4517 +#: sickbeard/webserve.py:4488 msgid "Config - Providers" msgstr "Настройка - Доставчици" -#: sickbeard/webserve.py:4547 +#: sickbeard/webserve.py:4518 msgid "No Provider Name specified" msgstr "Не е зададено име за доставчик" -#: sickbeard/webserve.py:4549 +#: sickbeard/webserve.py:4520 msgid "No Provider Url specified" msgstr "Не е зададен Url адрес за доставчик" -#: sickbeard/webserve.py:4551 +#: sickbeard/webserve.py:4522 msgid "No Provider Api key specified" msgstr "Не е зададен Api ключ за доставчик" -#: sickbeard/webserve.py:4963 +#: sickbeard/webserve.py:4934 msgid "Config - Notifications" msgstr "Настройка - Известия" -#: sickbeard/webserve.py:5243 +#: sickbeard/webserve.py:5214 msgid "Config - Subtitles" msgstr "Настройки - субтитри" -#: sickbeard/webserve.py:5308 +#: sickbeard/webserve.py:5279 msgid "Config - Anime" msgstr "Настройки - аниме" -#: sickbeard/webserve.py:5336 +#: sickbeard/webserve.py:5307 msgid "Clear Errors" msgstr "Изчистване на грешки" -#: sickbeard/webserve.py:5342 +#: sickbeard/webserve.py:5313 msgid "Clear Warnings" msgstr "Изчистване на предупреждения" -#: sickbeard/webserve.py:5348 +#: sickbeard/webserve.py:5319 msgid "Submit Errors" msgstr "Подаване на грешки" -#: sickbeard/webserve.py:5363 +#: sickbeard/webserve.py:5334 msgid "Logs & Errors" msgstr "Logs & грешки" -#: sickbeard/webserve.py:5388 +#: sickbeard/webserve.py:5359 msgid "Log File" msgstr "Log File" -#: sickbeard/webserve.py:5388 +#: sickbeard/webserve.py:5359 msgid "Logs" msgstr "Logs" @@ -1383,30 +1380,166 @@ msgstr "Logs" msgid "This is a test notification from SickRage" msgstr "Това е тестово съобщение от SickRage" -#: gui/slick/js/core.js:481 gui/slick/js/core.js:502 gui/slick/js/core.js:524 -#: gui/slick/js/core.js:548 gui/slick/js/core.js:573 gui/slick/js/core.js:596 -#: gui/slick/js/core.js:625 gui/slick/js/core.js:645 gui/slick/js/core.js:690 -#: gui/slick/js/core.js:769 gui/slick/js/core.js:829 gui/slick/js/core.js:849 -#: gui/slick/js/core.js:879 gui/slick/js/core.js:909 gui/slick/js/core.js:969 -#: gui/slick/js/core.js:1046 gui/slick/js/core.js:1066 gui/slick/js/core.js:1085 +#: gui/slick/js/browser.js:6 +msgid "Choose Directory" +msgstr "" + +#: gui/slick/js/core.js:443 +msgid "Select log file folder location" +msgstr "" + +#: gui/slick/js/core.js:445 +msgid "Select CSS file" +msgstr "" + +#: gui/slick/js/core.js:469 +msgid "Select backup folder to save to" +msgstr "" + +#: gui/slick/js/core.js:470 +msgid "Select backup files to restore" +msgstr "" + +#: gui/slick/js/core.js:479 gui/slick/js/core.js:500 gui/slick/js/core.js:522 +#: gui/slick/js/core.js:546 gui/slick/js/core.js:571 gui/slick/js/core.js:594 +#: gui/slick/js/core.js:623 gui/slick/js/core.js:643 gui/slick/js/core.js:688 +#: gui/slick/js/core.js:767 gui/slick/js/core.js:827 gui/slick/js/core.js:847 +#: gui/slick/js/core.js:877 gui/slick/js/core.js:907 gui/slick/js/core.js:967 +#: gui/slick/js/core.js:1044 gui/slick/js/core.js:1064 gui/slick/js/core.js:1083 msgid "Please fill out the necessary fields above." msgstr "" -#: gui/slick/js/core.js:1328 gui/slick/js/core.js:1378 gui/slick/js/core.js:1427 -#: gui/slick/js/core.js:1493 +#: gui/slick/js/core.js:680 +msgid "<b>Step 1:</b> Confirm Authorization" +msgstr "" + +#: gui/slick/js/core.js:977 +msgid "Check blacklist name; the value needs to be a trakt slug" +msgstr "" + +#: gui/slick/js/core.js:1022 +msgid "You must provide a recipient email address!" +msgstr "" + +#: gui/slick/js/core.js:1107 +msgid "You didn't supply a Pushbullet api key" +msgstr "" + +#: gui/slick/js/core.js:1133 gui/slick/js/core.js:1162 +msgid "Don't forget to save your new pushbullet settings." +msgstr "" + +#: gui/slick/js/core.js:1262 +msgid "Select TV Download Directory" +msgstr "" + +#: gui/slick/js/core.js:1263 +msgid "Select Unpack Directory" +msgstr "" + +#: gui/slick/js/core.js:1326 gui/slick/js/core.js:1376 gui/slick/js/core.js:1425 +#: gui/slick/js/core.js:1491 msgid "This pattern is invalid." msgstr "Този модел е невалиден." -#: gui/slick/js/core.js:1336 gui/slick/js/core.js:1386 gui/slick/js/core.js:1435 -#: gui/slick/js/core.js:1501 +#: gui/slick/js/core.js:1334 gui/slick/js/core.js:1384 gui/slick/js/core.js:1433 +#: gui/slick/js/core.js:1499 msgid "This pattern would be invalid without the folders, using it will force \"Season Folders\" on for all shows." msgstr "" -#: gui/slick/js/core.js:1344 gui/slick/js/core.js:1394 gui/slick/js/core.js:1443 -#: gui/slick/js/core.js:1509 +#: gui/slick/js/core.js:1342 gui/slick/js/core.js:1392 gui/slick/js/core.js:1441 +#: gui/slick/js/core.js:1507 msgid "This pattern is valid." msgstr "Този модел е валиден." +#: gui/slick/js/core.js:1818 +msgid "Select .nzb black hole/watch location" +msgstr "" + +#: gui/slick/js/core.js:1819 +msgid "Select .torrent black hole/watch location" +msgstr "" + +#: gui/slick/js/core.js:1820 +msgid "Select .torrent download location" +msgstr "" + +#: gui/slick/js/core.js:1900 +msgid "Minimum seeding time is" +msgstr "" + +#: gui/slick/js/core.js:1902 +msgid "URL to your uTorrent client (e.g. http://localhost:8000)" +msgstr "" + +#: gui/slick/js/core.js:1905 +msgid "Stop seeding when inactive for" +msgstr "" + +#: gui/slick/js/core.js:1911 +msgid "URL to your Transmission client (e.g. http://localhost:9091)" +msgstr "" + +#: gui/slick/js/core.js:1921 +msgid "URL to your Deluge client (e.g. http://localhost:8112)" +msgstr "" + +#: gui/slick/js/core.js:1930 +msgid "IP or Hostname of your Deluge Daemon (e.g. scgi://localhost:58846)" +msgstr "" + +#: gui/slick/js/core.js:1937 +msgid "URL to your Synology DS client (e.g. http://localhost:5000)" +msgstr "" + +#: gui/slick/js/core.js:1941 +msgid "URL to your rTorrent client (e.g. scgi://localhost:5000 <br> or https://localhost/rutorrent/plugins/httprpc/action.php)" +msgstr "" + +#: gui/slick/js/core.js:1952 +msgid "URL to your qBittorrent client (e.g. http://localhost:8080)" +msgstr "" + +#: gui/slick/js/core.js:1962 +msgid "URL to your MLDonkey (e.g. http://localhost:4080)" +msgstr "" + +#: gui/slick/js/core.js:1974 +msgid "URL to your putio client (e.g. http://localhost:8080)" +msgstr "" + +#: gui/slick/js/core.js:1975 +msgid "<a herf=\"https://app.put.io/oauth/apps/new\" target=\"_blank\"> Create a new OAuth app for put.io</a>" +msgstr "" + +#: gui/slick/js/core.js:1977 +msgid "Put.io Parent Folder" +msgstr "" + +#: gui/slick/js/core.js:1978 +msgid "Put.io OAuth Token" +msgstr "" + +#: gui/slick/js/core.js:3383 gui/slick/views/displayShow.mako:410 +msgid "Show Episodes" +msgstr "Епизоди на сериал" + +#: gui/slick/js/core.js:3388 gui/slick/views/displayShow.mako:408 +msgid "Hide Episodes" +msgstr "" + +#: gui/slick/js/core.js:3396 +msgid "Select Show Location" +msgstr "" + +#: gui/slick/js/core.js:3460 +msgid "Select Unprocessed Episode Folder" +msgstr "" + +#: gui/slick/js/core.js:3790 +msgid "DELETED" +msgstr "" + #: gui/slick/js/core.js:4082 msgid "Resume updating the log on this page." msgstr "" @@ -1415,6 +1548,26 @@ msgstr "" msgid "Pause updating the log on this page." msgstr "" +#: gui/slick/js/core.js:4323 +msgid "searching {searchingFor}..." +msgstr "" + +#: gui/slick/js/core.js:4334 +msgid "search timed out, try again or try another indexer" +msgstr "" + +#: gui/slick/js/core.js:4503 +msgid "loading folders..." +msgstr "" + +#: gui/slick/js/parsers.js:7 gui/slick/js/parsers.js:8 +#: gui/slick/js/plotTooltip.js:6 gui/slick/js/sceneExceptionsTooltip.js:6 +#: gui/slick/views/inc_home_showList.mako:209 +#: gui/slick/views/inc_home_showList.mako:215 +#: gui/slick/views/inc_home_showList.mako:231 +msgid "Loading..." +msgstr "Зареждане..." + #: gui/slick/views/404.mako:5 msgid "You have reached this page by accident, please check the url." msgstr "Вие сте достигнали до тази страница по погрешка, моля проверете URL адреса." @@ -5713,14 +5866,6 @@ msgstr "Промяна на избраните епизоди на" msgid "Select Columns" msgstr "Избор на колони" -#: gui/slick/views/displayShow.mako:408 -msgid "Hide Episodes" -msgstr "" - -#: gui/slick/views/displayShow.mako:410 -msgid "Show Episodes" -msgstr "Епизоди на сериал" - #: gui/slick/views/displayShow.mako:424 msgid "NFO" msgstr "NFO" @@ -6234,12 +6379,6 @@ msgstr "Активен" msgid "loading" msgstr "зарежда" -#: gui/slick/views/inc_home_showList.mako:209 -#: gui/slick/views/inc_home_showList.mako:215 -#: gui/slick/views/inc_home_showList.mako:231 -msgid "Loading..." -msgstr "Зареждане..." - #: gui/slick/views/inc_qualityChooser.mako:31 msgid "<p><b><u>Preferred</u></b> qualities will replace those in <b><u>allowed</u></b>, even if they are lower.</p>" msgstr "<p><b><u>Предпочитани</u></b> качества ще заменят тези в <b><u>позволени</u></b>, дори ако те са по-лоши.</p>" @@ -6777,6 +6916,10 @@ msgstr "Обнови KODI" msgid "Update Emby" msgstr "Обнови Emby" +#: gui/slick/views/layouts/main.mako:167 +msgid "Manage Torrents" +msgstr "Управление на торенти" + #: gui/slick/views/layouts/main.mako:173 msgid "Missed Subtitle Management" msgstr "Управление на липсващите субтитри" diff --git a/locale/ca_ES/LC_MESSAGES/messages.json b/locale/ca_ES/LC_MESSAGES/messages.json index 91f17c3c57f3e9568c6b35d446656e64c9d2063e..eb900fcf803a23eb5d25b96cfdaacb330da427ca 100644 --- a/locale/ca_ES/LC_MESSAGES/messages.json +++ b/locale/ca_ES/LC_MESSAGES/messages.json @@ -1 +1 @@ -{"messages":{"domain":"messages","locale_data":{"messages":{"100":[null,""],"250":[null,""],"500":[null,""],"":{"domain":"messages","plural_forms":"nplurals=2; plural=(n != 1);","lang":"ca_ES"},"Drama":[null,"Drama"],"Mystery":[null,"Misteri"],"Science-Fiction":[null,"Ciència-ficció"],"Crime":[null,"Crim"],"Action":[null,"Acció"],"Comedy":[null,"Comèdia"],"Thriller":[null,"Suspens"],"Animation":[null,"Animació"],"Family":[null,"Família"],"Fantasy":[null,"Fantasia"],"Adventure":[null,"Aventura"],"Horror":[null,"Terror"],"Film-Noir":[null,""],"Sci-Fi":[null,"Ciència-ficció"],"Romance":[null,""],"Sport":[null,"Esport"],"War":[null,"Guerra"],"Biography":[null,"Biografia"],"History":[null,"Històric"],"Music":[null,"Música"],"Western":[null,""],"News":[null,"Notícies"],"Sitcom":[null,""],"Reality-TV":[null,""],"Documentary":[null,"Documental"],"Game-Show":[null,""],"Musical":[null,"Musical"],"Talk-Show":[null,""],"Started Download":[null,"Descarrega començada"],"Download Finished":[null,"Descarrega finalitzada"],"Subtitle Download Finished":[null,""],"SickRage Updated":[null,""],"SickRage Updated To Commit#: ":[null,""],"SickRage new login":[null,""],"New login from IP: {0}. http://geomaplookup.net/?ip={0}":[null,""],"Repeat":[null,"Repeteix"],"Repeat (Separated)":[null,""],"Extend":[null,""],"Extend (Limited)":[null,""],"Extend (Limited, E-prefixed)":[null,""],"Downloaded":[null,"Descarregat"],"Snatched":[null,""],"Snatched (Proper)":[null,""],"Failed":[null,"Fallat"],"Snatched (Best)":[null,""],"Archived":[null,"Arxivat"],"Unknown":[null,"Desconegut"],"Unaired":[null,""],"Skipped":[null,"Saltat"],"Wanted":[null,""],"Ignored":[null,"Ignorat"],"Subtitled":[null,"Subtitulat"],"<No Filter>":[null,""],"Daily Searcher":[null,""],"Backlog":[null,""],"Show Updater":[null,""],"Check Version":[null,""],"Show Queue":[null,""],"Search Queue (All)":[null,""],"Search Queue (Daily Searcher)":[null,""],"Search Queue (Backlog)":[null,""],"Search Queue (Manual)":[null,""],"Search Queue (Retry/Failed)":[null,""],"Search Queue (RSS)":[null,""],"Find Propers":[null,""],"Postprocessor":[null,""],"Find Subtitles":[null,""],"Trakt Checker":[null,""],"Event":[null,""],"Error":[null,"Error"],"Tornado":[null,""],"Thread":[null,"Fil"],"Main":[null,"Principal"],"Loading":[null,""],"New update found for SickRage, starting auto-updater":[null,""],"Update was successful":[null,""],"Update failed!":[null,""],"Backup":[null,"Còpia de seguretat"],"Config backup in progress...":[null,""],"Config backup successful, updating...":[null,""],"Config backup failed, aborting update":[null,""],"No update needed":[null,""],"Mako Error":[null,""],"Oops":[null,"Caram"],"Wrong API key used":[null,""],"Login":[null,""],"API Key not generated":[null,""],"API Builder":[null,""],"Schedule":[null,"Planificar"],"Test 1":[null,"Prova 1"],"This is test number 1":[null,"Aquesta és la prova número 1"],"Test 2":[null,"Prova 2"],"This is test number 2":[null,"Aquesta és la prova número 2"],"You're using the {branch} branch. Please use 'master' unless specifically asked":[null,""],"Invalid show parameters":[null,""],"Invalid parameters":[null,""],"Episode couldn't be retrieved":[null,""],"Home":[null,"Inici"],"Show List":[null,"Mostrar llistat"],"Error: Unsupported Request. Send jsonp request with 'callback' variable in the query string.":[null,""],"Success. Connected and authenticated":[null,""],"Authentication failed. SABnzbd expects":[null,""],"as authentication method":[null,"com a mètode d'autenticació"],"Unable to connect to host":[null,"Incapaç de connectar a amfitrió"],"SMS sent successfully":[null,""],"Problem sending SMS: {message}":[null,""],"Telegram notification succeeded. Check your Telegram clients to make sure it worked":[null,""],"Error sending Telegram notification: {message}":[null,""],"join notification succeeded. Check your join clients to make sure it worked":[null,""],"Error sending join notification: {message}":[null,""]," with password":[null," amb contrasenya"],"Registered and Tested growl successfully {growl_host}":[null,""],"Registration and Testing of growl failed {growl_host}":[null,""],"Test prowl notice sent successfully":[null,""],"Test prowl notice failed":[null,""],"Boxcar2 notification succeeded. Check your Boxcar2 clients to make sure it worked":[null,""],"Error sending Boxcar2 notification":[null,""],"Pushover notification succeeded. Check your Pushover clients to make sure it worked":[null,""],"Error sending Pushover notification":[null,""],"Key verification successful":[null,""],"Unable to verify key":[null,""],"Tweet successful, check your twitter to make sure it worked":[null,""],"Error sending tweet":[null,""],"Please enter a valid account sid":[null,""],"Please enter a valid auth token":[null,""],"Please enter a valid phone sid":[null,""],"Please format the phone number as \"+1-###-###-####\"":[null,""],"Authorization successful and number ownership verified":[null,""],"Error sending sms":[null,""],"Slack message successful":[null,""],"Slack message failed":[null,""],"Discord message successful":[null,""],"Discord message failed":[null,""],"Test KODI notice sent successfully to {kodi_host}":[null,""],"Test KODI notice failed to {kodi_host}":[null,""],"Successful test notice sent to Plex Home Theater ... {plex_clients}":[null,""],"Test failed for Plex Home Theater ... {plex_clients}":[null,""],"Tested Plex Home Theater(s)":[null,""],"Successful test of Plex Media Server(s) ... {plex_servers}":[null,""],"Test failed, No Plex Media Server host specified":[null,""],"Test failed for Plex Media Server(s) ... {plex_servers}":[null,""],"Tested Plex Media Server host(s)":[null,""],"Tried sending desktop notification via libnotify":[null,""],"Test notice sent successfully to {emby_host}":[null,""],"Test notice failed to {emby_host}":[null,""],"Successfully started the scan update":[null,""],"Test failed to start the scan update":[null,""],"Test notice sent successfully to {nmj2_host}":[null,""],"Test notice failed to {nmj2_host}":[null,""],"Trakt Authorized":[null,"Trakt autoritzat"],"Trakt Not Authorized!":[null,"Trakt no autoritzat!"],"Test email sent successfully! Check inbox.":[null,""],"ERROR: {last_error}":[null,"ERROR: {last_error}"],"Test NMA notice sent successfully":[null,""],"Test NMA notice failed":[null,""],"Pushalot notification succeeded. Check your Pushalot clients to make sure it worked":[null,""],"Error sending Pushalot notification":[null,""],"Pushbullet notification succeeded. Check your device to make sure it worked":[null,""],"Error sending Pushbullet notification":[null,""],"Status":[null,"Estat"],"Restarting SickRage":[null,""],"Update Failed":[null,"Actualització fallida"],"Update wasn't successful, not restarting. Check your log for more information.":[null,""],"Checking out branch":[null,""],"Already on branch":[null,"Ja en branca"],"Invalid show ID: {show}":[null,""],"Show not in show list":[null,""],"Edit":[null,"Editar"],"This show is in the process of being downloaded - the info below is incomplete.":[null,""],"The information on this page is in the process of being updated.":[null,""],"The episodes below are currently being refreshed from disk":[null,""],"Currently downloading subtitles for this show":[null,""],"This show is queued to be refreshed.":[null,""],"This show is queued and awaiting an update.":[null,""],"This show is queued and awaiting subtitles download.":[null,""],"Resume":[null,"Continuar"],"Pause":[null,"Pausar"],"Remove":[null,"Elimina"],"Re-scan files":[null,""],"Force Full Update":[null,""],"Update show in KODI":[null,""],"Update show in Emby":[null,""],"Hide specials":[null,""],"Show specials":[null,""],"Preview Rename":[null,""],"Download Subtitles":[null,""],"No scene exceptions":[null,""],"Invalid show ID":[null,""],"Unable to find the specified show":[null,""],"Unable to retreive Fansub Groups from AniDB.":[null,""],"Edit Show":[null,""],"Unable to refresh this show: {error}":[null,""],"New location <tt>{location}</tt> does not exist":[null,""],"Unable to update show: {error}":[null,""],"Unable to force an update on scene exceptions of the show.":[null,""],"Unable to force an update on scene numbering of the show.":[null,""],"{num_errors:d} error{plural} while saving changes:":[null,""],"{show_name} has been {paused_resumed}":[null,""],"resumed":[null,""],"paused":[null,"en pausa"],"{show_name} has been {deleted_trashed} {was_deleted}":[null,""],"deleted":[null,"esborrat"],"trashed":[null,""],"(media untouched)":[null,""],"(with all related media)":[null,""],"Unable to refresh this show.":[null,""],"Unable to update this show.":[null,""],"Library update command sent to KODI host(s)): {kodi_hosts}":[null,""],"Unable to contact one or more KODI host(s)): {kodi_hosts}":[null,""],"Library update command sent to Plex Media Server host: {plex_server}":[null,""],"Unable to contact Plex Media Server host: {plex_server}":[null,""],"Library update command sent to Emby host: {emby_host}":[null,""],"Unable to contact Emby host: {emby_host}":[null,""],"You must specify a show and at least one episode":[null,""],"Invalid status":[null,""],"Backlog was automatically started for the following seasons of <b>{show_name}</b>":[null,""],"Season":[null,"Temporada"],"Backlog started":[null,""],"Retrying Search was automatically started for the following season of <b>{show_name}</b>":[null,""],"Retry Search started":[null,""],"You must specify a show":[null,""],"Can't rename episodes when the show dir is missing.":[null,""],"New subtitles downloaded: {new_subtitle_languages}":[null,""],"No subtitles downloaded":[null,""],"IRC":[null,"IRC"],"Could not load news from the repo. [Click here for news.md])({news_url})":[null,""],"The was a problem connecting to github, please refresh and try again":[null,""],"Could not load changes from the repo. [Click here for CHANGES.md]({changes_url})":[null,""],"Changelog":[null,"Registre de canvis"],"Post Processing":[null,""],"Add Shows":[null,""],"No folders selected.":[null,""],"New Show":[null,""],"Trending Shows":[null,""],"Popular Shows":[null,""],"Most Anticipated Shows":[null,""],"Most Collected Shows":[null,""],"Most Watched Shows":[null,""],"Most Played Shows":[null,""],"Recommended Shows":[null,""],"New Shows":[null,""],"Season Premieres":[null,""],"Existing Show":[null,""],"No root directories setup, please go back and add one.":[null,""],"Show added":[null,""],"Adding the specified show {show_name}":[null,""],"Missing params, no Indexer ID or folder: {show_to_add} and {root_dir}/{show_path}":[null,""],"Unknown error. Unable to add show due to problem with show selection.":[null,""],"Unable to add show":[null,""],"Folder {show_dir} exists already":[null,""],"Unable to create the folder {show_dir}, can't add the show":[null,""],"Adding the specified show into {show_dir}":[null,""],"Shows Added":[null,""],"Automatically added {num_shows} from their existing metadata files":[null,""],"Mass Update":[null,""],"Episode Overview":[null,""],"Missing Subtitles":[null,""],"Backlog Overview":[null,""],"Mass Edit":[null,""],"Unable to update show: {excption_format}":[null,""],"Unable to refresh show {show_name}: {excption_format}":[null,""],"Errors encountered":[null,""],"Updates":[null,""],"Refreshes":[null,""],"Renames":[null,""],"Subtitles":[null,"Subtítols"],"The following actions were queued":[null,""],"For best results please set the Download Station alias as":[null,""],"You can check this setting in the Synology DSM":[null,""],"Control Panel":[null,""],"Application Portal":[null,""],"Make sure you allow DSM to be embedded with iFrames too in":[null,""],"DSM Settings":[null,""],"Security":[null,"Seguretat"],"Manage Torrents":[null,""],"Failed Downloads":[null,""],"Manage Searches":[null,""],"Backlog search started":[null,""],"Daily search started":[null,""],"Find propers search started":[null,""],"Subtitle search started":[null,""],"Remove Selected":[null,""],"Clear History":[null,"Esborra l'historial"],"Trim History":[null,""],"Selected history entries removed":[null,""],"History cleared":[null,"Històric esborrat"],"Removed history entries older than 30 days":[null,""],"General":[null,"General"],"Backup/Restore":[null,"Còpia de seguretat/restauració"],"Search Settings":[null,""],"Search Providers":[null,"Proveïdors de cerca"],"Subtitles Settings":[null,""],"Notifications":[null,"Notificacions"],"Anime":[null,"Anime"],"SickRage Configuration":[null,"Configuració SickRage"],"Config - Shares":[null,""],"Windows Shares Configuration":[null,""],"Saved Shares":[null,""],"Your Windows share settings have been saved":[null,""],"Config - General":[null,"Config - General"],"General Configuration":[null,"Configuració General"],"Saved Defaults":[null,""],"Your \"add show\" defaults have been set to your current selections.":[null,""],"Unable to create directory {directory}, log directory not changed.":[null,""],"Unable to create directory {directory}, https cert directory not changed.":[null,""],"Unable to create directory {directory}, https key directory not changed.":[null,""],"Error(s) Saving Configuration":[null,""],"Configuration Saved":[null,"Configuració guardada"],"Config - Backup/Restore":[null,""],"Config - Episode Search":[null,""],"Config - Post Processing":[null,""],"Unpacking Not Supported, disabling unpack setting":[null,""],"You tried saving an invalid normal naming config, not saving your naming settings":[null,""],"You tried saving an invalid anime naming config, not saving your naming settings":[null,""],"Config - Providers":[null,""],"No Provider Name specified":[null,""],"No Provider Url specified":[null,""],"No Provider Api key specified":[null,""],"Config - Notifications":[null,""],"Config - Subtitles":[null,""],"Config - Anime":[null,""],"Clear Errors":[null,"Eliminar Errors"],"Clear Warnings":[null,"Eliminar advertències"],"Submit Errors":[null,"Enviar Errors"],"Logs & Errors":[null,""],"Log File":[null,"Fitxer de registre"],"Logs":[null,""],"This is a test notification from SickRage":[null,""],"Please fill out the necessary fields above.":[null,""],"This pattern is invalid.":[null,""],"This pattern would be invalid without the folders, using it will force \"Season Folders\" on for all shows.":[null,""],"This pattern is valid.":[null,""],"Resume updating the log on this page.":[null,""],"Pause updating the log on this page.":[null,""],"You have reached this page by accident, please check the url.":[null,""],"A mako error has occured.<br>\n If this happened during an update a simple page refresh may be the solution.<br>\n Mako errors that happen during updates may be a one time error if there were significant ui changes.":[null,""],"Show/Hide Error":[null,""],"Add New Show":[null,""],"For shows that you haven't downloaded yet, this option finds a show on theTVDB.com, creates a directory for it's episodes, and adds it to SickRage.":[null,""],"Add From Trakt Lists":[null,""],"For shows that you haven't downloaded yet, this option lets you choose from a show from one of the Trakt lists to add to SickRage.":[null,""],"Add From IMDB's Popular Shows":[null,""],"View IMDB's list of the most popular shows. This feature uses IMDB's MOVIEMeter algorithm to identify popular TV Series.":[null,""],"Add Existing Shows":[null,""],"Use this option to add shows that already have a folder created on your hard drive. SickRage will scan your existing metadata/episodes and add the show accordingly.":[null,""],"Add Existing Show":[null,""],"Manage Directories":[null,""],"Customize Options":[null,""],"SickRage can add existing shows, using the current options, by using locally stored NFO/XML metadata to eliminate user interaction. If you would rather have SickRage prompt you to customize each show, then use the checkbox below.":[null,""],"Prompt me to set settings for each show":[null,""],"Displaying folders within these directories which aren't already added to SickRage":[null,""],"Submit":[null,""],"Find a show on theTVDB":[null,""],"Show retrieved from existing metadata":[null,""],"All Indexers":[null,"Tots els Indexers"],"Search":[null,"Cerca"],"This will only affect the language of the retrieved metadata file contents and episode filenames.":[null,""],"This <b>DOES NOT</b> allow SickRage to download non-english TV episodes!":[null,""],"Pick the parent folder":[null,""],"Pre-chosen Destination Folder":[null,""],"Customize options":[null,""],"Add Show":[null,""],"Skip Show":[null,""],"Sort By":[null,"Ordena per"],"Name":[null,"Nom"],"Original":[null,"Original"],"Votes":[null,"Vots"],"Rating":[null,"Puntuació"],"Rating > Votes":[null,""],"Sort Order":[null,"Criteri d'ordenació"],"Asc":[null,"Asc"],"Desc":[null,"Desc"],"Fetching of IMDB Data failed. Are you online?":[null,""],"Exception":[null,"Excepció"],"Select Trakt List":[null,""],"Most Anticipated":[null,""],"Trending":[null,"Tendències"],"Popular":[null,"Popular"],"Most Watched":[null,"Més vistos"],"Most Played":[null,""],"Most Collected":[null,""],"Recommended":[null,"Recomanat"],"Toggle navigation":[null,""],"Profile":[null,"Perfil"],"JSONP":[null,"JSONP"],"Back to SickRage":[null,""],"Parameters":[null,"Paràmetres"],"Required":[null,""],"Description":[null,"Descripció"],"Type":[null,"Tipus"],"Default value":[null,"Valor predeterminat"],"Allowed values":[null,""],"Playground":[null,""],"Clear":[null,"Neteja"],"Yes":[null,"Sí"],"No":[null,"No"],"season":[null,"temporada"],"episode":[null,"episodi"],"Python Version":[null,"Versió de Python"],"SSL Version":[null,"Versió de SSL"],"OS":[null,""],"Locale":[null,""],"User":[null,"Usuari"],"Program Folder":[null,""],"Config File":[null,""],"Database File":[null,""],"Cache Folder":[null,""],"Log Folder":[null,""],"Arguments":[null,""],"Web Root":[null,""],"Website":[null,""],"Wiki":[null,""],"Source":[null,""],"IRC Chat":[null,""],"AnimeDB Settings":[null,""],"Look & Feel":[null,""],"AniDB is non-profit database of anime information that is freely open to the public":[null,""],"Enable":[null,""],"should SickRage use data from AniDB?":[null,""],"AniDB Username":[null,""],"username of your AniDB account":[null,""],"AniDB Password":[null,""],"password of your AniDB account":[null,""],"AniDB MyList":[null,""],"do you want to add the PostProcessed episodes to the MyList?":[null,""],"Look and Feel":[null,""],"How should the anime functions show and behave.":[null,""],"Split show lists":[null,""],"separate anime and normal shows in groups":[null,""],"Split in tabs":[null,""],"use tabs for when splitting show lists":[null,""],"Restore":[null,""],"Backup your main database file and config.":[null,""],"Select the folder you wish to save your backup file to":[null,""],"Restore your main database file and config.":[null,""],"Select the backup file you wish to restore":[null,""],"Misc":[null,"Miscel·lània"],"Interface":[null,""],"Advanced Settings":[null,""],"Startup options. Indexer options. Log and show file locations.":[null,""],"Some options may require a manual restart to take effect.":[null,""],"Default Indexer Language":[null,""],"for adding shows and metadata providers":[null,""],"Launch browser":[null,""],"open the SickRage home page on startup":[null,""],"Initial page":[null,""],"Shows":[null,""],"when launching SickRage interface":[null,""],"Choose hour to update shows":[null,""],"with information such as next air dates, show ended, etc. Use 15 for 3pm, 4 for 4am etc.":[null,""],"note":[null,""],"minutes are randomized each time SickRage is started":[null,""],"Send to trash for actions":[null,""],"when using show \"Remove\" and delete files":[null,""],"on scheduled deletes of the oldest log files":[null,""],"selected actions use trash (recycle bin) instead of the default permanent delete":[null,""],"Log file folder location":[null,""],"Number of Log files saved":[null,""],"number of log files saved when rotating logs (default: 5) (REQUIRES RESTART)":[null,""],"Size of Log files saved":[null,""],"maximum size in MB of the log file (default: 1MB) (REQUIRES RESTART)":[null,""],"Use initial indexer set to":[null,""],"as the default selection when adding new shows":[null,""],"Timeout show indexer at":[null,""],"seconds of inactivity when finding new shows (default:20)":[null,""],"Show root directories":[null,""],"where the files of shows are located":[null,""],"Save Changes":[null,""],"Options for software updates.":[null,""],"Check software updates":[null,""],"and display notifications when updates are available. Checks are run on startup and at the frequency set below*":[null,""],"Automatically update":[null,""],"fetch and install software updates. Updates are run on startup and in the background at the frequency set below*":[null,""],"Check the server every*":[null,""],"hours for software updates (default:1)":[null,""],"Notify on software update":[null,""],"send a message to all enabled notifiers when SickRage has been updated":[null,""],"User Interface":[null,""],"Options for visual appearance.":[null,""],"Interface Language":[null,""],"System Language":[null,""],"for appearance to take effect, save then refresh your browser":[null,""],"Display theme":[null,""],"Dark":[null,"Fosc"],"Light":[null,""],"Use a background image":[null,""],"use a custom image as background for SickRage":[null,""],"Background Path":[null,""],"Path to the background image":[null,""],"Show fanart in the background":[null,""],"on the show summary page":[null,""],"Fanart transparency":[null,""],"transparency of the fanart in the background":[null,""],"Use a custom stylesheet file":[null,""],"use a custom .css file to style SickRage (for advanced users)":[null,""],"Stylesheet File Path":[null,""],"Path to the stylesheet (.css) file":[null,""],"Show all seasons":[null,""],"Sort with \"The\", \"A\", \"An\"":[null,""],"include articles (\"The\", \"A\", \"An\") when sorting show lists":[null,""],"Missed episodes range":[null,""],"set the range in days of the missed episodes in the Schedule page":[null,""],"Display fuzzy dates":[null,""],"move absolute dates into tooltips and display e.g. \"Last Thu\", \"On Tue\"":[null,""],"Trim zero padding":[null,""],"remove the leading number \"0\" shown on hour of day, and date of month":[null,""],"Date style":[null,""],"Use System Default":[null,""],"Time style":[null,""],"seconds are only shown on the History page":[null,""],"Timezone":[null,"Fus horari"],"Local":[null,"Local"],"Network":[null,"Xarxa"],"display dates and times in either your timezone or the shows network timezone":[null,""],"use local timezone to start searching for episodes minutes after show ends (depends on your dailysearch frequency)":[null,""],"Download url":[null,""],"URL where the shows can be downloaded.":[null,""],"Web Interface":[null,""],"it is recommended that you enable a username and password to secure SickRage from being tampered with remotely.":[null,""],"these options require a manual restart to take effect.":[null,""],"API key":[null,""],"used to give 3rd party programs limited access to SickRage":[null,""],"you can try all the features of the API":[null,""],"here":[null,""],"HTTP logs":[null,""],"enable logs from the internal Tornado web server":[null,""],"HTTP username":[null,"Nom d'usuari HTTP"],"set blank for no login":[null,""],"HTTP password":[null,"Contrasenya d'HTTP"],"blank = no authentication":[null,"en blanc = sense autenticació"],"HTTP port":[null,""],"web port to browse and access SickRage (default:8081)":[null,""],"Notify on login":[null,""],"enable to be notified when a new login happens in webserver":[null,""],"Listen on IPv6":[null,""],"attempt binding to any available IPv6 address":[null,""],"Enable HTTPS":[null,""],"enable access to the web interface using a HTTPS address":[null,""],"HTTPS certificate":[null,""],"file name or path to HTTPS certificate":[null,""],"HTTPS key":[null,""],"file name or path to HTTPS key":[null,""],"Reverse proxy headers":[null,""],"accept the following reverse proxy headers (advanced)...":[null,""],"(X-Forwarded-For, X-Forwarded-Host, and X-Forwarded-Proto)":[null,""],"CPU throttling":[null,""],"Normal (default). High is lower and Low is higher CPU use":[null,""],"Anonymous redirect":[null,""],"backlink protection via anonymizer service, must end in \"?\"":[null,""],"Enable debug":[null,""],"enable debug logs":[null,""],"Verify SSL Certs":[null,""],"verify SSL Certificates (Disable this for broken SSL installs (Like QNAP))":[null,""],"No Restart":[null,""],"only shutdown when restarting SR":[null,""],"only select this when you have external software restarting SR automatically when it stops (like FireDaemon)":[null,""],"Encrypt passwords":[null,""],"in the <code>config.ini</code> file":[null,""],"warning":[null,""],"passwords must only contain":[null,""],"ASCII characters":[null,""],"Unprotected calendar":[null,""],"allow subscribing to the calendar without user and password":[null,""],"some services like Google Calendar only work this way":[null,""],"Google Calendar Icons":[null,""],"show an icon next to exported calendar events in Google Calendar":[null,""],"Proxy host":[null,""],"blank to disable or proxy to use when connecting to providers":[null,""],"also use global proxy setting for indexers (tvdb, xem, anidb, etc.)":[null,""],"Skip Remove Detection":[null,""],"skip detection of removed files":[null,""],"if disabled the episode will be set to the default deleted status":[null,""],"Default deleted episode status":[null,""],"define the status to be set for media file that has been deleted.":[null,""],"Archived option will keep previous downloaded quality":[null,""],"example: Downloaded (1080p WEB-DL) ==> Archived (1080p WEB-DL)":[null,""],"Options for github related features.":[null,""],"Branch version":[null,""],"error: No branches found.":[null,""],"select branch to use (restart required)":[null,""],"Authorization Type":[null,""],"Username and password":[null,""],"Personal access token":[null,""],"You must use a personal access token if you're using \"two-factor authentication\" on GitHub.":[null,""],"GitHub username":[null,""],"*** (REQUIRED FOR SUBMITTING ISSUES) ***":[null,""],"GitHub password":[null,""],"GitHub personal access token":[null,""],"Generate Token":[null,""],"Manage Tokens":[null,""],"GitHub remote for branch":[null,""],"access repo configured remotes (save then refresh browser)":[null,""],"default":[null,""],"origin":[null,""],"Git executable path":[null,""],"only needed if OS is unable to locate git from env":[null,""],"Git reset":[null,""],"removes untracked files and performs a hard reset on git branch automatically to help resolve update issues":[null,""],"Home Theater / NAS":[null,""],"Devices":[null,"Dispositius"],"Social":[null,"Social"],"A free and open source cross-platform media center and home entertainment system software with a 10-foot user interface designed for the living-room TV.":[null,""],"send KODI commands?":[null,""],"Always on":[null,"Sempre actiu"],"log errors when unreachable?":[null,""],"Notify on snatch":[null,""],"send a notification when a download starts?":[null,""],"Notify on download":[null,""],"send a notification when a download finishes?":[null,""],"Notify on subtitle download":[null,""],"send a notification when subtitles are downloaded?":[null,""],"Update library":[null,""],"update KODI library when a download finishes?":[null,""],"Full library update":[null,""],"perform a full library update if update per-show fails?":[null,""],"Only update first host":[null,""],"only send library updates to the first active host?":[null,""],"KODI IP:Port":[null,""],"host running KODI (eg. 192.168.1.100:8080)":[null,""],"(multiple host strings must be separated by commas)":[null,""],"Username":[null,"Nom d’usuari"],"username for your KODI server (blank for none)":[null,""],"Password":[null,"Contrasenya"],"password for your KODI server (blank for none)":[null,""],"Click below to test.":[null,""],"Experience your media on a visually stunning, easy to use interface on your Mac connected to your TV. Your media library has never looked this good!":[null,""],"For sending notifications to Plex Home Theater (PHT) clients, use the KODI notifier with port <b>3005</b>.":[null,""],"send Plex Media Server library updates?":[null,""],"Plex Media Server Auth Token":[null,""],"auth token used by Plex":[null,""],"Update Library":[null,""],"update Plex Media Server library when a download finishes":[null,""],"Plex Media Server IP:Port":[null,""],"one or more hosts running Plex Media Server<br/>(eg. 192.168.1.1:32400, 192.168.1.2:32400)":[null,""],"HTTPS":[null,"HTTPS"],"use https for plex media server requests?":[null,""],"Click below to test Plex Media Server(s)":[null,""],"Test Plex Media Server":[null,""],"Plex Home Theater":[null,""],"send Plex Home Theater notifications?":[null,""],"Plex Home Theater IP:Port":[null,""],"one or more hosts running Plex Home Theater<br>(eg. 192.168.1.100:3000, 192.168.1.101:3000)":[null,""],"Click below to test Plex Home Theater(s)":[null,""],"Test Plex Home Theater":[null,""],"some Plex Home Theaters <b class=\"boldest\">do not</b> support notifications e.g. Plexapp for Samsung TVs":[null,""],"Emby":[null,""],"A home media server built using other popular open source technologies.":[null,""],"send update commands to Emby?":[null,""],"Emby IP:Port":[null,""],"host running Emby (eg. 192.168.1.100:8096)":[null,""],"Emby API Key":[null,""],"Networked Media Jukebox":[null,""],"The Networked Media Jukebox, or NMJ, is the official media jukebox interface made available for the Popcorn Hour 200-series.":[null,""],"send update commands to NMJ?":[null,""],"Popcorn IP address":[null,""],"IP address of Popcorn 200-series (eg. 192.168.1.100)":[null,""],"Get settings":[null,""],"Get Settings":[null,""],"the Popcorn Hour device must be powered on and NMJ running.":[null,""],"NMJ database":[null,""],"automatically filled via the 'Get Settings' button.":[null,""],"NMJ mount url":[null,""],"Networked Media Jukebox v2":[null,""],"The Networked Media Jukebox, or NMJv2, is the official media jukebox interface made available for the Popcorn Hour 300 & 400-series.":[null,""],"send update commands to NMJv2?":[null,""],"IP address of Popcorn 300/400-series (eg. 192.168.1.100)":[null,""],"Database location":[null,""],"Database instance":[null,""],"adjust this value if the wrong database is selected.":[null,""],"Find database":[null,""],"Find Database":[null,""],"the Popcorn Hour device must be powered on.":[null,""],"NMJv2 database":[null,""],"automatically filled via the 'Find Database' buttons.":[null,""],"Synology":[null,""],"The Synology DiskStation NAS.":[null,""],"Synology Indexer is the daemon running on the Synology NAS to build its media database.":[null,""],"send Synology notifications?":[null,""],"requires SickRage to be running on your Synology NAS.":[null,""],"Synology Indexer":[null,""],"Synology Notifier is the notification system of Synology DSM":[null,""],"send notifications to the Synology Notifier?":[null,""],"pyTivo":[null,""],"pyTivo is both an HMO and GoBack server. This notifier will load the completed downloads to your Tivo.":[null,""],"send notifications to pyTivo?":[null,""],"requires the downloaded files to be accessible by pyTivo.":[null,""],"pyTivo IP:Port":[null,""],"host running pyTivo (eg. 192.168.1.1:9032)":[null,""],"pyTivo share name":[null,""],"value used in pyTivo Web Configuration to name the share.":[null,""],"Tivo name":[null,""],"(Messages & Settings > Account & System Information > System Information > DVR name)":[null,""],"Growl":[null,""],"A cross-platform unobtrusive global notification system.":[null,""],"send Growl notifications?":[null,""],"Growl IP:Port":[null,""],"host running Growl (eg. 192.168.1.100:23053)":[null,""],"may leave blank if SickRage is on the same host.":[null,""],"otherwise Growl <b>requires</b> a password to be used.":[null,""],"Click below to register and test Growl, this is required for Growl notifications to work.":[null,""],"Register Growl":[null,""],"Prowl":[null,""],"A Growl client for iOS.":[null,""],"send Prowl notifications?":[null,""],"Prowl Message Title":[null,""],"Global Prowl API key(s)":[null,""],"Prowl API(s) listed here, separated by commas if applicable, will<br> receive notifications for <b>all</b> shows. Your Prowl API key is available at:":[null,""],"(this field may be blank except when testing.)":[null,""],"Show notification list":[null,""],"-- Select a Show --":[null,""],"Configure per-show notifications here by entering Prowl API key(s), separated by commas, '\n 'after selecting a show in the drop-down box. Be sure to activate the 'Save for this show' '\n 'button below after each entry.":[null,""],"Save for this show":[null,""],"Prowl priority":[null,""],"Very Low":[null,""],"Moderate":[null,""],"Normal":[null,""],"High":[null,""],"Emergency":[null,""],"priority of Prowl messages from SickRage.":[null,""],"Libnotify":[null,""],"The standard desktop notification API for Linux/*nix systems. This notifier will only function if the pynotify module is installed (Ubuntu/Debian package <a href=\"apt:python-notify\">python-notify</a>).":[null,""],"send Libnotify notifications?":[null,""],"Pushover":[null,""],"Pushover makes it easy to send real-time notifications to your Android and iOS devices.":[null,""],"send Pushover notifications?":[null,""],"Pushover key":[null,""],"user key of your Pushover account":[null,""],"Pushover API key":[null,""],"click here":[null,""]," to create a Pushover API key":[null,""],"Pushover devices":[null,""],"comma separated list of pushover devices you want to send notifications to":[null,""],"Pushover notification sound":[null,""],"Bike":[null,""],"Bugle":[null,""],"Cash Register":[null,""],"Classical":[null,""],"Cosmic":[null,""],"Falling":[null,""],"Gamelan":[null,""],"Incoming":[null,""],"Intermission":[null,""],"Magic":[null,""],"Mechanical":[null,""],"Piano Bar":[null,""],"Siren":[null,""],"Space Alarm":[null,""],"Tug Boat":[null,""],"Alien Alarm (long)":[null,""],"Climb (long)":[null,""],"Persistent (long)":[null,""],"Pushover Echo (long)":[null,""],"Up Down (long)":[null,""],"None (silent)":[null,""],"Device specific":[null,""],"choose notification sound to use":[null,""],"Pushover priority":[null,""],"Choose priority to use":[null,""],"Boxcar 2":[null,""],"Read your messages where and when you want them!":[null,""],"send Boxcar notifications?":[null,""],"Boxcar2 access token":[null,""],"access token for your Boxcar account.":[null,""],"NMA":[null,""],"Notify My Android":[null,""],"Notify My Android is a Prowl-like Android App and API that offers an easy way to send notifications from your application directly to your Android device.":[null,""],"send NMA notifications?":[null,""],"NMA API key":[null,""],"(multiple keys must be separated by commas, up to a maximum of 5)":[null,""],"NMA priority":[null,""],"priority of NMA messages from SickRage.":[null,""],"Pushalot":[null,""],"Pushalot is a platform for receiving custom push notifications to connected devices running Windows Phone or Windows 8.":[null,""],"send Pushalot notifications ?":[null,""],"Pushalot authorization token":[null,""],"authorization token of your Pushalot account.":[null,""],"Pushbullet":[null,""],"Pushbullet is a platform for receiving custom push notifications to connected devices running Android/iOS and desktop browsers such as Chrome, Firefox or Opera.":[null,""],"send Pushbullet notifications?":[null,""],"Pushbullet API key":[null,""],"API key of your Pushbullet account":[null,""],"Pushbullet devices":[null,""],"Update device list":[null,""],"Pushbullet channels":[null,""],"Free Mobile":[null,""],"Free Mobile is a famous French cellular network provider.<br> It provides to their customer a free SMS API.":[null,""],"send SMS notifications?":[null,""],"send a SMS when a download starts?":[null,""],"send a SMS when a download finishes?":[null,""],"send a SMS when subtitles are downloaded?":[null,""],"Free Mobile customer ID":[null,""],"it's your Free Mobile customer ID (8 digits)":[null,""],"Free Mobile API key":[null,""],"find your API key in your customer portal.":[null,""],"Click below to test your settings.":[null,""],"Telegram":[null,""],"Telegram is a cloud-based instant messaging service.":[null,""],"send Telegram notifications?":[null,""],"send a message when a download starts?":[null,""],"send a message when a download finishes?":[null,""],"send a message when subtitles are downloaded?":[null,""],"User/group ID":[null,""],"contact @myidbot on Telegram to get an ID":[null,""],"Bot API token":[null,""],"contact @BotFather on Telegram to set up one":[null,""],"Join":[null,""],"Join all of your devices together!":[null,""],"send Join notifications?":[null,""],"Device ID":[null,""],"per device specific id":[null,""]," to create a Join API key":[null,""],"Twilio":[null,""],"Twilio is a webservice API that allows you to communicate directly with a mobile number. This notifier will send a text directly to your mobile device.":[null,""],"should SickRage text your mobile device?":[null,""],"Twilio Account SID":[null,""],"account SID of your Twilio account.":[null,""],"Twilio Auth Token":[null,""],"Twilio Phone SID":[null,""],"phone SID that you would like to send the sms from":[null,""],"Your phone number":[null,""],"phone number that will receive the sms. Please use the format +1-###-###-####":[null,""],"Twitter":[null,""],"A social networking and microblogging service, enabling its users to send and read other users' messages called tweets.":[null,""],"should SickRage post tweets on Twitter?":[null,""],"you may want to use a secondary account.":[null,""],"send direct message":[null,""],"send a notification via Direct Message, not via status update":[null,""],"send DM to":[null,""],"Twitter account to send Direct Messages to (must follow you)":[null,""],"Step One":[null,""],"Request Authorization":[null,""],"Click the \"Request Authorization\" button.<br> This will open a new page containing an auth key.<br> <b>note:</b> if nothing happens check your popup blocker.":[null,""],"Step Two":[null,""],"Enter the key Twitter gave you below, and click \"Verify Key\".":[null,""],"Trakt":[null,""],"Trakt helps keep a record of what TV shows and movies you are watching. Based on your favorites, Trakt recommends additional shows and movies you'll enjoy!":[null,""],"send Trakt.tv notifications?":[null,""],"username of your Trakt account.":[null,""],"Trakt PIN":[null,""],"Get Trakt PIN":[null,""],"PIN code to authorize SickRage to access Trakt on your behalf.":[null,""],"API Timeout":[null,""],"seconds to wait for Trakt API to respond. (Use 0 to wait forever)":[null,""],"Default indexer":[null,""],"Sync libraries":[null,""],"sync your SickRage show library with your trakt show library.":[null,""],"Remove Episodes From Collection":[null,""],"remove an episode from your Trakt Collection if it is not in your SickRage Library.":[null,""],"Sync watchlist":[null,""],"sync your SickRage show watchlist with your trakt show watchlist (either Show and Episode).":[null,""],"episode will be added on watch list when wanted or snatched and will be removed when downloaded ":[null,""],"Watchlist add method":[null,""],"Skip All":[null,""],"Download Pilot Only":[null,""],"Get whole show":[null,""],"method in which to download episodes for new shows.":[null,""],"Remove episode":[null,""],"remove an episode from your watchlist after it is downloaded.":[null,""],"Remove series":[null,""],"remove the whole series from your watchlist after any download.":[null,""],"Remove watched show":[null,""],"remove the show from sickrage if it's ended and completely watched":[null,""],"Start paused":[null,""],"shows grabbed from your trakt watchlist start paused.":[null,""],"Trakt blackList name":[null,""],"name (slug) of list on Trakt for blacklisting show on 'Add Trending Show' & 'Add Recommended Shows' pages":[null,""],"Email":[null,""],"Allows configuration of email notifications on a per show basis.":[null,""],"send email notifications?":[null,""],"SMTP host":[null,""],"hostname of your SMTP email server.":[null,""],"SMTP port":[null,""],"port number used to connect to your SMTP host.":[null,""],"SMTP from":[null,""],"sender email address, some hosts require a real address.":[null,""],"Use TLS":[null,""],"check to use TLS encryption.":[null,""],"SMTP user":[null,""],"(optional) your SMTP server username.":[null,""],"SMTP password":[null,""],"(optional) your SMTP server password.":[null,""],"Global email list":[null,""],"email addresses listed here, separated by commas if applicable, will<br> receive notifications for <b>all</b> shows.":[null,""],"(This field may be blank except when testing.)":[null,""],"Email Subject":[null,""],"use a custom subject for some privacy protection?":[null,""],"(leave blank for the default SickRage subject)":[null,""],"configure per-show notifications here by entering email address(es), separated by commas,":[null,""],"after selecting a show in the drop-down box. Be sure to activate the 'Save for this show'":[null,""],"button below after each entry.":[null,""],"Slack":[null,""],"Slack brings all your communication together in one place. It's real-time messaging, archiving and search for modern teams.":[null,""],"should SickRage post messages on Slack?":[null,""],"Slack Incoming Webhook":[null,""],"Discord":[null,""],"All-in-one voice and text chat for gamers that's free, secure, and works on both your desktop and phone.":[null,""],"Should SickRage post messages on Discord?":[null,""],"Discord Incoming Webhook":[null,""],"Create webhook under channel settings.":[null,""],"Discord Bot Name":[null,""],"Blank will use webhook default Name.":[null,""],"Discord Avatar URL":[null,""],"Blank will use webhook default Avatar.":[null,""],"Discord TTS":[null,""],"Send notifications using text-to-speech":[null,""],"Post-Processing":[null,""],"Episode Naming":[null,""],"Metadata":[null,""],"Settings that dictate how SickRage should process completed downloads.":[null,""],"enable the automatic post processor to scan and process any files in your Post Processing Dir":[null,""],"do not use if you use an external Post Processing script":[null,""],"Post Processing Dir":[null,""],"the folder where your download client puts the completed TV downloads.":[null,""],"please use seperate downloading and completed folders in your download client if possible.":[null,""],"Processing Method":[null,""],"what method should be used to put files into the library?":[null,""],"if you keep seeding torrents after they finish, please avoid the 'move' processing method to prevent errors.":[null,""],"Auto Post-Processing Frequency":[null,""],"time in minutes to check for new files to auto post-process (min 10)":[null,""],"Postpone post processing":[null,""],"wait to process a folder if sync files are present.":[null,""],"Sync File Extensions":[null,""],"comma seperated list of extensions or filename globs SickRage ignores when Post Processing":[null,""],"Rename Episodes":[null,""],"rename episode using the Episode Naming settings?":[null,""],"Create missing show directories":[null,""],"create missing show directories when they get deleted":[null,""],"Add shows without directory":[null,""],"add shows without creating a directory (not recommended)":[null,""],"Move associated files":[null,""],"move associated (srt/srr/sfv/etc) files while post processing?":[null,""],"Rename .nfo file":[null,""],"rename the original .nfo file to .nfo-orig to avoid conflicts?":[null,""],"Associated file extensions":[null,""],"comma separated list of associated file extensions SickRage should keep while post processing.":[null,""],"leaving it empty means no associated files will be post processed":[null,""],"Delete non associated files":[null,""],"delete non associated files while post processing?":[null,""],"Change File Date":[null,""],"set last modified filedate to the date that the episode aired?":[null,""],"some systems may ignore this feature.":[null,""],"Timezone for File Date":[null,""],"local":[null,""],"network":[null,""],"what timezone should be used to change File Date?":[null,""],"Unpack":[null,""],"What to do with archived releases found in your <i>TV Download Dir</i>?":[null,""],"Ignore (do not process contents)":[null,""],"Unpack (process contents)":[null,""],"Treat as video (process archive as-is)":[null,""],"'Unpack' only works with RAR archives":[null,""],"Windows":[null,""],"WinRar is required on windows":[null,""],"Unpack Directory":[null,""],"Choose a path to unpack files, leave blank to unpack in download dir":[null,""],"Unrar Location":[null,""],"add the path to unrar if it is not in the system path":[null,""],"Alternate Unrar Tool":[null,""],"add the path to an alternate unrar tool if it is not in the system path":[null,""],"Delete RAR contents":[null,""],"delete content of RAR files, even if Process Method not set to move?":[null,""],"only working with RAR archive":[null,""],"Don't delete empty folders":[null,""],"leave empty folders when Post Processing?":[null,""],"can be overridden using manual Post Processing":[null,""],"Follow symbolic-links":[null,""],"follow down symbolic links in download directory?":[null,""],"<b>EXPERTS ONLY.</b><br>Enable only if you know what <b>circular symbolic links</b> are,<br>and can <b>verify that you have none</b>.":[null,""],"Use icacls":[null,""],"Windows only":[null,""],"sets video permissions after using the move method in post processing":[null,""],"Extra Scripts":[null,""],"see":[null,""],"for script arguments description and usage.":[null,""],"How SickRage will name and sort your episodes.":[null,""],"Name Pattern":[null,""],"Toggle Naming Legend":[null,""],"don't forget to add quality pattern. Otherwise after post-processing the episode will have UNKNOWN quality":[null,""],"Meaning":[null,""],"Pattern":[null,""],"Result":[null,""],"Use lower case if you want lower case names (eg. %sn, %e.n, %q_n etc)":[null,""],"Show Name":[null,""],"Show.Name":[null,""],"Show_Name":[null,""],"Season Number":[null,""],"XEM Season Number":[null,""],"Episode Number":[null,""],"XEM Episode Number":[null,""],"Episode Name":[null,""],"Episode.Name":[null,""],"Episode_Name":[null,""],"Air Date":[null,""],"Post-Processing Date":[null,""],"Quality":[null,""],"Scene Quality":[null,""],"Release Name":[null,""],"SickRage' is used in place of RLSGROUP if it could not be properly detected":[null,""],"Release Group":[null,""],"If episode is proper/repack add 'proper' to name.":[null,""],"Release Type":[null,""],"Multi-Episode Style":[null,""],"Single-EP Sample":[null,""],"Multi-EP sample":[null,""],"Strip Show Year":[null,""],"remove the TV show's year when renaming the file?":[null,""],"only applies to shows that have year inside parentheses":[null,""],"Custom Air-By-Date":[null,""],"name air-by-date shows differently than regular shows?":[null,""],"Toggle ABD Naming Legend":[null,""],"Regular Air Date":[null,""],"Year":[null,""],"Month":[null,""],"Day":[null,""],"Multi-EP style is ignored":[null,""],"Custom Sports":[null,""],"name sports shows differently than regular shows?":[null,""],"Toggle Sports Naming Legend":[null,""],"Sports Air Date":[null,""],"Custom Anime":[null,""],"name anime shows differently than regular shows?":[null,""],"Toggle Anime Naming Legend":[null,""],">XEM Season Number":[null,""],"Single-EP Anime Sample":[null,""],"Multi-EP Anime sample":[null,""],"Add Absolute Number":[null,""],"add the absolute number to the season/episode format?":[null,""],"only applies to anime. (eg. S15E45 - 310 vs S15E45)":[null,""],"Only Absolute Number":[null,""],"replace season/episode format with absolute number":[null,""],"only applies to anime.":[null,""],"No Absolute Number":[null,""],"don't include the absolute number":[null,""],"The data associated to the data. These are files associated to a TV show in the form of images and text that, when supported, will enhance the viewing experience.":[null,""],"Metadata Type":[null,""],"toggle metadata options that you wish to be created":[null,""],"multiple targets may be used":[null,""],"Select Metadata":[null,""],"Provider Priorities":[null,""],"Provider Options":[null,""],"Configure Custom Newznab Providers":[null,""],"Configure Custom Torrent Providers":[null,""],"Check off and drag the providers into the order you want them to be used.":[null,""],"At least one provider is required but two are recommended.":[null,""],"Torrent providers can be toggled in ":[null,""],"Provider does not support backlog searches at this time.":[null,""],"Provider is <b>NOT WORKING</b>.":[null,""],"Configure individual provider settings here.":[null,""],"Check with provider's website on how to obtain an API key if needed.":[null,""],"Configure provider":[null,""],"no providers available to configure.":[null,""],"URL":[null,""],"Enable daily searches":[null,""],"enable provider to perform daily searches.":[null,""],"Enable backlog searches":[null,""],"enable provider to perform backlog searches.":[null,""],"Season search mode":[null,""],"when searching for complete seasons you can choose to have it look for season packs only, or choose to have it build a complete season from just single episodes.":[null,""],"season packs only.":[null,""],"episodes only.":[null,""],"Enable fallback":[null,""],"when searching for a complete season depending on search mode you may return no results, this helps by restarting the search using the opposite search mode.":[null,""],"Custom URL":[null,""],"the URL should include the protocol (and port if applicable). Examples: http://192.168.1.4/ or http://localhost:3000/":[null,""],"Api key":[null,""],"Digest":[null,""],"Hash":[null,""],"Passkey":[null,""],"Cookies":[null,""],"example: uid=1234;pass=567845439634987<br>note: uid and pass are not your username/password.<br>use DevTools or Firebug to get these values after logging in on your browser.":[null,""],"Pin":[null,""],"Seed ratio":[null,""],"stop transfer when ratio is reached<br>(-1 SickRage default to seed forever, or leave blank for downloader default)":[null,""],"Minimum seeders":[null,""],"Minimum leechers":[null,""],"Confirmed download":[null,""],"only download torrents from trusted or verified uploaders ?":[null,""],"Ranked torrents":[null,""],"only download ranked torrents (trusted releases)":[null,""],"English torrents":[null,""],"only download english torrents, or torrents containing english subtitles":[null,""],"For Spanish torrents":[null,""],"ONLY search on this provider if show info is defined as \"Spanish\" (avoid provider's use for VOS shows)":[null,""],"Sorting results by":[null,""],"Freeleech":[null,""],"only download <b>\"FreeLeech\"</b> torrents.":[null,""],"Category":[null,""],"select torrent with Italian subtitle":[null,""],"Configure Custom<br>Newznab Providers":[null,""],"Add and setup or remove custom Newznab providers.":[null,""],"Select provider":[null,""],"-- add new provider --":[null,""],"Provider name":[null,""],"Site URL":[null,""],"Newznab search categories":[null,""],"select your Newznab categories on the left, and click the \"update categories\" button to use them for searching.) <b>don't forget to to save the form!":[null,""],"Update Categories":[null,""],"Add":[null,""],"Delete":[null,""],"Add and setup or remove custom RSS providers.":[null,""],"RSS URL":[null,""],"Search element":[null,""],"eg: title":[null,""],"Episode Search":[null,""],"NZB Search":[null,""],"Torrent Search":[null,""],"How to manage searching with":[null,""],"Randomize Providers":[null,""],"randomize the provider search order instead of going in order of placement":[null,""],"Download propers":[null,""],"replace original download with \"Proper\" or \"Repack\" if nuked":[null,""],"Check propers every":[null,""],"24 hours":[null,""],"4 hours":[null,""],"90 mins":[null,""],"45 mins":[null,""],"15 mins":[null,""],"Backlog search day(s)":[null,""],"number of day(s) that the \"Forced Backlog Search\" will cover (e.g. 7 Days)":[null,""],"Backlog search frequency":[null,""],"time in minutes between searches (min.":[null,""],"Daily search frequency":[null,""],"Usenet retention":[null,""],"age limit in days for usenet articles to be used (e.g. 500)":[null,""],"Ignore words":[null,""],"results with one or more word from this list will be ignored<br>separate words with a comma, e.g. \"word1,word2,word3\"":[null,""],"Require words":[null,""],"results with no word from this list will be ignored<br>separate words with a comma, e.g. \"word1,word2,word3\"":[null,""],"Trackers list":[null,""],"trackers that will be added to magnets without trackers<br>separate trackers with a comma, e.g. \"tracker1,tracker2,tracker3\"":[null,""],"Ignore language names in subbed results":[null,""],"ignore subbed releases based on language names <br>\n Example: \"dk\" will ignore words: dksub, dksubs, dksubbed, dksubed <br>\n separate languages with a comma, e.g. \"lang1,lang2,lang3":[null,""],"Allow high priority":[null,""],"set downloads of recently aired episodes to high priority":[null,""],"Use Failed Downloads":[null,""],"use Failed Download Handling?":[null,""],"will only work with snatched/downloaded episodes after enabling this":[null,""],"Delete Failed":[null,""],"delete files left over from a failed download?":[null,""],"this only works if Use Failed Downloads is enabled.":[null,""],"How to handle NZB search results.":[null,""],"Search NZBs":[null,""],"enable NZB search providers":[null,""],"Send .nzb files to":[null,""],"SABnzbd server URL":[null,""],"URL to your SABnzbd server (e.g. http://localhost:8080/)":[null,""],"SABnzbd username":[null,""],"(blank for none)":[null,""],"SABnzbd password":[null,""],"SABnzbd API key":[null,""],"locate at... SABnzbd Config -> General -> API Key":[null,""],"Use SABnzbd category":[null,""],"add downloads to this category (e.g. TV)":[null,""],"Use SABnzbd category (backlog episodes)":[null,""],"add downloads of old episodes to this category (e.g. TV)":[null,""],"Use SABnzbd category for anime":[null,""],"add anime downloads to this category (e.g. anime)":[null,""],"Use SABnzbd category for anime (backlog episodes)":[null,""],"add anime downloads of old episodes to this category (e.g. anime)":[null,""],"Use forced priority":[null,""],"enable to change priority from HIGH to FORCED":[null,""],"Black hole folder location":[null,""],"<b>.nzb</b> files are stored at this location for external software to find and use":[null,""],"Connect using HTTPS":[null,""],"enable Secure control in NZBGet and set the correct Secure Port here":[null,""],"NZBget host:port":[null,""],"(e.g. localhost:6789)":[null,""],"NZBget RPC host name and port number (not NZBgetweb!)":[null,""],"NZBget username":[null,""],"locate in nzbget.conf (default:nzbget)":[null,""],"NZBget password":[null,""],"locate in nzbget.conf (default:tegbzn6789)":[null,""],"Use NZBget category":[null,""],"send downloads marked this category (e.g. TV)":[null,""],"Use NZBget category (backlog episodes)":[null,""],"send downloads of old episodes marked this category (e.g. TV)":[null,""],"Use NZBget category for anime":[null,""],"send anime downloads marked this category (e.g. anime)":[null,""],"Use NZBget category for anime (backlog episodes)":[null,""],"send anime downloads of old episodes marked this category (e.g. anime)":[null,""],"NZBget priority":[null,""],"Very low":[null,""],"Low":[null,""],"Very high":[null,""],"Force":[null,""],"priority for daily snatches (no backlog)":[null,""],"Torrent host:port":[null,""],"URL to your Synology DSM (e.g. http://localhost:5000/)":[null,""],"Client username":[null,""],"Client password":[null,""],"Downloaded files location":[null,""],"where Synology Download Station will save downloaded files (blank for client default)":[null,""],"the destination has to be a shared folder for Synology DS":[null,""],"Click below to test":[null,""],"How to handle Torrent search results.":[null,""],"Search torrents":[null,""],"enable torrent search providers":[null,""],"Send .torrent files to":[null,""],"<b>.torrent</b> files are stored at this location for external software to find and use":[null,""],"URL to your torrent client (e.g. http://localhost:8000/)":[null,""],"Torrent RPC URL":[null,""],"the path without leading and trailing slashes (e.g. transmission)":[null,""],"Http Authentication":[null,""],"Verify certificate":[null,""],"disable if you get \"Deluge: Authentication Error\" in your log":[null,""],"verify SSL certificates for HTTPS requests":[null,""],"Add label to torrent":[null,""],"(blank spaces are not allowed)":[null,""],"label plugin must be enabled in Deluge clients":[null,""],"for QBitTorrent 3.3.1 and up":[null,""],"Add label to torrent for anime":[null,""],"for QBitTorrent 3.3.1 and up ":[null,""],"where <span id=\"torrent_client\">the torrent client</span> will save downloaded files (blank for client default)":[null,""],"the destination has to be a shared folder for Synology DS</span>":[null,""],"Minimum seeding time":[null,""],"time in hours":[null,""],"(default:'0' passes blank to client and '-1' passes nothing)":[null,""],"Start torrent paused":[null,""],"add .torrent to client but do <b style=\"font-weight:900\">not</b> start downloading":[null,""],"Allow high bandwidth":[null,""],"use high bandwidth allocation if priority is high":[null,""],"Test Connection":[null,""],"Windows Shares":[null,""],"Defines your existing windows shares so that we can add them to the browse dialog":[null,""],"Share #{number}":[null,""],"Share label":[null,""],"Hostname or IP":[null,""],"Share path":[null,""],"Subtitles Search":[null,""],"Subtitles Plugin":[null,""],"Plugin Settings":[null,""],"Settings that dictate how SickRage handles subtitles search results.":[null,""],"Search Subtitles":[null,""],"Subtitle Languages":[null,""],"Subtitle Directory":[null,""],"the directory where SickRage should store your <i>Subtitles</i> files.":[null,""],"leave empty if you want store subtitle in episode path.":[null,""],"Subtitle Find Frequency":[null,""],"time in hours between scans (default: 1)":[null,""],"Include Specials":[null,""],"include the show's specials when searching for subtitles?":[null,""],"Perfect matches":[null,""],"only download subtitles that match: release group, video codec, audio codec and resolution":[null,""],"if disabled you may get out of sync subtitles":[null,""],"Subtitles History":[null,""],"log downloaded Subtitle on History page?":[null,""],"Subtitles Multi-Language":[null,""],"append language codes to subtitle filenames?":[null,""],"this option is required if you use multiple subtitle languages":[null,""],"Delete unwanted subtitles":[null,""],"enable to delete unwanted subtitle languages bundled with release":[null,""],"Embedded Subtitles":[null,""],"ignore subtitles embedded inside video file?":[null,""],"this will ignore <u>all</u> embedded subtitles for every video file!":[null,""],"Hearing Impaired Subtitles":[null,""],"download hearing impaired style subtitles?":[null,""],"See":[null,""],"for a script arguments description.":[null,""],"Additional scripts separated by <b>|</b>.":[null,""],"Scripts are called after each episode has searched and downloaded subtitles.":[null,""],"For any scripted languages, include the interpreter executable before the script. See the following example":[null,""],"For Windows:":[null,""],"For Linux / OS X:":[null,""],"Subtitle Providers":[null,""],"Check off and drag the plugins into the order you want them to be used.":[null,""],"At least one plugin is required.":[null,""]," Web-scraping plugin":[null,""],"Provider Settings":[null,""],"Set user and password for each provider":[null,""],"User Name":[null,""],"Change Show":[null,""],"Prev Show":[null,""],"Next Show":[null,""],"Jump to Season":[null,""],"Specials":[null,""],"Poster for":[null,""],"Stars":[null,""],"minutes":[null,""],"View other popular {genre} shows on trakt.tv.":[null,""],"View other popular {imdbgenre} shows on IMDB.":[null,""],"Allowed":[null,""],"Preferred":[null,""],"Originally Airs":[null,""],"Show Status":[null,"Mostra l'estat"],"Default EP Status":[null,""],"Location":[null,""],"Missing":[null,""],"Scene Name":[null,""],"Required Words":[null,""],"Ignored Words":[null,""],"Size":[null,""],"Info Language":[null,""],"Subtitles SR Metadata":[null,""],"Season Folders":[null,""],"Paused":[null,""],"Air-by-Date":[null,""],"Sports":[null,""],"DVD Order":[null,""],"Scene Numbering":[null,""],"Select Filtered Episodes":[null,""],"Clear All":[null,""],"Change selected episodes to":[null,""],"Select Columns":[null,""],"Hide Episodes":[null,""],"Show Episodes":[null,""],"NFO":[null,""],"TBN":[null,""],"Episode":[null,""],"Absolute":[null,""],"Scene":[null,""],"Scene Absolute":[null,""],"File Name":[null,""],"Airdate":[null,""],"Download":[null,""],"Change the value here if scene numbering differs from the indexer episode numbering":[null,""],"Change the value here if scene absolute numbering differs from the indexer absolute numbering":[null,""],"Manual Search":[null,""],"Do you want to mark this episode as failed?":[null,""],"The episode release name will be added to the failed history, preventing it to be downloaded again.":[null,""],"Do you want to include the current episode quality in the search?":[null,""],"Choosing No will ignore any releases with the same episode quality as the one currently downloaded/snatched.":[null,""],"Download subtitle":[null,""],"Do you want to re-download the subtitle for this language?":[null,""],"It will overwrite your current subtitle":[null,""],"Format":[null,""],"Advanced":[null,""],"Main Settings":[null,""],"Show Location":[null,"Mostra la ubicació"],"Preferred Quality":[null,""],"Default Episode Status":[null,""],"this will set the status for future episodes.":[null,""],"this only applies to episode filenames and the contents of metadata files.":[null,""],"search for subtitles":[null,""],"Use SR Metdata":[null,""],"use SickRage metadata when searching for subtitle, this will override the autodiscovered metadata":[null,""],"pause this show (SickRage will not download episodes)":[null,""],"Format Settings":[null,""],"Air by date":[null,""],"check if the show is released as Show.03.02.2010 rather than Show.S02E03.":[null,""],"in case of an air date conflict between regular and special episodes, the later will be ignored.":[null,""],"check if the show is Anime and episodes are released as Show.265 rather than Show.S02E03":[null,""],"check if the show is a sporting or MMA event released as Show.03.02.2010 rather than Show.S02E03":[null,""],"Season folders":[null,""],"group episodes by season folder (uncheck to store in a single folder)":[null,""],"search by scene numbering (uncheck to search by indexer numbering)":[null,""],"use the DVD order instead of the air order":[null,""],"a \"Force Full Update\" is necessary, and if you have existing episodes you need to sort them manually.":[null,""],"comma-separated <i>e.g. \"word1,word2,word3</i>\"":[null,""],"search results with one or more words from this list will be ignored.":[null,""],"e.g. \"word1,word2,word3\"":[null,""],"search results with no words from this list will be ignored.":[null,""],"Scene Exception":[null,""],"this will affect episode search on NZB and torrent providers.":[null,""],"this list appends to the original show name.":[null,""],"WARNING logs":[null,""],"ERROR logs":[null,""],"There are no events to display.":[null,""],"Limit":[null,""],"Layout":[null,""],"HistoryLayout":[null,""],"Compact":[null,""],"Detailed":[null,""],"Time":[null,""],"Provider":[null,""],"Missing Provider":[null,""],"missing provider":[null,""],"Directory":[null,""],"Show Name (tvshow.nfo)":[null,""],"Indexer":[null,""],"Enter the folder containing the episode":[null,""],"Process Method to be used":[null,""],"Copy":[null,""],"Move":[null,""],"Hard Link":[null,""],"Symbolic Link":[null,""],"Symbolic Link Reversed":[null,""],"Force already Post Processed Dir/Files":[null,""],"Mark Dir/Files as priority download":[null,""],"(Check it to replace the file even if it exists at higher quality)":[null,""],"Delete files and folders":[null,""],"(Check it to delete files and folders like auto processing)":[null,""],"Don't use processing queue":[null,""],"(If checked this will return the result of the process here, but may be slow!)":[null,""],"Mark download as failed":[null,""],"Process":[null,""],"Download subtitles for this show?":[null,""],"use SickRage metadata when searching for subtitle, <br />this will override the autodiscovered metadata":[null,""],"Status for previously aired episodes":[null,""],"Status for all future episodes":[null,""],"Group episodes by season folder?":[null,""],"Is this show an Anime?":[null,""],"Is this show scene numbered?":[null,""],"Save Defaults":[null,""],"Use current values as the defaults":[null,""],"<p>Select your preferred fansub groups from the <b>Available Groups</b> and add them to the <b>Whitelist</b>. Add groups to the <b>Blacklist</b> to ignore them.</p>\n <p>The <b>Whitelist</b> is checked <i>before</i> the <b>Blacklist</b>.</p>\n <p>Groups are shown as <b>Name</b> | <b>Rating</b> | <b>Number of subbed episodes</b>.</p>\n <p>You may also add any fansub group not listed to either list manually.</p>\n <p>When doing this please note that you can only use groups listed on anidb for this anime.\n <br>If a group is not listed on anidb but subbed this anime, please correct anidb's data.</p>":[null,""],"Whitelist":[null,""],"Available Groups":[null,""],"Add to Whitelist":[null,""],"Add to Blacklist":[null,""],"Blacklist":[null,""],"Custom Group":[null,""],"Allowed Quality:":[null,""],"Preferred Quality:":[null,""],"Filter Show Name":[null,""],"Root":[null,""],"All":[null,""],"Clear Filter(s)":[null,""],"Poster":[null,"Cartell"],"Small Poster":[null,""],"Banner":[null,"Banner"],"Simple":[null,""],"Next Episode":[null,""],"Progress":[null,""],"Direction":[null,""],"Ascending":[null,""],"Descending":[null,""],"Poster Size":[null,""],"Continuing":[null,""],"Ended":[null,""],"Total":[null,""],"Invalid date":[null,""],"No Network":[null,""],"Next Ep":[null,""],"Prev Ep":[null,""],"Show":[null,"Mostrar"],"Downloads":[null,""],"Active":[null,""],"loading":[null,""],"Loading...":[null,""],"<p><b><u>Preferred</u></b> qualities will replace those in <b><u>allowed</u></b>, even if they are lower.</p>":[null,""],"New":[null,""],"Set as Default":[null,""],"Remember me":[null,""],"Edit Selected":[null,""],"Subtitle":[null,""],"Default Ep Status":[null,""],"Update":[null,""],"Rescan":[null,""],"Rename":[null,""],"Search Subtitle":[null,""],"Force Metadata Regen":[null,""],"Snatched (Allowed)":[null,""],"Jump to Show":[null,""],"Force Backlog":[null,""],"Manage episodes with status":[null,""],"Manage":[null,""],"None of your episodes have status":[null,""],"Shows containing":[null,""],"episodes":[null,""],"Set checked shows/episodes to":[null,""],"Go":[null,""],"Select all":[null,""],"Clear all":[null,""],"Release":[null,""],"Backlog Search":[null,""],"Not in progress":[null,""],"In Progress":[null,""],"Daily Search":[null,""],"Find Propers Search":[null,""],"Propers search disabled":[null,""],"Subtitle Search":[null,""],"Subtitle search disabled":[null,""],"Search Queue":[null,""],"pending items":[null,""],"Daily":[null,""],"Manual":[null,""],"Changing any settings marked with (<span class=\"separator\">*</span>) will force a refresh of the selected shows.":[null,""],"Selected Shows":[null,""],"Root Directories":[null,""],"Current":[null,""],"Keep":[null,""],"Custom":[null,""],"Group episodes by season folder (set to \"No\" to store in a single folder).":[null,""],"Pause these shows (SickRage will not download episodes).":[null,""],"This will set the status for future episodes.":[null,""],"Search by scene numbering (set to \"No\" to search by indexer numbering).":[null,""],"Set if these shows are Anime and episodes are released as Show.265 rather than Show.S02E03":[null,""],"Set if these shows are sporting or MMA events released as Show.03.02.2010 rather than Show.S02E03.":[null,""],"In case of an air date conflict between regular and special episodes, the later will be ignored.":[null,""],"Set if these shows are released as Show.03.02.2010 rather than Show.S02E03.":[null,""],"Search for subtitles.":[null,""],"All of your episodes have {subsLanguage} subtitles.":[null,""],"Manage episodes without":[null,""],"Episodes without {subsLanguage} subtitles.":[null,""],"Episodes without {subtitleLanguage} (undefined) subtitles.":[null,""],"Download missed subtitles for selected episodes":[null,""],"Performing Restart":[null,""],"Waiting for SickRage to shut down":[null,""],"Waiting for SickRage to start again":[null,""],"Loading the default page":[null,""],"Error: The restart has timed out, perhaps something prevented SickRage from starting again?":[null,""],"Key":[null,""],"Missed":[null,""],"Today":[null,""],"Soon":[null,""],"Later":[null,""],"Subscribe":[null,""],"Date":[null,""],"View Paused":[null,""],"Hidden":[null,""],"Shown":[null,""],"Calendar":[null,"Calendari"],"List":[null,"Llista"],"Ends":[null,""],"Next Ep Name":[null,""],"Run time":[null,""],"Indexers":[null,""],"No shows for this day":[null,""],"Airs":[null,""],"Plot":[null,""],"Show Update":[null,""],"Version Check":[null,""],"Proper Finder":[null,""],"Post Process":[null,""],"Subtitles Finder":[null,""],"Scheduler":[null,""],"Alive":[null,""],"Start Time":[null,""],"Cycle Time":[null,""],"Next Run":[null,""],"Last Run":[null,""],"Silent":[null,""],"True":[null,""],"N/A":[null,""],"Show id":[null,""],"Show name":[null,""],"Priority":[null,""],"Added":[null,""],"Queue type":[null,""],"LOW":[null,""],"NORMAL":[null,""],"HIGH":[null,""],"Disk Space":[null,""],"Free space":[null,""],"TV Download Directory":[null,""],"Media Root Directories":[null,""],"Preview of the proposed name changes":[null,""],"All Seasons":[null,""],"select all":[null,""],"Rename Selected":[null,""],"Cancel Rename":[null,""],"Old Location":[null,""],"New Location":[null,""],"Trakt API did not return any results, please check your config.":[null,""],"votes":[null,""],"Remove Show":[null,""],"Level":[null,""],"Filter":[null,""],"All non-absolute folder locations are relative to ":[null,""],"Manual Post-Processing":[null,""],"Episode Status Management":[null,""],"Update PLEX":[null,""],"Update KODI":[null,""],"Update Emby":[null,""],"Missed Subtitle Management":[null,""],"Help & Info":[null,""],"Backup & Restore":[null,""],"Tools":[null,""],"Support SickRage":[null,""],"View Errors":[null,""],"View Warnings":[null,""],"View Log":[null,""],"Check For Updates":[null,""],"Restart":[null,""],"Shutdown":[null,""],"Logout":[null,""],"Server Status":[null,""],"View overview of snatched episodes":[null,""],"Episodes Downloaded":[null,""],"Memory used":[null,""],"Load time":[null,""],"Branch":[null,""],"Now":[null,""]}}}} \ No newline at end of file +{"messages":{"domain":"messages","locale_data":{"messages":{"100":[null,""],"250":[null,""],"500":[null,""],"":{"domain":"messages","plural_forms":"nplurals=2; plural=(n != 1);","lang":"ca_ES"},"Drama":[null,"Drama"],"Mystery":[null,"Misteri"],"Science-Fiction":[null,"Ciència-ficció"],"Crime":[null,"Crim"],"Action":[null,"Acció"],"Comedy":[null,"Comèdia"],"Thriller":[null,"Suspens"],"Animation":[null,"Animació"],"Family":[null,"Família"],"Fantasy":[null,"Fantasia"],"Adventure":[null,"Aventura"],"Horror":[null,"Terror"],"Film-Noir":[null,""],"Sci-Fi":[null,"Ciència-ficció"],"Romance":[null,""],"Sport":[null,"Esport"],"War":[null,"Guerra"],"Biography":[null,"Biografia"],"History":[null,"Històric"],"Music":[null,"Música"],"Western":[null,""],"News":[null,"Notícies"],"Sitcom":[null,""],"Reality-TV":[null,""],"Documentary":[null,"Documental"],"Game-Show":[null,""],"Musical":[null,"Musical"],"Talk-Show":[null,""],"Started Download":[null,"Descarrega començada"],"Download Finished":[null,"Descarrega finalitzada"],"Subtitle Download Finished":[null,""],"SickRage Updated":[null,""],"SickRage Updated To Commit#: ":[null,""],"SickRage new login":[null,""],"New login from IP: {0}. http://geomaplookup.net/?ip={0}":[null,""],"Repeat":[null,"Repeteix"],"Repeat (Separated)":[null,""],"Extend":[null,""],"Extend (Limited)":[null,""],"Extend (Limited, E-prefixed)":[null,""],"Downloaded":[null,"Descarregat"],"Snatched":[null,""],"Snatched (Proper)":[null,""],"Failed":[null,"Fallat"],"Snatched (Best)":[null,""],"Archived":[null,"Arxivat"],"Unknown":[null,"Desconegut"],"Unaired":[null,""],"Skipped":[null,"Saltat"],"Wanted":[null,""],"Ignored":[null,"Ignorat"],"Subtitled":[null,"Subtitulat"],"For best results please set the Download Station alias as":[null,""],"You can check this setting in the Synology DSM":[null,""],"Control Panel":[null,""],"Application Portal":[null,""],"Make sure you allow DSM to be embedded with iFrames too in":[null,""],"DSM Settings":[null,""],"Security":[null,"Seguretat"],"<No Filter>":[null,""],"Daily Searcher":[null,""],"Backlog":[null,""],"Show Updater":[null,""],"Check Version":[null,""],"Show Queue":[null,""],"Search Queue (All)":[null,""],"Search Queue (Daily Searcher)":[null,""],"Search Queue (Backlog)":[null,""],"Search Queue (Manual)":[null,""],"Search Queue (Retry/Failed)":[null,""],"Search Queue (RSS)":[null,""],"Find Propers":[null,""],"Postprocessor":[null,""],"Find Subtitles":[null,""],"Trakt Checker":[null,""],"Event":[null,""],"Error":[null,"Error"],"Tornado":[null,""],"Thread":[null,"Fil"],"Main":[null,"Principal"],"Loading":[null,""],"New update found for SickRage, starting auto-updater":[null,""],"Update was successful":[null,""],"Update failed!":[null,""],"Backup":[null,"Còpia de seguretat"],"Config backup in progress...":[null,""],"Config backup successful, updating...":[null,""],"Config backup failed, aborting update":[null,""],"No update needed":[null,""],"Mako Error":[null,""],"Oops":[null,"Caram"],"Wrong API key used":[null,""],"Login":[null,""],"API Key not generated":[null,""],"API Builder":[null,""],"Schedule":[null,"Planificar"],"Test 1":[null,"Prova 1"],"This is test number 1":[null,"Aquesta és la prova número 1"],"Test 2":[null,"Prova 2"],"This is test number 2":[null,"Aquesta és la prova número 2"],"You're using the {branch} branch. Please use 'master' unless specifically asked":[null,""],"Invalid show parameters":[null,""],"Invalid parameters":[null,""],"Episode couldn't be retrieved":[null,""],"Home":[null,"Inici"],"Show List":[null,"Mostrar llistat"],"Error: Unsupported Request. Send jsonp request with 'callback' variable in the query string.":[null,""],"Success. Connected and authenticated":[null,""],"Authentication failed. SABnzbd expects":[null,""],"as authentication method":[null,"com a mètode d'autenticació"],"Unable to connect to host":[null,"Incapaç de connectar a amfitrió"],"SMS sent successfully":[null,""],"Problem sending SMS: {message}":[null,""],"Telegram notification succeeded. Check your Telegram clients to make sure it worked":[null,""],"Error sending Telegram notification: {message}":[null,""],"join notification succeeded. Check your join clients to make sure it worked":[null,""],"Error sending join notification: {message}":[null,""]," with password":[null," amb contrasenya"],"Registered and Tested growl successfully {growl_host}":[null,""],"Registration and Testing of growl failed {growl_host}":[null,""],"Test prowl notice sent successfully":[null,""],"Test prowl notice failed":[null,""],"Boxcar2 notification succeeded. Check your Boxcar2 clients to make sure it worked":[null,""],"Error sending Boxcar2 notification":[null,""],"Pushover notification succeeded. Check your Pushover clients to make sure it worked":[null,""],"Error sending Pushover notification":[null,""],"Key verification successful":[null,""],"Unable to verify key":[null,""],"Tweet successful, check your twitter to make sure it worked":[null,""],"Error sending tweet":[null,""],"Please enter a valid account sid":[null,""],"Please enter a valid auth token":[null,""],"Please enter a valid phone sid":[null,""],"Please format the phone number as \"+1-###-###-####\"":[null,""],"Authorization successful and number ownership verified":[null,""],"Error sending sms":[null,""],"Slack message successful":[null,""],"Slack message failed":[null,""],"Discord message successful":[null,""],"Discord message failed":[null,""],"Test KODI notice sent successfully to {kodi_host}":[null,""],"Test KODI notice failed to {kodi_host}":[null,""],"Successful test notice sent to Plex Home Theater ... {plex_clients}":[null,""],"Test failed for Plex Home Theater ... {plex_clients}":[null,""],"Tested Plex Home Theater(s)":[null,""],"Successful test of Plex Media Server(s) ... {plex_servers}":[null,""],"Test failed, No Plex Media Server host specified":[null,""],"Test failed for Plex Media Server(s) ... {plex_servers}":[null,""],"Tested Plex Media Server host(s)":[null,""],"Tried sending desktop notification via libnotify":[null,""],"Test notice sent successfully to {emby_host}":[null,""],"Test notice failed to {emby_host}":[null,""],"Successfully started the scan update":[null,""],"Test failed to start the scan update":[null,""],"Test notice sent successfully to {nmj2_host}":[null,""],"Test notice failed to {nmj2_host}":[null,""],"Trakt Authorized":[null,"Trakt autoritzat"],"Trakt Not Authorized!":[null,"Trakt no autoritzat!"],"Test email sent successfully! Check inbox.":[null,""],"ERROR: {last_error}":[null,"ERROR: {last_error}"],"Test NMA notice sent successfully":[null,""],"Test NMA notice failed":[null,""],"Pushalot notification succeeded. Check your Pushalot clients to make sure it worked":[null,""],"Error sending Pushalot notification":[null,""],"Pushbullet notification succeeded. Check your device to make sure it worked":[null,""],"Error sending Pushbullet notification":[null,""],"Status":[null,"Estat"],"Restarting SickRage":[null,""],"Update Failed":[null,"Actualització fallida"],"Update wasn't successful, not restarting. Check your log for more information.":[null,""],"Checking out branch":[null,""],"Already on branch":[null,"Ja en branca"],"Invalid show ID: {show}":[null,""],"Show not in show list":[null,""],"Edit":[null,"Editar"],"This show is in the process of being downloaded - the info below is incomplete.":[null,""],"The information on this page is in the process of being updated.":[null,""],"The episodes below are currently being refreshed from disk":[null,""],"Currently downloading subtitles for this show":[null,""],"This show is queued to be refreshed.":[null,""],"This show is queued and awaiting an update.":[null,""],"This show is queued and awaiting subtitles download.":[null,""],"Resume":[null,"Continuar"],"Pause":[null,"Pausar"],"Remove":[null,"Elimina"],"Re-scan files":[null,""],"Force Full Update":[null,""],"Update show in KODI":[null,""],"Update show in Emby":[null,""],"Hide specials":[null,""],"Show specials":[null,""],"Preview Rename":[null,""],"Download Subtitles":[null,""],"No scene exceptions":[null,""],"Invalid show ID":[null,""],"Unable to find the specified show":[null,""],"Unable to retreive Fansub Groups from AniDB.":[null,""],"Edit Show":[null,""],"Unable to refresh this show: {error}":[null,""],"New location <tt>{location}</tt> does not exist":[null,""],"Unable to update show: {error}":[null,""],"Unable to force an update on scene exceptions of the show.":[null,""],"Unable to force an update on scene numbering of the show.":[null,""],"{num_errors:d} error{plural} while saving changes:":[null,""],"{show_name} has been {paused_resumed}":[null,""],"resumed":[null,""],"paused":[null,"en pausa"],"{show_name} has been {deleted_trashed} {was_deleted}":[null,""],"deleted":[null,"esborrat"],"trashed":[null,""],"(media untouched)":[null,""],"(with all related media)":[null,""],"Unable to refresh this show.":[null,""],"Unable to update this show.":[null,""],"Library update command sent to KODI host(s)): {kodi_hosts}":[null,""],"Unable to contact one or more KODI host(s)): {kodi_hosts}":[null,""],"Library update command sent to Plex Media Server host: {plex_server}":[null,""],"Unable to contact Plex Media Server host: {plex_server}":[null,""],"Library update command sent to Emby host: {emby_host}":[null,""],"Unable to contact Emby host: {emby_host}":[null,""],"You must specify a show and at least one episode":[null,""],"Invalid status":[null,""],"Backlog was automatically started for the following seasons of <b>{show_name}</b>":[null,""],"Season":[null,"Temporada"],"Backlog started":[null,""],"Retrying Search was automatically started for the following season of <b>{show_name}</b>":[null,""],"Retry Search started":[null,""],"You must specify a show":[null,""],"Can't rename episodes when the show dir is missing.":[null,""],"New subtitles downloaded: {new_subtitle_languages}":[null,""],"No subtitles downloaded":[null,""],"IRC":[null,"IRC"],"Could not load news from the repo. [Click here for news.md])({news_url})":[null,""],"The was a problem connecting to github, please refresh and try again":[null,""],"Could not load changes from the repo. [Click here for CHANGES.md]({changes_url})":[null,""],"Changelog":[null,"Registre de canvis"],"Post Processing":[null,""],"Add Shows":[null,""],"No folders selected.":[null,""],"New Show":[null,""],"Trending Shows":[null,""],"Popular Shows":[null,""],"Most Anticipated Shows":[null,""],"Most Collected Shows":[null,""],"Most Watched Shows":[null,""],"Most Played Shows":[null,""],"Recommended Shows":[null,""],"New Shows":[null,""],"Season Premieres":[null,""],"Existing Show":[null,""],"No root directories setup, please go back and add one.":[null,""],"Show added":[null,""],"Adding the specified show {show_name}":[null,""],"Missing params, no Indexer ID or folder: {show_to_add} and {root_dir}/{show_path}":[null,""],"Unknown error. Unable to add show due to problem with show selection.":[null,""],"Unable to add show":[null,""],"Folder {show_dir} exists already":[null,""],"Unable to create the folder {show_dir}, can't add the show":[null,""],"Adding the specified show into {show_dir}":[null,""],"Shows Added":[null,""],"Automatically added {num_shows} from their existing metadata files":[null,""],"Mass Update":[null,""],"Episode Overview":[null,""],"Missing Subtitles":[null,""],"Backlog Overview":[null,""],"Mass Edit":[null,""],"Unable to update show: {excption_format}":[null,""],"Unable to refresh show {show_name}: {excption_format}":[null,""],"Errors encountered":[null,""],"Updates":[null,""],"Refreshes":[null,""],"Renames":[null,""],"Subtitles":[null,"Subtítols"],"The following actions were queued":[null,""],"Failed Downloads":[null,""],"Manage Searches":[null,""],"Backlog search started":[null,""],"Daily search started":[null,""],"Find propers search started":[null,""],"Subtitle search started":[null,""],"Remove Selected":[null,""],"Clear History":[null,"Esborra l'historial"],"Trim History":[null,""],"Selected history entries removed":[null,""],"History cleared":[null,"Històric esborrat"],"Removed history entries older than 30 days":[null,""],"General":[null,"General"],"Backup/Restore":[null,"Còpia de seguretat/restauració"],"Search Settings":[null,""],"Search Providers":[null,"Proveïdors de cerca"],"Subtitles Settings":[null,""],"Notifications":[null,"Notificacions"],"Anime":[null,"Anime"],"SickRage Configuration":[null,"Configuració SickRage"],"Config - Shares":[null,""],"Windows Shares Configuration":[null,""],"Saved Shares":[null,""],"Your Windows share settings have been saved":[null,""],"Config - General":[null,"Config - General"],"General Configuration":[null,"Configuració General"],"Saved Defaults":[null,""],"Your \"add show\" defaults have been set to your current selections.":[null,""],"Unable to create directory {directory}, log directory not changed.":[null,""],"Unable to create directory {directory}, https cert directory not changed.":[null,""],"Unable to create directory {directory}, https key directory not changed.":[null,""],"Error(s) Saving Configuration":[null,""],"Configuration Saved":[null,"Configuració guardada"],"Config - Backup/Restore":[null,""],"Config - Episode Search":[null,""],"Config - Post Processing":[null,""],"Unpacking Not Supported, disabling unpack setting":[null,""],"You tried saving an invalid normal naming config, not saving your naming settings":[null,""],"You tried saving an invalid anime naming config, not saving your naming settings":[null,""],"Config - Providers":[null,""],"No Provider Name specified":[null,""],"No Provider Url specified":[null,""],"No Provider Api key specified":[null,""],"Config - Notifications":[null,""],"Config - Subtitles":[null,""],"Config - Anime":[null,""],"Clear Errors":[null,"Eliminar Errors"],"Clear Warnings":[null,"Eliminar advertències"],"Submit Errors":[null,"Enviar Errors"],"Logs & Errors":[null,""],"Log File":[null,"Fitxer de registre"],"Logs":[null,""],"This is a test notification from SickRage":[null,""],"Choose Directory":[null,""],"Select log file folder location":[null,""],"Select CSS file":[null,""],"Select backup folder to save to":[null,""],"Select backup files to restore":[null,""],"Please fill out the necessary fields above.":[null,""],"<b>Step 1:</b> Confirm Authorization":[null,""],"Check blacklist name; the value needs to be a trakt slug":[null,""],"You must provide a recipient email address!":[null,""],"You didn't supply a Pushbullet api key":[null,""],"Don't forget to save your new pushbullet settings.":[null,""],"Select TV Download Directory":[null,""],"Select Unpack Directory":[null,""],"This pattern is invalid.":[null,""],"This pattern would be invalid without the folders, using it will force \"Season Folders\" on for all shows.":[null,""],"This pattern is valid.":[null,""],"Select .nzb black hole/watch location":[null,""],"Select .torrent black hole/watch location":[null,""],"Select .torrent download location":[null,""],"Minimum seeding time is":[null,""],"URL to your uTorrent client (e.g. http://localhost:8000)":[null,""],"Stop seeding when inactive for":[null,""],"URL to your Transmission client (e.g. http://localhost:9091)":[null,""],"URL to your Deluge client (e.g. http://localhost:8112)":[null,""],"IP or Hostname of your Deluge Daemon (e.g. scgi://localhost:58846)":[null,""],"URL to your Synology DS client (e.g. http://localhost:5000)":[null,""],"URL to your rTorrent client (e.g. scgi://localhost:5000 <br> or https://localhost/rutorrent/plugins/httprpc/action.php)":[null,""],"URL to your qBittorrent client (e.g. http://localhost:8080)":[null,""],"URL to your MLDonkey (e.g. http://localhost:4080)":[null,""],"URL to your putio client (e.g. http://localhost:8080)":[null,""],"<a herf=\"https://app.put.io/oauth/apps/new\" target=\"_blank\"> Create a new OAuth app for put.io</a>":[null,""],"Put.io Parent Folder":[null,""],"Put.io OAuth Token":[null,""],"Show Episodes":[null,""],"Hide Episodes":[null,""],"Select Show Location":[null,""],"Select Unprocessed Episode Folder":[null,""],"DELETED":[null,""],"Resume updating the log on this page.":[null,""],"Pause updating the log on this page.":[null,""],"searching {searchingFor}...":[null,""],"search timed out, try again or try another indexer":[null,""],"loading folders...":[null,""],"Loading...":[null,""],"You have reached this page by accident, please check the url.":[null,""],"A mako error has occured.<br>\n If this happened during an update a simple page refresh may be the solution.<br>\n Mako errors that happen during updates may be a one time error if there were significant ui changes.":[null,""],"Show/Hide Error":[null,""],"Add New Show":[null,""],"For shows that you haven't downloaded yet, this option finds a show on theTVDB.com, creates a directory for it's episodes, and adds it to SickRage.":[null,""],"Add From Trakt Lists":[null,""],"For shows that you haven't downloaded yet, this option lets you choose from a show from one of the Trakt lists to add to SickRage.":[null,""],"Add From IMDB's Popular Shows":[null,""],"View IMDB's list of the most popular shows. This feature uses IMDB's MOVIEMeter algorithm to identify popular TV Series.":[null,""],"Add Existing Shows":[null,""],"Use this option to add shows that already have a folder created on your hard drive. SickRage will scan your existing metadata/episodes and add the show accordingly.":[null,""],"Add Existing Show":[null,""],"Manage Directories":[null,""],"Customize Options":[null,""],"SickRage can add existing shows, using the current options, by using locally stored NFO/XML metadata to eliminate user interaction. If you would rather have SickRage prompt you to customize each show, then use the checkbox below.":[null,""],"Prompt me to set settings for each show":[null,""],"Displaying folders within these directories which aren't already added to SickRage":[null,""],"Submit":[null,""],"Find a show on theTVDB":[null,""],"Show retrieved from existing metadata":[null,""],"All Indexers":[null,"Tots els Indexers"],"Search":[null,"Cerca"],"This will only affect the language of the retrieved metadata file contents and episode filenames.":[null,""],"This <b>DOES NOT</b> allow SickRage to download non-english TV episodes!":[null,""],"Pick the parent folder":[null,""],"Pre-chosen Destination Folder":[null,""],"Customize options":[null,""],"Add Show":[null,""],"Skip Show":[null,""],"Sort By":[null,"Ordena per"],"Name":[null,"Nom"],"Original":[null,"Original"],"Votes":[null,"Vots"],"Rating":[null,"Puntuació"],"Rating > Votes":[null,""],"Sort Order":[null,"Criteri d'ordenació"],"Asc":[null,"Asc"],"Desc":[null,"Desc"],"Fetching of IMDB Data failed. Are you online?":[null,""],"Exception":[null,"Excepció"],"Select Trakt List":[null,""],"Most Anticipated":[null,""],"Trending":[null,"Tendències"],"Popular":[null,"Popular"],"Most Watched":[null,"Més vistos"],"Most Played":[null,""],"Most Collected":[null,""],"Recommended":[null,"Recomanat"],"Toggle navigation":[null,""],"Profile":[null,"Perfil"],"JSONP":[null,"JSONP"],"Back to SickRage":[null,""],"Parameters":[null,"Paràmetres"],"Required":[null,""],"Description":[null,"Descripció"],"Type":[null,"Tipus"],"Default value":[null,"Valor predeterminat"],"Allowed values":[null,""],"Playground":[null,""],"Clear":[null,"Neteja"],"Yes":[null,"Sí"],"No":[null,"No"],"season":[null,"temporada"],"episode":[null,"episodi"],"Python Version":[null,"Versió de Python"],"SSL Version":[null,"Versió de SSL"],"OS":[null,""],"Locale":[null,""],"User":[null,"Usuari"],"Program Folder":[null,""],"Config File":[null,""],"Database File":[null,""],"Cache Folder":[null,""],"Log Folder":[null,""],"Arguments":[null,""],"Web Root":[null,""],"Website":[null,""],"Wiki":[null,""],"Source":[null,""],"IRC Chat":[null,""],"AnimeDB Settings":[null,""],"Look & Feel":[null,""],"AniDB is non-profit database of anime information that is freely open to the public":[null,""],"Enable":[null,""],"should SickRage use data from AniDB?":[null,""],"AniDB Username":[null,""],"username of your AniDB account":[null,""],"AniDB Password":[null,""],"password of your AniDB account":[null,""],"AniDB MyList":[null,""],"do you want to add the PostProcessed episodes to the MyList?":[null,""],"Look and Feel":[null,""],"How should the anime functions show and behave.":[null,""],"Split show lists":[null,""],"separate anime and normal shows in groups":[null,""],"Split in tabs":[null,""],"use tabs for when splitting show lists":[null,""],"Restore":[null,""],"Backup your main database file and config.":[null,""],"Select the folder you wish to save your backup file to":[null,""],"Restore your main database file and config.":[null,""],"Select the backup file you wish to restore":[null,""],"Misc":[null,"Miscel·lània"],"Interface":[null,""],"Advanced Settings":[null,""],"Startup options. Indexer options. Log and show file locations.":[null,""],"Some options may require a manual restart to take effect.":[null,""],"Default Indexer Language":[null,""],"for adding shows and metadata providers":[null,""],"Launch browser":[null,""],"open the SickRage home page on startup":[null,""],"Initial page":[null,""],"Shows":[null,""],"when launching SickRage interface":[null,""],"Choose hour to update shows":[null,""],"with information such as next air dates, show ended, etc. Use 15 for 3pm, 4 for 4am etc.":[null,""],"note":[null,""],"minutes are randomized each time SickRage is started":[null,""],"Send to trash for actions":[null,""],"when using show \"Remove\" and delete files":[null,""],"on scheduled deletes of the oldest log files":[null,""],"selected actions use trash (recycle bin) instead of the default permanent delete":[null,""],"Log file folder location":[null,""],"Number of Log files saved":[null,""],"number of log files saved when rotating logs (default: 5) (REQUIRES RESTART)":[null,""],"Size of Log files saved":[null,""],"maximum size in MB of the log file (default: 1MB) (REQUIRES RESTART)":[null,""],"Use initial indexer set to":[null,""],"as the default selection when adding new shows":[null,""],"Timeout show indexer at":[null,""],"seconds of inactivity when finding new shows (default:20)":[null,""],"Show root directories":[null,""],"where the files of shows are located":[null,""],"Save Changes":[null,""],"Options for software updates.":[null,""],"Check software updates":[null,""],"and display notifications when updates are available. Checks are run on startup and at the frequency set below*":[null,""],"Automatically update":[null,""],"fetch and install software updates. Updates are run on startup and in the background at the frequency set below*":[null,""],"Check the server every*":[null,""],"hours for software updates (default:1)":[null,""],"Notify on software update":[null,""],"send a message to all enabled notifiers when SickRage has been updated":[null,""],"User Interface":[null,""],"Options for visual appearance.":[null,""],"Interface Language":[null,""],"System Language":[null,""],"for appearance to take effect, save then refresh your browser":[null,""],"Display theme":[null,""],"Dark":[null,"Fosc"],"Light":[null,""],"Use a background image":[null,""],"use a custom image as background for SickRage":[null,""],"Background Path":[null,""],"Path to the background image":[null,""],"Show fanart in the background":[null,""],"on the show summary page":[null,""],"Fanart transparency":[null,""],"transparency of the fanart in the background":[null,""],"Use a custom stylesheet file":[null,""],"use a custom .css file to style SickRage (for advanced users)":[null,""],"Stylesheet File Path":[null,""],"Path to the stylesheet (.css) file":[null,""],"Show all seasons":[null,""],"Sort with \"The\", \"A\", \"An\"":[null,""],"include articles (\"The\", \"A\", \"An\") when sorting show lists":[null,""],"Missed episodes range":[null,""],"set the range in days of the missed episodes in the Schedule page":[null,""],"Display fuzzy dates":[null,""],"move absolute dates into tooltips and display e.g. \"Last Thu\", \"On Tue\"":[null,""],"Trim zero padding":[null,""],"remove the leading number \"0\" shown on hour of day, and date of month":[null,""],"Date style":[null,""],"Use System Default":[null,""],"Time style":[null,""],"seconds are only shown on the History page":[null,""],"Timezone":[null,"Fus horari"],"Local":[null,"Local"],"Network":[null,"Xarxa"],"display dates and times in either your timezone or the shows network timezone":[null,""],"use local timezone to start searching for episodes minutes after show ends (depends on your dailysearch frequency)":[null,""],"Download url":[null,""],"URL where the shows can be downloaded.":[null,""],"Web Interface":[null,""],"it is recommended that you enable a username and password to secure SickRage from being tampered with remotely.":[null,""],"these options require a manual restart to take effect.":[null,""],"API key":[null,""],"used to give 3rd party programs limited access to SickRage":[null,""],"you can try all the features of the API":[null,""],"here":[null,""],"HTTP logs":[null,""],"enable logs from the internal Tornado web server":[null,""],"HTTP username":[null,"Nom d'usuari HTTP"],"set blank for no login":[null,""],"HTTP password":[null,"Contrasenya d'HTTP"],"blank = no authentication":[null,"en blanc = sense autenticació"],"HTTP port":[null,""],"web port to browse and access SickRage (default:8081)":[null,""],"Notify on login":[null,""],"enable to be notified when a new login happens in webserver":[null,""],"Listen on IPv6":[null,""],"attempt binding to any available IPv6 address":[null,""],"Enable HTTPS":[null,""],"enable access to the web interface using a HTTPS address":[null,""],"HTTPS certificate":[null,""],"file name or path to HTTPS certificate":[null,""],"HTTPS key":[null,""],"file name or path to HTTPS key":[null,""],"Reverse proxy headers":[null,""],"accept the following reverse proxy headers (advanced)...":[null,""],"(X-Forwarded-For, X-Forwarded-Host, and X-Forwarded-Proto)":[null,""],"CPU throttling":[null,""],"Normal (default). High is lower and Low is higher CPU use":[null,""],"Anonymous redirect":[null,""],"backlink protection via anonymizer service, must end in \"?\"":[null,""],"Enable debug":[null,""],"enable debug logs":[null,""],"Verify SSL Certs":[null,""],"verify SSL Certificates (Disable this for broken SSL installs (Like QNAP))":[null,""],"No Restart":[null,""],"only shutdown when restarting SR":[null,""],"only select this when you have external software restarting SR automatically when it stops (like FireDaemon)":[null,""],"Encrypt passwords":[null,""],"in the <code>config.ini</code> file":[null,""],"warning":[null,""],"passwords must only contain":[null,""],"ASCII characters":[null,""],"Unprotected calendar":[null,""],"allow subscribing to the calendar without user and password":[null,""],"some services like Google Calendar only work this way":[null,""],"Google Calendar Icons":[null,""],"show an icon next to exported calendar events in Google Calendar":[null,""],"Proxy host":[null,""],"blank to disable or proxy to use when connecting to providers":[null,""],"also use global proxy setting for indexers (tvdb, xem, anidb, etc.)":[null,""],"Skip Remove Detection":[null,""],"skip detection of removed files":[null,""],"if disabled the episode will be set to the default deleted status":[null,""],"Default deleted episode status":[null,""],"define the status to be set for media file that has been deleted.":[null,""],"Archived option will keep previous downloaded quality":[null,""],"example: Downloaded (1080p WEB-DL) ==> Archived (1080p WEB-DL)":[null,""],"Options for github related features.":[null,""],"Branch version":[null,""],"error: No branches found.":[null,""],"select branch to use (restart required)":[null,""],"Authorization Type":[null,""],"Username and password":[null,""],"Personal access token":[null,""],"You must use a personal access token if you're using \"two-factor authentication\" on GitHub.":[null,""],"GitHub username":[null,""],"*** (REQUIRED FOR SUBMITTING ISSUES) ***":[null,""],"GitHub password":[null,""],"GitHub personal access token":[null,""],"Generate Token":[null,""],"Manage Tokens":[null,""],"GitHub remote for branch":[null,""],"access repo configured remotes (save then refresh browser)":[null,""],"default":[null,""],"origin":[null,""],"Git executable path":[null,""],"only needed if OS is unable to locate git from env":[null,""],"Git reset":[null,""],"removes untracked files and performs a hard reset on git branch automatically to help resolve update issues":[null,""],"Home Theater / NAS":[null,""],"Devices":[null,"Dispositius"],"Social":[null,"Social"],"A free and open source cross-platform media center and home entertainment system software with a 10-foot user interface designed for the living-room TV.":[null,""],"send KODI commands?":[null,""],"Always on":[null,"Sempre actiu"],"log errors when unreachable?":[null,""],"Notify on snatch":[null,""],"send a notification when a download starts?":[null,""],"Notify on download":[null,""],"send a notification when a download finishes?":[null,""],"Notify on subtitle download":[null,""],"send a notification when subtitles are downloaded?":[null,""],"Update library":[null,""],"update KODI library when a download finishes?":[null,""],"Full library update":[null,""],"perform a full library update if update per-show fails?":[null,""],"Only update first host":[null,""],"only send library updates to the first active host?":[null,""],"KODI IP:Port":[null,""],"host running KODI (eg. 192.168.1.100:8080)":[null,""],"(multiple host strings must be separated by commas)":[null,""],"Username":[null,"Nom d’usuari"],"username for your KODI server (blank for none)":[null,""],"Password":[null,"Contrasenya"],"password for your KODI server (blank for none)":[null,""],"Click below to test.":[null,""],"Experience your media on a visually stunning, easy to use interface on your Mac connected to your TV. Your media library has never looked this good!":[null,""],"For sending notifications to Plex Home Theater (PHT) clients, use the KODI notifier with port <b>3005</b>.":[null,""],"send Plex Media Server library updates?":[null,""],"Plex Media Server Auth Token":[null,""],"auth token used by Plex":[null,""],"Update Library":[null,""],"update Plex Media Server library when a download finishes":[null,""],"Plex Media Server IP:Port":[null,""],"one or more hosts running Plex Media Server<br/>(eg. 192.168.1.1:32400, 192.168.1.2:32400)":[null,""],"HTTPS":[null,"HTTPS"],"use https for plex media server requests?":[null,""],"Click below to test Plex Media Server(s)":[null,""],"Test Plex Media Server":[null,""],"Plex Home Theater":[null,""],"send Plex Home Theater notifications?":[null,""],"Plex Home Theater IP:Port":[null,""],"one or more hosts running Plex Home Theater<br>(eg. 192.168.1.100:3000, 192.168.1.101:3000)":[null,""],"Click below to test Plex Home Theater(s)":[null,""],"Test Plex Home Theater":[null,""],"some Plex Home Theaters <b class=\"boldest\">do not</b> support notifications e.g. Plexapp for Samsung TVs":[null,""],"Emby":[null,""],"A home media server built using other popular open source technologies.":[null,""],"send update commands to Emby?":[null,""],"Emby IP:Port":[null,""],"host running Emby (eg. 192.168.1.100:8096)":[null,""],"Emby API Key":[null,""],"Networked Media Jukebox":[null,""],"The Networked Media Jukebox, or NMJ, is the official media jukebox interface made available for the Popcorn Hour 200-series.":[null,""],"send update commands to NMJ?":[null,""],"Popcorn IP address":[null,""],"IP address of Popcorn 200-series (eg. 192.168.1.100)":[null,""],"Get settings":[null,""],"Get Settings":[null,""],"the Popcorn Hour device must be powered on and NMJ running.":[null,""],"NMJ database":[null,""],"automatically filled via the 'Get Settings' button.":[null,""],"NMJ mount url":[null,""],"Networked Media Jukebox v2":[null,""],"The Networked Media Jukebox, or NMJv2, is the official media jukebox interface made available for the Popcorn Hour 300 & 400-series.":[null,""],"send update commands to NMJv2?":[null,""],"IP address of Popcorn 300/400-series (eg. 192.168.1.100)":[null,""],"Database location":[null,""],"Database instance":[null,""],"adjust this value if the wrong database is selected.":[null,""],"Find database":[null,""],"Find Database":[null,""],"the Popcorn Hour device must be powered on.":[null,""],"NMJv2 database":[null,""],"automatically filled via the 'Find Database' buttons.":[null,""],"Synology":[null,""],"The Synology DiskStation NAS.":[null,""],"Synology Indexer is the daemon running on the Synology NAS to build its media database.":[null,""],"send Synology notifications?":[null,""],"requires SickRage to be running on your Synology NAS.":[null,""],"Synology Indexer":[null,""],"Synology Notifier is the notification system of Synology DSM":[null,""],"send notifications to the Synology Notifier?":[null,""],"pyTivo":[null,""],"pyTivo is both an HMO and GoBack server. This notifier will load the completed downloads to your Tivo.":[null,""],"send notifications to pyTivo?":[null,""],"requires the downloaded files to be accessible by pyTivo.":[null,""],"pyTivo IP:Port":[null,""],"host running pyTivo (eg. 192.168.1.1:9032)":[null,""],"pyTivo share name":[null,""],"value used in pyTivo Web Configuration to name the share.":[null,""],"Tivo name":[null,""],"(Messages & Settings > Account & System Information > System Information > DVR name)":[null,""],"Growl":[null,""],"A cross-platform unobtrusive global notification system.":[null,""],"send Growl notifications?":[null,""],"Growl IP:Port":[null,""],"host running Growl (eg. 192.168.1.100:23053)":[null,""],"may leave blank if SickRage is on the same host.":[null,""],"otherwise Growl <b>requires</b> a password to be used.":[null,""],"Click below to register and test Growl, this is required for Growl notifications to work.":[null,""],"Register Growl":[null,""],"Prowl":[null,""],"A Growl client for iOS.":[null,""],"send Prowl notifications?":[null,""],"Prowl Message Title":[null,""],"Global Prowl API key(s)":[null,""],"Prowl API(s) listed here, separated by commas if applicable, will<br> receive notifications for <b>all</b> shows. Your Prowl API key is available at:":[null,""],"(this field may be blank except when testing.)":[null,""],"Show notification list":[null,""],"-- Select a Show --":[null,""],"Configure per-show notifications here by entering Prowl API key(s), separated by commas, '\n 'after selecting a show in the drop-down box. Be sure to activate the 'Save for this show' '\n 'button below after each entry.":[null,""],"Save for this show":[null,""],"Prowl priority":[null,""],"Very Low":[null,""],"Moderate":[null,""],"Normal":[null,""],"High":[null,""],"Emergency":[null,""],"priority of Prowl messages from SickRage.":[null,""],"Libnotify":[null,""],"The standard desktop notification API for Linux/*nix systems. This notifier will only function if the pynotify module is installed (Ubuntu/Debian package <a href=\"apt:python-notify\">python-notify</a>).":[null,""],"send Libnotify notifications?":[null,""],"Pushover":[null,""],"Pushover makes it easy to send real-time notifications to your Android and iOS devices.":[null,""],"send Pushover notifications?":[null,""],"Pushover key":[null,""],"user key of your Pushover account":[null,""],"Pushover API key":[null,""],"click here":[null,""]," to create a Pushover API key":[null,""],"Pushover devices":[null,""],"comma separated list of pushover devices you want to send notifications to":[null,""],"Pushover notification sound":[null,""],"Bike":[null,""],"Bugle":[null,""],"Cash Register":[null,""],"Classical":[null,""],"Cosmic":[null,""],"Falling":[null,""],"Gamelan":[null,""],"Incoming":[null,""],"Intermission":[null,""],"Magic":[null,""],"Mechanical":[null,""],"Piano Bar":[null,""],"Siren":[null,""],"Space Alarm":[null,""],"Tug Boat":[null,""],"Alien Alarm (long)":[null,""],"Climb (long)":[null,""],"Persistent (long)":[null,""],"Pushover Echo (long)":[null,""],"Up Down (long)":[null,""],"None (silent)":[null,""],"Device specific":[null,""],"choose notification sound to use":[null,""],"Pushover priority":[null,""],"Choose priority to use":[null,""],"Boxcar 2":[null,""],"Read your messages where and when you want them!":[null,""],"send Boxcar notifications?":[null,""],"Boxcar2 access token":[null,""],"access token for your Boxcar account.":[null,""],"NMA":[null,""],"Notify My Android":[null,""],"Notify My Android is a Prowl-like Android App and API that offers an easy way to send notifications from your application directly to your Android device.":[null,""],"send NMA notifications?":[null,""],"NMA API key":[null,""],"(multiple keys must be separated by commas, up to a maximum of 5)":[null,""],"NMA priority":[null,""],"priority of NMA messages from SickRage.":[null,""],"Pushalot":[null,""],"Pushalot is a platform for receiving custom push notifications to connected devices running Windows Phone or Windows 8.":[null,""],"send Pushalot notifications ?":[null,""],"Pushalot authorization token":[null,""],"authorization token of your Pushalot account.":[null,""],"Pushbullet":[null,""],"Pushbullet is a platform for receiving custom push notifications to connected devices running Android/iOS and desktop browsers such as Chrome, Firefox or Opera.":[null,""],"send Pushbullet notifications?":[null,""],"Pushbullet API key":[null,""],"API key of your Pushbullet account":[null,""],"Pushbullet devices":[null,""],"Update device list":[null,""],"Pushbullet channels":[null,""],"Free Mobile":[null,""],"Free Mobile is a famous French cellular network provider.<br> It provides to their customer a free SMS API.":[null,""],"send SMS notifications?":[null,""],"send a SMS when a download starts?":[null,""],"send a SMS when a download finishes?":[null,""],"send a SMS when subtitles are downloaded?":[null,""],"Free Mobile customer ID":[null,""],"it's your Free Mobile customer ID (8 digits)":[null,""],"Free Mobile API key":[null,""],"find your API key in your customer portal.":[null,""],"Click below to test your settings.":[null,""],"Telegram":[null,""],"Telegram is a cloud-based instant messaging service.":[null,""],"send Telegram notifications?":[null,""],"send a message when a download starts?":[null,""],"send a message when a download finishes?":[null,""],"send a message when subtitles are downloaded?":[null,""],"User/group ID":[null,""],"contact @myidbot on Telegram to get an ID":[null,""],"Bot API token":[null,""],"contact @BotFather on Telegram to set up one":[null,""],"Join":[null,""],"Join all of your devices together!":[null,""],"send Join notifications?":[null,""],"Device ID":[null,""],"per device specific id":[null,""]," to create a Join API key":[null,""],"Twilio":[null,""],"Twilio is a webservice API that allows you to communicate directly with a mobile number. This notifier will send a text directly to your mobile device.":[null,""],"should SickRage text your mobile device?":[null,""],"Twilio Account SID":[null,""],"account SID of your Twilio account.":[null,""],"Twilio Auth Token":[null,""],"Twilio Phone SID":[null,""],"phone SID that you would like to send the sms from":[null,""],"Your phone number":[null,""],"phone number that will receive the sms. Please use the format +1-###-###-####":[null,""],"Twitter":[null,""],"A social networking and microblogging service, enabling its users to send and read other users' messages called tweets.":[null,""],"should SickRage post tweets on Twitter?":[null,""],"you may want to use a secondary account.":[null,""],"send direct message":[null,""],"send a notification via Direct Message, not via status update":[null,""],"send DM to":[null,""],"Twitter account to send Direct Messages to (must follow you)":[null,""],"Step One":[null,""],"Request Authorization":[null,""],"Click the \"Request Authorization\" button.<br> This will open a new page containing an auth key.<br> <b>note:</b> if nothing happens check your popup blocker.":[null,""],"Step Two":[null,""],"Enter the key Twitter gave you below, and click \"Verify Key\".":[null,""],"Trakt":[null,""],"Trakt helps keep a record of what TV shows and movies you are watching. Based on your favorites, Trakt recommends additional shows and movies you'll enjoy!":[null,""],"send Trakt.tv notifications?":[null,""],"username of your Trakt account.":[null,""],"Trakt PIN":[null,""],"Get Trakt PIN":[null,""],"PIN code to authorize SickRage to access Trakt on your behalf.":[null,""],"API Timeout":[null,""],"seconds to wait for Trakt API to respond. (Use 0 to wait forever)":[null,""],"Default indexer":[null,""],"Sync libraries":[null,""],"sync your SickRage show library with your trakt show library.":[null,""],"Remove Episodes From Collection":[null,""],"remove an episode from your Trakt Collection if it is not in your SickRage Library.":[null,""],"Sync watchlist":[null,""],"sync your SickRage show watchlist with your trakt show watchlist (either Show and Episode).":[null,""],"episode will be added on watch list when wanted or snatched and will be removed when downloaded ":[null,""],"Watchlist add method":[null,""],"Skip All":[null,""],"Download Pilot Only":[null,""],"Get whole show":[null,""],"method in which to download episodes for new shows.":[null,""],"Remove episode":[null,""],"remove an episode from your watchlist after it is downloaded.":[null,""],"Remove series":[null,""],"remove the whole series from your watchlist after any download.":[null,""],"Remove watched show":[null,""],"remove the show from sickrage if it's ended and completely watched":[null,""],"Start paused":[null,""],"shows grabbed from your trakt watchlist start paused.":[null,""],"Trakt blackList name":[null,""],"name (slug) of list on Trakt for blacklisting show on 'Add Trending Show' & 'Add Recommended Shows' pages":[null,""],"Email":[null,""],"Allows configuration of email notifications on a per show basis.":[null,""],"send email notifications?":[null,""],"SMTP host":[null,""],"hostname of your SMTP email server.":[null,""],"SMTP port":[null,""],"port number used to connect to your SMTP host.":[null,""],"SMTP from":[null,""],"sender email address, some hosts require a real address.":[null,""],"Use TLS":[null,""],"check to use TLS encryption.":[null,""],"SMTP user":[null,""],"(optional) your SMTP server username.":[null,""],"SMTP password":[null,""],"(optional) your SMTP server password.":[null,""],"Global email list":[null,""],"email addresses listed here, separated by commas if applicable, will<br> receive notifications for <b>all</b> shows.":[null,""],"(This field may be blank except when testing.)":[null,""],"Email Subject":[null,""],"use a custom subject for some privacy protection?":[null,""],"(leave blank for the default SickRage subject)":[null,""],"configure per-show notifications here by entering email address(es), separated by commas,":[null,""],"after selecting a show in the drop-down box. Be sure to activate the 'Save for this show'":[null,""],"button below after each entry.":[null,""],"Slack":[null,""],"Slack brings all your communication together in one place. It's real-time messaging, archiving and search for modern teams.":[null,""],"should SickRage post messages on Slack?":[null,""],"Slack Incoming Webhook":[null,""],"Discord":[null,""],"All-in-one voice and text chat for gamers that's free, secure, and works on both your desktop and phone.":[null,""],"Should SickRage post messages on Discord?":[null,""],"Discord Incoming Webhook":[null,""],"Create webhook under channel settings.":[null,""],"Discord Bot Name":[null,""],"Blank will use webhook default Name.":[null,""],"Discord Avatar URL":[null,""],"Blank will use webhook default Avatar.":[null,""],"Discord TTS":[null,""],"Send notifications using text-to-speech":[null,""],"Post-Processing":[null,""],"Episode Naming":[null,""],"Metadata":[null,""],"Settings that dictate how SickRage should process completed downloads.":[null,""],"enable the automatic post processor to scan and process any files in your Post Processing Dir":[null,""],"do not use if you use an external Post Processing script":[null,""],"Post Processing Dir":[null,""],"the folder where your download client puts the completed TV downloads.":[null,""],"please use seperate downloading and completed folders in your download client if possible.":[null,""],"Processing Method":[null,""],"what method should be used to put files into the library?":[null,""],"if you keep seeding torrents after they finish, please avoid the 'move' processing method to prevent errors.":[null,""],"Auto Post-Processing Frequency":[null,""],"time in minutes to check for new files to auto post-process (min 10)":[null,""],"Postpone post processing":[null,""],"wait to process a folder if sync files are present.":[null,""],"Sync File Extensions":[null,""],"comma seperated list of extensions or filename globs SickRage ignores when Post Processing":[null,""],"Rename Episodes":[null,""],"rename episode using the Episode Naming settings?":[null,""],"Create missing show directories":[null,""],"create missing show directories when they get deleted":[null,""],"Add shows without directory":[null,""],"add shows without creating a directory (not recommended)":[null,""],"Move associated files":[null,""],"move associated (srt/srr/sfv/etc) files while post processing?":[null,""],"Rename .nfo file":[null,""],"rename the original .nfo file to .nfo-orig to avoid conflicts?":[null,""],"Associated file extensions":[null,""],"comma separated list of associated file extensions SickRage should keep while post processing.":[null,""],"leaving it empty means no associated files will be post processed":[null,""],"Delete non associated files":[null,""],"delete non associated files while post processing?":[null,""],"Change File Date":[null,""],"set last modified filedate to the date that the episode aired?":[null,""],"some systems may ignore this feature.":[null,""],"Timezone for File Date":[null,""],"local":[null,""],"network":[null,""],"what timezone should be used to change File Date?":[null,""],"Unpack":[null,""],"What to do with archived releases found in your <i>TV Download Dir</i>?":[null,""],"Ignore (do not process contents)":[null,""],"Unpack (process contents)":[null,""],"Treat as video (process archive as-is)":[null,""],"'Unpack' only works with RAR archives":[null,""],"Windows":[null,""],"WinRar is required on windows":[null,""],"Unpack Directory":[null,""],"Choose a path to unpack files, leave blank to unpack in download dir":[null,""],"Unrar Location":[null,""],"add the path to unrar if it is not in the system path":[null,""],"Alternate Unrar Tool":[null,""],"add the path to an alternate unrar tool if it is not in the system path":[null,""],"Delete RAR contents":[null,""],"delete content of RAR files, even if Process Method not set to move?":[null,""],"only working with RAR archive":[null,""],"Don't delete empty folders":[null,""],"leave empty folders when Post Processing?":[null,""],"can be overridden using manual Post Processing":[null,""],"Follow symbolic-links":[null,""],"follow down symbolic links in download directory?":[null,""],"<b>EXPERTS ONLY.</b><br>Enable only if you know what <b>circular symbolic links</b> are,<br>and can <b>verify that you have none</b>.":[null,""],"Use icacls":[null,""],"Windows only":[null,""],"sets video permissions after using the move method in post processing":[null,""],"Extra Scripts":[null,""],"see":[null,""],"for script arguments description and usage.":[null,""],"How SickRage will name and sort your episodes.":[null,""],"Name Pattern":[null,""],"Toggle Naming Legend":[null,""],"don't forget to add quality pattern. Otherwise after post-processing the episode will have UNKNOWN quality":[null,""],"Meaning":[null,""],"Pattern":[null,""],"Result":[null,""],"Use lower case if you want lower case names (eg. %sn, %e.n, %q_n etc)":[null,""],"Show Name":[null,""],"Show.Name":[null,""],"Show_Name":[null,""],"Season Number":[null,""],"XEM Season Number":[null,""],"Episode Number":[null,""],"XEM Episode Number":[null,""],"Episode Name":[null,""],"Episode.Name":[null,""],"Episode_Name":[null,""],"Air Date":[null,""],"Post-Processing Date":[null,""],"Quality":[null,""],"Scene Quality":[null,""],"Release Name":[null,""],"SickRage' is used in place of RLSGROUP if it could not be properly detected":[null,""],"Release Group":[null,""],"If episode is proper/repack add 'proper' to name.":[null,""],"Release Type":[null,""],"Multi-Episode Style":[null,""],"Single-EP Sample":[null,""],"Multi-EP sample":[null,""],"Strip Show Year":[null,""],"remove the TV show's year when renaming the file?":[null,""],"only applies to shows that have year inside parentheses":[null,""],"Custom Air-By-Date":[null,""],"name air-by-date shows differently than regular shows?":[null,""],"Toggle ABD Naming Legend":[null,""],"Regular Air Date":[null,""],"Year":[null,""],"Month":[null,""],"Day":[null,""],"Multi-EP style is ignored":[null,""],"Custom Sports":[null,""],"name sports shows differently than regular shows?":[null,""],"Toggle Sports Naming Legend":[null,""],"Sports Air Date":[null,""],"Custom Anime":[null,""],"name anime shows differently than regular shows?":[null,""],"Toggle Anime Naming Legend":[null,""],">XEM Season Number":[null,""],"Single-EP Anime Sample":[null,""],"Multi-EP Anime sample":[null,""],"Add Absolute Number":[null,""],"add the absolute number to the season/episode format?":[null,""],"only applies to anime. (eg. S15E45 - 310 vs S15E45)":[null,""],"Only Absolute Number":[null,""],"replace season/episode format with absolute number":[null,""],"only applies to anime.":[null,""],"No Absolute Number":[null,""],"don't include the absolute number":[null,""],"The data associated to the data. These are files associated to a TV show in the form of images and text that, when supported, will enhance the viewing experience.":[null,""],"Metadata Type":[null,""],"toggle metadata options that you wish to be created":[null,""],"multiple targets may be used":[null,""],"Select Metadata":[null,""],"Provider Priorities":[null,""],"Provider Options":[null,""],"Configure Custom Newznab Providers":[null,""],"Configure Custom Torrent Providers":[null,""],"Check off and drag the providers into the order you want them to be used.":[null,""],"At least one provider is required but two are recommended.":[null,""],"Torrent providers can be toggled in ":[null,""],"Provider does not support backlog searches at this time.":[null,""],"Provider is <b>NOT WORKING</b>.":[null,""],"Configure individual provider settings here.":[null,""],"Check with provider's website on how to obtain an API key if needed.":[null,""],"Configure provider":[null,""],"no providers available to configure.":[null,""],"URL":[null,""],"Enable daily searches":[null,""],"enable provider to perform daily searches.":[null,""],"Enable backlog searches":[null,""],"enable provider to perform backlog searches.":[null,""],"Season search mode":[null,""],"when searching for complete seasons you can choose to have it look for season packs only, or choose to have it build a complete season from just single episodes.":[null,""],"season packs only.":[null,""],"episodes only.":[null,""],"Enable fallback":[null,""],"when searching for a complete season depending on search mode you may return no results, this helps by restarting the search using the opposite search mode.":[null,""],"Custom URL":[null,""],"the URL should include the protocol (and port if applicable). Examples: http://192.168.1.4/ or http://localhost:3000/":[null,""],"Api key":[null,""],"Digest":[null,""],"Hash":[null,""],"Passkey":[null,""],"Cookies":[null,""],"example: uid=1234;pass=567845439634987<br>note: uid and pass are not your username/password.<br>use DevTools or Firebug to get these values after logging in on your browser.":[null,""],"Pin":[null,""],"Seed ratio":[null,""],"stop transfer when ratio is reached<br>(-1 SickRage default to seed forever, or leave blank for downloader default)":[null,""],"Minimum seeders":[null,""],"Minimum leechers":[null,""],"Confirmed download":[null,""],"only download torrents from trusted or verified uploaders ?":[null,""],"Ranked torrents":[null,""],"only download ranked torrents (trusted releases)":[null,""],"English torrents":[null,""],"only download english torrents, or torrents containing english subtitles":[null,""],"For Spanish torrents":[null,""],"ONLY search on this provider if show info is defined as \"Spanish\" (avoid provider's use for VOS shows)":[null,""],"Sorting results by":[null,""],"Freeleech":[null,""],"only download <b>\"FreeLeech\"</b> torrents.":[null,""],"Category":[null,""],"select torrent with Italian subtitle":[null,""],"Configure Custom<br>Newznab Providers":[null,""],"Add and setup or remove custom Newznab providers.":[null,""],"Select provider":[null,""],"-- add new provider --":[null,""],"Provider name":[null,""],"Site URL":[null,""],"Newznab search categories":[null,""],"select your Newznab categories on the left, and click the \"update categories\" button to use them for searching.) <b>don't forget to to save the form!":[null,""],"Update Categories":[null,""],"Add":[null,""],"Delete":[null,""],"Add and setup or remove custom RSS providers.":[null,""],"RSS URL":[null,""],"Search element":[null,""],"eg: title":[null,""],"Episode Search":[null,""],"NZB Search":[null,""],"Torrent Search":[null,""],"How to manage searching with":[null,""],"Randomize Providers":[null,""],"randomize the provider search order instead of going in order of placement":[null,""],"Download propers":[null,""],"replace original download with \"Proper\" or \"Repack\" if nuked":[null,""],"Check propers every":[null,""],"24 hours":[null,""],"4 hours":[null,""],"90 mins":[null,""],"45 mins":[null,""],"15 mins":[null,""],"Backlog search day(s)":[null,""],"number of day(s) that the \"Forced Backlog Search\" will cover (e.g. 7 Days)":[null,""],"Backlog search frequency":[null,""],"time in minutes between searches (min.":[null,""],"Daily search frequency":[null,""],"Usenet retention":[null,""],"age limit in days for usenet articles to be used (e.g. 500)":[null,""],"Ignore words":[null,""],"results with one or more word from this list will be ignored<br>separate words with a comma, e.g. \"word1,word2,word3\"":[null,""],"Require words":[null,""],"results with no word from this list will be ignored<br>separate words with a comma, e.g. \"word1,word2,word3\"":[null,""],"Trackers list":[null,""],"trackers that will be added to magnets without trackers<br>separate trackers with a comma, e.g. \"tracker1,tracker2,tracker3\"":[null,""],"Ignore language names in subbed results":[null,""],"ignore subbed releases based on language names <br>\n Example: \"dk\" will ignore words: dksub, dksubs, dksubbed, dksubed <br>\n separate languages with a comma, e.g. \"lang1,lang2,lang3":[null,""],"Allow high priority":[null,""],"set downloads of recently aired episodes to high priority":[null,""],"Use Failed Downloads":[null,""],"use Failed Download Handling?":[null,""],"will only work with snatched/downloaded episodes after enabling this":[null,""],"Delete Failed":[null,""],"delete files left over from a failed download?":[null,""],"this only works if Use Failed Downloads is enabled.":[null,""],"How to handle NZB search results.":[null,""],"Search NZBs":[null,""],"enable NZB search providers":[null,""],"Send .nzb files to":[null,""],"SABnzbd server URL":[null,""],"URL to your SABnzbd server (e.g. http://localhost:8080/)":[null,""],"SABnzbd username":[null,""],"(blank for none)":[null,""],"SABnzbd password":[null,""],"SABnzbd API key":[null,""],"locate at... SABnzbd Config -> General -> API Key":[null,""],"Use SABnzbd category":[null,""],"add downloads to this category (e.g. TV)":[null,""],"Use SABnzbd category (backlog episodes)":[null,""],"add downloads of old episodes to this category (e.g. TV)":[null,""],"Use SABnzbd category for anime":[null,""],"add anime downloads to this category (e.g. anime)":[null,""],"Use SABnzbd category for anime (backlog episodes)":[null,""],"add anime downloads of old episodes to this category (e.g. anime)":[null,""],"Use forced priority":[null,""],"enable to change priority from HIGH to FORCED":[null,""],"Black hole folder location":[null,""],"<b>.nzb</b> files are stored at this location for external software to find and use":[null,""],"Connect using HTTPS":[null,""],"enable Secure control in NZBGet and set the correct Secure Port here":[null,""],"NZBget host:port":[null,""],"(e.g. localhost:6789)":[null,""],"NZBget RPC host name and port number (not NZBgetweb!)":[null,""],"NZBget username":[null,""],"locate in nzbget.conf (default:nzbget)":[null,""],"NZBget password":[null,""],"locate in nzbget.conf (default:tegbzn6789)":[null,""],"Use NZBget category":[null,""],"send downloads marked this category (e.g. TV)":[null,""],"Use NZBget category (backlog episodes)":[null,""],"send downloads of old episodes marked this category (e.g. TV)":[null,""],"Use NZBget category for anime":[null,""],"send anime downloads marked this category (e.g. anime)":[null,""],"Use NZBget category for anime (backlog episodes)":[null,""],"send anime downloads of old episodes marked this category (e.g. anime)":[null,""],"NZBget priority":[null,""],"Very low":[null,""],"Low":[null,""],"Very high":[null,""],"Force":[null,""],"priority for daily snatches (no backlog)":[null,""],"Torrent host:port":[null,""],"URL to your Synology DSM (e.g. http://localhost:5000/)":[null,""],"Client username":[null,""],"Client password":[null,""],"Downloaded files location":[null,""],"where Synology Download Station will save downloaded files (blank for client default)":[null,""],"the destination has to be a shared folder for Synology DS":[null,""],"Click below to test":[null,""],"How to handle Torrent search results.":[null,""],"Search torrents":[null,""],"enable torrent search providers":[null,""],"Send .torrent files to":[null,""],"<b>.torrent</b> files are stored at this location for external software to find and use":[null,""],"URL to your torrent client (e.g. http://localhost:8000/)":[null,""],"Torrent RPC URL":[null,""],"the path without leading and trailing slashes (e.g. transmission)":[null,""],"Http Authentication":[null,""],"Verify certificate":[null,""],"disable if you get \"Deluge: Authentication Error\" in your log":[null,""],"verify SSL certificates for HTTPS requests":[null,""],"Add label to torrent":[null,""],"(blank spaces are not allowed)":[null,""],"label plugin must be enabled in Deluge clients":[null,""],"for QBitTorrent 3.3.1 and up":[null,""],"Add label to torrent for anime":[null,""],"for QBitTorrent 3.3.1 and up ":[null,""],"where <span id=\"torrent_client\">the torrent client</span> will save downloaded files (blank for client default)":[null,""],"the destination has to be a shared folder for Synology DS</span>":[null,""],"Minimum seeding time":[null,""],"time in hours":[null,""],"(default:'0' passes blank to client and '-1' passes nothing)":[null,""],"Start torrent paused":[null,""],"add .torrent to client but do <b style=\"font-weight:900\">not</b> start downloading":[null,""],"Allow high bandwidth":[null,""],"use high bandwidth allocation if priority is high":[null,""],"Test Connection":[null,""],"Windows Shares":[null,""],"Defines your existing windows shares so that we can add them to the browse dialog":[null,""],"Share #{number}":[null,""],"Share label":[null,""],"Hostname or IP":[null,""],"Share path":[null,""],"Subtitles Search":[null,""],"Subtitles Plugin":[null,""],"Plugin Settings":[null,""],"Settings that dictate how SickRage handles subtitles search results.":[null,""],"Search Subtitles":[null,""],"Subtitle Languages":[null,""],"Subtitle Directory":[null,""],"the directory where SickRage should store your <i>Subtitles</i> files.":[null,""],"leave empty if you want store subtitle in episode path.":[null,""],"Subtitle Find Frequency":[null,""],"time in hours between scans (default: 1)":[null,""],"Include Specials":[null,""],"include the show's specials when searching for subtitles?":[null,""],"Perfect matches":[null,""],"only download subtitles that match: release group, video codec, audio codec and resolution":[null,""],"if disabled you may get out of sync subtitles":[null,""],"Subtitles History":[null,""],"log downloaded Subtitle on History page?":[null,""],"Subtitles Multi-Language":[null,""],"append language codes to subtitle filenames?":[null,""],"this option is required if you use multiple subtitle languages":[null,""],"Delete unwanted subtitles":[null,""],"enable to delete unwanted subtitle languages bundled with release":[null,""],"Embedded Subtitles":[null,""],"ignore subtitles embedded inside video file?":[null,""],"this will ignore <u>all</u> embedded subtitles for every video file!":[null,""],"Hearing Impaired Subtitles":[null,""],"download hearing impaired style subtitles?":[null,""],"See":[null,""],"for a script arguments description.":[null,""],"Additional scripts separated by <b>|</b>.":[null,""],"Scripts are called after each episode has searched and downloaded subtitles.":[null,""],"For any scripted languages, include the interpreter executable before the script. See the following example":[null,""],"For Windows:":[null,""],"For Linux / OS X:":[null,""],"Subtitle Providers":[null,""],"Check off and drag the plugins into the order you want them to be used.":[null,""],"At least one plugin is required.":[null,""]," Web-scraping plugin":[null,""],"Provider Settings":[null,""],"Set user and password for each provider":[null,""],"User Name":[null,""],"Change Show":[null,""],"Prev Show":[null,""],"Next Show":[null,""],"Jump to Season":[null,""],"Specials":[null,""],"Poster for":[null,""],"Stars":[null,""],"minutes":[null,""],"View other popular {genre} shows on trakt.tv.":[null,""],"View other popular {imdbgenre} shows on IMDB.":[null,""],"Allowed":[null,""],"Preferred":[null,""],"Originally Airs":[null,""],"Show Status":[null,"Mostra l'estat"],"Default EP Status":[null,""],"Location":[null,""],"Missing":[null,""],"Scene Name":[null,""],"Required Words":[null,""],"Ignored Words":[null,""],"Size":[null,""],"Info Language":[null,""],"Subtitles SR Metadata":[null,""],"Season Folders":[null,""],"Paused":[null,""],"Air-by-Date":[null,""],"Sports":[null,""],"DVD Order":[null,""],"Scene Numbering":[null,""],"Select Filtered Episodes":[null,""],"Clear All":[null,""],"Change selected episodes to":[null,""],"Select Columns":[null,""],"NFO":[null,""],"TBN":[null,""],"Episode":[null,""],"Absolute":[null,""],"Scene":[null,""],"Scene Absolute":[null,""],"File Name":[null,""],"Airdate":[null,""],"Download":[null,""],"Change the value here if scene numbering differs from the indexer episode numbering":[null,""],"Change the value here if scene absolute numbering differs from the indexer absolute numbering":[null,""],"Manual Search":[null,""],"Do you want to mark this episode as failed?":[null,""],"The episode release name will be added to the failed history, preventing it to be downloaded again.":[null,""],"Do you want to include the current episode quality in the search?":[null,""],"Choosing No will ignore any releases with the same episode quality as the one currently downloaded/snatched.":[null,""],"Download subtitle":[null,""],"Do you want to re-download the subtitle for this language?":[null,""],"It will overwrite your current subtitle":[null,""],"Format":[null,""],"Advanced":[null,""],"Main Settings":[null,""],"Show Location":[null,"Mostra la ubicació"],"Preferred Quality":[null,""],"Default Episode Status":[null,""],"this will set the status for future episodes.":[null,""],"this only applies to episode filenames and the contents of metadata files.":[null,""],"search for subtitles":[null,""],"Use SR Metdata":[null,""],"use SickRage metadata when searching for subtitle, this will override the autodiscovered metadata":[null,""],"pause this show (SickRage will not download episodes)":[null,""],"Format Settings":[null,""],"Air by date":[null,""],"check if the show is released as Show.03.02.2010 rather than Show.S02E03.":[null,""],"in case of an air date conflict between regular and special episodes, the later will be ignored.":[null,""],"check if the show is Anime and episodes are released as Show.265 rather than Show.S02E03":[null,""],"check if the show is a sporting or MMA event released as Show.03.02.2010 rather than Show.S02E03":[null,""],"Season folders":[null,""],"group episodes by season folder (uncheck to store in a single folder)":[null,""],"search by scene numbering (uncheck to search by indexer numbering)":[null,""],"use the DVD order instead of the air order":[null,""],"a \"Force Full Update\" is necessary, and if you have existing episodes you need to sort them manually.":[null,""],"comma-separated <i>e.g. \"word1,word2,word3</i>\"":[null,""],"search results with one or more words from this list will be ignored.":[null,""],"e.g. \"word1,word2,word3\"":[null,""],"search results with no words from this list will be ignored.":[null,""],"Scene Exception":[null,""],"this will affect episode search on NZB and torrent providers.":[null,""],"this list appends to the original show name.":[null,""],"WARNING logs":[null,""],"ERROR logs":[null,""],"There are no events to display.":[null,""],"Limit":[null,""],"Layout":[null,""],"HistoryLayout":[null,""],"Compact":[null,""],"Detailed":[null,""],"Time":[null,""],"Provider":[null,""],"Missing Provider":[null,""],"missing provider":[null,""],"Directory":[null,""],"Show Name (tvshow.nfo)":[null,""],"Indexer":[null,""],"Enter the folder containing the episode":[null,""],"Process Method to be used":[null,""],"Copy":[null,""],"Move":[null,""],"Hard Link":[null,""],"Symbolic Link":[null,""],"Symbolic Link Reversed":[null,""],"Force already Post Processed Dir/Files":[null,""],"Mark Dir/Files as priority download":[null,""],"(Check it to replace the file even if it exists at higher quality)":[null,""],"Delete files and folders":[null,""],"(Check it to delete files and folders like auto processing)":[null,""],"Don't use processing queue":[null,""],"(If checked this will return the result of the process here, but may be slow!)":[null,""],"Mark download as failed":[null,""],"Process":[null,""],"Download subtitles for this show?":[null,""],"use SickRage metadata when searching for subtitle, <br />this will override the autodiscovered metadata":[null,""],"Status for previously aired episodes":[null,""],"Status for all future episodes":[null,""],"Group episodes by season folder?":[null,""],"Is this show an Anime?":[null,""],"Is this show scene numbered?":[null,""],"Save Defaults":[null,""],"Use current values as the defaults":[null,""],"<p>Select your preferred fansub groups from the <b>Available Groups</b> and add them to the <b>Whitelist</b>. Add groups to the <b>Blacklist</b> to ignore them.</p>\n <p>The <b>Whitelist</b> is checked <i>before</i> the <b>Blacklist</b>.</p>\n <p>Groups are shown as <b>Name</b> | <b>Rating</b> | <b>Number of subbed episodes</b>.</p>\n <p>You may also add any fansub group not listed to either list manually.</p>\n <p>When doing this please note that you can only use groups listed on anidb for this anime.\n <br>If a group is not listed on anidb but subbed this anime, please correct anidb's data.</p>":[null,""],"Whitelist":[null,""],"Available Groups":[null,""],"Add to Whitelist":[null,""],"Add to Blacklist":[null,""],"Blacklist":[null,""],"Custom Group":[null,""],"Allowed Quality:":[null,""],"Preferred Quality:":[null,""],"Filter Show Name":[null,""],"Root":[null,""],"All":[null,""],"Clear Filter(s)":[null,""],"Poster":[null,"Cartell"],"Small Poster":[null,""],"Banner":[null,"Banner"],"Simple":[null,""],"Next Episode":[null,""],"Progress":[null,""],"Direction":[null,""],"Ascending":[null,""],"Descending":[null,""],"Poster Size":[null,""],"Continuing":[null,""],"Ended":[null,""],"Total":[null,""],"Invalid date":[null,""],"No Network":[null,""],"Next Ep":[null,""],"Prev Ep":[null,""],"Show":[null,"Mostrar"],"Downloads":[null,""],"Active":[null,""],"loading":[null,""],"<p><b><u>Preferred</u></b> qualities will replace those in <b><u>allowed</u></b>, even if they are lower.</p>":[null,""],"New":[null,""],"Set as Default":[null,""],"Remember me":[null,""],"Edit Selected":[null,""],"Subtitle":[null,""],"Default Ep Status":[null,""],"Update":[null,""],"Rescan":[null,""],"Rename":[null,""],"Search Subtitle":[null,""],"Force Metadata Regen":[null,""],"Snatched (Allowed)":[null,""],"Jump to Show":[null,""],"Force Backlog":[null,""],"Manage episodes with status":[null,""],"Manage":[null,""],"None of your episodes have status":[null,""],"Shows containing":[null,""],"episodes":[null,""],"Set checked shows/episodes to":[null,""],"Go":[null,""],"Select all":[null,""],"Clear all":[null,""],"Release":[null,""],"Backlog Search":[null,""],"Not in progress":[null,""],"In Progress":[null,""],"Daily Search":[null,""],"Find Propers Search":[null,""],"Propers search disabled":[null,""],"Subtitle Search":[null,""],"Subtitle search disabled":[null,""],"Search Queue":[null,""],"pending items":[null,""],"Daily":[null,""],"Manual":[null,""],"Changing any settings marked with (<span class=\"separator\">*</span>) will force a refresh of the selected shows.":[null,""],"Selected Shows":[null,""],"Root Directories":[null,""],"Current":[null,""],"Keep":[null,""],"Custom":[null,""],"Group episodes by season folder (set to \"No\" to store in a single folder).":[null,""],"Pause these shows (SickRage will not download episodes).":[null,""],"This will set the status for future episodes.":[null,""],"Search by scene numbering (set to \"No\" to search by indexer numbering).":[null,""],"Set if these shows are Anime and episodes are released as Show.265 rather than Show.S02E03":[null,""],"Set if these shows are sporting or MMA events released as Show.03.02.2010 rather than Show.S02E03.":[null,""],"In case of an air date conflict between regular and special episodes, the later will be ignored.":[null,""],"Set if these shows are released as Show.03.02.2010 rather than Show.S02E03.":[null,""],"Search for subtitles.":[null,""],"All of your episodes have {subsLanguage} subtitles.":[null,""],"Manage episodes without":[null,""],"Episodes without {subsLanguage} subtitles.":[null,""],"Episodes without {subtitleLanguage} (undefined) subtitles.":[null,""],"Download missed subtitles for selected episodes":[null,""],"Performing Restart":[null,""],"Waiting for SickRage to shut down":[null,""],"Waiting for SickRage to start again":[null,""],"Loading the default page":[null,""],"Error: The restart has timed out, perhaps something prevented SickRage from starting again?":[null,""],"Key":[null,""],"Missed":[null,""],"Today":[null,""],"Soon":[null,""],"Later":[null,""],"Subscribe":[null,""],"Date":[null,""],"View Paused":[null,""],"Hidden":[null,""],"Shown":[null,""],"Calendar":[null,"Calendari"],"List":[null,"Llista"],"Ends":[null,""],"Next Ep Name":[null,""],"Run time":[null,""],"Indexers":[null,""],"No shows for this day":[null,""],"Airs":[null,""],"Plot":[null,""],"Show Update":[null,""],"Version Check":[null,""],"Proper Finder":[null,""],"Post Process":[null,""],"Subtitles Finder":[null,""],"Scheduler":[null,""],"Alive":[null,""],"Start Time":[null,""],"Cycle Time":[null,""],"Next Run":[null,""],"Last Run":[null,""],"Silent":[null,""],"True":[null,""],"N/A":[null,""],"Show id":[null,""],"Show name":[null,""],"Priority":[null,""],"Added":[null,""],"Queue type":[null,""],"LOW":[null,""],"NORMAL":[null,""],"HIGH":[null,""],"Disk Space":[null,""],"Free space":[null,""],"TV Download Directory":[null,""],"Media Root Directories":[null,""],"Preview of the proposed name changes":[null,""],"All Seasons":[null,""],"select all":[null,""],"Rename Selected":[null,""],"Cancel Rename":[null,""],"Old Location":[null,""],"New Location":[null,""],"Trakt API did not return any results, please check your config.":[null,""],"votes":[null,""],"Remove Show":[null,""],"Level":[null,""],"Filter":[null,""],"All non-absolute folder locations are relative to ":[null,""],"Manual Post-Processing":[null,""],"Episode Status Management":[null,""],"Update PLEX":[null,""],"Update KODI":[null,""],"Update Emby":[null,""],"Manage Torrents":[null,""],"Missed Subtitle Management":[null,""],"Help & Info":[null,""],"Backup & Restore":[null,""],"Tools":[null,""],"Support SickRage":[null,""],"View Errors":[null,""],"View Warnings":[null,""],"View Log":[null,""],"Check For Updates":[null,""],"Restart":[null,""],"Shutdown":[null,""],"Logout":[null,""],"Server Status":[null,""],"View overview of snatched episodes":[null,""],"Episodes Downloaded":[null,""],"Memory used":[null,""],"Load time":[null,""],"Branch":[null,""],"Now":[null,""]}}}} \ No newline at end of file diff --git a/locale/ca_ES/LC_MESSAGES/messages.mo b/locale/ca_ES/LC_MESSAGES/messages.mo index 9ab080a0e0ab4747509755df1b495a64893f103c..ea6fc0fadd4a751f5488a404fec2b104f8a60c97 100644 Binary files a/locale/ca_ES/LC_MESSAGES/messages.mo and b/locale/ca_ES/LC_MESSAGES/messages.mo differ diff --git a/locale/ca_ES/LC_MESSAGES/messages.po b/locale/ca_ES/LC_MESSAGES/messages.po index 09cb071e2e8331d7c0116df78cae465675975390..06cd469b1234f3d0463f399d41ec65c110902a9a 100644 --- a/locale/ca_ES/LC_MESSAGES/messages.po +++ b/locale/ca_ES/LC_MESSAGES/messages.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: sickrage\n" "Report-Msgid-Bugs-To: miigotu@gmail.com\n" -"POT-Creation-Date: 2017-03-25 09:28-0700\n" -"PO-Revision-Date: 2017-03-25 12:29-0400\n" +"POT-Creation-Date: 2017-03-28 09:10-0700\n" +"PO-Revision-Date: 2017-03-28 12:11-0400\n" "Last-Translator: miigotu <miigotu@gmail.com>\n" "Language-Team: Catalan\n" "MIME-Version: 1.0\n" @@ -90,7 +90,7 @@ msgid "Biography" msgstr "Biografia" #: gui/slick/views/config_general.mako:78 gui/slick/views/layouts/main.mako:145 -#: sickbeard/__init__.py:79 sickbeard/webserve.py:3807 +#: sickbeard/__init__.py:79 sickbeard/webserve.py:3778 msgid "History" msgstr "Històric" @@ -103,7 +103,7 @@ msgid "Western" msgstr "" #: gui/slick/views/config_general.mako:79 gui/slick/views/layouts/main.mako:221 -#: sickbeard/__init__.py:80 sickbeard/webserve.py:2385 +#: sickbeard/__init__.py:80 sickbeard/webserve.py:2384 msgid "News" msgstr "Notícies" @@ -238,6 +238,34 @@ msgstr "Ignorat" msgid "Subtitled" msgstr "Subtitulat" +#: sickbeard/helpers.py:1887 +msgid "For best results please set the Download Station alias as" +msgstr "" + +#: sickbeard/helpers.py:1888 +msgid "You can check this setting in the Synology DSM" +msgstr "" + +#: sickbeard/helpers.py:1888 sickbeard/helpers.py:1890 +msgid "Control Panel" +msgstr "" + +#: sickbeard/helpers.py:1888 +msgid "Application Portal" +msgstr "" + +#: sickbeard/helpers.py:1889 +msgid "Make sure you allow DSM to be embedded with iFrames too in" +msgstr "" + +#: sickbeard/helpers.py:1890 +msgid "DSM Settings" +msgstr "" + +#: sickbeard/helpers.py:1890 +msgid "Security" +msgstr "Seguretat" + #: sickbeard/logger.py:474 msgid "<No Filter>" msgstr "" @@ -308,15 +336,15 @@ msgstr "" msgid "Event" msgstr "" -#: sickbeard/logger.py:491 sickbeard/webserve.py:1339 sickbeard/webserve.py:1342 -#: sickbeard/webserve.py:1520 sickbeard/webserve.py:1529 sickbeard/webserve.py:1717 -#: sickbeard/webserve.py:1728 sickbeard/webserve.py:1751 sickbeard/webserve.py:1764 -#: sickbeard/webserve.py:1769 sickbeard/webserve.py:1785 sickbeard/webserve.py:1790 -#: sickbeard/webserve.py:1854 sickbeard/webserve.py:1857 sickbeard/webserve.py:1863 -#: sickbeard/webserve.py:1866 sickbeard/webserve.py:1873 sickbeard/webserve.py:1876 -#: sickbeard/webserve.py:1899 sickbeard/webserve.py:1997 sickbeard/webserve.py:2002 -#: sickbeard/webserve.py:2007 sickbeard/webserve.py:2036 sickbeard/webserve.py:2040 -#: sickbeard/webserve.py:2045 +#: sickbeard/logger.py:491 sickbeard/webserve.py:1338 sickbeard/webserve.py:1341 +#: sickbeard/webserve.py:1519 sickbeard/webserve.py:1528 sickbeard/webserve.py:1716 +#: sickbeard/webserve.py:1727 sickbeard/webserve.py:1750 sickbeard/webserve.py:1763 +#: sickbeard/webserve.py:1768 sickbeard/webserve.py:1784 sickbeard/webserve.py:1789 +#: sickbeard/webserve.py:1853 sickbeard/webserve.py:1856 sickbeard/webserve.py:1862 +#: sickbeard/webserve.py:1865 sickbeard/webserve.py:1872 sickbeard/webserve.py:1875 +#: sickbeard/webserve.py:1898 sickbeard/webserve.py:1996 sickbeard/webserve.py:2001 +#: sickbeard/webserve.py:2006 sickbeard/webserve.py:2035 sickbeard/webserve.py:2039 +#: sickbeard/webserve.py:2044 msgid "Error" msgstr "Error" @@ -333,6 +361,7 @@ msgstr "Fil" msgid "Main" msgstr "Principal" +#: gui/slick/js/ajaxEpSearch.js:146 gui/slick/js/ajaxEpSearch.js:147 #: gui/slick/views/inc_home_showList.mako:27 sickbeard/show_queue.py:298 msgid "Loading" msgstr "" @@ -372,867 +401,835 @@ msgstr "" msgid "No update needed" msgstr "" -#: sickbeard/webserve.py:170 +#: sickbeard/webserve.py:171 msgid "Mako Error" msgstr "" -#: sickbeard/webserve.py:195 +#: sickbeard/webserve.py:196 msgid "Oops" msgstr "Caram" -#: sickbeard/webserve.py:197 +#: sickbeard/webserve.py:198 msgid "Wrong API key used" msgstr "" -#: gui/slick/views/login.mako:34 sickbeard/webserve.py:302 +#: gui/slick/views/login.mako:34 sickbeard/webserve.py:303 msgid "Login" msgstr "" -#: sickbeard/webserve.py:406 +#: sickbeard/webserve.py:392 msgid "API Key not generated" msgstr "" -#: sickbeard/webserve.py:409 +#: sickbeard/webserve.py:395 msgid "API Builder" msgstr "" #: gui/slick/views/config_general.mako:77 gui/slick/views/layouts/main.mako:141 -#: sickbeard/webserve.py:512 +#: sickbeard/webserve.py:498 msgid "Schedule" msgstr "Planificar" -#: sickbeard/webserve.py:610 +#: sickbeard/webserve.py:609 msgid "Test 1" msgstr "Prova 1" -#: sickbeard/webserve.py:610 +#: sickbeard/webserve.py:609 msgid "This is test number 1" msgstr "Aquesta és la prova número 1" -#: sickbeard/webserve.py:611 +#: sickbeard/webserve.py:610 msgid "Test 2" msgstr "Prova 2" -#: sickbeard/webserve.py:611 +#: sickbeard/webserve.py:610 msgid "This is test number 2" msgstr "Aquesta és la prova número 2" -#: sickbeard/webserve.py:634 +#: sickbeard/webserve.py:633 msgid "You're using the {branch} branch. Please use 'master' unless specifically asked" msgstr "" -#: sickbeard/webserve.py:698 sickbeard/webserve.py:703 +#: sickbeard/webserve.py:697 sickbeard/webserve.py:702 msgid "Invalid show parameters" msgstr "" -#: sickbeard/webserve.py:710 +#: sickbeard/webserve.py:709 msgid "Invalid parameters" msgstr "" -#: sickbeard/webserve.py:713 sickbeard/webserve.py:1899 +#: sickbeard/webserve.py:712 sickbeard/webserve.py:1898 msgid "Episode couldn't be retrieved" msgstr "" -#: sickbeard/webserve.py:759 sickbeard/webserve.py:1268 sickbeard/webserve.py:1297 +#: sickbeard/webserve.py:758 sickbeard/webserve.py:1267 sickbeard/webserve.py:1296 msgid "Home" msgstr "Inici" -#: gui/slick/views/layouts/main.mako:127 sickbeard/webserve.py:759 +#: gui/slick/views/layouts/main.mako:127 sickbeard/webserve.py:758 msgid "Show List" msgstr "Mostrar llistat" -#: sickbeard/webserve.py:807 +#: sickbeard/webserve.py:806 msgid "Error: Unsupported Request. Send jsonp request with 'callback' variable in the query string." msgstr "" -#: sickbeard/webserve.py:851 +#: sickbeard/webserve.py:850 msgid "Success. Connected and authenticated" msgstr "" -#: sickbeard/webserve.py:853 +#: sickbeard/webserve.py:852 msgid "Authentication failed. SABnzbd expects" msgstr "" -#: sickbeard/webserve.py:853 +#: sickbeard/webserve.py:852 msgid "as authentication method" msgstr "com a mètode d'autenticació" -#: sickbeard/webserve.py:855 +#: sickbeard/webserve.py:854 msgid "Unable to connect to host" msgstr "Incapaç de connectar a amfitrió" -#: sickbeard/webserve.py:876 +#: sickbeard/webserve.py:875 msgid "SMS sent successfully" msgstr "" -#: sickbeard/webserve.py:878 +#: sickbeard/webserve.py:877 msgid "Problem sending SMS: {message}" msgstr "" -#: sickbeard/webserve.py:885 +#: sickbeard/webserve.py:884 msgid "Telegram notification succeeded. Check your Telegram clients to make sure it worked" msgstr "" -#: sickbeard/webserve.py:887 +#: sickbeard/webserve.py:886 msgid "Error sending Telegram notification: {message}" msgstr "" -#: sickbeard/webserve.py:894 +#: sickbeard/webserve.py:893 msgid "join notification succeeded. Check your join clients to make sure it worked" msgstr "" -#: sickbeard/webserve.py:896 +#: sickbeard/webserve.py:895 msgid "Error sending join notification: {message}" msgstr "" -#: sickbeard/webserve.py:906 +#: sickbeard/webserve.py:905 msgid " with password" msgstr " amb contrasenya" -#: sickbeard/webserve.py:908 +#: sickbeard/webserve.py:907 msgid "Registered and Tested growl successfully {growl_host}" msgstr "" -#: sickbeard/webserve.py:910 +#: sickbeard/webserve.py:909 msgid "Registration and Testing of growl failed {growl_host}" msgstr "" -#: sickbeard/webserve.py:917 +#: sickbeard/webserve.py:916 msgid "Test prowl notice sent successfully" msgstr "" -#: sickbeard/webserve.py:919 +#: sickbeard/webserve.py:918 msgid "Test prowl notice failed" msgstr "" -#: sickbeard/webserve.py:926 +#: sickbeard/webserve.py:925 msgid "Boxcar2 notification succeeded. Check your Boxcar2 clients to make sure it worked" msgstr "" -#: sickbeard/webserve.py:928 +#: sickbeard/webserve.py:927 msgid "Error sending Boxcar2 notification" msgstr "" -#: sickbeard/webserve.py:935 +#: sickbeard/webserve.py:934 msgid "Pushover notification succeeded. Check your Pushover clients to make sure it worked" msgstr "" -#: sickbeard/webserve.py:937 +#: sickbeard/webserve.py:936 msgid "Error sending Pushover notification" msgstr "" -#: sickbeard/webserve.py:949 +#: sickbeard/webserve.py:948 msgid "Key verification successful" msgstr "" -#: sickbeard/webserve.py:951 +#: sickbeard/webserve.py:950 msgid "Unable to verify key" msgstr "" -#: sickbeard/webserve.py:958 +#: sickbeard/webserve.py:957 msgid "Tweet successful, check your twitter to make sure it worked" msgstr "" -#: sickbeard/webserve.py:960 +#: sickbeard/webserve.py:959 msgid "Error sending tweet" msgstr "" -#: sickbeard/webserve.py:965 +#: sickbeard/webserve.py:964 msgid "Please enter a valid account sid" msgstr "" -#: sickbeard/webserve.py:968 +#: sickbeard/webserve.py:967 msgid "Please enter a valid auth token" msgstr "" -#: sickbeard/webserve.py:971 +#: sickbeard/webserve.py:970 msgid "Please enter a valid phone sid" msgstr "" -#: sickbeard/webserve.py:974 +#: sickbeard/webserve.py:973 msgid "Please format the phone number as \"+1-###-###-####\"" msgstr "" -#: sickbeard/webserve.py:978 +#: sickbeard/webserve.py:977 msgid "Authorization successful and number ownership verified" msgstr "" -#: sickbeard/webserve.py:980 +#: sickbeard/webserve.py:979 msgid "Error sending sms" msgstr "" -#: sickbeard/webserve.py:986 +#: sickbeard/webserve.py:985 msgid "Slack message successful" msgstr "" -#: sickbeard/webserve.py:988 +#: sickbeard/webserve.py:987 msgid "Slack message failed" msgstr "" -#: sickbeard/webserve.py:994 +#: sickbeard/webserve.py:993 msgid "Discord message successful" msgstr "" -#: sickbeard/webserve.py:996 +#: sickbeard/webserve.py:995 msgid "Discord message failed" msgstr "" -#: sickbeard/webserve.py:1006 +#: sickbeard/webserve.py:1005 msgid "Test KODI notice sent successfully to {kodi_host}" msgstr "" -#: sickbeard/webserve.py:1008 +#: sickbeard/webserve.py:1007 msgid "Test KODI notice failed to {kodi_host}" msgstr "" -#: sickbeard/webserve.py:1023 +#: sickbeard/webserve.py:1022 msgid "Successful test notice sent to Plex Home Theater ... {plex_clients}" msgstr "" -#: sickbeard/webserve.py:1025 +#: sickbeard/webserve.py:1024 msgid "Test failed for Plex Home Theater ... {plex_clients}" msgstr "" -#: sickbeard/webserve.py:1028 +#: sickbeard/webserve.py:1027 msgid "Tested Plex Home Theater(s)" msgstr "" -#: sickbeard/webserve.py:1042 +#: sickbeard/webserve.py:1041 msgid "Successful test of Plex Media Server(s) ... {plex_servers}" msgstr "" -#: sickbeard/webserve.py:1044 +#: sickbeard/webserve.py:1043 msgid "Test failed, No Plex Media Server host specified" msgstr "" -#: sickbeard/webserve.py:1046 +#: sickbeard/webserve.py:1045 msgid "Test failed for Plex Media Server(s) ... {plex_servers}" msgstr "" -#: sickbeard/webserve.py:1049 +#: sickbeard/webserve.py:1048 msgid "Tested Plex Media Server host(s)" msgstr "" -#: sickbeard/webserve.py:1057 +#: sickbeard/webserve.py:1056 msgid "Tried sending desktop notification via libnotify" msgstr "" -#: sickbeard/webserve.py:1066 +#: sickbeard/webserve.py:1065 msgid "Test notice sent successfully to {emby_host}" msgstr "" -#: sickbeard/webserve.py:1068 +#: sickbeard/webserve.py:1067 msgid "Test notice failed to {emby_host}" msgstr "" -#: sickbeard/webserve.py:1076 +#: sickbeard/webserve.py:1075 msgid "Successfully started the scan update" msgstr "" -#: sickbeard/webserve.py:1078 +#: sickbeard/webserve.py:1077 msgid "Test failed to start the scan update" msgstr "" -#: sickbeard/webserve.py:1097 +#: sickbeard/webserve.py:1096 msgid "Test notice sent successfully to {nmj2_host}" msgstr "" -#: sickbeard/webserve.py:1099 +#: sickbeard/webserve.py:1098 msgid "Test notice failed to {nmj2_host}" msgstr "" -#: sickbeard/webserve.py:1119 +#: sickbeard/webserve.py:1118 msgid "Trakt Authorized" msgstr "Trakt autoritzat" -#: sickbeard/webserve.py:1120 +#: sickbeard/webserve.py:1119 msgid "Trakt Not Authorized!" msgstr "Trakt no autoritzat!" -#: sickbeard/webserve.py:1184 +#: sickbeard/webserve.py:1183 msgid "Test email sent successfully! Check inbox." msgstr "" -#: sickbeard/webserve.py:1186 +#: sickbeard/webserve.py:1185 msgid "ERROR: {last_error}" msgstr "ERROR: {last_error}" -#: sickbeard/webserve.py:1193 +#: sickbeard/webserve.py:1192 msgid "Test NMA notice sent successfully" msgstr "" -#: sickbeard/webserve.py:1195 +#: sickbeard/webserve.py:1194 msgid "Test NMA notice failed" msgstr "" -#: sickbeard/webserve.py:1202 +#: sickbeard/webserve.py:1201 msgid "Pushalot notification succeeded. Check your Pushalot clients to make sure it worked" msgstr "" -#: sickbeard/webserve.py:1204 +#: sickbeard/webserve.py:1203 msgid "Error sending Pushalot notification" msgstr "" -#: sickbeard/webserve.py:1211 +#: sickbeard/webserve.py:1210 msgid "Pushbullet notification succeeded. Check your device to make sure it worked" msgstr "" -#: sickbeard/webserve.py:1213 sickbeard/webserve.py:1223 sickbeard/webserve.py:1232 +#: sickbeard/webserve.py:1212 sickbeard/webserve.py:1222 sickbeard/webserve.py:1231 msgid "Error sending Pushbullet notification" msgstr "" #: gui/slick/views/displayShow.mako:436 gui/slick/views/inc_home_showList.mako:174 -#: gui/slick/views/manage.mako:49 sickbeard/webserve.py:1249 +#: gui/slick/views/manage.mako:49 sickbeard/webserve.py:1248 msgid "Status" msgstr "Estat" -#: sickbeard/webserve.py:1268 sickbeard/webserve.py:1297 +#: sickbeard/webserve.py:1267 sickbeard/webserve.py:1296 msgid "Restarting SickRage" msgstr "" -#: sickbeard/webserve.py:1300 +#: sickbeard/webserve.py:1299 msgid "Update Failed" msgstr "Actualització fallida" -#: sickbeard/webserve.py:1301 +#: sickbeard/webserve.py:1300 msgid "Update wasn't successful, not restarting. Check your log for more information." msgstr "" -#: sickbeard/webserve.py:1308 +#: sickbeard/webserve.py:1307 msgid "Checking out branch" msgstr "" -#: sickbeard/webserve.py:1311 +#: sickbeard/webserve.py:1310 msgid "Already on branch" msgstr "Ja en branca" -#: sickbeard/webserve.py:1339 +#: sickbeard/webserve.py:1338 msgid "Invalid show ID: {show}" msgstr "" -#: sickbeard/webserve.py:1342 sickbeard/webserve.py:1871 sickbeard/webserve.py:2002 -#: sickbeard/webserve.py:2040 +#: sickbeard/webserve.py:1341 sickbeard/webserve.py:1870 sickbeard/webserve.py:2001 +#: sickbeard/webserve.py:2039 msgid "Show not in show list" msgstr "" #: gui/slick/views/inc_rootDirs.mako:31 gui/slick/views/manage.mako:38 -#: gui/slick/views/manage_massEdit.mako:74 sickbeard/webserve.py:1358 -#: sickbeard/webserve.py:2027 +#: gui/slick/views/manage_massEdit.mako:74 sickbeard/webserve.py:1357 +#: sickbeard/webserve.py:2026 msgid "Edit" msgstr "Editar" -#: sickbeard/webserve.py:1368 +#: sickbeard/webserve.py:1367 msgid "This show is in the process of being downloaded - the info below is incomplete." msgstr "" -#: sickbeard/webserve.py:1371 +#: sickbeard/webserve.py:1370 msgid "The information on this page is in the process of being updated." msgstr "" -#: sickbeard/webserve.py:1374 +#: sickbeard/webserve.py:1373 msgid "The episodes below are currently being refreshed from disk" msgstr "" -#: sickbeard/webserve.py:1377 +#: sickbeard/webserve.py:1376 msgid "Currently downloading subtitles for this show" msgstr "" -#: sickbeard/webserve.py:1380 +#: sickbeard/webserve.py:1379 msgid "This show is queued to be refreshed." msgstr "" -#: sickbeard/webserve.py:1383 +#: sickbeard/webserve.py:1382 msgid "This show is queued and awaiting an update." msgstr "" -#: sickbeard/webserve.py:1386 +#: sickbeard/webserve.py:1385 msgid "This show is queued and awaiting subtitles download." msgstr "" -#: gui/slick/js/core.js:4081 sickbeard/webserve.py:1391 +#: gui/slick/js/core.js:4081 sickbeard/webserve.py:1390 msgid "Resume" msgstr "Continuar" #: gui/slick/js/core.js:4081 gui/slick/views/viewlogs.mako:12 -#: sickbeard/webserve.py:1393 +#: sickbeard/webserve.py:1392 msgid "Pause" msgstr "Pausar" #: gui/slick/views/editShow.mako:345 gui/slick/views/inc_blackwhitelist.mako:40 #: gui/slick/views/inc_blackwhitelist.mako:85 gui/slick/views/manage.mako:58 -#: gui/slick/views/manage_failedDownloads.mako:43 sickbeard/webserve.py:1395 +#: gui/slick/views/manage_failedDownloads.mako:43 sickbeard/webserve.py:1394 msgid "Remove" msgstr "Elimina" -#: sickbeard/webserve.py:1396 +#: sickbeard/webserve.py:1395 msgid "Re-scan files" msgstr "" -#: sickbeard/webserve.py:1397 +#: sickbeard/webserve.py:1396 msgid "Force Full Update" msgstr "" -#: sickbeard/webserve.py:1398 +#: sickbeard/webserve.py:1397 msgid "Update show in KODI" msgstr "" -#: sickbeard/webserve.py:1399 +#: sickbeard/webserve.py:1398 msgid "Update show in Emby" msgstr "" -#: sickbeard/webserve.py:1402 +#: sickbeard/webserve.py:1401 msgid "Hide specials" msgstr "" -#: sickbeard/webserve.py:1404 +#: sickbeard/webserve.py:1403 msgid "Show specials" msgstr "" -#: sickbeard/webserve.py:1406 sickbeard/webserve.py:2030 sickbeard/webserve.py:2031 +#: sickbeard/webserve.py:1405 sickbeard/webserve.py:2029 sickbeard/webserve.py:2030 msgid "Preview Rename" msgstr "" -#: sickbeard/webserve.py:1409 +#: sickbeard/webserve.py:1408 msgid "Download Subtitles" msgstr "" -#: sickbeard/webserve.py:1498 +#: sickbeard/webserve.py:1497 msgid "No scene exceptions" msgstr "" -#: sickbeard/webserve.py:1516 sickbeard/webserve.py:1764 sickbeard/webserve.py:1785 +#: sickbeard/webserve.py:1515 sickbeard/webserve.py:1763 sickbeard/webserve.py:1784 msgid "Invalid show ID" msgstr "" -#: sickbeard/webserve.py:1525 sickbeard/webserve.py:1769 sickbeard/webserve.py:1790 +#: sickbeard/webserve.py:1524 sickbeard/webserve.py:1768 sickbeard/webserve.py:1789 msgid "Unable to find the specified show" msgstr "" -#: sickbeard/webserve.py:1550 +#: sickbeard/webserve.py:1549 msgid "Unable to retreive Fansub Groups from AniDB." msgstr "" -#: sickbeard/webserve.py:1559 sickbeard/webserve.py:1561 +#: sickbeard/webserve.py:1558 sickbeard/webserve.py:1560 msgid "Edit Show" msgstr "" -#: sickbeard/webserve.py:1637 sickbeard/webserve.py:1671 +#: sickbeard/webserve.py:1636 sickbeard/webserve.py:1670 msgid "Unable to refresh this show: {error}" msgstr "" -#: sickbeard/webserve.py:1663 +#: sickbeard/webserve.py:1662 msgid "New location <tt>{location}</tt> does not exist" msgstr "" -#: sickbeard/webserve.py:1688 +#: sickbeard/webserve.py:1687 msgid "Unable to update show: {error}" msgstr "" -#: sickbeard/webserve.py:1695 +#: sickbeard/webserve.py:1694 msgid "Unable to force an update on scene exceptions of the show." msgstr "" -#: sickbeard/webserve.py:1702 +#: sickbeard/webserve.py:1701 msgid "Unable to force an update on scene numbering of the show." msgstr "" -#: sickbeard/webserve.py:1708 sickbeard/webserve.py:3540 +#: sickbeard/webserve.py:1707 sickbeard/webserve.py:3539 msgid "{num_errors:d} error{plural} while saving changes:" msgstr "" -#: sickbeard/webserve.py:1719 +#: sickbeard/webserve.py:1718 msgid "{show_name} has been {paused_resumed}" msgstr "" -#: sickbeard/webserve.py:1719 +#: sickbeard/webserve.py:1718 msgid "resumed" msgstr "" -#: sickbeard/webserve.py:1719 +#: sickbeard/webserve.py:1718 msgid "paused" msgstr "en pausa" -#: sickbeard/webserve.py:1731 +#: sickbeard/webserve.py:1730 msgid "{show_name} has been {deleted_trashed} {was_deleted}" msgstr "" -#: sickbeard/webserve.py:1733 +#: sickbeard/webserve.py:1732 msgid "deleted" msgstr "esborrat" -#: sickbeard/webserve.py:1733 +#: sickbeard/webserve.py:1732 msgid "trashed" msgstr "" -#: sickbeard/webserve.py:1734 +#: sickbeard/webserve.py:1733 msgid "(media untouched)" msgstr "" -#: sickbeard/webserve.py:1734 +#: sickbeard/webserve.py:1733 msgid "(with all related media)" msgstr "" -#: sickbeard/webserve.py:1755 +#: sickbeard/webserve.py:1754 msgid "Unable to refresh this show." msgstr "" -#: sickbeard/webserve.py:1775 +#: sickbeard/webserve.py:1774 msgid "Unable to update this show." msgstr "" -#: sickbeard/webserve.py:1814 +#: sickbeard/webserve.py:1813 msgid "Library update command sent to KODI host(s)): {kodi_hosts}" msgstr "" -#: sickbeard/webserve.py:1816 +#: sickbeard/webserve.py:1815 msgid "Unable to contact one or more KODI host(s)): {kodi_hosts}" msgstr "" -#: sickbeard/webserve.py:1825 +#: sickbeard/webserve.py:1824 msgid "Library update command sent to Plex Media Server host: {plex_server}" msgstr "" -#: sickbeard/webserve.py:1828 +#: sickbeard/webserve.py:1827 msgid "Unable to contact Plex Media Server host: {plex_server}" msgstr "" -#: sickbeard/webserve.py:1840 +#: sickbeard/webserve.py:1839 msgid "Library update command sent to Emby host: {emby_host}" msgstr "" -#: sickbeard/webserve.py:1842 +#: sickbeard/webserve.py:1841 msgid "Unable to contact Emby host: {emby_host}" msgstr "" -#: sickbeard/webserve.py:1852 sickbeard/webserve.py:2036 +#: sickbeard/webserve.py:1851 sickbeard/webserve.py:2035 msgid "You must specify a show and at least one episode" msgstr "" -#: sickbeard/webserve.py:1861 +#: sickbeard/webserve.py:1860 msgid "Invalid status" msgstr "" -#: sickbeard/webserve.py:1954 +#: sickbeard/webserve.py:1953 msgid "Backlog was automatically started for the following seasons of <b>{show_name}</b>" msgstr "" #: gui/slick/views/displayShow.mako:74 gui/slick/views/displayShow.mako:79 -#: gui/slick/views/displayShow.mako:404 sickbeard/webserve.py:1961 -#: sickbeard/webserve.py:1980 +#: gui/slick/views/displayShow.mako:404 sickbeard/webserve.py:1960 +#: sickbeard/webserve.py:1979 msgid "Season" msgstr "Temporada" -#: sickbeard/webserve.py:1968 +#: sickbeard/webserve.py:1967 msgid "Backlog started" msgstr "" -#: sickbeard/webserve.py:1973 +#: sickbeard/webserve.py:1972 msgid "Retrying Search was automatically started for the following season of <b>{show_name}</b>" msgstr "" -#: sickbeard/webserve.py:1987 +#: sickbeard/webserve.py:1986 msgid "Retry Search started" msgstr "" -#: sickbeard/webserve.py:1997 +#: sickbeard/webserve.py:1996 msgid "You must specify a show" msgstr "" -#: sickbeard/webserve.py:2007 sickbeard/webserve.py:2045 +#: sickbeard/webserve.py:2006 sickbeard/webserve.py:2044 msgid "Can't rename episodes when the show dir is missing." msgstr "" -#: sickbeard/webserve.py:2212 sickbeard/webserve.py:2233 +#: sickbeard/webserve.py:2211 sickbeard/webserve.py:2232 msgid "New subtitles downloaded: {new_subtitle_languages}" msgstr "" -#: sickbeard/webserve.py:2215 sickbeard/webserve.py:2236 +#: sickbeard/webserve.py:2214 sickbeard/webserve.py:2235 msgid "No subtitles downloaded" msgstr "" #: gui/slick/views/config_general.mako:80 gui/slick/views/layouts/main.mako:222 -#: sickbeard/webserve.py:2363 +#: sickbeard/webserve.py:2362 msgid "IRC" msgstr "IRC" -#: sickbeard/webserve.py:2376 +#: sickbeard/webserve.py:2375 msgid "Could not load news from the repo. [Click here for news.md])({news_url})" msgstr "" -#: sickbeard/webserve.py:2383 sickbeard/webserve.py:2401 +#: sickbeard/webserve.py:2382 sickbeard/webserve.py:2400 msgid "The was a problem connecting to github, please refresh and try again" msgstr "" -#: sickbeard/webserve.py:2398 +#: sickbeard/webserve.py:2397 msgid "Could not load changes from the repo. [Click here for CHANGES.md]({changes_url})" msgstr "" -#: gui/slick/views/layouts/main.mako:223 sickbeard/webserve.py:2403 +#: gui/slick/views/layouts/main.mako:223 sickbeard/webserve.py:2402 msgid "Changelog" msgstr "Registre de canvis" -#: gui/slick/views/layouts/main.mako:190 sickbeard/webserve.py:2413 -#: sickbeard/webserve.py:3855 sickbeard/webserve.py:4341 +#: gui/slick/views/layouts/main.mako:190 sickbeard/webserve.py:2412 +#: sickbeard/webserve.py:3826 sickbeard/webserve.py:4312 msgid "Post Processing" msgstr "" -#: gui/slick/views/layouts/main.mako:128 sickbeard/webserve.py:2445 +#: gui/slick/views/layouts/main.mako:128 sickbeard/webserve.py:2444 msgid "Add Shows" msgstr "" -#: sickbeard/webserve.py:2510 +#: sickbeard/webserve.py:2509 msgid "No folders selected." msgstr "" -#: sickbeard/webserve.py:2632 +#: sickbeard/webserve.py:2631 msgid "New Show" msgstr "" -#: sickbeard/webserve.py:2647 +#: sickbeard/webserve.py:2646 msgid "Trending Shows" msgstr "" -#: sickbeard/webserve.py:2649 sickbeard/webserve.py:2772 +#: sickbeard/webserve.py:2648 sickbeard/webserve.py:2771 msgid "Popular Shows" msgstr "" -#: sickbeard/webserve.py:2651 sickbeard/webserve.py:2665 +#: sickbeard/webserve.py:2650 sickbeard/webserve.py:2664 msgid "Most Anticipated Shows" msgstr "" -#: sickbeard/webserve.py:2653 +#: sickbeard/webserve.py:2652 msgid "Most Collected Shows" msgstr "" -#: sickbeard/webserve.py:2655 +#: sickbeard/webserve.py:2654 msgid "Most Watched Shows" msgstr "" -#: sickbeard/webserve.py:2657 +#: sickbeard/webserve.py:2656 msgid "Most Played Shows" msgstr "" -#: sickbeard/webserve.py:2659 +#: sickbeard/webserve.py:2658 msgid "Recommended Shows" msgstr "" -#: gui/slick/views/addShows_trendingShows.mako:60 sickbeard/webserve.py:2661 +#: gui/slick/views/addShows_trendingShows.mako:60 sickbeard/webserve.py:2660 msgid "New Shows" msgstr "" -#: gui/slick/views/addShows_trendingShows.mako:61 sickbeard/webserve.py:2663 +#: gui/slick/views/addShows_trendingShows.mako:61 sickbeard/webserve.py:2662 msgid "Season Premieres" msgstr "" -#: sickbeard/webserve.py:2792 sickbeard/webserve.py:2793 +#: sickbeard/webserve.py:2791 sickbeard/webserve.py:2792 msgid "Existing Show" msgstr "" -#: sickbeard/webserve.py:2871 +#: sickbeard/webserve.py:2870 msgid "No root directories setup, please go back and add one." msgstr "" -#: sickbeard/webserve.py:2883 sickbeard/webserve.py:3002 +#: sickbeard/webserve.py:2882 sickbeard/webserve.py:3001 msgid "Show added" msgstr "" -#: sickbeard/webserve.py:2883 +#: sickbeard/webserve.py:2882 msgid "Adding the specified show {show_name}" msgstr "" -#: sickbeard/webserve.py:2924 +#: sickbeard/webserve.py:2923 msgid "Missing params, no Indexer ID or folder: {show_to_add} and {root_dir}/{show_path}" msgstr "" -#: sickbeard/webserve.py:2933 +#: sickbeard/webserve.py:2932 msgid "Unknown error. Unable to add show due to problem with show selection." msgstr "" -#: sickbeard/webserve.py:2957 sickbeard/webserve.py:2967 +#: sickbeard/webserve.py:2956 sickbeard/webserve.py:2966 msgid "Unable to add show" msgstr "" -#: sickbeard/webserve.py:2957 +#: sickbeard/webserve.py:2956 msgid "Folder {show_dir} exists already" msgstr "" -#: sickbeard/webserve.py:2968 +#: sickbeard/webserve.py:2967 msgid "Unable to create the folder {show_dir}, can't add the show" msgstr "" -#: sickbeard/webserve.py:3002 +#: sickbeard/webserve.py:3001 msgid "Adding the specified show into {show_dir}" msgstr "" -#: sickbeard/webserve.py:3078 +#: sickbeard/webserve.py:3077 msgid "Shows Added" msgstr "" -#: sickbeard/webserve.py:3079 +#: sickbeard/webserve.py:3078 msgid "Automatically added {num_shows} from their existing metadata files" msgstr "" -#: gui/slick/views/layouts/main.mako:153 sickbeard/webserve.py:3096 +#: gui/slick/views/layouts/main.mako:153 sickbeard/webserve.py:3095 msgid "Mass Update" msgstr "" -#: sickbeard/webserve.py:3134 sickbeard/webserve.py:3161 sickbeard/webserve.py:3237 -#: sickbeard/webserve.py:3238 +#: sickbeard/webserve.py:3133 sickbeard/webserve.py:3160 sickbeard/webserve.py:3236 +#: sickbeard/webserve.py:3237 msgid "Episode Overview" msgstr "" -#: sickbeard/webserve.py:3270 +#: sickbeard/webserve.py:3269 msgid "Missing Subtitles" msgstr "" -#: gui/slick/views/layouts/main.mako:154 sickbeard/webserve.py:3356 -#: sickbeard/webserve.py:3357 +#: gui/slick/views/layouts/main.mako:154 sickbeard/webserve.py:3355 +#: sickbeard/webserve.py:3356 msgid "Backlog Overview" msgstr "" -#: sickbeard/webserve.py:3481 +#: sickbeard/webserve.py:3480 msgid "Mass Edit" msgstr "" -#: sickbeard/webserve.py:3586 +#: sickbeard/webserve.py:3585 msgid "Unable to update show: {excption_format}" msgstr "" -#: sickbeard/webserve.py:3594 +#: sickbeard/webserve.py:3593 msgid "Unable to refresh show {show_name}: {excption_format}" msgstr "" -#: sickbeard/webserve.py:3605 +#: sickbeard/webserve.py:3604 msgid "Errors encountered" msgstr "" -#: gui/slick/views/config_general.mako:261 sickbeard/webserve.py:3611 +#: gui/slick/views/config_general.mako:261 sickbeard/webserve.py:3610 msgid "Updates" msgstr "" -#: sickbeard/webserve.py:3616 +#: sickbeard/webserve.py:3615 msgid "Refreshes" msgstr "" -#: sickbeard/webserve.py:3621 +#: sickbeard/webserve.py:3620 msgid "Renames" msgstr "" #: gui/slick/views/displayShow.mako:260 gui/slick/views/displayShow.mako:435 #: gui/slick/views/editShow.mako:119 gui/slick/views/inc_addShowOptions.mako:20 -#: gui/slick/views/manage_massEdit.mako:262 sickbeard/webserve.py:3626 -#: sickbeard/webserve.py:5244 +#: gui/slick/views/manage_massEdit.mako:262 sickbeard/webserve.py:3625 +#: sickbeard/webserve.py:5215 msgid "Subtitles" msgstr "Subtítols" -#: sickbeard/webserve.py:3631 +#: sickbeard/webserve.py:3630 msgid "The following actions were queued" msgstr "" -#: sickbeard/webserve.py:3651 -msgid "For best results please set the Download Station alias as" -msgstr "" - -#: sickbeard/webserve.py:3652 -msgid "You can check this setting in the Synology DSM" -msgstr "" - -#: sickbeard/webserve.py:3652 sickbeard/webserve.py:3654 -msgid "Control Panel" -msgstr "" - -#: sickbeard/webserve.py:3652 -msgid "Application Portal" -msgstr "" - -#: sickbeard/webserve.py:3653 -msgid "Make sure you allow DSM to be embedded with iFrames too in" -msgstr "" - -#: sickbeard/webserve.py:3654 -msgid "DSM Settings" -msgstr "" - -#: sickbeard/webserve.py:3654 -msgid "Security" -msgstr "Seguretat" - -#: gui/slick/views/layouts/main.mako:167 sickbeard/webserve.py:3662 -msgid "Manage Torrents" -msgstr "" - -#: gui/slick/views/layouts/main.mako:170 sickbeard/webserve.py:3683 +#: gui/slick/views/layouts/main.mako:170 sickbeard/webserve.py:3654 msgid "Failed Downloads" msgstr "" -#: gui/slick/views/layouts/main.mako:155 sickbeard/webserve.py:3701 +#: gui/slick/views/layouts/main.mako:155 sickbeard/webserve.py:3672 msgid "Manage Searches" msgstr "" -#: sickbeard/webserve.py:3709 +#: sickbeard/webserve.py:3680 msgid "Backlog search started" msgstr "" -#: sickbeard/webserve.py:3719 +#: sickbeard/webserve.py:3690 msgid "Daily search started" msgstr "" -#: sickbeard/webserve.py:3728 +#: sickbeard/webserve.py:3699 msgid "Find propers search started" msgstr "" -#: sickbeard/webserve.py:3737 +#: sickbeard/webserve.py:3708 msgid "Subtitle search started" msgstr "" -#: sickbeard/webserve.py:3801 +#: sickbeard/webserve.py:3772 msgid "Remove Selected" msgstr "" -#: sickbeard/webserve.py:3802 +#: sickbeard/webserve.py:3773 msgid "Clear History" msgstr "Esborra l'historial" -#: sickbeard/webserve.py:3803 +#: sickbeard/webserve.py:3774 msgid "Trim History" msgstr "" -#: sickbeard/webserve.py:3823 +#: sickbeard/webserve.py:3794 msgid "Selected history entries removed" msgstr "" -#: sickbeard/webserve.py:3830 +#: sickbeard/webserve.py:3801 msgid "History cleared" msgstr "Històric esborrat" -#: sickbeard/webserve.py:3837 +#: sickbeard/webserve.py:3808 msgid "Removed history entries older than 30 days" msgstr "" -#: gui/slick/views/layouts/main.mako:185 sickbeard/webserve.py:3850 +#: gui/slick/views/layouts/main.mako:185 sickbeard/webserve.py:3821 msgid "General" msgstr "General" -#: sickbeard/webserve.py:3851 sickbeard/webserve.py:4143 +#: sickbeard/webserve.py:3822 sickbeard/webserve.py:4114 msgid "Backup/Restore" msgstr "Còpia de seguretat/restauració" -#: gui/slick/views/layouts/main.mako:187 sickbeard/webserve.py:3852 -#: sickbeard/webserve.py:4206 +#: gui/slick/views/layouts/main.mako:187 sickbeard/webserve.py:3823 +#: sickbeard/webserve.py:4177 msgid "Search Settings" msgstr "" -#: gui/slick/views/layouts/main.mako:188 sickbeard/webserve.py:3853 -#: sickbeard/webserve.py:4518 +#: gui/slick/views/layouts/main.mako:188 sickbeard/webserve.py:3824 +#: sickbeard/webserve.py:4489 msgid "Search Providers" msgstr "Proveïdors de cerca" -#: gui/slick/views/layouts/main.mako:189 sickbeard/webserve.py:3854 +#: gui/slick/views/layouts/main.mako:189 sickbeard/webserve.py:3825 msgid "Subtitles Settings" msgstr "" -#: gui/slick/views/layouts/main.mako:191 sickbeard/webserve.py:3856 -#: sickbeard/webserve.py:4964 +#: gui/slick/views/layouts/main.mako:191 sickbeard/webserve.py:3827 +#: sickbeard/webserve.py:4935 msgid "Notifications" msgstr "Notificacions" @@ -1240,142 +1237,142 @@ msgstr "Notificacions" #: gui/slick/views/home.mako:35 gui/slick/views/inc_addShowOptions.mako:79 #: gui/slick/views/inc_home_showList.mako:179 gui/slick/views/layouts/main.mako:192 #: gui/slick/views/manage.mako:44 gui/slick/views/manage_massEdit.mako:202 -#: sickbeard/webserve.py:3857 sickbeard/webserve.py:5309 +#: sickbeard/webserve.py:3828 sickbeard/webserve.py:5280 msgid "Anime" msgstr "Anime" -#: sickbeard/webserve.py:3895 sickbeard/webserve.py:3896 +#: sickbeard/webserve.py:3866 sickbeard/webserve.py:3867 msgid "SickRage Configuration" msgstr "Configuració SickRage" -#: sickbeard/webserve.py:3910 +#: sickbeard/webserve.py:3881 msgid "Config - Shares" msgstr "" -#: sickbeard/webserve.py:3910 +#: sickbeard/webserve.py:3881 msgid "Windows Shares Configuration" msgstr "" -#: sickbeard/webserve.py:3937 +#: sickbeard/webserve.py:3908 msgid "Saved Shares" msgstr "" -#: sickbeard/webserve.py:3937 +#: sickbeard/webserve.py:3908 msgid "Your Windows share settings have been saved" msgstr "" -#: sickbeard/webserve.py:3948 +#: sickbeard/webserve.py:3919 msgid "Config - General" msgstr "Config - General" -#: sickbeard/webserve.py:3948 +#: sickbeard/webserve.py:3919 msgid "General Configuration" msgstr "Configuració General" -#: sickbeard/webserve.py:3988 +#: sickbeard/webserve.py:3959 msgid "Saved Defaults" msgstr "" -#: sickbeard/webserve.py:3988 +#: sickbeard/webserve.py:3959 msgid "Your \"add show\" defaults have been set to your current selections." msgstr "" -#: sickbeard/webserve.py:4095 +#: sickbeard/webserve.py:4066 msgid "Unable to create directory {directory}, log directory not changed." msgstr "" -#: sickbeard/webserve.py:4103 +#: sickbeard/webserve.py:4074 msgid "Unable to create directory {directory}, https cert directory not changed." msgstr "" -#: sickbeard/webserve.py:4107 +#: sickbeard/webserve.py:4078 msgid "Unable to create directory {directory}, https key directory not changed." msgstr "" -#: sickbeard/webserve.py:4126 sickbeard/webserve.py:4324 sickbeard/webserve.py:4456 -#: sickbeard/webserve.py:5227 +#: sickbeard/webserve.py:4097 sickbeard/webserve.py:4295 sickbeard/webserve.py:4427 +#: sickbeard/webserve.py:5198 msgid "Error(s) Saving Configuration" msgstr "" -#: sickbeard/webserve.py:4129 sickbeard/webserve.py:4327 sickbeard/webserve.py:4458 -#: sickbeard/webserve.py:4950 sickbeard/webserve.py:5230 sickbeard/webserve.py:5294 -#: sickbeard/webserve.py:5323 +#: sickbeard/webserve.py:4100 sickbeard/webserve.py:4298 sickbeard/webserve.py:4429 +#: sickbeard/webserve.py:4921 sickbeard/webserve.py:5201 sickbeard/webserve.py:5265 +#: sickbeard/webserve.py:5294 msgid "Configuration Saved" msgstr "Configuració guardada" -#: sickbeard/webserve.py:4142 +#: sickbeard/webserve.py:4113 msgid "Config - Backup/Restore" msgstr "" -#: sickbeard/webserve.py:4205 +#: sickbeard/webserve.py:4176 msgid "Config - Episode Search" msgstr "" -#: sickbeard/webserve.py:4340 +#: sickbeard/webserve.py:4311 msgid "Config - Post Processing" msgstr "" -#: sickbeard/webserve.py:4380 +#: sickbeard/webserve.py:4351 msgid "Unpacking Not Supported, disabling unpack setting" msgstr "" -#: sickbeard/webserve.py:4431 +#: sickbeard/webserve.py:4402 msgid "You tried saving an invalid normal naming config, not saving your naming settings" msgstr "" -#: sickbeard/webserve.py:4439 +#: sickbeard/webserve.py:4410 msgid "You tried saving an invalid anime naming config, not saving your naming settings" msgstr "" -#: sickbeard/webserve.py:4517 +#: sickbeard/webserve.py:4488 msgid "Config - Providers" msgstr "" -#: sickbeard/webserve.py:4547 +#: sickbeard/webserve.py:4518 msgid "No Provider Name specified" msgstr "" -#: sickbeard/webserve.py:4549 +#: sickbeard/webserve.py:4520 msgid "No Provider Url specified" msgstr "" -#: sickbeard/webserve.py:4551 +#: sickbeard/webserve.py:4522 msgid "No Provider Api key specified" msgstr "" -#: sickbeard/webserve.py:4963 +#: sickbeard/webserve.py:4934 msgid "Config - Notifications" msgstr "" -#: sickbeard/webserve.py:5243 +#: sickbeard/webserve.py:5214 msgid "Config - Subtitles" msgstr "" -#: sickbeard/webserve.py:5308 +#: sickbeard/webserve.py:5279 msgid "Config - Anime" msgstr "" -#: sickbeard/webserve.py:5336 +#: sickbeard/webserve.py:5307 msgid "Clear Errors" msgstr "Eliminar Errors" -#: sickbeard/webserve.py:5342 +#: sickbeard/webserve.py:5313 msgid "Clear Warnings" msgstr "Eliminar advertències" -#: sickbeard/webserve.py:5348 +#: sickbeard/webserve.py:5319 msgid "Submit Errors" msgstr "Enviar Errors" -#: sickbeard/webserve.py:5363 +#: sickbeard/webserve.py:5334 msgid "Logs & Errors" msgstr "" -#: sickbeard/webserve.py:5388 +#: sickbeard/webserve.py:5359 msgid "Log File" msgstr "Fitxer de registre" -#: sickbeard/webserve.py:5388 +#: sickbeard/webserve.py:5359 msgid "Logs" msgstr "" @@ -1383,30 +1380,166 @@ msgstr "" msgid "This is a test notification from SickRage" msgstr "" -#: gui/slick/js/core.js:481 gui/slick/js/core.js:502 gui/slick/js/core.js:524 -#: gui/slick/js/core.js:548 gui/slick/js/core.js:573 gui/slick/js/core.js:596 -#: gui/slick/js/core.js:625 gui/slick/js/core.js:645 gui/slick/js/core.js:690 -#: gui/slick/js/core.js:769 gui/slick/js/core.js:829 gui/slick/js/core.js:849 -#: gui/slick/js/core.js:879 gui/slick/js/core.js:909 gui/slick/js/core.js:969 -#: gui/slick/js/core.js:1046 gui/slick/js/core.js:1066 gui/slick/js/core.js:1085 +#: gui/slick/js/browser.js:6 +msgid "Choose Directory" +msgstr "" + +#: gui/slick/js/core.js:443 +msgid "Select log file folder location" +msgstr "" + +#: gui/slick/js/core.js:445 +msgid "Select CSS file" +msgstr "" + +#: gui/slick/js/core.js:469 +msgid "Select backup folder to save to" +msgstr "" + +#: gui/slick/js/core.js:470 +msgid "Select backup files to restore" +msgstr "" + +#: gui/slick/js/core.js:479 gui/slick/js/core.js:500 gui/slick/js/core.js:522 +#: gui/slick/js/core.js:546 gui/slick/js/core.js:571 gui/slick/js/core.js:594 +#: gui/slick/js/core.js:623 gui/slick/js/core.js:643 gui/slick/js/core.js:688 +#: gui/slick/js/core.js:767 gui/slick/js/core.js:827 gui/slick/js/core.js:847 +#: gui/slick/js/core.js:877 gui/slick/js/core.js:907 gui/slick/js/core.js:967 +#: gui/slick/js/core.js:1044 gui/slick/js/core.js:1064 gui/slick/js/core.js:1083 msgid "Please fill out the necessary fields above." msgstr "" -#: gui/slick/js/core.js:1328 gui/slick/js/core.js:1378 gui/slick/js/core.js:1427 -#: gui/slick/js/core.js:1493 +#: gui/slick/js/core.js:680 +msgid "<b>Step 1:</b> Confirm Authorization" +msgstr "" + +#: gui/slick/js/core.js:977 +msgid "Check blacklist name; the value needs to be a trakt slug" +msgstr "" + +#: gui/slick/js/core.js:1022 +msgid "You must provide a recipient email address!" +msgstr "" + +#: gui/slick/js/core.js:1107 +msgid "You didn't supply a Pushbullet api key" +msgstr "" + +#: gui/slick/js/core.js:1133 gui/slick/js/core.js:1162 +msgid "Don't forget to save your new pushbullet settings." +msgstr "" + +#: gui/slick/js/core.js:1262 +msgid "Select TV Download Directory" +msgstr "" + +#: gui/slick/js/core.js:1263 +msgid "Select Unpack Directory" +msgstr "" + +#: gui/slick/js/core.js:1326 gui/slick/js/core.js:1376 gui/slick/js/core.js:1425 +#: gui/slick/js/core.js:1491 msgid "This pattern is invalid." msgstr "" -#: gui/slick/js/core.js:1336 gui/slick/js/core.js:1386 gui/slick/js/core.js:1435 -#: gui/slick/js/core.js:1501 +#: gui/slick/js/core.js:1334 gui/slick/js/core.js:1384 gui/slick/js/core.js:1433 +#: gui/slick/js/core.js:1499 msgid "This pattern would be invalid without the folders, using it will force \"Season Folders\" on for all shows." msgstr "" -#: gui/slick/js/core.js:1344 gui/slick/js/core.js:1394 gui/slick/js/core.js:1443 -#: gui/slick/js/core.js:1509 +#: gui/slick/js/core.js:1342 gui/slick/js/core.js:1392 gui/slick/js/core.js:1441 +#: gui/slick/js/core.js:1507 msgid "This pattern is valid." msgstr "" +#: gui/slick/js/core.js:1818 +msgid "Select .nzb black hole/watch location" +msgstr "" + +#: gui/slick/js/core.js:1819 +msgid "Select .torrent black hole/watch location" +msgstr "" + +#: gui/slick/js/core.js:1820 +msgid "Select .torrent download location" +msgstr "" + +#: gui/slick/js/core.js:1900 +msgid "Minimum seeding time is" +msgstr "" + +#: gui/slick/js/core.js:1902 +msgid "URL to your uTorrent client (e.g. http://localhost:8000)" +msgstr "" + +#: gui/slick/js/core.js:1905 +msgid "Stop seeding when inactive for" +msgstr "" + +#: gui/slick/js/core.js:1911 +msgid "URL to your Transmission client (e.g. http://localhost:9091)" +msgstr "" + +#: gui/slick/js/core.js:1921 +msgid "URL to your Deluge client (e.g. http://localhost:8112)" +msgstr "" + +#: gui/slick/js/core.js:1930 +msgid "IP or Hostname of your Deluge Daemon (e.g. scgi://localhost:58846)" +msgstr "" + +#: gui/slick/js/core.js:1937 +msgid "URL to your Synology DS client (e.g. http://localhost:5000)" +msgstr "" + +#: gui/slick/js/core.js:1941 +msgid "URL to your rTorrent client (e.g. scgi://localhost:5000 <br> or https://localhost/rutorrent/plugins/httprpc/action.php)" +msgstr "" + +#: gui/slick/js/core.js:1952 +msgid "URL to your qBittorrent client (e.g. http://localhost:8080)" +msgstr "" + +#: gui/slick/js/core.js:1962 +msgid "URL to your MLDonkey (e.g. http://localhost:4080)" +msgstr "" + +#: gui/slick/js/core.js:1974 +msgid "URL to your putio client (e.g. http://localhost:8080)" +msgstr "" + +#: gui/slick/js/core.js:1975 +msgid "<a herf=\"https://app.put.io/oauth/apps/new\" target=\"_blank\"> Create a new OAuth app for put.io</a>" +msgstr "" + +#: gui/slick/js/core.js:1977 +msgid "Put.io Parent Folder" +msgstr "" + +#: gui/slick/js/core.js:1978 +msgid "Put.io OAuth Token" +msgstr "" + +#: gui/slick/js/core.js:3383 gui/slick/views/displayShow.mako:410 +msgid "Show Episodes" +msgstr "" + +#: gui/slick/js/core.js:3388 gui/slick/views/displayShow.mako:408 +msgid "Hide Episodes" +msgstr "" + +#: gui/slick/js/core.js:3396 +msgid "Select Show Location" +msgstr "" + +#: gui/slick/js/core.js:3460 +msgid "Select Unprocessed Episode Folder" +msgstr "" + +#: gui/slick/js/core.js:3790 +msgid "DELETED" +msgstr "" + #: gui/slick/js/core.js:4082 msgid "Resume updating the log on this page." msgstr "" @@ -1415,6 +1548,26 @@ msgstr "" msgid "Pause updating the log on this page." msgstr "" +#: gui/slick/js/core.js:4323 +msgid "searching {searchingFor}..." +msgstr "" + +#: gui/slick/js/core.js:4334 +msgid "search timed out, try again or try another indexer" +msgstr "" + +#: gui/slick/js/core.js:4503 +msgid "loading folders..." +msgstr "" + +#: gui/slick/js/parsers.js:7 gui/slick/js/parsers.js:8 +#: gui/slick/js/plotTooltip.js:6 gui/slick/js/sceneExceptionsTooltip.js:6 +#: gui/slick/views/inc_home_showList.mako:209 +#: gui/slick/views/inc_home_showList.mako:215 +#: gui/slick/views/inc_home_showList.mako:231 +msgid "Loading..." +msgstr "" + #: gui/slick/views/404.mako:5 msgid "You have reached this page by accident, please check the url." msgstr "" @@ -5711,14 +5864,6 @@ msgstr "" msgid "Select Columns" msgstr "" -#: gui/slick/views/displayShow.mako:408 -msgid "Hide Episodes" -msgstr "" - -#: gui/slick/views/displayShow.mako:410 -msgid "Show Episodes" -msgstr "" - #: gui/slick/views/displayShow.mako:424 msgid "NFO" msgstr "" @@ -6232,12 +6377,6 @@ msgstr "" msgid "loading" msgstr "" -#: gui/slick/views/inc_home_showList.mako:209 -#: gui/slick/views/inc_home_showList.mako:215 -#: gui/slick/views/inc_home_showList.mako:231 -msgid "Loading..." -msgstr "" - #: gui/slick/views/inc_qualityChooser.mako:31 msgid "<p><b><u>Preferred</u></b> qualities will replace those in <b><u>allowed</u></b>, even if they are lower.</p>" msgstr "" @@ -6775,6 +6914,10 @@ msgstr "" msgid "Update Emby" msgstr "" +#: gui/slick/views/layouts/main.mako:167 +msgid "Manage Torrents" +msgstr "" + #: gui/slick/views/layouts/main.mako:173 msgid "Missed Subtitle Management" msgstr "" diff --git a/locale/cs_CZ/LC_MESSAGES/messages.json b/locale/cs_CZ/LC_MESSAGES/messages.json index fd7411db39b8f00f85eec1cc9bb1fa8a082528b1..15086a513ae84af899a4d07b86ef006eda7eb074 100644 --- a/locale/cs_CZ/LC_MESSAGES/messages.json +++ b/locale/cs_CZ/LC_MESSAGES/messages.json @@ -1 +1 @@ -{"messages":{"domain":"messages","locale_data":{"messages":{"100":[null,"100"],"250":[null,"250"],"500":[null,"300"],"":{"domain":"messages","plural_forms":"nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;","lang":"cs_CZ"},"Drama":[null,"Drama"],"Mystery":[null,"Mysteriózní"],"Science-Fiction":[null,"Science-Fiction"],"Crime":[null,"Krimi"],"Action":[null,"Akce"],"Comedy":[null,"Komedie"],"Thriller":[null,"Thriller"],"Animation":[null,"Animovaný"],"Family":[null,"Rodinný"],"Fantasy":[null,"Fantasy"],"Adventure":[null,"Dobrodružný"],"Horror":[null,"Horor"],"Film-Noir":[null,"Film-Noir"],"Sci-Fi":[null,"Sci-Fi"],"Romance":[null,"Romantický"],"Sport":[null,"Sport"],"War":[null,"Válka"],"Biography":[null,"Životopis"],"History":[null,"Historie"],"Music":[null,"Hudba"],"Western":[null,"Western"],"News":[null,"Novinky"],"Sitcom":[null,"Sitcom"],"Reality-TV":[null,"Reality-TV"],"Documentary":[null,"Dokumentární"],"Game-Show":[null,"Game-Show"],"Musical":[null,"Hudební"],"Talk-Show":[null,"Talk-Show"],"Started Download":[null,"Spuštěno stahování"],"Download Finished":[null,"Stahování dokončeno"],"Subtitle Download Finished":[null,"Titulky staženy"],"SickRage Updated":[null,"SickRage aktualizován"],"SickRage Updated To Commit#: ":[null,"SickRage aktualizován na verzi #: "],"SickRage new login":[null,"SickRage nové přihlášení"],"New login from IP: {0}. http://geomaplookup.net/?ip={0}":[null,"Nové přihlášení z IP adresy: {0}. http://geomaplookup.NET/?IP={0}"],"Repeat":[null,"Opakovat"],"Repeat (Separated)":[null,"Opakování (oddělené)"],"Extend":[null,"Rozšířit"],"Extend (Limited)":[null,"Rozšíření (omezené)"],"Extend (Limited, E-prefixed)":[null,"Rozšíření (omezené, s předponou E)"],"Downloaded":[null,"Staženo"],"Snatched":[null,"Nalezeno"],"Snatched (Proper)":[null,"Nalezeno (Přijatelná)"],"Failed":[null,"Selhalo"],"Snatched (Best)":[null,"Nalezeno (Nejlepší)"],"Archived":[null,"Archivováno"],"Unknown":[null,"Neznámý"],"Unaired":[null,"Nevysíláno"],"Skipped":[null,"Přeskočeno"],"Wanted":[null,"Požadováno"],"Ignored":[null,"Ignorováno"],"Subtitled":[null,"S titulky"],"<No Filter>":[null,"<Bez filtru>"],"Daily Searcher":[null,"Každodenní vyhledávání"],"Backlog":[null,"Nevyřízené"],"Show Updater":[null,"Aktualizace seriálu"],"Check Version":[null,"Zkontrolovat verzi"],"Show Queue":[null,"Zobrazit frontu"],"Search Queue (All)":[null,"Hledání fronty (vše)"],"Search Queue (Daily Searcher)":[null,"Vyhledávat frontu (denní vyhledávání)"],"Search Queue (Backlog)":[null,"Vyhledávat frontu (Resty)"],"Search Queue (Manual)":[null,"Vyhledávat frontu (Manuálně)"],"Search Queue (Retry/Failed)":[null,"Sickbeard/logger. py484"],"Search Queue (RSS)":[null,"Vyhledávat frontu (RSS)"],"Find Propers":[null,"Najít Propers"],"Postprocessor":[null,"Postprocesor"],"Find Subtitles":[null,"Najít titulky"],"Trakt Checker":[null,"Kontrola Traktu"],"Event":[null,"Událost"],"Error":[null,"Chyba"],"Tornado":[null,"Tornado"],"Thread":[null,"Vlákno"],"Main":[null,"Hlavní"],"Loading":[null,"Ukáž frontu"],"New update found for SickRage, starting auto-updater":[null,"Nová aktualizace pro SickRage, spouštím auto-updater"],"Update was successful":[null,"Aktualizace byla úspěšná"],"Update failed!":[null,"Aktualizace se nezdařila!"],"Backup":[null,"Zálohovat"],"Config backup in progress...":[null,"Probíhá záloha konfigurace..."],"Config backup successful, updating...":[null,"Záloha konfigurace úspěšná, aktualizuji..."],"Config backup failed, aborting update":[null,"Záloha konfigurace se nezdařila, ruším aktualizaci"],"No update needed":[null,"Aktualizace není potřeba"],"Mako Error":[null,"Mako chyba"],"Oops":[null,"Chybička se vloudila"],"Wrong API key used":[null,"Použit chybný API klíč"],"Login":[null,"Přihlášení"],"API Key not generated":[null,"Nevygenerován API klíč"],"API Builder":[null,"API Builder"],"Schedule":[null,"Program"],"Test 1":[null,"Test 1"],"This is test number 1":[null,"Toto je test číslo 1"],"Test 2":[null,"Test 2"],"This is test number 2":[null,"To je test číslo 2"],"You're using the {branch} branch. Please use 'master' unless specifically asked":[null,""],"Invalid show parameters":[null,"Neplatné parametry seriálu"],"Invalid parameters":[null,""],"Episode couldn't be retrieved":[null,"Epizodu se nepodařilo nalézt"],"Home":[null,"Hlavní strana"],"Show List":[null,"Seznam seriálů"],"Error: Unsupported Request. Send jsonp request with 'callback' variable in the query string.":[null,"Chyba: Nepodporovaný požadavek. Odešlete žádost jsonp s proměnnou 'callback' v řetězci dotazu."],"Success. Connected and authenticated":[null,"Povedlo se. Připojeno a přihlášeno"],"Authentication failed. SABnzbd expects":[null,"Autentizace selhala. SABnzbd očekává"],"as authentication method":[null,"jako metodu ověřování"],"Unable to connect to host":[null,"Nelze se připojit k hostiteli"],"SMS sent successfully":[null,"SMS odeslána úspěšně"],"Problem sending SMS: {message}":[null,"Problém při odesílání SMS: {message}"],"Telegram notification succeeded. Check your Telegram clients to make sure it worked":[null,"Oznámení Telegram bylo úspěšně dokončeno. Zkontrolujte své klienty Telegram, a ujistěte se, že to fungovalo"],"Error sending Telegram notification: {message}":[null,"Chyba při odesílání oznámení Telegram: {message}"],"join notification succeeded. Check your join clients to make sure it worked":[null,""],"Error sending join notification: {message}":[null,"Chyba při odesílání notifikace join: {message}"]," with password":[null," s heslem"],"Registered and Tested growl successfully {growl_host}":[null,"Registrace a testování Growl se zdařila {growl_host}"],"Registration and Testing of growl failed {growl_host}":[null,"Registrace a testování Growl se nezdařilo {growl_host}"],"Test prowl notice sent successfully":[null,"Zkouška Prowl upozornění úspěšně odeslána"],"Test prowl notice failed":[null,"Zkouška Prowl upozornění se nezdařila"],"Boxcar2 notification succeeded. Check your Boxcar2 clients to make sure it worked":[null,"Boxcar2 oznámení bylo úspěšné. Zkontrolujte vaše klienty Boxcar2 a ujistěte se, že to fungovalo"],"Error sending Boxcar2 notification":[null,"Chyba při odesíláni Boxcar2 upozornění"],"Pushover notification succeeded. Check your Pushover clients to make sure it worked":[null,"Pushover oznámení bylo úspěšné. Zkontrolujte vaše klienty Pushover a ujistěte se, že to fungovalo"],"Error sending Pushover notification":[null,"Chyba při odesílání Pushover oznámení"],"Key verification successful":[null,"Ověření klíče úspěšné"],"Unable to verify key":[null,"Nelze ověřit klíč"],"Tweet successful, check your twitter to make sure it worked":[null,"Tweet úspěšný. Zkontrolujte vaše Twitter klienty a ujistěte se, že to fungovalo"],"Error sending tweet":[null,"Chyba při odesílání Tweetu"],"Please enter a valid account sid":[null,"Prosím zadejte platný sid účtu"],"Please enter a valid auth token":[null,"Prosím zadejte platný autorizační token"],"Please enter a valid phone sid":[null,"Prosím zadejte platné telefonní sid"],"Please format the phone number as \"+1-###-###-####\"":[null,""],"Authorization successful and number ownership verified":[null,""],"Error sending sms":[null,"Chyba při odesílání sms"],"Slack message successful":[null,"Slack zpráva odeslána"],"Slack message failed":[null,"Slack zpráva selhala"],"Discord message successful":[null,""],"Discord message failed":[null,""],"Test KODI notice sent successfully to {kodi_host}":[null,"Zkouška KODI oznámení úspěšně odeslána na {kodi_host}"],"Test KODI notice failed to {kodi_host}":[null,"Zkouška KODI oznámení se nezdařila {kodi_host}"],"Successful test notice sent to Plex Home Theater ... {plex_clients}":[null,"Zkouška oznámení úspěšně odeslána na Plex Home Theater... {plex_clients}"],"Test failed for Plex Home Theater ... {plex_clients}":[null,"Zkouška oznámení pro Plex Home Theater se nezdařila... {plex_clients}"],"Tested Plex Home Theater(s)":[null,"Testované Plex Home Theater(s)"],"Successful test of Plex Media Server(s) ... {plex_servers}":[null,"Test Plex Media Serveru(ů) úspěšný... {plex_servers}"],"Test failed, No Plex Media Server host specified":[null,"Test se nezdařil, nespecifikován hostitel Plex Media Serveru"],"Test failed for Plex Media Server(s) ... {plex_servers}":[null,"Test Plex Media Serveru se nezdařil... {plex_servers}"],"Tested Plex Media Server host(s)":[null,"Hostitel Plex Media Serveru otestován"],"Tried sending desktop notification via libnotify":[null,"Pokus o zaslání oznámení prostřednictvím libnotify"],"Test notice sent successfully to {emby_host}":[null,"Test oznámení úspěšně odeslán na {emby_host}"],"Test notice failed to {emby_host}":[null,"Test oznámení na {emby_host} se nezdařil"],"Successfully started the scan update":[null,"Prohledávání úspěšně zahájeno"],"Test failed to start the scan update":[null,"Testu se nepodařilo spustit aktualizaci skenování"],"Test notice sent successfully to {nmj2_host}":[null,"Test oznámení úspěšně odeslán na {nmj2_host}"],"Test notice failed to {nmj2_host}":[null,"Test oznámení na {nmj2_host} se nezdařil"],"Trakt Authorized":[null,"Trakt autorizován"],"Trakt Not Authorized!":[null,"Trakt neautorizován!"],"Test email sent successfully! Check inbox.":[null,"Zkušební e-mail úspěšně odeslán! Zkontrolujte si svojí schránku."],"ERROR: {last_error}":[null,"CHYBA: {last_error}"],"Test NMA notice sent successfully":[null,"Zkouška NMA upozornění úspěšně odeslána"],"Test NMA notice failed":[null,"Zkouška NMA upozornění se nezdařila"],"Pushalot notification succeeded. Check your Pushalot clients to make sure it worked":[null,"Pushalot oznámení bylo úspěšné. Zkontrolujte vaše klienty Pushalot a ujistěte se, že to fungovalo"],"Error sending Pushalot notification":[null,"Chyba při odesílání Pushalot oznámení"],"Pushbullet notification succeeded. Check your device to make sure it worked":[null,"Pushbullet oznámení bylo úspěšné. Zkontrolujte vaše klienty Pushbullet a ujistěte se, že to fungovalo"],"Error sending Pushbullet notification":[null,"Chyba při odesílání Pushbullet oznámení"],"Status":[null,"Status"],"Restarting SickRage":[null,"Restartuji SickRage"],"Update Failed":[null,"Aktualizace selhala"],"Update wasn't successful, not restarting. Check your log for more information.":[null,"Aktualizace byla neúspěšná, restart nebude proveden. Více informací v logu."],"Checking out branch":[null,"Kontroluji větev"],"Already on branch":[null,"K této větvi jste už přihlášen"],"Invalid show ID: {show}":[null,"Neplatné ID seriálu: {show}"],"Show not in show list":[null,"Seriál není v seznamu pořadů"],"Edit":[null,"Upravit"],"This show is in the process of being downloaded - the info below is incomplete.":[null,"Tento seriál je v průběhu nebo je právě stahován - informace níže jsou neúplné."],"The information on this page is in the process of being updated.":[null,"Informace na této stránce se právě aktualizují."],"The episodes below are currently being refreshed from disk":[null,"Epizody níže se právě aktualizují z disku"],"Currently downloading subtitles for this show":[null,"Stahuji titulky k tomuto seriálu"],"This show is queued to be refreshed.":[null,"Tento seriál je ve frontě k aktualizaci."],"This show is queued and awaiting an update.":[null,"Tento seriál je ve frontě a čeká na aktualizaci."],"This show is queued and awaiting subtitles download.":[null,"Tento seriál je ve frontě a čeká na stažení titulků."],"Resume":[null,"Pokračovat"],"Pause":[null,"Pozastavit"],"Remove":[null,"Odstranit"],"Re-scan files":[null,"Znovu prohledat soubory"],"Force Full Update":[null,"Vynutit úplnou aktualizaci"],"Update show in KODI":[null,"Aktualizace seriálu v KODI"],"Update show in Emby":[null,"Aktualizace seriálu v Emby"],"Hide specials":[null,"Skrýt speciální"],"Show specials":[null,"Zobrazit speciální"],"Preview Rename":[null,"Náhled přejmenování"],"Download Subtitles":[null,"Stáhnout titulky"],"No scene exceptions":[null,"Žádné výjimky pořadů"],"Invalid show ID":[null,"Neplatné ID seriálu"],"Unable to find the specified show":[null,"Nepodařilo se nalézt zadaný seriál"],"Unable to retreive Fansub Groups from AniDB.":[null,"Nelze načíst Fansub skupiny z AniDB."],"Edit Show":[null,"Upravit seriál"],"Unable to refresh this show: {error}":[null,"Nepodařilo se aktualizovat tento pořad: {error}"],"New location <tt>{location}</tt> does not exist":[null,"Nové umístění <tt>{location}</tt> neexistuje"],"Unable to update show: {error}":[null,"Nepodařilo se aktualizovat seriál: {error}"],"Unable to force an update on scene exceptions of the show.":[null,"Nelze vynutit aktualizaci výjimek epizod seriálu."],"Unable to force an update on scene numbering of the show.":[null,"Nelze vynutit aktualizaci číslování dílů seriálu."],"{num_errors:d} error{plural} while saving changes:":[null,""],"{show_name} has been {paused_resumed}":[null,"{show_name} byl {paused_resumed}"],"resumed":[null,"obnoven"],"paused":[null,"pozastaveno"],"{show_name} has been {deleted_trashed} {was_deleted}":[null,"{show_name} byl {deleted_trashed} {was_deleted}"],"deleted":[null,"smazáno"],"trashed":[null,"přeunut do koše"],"(media untouched)":[null,"(media untouched)"],"(with all related media)":[null,"(with all related media)"],"Unable to refresh this show.":[null,"Nelze obnovit tento seriál."],"Unable to update this show.":[null,"Nelze aktualizovat tento seriál."],"Library update command sent to KODI host(s)): {kodi_hosts}":[null,"Příkaz k aktualizaci knihovny KODI byl odeslán: {kodi_hosts}"],"Unable to contact one or more KODI host(s)): {kodi_hosts}":[null,"KODI se nepodařilo kontaktovat: {kodi_hosts}"],"Library update command sent to Plex Media Server host: {plex_server}":[null,"Příkaz aktualizace knihovny odeslán do Plex Media Server host: {plex_server}"],"Unable to contact Plex Media Server host: {plex_server}":[null,"Nelze navázat spojení s Plex Media Server host: {plex_server}"],"Library update command sent to Emby host: {emby_host}":[null,"Příkaz aktualizace knihovny odeslán do Emby host: {emby_host}"],"Unable to contact Emby host: {emby_host}":[null,"Nelze navázat spojení s Emby host: {emby_host}"],"You must specify a show and at least one episode":[null,"Specifikujte seriál a alespoň jednu epizodu"],"Invalid status":[null,"Neplatný stav"],"Backlog was automatically started for the following seasons of <b>{show_name}</b>":[null,"Backlog byl automaticky spuštěn pro následující sezóny seriálu <b>{show_name}</b>"],"Season":[null,"Série"],"Backlog started":[null,"Backlog spuštěn"],"Retrying Search was automatically started for the following season of <b>{show_name}</b>":[null,"Opakovené hledání bylo automaticky spuštěno pro následující sezóny seriálu <b>{show_name}</b>"],"Retry Search started":[null,"Opakovené hledání spuštěno"],"You must specify a show":[null,"Musíte zadat seriál"],"Can't rename episodes when the show dir is missing.":[null,"Nelze přejmenovat epizody když chybí složka se seriálem."],"New subtitles downloaded: {new_subtitle_languages}":[null,"Nové titulky staženy: {new_subtitle_languages}"],"No subtitles downloaded":[null,"Žádné titulky staženy"],"IRC":[null,"IRC"],"Could not load news from the repo. [Click here for news.md])({news_url})":[null,"Nelze načíst novinky z repozitáře. [Click here for news.md])({news_url})"],"The was a problem connecting to github, please refresh and try again":[null,"Došlo k problému s připojením k GitHub, aktualizujte stránku a zkuste znovu"],"Could not load changes from the repo. [Click here for CHANGES.md]({changes_url})":[null,""],"Changelog":[null,"Seznam změn"],"Post Processing":[null,"Finální zpracování"],"Add Shows":[null,"Přidat seriály"],"No folders selected.":[null,"Nejsou vybrány žádné složky"],"New Show":[null,"Nový seriál"],"Trending Shows":[null,"Populární seriály"],"Popular Shows":[null,"Populární seriály"],"Most Anticipated Shows":[null,"Nejočekávanější seriály"],"Most Collected Shows":[null,""],"Most Watched Shows":[null,""],"Most Played Shows":[null,""],"Recommended Shows":[null,""],"New Shows":[null,"Nové seriály"],"Season Premieres":[null,"Premiéry nových sérií"],"Existing Show":[null,"Existující seriál"],"No root directories setup, please go back and add one.":[null,""],"Show added":[null,"Seriál přidán"],"Adding the specified show {show_name}":[null,""],"Missing params, no Indexer ID or folder: {show_to_add} and {root_dir}/{show_path}":[null,""],"Unknown error. Unable to add show due to problem with show selection.":[null,""],"Unable to add show":[null,"Nelze přidat seriál"],"Folder {show_dir} exists already":[null,"Složka {show_dir} již existuje"],"Unable to create the folder {show_dir}, can't add the show":[null,""],"Adding the specified show into {show_dir}":[null,""],"Shows Added":[null,"Seriály přidány"],"Automatically added {num_shows} from their existing metadata files":[null,""],"Mass Update":[null,"Hromadná aktualizace"],"Episode Overview":[null,"Přehled epizod"],"Missing Subtitles":[null,"Chybějící titulky"],"Backlog Overview":[null,"Přehled backlog"],"Mass Edit":[null,"Hromadně upravit"],"Unable to update show: {excption_format}":[null,"Nepodařilo se aktualizovat seriál: {excption_format}"],"Unable to refresh show {show_name}: {excption_format}":[null,"Nelze aktualizovat seriál {show_name}: {excption_format}"],"Errors encountered":[null,"Byly zjištěny chyby"],"Updates":[null,"Aktualizace"],"Refreshes":[null,"Obnovuje se"],"Renames":[null,"Přejmenovává se"],"Subtitles":[null,"Titulky"],"The following actions were queued":[null,"Tyto akce byly ve frontě"],"For best results please set the Download Station alias as":[null,""],"You can check this setting in the Synology DSM":[null,""],"Control Panel":[null,"Ovládací panel"],"Application Portal":[null,"Aplikační portál"],"Make sure you allow DSM to be embedded with iFrames too in":[null,""],"DSM Settings":[null,"DSM nastavení"],"Security":[null,"Zabezpečení"],"Manage Torrents":[null,"Správa torrentů"],"Failed Downloads":[null,"Nepovedená stahování"],"Manage Searches":[null,"Spravovat vyhledávače"],"Backlog search started":[null,"Backlog vyhledávání začalo"],"Daily search started":[null,"Každodenní vyhledávání začalo"],"Find propers search started":[null,"Vyhledávání propers začalo"],"Subtitle search started":[null,"Vyhledávání titulů začalo"],"Remove Selected":[null,""],"Clear History":[null,"Odstranit historii"],"Trim History":[null,"Zredukovat historii"],"Selected history entries removed":[null,""],"History cleared":[null,"Historie odstraněna"],"Removed history entries older than 30 days":[null,"Odstranit historii starší než 30 dní"],"General":[null,"Základní"],"Backup/Restore":[null,"Záloha / Obnova"],"Search Settings":[null,"Nastavení vyhledávání"],"Search Providers":[null,"Nastavení poskytovatelů"],"Subtitles Settings":[null,"Nastavení titulků"],"Notifications":[null,"Notifikace"],"Anime":[null,"Anime"],"SickRage Configuration":[null,"SickRage konfigurace"],"Config - Shares":[null,""],"Windows Shares Configuration":[null,""],"Saved Shares":[null,""],"Your Windows share settings have been saved":[null,""],"Config - General":[null,"Nastavení - Obecné"],"General Configuration":[null,"Základní nastavení"],"Saved Defaults":[null,"Uložit výchozí"],"Your \"add show\" defaults have been set to your current selections.":[null,""],"Unable to create directory {directory}, log directory not changed.":[null,"Nelze vytvořit adresář {directory}, adresář logu nezměněn."],"Unable to create directory {directory}, https cert directory not changed.":[null,"Nelze vytvořit adresář {directory}, adresář https certifikátů nezměněn."],"Unable to create directory {directory}, https key directory not changed.":[null,"Nelze vytvořit adresář {directory}, adresář https klíčů nezměněn."],"Error(s) Saving Configuration":[null,"Nastala chyba během ukládání konfigurace"],"Configuration Saved":[null,"Konfigurace uložena"],"Config - Backup/Restore":[null,"Nastavení - Záloha / Obnova"],"Config - Episode Search":[null,"Nastavení - Vyhledávání epizod"],"Config - Post Processing":[null,"Nastavení - Finální zpracování"],"Unpacking Not Supported, disabling unpack setting":[null,"Rozbalování není podporováno, robzalování zůstalo vypnuto"],"You tried saving an invalid normal naming config, not saving your naming settings":[null,""],"You tried saving an invalid anime naming config, not saving your naming settings":[null,""],"Config - Providers":[null,"Nastavení - Poskytovatelé"],"No Provider Name specified":[null,"Není zadaný žádný název poskytovatele"],"No Provider Url specified":[null,"Není zadaná Url poskytovatele"],"No Provider Api key specified":[null,"Není zadán Api klíč poskytovatele"],"Config - Notifications":[null,"Nastavení - Notifikace"],"Config - Subtitles":[null,"Nastavení - Titulky"],"Config - Anime":[null,"Nastavení - Anime"],"Clear Errors":[null,"Vymazat chyby"],"Clear Warnings":[null,"Vymazat varování"],"Submit Errors":[null,"Odeslat chyby"],"Logs & Errors":[null,"Logy & chyb"],"Log File":[null,"Soubor logu"],"Logs":[null,"Logy"],"This is a test notification from SickRage":[null,""],"Please fill out the necessary fields above.":[null,""],"This pattern is invalid.":[null,""],"This pattern would be invalid without the folders, using it will force \"Season Folders\" on for all shows.":[null,""],"This pattern is valid.":[null,""],"Resume updating the log on this page.":[null,""],"Pause updating the log on this page.":[null,""],"You have reached this page by accident, please check the url.":[null,"Sem jste se dostali omylem, zkontrolujte si url."],"A mako error has occured.<br>\n If this happened during an update a simple page refresh may be the solution.<br>\n Mako errors that happen during updates may be a one time error if there were significant ui changes.":[null,"Došlo k chybě mako. <br>\n Pokud se toto stalo během aktualizace, pravděpodobně bude stačit stránku obnovit. <br>\n Mako chyby, které se nastanou během aktualizace můžou jednorázové, když se změní ui."],"Show/Hide Error":[null,"Zobrazit/skrýt chyby"],"Add New Show":[null,"Přidat nový seriál"],"For shows that you haven't downloaded yet, this option finds a show on theTVDB.com, creates a directory for it's episodes, and adds it to SickRage.":[null,"Vyberte pokud seriál ještě nemáte stažený, tato možnost vyhledá seriál na theTVDB.com, vytvoří adresáře a přidá jej do SickRage."],"Add From Trakt Lists":[null,"Přidat ze seznamu Trakt"],"For shows that you haven't downloaded yet, this option lets you choose from a show from one of the Trakt lists to add to SickRage.":[null,"Vyberte pokud seriál ještě nemáte stažený. Tato možnost Vám nabídne seriál z Trakt listu a přidáho do Sickrage."],"Add From IMDB's Popular Shows":[null,"Přidat oblíbené seriály z IMDB"],"View IMDB's list of the most popular shows. This feature uses IMDB's MOVIEMeter algorithm to identify popular TV Series.":[null,"Zobrazí seznam nejpopulárnějších seriálu na IMDB. Tato funkce používá IMDB MOVIEMEter algoritmus pro výběr populárních pořadů"],"Add Existing Shows":[null,"Přidat existující seriál"],"Use this option to add shows that already have a folder created on your hard drive. SickRage will scan your existing metadata/episodes and add the show accordingly.":[null,"Použijte tuto možnost pro přidání seriálu, který už máte na vašem úložišti. SickRage prohledá složku a podle toho seriál zařadí."],"Add Existing Show":[null,"Přidat existující seriál"],"Manage Directories":[null,"Upravit adresáře"],"Customize Options":[null,"Upravit předvolby"],"SickRage can add existing shows, using the current options, by using locally stored NFO/XML metadata to eliminate user interaction. If you would rather have SickRage prompt you to customize each show, then use the checkbox below.":[null,"SickRage může přidat existující seriál, na základě uložených NFO/XML, metadat bez vašeho zásahu. Pokud by jste raději si upravili každý přidávaný seriál, zaškrtněte dole."],"Prompt me to set settings for each show":[null,"Zobraz nastavení pro každý seriál zvlášť"],"Displaying folders within these directories which aren't already added to SickRage":[null,""],"Submit":[null,"Potvrdit"],"Find a show on theTVDB":[null,"Najdi seriál na thTVDB"],"Show retrieved from existing metadata":[null,""],"All Indexers":[null,"Všechny indexové weby"],"Search":[null,"Vyhledat"],"This will only affect the language of the retrieved metadata file contents and episode filenames.":[null,""],"This <b>DOES NOT</b> allow SickRage to download non-english TV episodes!":[null,"Toto <b>NEUMOŽŇUJE</b> stahování neanglických epizod!"],"Pick the parent folder":[null,"Vybrat nadřazenou složku"],"Pre-chosen Destination Folder":[null,"Předem zvolená cílová složka"],"Customize options":[null,"Upravit předvolby"],"Add Show":[null,"Přidat seriál"],"Skip Show":[null,"Přeskočit seriál"],"Sort By":[null,"Seřadit podle"],"Name":[null,"Jméno"],"Original":[null,"Původní"],"Votes":[null,"Hlasů"],"Rating":[null,"Hodnocení"],"Rating > Votes":[null,"Hodnocení > Hlasy"],"Sort Order":[null,"Seřadit"],"Asc":[null,"Vzestupně"],"Desc":[null,"Sestupně"],"Fetching of IMDB Data failed. Are you online?":[null,"Načítání dat z IMDB selhalo. Jste připojeni?"],"Exception":[null,"Výjimka"],"Select Trakt List":[null,"Vyberte Trakt List"],"Most Anticipated":[null,"Nejočekávanější"],"Trending":[null,"Populární"],"Popular":[null,"Populární"],"Most Watched":[null,"Nejvíce sledované"],"Most Played":[null,"Nejvíce přehrávané"],"Most Collected":[null,"Nejčastěji shromažďovány"],"Recommended":[null,"Doporučené"],"Toggle navigation":[null,"Přepnout navigaci"],"Profile":[null,"Profil"],"JSONP":[null,"JSONP"],"Back to SickRage":[null,"Zpět na SickRage"],"Parameters":[null,"Parametry"],"Required":[null,"Povinné"],"Description":[null,"Popis"],"Type":[null,"Typ"],"Default value":[null,"Výchozí hodnota"],"Allowed values":[null,"Povolené hodnoty"],"Playground":[null,"Hřiště"],"Clear":[null,"Vymazat"],"Yes":[null,"Ok"],"No":[null,"Ne"],"season":[null,"série"],"episode":[null,"epizoda"],"Python Version":[null,"Verze Pythonu"],"SSL Version":[null,"Verze SSL"],"OS":[null,"OS"],"Locale":[null,"Lokalizace"],"User":[null,"Uživatel"],"Program Folder":[null,"Adresář aplikace"],"Config File":[null,"Soubor konfigu"],"Database File":[null,"Soubor databáze"],"Cache Folder":[null,"Složka mezipaměti"],"Log Folder":[null,"Složka logu"],"Arguments":[null,"Argumenty"],"Web Root":[null,"Kořen web stránky"],"Website":[null,"Webová stránka"],"Wiki":[null,"Wiki"],"Source":[null,"Zdrojový kód"],"IRC Chat":[null,"IRC Chat"],"AnimeDB Settings":[null,"Nastavení AnimeDB"],"Look & Feel":[null,"Vzhled & chování"],"AniDB is non-profit database of anime information that is freely open to the public":[null,"AniDB je nezisková databáze informací o anime, která je volně přístupná veřejnosti"],"Enable":[null,"Povolit"],"should SickRage use data from AniDB?":[null,""],"AniDB Username":[null,"AniDB Uživatelské jméno"],"username of your AniDB account":[null,""],"AniDB Password":[null,"AniDB heslo"],"password of your AniDB account":[null,""],"AniDB MyList":[null,"AniDB MyList"],"do you want to add the PostProcessed episodes to the MyList?":[null,""],"Look and Feel":[null,"Vzhled a chování"],"How should the anime functions show and behave.":[null,"Jak by se měla anime funkce zobrazovat a chovat."],"Split show lists":[null,"Rozdělit seznamy seriálů"],"separate anime and normal shows in groups":[null,""],"Split in tabs":[null,""],"use tabs for when splitting show lists":[null,""],"Restore":[null,"Obnovit"],"Backup your main database file and config.":[null,"Zálohovat vaší hlavní databázi a nastavení."],"Select the folder you wish to save your backup file to":[null,"Vyberte složku, do které si přejete uložit zálohu"],"Restore your main database file and config.":[null,"Obnovit vaší hlavní databázi a nastavení."],"Select the backup file you wish to restore":[null,"Vyberte zálohu, kterou chcete obnovit"],"Misc":[null,"Různé"],"Interface":[null,"Vzhled"],"Advanced Settings":[null,"Pokročilá nastavení"],"Startup options. Indexer options. Log and show file locations.":[null,"Možnosti spuštění. Možnosti indexování. Umístění souborů logu a seriálu."],"Some options may require a manual restart to take effect.":[null,"Některá nastavení mohou vyžadovat ruční restartování."],"Default Indexer Language":[null,"Výchozí indexovací jazyk"],"for adding shows and metadata providers":[null,"přo přidání pořadu a poskytovatelů metadat"],"Launch browser":[null,"Spustit prohlížeč"],"open the SickRage home page on startup":[null,"Otevřete domovskou stránku SickRage po spuštění"],"Initial page":[null,"Úvodní stránka"],"Shows":[null,"Seriály"],"when launching SickRage interface":[null,"při spuštění rozhraní SickRage"],"Choose hour to update shows":[null,"Vyberte hodinu k aktualizaci pořadů"],"with information such as next air dates, show ended, etc. Use 15 for 3pm, 4 for 4am etc.":[null,"pro informace jako jsou vysílací časy, ukončení seriálů atd. Napište 15 pro 15: 00, 4 pro 04: 00 atd."],"note":[null,""],"minutes are randomized each time SickRage is started":[null,""],"Send to trash for actions":[null,"\"Odstranit do koše\" pro akce"],"when using show \"Remove\" and delete files":[null,"při odstranění seriálů a souborů"],"on scheduled deletes of the oldest log files":[null,"při plánovaném čištění starých logů"],"selected actions use trash (recycle bin) instead of the default permanent delete":[null,"vybrané akce použijí koš místo trvalého odstranění"],"Log file folder location":[null,"Umístění souborů logu"],"Number of Log files saved":[null,"Počet uložených souborů logu"],"number of log files saved when rotating logs (default: 5) (REQUIRES RESTART)":[null,"počet uložených souborů logů (výchozí: 5)(VYŽADUJE RESTART)"],"Size of Log files saved":[null,"Velikost souboru logu"],"maximum size in MB of the log file (default: 1MB) (REQUIRES RESTART)":[null,"maximální velikost logu v MB (výchozí: 1MB) (VYŽADUJE RESTART)"],"Use initial indexer set to":[null,"Výchozí index"],"as the default selection when adding new shows":[null,"pro získávání informací při přidávání nových seriálů"],"Timeout show indexer at":[null,"Vypršení času indexování po"],"seconds of inactivity when finding new shows (default:20)":[null,"sekundách bez odpovědi, při přidávání nového seriálu (výchozí:20)"],"Show root directories":[null,"Výchozí složky seriálů"],"where the files of shows are located":[null,"kde soubory seriálů jsou uloženy"],"Save Changes":[null,"Uložit změny"],"Options for software updates.":[null,"Nastavení aktualizací softwaru."],"Check software updates":[null,"Kontrola aktualizací"],"and display notifications when updates are available. Checks are run on startup and at the frequency set below*":[null,"a zobrazení upozornění na novou aktualizaci. Kontroly probíhají při startu a při frekvenci nastavené níže*"],"Automatically update":[null,"Automaticky aktualizovat"],"fetch and install software updates. Updates are run on startup and in the background at the frequency set below*":[null,"stáhnout a nainstalovat aktualizace. Aktualizace jsou spuštěny při startu a na pozadí při frekvenci nastavené níže*"],"Check the server every*":[null,"Zkontroluj server každých"],"hours for software updates (default:1)":[null,"hodin pro aktualizace (výchozí:1)"],"Notify on software update":[null,"Upozornit na aktualizaci softwaru"],"send a message to all enabled notifiers when SickRage has been updated":[null,"pošle zprávu na všechny povolené příjemce notifikací, když je SickRage aktualizován"],"User Interface":[null,"Uživatelské rozhraní"],"Options for visual appearance.":[null,"Možnosti vizuálního vzhledu."],"Interface Language":[null,"Jazyk rozhraní"],"System Language":[null,"Jazyk systému"],"for appearance to take effect, save then refresh your browser":[null,"změna se projeví po obnovení prohlížeče"],"Display theme":[null,"Nastavení vzhledu"],"Dark":[null,"Tmavé"],"Light":[null,"Světlé"],"Use a background image":[null,""],"use a custom image as background for SickRage":[null,""],"Background Path":[null,""],"Path to the background image":[null,""],"Show fanart in the background":[null,"Zobrazit fanart na pozadí"],"on the show summary page":[null,"na stránce přehledu seriálu"],"Fanart transparency":[null,"Průhlednost obalu"],"transparency of the fanart in the background":[null,""],"Use a custom stylesheet file":[null,""],"use a custom .css file to style SickRage (for advanced users)":[null,""],"Stylesheet File Path":[null,""],"Path to the stylesheet (.css) file":[null,""],"Show all seasons":[null,"Zobrazit všechny série"],"Sort with \"The\", \"A\", \"An\"":[null,"Třídit s \"The\", \"A\", \"An\""],"include articles (\"The\", \"A\", \"An\") when sorting show lists":[null,"zahrnout \"The\", \"A\", \"An\" při řazení seznamu seriálů"],"Missed episodes range":[null,"Rozsah zmeškaných epizod"],"set the range in days of the missed episodes in the Schedule page":[null,""],"Display fuzzy dates":[null,"Zobrazit nejasné termíny"],"move absolute dates into tooltips and display e.g. \"Last Thu\", \"On Tue\"":[null,""],"Trim zero padding":[null,""],"remove the leading number \"0\" shown on hour of day, and date of month":[null,"odebratní úvodní číslo \"0\" zobrazované v hodině a dni v měsíci"],"Date style":[null,"Formát datumu"],"Use System Default":[null,"Použít výchozí nastavení systému"],"Time style":[null,"Formát času"],"seconds are only shown on the History page":[null,"sekundy se zobrazí pouze na stránce Historie"],"Timezone":[null,"Časové pásmo"],"Local":[null,"Místní"],"Network":[null,"TV kanál"],"display dates and times in either your timezone or the shows network timezone":[null,""],"use local timezone to start searching for episodes minutes after show ends (depends on your dailysearch frequency)":[null,""],"Download url":[null,"Stáhnout url"],"URL where the shows can be downloaded.":[null,"Adresa URL, kam lze stáhnout seriály."],"Web Interface":[null,"Webové rozhraní"],"it is recommended that you enable a username and password to secure SickRage from being tampered with remotely.":[null,""],"these options require a manual restart to take effect.":[null,""],"API key":[null,"API klíč"],"used to give 3rd party programs limited access to SickRage":[null,"umožňuje poskytnout programům 3. stran omezený přístup k SickRage"],"you can try all the features of the API":[null,"můžete vyzkoušet všechny funkce API"],"here":[null,"zde"],"HTTP logs":[null,"HTTP logy"],"enable logs from the internal Tornado web server":[null,"povolí logy u interního Tornado web serveru"],"HTTP username":[null,"HTTP uživatelské jméno"],"set blank for no login":[null,"ponechte prázdné pro žádné přihlášení"],"HTTP password":[null,"HTTP heslo"],"blank = no authentication":[null,"nevyplněno = bez ověření"],"HTTP port":[null,"HTTP port"],"web port to browse and access SickRage (default:8081)":[null,""],"Notify on login":[null,"Upozornit na přihlášení"],"enable to be notified when a new login happens in webserver":[null,""],"Listen on IPv6":[null,""],"attempt binding to any available IPv6 address":[null,""],"Enable HTTPS":[null,"Povolit HTTPS"],"enable access to the web interface using a HTTPS address":[null,"povolit přístup do webového rozhraní pomocí HTTPS adresy"],"HTTPS certificate":[null,"HTTPS certifikát"],"file name or path to HTTPS certificate":[null,"název souboru nebo cesta k HTTPS certifikátu"],"HTTPS key":[null,"HTTPS klíč"],"file name or path to HTTPS key":[null,""],"Reverse proxy headers":[null,""],"accept the following reverse proxy headers (advanced)...":[null,""],"(X-Forwarded-For, X-Forwarded-Host, and X-Forwarded-Proto)":[null,""],"CPU throttling":[null,""],"Normal (default). High is lower and Low is higher CPU use":[null,""],"Anonymous redirect":[null,""],"backlink protection via anonymizer service, must end in \"?\"":[null,""],"Enable debug":[null,"Povolit ladění"],"enable debug logs":[null,""],"Verify SSL Certs":[null,"Ověřit SSL certifikáty"],"verify SSL Certificates (Disable this for broken SSL installs (Like QNAP))":[null,""],"No Restart":[null,"Žádný restart"],"only shutdown when restarting SR":[null,""],"only select this when you have external software restarting SR automatically when it stops (like FireDaemon)":[null,""],"Encrypt passwords":[null,"Šifrovat hesla"],"in the <code>config.ini</code> file":[null,""],"warning":[null,"varování"],"passwords must only contain":[null,""],"ASCII characters":[null,"ASCII znaky"],"Unprotected calendar":[null,"Nechráněný kalendář"],"allow subscribing to the calendar without user and password":[null,""],"some services like Google Calendar only work this way":[null,""],"Google Calendar Icons":[null,"Ikony Google Kalendáře"],"show an icon next to exported calendar events in Google Calendar":[null,""],"Proxy host":[null,"Hostitel proxy"],"blank to disable or proxy to use when connecting to providers":[null,""],"also use global proxy setting for indexers (tvdb, xem, anidb, etc.)":[null,""],"Skip Remove Detection":[null,""],"skip detection of removed files":[null,""],"if disabled the episode will be set to the default deleted status":[null,""],"Default deleted episode status":[null,"Výchozí stav smazaných epizod"],"define the status to be set for media file that has been deleted.":[null,""],"Archived option will keep previous downloaded quality":[null,""],"example: Downloaded (1080p WEB-DL) ==> Archived (1080p WEB-DL)":[null,""],"Options for github related features.":[null,""],"Branch version":[null,"Verze branche"],"error: No branches found.":[null,""],"select branch to use (restart required)":[null,""],"Authorization Type":[null,""],"Username and password":[null,""],"Personal access token":[null,""],"You must use a personal access token if you're using \"two-factor authentication\" on GitHub.":[null,""],"GitHub username":[null,"GitHub uživatelské jméno"],"*** (REQUIRED FOR SUBMITTING ISSUES) ***":[null,"*** (POVINNÉ PRO ODESLÁNÍ PROBLÉMU) ***"],"GitHub password":[null,"GitHub heslo"],"GitHub personal access token":[null,""],"Generate Token":[null,""],"Manage Tokens":[null,""],"GitHub remote for branch":[null,""],"access repo configured remotes (save then refresh browser)":[null,""],"default":[null,"výchozí"],"origin":[null,""],"Git executable path":[null,"Cesta spustitelného Git"],"only needed if OS is unable to locate git from env":[null,""],"Git reset":[null,"Git reset"],"removes untracked files and performs a hard reset on git branch automatically to help resolve update issues":[null,""],"Home Theater / NAS":[null,"Domácí kino / NAS"],"Devices":[null,"Zařízení"],"Social":[null,"Sociální"],"A free and open source cross-platform media center and home entertainment system software with a 10-foot user interface designed for the living-room TV.":[null,""],"send KODI commands?":[null,""],"Always on":[null,"Vždy zapnuto"],"log errors when unreachable?":[null,""],"Notify on snatch":[null,"Oznamovat nalezení"],"send a notification when a download starts?":[null,"odeslat oznámení při zahájení stahování?"],"Notify on download":[null,"Upozornění na stahování"],"send a notification when a download finishes?":[null,"odeslat oznámení po dokončení stahování?"],"Notify on subtitle download":[null,"Upozornit na stažení titulků"],"send a notification when subtitles are downloaded?":[null,"odeslat oznámení po stažení titulků?"],"Update library":[null,"Aktualizace knihovny"],"update KODI library when a download finishes?":[null,"aktualizovat knihovnu KODI po dokončení stahování?"],"Full library update":[null,"Aktualizace celé knihovny"],"perform a full library update if update per-show fails?":[null,""],"Only update first host":[null,""],"only send library updates to the first active host?":[null,""],"KODI IP:Port":[null,"KODI IP:Port"],"host running KODI (eg. 192.168.1.100:8080)":[null,""],"(multiple host strings must be separated by commas)":[null,""],"Username":[null,"Uživatelské jméno"],"username for your KODI server (blank for none)":[null,""],"Password":[null,"Heslo"],"password for your KODI server (blank for none)":[null,""],"Click below to test.":[null,"Klikněte níže pro testování."],"Experience your media on a visually stunning, easy to use interface on your Mac connected to your TV. Your media library has never looked this good!":[null,""],"For sending notifications to Plex Home Theater (PHT) clients, use the KODI notifier with port <b>3005</b>.":[null,""],"send Plex Media Server library updates?":[null,""],"Plex Media Server Auth Token":[null,""],"auth token used by Plex":[null,""],"Update Library":[null,""],"update Plex Media Server library when a download finishes":[null,""],"Plex Media Server IP:Port":[null,""],"one or more hosts running Plex Media Server<br/>(eg. 192.168.1.1:32400, 192.168.1.2:32400)":[null,""],"HTTPS":[null,"HTTPS"],"use https for plex media server requests?":[null,""],"Click below to test Plex Media Server(s)":[null,""],"Test Plex Media Server":[null,"Test Plex Media Serveru"],"Plex Home Theater":[null,"Plex Home Theater"],"send Plex Home Theater notifications?":[null,""],"Plex Home Theater IP:Port":[null,""],"one or more hosts running Plex Home Theater<br>(eg. 192.168.1.100:3000, 192.168.1.101:3000)":[null,""],"Click below to test Plex Home Theater(s)":[null,""],"Test Plex Home Theater":[null,"Test Plex Home Theater"],"some Plex Home Theaters <b class=\"boldest\">do not</b> support notifications e.g. Plexapp for Samsung TVs":[null,""],"Emby":[null,""],"A home media server built using other popular open source technologies.":[null,""],"send update commands to Emby?":[null,""],"Emby IP:Port":[null,"Emby IP:Port"],"host running Emby (eg. 192.168.1.100:8096)":[null,""],"Emby API Key":[null,"Emby API klíč"],"Networked Media Jukebox":[null,"Networked Media Jukebox"],"The Networked Media Jukebox, or NMJ, is the official media jukebox interface made available for the Popcorn Hour 200-series.":[null,""],"send update commands to NMJ?":[null,""],"Popcorn IP address":[null,"IP adresa Popcorn"],"IP address of Popcorn 200-series (eg. 192.168.1.100)":[null,"IP adresa Popcorn řady 200 (např. 192.168.1.100)"],"Get settings":[null,"Načíst nastavení"],"Get Settings":[null,"Načíst nastavení"],"the Popcorn Hour device must be powered on and NMJ running.":[null,""],"NMJ database":[null,"Databáze NMJ"],"automatically filled via the 'Get Settings' button.":[null,""],"NMJ mount url":[null,""],"Networked Media Jukebox v2":[null,""],"The Networked Media Jukebox, or NMJv2, is the official media jukebox interface made available for the Popcorn Hour 300 & 400-series.":[null,""],"send update commands to NMJv2?":[null,""],"IP address of Popcorn 300/400-series (eg. 192.168.1.100)":[null,""],"Database location":[null,"Umístění databáze"],"Database instance":[null,"Databáze instance"],"adjust this value if the wrong database is selected.":[null,""],"Find database":[null,"Najít databázi"],"Find Database":[null,""],"the Popcorn Hour device must be powered on.":[null,""],"NMJv2 database":[null,""],"automatically filled via the 'Find Database' buttons.":[null,""],"Synology":[null,"Synology"],"The Synology DiskStation NAS.":[null,""],"Synology Indexer is the daemon running on the Synology NAS to build its media database.":[null,""],"send Synology notifications?":[null,""],"requires SickRage to be running on your Synology NAS.":[null,""],"Synology Indexer":[null,"Indexer Synology"],"Synology Notifier is the notification system of Synology DSM":[null,""],"send notifications to the Synology Notifier?":[null,""],"pyTivo":[null,"pyTivo"],"pyTivo is both an HMO and GoBack server. This notifier will load the completed downloads to your Tivo.":[null,""],"send notifications to pyTivo?":[null,""],"requires the downloaded files to be accessible by pyTivo.":[null,""],"pyTivo IP:Port":[null,"pyTivo IP:Port"],"host running pyTivo (eg. 192.168.1.1:9032)":[null,""],"pyTivo share name":[null,"název sdílení pyTivo"],"value used in pyTivo Web Configuration to name the share.":[null,""],"Tivo name":[null,"Název Tivo"],"(Messages & Settings > Account & System Information > System Information > DVR name)":[null,""],"Growl":[null,"Growl"],"A cross-platform unobtrusive global notification system.":[null,""],"send Growl notifications?":[null,""],"Growl IP:Port":[null,"Growl IP:Port"],"host running Growl (eg. 192.168.1.100:23053)":[null,""],"may leave blank if SickRage is on the same host.":[null,""],"otherwise Growl <b>requires</b> a password to be used.":[null,""],"Click below to register and test Growl, this is required for Growl notifications to work.":[null,""],"Register Growl":[null,"Registrovat Growl"],"Prowl":[null,"Prowl"],"A Growl client for iOS.":[null,"Growl klient pro iOS."],"send Prowl notifications?":[null,""],"Prowl Message Title":[null,"Název zprávy Prowl"],"Global Prowl API key(s)":[null,""],"Prowl API(s) listed here, separated by commas if applicable, will<br> receive notifications for <b>all</b> shows. Your Prowl API key is available at:":[null,""],"(this field may be blank except when testing.)":[null,""],"Show notification list":[null,"Zobrazit seznam notifikací"],"-- Select a Show --":[null,""],"Configure per-show notifications here by entering Prowl API key(s), separated by commas, '\n 'after selecting a show in the drop-down box. Be sure to activate the 'Save for this show' '\n 'button below after each entry.":[null,""],"Save for this show":[null,""],"Prowl priority":[null,"Prowl priorita"],"Very Low":[null,"Velmi nízké"],"Moderate":[null,""],"Normal":[null,"Normální"],"High":[null,"Vysoká"],"Emergency":[null,""],"priority of Prowl messages from SickRage.":[null,""],"Libnotify":[null,"Libnotify"],"The standard desktop notification API for Linux/*nix systems. This notifier will only function if the pynotify module is installed (Ubuntu/Debian package <a href=\"apt:python-notify\">python-notify</a>).":[null,""],"send Libnotify notifications?":[null,""],"Pushover":[null,""],"Pushover makes it easy to send real-time notifications to your Android and iOS devices.":[null,""],"send Pushover notifications?":[null,""],"Pushover key":[null,""],"user key of your Pushover account":[null,""],"Pushover API key":[null,""],"click here":[null,""]," to create a Pushover API key":[null,""],"Pushover devices":[null,""],"comma separated list of pushover devices you want to send notifications to":[null,""],"Pushover notification sound":[null,""],"Bike":[null,"Kolo"],"Bugle":[null,"Bugle"],"Cash Register":[null,""],"Classical":[null,"Klasický"],"Cosmic":[null,""],"Falling":[null,""],"Gamelan":[null,""],"Incoming":[null,"Příchozí"],"Intermission":[null,"Pauza"],"Magic":[null,"Magie"],"Mechanical":[null,"Mechanické"],"Piano Bar":[null,""],"Siren":[null,"Siréna"],"Space Alarm":[null,""],"Tug Boat":[null,""],"Alien Alarm (long)":[null,""],"Climb (long)":[null,""],"Persistent (long)":[null,""],"Pushover Echo (long)":[null,""],"Up Down (long)":[null,""],"None (silent)":[null,""],"Device specific":[null,""],"choose notification sound to use":[null,""],"Pushover priority":[null,""],"Choose priority to use":[null,"Zvolte prioritu použití"],"Boxcar 2":[null,"Boxcar 2"],"Read your messages where and when you want them!":[null,""],"send Boxcar notifications?":[null,""],"Boxcar2 access token":[null,"Boxcar2 přístupový token"],"access token for your Boxcar account.":[null,""],"NMA":[null,"NMA"],"Notify My Android":[null,""],"Notify My Android is a Prowl-like Android App and API that offers an easy way to send notifications from your application directly to your Android device.":[null,""],"send NMA notifications?":[null,""],"NMA API key":[null,"NMA API klíč"],"(multiple keys must be separated by commas, up to a maximum of 5)":[null,""],"NMA priority":[null,"NMA priorita"],"priority of NMA messages from SickRage.":[null,""],"Pushalot":[null,"Pushalot"],"Pushalot is a platform for receiving custom push notifications to connected devices running Windows Phone or Windows 8.":[null,""],"send Pushalot notifications ?":[null,""],"Pushalot authorization token":[null,""],"authorization token of your Pushalot account.":[null,""],"Pushbullet":[null,"Pushbullet"],"Pushbullet is a platform for receiving custom push notifications to connected devices running Android/iOS and desktop browsers such as Chrome, Firefox or Opera.":[null,""],"send Pushbullet notifications?":[null,""],"Pushbullet API key":[null,""],"API key of your Pushbullet account":[null,""],"Pushbullet devices":[null,""],"Update device list":[null,""],"Pushbullet channels":[null,""],"Free Mobile":[null,"Free Mobile"],"Free Mobile is a famous French cellular network provider.<br> It provides to their customer a free SMS API.":[null,""],"send SMS notifications?":[null,""],"send a SMS when a download starts?":[null,""],"send a SMS when a download finishes?":[null,""],"send a SMS when subtitles are downloaded?":[null,"zaslat SMS po stažení titulků?"],"Free Mobile customer ID":[null,""],"it's your Free Mobile customer ID (8 digits)":[null,""],"Free Mobile API key":[null,""],"find your API key in your customer portal.":[null,""],"Click below to test your settings.":[null,""],"Telegram":[null,"Telegram"],"Telegram is a cloud-based instant messaging service.":[null,""],"send Telegram notifications?":[null,""],"send a message when a download starts?":[null,""],"send a message when a download finishes?":[null,""],"send a message when subtitles are downloaded?":[null,""],"User/group ID":[null,"ID uživatele/skupiny"],"contact @myidbot on Telegram to get an ID":[null,""],"Bot API token":[null,"Bot API token"],"contact @BotFather on Telegram to set up one":[null,""],"Join":[null,"Join"],"Join all of your devices together!":[null,""],"send Join notifications?":[null,""],"Device ID":[null,"ID zařízení"],"per device specific id":[null,""]," to create a Join API key":[null,""],"Twilio":[null,"Twilio"],"Twilio is a webservice API that allows you to communicate directly with a mobile number. This notifier will send a text directly to your mobile device.":[null,""],"should SickRage text your mobile device?":[null,""],"Twilio Account SID":[null,""],"account SID of your Twilio account.":[null,""],"Twilio Auth Token":[null,""],"Twilio Phone SID":[null,""],"phone SID that you would like to send the sms from":[null,""],"Your phone number":[null,""],"phone number that will receive the sms. Please use the format +1-###-###-####":[null,""],"Twitter":[null,"Twitter"],"A social networking and microblogging service, enabling its users to send and read other users' messages called tweets.":[null,""],"should SickRage post tweets on Twitter?":[null,""],"you may want to use a secondary account.":[null,""],"send direct message":[null,""],"send a notification via Direct Message, not via status update":[null,""],"send DM to":[null,""],"Twitter account to send Direct Messages to (must follow you)":[null,""],"Step One":[null,"Krok první"],"Request Authorization":[null,"Vyžádat autorizaci"],"Click the \"Request Authorization\" button.<br> This will open a new page containing an auth key.<br> <b>note:</b> if nothing happens check your popup blocker.":[null,""],"Step Two":[null,"Krok druhý"],"Enter the key Twitter gave you below, and click \"Verify Key\".":[null,""],"Trakt":[null,"Trakt"],"Trakt helps keep a record of what TV shows and movies you are watching. Based on your favorites, Trakt recommends additional shows and movies you'll enjoy!":[null,""],"send Trakt.tv notifications?":[null,""],"username of your Trakt account.":[null,""],"Trakt PIN":[null,"Trakt PIN"],"Get Trakt PIN":[null,""],"PIN code to authorize SickRage to access Trakt on your behalf.":[null,""],"API Timeout":[null,"API Timeout"],"seconds to wait for Trakt API to respond. (Use 0 to wait forever)":[null,""],"Default indexer":[null,"Výchozí indexer"],"Sync libraries":[null,""],"sync your SickRage show library with your trakt show library.":[null,""],"Remove Episodes From Collection":[null,"Odebrat epizody z kolekce"],"remove an episode from your Trakt Collection if it is not in your SickRage Library.":[null,""],"Sync watchlist":[null,""],"sync your SickRage show watchlist with your trakt show watchlist (either Show and Episode).":[null,""],"episode will be added on watch list when wanted or snatched and will be removed when downloaded ":[null,""],"Watchlist add method":[null,"Způsob přidání Seznamu sledujících"],"Skip All":[null,"Přeskočit vše"],"Download Pilot Only":[null,"Stáhnout pouze pilotní díl"],"Get whole show":[null,""],"method in which to download episodes for new shows.":[null,""],"Remove episode":[null,""],"remove an episode from your watchlist after it is downloaded.":[null,""],"Remove series":[null,"Odstranit série"],"remove the whole series from your watchlist after any download.":[null,""],"Remove watched show":[null,"Odebrat shlédnutý seriál"],"remove the show from sickrage if it's ended and completely watched":[null,""],"Start paused":[null,"Spustit pozastavené"],"shows grabbed from your trakt watchlist start paused.":[null,""],"Trakt blackList name":[null,"Jméno blacklistu Trakt"],"name (slug) of list on Trakt for blacklisting show on 'Add Trending Show' & 'Add Recommended Shows' pages":[null,""],"Email":[null,"Email"],"Allows configuration of email notifications on a per show basis.":[null,""],"send email notifications?":[null,""],"SMTP host":[null,"SMTP host"],"hostname of your SMTP email server.":[null,""],"SMTP port":[null,"SMTP port"],"port number used to connect to your SMTP host.":[null,""],"SMTP from":[null,"SMTP z"],"sender email address, some hosts require a real address.":[null,""],"Use TLS":[null,"Použít TLS"],"check to use TLS encryption.":[null,""],"SMTP user":[null,"SMTP uživatel"],"(optional) your SMTP server username.":[null,""],"SMTP password":[null,"SMTP heslo"],"(optional) your SMTP server password.":[null,""],"Global email list":[null,"Globální emailový seznam"],"email addresses listed here, separated by commas if applicable, will<br> receive notifications for <b>all</b> shows.":[null,""],"(This field may be blank except when testing.)":[null,""],"Email Subject":[null,""],"use a custom subject for some privacy protection?":[null,""],"(leave blank for the default SickRage subject)":[null,""],"configure per-show notifications here by entering email address(es), separated by commas,":[null,""],"after selecting a show in the drop-down box. Be sure to activate the 'Save for this show'":[null,""],"button below after each entry.":[null,""],"Slack":[null,"Slack"],"Slack brings all your communication together in one place. It's real-time messaging, archiving and search for modern teams.":[null,""],"should SickRage post messages on Slack?":[null,""],"Slack Incoming Webhook":[null,""],"Discord":[null,""],"All-in-one voice and text chat for gamers that's free, secure, and works on both your desktop and phone.":[null,""],"Should SickRage post messages on Discord?":[null,""],"Discord Incoming Webhook":[null,""],"Create webhook under channel settings.":[null,""],"Discord Bot Name":[null,""],"Blank will use webhook default Name.":[null,""],"Discord Avatar URL":[null,""],"Blank will use webhook default Avatar.":[null,""],"Discord TTS":[null,""],"Send notifications using text-to-speech":[null,""],"Post-Processing":[null,"Finální zpracování"],"Episode Naming":[null,""],"Metadata":[null,"Metadata"],"Settings that dictate how SickRage should process completed downloads.":[null,""],"enable the automatic post processor to scan and process any files in your Post Processing Dir":[null,""],"do not use if you use an external Post Processing script":[null,""],"Post Processing Dir":[null,""],"the folder where your download client puts the completed TV downloads.":[null,""],"please use seperate downloading and completed folders in your download client if possible.":[null,""],"Processing Method":[null,"Způsob zpracování"],"what method should be used to put files into the library?":[null,""],"if you keep seeding torrents after they finish, please avoid the 'move' processing method to prevent errors.":[null,""],"Auto Post-Processing Frequency":[null,"Frekvence automatického finálního zpracování"],"time in minutes to check for new files to auto post-process (min 10)":[null,""],"Postpone post processing":[null,""],"wait to process a folder if sync files are present.":[null,""],"Sync File Extensions":[null,""],"comma seperated list of extensions or filename globs SickRage ignores when Post Processing":[null,""],"Rename Episodes":[null,"Přejmenovat epizody"],"rename episode using the Episode Naming settings?":[null,""],"Create missing show directories":[null,""],"create missing show directories when they get deleted":[null,""],"Add shows without directory":[null,"Přidat seriály bez adresáře"],"add shows without creating a directory (not recommended)":[null,""],"Move associated files":[null,""],"move associated (srt/srr/sfv/etc) files while post processing?":[null,""],"Rename .nfo file":[null,"Přejmenovat soubor .nfo"],"rename the original .nfo file to .nfo-orig to avoid conflicts?":[null,""],"Associated file extensions":[null,""],"comma separated list of associated file extensions SickRage should keep while post processing.":[null,""],"leaving it empty means no associated files will be post processed":[null,""],"Delete non associated files":[null,""],"delete non associated files while post processing?":[null,""],"Change File Date":[null,"Změnit datum souboru"],"set last modified filedate to the date that the episode aired?":[null,""],"some systems may ignore this feature.":[null,""],"Timezone for File Date":[null,"Časové pásmo pro datum souboru"],"local":[null,"místní"],"network":[null,"síť"],"what timezone should be used to change File Date?":[null,""],"Unpack":[null,"Rozbalit"],"What to do with archived releases found in your <i>TV Download Dir</i>?":[null,""],"Ignore (do not process contents)":[null,""],"Unpack (process contents)":[null,""],"Treat as video (process archive as-is)":[null,""],"'Unpack' only works with RAR archives":[null,""],"Windows":[null,"Windows"],"WinRar is required on windows":[null,""],"Unpack Directory":[null,""],"Choose a path to unpack files, leave blank to unpack in download dir":[null,""],"Unrar Location":[null,""],"add the path to unrar if it is not in the system path":[null,""],"Alternate Unrar Tool":[null,""],"add the path to an alternate unrar tool if it is not in the system path":[null,""],"Delete RAR contents":[null,""],"delete content of RAR files, even if Process Method not set to move?":[null,""],"only working with RAR archive":[null,""],"Don't delete empty folders":[null,"Neodstraňovat prázdné složky"],"leave empty folders when Post Processing?":[null,""],"can be overridden using manual Post Processing":[null,""],"Follow symbolic-links":[null,""],"follow down symbolic links in download directory?":[null,""],"<b>EXPERTS ONLY.</b><br>Enable only if you know what <b>circular symbolic links</b> are,<br>and can <b>verify that you have none</b>.":[null,""],"Use icacls":[null,""],"Windows only":[null,""],"sets video permissions after using the move method in post processing":[null,""],"Extra Scripts":[null,"Extra skripty"],"see":[null,""],"for script arguments description and usage.":[null,""],"How SickRage will name and sort your episodes.":[null,""],"Name Pattern":[null,"Vzor názvu"],"Toggle Naming Legend":[null,"Přepnout legendu pojmenovávání"],"don't forget to add quality pattern. Otherwise after post-processing the episode will have UNKNOWN quality":[null,""],"Meaning":[null,"Význam"],"Pattern":[null,"Vzor"],"Result":[null,"Výsledek"],"Use lower case if you want lower case names (eg. %sn, %e.n, %q_n etc)":[null,""],"Show Name":[null,"Název Seriálu"],"Show.Name":[null,"Název.Seriálu"],"Show_Name":[null,"Název_Seriálu"],"Season Number":[null,"Číslo série"],"XEM Season Number":[null,"XEM Číslo Série"],"Episode Number":[null,"Číslo epizody"],"XEM Episode Number":[null,""],"Episode Name":[null,"Název epizody"],"Episode.Name":[null,"Název.Epizody"],"Episode_Name":[null,"Název_Epizody"],"Air Date":[null,"Datum vysílání"],"Post-Processing Date":[null,"Datum finálního zpracování"],"Quality":[null,"Kvalita"],"Scene Quality":[null,"Kvalita dílů"],"Release Name":[null,"Název vydání"],"SickRage' is used in place of RLSGROUP if it could not be properly detected":[null,""],"Release Group":[null,""],"If episode is proper/repack add 'proper' to name.":[null,""],"Release Type":[null,"Typ vydání"],"Multi-Episode Style":[null,""],"Single-EP Sample":[null,""],"Multi-EP sample":[null,""],"Strip Show Year":[null,""],"remove the TV show's year when renaming the file?":[null,""],"only applies to shows that have year inside parentheses":[null,""],"Custom Air-By-Date":[null,""],"name air-by-date shows differently than regular shows?":[null,""],"Toggle ABD Naming Legend":[null,""],"Regular Air Date":[null,""],"Year":[null,"Rok"],"Month":[null,"Měsíc"],"Day":[null,"Den"],"Multi-EP style is ignored":[null,""],"Custom Sports":[null,""],"name sports shows differently than regular shows?":[null,""],"Toggle Sports Naming Legend":[null,""],"Sports Air Date":[null,"Datum vysílání Sportů"],"Custom Anime":[null,"Vlastní Anime"],"name anime shows differently than regular shows?":[null,""],"Toggle Anime Naming Legend":[null,""],">XEM Season Number":[null,">XEM číslo série"],"Single-EP Anime Sample":[null,""],"Multi-EP Anime sample":[null,""],"Add Absolute Number":[null,""],"add the absolute number to the season/episode format?":[null,""],"only applies to anime. (eg. S15E45 - 310 vs S15E45)":[null,""],"Only Absolute Number":[null,"Pouze absolutní číslo"],"replace season/episode format with absolute number":[null,""],"only applies to anime.":[null,""],"No Absolute Number":[null,""],"don't include the absolute number":[null,""],"The data associated to the data. These are files associated to a TV show in the form of images and text that, when supported, will enhance the viewing experience.":[null,""],"Metadata Type":[null,""],"toggle metadata options that you wish to be created":[null,""],"multiple targets may be used":[null,""],"Select Metadata":[null,"Vybrat Metadata"],"Provider Priorities":[null,""],"Provider Options":[null,"Možnosti zprostředkovatele"],"Configure Custom Newznab Providers":[null,""],"Configure Custom Torrent Providers":[null,""],"Check off and drag the providers into the order you want them to be used.":[null,""],"At least one provider is required but two are recommended.":[null,""],"Torrent providers can be toggled in ":[null,""],"Provider does not support backlog searches at this time.":[null,""],"Provider is <b>NOT WORKING</b>.":[null,""],"Configure individual provider settings here.":[null,""],"Check with provider's website on how to obtain an API key if needed.":[null,""],"Configure provider":[null,""],"no providers available to configure.":[null,""],"URL":[null,"URL adresa"],"Enable daily searches":[null,"Povolit každodenní vyhledávání"],"enable provider to perform daily searches.":[null,""],"Enable backlog searches":[null,""],"enable provider to perform backlog searches.":[null,""],"Season search mode":[null,"Režim vyhledávání série"],"when searching for complete seasons you can choose to have it look for season packs only, or choose to have it build a complete season from just single episodes.":[null,""],"season packs only.":[null,"pouze celé série."],"episodes only.":[null,"pouze epizody."],"Enable fallback":[null,""],"when searching for a complete season depending on search mode you may return no results, this helps by restarting the search using the opposite search mode.":[null,""],"Custom URL":[null,"Vlastní URL"],"the URL should include the protocol (and port if applicable). Examples: http://192.168.1.4/ or http://localhost:3000/":[null,""],"Api key":[null,"Api klíč"],"Digest":[null,""],"Hash":[null,"Hash"],"Passkey":[null,""],"Cookies":[null,"Soubory cookie"],"example: uid=1234;pass=567845439634987<br>note: uid and pass are not your username/password.<br>use DevTools or Firebug to get these values after logging in on your browser.":[null,""],"Pin":[null,"Kód Pin"],"Seed ratio":[null,"Koeficient seedů"],"stop transfer when ratio is reached<br>(-1 SickRage default to seed forever, or leave blank for downloader default)":[null,""],"Minimum seeders":[null,"Minimum seedů"],"Minimum leechers":[null,"Minimum stahujících (leecherů)"],"Confirmed download":[null,""],"only download torrents from trusted or verified uploaders ?":[null,""],"Ranked torrents":[null,""],"only download ranked torrents (trusted releases)":[null,""],"English torrents":[null,"Anglické torrenty"],"only download english torrents, or torrents containing english subtitles":[null,"stahovat pouze anglické torrenty, nebo torrenty obsahující anglické titulky"],"For Spanish torrents":[null,"Pro španělské torrenty"],"ONLY search on this provider if show info is defined as \"Spanish\" (avoid provider's use for VOS shows)":[null,""],"Sorting results by":[null,"Řazení výsledků podle"],"Freeleech":[null,"Freeleech"],"only download <b>\"FreeLeech\"</b> torrents.":[null,""],"Category":[null,"Kategorie"],"select torrent with Italian subtitle":[null,"vybrat torrent s Italským podtitulem"],"Configure Custom<br>Newznab Providers":[null,""],"Add and setup or remove custom Newznab providers.":[null,""],"Select provider":[null,"Vybrat poskytovatele"],"-- add new provider --":[null,"-– přidat nového poskytovatele --"],"Provider name":[null,""],"Site URL":[null,"URL webu"],"Newznab search categories":[null,""],"select your Newznab categories on the left, and click the \"update categories\" button to use them for searching.) <b>don't forget to to save the form!":[null,""],"Update Categories":[null,"Aktualizovat kategorie"],"Add":[null,"Přidat"],"Delete":[null,"Odstranit"],"Add and setup or remove custom RSS providers.":[null,""],"RSS URL":[null,"RSS URL"],"Search element":[null,"Vyhledávací prvek"],"eg: title":[null,"např: název"],"Episode Search":[null,"Vyhledávání epizod"],"NZB Search":[null,"NZB hledání"],"Torrent Search":[null,"Vyhledávání Torrentů"],"How to manage searching with":[null,""],"Randomize Providers":[null,"Náhodně zvolit poskytovatele"],"randomize the provider search order instead of going in order of placement":[null,""],"Download propers":[null,"Stáhnout propers"],"replace original download with \"Proper\" or \"Repack\" if nuked":[null,""],"Check propers every":[null,"Zkontrolujte propers každých"],"24 hours":[null,"24 hodin"],"4 hours":[null,"4 hodiny"],"90 mins":[null,"90 minut"],"45 mins":[null,"45 minut"],"15 mins":[null,"15 minut"],"Backlog search day(s)":[null,"Dny hledání nevyřízených položek"],"number of day(s) that the \"Forced Backlog Search\" will cover (e.g. 7 Days)":[null,"počet dní, které \"Vynucené hledání nevyřízených\" pokryje (např. 7 dnů)"],"Backlog search frequency":[null,"Frekvence backlog vyhledávání"],"time in minutes between searches (min.":[null,"čas v minutách mezi hledáním (min."],"Daily search frequency":[null,"Frekvence Každodenní vyhledávání"],"Usenet retention":[null,""],"age limit in days for usenet articles to be used (e.g. 500)":[null,""],"Ignore words":[null,"Ignorovaná slova"],"results with one or more word from this list will be ignored<br>separate words with a comma, e.g. \"word1,word2,word3\"":[null,""],"Require words":[null,""],"results with no word from this list will be ignored<br>separate words with a comma, e.g. \"word1,word2,word3\"":[null,""],"Trackers list":[null,""],"trackers that will be added to magnets without trackers<br>separate trackers with a comma, e.g. \"tracker1,tracker2,tracker3\"":[null,""],"Ignore language names in subbed results":[null,""],"ignore subbed releases based on language names <br>\n Example: \"dk\" will ignore words: dksub, dksubs, dksubbed, dksubed <br>\n separate languages with a comma, e.g. \"lang1,lang2,lang3":[null,""],"Allow high priority":[null,"Povolit vysokou prioritu"],"set downloads of recently aired episodes to high priority":[null,""],"Use Failed Downloads":[null,"Používat neúspěšně stažené"],"use Failed Download Handling?":[null,""],"will only work with snatched/downloaded episodes after enabling this":[null,""],"Delete Failed":[null,"Odstranění se nezdařilo"],"delete files left over from a failed download?":[null,""],"this only works if Use Failed Downloads is enabled.":[null,""],"How to handle NZB search results.":[null,""],"Search NZBs":[null,"Hledat NZB"],"enable NZB search providers":[null,""],"Send .nzb files to":[null,""],"SABnzbd server URL":[null,""],"URL to your SABnzbd server (e.g. http://localhost:8080/)":[null,""],"SABnzbd username":[null,"SABnzbd uživatelské jméno"],"(blank for none)":[null,"(pro žádný nevyplňujte)"],"SABnzbd password":[null,"SABnzbd heslo"],"SABnzbd API key":[null,"SABnzbd API klíč"],"locate at... SABnzbd Config -> General -> API Key":[null,""],"Use SABnzbd category":[null,"Používat SABnzbd kategorie"],"add downloads to this category (e.g. TV)":[null,""],"Use SABnzbd category (backlog episodes)":[null,""],"add downloads of old episodes to this category (e.g. TV)":[null,""],"Use SABnzbd category for anime":[null,""],"add anime downloads to this category (e.g. anime)":[null,""],"Use SABnzbd category for anime (backlog episodes)":[null,""],"add anime downloads of old episodes to this category (e.g. anime)":[null,""],"Use forced priority":[null,""],"enable to change priority from HIGH to FORCED":[null,""],"Black hole folder location":[null,""],"<b>.nzb</b> files are stored at this location for external software to find and use":[null,""],"Connect using HTTPS":[null,""],"enable Secure control in NZBGet and set the correct Secure Port here":[null,""],"NZBget host:port":[null,"NZBget host:port"],"(e.g. localhost:6789)":[null,"(např. localhost:6789)"],"NZBget RPC host name and port number (not NZBgetweb!)":[null,""],"NZBget username":[null,"NZBget uživatelské jméno"],"locate in nzbget.conf (default:nzbget)":[null,""],"NZBget password":[null,"NZBget heslo"],"locate in nzbget.conf (default:tegbzn6789)":[null,""],"Use NZBget category":[null,""],"send downloads marked this category (e.g. TV)":[null,""],"Use NZBget category (backlog episodes)":[null,""],"send downloads of old episodes marked this category (e.g. TV)":[null,""],"Use NZBget category for anime":[null,"Použití NZBget kategorii pro anime"],"send anime downloads marked this category (e.g. anime)":[null,""],"Use NZBget category for anime (backlog episodes)":[null,""],"send anime downloads of old episodes marked this category (e.g. anime)":[null,""],"NZBget priority":[null,"NZBget priorita"],"Very low":[null,"Velmi nízké"],"Low":[null,"Nízká"],"Very high":[null,"Velmi vysoké"],"Force":[null,"Vynutit"],"priority for daily snatches (no backlog)":[null,"priorita pro denní nalezené (bez zpoždění)"],"Torrent host:port":[null,""],"URL to your Synology DSM (e.g. http://localhost:5000/)":[null,""],"Client username":[null,"Uživatelské jméno klienta"],"Client password":[null,"Heslo klienta"],"Downloaded files location":[null,"Umístění stažených souborů"],"where Synology Download Station will save downloaded files (blank for client default)":[null,""],"the destination has to be a shared folder for Synology DS":[null,""],"Click below to test":[null,""],"How to handle Torrent search results.":[null,""],"Search torrents":[null,"Vyhledávat torrenty"],"enable torrent search providers":[null,""],"Send .torrent files to":[null,"Odeslat .torrent soubory do"],"<b>.torrent</b> files are stored at this location for external software to find and use":[null,""],"URL to your torrent client (e.g. http://localhost:8000/)":[null,""],"Torrent RPC URL":[null,"URL RPC torrentu"],"the path without leading and trailing slashes (e.g. transmission)":[null,""],"Http Authentication":[null,"Http ověřování"],"Verify certificate":[null,""],"disable if you get \"Deluge: Authentication Error\" in your log":[null,""],"verify SSL certificates for HTTPS requests":[null,""],"Add label to torrent":[null,"Přidat popisek k torrentu"],"(blank spaces are not allowed)":[null,"(mezery nejsou povoleny)"],"label plugin must be enabled in Deluge clients":[null,""],"for QBitTorrent 3.3.1 and up":[null,""],"Add label to torrent for anime":[null,""],"for QBitTorrent 3.3.1 and up ":[null,""],"where <span id=\"torrent_client\">the torrent client</span> will save downloaded files (blank for client default)":[null,""],"the destination has to be a shared folder for Synology DS</span>":[null,""],"Minimum seeding time":[null,""],"time in hours":[null,""],"(default:'0' passes blank to client and '-1' passes nothing)":[null,""],"Start torrent paused":[null,"Přidat torrent pozastaven"],"add .torrent to client but do <b style=\"font-weight:900\">not</b> start downloading":[null,""],"Allow high bandwidth":[null,""],"use high bandwidth allocation if priority is high":[null,""],"Test Connection":[null,"Test připojení"],"Windows Shares":[null,""],"Defines your existing windows shares so that we can add them to the browse dialog":[null,""],"Share #{number}":[null,""],"Share label":[null,""],"Hostname or IP":[null,""],"Share path":[null,""],"Subtitles Search":[null,"Hledat titulky"],"Subtitles Plugin":[null,"Plugin titulků"],"Plugin Settings":[null,"Plugin nastavení"],"Settings that dictate how SickRage handles subtitles search results.":[null,""],"Search Subtitles":[null,"Hledat titulky"],"Subtitle Languages":[null,"Jazyky titulků"],"Subtitle Directory":[null,"Adresář titulků"],"the directory where SickRage should store your <i>Subtitles</i> files.":[null,""],"leave empty if you want store subtitle in episode path.":[null,""],"Subtitle Find Frequency":[null,"Frekvence hledání titulků"],"time in hours between scans (default: 1)":[null,"čas v hodinách mezi skenováním (výchozí: 1)"],"Include Specials":[null,""],"include the show's specials when searching for subtitles?":[null,""],"Perfect matches":[null,"Dokonalé shody"],"only download subtitles that match: release group, video codec, audio codec and resolution":[null,""],"if disabled you may get out of sync subtitles":[null,""],"Subtitles History":[null,"Historie titulků"],"log downloaded Subtitle on History page?":[null,""],"Subtitles Multi-Language":[null,"Vícejazyčné titulky"],"append language codes to subtitle filenames?":[null,""],"this option is required if you use multiple subtitle languages":[null,""],"Delete unwanted subtitles":[null,"Odstranit nechtěné titulky"],"enable to delete unwanted subtitle languages bundled with release":[null,""],"Embedded Subtitles":[null,"Vložené titulky"],"ignore subtitles embedded inside video file?":[null,""],"this will ignore <u>all</u> embedded subtitles for every video file!":[null,"toto bude ignorovat <u>všechny</u> vložené titulky pro každý video soubor!"],"Hearing Impaired Subtitles":[null,"Titulky pro sluchově postižené"],"download hearing impaired style subtitles?":[null,""],"See":[null,"Viz"],"for a script arguments description.":[null,""],"Additional scripts separated by <b>|</b>.":[null,""],"Scripts are called after each episode has searched and downloaded subtitles.":[null,""],"For any scripted languages, include the interpreter executable before the script. See the following example":[null,""],"For Windows:":[null,"Pro systém Windows:"],"For Linux / OS X:":[null,"Pro systém Linux / OS X:"],"Subtitle Providers":[null,"Poskytovatelé titulků"],"Check off and drag the plugins into the order you want them to be used.":[null,""],"At least one plugin is required.":[null,"Je vyžadován alespoň jeden plugin."]," Web-scraping plugin":[null,""],"Provider Settings":[null,"Nastavení zprostředkovatele"],"Set user and password for each provider":[null,"Nastavit uživatele a heslo pro každého poskytovatele"],"User Name":[null,"Uživatelské jméno"],"Change Show":[null,"Změnit seriál"],"Prev Show":[null,"Předchozí Seriál"],"Next Show":[null,"Další seriál"],"Jump to Season":[null,"Přeskočit na sérii"],"Specials":[null,"Speciály"],"Poster for":[null,"Plakát pro"],"Stars":[null,"Hvězdy"],"minutes":[null,"minut"],"View other popular {genre} shows on trakt.tv.":[null,""],"View other popular {imdbgenre} shows on IMDB.":[null,""],"Allowed":[null,"Nejlepší"],"Preferred":[null,"Přijatelná"],"Originally Airs":[null,"Oficiální vysílání"],"Show Status":[null,"Stav seriálu"],"Default EP Status":[null,"Výchozí stav epizody"],"Location":[null,"Umístění"],"Missing":[null,"Chybějící"],"Scene Name":[null,"Název pořadu"],"Required Words":[null,""],"Ignored Words":[null,"Ignorovaná slova"],"Size":[null,"Velikost"],"Info Language":[null,"Jazyk informací"],"Subtitles SR Metadata":[null,"Metada SR titulek"],"Season Folders":[null,"Složky sérií"],"Paused":[null,"Pozastaveno"],"Air-by-Date":[null,"Vysílání-dle-data"],"Sports":[null,"Sporty"],"DVD Order":[null,"DVD třídění"],"Scene Numbering":[null,"Číslování dílů"],"Select Filtered Episodes":[null,"Vyberte filtrované epizody"],"Clear All":[null,"Vymazat vše"],"Change selected episodes to":[null,"Změnit vybrané epizody na"],"Select Columns":[null,"Vybrat sloupce"],"Hide Episodes":[null,""],"Show Episodes":[null,""],"NFO":[null,"NFO"],"TBN":[null,"TBN"],"Episode":[null,"Epizoda"],"Absolute":[null,""],"Scene":[null,"Pořad"],"Scene Absolute":[null,""],"File Name":[null,"Název souboru"],"Airdate":[null,"Vysílací čas"],"Download":[null,"Stáhnout"],"Change the value here if scene numbering differs from the indexer episode numbering":[null,"Změňte hodnotu, pokud se číslování dílů liší od číslování epizod indexerem"],"Change the value here if scene absolute numbering differs from the indexer absolute numbering":[null,""],"Manual Search":[null,""],"Do you want to mark this episode as failed?":[null,""],"The episode release name will be added to the failed history, preventing it to be downloaded again.":[null,""],"Do you want to include the current episode quality in the search?":[null,""],"Choosing No will ignore any releases with the same episode quality as the one currently downloaded/snatched.":[null,"Klepnutím na Ne bude ignorovat všechny verze ve stejné kvalitě epizody jako je současná stažená/nalezená."],"Download subtitle":[null,"Stáhnout titulky"],"Do you want to re-download the subtitle for this language?":[null,""],"It will overwrite your current subtitle":[null,""],"Format":[null,"Formát"],"Advanced":[null,"Pokročilé"],"Main Settings":[null,""],"Show Location":[null,""],"Preferred Quality":[null,"Preferovaná kvalita:"],"Default Episode Status":[null,"Výchozí stav epizody"],"this will set the status for future episodes.":[null,""],"this only applies to episode filenames and the contents of metadata files.":[null,""],"search for subtitles":[null,"hledat titulky"],"Use SR Metdata":[null,"Použít metadata SR"],"use SickRage metadata when searching for subtitle, this will override the autodiscovered metadata":[null,""],"pause this show (SickRage will not download episodes)":[null,"pozastavit tento seriál (SickRage nebude stahovat epizody)"],"Format Settings":[null,"Nastavení formátu"],"Air by date":[null,"Vysílání dle data"],"check if the show is released as Show.03.02.2010 rather than Show.S02E03.":[null,""],"in case of an air date conflict between regular and special episodes, the later will be ignored.":[null,""],"check if the show is Anime and episodes are released as Show.265 rather than Show.S02E03":[null,""],"check if the show is a sporting or MMA event released as Show.03.02.2010 rather than Show.S02E03":[null,""],"Season folders":[null,"Složky sérií"],"group episodes by season folder (uncheck to store in a single folder)":[null,""],"search by scene numbering (uncheck to search by indexer numbering)":[null,"vyhledávat podle číslování dílů (odškrtněte pro hledání podle číslování indexeru)"],"use the DVD order instead of the air order":[null,""],"a \"Force Full Update\" is necessary, and if you have existing episodes you need to sort them manually.":[null,""],"comma-separated <i>e.g. \"word1,word2,word3</i>\"":[null,""],"search results with one or more words from this list will be ignored.":[null,""],"e.g. \"word1,word2,word3\"":[null,"např. \"slovo1,slovo2,slovo3\""],"search results with no words from this list will be ignored.":[null,""],"Scene Exception":[null,"Výjimky seriálů"],"this will affect episode search on NZB and torrent providers.":[null,""],"this list appends to the original show name.":[null,""],"WARNING logs":[null,"Log UPOZORNĚNÍ"],"ERROR logs":[null,"Log CHYB"],"There are no events to display.":[null,"Neexistují žádné události k zobrazení."],"Limit":[null,"Limit"],"Layout":[null,"Rozložení"],"HistoryLayout":[null,""],"Compact":[null,"Zkomprimován"],"Detailed":[null,"Podrobné"],"Time":[null,"Čas"],"Provider":[null,"Provider"],"Missing Provider":[null,"Chybějící poskytovatel"],"missing provider":[null,"chybějící poskytovatel"],"Directory":[null,"Adresář"],"Show Name (tvshow.nfo)":[null,"Název Seriálu (tvshow.nfo)"],"Indexer":[null,""],"Enter the folder containing the episode":[null,"Zadejte složku, která obsahuje epizody"],"Process Method to be used":[null,"Vyberte způsob zpracování epizod"],"Copy":[null,"Kopírovat"],"Move":[null,"Přesunout"],"Hard Link":[null,"Pevný odkaz"],"Symbolic Link":[null,"Symbolický odkaz"],"Symbolic Link Reversed":[null,""],"Force already Post Processed Dir/Files":[null,"Vynutit zpracování, už zpracovaných souborů"],"Mark Dir/Files as priority download":[null,"Označ soubory jako prioritní"],"(Check it to replace the file even if it exists at higher quality)":[null,"(Zaškrtněte, pokud chcete zpracovat i když existuje v lepší kvalitě)"],"Delete files and folders":[null,"Odstranit soubory po zracování"],"(Check it to delete files and folders like auto processing)":[null,"(Zaškrtněte, pokud chcete odstranit soubory jako během automatického zpracování)"],"Don't use processing queue":[null,""],"(If checked this will return the result of the process here, but may be slow!)":[null,""],"Mark download as failed":[null,"Označit stažení za neúspěšné"],"Process":[null,"Zpracovat"],"Download subtitles for this show?":[null,"Stáhnout titulky pro tento seriál?"],"use SickRage metadata when searching for subtitle, <br />this will override the autodiscovered metadata":[null,""],"Status for previously aired episodes":[null,"Status dříve odvysílaných epizod"],"Status for all future episodes":[null,"Stav pro všechny budoucí epizody"],"Group episodes by season folder?":[null,""],"Is this show an Anime?":[null,"Je tento seriál Anime?"],"Is this show scene numbered?":[null,"Je tento seriál číslován na díly?"],"Save Defaults":[null,""],"Use current values as the defaults":[null,""],"<p>Select your preferred fansub groups from the <b>Available Groups</b> and add them to the <b>Whitelist</b>. Add groups to the <b>Blacklist</b> to ignore them.</p>\n <p>The <b>Whitelist</b> is checked <i>before</i> the <b>Blacklist</b>.</p>\n <p>Groups are shown as <b>Name</b> | <b>Rating</b> | <b>Number of subbed episodes</b>.</p>\n <p>You may also add any fansub group not listed to either list manually.</p>\n <p>When doing this please note that you can only use groups listed on anidb for this anime.\n <br>If a group is not listed on anidb but subbed this anime, please correct anidb's data.</p>":[null,""],"Whitelist":[null,"Bílá listina"],"Available Groups":[null,"Dostupné skupiny"],"Add to Whitelist":[null,""],"Add to Blacklist":[null,""],"Blacklist":[null,"Černá listina"],"Custom Group":[null,""],"Allowed Quality:":[null,"Nejlepší kvalita:"],"Preferred Quality:":[null,"Přijatelná kvalita:"],"Filter Show Name":[null,"Filtrovat název seriálu"],"Root":[null,"Kořenový adresář"],"All":[null,"Vše"],"Clear Filter(s)":[null,"Vymazat filtry"],"Poster":[null,"Plakáty"],"Small Poster":[null,"Malé plakáty"],"Banner":[null,"Banner"],"Simple":[null,"Jednoduché"],"Next Episode":[null,"Epizoda"],"Progress":[null,"Pokroku"],"Direction":[null,"Řazení"],"Ascending":[null,"Vzestupně"],"Descending":[null,"Sestupně"],"Poster Size":[null,"Velikost plakátu"],"Continuing":[null,"Pokračuje"],"Ended":[null,"Ukončeno"],"Total":[null,"Celkem"],"Invalid date":[null,"Neplatné datum"],"No Network":[null,"Žádná síť"],"Next Ep":[null,"Další díl"],"Prev Ep":[null,"Předchozí díl"],"Show":[null,"Seriál"],"Downloads":[null,"Staženo"],"Active":[null,"Aktivní"],"loading":[null,"načítání"],"Loading...":[null,"Načítám..."],"<p><b><u>Preferred</u></b> qualities will replace those in <b><u>allowed</u></b>, even if they are lower.</p>":[null,""],"New":[null,"Nový"],"Set as Default":[null,"Nastavit jako výchozí"],"Remember me":[null,"Pamatovat si mě"],"Edit Selected":[null,""],"Subtitle":[null,"Podtitul"],"Default Ep Status":[null,"Výchozí stav epizody"],"Update":[null,"Aktualizace"],"Rescan":[null,"Přeskenovat"],"Rename":[null,"Přejmenovat"],"Search Subtitle":[null,"Hledat titulky"],"Force Metadata Regen":[null,""],"Snatched (Allowed)":[null,"Nalezeno (Přijatelné)"],"Jump to Show":[null,"Přeskočit na seriál"],"Force Backlog":[null,""],"Manage episodes with status":[null,""],"Manage":[null,"Spravovat"],"None of your episodes have status":[null,""],"Shows containing":[null,"Obsahující pořady"],"episodes":[null,"epizody"],"Set checked shows/episodes to":[null,"Nastavit vybrané pořady/epizody na"],"Go":[null,"Přejít"],"Select all":[null,"Vybrat vše"],"Clear all":[null,"Vymazat vše"],"Release":[null,"Vydání"],"Backlog Search":[null,"Backlog vyhledávání"],"Not in progress":[null,"Neprobíhá"],"In Progress":[null,"V průběhu"],"Daily Search":[null,"Každodenní vyhledávání"],"Find Propers Search":[null,"Najít Propers hledání"],"Propers search disabled":[null,""],"Subtitle Search":[null,"Hledat titulky"],"Subtitle search disabled":[null,"Vyhledávání titulků zakázáno"],"Search Queue":[null,"Hledat frontu"],"pending items":[null,"nevyřízené položky"],"Daily":[null,"Denně"],"Manual":[null,"Manuál"],"Changing any settings marked with (<span class=\"separator\">*</span>) will force a refresh of the selected shows.":[null,""],"Selected Shows":[null,"Vybrané seriály"],"Root Directories":[null,"Kořenové adresáře"],"Current":[null,"Aktuální"],"Keep":[null,"Zachovat"],"Custom":[null,"Vlastní"],"Group episodes by season folder (set to \"No\" to store in a single folder).":[null,""],"Pause these shows (SickRage will not download episodes).":[null,"Pozastavit tyto seriály (SickRage nebude stahovat epizody)."],"This will set the status for future episodes.":[null,""],"Search by scene numbering (set to \"No\" to search by indexer numbering).":[null,""],"Set if these shows are Anime and episodes are released as Show.265 rather than Show.S02E03":[null,""],"Set if these shows are sporting or MMA events released as Show.03.02.2010 rather than Show.S02E03.":[null,""],"In case of an air date conflict between regular and special episodes, the later will be ignored.":[null,""],"Set if these shows are released as Show.03.02.2010 rather than Show.S02E03.":[null,""],"Search for subtitles.":[null,"Hledat titulky."],"All of your episodes have {subsLanguage} subtitles.":[null,"Všechny vaše epizody mají {subsLanguage} titulky."],"Manage episodes without":[null,""],"Episodes without {subsLanguage} subtitles.":[null,"Epizody bez {subsLanguage} titulků."],"Episodes without {subtitleLanguage} (undefined) subtitles.":[null,"Epizody bez {subtitleLanguage} (nedefinových) titulků."],"Download missed subtitles for selected episodes":[null,"Stáhnout chybějící titulky pro vybrané epizody"],"Performing Restart":[null,""],"Waiting for SickRage to shut down":[null,""],"Waiting for SickRage to start again":[null,""],"Loading the default page":[null,"Načítám výchozí stránku"],"Error: The restart has timed out, perhaps something prevented SickRage from starting again?":[null,""],"Key":[null,"Legenda"],"Missed":[null,"Zmeškané"],"Today":[null,"Dnes"],"Soon":[null,"Brzy"],"Later":[null,"Později"],"Subscribe":[null,"Odebírat"],"Date":[null,"Datum"],"View Paused":[null,"Zobrazit pozastavené"],"Hidden":[null,"Skrýt"],"Shown":[null,"Zobrazit"],"Calendar":[null,"Kalendář"],"List":[null,"Seznam"],"Ends":[null,"Konec vysílání"],"Next Ep Name":[null,"Jméno dílu"],"Run time":[null,"Délka"],"Indexers":[null,"Indexy"],"No shows for this day":[null,"Žádné seriály pro tento den"],"Airs":[null,"Vysílá"],"Plot":[null,"Zápletka"],"Show Update":[null,"Zobrazit aktualizace"],"Version Check":[null,"Kontrola verze"],"Proper Finder":[null,""],"Post Process":[null,"Finální zpracování"],"Subtitles Finder":[null,"Vyhledávač titulků"],"Scheduler":[null,"Rozvrh"],"Alive":[null,"Živý"],"Start Time":[null,"Čas zahájení"],"Cycle Time":[null,"Čas cyklu"],"Next Run":[null,"Další spuštění"],"Last Run":[null,"Poslední spuštění"],"Silent":[null,"Tichý"],"True":[null,"Pravda"],"N/A":[null,"NENÍ K DISPOZICI"],"Show id":[null,"Zobrazit id"],"Show name":[null,"Název seriálu"],"Priority":[null,"Priorita"],"Added":[null,"Přidáno"],"Queue type":[null,"Typ fronty"],"LOW":[null,"NÍZKÉ"],"NORMAL":[null,"NORMÁLNÍ"],"HIGH":[null,"VYSOKÉ"],"Disk Space":[null,"Místo na disku"],"Free space":[null,"Volné místo"],"TV Download Directory":[null,"Adresář pro stahování TV"],"Media Root Directories":[null,"Kořenové adresáře médií"],"Preview of the proposed name changes":[null,"Náhled navrhovaných změn názvů"],"All Seasons":[null,"Všechny série"],"select all":[null,""],"Rename Selected":[null,"Přejmenovat vybrané"],"Cancel Rename":[null,"Zrušit přejmenování"],"Old Location":[null,"Staré místo"],"New Location":[null,"Nové místo"],"Trakt API did not return any results, please check your config.":[null,""],"votes":[null,"hlasy"],"Remove Show":[null,"Odstranit seriál"],"Level":[null,""],"Filter":[null,""],"All non-absolute folder locations are relative to ":[null,""],"Manual Post-Processing":[null,"Ruční finální zpracování"],"Episode Status Management":[null,"Správa stavu epizod"],"Update PLEX":[null,"Aktualizovat PLEX"],"Update KODI":[null,"Aktualizace KODI"],"Update Emby":[null,"Aktualizovat Emby"],"Missed Subtitle Management":[null,"Správa chybějících titulků"],"Help & Info":[null,"Nápověda & info"],"Backup & Restore":[null,"Záloha & Obnovení"],"Tools":[null,"Nástroje"],"Support SickRage":[null,"Podpořte SickRage"],"View Errors":[null,"Zobrazit chyby"],"View Warnings":[null,"Zobrazit varování"],"View Log":[null,"Zobrazit log"],"Check For Updates":[null,"Zkontrolovat aktualizace"],"Restart":[null,"Restartovat"],"Shutdown":[null,"Vypnout"],"Logout":[null,"Odhlásit"],"Server Status":[null,"Stav serveru"],"View overview of snatched episodes":[null,"Zobrazit přehled nalezených epizod"],"Episodes Downloaded":[null,"Stažených epizod"],"Memory used":[null,"Využití paměti"],"Load time":[null,"Doba načteční"],"Branch":[null,"Větev"],"Now":[null,"Teď"]}}}} \ No newline at end of file +{"messages":{"domain":"messages","locale_data":{"messages":{"100":[null,"100"],"250":[null,"250"],"500":[null,"300"],"":{"domain":"messages","plural_forms":"nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;","lang":"cs_CZ"},"Drama":[null,"Drama"],"Mystery":[null,"Mysteriózní"],"Science-Fiction":[null,"Science-Fiction"],"Crime":[null,"Krimi"],"Action":[null,"Akce"],"Comedy":[null,"Komedie"],"Thriller":[null,"Thriller"],"Animation":[null,"Animovaný"],"Family":[null,"Rodinný"],"Fantasy":[null,"Fantasy"],"Adventure":[null,"Dobrodružný"],"Horror":[null,"Horor"],"Film-Noir":[null,"Film-Noir"],"Sci-Fi":[null,"Sci-Fi"],"Romance":[null,"Romantický"],"Sport":[null,"Sport"],"War":[null,"Válka"],"Biography":[null,"Životopis"],"History":[null,"Historie"],"Music":[null,"Hudba"],"Western":[null,"Western"],"News":[null,"Novinky"],"Sitcom":[null,"Sitcom"],"Reality-TV":[null,"Reality-TV"],"Documentary":[null,"Dokumentární"],"Game-Show":[null,"Game-Show"],"Musical":[null,"Hudební"],"Talk-Show":[null,"Talk-Show"],"Started Download":[null,"Spuštěno stahování"],"Download Finished":[null,"Stahování dokončeno"],"Subtitle Download Finished":[null,"Titulky staženy"],"SickRage Updated":[null,"SickRage aktualizován"],"SickRage Updated To Commit#: ":[null,"SickRage aktualizován na verzi #: "],"SickRage new login":[null,"SickRage nové přihlášení"],"New login from IP: {0}. http://geomaplookup.net/?ip={0}":[null,"Nové přihlášení z IP adresy: {0}. http://geomaplookup.NET/?IP={0}"],"Repeat":[null,"Opakovat"],"Repeat (Separated)":[null,"Opakování (oddělené)"],"Extend":[null,"Rozšířit"],"Extend (Limited)":[null,"Rozšíření (omezené)"],"Extend (Limited, E-prefixed)":[null,"Rozšíření (omezené, s předponou E)"],"Downloaded":[null,"Staženo"],"Snatched":[null,"Nalezeno"],"Snatched (Proper)":[null,"Nalezeno (Přijatelná)"],"Failed":[null,"Selhalo"],"Snatched (Best)":[null,"Nalezeno (Nejlepší)"],"Archived":[null,"Archivováno"],"Unknown":[null,"Neznámý"],"Unaired":[null,"Nevysíláno"],"Skipped":[null,"Přeskočeno"],"Wanted":[null,"Požadováno"],"Ignored":[null,"Ignorováno"],"Subtitled":[null,"S titulky"],"For best results please set the Download Station alias as":[null,""],"You can check this setting in the Synology DSM":[null,""],"Control Panel":[null,"Ovládací panel"],"Application Portal":[null,"Aplikační portál"],"Make sure you allow DSM to be embedded with iFrames too in":[null,""],"DSM Settings":[null,"DSM nastavení"],"Security":[null,"Zabezpečení"],"<No Filter>":[null,"<Bez filtru>"],"Daily Searcher":[null,"Každodenní vyhledávání"],"Backlog":[null,"Nevyřízené"],"Show Updater":[null,"Aktualizace seriálu"],"Check Version":[null,"Zkontrolovat verzi"],"Show Queue":[null,"Zobrazit frontu"],"Search Queue (All)":[null,"Hledání fronty (vše)"],"Search Queue (Daily Searcher)":[null,"Vyhledávat frontu (denní vyhledávání)"],"Search Queue (Backlog)":[null,"Vyhledávat frontu (Resty)"],"Search Queue (Manual)":[null,"Vyhledávat frontu (Manuálně)"],"Search Queue (Retry/Failed)":[null,"Sickbeard/logger. py484"],"Search Queue (RSS)":[null,"Vyhledávat frontu (RSS)"],"Find Propers":[null,"Najít Propers"],"Postprocessor":[null,"Postprocesor"],"Find Subtitles":[null,"Najít titulky"],"Trakt Checker":[null,"Kontrola Traktu"],"Event":[null,"Událost"],"Error":[null,"Chyba"],"Tornado":[null,"Tornado"],"Thread":[null,"Vlákno"],"Main":[null,"Hlavní"],"Loading":[null,"Ukáž frontu"],"New update found for SickRage, starting auto-updater":[null,"Nová aktualizace pro SickRage, spouštím auto-updater"],"Update was successful":[null,"Aktualizace byla úspěšná"],"Update failed!":[null,"Aktualizace se nezdařila!"],"Backup":[null,"Zálohovat"],"Config backup in progress...":[null,"Probíhá záloha konfigurace..."],"Config backup successful, updating...":[null,"Záloha konfigurace úspěšná, aktualizuji..."],"Config backup failed, aborting update":[null,"Záloha konfigurace se nezdařila, ruším aktualizaci"],"No update needed":[null,"Aktualizace není potřeba"],"Mako Error":[null,"Mako chyba"],"Oops":[null,"Chybička se vloudila"],"Wrong API key used":[null,"Použit chybný API klíč"],"Login":[null,"Přihlášení"],"API Key not generated":[null,"Nevygenerován API klíč"],"API Builder":[null,"API Builder"],"Schedule":[null,"Program"],"Test 1":[null,"Test 1"],"This is test number 1":[null,"Toto je test číslo 1"],"Test 2":[null,"Test 2"],"This is test number 2":[null,"To je test číslo 2"],"You're using the {branch} branch. Please use 'master' unless specifically asked":[null,""],"Invalid show parameters":[null,"Neplatné parametry seriálu"],"Invalid parameters":[null,""],"Episode couldn't be retrieved":[null,"Epizodu se nepodařilo nalézt"],"Home":[null,"Hlavní strana"],"Show List":[null,"Seznam seriálů"],"Error: Unsupported Request. Send jsonp request with 'callback' variable in the query string.":[null,"Chyba: Nepodporovaný požadavek. Odešlete žádost jsonp s proměnnou 'callback' v řetězci dotazu."],"Success. Connected and authenticated":[null,"Povedlo se. Připojeno a přihlášeno"],"Authentication failed. SABnzbd expects":[null,"Autentizace selhala. SABnzbd očekává"],"as authentication method":[null,"jako metodu ověřování"],"Unable to connect to host":[null,"Nelze se připojit k hostiteli"],"SMS sent successfully":[null,"SMS odeslána úspěšně"],"Problem sending SMS: {message}":[null,"Problém při odesílání SMS: {message}"],"Telegram notification succeeded. Check your Telegram clients to make sure it worked":[null,"Oznámení Telegram bylo úspěšně dokončeno. Zkontrolujte své klienty Telegram, a ujistěte se, že to fungovalo"],"Error sending Telegram notification: {message}":[null,"Chyba při odesílání oznámení Telegram: {message}"],"join notification succeeded. Check your join clients to make sure it worked":[null,""],"Error sending join notification: {message}":[null,"Chyba při odesílání notifikace join: {message}"]," with password":[null," s heslem"],"Registered and Tested growl successfully {growl_host}":[null,"Registrace a testování Growl se zdařila {growl_host}"],"Registration and Testing of growl failed {growl_host}":[null,"Registrace a testování Growl se nezdařilo {growl_host}"],"Test prowl notice sent successfully":[null,"Zkouška Prowl upozornění úspěšně odeslána"],"Test prowl notice failed":[null,"Zkouška Prowl upozornění se nezdařila"],"Boxcar2 notification succeeded. Check your Boxcar2 clients to make sure it worked":[null,"Boxcar2 oznámení bylo úspěšné. Zkontrolujte vaše klienty Boxcar2 a ujistěte se, že to fungovalo"],"Error sending Boxcar2 notification":[null,"Chyba při odesíláni Boxcar2 upozornění"],"Pushover notification succeeded. Check your Pushover clients to make sure it worked":[null,"Pushover oznámení bylo úspěšné. Zkontrolujte vaše klienty Pushover a ujistěte se, že to fungovalo"],"Error sending Pushover notification":[null,"Chyba při odesílání Pushover oznámení"],"Key verification successful":[null,"Ověření klíče úspěšné"],"Unable to verify key":[null,"Nelze ověřit klíč"],"Tweet successful, check your twitter to make sure it worked":[null,"Tweet úspěšný. Zkontrolujte vaše Twitter klienty a ujistěte se, že to fungovalo"],"Error sending tweet":[null,"Chyba při odesílání Tweetu"],"Please enter a valid account sid":[null,"Prosím zadejte platný sid účtu"],"Please enter a valid auth token":[null,"Prosím zadejte platný autorizační token"],"Please enter a valid phone sid":[null,"Prosím zadejte platné telefonní sid"],"Please format the phone number as \"+1-###-###-####\"":[null,""],"Authorization successful and number ownership verified":[null,""],"Error sending sms":[null,"Chyba při odesílání sms"],"Slack message successful":[null,"Slack zpráva odeslána"],"Slack message failed":[null,"Slack zpráva selhala"],"Discord message successful":[null,""],"Discord message failed":[null,""],"Test KODI notice sent successfully to {kodi_host}":[null,"Zkouška KODI oznámení úspěšně odeslána na {kodi_host}"],"Test KODI notice failed to {kodi_host}":[null,"Zkouška KODI oznámení se nezdařila {kodi_host}"],"Successful test notice sent to Plex Home Theater ... {plex_clients}":[null,"Zkouška oznámení úspěšně odeslána na Plex Home Theater... {plex_clients}"],"Test failed for Plex Home Theater ... {plex_clients}":[null,"Zkouška oznámení pro Plex Home Theater se nezdařila... {plex_clients}"],"Tested Plex Home Theater(s)":[null,"Testované Plex Home Theater(s)"],"Successful test of Plex Media Server(s) ... {plex_servers}":[null,"Test Plex Media Serveru(ů) úspěšný... {plex_servers}"],"Test failed, No Plex Media Server host specified":[null,"Test se nezdařil, nespecifikován hostitel Plex Media Serveru"],"Test failed for Plex Media Server(s) ... {plex_servers}":[null,"Test Plex Media Serveru se nezdařil... {plex_servers}"],"Tested Plex Media Server host(s)":[null,"Hostitel Plex Media Serveru otestován"],"Tried sending desktop notification via libnotify":[null,"Pokus o zaslání oznámení prostřednictvím libnotify"],"Test notice sent successfully to {emby_host}":[null,"Test oznámení úspěšně odeslán na {emby_host}"],"Test notice failed to {emby_host}":[null,"Test oznámení na {emby_host} se nezdařil"],"Successfully started the scan update":[null,"Prohledávání úspěšně zahájeno"],"Test failed to start the scan update":[null,"Testu se nepodařilo spustit aktualizaci skenování"],"Test notice sent successfully to {nmj2_host}":[null,"Test oznámení úspěšně odeslán na {nmj2_host}"],"Test notice failed to {nmj2_host}":[null,"Test oznámení na {nmj2_host} se nezdařil"],"Trakt Authorized":[null,"Trakt autorizován"],"Trakt Not Authorized!":[null,"Trakt neautorizován!"],"Test email sent successfully! Check inbox.":[null,"Zkušební e-mail úspěšně odeslán! Zkontrolujte si svojí schránku."],"ERROR: {last_error}":[null,"CHYBA: {last_error}"],"Test NMA notice sent successfully":[null,"Zkouška NMA upozornění úspěšně odeslána"],"Test NMA notice failed":[null,"Zkouška NMA upozornění se nezdařila"],"Pushalot notification succeeded. Check your Pushalot clients to make sure it worked":[null,"Pushalot oznámení bylo úspěšné. Zkontrolujte vaše klienty Pushalot a ujistěte se, že to fungovalo"],"Error sending Pushalot notification":[null,"Chyba při odesílání Pushalot oznámení"],"Pushbullet notification succeeded. Check your device to make sure it worked":[null,"Pushbullet oznámení bylo úspěšné. Zkontrolujte vaše klienty Pushbullet a ujistěte se, že to fungovalo"],"Error sending Pushbullet notification":[null,"Chyba při odesílání Pushbullet oznámení"],"Status":[null,"Status"],"Restarting SickRage":[null,"Restartuji SickRage"],"Update Failed":[null,"Aktualizace selhala"],"Update wasn't successful, not restarting. Check your log for more information.":[null,"Aktualizace byla neúspěšná, restart nebude proveden. Více informací v logu."],"Checking out branch":[null,"Kontroluji větev"],"Already on branch":[null,"K této větvi jste už přihlášen"],"Invalid show ID: {show}":[null,"Neplatné ID seriálu: {show}"],"Show not in show list":[null,"Seriál není v seznamu pořadů"],"Edit":[null,"Upravit"],"This show is in the process of being downloaded - the info below is incomplete.":[null,"Tento seriál je v průběhu nebo je právě stahován - informace níže jsou neúplné."],"The information on this page is in the process of being updated.":[null,"Informace na této stránce se právě aktualizují."],"The episodes below are currently being refreshed from disk":[null,"Epizody níže se právě aktualizují z disku"],"Currently downloading subtitles for this show":[null,"Stahuji titulky k tomuto seriálu"],"This show is queued to be refreshed.":[null,"Tento seriál je ve frontě k aktualizaci."],"This show is queued and awaiting an update.":[null,"Tento seriál je ve frontě a čeká na aktualizaci."],"This show is queued and awaiting subtitles download.":[null,"Tento seriál je ve frontě a čeká na stažení titulků."],"Resume":[null,"Pokračovat"],"Pause":[null,"Pozastavit"],"Remove":[null,"Odstranit"],"Re-scan files":[null,"Znovu prohledat soubory"],"Force Full Update":[null,"Vynutit úplnou aktualizaci"],"Update show in KODI":[null,"Aktualizace seriálu v KODI"],"Update show in Emby":[null,"Aktualizace seriálu v Emby"],"Hide specials":[null,"Skrýt speciální"],"Show specials":[null,"Zobrazit speciální"],"Preview Rename":[null,"Náhled přejmenování"],"Download Subtitles":[null,"Stáhnout titulky"],"No scene exceptions":[null,"Žádné výjimky pořadů"],"Invalid show ID":[null,"Neplatné ID seriálu"],"Unable to find the specified show":[null,"Nepodařilo se nalézt zadaný seriál"],"Unable to retreive Fansub Groups from AniDB.":[null,"Nelze načíst Fansub skupiny z AniDB."],"Edit Show":[null,"Upravit seriál"],"Unable to refresh this show: {error}":[null,"Nepodařilo se aktualizovat tento pořad: {error}"],"New location <tt>{location}</tt> does not exist":[null,"Nové umístění <tt>{location}</tt> neexistuje"],"Unable to update show: {error}":[null,"Nepodařilo se aktualizovat seriál: {error}"],"Unable to force an update on scene exceptions of the show.":[null,"Nelze vynutit aktualizaci výjimek epizod seriálu."],"Unable to force an update on scene numbering of the show.":[null,"Nelze vynutit aktualizaci číslování dílů seriálu."],"{num_errors:d} error{plural} while saving changes:":[null,""],"{show_name} has been {paused_resumed}":[null,"{show_name} byl {paused_resumed}"],"resumed":[null,"obnoven"],"paused":[null,"pozastaveno"],"{show_name} has been {deleted_trashed} {was_deleted}":[null,"{show_name} byl {deleted_trashed} {was_deleted}"],"deleted":[null,"smazáno"],"trashed":[null,"přeunut do koše"],"(media untouched)":[null,"(media untouched)"],"(with all related media)":[null,"(with all related media)"],"Unable to refresh this show.":[null,"Nelze obnovit tento seriál."],"Unable to update this show.":[null,"Nelze aktualizovat tento seriál."],"Library update command sent to KODI host(s)): {kodi_hosts}":[null,"Příkaz k aktualizaci knihovny KODI byl odeslán: {kodi_hosts}"],"Unable to contact one or more KODI host(s)): {kodi_hosts}":[null,"KODI se nepodařilo kontaktovat: {kodi_hosts}"],"Library update command sent to Plex Media Server host: {plex_server}":[null,"Příkaz aktualizace knihovny odeslán do Plex Media Server host: {plex_server}"],"Unable to contact Plex Media Server host: {plex_server}":[null,"Nelze navázat spojení s Plex Media Server host: {plex_server}"],"Library update command sent to Emby host: {emby_host}":[null,"Příkaz aktualizace knihovny odeslán do Emby host: {emby_host}"],"Unable to contact Emby host: {emby_host}":[null,"Nelze navázat spojení s Emby host: {emby_host}"],"You must specify a show and at least one episode":[null,"Specifikujte seriál a alespoň jednu epizodu"],"Invalid status":[null,"Neplatný stav"],"Backlog was automatically started for the following seasons of <b>{show_name}</b>":[null,"Backlog byl automaticky spuštěn pro následující sezóny seriálu <b>{show_name}</b>"],"Season":[null,"Série"],"Backlog started":[null,"Backlog spuštěn"],"Retrying Search was automatically started for the following season of <b>{show_name}</b>":[null,"Opakovené hledání bylo automaticky spuštěno pro následující sezóny seriálu <b>{show_name}</b>"],"Retry Search started":[null,"Opakovené hledání spuštěno"],"You must specify a show":[null,"Musíte zadat seriál"],"Can't rename episodes when the show dir is missing.":[null,"Nelze přejmenovat epizody když chybí složka se seriálem."],"New subtitles downloaded: {new_subtitle_languages}":[null,"Nové titulky staženy: {new_subtitle_languages}"],"No subtitles downloaded":[null,"Žádné titulky staženy"],"IRC":[null,"IRC"],"Could not load news from the repo. [Click here for news.md])({news_url})":[null,"Nelze načíst novinky z repozitáře. [Click here for news.md])({news_url})"],"The was a problem connecting to github, please refresh and try again":[null,"Došlo k problému s připojením k GitHub, aktualizujte stránku a zkuste znovu"],"Could not load changes from the repo. [Click here for CHANGES.md]({changes_url})":[null,""],"Changelog":[null,"Seznam změn"],"Post Processing":[null,"Finální zpracování"],"Add Shows":[null,"Přidat seriály"],"No folders selected.":[null,"Nejsou vybrány žádné složky"],"New Show":[null,"Nový seriál"],"Trending Shows":[null,"Populární seriály"],"Popular Shows":[null,"Populární seriály"],"Most Anticipated Shows":[null,"Nejočekávanější seriály"],"Most Collected Shows":[null,""],"Most Watched Shows":[null,""],"Most Played Shows":[null,""],"Recommended Shows":[null,""],"New Shows":[null,"Nové seriály"],"Season Premieres":[null,"Premiéry nových sérií"],"Existing Show":[null,"Existující seriál"],"No root directories setup, please go back and add one.":[null,""],"Show added":[null,"Seriál přidán"],"Adding the specified show {show_name}":[null,""],"Missing params, no Indexer ID or folder: {show_to_add} and {root_dir}/{show_path}":[null,""],"Unknown error. Unable to add show due to problem with show selection.":[null,""],"Unable to add show":[null,"Nelze přidat seriál"],"Folder {show_dir} exists already":[null,"Složka {show_dir} již existuje"],"Unable to create the folder {show_dir}, can't add the show":[null,""],"Adding the specified show into {show_dir}":[null,""],"Shows Added":[null,"Seriály přidány"],"Automatically added {num_shows} from their existing metadata files":[null,""],"Mass Update":[null,"Hromadná aktualizace"],"Episode Overview":[null,"Přehled epizod"],"Missing Subtitles":[null,"Chybějící titulky"],"Backlog Overview":[null,"Přehled backlog"],"Mass Edit":[null,"Hromadně upravit"],"Unable to update show: {excption_format}":[null,"Nepodařilo se aktualizovat seriál: {excption_format}"],"Unable to refresh show {show_name}: {excption_format}":[null,"Nelze aktualizovat seriál {show_name}: {excption_format}"],"Errors encountered":[null,"Byly zjištěny chyby"],"Updates":[null,"Aktualizace"],"Refreshes":[null,"Obnovuje se"],"Renames":[null,"Přejmenovává se"],"Subtitles":[null,"Titulky"],"The following actions were queued":[null,"Tyto akce byly ve frontě"],"Failed Downloads":[null,"Nepovedená stahování"],"Manage Searches":[null,"Spravovat vyhledávače"],"Backlog search started":[null,"Backlog vyhledávání začalo"],"Daily search started":[null,"Každodenní vyhledávání začalo"],"Find propers search started":[null,"Vyhledávání propers začalo"],"Subtitle search started":[null,"Vyhledávání titulů začalo"],"Remove Selected":[null,""],"Clear History":[null,"Odstranit historii"],"Trim History":[null,"Zredukovat historii"],"Selected history entries removed":[null,""],"History cleared":[null,"Historie odstraněna"],"Removed history entries older than 30 days":[null,"Odstranit historii starší než 30 dní"],"General":[null,"Základní"],"Backup/Restore":[null,"Záloha / Obnova"],"Search Settings":[null,"Nastavení vyhledávání"],"Search Providers":[null,"Nastavení poskytovatelů"],"Subtitles Settings":[null,"Nastavení titulků"],"Notifications":[null,"Notifikace"],"Anime":[null,"Anime"],"SickRage Configuration":[null,"SickRage konfigurace"],"Config - Shares":[null,""],"Windows Shares Configuration":[null,""],"Saved Shares":[null,""],"Your Windows share settings have been saved":[null,""],"Config - General":[null,"Nastavení - Obecné"],"General Configuration":[null,"Základní nastavení"],"Saved Defaults":[null,"Uložit výchozí"],"Your \"add show\" defaults have been set to your current selections.":[null,""],"Unable to create directory {directory}, log directory not changed.":[null,"Nelze vytvořit adresář {directory}, adresář logu nezměněn."],"Unable to create directory {directory}, https cert directory not changed.":[null,"Nelze vytvořit adresář {directory}, adresář https certifikátů nezměněn."],"Unable to create directory {directory}, https key directory not changed.":[null,"Nelze vytvořit adresář {directory}, adresář https klíčů nezměněn."],"Error(s) Saving Configuration":[null,"Nastala chyba během ukládání konfigurace"],"Configuration Saved":[null,"Konfigurace uložena"],"Config - Backup/Restore":[null,"Nastavení - Záloha / Obnova"],"Config - Episode Search":[null,"Nastavení - Vyhledávání epizod"],"Config - Post Processing":[null,"Nastavení - Finální zpracování"],"Unpacking Not Supported, disabling unpack setting":[null,"Rozbalování není podporováno, robzalování zůstalo vypnuto"],"You tried saving an invalid normal naming config, not saving your naming settings":[null,""],"You tried saving an invalid anime naming config, not saving your naming settings":[null,""],"Config - Providers":[null,"Nastavení - Poskytovatelé"],"No Provider Name specified":[null,"Není zadaný žádný název poskytovatele"],"No Provider Url specified":[null,"Není zadaná Url poskytovatele"],"No Provider Api key specified":[null,"Není zadán Api klíč poskytovatele"],"Config - Notifications":[null,"Nastavení - Notifikace"],"Config - Subtitles":[null,"Nastavení - Titulky"],"Config - Anime":[null,"Nastavení - Anime"],"Clear Errors":[null,"Vymazat chyby"],"Clear Warnings":[null,"Vymazat varování"],"Submit Errors":[null,"Odeslat chyby"],"Logs & Errors":[null,"Logy & chyb"],"Log File":[null,"Soubor logu"],"Logs":[null,"Logy"],"This is a test notification from SickRage":[null,""],"Choose Directory":[null,""],"Select log file folder location":[null,""],"Select CSS file":[null,""],"Select backup folder to save to":[null,""],"Select backup files to restore":[null,""],"Please fill out the necessary fields above.":[null,""],"<b>Step 1:</b> Confirm Authorization":[null,""],"Check blacklist name; the value needs to be a trakt slug":[null,""],"You must provide a recipient email address!":[null,""],"You didn't supply a Pushbullet api key":[null,""],"Don't forget to save your new pushbullet settings.":[null,""],"Select TV Download Directory":[null,""],"Select Unpack Directory":[null,""],"This pattern is invalid.":[null,""],"This pattern would be invalid without the folders, using it will force \"Season Folders\" on for all shows.":[null,""],"This pattern is valid.":[null,""],"Select .nzb black hole/watch location":[null,""],"Select .torrent black hole/watch location":[null,""],"Select .torrent download location":[null,""],"Minimum seeding time is":[null,""],"URL to your uTorrent client (e.g. http://localhost:8000)":[null,""],"Stop seeding when inactive for":[null,""],"URL to your Transmission client (e.g. http://localhost:9091)":[null,""],"URL to your Deluge client (e.g. http://localhost:8112)":[null,""],"IP or Hostname of your Deluge Daemon (e.g. scgi://localhost:58846)":[null,""],"URL to your Synology DS client (e.g. http://localhost:5000)":[null,""],"URL to your rTorrent client (e.g. scgi://localhost:5000 <br> or https://localhost/rutorrent/plugins/httprpc/action.php)":[null,""],"URL to your qBittorrent client (e.g. http://localhost:8080)":[null,""],"URL to your MLDonkey (e.g. http://localhost:4080)":[null,""],"URL to your putio client (e.g. http://localhost:8080)":[null,""],"<a herf=\"https://app.put.io/oauth/apps/new\" target=\"_blank\"> Create a new OAuth app for put.io</a>":[null,""],"Put.io Parent Folder":[null,""],"Put.io OAuth Token":[null,""],"Show Episodes":[null,""],"Hide Episodes":[null,""],"Select Show Location":[null,""],"Select Unprocessed Episode Folder":[null,""],"DELETED":[null,""],"Resume updating the log on this page.":[null,""],"Pause updating the log on this page.":[null,""],"searching {searchingFor}...":[null,""],"search timed out, try again or try another indexer":[null,""],"loading folders...":[null,""],"Loading...":[null,"Načítám..."],"You have reached this page by accident, please check the url.":[null,"Sem jste se dostali omylem, zkontrolujte si url."],"A mako error has occured.<br>\n If this happened during an update a simple page refresh may be the solution.<br>\n Mako errors that happen during updates may be a one time error if there were significant ui changes.":[null,"Došlo k chybě mako. <br>\n Pokud se toto stalo během aktualizace, pravděpodobně bude stačit stránku obnovit. <br>\n Mako chyby, které se nastanou během aktualizace můžou jednorázové, když se změní ui."],"Show/Hide Error":[null,"Zobrazit/skrýt chyby"],"Add New Show":[null,"Přidat nový seriál"],"For shows that you haven't downloaded yet, this option finds a show on theTVDB.com, creates a directory for it's episodes, and adds it to SickRage.":[null,"Vyberte pokud seriál ještě nemáte stažený, tato možnost vyhledá seriál na theTVDB.com, vytvoří adresáře a přidá jej do SickRage."],"Add From Trakt Lists":[null,"Přidat ze seznamu Trakt"],"For shows that you haven't downloaded yet, this option lets you choose from a show from one of the Trakt lists to add to SickRage.":[null,"Vyberte pokud seriál ještě nemáte stažený. Tato možnost Vám nabídne seriál z Trakt listu a přidáho do Sickrage."],"Add From IMDB's Popular Shows":[null,"Přidat oblíbené seriály z IMDB"],"View IMDB's list of the most popular shows. This feature uses IMDB's MOVIEMeter algorithm to identify popular TV Series.":[null,"Zobrazí seznam nejpopulárnějších seriálu na IMDB. Tato funkce používá IMDB MOVIEMEter algoritmus pro výběr populárních pořadů"],"Add Existing Shows":[null,"Přidat existující seriál"],"Use this option to add shows that already have a folder created on your hard drive. SickRage will scan your existing metadata/episodes and add the show accordingly.":[null,"Použijte tuto možnost pro přidání seriálu, který už máte na vašem úložišti. SickRage prohledá složku a podle toho seriál zařadí."],"Add Existing Show":[null,"Přidat existující seriál"],"Manage Directories":[null,"Upravit adresáře"],"Customize Options":[null,"Upravit předvolby"],"SickRage can add existing shows, using the current options, by using locally stored NFO/XML metadata to eliminate user interaction. If you would rather have SickRage prompt you to customize each show, then use the checkbox below.":[null,"SickRage může přidat existující seriál, na základě uložených NFO/XML, metadat bez vašeho zásahu. Pokud by jste raději si upravili každý přidávaný seriál, zaškrtněte dole."],"Prompt me to set settings for each show":[null,"Zobraz nastavení pro každý seriál zvlášť"],"Displaying folders within these directories which aren't already added to SickRage":[null,""],"Submit":[null,"Potvrdit"],"Find a show on theTVDB":[null,"Najdi seriál na thTVDB"],"Show retrieved from existing metadata":[null,""],"All Indexers":[null,"Všechny indexové weby"],"Search":[null,"Vyhledat"],"This will only affect the language of the retrieved metadata file contents and episode filenames.":[null,""],"This <b>DOES NOT</b> allow SickRage to download non-english TV episodes!":[null,"Toto <b>NEUMOŽŇUJE</b> stahování neanglických epizod!"],"Pick the parent folder":[null,"Vybrat nadřazenou složku"],"Pre-chosen Destination Folder":[null,"Předem zvolená cílová složka"],"Customize options":[null,"Upravit předvolby"],"Add Show":[null,"Přidat seriál"],"Skip Show":[null,"Přeskočit seriál"],"Sort By":[null,"Seřadit podle"],"Name":[null,"Jméno"],"Original":[null,"Původní"],"Votes":[null,"Hlasů"],"Rating":[null,"Hodnocení"],"Rating > Votes":[null,"Hodnocení > Hlasy"],"Sort Order":[null,"Seřadit"],"Asc":[null,"Vzestupně"],"Desc":[null,"Sestupně"],"Fetching of IMDB Data failed. Are you online?":[null,"Načítání dat z IMDB selhalo. Jste připojeni?"],"Exception":[null,"Výjimka"],"Select Trakt List":[null,"Vyberte Trakt List"],"Most Anticipated":[null,"Nejočekávanější"],"Trending":[null,"Populární"],"Popular":[null,"Populární"],"Most Watched":[null,"Nejvíce sledované"],"Most Played":[null,"Nejvíce přehrávané"],"Most Collected":[null,"Nejčastěji shromažďovány"],"Recommended":[null,"Doporučené"],"Toggle navigation":[null,"Přepnout navigaci"],"Profile":[null,"Profil"],"JSONP":[null,"JSONP"],"Back to SickRage":[null,"Zpět na SickRage"],"Parameters":[null,"Parametry"],"Required":[null,"Povinné"],"Description":[null,"Popis"],"Type":[null,"Typ"],"Default value":[null,"Výchozí hodnota"],"Allowed values":[null,"Povolené hodnoty"],"Playground":[null,"Hřiště"],"Clear":[null,"Vymazat"],"Yes":[null,"Ok"],"No":[null,"Ne"],"season":[null,"série"],"episode":[null,"epizoda"],"Python Version":[null,"Verze Pythonu"],"SSL Version":[null,"Verze SSL"],"OS":[null,"OS"],"Locale":[null,"Lokalizace"],"User":[null,"Uživatel"],"Program Folder":[null,"Adresář aplikace"],"Config File":[null,"Soubor konfigu"],"Database File":[null,"Soubor databáze"],"Cache Folder":[null,"Složka mezipaměti"],"Log Folder":[null,"Složka logu"],"Arguments":[null,"Argumenty"],"Web Root":[null,"Kořen web stránky"],"Website":[null,"Webová stránka"],"Wiki":[null,"Wiki"],"Source":[null,"Zdrojový kód"],"IRC Chat":[null,"IRC Chat"],"AnimeDB Settings":[null,"Nastavení AnimeDB"],"Look & Feel":[null,"Vzhled & chování"],"AniDB is non-profit database of anime information that is freely open to the public":[null,"AniDB je nezisková databáze informací o anime, která je volně přístupná veřejnosti"],"Enable":[null,"Povolit"],"should SickRage use data from AniDB?":[null,""],"AniDB Username":[null,"AniDB Uživatelské jméno"],"username of your AniDB account":[null,""],"AniDB Password":[null,"AniDB heslo"],"password of your AniDB account":[null,""],"AniDB MyList":[null,"AniDB MyList"],"do you want to add the PostProcessed episodes to the MyList?":[null,""],"Look and Feel":[null,"Vzhled a chování"],"How should the anime functions show and behave.":[null,"Jak by se měla anime funkce zobrazovat a chovat."],"Split show lists":[null,"Rozdělit seznamy seriálů"],"separate anime and normal shows in groups":[null,""],"Split in tabs":[null,""],"use tabs for when splitting show lists":[null,""],"Restore":[null,"Obnovit"],"Backup your main database file and config.":[null,"Zálohovat vaší hlavní databázi a nastavení."],"Select the folder you wish to save your backup file to":[null,"Vyberte složku, do které si přejete uložit zálohu"],"Restore your main database file and config.":[null,"Obnovit vaší hlavní databázi a nastavení."],"Select the backup file you wish to restore":[null,"Vyberte zálohu, kterou chcete obnovit"],"Misc":[null,"Různé"],"Interface":[null,"Vzhled"],"Advanced Settings":[null,"Pokročilá nastavení"],"Startup options. Indexer options. Log and show file locations.":[null,"Možnosti spuštění. Možnosti indexování. Umístění souborů logu a seriálu."],"Some options may require a manual restart to take effect.":[null,"Některá nastavení mohou vyžadovat ruční restartování."],"Default Indexer Language":[null,"Výchozí indexovací jazyk"],"for adding shows and metadata providers":[null,"přo přidání pořadu a poskytovatelů metadat"],"Launch browser":[null,"Spustit prohlížeč"],"open the SickRage home page on startup":[null,"Otevřete domovskou stránku SickRage po spuštění"],"Initial page":[null,"Úvodní stránka"],"Shows":[null,"Seriály"],"when launching SickRage interface":[null,"při spuštění rozhraní SickRage"],"Choose hour to update shows":[null,"Vyberte hodinu k aktualizaci pořadů"],"with information such as next air dates, show ended, etc. Use 15 for 3pm, 4 for 4am etc.":[null,"pro informace jako jsou vysílací časy, ukončení seriálů atd. Napište 15 pro 15: 00, 4 pro 04: 00 atd."],"note":[null,""],"minutes are randomized each time SickRage is started":[null,""],"Send to trash for actions":[null,"\"Odstranit do koše\" pro akce"],"when using show \"Remove\" and delete files":[null,"při odstranění seriálů a souborů"],"on scheduled deletes of the oldest log files":[null,"při plánovaném čištění starých logů"],"selected actions use trash (recycle bin) instead of the default permanent delete":[null,"vybrané akce použijí koš místo trvalého odstranění"],"Log file folder location":[null,"Umístění souborů logu"],"Number of Log files saved":[null,"Počet uložených souborů logu"],"number of log files saved when rotating logs (default: 5) (REQUIRES RESTART)":[null,"počet uložených souborů logů (výchozí: 5)(VYŽADUJE RESTART)"],"Size of Log files saved":[null,"Velikost souboru logu"],"maximum size in MB of the log file (default: 1MB) (REQUIRES RESTART)":[null,"maximální velikost logu v MB (výchozí: 1MB) (VYŽADUJE RESTART)"],"Use initial indexer set to":[null,"Výchozí index"],"as the default selection when adding new shows":[null,"pro získávání informací při přidávání nových seriálů"],"Timeout show indexer at":[null,"Vypršení času indexování po"],"seconds of inactivity when finding new shows (default:20)":[null,"sekundách bez odpovědi, při přidávání nového seriálu (výchozí:20)"],"Show root directories":[null,"Výchozí složky seriálů"],"where the files of shows are located":[null,"kde soubory seriálů jsou uloženy"],"Save Changes":[null,"Uložit změny"],"Options for software updates.":[null,"Nastavení aktualizací softwaru."],"Check software updates":[null,"Kontrola aktualizací"],"and display notifications when updates are available. Checks are run on startup and at the frequency set below*":[null,"a zobrazení upozornění na novou aktualizaci. Kontroly probíhají při startu a při frekvenci nastavené níže*"],"Automatically update":[null,"Automaticky aktualizovat"],"fetch and install software updates. Updates are run on startup and in the background at the frequency set below*":[null,"stáhnout a nainstalovat aktualizace. Aktualizace jsou spuštěny při startu a na pozadí při frekvenci nastavené níže*"],"Check the server every*":[null,"Zkontroluj server každých"],"hours for software updates (default:1)":[null,"hodin pro aktualizace (výchozí:1)"],"Notify on software update":[null,"Upozornit na aktualizaci softwaru"],"send a message to all enabled notifiers when SickRage has been updated":[null,"pošle zprávu na všechny povolené příjemce notifikací, když je SickRage aktualizován"],"User Interface":[null,"Uživatelské rozhraní"],"Options for visual appearance.":[null,"Možnosti vizuálního vzhledu."],"Interface Language":[null,"Jazyk rozhraní"],"System Language":[null,"Jazyk systému"],"for appearance to take effect, save then refresh your browser":[null,"změna se projeví po obnovení prohlížeče"],"Display theme":[null,"Nastavení vzhledu"],"Dark":[null,"Tmavé"],"Light":[null,"Světlé"],"Use a background image":[null,""],"use a custom image as background for SickRage":[null,""],"Background Path":[null,""],"Path to the background image":[null,""],"Show fanart in the background":[null,"Zobrazit fanart na pozadí"],"on the show summary page":[null,"na stránce přehledu seriálu"],"Fanart transparency":[null,"Průhlednost obalu"],"transparency of the fanart in the background":[null,""],"Use a custom stylesheet file":[null,""],"use a custom .css file to style SickRage (for advanced users)":[null,""],"Stylesheet File Path":[null,""],"Path to the stylesheet (.css) file":[null,""],"Show all seasons":[null,"Zobrazit všechny série"],"Sort with \"The\", \"A\", \"An\"":[null,"Třídit s \"The\", \"A\", \"An\""],"include articles (\"The\", \"A\", \"An\") when sorting show lists":[null,"zahrnout \"The\", \"A\", \"An\" při řazení seznamu seriálů"],"Missed episodes range":[null,"Rozsah zmeškaných epizod"],"set the range in days of the missed episodes in the Schedule page":[null,""],"Display fuzzy dates":[null,"Zobrazit nejasné termíny"],"move absolute dates into tooltips and display e.g. \"Last Thu\", \"On Tue\"":[null,""],"Trim zero padding":[null,""],"remove the leading number \"0\" shown on hour of day, and date of month":[null,"odebratní úvodní číslo \"0\" zobrazované v hodině a dni v měsíci"],"Date style":[null,"Formát datumu"],"Use System Default":[null,"Použít výchozí nastavení systému"],"Time style":[null,"Formát času"],"seconds are only shown on the History page":[null,"sekundy se zobrazí pouze na stránce Historie"],"Timezone":[null,"Časové pásmo"],"Local":[null,"Místní"],"Network":[null,"TV kanál"],"display dates and times in either your timezone or the shows network timezone":[null,""],"use local timezone to start searching for episodes minutes after show ends (depends on your dailysearch frequency)":[null,""],"Download url":[null,"Stáhnout url"],"URL where the shows can be downloaded.":[null,"Adresa URL, kam lze stáhnout seriály."],"Web Interface":[null,"Webové rozhraní"],"it is recommended that you enable a username and password to secure SickRage from being tampered with remotely.":[null,""],"these options require a manual restart to take effect.":[null,""],"API key":[null,"API klíč"],"used to give 3rd party programs limited access to SickRage":[null,"umožňuje poskytnout programům 3. stran omezený přístup k SickRage"],"you can try all the features of the API":[null,"můžete vyzkoušet všechny funkce API"],"here":[null,"zde"],"HTTP logs":[null,"HTTP logy"],"enable logs from the internal Tornado web server":[null,"povolí logy u interního Tornado web serveru"],"HTTP username":[null,"HTTP uživatelské jméno"],"set blank for no login":[null,"ponechte prázdné pro žádné přihlášení"],"HTTP password":[null,"HTTP heslo"],"blank = no authentication":[null,"nevyplněno = bez ověření"],"HTTP port":[null,"HTTP port"],"web port to browse and access SickRage (default:8081)":[null,""],"Notify on login":[null,"Upozornit na přihlášení"],"enable to be notified when a new login happens in webserver":[null,""],"Listen on IPv6":[null,""],"attempt binding to any available IPv6 address":[null,""],"Enable HTTPS":[null,"Povolit HTTPS"],"enable access to the web interface using a HTTPS address":[null,"povolit přístup do webového rozhraní pomocí HTTPS adresy"],"HTTPS certificate":[null,"HTTPS certifikát"],"file name or path to HTTPS certificate":[null,"název souboru nebo cesta k HTTPS certifikátu"],"HTTPS key":[null,"HTTPS klíč"],"file name or path to HTTPS key":[null,""],"Reverse proxy headers":[null,""],"accept the following reverse proxy headers (advanced)...":[null,""],"(X-Forwarded-For, X-Forwarded-Host, and X-Forwarded-Proto)":[null,""],"CPU throttling":[null,""],"Normal (default). High is lower and Low is higher CPU use":[null,""],"Anonymous redirect":[null,""],"backlink protection via anonymizer service, must end in \"?\"":[null,""],"Enable debug":[null,"Povolit ladění"],"enable debug logs":[null,""],"Verify SSL Certs":[null,"Ověřit SSL certifikáty"],"verify SSL Certificates (Disable this for broken SSL installs (Like QNAP))":[null,""],"No Restart":[null,"Žádný restart"],"only shutdown when restarting SR":[null,""],"only select this when you have external software restarting SR automatically when it stops (like FireDaemon)":[null,""],"Encrypt passwords":[null,"Šifrovat hesla"],"in the <code>config.ini</code> file":[null,""],"warning":[null,"varování"],"passwords must only contain":[null,""],"ASCII characters":[null,"ASCII znaky"],"Unprotected calendar":[null,"Nechráněný kalendář"],"allow subscribing to the calendar without user and password":[null,""],"some services like Google Calendar only work this way":[null,""],"Google Calendar Icons":[null,"Ikony Google Kalendáře"],"show an icon next to exported calendar events in Google Calendar":[null,""],"Proxy host":[null,"Hostitel proxy"],"blank to disable or proxy to use when connecting to providers":[null,""],"also use global proxy setting for indexers (tvdb, xem, anidb, etc.)":[null,""],"Skip Remove Detection":[null,""],"skip detection of removed files":[null,""],"if disabled the episode will be set to the default deleted status":[null,""],"Default deleted episode status":[null,"Výchozí stav smazaných epizod"],"define the status to be set for media file that has been deleted.":[null,""],"Archived option will keep previous downloaded quality":[null,""],"example: Downloaded (1080p WEB-DL) ==> Archived (1080p WEB-DL)":[null,""],"Options for github related features.":[null,""],"Branch version":[null,"Verze branche"],"error: No branches found.":[null,""],"select branch to use (restart required)":[null,""],"Authorization Type":[null,""],"Username and password":[null,""],"Personal access token":[null,""],"You must use a personal access token if you're using \"two-factor authentication\" on GitHub.":[null,""],"GitHub username":[null,"GitHub uživatelské jméno"],"*** (REQUIRED FOR SUBMITTING ISSUES) ***":[null,"*** (POVINNÉ PRO ODESLÁNÍ PROBLÉMU) ***"],"GitHub password":[null,"GitHub heslo"],"GitHub personal access token":[null,""],"Generate Token":[null,""],"Manage Tokens":[null,""],"GitHub remote for branch":[null,""],"access repo configured remotes (save then refresh browser)":[null,""],"default":[null,"výchozí"],"origin":[null,""],"Git executable path":[null,"Cesta spustitelného Git"],"only needed if OS is unable to locate git from env":[null,""],"Git reset":[null,"Git reset"],"removes untracked files and performs a hard reset on git branch automatically to help resolve update issues":[null,""],"Home Theater / NAS":[null,"Domácí kino / NAS"],"Devices":[null,"Zařízení"],"Social":[null,"Sociální"],"A free and open source cross-platform media center and home entertainment system software with a 10-foot user interface designed for the living-room TV.":[null,""],"send KODI commands?":[null,""],"Always on":[null,"Vždy zapnuto"],"log errors when unreachable?":[null,""],"Notify on snatch":[null,"Oznamovat nalezení"],"send a notification when a download starts?":[null,"odeslat oznámení při zahájení stahování?"],"Notify on download":[null,"Upozornění na stahování"],"send a notification when a download finishes?":[null,"odeslat oznámení po dokončení stahování?"],"Notify on subtitle download":[null,"Upozornit na stažení titulků"],"send a notification when subtitles are downloaded?":[null,"odeslat oznámení po stažení titulků?"],"Update library":[null,"Aktualizace knihovny"],"update KODI library when a download finishes?":[null,"aktualizovat knihovnu KODI po dokončení stahování?"],"Full library update":[null,"Aktualizace celé knihovny"],"perform a full library update if update per-show fails?":[null,""],"Only update first host":[null,""],"only send library updates to the first active host?":[null,""],"KODI IP:Port":[null,"KODI IP:Port"],"host running KODI (eg. 192.168.1.100:8080)":[null,""],"(multiple host strings must be separated by commas)":[null,""],"Username":[null,"Uživatelské jméno"],"username for your KODI server (blank for none)":[null,""],"Password":[null,"Heslo"],"password for your KODI server (blank for none)":[null,""],"Click below to test.":[null,"Klikněte níže pro testování."],"Experience your media on a visually stunning, easy to use interface on your Mac connected to your TV. Your media library has never looked this good!":[null,""],"For sending notifications to Plex Home Theater (PHT) clients, use the KODI notifier with port <b>3005</b>.":[null,""],"send Plex Media Server library updates?":[null,""],"Plex Media Server Auth Token":[null,""],"auth token used by Plex":[null,""],"Update Library":[null,""],"update Plex Media Server library when a download finishes":[null,""],"Plex Media Server IP:Port":[null,""],"one or more hosts running Plex Media Server<br/>(eg. 192.168.1.1:32400, 192.168.1.2:32400)":[null,""],"HTTPS":[null,"HTTPS"],"use https for plex media server requests?":[null,""],"Click below to test Plex Media Server(s)":[null,""],"Test Plex Media Server":[null,"Test Plex Media Serveru"],"Plex Home Theater":[null,"Plex Home Theater"],"send Plex Home Theater notifications?":[null,""],"Plex Home Theater IP:Port":[null,""],"one or more hosts running Plex Home Theater<br>(eg. 192.168.1.100:3000, 192.168.1.101:3000)":[null,""],"Click below to test Plex Home Theater(s)":[null,""],"Test Plex Home Theater":[null,"Test Plex Home Theater"],"some Plex Home Theaters <b class=\"boldest\">do not</b> support notifications e.g. Plexapp for Samsung TVs":[null,""],"Emby":[null,""],"A home media server built using other popular open source technologies.":[null,""],"send update commands to Emby?":[null,""],"Emby IP:Port":[null,"Emby IP:Port"],"host running Emby (eg. 192.168.1.100:8096)":[null,""],"Emby API Key":[null,"Emby API klíč"],"Networked Media Jukebox":[null,"Networked Media Jukebox"],"The Networked Media Jukebox, or NMJ, is the official media jukebox interface made available for the Popcorn Hour 200-series.":[null,""],"send update commands to NMJ?":[null,""],"Popcorn IP address":[null,"IP adresa Popcorn"],"IP address of Popcorn 200-series (eg. 192.168.1.100)":[null,"IP adresa Popcorn řady 200 (např. 192.168.1.100)"],"Get settings":[null,"Načíst nastavení"],"Get Settings":[null,"Načíst nastavení"],"the Popcorn Hour device must be powered on and NMJ running.":[null,""],"NMJ database":[null,"Databáze NMJ"],"automatically filled via the 'Get Settings' button.":[null,""],"NMJ mount url":[null,""],"Networked Media Jukebox v2":[null,""],"The Networked Media Jukebox, or NMJv2, is the official media jukebox interface made available for the Popcorn Hour 300 & 400-series.":[null,""],"send update commands to NMJv2?":[null,""],"IP address of Popcorn 300/400-series (eg. 192.168.1.100)":[null,""],"Database location":[null,"Umístění databáze"],"Database instance":[null,"Databáze instance"],"adjust this value if the wrong database is selected.":[null,""],"Find database":[null,"Najít databázi"],"Find Database":[null,""],"the Popcorn Hour device must be powered on.":[null,""],"NMJv2 database":[null,""],"automatically filled via the 'Find Database' buttons.":[null,""],"Synology":[null,"Synology"],"The Synology DiskStation NAS.":[null,""],"Synology Indexer is the daemon running on the Synology NAS to build its media database.":[null,""],"send Synology notifications?":[null,""],"requires SickRage to be running on your Synology NAS.":[null,""],"Synology Indexer":[null,"Indexer Synology"],"Synology Notifier is the notification system of Synology DSM":[null,""],"send notifications to the Synology Notifier?":[null,""],"pyTivo":[null,"pyTivo"],"pyTivo is both an HMO and GoBack server. This notifier will load the completed downloads to your Tivo.":[null,""],"send notifications to pyTivo?":[null,""],"requires the downloaded files to be accessible by pyTivo.":[null,""],"pyTivo IP:Port":[null,"pyTivo IP:Port"],"host running pyTivo (eg. 192.168.1.1:9032)":[null,""],"pyTivo share name":[null,"název sdílení pyTivo"],"value used in pyTivo Web Configuration to name the share.":[null,""],"Tivo name":[null,"Název Tivo"],"(Messages & Settings > Account & System Information > System Information > DVR name)":[null,""],"Growl":[null,"Growl"],"A cross-platform unobtrusive global notification system.":[null,""],"send Growl notifications?":[null,""],"Growl IP:Port":[null,"Growl IP:Port"],"host running Growl (eg. 192.168.1.100:23053)":[null,""],"may leave blank if SickRage is on the same host.":[null,""],"otherwise Growl <b>requires</b> a password to be used.":[null,""],"Click below to register and test Growl, this is required for Growl notifications to work.":[null,""],"Register Growl":[null,"Registrovat Growl"],"Prowl":[null,"Prowl"],"A Growl client for iOS.":[null,"Growl klient pro iOS."],"send Prowl notifications?":[null,""],"Prowl Message Title":[null,"Název zprávy Prowl"],"Global Prowl API key(s)":[null,""],"Prowl API(s) listed here, separated by commas if applicable, will<br> receive notifications for <b>all</b> shows. Your Prowl API key is available at:":[null,""],"(this field may be blank except when testing.)":[null,""],"Show notification list":[null,"Zobrazit seznam notifikací"],"-- Select a Show --":[null,""],"Configure per-show notifications here by entering Prowl API key(s), separated by commas, '\n 'after selecting a show in the drop-down box. Be sure to activate the 'Save for this show' '\n 'button below after each entry.":[null,""],"Save for this show":[null,""],"Prowl priority":[null,"Prowl priorita"],"Very Low":[null,"Velmi nízké"],"Moderate":[null,""],"Normal":[null,"Normální"],"High":[null,"Vysoká"],"Emergency":[null,""],"priority of Prowl messages from SickRage.":[null,""],"Libnotify":[null,"Libnotify"],"The standard desktop notification API for Linux/*nix systems. This notifier will only function if the pynotify module is installed (Ubuntu/Debian package <a href=\"apt:python-notify\">python-notify</a>).":[null,""],"send Libnotify notifications?":[null,""],"Pushover":[null,""],"Pushover makes it easy to send real-time notifications to your Android and iOS devices.":[null,""],"send Pushover notifications?":[null,""],"Pushover key":[null,""],"user key of your Pushover account":[null,""],"Pushover API key":[null,""],"click here":[null,""]," to create a Pushover API key":[null,""],"Pushover devices":[null,""],"comma separated list of pushover devices you want to send notifications to":[null,""],"Pushover notification sound":[null,""],"Bike":[null,"Kolo"],"Bugle":[null,"Bugle"],"Cash Register":[null,""],"Classical":[null,"Klasický"],"Cosmic":[null,""],"Falling":[null,""],"Gamelan":[null,""],"Incoming":[null,"Příchozí"],"Intermission":[null,"Pauza"],"Magic":[null,"Magie"],"Mechanical":[null,"Mechanické"],"Piano Bar":[null,""],"Siren":[null,"Siréna"],"Space Alarm":[null,""],"Tug Boat":[null,""],"Alien Alarm (long)":[null,""],"Climb (long)":[null,""],"Persistent (long)":[null,""],"Pushover Echo (long)":[null,""],"Up Down (long)":[null,""],"None (silent)":[null,""],"Device specific":[null,""],"choose notification sound to use":[null,""],"Pushover priority":[null,""],"Choose priority to use":[null,"Zvolte prioritu použití"],"Boxcar 2":[null,"Boxcar 2"],"Read your messages where and when you want them!":[null,""],"send Boxcar notifications?":[null,""],"Boxcar2 access token":[null,"Boxcar2 přístupový token"],"access token for your Boxcar account.":[null,""],"NMA":[null,"NMA"],"Notify My Android":[null,""],"Notify My Android is a Prowl-like Android App and API that offers an easy way to send notifications from your application directly to your Android device.":[null,""],"send NMA notifications?":[null,""],"NMA API key":[null,"NMA API klíč"],"(multiple keys must be separated by commas, up to a maximum of 5)":[null,""],"NMA priority":[null,"NMA priorita"],"priority of NMA messages from SickRage.":[null,""],"Pushalot":[null,"Pushalot"],"Pushalot is a platform for receiving custom push notifications to connected devices running Windows Phone or Windows 8.":[null,""],"send Pushalot notifications ?":[null,""],"Pushalot authorization token":[null,""],"authorization token of your Pushalot account.":[null,""],"Pushbullet":[null,"Pushbullet"],"Pushbullet is a platform for receiving custom push notifications to connected devices running Android/iOS and desktop browsers such as Chrome, Firefox or Opera.":[null,""],"send Pushbullet notifications?":[null,""],"Pushbullet API key":[null,""],"API key of your Pushbullet account":[null,""],"Pushbullet devices":[null,""],"Update device list":[null,""],"Pushbullet channels":[null,""],"Free Mobile":[null,"Free Mobile"],"Free Mobile is a famous French cellular network provider.<br> It provides to their customer a free SMS API.":[null,""],"send SMS notifications?":[null,""],"send a SMS when a download starts?":[null,""],"send a SMS when a download finishes?":[null,""],"send a SMS when subtitles are downloaded?":[null,"zaslat SMS po stažení titulků?"],"Free Mobile customer ID":[null,""],"it's your Free Mobile customer ID (8 digits)":[null,""],"Free Mobile API key":[null,""],"find your API key in your customer portal.":[null,""],"Click below to test your settings.":[null,""],"Telegram":[null,"Telegram"],"Telegram is a cloud-based instant messaging service.":[null,""],"send Telegram notifications?":[null,""],"send a message when a download starts?":[null,""],"send a message when a download finishes?":[null,""],"send a message when subtitles are downloaded?":[null,""],"User/group ID":[null,"ID uživatele/skupiny"],"contact @myidbot on Telegram to get an ID":[null,""],"Bot API token":[null,"Bot API token"],"contact @BotFather on Telegram to set up one":[null,""],"Join":[null,"Join"],"Join all of your devices together!":[null,""],"send Join notifications?":[null,""],"Device ID":[null,"ID zařízení"],"per device specific id":[null,""]," to create a Join API key":[null,""],"Twilio":[null,"Twilio"],"Twilio is a webservice API that allows you to communicate directly with a mobile number. This notifier will send a text directly to your mobile device.":[null,""],"should SickRage text your mobile device?":[null,""],"Twilio Account SID":[null,""],"account SID of your Twilio account.":[null,""],"Twilio Auth Token":[null,""],"Twilio Phone SID":[null,""],"phone SID that you would like to send the sms from":[null,""],"Your phone number":[null,""],"phone number that will receive the sms. Please use the format +1-###-###-####":[null,""],"Twitter":[null,"Twitter"],"A social networking and microblogging service, enabling its users to send and read other users' messages called tweets.":[null,""],"should SickRage post tweets on Twitter?":[null,""],"you may want to use a secondary account.":[null,""],"send direct message":[null,""],"send a notification via Direct Message, not via status update":[null,""],"send DM to":[null,""],"Twitter account to send Direct Messages to (must follow you)":[null,""],"Step One":[null,"Krok první"],"Request Authorization":[null,"Vyžádat autorizaci"],"Click the \"Request Authorization\" button.<br> This will open a new page containing an auth key.<br> <b>note:</b> if nothing happens check your popup blocker.":[null,""],"Step Two":[null,"Krok druhý"],"Enter the key Twitter gave you below, and click \"Verify Key\".":[null,""],"Trakt":[null,"Trakt"],"Trakt helps keep a record of what TV shows and movies you are watching. Based on your favorites, Trakt recommends additional shows and movies you'll enjoy!":[null,""],"send Trakt.tv notifications?":[null,""],"username of your Trakt account.":[null,""],"Trakt PIN":[null,"Trakt PIN"],"Get Trakt PIN":[null,""],"PIN code to authorize SickRage to access Trakt on your behalf.":[null,""],"API Timeout":[null,"API Timeout"],"seconds to wait for Trakt API to respond. (Use 0 to wait forever)":[null,""],"Default indexer":[null,"Výchozí indexer"],"Sync libraries":[null,""],"sync your SickRage show library with your trakt show library.":[null,""],"Remove Episodes From Collection":[null,"Odebrat epizody z kolekce"],"remove an episode from your Trakt Collection if it is not in your SickRage Library.":[null,""],"Sync watchlist":[null,""],"sync your SickRage show watchlist with your trakt show watchlist (either Show and Episode).":[null,""],"episode will be added on watch list when wanted or snatched and will be removed when downloaded ":[null,""],"Watchlist add method":[null,"Způsob přidání Seznamu sledujících"],"Skip All":[null,"Přeskočit vše"],"Download Pilot Only":[null,"Stáhnout pouze pilotní díl"],"Get whole show":[null,""],"method in which to download episodes for new shows.":[null,""],"Remove episode":[null,""],"remove an episode from your watchlist after it is downloaded.":[null,""],"Remove series":[null,"Odstranit série"],"remove the whole series from your watchlist after any download.":[null,""],"Remove watched show":[null,"Odebrat shlédnutý seriál"],"remove the show from sickrage if it's ended and completely watched":[null,""],"Start paused":[null,"Spustit pozastavené"],"shows grabbed from your trakt watchlist start paused.":[null,""],"Trakt blackList name":[null,"Jméno blacklistu Trakt"],"name (slug) of list on Trakt for blacklisting show on 'Add Trending Show' & 'Add Recommended Shows' pages":[null,""],"Email":[null,"Email"],"Allows configuration of email notifications on a per show basis.":[null,""],"send email notifications?":[null,""],"SMTP host":[null,"SMTP host"],"hostname of your SMTP email server.":[null,""],"SMTP port":[null,"SMTP port"],"port number used to connect to your SMTP host.":[null,""],"SMTP from":[null,"SMTP z"],"sender email address, some hosts require a real address.":[null,""],"Use TLS":[null,"Použít TLS"],"check to use TLS encryption.":[null,""],"SMTP user":[null,"SMTP uživatel"],"(optional) your SMTP server username.":[null,""],"SMTP password":[null,"SMTP heslo"],"(optional) your SMTP server password.":[null,""],"Global email list":[null,"Globální emailový seznam"],"email addresses listed here, separated by commas if applicable, will<br> receive notifications for <b>all</b> shows.":[null,""],"(This field may be blank except when testing.)":[null,""],"Email Subject":[null,""],"use a custom subject for some privacy protection?":[null,""],"(leave blank for the default SickRage subject)":[null,""],"configure per-show notifications here by entering email address(es), separated by commas,":[null,""],"after selecting a show in the drop-down box. Be sure to activate the 'Save for this show'":[null,""],"button below after each entry.":[null,""],"Slack":[null,"Slack"],"Slack brings all your communication together in one place. It's real-time messaging, archiving and search for modern teams.":[null,""],"should SickRage post messages on Slack?":[null,""],"Slack Incoming Webhook":[null,""],"Discord":[null,""],"All-in-one voice and text chat for gamers that's free, secure, and works on both your desktop and phone.":[null,""],"Should SickRage post messages on Discord?":[null,""],"Discord Incoming Webhook":[null,""],"Create webhook under channel settings.":[null,""],"Discord Bot Name":[null,""],"Blank will use webhook default Name.":[null,""],"Discord Avatar URL":[null,""],"Blank will use webhook default Avatar.":[null,""],"Discord TTS":[null,""],"Send notifications using text-to-speech":[null,""],"Post-Processing":[null,"Finální zpracování"],"Episode Naming":[null,""],"Metadata":[null,"Metadata"],"Settings that dictate how SickRage should process completed downloads.":[null,""],"enable the automatic post processor to scan and process any files in your Post Processing Dir":[null,""],"do not use if you use an external Post Processing script":[null,""],"Post Processing Dir":[null,""],"the folder where your download client puts the completed TV downloads.":[null,""],"please use seperate downloading and completed folders in your download client if possible.":[null,""],"Processing Method":[null,"Způsob zpracování"],"what method should be used to put files into the library?":[null,""],"if you keep seeding torrents after they finish, please avoid the 'move' processing method to prevent errors.":[null,""],"Auto Post-Processing Frequency":[null,"Frekvence automatického finálního zpracování"],"time in minutes to check for new files to auto post-process (min 10)":[null,""],"Postpone post processing":[null,""],"wait to process a folder if sync files are present.":[null,""],"Sync File Extensions":[null,""],"comma seperated list of extensions or filename globs SickRage ignores when Post Processing":[null,""],"Rename Episodes":[null,"Přejmenovat epizody"],"rename episode using the Episode Naming settings?":[null,""],"Create missing show directories":[null,""],"create missing show directories when they get deleted":[null,""],"Add shows without directory":[null,"Přidat seriály bez adresáře"],"add shows without creating a directory (not recommended)":[null,""],"Move associated files":[null,""],"move associated (srt/srr/sfv/etc) files while post processing?":[null,""],"Rename .nfo file":[null,"Přejmenovat soubor .nfo"],"rename the original .nfo file to .nfo-orig to avoid conflicts?":[null,""],"Associated file extensions":[null,""],"comma separated list of associated file extensions SickRage should keep while post processing.":[null,""],"leaving it empty means no associated files will be post processed":[null,""],"Delete non associated files":[null,""],"delete non associated files while post processing?":[null,""],"Change File Date":[null,"Změnit datum souboru"],"set last modified filedate to the date that the episode aired?":[null,""],"some systems may ignore this feature.":[null,""],"Timezone for File Date":[null,"Časové pásmo pro datum souboru"],"local":[null,"místní"],"network":[null,"síť"],"what timezone should be used to change File Date?":[null,""],"Unpack":[null,"Rozbalit"],"What to do with archived releases found in your <i>TV Download Dir</i>?":[null,""],"Ignore (do not process contents)":[null,""],"Unpack (process contents)":[null,""],"Treat as video (process archive as-is)":[null,""],"'Unpack' only works with RAR archives":[null,""],"Windows":[null,"Windows"],"WinRar is required on windows":[null,""],"Unpack Directory":[null,""],"Choose a path to unpack files, leave blank to unpack in download dir":[null,""],"Unrar Location":[null,""],"add the path to unrar if it is not in the system path":[null,""],"Alternate Unrar Tool":[null,""],"add the path to an alternate unrar tool if it is not in the system path":[null,""],"Delete RAR contents":[null,""],"delete content of RAR files, even if Process Method not set to move?":[null,""],"only working with RAR archive":[null,""],"Don't delete empty folders":[null,"Neodstraňovat prázdné složky"],"leave empty folders when Post Processing?":[null,""],"can be overridden using manual Post Processing":[null,""],"Follow symbolic-links":[null,""],"follow down symbolic links in download directory?":[null,""],"<b>EXPERTS ONLY.</b><br>Enable only if you know what <b>circular symbolic links</b> are,<br>and can <b>verify that you have none</b>.":[null,""],"Use icacls":[null,""],"Windows only":[null,""],"sets video permissions after using the move method in post processing":[null,""],"Extra Scripts":[null,"Extra skripty"],"see":[null,""],"for script arguments description and usage.":[null,""],"How SickRage will name and sort your episodes.":[null,""],"Name Pattern":[null,"Vzor názvu"],"Toggle Naming Legend":[null,"Přepnout legendu pojmenovávání"],"don't forget to add quality pattern. Otherwise after post-processing the episode will have UNKNOWN quality":[null,""],"Meaning":[null,"Význam"],"Pattern":[null,"Vzor"],"Result":[null,"Výsledek"],"Use lower case if you want lower case names (eg. %sn, %e.n, %q_n etc)":[null,""],"Show Name":[null,"Název Seriálu"],"Show.Name":[null,"Název.Seriálu"],"Show_Name":[null,"Název_Seriálu"],"Season Number":[null,"Číslo série"],"XEM Season Number":[null,"XEM Číslo Série"],"Episode Number":[null,"Číslo epizody"],"XEM Episode Number":[null,""],"Episode Name":[null,"Název epizody"],"Episode.Name":[null,"Název.Epizody"],"Episode_Name":[null,"Název_Epizody"],"Air Date":[null,"Datum vysílání"],"Post-Processing Date":[null,"Datum finálního zpracování"],"Quality":[null,"Kvalita"],"Scene Quality":[null,"Kvalita dílů"],"Release Name":[null,"Název vydání"],"SickRage' is used in place of RLSGROUP if it could not be properly detected":[null,""],"Release Group":[null,""],"If episode is proper/repack add 'proper' to name.":[null,""],"Release Type":[null,"Typ vydání"],"Multi-Episode Style":[null,""],"Single-EP Sample":[null,""],"Multi-EP sample":[null,""],"Strip Show Year":[null,""],"remove the TV show's year when renaming the file?":[null,""],"only applies to shows that have year inside parentheses":[null,""],"Custom Air-By-Date":[null,""],"name air-by-date shows differently than regular shows?":[null,""],"Toggle ABD Naming Legend":[null,""],"Regular Air Date":[null,""],"Year":[null,"Rok"],"Month":[null,"Měsíc"],"Day":[null,"Den"],"Multi-EP style is ignored":[null,""],"Custom Sports":[null,""],"name sports shows differently than regular shows?":[null,""],"Toggle Sports Naming Legend":[null,""],"Sports Air Date":[null,"Datum vysílání Sportů"],"Custom Anime":[null,"Vlastní Anime"],"name anime shows differently than regular shows?":[null,""],"Toggle Anime Naming Legend":[null,""],">XEM Season Number":[null,">XEM číslo série"],"Single-EP Anime Sample":[null,""],"Multi-EP Anime sample":[null,""],"Add Absolute Number":[null,""],"add the absolute number to the season/episode format?":[null,""],"only applies to anime. (eg. S15E45 - 310 vs S15E45)":[null,""],"Only Absolute Number":[null,"Pouze absolutní číslo"],"replace season/episode format with absolute number":[null,""],"only applies to anime.":[null,""],"No Absolute Number":[null,""],"don't include the absolute number":[null,""],"The data associated to the data. These are files associated to a TV show in the form of images and text that, when supported, will enhance the viewing experience.":[null,""],"Metadata Type":[null,""],"toggle metadata options that you wish to be created":[null,""],"multiple targets may be used":[null,""],"Select Metadata":[null,"Vybrat Metadata"],"Provider Priorities":[null,""],"Provider Options":[null,"Možnosti zprostředkovatele"],"Configure Custom Newznab Providers":[null,""],"Configure Custom Torrent Providers":[null,""],"Check off and drag the providers into the order you want them to be used.":[null,""],"At least one provider is required but two are recommended.":[null,""],"Torrent providers can be toggled in ":[null,""],"Provider does not support backlog searches at this time.":[null,""],"Provider is <b>NOT WORKING</b>.":[null,""],"Configure individual provider settings here.":[null,""],"Check with provider's website on how to obtain an API key if needed.":[null,""],"Configure provider":[null,""],"no providers available to configure.":[null,""],"URL":[null,"URL adresa"],"Enable daily searches":[null,"Povolit každodenní vyhledávání"],"enable provider to perform daily searches.":[null,""],"Enable backlog searches":[null,""],"enable provider to perform backlog searches.":[null,""],"Season search mode":[null,"Režim vyhledávání série"],"when searching for complete seasons you can choose to have it look for season packs only, or choose to have it build a complete season from just single episodes.":[null,""],"season packs only.":[null,"pouze celé série."],"episodes only.":[null,"pouze epizody."],"Enable fallback":[null,""],"when searching for a complete season depending on search mode you may return no results, this helps by restarting the search using the opposite search mode.":[null,""],"Custom URL":[null,"Vlastní URL"],"the URL should include the protocol (and port if applicable). Examples: http://192.168.1.4/ or http://localhost:3000/":[null,""],"Api key":[null,"Api klíč"],"Digest":[null,""],"Hash":[null,"Hash"],"Passkey":[null,""],"Cookies":[null,"Soubory cookie"],"example: uid=1234;pass=567845439634987<br>note: uid and pass are not your username/password.<br>use DevTools or Firebug to get these values after logging in on your browser.":[null,""],"Pin":[null,"Kód Pin"],"Seed ratio":[null,"Koeficient seedů"],"stop transfer when ratio is reached<br>(-1 SickRage default to seed forever, or leave blank for downloader default)":[null,""],"Minimum seeders":[null,"Minimum seedů"],"Minimum leechers":[null,"Minimum stahujících (leecherů)"],"Confirmed download":[null,""],"only download torrents from trusted or verified uploaders ?":[null,""],"Ranked torrents":[null,""],"only download ranked torrents (trusted releases)":[null,""],"English torrents":[null,"Anglické torrenty"],"only download english torrents, or torrents containing english subtitles":[null,"stahovat pouze anglické torrenty, nebo torrenty obsahující anglické titulky"],"For Spanish torrents":[null,"Pro španělské torrenty"],"ONLY search on this provider if show info is defined as \"Spanish\" (avoid provider's use for VOS shows)":[null,""],"Sorting results by":[null,"Řazení výsledků podle"],"Freeleech":[null,"Freeleech"],"only download <b>\"FreeLeech\"</b> torrents.":[null,""],"Category":[null,"Kategorie"],"select torrent with Italian subtitle":[null,"vybrat torrent s Italským podtitulem"],"Configure Custom<br>Newznab Providers":[null,""],"Add and setup or remove custom Newznab providers.":[null,""],"Select provider":[null,"Vybrat poskytovatele"],"-- add new provider --":[null,"-– přidat nového poskytovatele --"],"Provider name":[null,""],"Site URL":[null,"URL webu"],"Newznab search categories":[null,""],"select your Newznab categories on the left, and click the \"update categories\" button to use them for searching.) <b>don't forget to to save the form!":[null,""],"Update Categories":[null,"Aktualizovat kategorie"],"Add":[null,"Přidat"],"Delete":[null,"Odstranit"],"Add and setup or remove custom RSS providers.":[null,""],"RSS URL":[null,"RSS URL"],"Search element":[null,"Vyhledávací prvek"],"eg: title":[null,"např: název"],"Episode Search":[null,"Vyhledávání epizod"],"NZB Search":[null,"NZB hledání"],"Torrent Search":[null,"Vyhledávání Torrentů"],"How to manage searching with":[null,""],"Randomize Providers":[null,"Náhodně zvolit poskytovatele"],"randomize the provider search order instead of going in order of placement":[null,""],"Download propers":[null,"Stáhnout propers"],"replace original download with \"Proper\" or \"Repack\" if nuked":[null,""],"Check propers every":[null,"Zkontrolujte propers každých"],"24 hours":[null,"24 hodin"],"4 hours":[null,"4 hodiny"],"90 mins":[null,"90 minut"],"45 mins":[null,"45 minut"],"15 mins":[null,"15 minut"],"Backlog search day(s)":[null,"Dny hledání nevyřízených položek"],"number of day(s) that the \"Forced Backlog Search\" will cover (e.g. 7 Days)":[null,"počet dní, které \"Vynucené hledání nevyřízených\" pokryje (např. 7 dnů)"],"Backlog search frequency":[null,"Frekvence backlog vyhledávání"],"time in minutes between searches (min.":[null,"čas v minutách mezi hledáním (min."],"Daily search frequency":[null,"Frekvence Každodenní vyhledávání"],"Usenet retention":[null,""],"age limit in days for usenet articles to be used (e.g. 500)":[null,""],"Ignore words":[null,"Ignorovaná slova"],"results with one or more word from this list will be ignored<br>separate words with a comma, e.g. \"word1,word2,word3\"":[null,""],"Require words":[null,""],"results with no word from this list will be ignored<br>separate words with a comma, e.g. \"word1,word2,word3\"":[null,""],"Trackers list":[null,""],"trackers that will be added to magnets without trackers<br>separate trackers with a comma, e.g. \"tracker1,tracker2,tracker3\"":[null,""],"Ignore language names in subbed results":[null,""],"ignore subbed releases based on language names <br>\n Example: \"dk\" will ignore words: dksub, dksubs, dksubbed, dksubed <br>\n separate languages with a comma, e.g. \"lang1,lang2,lang3":[null,""],"Allow high priority":[null,"Povolit vysokou prioritu"],"set downloads of recently aired episodes to high priority":[null,""],"Use Failed Downloads":[null,"Používat neúspěšně stažené"],"use Failed Download Handling?":[null,""],"will only work with snatched/downloaded episodes after enabling this":[null,""],"Delete Failed":[null,"Odstranění se nezdařilo"],"delete files left over from a failed download?":[null,""],"this only works if Use Failed Downloads is enabled.":[null,""],"How to handle NZB search results.":[null,""],"Search NZBs":[null,"Hledat NZB"],"enable NZB search providers":[null,""],"Send .nzb files to":[null,""],"SABnzbd server URL":[null,""],"URL to your SABnzbd server (e.g. http://localhost:8080/)":[null,""],"SABnzbd username":[null,"SABnzbd uživatelské jméno"],"(blank for none)":[null,"(pro žádný nevyplňujte)"],"SABnzbd password":[null,"SABnzbd heslo"],"SABnzbd API key":[null,"SABnzbd API klíč"],"locate at... SABnzbd Config -> General -> API Key":[null,""],"Use SABnzbd category":[null,"Používat SABnzbd kategorie"],"add downloads to this category (e.g. TV)":[null,""],"Use SABnzbd category (backlog episodes)":[null,""],"add downloads of old episodes to this category (e.g. TV)":[null,""],"Use SABnzbd category for anime":[null,""],"add anime downloads to this category (e.g. anime)":[null,""],"Use SABnzbd category for anime (backlog episodes)":[null,""],"add anime downloads of old episodes to this category (e.g. anime)":[null,""],"Use forced priority":[null,""],"enable to change priority from HIGH to FORCED":[null,""],"Black hole folder location":[null,""],"<b>.nzb</b> files are stored at this location for external software to find and use":[null,""],"Connect using HTTPS":[null,""],"enable Secure control in NZBGet and set the correct Secure Port here":[null,""],"NZBget host:port":[null,"NZBget host:port"],"(e.g. localhost:6789)":[null,"(např. localhost:6789)"],"NZBget RPC host name and port number (not NZBgetweb!)":[null,""],"NZBget username":[null,"NZBget uživatelské jméno"],"locate in nzbget.conf (default:nzbget)":[null,""],"NZBget password":[null,"NZBget heslo"],"locate in nzbget.conf (default:tegbzn6789)":[null,""],"Use NZBget category":[null,""],"send downloads marked this category (e.g. TV)":[null,""],"Use NZBget category (backlog episodes)":[null,""],"send downloads of old episodes marked this category (e.g. TV)":[null,""],"Use NZBget category for anime":[null,"Použití NZBget kategorii pro anime"],"send anime downloads marked this category (e.g. anime)":[null,""],"Use NZBget category for anime (backlog episodes)":[null,""],"send anime downloads of old episodes marked this category (e.g. anime)":[null,""],"NZBget priority":[null,"NZBget priorita"],"Very low":[null,"Velmi nízké"],"Low":[null,"Nízká"],"Very high":[null,"Velmi vysoké"],"Force":[null,"Vynutit"],"priority for daily snatches (no backlog)":[null,"priorita pro denní nalezené (bez zpoždění)"],"Torrent host:port":[null,""],"URL to your Synology DSM (e.g. http://localhost:5000/)":[null,""],"Client username":[null,"Uživatelské jméno klienta"],"Client password":[null,"Heslo klienta"],"Downloaded files location":[null,"Umístění stažených souborů"],"where Synology Download Station will save downloaded files (blank for client default)":[null,""],"the destination has to be a shared folder for Synology DS":[null,""],"Click below to test":[null,""],"How to handle Torrent search results.":[null,""],"Search torrents":[null,"Vyhledávat torrenty"],"enable torrent search providers":[null,""],"Send .torrent files to":[null,"Odeslat .torrent soubory do"],"<b>.torrent</b> files are stored at this location for external software to find and use":[null,""],"URL to your torrent client (e.g. http://localhost:8000/)":[null,""],"Torrent RPC URL":[null,"URL RPC torrentu"],"the path without leading and trailing slashes (e.g. transmission)":[null,""],"Http Authentication":[null,"Http ověřování"],"Verify certificate":[null,""],"disable if you get \"Deluge: Authentication Error\" in your log":[null,""],"verify SSL certificates for HTTPS requests":[null,""],"Add label to torrent":[null,"Přidat popisek k torrentu"],"(blank spaces are not allowed)":[null,"(mezery nejsou povoleny)"],"label plugin must be enabled in Deluge clients":[null,""],"for QBitTorrent 3.3.1 and up":[null,""],"Add label to torrent for anime":[null,""],"for QBitTorrent 3.3.1 and up ":[null,""],"where <span id=\"torrent_client\">the torrent client</span> will save downloaded files (blank for client default)":[null,""],"the destination has to be a shared folder for Synology DS</span>":[null,""],"Minimum seeding time":[null,""],"time in hours":[null,""],"(default:'0' passes blank to client and '-1' passes nothing)":[null,""],"Start torrent paused":[null,"Přidat torrent pozastaven"],"add .torrent to client but do <b style=\"font-weight:900\">not</b> start downloading":[null,""],"Allow high bandwidth":[null,""],"use high bandwidth allocation if priority is high":[null,""],"Test Connection":[null,"Test připojení"],"Windows Shares":[null,""],"Defines your existing windows shares so that we can add them to the browse dialog":[null,""],"Share #{number}":[null,""],"Share label":[null,""],"Hostname or IP":[null,""],"Share path":[null,""],"Subtitles Search":[null,"Hledat titulky"],"Subtitles Plugin":[null,"Plugin titulků"],"Plugin Settings":[null,"Plugin nastavení"],"Settings that dictate how SickRage handles subtitles search results.":[null,""],"Search Subtitles":[null,"Hledat titulky"],"Subtitle Languages":[null,"Jazyky titulků"],"Subtitle Directory":[null,"Adresář titulků"],"the directory where SickRage should store your <i>Subtitles</i> files.":[null,""],"leave empty if you want store subtitle in episode path.":[null,""],"Subtitle Find Frequency":[null,"Frekvence hledání titulků"],"time in hours between scans (default: 1)":[null,"čas v hodinách mezi skenováním (výchozí: 1)"],"Include Specials":[null,""],"include the show's specials when searching for subtitles?":[null,""],"Perfect matches":[null,"Dokonalé shody"],"only download subtitles that match: release group, video codec, audio codec and resolution":[null,""],"if disabled you may get out of sync subtitles":[null,""],"Subtitles History":[null,"Historie titulků"],"log downloaded Subtitle on History page?":[null,""],"Subtitles Multi-Language":[null,"Vícejazyčné titulky"],"append language codes to subtitle filenames?":[null,""],"this option is required if you use multiple subtitle languages":[null,""],"Delete unwanted subtitles":[null,"Odstranit nechtěné titulky"],"enable to delete unwanted subtitle languages bundled with release":[null,""],"Embedded Subtitles":[null,"Vložené titulky"],"ignore subtitles embedded inside video file?":[null,""],"this will ignore <u>all</u> embedded subtitles for every video file!":[null,"toto bude ignorovat <u>všechny</u> vložené titulky pro každý video soubor!"],"Hearing Impaired Subtitles":[null,"Titulky pro sluchově postižené"],"download hearing impaired style subtitles?":[null,""],"See":[null,"Viz"],"for a script arguments description.":[null,""],"Additional scripts separated by <b>|</b>.":[null,""],"Scripts are called after each episode has searched and downloaded subtitles.":[null,""],"For any scripted languages, include the interpreter executable before the script. See the following example":[null,""],"For Windows:":[null,"Pro systém Windows:"],"For Linux / OS X:":[null,"Pro systém Linux / OS X:"],"Subtitle Providers":[null,"Poskytovatelé titulků"],"Check off and drag the plugins into the order you want them to be used.":[null,""],"At least one plugin is required.":[null,"Je vyžadován alespoň jeden plugin."]," Web-scraping plugin":[null,""],"Provider Settings":[null,"Nastavení zprostředkovatele"],"Set user and password for each provider":[null,"Nastavit uživatele a heslo pro každého poskytovatele"],"User Name":[null,"Uživatelské jméno"],"Change Show":[null,"Změnit seriál"],"Prev Show":[null,"Předchozí Seriál"],"Next Show":[null,"Další seriál"],"Jump to Season":[null,"Přeskočit na sérii"],"Specials":[null,"Speciály"],"Poster for":[null,"Plakát pro"],"Stars":[null,"Hvězdy"],"minutes":[null,"minut"],"View other popular {genre} shows on trakt.tv.":[null,""],"View other popular {imdbgenre} shows on IMDB.":[null,""],"Allowed":[null,"Nejlepší"],"Preferred":[null,"Přijatelná"],"Originally Airs":[null,"Oficiální vysílání"],"Show Status":[null,"Stav seriálu"],"Default EP Status":[null,"Výchozí stav epizody"],"Location":[null,"Umístění"],"Missing":[null,"Chybějící"],"Scene Name":[null,"Název pořadu"],"Required Words":[null,""],"Ignored Words":[null,"Ignorovaná slova"],"Size":[null,"Velikost"],"Info Language":[null,"Jazyk informací"],"Subtitles SR Metadata":[null,"Metada SR titulek"],"Season Folders":[null,"Složky sérií"],"Paused":[null,"Pozastaveno"],"Air-by-Date":[null,"Vysílání-dle-data"],"Sports":[null,"Sporty"],"DVD Order":[null,"DVD třídění"],"Scene Numbering":[null,"Číslování dílů"],"Select Filtered Episodes":[null,"Vyberte filtrované epizody"],"Clear All":[null,"Vymazat vše"],"Change selected episodes to":[null,"Změnit vybrané epizody na"],"Select Columns":[null,"Vybrat sloupce"],"NFO":[null,"NFO"],"TBN":[null,"TBN"],"Episode":[null,"Epizoda"],"Absolute":[null,""],"Scene":[null,"Pořad"],"Scene Absolute":[null,""],"File Name":[null,"Název souboru"],"Airdate":[null,"Vysílací čas"],"Download":[null,"Stáhnout"],"Change the value here if scene numbering differs from the indexer episode numbering":[null,"Změňte hodnotu, pokud se číslování dílů liší od číslování epizod indexerem"],"Change the value here if scene absolute numbering differs from the indexer absolute numbering":[null,""],"Manual Search":[null,""],"Do you want to mark this episode as failed?":[null,""],"The episode release name will be added to the failed history, preventing it to be downloaded again.":[null,""],"Do you want to include the current episode quality in the search?":[null,""],"Choosing No will ignore any releases with the same episode quality as the one currently downloaded/snatched.":[null,"Klepnutím na Ne bude ignorovat všechny verze ve stejné kvalitě epizody jako je současná stažená/nalezená."],"Download subtitle":[null,"Stáhnout titulky"],"Do you want to re-download the subtitle for this language?":[null,""],"It will overwrite your current subtitle":[null,""],"Format":[null,"Formát"],"Advanced":[null,"Pokročilé"],"Main Settings":[null,""],"Show Location":[null,""],"Preferred Quality":[null,"Preferovaná kvalita:"],"Default Episode Status":[null,"Výchozí stav epizody"],"this will set the status for future episodes.":[null,""],"this only applies to episode filenames and the contents of metadata files.":[null,""],"search for subtitles":[null,"hledat titulky"],"Use SR Metdata":[null,"Použít metadata SR"],"use SickRage metadata when searching for subtitle, this will override the autodiscovered metadata":[null,""],"pause this show (SickRage will not download episodes)":[null,"pozastavit tento seriál (SickRage nebude stahovat epizody)"],"Format Settings":[null,"Nastavení formátu"],"Air by date":[null,"Vysílání dle data"],"check if the show is released as Show.03.02.2010 rather than Show.S02E03.":[null,""],"in case of an air date conflict between regular and special episodes, the later will be ignored.":[null,""],"check if the show is Anime and episodes are released as Show.265 rather than Show.S02E03":[null,""],"check if the show is a sporting or MMA event released as Show.03.02.2010 rather than Show.S02E03":[null,""],"Season folders":[null,"Složky sérií"],"group episodes by season folder (uncheck to store in a single folder)":[null,""],"search by scene numbering (uncheck to search by indexer numbering)":[null,"vyhledávat podle číslování dílů (odškrtněte pro hledání podle číslování indexeru)"],"use the DVD order instead of the air order":[null,""],"a \"Force Full Update\" is necessary, and if you have existing episodes you need to sort them manually.":[null,""],"comma-separated <i>e.g. \"word1,word2,word3</i>\"":[null,""],"search results with one or more words from this list will be ignored.":[null,""],"e.g. \"word1,word2,word3\"":[null,"např. \"slovo1,slovo2,slovo3\""],"search results with no words from this list will be ignored.":[null,""],"Scene Exception":[null,"Výjimky seriálů"],"this will affect episode search on NZB and torrent providers.":[null,""],"this list appends to the original show name.":[null,""],"WARNING logs":[null,"Log UPOZORNĚNÍ"],"ERROR logs":[null,"Log CHYB"],"There are no events to display.":[null,"Neexistují žádné události k zobrazení."],"Limit":[null,"Limit"],"Layout":[null,"Rozložení"],"HistoryLayout":[null,""],"Compact":[null,"Zkomprimován"],"Detailed":[null,"Podrobné"],"Time":[null,"Čas"],"Provider":[null,"Provider"],"Missing Provider":[null,"Chybějící poskytovatel"],"missing provider":[null,"chybějící poskytovatel"],"Directory":[null,"Adresář"],"Show Name (tvshow.nfo)":[null,"Název Seriálu (tvshow.nfo)"],"Indexer":[null,""],"Enter the folder containing the episode":[null,"Zadejte složku, která obsahuje epizody"],"Process Method to be used":[null,"Vyberte způsob zpracování epizod"],"Copy":[null,"Kopírovat"],"Move":[null,"Přesunout"],"Hard Link":[null,"Pevný odkaz"],"Symbolic Link":[null,"Symbolický odkaz"],"Symbolic Link Reversed":[null,""],"Force already Post Processed Dir/Files":[null,"Vynutit zpracování, už zpracovaných souborů"],"Mark Dir/Files as priority download":[null,"Označ soubory jako prioritní"],"(Check it to replace the file even if it exists at higher quality)":[null,"(Zaškrtněte, pokud chcete zpracovat i když existuje v lepší kvalitě)"],"Delete files and folders":[null,"Odstranit soubory po zracování"],"(Check it to delete files and folders like auto processing)":[null,"(Zaškrtněte, pokud chcete odstranit soubory jako během automatického zpracování)"],"Don't use processing queue":[null,""],"(If checked this will return the result of the process here, but may be slow!)":[null,""],"Mark download as failed":[null,"Označit stažení za neúspěšné"],"Process":[null,"Zpracovat"],"Download subtitles for this show?":[null,"Stáhnout titulky pro tento seriál?"],"use SickRage metadata when searching for subtitle, <br />this will override the autodiscovered metadata":[null,""],"Status for previously aired episodes":[null,"Status dříve odvysílaných epizod"],"Status for all future episodes":[null,"Stav pro všechny budoucí epizody"],"Group episodes by season folder?":[null,""],"Is this show an Anime?":[null,"Je tento seriál Anime?"],"Is this show scene numbered?":[null,"Je tento seriál číslován na díly?"],"Save Defaults":[null,""],"Use current values as the defaults":[null,""],"<p>Select your preferred fansub groups from the <b>Available Groups</b> and add them to the <b>Whitelist</b>. Add groups to the <b>Blacklist</b> to ignore them.</p>\n <p>The <b>Whitelist</b> is checked <i>before</i> the <b>Blacklist</b>.</p>\n <p>Groups are shown as <b>Name</b> | <b>Rating</b> | <b>Number of subbed episodes</b>.</p>\n <p>You may also add any fansub group not listed to either list manually.</p>\n <p>When doing this please note that you can only use groups listed on anidb for this anime.\n <br>If a group is not listed on anidb but subbed this anime, please correct anidb's data.</p>":[null,""],"Whitelist":[null,"Bílá listina"],"Available Groups":[null,"Dostupné skupiny"],"Add to Whitelist":[null,""],"Add to Blacklist":[null,""],"Blacklist":[null,"Černá listina"],"Custom Group":[null,""],"Allowed Quality:":[null,"Nejlepší kvalita:"],"Preferred Quality:":[null,"Přijatelná kvalita:"],"Filter Show Name":[null,"Filtrovat název seriálu"],"Root":[null,"Kořenový adresář"],"All":[null,"Vše"],"Clear Filter(s)":[null,"Vymazat filtry"],"Poster":[null,"Plakáty"],"Small Poster":[null,"Malé plakáty"],"Banner":[null,"Banner"],"Simple":[null,"Jednoduché"],"Next Episode":[null,"Epizoda"],"Progress":[null,"Pokroku"],"Direction":[null,"Řazení"],"Ascending":[null,"Vzestupně"],"Descending":[null,"Sestupně"],"Poster Size":[null,"Velikost plakátu"],"Continuing":[null,"Pokračuje"],"Ended":[null,"Ukončeno"],"Total":[null,"Celkem"],"Invalid date":[null,"Neplatné datum"],"No Network":[null,"Žádná síť"],"Next Ep":[null,"Další díl"],"Prev Ep":[null,"Předchozí díl"],"Show":[null,"Seriál"],"Downloads":[null,"Staženo"],"Active":[null,"Aktivní"],"loading":[null,"načítání"],"<p><b><u>Preferred</u></b> qualities will replace those in <b><u>allowed</u></b>, even if they are lower.</p>":[null,""],"New":[null,"Nový"],"Set as Default":[null,"Nastavit jako výchozí"],"Remember me":[null,"Pamatovat si mě"],"Edit Selected":[null,""],"Subtitle":[null,"Podtitul"],"Default Ep Status":[null,"Výchozí stav epizody"],"Update":[null,"Aktualizace"],"Rescan":[null,"Přeskenovat"],"Rename":[null,"Přejmenovat"],"Search Subtitle":[null,"Hledat titulky"],"Force Metadata Regen":[null,""],"Snatched (Allowed)":[null,"Nalezeno (Přijatelné)"],"Jump to Show":[null,"Přeskočit na seriál"],"Force Backlog":[null,""],"Manage episodes with status":[null,""],"Manage":[null,"Spravovat"],"None of your episodes have status":[null,""],"Shows containing":[null,"Obsahující pořady"],"episodes":[null,"epizody"],"Set checked shows/episodes to":[null,"Nastavit vybrané pořady/epizody na"],"Go":[null,"Přejít"],"Select all":[null,"Vybrat vše"],"Clear all":[null,"Vymazat vše"],"Release":[null,"Vydání"],"Backlog Search":[null,"Backlog vyhledávání"],"Not in progress":[null,"Neprobíhá"],"In Progress":[null,"V průběhu"],"Daily Search":[null,"Každodenní vyhledávání"],"Find Propers Search":[null,"Najít Propers hledání"],"Propers search disabled":[null,""],"Subtitle Search":[null,"Hledat titulky"],"Subtitle search disabled":[null,"Vyhledávání titulků zakázáno"],"Search Queue":[null,"Hledat frontu"],"pending items":[null,"nevyřízené položky"],"Daily":[null,"Denně"],"Manual":[null,"Manuál"],"Changing any settings marked with (<span class=\"separator\">*</span>) will force a refresh of the selected shows.":[null,""],"Selected Shows":[null,"Vybrané seriály"],"Root Directories":[null,"Kořenové adresáře"],"Current":[null,"Aktuální"],"Keep":[null,"Zachovat"],"Custom":[null,"Vlastní"],"Group episodes by season folder (set to \"No\" to store in a single folder).":[null,""],"Pause these shows (SickRage will not download episodes).":[null,"Pozastavit tyto seriály (SickRage nebude stahovat epizody)."],"This will set the status for future episodes.":[null,""],"Search by scene numbering (set to \"No\" to search by indexer numbering).":[null,""],"Set if these shows are Anime and episodes are released as Show.265 rather than Show.S02E03":[null,""],"Set if these shows are sporting or MMA events released as Show.03.02.2010 rather than Show.S02E03.":[null,""],"In case of an air date conflict between regular and special episodes, the later will be ignored.":[null,""],"Set if these shows are released as Show.03.02.2010 rather than Show.S02E03.":[null,""],"Search for subtitles.":[null,"Hledat titulky."],"All of your episodes have {subsLanguage} subtitles.":[null,"Všechny vaše epizody mají {subsLanguage} titulky."],"Manage episodes without":[null,""],"Episodes without {subsLanguage} subtitles.":[null,"Epizody bez {subsLanguage} titulků."],"Episodes without {subtitleLanguage} (undefined) subtitles.":[null,"Epizody bez {subtitleLanguage} (nedefinových) titulků."],"Download missed subtitles for selected episodes":[null,"Stáhnout chybějící titulky pro vybrané epizody"],"Performing Restart":[null,""],"Waiting for SickRage to shut down":[null,""],"Waiting for SickRage to start again":[null,""],"Loading the default page":[null,"Načítám výchozí stránku"],"Error: The restart has timed out, perhaps something prevented SickRage from starting again?":[null,""],"Key":[null,"Legenda"],"Missed":[null,"Zmeškané"],"Today":[null,"Dnes"],"Soon":[null,"Brzy"],"Later":[null,"Později"],"Subscribe":[null,"Odebírat"],"Date":[null,"Datum"],"View Paused":[null,"Zobrazit pozastavené"],"Hidden":[null,"Skrýt"],"Shown":[null,"Zobrazit"],"Calendar":[null,"Kalendář"],"List":[null,"Seznam"],"Ends":[null,"Konec vysílání"],"Next Ep Name":[null,"Jméno dílu"],"Run time":[null,"Délka"],"Indexers":[null,"Indexy"],"No shows for this day":[null,"Žádné seriály pro tento den"],"Airs":[null,"Vysílá"],"Plot":[null,"Zápletka"],"Show Update":[null,"Zobrazit aktualizace"],"Version Check":[null,"Kontrola verze"],"Proper Finder":[null,""],"Post Process":[null,"Finální zpracování"],"Subtitles Finder":[null,"Vyhledávač titulků"],"Scheduler":[null,"Rozvrh"],"Alive":[null,"Živý"],"Start Time":[null,"Čas zahájení"],"Cycle Time":[null,"Čas cyklu"],"Next Run":[null,"Další spuštění"],"Last Run":[null,"Poslední spuštění"],"Silent":[null,"Tichý"],"True":[null,"Pravda"],"N/A":[null,"NENÍ K DISPOZICI"],"Show id":[null,"Zobrazit id"],"Show name":[null,"Název seriálu"],"Priority":[null,"Priorita"],"Added":[null,"Přidáno"],"Queue type":[null,"Typ fronty"],"LOW":[null,"NÍZKÉ"],"NORMAL":[null,"NORMÁLNÍ"],"HIGH":[null,"VYSOKÉ"],"Disk Space":[null,"Místo na disku"],"Free space":[null,"Volné místo"],"TV Download Directory":[null,"Adresář pro stahování TV"],"Media Root Directories":[null,"Kořenové adresáře médií"],"Preview of the proposed name changes":[null,"Náhled navrhovaných změn názvů"],"All Seasons":[null,"Všechny série"],"select all":[null,""],"Rename Selected":[null,"Přejmenovat vybrané"],"Cancel Rename":[null,"Zrušit přejmenování"],"Old Location":[null,"Staré místo"],"New Location":[null,"Nové místo"],"Trakt API did not return any results, please check your config.":[null,""],"votes":[null,"hlasy"],"Remove Show":[null,"Odstranit seriál"],"Level":[null,""],"Filter":[null,""],"All non-absolute folder locations are relative to ":[null,""],"Manual Post-Processing":[null,"Ruční finální zpracování"],"Episode Status Management":[null,"Správa stavu epizod"],"Update PLEX":[null,"Aktualizovat PLEX"],"Update KODI":[null,"Aktualizace KODI"],"Update Emby":[null,"Aktualizovat Emby"],"Manage Torrents":[null,"Správa torrentů"],"Missed Subtitle Management":[null,"Správa chybějících titulků"],"Help & Info":[null,"Nápověda & info"],"Backup & Restore":[null,"Záloha & Obnovení"],"Tools":[null,"Nástroje"],"Support SickRage":[null,"Podpořte SickRage"],"View Errors":[null,"Zobrazit chyby"],"View Warnings":[null,"Zobrazit varování"],"View Log":[null,"Zobrazit log"],"Check For Updates":[null,"Zkontrolovat aktualizace"],"Restart":[null,"Restartovat"],"Shutdown":[null,"Vypnout"],"Logout":[null,"Odhlásit"],"Server Status":[null,"Stav serveru"],"View overview of snatched episodes":[null,"Zobrazit přehled nalezených epizod"],"Episodes Downloaded":[null,"Stažených epizod"],"Memory used":[null,"Využití paměti"],"Load time":[null,"Doba načteční"],"Branch":[null,"Větev"],"Now":[null,"Teď"]}}}} \ No newline at end of file diff --git a/locale/cs_CZ/LC_MESSAGES/messages.mo b/locale/cs_CZ/LC_MESSAGES/messages.mo index 435ccba8bfc52b908c733fccd197251b09bfb7ad..599a6b5b0532f80a7bab75db3919cd458191bc22 100644 Binary files a/locale/cs_CZ/LC_MESSAGES/messages.mo and b/locale/cs_CZ/LC_MESSAGES/messages.mo differ diff --git a/locale/cs_CZ/LC_MESSAGES/messages.po b/locale/cs_CZ/LC_MESSAGES/messages.po index 696ec4ba40665d2e4227a3b57d59195da8659a41..08ed5979e5ec2204b89a1ada65fe640a3abf7d87 100644 --- a/locale/cs_CZ/LC_MESSAGES/messages.po +++ b/locale/cs_CZ/LC_MESSAGES/messages.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: sickrage\n" "Report-Msgid-Bugs-To: miigotu@gmail.com\n" -"POT-Creation-Date: 2017-03-25 09:28-0700\n" -"PO-Revision-Date: 2017-03-25 12:29-0400\n" +"POT-Creation-Date: 2017-03-28 09:10-0700\n" +"PO-Revision-Date: 2017-03-28 12:11-0400\n" "Last-Translator: miigotu <miigotu@gmail.com>\n" "Language-Team: Czech\n" "MIME-Version: 1.0\n" @@ -90,7 +90,7 @@ msgid "Biography" msgstr "Životopis" #: gui/slick/views/config_general.mako:78 gui/slick/views/layouts/main.mako:145 -#: sickbeard/__init__.py:79 sickbeard/webserve.py:3807 +#: sickbeard/__init__.py:79 sickbeard/webserve.py:3778 msgid "History" msgstr "Historie" @@ -103,7 +103,7 @@ msgid "Western" msgstr "Western" #: gui/slick/views/config_general.mako:79 gui/slick/views/layouts/main.mako:221 -#: sickbeard/__init__.py:80 sickbeard/webserve.py:2385 +#: sickbeard/__init__.py:80 sickbeard/webserve.py:2384 msgid "News" msgstr "Novinky" @@ -238,6 +238,34 @@ msgstr "Ignorováno" msgid "Subtitled" msgstr "S titulky" +#: sickbeard/helpers.py:1887 +msgid "For best results please set the Download Station alias as" +msgstr "" + +#: sickbeard/helpers.py:1888 +msgid "You can check this setting in the Synology DSM" +msgstr "" + +#: sickbeard/helpers.py:1888 sickbeard/helpers.py:1890 +msgid "Control Panel" +msgstr "Ovládací panel" + +#: sickbeard/helpers.py:1888 +msgid "Application Portal" +msgstr "Aplikační portál" + +#: sickbeard/helpers.py:1889 +msgid "Make sure you allow DSM to be embedded with iFrames too in" +msgstr "" + +#: sickbeard/helpers.py:1890 +msgid "DSM Settings" +msgstr "DSM nastavení" + +#: sickbeard/helpers.py:1890 +msgid "Security" +msgstr "Zabezpečení" + #: sickbeard/logger.py:474 msgid "<No Filter>" msgstr "<Bez filtru>" @@ -308,15 +336,15 @@ msgstr "Kontrola Traktu" msgid "Event" msgstr "Událost" -#: sickbeard/logger.py:491 sickbeard/webserve.py:1339 sickbeard/webserve.py:1342 -#: sickbeard/webserve.py:1520 sickbeard/webserve.py:1529 sickbeard/webserve.py:1717 -#: sickbeard/webserve.py:1728 sickbeard/webserve.py:1751 sickbeard/webserve.py:1764 -#: sickbeard/webserve.py:1769 sickbeard/webserve.py:1785 sickbeard/webserve.py:1790 -#: sickbeard/webserve.py:1854 sickbeard/webserve.py:1857 sickbeard/webserve.py:1863 -#: sickbeard/webserve.py:1866 sickbeard/webserve.py:1873 sickbeard/webserve.py:1876 -#: sickbeard/webserve.py:1899 sickbeard/webserve.py:1997 sickbeard/webserve.py:2002 -#: sickbeard/webserve.py:2007 sickbeard/webserve.py:2036 sickbeard/webserve.py:2040 -#: sickbeard/webserve.py:2045 +#: sickbeard/logger.py:491 sickbeard/webserve.py:1338 sickbeard/webserve.py:1341 +#: sickbeard/webserve.py:1519 sickbeard/webserve.py:1528 sickbeard/webserve.py:1716 +#: sickbeard/webserve.py:1727 sickbeard/webserve.py:1750 sickbeard/webserve.py:1763 +#: sickbeard/webserve.py:1768 sickbeard/webserve.py:1784 sickbeard/webserve.py:1789 +#: sickbeard/webserve.py:1853 sickbeard/webserve.py:1856 sickbeard/webserve.py:1862 +#: sickbeard/webserve.py:1865 sickbeard/webserve.py:1872 sickbeard/webserve.py:1875 +#: sickbeard/webserve.py:1898 sickbeard/webserve.py:1996 sickbeard/webserve.py:2001 +#: sickbeard/webserve.py:2006 sickbeard/webserve.py:2035 sickbeard/webserve.py:2039 +#: sickbeard/webserve.py:2044 msgid "Error" msgstr "Chyba" @@ -333,6 +361,7 @@ msgstr "Vlákno" msgid "Main" msgstr "Hlavní" +#: gui/slick/js/ajaxEpSearch.js:146 gui/slick/js/ajaxEpSearch.js:147 #: gui/slick/views/inc_home_showList.mako:27 sickbeard/show_queue.py:298 msgid "Loading" msgstr "Ukáž frontu" @@ -372,867 +401,835 @@ msgstr "Záloha konfigurace se nezdařila, ruším aktualizaci" msgid "No update needed" msgstr "Aktualizace není potřeba" -#: sickbeard/webserve.py:170 +#: sickbeard/webserve.py:171 msgid "Mako Error" msgstr "Mako chyba" -#: sickbeard/webserve.py:195 +#: sickbeard/webserve.py:196 msgid "Oops" msgstr "Chybička se vloudila" -#: sickbeard/webserve.py:197 +#: sickbeard/webserve.py:198 msgid "Wrong API key used" msgstr "Použit chybný API klíč" -#: gui/slick/views/login.mako:34 sickbeard/webserve.py:302 +#: gui/slick/views/login.mako:34 sickbeard/webserve.py:303 msgid "Login" msgstr "Přihlášení" -#: sickbeard/webserve.py:406 +#: sickbeard/webserve.py:392 msgid "API Key not generated" msgstr "Nevygenerován API klíč" -#: sickbeard/webserve.py:409 +#: sickbeard/webserve.py:395 msgid "API Builder" msgstr "API Builder" #: gui/slick/views/config_general.mako:77 gui/slick/views/layouts/main.mako:141 -#: sickbeard/webserve.py:512 +#: sickbeard/webserve.py:498 msgid "Schedule" msgstr "Program" -#: sickbeard/webserve.py:610 +#: sickbeard/webserve.py:609 msgid "Test 1" msgstr "Test 1" -#: sickbeard/webserve.py:610 +#: sickbeard/webserve.py:609 msgid "This is test number 1" msgstr "Toto je test číslo 1" -#: sickbeard/webserve.py:611 +#: sickbeard/webserve.py:610 msgid "Test 2" msgstr "Test 2" -#: sickbeard/webserve.py:611 +#: sickbeard/webserve.py:610 msgid "This is test number 2" msgstr "To je test číslo 2" -#: sickbeard/webserve.py:634 +#: sickbeard/webserve.py:633 msgid "You're using the {branch} branch. Please use 'master' unless specifically asked" msgstr "" -#: sickbeard/webserve.py:698 sickbeard/webserve.py:703 +#: sickbeard/webserve.py:697 sickbeard/webserve.py:702 msgid "Invalid show parameters" msgstr "Neplatné parametry seriálu" -#: sickbeard/webserve.py:710 +#: sickbeard/webserve.py:709 msgid "Invalid parameters" msgstr "" -#: sickbeard/webserve.py:713 sickbeard/webserve.py:1899 +#: sickbeard/webserve.py:712 sickbeard/webserve.py:1898 msgid "Episode couldn't be retrieved" msgstr "Epizodu se nepodařilo nalézt" -#: sickbeard/webserve.py:759 sickbeard/webserve.py:1268 sickbeard/webserve.py:1297 +#: sickbeard/webserve.py:758 sickbeard/webserve.py:1267 sickbeard/webserve.py:1296 msgid "Home" msgstr "Hlavní strana" -#: gui/slick/views/layouts/main.mako:127 sickbeard/webserve.py:759 +#: gui/slick/views/layouts/main.mako:127 sickbeard/webserve.py:758 msgid "Show List" msgstr "Seznam seriálů" -#: sickbeard/webserve.py:807 +#: sickbeard/webserve.py:806 msgid "Error: Unsupported Request. Send jsonp request with 'callback' variable in the query string." msgstr "Chyba: Nepodporovaný požadavek. Odešlete žádost jsonp s proměnnou 'callback' v řetězci dotazu." -#: sickbeard/webserve.py:851 +#: sickbeard/webserve.py:850 msgid "Success. Connected and authenticated" msgstr "Povedlo se. Připojeno a přihlášeno" -#: sickbeard/webserve.py:853 +#: sickbeard/webserve.py:852 msgid "Authentication failed. SABnzbd expects" msgstr "Autentizace selhala. SABnzbd očekává" -#: sickbeard/webserve.py:853 +#: sickbeard/webserve.py:852 msgid "as authentication method" msgstr "jako metodu ověřování" -#: sickbeard/webserve.py:855 +#: sickbeard/webserve.py:854 msgid "Unable to connect to host" msgstr "Nelze se připojit k hostiteli" -#: sickbeard/webserve.py:876 +#: sickbeard/webserve.py:875 msgid "SMS sent successfully" msgstr "SMS odeslána úspěšně" -#: sickbeard/webserve.py:878 +#: sickbeard/webserve.py:877 msgid "Problem sending SMS: {message}" msgstr "Problém při odesílání SMS: {message}" -#: sickbeard/webserve.py:885 +#: sickbeard/webserve.py:884 msgid "Telegram notification succeeded. Check your Telegram clients to make sure it worked" msgstr "Oznámení Telegram bylo úspěšně dokončeno. Zkontrolujte své klienty Telegram, a ujistěte se, že to fungovalo" -#: sickbeard/webserve.py:887 +#: sickbeard/webserve.py:886 msgid "Error sending Telegram notification: {message}" msgstr "Chyba při odesílání oznámení Telegram: {message}" -#: sickbeard/webserve.py:894 +#: sickbeard/webserve.py:893 msgid "join notification succeeded. Check your join clients to make sure it worked" msgstr "" -#: sickbeard/webserve.py:896 +#: sickbeard/webserve.py:895 msgid "Error sending join notification: {message}" msgstr "Chyba při odesílání notifikace join: {message}" -#: sickbeard/webserve.py:906 +#: sickbeard/webserve.py:905 msgid " with password" msgstr " s heslem" -#: sickbeard/webserve.py:908 +#: sickbeard/webserve.py:907 msgid "Registered and Tested growl successfully {growl_host}" msgstr "Registrace a testování Growl se zdařila {growl_host}" -#: sickbeard/webserve.py:910 +#: sickbeard/webserve.py:909 msgid "Registration and Testing of growl failed {growl_host}" msgstr "Registrace a testování Growl se nezdařilo {growl_host}" -#: sickbeard/webserve.py:917 +#: sickbeard/webserve.py:916 msgid "Test prowl notice sent successfully" msgstr "Zkouška Prowl upozornění úspěšně odeslána" -#: sickbeard/webserve.py:919 +#: sickbeard/webserve.py:918 msgid "Test prowl notice failed" msgstr "Zkouška Prowl upozornění se nezdařila" -#: sickbeard/webserve.py:926 +#: sickbeard/webserve.py:925 msgid "Boxcar2 notification succeeded. Check your Boxcar2 clients to make sure it worked" msgstr "Boxcar2 oznámení bylo úspěšné. Zkontrolujte vaše klienty Boxcar2 a ujistěte se, že to fungovalo" -#: sickbeard/webserve.py:928 +#: sickbeard/webserve.py:927 msgid "Error sending Boxcar2 notification" msgstr "Chyba při odesíláni Boxcar2 upozornění" -#: sickbeard/webserve.py:935 +#: sickbeard/webserve.py:934 msgid "Pushover notification succeeded. Check your Pushover clients to make sure it worked" msgstr "Pushover oznámení bylo úspěšné. Zkontrolujte vaše klienty Pushover a ujistěte se, že to fungovalo" -#: sickbeard/webserve.py:937 +#: sickbeard/webserve.py:936 msgid "Error sending Pushover notification" msgstr "Chyba při odesílání Pushover oznámení" -#: sickbeard/webserve.py:949 +#: sickbeard/webserve.py:948 msgid "Key verification successful" msgstr "Ověření klíče úspěšné" -#: sickbeard/webserve.py:951 +#: sickbeard/webserve.py:950 msgid "Unable to verify key" msgstr "Nelze ověřit klíč" -#: sickbeard/webserve.py:958 +#: sickbeard/webserve.py:957 msgid "Tweet successful, check your twitter to make sure it worked" msgstr "Tweet úspěšný. Zkontrolujte vaše Twitter klienty a ujistěte se, že to fungovalo" -#: sickbeard/webserve.py:960 +#: sickbeard/webserve.py:959 msgid "Error sending tweet" msgstr "Chyba při odesílání Tweetu" -#: sickbeard/webserve.py:965 +#: sickbeard/webserve.py:964 msgid "Please enter a valid account sid" msgstr "Prosím zadejte platný sid účtu" -#: sickbeard/webserve.py:968 +#: sickbeard/webserve.py:967 msgid "Please enter a valid auth token" msgstr "Prosím zadejte platný autorizační token" -#: sickbeard/webserve.py:971 +#: sickbeard/webserve.py:970 msgid "Please enter a valid phone sid" msgstr "Prosím zadejte platné telefonní sid" -#: sickbeard/webserve.py:974 +#: sickbeard/webserve.py:973 msgid "Please format the phone number as \"+1-###-###-####\"" msgstr "" -#: sickbeard/webserve.py:978 +#: sickbeard/webserve.py:977 msgid "Authorization successful and number ownership verified" msgstr "" -#: sickbeard/webserve.py:980 +#: sickbeard/webserve.py:979 msgid "Error sending sms" msgstr "Chyba při odesílání sms" -#: sickbeard/webserve.py:986 +#: sickbeard/webserve.py:985 msgid "Slack message successful" msgstr "Slack zpráva odeslána" -#: sickbeard/webserve.py:988 +#: sickbeard/webserve.py:987 msgid "Slack message failed" msgstr "Slack zpráva selhala" -#: sickbeard/webserve.py:994 +#: sickbeard/webserve.py:993 msgid "Discord message successful" msgstr "" -#: sickbeard/webserve.py:996 +#: sickbeard/webserve.py:995 msgid "Discord message failed" msgstr "" -#: sickbeard/webserve.py:1006 +#: sickbeard/webserve.py:1005 msgid "Test KODI notice sent successfully to {kodi_host}" msgstr "Zkouška KODI oznámení úspěšně odeslána na {kodi_host}" -#: sickbeard/webserve.py:1008 +#: sickbeard/webserve.py:1007 msgid "Test KODI notice failed to {kodi_host}" msgstr "Zkouška KODI oznámení se nezdařila {kodi_host}" -#: sickbeard/webserve.py:1023 +#: sickbeard/webserve.py:1022 msgid "Successful test notice sent to Plex Home Theater ... {plex_clients}" msgstr "Zkouška oznámení úspěšně odeslána na Plex Home Theater... {plex_clients}" -#: sickbeard/webserve.py:1025 +#: sickbeard/webserve.py:1024 msgid "Test failed for Plex Home Theater ... {plex_clients}" msgstr "Zkouška oznámení pro Plex Home Theater se nezdařila... {plex_clients}" -#: sickbeard/webserve.py:1028 +#: sickbeard/webserve.py:1027 msgid "Tested Plex Home Theater(s)" msgstr "Testované Plex Home Theater(s)" -#: sickbeard/webserve.py:1042 +#: sickbeard/webserve.py:1041 msgid "Successful test of Plex Media Server(s) ... {plex_servers}" msgstr "Test Plex Media Serveru(ů) úspěšný... {plex_servers}" -#: sickbeard/webserve.py:1044 +#: sickbeard/webserve.py:1043 msgid "Test failed, No Plex Media Server host specified" msgstr "Test se nezdařil, nespecifikován hostitel Plex Media Serveru" -#: sickbeard/webserve.py:1046 +#: sickbeard/webserve.py:1045 msgid "Test failed for Plex Media Server(s) ... {plex_servers}" msgstr "Test Plex Media Serveru se nezdařil... {plex_servers}" -#: sickbeard/webserve.py:1049 +#: sickbeard/webserve.py:1048 msgid "Tested Plex Media Server host(s)" msgstr "Hostitel Plex Media Serveru otestován" -#: sickbeard/webserve.py:1057 +#: sickbeard/webserve.py:1056 msgid "Tried sending desktop notification via libnotify" msgstr "Pokus o zaslání oznámení prostřednictvím libnotify" -#: sickbeard/webserve.py:1066 +#: sickbeard/webserve.py:1065 msgid "Test notice sent successfully to {emby_host}" msgstr "Test oznámení úspěšně odeslán na {emby_host}" -#: sickbeard/webserve.py:1068 +#: sickbeard/webserve.py:1067 msgid "Test notice failed to {emby_host}" msgstr "Test oznámení na {emby_host} se nezdařil" -#: sickbeard/webserve.py:1076 +#: sickbeard/webserve.py:1075 msgid "Successfully started the scan update" msgstr "Prohledávání úspěšně zahájeno" -#: sickbeard/webserve.py:1078 +#: sickbeard/webserve.py:1077 msgid "Test failed to start the scan update" msgstr "Testu se nepodařilo spustit aktualizaci skenování" -#: sickbeard/webserve.py:1097 +#: sickbeard/webserve.py:1096 msgid "Test notice sent successfully to {nmj2_host}" msgstr "Test oznámení úspěšně odeslán na {nmj2_host}" -#: sickbeard/webserve.py:1099 +#: sickbeard/webserve.py:1098 msgid "Test notice failed to {nmj2_host}" msgstr "Test oznámení na {nmj2_host} se nezdařil" -#: sickbeard/webserve.py:1119 +#: sickbeard/webserve.py:1118 msgid "Trakt Authorized" msgstr "Trakt autorizován" -#: sickbeard/webserve.py:1120 +#: sickbeard/webserve.py:1119 msgid "Trakt Not Authorized!" msgstr "Trakt neautorizován!" -#: sickbeard/webserve.py:1184 +#: sickbeard/webserve.py:1183 msgid "Test email sent successfully! Check inbox." msgstr "Zkušební e-mail úspěšně odeslán! Zkontrolujte si svojí schránku." -#: sickbeard/webserve.py:1186 +#: sickbeard/webserve.py:1185 msgid "ERROR: {last_error}" msgstr "CHYBA: {last_error}" -#: sickbeard/webserve.py:1193 +#: sickbeard/webserve.py:1192 msgid "Test NMA notice sent successfully" msgstr "Zkouška NMA upozornění úspěšně odeslána" -#: sickbeard/webserve.py:1195 +#: sickbeard/webserve.py:1194 msgid "Test NMA notice failed" msgstr "Zkouška NMA upozornění se nezdařila" -#: sickbeard/webserve.py:1202 +#: sickbeard/webserve.py:1201 msgid "Pushalot notification succeeded. Check your Pushalot clients to make sure it worked" msgstr "Pushalot oznámení bylo úspěšné. Zkontrolujte vaše klienty Pushalot a ujistěte se, že to fungovalo" -#: sickbeard/webserve.py:1204 +#: sickbeard/webserve.py:1203 msgid "Error sending Pushalot notification" msgstr "Chyba při odesílání Pushalot oznámení" -#: sickbeard/webserve.py:1211 +#: sickbeard/webserve.py:1210 msgid "Pushbullet notification succeeded. Check your device to make sure it worked" msgstr "Pushbullet oznámení bylo úspěšné. Zkontrolujte vaše klienty Pushbullet a ujistěte se, že to fungovalo" -#: sickbeard/webserve.py:1213 sickbeard/webserve.py:1223 sickbeard/webserve.py:1232 +#: sickbeard/webserve.py:1212 sickbeard/webserve.py:1222 sickbeard/webserve.py:1231 msgid "Error sending Pushbullet notification" msgstr "Chyba při odesílání Pushbullet oznámení" #: gui/slick/views/displayShow.mako:436 gui/slick/views/inc_home_showList.mako:174 -#: gui/slick/views/manage.mako:49 sickbeard/webserve.py:1249 +#: gui/slick/views/manage.mako:49 sickbeard/webserve.py:1248 msgid "Status" msgstr "Status" -#: sickbeard/webserve.py:1268 sickbeard/webserve.py:1297 +#: sickbeard/webserve.py:1267 sickbeard/webserve.py:1296 msgid "Restarting SickRage" msgstr "Restartuji SickRage" -#: sickbeard/webserve.py:1300 +#: sickbeard/webserve.py:1299 msgid "Update Failed" msgstr "Aktualizace selhala" -#: sickbeard/webserve.py:1301 +#: sickbeard/webserve.py:1300 msgid "Update wasn't successful, not restarting. Check your log for more information." msgstr "Aktualizace byla neúspěšná, restart nebude proveden. Více informací v logu." -#: sickbeard/webserve.py:1308 +#: sickbeard/webserve.py:1307 msgid "Checking out branch" msgstr "Kontroluji větev" -#: sickbeard/webserve.py:1311 +#: sickbeard/webserve.py:1310 msgid "Already on branch" msgstr "K této větvi jste už přihlášen" -#: sickbeard/webserve.py:1339 +#: sickbeard/webserve.py:1338 msgid "Invalid show ID: {show}" msgstr "Neplatné ID seriálu: {show}" -#: sickbeard/webserve.py:1342 sickbeard/webserve.py:1871 sickbeard/webserve.py:2002 -#: sickbeard/webserve.py:2040 +#: sickbeard/webserve.py:1341 sickbeard/webserve.py:1870 sickbeard/webserve.py:2001 +#: sickbeard/webserve.py:2039 msgid "Show not in show list" msgstr "Seriál není v seznamu pořadů" #: gui/slick/views/inc_rootDirs.mako:31 gui/slick/views/manage.mako:38 -#: gui/slick/views/manage_massEdit.mako:74 sickbeard/webserve.py:1358 -#: sickbeard/webserve.py:2027 +#: gui/slick/views/manage_massEdit.mako:74 sickbeard/webserve.py:1357 +#: sickbeard/webserve.py:2026 msgid "Edit" msgstr "Upravit" -#: sickbeard/webserve.py:1368 +#: sickbeard/webserve.py:1367 msgid "This show is in the process of being downloaded - the info below is incomplete." msgstr "Tento seriál je v průběhu nebo je právě stahován - informace níže jsou neúplné." -#: sickbeard/webserve.py:1371 +#: sickbeard/webserve.py:1370 msgid "The information on this page is in the process of being updated." msgstr "Informace na této stránce se právě aktualizují." -#: sickbeard/webserve.py:1374 +#: sickbeard/webserve.py:1373 msgid "The episodes below are currently being refreshed from disk" msgstr "Epizody níže se právě aktualizují z disku" -#: sickbeard/webserve.py:1377 +#: sickbeard/webserve.py:1376 msgid "Currently downloading subtitles for this show" msgstr "Stahuji titulky k tomuto seriálu" -#: sickbeard/webserve.py:1380 +#: sickbeard/webserve.py:1379 msgid "This show is queued to be refreshed." msgstr "Tento seriál je ve frontě k aktualizaci." -#: sickbeard/webserve.py:1383 +#: sickbeard/webserve.py:1382 msgid "This show is queued and awaiting an update." msgstr "Tento seriál je ve frontě a čeká na aktualizaci." -#: sickbeard/webserve.py:1386 +#: sickbeard/webserve.py:1385 msgid "This show is queued and awaiting subtitles download." msgstr "Tento seriál je ve frontě a čeká na stažení titulků." -#: gui/slick/js/core.js:4081 sickbeard/webserve.py:1391 +#: gui/slick/js/core.js:4081 sickbeard/webserve.py:1390 msgid "Resume" msgstr "Pokračovat" #: gui/slick/js/core.js:4081 gui/slick/views/viewlogs.mako:12 -#: sickbeard/webserve.py:1393 +#: sickbeard/webserve.py:1392 msgid "Pause" msgstr "Pozastavit" #: gui/slick/views/editShow.mako:345 gui/slick/views/inc_blackwhitelist.mako:40 #: gui/slick/views/inc_blackwhitelist.mako:85 gui/slick/views/manage.mako:58 -#: gui/slick/views/manage_failedDownloads.mako:43 sickbeard/webserve.py:1395 +#: gui/slick/views/manage_failedDownloads.mako:43 sickbeard/webserve.py:1394 msgid "Remove" msgstr "Odstranit" -#: sickbeard/webserve.py:1396 +#: sickbeard/webserve.py:1395 msgid "Re-scan files" msgstr "Znovu prohledat soubory" -#: sickbeard/webserve.py:1397 +#: sickbeard/webserve.py:1396 msgid "Force Full Update" msgstr "Vynutit úplnou aktualizaci" -#: sickbeard/webserve.py:1398 +#: sickbeard/webserve.py:1397 msgid "Update show in KODI" msgstr "Aktualizace seriálu v KODI" -#: sickbeard/webserve.py:1399 +#: sickbeard/webserve.py:1398 msgid "Update show in Emby" msgstr "Aktualizace seriálu v Emby" -#: sickbeard/webserve.py:1402 +#: sickbeard/webserve.py:1401 msgid "Hide specials" msgstr "Skrýt speciální" -#: sickbeard/webserve.py:1404 +#: sickbeard/webserve.py:1403 msgid "Show specials" msgstr "Zobrazit speciální" -#: sickbeard/webserve.py:1406 sickbeard/webserve.py:2030 sickbeard/webserve.py:2031 +#: sickbeard/webserve.py:1405 sickbeard/webserve.py:2029 sickbeard/webserve.py:2030 msgid "Preview Rename" msgstr "Náhled přejmenování" -#: sickbeard/webserve.py:1409 +#: sickbeard/webserve.py:1408 msgid "Download Subtitles" msgstr "Stáhnout titulky" -#: sickbeard/webserve.py:1498 +#: sickbeard/webserve.py:1497 msgid "No scene exceptions" msgstr "Žádné výjimky pořadů" -#: sickbeard/webserve.py:1516 sickbeard/webserve.py:1764 sickbeard/webserve.py:1785 +#: sickbeard/webserve.py:1515 sickbeard/webserve.py:1763 sickbeard/webserve.py:1784 msgid "Invalid show ID" msgstr "Neplatné ID seriálu" -#: sickbeard/webserve.py:1525 sickbeard/webserve.py:1769 sickbeard/webserve.py:1790 +#: sickbeard/webserve.py:1524 sickbeard/webserve.py:1768 sickbeard/webserve.py:1789 msgid "Unable to find the specified show" msgstr "Nepodařilo se nalézt zadaný seriál" -#: sickbeard/webserve.py:1550 +#: sickbeard/webserve.py:1549 msgid "Unable to retreive Fansub Groups from AniDB." msgstr "Nelze načíst Fansub skupiny z AniDB." -#: sickbeard/webserve.py:1559 sickbeard/webserve.py:1561 +#: sickbeard/webserve.py:1558 sickbeard/webserve.py:1560 msgid "Edit Show" msgstr "Upravit seriál" -#: sickbeard/webserve.py:1637 sickbeard/webserve.py:1671 +#: sickbeard/webserve.py:1636 sickbeard/webserve.py:1670 msgid "Unable to refresh this show: {error}" msgstr "Nepodařilo se aktualizovat tento pořad: {error}" -#: sickbeard/webserve.py:1663 +#: sickbeard/webserve.py:1662 msgid "New location <tt>{location}</tt> does not exist" msgstr "Nové umístění <tt>{location}</tt> neexistuje" -#: sickbeard/webserve.py:1688 +#: sickbeard/webserve.py:1687 msgid "Unable to update show: {error}" msgstr "Nepodařilo se aktualizovat seriál: {error}" -#: sickbeard/webserve.py:1695 +#: sickbeard/webserve.py:1694 msgid "Unable to force an update on scene exceptions of the show." msgstr "Nelze vynutit aktualizaci výjimek epizod seriálu." -#: sickbeard/webserve.py:1702 +#: sickbeard/webserve.py:1701 msgid "Unable to force an update on scene numbering of the show." msgstr "Nelze vynutit aktualizaci číslování dílů seriálu." -#: sickbeard/webserve.py:1708 sickbeard/webserve.py:3540 +#: sickbeard/webserve.py:1707 sickbeard/webserve.py:3539 msgid "{num_errors:d} error{plural} while saving changes:" msgstr "" -#: sickbeard/webserve.py:1719 +#: sickbeard/webserve.py:1718 msgid "{show_name} has been {paused_resumed}" msgstr "{show_name} byl {paused_resumed}" -#: sickbeard/webserve.py:1719 +#: sickbeard/webserve.py:1718 msgid "resumed" msgstr "obnoven" -#: sickbeard/webserve.py:1719 +#: sickbeard/webserve.py:1718 msgid "paused" msgstr "pozastaveno" -#: sickbeard/webserve.py:1731 +#: sickbeard/webserve.py:1730 msgid "{show_name} has been {deleted_trashed} {was_deleted}" msgstr "{show_name} byl {deleted_trashed} {was_deleted}" -#: sickbeard/webserve.py:1733 +#: sickbeard/webserve.py:1732 msgid "deleted" msgstr "smazáno" -#: sickbeard/webserve.py:1733 +#: sickbeard/webserve.py:1732 msgid "trashed" msgstr "přeunut do koše" -#: sickbeard/webserve.py:1734 +#: sickbeard/webserve.py:1733 msgid "(media untouched)" msgstr "(media untouched)" -#: sickbeard/webserve.py:1734 +#: sickbeard/webserve.py:1733 msgid "(with all related media)" msgstr "(with all related media)" -#: sickbeard/webserve.py:1755 +#: sickbeard/webserve.py:1754 msgid "Unable to refresh this show." msgstr "Nelze obnovit tento seriál." -#: sickbeard/webserve.py:1775 +#: sickbeard/webserve.py:1774 msgid "Unable to update this show." msgstr "Nelze aktualizovat tento seriál." -#: sickbeard/webserve.py:1814 +#: sickbeard/webserve.py:1813 msgid "Library update command sent to KODI host(s)): {kodi_hosts}" msgstr "Příkaz k aktualizaci knihovny KODI byl odeslán: {kodi_hosts}" -#: sickbeard/webserve.py:1816 +#: sickbeard/webserve.py:1815 msgid "Unable to contact one or more KODI host(s)): {kodi_hosts}" msgstr "KODI se nepodařilo kontaktovat: {kodi_hosts}" -#: sickbeard/webserve.py:1825 +#: sickbeard/webserve.py:1824 msgid "Library update command sent to Plex Media Server host: {plex_server}" msgstr "Příkaz aktualizace knihovny odeslán do Plex Media Server host: {plex_server}" -#: sickbeard/webserve.py:1828 +#: sickbeard/webserve.py:1827 msgid "Unable to contact Plex Media Server host: {plex_server}" msgstr "Nelze navázat spojení s Plex Media Server host: {plex_server}" -#: sickbeard/webserve.py:1840 +#: sickbeard/webserve.py:1839 msgid "Library update command sent to Emby host: {emby_host}" msgstr "Příkaz aktualizace knihovny odeslán do Emby host: {emby_host}" -#: sickbeard/webserve.py:1842 +#: sickbeard/webserve.py:1841 msgid "Unable to contact Emby host: {emby_host}" msgstr "Nelze navázat spojení s Emby host: {emby_host}" -#: sickbeard/webserve.py:1852 sickbeard/webserve.py:2036 +#: sickbeard/webserve.py:1851 sickbeard/webserve.py:2035 msgid "You must specify a show and at least one episode" msgstr "Specifikujte seriál a alespoň jednu epizodu" -#: sickbeard/webserve.py:1861 +#: sickbeard/webserve.py:1860 msgid "Invalid status" msgstr "Neplatný stav" -#: sickbeard/webserve.py:1954 +#: sickbeard/webserve.py:1953 msgid "Backlog was automatically started for the following seasons of <b>{show_name}</b>" msgstr "Backlog byl automaticky spuštěn pro následující sezóny seriálu <b>{show_name}</b>" #: gui/slick/views/displayShow.mako:74 gui/slick/views/displayShow.mako:79 -#: gui/slick/views/displayShow.mako:404 sickbeard/webserve.py:1961 -#: sickbeard/webserve.py:1980 +#: gui/slick/views/displayShow.mako:404 sickbeard/webserve.py:1960 +#: sickbeard/webserve.py:1979 msgid "Season" msgstr "Série" -#: sickbeard/webserve.py:1968 +#: sickbeard/webserve.py:1967 msgid "Backlog started" msgstr "Backlog spuštěn" -#: sickbeard/webserve.py:1973 +#: sickbeard/webserve.py:1972 msgid "Retrying Search was automatically started for the following season of <b>{show_name}</b>" msgstr "Opakovené hledání bylo automaticky spuštěno pro následující sezóny seriálu <b>{show_name}</b>" -#: sickbeard/webserve.py:1987 +#: sickbeard/webserve.py:1986 msgid "Retry Search started" msgstr "Opakovené hledání spuštěno" -#: sickbeard/webserve.py:1997 +#: sickbeard/webserve.py:1996 msgid "You must specify a show" msgstr "Musíte zadat seriál" -#: sickbeard/webserve.py:2007 sickbeard/webserve.py:2045 +#: sickbeard/webserve.py:2006 sickbeard/webserve.py:2044 msgid "Can't rename episodes when the show dir is missing." msgstr "Nelze přejmenovat epizody když chybí složka se seriálem." -#: sickbeard/webserve.py:2212 sickbeard/webserve.py:2233 +#: sickbeard/webserve.py:2211 sickbeard/webserve.py:2232 msgid "New subtitles downloaded: {new_subtitle_languages}" msgstr "Nové titulky staženy: {new_subtitle_languages}" -#: sickbeard/webserve.py:2215 sickbeard/webserve.py:2236 +#: sickbeard/webserve.py:2214 sickbeard/webserve.py:2235 msgid "No subtitles downloaded" msgstr "Žádné titulky staženy" #: gui/slick/views/config_general.mako:80 gui/slick/views/layouts/main.mako:222 -#: sickbeard/webserve.py:2363 +#: sickbeard/webserve.py:2362 msgid "IRC" msgstr "IRC" -#: sickbeard/webserve.py:2376 +#: sickbeard/webserve.py:2375 msgid "Could not load news from the repo. [Click here for news.md])({news_url})" msgstr "Nelze načíst novinky z repozitáře. [Click here for news.md])({news_url})" -#: sickbeard/webserve.py:2383 sickbeard/webserve.py:2401 +#: sickbeard/webserve.py:2382 sickbeard/webserve.py:2400 msgid "The was a problem connecting to github, please refresh and try again" msgstr "Došlo k problému s připojením k GitHub, aktualizujte stránku a zkuste znovu" -#: sickbeard/webserve.py:2398 +#: sickbeard/webserve.py:2397 msgid "Could not load changes from the repo. [Click here for CHANGES.md]({changes_url})" msgstr "" -#: gui/slick/views/layouts/main.mako:223 sickbeard/webserve.py:2403 +#: gui/slick/views/layouts/main.mako:223 sickbeard/webserve.py:2402 msgid "Changelog" msgstr "Seznam změn" -#: gui/slick/views/layouts/main.mako:190 sickbeard/webserve.py:2413 -#: sickbeard/webserve.py:3855 sickbeard/webserve.py:4341 +#: gui/slick/views/layouts/main.mako:190 sickbeard/webserve.py:2412 +#: sickbeard/webserve.py:3826 sickbeard/webserve.py:4312 msgid "Post Processing" msgstr "Finální zpracování" -#: gui/slick/views/layouts/main.mako:128 sickbeard/webserve.py:2445 +#: gui/slick/views/layouts/main.mako:128 sickbeard/webserve.py:2444 msgid "Add Shows" msgstr "Přidat seriály" -#: sickbeard/webserve.py:2510 +#: sickbeard/webserve.py:2509 msgid "No folders selected." msgstr "Nejsou vybrány žádné složky" -#: sickbeard/webserve.py:2632 +#: sickbeard/webserve.py:2631 msgid "New Show" msgstr "Nový seriál" -#: sickbeard/webserve.py:2647 +#: sickbeard/webserve.py:2646 msgid "Trending Shows" msgstr "Populární seriály" -#: sickbeard/webserve.py:2649 sickbeard/webserve.py:2772 +#: sickbeard/webserve.py:2648 sickbeard/webserve.py:2771 msgid "Popular Shows" msgstr "Populární seriály" -#: sickbeard/webserve.py:2651 sickbeard/webserve.py:2665 +#: sickbeard/webserve.py:2650 sickbeard/webserve.py:2664 msgid "Most Anticipated Shows" msgstr "Nejočekávanější seriály" -#: sickbeard/webserve.py:2653 +#: sickbeard/webserve.py:2652 msgid "Most Collected Shows" msgstr "" -#: sickbeard/webserve.py:2655 +#: sickbeard/webserve.py:2654 msgid "Most Watched Shows" msgstr "" -#: sickbeard/webserve.py:2657 +#: sickbeard/webserve.py:2656 msgid "Most Played Shows" msgstr "" -#: sickbeard/webserve.py:2659 +#: sickbeard/webserve.py:2658 msgid "Recommended Shows" msgstr "" -#: gui/slick/views/addShows_trendingShows.mako:60 sickbeard/webserve.py:2661 +#: gui/slick/views/addShows_trendingShows.mako:60 sickbeard/webserve.py:2660 msgid "New Shows" msgstr "Nové seriály" -#: gui/slick/views/addShows_trendingShows.mako:61 sickbeard/webserve.py:2663 +#: gui/slick/views/addShows_trendingShows.mako:61 sickbeard/webserve.py:2662 msgid "Season Premieres" msgstr "Premiéry nových sérií" -#: sickbeard/webserve.py:2792 sickbeard/webserve.py:2793 +#: sickbeard/webserve.py:2791 sickbeard/webserve.py:2792 msgid "Existing Show" msgstr "Existující seriál" -#: sickbeard/webserve.py:2871 +#: sickbeard/webserve.py:2870 msgid "No root directories setup, please go back and add one." msgstr "" -#: sickbeard/webserve.py:2883 sickbeard/webserve.py:3002 +#: sickbeard/webserve.py:2882 sickbeard/webserve.py:3001 msgid "Show added" msgstr "Seriál přidán" -#: sickbeard/webserve.py:2883 +#: sickbeard/webserve.py:2882 msgid "Adding the specified show {show_name}" msgstr "" -#: sickbeard/webserve.py:2924 +#: sickbeard/webserve.py:2923 msgid "Missing params, no Indexer ID or folder: {show_to_add} and {root_dir}/{show_path}" msgstr "" -#: sickbeard/webserve.py:2933 +#: sickbeard/webserve.py:2932 msgid "Unknown error. Unable to add show due to problem with show selection." msgstr "" -#: sickbeard/webserve.py:2957 sickbeard/webserve.py:2967 +#: sickbeard/webserve.py:2956 sickbeard/webserve.py:2966 msgid "Unable to add show" msgstr "Nelze přidat seriál" -#: sickbeard/webserve.py:2957 +#: sickbeard/webserve.py:2956 msgid "Folder {show_dir} exists already" msgstr "Složka {show_dir} již existuje" -#: sickbeard/webserve.py:2968 +#: sickbeard/webserve.py:2967 msgid "Unable to create the folder {show_dir}, can't add the show" msgstr "" -#: sickbeard/webserve.py:3002 +#: sickbeard/webserve.py:3001 msgid "Adding the specified show into {show_dir}" msgstr "" -#: sickbeard/webserve.py:3078 +#: sickbeard/webserve.py:3077 msgid "Shows Added" msgstr "Seriály přidány" -#: sickbeard/webserve.py:3079 +#: sickbeard/webserve.py:3078 msgid "Automatically added {num_shows} from their existing metadata files" msgstr "" -#: gui/slick/views/layouts/main.mako:153 sickbeard/webserve.py:3096 +#: gui/slick/views/layouts/main.mako:153 sickbeard/webserve.py:3095 msgid "Mass Update" msgstr "Hromadná aktualizace" -#: sickbeard/webserve.py:3134 sickbeard/webserve.py:3161 sickbeard/webserve.py:3237 -#: sickbeard/webserve.py:3238 +#: sickbeard/webserve.py:3133 sickbeard/webserve.py:3160 sickbeard/webserve.py:3236 +#: sickbeard/webserve.py:3237 msgid "Episode Overview" msgstr "Přehled epizod" -#: sickbeard/webserve.py:3270 +#: sickbeard/webserve.py:3269 msgid "Missing Subtitles" msgstr "Chybějící titulky" -#: gui/slick/views/layouts/main.mako:154 sickbeard/webserve.py:3356 -#: sickbeard/webserve.py:3357 +#: gui/slick/views/layouts/main.mako:154 sickbeard/webserve.py:3355 +#: sickbeard/webserve.py:3356 msgid "Backlog Overview" msgstr "Přehled backlog" -#: sickbeard/webserve.py:3481 +#: sickbeard/webserve.py:3480 msgid "Mass Edit" msgstr "Hromadně upravit" -#: sickbeard/webserve.py:3586 +#: sickbeard/webserve.py:3585 msgid "Unable to update show: {excption_format}" msgstr "Nepodařilo se aktualizovat seriál: {excption_format}" -#: sickbeard/webserve.py:3594 +#: sickbeard/webserve.py:3593 msgid "Unable to refresh show {show_name}: {excption_format}" msgstr "Nelze aktualizovat seriál {show_name}: {excption_format}" -#: sickbeard/webserve.py:3605 +#: sickbeard/webserve.py:3604 msgid "Errors encountered" msgstr "Byly zjištěny chyby" -#: gui/slick/views/config_general.mako:261 sickbeard/webserve.py:3611 +#: gui/slick/views/config_general.mako:261 sickbeard/webserve.py:3610 msgid "Updates" msgstr "Aktualizace" -#: sickbeard/webserve.py:3616 +#: sickbeard/webserve.py:3615 msgid "Refreshes" msgstr "Obnovuje se" -#: sickbeard/webserve.py:3621 +#: sickbeard/webserve.py:3620 msgid "Renames" msgstr "Přejmenovává se" #: gui/slick/views/displayShow.mako:260 gui/slick/views/displayShow.mako:435 #: gui/slick/views/editShow.mako:119 gui/slick/views/inc_addShowOptions.mako:20 -#: gui/slick/views/manage_massEdit.mako:262 sickbeard/webserve.py:3626 -#: sickbeard/webserve.py:5244 +#: gui/slick/views/manage_massEdit.mako:262 sickbeard/webserve.py:3625 +#: sickbeard/webserve.py:5215 msgid "Subtitles" msgstr "Titulky" -#: sickbeard/webserve.py:3631 +#: sickbeard/webserve.py:3630 msgid "The following actions were queued" msgstr "Tyto akce byly ve frontě" -#: sickbeard/webserve.py:3651 -msgid "For best results please set the Download Station alias as" -msgstr "" - -#: sickbeard/webserve.py:3652 -msgid "You can check this setting in the Synology DSM" -msgstr "" - -#: sickbeard/webserve.py:3652 sickbeard/webserve.py:3654 -msgid "Control Panel" -msgstr "Ovládací panel" - -#: sickbeard/webserve.py:3652 -msgid "Application Portal" -msgstr "Aplikační portál" - -#: sickbeard/webserve.py:3653 -msgid "Make sure you allow DSM to be embedded with iFrames too in" -msgstr "" - -#: sickbeard/webserve.py:3654 -msgid "DSM Settings" -msgstr "DSM nastavení" - -#: sickbeard/webserve.py:3654 -msgid "Security" -msgstr "Zabezpečení" - -#: gui/slick/views/layouts/main.mako:167 sickbeard/webserve.py:3662 -msgid "Manage Torrents" -msgstr "Správa torrentů" - -#: gui/slick/views/layouts/main.mako:170 sickbeard/webserve.py:3683 +#: gui/slick/views/layouts/main.mako:170 sickbeard/webserve.py:3654 msgid "Failed Downloads" msgstr "Nepovedená stahování" -#: gui/slick/views/layouts/main.mako:155 sickbeard/webserve.py:3701 +#: gui/slick/views/layouts/main.mako:155 sickbeard/webserve.py:3672 msgid "Manage Searches" msgstr "Spravovat vyhledávače" -#: sickbeard/webserve.py:3709 +#: sickbeard/webserve.py:3680 msgid "Backlog search started" msgstr "Backlog vyhledávání začalo" -#: sickbeard/webserve.py:3719 +#: sickbeard/webserve.py:3690 msgid "Daily search started" msgstr "Každodenní vyhledávání začalo" -#: sickbeard/webserve.py:3728 +#: sickbeard/webserve.py:3699 msgid "Find propers search started" msgstr "Vyhledávání propers začalo" -#: sickbeard/webserve.py:3737 +#: sickbeard/webserve.py:3708 msgid "Subtitle search started" msgstr "Vyhledávání titulů začalo" -#: sickbeard/webserve.py:3801 +#: sickbeard/webserve.py:3772 msgid "Remove Selected" msgstr "" -#: sickbeard/webserve.py:3802 +#: sickbeard/webserve.py:3773 msgid "Clear History" msgstr "Odstranit historii" -#: sickbeard/webserve.py:3803 +#: sickbeard/webserve.py:3774 msgid "Trim History" msgstr "Zredukovat historii" -#: sickbeard/webserve.py:3823 +#: sickbeard/webserve.py:3794 msgid "Selected history entries removed" msgstr "" -#: sickbeard/webserve.py:3830 +#: sickbeard/webserve.py:3801 msgid "History cleared" msgstr "Historie odstraněna" -#: sickbeard/webserve.py:3837 +#: sickbeard/webserve.py:3808 msgid "Removed history entries older than 30 days" msgstr "Odstranit historii starší než 30 dní" -#: gui/slick/views/layouts/main.mako:185 sickbeard/webserve.py:3850 +#: gui/slick/views/layouts/main.mako:185 sickbeard/webserve.py:3821 msgid "General" msgstr "Základní" -#: sickbeard/webserve.py:3851 sickbeard/webserve.py:4143 +#: sickbeard/webserve.py:3822 sickbeard/webserve.py:4114 msgid "Backup/Restore" msgstr "Záloha / Obnova" -#: gui/slick/views/layouts/main.mako:187 sickbeard/webserve.py:3852 -#: sickbeard/webserve.py:4206 +#: gui/slick/views/layouts/main.mako:187 sickbeard/webserve.py:3823 +#: sickbeard/webserve.py:4177 msgid "Search Settings" msgstr "Nastavení vyhledávání" -#: gui/slick/views/layouts/main.mako:188 sickbeard/webserve.py:3853 -#: sickbeard/webserve.py:4518 +#: gui/slick/views/layouts/main.mako:188 sickbeard/webserve.py:3824 +#: sickbeard/webserve.py:4489 msgid "Search Providers" msgstr "Nastavení poskytovatelů" -#: gui/slick/views/layouts/main.mako:189 sickbeard/webserve.py:3854 +#: gui/slick/views/layouts/main.mako:189 sickbeard/webserve.py:3825 msgid "Subtitles Settings" msgstr "Nastavení titulků" -#: gui/slick/views/layouts/main.mako:191 sickbeard/webserve.py:3856 -#: sickbeard/webserve.py:4964 +#: gui/slick/views/layouts/main.mako:191 sickbeard/webserve.py:3827 +#: sickbeard/webserve.py:4935 msgid "Notifications" msgstr "Notifikace" @@ -1240,142 +1237,142 @@ msgstr "Notifikace" #: gui/slick/views/home.mako:35 gui/slick/views/inc_addShowOptions.mako:79 #: gui/slick/views/inc_home_showList.mako:179 gui/slick/views/layouts/main.mako:192 #: gui/slick/views/manage.mako:44 gui/slick/views/manage_massEdit.mako:202 -#: sickbeard/webserve.py:3857 sickbeard/webserve.py:5309 +#: sickbeard/webserve.py:3828 sickbeard/webserve.py:5280 msgid "Anime" msgstr "Anime" -#: sickbeard/webserve.py:3895 sickbeard/webserve.py:3896 +#: sickbeard/webserve.py:3866 sickbeard/webserve.py:3867 msgid "SickRage Configuration" msgstr "SickRage konfigurace" -#: sickbeard/webserve.py:3910 +#: sickbeard/webserve.py:3881 msgid "Config - Shares" msgstr "" -#: sickbeard/webserve.py:3910 +#: sickbeard/webserve.py:3881 msgid "Windows Shares Configuration" msgstr "" -#: sickbeard/webserve.py:3937 +#: sickbeard/webserve.py:3908 msgid "Saved Shares" msgstr "" -#: sickbeard/webserve.py:3937 +#: sickbeard/webserve.py:3908 msgid "Your Windows share settings have been saved" msgstr "" -#: sickbeard/webserve.py:3948 +#: sickbeard/webserve.py:3919 msgid "Config - General" msgstr "Nastavení - Obecné" -#: sickbeard/webserve.py:3948 +#: sickbeard/webserve.py:3919 msgid "General Configuration" msgstr "Základní nastavení" -#: sickbeard/webserve.py:3988 +#: sickbeard/webserve.py:3959 msgid "Saved Defaults" msgstr "Uložit výchozí" -#: sickbeard/webserve.py:3988 +#: sickbeard/webserve.py:3959 msgid "Your \"add show\" defaults have been set to your current selections." msgstr "" -#: sickbeard/webserve.py:4095 +#: sickbeard/webserve.py:4066 msgid "Unable to create directory {directory}, log directory not changed." msgstr "Nelze vytvořit adresář {directory}, adresář logu nezměněn." -#: sickbeard/webserve.py:4103 +#: sickbeard/webserve.py:4074 msgid "Unable to create directory {directory}, https cert directory not changed." msgstr "Nelze vytvořit adresář {directory}, adresář https certifikátů nezměněn." -#: sickbeard/webserve.py:4107 +#: sickbeard/webserve.py:4078 msgid "Unable to create directory {directory}, https key directory not changed." msgstr "Nelze vytvořit adresář {directory}, adresář https klíčů nezměněn." -#: sickbeard/webserve.py:4126 sickbeard/webserve.py:4324 sickbeard/webserve.py:4456 -#: sickbeard/webserve.py:5227 +#: sickbeard/webserve.py:4097 sickbeard/webserve.py:4295 sickbeard/webserve.py:4427 +#: sickbeard/webserve.py:5198 msgid "Error(s) Saving Configuration" msgstr "Nastala chyba během ukládání konfigurace" -#: sickbeard/webserve.py:4129 sickbeard/webserve.py:4327 sickbeard/webserve.py:4458 -#: sickbeard/webserve.py:4950 sickbeard/webserve.py:5230 sickbeard/webserve.py:5294 -#: sickbeard/webserve.py:5323 +#: sickbeard/webserve.py:4100 sickbeard/webserve.py:4298 sickbeard/webserve.py:4429 +#: sickbeard/webserve.py:4921 sickbeard/webserve.py:5201 sickbeard/webserve.py:5265 +#: sickbeard/webserve.py:5294 msgid "Configuration Saved" msgstr "Konfigurace uložena" -#: sickbeard/webserve.py:4142 +#: sickbeard/webserve.py:4113 msgid "Config - Backup/Restore" msgstr "Nastavení - Záloha / Obnova" -#: sickbeard/webserve.py:4205 +#: sickbeard/webserve.py:4176 msgid "Config - Episode Search" msgstr "Nastavení - Vyhledávání epizod" -#: sickbeard/webserve.py:4340 +#: sickbeard/webserve.py:4311 msgid "Config - Post Processing" msgstr "Nastavení - Finální zpracování" -#: sickbeard/webserve.py:4380 +#: sickbeard/webserve.py:4351 msgid "Unpacking Not Supported, disabling unpack setting" msgstr "Rozbalování není podporováno, robzalování zůstalo vypnuto" -#: sickbeard/webserve.py:4431 +#: sickbeard/webserve.py:4402 msgid "You tried saving an invalid normal naming config, not saving your naming settings" msgstr "" -#: sickbeard/webserve.py:4439 +#: sickbeard/webserve.py:4410 msgid "You tried saving an invalid anime naming config, not saving your naming settings" msgstr "" -#: sickbeard/webserve.py:4517 +#: sickbeard/webserve.py:4488 msgid "Config - Providers" msgstr "Nastavení - Poskytovatelé" -#: sickbeard/webserve.py:4547 +#: sickbeard/webserve.py:4518 msgid "No Provider Name specified" msgstr "Není zadaný žádný název poskytovatele" -#: sickbeard/webserve.py:4549 +#: sickbeard/webserve.py:4520 msgid "No Provider Url specified" msgstr "Není zadaná Url poskytovatele" -#: sickbeard/webserve.py:4551 +#: sickbeard/webserve.py:4522 msgid "No Provider Api key specified" msgstr "Není zadán Api klíč poskytovatele" -#: sickbeard/webserve.py:4963 +#: sickbeard/webserve.py:4934 msgid "Config - Notifications" msgstr "Nastavení - Notifikace" -#: sickbeard/webserve.py:5243 +#: sickbeard/webserve.py:5214 msgid "Config - Subtitles" msgstr "Nastavení - Titulky" -#: sickbeard/webserve.py:5308 +#: sickbeard/webserve.py:5279 msgid "Config - Anime" msgstr "Nastavení - Anime" -#: sickbeard/webserve.py:5336 +#: sickbeard/webserve.py:5307 msgid "Clear Errors" msgstr "Vymazat chyby" -#: sickbeard/webserve.py:5342 +#: sickbeard/webserve.py:5313 msgid "Clear Warnings" msgstr "Vymazat varování" -#: sickbeard/webserve.py:5348 +#: sickbeard/webserve.py:5319 msgid "Submit Errors" msgstr "Odeslat chyby" -#: sickbeard/webserve.py:5363 +#: sickbeard/webserve.py:5334 msgid "Logs & Errors" msgstr "Logy & chyb" -#: sickbeard/webserve.py:5388 +#: sickbeard/webserve.py:5359 msgid "Log File" msgstr "Soubor logu" -#: sickbeard/webserve.py:5388 +#: sickbeard/webserve.py:5359 msgid "Logs" msgstr "Logy" @@ -1383,30 +1380,166 @@ msgstr "Logy" msgid "This is a test notification from SickRage" msgstr "" -#: gui/slick/js/core.js:481 gui/slick/js/core.js:502 gui/slick/js/core.js:524 -#: gui/slick/js/core.js:548 gui/slick/js/core.js:573 gui/slick/js/core.js:596 -#: gui/slick/js/core.js:625 gui/slick/js/core.js:645 gui/slick/js/core.js:690 -#: gui/slick/js/core.js:769 gui/slick/js/core.js:829 gui/slick/js/core.js:849 -#: gui/slick/js/core.js:879 gui/slick/js/core.js:909 gui/slick/js/core.js:969 -#: gui/slick/js/core.js:1046 gui/slick/js/core.js:1066 gui/slick/js/core.js:1085 +#: gui/slick/js/browser.js:6 +msgid "Choose Directory" +msgstr "" + +#: gui/slick/js/core.js:443 +msgid "Select log file folder location" +msgstr "" + +#: gui/slick/js/core.js:445 +msgid "Select CSS file" +msgstr "" + +#: gui/slick/js/core.js:469 +msgid "Select backup folder to save to" +msgstr "" + +#: gui/slick/js/core.js:470 +msgid "Select backup files to restore" +msgstr "" + +#: gui/slick/js/core.js:479 gui/slick/js/core.js:500 gui/slick/js/core.js:522 +#: gui/slick/js/core.js:546 gui/slick/js/core.js:571 gui/slick/js/core.js:594 +#: gui/slick/js/core.js:623 gui/slick/js/core.js:643 gui/slick/js/core.js:688 +#: gui/slick/js/core.js:767 gui/slick/js/core.js:827 gui/slick/js/core.js:847 +#: gui/slick/js/core.js:877 gui/slick/js/core.js:907 gui/slick/js/core.js:967 +#: gui/slick/js/core.js:1044 gui/slick/js/core.js:1064 gui/slick/js/core.js:1083 msgid "Please fill out the necessary fields above." msgstr "" -#: gui/slick/js/core.js:1328 gui/slick/js/core.js:1378 gui/slick/js/core.js:1427 -#: gui/slick/js/core.js:1493 +#: gui/slick/js/core.js:680 +msgid "<b>Step 1:</b> Confirm Authorization" +msgstr "" + +#: gui/slick/js/core.js:977 +msgid "Check blacklist name; the value needs to be a trakt slug" +msgstr "" + +#: gui/slick/js/core.js:1022 +msgid "You must provide a recipient email address!" +msgstr "" + +#: gui/slick/js/core.js:1107 +msgid "You didn't supply a Pushbullet api key" +msgstr "" + +#: gui/slick/js/core.js:1133 gui/slick/js/core.js:1162 +msgid "Don't forget to save your new pushbullet settings." +msgstr "" + +#: gui/slick/js/core.js:1262 +msgid "Select TV Download Directory" +msgstr "" + +#: gui/slick/js/core.js:1263 +msgid "Select Unpack Directory" +msgstr "" + +#: gui/slick/js/core.js:1326 gui/slick/js/core.js:1376 gui/slick/js/core.js:1425 +#: gui/slick/js/core.js:1491 msgid "This pattern is invalid." msgstr "" -#: gui/slick/js/core.js:1336 gui/slick/js/core.js:1386 gui/slick/js/core.js:1435 -#: gui/slick/js/core.js:1501 +#: gui/slick/js/core.js:1334 gui/slick/js/core.js:1384 gui/slick/js/core.js:1433 +#: gui/slick/js/core.js:1499 msgid "This pattern would be invalid without the folders, using it will force \"Season Folders\" on for all shows." msgstr "" -#: gui/slick/js/core.js:1344 gui/slick/js/core.js:1394 gui/slick/js/core.js:1443 -#: gui/slick/js/core.js:1509 +#: gui/slick/js/core.js:1342 gui/slick/js/core.js:1392 gui/slick/js/core.js:1441 +#: gui/slick/js/core.js:1507 msgid "This pattern is valid." msgstr "" +#: gui/slick/js/core.js:1818 +msgid "Select .nzb black hole/watch location" +msgstr "" + +#: gui/slick/js/core.js:1819 +msgid "Select .torrent black hole/watch location" +msgstr "" + +#: gui/slick/js/core.js:1820 +msgid "Select .torrent download location" +msgstr "" + +#: gui/slick/js/core.js:1900 +msgid "Minimum seeding time is" +msgstr "" + +#: gui/slick/js/core.js:1902 +msgid "URL to your uTorrent client (e.g. http://localhost:8000)" +msgstr "" + +#: gui/slick/js/core.js:1905 +msgid "Stop seeding when inactive for" +msgstr "" + +#: gui/slick/js/core.js:1911 +msgid "URL to your Transmission client (e.g. http://localhost:9091)" +msgstr "" + +#: gui/slick/js/core.js:1921 +msgid "URL to your Deluge client (e.g. http://localhost:8112)" +msgstr "" + +#: gui/slick/js/core.js:1930 +msgid "IP or Hostname of your Deluge Daemon (e.g. scgi://localhost:58846)" +msgstr "" + +#: gui/slick/js/core.js:1937 +msgid "URL to your Synology DS client (e.g. http://localhost:5000)" +msgstr "" + +#: gui/slick/js/core.js:1941 +msgid "URL to your rTorrent client (e.g. scgi://localhost:5000 <br> or https://localhost/rutorrent/plugins/httprpc/action.php)" +msgstr "" + +#: gui/slick/js/core.js:1952 +msgid "URL to your qBittorrent client (e.g. http://localhost:8080)" +msgstr "" + +#: gui/slick/js/core.js:1962 +msgid "URL to your MLDonkey (e.g. http://localhost:4080)" +msgstr "" + +#: gui/slick/js/core.js:1974 +msgid "URL to your putio client (e.g. http://localhost:8080)" +msgstr "" + +#: gui/slick/js/core.js:1975 +msgid "<a herf=\"https://app.put.io/oauth/apps/new\" target=\"_blank\"> Create a new OAuth app for put.io</a>" +msgstr "" + +#: gui/slick/js/core.js:1977 +msgid "Put.io Parent Folder" +msgstr "" + +#: gui/slick/js/core.js:1978 +msgid "Put.io OAuth Token" +msgstr "" + +#: gui/slick/js/core.js:3383 gui/slick/views/displayShow.mako:410 +msgid "Show Episodes" +msgstr "" + +#: gui/slick/js/core.js:3388 gui/slick/views/displayShow.mako:408 +msgid "Hide Episodes" +msgstr "" + +#: gui/slick/js/core.js:3396 +msgid "Select Show Location" +msgstr "" + +#: gui/slick/js/core.js:3460 +msgid "Select Unprocessed Episode Folder" +msgstr "" + +#: gui/slick/js/core.js:3790 +msgid "DELETED" +msgstr "" + #: gui/slick/js/core.js:4082 msgid "Resume updating the log on this page." msgstr "" @@ -1415,6 +1548,26 @@ msgstr "" msgid "Pause updating the log on this page." msgstr "" +#: gui/slick/js/core.js:4323 +msgid "searching {searchingFor}..." +msgstr "" + +#: gui/slick/js/core.js:4334 +msgid "search timed out, try again or try another indexer" +msgstr "" + +#: gui/slick/js/core.js:4503 +msgid "loading folders..." +msgstr "" + +#: gui/slick/js/parsers.js:7 gui/slick/js/parsers.js:8 +#: gui/slick/js/plotTooltip.js:6 gui/slick/js/sceneExceptionsTooltip.js:6 +#: gui/slick/views/inc_home_showList.mako:209 +#: gui/slick/views/inc_home_showList.mako:215 +#: gui/slick/views/inc_home_showList.mako:231 +msgid "Loading..." +msgstr "Načítám..." + #: gui/slick/views/404.mako:5 msgid "You have reached this page by accident, please check the url." msgstr "Sem jste se dostali omylem, zkontrolujte si url." @@ -5713,14 +5866,6 @@ msgstr "Změnit vybrané epizody na" msgid "Select Columns" msgstr "Vybrat sloupce" -#: gui/slick/views/displayShow.mako:408 -msgid "Hide Episodes" -msgstr "" - -#: gui/slick/views/displayShow.mako:410 -msgid "Show Episodes" -msgstr "" - #: gui/slick/views/displayShow.mako:424 msgid "NFO" msgstr "NFO" @@ -6234,12 +6379,6 @@ msgstr "Aktivní" msgid "loading" msgstr "načítání" -#: gui/slick/views/inc_home_showList.mako:209 -#: gui/slick/views/inc_home_showList.mako:215 -#: gui/slick/views/inc_home_showList.mako:231 -msgid "Loading..." -msgstr "Načítám..." - #: gui/slick/views/inc_qualityChooser.mako:31 msgid "<p><b><u>Preferred</u></b> qualities will replace those in <b><u>allowed</u></b>, even if they are lower.</p>" msgstr "" @@ -6777,6 +6916,10 @@ msgstr "Aktualizace KODI" msgid "Update Emby" msgstr "Aktualizovat Emby" +#: gui/slick/views/layouts/main.mako:167 +msgid "Manage Torrents" +msgstr "Správa torrentů" + #: gui/slick/views/layouts/main.mako:173 msgid "Missed Subtitle Management" msgstr "Správa chybějících titulků" diff --git a/locale/da_DK/LC_MESSAGES/messages.json b/locale/da_DK/LC_MESSAGES/messages.json index 37499337341b4c6d3a591819e57b2c9a19be9481..370769c0f962ec6f26958ad55f6f6e4c8277ada7 100644 --- a/locale/da_DK/LC_MESSAGES/messages.json +++ b/locale/da_DK/LC_MESSAGES/messages.json @@ -1 +1 @@ -{"messages":{"domain":"messages","locale_data":{"messages":{"100":[null,"100"],"250":[null,"250"],"500":[null,"500"],"":{"domain":"messages","plural_forms":"nplurals=2; plural=(n != 1);","lang":"da_DK"},"Drama":[null,"Drama"],"Mystery":[null,"Mysterium"],"Science-Fiction":[null,"Science-Fiction"],"Crime":[null,"Krimi"],"Action":[null,"Handling"],"Comedy":[null,"Komedie"],"Thriller":[null,"Thriller"],"Animation":[null,"Animation"],"Family":[null,"Familie"],"Fantasy":[null,"Fantasi"],"Adventure":[null,"Eventyr"],"Horror":[null,"Gyser"],"Film-Noir":[null,"Film-Noir"],"Sci-Fi":[null,"Sci-Fi"],"Romance":[null,"Romantik"],"Sport":[null,"Sport"],"War":[null,"Krig"],"Biography":[null,"Biografi"],"History":[null,"Historik"],"Music":[null,"Musik"],"Western":[null,"Western"],"News":[null,"Nyheder"],"Sitcom":[null,"Sitcom"],"Reality-TV":[null,"Reality-TV"],"Documentary":[null,"Dokumentar"],"Game-Show":[null,"TV-Quiz"],"Musical":[null,"Musical"],"Talk-Show":[null,"Talk-Show"],"Started Download":[null,"Download startet"],"Download Finished":[null,"Download færdig"],"Subtitle Download Finished":[null,"Undertekst download færdig"],"SickRage Updated":[null,"SickRage opdateret"],"SickRage Updated To Commit#: ":[null,"SickRage opdateret til Commit #: "],"SickRage new login":[null,"Nyt SickRage login"],"New login from IP: {0}. http://geomaplookup.net/?ip={0}":[null,"Nyt login fra IP: {0}. http://geomaplookup.net/?IP={0}"],"Repeat":[null,"Genudsendelse"],"Repeat (Separated)":[null,"Genudsendelse (Adskilt)"],"Extend":[null,"Udvidet"],"Extend (Limited)":[null,"Udvidet (begrænset)"],"Extend (Limited, E-prefixed)":[null,"Udvidet (begrænset, E-præfiks)"],"Downloaded":[null,"Downloadet"],"Snatched":[null,"Hentet"],"Snatched (Proper)":[null,"Hentet(ordentlig)"],"Failed":[null,"Mislykket"],"Snatched (Best)":[null,"Hentet (bedst)"],"Archived":[null,"Arkiveret"],"Unknown":[null,"Ukendt"],"Unaired":[null,"Ikke udsendt"],"Skipped":[null,"Sprunget over"],"Wanted":[null,"Ønsket"],"Ignored":[null,"Ignoreret"],"Subtitled":[null,"Undertekstet"],"<No Filter>":[null,"Ingen filter"],"Daily Searcher":[null,"Daglig Søgning"],"Backlog":[null,"Historik"],"Show Updater":[null,"Opdater Serie"],"Check Version":[null,"Tjek Version"],"Show Queue":[null,"Serie-kø"],"Search Queue (All)":[null,"Søgnings kø (Alle)"],"Search Queue (Daily Searcher)":[null,"Søgnings kø (Daglig søgning)"],"Search Queue (Backlog)":[null,"Søgnings kø (Historik)"],"Search Queue (Manual)":[null,"Søgnings kø (Manuel)"],"Search Queue (Retry/Failed)":[null,"Søgnings kø (Prøv igen/Mislykkedes)"],"Search Queue (RSS)":[null,"Søgnings kø (RSS)"],"Find Propers":[null,"Find forbedrede udgivelser"],"Postprocessor":[null,"Efterbehandling"],"Find Subtitles":[null,"Find undertekster"],"Trakt Checker":[null,"Trakt Checker"],"Event":[null,"Begivenhed"],"Error":[null,"Fejl"],"Tornado":[null,"Tornado"],"Thread":[null,"Tråd"],"Main":[null,"Hoved"],"Loading":[null,""],"New update found for SickRage, starting auto-updater":[null,"Ny opdatering til SickRage fundet, starter auto-opdatering"],"Update was successful":[null,"Opdateringen var successfuld"],"Update failed!":[null,"Opdatering fejlede!"],"Backup":[null,"Sikkerhedskopi"],"Config backup in progress...":[null,"Config backup i gang..."],"Config backup successful, updating...":[null,"Config backup lykkedes, opdaterer..."],"Config backup failed, aborting update":[null,"Backup af konfigurationer mislykkedes. Opdatering afbrydes"],"No update needed":[null,"Opdatering ikke nødvendig"],"Mako Error":[null,"Mako fejl"],"Oops":[null,"Ups"],"Wrong API key used":[null,"Forkert API-nøgle brugt"],"Login":[null,"Login"],"API Key not generated":[null,"API-nøgle ikke genereret"],"API Builder":[null,"API Builder"],"Schedule":[null,"Tidsplan"],"Test 1":[null,"Test 1"],"This is test number 1":[null,"Dette er test nummer 1"],"Test 2":[null,"Test 2"],"This is test number 2":[null,"Dette er test nummer 2"],"You're using the {branch} branch. Please use 'master' unless specifically asked":[null,"Du bruger {branch}-grenen. Brug venligst 'master' medmindre du specifikt bliver spurgt om det"],"Invalid show parameters":[null,"Ugyldig serie parametre"],"Invalid parameters":[null,"Ugyldige parametre"],"Episode couldn't be retrieved":[null,"Episode kunne ikke hentes"],"Home":[null,"Hjem"],"Show List":[null,"Serie Liste"],"Error: Unsupported Request. Send jsonp request with 'callback' variable in the query string.":[null,"Fejl: Ikke-understøttet anmodning. Send jsonp anmodning med \"callback\" variabel i forespørgselstrengen."],"Success. Connected and authenticated":[null,"Succes. Forbundet og godkendt"],"Authentication failed. SABnzbd expects":[null,"Godkendelse mislykkedes. SABnzbd forventer"],"as authentication method":[null,"som godkendelsesmetode"],"Unable to connect to host":[null,"Kan ikke forbinde til serveren"],"SMS sent successfully":[null,"SMS sendt succesfuldt"],"Problem sending SMS: {message}":[null,"Problemer med at sende SMS: {message}"],"Telegram notification succeeded. Check your Telegram clients to make sure it worked":[null,"Telegram notifikation lykkedes. Tjek dine Telegram klienter for at sikre sig det virkede"],"Error sending Telegram notification: {message}":[null,"Fejl ved afsendelse af Telegram notifikation: {message}"],"join notification succeeded. Check your join clients to make sure it worked":[null,""],"Error sending join notification: {message}":[null,"Fejl ved afsendelse af join notifikation: {message}"]," with password":[null," med adgangskode"],"Registered and Tested growl successfully {growl_host}":[null,"Registreret og testet growl med succes {growl_host}"],"Registration and Testing of growl failed {growl_host}":[null,"Registrering og test af growl mislykkedes {growl_host}"],"Test prowl notice sent successfully":[null,"Test prowl meddelelse sendt succesfuldt"],"Test prowl notice failed":[null,"Test prowl meddelelse mislykkedes"],"Boxcar2 notification succeeded. Check your Boxcar2 clients to make sure it worked":[null,"Boxcar2 notifikation lykkedes. Kontrollere dine Boxcar2 klienter for at sikre sig det virkede"],"Error sending Boxcar2 notification":[null,"Fejl ved afsendelse af Boxcar2 notifikation"],"Pushover notification succeeded. Check your Pushover clients to make sure it worked":[null,"Pushover notifikation lykkedes. Tjek din Pushover klienter for at sikre sig det virkede"],"Error sending Pushover notification":[null,"Fejl ved afsendelse af Pushover notifikation"],"Key verification successful":[null,"Nøgle verifikation vellykket"],"Unable to verify key":[null,"Kan ikke verificerer nøglen"],"Tweet successful, check your twitter to make sure it worked":[null,"Tweet vellykket, tjek din twitter for at sikre sig det virkede"],"Error sending tweet":[null,"Fejl ved afsendelse af tweet"],"Please enter a valid account sid":[null,"Angiv en gyldig sid konto"],"Please enter a valid auth token":[null,"Angiv en gyldig auth token"],"Please enter a valid phone sid":[null,"Angiv et gyldigt telefon nummer"],"Please format the phone number as \"+1-###-###-####\"":[null,"Venligst skriv telefonnummer som \"+1-###-###-####\""],"Authorization successful and number ownership verified":[null,"Autorisation lykkedes og ejerskab af nummer bekræftet"],"Error sending sms":[null,"Fejl ved afsendelse af sms"],"Slack message successful":[null,""],"Slack message failed":[null,""],"Discord message successful":[null,""],"Discord message failed":[null,""],"Test KODI notice sent successfully to {kodi_host}":[null,"Test KODI meddelelse sendt til {kodi_host}"],"Test KODI notice failed to {kodi_host}":[null,"Test KODI meddelelse fejlede ved {kodi_host}"],"Successful test notice sent to Plex Home Theater ... {plex_clients}":[null,"Vellykket test meddelelse sendt til Plex Home Theater... {plex_clients}"],"Test failed for Plex Home Theater ... {plex_clients}":[null,"Test mislykkedes for Plex Home Theater... {plex_clients}"],"Tested Plex Home Theater(s)":[null,"Testede Plex Home Theater(s)"],"Successful test of Plex Media Server(s) ... {plex_servers}":[null,"Succesfuld test af Plex Media Server(s) ... {plex_servers}"],"Test failed, No Plex Media Server host specified":[null,"Test mislykkedes, ingen Plex Media Server vært angivet"],"Test failed for Plex Media Server(s) ... {plex_servers}":[null,"Test mislykkedes for Plex Media serverne... {plex_servers}"],"Tested Plex Media Server host(s)":[null,"Testede Plex medieserver vært(er)"],"Tried sending desktop notification via libnotify":[null,"Prøvede at sende desktop notifikation via libnotify"],"Test notice sent successfully to {emby_host}":[null,"Test besked sendt uden fejl til {emby_host}"],"Test notice failed to {emby_host}":[null,"Test besked fejlede til {emby_host}"],"Successfully started the scan update":[null,"Startede scan opdatering succesfuldt"],"Test failed to start the scan update":[null,"Test mislykkedes at starte scanningen opdatering"],"Test notice sent successfully to {nmj2_host}":[null,"Test meddelelse sendt succesfuldt til {nmj2_host}"],"Test notice failed to {nmj2_host}":[null,"Test meddelelse fejlede ved {nmj2_host}"],"Trakt Authorized":[null,"Trakt godkendt"],"Trakt Not Authorized!":[null,"Trakt ikke godkendt!"],"Test email sent successfully! Check inbox.":[null,"Test e-mail sendt med succes! Tjek indbakke."],"ERROR: {last_error}":[null,"FEJL: {last_error}"],"Test NMA notice sent successfully":[null,"Test NMA meddelelse sendt succesfuldt"],"Test NMA notice failed":[null,"Test NMA meddelelse mislykkedes"],"Pushalot notification succeeded. Check your Pushalot clients to make sure it worked":[null,"Pushalot notifikation lykkedes. Tjek dine Pushalot klienter for at sikre sig det virkede"],"Error sending Pushalot notification":[null,"Fejl ved afsendelse af Pushalot notifikation"],"Pushbullet notification succeeded. Check your device to make sure it worked":[null,"Pushbullet notifikation lykkedes. Kontrollere din enhed for at sikre sig det virkede"],"Error sending Pushbullet notification":[null,"Fejl ved afsendelse af Pushbullet notifikation"],"Status":[null,"Status"],"Restarting SickRage":[null,"Genstarter SickRage"],"Update Failed":[null,"Opdatering mislykkedes"],"Update wasn't successful, not restarting. Check your log for more information.":[null,"Opdatering mislykkedes, genstarter ikke. Check log for flere informationer."],"Checking out branch":[null,"Tjekker branch ud"],"Already on branch":[null,"Er allerede på denne branch"],"Invalid show ID: {show}":[null,"Ugyldigt serie ID: {show}"],"Show not in show list":[null,"Serie er ikke i serielisten"],"Edit":[null,"Rediger"],"This show is in the process of being downloaded - the info below is incomplete.":[null,"Denne serie er ved at blive hentet - informationerne nedenunder er ikke komplette."],"The information on this page is in the process of being updated.":[null,"Oplysningerne på denne side er ved at blive opdateret."],"The episodes below are currently being refreshed from disk":[null,"Episoderne nedenfor opdateres i øjeblikket fra disken"],"Currently downloading subtitles for this show":[null,"Downloader i øjeblikket undertekster til dette show"],"This show is queued to be refreshed.":[null,"Denne er serie er i kø til at blive opdateret."],"This show is queued and awaiting an update.":[null,"Dette show er i kø og venter på en opdatering."],"This show is queued and awaiting subtitles download.":[null,""],"Resume":[null,"Fortsæt"],"Pause":[null,"Pause"],"Remove":[null,"Fjern"],"Re-scan files":[null,"Gen-scan filer"],"Force Full Update":[null,"Tving fuld opdatering"],"Update show in KODI":[null,"Opdater serie i KODI"],"Update show in Emby":[null,"Opdater show i Emby"],"Hide specials":[null,"Skjul Specials"],"Show specials":[null,"Vis Specials"],"Preview Rename":[null,"Forhåndsvis omdøb"],"Download Subtitles":[null,"Download undertekster"],"No scene exceptions":[null,"Ingen scene undtagelser"],"Invalid show ID":[null,"Ugyldigt serie ID"],"Unable to find the specified show":[null,"Kan ikke finde det angivne show"],"Unable to retreive Fansub Groups from AniDB.":[null,"Ikke i stand til at hente Fansub grupper fra AniDB."],"Edit Show":[null,"Redigere Serie"],"Unable to refresh this show: {error}":[null,"Ikke i stand til at genopfriske denne serie: {error}"],"New location <tt>{location}</tt> does not exist":[null,"Ny placering <tt>{location}</tt> findes ikke"],"Unable to update show: {error}":[null,"Ikke i stand til at opdatere serien: {error}"],"Unable to force an update on scene exceptions of the show.":[null,"Ikke i stand til at gennemtvinge en opdatering af scene undtagelser på serien."],"Unable to force an update on scene numbering of the show.":[null,"Ikke i stand til at gennemtvinge en opdatering af scene nummerering på serien."],"{num_errors:d} error{plural} while saving changes:":[null,"{num_errors:d} fejl under gem af ændringer:"],"{show_name} has been {paused_resumed}":[null,"{show_name} blev {paused_resumed}"],"resumed":[null,"genoptaget"],"paused":[null,"på pause"],"{show_name} has been {deleted_trashed} {was_deleted}":[null,"{show_name} blev {deleted_trashed} {was_deleted}"],"deleted":[null,"slettet"],"trashed":[null,"slettet"],"(media untouched)":[null,"(filer urørt)"],"(with all related media)":[null,"(med alle tilhørende filer)"],"Unable to refresh this show.":[null,"Ikke i stand til at genopfriske denne serie."],"Unable to update this show.":[null,"Ikke i stand til at opdatere denne serie."],"Library update command sent to KODI host(s)): {kodi_hosts}":[null,"Katalog opdaterings kommando sent til KODI host(s): {kodi_hosts}"],"Unable to contact one or more KODI host(s)): {kodi_hosts}":[null,"Ude af stand til at kontakte en eller flere KODI hosts: {kodi_hosts}"],"Library update command sent to Plex Media Server host: {plex_server}":[null,"Katalog opdateringskommando sendt til Plex Media Server host: {plex_server}"],"Unable to contact Plex Media Server host: {plex_server}":[null,"Ude af stand til at kontakte Plex Media Server host: {plex_server}"],"Library update command sent to Emby host: {emby_host}":[null,"Katalog opdateringskommando sendt til Emby host: {emby_host}"],"Unable to contact Emby host: {emby_host}":[null,"Ikke i stand til at kontakte Emby vært: {emby_host}"],"You must specify a show and at least one episode":[null,"Du skal angive et show og mindst ét episode"],"Invalid status":[null,"Ugyldig status"],"Backlog was automatically started for the following seasons of <b>{show_name}</b>":[null,"Automatisk opsamling af backlog påbegyndt for følgende sæsoner af <b>{show_name}</b>"],"Season":[null,"Sæson"],"Backlog started":[null,"Opsamling af efterslæb påbegyndt"],"Retrying Search was automatically started for the following season of <b>{show_name}</b>":[null,"Gentag søgning var startet automatisk for følgende sæson af <b>{show_name}</b>"],"Retry Search started":[null,"Gentag Søgning startede"],"You must specify a show":[null,"Du skal angive et show"],"Can't rename episodes when the show dir is missing.":[null,"Kan ikke omdøbe episoder, når serie mappe mangler."],"New subtitles downloaded: {new_subtitle_languages}":[null,"Nye underskrifter hentet: {new_subtitle_languages}"],"No subtitles downloaded":[null,"Ingen underskrifter hentet"],"IRC":[null,"IRC"],"Could not load news from the repo. [Click here for news.md])({news_url})":[null,"Kunne ikke indlæse nyheder fra repo. [Klik her for news.md])({news_url})"],"The was a problem connecting to github, please refresh and try again":[null,"Det var problemer med forbindelsen til github. Genopfrisk og prøv igen"],"Could not load changes from the repo. [Click here for CHANGES.md]({changes_url})":[null,"Ændringer kunne ikke indlæses fra repo. [Klik her for CHANGES.md] ({changes_url})"],"Changelog":[null,"Ændringslog"],"Post Processing":[null,"Efterbehandling"],"Add Shows":[null,"Tilføj Serier"],"No folders selected.":[null,"Ingen foldere valgt."],"New Show":[null,"Ny Serie"],"Trending Shows":[null,"Hotte serier"],"Popular Shows":[null,"Populære Serier"],"Most Anticipated Shows":[null,"Mest ventede serier"],"Most Collected Shows":[null,""],"Most Watched Shows":[null,""],"Most Played Shows":[null,""],"Recommended Shows":[null,""],"New Shows":[null,"Nye serier"],"Season Premieres":[null,"Sæson Præmiere"],"Existing Show":[null,"Eksisterende Serier"],"No root directories setup, please go back and add one.":[null,"Ingen rodmapper er sat op. Gå venligst tilbage og tilføj én."],"Show added":[null,"Serier tilføjet"],"Adding the specified show {show_name}":[null,"Tilføj den angivne serie {show_name}"],"Missing params, no Indexer ID or folder: {show_to_add} and {root_dir}/{show_path}":[null,"Manglende parametre, intet Indexer ID eller mappe: {show_to_add} og {root_dir}/{show_path}"],"Unknown error. Unable to add show due to problem with show selection.":[null,"Ukendt fejl. Serien kunne ikke tilføjes på grund af et problem med udvælgelse af serien."],"Unable to add show":[null,"Ikke i stand til at tilføje serie"],"Folder {show_dir} exists already":[null,"Folder {show_dir} findes allerede"],"Unable to create the folder {show_dir}, can't add the show":[null,"Ikke i stand til at oprette folderen {show_dir}, kan ikke tilføje serien"],"Adding the specified show into {show_dir}":[null,"Tilføjer den angivne serie i {show_dir}"],"Shows Added":[null,"Serier Tilføjet"],"Automatically added {num_shows} from their existing metadata files":[null,"Automatisk tilføjet {num_shows} fra deres eksisterende metadatafiler"],"Mass Update":[null,"Masseopdatering"],"Episode Overview":[null,"Episode oversigt"],"Missing Subtitles":[null,"Mangler undertekster"],"Backlog Overview":[null,"Backlog oversigt"],"Mass Edit":[null,"Masse Rediger"],"Unable to update show: {excption_format}":[null,"Kunne ikke opdatere serie: {excption_format}"],"Unable to refresh show {show_name}: {excption_format}":[null,"Kunne ikke genopfriske serie{show_name}: {excption_format}"],"Errors encountered":[null,"Stødt på fejl"],"Updates":[null,"Opdateringer"],"Refreshes":[null,"Opdaterer"],"Renames":[null,"Omdøber"],"Subtitles":[null,"Undertekster"],"The following actions were queued":[null,"Følgende aktioner blev sat i kø"],"For best results please set the Download Station alias as":[null,"For de bedste resultater skal du indstille Download Station alias som"],"You can check this setting in the Synology DSM":[null,"Du kan kontrollere denne indstilling i Synology DSM"],"Control Panel":[null,"Kontrolpanel"],"Application Portal":[null,"Applikations Portal"],"Make sure you allow DSM to be embedded with iFrames too in":[null,"Vær sikker du tilllader at DSM integreres med iFrames også i"],"DSM Settings":[null,"DSM indstillinger"],"Security":[null,"Sikkerhed"],"Manage Torrents":[null,"Administrer Torrents"],"Failed Downloads":[null,"Mislykkede overførsler"],"Manage Searches":[null,"Administrer søgninger"],"Backlog search started":[null,"Backlog søgning startet"],"Daily search started":[null,"Daglige søgning startet"],"Find propers search started":[null,"Finde \"ordentlige\" søgning startet"],"Subtitle search started":[null,"Undertekster søgning startet"],"Remove Selected":[null,"Fjern valgte"],"Clear History":[null,"Ryd Historik"],"Trim History":[null,"Trim Historie"],"Selected history entries removed":[null,""],"History cleared":[null,"Historik ryddet"],"Removed history entries older than 30 days":[null,"Oversigtsposter ældre end 30 dage fjernet"],"General":[null,"Generelt"],"Backup/Restore":[null,"Backup/gendannelse"],"Search Settings":[null,"Søgeindstillinger"],"Search Providers":[null,"Søgemaskiner"],"Subtitles Settings":[null,"Undertekstindstillinger"],"Notifications":[null,"Notifikationer"],"Anime":[null,"Anime"],"SickRage Configuration":[null,"Konfiguration af SickRage"],"Config - Shares":[null,""],"Windows Shares Configuration":[null,""],"Saved Shares":[null,""],"Your Windows share settings have been saved":[null,""],"Config - General":[null,"Konfigurer - General"],"General Configuration":[null,"General Konfiguration"],"Saved Defaults":[null,"Gemte standardindstillinger"],"Your \"add show\" defaults have been set to your current selections.":[null,"Din \"Tilføj show\" standardindstillinger er indstillet til dit aktuelle valg."],"Unable to create directory {directory}, log directory not changed.":[null,"Ikke i stand til at oprette kataloget {directory}, log katalog ikke ændret."],"Unable to create directory {directory}, https cert directory not changed.":[null,"Kan ikke oprette mappe {directory}, https cert mappe ikke ændret."],"Unable to create directory {directory}, https key directory not changed.":[null,"Kan ikke oprette mappe {directory}, https cert mappe ikke ændret."],"Error(s) Saving Configuration":[null,"Fejl ved gemning af konfiguration"],"Configuration Saved":[null,"Konfiguration Gemt"],"Config - Backup/Restore":[null,"Konfigurer - Backup/gendannelse"],"Config - Episode Search":[null,"Konfigurer - Episode søgning"],"Config - Post Processing":[null,"Konfigurer - efterbehandling"],"Unpacking Not Supported, disabling unpack setting":[null,"Udpakning ikke understøttet, deaktiverer udpak indstilling"],"You tried saving an invalid normal naming config, not saving your naming settings":[null,""],"You tried saving an invalid anime naming config, not saving your naming settings":[null,"Du prøvede at gemme en ugyldig anime navngivnings config, gemmer ikke indstillingerne for navngivning"],"Config - Providers":[null,"Konfigurer - udbydere"],"No Provider Name specified":[null,"Ingen udbydernavn angivet"],"No Provider Url specified":[null,"Ingen udbyder webadresse angivet"],"No Provider Api key specified":[null,"Ingen udbyder Api-nøgle angivet"],"Config - Notifications":[null,"Konfigurer - meddelelser"],"Config - Subtitles":[null,"Konfigurer - undertekster"],"Config - Anime":[null,"Konfigurer - Anime"],"Clear Errors":[null,"Ret fejl"],"Clear Warnings":[null,"Ryd advarsler"],"Submit Errors":[null,"Indsend fejl"],"Logs & Errors":[null,"Logs & fejl"],"Log File":[null,"Logfiler"],"Logs":[null,"Logfiler"],"This is a test notification from SickRage":[null,"Dette er en testbesked fra SickRage"],"Please fill out the necessary fields above.":[null,""],"This pattern is invalid.":[null,"Dette mønster er ugyldig."],"This pattern would be invalid without the folders, using it will force \"Season Folders\" on for all shows.":[null,""],"This pattern is valid.":[null,"Dette mønster er gyldig."],"Resume updating the log on this page.":[null,""],"Pause updating the log on this page.":[null,""],"You have reached this page by accident, please check the url.":[null,"Du har nået denne side ved et uheld, kontroller venligst url."],"A mako error has occured.<br>\n If this happened during an update a simple page refresh may be the solution.<br>\n Mako errors that happen during updates may be a one time error if there were significant ui changes.":[null,""],"Show/Hide Error":[null,"Vis//Gem Fejl"],"Add New Show":[null,"Tilføj ny serie"],"For shows that you haven't downloaded yet, this option finds a show on theTVDB.com, creates a directory for it's episodes, and adds it to SickRage.":[null,"Til serier som du endnu ikke har hentet endnu. Denne indstilling finder en serie på theTVDB.com, opretter en mappe til dens episoder, og tilføjer det til SickRage."],"Add From Trakt Lists":[null,"Tilføj ny serie fra Trakt"],"For shows that you haven't downloaded yet, this option lets you choose from a show from one of the Trakt lists to add to SickRage.":[null,"Til serier som du endnu ikke har hentet endnu. Denne indstilling lader dig vælge en serie fra en Trakt liste, opretter en mappe til dens episoder, og tilføjer det til SickRage."],"Add From IMDB's Popular Shows":[null,"Tilføj ny serie fra IMDB's populære serier"],"View IMDB's list of the most popular shows. This feature uses IMDB's MOVIEMeter algorithm to identify popular TV Series.":[null,"Se IMDBS liste over de mest populære serier. Denne funktion bruger IMDB'S MOVIEMeter algoritme til at identificere populære serier."],"Add Existing Shows":[null,"Tilføj eksisterende serie"],"Use this option to add shows that already have a folder created on your hard drive. SickRage will scan your existing metadata/episodes and add the show accordingly.":[null,"Brug denne indstilling til at tilføje serier, der allerede har en mappe oprettet på din harddisk. SickRage vil scanne dine eksisterende metadata/episoder og tilføje serien i overensstemmelse hermed."],"Add Existing Show":[null,"Tilføj eksisterende serie"],"Manage Directories":[null,"Administrer mapper"],"Customize Options":[null,"Tilpas indstillinger"],"SickRage can add existing shows, using the current options, by using locally stored NFO/XML metadata to eliminate user interaction. If you would rather have SickRage prompt you to customize each show, then use the checkbox below.":[null,""],"Prompt me to set settings for each show":[null,"Bed mig om at angive indstillinger for hver serie"],"Displaying folders within these directories which aren't already added to SickRage":[null,"Viser mapper inden for disse mapper, som ikke er allerede føjet til SickRage"],"Submit":[null,"Bekræft"],"Find a show on theTVDB":[null,"Find en serie på theTVDB"],"Show retrieved from existing metadata":[null,"Serie hentet fra eksisterende metadata"],"All Indexers":[null,"Alle indeksører"],"Search":[null,"Søg"],"This will only affect the language of the retrieved metadata file contents and episode filenames.":[null,"Dette vil kun påvirke sproget i hentede metadata's filindhold og episode filnavne."],"This <b>DOES NOT</b> allow SickRage to download non-english TV episodes!":[null,"Dette tillader<b>IKKE</b> SickRage at hente ikke-engelske TV episoder!"],"Pick the parent folder":[null,"Vælg den overordnede mappe"],"Pre-chosen Destination Folder":[null,"Forhånds valgte destinations mappe"],"Customize options":[null,"Tilpas indstillinger"],"Add Show":[null,"Tilføj Serier"],"Skip Show":[null,"Spring denne serie over"],"Sort By":[null,"Sorter efter"],"Name":[null,"Navn"],"Original":[null,"Original"],"Votes":[null,"Stemmer"],"Rating":[null,"Bedømmelse"],"Rating > Votes":[null,"Bedømmelse > stemmer"],"Sort Order":[null,"Sorteringsrækkefølge"],"Asc":[null,"Asc"],"Desc":[null,"Desc"],"Fetching of IMDB Data failed. Are you online?":[null,"Kunne ikke hente data fra IMDB. Er du online?"],"Exception":[null,"Undtagelse"],"Select Trakt List":[null,"Vælg Trakt liste"],"Most Anticipated":[null,"Mest ventede"],"Trending":[null,"Aktuelt"],"Popular":[null,"Populære"],"Most Watched":[null,"Mest Sete"],"Most Played":[null,"Mest afspillede"],"Most Collected":[null,"Flest indsamlet"],"Recommended":[null,"Anbefalet"],"Toggle navigation":[null,"Skift navigation"],"Profile":[null,"Profil"],"JSONP":[null,"JSONP"],"Back to SickRage":[null,"Tilbage til SickRage"],"Parameters":[null,"Parametre"],"Required":[null,"Påkrævet"],"Description":[null,"Beskrivelse"],"Type":[null,"Type"],"Default value":[null,"Standardværdi"],"Allowed values":[null,"Tilladte værdier"],"Playground":[null,"Legeplads"],"Clear":[null,"Ryd"],"Yes":[null,"Ja"],"No":[null,"Nej"],"season":[null,"sæson"],"episode":[null,"episode"],"Python Version":[null,"Python Version"],"SSL Version":[null,"SSL Version"],"OS":[null,"OS"],"Locale":[null,"Lokalitet"],"User":[null,"Bruger"],"Program Folder":[null,"Programmappe"],"Config File":[null,"Konfigurationsfil"],"Database File":[null,"Databasefil"],"Cache Folder":[null,"Cache mappe"],"Log Folder":[null,"Logmappe"],"Arguments":[null,"Argumenter"],"Web Root":[null,"Webrod"],"Website":[null,"Websted"],"Wiki":[null,"Wiki"],"Source":[null,"Kilde"],"IRC Chat":[null,"IRC Chat"],"AnimeDB Settings":[null,"AnimeDB indstillinger"],"Look & Feel":[null,"Udseende"],"AniDB is non-profit database of anime information that is freely open to the public":[null,"AniDB er non-profit database af anime, der er frit tilgængelige for offentligheden"],"Enable":[null,"Aktiver"],"should SickRage use data from AniDB?":[null,"skal SickRage bruge data fra AniDB?"],"AniDB Username":[null,"AniDB brugernavn"],"username of your AniDB account":[null,"brugernavnet på din AniDB konto"],"AniDB Password":[null,"AniDB adgangskode"],"password of your AniDB account":[null,"adgangskode til din AniDB konto"],"AniDB MyList":[null,"AniDB MyList"],"do you want to add the PostProcessed episodes to the MyList?":[null,"vil du tilføje de efterbehandlede episoder til MyList?"],"Look and Feel":[null,"Udseende"],"How should the anime functions show and behave.":[null,"Hvordan bør anime funktionerne vise og opføre sig."],"Split show lists":[null,"Opdel serie lister"],"separate anime and normal shows in groups":[null,"adskil anime og normale show i grupper"],"Split in tabs":[null,""],"use tabs for when splitting show lists":[null,""],"Restore":[null,"Gendan"],"Backup your main database file and config.":[null,"Sikkerhedskopier din databasefil og konfiguration."],"Select the folder you wish to save your backup file to":[null,"Vælg den mappe du vil gemme sikkerhedskopien til"],"Restore your main database file and config.":[null,"Gendan din databasefil og konfiguration."],"Select the backup file you wish to restore":[null,"Vælg den sikkerhedskopi, du ønsker at gendanne"],"Misc":[null,"Diverse"],"Interface":[null,"Brugerflade"],"Advanced Settings":[null,"Avancerede Indstillinger"],"Startup options. Indexer options. Log and show file locations.":[null,"Startindstillinger. Indekserings-indstillinger. Log og vis filplaceringer."],"Some options may require a manual restart to take effect.":[null,"Nogle indstillinger kan kræve en manuel genstart, før de vil træde i kraft."],"Default Indexer Language":[null,"Indekserings standardsprog"],"for adding shows and metadata providers":[null,"for at tilføje serier og metadata udbydere"],"Launch browser":[null,"Åbn browser"],"open the SickRage home page on startup":[null,"Åbn siden SickRage ved start"],"Initial page":[null,"Startside"],"Shows":[null,"Serier"],"when launching SickRage interface":[null,"når SickRage interface startes"],"Choose hour to update shows":[null,"Vælg time at opdatere shows"],"with information such as next air dates, show ended, etc. Use 15 for 3pm, 4 for 4am etc.":[null,"med oplysninger som næste udsendelsesdatoer, serie endte osv. Brug 15 fremfor 3 pm, 4 fremfor 4 am osv."],"note":[null,"bemærk"],"minutes are randomized each time SickRage is started":[null,"minut-tal generes tilfældigt hver gang SickRage startes"],"Send to trash for actions":[null,"Send til papirkurven handlinger"],"when using show \"Remove\" and delete files":[null,"når du bruger show \"Fjern\" og slette filer"],"on scheduled deletes of the oldest log files":[null,"på planlagte sletter de ældste log filer"],"selected actions use trash (recycle bin) instead of the default permanent delete":[null,"markede handlingene bruger papirkurven i stedet for standard permanent sletning"],"Log file folder location":[null,"Log fil mappe placering"],"Number of Log files saved":[null,"Antal logfiler gemt"],"number of log files saved when rotating logs (default: 5) (REQUIRES RESTART)":[null,"antallet af logfiler gemmes, når logs roteres(standard: 5) (KRÆVER GENSTART)"],"Size of Log files saved":[null,"Størrelsen af logfiler gemt"],"maximum size in MB of the log file (default: 1MB) (REQUIRES RESTART)":[null,"maksimale størrelse i MB af logfilen (standard: 1MB) (KRÆVER GENSTART)"],"Use initial indexer set to":[null,"Brug første indekser indstillet til"],"as the default selection when adding new shows":[null,"som standard valg når du tilføjer nye serier"],"Timeout show indexer at":[null,"Afbryd serie indekseringen ved"],"seconds of inactivity when finding new shows (default:20)":[null,"sekunder af inaktivitet når der findes nye serier (standard: 20)"],"Show root directories":[null,"Serie rod mapper"],"where the files of shows are located":[null,"hvor filer af shows er placeret"],"Save Changes":[null,"Gem Ændringer"],"Options for software updates.":[null,"Indstillingerne for software opdateringer."],"Check software updates":[null,"Check software opdateringer"],"and display notifications when updates are available. Checks are run on startup and at the frequency set below*":[null,"og vis meddelelser, når opdateringer er tilgængelige. Kontrollen køres ved opstart og i det interval sat nedenfor *"],"Automatically update":[null,"Opdater automatisk"],"fetch and install software updates. Updates are run on startup and in the background at the frequency set below*":[null,"hent og Installer softwareopdateringer. Opdateringer er kører på opstart og i baggrunden og i det interval sat nedenfor *"],"Check the server every*":[null,"Kontrollere serveren hver *"],"hours for software updates (default:1)":[null,"timer for softwareopdateringer (standard: 1)"],"Notify on software update":[null,"Informer om software opdatering"],"send a message to all enabled notifiers when SickRage has been updated":[null,"send en besked til alle aktiverede anmeldere, når SickRage er blevet opdateret"],"User Interface":[null,"Brugergrænseflade"],"Options for visual appearance.":[null,"Indstillinger for visuelle udseende."],"Interface Language":[null,"Grænsefladesprog"],"System Language":[null,"Systemsproget"],"for appearance to take effect, save then refresh your browser":[null,"for at udseende kan træde i kraft, gem og derefter opdatere din browser"],"Display theme":[null,"Vis tema"],"Dark":[null,"Mørk"],"Light":[null,"Lys"],"Use a background image":[null,"Brug et baggrundsbillede"],"use a custom image as background for SickRage":[null,"brug et brugerdefineret billede som baggrund for SickRage"],"Background Path":[null,"Sti til baggrundsbillede"],"Path to the background image":[null,"Stien til baggrundsbilledet"],"Show fanart in the background":[null,"Vis fanart i baggrunden"],"on the show summary page":[null,"på serie oversigts siden"],"Fanart transparency":[null,"Fanart gennemsigtighed"],"transparency of the fanart in the background":[null,"gennemsigtighed af fanart i baggrunden"],"Use a custom stylesheet file":[null,""],"use a custom .css file to style SickRage (for advanced users)":[null,""],"Stylesheet File Path":[null,""],"Path to the stylesheet (.css) file":[null,""],"Show all seasons":[null,"Vis alle sæsoner"],"Sort with \"The\", \"A\", \"An\"":[null,"Sorter med \"The\", \"A\", \"An\""],"include articles (\"The\", \"A\", \"An\") when sorting show lists":[null,"inkludere engelske artikler (\"The\", \"A\", \"An\") når lister sorteres"],"Missed episodes range":[null,"Mistede episode interval"],"set the range in days of the missed episodes in the Schedule page":[null,"angiv antal dage hvor missede episoder er på Schedule-siden"],"Display fuzzy dates":[null,"Vis 'uklare' datoer"],"move absolute dates into tooltips and display e.g. \"Last Thu\", \"On Tue\"":[null,"flyt absolutte datoer ind i værktøjstip og vis fx \"Sidste tor\", \"På tir\""],"Trim zero padding":[null,"Trim nul padding"],"remove the leading number \"0\" shown on hour of day, and date of month":[null,"fjern det førststillede nummer \"0\" vist på time af dagen, og datoen for måned"],"Date style":[null,"Datoformat"],"Use System Default":[null,"Anvend systemets standardvalgte"],"Time style":[null,"Klokkeslætsformat"],"seconds are only shown on the History page":[null,"sekunder er kun vist på siden Historik"],"Timezone":[null,"Tidszone"],"Local":[null,"Lokale"],"Network":[null,"Netværk"],"display dates and times in either your timezone or the shows network timezone":[null,"vis datoer og klokkeslæt i enten din tidszone eller show's netværks tidszone"],"use local timezone to start searching for episodes minutes after show ends (depends on your dailysearch frequency)":[null,""],"Download url":[null,"Download url"],"URL where the shows can be downloaded.":[null,"URL hvor showet kan downloades."],"Web Interface":[null,"Web-interface"],"it is recommended that you enable a username and password to secure SickRage from being tampered with remotely.":[null,""],"these options require a manual restart to take effect.":[null,""],"API key":[null,"API-nøgle"],"used to give 3rd party programs limited access to SickRage":[null,"bruges til at give 3rd parts programmer begrænset adgang til SickRage"],"you can try all the features of the API":[null,"du kan prøve alle funktioner af API"],"here":[null,"her"],"HTTP logs":[null,"HTTP-logfiler"],"enable logs from the internal Tornado web server":[null,"aktivere logfiler fra den interne Tornado webserver"],"HTTP username":[null,"HTTP brugernavn"],"set blank for no login":[null,"efterlad tom for ingen login"],"HTTP password":[null,"HTTP kodeord"],"blank = no authentication":[null,"tom = ingen godkendelse"],"HTTP port":[null,"HTTP port"],"web port to browse and access SickRage (default:8081)":[null,"web port til at få adgang til SickRage (standard: 8081)"],"Notify on login":[null,"Advisér på login"],"enable to be notified when a new login happens in webserver":[null,"gøre det muligt at blive underrettet, når et nyt login sker på webserver"],"Listen on IPv6":[null,"Lyt på IPv6"],"attempt binding to any available IPv6 address":[null,"forsøg på binding til enhver tilgængelig IPv6-adresse"],"Enable HTTPS":[null,"Aktivere HTTPS"],"enable access to the web interface using a HTTPS address":[null,"aktiver adgang til web-interface ved hjælp af en HTTPS-adresse"],"HTTPS certificate":[null,"HTTPS certifikat"],"file name or path to HTTPS certificate":[null,"filnavn eller stien til HTTPS certifikat"],"HTTPS key":[null,"HTTPS nøgle"],"file name or path to HTTPS key":[null,"filnavn eller stien til HTTPS nøgle"],"Reverse proxy headers":[null,"Reverse proxy headers"],"accept the following reverse proxy headers (advanced)...":[null,""],"(X-Forwarded-For, X-Forwarded-Host, and X-Forwarded-Proto)":[null,""],"CPU throttling":[null,"CPU begrænsning"],"Normal (default). High is lower and Low is higher CPU use":[null,"Normal (standard). Høj er lavere og lav er højere CPU brug"],"Anonymous redirect":[null,"Anonym redirect"],"backlink protection via anonymizer service, must end in \"?\"":[null,"backlink beskyttelse via anonymizer service, skal slutte med \"?\""],"Enable debug":[null,"Aktivere fejlfinding"],"enable debug logs":[null,"aktivere fejlfinding logs"],"Verify SSL Certs":[null,"Kontrollere SSL Certs"],"verify SSL Certificates (Disable this for broken SSL installs (Like QNAP))":[null,""],"No Restart":[null,"Ingen genstart"],"only shutdown when restarting SR":[null,""],"only select this when you have external software restarting SR automatically when it stops (like FireDaemon)":[null,""],"Encrypt passwords":[null,"Krypter adgangskoder"],"in the <code>config.ini</code> file":[null,""],"warning":[null,"advarsel"],"passwords must only contain":[null,"adgangskoder må kun indeholde"],"ASCII characters":[null,"ASCII-tegn"],"Unprotected calendar":[null,"Ubeskyttede kalender"],"allow subscribing to the calendar without user and password":[null,"tillad at abonnere på kalenderen uden brugernavn og adgangskode"],"some services like Google Calendar only work this way":[null,"nogle tjenester som Google Kalender virker kun på denne måde"],"Google Calendar Icons":[null,"Google Calendar ikoner"],"show an icon next to exported calendar events in Google Calendar":[null,"vis et ikon ved siden af de eksporterede kalenderbegivenheder i Google Kalendar"],"Proxy host":[null,"Proxy-vært"],"blank to disable or proxy to use when connecting to providers":[null,"stå tomt for at deaktivere eller proxyserver der skal bruges ved tilslutning til udbydere"],"also use global proxy setting for indexers (tvdb, xem, anidb, etc.)":[null,"brug også globale proxy-indstillinger for indexer (tvdb, xem, anidb, osv.)"],"Skip Remove Detection":[null,"Skip sletnings detektering"],"skip detection of removed files":[null,"skip detektering af fjernede filer"],"if disabled the episode will be set to the default deleted status":[null,"hvis fravalgt vil episoden blive sat til standard slettet status"],"Default deleted episode status":[null,"Standard slettet episode status"],"define the status to be set for media file that has been deleted.":[null,"definér status der skal angives for mediefil, der er blevet slettet."],"Archived option will keep previous downloaded quality":[null,"Arkiverede indstilling vil beholde tidligere hentet kvalitet"],"example: Downloaded (1080p WEB-DL) ==> Archived (1080p WEB-DL)":[null,"eksempel: Hentet (1080p WEB-DL) ==> Arkiverede (1080p WEB-DL)"],"Options for github related features.":[null,"Indstillinger for github relaterede funktioner."],"Branch version":[null,"Branch version"],"error: No branches found.":[null,""],"select branch to use (restart required)":[null,"vælg branch at bruge (Genstart kræves)"],"Authorization Type":[null,""],"Username and password":[null,""],"Personal access token":[null,""],"You must use a personal access token if you're using \"two-factor authentication\" on GitHub.":[null,""],"GitHub username":[null,"GitHub brugernavn"],"*** (REQUIRED FOR SUBMITTING ISSUES) ***":[null,"(KRÆVES FOR INDSENDELSE AF PROBLEMER) ***"],"GitHub password":[null,"GitHub adgangskode"],"GitHub personal access token":[null,""],"Generate Token":[null,""],"Manage Tokens":[null,""],"GitHub remote for branch":[null,"GitHub remote til branch"],"access repo configured remotes (save then refresh browser)":[null,""],"default":[null,""],"origin":[null,""],"Git executable path":[null,"Git eksekverbar sti"],"only needed if OS is unable to locate git from env":[null,"kun nødvendig hvis OS er afskåret fra at lokalisere git fra env"],"Git reset":[null,"Git reset"],"removes untracked files and performs a hard reset on git branch automatically to help resolve update issues":[null,"fjerner ikke-sporede filer og udfører en hård reset på git gren automatisk til at løse opdaterings problemer"],"Home Theater / NAS":[null,"Hjemmebiograf / NAS"],"Devices":[null,"Enheder"],"Social":[null,"Sociale"],"A free and open source cross-platform media center and home entertainment system software with a 10-foot user interface designed for the living-room TV.":[null,"En gratis og open source cross-platform media center og home entertainment system-software med en 10-fods brugergrænseflade designet til stuen TV."],"send KODI commands?":[null,""],"Always on":[null,"Altid slået til"],"log errors when unreachable?":[null,"logge fejl når utilgængelig?"],"Notify on snatch":[null,"Meddel ved hentning"],"send a notification when a download starts?":[null,"sende en notifikation, når en download starter?"],"Notify on download":[null,"Meddel på download"],"send a notification when a download finishes?":[null,"sende en notifikation, når en overførsel er færdig?"],"Notify on subtitle download":[null,"Meddel ved undertekst download"],"send a notification when subtitles are downloaded?":[null,"sende en notifikation, når undertekster er downloadet?"],"Update library":[null,"Opdater bibliotek"],"update KODI library when a download finishes?":[null,"opdatere KODI bibliotek, når download er færdig?"],"Full library update":[null,"Fuld biblioteks opdatering"],"perform a full library update if update per-show fails?":[null,"udføre en fuld biblioteks opdatering hvis opdatering mislykkes for hver serie?"],"Only update first host":[null,"Kun opdatere første vært"],"only send library updates to the first active host?":[null,"kun send opdateringer til den første aktive vært?"],"KODI IP:Port":[null,"KODI IP:Port"],"host running KODI (eg. 192.168.1.100:8080)":[null,"værten kører KODI (f.eks. 192.168.1.100:8080)"],"(multiple host strings must be separated by commas)":[null,"(flere værter skal være adskilt af kommaer)"],"Username":[null,"Brugernavn"],"username for your KODI server (blank for none)":[null,"brugernavn til din KODI server (tom for ingen)"],"Password":[null,"Kodeord"],"password for your KODI server (blank for none)":[null,"adgangskode til din KODI server (tom for ingen)"],"Click below to test.":[null,"Klik nedenfor for at teste."],"Experience your media on a visually stunning, easy to use interface on your Mac connected to your TV. Your media library has never looked this good!":[null,"Opleve dine medier på en visuelt imponerende, nem at bruge interface på din Mac tilsluttet dit TV. Dit mediebibliotek har aldrig set så godt ud!"],"For sending notifications to Plex Home Theater (PHT) clients, use the KODI notifier with port <b>3005</b>.":[null,"For at sende notifikationer til Plex Home Theater (PHT) klienter, skal du bruge KODI anmelderen med port <b>3005</b>."],"send Plex Media Server library updates?":[null,""],"Plex Media Server Auth Token":[null,"Plex Media Server Auth Token"],"auth token used by Plex":[null,""],"Update Library":[null,"Opdater bibliotek"],"update Plex Media Server library when a download finishes":[null,"opdatere Plex Media Server-bibliotek, når en download er færdig"],"Plex Media Server IP:Port":[null,"Plex Media Server IP:Port"],"one or more hosts running Plex Media Server<br/>(eg. 192.168.1.1:32400, 192.168.1.2:32400)":[null,""],"HTTPS":[null,"HTTPS"],"use https for plex media server requests?":[null,"brug https til plex media server forespørgsler?"],"Click below to test Plex Media Server(s)":[null,"Klik nedenfor for at teste Plex Media Server(e)"],"Test Plex Media Server":[null,"Test Plex Media Server"],"Plex Home Theater":[null,"Plex Home Theater"],"send Plex Home Theater notifications?":[null,""],"Plex Home Theater IP:Port":[null,"Plex Home Theater IP:Port"],"one or more hosts running Plex Home Theater<br>(eg. 192.168.1.100:3000, 192.168.1.101:3000)":[null,"en eller flere værter kører Plex Home Theater <br>(f.eks. 192.168.1.100:3000, 192.168.1.101:3000)"],"Click below to test Plex Home Theater(s)":[null,"Klik nedenfor for at teste Plex hjem Theater(s)"],"Test Plex Home Theater":[null,"Test Plex Home Theater"],"some Plex Home Theaters <b class=\"boldest\">do not</b> support notifications e.g. Plexapp for Samsung TVs":[null,""],"Emby":[null,"Emby"],"A home media server built using other popular open source technologies.":[null,"En hjemme medieserver bygget ved hjælp af andre populære open source-teknologier."],"send update commands to Emby?":[null,""],"Emby IP:Port":[null,"Emby IP:Port"],"host running Emby (eg. 192.168.1.100:8096)":[null,"værten der kører Emby (f.eks. 192.168.1.100:8096)"],"Emby API Key":[null,"Emby API nøgle"],"Networked Media Jukebox":[null,"Networked Media Jukebox"],"The Networked Media Jukebox, or NMJ, is the official media jukebox interface made available for the Popcorn Hour 200-series.":[null,"Networked Media Jukebox eller NMJ, er den officielle Media Jukebox grænseflade til rådighed for Popcorn Hour 200-serien."],"send update commands to NMJ?":[null,""],"Popcorn IP address":[null,"Popcorn IP adresse"],"IP address of Popcorn 200-series (eg. 192.168.1.100)":[null,"IP-adressen på Popcorn 200-serien (f.eks. 192.168.1.100)"],"Get settings":[null,"Hent indstillinger"],"Get Settings":[null,"Hent indstillinger"],"the Popcorn Hour device must be powered on and NMJ running.":[null,"Popcorn Hour enheden skal være tændt og NMJ være aktiv."],"NMJ database":[null,"NMJ database"],"automatically filled via the 'Get Settings' button.":[null,"udfyldes automatisk via knappen 'Få indstillinger'."],"NMJ mount url":[null,"NMJ mount url"],"Networked Media Jukebox v2":[null,"Networked Media Jukebox v2"],"The Networked Media Jukebox, or NMJv2, is the official media jukebox interface made available for the Popcorn Hour 300 & 400-series.":[null,"Networked Media Jukebox, eller NMJv2, er den officielle Media Jukebox grænseflade gjort tilgængelig for Popcorn Hour 300 & 400-serien."],"send update commands to NMJv2?":[null,""],"IP address of Popcorn 300/400-series (eg. 192.168.1.100)":[null,"IP-adressen på Popcorn 300/400-serien (f.eks. 192.168.1.100)"],"Database location":[null,"Database placering"],"Database instance":[null,"Database instans"],"adjust this value if the wrong database is selected.":[null,"Juster denne værdi, hvis den forkerte database er markeret."],"Find database":[null,"Find databasen"],"Find Database":[null,"Find database"],"the Popcorn Hour device must be powered on.":[null,"Popcorn Hour enheden skal være tændt."],"NMJv2 database":[null,"NMJv2 database"],"automatically filled via the 'Find Database' buttons.":[null,"udfyldes automatisk via knapperne 'Find Database'."],"Synology":[null,"Synology"],"The Synology DiskStation NAS.":[null,"Synology DiskStation NAS."],"Synology Indexer is the daemon running on the Synology NAS to build its media database.":[null,"Synology Indexer er tjenesten der kører på Synology NAS til opbygge dens media-database."],"send Synology notifications?":[null,""],"requires SickRage to be running on your Synology NAS.":[null,"kræver SickRage kører på din Synology NAS."],"Synology Indexer":[null,"Synology indekseringsprogram"],"Synology Notifier is the notification system of Synology DSM":[null,"Synology anmelderen er notifikationssystemet fra Synology DSM"],"send notifications to the Synology Notifier?":[null,""],"pyTivo":[null,"pyTivo"],"pyTivo is both an HMO and GoBack server. This notifier will load the completed downloads to your Tivo.":[null,"pyTivo er både en HMO og GoBack server. Denne anmelder vil indlæse de færdige downloads til din Tivo."],"send notifications to pyTivo?":[null,""],"requires the downloaded files to be accessible by pyTivo.":[null,"kræver de hentede filer skal være tilgængelige ved pyTivo."],"pyTivo IP:Port":[null,"pyTivo IP:Port"],"host running pyTivo (eg. 192.168.1.1:9032)":[null,"vært kører pyTivo (f.eks. 192.168.1.1:9032)"],"pyTivo share name":[null,"pyTivo sharenavn"],"value used in pyTivo Web Configuration to name the share.":[null,"værdi brugt i pyTivo Web Configuration til at navngive sharenavnet."],"Tivo name":[null,"TiVo navn"],"(Messages & Settings > Account & System Information > System Information > DVR name)":[null,"(Messages & Settings > Account & System Information > System Information > DVR name)"],"Growl":[null,"Growl"],"A cross-platform unobtrusive global notification system.":[null,"En cross-platform diskret global anmeldelsessystem."],"send Growl notifications?":[null,""],"Growl IP:Port":[null,"Growl IP:Port"],"host running Growl (eg. 192.168.1.100:23053)":[null,"vært der kører Growl (f.eks. 192.168.1.100:23053)"],"may leave blank if SickRage is on the same host.":[null,"kan efterlades tomt, hvis SickRage er på den samme vært."],"otherwise Growl <b>requires</b> a password to be used.":[null,"ellers <b>kræver</b> Growl en adgangskode for at blive brugt."],"Click below to register and test Growl, this is required for Growl notifications to work.":[null,"Klik nedenfor for at registrere og teste Growl, dette er nødvendigt for at få Growl notifikationer til at virke."],"Register Growl":[null,"Registrer Growl"],"Prowl":[null,"Prowl"],"A Growl client for iOS.":[null,"En Growl klient til iOS."],"send Prowl notifications?":[null,""],"Prowl Message Title":[null,"Prowl meddelelses titel"],"Global Prowl API key(s)":[null,"Globale Prowl API nøgle(r)"],"Prowl API(s) listed here, separated by commas if applicable, will<br> receive notifications for <b>all</b> shows. Your Prowl API key is available at:":[null,""],"(this field may be blank except when testing.)":[null,""],"Show notification list":[null,"Serie notifikations liste"],"-- Select a Show --":[null,"--Vælg en Serie--"],"Configure per-show notifications here by entering Prowl API key(s), separated by commas, '\n 'after selecting a show in the drop-down box. Be sure to activate the 'Save for this show' '\n 'button below after each entry.":[null,""],"Save for this show":[null,"Gem for denne serie"],"Prowl priority":[null,"Prowl prioritet"],"Very Low":[null,"Meget lav"],"Moderate":[null,"Moderat"],"Normal":[null,"Normal"],"High":[null,"Høj"],"Emergency":[null,"Akut"],"priority of Prowl messages from SickRage.":[null,"prioritet af Prowl meddelelser fra SickRage."],"Libnotify":[null,"Libnotify"],"The standard desktop notification API for Linux/*nix systems. This notifier will only function if the pynotify module is installed (Ubuntu/Debian package <a href=\"apt:python-notify\">python-notify</a>).":[null,"Standard desktop notifikation API for Linux / * nix systemer. Denne meddeler vil kun fungere, hvis pynotify modulet er installeret (Ubuntu/Debian package <a href=\"apt:python-notify\"> python-notify</a>)."],"send Libnotify notifications?":[null,""],"Pushover":[null,"Pushover"],"Pushover makes it easy to send real-time notifications to your Android and iOS devices.":[null,"Pushover gør det let at sende notifikationer i realtid til din Android og iOS enheder."],"send Pushover notifications?":[null,""],"Pushover key":[null,"Pushover nøgle"],"user key of your Pushover account":[null,"bruger nøglen til din Pushover konto"],"Pushover API key":[null,"Pushover API nøgle"],"click here":[null,""]," to create a Pushover API key":[null,""],"Pushover devices":[null,"Pushover enheder"],"comma separated list of pushover devices you want to send notifications to":[null,"kommasepareret liste over pushover enheder du vil sende notifikationer til"],"Pushover notification sound":[null,"Pushover notifikations lyd"],"Bike":[null,"Bike"],"Bugle":[null,"Bugle"],"Cash Register":[null,"Cash Register"],"Classical":[null,"Classical"],"Cosmic":[null,"Cosmic"],"Falling":[null,"Falling"],"Gamelan":[null,"Gamelan"],"Incoming":[null,"Incoming"],"Intermission":[null,"Intermission"],"Magic":[null,"Magic"],"Mechanical":[null,"Mechanical"],"Piano Bar":[null,"Piano Bar"],"Siren":[null,"Siren"],"Space Alarm":[null,"Space Alarm"],"Tug Boat":[null,"Tug Boat"],"Alien Alarm (long)":[null,"Alien Alarm (lang)"],"Climb (long)":[null,"Climb (lang)"],"Persistent (long)":[null,"Persistent (lang)"],"Pushover Echo (long)":[null,"Pushover Echo (lang)"],"Up Down (long)":[null,"Up Down (lang)"],"None (silent)":[null,"Ingen (lydløs)"],"Device specific":[null,"Enheds specifik"],"choose notification sound to use":[null,""],"Pushover priority":[null,""],"Choose priority to use":[null,""],"Boxcar 2":[null,"Boxcar 2"],"Read your messages where and when you want them!":[null,"Læs dine beskeder hvor og hvornår du vil have dem!"],"send Boxcar notifications?":[null,""],"Boxcar2 access token":[null,"Boxcar2 adgangstoken"],"access token for your Boxcar account.":[null,"adgangstoken til din Boxcar konto."],"NMA":[null,"NMA"],"Notify My Android":[null,"Notify My Android"],"Notify My Android is a Prowl-like Android App and API that offers an easy way to send notifications from your application directly to your Android device.":[null,"Notify My Android er et Prowl-lignende Android App og API, der tilbyder en nem måde at sende notifikationer fra dit program direkte til din Android-enhed."],"send NMA notifications?":[null,""],"NMA API key":[null,"NMA API-nøgle"],"(multiple keys must be separated by commas, up to a maximum of 5)":[null,"(flere nøgler skal være adskilt af kommaer, op til et maksimum af 5)"],"NMA priority":[null,"NMA prioritet"],"priority of NMA messages from SickRage.":[null,"prioritet af NMA meddelelser fra SickRage."],"Pushalot":[null,"Pushalot"],"Pushalot is a platform for receiving custom push notifications to connected devices running Windows Phone or Windows 8.":[null,"Pushalot er en platform til at modtage brugerdefinerede pushbeskeder til tilsluttede enheder, der kører Windows Phone og Windows 8."],"send Pushalot notifications ?":[null,"send Pushalot notifikationer?"],"Pushalot authorization token":[null,"Pushalot tilladelse token"],"authorization token of your Pushalot account.":[null,"tilladelses token for din Pushalot konto."],"Pushbullet":[null,"Pushbullet"],"Pushbullet is a platform for receiving custom push notifications to connected devices running Android/iOS and desktop browsers such as Chrome, Firefox or Opera.":[null,"Pushbullet er en platform for at modtage brugerdefinerede pushbeskeder til tilsluttede enheder, der kører Android/iOS og desktop browsere såsom Chrome, Firefox eller Opera."],"send Pushbullet notifications?":[null,"send Pushbullet notifikationer?"],"Pushbullet API key":[null,"Pushbullet API-nøgle"],"API key of your Pushbullet account":[null,"API-nøgle på din Pushbullet konto"],"Pushbullet devices":[null,"Pushbullet enheder"],"Update device list":[null,"Opdater enhedsliste"],"Pushbullet channels":[null,"Pushbullet kanaler"],"Free Mobile":[null,"Free Mobile"],"Free Mobile is a famous French cellular network provider.<br> It provides to their customer a free SMS API.":[null,"Free Mobile er en berømt fransk cellular netværksudbyder. <br>Det giver til deres kunde en gratis SMS API."],"send SMS notifications?":[null,"send SMS notifikationer?"],"send a SMS when a download starts?":[null,"Send en SMS, når et download starter?"],"send a SMS when a download finishes?":[null,"send en SMS, når et download er færdig?"],"send a SMS when subtitles are downloaded?":[null,"Send en SMS, når undertekster er downloadet?"],"Free Mobile customer ID":[null,"Gratis mobil kunde-ID"],"it's your Free Mobile customer ID (8 digits)":[null,"det er din Free Mobile kundenummer (8 cifre)"],"Free Mobile API key":[null,"Free Mobile API-nøgle"],"find your API key in your customer portal.":[null,"find din API-nøgle i kundeportalen."],"Click below to test your settings.":[null,"Klik nedenfor for at teste dine indstillinger."],"Telegram":[null,"Telegram"],"Telegram is a cloud-based instant messaging service.":[null,"Telegram er en cloud-baseret instant messaging service."],"send Telegram notifications?":[null,"send Telegram notifikationer?"],"send a message when a download starts?":[null,"send en besked når en download starter?"],"send a message when a download finishes?":[null,"send en besked når en download er færdig?"],"send a message when subtitles are downloaded?":[null,"send en besked når undertekster er downloadet?"],"User/group ID":[null,"Bruger/gruppe-ID"],"contact @myidbot on Telegram to get an ID":[null,"kontant @myidbot på Telegram for at få et ID"],"Bot API token":[null,"Bot API token"],"contact @BotFather on Telegram to set up one":[null,"kontakt @BotFather på Telegram for at opsætte en"],"Join":[null,"Tilslut"],"Join all of your devices together!":[null,"Saml alle dine enheder sammen!"],"send Join notifications?":[null,"send Join notifikationer?"],"Device ID":[null,"Enheds ID"],"per device specific id":[null,"pr. enhed specifik ID"]," to create a Join API key":[null,""],"Twilio":[null,"Twillio"],"Twilio is a webservice API that allows you to communicate directly with a mobile number. This notifier will send a text directly to your mobile device.":[null,"Twilio er et webservice-API, der giver mulighed for at kommunkere direkte med et mobilnummer. Denne notits sender en sms direkte til din mobil-enhed."],"should SickRage text your mobile device?":[null,"skal SickRage sende en SMS til din mobile enhed?"],"Twilio Account SID":[null,"Twilio konto SID"],"account SID of your Twilio account.":[null,"konto SID på din Twilio konto (Account SID)."],"Twilio Auth Token":[null,"Twilio Auth Token"],"Twilio Phone SID":[null,"Twilio Telefon SID"],"phone SID that you would like to send the sms from":[null,"telefon SID som du gerne vil sende SMS´en fra"],"Your phone number":[null,"Dit telefonnummer"],"phone number that will receive the sms. Please use the format +1-###-###-####":[null,"telefonnummer som skal modtage SMS´en. Brug formatet +1-###-###-###"],"Twitter":[null,"Twitter"],"A social networking and microblogging service, enabling its users to send and read other users' messages called tweets.":[null,"Et social netværk og microblogging service, muliggøre dens brugernes at sende og læse andre brugeres meddelelser kaldes tweets."],"should SickRage post tweets on Twitter?":[null,"skal SickRage sende tweets på Twitter?"],"you may want to use a secondary account.":[null,"det er en god idé at bruge en sekundær konto."],"send direct message":[null,"send direkte besked"],"send a notification via Direct Message, not via status update":[null,"send en notifikation via direkte besked, ikke via statusopdatering"],"send DM to":[null,"send DM til"],"Twitter account to send Direct Messages to (must follow you)":[null,"Twitter-konto for at sende direkte beskeder til (skal følge dig)"],"Step One":[null,"Trin et"],"Request Authorization":[null,"Anmod om Authorisation"],"Click the \"Request Authorization\" button.<br> This will open a new page containing an auth key.<br> <b>note:</b> if nothing happens check your popup blocker.":[null,""],"Step Two":[null,"Trin to"],"Enter the key Twitter gave you below, and click \"Verify Key\".":[null,"Indtast nøglen Twitter gav dig nedenfor, og klik på \"Kontrollér nøgle\"."],"Trakt":[null,"Trakt"],"Trakt helps keep a record of what TV shows and movies you are watching. Based on your favorites, Trakt recommends additional shows and movies you'll enjoy!":[null,""],"send Trakt.tv notifications?":[null,"send Trakt.tv notifikationer?"],"username of your Trakt account.":[null,"brugernavnet på din Trakt konto."],"Trakt PIN":[null,"Trakt PIN"],"Get Trakt PIN":[null,"Få Trakt PIN"],"PIN code to authorize SickRage to access Trakt on your behalf.":[null,"PIN-kode til at godkende SickRage og få adgang til Trakt på dine vegne."],"API Timeout":[null,"API Timeout"],"seconds to wait for Trakt API to respond. (Use 0 to wait forever)":[null,"antal sekunder til at vente på Trakt API reagere (Brug 0 til at vente for evigt)"],"Default indexer":[null,"Standard indekseringsprogram"],"Sync libraries":[null,"Sync biblioteker"],"sync your SickRage show library with your trakt show library.":[null,"synkroniser dit SickRage bibliotek med dit trakt bibliotek."],"Remove Episodes From Collection":[null,"Fjern episoder fra samling"],"remove an episode from your Trakt Collection if it is not in your SickRage Library.":[null,"fjern en episode fra din Trakt samling hvis den ikke er i dit SickRage biliotek."],"Sync watchlist":[null,"Sync overvågningsliste"],"sync your SickRage show watchlist with your trakt show watchlist (either Show and Episode).":[null,"synkroniser din SickRage serie overvågningsliste med din trakt serie overvågningsliste (Serie eller Episode)."],"episode will be added on watch list when wanted or snatched and will be removed when downloaded ":[null,""],"Watchlist add method":[null,"Overvågningsliste tilføj metode"],"Skip All":[null,"Spring alle over"],"Download Pilot Only":[null,"Download kun Pilot afsnittet"],"Get whole show":[null,"Få hele showet"],"method in which to download episodes for new shows.":[null,"metode til at hente episoder til nye shows."],"Remove episode":[null,"Fjern episode"],"remove an episode from your watchlist after it is downloaded.":[null,"fjern en episode fra din overvågningsliste, når den er downloadet."],"Remove series":[null,"Fjern serier"],"remove the whole series from your watchlist after any download.":[null,"fjern hele serien fra din overvågningsliste efter en download."],"Remove watched show":[null,"Fjern sete serier"],"remove the show from sickrage if it's ended and completely watched":[null,"fjern serien fra SickRage, hvis det er endt og helt set"],"Start paused":[null,"Sat på pause fra start"],"shows grabbed from your trakt watchlist start paused.":[null,"start serier hentet fra din trakt overvågningsliste som pauset."],"Trakt blackList name":[null,"Trakt sortliste navn"],"name (slug) of list on Trakt for blacklisting show on 'Add Trending Show' & 'Add Recommended Shows' pages":[null,""],"Email":[null,"E-mail"],"Allows configuration of email notifications on a per show basis.":[null,"Tillader konfiguration af e-mail notifikation for hver serie."],"send email notifications?":[null,"send e-mail notifikationer?"],"SMTP host":[null,"SMTP vært"],"hostname of your SMTP email server.":[null,"værtsnavnet for din SMTP e-mail-server."],"SMTP port":[null,"SMTP port"],"port number used to connect to your SMTP host.":[null,"portnummeret, der bruges til at oprette forbindelse til din SMTP host."],"SMTP from":[null,"SMTP fra"],"sender email address, some hosts require a real address.":[null,"afsenderens e-mail-adresse, nogle værter kræver en reel adresse."],"Use TLS":[null,"Brug TLS"],"check to use TLS encryption.":[null,"marker for at bruge TLS-kryptering."],"SMTP user":[null,"SMTP bruger"],"(optional) your SMTP server username.":[null,"(valgfri) brugernavn til din SMTP server."],"SMTP password":[null,"STMP kodeord"],"(optional) your SMTP server password.":[null,"(valgfri) adgangskode til din SMTP server."],"Global email list":[null,"Global e-mail-liste"],"email addresses listed here, separated by commas if applicable, will<br> receive notifications for <b>all</b> shows.":[null,"e-mail adresser skrevet her, adskilt af komma, will <br>modtage notifikationer for <b>alle</b> serier."],"(This field may be blank except when testing.)":[null,"(Feltet kan være tomt bortset fra når der testes)"],"Email Subject":[null,"E-mail-emne"],"use a custom subject for some privacy protection?":[null,"brug selvvalgt test i emnefelt for nogen grad af privatlivsbeskyttelse?"],"(leave blank for the default SickRage subject)":[null,"(lad være blank for SickRage´s standard emne)"],"configure per-show notifications here by entering email address(es), separated by commas,":[null,""],"after selecting a show in the drop-down box. Be sure to activate the 'Save for this show'":[null,"når du har valgt en serie i drop-down boksen. Husk at aktivere 'Gem for denne serie'"],"button below after each entry.":[null,"knappen nedenfor efter hver post."],"Slack":[null,"Slack"],"Slack brings all your communication together in one place. It's real-time messaging, archiving and search for modern teams.":[null,""],"should SickRage post messages on Slack?":[null,""],"Slack Incoming Webhook":[null,"Slack indkommende Webhooks"],"Discord":[null,""],"All-in-one voice and text chat for gamers that's free, secure, and works on both your desktop and phone.":[null,""],"Should SickRage post messages on Discord?":[null,""],"Discord Incoming Webhook":[null,""],"Create webhook under channel settings.":[null,""],"Discord Bot Name":[null,""],"Blank will use webhook default Name.":[null,""],"Discord Avatar URL":[null,""],"Blank will use webhook default Avatar.":[null,""],"Discord TTS":[null,""],"Send notifications using text-to-speech":[null,""],"Post-Processing":[null,"Efterbehandling"],"Episode Naming":[null,"Episode navngivning"],"Metadata":[null,"Metadata"],"Settings that dictate how SickRage should process completed downloads.":[null,"Indstillinger, der dikterer, hvordan SickRage skal behandle afsluttede downloads."],"enable the automatic post processor to scan and process any files in your Post Processing Dir":[null,""],"do not use if you use an external Post Processing script":[null,""],"Post Processing Dir":[null,"Efterbearbejdningsplacering"],"the folder where your download client puts the completed TV downloads.":[null,""],"please use seperate downloading and completed folders in your download client if possible.":[null,""],"Processing Method":[null,"Behandlingsmetode"],"what method should be used to put files into the library?":[null,""],"if you keep seeding torrents after they finish, please avoid the 'move' processing method to prevent errors.":[null,""],"Auto Post-Processing Frequency":[null,"Auto Efterbehandlingsfrekvens"],"time in minutes to check for new files to auto post-process (min 10)":[null,""],"Postpone post processing":[null,"Udskyd efterbehandling"],"wait to process a folder if sync files are present.":[null,""],"Sync File Extensions":[null,"Synkroniser Filtypenavne"],"comma seperated list of extensions or filename globs SickRage ignores when Post Processing":[null,""],"Rename Episodes":[null,"Omdøb episoder"],"rename episode using the Episode Naming settings?":[null,""],"Create missing show directories":[null,"Opret manglende serie mapper"],"create missing show directories when they get deleted":[null,""],"Add shows without directory":[null,"Tilføje serier uden mapper"],"add shows without creating a directory (not recommended)":[null,""],"Move associated files":[null,""],"move associated (srt/srr/sfv/etc) files while post processing?":[null,""],"Rename .nfo file":[null,"Omdøb .nfo-fil"],"rename the original .nfo file to .nfo-orig to avoid conflicts?":[null,""],"Associated file extensions":[null,""],"comma separated list of associated file extensions SickRage should keep while post processing.":[null,""],"leaving it empty means no associated files will be post processed":[null,""],"Delete non associated files":[null,""],"delete non associated files while post processing?":[null,""],"Change File Date":[null,"Skift fildato"],"set last modified filedate to the date that the episode aired?":[null,""],"some systems may ignore this feature.":[null,""],"Timezone for File Date":[null,"Tidszone for fildato"],"local":[null,"lokal"],"network":[null,"netværk"],"what timezone should be used to change File Date?":[null,""],"Unpack":[null,"Udpak"],"What to do with archived releases found in your <i>TV Download Dir</i>?":[null,""],"Ignore (do not process contents)":[null,""],"Unpack (process contents)":[null,""],"Treat as video (process archive as-is)":[null,""],"'Unpack' only works with RAR archives":[null,""],"Windows":[null,""],"WinRar is required on windows":[null,""],"Unpack Directory":[null,""],"Choose a path to unpack files, leave blank to unpack in download dir":[null,""],"Unrar Location":[null,""],"add the path to unrar if it is not in the system path":[null,""],"Alternate Unrar Tool":[null,""],"add the path to an alternate unrar tool if it is not in the system path":[null,""],"Delete RAR contents":[null,"Slet RAR indhold"],"delete content of RAR files, even if Process Method not set to move?":[null,""],"only working with RAR archive":[null,""],"Don't delete empty folders":[null,"Slet ikke tomme mapper"],"leave empty folders when Post Processing?":[null,""],"can be overridden using manual Post Processing":[null,""],"Follow symbolic-links":[null,""],"follow down symbolic links in download directory?":[null,""],"<b>EXPERTS ONLY.</b><br>Enable only if you know what <b>circular symbolic links</b> are,<br>and can <b>verify that you have none</b>.":[null,""],"Use icacls":[null,""],"Windows only":[null,""],"sets video permissions after using the move method in post processing":[null,""],"Extra Scripts":[null,"Ekstra Scripts"],"see":[null,""],"for script arguments description and usage.":[null,""],"How SickRage will name and sort your episodes.":[null,"Hvordan vil SickRage navngive og sortere dine episoder."],"Name Pattern":[null,"Navnemønster"],"Toggle Naming Legend":[null,""],"don't forget to add quality pattern. Otherwise after post-processing the episode will have UNKNOWN quality":[null,""],"Meaning":[null,"Betydning"],"Pattern":[null,"Mønster"],"Result":[null,"Resultat"],"Use lower case if you want lower case names (eg. %sn, %e.n, %q_n etc)":[null,"Brug små bogstaver, hvis du ønsker små bogstaver i navnene (f.eks. %sn, %e.n, % q_n osv.)"],"Show Name":[null,"TV-program Navn"],"Show.Name":[null,"TV-program.Navn"],"Show_Name":[null,"TV-program_Navn"],"Season Number":[null,"Sæson nummer"],"XEM Season Number":[null,""],"Episode Number":[null,"Episode nummer"],"XEM Episode Number":[null,"XEM-Episode nummer"],"Episode Name":[null,"Episode navngivning"],"Episode.Name":[null,"Episode.Navn"],"Episode_Name":[null,"Episode_Navn"],"Air Date":[null,"Udsendelsesdato"],"Post-Processing Date":[null,"Efterbehandlings dato"],"Quality":[null,"Kvalitet"],"Scene Quality":[null,"Scene kvalitet"],"Release Name":[null,"Udgivelses Navn"],"SickRage' is used in place of RLSGROUP if it could not be properly detected":[null,"SickRage' bruges i stedet for RLSGROUP, hvis det ikke kunne være korrekt registreret"],"Release Group":[null,"Release Group"],"If episode is proper/repack add 'proper' to name.":[null,"Hvis episode er proper/repack tilføj 'proper' til navnet."],"Release Type":[null,"Udgivelsestype"],"Multi-Episode Style":[null,"Multi Episode stil"],"Single-EP Sample":[null,"Enkel episode eksempel"],"Multi-EP sample":[null,"Multi Episode eksempel"],"Strip Show Year":[null,"Fjern serie året"],"remove the TV show's year when renaming the file?":[null,""],"only applies to shows that have year inside parentheses":[null,""],"Custom Air-By-Date":[null,"Tilpasset udsendelsesdato"],"name air-by-date shows differently than regular shows?":[null,""],"Toggle ABD Naming Legend":[null,""],"Regular Air Date":[null,"Normal udsendelsesdato"],"Year":[null,"År"],"Month":[null,"Måned"],"Day":[null,"Dag"],"Multi-EP style is ignored":[null,"Multi Episode stil ignoreres"],"Custom Sports":[null,"Tilpasset Sport"],"name sports shows differently than regular shows?":[null,""],"Toggle Sports Naming Legend":[null,""],"Sports Air Date":[null,"Sports udsendelsesdato"],"Custom Anime":[null,"Tilpasset Anime"],"name anime shows differently than regular shows?":[null,""],"Toggle Anime Naming Legend":[null,"Aktiver Anime navngivings oversigt"],">XEM Season Number":[null,"> XEM Sæson nummer"],"Single-EP Anime Sample":[null,"Enkel episode eksempel"],"Multi-EP Anime sample":[null,"Multi Episode eksempel"],"Add Absolute Number":[null,"Tilføje absolutte numre"],"add the absolute number to the season/episode format?":[null,""],"only applies to anime. (eg. S15E45 - 310 vs S15E45)":[null,""],"Only Absolute Number":[null,"Kun absolutte numre"],"replace season/episode format with absolute number":[null,""],"only applies to anime.":[null,""],"No Absolute Number":[null,"Ingen absolutte numre"],"don't include the absolute number":[null,""],"The data associated to the data. These are files associated to a TV show in the form of images and text that, when supported, will enhance the viewing experience.":[null,"Information forbundet med serien. Dette er filer som forbindes med en serie, i form af billeder og tekst som, når understøttet, vil forbedre brugeroplevelsen."],"Metadata Type":[null,"Metadata Type"],"toggle metadata options that you wish to be created":[null,""],"multiple targets may be used":[null,""],"Select Metadata":[null,"Vælg Metadata"],"Provider Priorities":[null,"Udbyder prioriteter"],"Provider Options":[null,"Udbyder indstillinger"],"Configure Custom Newznab Providers":[null,"Konfigurere brugerdefinerede Newznab udbydere"],"Configure Custom Torrent Providers":[null,"Konfigurere brugerdefinerede Torrent udbydere"],"Check off and drag the providers into the order you want them to be used.":[null,"Marker og træk udbyderne i den rækkefølge, du vil have dem til at blive brugt."],"At least one provider is required but two are recommended.":[null,"Mindst én udbyder er nødvendig men to anbefales."],"Torrent providers can be toggled in ":[null,"Torrent udbydere kan slås i "],"Provider does not support backlog searches at this time.":[null,"Udbyderen understøtter ikke backlog søgninger på dette tidspunkt."],"Provider is <b>NOT WORKING</b>.":[null,"Udbyderen er <b>VIRKER IKKE</b>."],"Configure individual provider settings here.":[null,"Konfigurere individuelle udbyder indstillinger her."],"Check with provider's website on how to obtain an API key if needed.":[null,"Check udbyderens hjemmeside for hvordan du får en API-nøgle, hvis nødvendigt."],"Configure provider":[null,"Konfigurer - udbydere"],"no providers available to configure.":[null,""],"URL":[null,"URL"],"Enable daily searches":[null,"Aktiver daglige søgninger"],"enable provider to perform daily searches.":[null,"tillad udbyder at udføre daglige søgninger."],"Enable backlog searches":[null,"Aktiver backlog søgninger"],"enable provider to perform backlog searches.":[null,""],"Season search mode":[null,"Sæson søgefunktionen"],"when searching for complete seasons you can choose to have it look for season packs only, or choose to have it build a complete season from just single episodes.":[null,"når der søges efter komplette sæsoner, kan du vælge at kun at søge efter sæson-pakker hos udbyderen, eller lade den opbygge en komplette sæsoner af enkeltstående episoder."],"season packs only.":[null,"kun sæson pakker."],"episodes only.":[null,"kun episoder."],"Enable fallback":[null,"Tillad alternativ"],"when searching for a complete season depending on search mode you may return no results, this helps by restarting the search using the opposite search mode.":[null,"når søgningen ud fra den valgte metode ikke giver nogen resultater, tillader dette at genstarte søgningen med den modsatte metode, og kan derved måske skaffe flere resultater."],"Custom URL":[null,"Brugerdefineret URL"],"the URL should include the protocol (and port if applicable). Examples: http://192.168.1.4/ or http://localhost:3000/":[null,""],"Api key":[null,"Api nøgle"],"Digest":[null,""],"Hash":[null,"Hash"],"Passkey":[null,"Passkey"],"Cookies":[null,"Cookies"],"example: uid=1234;pass=567845439634987<br>note: uid and pass are not your username/password.<br>use DevTools or Firebug to get these values after logging in on your browser.":[null,""],"Pin":[null,"PIN"],"Seed ratio":[null,"Seed forhold"],"stop transfer when ratio is reached<br>(-1 SickRage default to seed forever, or leave blank for downloader default)":[null,""],"Minimum seeders":[null,"Minimum seeders"],"Minimum leechers":[null,"Minimum leechers"],"Confirmed download":[null,"Bekræftet download"],"only download torrents from trusted or verified uploaders ?":[null,"kun download torrents fra betroede eller verificerede uploaders?"],"Ranked torrents":[null,"Rangerede torrents"],"only download ranked torrents (trusted releases)":[null,"kun download rangerede torrent (betroede udgivelser)"],"English torrents":[null,"Engelske torrents"],"only download english torrents, or torrents containing english subtitles":[null,"download kun engelsksprogede torrents, eller torrents indeholdende engelske undertekster"],"For Spanish torrents":[null,"For Spanske torrents"],"ONLY search on this provider if show info is defined as \"Spanish\" (avoid provider's use for VOS shows)":[null,"Søg KUN hos denne udbyder hvis seriens info er defineret som \"Spansk\" (undgå udbyderens brug af VOS serier)"],"Sorting results by":[null,"Sorterer resultater på"],"Freeleech":[null,"Freeleech"],"only download <b>\"FreeLeech\"</b> torrents.":[null,"kun download <b>\"Freeleeck\"</b> torrents."],"Category":[null,"Kategori"],"select torrent with Italian subtitle":[null,"vælg torrent med italiensk undertekst"],"Configure Custom<br>Newznab Providers":[null,"Indstil andre/brugerdefinerede<br>Newznab-udbydere"],"Add and setup or remove custom Newznab providers.":[null,"Tilføj, fjern og indstil andre/brugerdefinerede Newznab-udbydere."],"Select provider":[null,"Vælg udbyder"],"-- add new provider --":[null,"-- tilføj ny udbyder --"],"Provider name":[null,"Navn på udbyder"],"Site URL":[null,"Side URL"],"Newznab search categories":[null,"Newznab søge-kategorier"],"select your Newznab categories on the left, and click the \"update categories\" button to use them for searching.) <b>don't forget to to save the form!":[null,"vælg dine Newznab-kategorier til venstre, og klik på knappen \"Opdater kategorier\" for at bruge dem til søgninger.) <b>Husk at gemme formularen!"],"Update Categories":[null,"Opdater kategorier"],"Add":[null,"Tilføj"],"Delete":[null,"Slet"],"Add and setup or remove custom RSS providers.":[null,"Tilføj, fjern og indstil andre/brugerdefinerede RSS-udbydere."],"RSS URL":[null,"RSS URL"],"Search element":[null,"Søgnings-element"],"eg: title":[null,"f.eks.: titel"],"Episode Search":[null,"Episode søgning"],"NZB Search":[null,"NZB søgning"],"Torrent Search":[null,"Torrent Søgning"],"How to manage searching with":[null,"Sådan håndteres søgning med"],"Randomize Providers":[null,"Brug tilfældigt en udbydere"],"randomize the provider search order instead of going in order of placement":[null,"tilfældig søg blandt udbyderne i stedet for at søge i rækkefølge"],"Download propers":[null,"Download 'propers'"],"replace original download with \"Proper\" or \"Repack\" if nuked":[null,"erstat originale download med \"Proper\" eller \"Repack\", hvis nuked"],"Check propers every":[null,"Check propers hver"],"24 hours":[null,"24 timer"],"4 hours":[null,"4 timer"],"90 mins":[null,"90 minutter"],"45 mins":[null,"45 minutter"],"15 mins":[null,"15 minutter"],"Backlog search day(s)":[null,"Backlog søgning tilbage i dage"],"number of day(s) that the \"Forced Backlog Search\" will cover (e.g. 7 Days)":[null,"antallet af dag(e), som \"Tvungen Backlog Søgning\" vil dække (f.eks. 7 dage)"],"Backlog search frequency":[null,"Backlog Søge frekvens"],"time in minutes between searches (min.":[null,"tid i minutter mellem søgninger (min."],"Daily search frequency":[null,"Daglig søgefrekvens"],"Usenet retention":[null,"Usenet retention"],"age limit in days for usenet articles to be used (e.g. 500)":[null,"aldersgrænsen i dage for usenet artikler der skal anvendes (f.eks. 500)"],"Ignore words":[null,"Ignorerede ord"],"results with one or more word from this list will be ignored<br>separate words with a comma, e.g. \"word1,word2,word3\"":[null,"resultater med ét eller flere ord fra denne liste vil blive ignoreret <br>flere ord adskilles med komma, f.eks. \"ord1, ord2, ord3\""],"Require words":[null,"Krævede ord"],"results with no word from this list will be ignored<br>separate words with a comma, e.g. \"word1,word2,word3\"":[null,"resultater uden nogen ord fra denne liste vil blive ignoreret <br>flere ord adskilles med komma, f.eks. \"ord1, ord2, ord3\""],"Trackers list":[null,"Tracker listen"],"trackers that will be added to magnets without trackers<br>separate trackers with a comma, e.g. \"tracker1,tracker2,tracker3\"":[null,""],"Ignore language names in subbed results":[null,"Ignorere sprog navne i resultater med undertekster"],"ignore subbed releases based on language names <br>\n Example: \"dk\" will ignore words: dksub, dksubs, dksubbed, dksubed <br>\n separate languages with a comma, e.g. \"lang1,lang2,lang3":[null,""],"Allow high priority":[null,"Tillad høj prioritet"],"set downloads of recently aired episodes to high priority":[null,"sæt downloads af nylig viste episoder til høj prioritet"],"Use Failed Downloads":[null,"Anvend Mislykkede Downloads"],"use Failed Download Handling?":[null,""],"will only work with snatched/downloaded episodes after enabling this":[null,""],"Delete Failed":[null,"Slet Mislykkede"],"delete files left over from a failed download?":[null,""],"this only works if Use Failed Downloads is enabled.":[null,""],"How to handle NZB search results.":[null,""],"Search NZBs":[null,"Søg NZBs"],"enable NZB search providers":[null,""],"Send .nzb files to":[null,"Send .nzb filer til"],"SABnzbd server URL":[null,"SABnzbd server URL"],"URL to your SABnzbd server (e.g. http://localhost:8080/)":[null,"URL til din SABnzbd server (fx localhost8080: /)"],"SABnzbd username":[null,"SABnzbd brugernavn"],"(blank for none)":[null,"(tom for ingen)"],"SABnzbd password":[null,"SABnzbd password"],"SABnzbd API key":[null,"SABnzbd API key"],"locate at... SABnzbd Config -> General -> API Key":[null,""],"Use SABnzbd category":[null,"Brug SABnzbd kategori"],"add downloads to this category (e.g. TV)":[null,"tilføj downloads til denne kategori (f.eks. TV)"],"Use SABnzbd category (backlog episodes)":[null,"Brug SABnzbd kategori (backlog episoder)"],"add downloads of old episodes to this category (e.g. TV)":[null,"tilføj downloads af gamle episoder til denne kategori (f.eks. TV)"],"Use SABnzbd category for anime":[null,"Brug SABnzbd kategori for anime"],"add anime downloads to this category (e.g. anime)":[null,""],"Use SABnzbd category for anime (backlog episodes)":[null,""],"add anime downloads of old episodes to this category (e.g. anime)":[null,""],"Use forced priority":[null,"Brug tvungen prioritet"],"enable to change priority from HIGH to FORCED":[null,"gøre det muligt for at ændre prioritet fra høj til tvungen"],"Black hole folder location":[null,"Sort hul mappeplacering"],"<b>.nzb</b> files are stored at this location for external software to find and use":[null,""],"Connect using HTTPS":[null,"Opret forbindelse med HTTPS"],"enable Secure control in NZBGet and set the correct Secure Port here":[null,""],"NZBget host:port":[null,""],"(e.g. localhost:6789)":[null,"(f.eks. localhost:6789)"],"NZBget RPC host name and port number (not NZBgetweb!)":[null,""],"NZBget username":[null,""],"locate in nzbget.conf (default:nzbget)":[null,""],"NZBget password":[null,"NZBget adgangskode"],"locate in nzbget.conf (default:tegbzn6789)":[null,""],"Use NZBget category":[null,""],"send downloads marked this category (e.g. TV)":[null,""],"Use NZBget category (backlog episodes)":[null,""],"send downloads of old episodes marked this category (e.g. TV)":[null,""],"Use NZBget category for anime":[null,""],"send anime downloads marked this category (e.g. anime)":[null,""],"Use NZBget category for anime (backlog episodes)":[null,""],"send anime downloads of old episodes marked this category (e.g. anime)":[null,""],"NZBget priority":[null,"NZBget prioritet"],"Very low":[null,"Meget lav"],"Low":[null,"Lav"],"Very high":[null,"Meget høj"],"Force":[null,"Tving"],"priority for daily snatches (no backlog)":[null,""],"Torrent host:port":[null,"Torrent vært:port"],"URL to your Synology DSM (e.g. http://localhost:5000/)":[null,""],"Client username":[null,"Klient brugernavn"],"Client password":[null,""],"Downloaded files location":[null,"Downloadede filers placering"],"where Synology Download Station will save downloaded files (blank for client default)":[null,""],"the destination has to be a shared folder for Synology DS":[null,""],"Click below to test":[null,"Klik nedenfor for at teste"],"How to handle Torrent search results.":[null,""],"Search torrents":[null,"Søg efter torrents"],"enable torrent search providers":[null,"aktivere torrent søgemaskiner"],"Send .torrent files to":[null,"Send .torrent filer til"],"<b>.torrent</b> files are stored at this location for external software to find and use":[null,""],"URL to your torrent client (e.g. http://localhost:8000/)":[null,"URL til din torrent klient (f.eks. http://localhost:8000 /)"],"Torrent RPC URL":[null,"Torrent RPC-URL"],"the path without leading and trailing slashes (e.g. transmission)":[null,""],"Http Authentication":[null,"Http godkendelse"],"Verify certificate":[null,"Kontroller certifikat"],"disable if you get \"Deluge: Authentication Error\" in your log":[null,"deaktiver, hvis du får \"Deluge: Authentication Error\" i din log"],"verify SSL certificates for HTTPS requests":[null,""],"Add label to torrent":[null,"Føj etikette til torrent"],"(blank spaces are not allowed)":[null,""],"label plugin must be enabled in Deluge clients":[null,""],"for QBitTorrent 3.3.1 and up":[null,""],"Add label to torrent for anime":[null,""],"for QBitTorrent 3.3.1 and up ":[null,""],"where <span id=\"torrent_client\">the torrent client</span> will save downloaded files (blank for client default)":[null,""],"the destination has to be a shared folder for Synology DS</span>":[null,""],"Minimum seeding time":[null,""],"time in hours":[null,"tid i timer"],"(default:'0' passes blank to client and '-1' passes nothing)":[null,""],"Start torrent paused":[null,""],"add .torrent to client but do <b style=\"font-weight:900\">not</b> start downloading":[null,"tilføj .torrent til klienten, men start<b style=\"font-weight:900\"> ikke</b> med at downloade"],"Allow high bandwidth":[null,"Tillad høj båndbredde"],"use high bandwidth allocation if priority is high":[null,"Brug høj båndbredde hvis prioriteten er høj"],"Test Connection":[null,"Test forbindelse"],"Windows Shares":[null,""],"Defines your existing windows shares so that we can add them to the browse dialog":[null,""],"Share #{number}":[null,""],"Share label":[null,""],"Hostname or IP":[null,""],"Share path":[null,""],"Subtitles Search":[null,"Undertekst søgning"],"Subtitles Plugin":[null,"Undertekst Plug-in"],"Plugin Settings":[null,"Tilføjelsesindstillinger"],"Settings that dictate how SickRage handles subtitles search results.":[null,"Indstillinger, der dikterer, hvordan SickRage skal håndtere søgeresultater for undertekster."],"Search Subtitles":[null,"Søg efter undertekster"],"Subtitle Languages":[null,"Undertekstsprog"],"Subtitle Directory":[null,"Undertekst mappe"],"the directory where SickRage should store your <i>Subtitles</i> files.":[null,"mappen hvor SickRage skal gemme dine <i>Undertekst</i>-filer."],"leave empty if you want store subtitle in episode path.":[null,"lad være tomt hvis du ønsker at gemme undertekster i stien for episoden."],"Subtitle Find Frequency":[null,"Interval for søgning efter undertekster"],"time in hours between scans (default: 1)":[null,"tid i timer mellem hver skanning (standard: 1)"],"Include Specials":[null,""],"include the show's specials when searching for subtitles?":[null,""],"Perfect matches":[null,"Perfekt match"],"only download subtitles that match: release group, video codec, audio codec and resolution":[null,"download kun undertekster som mathcer: Release group, video codec, audio coded og resolution"],"if disabled you may get out of sync subtitles":[null,""],"Subtitles History":[null,"Underteksthistorik"],"log downloaded Subtitle on History page?":[null,"log downloaded undertekster på historik-siden?"],"Subtitles Multi-Language":[null,""],"append language codes to subtitle filenames?":[null,""],"this option is required if you use multiple subtitle languages":[null,""],"Delete unwanted subtitles":[null,"Slet uønskede undertekster"],"enable to delete unwanted subtitle languages bundled with release":[null,""],"Embedded Subtitles":[null,"Integrerede undertekster"],"ignore subtitles embedded inside video file?":[null,"ignorer undertekster integrerede ind i videofiler?"],"this will ignore <u>all</u> embedded subtitles for every video file!":[null,""],"Hearing Impaired Subtitles":[null,"Hørehæmmede undertekster"],"download hearing impaired style subtitles?":[null,""],"See":[null,"Se"],"for a script arguments description.":[null,""],"Additional scripts separated by <b>|</b>.":[null,""],"Scripts are called after each episode has searched and downloaded subtitles.":[null,""],"For any scripted languages, include the interpreter executable before the script. See the following example":[null,""],"For Windows:":[null,""],"For Linux / OS X:":[null,""],"Subtitle Providers":[null,""],"Check off and drag the plugins into the order you want them to be used.":[null,""],"At least one plugin is required.":[null,""]," Web-scraping plugin":[null,""],"Provider Settings":[null,""],"Set user and password for each provider":[null,""],"User Name":[null,"Brugernavn"],"Change Show":[null,"Ændre Serie"],"Prev Show":[null,"Forrige Serie"],"Next Show":[null,"Næste Serie"],"Jump to Season":[null,"Gå til Sæson"],"Specials":[null,"Specielle"],"Poster for":[null,""],"Stars":[null,"Stjerner"],"minutes":[null,"minutter"],"View other popular {genre} shows on trakt.tv.":[null,""],"View other popular {imdbgenre} shows on IMDB.":[null,""],"Allowed":[null,"Tilladt"],"Preferred":[null,"Foretrukken"],"Originally Airs":[null,"Sendt oprindelig"],"Show Status":[null,"Serie Status"],"Default EP Status":[null,"Standard Episodestatus"],"Location":[null,"Placering"],"Missing":[null,"Mangler"],"Scene Name":[null,"Scene navn"],"Required Words":[null,"Krævede ord"],"Ignored Words":[null,"Ignorerede ord"],"Size":[null,"Størrelse"],"Info Language":[null,"Info sprog"],"Subtitles SR Metadata":[null,""],"Season Folders":[null,"Sæson mapper"],"Paused":[null,"På pause"],"Air-by-Date":[null,"Udsendelsesdato"],"Sports":[null,"Sport"],"DVD Order":[null,"DVD sortering"],"Scene Numbering":[null,"Scene-nummerering"],"Select Filtered Episodes":[null,"Vælg filtrerede episoder"],"Clear All":[null,"Fjern alle"],"Change selected episodes to":[null,"Ændre valgte episoder til"],"Select Columns":[null,"Vælg Kolonner"],"Hide Episodes":[null,""],"Show Episodes":[null,"Serie episoder"],"NFO":[null,"NFO"],"TBN":[null,"TBN"],"Episode":[null,"Episode"],"Absolute":[null,"Absolutte"],"Scene":[null,"Scene"],"Scene Absolute":[null,"Scene absolutte"],"File Name":[null,"Filnavn"],"Airdate":[null,"Udsendelsesdato"],"Download":[null,"Hent"],"Change the value here if scene numbering differs from the indexer episode numbering":[null,"Ændre værdien her, hvis scene nummerering adskiller sig fra indekseringen episode nummerering"],"Change the value here if scene absolute numbering differs from the indexer absolute numbering":[null,"Ændre værdien her, hvis scene absolutte nummerering adskiller sig fra indekseringen absolutte nummerering"],"Manual Search":[null,"Manuel søgning"],"Do you want to mark this episode as failed?":[null,"Vil du markere denne episode, som mislykket?"],"The episode release name will be added to the failed history, preventing it to be downloaded again.":[null,"Episodens udgivelses navn vil blive tilføjet fejl historikken, for at forhindre at den hentes igen."],"Do you want to include the current episode quality in the search?":[null,"Vil du inkludere nuværende episodekvalitet i søgningen?"],"Choosing No will ignore any releases with the same episode quality as the one currently downloaded/snatched.":[null,"Hvis du vælger Nej, ignoreres alle udgivelser med samme episodekvalitet som den episoden som på nuværende tidspunkt er hentet ned/hentet."],"Download subtitle":[null,""],"Do you want to re-download the subtitle for this language?":[null,""],"It will overwrite your current subtitle":[null,""],"Format":[null,"Format"],"Advanced":[null,"Advancerede"],"Main Settings":[null,"Vigtigste indstillinger"],"Show Location":[null,"Serie placering"],"Preferred Quality":[null,"Foretrukne kvalitet"],"Default Episode Status":[null,"Standard Episodestatus"],"this will set the status for future episodes.":[null,""],"this only applies to episode filenames and the contents of metadata files.":[null,""],"search for subtitles":[null,"søg efter undertekster"],"Use SR Metdata":[null,""],"use SickRage metadata when searching for subtitle, this will override the autodiscovered metadata":[null,""],"pause this show (SickRage will not download episodes)":[null,"sæt denne serie på pause (SickRage ikke vil hente episoder)"],"Format Settings":[null,"Formatindstillinger"],"Air by date":[null,"Udsendelsesdato"],"check if the show is released as Show.03.02.2010 rather than Show.S02E03.":[null,"kontrollere at serien er udgivet som Serie.03.02.2010 snarere end Show.S02E03."],"in case of an air date conflict between regular and special episodes, the later will be ignored.":[null,""],"check if the show is Anime and episodes are released as Show.265 rather than Show.S02E03":[null,"kontrollere at serien er Anime og episoder er udgivet som Serie.265 snarere end Serie.S02E03"],"check if the show is a sporting or MMA event released as Show.03.02.2010 rather than Show.S02E03":[null,"kontrollere at serien er en sports eller MMA event udgivet som Serie.03.02.2010 snarere end Serie.S02E03"],"Season folders":[null,"Sæson mapper"],"group episodes by season folder (uncheck to store in a single folder)":[null,"gruppér episoder i sæson mappe (Fjern markeringen for at gemme i en enkelt mappe)"],"search by scene numbering (uncheck to search by indexer numbering)":[null,"søg efter scene nummerering (Fjern markeringen for at søge efter indekseringen nummerering)"],"use the DVD order instead of the air order":[null,"bruge DVD rækkefølge i stedet for udsendelses rækkefølgen"],"a \"Force Full Update\" is necessary, and if you have existing episodes you need to sort them manually.":[null,""],"comma-separated <i>e.g. \"word1,word2,word3</i>\"":[null,""],"search results with one or more words from this list will be ignored.":[null,""],"e.g. \"word1,word2,word3\"":[null,"fx \"ord1,ord2,ord3\""],"search results with no words from this list will be ignored.":[null,""],"Scene Exception":[null,"Scene undtagelser"],"this will affect episode search on NZB and torrent providers.":[null,""],"this list appends to the original show name.":[null,""],"WARNING logs":[null,"Advarselslogs"],"ERROR logs":[null,"FEJLlogs"],"There are no events to display.":[null,"Der er ingen begivenheder at vise."],"Limit":[null,""],"Layout":[null,""],"HistoryLayout":[null,""],"Compact":[null,"Kompakt"],"Detailed":[null,"Detaljeret"],"Time":[null,""],"Provider":[null,"Udbyder"],"Missing Provider":[null,"Mangler udbyder"],"missing provider":[null,"mangler udbyder"],"Directory":[null,"Mappe"],"Show Name (tvshow.nfo)":[null,"Serie navn (tvshow.nfo)"],"Indexer":[null,""],"Enter the folder containing the episode":[null,"Angiv den mappe, der indeholder episoden"],"Process Method to be used":[null,""],"Copy":[null,"Kopiér"],"Move":[null,"Flyt"],"Hard Link":[null,""],"Symbolic Link":[null,""],"Symbolic Link Reversed":[null,""],"Force already Post Processed Dir/Files":[null,""],"Mark Dir/Files as priority download":[null,""],"(Check it to replace the file even if it exists at higher quality)":[null,"(Marker for at erstatte filen, selv om den findes i højere kvalitet)"],"Delete files and folders":[null,"Slet filer og mapper"],"(Check it to delete files and folders like auto processing)":[null,""],"Don't use processing queue":[null,""],"(If checked this will return the result of the process here, but may be slow!)":[null,""],"Mark download as failed":[null,"Markér download som mislykkedes"],"Process":[null,""],"Download subtitles for this show?":[null,"Hent undertekster til denne serie?"],"use SickRage metadata when searching for subtitle, <br />this will override the autodiscovered metadata":[null,""],"Status for previously aired episodes":[null,"Status for tidligere udsendte episoder"],"Status for all future episodes":[null,"Status for alle fremtidige episoder"],"Group episodes by season folder?":[null,""],"Is this show an Anime?":[null,"Er denne serie en Anime?"],"Is this show scene numbered?":[null,"Er denne serie scene nummereret?"],"Save Defaults":[null,"Gem standardindstillinger"],"Use current values as the defaults":[null,"Brug aktuelle værdier som standarder"],"<p>Select your preferred fansub groups from the <b>Available Groups</b> and add them to the <b>Whitelist</b>. Add groups to the <b>Blacklist</b> to ignore them.</p>\n <p>The <b>Whitelist</b> is checked <i>before</i> the <b>Blacklist</b>.</p>\n <p>Groups are shown as <b>Name</b> | <b>Rating</b> | <b>Number of subbed episodes</b>.</p>\n <p>You may also add any fansub group not listed to either list manually.</p>\n <p>When doing this please note that you can only use groups listed on anidb for this anime.\n <br>If a group is not listed on anidb but subbed this anime, please correct anidb's data.</p>":[null,"<p>Vælg dine foretrukne fansub grupper fra <b>Tilgængelige grupper</b> og læg dem til i <b>Hvidlisten</b>. Læg til grupper i <b>Sortelisten</b> for at ignorere dem.</p>\n <p><b>Hvidelisten</b> tjekkes <i>før</i> <b>Sortelisten</b>.</p>\n <p>Grupper vises som <b>Navn</b> | <b>Karakter</b> | <b>Antal tekstede episoder</b>.</p>\n <p>Du kan også lægge til fansub-grupper som ikke ligger i nogen af listene manuelt.</p>\n <p>Når du gør dette, venligst bemærk at du kan kun bruge grupper listet på anidb for denne anime.\n <br>Hvis en gruppe ikke er listet på anidb, men har tekstet denne animen, venligst korriger anidb sin information.</p>"],"Whitelist":[null,""],"Available Groups":[null,""],"Add to Whitelist":[null,""],"Add to Blacklist":[null,""],"Blacklist":[null,""],"Custom Group":[null,""],"Allowed Quality:":[null,"Tilladt kvalitet:"],"Preferred Quality:":[null,"Foretrukken kvalitet:"],"Filter Show Name":[null,"Filtrer Serie navn"],"Root":[null,""],"All":[null,"Alle"],"Clear Filter(s)":[null,"Ryd filter"],"Poster":[null,"Plakat"],"Small Poster":[null,""],"Banner":[null,"Banner"],"Simple":[null,"Simpel"],"Next Episode":[null,"Næste Episode"],"Progress":[null,"Fremskridt"],"Direction":[null,"Retning"],"Ascending":[null,"Stigende"],"Descending":[null,"Faldende"],"Poster Size":[null,"Plakatstørrelse"],"Continuing":[null,"Fortsætter"],"Ended":[null,""],"Total":[null,"Total"],"Invalid date":[null,"Ugyldig dato"],"No Network":[null,"Intet netværk"],"Next Ep":[null,"Næste Ep"],"Prev Ep":[null,"Forrige Ep"],"Show":[null,"Show"],"Downloads":[null,"Downloads"],"Active":[null,"Aktiv"],"loading":[null,"indlæser"],"Loading...":[null,"Indlæser..."],"<p><b><u>Preferred</u></b> qualities will replace those in <b><u>allowed</u></b>, even if they are lower.</p>":[null,"<p><b><u>Foretrukne</u></b> kvaliteter vil erstatte dem, der er <b><u>tilladt</u></b>, selvom de er lavere.</p>"],"New":[null,"Ny"],"Set as Default":[null,"Sæt som standard"],"Remember me":[null,"Husk mig"],"Edit Selected":[null,"Rediger markeret"],"Subtitle":[null,"Undertekst"],"Default Ep Status":[null,""],"Update":[null,"Opdater"],"Rescan":[null,"Scan igen"],"Rename":[null,"Omdøb"],"Search Subtitle":[null,""],"Force Metadata Regen":[null,""],"Snatched (Allowed)":[null,""],"Jump to Show":[null,"Gå til Serie"],"Force Backlog":[null,""],"Manage episodes with status":[null,"Administrer episoder med status"],"Manage":[null,"Administrer"],"None of your episodes have status":[null,""],"Shows containing":[null,"Serier som indeholder"],"episodes":[null,"episoder"],"Set checked shows/episodes to":[null,"Sæt markerede serier/episoder til"],"Go":[null,"Kør"],"Select all":[null,"Markér alle"],"Clear all":[null,"Ryd alle"],"Release":[null,"Udgivelse"],"Backlog Search":[null,""],"Not in progress":[null,"Ikke i gang"],"In Progress":[null,"I gang"],"Daily Search":[null,"Daglig søgning"],"Find Propers Search":[null,""],"Propers search disabled":[null,""],"Subtitle Search":[null,"Undertekst søgning"],"Subtitle search disabled":[null,""],"Search Queue":[null,""],"pending items":[null,"ventende elementer"],"Daily":[null,"Daglig"],"Manual":[null,""],"Changing any settings marked with (<span class=\"separator\">*</span>) will force a refresh of the selected shows.":[null,"Ændring af indstillinger mærket med (<span class=\"separator\"> *</span>) vil tvinge en opdatering af de valgte serier."],"Selected Shows":[null,"Valgte Serier"],"Root Directories":[null,""],"Current":[null,"Aktuelle"],"Keep":[null,"Behold"],"Custom":[null,"Brugerdefineret"],"Group episodes by season folder (set to \"No\" to store in a single folder).":[null,""],"Pause these shows (SickRage will not download episodes).":[null,"Pause disse serier (SickRage vil ikke hente episoder)."],"This will set the status for future episodes.":[null,"Dette sætter statussen for fremtidige episoder."],"Search by scene numbering (set to \"No\" to search by indexer numbering).":[null,""],"Set if these shows are Anime and episodes are released as Show.265 rather than Show.S02E03":[null,"Aktiver hvis serien er Anime og episoderne er udgivet som Serie.265 i stedet for Serie.S02E03"],"Set if these shows are sporting or MMA events released as Show.03.02.2010 rather than Show.S02E03.":[null,"Aktiver hvis serien er en sports eller MMA event som er udgivet som Serie.03.02.2010 i stedet for Serie.S02E03."],"In case of an air date conflict between regular and special episodes, the later will be ignored.":[null,"I tilfælde af en datokonflikt mellem almindelige og specielle episoder, vil det sidste blive ignoreret."],"Set if these shows are released as Show.03.02.2010 rather than Show.S02E03.":[null,"Aktiver hvis serien er udgivet som Serie.03.02.2010 i stedet for Serie.S02E03."],"Search for subtitles.":[null,"Søg efter undertekster."],"All of your episodes have {subsLanguage} subtitles.":[null,"Alle dine episoder har {subsLanguage} undertekster."],"Manage episodes without":[null,"Administrer episoder uden"],"Episodes without {subsLanguage} subtitles.":[null,"Episoder uden {subsLanguage} undertekster."],"Episodes without {subtitleLanguage} (undefined) subtitles.":[null,"Episoder uden {subtitleLanguage} (undefined) undertekster."],"Download missed subtitles for selected episodes":[null,"Download manglende undertekster til valgte episoder"],"Performing Restart":[null,"Udfører genstart"],"Waiting for SickRage to shut down":[null,"Venter på at SickRage lukker ned"],"Waiting for SickRage to start again":[null,"Venter på at SickRage starter igen"],"Loading the default page":[null,""],"Error: The restart has timed out, perhaps something prevented SickRage from starting again?":[null,""],"Key":[null,"Nøgle"],"Missed":[null,"Mangler"],"Today":[null,"I dag"],"Soon":[null,"Snart"],"Later":[null,"Senere"],"Subscribe":[null,"Abonnér"],"Date":[null,"Dato"],"View Paused":[null,"Vis på pause"],"Hidden":[null,"Skjult"],"Shown":[null,"Vist"],"Calendar":[null,"Kalender"],"List":[null,"Liste"],"Ends":[null,"Slutter"],"Next Ep Name":[null,"Næste Ep navn"],"Run time":[null,""],"Indexers":[null,""],"No shows for this day":[null,"Ingen serier denne dag"],"Airs":[null,"Sendetid"],"Plot":[null,"Handling"],"Show Update":[null,"Opdater serie"],"Version Check":[null,"Versionskontrol"],"Proper Finder":[null,""],"Post Process":[null,"Efterbehandling"],"Subtitles Finder":[null,""],"Scheduler":[null,""],"Alive":[null,""],"Start Time":[null,"Starttidspunkt"],"Cycle Time":[null,""],"Next Run":[null,"Næste kørsel"],"Last Run":[null,"Sidste kørsel"],"Silent":[null,"Lydløs"],"True":[null,"Sandt"],"N/A":[null,"Ikke tilgængelig"],"Show id":[null,"Serie-Id"],"Show name":[null,"Serie navn"],"Priority":[null,"Prioritet"],"Added":[null,"Tilføjet"],"Queue type":[null,"Køtype"],"LOW":[null,"LAV"],"NORMAL":[null,"NORMAL"],"HIGH":[null,"HØJ"],"Disk Space":[null,"Diskplads"],"Free space":[null,"Ledig diskplads"],"TV Download Directory":[null,""],"Media Root Directories":[null,""],"Preview of the proposed name changes":[null,""],"All Seasons":[null,"Alle Sæsoner"],"select all":[null,""],"Rename Selected":[null,"Omdøb valgte"],"Cancel Rename":[null,"Annullere omdøbning"],"Old Location":[null,"Gammel Placering"],"New Location":[null,"Ny Placering"],"Trakt API did not return any results, please check your config.":[null,"Trakt API har ikke returneret nogen resultater, tjek venligst din konfiguration."],"votes":[null,"stemmer"],"Remove Show":[null,"Fjern Serie"],"Level":[null,""],"Filter":[null,""],"All non-absolute folder locations are relative to ":[null,"Alle ikke-absolutte mappeplaceringer er relativ til "],"Manual Post-Processing":[null,"Manuel efterbehandling"],"Episode Status Management":[null,"Episode Status Håndtering"],"Update PLEX":[null,"Opdatere PLEX"],"Update KODI":[null,"Opdatere KODI"],"Update Emby":[null,"Opdater Emby"],"Missed Subtitle Management":[null,"Manglende Undertekst Håndtering"],"Help & Info":[null,"Hjælp & Info"],"Backup & Restore":[null,"Backup & Gendan"],"Tools":[null,"Værktøjer"],"Support SickRage":[null,"Støt SickRage"],"View Errors":[null,"Se fejl"],"View Warnings":[null,"Se advarsler"],"View Log":[null,"Se Log"],"Check For Updates":[null,"Tjek For opdateringer"],"Restart":[null,"Genstart"],"Shutdown":[null,"Luk Ned"],"Logout":[null,"Log ud"],"Server Status":[null,"Serverstatus"],"View overview of snatched episodes":[null,""],"Episodes Downloaded":[null,"Episoder downloadet"],"Memory used":[null,"Hukommelse, der bruges"],"Load time":[null,""],"Branch":[null,"Gren"],"Now":[null,"Nu"]}}}} \ No newline at end of file +{"messages":{"domain":"messages","locale_data":{"messages":{"100":[null,"100"],"250":[null,"250"],"500":[null,"500"],"":{"domain":"messages","plural_forms":"nplurals=2; plural=(n != 1);","lang":"da_DK"},"Drama":[null,"Drama"],"Mystery":[null,"Mysterium"],"Science-Fiction":[null,"Science-Fiction"],"Crime":[null,"Krimi"],"Action":[null,"Handling"],"Comedy":[null,"Komedie"],"Thriller":[null,"Thriller"],"Animation":[null,"Animation"],"Family":[null,"Familie"],"Fantasy":[null,"Fantasi"],"Adventure":[null,"Eventyr"],"Horror":[null,"Gyser"],"Film-Noir":[null,"Film-Noir"],"Sci-Fi":[null,"Sci-Fi"],"Romance":[null,"Romantik"],"Sport":[null,"Sport"],"War":[null,"Krig"],"Biography":[null,"Biografi"],"History":[null,"Historik"],"Music":[null,"Musik"],"Western":[null,"Western"],"News":[null,"Nyheder"],"Sitcom":[null,"Sitcom"],"Reality-TV":[null,"Reality-TV"],"Documentary":[null,"Dokumentar"],"Game-Show":[null,"TV-Quiz"],"Musical":[null,"Musical"],"Talk-Show":[null,"Talk-Show"],"Started Download":[null,"Download startet"],"Download Finished":[null,"Download færdig"],"Subtitle Download Finished":[null,"Undertekst download færdig"],"SickRage Updated":[null,"SickRage opdateret"],"SickRage Updated To Commit#: ":[null,"SickRage opdateret til Commit #: "],"SickRage new login":[null,"Nyt SickRage login"],"New login from IP: {0}. http://geomaplookup.net/?ip={0}":[null,"Nyt login fra IP: {0}. http://geomaplookup.net/?IP={0}"],"Repeat":[null,"Genudsendelse"],"Repeat (Separated)":[null,"Genudsendelse (Adskilt)"],"Extend":[null,"Udvidet"],"Extend (Limited)":[null,"Udvidet (begrænset)"],"Extend (Limited, E-prefixed)":[null,"Udvidet (begrænset, E-præfiks)"],"Downloaded":[null,"Downloadet"],"Snatched":[null,"Hentet"],"Snatched (Proper)":[null,"Hentet(ordentlig)"],"Failed":[null,"Mislykket"],"Snatched (Best)":[null,"Hentet (bedst)"],"Archived":[null,"Arkiveret"],"Unknown":[null,"Ukendt"],"Unaired":[null,"Ikke udsendt"],"Skipped":[null,"Sprunget over"],"Wanted":[null,"Ønsket"],"Ignored":[null,"Ignoreret"],"Subtitled":[null,"Undertekstet"],"For best results please set the Download Station alias as":[null,"For de bedste resultater skal du indstille Download Station alias som"],"You can check this setting in the Synology DSM":[null,"Du kan kontrollere denne indstilling i Synology DSM"],"Control Panel":[null,"Kontrolpanel"],"Application Portal":[null,"Applikations Portal"],"Make sure you allow DSM to be embedded with iFrames too in":[null,"Vær sikker du tilllader at DSM integreres med iFrames også i"],"DSM Settings":[null,"DSM indstillinger"],"Security":[null,"Sikkerhed"],"<No Filter>":[null,"Ingen filter"],"Daily Searcher":[null,"Daglig Søgning"],"Backlog":[null,"Historik"],"Show Updater":[null,"Opdater Serie"],"Check Version":[null,"Tjek Version"],"Show Queue":[null,"Serie-kø"],"Search Queue (All)":[null,"Søgnings kø (Alle)"],"Search Queue (Daily Searcher)":[null,"Søgnings kø (Daglig søgning)"],"Search Queue (Backlog)":[null,"Søgnings kø (Historik)"],"Search Queue (Manual)":[null,"Søgnings kø (Manuel)"],"Search Queue (Retry/Failed)":[null,"Søgnings kø (Prøv igen/Mislykkedes)"],"Search Queue (RSS)":[null,"Søgnings kø (RSS)"],"Find Propers":[null,"Find forbedrede udgivelser"],"Postprocessor":[null,"Efterbehandling"],"Find Subtitles":[null,"Find undertekster"],"Trakt Checker":[null,"Trakt Checker"],"Event":[null,"Begivenhed"],"Error":[null,"Fejl"],"Tornado":[null,"Tornado"],"Thread":[null,"Tråd"],"Main":[null,"Hoved"],"Loading":[null,""],"New update found for SickRage, starting auto-updater":[null,"Ny opdatering til SickRage fundet, starter auto-opdatering"],"Update was successful":[null,"Opdateringen var successfuld"],"Update failed!":[null,"Opdatering fejlede!"],"Backup":[null,"Sikkerhedskopi"],"Config backup in progress...":[null,"Config backup i gang..."],"Config backup successful, updating...":[null,"Config backup lykkedes, opdaterer..."],"Config backup failed, aborting update":[null,"Backup af konfigurationer mislykkedes. Opdatering afbrydes"],"No update needed":[null,"Opdatering ikke nødvendig"],"Mako Error":[null,"Mako fejl"],"Oops":[null,"Ups"],"Wrong API key used":[null,"Forkert API-nøgle brugt"],"Login":[null,"Login"],"API Key not generated":[null,"API-nøgle ikke genereret"],"API Builder":[null,"API Builder"],"Schedule":[null,"Tidsplan"],"Test 1":[null,"Test 1"],"This is test number 1":[null,"Dette er test nummer 1"],"Test 2":[null,"Test 2"],"This is test number 2":[null,"Dette er test nummer 2"],"You're using the {branch} branch. Please use 'master' unless specifically asked":[null,"Du bruger {branch}-grenen. Brug venligst 'master' medmindre du specifikt bliver spurgt om det"],"Invalid show parameters":[null,"Ugyldig serie parametre"],"Invalid parameters":[null,"Ugyldige parametre"],"Episode couldn't be retrieved":[null,"Episode kunne ikke hentes"],"Home":[null,"Hjem"],"Show List":[null,"Serie Liste"],"Error: Unsupported Request. Send jsonp request with 'callback' variable in the query string.":[null,"Fejl: Ikke-understøttet anmodning. Send jsonp anmodning med \"callback\" variabel i forespørgselstrengen."],"Success. Connected and authenticated":[null,"Succes. Forbundet og godkendt"],"Authentication failed. SABnzbd expects":[null,"Godkendelse mislykkedes. SABnzbd forventer"],"as authentication method":[null,"som godkendelsesmetode"],"Unable to connect to host":[null,"Kan ikke forbinde til serveren"],"SMS sent successfully":[null,"SMS sendt succesfuldt"],"Problem sending SMS: {message}":[null,"Problemer med at sende SMS: {message}"],"Telegram notification succeeded. Check your Telegram clients to make sure it worked":[null,"Telegram notifikation lykkedes. Tjek dine Telegram klienter for at sikre sig det virkede"],"Error sending Telegram notification: {message}":[null,"Fejl ved afsendelse af Telegram notifikation: {message}"],"join notification succeeded. Check your join clients to make sure it worked":[null,""],"Error sending join notification: {message}":[null,"Fejl ved afsendelse af join notifikation: {message}"]," with password":[null," med adgangskode"],"Registered and Tested growl successfully {growl_host}":[null,"Registreret og testet growl med succes {growl_host}"],"Registration and Testing of growl failed {growl_host}":[null,"Registrering og test af growl mislykkedes {growl_host}"],"Test prowl notice sent successfully":[null,"Test prowl meddelelse sendt succesfuldt"],"Test prowl notice failed":[null,"Test prowl meddelelse mislykkedes"],"Boxcar2 notification succeeded. Check your Boxcar2 clients to make sure it worked":[null,"Boxcar2 notifikation lykkedes. Kontrollere dine Boxcar2 klienter for at sikre sig det virkede"],"Error sending Boxcar2 notification":[null,"Fejl ved afsendelse af Boxcar2 notifikation"],"Pushover notification succeeded. Check your Pushover clients to make sure it worked":[null,"Pushover notifikation lykkedes. Tjek din Pushover klienter for at sikre sig det virkede"],"Error sending Pushover notification":[null,"Fejl ved afsendelse af Pushover notifikation"],"Key verification successful":[null,"Nøgle verifikation vellykket"],"Unable to verify key":[null,"Kan ikke verificerer nøglen"],"Tweet successful, check your twitter to make sure it worked":[null,"Tweet vellykket, tjek din twitter for at sikre sig det virkede"],"Error sending tweet":[null,"Fejl ved afsendelse af tweet"],"Please enter a valid account sid":[null,"Angiv en gyldig sid konto"],"Please enter a valid auth token":[null,"Angiv en gyldig auth token"],"Please enter a valid phone sid":[null,"Angiv et gyldigt telefon nummer"],"Please format the phone number as \"+1-###-###-####\"":[null,"Venligst skriv telefonnummer som \"+1-###-###-####\""],"Authorization successful and number ownership verified":[null,"Autorisation lykkedes og ejerskab af nummer bekræftet"],"Error sending sms":[null,"Fejl ved afsendelse af sms"],"Slack message successful":[null,""],"Slack message failed":[null,""],"Discord message successful":[null,""],"Discord message failed":[null,""],"Test KODI notice sent successfully to {kodi_host}":[null,"Test KODI meddelelse sendt til {kodi_host}"],"Test KODI notice failed to {kodi_host}":[null,"Test KODI meddelelse fejlede ved {kodi_host}"],"Successful test notice sent to Plex Home Theater ... {plex_clients}":[null,"Vellykket test meddelelse sendt til Plex Home Theater... {plex_clients}"],"Test failed for Plex Home Theater ... {plex_clients}":[null,"Test mislykkedes for Plex Home Theater... {plex_clients}"],"Tested Plex Home Theater(s)":[null,"Testede Plex Home Theater(s)"],"Successful test of Plex Media Server(s) ... {plex_servers}":[null,"Succesfuld test af Plex Media Server(s) ... {plex_servers}"],"Test failed, No Plex Media Server host specified":[null,"Test mislykkedes, ingen Plex Media Server vært angivet"],"Test failed for Plex Media Server(s) ... {plex_servers}":[null,"Test mislykkedes for Plex Media serverne... {plex_servers}"],"Tested Plex Media Server host(s)":[null,"Testede Plex medieserver vært(er)"],"Tried sending desktop notification via libnotify":[null,"Prøvede at sende desktop notifikation via libnotify"],"Test notice sent successfully to {emby_host}":[null,"Test besked sendt uden fejl til {emby_host}"],"Test notice failed to {emby_host}":[null,"Test besked fejlede til {emby_host}"],"Successfully started the scan update":[null,"Startede scan opdatering succesfuldt"],"Test failed to start the scan update":[null,"Test mislykkedes at starte scanningen opdatering"],"Test notice sent successfully to {nmj2_host}":[null,"Test meddelelse sendt succesfuldt til {nmj2_host}"],"Test notice failed to {nmj2_host}":[null,"Test meddelelse fejlede ved {nmj2_host}"],"Trakt Authorized":[null,"Trakt godkendt"],"Trakt Not Authorized!":[null,"Trakt ikke godkendt!"],"Test email sent successfully! Check inbox.":[null,"Test e-mail sendt med succes! Tjek indbakke."],"ERROR: {last_error}":[null,"FEJL: {last_error}"],"Test NMA notice sent successfully":[null,"Test NMA meddelelse sendt succesfuldt"],"Test NMA notice failed":[null,"Test NMA meddelelse mislykkedes"],"Pushalot notification succeeded. Check your Pushalot clients to make sure it worked":[null,"Pushalot notifikation lykkedes. Tjek dine Pushalot klienter for at sikre sig det virkede"],"Error sending Pushalot notification":[null,"Fejl ved afsendelse af Pushalot notifikation"],"Pushbullet notification succeeded. Check your device to make sure it worked":[null,"Pushbullet notifikation lykkedes. Kontrollere din enhed for at sikre sig det virkede"],"Error sending Pushbullet notification":[null,"Fejl ved afsendelse af Pushbullet notifikation"],"Status":[null,"Status"],"Restarting SickRage":[null,"Genstarter SickRage"],"Update Failed":[null,"Opdatering mislykkedes"],"Update wasn't successful, not restarting. Check your log for more information.":[null,"Opdatering mislykkedes, genstarter ikke. Check log for flere informationer."],"Checking out branch":[null,"Tjekker branch ud"],"Already on branch":[null,"Er allerede på denne branch"],"Invalid show ID: {show}":[null,"Ugyldigt serie ID: {show}"],"Show not in show list":[null,"Serie er ikke i serielisten"],"Edit":[null,"Rediger"],"This show is in the process of being downloaded - the info below is incomplete.":[null,"Denne serie er ved at blive hentet - informationerne nedenunder er ikke komplette."],"The information on this page is in the process of being updated.":[null,"Oplysningerne på denne side er ved at blive opdateret."],"The episodes below are currently being refreshed from disk":[null,"Episoderne nedenfor opdateres i øjeblikket fra disken"],"Currently downloading subtitles for this show":[null,"Downloader i øjeblikket undertekster til dette show"],"This show is queued to be refreshed.":[null,"Denne er serie er i kø til at blive opdateret."],"This show is queued and awaiting an update.":[null,"Dette show er i kø og venter på en opdatering."],"This show is queued and awaiting subtitles download.":[null,""],"Resume":[null,"Fortsæt"],"Pause":[null,"Pause"],"Remove":[null,"Fjern"],"Re-scan files":[null,"Gen-scan filer"],"Force Full Update":[null,"Tving fuld opdatering"],"Update show in KODI":[null,"Opdater serie i KODI"],"Update show in Emby":[null,"Opdater show i Emby"],"Hide specials":[null,"Skjul Specials"],"Show specials":[null,"Vis Specials"],"Preview Rename":[null,"Forhåndsvis omdøb"],"Download Subtitles":[null,"Download undertekster"],"No scene exceptions":[null,"Ingen scene undtagelser"],"Invalid show ID":[null,"Ugyldigt serie ID"],"Unable to find the specified show":[null,"Kan ikke finde det angivne show"],"Unable to retreive Fansub Groups from AniDB.":[null,"Ikke i stand til at hente Fansub grupper fra AniDB."],"Edit Show":[null,"Redigere Serie"],"Unable to refresh this show: {error}":[null,"Ikke i stand til at genopfriske denne serie: {error}"],"New location <tt>{location}</tt> does not exist":[null,"Ny placering <tt>{location}</tt> findes ikke"],"Unable to update show: {error}":[null,"Ikke i stand til at opdatere serien: {error}"],"Unable to force an update on scene exceptions of the show.":[null,"Ikke i stand til at gennemtvinge en opdatering af scene undtagelser på serien."],"Unable to force an update on scene numbering of the show.":[null,"Ikke i stand til at gennemtvinge en opdatering af scene nummerering på serien."],"{num_errors:d} error{plural} while saving changes:":[null,"{num_errors:d} fejl under gem af ændringer:"],"{show_name} has been {paused_resumed}":[null,"{show_name} blev {paused_resumed}"],"resumed":[null,"genoptaget"],"paused":[null,"på pause"],"{show_name} has been {deleted_trashed} {was_deleted}":[null,"{show_name} blev {deleted_trashed} {was_deleted}"],"deleted":[null,"slettet"],"trashed":[null,"slettet"],"(media untouched)":[null,"(filer urørt)"],"(with all related media)":[null,"(med alle tilhørende filer)"],"Unable to refresh this show.":[null,"Ikke i stand til at genopfriske denne serie."],"Unable to update this show.":[null,"Ikke i stand til at opdatere denne serie."],"Library update command sent to KODI host(s)): {kodi_hosts}":[null,"Katalog opdaterings kommando sent til KODI host(s): {kodi_hosts}"],"Unable to contact one or more KODI host(s)): {kodi_hosts}":[null,"Ude af stand til at kontakte en eller flere KODI hosts: {kodi_hosts}"],"Library update command sent to Plex Media Server host: {plex_server}":[null,"Katalog opdateringskommando sendt til Plex Media Server host: {plex_server}"],"Unable to contact Plex Media Server host: {plex_server}":[null,"Ude af stand til at kontakte Plex Media Server host: {plex_server}"],"Library update command sent to Emby host: {emby_host}":[null,"Katalog opdateringskommando sendt til Emby host: {emby_host}"],"Unable to contact Emby host: {emby_host}":[null,"Ikke i stand til at kontakte Emby vært: {emby_host}"],"You must specify a show and at least one episode":[null,"Du skal angive et show og mindst ét episode"],"Invalid status":[null,"Ugyldig status"],"Backlog was automatically started for the following seasons of <b>{show_name}</b>":[null,"Automatisk opsamling af backlog påbegyndt for følgende sæsoner af <b>{show_name}</b>"],"Season":[null,"Sæson"],"Backlog started":[null,"Opsamling af efterslæb påbegyndt"],"Retrying Search was automatically started for the following season of <b>{show_name}</b>":[null,"Gentag søgning var startet automatisk for følgende sæson af <b>{show_name}</b>"],"Retry Search started":[null,"Gentag Søgning startede"],"You must specify a show":[null,"Du skal angive et show"],"Can't rename episodes when the show dir is missing.":[null,"Kan ikke omdøbe episoder, når serie mappe mangler."],"New subtitles downloaded: {new_subtitle_languages}":[null,"Nye underskrifter hentet: {new_subtitle_languages}"],"No subtitles downloaded":[null,"Ingen underskrifter hentet"],"IRC":[null,"IRC"],"Could not load news from the repo. [Click here for news.md])({news_url})":[null,"Kunne ikke indlæse nyheder fra repo. [Klik her for news.md])({news_url})"],"The was a problem connecting to github, please refresh and try again":[null,"Det var problemer med forbindelsen til github. Genopfrisk og prøv igen"],"Could not load changes from the repo. [Click here for CHANGES.md]({changes_url})":[null,"Ændringer kunne ikke indlæses fra repo. [Klik her for CHANGES.md] ({changes_url})"],"Changelog":[null,"Ændringslog"],"Post Processing":[null,"Efterbehandling"],"Add Shows":[null,"Tilføj Serier"],"No folders selected.":[null,"Ingen foldere valgt."],"New Show":[null,"Ny Serie"],"Trending Shows":[null,"Hotte serier"],"Popular Shows":[null,"Populære Serier"],"Most Anticipated Shows":[null,"Mest ventede serier"],"Most Collected Shows":[null,""],"Most Watched Shows":[null,""],"Most Played Shows":[null,""],"Recommended Shows":[null,""],"New Shows":[null,"Nye serier"],"Season Premieres":[null,"Sæson Præmiere"],"Existing Show":[null,"Eksisterende Serier"],"No root directories setup, please go back and add one.":[null,"Ingen rodmapper er sat op. Gå venligst tilbage og tilføj én."],"Show added":[null,"Serier tilføjet"],"Adding the specified show {show_name}":[null,"Tilføj den angivne serie {show_name}"],"Missing params, no Indexer ID or folder: {show_to_add} and {root_dir}/{show_path}":[null,"Manglende parametre, intet Indexer ID eller mappe: {show_to_add} og {root_dir}/{show_path}"],"Unknown error. Unable to add show due to problem with show selection.":[null,"Ukendt fejl. Serien kunne ikke tilføjes på grund af et problem med udvælgelse af serien."],"Unable to add show":[null,"Ikke i stand til at tilføje serie"],"Folder {show_dir} exists already":[null,"Folder {show_dir} findes allerede"],"Unable to create the folder {show_dir}, can't add the show":[null,"Ikke i stand til at oprette folderen {show_dir}, kan ikke tilføje serien"],"Adding the specified show into {show_dir}":[null,"Tilføjer den angivne serie i {show_dir}"],"Shows Added":[null,"Serier Tilføjet"],"Automatically added {num_shows} from their existing metadata files":[null,"Automatisk tilføjet {num_shows} fra deres eksisterende metadatafiler"],"Mass Update":[null,"Masseopdatering"],"Episode Overview":[null,"Episode oversigt"],"Missing Subtitles":[null,"Mangler undertekster"],"Backlog Overview":[null,"Backlog oversigt"],"Mass Edit":[null,"Masse Rediger"],"Unable to update show: {excption_format}":[null,"Kunne ikke opdatere serie: {excption_format}"],"Unable to refresh show {show_name}: {excption_format}":[null,"Kunne ikke genopfriske serie{show_name}: {excption_format}"],"Errors encountered":[null,"Stødt på fejl"],"Updates":[null,"Opdateringer"],"Refreshes":[null,"Opdaterer"],"Renames":[null,"Omdøber"],"Subtitles":[null,"Undertekster"],"The following actions were queued":[null,"Følgende aktioner blev sat i kø"],"Failed Downloads":[null,"Mislykkede overførsler"],"Manage Searches":[null,"Administrer søgninger"],"Backlog search started":[null,"Backlog søgning startet"],"Daily search started":[null,"Daglige søgning startet"],"Find propers search started":[null,"Finde \"ordentlige\" søgning startet"],"Subtitle search started":[null,"Undertekster søgning startet"],"Remove Selected":[null,"Fjern valgte"],"Clear History":[null,"Ryd Historik"],"Trim History":[null,"Trim Historie"],"Selected history entries removed":[null,""],"History cleared":[null,"Historik ryddet"],"Removed history entries older than 30 days":[null,"Oversigtsposter ældre end 30 dage fjernet"],"General":[null,"Generelt"],"Backup/Restore":[null,"Backup/gendannelse"],"Search Settings":[null,"Søgeindstillinger"],"Search Providers":[null,"Søgemaskiner"],"Subtitles Settings":[null,"Undertekstindstillinger"],"Notifications":[null,"Notifikationer"],"Anime":[null,"Anime"],"SickRage Configuration":[null,"Konfiguration af SickRage"],"Config - Shares":[null,""],"Windows Shares Configuration":[null,""],"Saved Shares":[null,""],"Your Windows share settings have been saved":[null,""],"Config - General":[null,"Konfigurer - General"],"General Configuration":[null,"General Konfiguration"],"Saved Defaults":[null,"Gemte standardindstillinger"],"Your \"add show\" defaults have been set to your current selections.":[null,"Din \"Tilføj show\" standardindstillinger er indstillet til dit aktuelle valg."],"Unable to create directory {directory}, log directory not changed.":[null,"Ikke i stand til at oprette kataloget {directory}, log katalog ikke ændret."],"Unable to create directory {directory}, https cert directory not changed.":[null,"Kan ikke oprette mappe {directory}, https cert mappe ikke ændret."],"Unable to create directory {directory}, https key directory not changed.":[null,"Kan ikke oprette mappe {directory}, https cert mappe ikke ændret."],"Error(s) Saving Configuration":[null,"Fejl ved gemning af konfiguration"],"Configuration Saved":[null,"Konfiguration Gemt"],"Config - Backup/Restore":[null,"Konfigurer - Backup/gendannelse"],"Config - Episode Search":[null,"Konfigurer - Episode søgning"],"Config - Post Processing":[null,"Konfigurer - efterbehandling"],"Unpacking Not Supported, disabling unpack setting":[null,"Udpakning ikke understøttet, deaktiverer udpak indstilling"],"You tried saving an invalid normal naming config, not saving your naming settings":[null,""],"You tried saving an invalid anime naming config, not saving your naming settings":[null,"Du prøvede at gemme en ugyldig anime navngivnings config, gemmer ikke indstillingerne for navngivning"],"Config - Providers":[null,"Konfigurer - udbydere"],"No Provider Name specified":[null,"Ingen udbydernavn angivet"],"No Provider Url specified":[null,"Ingen udbyder webadresse angivet"],"No Provider Api key specified":[null,"Ingen udbyder Api-nøgle angivet"],"Config - Notifications":[null,"Konfigurer - meddelelser"],"Config - Subtitles":[null,"Konfigurer - undertekster"],"Config - Anime":[null,"Konfigurer - Anime"],"Clear Errors":[null,"Ret fejl"],"Clear Warnings":[null,"Ryd advarsler"],"Submit Errors":[null,"Indsend fejl"],"Logs & Errors":[null,"Logs & fejl"],"Log File":[null,"Logfiler"],"Logs":[null,"Logfiler"],"This is a test notification from SickRage":[null,"Dette er en testbesked fra SickRage"],"Choose Directory":[null,""],"Select log file folder location":[null,""],"Select CSS file":[null,""],"Select backup folder to save to":[null,""],"Select backup files to restore":[null,""],"Please fill out the necessary fields above.":[null,""],"<b>Step 1:</b> Confirm Authorization":[null,""],"Check blacklist name; the value needs to be a trakt slug":[null,""],"You must provide a recipient email address!":[null,""],"You didn't supply a Pushbullet api key":[null,""],"Don't forget to save your new pushbullet settings.":[null,""],"Select TV Download Directory":[null,""],"Select Unpack Directory":[null,""],"This pattern is invalid.":[null,"Dette mønster er ugyldig."],"This pattern would be invalid without the folders, using it will force \"Season Folders\" on for all shows.":[null,""],"This pattern is valid.":[null,"Dette mønster er gyldig."],"Select .nzb black hole/watch location":[null,""],"Select .torrent black hole/watch location":[null,""],"Select .torrent download location":[null,""],"Minimum seeding time is":[null,""],"URL to your uTorrent client (e.g. http://localhost:8000)":[null,""],"Stop seeding when inactive for":[null,""],"URL to your Transmission client (e.g. http://localhost:9091)":[null,""],"URL to your Deluge client (e.g. http://localhost:8112)":[null,""],"IP or Hostname of your Deluge Daemon (e.g. scgi://localhost:58846)":[null,""],"URL to your Synology DS client (e.g. http://localhost:5000)":[null,""],"URL to your rTorrent client (e.g. scgi://localhost:5000 <br> or https://localhost/rutorrent/plugins/httprpc/action.php)":[null,""],"URL to your qBittorrent client (e.g. http://localhost:8080)":[null,""],"URL to your MLDonkey (e.g. http://localhost:4080)":[null,""],"URL to your putio client (e.g. http://localhost:8080)":[null,""],"<a herf=\"https://app.put.io/oauth/apps/new\" target=\"_blank\"> Create a new OAuth app for put.io</a>":[null,""],"Put.io Parent Folder":[null,""],"Put.io OAuth Token":[null,""],"Show Episodes":[null,"Serie episoder"],"Hide Episodes":[null,""],"Select Show Location":[null,""],"Select Unprocessed Episode Folder":[null,""],"DELETED":[null,""],"Resume updating the log on this page.":[null,""],"Pause updating the log on this page.":[null,""],"searching {searchingFor}...":[null,""],"search timed out, try again or try another indexer":[null,""],"loading folders...":[null,""],"Loading...":[null,"Indlæser..."],"You have reached this page by accident, please check the url.":[null,"Du har nået denne side ved et uheld, kontroller venligst url."],"A mako error has occured.<br>\n If this happened during an update a simple page refresh may be the solution.<br>\n Mako errors that happen during updates may be a one time error if there were significant ui changes.":[null,""],"Show/Hide Error":[null,"Vis//Gem Fejl"],"Add New Show":[null,"Tilføj ny serie"],"For shows that you haven't downloaded yet, this option finds a show on theTVDB.com, creates a directory for it's episodes, and adds it to SickRage.":[null,"Til serier som du endnu ikke har hentet endnu. Denne indstilling finder en serie på theTVDB.com, opretter en mappe til dens episoder, og tilføjer det til SickRage."],"Add From Trakt Lists":[null,"Tilføj ny serie fra Trakt"],"For shows that you haven't downloaded yet, this option lets you choose from a show from one of the Trakt lists to add to SickRage.":[null,"Til serier som du endnu ikke har hentet endnu. Denne indstilling lader dig vælge en serie fra en Trakt liste, opretter en mappe til dens episoder, og tilføjer det til SickRage."],"Add From IMDB's Popular Shows":[null,"Tilføj ny serie fra IMDB's populære serier"],"View IMDB's list of the most popular shows. This feature uses IMDB's MOVIEMeter algorithm to identify popular TV Series.":[null,"Se IMDBS liste over de mest populære serier. Denne funktion bruger IMDB'S MOVIEMeter algoritme til at identificere populære serier."],"Add Existing Shows":[null,"Tilføj eksisterende serie"],"Use this option to add shows that already have a folder created on your hard drive. SickRage will scan your existing metadata/episodes and add the show accordingly.":[null,"Brug denne indstilling til at tilføje serier, der allerede har en mappe oprettet på din harddisk. SickRage vil scanne dine eksisterende metadata/episoder og tilføje serien i overensstemmelse hermed."],"Add Existing Show":[null,"Tilføj eksisterende serie"],"Manage Directories":[null,"Administrer mapper"],"Customize Options":[null,"Tilpas indstillinger"],"SickRage can add existing shows, using the current options, by using locally stored NFO/XML metadata to eliminate user interaction. If you would rather have SickRage prompt you to customize each show, then use the checkbox below.":[null,""],"Prompt me to set settings for each show":[null,"Bed mig om at angive indstillinger for hver serie"],"Displaying folders within these directories which aren't already added to SickRage":[null,"Viser mapper inden for disse mapper, som ikke er allerede føjet til SickRage"],"Submit":[null,"Bekræft"],"Find a show on theTVDB":[null,"Find en serie på theTVDB"],"Show retrieved from existing metadata":[null,"Serie hentet fra eksisterende metadata"],"All Indexers":[null,"Alle indeksører"],"Search":[null,"Søg"],"This will only affect the language of the retrieved metadata file contents and episode filenames.":[null,"Dette vil kun påvirke sproget i hentede metadata's filindhold og episode filnavne."],"This <b>DOES NOT</b> allow SickRage to download non-english TV episodes!":[null,"Dette tillader<b>IKKE</b> SickRage at hente ikke-engelske TV episoder!"],"Pick the parent folder":[null,"Vælg den overordnede mappe"],"Pre-chosen Destination Folder":[null,"Forhånds valgte destinations mappe"],"Customize options":[null,"Tilpas indstillinger"],"Add Show":[null,"Tilføj Serier"],"Skip Show":[null,"Spring denne serie over"],"Sort By":[null,"Sorter efter"],"Name":[null,"Navn"],"Original":[null,"Original"],"Votes":[null,"Stemmer"],"Rating":[null,"Bedømmelse"],"Rating > Votes":[null,"Bedømmelse > stemmer"],"Sort Order":[null,"Sorteringsrækkefølge"],"Asc":[null,"Asc"],"Desc":[null,"Desc"],"Fetching of IMDB Data failed. Are you online?":[null,"Kunne ikke hente data fra IMDB. Er du online?"],"Exception":[null,"Undtagelse"],"Select Trakt List":[null,"Vælg Trakt liste"],"Most Anticipated":[null,"Mest ventede"],"Trending":[null,"Aktuelt"],"Popular":[null,"Populære"],"Most Watched":[null,"Mest Sete"],"Most Played":[null,"Mest afspillede"],"Most Collected":[null,"Flest indsamlet"],"Recommended":[null,"Anbefalet"],"Toggle navigation":[null,"Skift navigation"],"Profile":[null,"Profil"],"JSONP":[null,"JSONP"],"Back to SickRage":[null,"Tilbage til SickRage"],"Parameters":[null,"Parametre"],"Required":[null,"Påkrævet"],"Description":[null,"Beskrivelse"],"Type":[null,"Type"],"Default value":[null,"Standardværdi"],"Allowed values":[null,"Tilladte værdier"],"Playground":[null,"Legeplads"],"Clear":[null,"Ryd"],"Yes":[null,"Ja"],"No":[null,"Nej"],"season":[null,"sæson"],"episode":[null,"episode"],"Python Version":[null,"Python Version"],"SSL Version":[null,"SSL Version"],"OS":[null,"OS"],"Locale":[null,"Lokalitet"],"User":[null,"Bruger"],"Program Folder":[null,"Programmappe"],"Config File":[null,"Konfigurationsfil"],"Database File":[null,"Databasefil"],"Cache Folder":[null,"Cache mappe"],"Log Folder":[null,"Logmappe"],"Arguments":[null,"Argumenter"],"Web Root":[null,"Webrod"],"Website":[null,"Websted"],"Wiki":[null,"Wiki"],"Source":[null,"Kilde"],"IRC Chat":[null,"IRC Chat"],"AnimeDB Settings":[null,"AnimeDB indstillinger"],"Look & Feel":[null,"Udseende"],"AniDB is non-profit database of anime information that is freely open to the public":[null,"AniDB er non-profit database af anime, der er frit tilgængelige for offentligheden"],"Enable":[null,"Aktiver"],"should SickRage use data from AniDB?":[null,"skal SickRage bruge data fra AniDB?"],"AniDB Username":[null,"AniDB brugernavn"],"username of your AniDB account":[null,"brugernavnet på din AniDB konto"],"AniDB Password":[null,"AniDB adgangskode"],"password of your AniDB account":[null,"adgangskode til din AniDB konto"],"AniDB MyList":[null,"AniDB MyList"],"do you want to add the PostProcessed episodes to the MyList?":[null,"vil du tilføje de efterbehandlede episoder til MyList?"],"Look and Feel":[null,"Udseende"],"How should the anime functions show and behave.":[null,"Hvordan bør anime funktionerne vise og opføre sig."],"Split show lists":[null,"Opdel serie lister"],"separate anime and normal shows in groups":[null,"adskil anime og normale show i grupper"],"Split in tabs":[null,""],"use tabs for when splitting show lists":[null,""],"Restore":[null,"Gendan"],"Backup your main database file and config.":[null,"Sikkerhedskopier din databasefil og konfiguration."],"Select the folder you wish to save your backup file to":[null,"Vælg den mappe du vil gemme sikkerhedskopien til"],"Restore your main database file and config.":[null,"Gendan din databasefil og konfiguration."],"Select the backup file you wish to restore":[null,"Vælg den sikkerhedskopi, du ønsker at gendanne"],"Misc":[null,"Diverse"],"Interface":[null,"Brugerflade"],"Advanced Settings":[null,"Avancerede Indstillinger"],"Startup options. Indexer options. Log and show file locations.":[null,"Startindstillinger. Indekserings-indstillinger. Log og vis filplaceringer."],"Some options may require a manual restart to take effect.":[null,"Nogle indstillinger kan kræve en manuel genstart, før de vil træde i kraft."],"Default Indexer Language":[null,"Indekserings standardsprog"],"for adding shows and metadata providers":[null,"for at tilføje serier og metadata udbydere"],"Launch browser":[null,"Åbn browser"],"open the SickRage home page on startup":[null,"Åbn siden SickRage ved start"],"Initial page":[null,"Startside"],"Shows":[null,"Serier"],"when launching SickRage interface":[null,"når SickRage interface startes"],"Choose hour to update shows":[null,"Vælg time at opdatere shows"],"with information such as next air dates, show ended, etc. Use 15 for 3pm, 4 for 4am etc.":[null,"med oplysninger som næste udsendelsesdatoer, serie endte osv. Brug 15 fremfor 3 pm, 4 fremfor 4 am osv."],"note":[null,"bemærk"],"minutes are randomized each time SickRage is started":[null,"minut-tal generes tilfældigt hver gang SickRage startes"],"Send to trash for actions":[null,"Send til papirkurven handlinger"],"when using show \"Remove\" and delete files":[null,"når du bruger show \"Fjern\" og slette filer"],"on scheduled deletes of the oldest log files":[null,"på planlagte sletter de ældste log filer"],"selected actions use trash (recycle bin) instead of the default permanent delete":[null,"markede handlingene bruger papirkurven i stedet for standard permanent sletning"],"Log file folder location":[null,"Log fil mappe placering"],"Number of Log files saved":[null,"Antal logfiler gemt"],"number of log files saved when rotating logs (default: 5) (REQUIRES RESTART)":[null,"antallet af logfiler gemmes, når logs roteres(standard: 5) (KRÆVER GENSTART)"],"Size of Log files saved":[null,"Størrelsen af logfiler gemt"],"maximum size in MB of the log file (default: 1MB) (REQUIRES RESTART)":[null,"maksimale størrelse i MB af logfilen (standard: 1MB) (KRÆVER GENSTART)"],"Use initial indexer set to":[null,"Brug første indekser indstillet til"],"as the default selection when adding new shows":[null,"som standard valg når du tilføjer nye serier"],"Timeout show indexer at":[null,"Afbryd serie indekseringen ved"],"seconds of inactivity when finding new shows (default:20)":[null,"sekunder af inaktivitet når der findes nye serier (standard: 20)"],"Show root directories":[null,"Serie rod mapper"],"where the files of shows are located":[null,"hvor filer af shows er placeret"],"Save Changes":[null,"Gem Ændringer"],"Options for software updates.":[null,"Indstillingerne for software opdateringer."],"Check software updates":[null,"Check software opdateringer"],"and display notifications when updates are available. Checks are run on startup and at the frequency set below*":[null,"og vis meddelelser, når opdateringer er tilgængelige. Kontrollen køres ved opstart og i det interval sat nedenfor *"],"Automatically update":[null,"Opdater automatisk"],"fetch and install software updates. Updates are run on startup and in the background at the frequency set below*":[null,"hent og Installer softwareopdateringer. Opdateringer er kører på opstart og i baggrunden og i det interval sat nedenfor *"],"Check the server every*":[null,"Kontrollere serveren hver *"],"hours for software updates (default:1)":[null,"timer for softwareopdateringer (standard: 1)"],"Notify on software update":[null,"Informer om software opdatering"],"send a message to all enabled notifiers when SickRage has been updated":[null,"send en besked til alle aktiverede anmeldere, når SickRage er blevet opdateret"],"User Interface":[null,"Brugergrænseflade"],"Options for visual appearance.":[null,"Indstillinger for visuelle udseende."],"Interface Language":[null,"Grænsefladesprog"],"System Language":[null,"Systemsproget"],"for appearance to take effect, save then refresh your browser":[null,"for at udseende kan træde i kraft, gem og derefter opdatere din browser"],"Display theme":[null,"Vis tema"],"Dark":[null,"Mørk"],"Light":[null,"Lys"],"Use a background image":[null,"Brug et baggrundsbillede"],"use a custom image as background for SickRage":[null,"brug et brugerdefineret billede som baggrund for SickRage"],"Background Path":[null,"Sti til baggrundsbillede"],"Path to the background image":[null,"Stien til baggrundsbilledet"],"Show fanart in the background":[null,"Vis fanart i baggrunden"],"on the show summary page":[null,"på serie oversigts siden"],"Fanart transparency":[null,"Fanart gennemsigtighed"],"transparency of the fanart in the background":[null,"gennemsigtighed af fanart i baggrunden"],"Use a custom stylesheet file":[null,""],"use a custom .css file to style SickRage (for advanced users)":[null,""],"Stylesheet File Path":[null,""],"Path to the stylesheet (.css) file":[null,""],"Show all seasons":[null,"Vis alle sæsoner"],"Sort with \"The\", \"A\", \"An\"":[null,"Sorter med \"The\", \"A\", \"An\""],"include articles (\"The\", \"A\", \"An\") when sorting show lists":[null,"inkludere engelske artikler (\"The\", \"A\", \"An\") når lister sorteres"],"Missed episodes range":[null,"Mistede episode interval"],"set the range in days of the missed episodes in the Schedule page":[null,"angiv antal dage hvor missede episoder er på Schedule-siden"],"Display fuzzy dates":[null,"Vis 'uklare' datoer"],"move absolute dates into tooltips and display e.g. \"Last Thu\", \"On Tue\"":[null,"flyt absolutte datoer ind i værktøjstip og vis fx \"Sidste tor\", \"På tir\""],"Trim zero padding":[null,"Trim nul padding"],"remove the leading number \"0\" shown on hour of day, and date of month":[null,"fjern det førststillede nummer \"0\" vist på time af dagen, og datoen for måned"],"Date style":[null,"Datoformat"],"Use System Default":[null,"Anvend systemets standardvalgte"],"Time style":[null,"Klokkeslætsformat"],"seconds are only shown on the History page":[null,"sekunder er kun vist på siden Historik"],"Timezone":[null,"Tidszone"],"Local":[null,"Lokale"],"Network":[null,"Netværk"],"display dates and times in either your timezone or the shows network timezone":[null,"vis datoer og klokkeslæt i enten din tidszone eller show's netværks tidszone"],"use local timezone to start searching for episodes minutes after show ends (depends on your dailysearch frequency)":[null,""],"Download url":[null,"Download url"],"URL where the shows can be downloaded.":[null,"URL hvor showet kan downloades."],"Web Interface":[null,"Web-interface"],"it is recommended that you enable a username and password to secure SickRage from being tampered with remotely.":[null,""],"these options require a manual restart to take effect.":[null,""],"API key":[null,"API-nøgle"],"used to give 3rd party programs limited access to SickRage":[null,"bruges til at give 3rd parts programmer begrænset adgang til SickRage"],"you can try all the features of the API":[null,"du kan prøve alle funktioner af API"],"here":[null,"her"],"HTTP logs":[null,"HTTP-logfiler"],"enable logs from the internal Tornado web server":[null,"aktivere logfiler fra den interne Tornado webserver"],"HTTP username":[null,"HTTP brugernavn"],"set blank for no login":[null,"efterlad tom for ingen login"],"HTTP password":[null,"HTTP kodeord"],"blank = no authentication":[null,"tom = ingen godkendelse"],"HTTP port":[null,"HTTP port"],"web port to browse and access SickRage (default:8081)":[null,"web port til at få adgang til SickRage (standard: 8081)"],"Notify on login":[null,"Advisér på login"],"enable to be notified when a new login happens in webserver":[null,"gøre det muligt at blive underrettet, når et nyt login sker på webserver"],"Listen on IPv6":[null,"Lyt på IPv6"],"attempt binding to any available IPv6 address":[null,"forsøg på binding til enhver tilgængelig IPv6-adresse"],"Enable HTTPS":[null,"Aktivere HTTPS"],"enable access to the web interface using a HTTPS address":[null,"aktiver adgang til web-interface ved hjælp af en HTTPS-adresse"],"HTTPS certificate":[null,"HTTPS certifikat"],"file name or path to HTTPS certificate":[null,"filnavn eller stien til HTTPS certifikat"],"HTTPS key":[null,"HTTPS nøgle"],"file name or path to HTTPS key":[null,"filnavn eller stien til HTTPS nøgle"],"Reverse proxy headers":[null,"Reverse proxy headers"],"accept the following reverse proxy headers (advanced)...":[null,""],"(X-Forwarded-For, X-Forwarded-Host, and X-Forwarded-Proto)":[null,""],"CPU throttling":[null,"CPU begrænsning"],"Normal (default). High is lower and Low is higher CPU use":[null,"Normal (standard). Høj er lavere og lav er højere CPU brug"],"Anonymous redirect":[null,"Anonym redirect"],"backlink protection via anonymizer service, must end in \"?\"":[null,"backlink beskyttelse via anonymizer service, skal slutte med \"?\""],"Enable debug":[null,"Aktivere fejlfinding"],"enable debug logs":[null,"aktivere fejlfinding logs"],"Verify SSL Certs":[null,"Kontrollere SSL Certs"],"verify SSL Certificates (Disable this for broken SSL installs (Like QNAP))":[null,""],"No Restart":[null,"Ingen genstart"],"only shutdown when restarting SR":[null,""],"only select this when you have external software restarting SR automatically when it stops (like FireDaemon)":[null,""],"Encrypt passwords":[null,"Krypter adgangskoder"],"in the <code>config.ini</code> file":[null,""],"warning":[null,"advarsel"],"passwords must only contain":[null,"adgangskoder må kun indeholde"],"ASCII characters":[null,"ASCII-tegn"],"Unprotected calendar":[null,"Ubeskyttede kalender"],"allow subscribing to the calendar without user and password":[null,"tillad at abonnere på kalenderen uden brugernavn og adgangskode"],"some services like Google Calendar only work this way":[null,"nogle tjenester som Google Kalender virker kun på denne måde"],"Google Calendar Icons":[null,"Google Calendar ikoner"],"show an icon next to exported calendar events in Google Calendar":[null,"vis et ikon ved siden af de eksporterede kalenderbegivenheder i Google Kalendar"],"Proxy host":[null,"Proxy-vært"],"blank to disable or proxy to use when connecting to providers":[null,"stå tomt for at deaktivere eller proxyserver der skal bruges ved tilslutning til udbydere"],"also use global proxy setting for indexers (tvdb, xem, anidb, etc.)":[null,"brug også globale proxy-indstillinger for indexer (tvdb, xem, anidb, osv.)"],"Skip Remove Detection":[null,"Skip sletnings detektering"],"skip detection of removed files":[null,"skip detektering af fjernede filer"],"if disabled the episode will be set to the default deleted status":[null,"hvis fravalgt vil episoden blive sat til standard slettet status"],"Default deleted episode status":[null,"Standard slettet episode status"],"define the status to be set for media file that has been deleted.":[null,"definér status der skal angives for mediefil, der er blevet slettet."],"Archived option will keep previous downloaded quality":[null,"Arkiverede indstilling vil beholde tidligere hentet kvalitet"],"example: Downloaded (1080p WEB-DL) ==> Archived (1080p WEB-DL)":[null,"eksempel: Hentet (1080p WEB-DL) ==> Arkiverede (1080p WEB-DL)"],"Options for github related features.":[null,"Indstillinger for github relaterede funktioner."],"Branch version":[null,"Branch version"],"error: No branches found.":[null,""],"select branch to use (restart required)":[null,"vælg branch at bruge (Genstart kræves)"],"Authorization Type":[null,""],"Username and password":[null,"Brugernavn og adgangskode"],"Personal access token":[null,"Personlig adgangstoken"],"You must use a personal access token if you're using \"two-factor authentication\" on GitHub.":[null,"Hvis du bruger \"to-faktor autentificering\" på GitHub, skal du bruge en personlig adgangstoken."],"GitHub username":[null,"GitHub brugernavn"],"*** (REQUIRED FOR SUBMITTING ISSUES) ***":[null,"(KRÆVES FOR INDSENDELSE AF PROBLEMER) ***"],"GitHub password":[null,"GitHub adgangskode"],"GitHub personal access token":[null,""],"Generate Token":[null,"Generere Token"],"Manage Tokens":[null,"Administrere Tokens"],"GitHub remote for branch":[null,"GitHub remote til branch"],"access repo configured remotes (save then refresh browser)":[null,""],"default":[null,"standard"],"origin":[null,"oprindelse"],"Git executable path":[null,"Git eksekverbar sti"],"only needed if OS is unable to locate git from env":[null,"kun nødvendig hvis OS er afskåret fra at lokalisere git fra env"],"Git reset":[null,"Git reset"],"removes untracked files and performs a hard reset on git branch automatically to help resolve update issues":[null,"fjerner ikke-sporede filer og udfører en hård reset på git gren automatisk til at løse opdaterings problemer"],"Home Theater / NAS":[null,"Hjemmebiograf / NAS"],"Devices":[null,"Enheder"],"Social":[null,"Sociale"],"A free and open source cross-platform media center and home entertainment system software with a 10-foot user interface designed for the living-room TV.":[null,"En gratis og open source cross-platform media center og home entertainment system-software med en 10-fods brugergrænseflade designet til stuen TV."],"send KODI commands?":[null,"send KODI kommandoer?"],"Always on":[null,"Altid slået til"],"log errors when unreachable?":[null,"logge fejl når utilgængelig?"],"Notify on snatch":[null,"Meddel ved hentning"],"send a notification when a download starts?":[null,"sende en notifikation, når en download starter?"],"Notify on download":[null,"Meddel på download"],"send a notification when a download finishes?":[null,"sende en notifikation, når en overførsel er færdig?"],"Notify on subtitle download":[null,"Meddel ved undertekst download"],"send a notification when subtitles are downloaded?":[null,"sende en notifikation, når undertekster er downloadet?"],"Update library":[null,"Opdater bibliotek"],"update KODI library when a download finishes?":[null,"opdatere KODI bibliotek, når download er færdig?"],"Full library update":[null,"Fuld biblioteks opdatering"],"perform a full library update if update per-show fails?":[null,"udføre en fuld biblioteks opdatering hvis opdatering mislykkes for hver serie?"],"Only update first host":[null,"Kun opdatere første vært"],"only send library updates to the first active host?":[null,"kun send opdateringer til den første aktive vært?"],"KODI IP:Port":[null,"KODI IP:Port"],"host running KODI (eg. 192.168.1.100:8080)":[null,"værten kører KODI (f.eks. 192.168.1.100:8080)"],"(multiple host strings must be separated by commas)":[null,"(flere værter skal være adskilt af kommaer)"],"Username":[null,"Brugernavn"],"username for your KODI server (blank for none)":[null,"brugernavn til din KODI server (tom for ingen)"],"Password":[null,"Kodeord"],"password for your KODI server (blank for none)":[null,"adgangskode til din KODI server (tom for ingen)"],"Click below to test.":[null,"Klik nedenfor for at teste."],"Experience your media on a visually stunning, easy to use interface on your Mac connected to your TV. Your media library has never looked this good!":[null,"Opleve dine medier på en visuelt imponerende, nem at bruge interface på din Mac tilsluttet dit TV. Dit mediebibliotek har aldrig set så godt ud!"],"For sending notifications to Plex Home Theater (PHT) clients, use the KODI notifier with port <b>3005</b>.":[null,"For at sende notifikationer til Plex Home Theater (PHT) klienter, skal du bruge KODI anmelderen med port <b>3005</b>."],"send Plex Media Server library updates?":[null,""],"Plex Media Server Auth Token":[null,"Plex Media Server Auth Token"],"auth token used by Plex":[null,""],"Update Library":[null,"Opdater bibliotek"],"update Plex Media Server library when a download finishes":[null,"opdatere Plex Media Server-bibliotek, når en download er færdig"],"Plex Media Server IP:Port":[null,"Plex Media Server IP:Port"],"one or more hosts running Plex Media Server<br/>(eg. 192.168.1.1:32400, 192.168.1.2:32400)":[null,""],"HTTPS":[null,"HTTPS"],"use https for plex media server requests?":[null,"brug https til plex media server forespørgsler?"],"Click below to test Plex Media Server(s)":[null,"Klik nedenfor for at teste Plex Media Server(e)"],"Test Plex Media Server":[null,"Test Plex Media Server"],"Plex Home Theater":[null,"Plex Home Theater"],"send Plex Home Theater notifications?":[null,""],"Plex Home Theater IP:Port":[null,"Plex Home Theater IP:Port"],"one or more hosts running Plex Home Theater<br>(eg. 192.168.1.100:3000, 192.168.1.101:3000)":[null,"en eller flere værter kører Plex Home Theater <br>(f.eks. 192.168.1.100:3000, 192.168.1.101:3000)"],"Click below to test Plex Home Theater(s)":[null,"Klik nedenfor for at teste Plex hjem Theater(s)"],"Test Plex Home Theater":[null,"Test Plex Home Theater"],"some Plex Home Theaters <b class=\"boldest\">do not</b> support notifications e.g. Plexapp for Samsung TVs":[null,""],"Emby":[null,"Emby"],"A home media server built using other popular open source technologies.":[null,"En hjemme medieserver bygget ved hjælp af andre populære open source-teknologier."],"send update commands to Emby?":[null,""],"Emby IP:Port":[null,"Emby IP:Port"],"host running Emby (eg. 192.168.1.100:8096)":[null,"værten der kører Emby (f.eks. 192.168.1.100:8096)"],"Emby API Key":[null,"Emby API nøgle"],"Networked Media Jukebox":[null,"Networked Media Jukebox"],"The Networked Media Jukebox, or NMJ, is the official media jukebox interface made available for the Popcorn Hour 200-series.":[null,"Networked Media Jukebox eller NMJ, er den officielle Media Jukebox grænseflade til rådighed for Popcorn Hour 200-serien."],"send update commands to NMJ?":[null,""],"Popcorn IP address":[null,"Popcorn IP adresse"],"IP address of Popcorn 200-series (eg. 192.168.1.100)":[null,"IP-adressen på Popcorn 200-serien (f.eks. 192.168.1.100)"],"Get settings":[null,"Hent indstillinger"],"Get Settings":[null,"Hent indstillinger"],"the Popcorn Hour device must be powered on and NMJ running.":[null,"Popcorn Hour enheden skal være tændt og NMJ være aktiv."],"NMJ database":[null,"NMJ database"],"automatically filled via the 'Get Settings' button.":[null,"udfyldes automatisk via knappen 'Få indstillinger'."],"NMJ mount url":[null,"NMJ mount url"],"Networked Media Jukebox v2":[null,"Networked Media Jukebox v2"],"The Networked Media Jukebox, or NMJv2, is the official media jukebox interface made available for the Popcorn Hour 300 & 400-series.":[null,"Networked Media Jukebox, eller NMJv2, er den officielle Media Jukebox grænseflade gjort tilgængelig for Popcorn Hour 300 & 400-serien."],"send update commands to NMJv2?":[null,""],"IP address of Popcorn 300/400-series (eg. 192.168.1.100)":[null,"IP-adressen på Popcorn 300/400-serien (f.eks. 192.168.1.100)"],"Database location":[null,"Database placering"],"Database instance":[null,"Database instans"],"adjust this value if the wrong database is selected.":[null,"Juster denne værdi, hvis den forkerte database er markeret."],"Find database":[null,"Find databasen"],"Find Database":[null,"Find database"],"the Popcorn Hour device must be powered on.":[null,"Popcorn Hour enheden skal være tændt."],"NMJv2 database":[null,"NMJv2 database"],"automatically filled via the 'Find Database' buttons.":[null,"udfyldes automatisk via knapperne 'Find Database'."],"Synology":[null,"Synology"],"The Synology DiskStation NAS.":[null,"Synology DiskStation NAS."],"Synology Indexer is the daemon running on the Synology NAS to build its media database.":[null,"Synology Indexer er tjenesten der kører på Synology NAS til opbygge dens media-database."],"send Synology notifications?":[null,""],"requires SickRage to be running on your Synology NAS.":[null,"kræver SickRage kører på din Synology NAS."],"Synology Indexer":[null,"Synology indekseringsprogram"],"Synology Notifier is the notification system of Synology DSM":[null,"Synology anmelderen er notifikationssystemet fra Synology DSM"],"send notifications to the Synology Notifier?":[null,""],"pyTivo":[null,"pyTivo"],"pyTivo is both an HMO and GoBack server. This notifier will load the completed downloads to your Tivo.":[null,"pyTivo er både en HMO og GoBack server. Denne anmelder vil indlæse de færdige downloads til din Tivo."],"send notifications to pyTivo?":[null,""],"requires the downloaded files to be accessible by pyTivo.":[null,"kræver de hentede filer skal være tilgængelige ved pyTivo."],"pyTivo IP:Port":[null,"pyTivo IP:Port"],"host running pyTivo (eg. 192.168.1.1:9032)":[null,"vært kører pyTivo (f.eks. 192.168.1.1:9032)"],"pyTivo share name":[null,"pyTivo sharenavn"],"value used in pyTivo Web Configuration to name the share.":[null,"værdi brugt i pyTivo Web Configuration til at navngive sharenavnet."],"Tivo name":[null,"TiVo navn"],"(Messages & Settings > Account & System Information > System Information > DVR name)":[null,"(Messages & Settings > Account & System Information > System Information > DVR name)"],"Growl":[null,"Growl"],"A cross-platform unobtrusive global notification system.":[null,"En cross-platform diskret global anmeldelsessystem."],"send Growl notifications?":[null,""],"Growl IP:Port":[null,"Growl IP:Port"],"host running Growl (eg. 192.168.1.100:23053)":[null,"vært der kører Growl (f.eks. 192.168.1.100:23053)"],"may leave blank if SickRage is on the same host.":[null,"kan efterlades tomt, hvis SickRage er på den samme vært."],"otherwise Growl <b>requires</b> a password to be used.":[null,"ellers <b>kræver</b> Growl en adgangskode for at blive brugt."],"Click below to register and test Growl, this is required for Growl notifications to work.":[null,"Klik nedenfor for at registrere og teste Growl, dette er nødvendigt for at få Growl notifikationer til at virke."],"Register Growl":[null,"Registrer Growl"],"Prowl":[null,"Prowl"],"A Growl client for iOS.":[null,"En Growl klient til iOS."],"send Prowl notifications?":[null,""],"Prowl Message Title":[null,"Prowl meddelelses titel"],"Global Prowl API key(s)":[null,"Globale Prowl API nøgle(r)"],"Prowl API(s) listed here, separated by commas if applicable, will<br> receive notifications for <b>all</b> shows. Your Prowl API key is available at:":[null,""],"(this field may be blank except when testing.)":[null,""],"Show notification list":[null,"Serie notifikations liste"],"-- Select a Show --":[null,"--Vælg en Serie--"],"Configure per-show notifications here by entering Prowl API key(s), separated by commas, '\n 'after selecting a show in the drop-down box. Be sure to activate the 'Save for this show' '\n 'button below after each entry.":[null,""],"Save for this show":[null,"Gem for denne serie"],"Prowl priority":[null,"Prowl prioritet"],"Very Low":[null,"Meget lav"],"Moderate":[null,"Moderat"],"Normal":[null,"Normal"],"High":[null,"Høj"],"Emergency":[null,"Akut"],"priority of Prowl messages from SickRage.":[null,"prioritet af Prowl meddelelser fra SickRage."],"Libnotify":[null,"Libnotify"],"The standard desktop notification API for Linux/*nix systems. This notifier will only function if the pynotify module is installed (Ubuntu/Debian package <a href=\"apt:python-notify\">python-notify</a>).":[null,"Standard desktop notifikation API for Linux / * nix systemer. Denne meddeler vil kun fungere, hvis pynotify modulet er installeret (Ubuntu/Debian package <a href=\"apt:python-notify\"> python-notify</a>)."],"send Libnotify notifications?":[null,""],"Pushover":[null,"Pushover"],"Pushover makes it easy to send real-time notifications to your Android and iOS devices.":[null,"Pushover gør det let at sende notifikationer i realtid til din Android og iOS enheder."],"send Pushover notifications?":[null,""],"Pushover key":[null,"Pushover nøgle"],"user key of your Pushover account":[null,"bruger nøglen til din Pushover konto"],"Pushover API key":[null,"Pushover API nøgle"],"click here":[null,""]," to create a Pushover API key":[null,""],"Pushover devices":[null,"Pushover enheder"],"comma separated list of pushover devices you want to send notifications to":[null,"kommasepareret liste over pushover enheder du vil sende notifikationer til"],"Pushover notification sound":[null,"Pushover notifikations lyd"],"Bike":[null,"Bike"],"Bugle":[null,"Bugle"],"Cash Register":[null,"Cash Register"],"Classical":[null,"Classical"],"Cosmic":[null,"Cosmic"],"Falling":[null,"Falling"],"Gamelan":[null,"Gamelan"],"Incoming":[null,"Incoming"],"Intermission":[null,"Intermission"],"Magic":[null,"Magic"],"Mechanical":[null,"Mechanical"],"Piano Bar":[null,"Piano Bar"],"Siren":[null,"Siren"],"Space Alarm":[null,"Space Alarm"],"Tug Boat":[null,"Tug Boat"],"Alien Alarm (long)":[null,"Alien Alarm (lang)"],"Climb (long)":[null,"Climb (lang)"],"Persistent (long)":[null,"Persistent (lang)"],"Pushover Echo (long)":[null,"Pushover Echo (lang)"],"Up Down (long)":[null,"Up Down (lang)"],"None (silent)":[null,"Ingen (lydløs)"],"Device specific":[null,"Enheds specifik"],"choose notification sound to use":[null,""],"Pushover priority":[null,""],"Choose priority to use":[null,""],"Boxcar 2":[null,"Boxcar 2"],"Read your messages where and when you want them!":[null,"Læs dine beskeder hvor og hvornår du vil have dem!"],"send Boxcar notifications?":[null,""],"Boxcar2 access token":[null,"Boxcar2 adgangstoken"],"access token for your Boxcar account.":[null,"adgangstoken til din Boxcar konto."],"NMA":[null,"NMA"],"Notify My Android":[null,"Notify My Android"],"Notify My Android is a Prowl-like Android App and API that offers an easy way to send notifications from your application directly to your Android device.":[null,"Notify My Android er et Prowl-lignende Android App og API, der tilbyder en nem måde at sende notifikationer fra dit program direkte til din Android-enhed."],"send NMA notifications?":[null,""],"NMA API key":[null,"NMA API-nøgle"],"(multiple keys must be separated by commas, up to a maximum of 5)":[null,"(flere nøgler skal være adskilt af kommaer, op til et maksimum af 5)"],"NMA priority":[null,"NMA prioritet"],"priority of NMA messages from SickRage.":[null,"prioritet af NMA meddelelser fra SickRage."],"Pushalot":[null,"Pushalot"],"Pushalot is a platform for receiving custom push notifications to connected devices running Windows Phone or Windows 8.":[null,"Pushalot er en platform til at modtage brugerdefinerede pushbeskeder til tilsluttede enheder, der kører Windows Phone og Windows 8."],"send Pushalot notifications ?":[null,"send Pushalot notifikationer?"],"Pushalot authorization token":[null,"Pushalot tilladelse token"],"authorization token of your Pushalot account.":[null,"tilladelses token for din Pushalot konto."],"Pushbullet":[null,"Pushbullet"],"Pushbullet is a platform for receiving custom push notifications to connected devices running Android/iOS and desktop browsers such as Chrome, Firefox or Opera.":[null,"Pushbullet er en platform for at modtage brugerdefinerede pushbeskeder til tilsluttede enheder, der kører Android/iOS og desktop browsere såsom Chrome, Firefox eller Opera."],"send Pushbullet notifications?":[null,"send Pushbullet notifikationer?"],"Pushbullet API key":[null,"Pushbullet API-nøgle"],"API key of your Pushbullet account":[null,"API-nøgle på din Pushbullet konto"],"Pushbullet devices":[null,"Pushbullet enheder"],"Update device list":[null,"Opdater enhedsliste"],"Pushbullet channels":[null,"Pushbullet kanaler"],"Free Mobile":[null,"Free Mobile"],"Free Mobile is a famous French cellular network provider.<br> It provides to their customer a free SMS API.":[null,"Free Mobile er en berømt fransk cellular netværksudbyder. <br>Det giver til deres kunde en gratis SMS API."],"send SMS notifications?":[null,"send SMS notifikationer?"],"send a SMS when a download starts?":[null,"Send en SMS, når et download starter?"],"send a SMS when a download finishes?":[null,"send en SMS, når et download er færdig?"],"send a SMS when subtitles are downloaded?":[null,"Send en SMS, når undertekster er downloadet?"],"Free Mobile customer ID":[null,"Gratis mobil kunde-ID"],"it's your Free Mobile customer ID (8 digits)":[null,"det er din Free Mobile kundenummer (8 cifre)"],"Free Mobile API key":[null,"Free Mobile API-nøgle"],"find your API key in your customer portal.":[null,"find din API-nøgle i kundeportalen."],"Click below to test your settings.":[null,"Klik nedenfor for at teste dine indstillinger."],"Telegram":[null,"Telegram"],"Telegram is a cloud-based instant messaging service.":[null,"Telegram er en cloud-baseret instant messaging service."],"send Telegram notifications?":[null,"send Telegram notifikationer?"],"send a message when a download starts?":[null,"send en besked når en download starter?"],"send a message when a download finishes?":[null,"send en besked når en download er færdig?"],"send a message when subtitles are downloaded?":[null,"send en besked når undertekster er downloadet?"],"User/group ID":[null,"Bruger/gruppe-ID"],"contact @myidbot on Telegram to get an ID":[null,"kontant @myidbot på Telegram for at få et ID"],"Bot API token":[null,"Bot API token"],"contact @BotFather on Telegram to set up one":[null,"kontakt @BotFather på Telegram for at opsætte en"],"Join":[null,"Tilslut"],"Join all of your devices together!":[null,"Saml alle dine enheder sammen!"],"send Join notifications?":[null,"send Join notifikationer?"],"Device ID":[null,"Enheds ID"],"per device specific id":[null,"pr. enhed specifik ID"]," to create a Join API key":[null,""],"Twilio":[null,"Twillio"],"Twilio is a webservice API that allows you to communicate directly with a mobile number. This notifier will send a text directly to your mobile device.":[null,"Twilio er et webservice-API, der giver mulighed for at kommunkere direkte med et mobilnummer. Denne notits sender en sms direkte til din mobil-enhed."],"should SickRage text your mobile device?":[null,"skal SickRage sende en SMS til din mobile enhed?"],"Twilio Account SID":[null,"Twilio konto SID"],"account SID of your Twilio account.":[null,"konto SID på din Twilio konto (Account SID)."],"Twilio Auth Token":[null,"Twilio Auth Token"],"Twilio Phone SID":[null,"Twilio Telefon SID"],"phone SID that you would like to send the sms from":[null,"telefon SID som du gerne vil sende SMS´en fra"],"Your phone number":[null,"Dit telefonnummer"],"phone number that will receive the sms. Please use the format +1-###-###-####":[null,"telefonnummer som skal modtage SMS´en. Brug formatet +1-###-###-###"],"Twitter":[null,"Twitter"],"A social networking and microblogging service, enabling its users to send and read other users' messages called tweets.":[null,"Et social netværk og microblogging service, muliggøre dens brugernes at sende og læse andre brugeres meddelelser kaldes tweets."],"should SickRage post tweets on Twitter?":[null,"skal SickRage sende tweets på Twitter?"],"you may want to use a secondary account.":[null,"det er en god idé at bruge en sekundær konto."],"send direct message":[null,"send direkte besked"],"send a notification via Direct Message, not via status update":[null,"send en notifikation via direkte besked, ikke via statusopdatering"],"send DM to":[null,"send DM til"],"Twitter account to send Direct Messages to (must follow you)":[null,"Twitter-konto for at sende direkte beskeder til (skal følge dig)"],"Step One":[null,"Trin et"],"Request Authorization":[null,"Anmod om Authorisation"],"Click the \"Request Authorization\" button.<br> This will open a new page containing an auth key.<br> <b>note:</b> if nothing happens check your popup blocker.":[null,""],"Step Two":[null,"Trin to"],"Enter the key Twitter gave you below, and click \"Verify Key\".":[null,"Indtast nøglen Twitter gav dig nedenfor, og klik på \"Kontrollér nøgle\"."],"Trakt":[null,"Trakt"],"Trakt helps keep a record of what TV shows and movies you are watching. Based on your favorites, Trakt recommends additional shows and movies you'll enjoy!":[null,""],"send Trakt.tv notifications?":[null,"send Trakt.tv notifikationer?"],"username of your Trakt account.":[null,"brugernavnet på din Trakt konto."],"Trakt PIN":[null,"Trakt PIN"],"Get Trakt PIN":[null,"Få Trakt PIN"],"PIN code to authorize SickRage to access Trakt on your behalf.":[null,"PIN-kode til at godkende SickRage og få adgang til Trakt på dine vegne."],"API Timeout":[null,"API Timeout"],"seconds to wait for Trakt API to respond. (Use 0 to wait forever)":[null,"antal sekunder til at vente på Trakt API reagere (Brug 0 til at vente for evigt)"],"Default indexer":[null,"Standard indekseringsprogram"],"Sync libraries":[null,"Sync biblioteker"],"sync your SickRage show library with your trakt show library.":[null,"synkroniser dit SickRage bibliotek med dit trakt bibliotek."],"Remove Episodes From Collection":[null,"Fjern episoder fra samling"],"remove an episode from your Trakt Collection if it is not in your SickRage Library.":[null,"fjern en episode fra din Trakt samling hvis den ikke er i dit SickRage biliotek."],"Sync watchlist":[null,"Sync overvågningsliste"],"sync your SickRage show watchlist with your trakt show watchlist (either Show and Episode).":[null,"synkroniser din SickRage serie overvågningsliste med din trakt serie overvågningsliste (Serie eller Episode)."],"episode will be added on watch list when wanted or snatched and will be removed when downloaded ":[null,""],"Watchlist add method":[null,"Overvågningsliste tilføj metode"],"Skip All":[null,"Spring alle over"],"Download Pilot Only":[null,"Download kun Pilot afsnittet"],"Get whole show":[null,"Få hele showet"],"method in which to download episodes for new shows.":[null,"metode til at hente episoder til nye shows."],"Remove episode":[null,"Fjern episode"],"remove an episode from your watchlist after it is downloaded.":[null,"fjern en episode fra din overvågningsliste, når den er downloadet."],"Remove series":[null,"Fjern serier"],"remove the whole series from your watchlist after any download.":[null,"fjern hele serien fra din overvågningsliste efter en download."],"Remove watched show":[null,"Fjern sete serier"],"remove the show from sickrage if it's ended and completely watched":[null,"fjern serien fra SickRage, hvis det er endt og helt set"],"Start paused":[null,"Sat på pause fra start"],"shows grabbed from your trakt watchlist start paused.":[null,"start serier hentet fra din trakt overvågningsliste som pauset."],"Trakt blackList name":[null,"Trakt sortliste navn"],"name (slug) of list on Trakt for blacklisting show on 'Add Trending Show' & 'Add Recommended Shows' pages":[null,""],"Email":[null,"E-mail"],"Allows configuration of email notifications on a per show basis.":[null,"Tillader konfiguration af e-mail notifikation for hver serie."],"send email notifications?":[null,"send e-mail notifikationer?"],"SMTP host":[null,"SMTP vært"],"hostname of your SMTP email server.":[null,"værtsnavnet for din SMTP e-mail-server."],"SMTP port":[null,"SMTP port"],"port number used to connect to your SMTP host.":[null,"portnummeret, der bruges til at oprette forbindelse til din SMTP host."],"SMTP from":[null,"SMTP fra"],"sender email address, some hosts require a real address.":[null,"afsenderens e-mail-adresse, nogle værter kræver en reel adresse."],"Use TLS":[null,"Brug TLS"],"check to use TLS encryption.":[null,"marker for at bruge TLS-kryptering."],"SMTP user":[null,"SMTP bruger"],"(optional) your SMTP server username.":[null,"(valgfri) brugernavn til din SMTP server."],"SMTP password":[null,"STMP kodeord"],"(optional) your SMTP server password.":[null,"(valgfri) adgangskode til din SMTP server."],"Global email list":[null,"Global e-mail-liste"],"email addresses listed here, separated by commas if applicable, will<br> receive notifications for <b>all</b> shows.":[null,"e-mail adresser skrevet her, adskilt af komma, will <br>modtage notifikationer for <b>alle</b> serier."],"(This field may be blank except when testing.)":[null,"(Feltet kan være tomt bortset fra når der testes)"],"Email Subject":[null,"E-mail-emne"],"use a custom subject for some privacy protection?":[null,"brug selvvalgt test i emnefelt for nogen grad af privatlivsbeskyttelse?"],"(leave blank for the default SickRage subject)":[null,"(lad være blank for SickRage´s standard emne)"],"configure per-show notifications here by entering email address(es), separated by commas,":[null,""],"after selecting a show in the drop-down box. Be sure to activate the 'Save for this show'":[null,"når du har valgt en serie i drop-down boksen. Husk at aktivere 'Gem for denne serie'"],"button below after each entry.":[null,"knappen nedenfor efter hver post."],"Slack":[null,"Slack"],"Slack brings all your communication together in one place. It's real-time messaging, archiving and search for modern teams.":[null,""],"should SickRage post messages on Slack?":[null,""],"Slack Incoming Webhook":[null,"Slack indkommende Webhooks"],"Discord":[null,""],"All-in-one voice and text chat for gamers that's free, secure, and works on both your desktop and phone.":[null,""],"Should SickRage post messages on Discord?":[null,""],"Discord Incoming Webhook":[null,""],"Create webhook under channel settings.":[null,""],"Discord Bot Name":[null,""],"Blank will use webhook default Name.":[null,""],"Discord Avatar URL":[null,""],"Blank will use webhook default Avatar.":[null,""],"Discord TTS":[null,""],"Send notifications using text-to-speech":[null,""],"Post-Processing":[null,"Efterbehandling"],"Episode Naming":[null,"Episode navngivning"],"Metadata":[null,"Metadata"],"Settings that dictate how SickRage should process completed downloads.":[null,"Indstillinger, der dikterer, hvordan SickRage skal behandle afsluttede downloads."],"enable the automatic post processor to scan and process any files in your Post Processing Dir":[null,""],"do not use if you use an external Post Processing script":[null,""],"Post Processing Dir":[null,"Efterbearbejdningsplacering"],"the folder where your download client puts the completed TV downloads.":[null,""],"please use seperate downloading and completed folders in your download client if possible.":[null,""],"Processing Method":[null,"Behandlingsmetode"],"what method should be used to put files into the library?":[null,""],"if you keep seeding torrents after they finish, please avoid the 'move' processing method to prevent errors.":[null,""],"Auto Post-Processing Frequency":[null,"Auto Efterbehandlingsfrekvens"],"time in minutes to check for new files to auto post-process (min 10)":[null,""],"Postpone post processing":[null,"Udskyd efterbehandling"],"wait to process a folder if sync files are present.":[null,""],"Sync File Extensions":[null,"Synkroniser Filtypenavne"],"comma seperated list of extensions or filename globs SickRage ignores when Post Processing":[null,""],"Rename Episodes":[null,"Omdøb episoder"],"rename episode using the Episode Naming settings?":[null,""],"Create missing show directories":[null,"Opret manglende serie mapper"],"create missing show directories when they get deleted":[null,""],"Add shows without directory":[null,"Tilføje serier uden mapper"],"add shows without creating a directory (not recommended)":[null,""],"Move associated files":[null,"Flyt tilknyttede filer"],"move associated (srt/srr/sfv/etc) files while post processing?":[null,"flyt tilknyttede (srt/srr/sfv/etc) filer mens der efterbehandles?"],"Rename .nfo file":[null,"Omdøb .nfo-fil"],"rename the original .nfo file to .nfo-orig to avoid conflicts?":[null,""],"Associated file extensions":[null,""],"comma separated list of associated file extensions SickRage should keep while post processing.":[null,""],"leaving it empty means no associated files will be post processed":[null,""],"Delete non associated files":[null,""],"delete non associated files while post processing?":[null,""],"Change File Date":[null,"Skift fildato"],"set last modified filedate to the date that the episode aired?":[null,""],"some systems may ignore this feature.":[null,""],"Timezone for File Date":[null,"Tidszone for fildato"],"local":[null,"lokal"],"network":[null,"netværk"],"what timezone should be used to change File Date?":[null,""],"Unpack":[null,"Udpak"],"What to do with archived releases found in your <i>TV Download Dir</i>?":[null,""],"Ignore (do not process contents)":[null,""],"Unpack (process contents)":[null,""],"Treat as video (process archive as-is)":[null,""],"'Unpack' only works with RAR archives":[null,""],"Windows":[null,""],"WinRar is required on windows":[null,""],"Unpack Directory":[null,""],"Choose a path to unpack files, leave blank to unpack in download dir":[null,""],"Unrar Location":[null,"Unrar lokation"],"add the path to unrar if it is not in the system path":[null,"tilføj stien til unrar, hvis stien ikke er i system-stien"],"Alternate Unrar Tool":[null,"Alternativ Unrar værktøj"],"add the path to an alternate unrar tool if it is not in the system path":[null,""],"Delete RAR contents":[null,"Slet RAR indhold"],"delete content of RAR files, even if Process Method not set to move?":[null,""],"only working with RAR archive":[null,"virker kun med RAR-filer"],"Don't delete empty folders":[null,"Slet ikke tomme mapper"],"leave empty folders when Post Processing?":[null,"efterlad tomme mapper i forbindelse med efterbehandling?"],"can be overridden using manual Post Processing":[null,""],"Follow symbolic-links":[null,"Følg symbolske links"],"follow down symbolic links in download directory?":[null,""],"<b>EXPERTS ONLY.</b><br>Enable only if you know what <b>circular symbolic links</b> are,<br>and can <b>verify that you have none</b>.":[null,""],"Use icacls":[null,""],"Windows only":[null,"Kun Windows"],"sets video permissions after using the move method in post processing":[null,""],"Extra Scripts":[null,"Ekstra Scripts"],"see":[null,"se"],"for script arguments description and usage.":[null,""],"How SickRage will name and sort your episodes.":[null,"Hvordan vil SickRage navngive og sortere dine episoder."],"Name Pattern":[null,"Navnemønster"],"Toggle Naming Legend":[null,""],"don't forget to add quality pattern. Otherwise after post-processing the episode will have UNKNOWN quality":[null,""],"Meaning":[null,"Betydning"],"Pattern":[null,"Mønster"],"Result":[null,"Resultat"],"Use lower case if you want lower case names (eg. %sn, %e.n, %q_n etc)":[null,"Brug små bogstaver, hvis du ønsker små bogstaver i navnene (f.eks. %sn, %e.n, % q_n osv.)"],"Show Name":[null,"TV-program Navn"],"Show.Name":[null,"TV-program.Navn"],"Show_Name":[null,"TV-program_Navn"],"Season Number":[null,"Sæson nummer"],"XEM Season Number":[null,""],"Episode Number":[null,"Episode nummer"],"XEM Episode Number":[null,"XEM-Episode nummer"],"Episode Name":[null,"Episode navngivning"],"Episode.Name":[null,"Episode.Navn"],"Episode_Name":[null,"Episode_Navn"],"Air Date":[null,"Udsendelsesdato"],"Post-Processing Date":[null,"Efterbehandlings dato"],"Quality":[null,"Kvalitet"],"Scene Quality":[null,"Scene kvalitet"],"Release Name":[null,"Udgivelses Navn"],"SickRage' is used in place of RLSGROUP if it could not be properly detected":[null,"SickRage' bruges i stedet for RLSGROUP, hvis det ikke kunne være korrekt registreret"],"Release Group":[null,"Release Group"],"If episode is proper/repack add 'proper' to name.":[null,"Hvis episode er proper/repack tilføj 'proper' til navnet."],"Release Type":[null,"Udgivelsestype"],"Multi-Episode Style":[null,"Multi Episode stil"],"Single-EP Sample":[null,"Enkel episode eksempel"],"Multi-EP sample":[null,"Multi Episode eksempel"],"Strip Show Year":[null,"Fjern serie året"],"remove the TV show's year when renaming the file?":[null,""],"only applies to shows that have year inside parentheses":[null,""],"Custom Air-By-Date":[null,"Tilpasset udsendelsesdato"],"name air-by-date shows differently than regular shows?":[null,""],"Toggle ABD Naming Legend":[null,""],"Regular Air Date":[null,"Normal udsendelsesdato"],"Year":[null,"År"],"Month":[null,"Måned"],"Day":[null,"Dag"],"Multi-EP style is ignored":[null,"Multi Episode stil ignoreres"],"Custom Sports":[null,"Tilpasset Sport"],"name sports shows differently than regular shows?":[null,""],"Toggle Sports Naming Legend":[null,""],"Sports Air Date":[null,"Sports udsendelsesdato"],"Custom Anime":[null,"Tilpasset Anime"],"name anime shows differently than regular shows?":[null,""],"Toggle Anime Naming Legend":[null,"Aktiver Anime navngivings oversigt"],">XEM Season Number":[null,"> XEM Sæson nummer"],"Single-EP Anime Sample":[null,"Enkel episode eksempel"],"Multi-EP Anime sample":[null,"Multi Episode eksempel"],"Add Absolute Number":[null,"Tilføje absolutte numre"],"add the absolute number to the season/episode format?":[null,""],"only applies to anime. (eg. S15E45 - 310 vs S15E45)":[null,""],"Only Absolute Number":[null,"Kun absolutte numre"],"replace season/episode format with absolute number":[null,""],"only applies to anime.":[null,""],"No Absolute Number":[null,"Ingen absolutte numre"],"don't include the absolute number":[null,""],"The data associated to the data. These are files associated to a TV show in the form of images and text that, when supported, will enhance the viewing experience.":[null,"Information forbundet med serien. Dette er filer som forbindes med en serie, i form af billeder og tekst som, når understøttet, vil forbedre brugeroplevelsen."],"Metadata Type":[null,"Metadata Type"],"toggle metadata options that you wish to be created":[null,""],"multiple targets may be used":[null,""],"Select Metadata":[null,"Vælg Metadata"],"Provider Priorities":[null,"Udbyder prioriteter"],"Provider Options":[null,"Udbyder indstillinger"],"Configure Custom Newznab Providers":[null,"Konfigurere brugerdefinerede Newznab udbydere"],"Configure Custom Torrent Providers":[null,"Konfigurere brugerdefinerede Torrent udbydere"],"Check off and drag the providers into the order you want them to be used.":[null,"Marker og træk udbyderne i den rækkefølge, du vil have dem til at blive brugt."],"At least one provider is required but two are recommended.":[null,"Mindst én udbyder er nødvendig men to anbefales."],"Torrent providers can be toggled in ":[null,"Torrent udbydere kan slås i "],"Provider does not support backlog searches at this time.":[null,"Udbyderen understøtter ikke backlog søgninger på dette tidspunkt."],"Provider is <b>NOT WORKING</b>.":[null,"Udbyderen er <b>VIRKER IKKE</b>."],"Configure individual provider settings here.":[null,"Konfigurere individuelle udbyder indstillinger her."],"Check with provider's website on how to obtain an API key if needed.":[null,"Check udbyderens hjemmeside for hvordan du får en API-nøgle, hvis nødvendigt."],"Configure provider":[null,"Konfigurer - udbydere"],"no providers available to configure.":[null,""],"URL":[null,"URL"],"Enable daily searches":[null,"Aktiver daglige søgninger"],"enable provider to perform daily searches.":[null,"tillad udbyder at udføre daglige søgninger."],"Enable backlog searches":[null,"Aktiver backlog søgninger"],"enable provider to perform backlog searches.":[null,""],"Season search mode":[null,"Sæson søgefunktionen"],"when searching for complete seasons you can choose to have it look for season packs only, or choose to have it build a complete season from just single episodes.":[null,"når der søges efter komplette sæsoner, kan du vælge at kun at søge efter sæson-pakker hos udbyderen, eller lade den opbygge en komplette sæsoner af enkeltstående episoder."],"season packs only.":[null,"kun sæson pakker."],"episodes only.":[null,"kun episoder."],"Enable fallback":[null,"Tillad alternativ"],"when searching for a complete season depending on search mode you may return no results, this helps by restarting the search using the opposite search mode.":[null,"når søgningen ud fra den valgte metode ikke giver nogen resultater, tillader dette at genstarte søgningen med den modsatte metode, og kan derved måske skaffe flere resultater."],"Custom URL":[null,"Brugerdefineret URL"],"the URL should include the protocol (and port if applicable). Examples: http://192.168.1.4/ or http://localhost:3000/":[null,""],"Api key":[null,"Api nøgle"],"Digest":[null,""],"Hash":[null,"Hash"],"Passkey":[null,"Passkey"],"Cookies":[null,"Cookies"],"example: uid=1234;pass=567845439634987<br>note: uid and pass are not your username/password.<br>use DevTools or Firebug to get these values after logging in on your browser.":[null,""],"Pin":[null,"PIN"],"Seed ratio":[null,"Seed forhold"],"stop transfer when ratio is reached<br>(-1 SickRage default to seed forever, or leave blank for downloader default)":[null,""],"Minimum seeders":[null,"Minimum seeders"],"Minimum leechers":[null,"Minimum leechers"],"Confirmed download":[null,"Bekræftet download"],"only download torrents from trusted or verified uploaders ?":[null,"kun download torrents fra betroede eller verificerede uploaders?"],"Ranked torrents":[null,"Rangerede torrents"],"only download ranked torrents (trusted releases)":[null,"kun download rangerede torrent (betroede udgivelser)"],"English torrents":[null,"Engelske torrents"],"only download english torrents, or torrents containing english subtitles":[null,"download kun engelsksprogede torrents, eller torrents indeholdende engelske undertekster"],"For Spanish torrents":[null,"For Spanske torrents"],"ONLY search on this provider if show info is defined as \"Spanish\" (avoid provider's use for VOS shows)":[null,"Søg KUN hos denne udbyder hvis seriens info er defineret som \"Spansk\" (undgå udbyderens brug af VOS serier)"],"Sorting results by":[null,"Sorterer resultater på"],"Freeleech":[null,"Freeleech"],"only download <b>\"FreeLeech\"</b> torrents.":[null,"kun download <b>\"Freeleeck\"</b> torrents."],"Category":[null,"Kategori"],"select torrent with Italian subtitle":[null,"vælg torrent med italiensk undertekst"],"Configure Custom<br>Newznab Providers":[null,"Indstil andre/brugerdefinerede<br>Newznab-udbydere"],"Add and setup or remove custom Newznab providers.":[null,"Tilføj, fjern og indstil andre/brugerdefinerede Newznab-udbydere."],"Select provider":[null,"Vælg udbyder"],"-- add new provider --":[null,"-- tilføj ny udbyder --"],"Provider name":[null,"Navn på udbyder"],"Site URL":[null,"Side URL"],"Newznab search categories":[null,"Newznab søge-kategorier"],"select your Newznab categories on the left, and click the \"update categories\" button to use them for searching.) <b>don't forget to to save the form!":[null,"vælg dine Newznab-kategorier til venstre, og klik på knappen \"Opdater kategorier\" for at bruge dem til søgninger.) <b>Husk at gemme formularen!"],"Update Categories":[null,"Opdater kategorier"],"Add":[null,"Tilføj"],"Delete":[null,"Slet"],"Add and setup or remove custom RSS providers.":[null,"Tilføj, fjern og indstil andre/brugerdefinerede RSS-udbydere."],"RSS URL":[null,"RSS URL"],"Search element":[null,"Søgnings-element"],"eg: title":[null,"f.eks.: titel"],"Episode Search":[null,"Episode søgning"],"NZB Search":[null,"NZB søgning"],"Torrent Search":[null,"Torrent Søgning"],"How to manage searching with":[null,"Sådan håndteres søgning med"],"Randomize Providers":[null,"Brug tilfældigt en udbydere"],"randomize the provider search order instead of going in order of placement":[null,"tilfældig søg blandt udbyderne i stedet for at søge i rækkefølge"],"Download propers":[null,"Download 'propers'"],"replace original download with \"Proper\" or \"Repack\" if nuked":[null,"erstat originale download med \"Proper\" eller \"Repack\", hvis nuked"],"Check propers every":[null,"Check propers hver"],"24 hours":[null,"24 timer"],"4 hours":[null,"4 timer"],"90 mins":[null,"90 minutter"],"45 mins":[null,"45 minutter"],"15 mins":[null,"15 minutter"],"Backlog search day(s)":[null,"Backlog søgning tilbage i dage"],"number of day(s) that the \"Forced Backlog Search\" will cover (e.g. 7 Days)":[null,"antallet af dag(e), som \"Tvungen Backlog Søgning\" vil dække (f.eks. 7 dage)"],"Backlog search frequency":[null,"Backlog Søge frekvens"],"time in minutes between searches (min.":[null,"tid i minutter mellem søgninger (min."],"Daily search frequency":[null,"Daglig søgefrekvens"],"Usenet retention":[null,"Usenet retention"],"age limit in days for usenet articles to be used (e.g. 500)":[null,"aldersgrænsen i dage for usenet artikler der skal anvendes (f.eks. 500)"],"Ignore words":[null,"Ignorerede ord"],"results with one or more word from this list will be ignored<br>separate words with a comma, e.g. \"word1,word2,word3\"":[null,"resultater med ét eller flere ord fra denne liste vil blive ignoreret <br>flere ord adskilles med komma, f.eks. \"ord1, ord2, ord3\""],"Require words":[null,"Krævede ord"],"results with no word from this list will be ignored<br>separate words with a comma, e.g. \"word1,word2,word3\"":[null,"resultater uden nogen ord fra denne liste vil blive ignoreret <br>flere ord adskilles med komma, f.eks. \"ord1, ord2, ord3\""],"Trackers list":[null,"Tracker listen"],"trackers that will be added to magnets without trackers<br>separate trackers with a comma, e.g. \"tracker1,tracker2,tracker3\"":[null,""],"Ignore language names in subbed results":[null,"Ignorere sprog navne i resultater med undertekster"],"ignore subbed releases based on language names <br>\n Example: \"dk\" will ignore words: dksub, dksubs, dksubbed, dksubed <br>\n separate languages with a comma, e.g. \"lang1,lang2,lang3":[null,""],"Allow high priority":[null,"Tillad høj prioritet"],"set downloads of recently aired episodes to high priority":[null,"sæt downloads af nylig viste episoder til høj prioritet"],"Use Failed Downloads":[null,"Anvend Mislykkede Downloads"],"use Failed Download Handling?":[null,""],"will only work with snatched/downloaded episodes after enabling this":[null,""],"Delete Failed":[null,"Slet Mislykkede"],"delete files left over from a failed download?":[null,""],"this only works if Use Failed Downloads is enabled.":[null,""],"How to handle NZB search results.":[null,""],"Search NZBs":[null,"Søg NZBs"],"enable NZB search providers":[null,""],"Send .nzb files to":[null,"Send .nzb filer til"],"SABnzbd server URL":[null,"SABnzbd server URL"],"URL to your SABnzbd server (e.g. http://localhost:8080/)":[null,"URL til din SABnzbd server (fx localhost8080: /)"],"SABnzbd username":[null,"SABnzbd brugernavn"],"(blank for none)":[null,"(tom for ingen)"],"SABnzbd password":[null,"SABnzbd password"],"SABnzbd API key":[null,"SABnzbd API key"],"locate at... SABnzbd Config -> General -> API Key":[null,""],"Use SABnzbd category":[null,"Brug SABnzbd kategori"],"add downloads to this category (e.g. TV)":[null,"tilføj downloads til denne kategori (f.eks. TV)"],"Use SABnzbd category (backlog episodes)":[null,"Brug SABnzbd kategori (backlog episoder)"],"add downloads of old episodes to this category (e.g. TV)":[null,"tilføj downloads af gamle episoder til denne kategori (f.eks. TV)"],"Use SABnzbd category for anime":[null,"Brug SABnzbd kategori for anime"],"add anime downloads to this category (e.g. anime)":[null,""],"Use SABnzbd category for anime (backlog episodes)":[null,""],"add anime downloads of old episodes to this category (e.g. anime)":[null,""],"Use forced priority":[null,"Brug tvungen prioritet"],"enable to change priority from HIGH to FORCED":[null,"gøre det muligt for at ændre prioritet fra høj til tvungen"],"Black hole folder location":[null,"Sort hul mappeplacering"],"<b>.nzb</b> files are stored at this location for external software to find and use":[null,""],"Connect using HTTPS":[null,"Opret forbindelse med HTTPS"],"enable Secure control in NZBGet and set the correct Secure Port here":[null,""],"NZBget host:port":[null,""],"(e.g. localhost:6789)":[null,"(f.eks. localhost:6789)"],"NZBget RPC host name and port number (not NZBgetweb!)":[null,""],"NZBget username":[null,""],"locate in nzbget.conf (default:nzbget)":[null,""],"NZBget password":[null,"NZBget adgangskode"],"locate in nzbget.conf (default:tegbzn6789)":[null,""],"Use NZBget category":[null,""],"send downloads marked this category (e.g. TV)":[null,""],"Use NZBget category (backlog episodes)":[null,""],"send downloads of old episodes marked this category (e.g. TV)":[null,""],"Use NZBget category for anime":[null,""],"send anime downloads marked this category (e.g. anime)":[null,""],"Use NZBget category for anime (backlog episodes)":[null,""],"send anime downloads of old episodes marked this category (e.g. anime)":[null,""],"NZBget priority":[null,"NZBget prioritet"],"Very low":[null,"Meget lav"],"Low":[null,"Lav"],"Very high":[null,"Meget høj"],"Force":[null,"Tving"],"priority for daily snatches (no backlog)":[null,""],"Torrent host:port":[null,"Torrent vært:port"],"URL to your Synology DSM (e.g. http://localhost:5000/)":[null,""],"Client username":[null,"Klient brugernavn"],"Client password":[null,""],"Downloaded files location":[null,"Downloadede filers placering"],"where Synology Download Station will save downloaded files (blank for client default)":[null,""],"the destination has to be a shared folder for Synology DS":[null,""],"Click below to test":[null,"Klik nedenfor for at teste"],"How to handle Torrent search results.":[null,""],"Search torrents":[null,"Søg efter torrents"],"enable torrent search providers":[null,"aktivere torrent søgemaskiner"],"Send .torrent files to":[null,"Send .torrent filer til"],"<b>.torrent</b> files are stored at this location for external software to find and use":[null,""],"URL to your torrent client (e.g. http://localhost:8000/)":[null,"URL til din torrent klient (f.eks. http://localhost:8000 /)"],"Torrent RPC URL":[null,"Torrent RPC-URL"],"the path without leading and trailing slashes (e.g. transmission)":[null,""],"Http Authentication":[null,"Http godkendelse"],"Verify certificate":[null,"Kontroller certifikat"],"disable if you get \"Deluge: Authentication Error\" in your log":[null,"deaktiver, hvis du får \"Deluge: Authentication Error\" i din log"],"verify SSL certificates for HTTPS requests":[null,""],"Add label to torrent":[null,"Føj etikette til torrent"],"(blank spaces are not allowed)":[null,""],"label plugin must be enabled in Deluge clients":[null,""],"for QBitTorrent 3.3.1 and up":[null,""],"Add label to torrent for anime":[null,""],"for QBitTorrent 3.3.1 and up ":[null,""],"where <span id=\"torrent_client\">the torrent client</span> will save downloaded files (blank for client default)":[null,""],"the destination has to be a shared folder for Synology DS</span>":[null,""],"Minimum seeding time":[null,""],"time in hours":[null,"tid i timer"],"(default:'0' passes blank to client and '-1' passes nothing)":[null,""],"Start torrent paused":[null,""],"add .torrent to client but do <b style=\"font-weight:900\">not</b> start downloading":[null,"tilføj .torrent til klienten, men start<b style=\"font-weight:900\"> ikke</b> med at downloade"],"Allow high bandwidth":[null,"Tillad høj båndbredde"],"use high bandwidth allocation if priority is high":[null,"Brug høj båndbredde hvis prioriteten er høj"],"Test Connection":[null,"Test forbindelse"],"Windows Shares":[null,""],"Defines your existing windows shares so that we can add them to the browse dialog":[null,""],"Share #{number}":[null,""],"Share label":[null,""],"Hostname or IP":[null,""],"Share path":[null,""],"Subtitles Search":[null,"Undertekst søgning"],"Subtitles Plugin":[null,"Undertekst Plug-in"],"Plugin Settings":[null,"Tilføjelsesindstillinger"],"Settings that dictate how SickRage handles subtitles search results.":[null,"Indstillinger, der dikterer, hvordan SickRage skal håndtere søgeresultater for undertekster."],"Search Subtitles":[null,"Søg efter undertekster"],"Subtitle Languages":[null,"Undertekstsprog"],"Subtitle Directory":[null,"Undertekst mappe"],"the directory where SickRage should store your <i>Subtitles</i> files.":[null,"mappen hvor SickRage skal gemme dine <i>Undertekst</i>-filer."],"leave empty if you want store subtitle in episode path.":[null,"lad være tomt hvis du ønsker at gemme undertekster i stien for episoden."],"Subtitle Find Frequency":[null,"Interval for søgning efter undertekster"],"time in hours between scans (default: 1)":[null,"tid i timer mellem hver skanning (standard: 1)"],"Include Specials":[null,""],"include the show's specials when searching for subtitles?":[null,""],"Perfect matches":[null,"Perfekt match"],"only download subtitles that match: release group, video codec, audio codec and resolution":[null,"download kun undertekster som mathcer: Release group, video codec, audio coded og resolution"],"if disabled you may get out of sync subtitles":[null,""],"Subtitles History":[null,"Underteksthistorik"],"log downloaded Subtitle on History page?":[null,"log downloaded undertekster på historik-siden?"],"Subtitles Multi-Language":[null,""],"append language codes to subtitle filenames?":[null,""],"this option is required if you use multiple subtitle languages":[null,""],"Delete unwanted subtitles":[null,"Slet uønskede undertekster"],"enable to delete unwanted subtitle languages bundled with release":[null,""],"Embedded Subtitles":[null,"Integrerede undertekster"],"ignore subtitles embedded inside video file?":[null,"ignorer undertekster integrerede ind i videofiler?"],"this will ignore <u>all</u> embedded subtitles for every video file!":[null,""],"Hearing Impaired Subtitles":[null,"Hørehæmmede undertekster"],"download hearing impaired style subtitles?":[null,""],"See":[null,"Se"],"for a script arguments description.":[null,""],"Additional scripts separated by <b>|</b>.":[null,""],"Scripts are called after each episode has searched and downloaded subtitles.":[null,""],"For any scripted languages, include the interpreter executable before the script. See the following example":[null,""],"For Windows:":[null,""],"For Linux / OS X:":[null,""],"Subtitle Providers":[null,""],"Check off and drag the plugins into the order you want them to be used.":[null,""],"At least one plugin is required.":[null,""]," Web-scraping plugin":[null,""],"Provider Settings":[null,""],"Set user and password for each provider":[null,""],"User Name":[null,"Brugernavn"],"Change Show":[null,"Ændre Serie"],"Prev Show":[null,"Forrige Serie"],"Next Show":[null,"Næste Serie"],"Jump to Season":[null,"Gå til Sæson"],"Specials":[null,"Specielle"],"Poster for":[null,""],"Stars":[null,"Stjerner"],"minutes":[null,"minutter"],"View other popular {genre} shows on trakt.tv.":[null,""],"View other popular {imdbgenre} shows on IMDB.":[null,""],"Allowed":[null,"Tilladt"],"Preferred":[null,"Foretrukken"],"Originally Airs":[null,"Sendt oprindelig"],"Show Status":[null,"Serie Status"],"Default EP Status":[null,"Standard Episodestatus"],"Location":[null,"Placering"],"Missing":[null,"Mangler"],"Scene Name":[null,"Scene navn"],"Required Words":[null,"Krævede ord"],"Ignored Words":[null,"Ignorerede ord"],"Size":[null,"Størrelse"],"Info Language":[null,"Info sprog"],"Subtitles SR Metadata":[null,""],"Season Folders":[null,"Sæson mapper"],"Paused":[null,"På pause"],"Air-by-Date":[null,"Udsendelsesdato"],"Sports":[null,"Sport"],"DVD Order":[null,"DVD sortering"],"Scene Numbering":[null,"Scene-nummerering"],"Select Filtered Episodes":[null,"Vælg filtrerede episoder"],"Clear All":[null,"Fjern alle"],"Change selected episodes to":[null,"Ændre valgte episoder til"],"Select Columns":[null,"Vælg Kolonner"],"NFO":[null,"NFO"],"TBN":[null,"TBN"],"Episode":[null,"Episode"],"Absolute":[null,"Absolutte"],"Scene":[null,"Scene"],"Scene Absolute":[null,"Scene absolutte"],"File Name":[null,"Filnavn"],"Airdate":[null,"Udsendelsesdato"],"Download":[null,"Hent"],"Change the value here if scene numbering differs from the indexer episode numbering":[null,"Ændre værdien her, hvis scene nummerering adskiller sig fra indekseringen episode nummerering"],"Change the value here if scene absolute numbering differs from the indexer absolute numbering":[null,"Ændre værdien her, hvis scene absolutte nummerering adskiller sig fra indekseringen absolutte nummerering"],"Manual Search":[null,"Manuel søgning"],"Do you want to mark this episode as failed?":[null,"Vil du markere denne episode, som mislykket?"],"The episode release name will be added to the failed history, preventing it to be downloaded again.":[null,"Episodens udgivelses navn vil blive tilføjet fejl historikken, for at forhindre at den hentes igen."],"Do you want to include the current episode quality in the search?":[null,"Vil du inkludere nuværende episodekvalitet i søgningen?"],"Choosing No will ignore any releases with the same episode quality as the one currently downloaded/snatched.":[null,"Hvis du vælger Nej, ignoreres alle udgivelser med samme episodekvalitet som den episoden som på nuværende tidspunkt er hentet ned/hentet."],"Download subtitle":[null,""],"Do you want to re-download the subtitle for this language?":[null,""],"It will overwrite your current subtitle":[null,""],"Format":[null,"Format"],"Advanced":[null,"Advancerede"],"Main Settings":[null,"Vigtigste indstillinger"],"Show Location":[null,"Serie placering"],"Preferred Quality":[null,"Foretrukne kvalitet"],"Default Episode Status":[null,"Standard Episodestatus"],"this will set the status for future episodes.":[null,""],"this only applies to episode filenames and the contents of metadata files.":[null,""],"search for subtitles":[null,"søg efter undertekster"],"Use SR Metdata":[null,""],"use SickRage metadata when searching for subtitle, this will override the autodiscovered metadata":[null,""],"pause this show (SickRage will not download episodes)":[null,"sæt denne serie på pause (SickRage ikke vil hente episoder)"],"Format Settings":[null,"Formatindstillinger"],"Air by date":[null,"Udsendelsesdato"],"check if the show is released as Show.03.02.2010 rather than Show.S02E03.":[null,"kontrollere at serien er udgivet som Serie.03.02.2010 snarere end Show.S02E03."],"in case of an air date conflict between regular and special episodes, the later will be ignored.":[null,""],"check if the show is Anime and episodes are released as Show.265 rather than Show.S02E03":[null,"kontrollere at serien er Anime og episoder er udgivet som Serie.265 snarere end Serie.S02E03"],"check if the show is a sporting or MMA event released as Show.03.02.2010 rather than Show.S02E03":[null,"kontrollere at serien er en sports eller MMA event udgivet som Serie.03.02.2010 snarere end Serie.S02E03"],"Season folders":[null,"Sæson mapper"],"group episodes by season folder (uncheck to store in a single folder)":[null,"gruppér episoder i sæson mappe (Fjern markeringen for at gemme i en enkelt mappe)"],"search by scene numbering (uncheck to search by indexer numbering)":[null,"søg efter scene nummerering (Fjern markeringen for at søge efter indekseringen nummerering)"],"use the DVD order instead of the air order":[null,"bruge DVD rækkefølge i stedet for udsendelses rækkefølgen"],"a \"Force Full Update\" is necessary, and if you have existing episodes you need to sort them manually.":[null,""],"comma-separated <i>e.g. \"word1,word2,word3</i>\"":[null,""],"search results with one or more words from this list will be ignored.":[null,""],"e.g. \"word1,word2,word3\"":[null,"fx \"ord1,ord2,ord3\""],"search results with no words from this list will be ignored.":[null,""],"Scene Exception":[null,"Scene undtagelser"],"this will affect episode search on NZB and torrent providers.":[null,""],"this list appends to the original show name.":[null,""],"WARNING logs":[null,"Advarselslogs"],"ERROR logs":[null,"FEJLlogs"],"There are no events to display.":[null,"Der er ingen begivenheder at vise."],"Limit":[null,""],"Layout":[null,""],"HistoryLayout":[null,""],"Compact":[null,"Kompakt"],"Detailed":[null,"Detaljeret"],"Time":[null,""],"Provider":[null,"Udbyder"],"Missing Provider":[null,"Mangler udbyder"],"missing provider":[null,"mangler udbyder"],"Directory":[null,"Mappe"],"Show Name (tvshow.nfo)":[null,"Serie navn (tvshow.nfo)"],"Indexer":[null,""],"Enter the folder containing the episode":[null,"Angiv den mappe, der indeholder episoden"],"Process Method to be used":[null,""],"Copy":[null,"Kopiér"],"Move":[null,"Flyt"],"Hard Link":[null,""],"Symbolic Link":[null,""],"Symbolic Link Reversed":[null,""],"Force already Post Processed Dir/Files":[null,""],"Mark Dir/Files as priority download":[null,""],"(Check it to replace the file even if it exists at higher quality)":[null,"(Marker for at erstatte filen, selv om den findes i højere kvalitet)"],"Delete files and folders":[null,"Slet filer og mapper"],"(Check it to delete files and folders like auto processing)":[null,""],"Don't use processing queue":[null,""],"(If checked this will return the result of the process here, but may be slow!)":[null,""],"Mark download as failed":[null,"Markér download som mislykkedes"],"Process":[null,""],"Download subtitles for this show?":[null,"Hent undertekster til denne serie?"],"use SickRage metadata when searching for subtitle, <br />this will override the autodiscovered metadata":[null,""],"Status for previously aired episodes":[null,"Status for tidligere udsendte episoder"],"Status for all future episodes":[null,"Status for alle fremtidige episoder"],"Group episodes by season folder?":[null,""],"Is this show an Anime?":[null,"Er denne serie en Anime?"],"Is this show scene numbered?":[null,"Er denne serie scene nummereret?"],"Save Defaults":[null,"Gem standardindstillinger"],"Use current values as the defaults":[null,"Brug aktuelle værdier som standarder"],"<p>Select your preferred fansub groups from the <b>Available Groups</b> and add them to the <b>Whitelist</b>. Add groups to the <b>Blacklist</b> to ignore them.</p>\n <p>The <b>Whitelist</b> is checked <i>before</i> the <b>Blacklist</b>.</p>\n <p>Groups are shown as <b>Name</b> | <b>Rating</b> | <b>Number of subbed episodes</b>.</p>\n <p>You may also add any fansub group not listed to either list manually.</p>\n <p>When doing this please note that you can only use groups listed on anidb for this anime.\n <br>If a group is not listed on anidb but subbed this anime, please correct anidb's data.</p>":[null,"<p>Vælg dine foretrukne fansub grupper fra <b>Tilgængelige grupper</b> og læg dem til i <b>Hvidlisten</b>. Læg til grupper i <b>Sortelisten</b> for at ignorere dem.</p>\n <p><b>Hvidelisten</b> tjekkes <i>før</i> <b>Sortelisten</b>.</p>\n <p>Grupper vises som <b>Navn</b> | <b>Karakter</b> | <b>Antal tekstede episoder</b>.</p>\n <p>Du kan også lægge til fansub-grupper som ikke ligger i nogen af listene manuelt.</p>\n <p>Når du gør dette, venligst bemærk at du kan kun bruge grupper listet på anidb for denne anime.\n <br>Hvis en gruppe ikke er listet på anidb, men har tekstet denne animen, venligst korriger anidb sin information.</p>"],"Whitelist":[null,""],"Available Groups":[null,""],"Add to Whitelist":[null,""],"Add to Blacklist":[null,""],"Blacklist":[null,""],"Custom Group":[null,""],"Allowed Quality:":[null,"Tilladt kvalitet:"],"Preferred Quality:":[null,"Foretrukken kvalitet:"],"Filter Show Name":[null,"Filtrer Serie navn"],"Root":[null,""],"All":[null,"Alle"],"Clear Filter(s)":[null,"Ryd filter"],"Poster":[null,"Plakat"],"Small Poster":[null,""],"Banner":[null,"Banner"],"Simple":[null,"Simpel"],"Next Episode":[null,"Næste Episode"],"Progress":[null,"Fremskridt"],"Direction":[null,"Retning"],"Ascending":[null,"Stigende"],"Descending":[null,"Faldende"],"Poster Size":[null,"Plakatstørrelse"],"Continuing":[null,"Fortsætter"],"Ended":[null,""],"Total":[null,"Total"],"Invalid date":[null,"Ugyldig dato"],"No Network":[null,"Intet netværk"],"Next Ep":[null,"Næste Ep"],"Prev Ep":[null,"Forrige Ep"],"Show":[null,"Show"],"Downloads":[null,"Downloads"],"Active":[null,"Aktiv"],"loading":[null,"indlæser"],"<p><b><u>Preferred</u></b> qualities will replace those in <b><u>allowed</u></b>, even if they are lower.</p>":[null,"<p><b><u>Foretrukne</u></b> kvaliteter vil erstatte dem, der er <b><u>tilladt</u></b>, selvom de er lavere.</p>"],"New":[null,"Ny"],"Set as Default":[null,"Sæt som standard"],"Remember me":[null,"Husk mig"],"Edit Selected":[null,"Rediger markeret"],"Subtitle":[null,"Undertekst"],"Default Ep Status":[null,""],"Update":[null,"Opdater"],"Rescan":[null,"Scan igen"],"Rename":[null,"Omdøb"],"Search Subtitle":[null,""],"Force Metadata Regen":[null,""],"Snatched (Allowed)":[null,""],"Jump to Show":[null,"Gå til Serie"],"Force Backlog":[null,""],"Manage episodes with status":[null,"Administrer episoder med status"],"Manage":[null,"Administrer"],"None of your episodes have status":[null,""],"Shows containing":[null,"Serier som indeholder"],"episodes":[null,"episoder"],"Set checked shows/episodes to":[null,"Sæt markerede serier/episoder til"],"Go":[null,"Kør"],"Select all":[null,"Markér alle"],"Clear all":[null,"Ryd alle"],"Release":[null,"Udgivelse"],"Backlog Search":[null,""],"Not in progress":[null,"Ikke i gang"],"In Progress":[null,"I gang"],"Daily Search":[null,"Daglig søgning"],"Find Propers Search":[null,""],"Propers search disabled":[null,""],"Subtitle Search":[null,"Undertekst søgning"],"Subtitle search disabled":[null,""],"Search Queue":[null,""],"pending items":[null,"ventende elementer"],"Daily":[null,"Daglig"],"Manual":[null,""],"Changing any settings marked with (<span class=\"separator\">*</span>) will force a refresh of the selected shows.":[null,"Ændring af indstillinger mærket med (<span class=\"separator\"> *</span>) vil tvinge en opdatering af de valgte serier."],"Selected Shows":[null,"Valgte Serier"],"Root Directories":[null,""],"Current":[null,"Aktuelle"],"Keep":[null,"Behold"],"Custom":[null,"Brugerdefineret"],"Group episodes by season folder (set to \"No\" to store in a single folder).":[null,""],"Pause these shows (SickRage will not download episodes).":[null,"Pause disse serier (SickRage vil ikke hente episoder)."],"This will set the status for future episodes.":[null,"Dette sætter statussen for fremtidige episoder."],"Search by scene numbering (set to \"No\" to search by indexer numbering).":[null,""],"Set if these shows are Anime and episodes are released as Show.265 rather than Show.S02E03":[null,"Aktiver hvis serien er Anime og episoderne er udgivet som Serie.265 i stedet for Serie.S02E03"],"Set if these shows are sporting or MMA events released as Show.03.02.2010 rather than Show.S02E03.":[null,"Aktiver hvis serien er en sports eller MMA event som er udgivet som Serie.03.02.2010 i stedet for Serie.S02E03."],"In case of an air date conflict between regular and special episodes, the later will be ignored.":[null,"I tilfælde af en datokonflikt mellem almindelige og specielle episoder, vil det sidste blive ignoreret."],"Set if these shows are released as Show.03.02.2010 rather than Show.S02E03.":[null,"Aktiver hvis serien er udgivet som Serie.03.02.2010 i stedet for Serie.S02E03."],"Search for subtitles.":[null,"Søg efter undertekster."],"All of your episodes have {subsLanguage} subtitles.":[null,"Alle dine episoder har {subsLanguage} undertekster."],"Manage episodes without":[null,"Administrer episoder uden"],"Episodes without {subsLanguage} subtitles.":[null,"Episoder uden {subsLanguage} undertekster."],"Episodes without {subtitleLanguage} (undefined) subtitles.":[null,"Episoder uden {subtitleLanguage} (undefined) undertekster."],"Download missed subtitles for selected episodes":[null,"Download manglende undertekster til valgte episoder"],"Performing Restart":[null,"Udfører genstart"],"Waiting for SickRage to shut down":[null,"Venter på at SickRage lukker ned"],"Waiting for SickRage to start again":[null,"Venter på at SickRage starter igen"],"Loading the default page":[null,""],"Error: The restart has timed out, perhaps something prevented SickRage from starting again?":[null,""],"Key":[null,"Nøgle"],"Missed":[null,"Mangler"],"Today":[null,"I dag"],"Soon":[null,"Snart"],"Later":[null,"Senere"],"Subscribe":[null,"Abonnér"],"Date":[null,"Dato"],"View Paused":[null,"Vis på pause"],"Hidden":[null,"Skjult"],"Shown":[null,"Vist"],"Calendar":[null,"Kalender"],"List":[null,"Liste"],"Ends":[null,"Slutter"],"Next Ep Name":[null,"Næste Ep navn"],"Run time":[null,""],"Indexers":[null,""],"No shows for this day":[null,"Ingen serier denne dag"],"Airs":[null,"Sendetid"],"Plot":[null,"Handling"],"Show Update":[null,"Opdater serie"],"Version Check":[null,"Versionskontrol"],"Proper Finder":[null,""],"Post Process":[null,"Efterbehandling"],"Subtitles Finder":[null,""],"Scheduler":[null,""],"Alive":[null,""],"Start Time":[null,"Starttidspunkt"],"Cycle Time":[null,""],"Next Run":[null,"Næste kørsel"],"Last Run":[null,"Sidste kørsel"],"Silent":[null,"Lydløs"],"True":[null,"Sandt"],"N/A":[null,"Ikke tilgængelig"],"Show id":[null,"Serie-Id"],"Show name":[null,"Serie navn"],"Priority":[null,"Prioritet"],"Added":[null,"Tilføjet"],"Queue type":[null,"Køtype"],"LOW":[null,"LAV"],"NORMAL":[null,"NORMAL"],"HIGH":[null,"HØJ"],"Disk Space":[null,"Diskplads"],"Free space":[null,"Ledig diskplads"],"TV Download Directory":[null,""],"Media Root Directories":[null,""],"Preview of the proposed name changes":[null,""],"All Seasons":[null,"Alle Sæsoner"],"select all":[null,""],"Rename Selected":[null,"Omdøb valgte"],"Cancel Rename":[null,"Annullere omdøbning"],"Old Location":[null,"Gammel Placering"],"New Location":[null,"Ny Placering"],"Trakt API did not return any results, please check your config.":[null,"Trakt API har ikke returneret nogen resultater, tjek venligst din konfiguration."],"votes":[null,"stemmer"],"Remove Show":[null,"Fjern Serie"],"Level":[null,""],"Filter":[null,""],"All non-absolute folder locations are relative to ":[null,"Alle ikke-absolutte mappeplaceringer er relativ til "],"Manual Post-Processing":[null,"Manuel efterbehandling"],"Episode Status Management":[null,"Episode Status Håndtering"],"Update PLEX":[null,"Opdatere PLEX"],"Update KODI":[null,"Opdatere KODI"],"Update Emby":[null,"Opdater Emby"],"Manage Torrents":[null,"Administrer Torrents"],"Missed Subtitle Management":[null,"Manglende Undertekst Håndtering"],"Help & Info":[null,"Hjælp & Info"],"Backup & Restore":[null,"Backup & Gendan"],"Tools":[null,"Værktøjer"],"Support SickRage":[null,"Støt SickRage"],"View Errors":[null,"Se fejl"],"View Warnings":[null,"Se advarsler"],"View Log":[null,"Se Log"],"Check For Updates":[null,"Tjek For opdateringer"],"Restart":[null,"Genstart"],"Shutdown":[null,"Luk Ned"],"Logout":[null,"Log ud"],"Server Status":[null,"Serverstatus"],"View overview of snatched episodes":[null,""],"Episodes Downloaded":[null,"Episoder downloadet"],"Memory used":[null,"Hukommelse, der bruges"],"Load time":[null,""],"Branch":[null,"Gren"],"Now":[null,"Nu"]}}}} \ No newline at end of file diff --git a/locale/da_DK/LC_MESSAGES/messages.mo b/locale/da_DK/LC_MESSAGES/messages.mo index 3ed624e6483731c7bd99b2aea8b5be5b331e5bdc..21112ce08dfe57417e8adaf9ea6fc473321a8961 100644 Binary files a/locale/da_DK/LC_MESSAGES/messages.mo and b/locale/da_DK/LC_MESSAGES/messages.mo differ diff --git a/locale/da_DK/LC_MESSAGES/messages.po b/locale/da_DK/LC_MESSAGES/messages.po index 126699f5c779b363e57e6560262b764aac2e2ae5..02c7cd52180277448daf50868f9ddb063556ccb8 100644 --- a/locale/da_DK/LC_MESSAGES/messages.po +++ b/locale/da_DK/LC_MESSAGES/messages.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: sickrage\n" "Report-Msgid-Bugs-To: miigotu@gmail.com\n" -"POT-Creation-Date: 2017-03-25 09:28-0700\n" -"PO-Revision-Date: 2017-03-25 12:29-0400\n" +"POT-Creation-Date: 2017-03-28 09:10-0700\n" +"PO-Revision-Date: 2017-03-28 12:11-0400\n" "Last-Translator: miigotu <miigotu@gmail.com>\n" "Language-Team: Danish\n" "MIME-Version: 1.0\n" @@ -90,7 +90,7 @@ msgid "Biography" msgstr "Biografi" #: gui/slick/views/config_general.mako:78 gui/slick/views/layouts/main.mako:145 -#: sickbeard/__init__.py:79 sickbeard/webserve.py:3807 +#: sickbeard/__init__.py:79 sickbeard/webserve.py:3778 msgid "History" msgstr "Historik" @@ -103,7 +103,7 @@ msgid "Western" msgstr "Western" #: gui/slick/views/config_general.mako:79 gui/slick/views/layouts/main.mako:221 -#: sickbeard/__init__.py:80 sickbeard/webserve.py:2385 +#: sickbeard/__init__.py:80 sickbeard/webserve.py:2384 msgid "News" msgstr "Nyheder" @@ -238,6 +238,34 @@ msgstr "Ignoreret" msgid "Subtitled" msgstr "Undertekstet" +#: sickbeard/helpers.py:1887 +msgid "For best results please set the Download Station alias as" +msgstr "For de bedste resultater skal du indstille Download Station alias som" + +#: sickbeard/helpers.py:1888 +msgid "You can check this setting in the Synology DSM" +msgstr "Du kan kontrollere denne indstilling i Synology DSM" + +#: sickbeard/helpers.py:1888 sickbeard/helpers.py:1890 +msgid "Control Panel" +msgstr "Kontrolpanel" + +#: sickbeard/helpers.py:1888 +msgid "Application Portal" +msgstr "Applikations Portal" + +#: sickbeard/helpers.py:1889 +msgid "Make sure you allow DSM to be embedded with iFrames too in" +msgstr "Vær sikker du tilllader at DSM integreres med iFrames også i" + +#: sickbeard/helpers.py:1890 +msgid "DSM Settings" +msgstr "DSM indstillinger" + +#: sickbeard/helpers.py:1890 +msgid "Security" +msgstr "Sikkerhed" + #: sickbeard/logger.py:474 msgid "<No Filter>" msgstr "Ingen filter" @@ -308,15 +336,15 @@ msgstr "Trakt Checker" msgid "Event" msgstr "Begivenhed" -#: sickbeard/logger.py:491 sickbeard/webserve.py:1339 sickbeard/webserve.py:1342 -#: sickbeard/webserve.py:1520 sickbeard/webserve.py:1529 sickbeard/webserve.py:1717 -#: sickbeard/webserve.py:1728 sickbeard/webserve.py:1751 sickbeard/webserve.py:1764 -#: sickbeard/webserve.py:1769 sickbeard/webserve.py:1785 sickbeard/webserve.py:1790 -#: sickbeard/webserve.py:1854 sickbeard/webserve.py:1857 sickbeard/webserve.py:1863 -#: sickbeard/webserve.py:1866 sickbeard/webserve.py:1873 sickbeard/webserve.py:1876 -#: sickbeard/webserve.py:1899 sickbeard/webserve.py:1997 sickbeard/webserve.py:2002 -#: sickbeard/webserve.py:2007 sickbeard/webserve.py:2036 sickbeard/webserve.py:2040 -#: sickbeard/webserve.py:2045 +#: sickbeard/logger.py:491 sickbeard/webserve.py:1338 sickbeard/webserve.py:1341 +#: sickbeard/webserve.py:1519 sickbeard/webserve.py:1528 sickbeard/webserve.py:1716 +#: sickbeard/webserve.py:1727 sickbeard/webserve.py:1750 sickbeard/webserve.py:1763 +#: sickbeard/webserve.py:1768 sickbeard/webserve.py:1784 sickbeard/webserve.py:1789 +#: sickbeard/webserve.py:1853 sickbeard/webserve.py:1856 sickbeard/webserve.py:1862 +#: sickbeard/webserve.py:1865 sickbeard/webserve.py:1872 sickbeard/webserve.py:1875 +#: sickbeard/webserve.py:1898 sickbeard/webserve.py:1996 sickbeard/webserve.py:2001 +#: sickbeard/webserve.py:2006 sickbeard/webserve.py:2035 sickbeard/webserve.py:2039 +#: sickbeard/webserve.py:2044 msgid "Error" msgstr "Fejl" @@ -333,6 +361,7 @@ msgstr "Tråd" msgid "Main" msgstr "Hoved" +#: gui/slick/js/ajaxEpSearch.js:146 gui/slick/js/ajaxEpSearch.js:147 #: gui/slick/views/inc_home_showList.mako:27 sickbeard/show_queue.py:298 msgid "Loading" msgstr "" @@ -372,867 +401,835 @@ msgstr "Backup af konfigurationer mislykkedes. Opdatering afbrydes" msgid "No update needed" msgstr "Opdatering ikke nødvendig" -#: sickbeard/webserve.py:170 +#: sickbeard/webserve.py:171 msgid "Mako Error" msgstr "Mako fejl" -#: sickbeard/webserve.py:195 +#: sickbeard/webserve.py:196 msgid "Oops" msgstr "Ups" -#: sickbeard/webserve.py:197 +#: sickbeard/webserve.py:198 msgid "Wrong API key used" msgstr "Forkert API-nøgle brugt" -#: gui/slick/views/login.mako:34 sickbeard/webserve.py:302 +#: gui/slick/views/login.mako:34 sickbeard/webserve.py:303 msgid "Login" msgstr "Login" -#: sickbeard/webserve.py:406 +#: sickbeard/webserve.py:392 msgid "API Key not generated" msgstr "API-nøgle ikke genereret" -#: sickbeard/webserve.py:409 +#: sickbeard/webserve.py:395 msgid "API Builder" msgstr "API Builder" #: gui/slick/views/config_general.mako:77 gui/slick/views/layouts/main.mako:141 -#: sickbeard/webserve.py:512 +#: sickbeard/webserve.py:498 msgid "Schedule" msgstr "Tidsplan" -#: sickbeard/webserve.py:610 +#: sickbeard/webserve.py:609 msgid "Test 1" msgstr "Test 1" -#: sickbeard/webserve.py:610 +#: sickbeard/webserve.py:609 msgid "This is test number 1" msgstr "Dette er test nummer 1" -#: sickbeard/webserve.py:611 +#: sickbeard/webserve.py:610 msgid "Test 2" msgstr "Test 2" -#: sickbeard/webserve.py:611 +#: sickbeard/webserve.py:610 msgid "This is test number 2" msgstr "Dette er test nummer 2" -#: sickbeard/webserve.py:634 +#: sickbeard/webserve.py:633 msgid "You're using the {branch} branch. Please use 'master' unless specifically asked" msgstr "Du bruger {branch}-grenen. Brug venligst 'master' medmindre du specifikt bliver spurgt om det" -#: sickbeard/webserve.py:698 sickbeard/webserve.py:703 +#: sickbeard/webserve.py:697 sickbeard/webserve.py:702 msgid "Invalid show parameters" msgstr "Ugyldig serie parametre" -#: sickbeard/webserve.py:710 +#: sickbeard/webserve.py:709 msgid "Invalid parameters" msgstr "Ugyldige parametre" -#: sickbeard/webserve.py:713 sickbeard/webserve.py:1899 +#: sickbeard/webserve.py:712 sickbeard/webserve.py:1898 msgid "Episode couldn't be retrieved" msgstr "Episode kunne ikke hentes" -#: sickbeard/webserve.py:759 sickbeard/webserve.py:1268 sickbeard/webserve.py:1297 +#: sickbeard/webserve.py:758 sickbeard/webserve.py:1267 sickbeard/webserve.py:1296 msgid "Home" msgstr "Hjem" -#: gui/slick/views/layouts/main.mako:127 sickbeard/webserve.py:759 +#: gui/slick/views/layouts/main.mako:127 sickbeard/webserve.py:758 msgid "Show List" msgstr "Serie Liste" -#: sickbeard/webserve.py:807 +#: sickbeard/webserve.py:806 msgid "Error: Unsupported Request. Send jsonp request with 'callback' variable in the query string." msgstr "Fejl: Ikke-understøttet anmodning. Send jsonp anmodning med \"callback\" variabel i forespørgselstrengen." -#: sickbeard/webserve.py:851 +#: sickbeard/webserve.py:850 msgid "Success. Connected and authenticated" msgstr "Succes. Forbundet og godkendt" -#: sickbeard/webserve.py:853 +#: sickbeard/webserve.py:852 msgid "Authentication failed. SABnzbd expects" msgstr "Godkendelse mislykkedes. SABnzbd forventer" -#: sickbeard/webserve.py:853 +#: sickbeard/webserve.py:852 msgid "as authentication method" msgstr "som godkendelsesmetode" -#: sickbeard/webserve.py:855 +#: sickbeard/webserve.py:854 msgid "Unable to connect to host" msgstr "Kan ikke forbinde til serveren" -#: sickbeard/webserve.py:876 +#: sickbeard/webserve.py:875 msgid "SMS sent successfully" msgstr "SMS sendt succesfuldt" -#: sickbeard/webserve.py:878 +#: sickbeard/webserve.py:877 msgid "Problem sending SMS: {message}" msgstr "Problemer med at sende SMS: {message}" -#: sickbeard/webserve.py:885 +#: sickbeard/webserve.py:884 msgid "Telegram notification succeeded. Check your Telegram clients to make sure it worked" msgstr "Telegram notifikation lykkedes. Tjek dine Telegram klienter for at sikre sig det virkede" -#: sickbeard/webserve.py:887 +#: sickbeard/webserve.py:886 msgid "Error sending Telegram notification: {message}" msgstr "Fejl ved afsendelse af Telegram notifikation: {message}" -#: sickbeard/webserve.py:894 +#: sickbeard/webserve.py:893 msgid "join notification succeeded. Check your join clients to make sure it worked" msgstr "" -#: sickbeard/webserve.py:896 +#: sickbeard/webserve.py:895 msgid "Error sending join notification: {message}" msgstr "Fejl ved afsendelse af join notifikation: {message}" -#: sickbeard/webserve.py:906 +#: sickbeard/webserve.py:905 msgid " with password" msgstr " med adgangskode" -#: sickbeard/webserve.py:908 +#: sickbeard/webserve.py:907 msgid "Registered and Tested growl successfully {growl_host}" msgstr "Registreret og testet growl med succes {growl_host}" -#: sickbeard/webserve.py:910 +#: sickbeard/webserve.py:909 msgid "Registration and Testing of growl failed {growl_host}" msgstr "Registrering og test af growl mislykkedes {growl_host}" -#: sickbeard/webserve.py:917 +#: sickbeard/webserve.py:916 msgid "Test prowl notice sent successfully" msgstr "Test prowl meddelelse sendt succesfuldt" -#: sickbeard/webserve.py:919 +#: sickbeard/webserve.py:918 msgid "Test prowl notice failed" msgstr "Test prowl meddelelse mislykkedes" -#: sickbeard/webserve.py:926 +#: sickbeard/webserve.py:925 msgid "Boxcar2 notification succeeded. Check your Boxcar2 clients to make sure it worked" msgstr "Boxcar2 notifikation lykkedes. Kontrollere dine Boxcar2 klienter for at sikre sig det virkede" -#: sickbeard/webserve.py:928 +#: sickbeard/webserve.py:927 msgid "Error sending Boxcar2 notification" msgstr "Fejl ved afsendelse af Boxcar2 notifikation" -#: sickbeard/webserve.py:935 +#: sickbeard/webserve.py:934 msgid "Pushover notification succeeded. Check your Pushover clients to make sure it worked" msgstr "Pushover notifikation lykkedes. Tjek din Pushover klienter for at sikre sig det virkede" -#: sickbeard/webserve.py:937 +#: sickbeard/webserve.py:936 msgid "Error sending Pushover notification" msgstr "Fejl ved afsendelse af Pushover notifikation" -#: sickbeard/webserve.py:949 +#: sickbeard/webserve.py:948 msgid "Key verification successful" msgstr "Nøgle verifikation vellykket" -#: sickbeard/webserve.py:951 +#: sickbeard/webserve.py:950 msgid "Unable to verify key" msgstr "Kan ikke verificerer nøglen" -#: sickbeard/webserve.py:958 +#: sickbeard/webserve.py:957 msgid "Tweet successful, check your twitter to make sure it worked" msgstr "Tweet vellykket, tjek din twitter for at sikre sig det virkede" -#: sickbeard/webserve.py:960 +#: sickbeard/webserve.py:959 msgid "Error sending tweet" msgstr "Fejl ved afsendelse af tweet" -#: sickbeard/webserve.py:965 +#: sickbeard/webserve.py:964 msgid "Please enter a valid account sid" msgstr "Angiv en gyldig sid konto" -#: sickbeard/webserve.py:968 +#: sickbeard/webserve.py:967 msgid "Please enter a valid auth token" msgstr "Angiv en gyldig auth token" -#: sickbeard/webserve.py:971 +#: sickbeard/webserve.py:970 msgid "Please enter a valid phone sid" msgstr "Angiv et gyldigt telefon nummer" -#: sickbeard/webserve.py:974 +#: sickbeard/webserve.py:973 msgid "Please format the phone number as \"+1-###-###-####\"" msgstr "Venligst skriv telefonnummer som \"+1-###-###-####\"" -#: sickbeard/webserve.py:978 +#: sickbeard/webserve.py:977 msgid "Authorization successful and number ownership verified" msgstr "Autorisation lykkedes og ejerskab af nummer bekræftet" -#: sickbeard/webserve.py:980 +#: sickbeard/webserve.py:979 msgid "Error sending sms" msgstr "Fejl ved afsendelse af sms" -#: sickbeard/webserve.py:986 +#: sickbeard/webserve.py:985 msgid "Slack message successful" msgstr "" -#: sickbeard/webserve.py:988 +#: sickbeard/webserve.py:987 msgid "Slack message failed" msgstr "" -#: sickbeard/webserve.py:994 +#: sickbeard/webserve.py:993 msgid "Discord message successful" msgstr "" -#: sickbeard/webserve.py:996 +#: sickbeard/webserve.py:995 msgid "Discord message failed" msgstr "" -#: sickbeard/webserve.py:1006 +#: sickbeard/webserve.py:1005 msgid "Test KODI notice sent successfully to {kodi_host}" msgstr "Test KODI meddelelse sendt til {kodi_host}" -#: sickbeard/webserve.py:1008 +#: sickbeard/webserve.py:1007 msgid "Test KODI notice failed to {kodi_host}" msgstr "Test KODI meddelelse fejlede ved {kodi_host}" -#: sickbeard/webserve.py:1023 +#: sickbeard/webserve.py:1022 msgid "Successful test notice sent to Plex Home Theater ... {plex_clients}" msgstr "Vellykket test meddelelse sendt til Plex Home Theater... {plex_clients}" -#: sickbeard/webserve.py:1025 +#: sickbeard/webserve.py:1024 msgid "Test failed for Plex Home Theater ... {plex_clients}" msgstr "Test mislykkedes for Plex Home Theater... {plex_clients}" -#: sickbeard/webserve.py:1028 +#: sickbeard/webserve.py:1027 msgid "Tested Plex Home Theater(s)" msgstr "Testede Plex Home Theater(s)" -#: sickbeard/webserve.py:1042 +#: sickbeard/webserve.py:1041 msgid "Successful test of Plex Media Server(s) ... {plex_servers}" msgstr "Succesfuld test af Plex Media Server(s) ... {plex_servers}" -#: sickbeard/webserve.py:1044 +#: sickbeard/webserve.py:1043 msgid "Test failed, No Plex Media Server host specified" msgstr "Test mislykkedes, ingen Plex Media Server vært angivet" -#: sickbeard/webserve.py:1046 +#: sickbeard/webserve.py:1045 msgid "Test failed for Plex Media Server(s) ... {plex_servers}" msgstr "Test mislykkedes for Plex Media serverne... {plex_servers}" -#: sickbeard/webserve.py:1049 +#: sickbeard/webserve.py:1048 msgid "Tested Plex Media Server host(s)" msgstr "Testede Plex medieserver vært(er)" -#: sickbeard/webserve.py:1057 +#: sickbeard/webserve.py:1056 msgid "Tried sending desktop notification via libnotify" msgstr "Prøvede at sende desktop notifikation via libnotify" -#: sickbeard/webserve.py:1066 +#: sickbeard/webserve.py:1065 msgid "Test notice sent successfully to {emby_host}" msgstr "Test besked sendt uden fejl til {emby_host}" -#: sickbeard/webserve.py:1068 +#: sickbeard/webserve.py:1067 msgid "Test notice failed to {emby_host}" msgstr "Test besked fejlede til {emby_host}" -#: sickbeard/webserve.py:1076 +#: sickbeard/webserve.py:1075 msgid "Successfully started the scan update" msgstr "Startede scan opdatering succesfuldt" -#: sickbeard/webserve.py:1078 +#: sickbeard/webserve.py:1077 msgid "Test failed to start the scan update" msgstr "Test mislykkedes at starte scanningen opdatering" -#: sickbeard/webserve.py:1097 +#: sickbeard/webserve.py:1096 msgid "Test notice sent successfully to {nmj2_host}" msgstr "Test meddelelse sendt succesfuldt til {nmj2_host}" -#: sickbeard/webserve.py:1099 +#: sickbeard/webserve.py:1098 msgid "Test notice failed to {nmj2_host}" msgstr "Test meddelelse fejlede ved {nmj2_host}" -#: sickbeard/webserve.py:1119 +#: sickbeard/webserve.py:1118 msgid "Trakt Authorized" msgstr "Trakt godkendt" -#: sickbeard/webserve.py:1120 +#: sickbeard/webserve.py:1119 msgid "Trakt Not Authorized!" msgstr "Trakt ikke godkendt!" -#: sickbeard/webserve.py:1184 +#: sickbeard/webserve.py:1183 msgid "Test email sent successfully! Check inbox." msgstr "Test e-mail sendt med succes! Tjek indbakke." -#: sickbeard/webserve.py:1186 +#: sickbeard/webserve.py:1185 msgid "ERROR: {last_error}" msgstr "FEJL: {last_error}" -#: sickbeard/webserve.py:1193 +#: sickbeard/webserve.py:1192 msgid "Test NMA notice sent successfully" msgstr "Test NMA meddelelse sendt succesfuldt" -#: sickbeard/webserve.py:1195 +#: sickbeard/webserve.py:1194 msgid "Test NMA notice failed" msgstr "Test NMA meddelelse mislykkedes" -#: sickbeard/webserve.py:1202 +#: sickbeard/webserve.py:1201 msgid "Pushalot notification succeeded. Check your Pushalot clients to make sure it worked" msgstr "Pushalot notifikation lykkedes. Tjek dine Pushalot klienter for at sikre sig det virkede" -#: sickbeard/webserve.py:1204 +#: sickbeard/webserve.py:1203 msgid "Error sending Pushalot notification" msgstr "Fejl ved afsendelse af Pushalot notifikation" -#: sickbeard/webserve.py:1211 +#: sickbeard/webserve.py:1210 msgid "Pushbullet notification succeeded. Check your device to make sure it worked" msgstr "Pushbullet notifikation lykkedes. Kontrollere din enhed for at sikre sig det virkede" -#: sickbeard/webserve.py:1213 sickbeard/webserve.py:1223 sickbeard/webserve.py:1232 +#: sickbeard/webserve.py:1212 sickbeard/webserve.py:1222 sickbeard/webserve.py:1231 msgid "Error sending Pushbullet notification" msgstr "Fejl ved afsendelse af Pushbullet notifikation" #: gui/slick/views/displayShow.mako:436 gui/slick/views/inc_home_showList.mako:174 -#: gui/slick/views/manage.mako:49 sickbeard/webserve.py:1249 +#: gui/slick/views/manage.mako:49 sickbeard/webserve.py:1248 msgid "Status" msgstr "Status" -#: sickbeard/webserve.py:1268 sickbeard/webserve.py:1297 +#: sickbeard/webserve.py:1267 sickbeard/webserve.py:1296 msgid "Restarting SickRage" msgstr "Genstarter SickRage" -#: sickbeard/webserve.py:1300 +#: sickbeard/webserve.py:1299 msgid "Update Failed" msgstr "Opdatering mislykkedes" -#: sickbeard/webserve.py:1301 +#: sickbeard/webserve.py:1300 msgid "Update wasn't successful, not restarting. Check your log for more information." msgstr "Opdatering mislykkedes, genstarter ikke. Check log for flere informationer." -#: sickbeard/webserve.py:1308 +#: sickbeard/webserve.py:1307 msgid "Checking out branch" msgstr "Tjekker branch ud" -#: sickbeard/webserve.py:1311 +#: sickbeard/webserve.py:1310 msgid "Already on branch" msgstr "Er allerede på denne branch" -#: sickbeard/webserve.py:1339 +#: sickbeard/webserve.py:1338 msgid "Invalid show ID: {show}" msgstr "Ugyldigt serie ID: {show}" -#: sickbeard/webserve.py:1342 sickbeard/webserve.py:1871 sickbeard/webserve.py:2002 -#: sickbeard/webserve.py:2040 +#: sickbeard/webserve.py:1341 sickbeard/webserve.py:1870 sickbeard/webserve.py:2001 +#: sickbeard/webserve.py:2039 msgid "Show not in show list" msgstr "Serie er ikke i serielisten" #: gui/slick/views/inc_rootDirs.mako:31 gui/slick/views/manage.mako:38 -#: gui/slick/views/manage_massEdit.mako:74 sickbeard/webserve.py:1358 -#: sickbeard/webserve.py:2027 +#: gui/slick/views/manage_massEdit.mako:74 sickbeard/webserve.py:1357 +#: sickbeard/webserve.py:2026 msgid "Edit" msgstr "Rediger" -#: sickbeard/webserve.py:1368 +#: sickbeard/webserve.py:1367 msgid "This show is in the process of being downloaded - the info below is incomplete." msgstr "Denne serie er ved at blive hentet - informationerne nedenunder er ikke komplette." -#: sickbeard/webserve.py:1371 +#: sickbeard/webserve.py:1370 msgid "The information on this page is in the process of being updated." msgstr "Oplysningerne på denne side er ved at blive opdateret." -#: sickbeard/webserve.py:1374 +#: sickbeard/webserve.py:1373 msgid "The episodes below are currently being refreshed from disk" msgstr "Episoderne nedenfor opdateres i øjeblikket fra disken" -#: sickbeard/webserve.py:1377 +#: sickbeard/webserve.py:1376 msgid "Currently downloading subtitles for this show" msgstr "Downloader i øjeblikket undertekster til dette show" -#: sickbeard/webserve.py:1380 +#: sickbeard/webserve.py:1379 msgid "This show is queued to be refreshed." msgstr "Denne er serie er i kø til at blive opdateret." -#: sickbeard/webserve.py:1383 +#: sickbeard/webserve.py:1382 msgid "This show is queued and awaiting an update." msgstr "Dette show er i kø og venter på en opdatering." -#: sickbeard/webserve.py:1386 +#: sickbeard/webserve.py:1385 msgid "This show is queued and awaiting subtitles download." msgstr "" -#: gui/slick/js/core.js:4081 sickbeard/webserve.py:1391 +#: gui/slick/js/core.js:4081 sickbeard/webserve.py:1390 msgid "Resume" msgstr "Fortsæt" #: gui/slick/js/core.js:4081 gui/slick/views/viewlogs.mako:12 -#: sickbeard/webserve.py:1393 +#: sickbeard/webserve.py:1392 msgid "Pause" msgstr "Pause" #: gui/slick/views/editShow.mako:345 gui/slick/views/inc_blackwhitelist.mako:40 #: gui/slick/views/inc_blackwhitelist.mako:85 gui/slick/views/manage.mako:58 -#: gui/slick/views/manage_failedDownloads.mako:43 sickbeard/webserve.py:1395 +#: gui/slick/views/manage_failedDownloads.mako:43 sickbeard/webserve.py:1394 msgid "Remove" msgstr "Fjern" -#: sickbeard/webserve.py:1396 +#: sickbeard/webserve.py:1395 msgid "Re-scan files" msgstr "Gen-scan filer" -#: sickbeard/webserve.py:1397 +#: sickbeard/webserve.py:1396 msgid "Force Full Update" msgstr "Tving fuld opdatering" -#: sickbeard/webserve.py:1398 +#: sickbeard/webserve.py:1397 msgid "Update show in KODI" msgstr "Opdater serie i KODI" -#: sickbeard/webserve.py:1399 +#: sickbeard/webserve.py:1398 msgid "Update show in Emby" msgstr "Opdater show i Emby" -#: sickbeard/webserve.py:1402 +#: sickbeard/webserve.py:1401 msgid "Hide specials" msgstr "Skjul Specials" -#: sickbeard/webserve.py:1404 +#: sickbeard/webserve.py:1403 msgid "Show specials" msgstr "Vis Specials" -#: sickbeard/webserve.py:1406 sickbeard/webserve.py:2030 sickbeard/webserve.py:2031 +#: sickbeard/webserve.py:1405 sickbeard/webserve.py:2029 sickbeard/webserve.py:2030 msgid "Preview Rename" msgstr "Forhåndsvis omdøb" -#: sickbeard/webserve.py:1409 +#: sickbeard/webserve.py:1408 msgid "Download Subtitles" msgstr "Download undertekster" -#: sickbeard/webserve.py:1498 +#: sickbeard/webserve.py:1497 msgid "No scene exceptions" msgstr "Ingen scene undtagelser" -#: sickbeard/webserve.py:1516 sickbeard/webserve.py:1764 sickbeard/webserve.py:1785 +#: sickbeard/webserve.py:1515 sickbeard/webserve.py:1763 sickbeard/webserve.py:1784 msgid "Invalid show ID" msgstr "Ugyldigt serie ID" -#: sickbeard/webserve.py:1525 sickbeard/webserve.py:1769 sickbeard/webserve.py:1790 +#: sickbeard/webserve.py:1524 sickbeard/webserve.py:1768 sickbeard/webserve.py:1789 msgid "Unable to find the specified show" msgstr "Kan ikke finde det angivne show" -#: sickbeard/webserve.py:1550 +#: sickbeard/webserve.py:1549 msgid "Unable to retreive Fansub Groups from AniDB." msgstr "Ikke i stand til at hente Fansub grupper fra AniDB." -#: sickbeard/webserve.py:1559 sickbeard/webserve.py:1561 +#: sickbeard/webserve.py:1558 sickbeard/webserve.py:1560 msgid "Edit Show" msgstr "Redigere Serie" -#: sickbeard/webserve.py:1637 sickbeard/webserve.py:1671 +#: sickbeard/webserve.py:1636 sickbeard/webserve.py:1670 msgid "Unable to refresh this show: {error}" msgstr "Ikke i stand til at genopfriske denne serie: {error}" -#: sickbeard/webserve.py:1663 +#: sickbeard/webserve.py:1662 msgid "New location <tt>{location}</tt> does not exist" msgstr "Ny placering <tt>{location}</tt> findes ikke" -#: sickbeard/webserve.py:1688 +#: sickbeard/webserve.py:1687 msgid "Unable to update show: {error}" msgstr "Ikke i stand til at opdatere serien: {error}" -#: sickbeard/webserve.py:1695 +#: sickbeard/webserve.py:1694 msgid "Unable to force an update on scene exceptions of the show." msgstr "Ikke i stand til at gennemtvinge en opdatering af scene undtagelser på serien." -#: sickbeard/webserve.py:1702 +#: sickbeard/webserve.py:1701 msgid "Unable to force an update on scene numbering of the show." msgstr "Ikke i stand til at gennemtvinge en opdatering af scene nummerering på serien." -#: sickbeard/webserve.py:1708 sickbeard/webserve.py:3540 +#: sickbeard/webserve.py:1707 sickbeard/webserve.py:3539 msgid "{num_errors:d} error{plural} while saving changes:" msgstr "{num_errors:d} fejl under gem af ændringer:" -#: sickbeard/webserve.py:1719 +#: sickbeard/webserve.py:1718 msgid "{show_name} has been {paused_resumed}" msgstr "{show_name} blev {paused_resumed}" -#: sickbeard/webserve.py:1719 +#: sickbeard/webserve.py:1718 msgid "resumed" msgstr "genoptaget" -#: sickbeard/webserve.py:1719 +#: sickbeard/webserve.py:1718 msgid "paused" msgstr "på pause" -#: sickbeard/webserve.py:1731 +#: sickbeard/webserve.py:1730 msgid "{show_name} has been {deleted_trashed} {was_deleted}" msgstr "{show_name} blev {deleted_trashed} {was_deleted}" -#: sickbeard/webserve.py:1733 +#: sickbeard/webserve.py:1732 msgid "deleted" msgstr "slettet" -#: sickbeard/webserve.py:1733 +#: sickbeard/webserve.py:1732 msgid "trashed" msgstr "slettet" -#: sickbeard/webserve.py:1734 +#: sickbeard/webserve.py:1733 msgid "(media untouched)" msgstr "(filer urørt)" -#: sickbeard/webserve.py:1734 +#: sickbeard/webserve.py:1733 msgid "(with all related media)" msgstr "(med alle tilhørende filer)" -#: sickbeard/webserve.py:1755 +#: sickbeard/webserve.py:1754 msgid "Unable to refresh this show." msgstr "Ikke i stand til at genopfriske denne serie." -#: sickbeard/webserve.py:1775 +#: sickbeard/webserve.py:1774 msgid "Unable to update this show." msgstr "Ikke i stand til at opdatere denne serie." -#: sickbeard/webserve.py:1814 +#: sickbeard/webserve.py:1813 msgid "Library update command sent to KODI host(s)): {kodi_hosts}" msgstr "Katalog opdaterings kommando sent til KODI host(s): {kodi_hosts}" -#: sickbeard/webserve.py:1816 +#: sickbeard/webserve.py:1815 msgid "Unable to contact one or more KODI host(s)): {kodi_hosts}" msgstr "Ude af stand til at kontakte en eller flere KODI hosts: {kodi_hosts}" -#: sickbeard/webserve.py:1825 +#: sickbeard/webserve.py:1824 msgid "Library update command sent to Plex Media Server host: {plex_server}" msgstr "Katalog opdateringskommando sendt til Plex Media Server host: {plex_server}" -#: sickbeard/webserve.py:1828 +#: sickbeard/webserve.py:1827 msgid "Unable to contact Plex Media Server host: {plex_server}" msgstr "Ude af stand til at kontakte Plex Media Server host: {plex_server}" -#: sickbeard/webserve.py:1840 +#: sickbeard/webserve.py:1839 msgid "Library update command sent to Emby host: {emby_host}" msgstr "Katalog opdateringskommando sendt til Emby host: {emby_host}" -#: sickbeard/webserve.py:1842 +#: sickbeard/webserve.py:1841 msgid "Unable to contact Emby host: {emby_host}" msgstr "Ikke i stand til at kontakte Emby vært: {emby_host}" -#: sickbeard/webserve.py:1852 sickbeard/webserve.py:2036 +#: sickbeard/webserve.py:1851 sickbeard/webserve.py:2035 msgid "You must specify a show and at least one episode" msgstr "Du skal angive et show og mindst ét episode" -#: sickbeard/webserve.py:1861 +#: sickbeard/webserve.py:1860 msgid "Invalid status" msgstr "Ugyldig status" -#: sickbeard/webserve.py:1954 +#: sickbeard/webserve.py:1953 msgid "Backlog was automatically started for the following seasons of <b>{show_name}</b>" msgstr "Automatisk opsamling af backlog påbegyndt for følgende sæsoner af <b>{show_name}</b>" #: gui/slick/views/displayShow.mako:74 gui/slick/views/displayShow.mako:79 -#: gui/slick/views/displayShow.mako:404 sickbeard/webserve.py:1961 -#: sickbeard/webserve.py:1980 +#: gui/slick/views/displayShow.mako:404 sickbeard/webserve.py:1960 +#: sickbeard/webserve.py:1979 msgid "Season" msgstr "Sæson" -#: sickbeard/webserve.py:1968 +#: sickbeard/webserve.py:1967 msgid "Backlog started" msgstr "Opsamling af efterslæb påbegyndt" -#: sickbeard/webserve.py:1973 +#: sickbeard/webserve.py:1972 msgid "Retrying Search was automatically started for the following season of <b>{show_name}</b>" msgstr "Gentag søgning var startet automatisk for følgende sæson af <b>{show_name}</b>" -#: sickbeard/webserve.py:1987 +#: sickbeard/webserve.py:1986 msgid "Retry Search started" msgstr "Gentag Søgning startede" -#: sickbeard/webserve.py:1997 +#: sickbeard/webserve.py:1996 msgid "You must specify a show" msgstr "Du skal angive et show" -#: sickbeard/webserve.py:2007 sickbeard/webserve.py:2045 +#: sickbeard/webserve.py:2006 sickbeard/webserve.py:2044 msgid "Can't rename episodes when the show dir is missing." msgstr "Kan ikke omdøbe episoder, når serie mappe mangler." -#: sickbeard/webserve.py:2212 sickbeard/webserve.py:2233 +#: sickbeard/webserve.py:2211 sickbeard/webserve.py:2232 msgid "New subtitles downloaded: {new_subtitle_languages}" msgstr "Nye underskrifter hentet: {new_subtitle_languages}" -#: sickbeard/webserve.py:2215 sickbeard/webserve.py:2236 +#: sickbeard/webserve.py:2214 sickbeard/webserve.py:2235 msgid "No subtitles downloaded" msgstr "Ingen underskrifter hentet" #: gui/slick/views/config_general.mako:80 gui/slick/views/layouts/main.mako:222 -#: sickbeard/webserve.py:2363 +#: sickbeard/webserve.py:2362 msgid "IRC" msgstr "IRC" -#: sickbeard/webserve.py:2376 +#: sickbeard/webserve.py:2375 msgid "Could not load news from the repo. [Click here for news.md])({news_url})" msgstr "Kunne ikke indlæse nyheder fra repo. [Klik her for news.md])({news_url})" -#: sickbeard/webserve.py:2383 sickbeard/webserve.py:2401 +#: sickbeard/webserve.py:2382 sickbeard/webserve.py:2400 msgid "The was a problem connecting to github, please refresh and try again" msgstr "Det var problemer med forbindelsen til github. Genopfrisk og prøv igen" -#: sickbeard/webserve.py:2398 +#: sickbeard/webserve.py:2397 msgid "Could not load changes from the repo. [Click here for CHANGES.md]({changes_url})" msgstr "Ændringer kunne ikke indlæses fra repo. [Klik her for CHANGES.md] ({changes_url})" -#: gui/slick/views/layouts/main.mako:223 sickbeard/webserve.py:2403 +#: gui/slick/views/layouts/main.mako:223 sickbeard/webserve.py:2402 msgid "Changelog" msgstr "Ændringslog" -#: gui/slick/views/layouts/main.mako:190 sickbeard/webserve.py:2413 -#: sickbeard/webserve.py:3855 sickbeard/webserve.py:4341 +#: gui/slick/views/layouts/main.mako:190 sickbeard/webserve.py:2412 +#: sickbeard/webserve.py:3826 sickbeard/webserve.py:4312 msgid "Post Processing" msgstr "Efterbehandling" -#: gui/slick/views/layouts/main.mako:128 sickbeard/webserve.py:2445 +#: gui/slick/views/layouts/main.mako:128 sickbeard/webserve.py:2444 msgid "Add Shows" msgstr "Tilføj Serier" -#: sickbeard/webserve.py:2510 +#: sickbeard/webserve.py:2509 msgid "No folders selected." msgstr "Ingen foldere valgt." -#: sickbeard/webserve.py:2632 +#: sickbeard/webserve.py:2631 msgid "New Show" msgstr "Ny Serie" -#: sickbeard/webserve.py:2647 +#: sickbeard/webserve.py:2646 msgid "Trending Shows" msgstr "Hotte serier" -#: sickbeard/webserve.py:2649 sickbeard/webserve.py:2772 +#: sickbeard/webserve.py:2648 sickbeard/webserve.py:2771 msgid "Popular Shows" msgstr "Populære Serier" -#: sickbeard/webserve.py:2651 sickbeard/webserve.py:2665 +#: sickbeard/webserve.py:2650 sickbeard/webserve.py:2664 msgid "Most Anticipated Shows" msgstr "Mest ventede serier" -#: sickbeard/webserve.py:2653 +#: sickbeard/webserve.py:2652 msgid "Most Collected Shows" msgstr "" -#: sickbeard/webserve.py:2655 +#: sickbeard/webserve.py:2654 msgid "Most Watched Shows" msgstr "" -#: sickbeard/webserve.py:2657 +#: sickbeard/webserve.py:2656 msgid "Most Played Shows" msgstr "" -#: sickbeard/webserve.py:2659 +#: sickbeard/webserve.py:2658 msgid "Recommended Shows" msgstr "" -#: gui/slick/views/addShows_trendingShows.mako:60 sickbeard/webserve.py:2661 +#: gui/slick/views/addShows_trendingShows.mako:60 sickbeard/webserve.py:2660 msgid "New Shows" msgstr "Nye serier" -#: gui/slick/views/addShows_trendingShows.mako:61 sickbeard/webserve.py:2663 +#: gui/slick/views/addShows_trendingShows.mako:61 sickbeard/webserve.py:2662 msgid "Season Premieres" msgstr "Sæson Præmiere" -#: sickbeard/webserve.py:2792 sickbeard/webserve.py:2793 +#: sickbeard/webserve.py:2791 sickbeard/webserve.py:2792 msgid "Existing Show" msgstr "Eksisterende Serier" -#: sickbeard/webserve.py:2871 +#: sickbeard/webserve.py:2870 msgid "No root directories setup, please go back and add one." msgstr "Ingen rodmapper er sat op. Gå venligst tilbage og tilføj én." -#: sickbeard/webserve.py:2883 sickbeard/webserve.py:3002 +#: sickbeard/webserve.py:2882 sickbeard/webserve.py:3001 msgid "Show added" msgstr "Serier tilføjet" -#: sickbeard/webserve.py:2883 +#: sickbeard/webserve.py:2882 msgid "Adding the specified show {show_name}" msgstr "Tilføj den angivne serie {show_name}" -#: sickbeard/webserve.py:2924 +#: sickbeard/webserve.py:2923 msgid "Missing params, no Indexer ID or folder: {show_to_add} and {root_dir}/{show_path}" msgstr "Manglende parametre, intet Indexer ID eller mappe: {show_to_add} og {root_dir}/{show_path}" -#: sickbeard/webserve.py:2933 +#: sickbeard/webserve.py:2932 msgid "Unknown error. Unable to add show due to problem with show selection." msgstr "Ukendt fejl. Serien kunne ikke tilføjes på grund af et problem med udvælgelse af serien." -#: sickbeard/webserve.py:2957 sickbeard/webserve.py:2967 +#: sickbeard/webserve.py:2956 sickbeard/webserve.py:2966 msgid "Unable to add show" msgstr "Ikke i stand til at tilføje serie" -#: sickbeard/webserve.py:2957 +#: sickbeard/webserve.py:2956 msgid "Folder {show_dir} exists already" msgstr "Folder {show_dir} findes allerede" -#: sickbeard/webserve.py:2968 +#: sickbeard/webserve.py:2967 msgid "Unable to create the folder {show_dir}, can't add the show" msgstr "Ikke i stand til at oprette folderen {show_dir}, kan ikke tilføje serien" -#: sickbeard/webserve.py:3002 +#: sickbeard/webserve.py:3001 msgid "Adding the specified show into {show_dir}" msgstr "Tilføjer den angivne serie i {show_dir}" -#: sickbeard/webserve.py:3078 +#: sickbeard/webserve.py:3077 msgid "Shows Added" msgstr "Serier Tilføjet" -#: sickbeard/webserve.py:3079 +#: sickbeard/webserve.py:3078 msgid "Automatically added {num_shows} from their existing metadata files" msgstr "Automatisk tilføjet {num_shows} fra deres eksisterende metadatafiler" -#: gui/slick/views/layouts/main.mako:153 sickbeard/webserve.py:3096 +#: gui/slick/views/layouts/main.mako:153 sickbeard/webserve.py:3095 msgid "Mass Update" msgstr "Masseopdatering" -#: sickbeard/webserve.py:3134 sickbeard/webserve.py:3161 sickbeard/webserve.py:3237 -#: sickbeard/webserve.py:3238 +#: sickbeard/webserve.py:3133 sickbeard/webserve.py:3160 sickbeard/webserve.py:3236 +#: sickbeard/webserve.py:3237 msgid "Episode Overview" msgstr "Episode oversigt" -#: sickbeard/webserve.py:3270 +#: sickbeard/webserve.py:3269 msgid "Missing Subtitles" msgstr "Mangler undertekster" -#: gui/slick/views/layouts/main.mako:154 sickbeard/webserve.py:3356 -#: sickbeard/webserve.py:3357 +#: gui/slick/views/layouts/main.mako:154 sickbeard/webserve.py:3355 +#: sickbeard/webserve.py:3356 msgid "Backlog Overview" msgstr "Backlog oversigt" -#: sickbeard/webserve.py:3481 +#: sickbeard/webserve.py:3480 msgid "Mass Edit" msgstr "Masse Rediger" -#: sickbeard/webserve.py:3586 +#: sickbeard/webserve.py:3585 msgid "Unable to update show: {excption_format}" msgstr "Kunne ikke opdatere serie: {excption_format}" -#: sickbeard/webserve.py:3594 +#: sickbeard/webserve.py:3593 msgid "Unable to refresh show {show_name}: {excption_format}" msgstr "Kunne ikke genopfriske serie{show_name}: {excption_format}" -#: sickbeard/webserve.py:3605 +#: sickbeard/webserve.py:3604 msgid "Errors encountered" msgstr "Stødt på fejl" -#: gui/slick/views/config_general.mako:261 sickbeard/webserve.py:3611 +#: gui/slick/views/config_general.mako:261 sickbeard/webserve.py:3610 msgid "Updates" msgstr "Opdateringer" -#: sickbeard/webserve.py:3616 +#: sickbeard/webserve.py:3615 msgid "Refreshes" msgstr "Opdaterer" -#: sickbeard/webserve.py:3621 +#: sickbeard/webserve.py:3620 msgid "Renames" msgstr "Omdøber" #: gui/slick/views/displayShow.mako:260 gui/slick/views/displayShow.mako:435 #: gui/slick/views/editShow.mako:119 gui/slick/views/inc_addShowOptions.mako:20 -#: gui/slick/views/manage_massEdit.mako:262 sickbeard/webserve.py:3626 -#: sickbeard/webserve.py:5244 +#: gui/slick/views/manage_massEdit.mako:262 sickbeard/webserve.py:3625 +#: sickbeard/webserve.py:5215 msgid "Subtitles" msgstr "Undertekster" -#: sickbeard/webserve.py:3631 +#: sickbeard/webserve.py:3630 msgid "The following actions were queued" msgstr "Følgende aktioner blev sat i kø" -#: sickbeard/webserve.py:3651 -msgid "For best results please set the Download Station alias as" -msgstr "For de bedste resultater skal du indstille Download Station alias som" - -#: sickbeard/webserve.py:3652 -msgid "You can check this setting in the Synology DSM" -msgstr "Du kan kontrollere denne indstilling i Synology DSM" - -#: sickbeard/webserve.py:3652 sickbeard/webserve.py:3654 -msgid "Control Panel" -msgstr "Kontrolpanel" - -#: sickbeard/webserve.py:3652 -msgid "Application Portal" -msgstr "Applikations Portal" - -#: sickbeard/webserve.py:3653 -msgid "Make sure you allow DSM to be embedded with iFrames too in" -msgstr "Vær sikker du tilllader at DSM integreres med iFrames også i" - -#: sickbeard/webserve.py:3654 -msgid "DSM Settings" -msgstr "DSM indstillinger" - -#: sickbeard/webserve.py:3654 -msgid "Security" -msgstr "Sikkerhed" - -#: gui/slick/views/layouts/main.mako:167 sickbeard/webserve.py:3662 -msgid "Manage Torrents" -msgstr "Administrer Torrents" - -#: gui/slick/views/layouts/main.mako:170 sickbeard/webserve.py:3683 +#: gui/slick/views/layouts/main.mako:170 sickbeard/webserve.py:3654 msgid "Failed Downloads" msgstr "Mislykkede overførsler" -#: gui/slick/views/layouts/main.mako:155 sickbeard/webserve.py:3701 +#: gui/slick/views/layouts/main.mako:155 sickbeard/webserve.py:3672 msgid "Manage Searches" msgstr "Administrer søgninger" -#: sickbeard/webserve.py:3709 +#: sickbeard/webserve.py:3680 msgid "Backlog search started" msgstr "Backlog søgning startet" -#: sickbeard/webserve.py:3719 +#: sickbeard/webserve.py:3690 msgid "Daily search started" msgstr "Daglige søgning startet" -#: sickbeard/webserve.py:3728 +#: sickbeard/webserve.py:3699 msgid "Find propers search started" msgstr "Finde \"ordentlige\" søgning startet" -#: sickbeard/webserve.py:3737 +#: sickbeard/webserve.py:3708 msgid "Subtitle search started" msgstr "Undertekster søgning startet" -#: sickbeard/webserve.py:3801 +#: sickbeard/webserve.py:3772 msgid "Remove Selected" msgstr "Fjern valgte" -#: sickbeard/webserve.py:3802 +#: sickbeard/webserve.py:3773 msgid "Clear History" msgstr "Ryd Historik" -#: sickbeard/webserve.py:3803 +#: sickbeard/webserve.py:3774 msgid "Trim History" msgstr "Trim Historie" -#: sickbeard/webserve.py:3823 +#: sickbeard/webserve.py:3794 msgid "Selected history entries removed" msgstr "" -#: sickbeard/webserve.py:3830 +#: sickbeard/webserve.py:3801 msgid "History cleared" msgstr "Historik ryddet" -#: sickbeard/webserve.py:3837 +#: sickbeard/webserve.py:3808 msgid "Removed history entries older than 30 days" msgstr "Oversigtsposter ældre end 30 dage fjernet" -#: gui/slick/views/layouts/main.mako:185 sickbeard/webserve.py:3850 +#: gui/slick/views/layouts/main.mako:185 sickbeard/webserve.py:3821 msgid "General" msgstr "Generelt" -#: sickbeard/webserve.py:3851 sickbeard/webserve.py:4143 +#: sickbeard/webserve.py:3822 sickbeard/webserve.py:4114 msgid "Backup/Restore" msgstr "Backup/gendannelse" -#: gui/slick/views/layouts/main.mako:187 sickbeard/webserve.py:3852 -#: sickbeard/webserve.py:4206 +#: gui/slick/views/layouts/main.mako:187 sickbeard/webserve.py:3823 +#: sickbeard/webserve.py:4177 msgid "Search Settings" msgstr "Søgeindstillinger" -#: gui/slick/views/layouts/main.mako:188 sickbeard/webserve.py:3853 -#: sickbeard/webserve.py:4518 +#: gui/slick/views/layouts/main.mako:188 sickbeard/webserve.py:3824 +#: sickbeard/webserve.py:4489 msgid "Search Providers" msgstr "Søgemaskiner" -#: gui/slick/views/layouts/main.mako:189 sickbeard/webserve.py:3854 +#: gui/slick/views/layouts/main.mako:189 sickbeard/webserve.py:3825 msgid "Subtitles Settings" msgstr "Undertekstindstillinger" -#: gui/slick/views/layouts/main.mako:191 sickbeard/webserve.py:3856 -#: sickbeard/webserve.py:4964 +#: gui/slick/views/layouts/main.mako:191 sickbeard/webserve.py:3827 +#: sickbeard/webserve.py:4935 msgid "Notifications" msgstr "Notifikationer" @@ -1240,142 +1237,142 @@ msgstr "Notifikationer" #: gui/slick/views/home.mako:35 gui/slick/views/inc_addShowOptions.mako:79 #: gui/slick/views/inc_home_showList.mako:179 gui/slick/views/layouts/main.mako:192 #: gui/slick/views/manage.mako:44 gui/slick/views/manage_massEdit.mako:202 -#: sickbeard/webserve.py:3857 sickbeard/webserve.py:5309 +#: sickbeard/webserve.py:3828 sickbeard/webserve.py:5280 msgid "Anime" msgstr "Anime" -#: sickbeard/webserve.py:3895 sickbeard/webserve.py:3896 +#: sickbeard/webserve.py:3866 sickbeard/webserve.py:3867 msgid "SickRage Configuration" msgstr "Konfiguration af SickRage" -#: sickbeard/webserve.py:3910 +#: sickbeard/webserve.py:3881 msgid "Config - Shares" msgstr "" -#: sickbeard/webserve.py:3910 +#: sickbeard/webserve.py:3881 msgid "Windows Shares Configuration" msgstr "" -#: sickbeard/webserve.py:3937 +#: sickbeard/webserve.py:3908 msgid "Saved Shares" msgstr "" -#: sickbeard/webserve.py:3937 +#: sickbeard/webserve.py:3908 msgid "Your Windows share settings have been saved" msgstr "" -#: sickbeard/webserve.py:3948 +#: sickbeard/webserve.py:3919 msgid "Config - General" msgstr "Konfigurer - General" -#: sickbeard/webserve.py:3948 +#: sickbeard/webserve.py:3919 msgid "General Configuration" msgstr "General Konfiguration" -#: sickbeard/webserve.py:3988 +#: sickbeard/webserve.py:3959 msgid "Saved Defaults" msgstr "Gemte standardindstillinger" -#: sickbeard/webserve.py:3988 +#: sickbeard/webserve.py:3959 msgid "Your \"add show\" defaults have been set to your current selections." msgstr "Din \"Tilføj show\" standardindstillinger er indstillet til dit aktuelle valg." -#: sickbeard/webserve.py:4095 +#: sickbeard/webserve.py:4066 msgid "Unable to create directory {directory}, log directory not changed." msgstr "Ikke i stand til at oprette kataloget {directory}, log katalog ikke ændret." -#: sickbeard/webserve.py:4103 +#: sickbeard/webserve.py:4074 msgid "Unable to create directory {directory}, https cert directory not changed." msgstr "Kan ikke oprette mappe {directory}, https cert mappe ikke ændret." -#: sickbeard/webserve.py:4107 +#: sickbeard/webserve.py:4078 msgid "Unable to create directory {directory}, https key directory not changed." msgstr "Kan ikke oprette mappe {directory}, https cert mappe ikke ændret." -#: sickbeard/webserve.py:4126 sickbeard/webserve.py:4324 sickbeard/webserve.py:4456 -#: sickbeard/webserve.py:5227 +#: sickbeard/webserve.py:4097 sickbeard/webserve.py:4295 sickbeard/webserve.py:4427 +#: sickbeard/webserve.py:5198 msgid "Error(s) Saving Configuration" msgstr "Fejl ved gemning af konfiguration" -#: sickbeard/webserve.py:4129 sickbeard/webserve.py:4327 sickbeard/webserve.py:4458 -#: sickbeard/webserve.py:4950 sickbeard/webserve.py:5230 sickbeard/webserve.py:5294 -#: sickbeard/webserve.py:5323 +#: sickbeard/webserve.py:4100 sickbeard/webserve.py:4298 sickbeard/webserve.py:4429 +#: sickbeard/webserve.py:4921 sickbeard/webserve.py:5201 sickbeard/webserve.py:5265 +#: sickbeard/webserve.py:5294 msgid "Configuration Saved" msgstr "Konfiguration Gemt" -#: sickbeard/webserve.py:4142 +#: sickbeard/webserve.py:4113 msgid "Config - Backup/Restore" msgstr "Konfigurer - Backup/gendannelse" -#: sickbeard/webserve.py:4205 +#: sickbeard/webserve.py:4176 msgid "Config - Episode Search" msgstr "Konfigurer - Episode søgning" -#: sickbeard/webserve.py:4340 +#: sickbeard/webserve.py:4311 msgid "Config - Post Processing" msgstr "Konfigurer - efterbehandling" -#: sickbeard/webserve.py:4380 +#: sickbeard/webserve.py:4351 msgid "Unpacking Not Supported, disabling unpack setting" msgstr "Udpakning ikke understøttet, deaktiverer udpak indstilling" -#: sickbeard/webserve.py:4431 +#: sickbeard/webserve.py:4402 msgid "You tried saving an invalid normal naming config, not saving your naming settings" msgstr "" -#: sickbeard/webserve.py:4439 +#: sickbeard/webserve.py:4410 msgid "You tried saving an invalid anime naming config, not saving your naming settings" msgstr "Du prøvede at gemme en ugyldig anime navngivnings config, gemmer ikke indstillingerne for navngivning" -#: sickbeard/webserve.py:4517 +#: sickbeard/webserve.py:4488 msgid "Config - Providers" msgstr "Konfigurer - udbydere" -#: sickbeard/webserve.py:4547 +#: sickbeard/webserve.py:4518 msgid "No Provider Name specified" msgstr "Ingen udbydernavn angivet" -#: sickbeard/webserve.py:4549 +#: sickbeard/webserve.py:4520 msgid "No Provider Url specified" msgstr "Ingen udbyder webadresse angivet" -#: sickbeard/webserve.py:4551 +#: sickbeard/webserve.py:4522 msgid "No Provider Api key specified" msgstr "Ingen udbyder Api-nøgle angivet" -#: sickbeard/webserve.py:4963 +#: sickbeard/webserve.py:4934 msgid "Config - Notifications" msgstr "Konfigurer - meddelelser" -#: sickbeard/webserve.py:5243 +#: sickbeard/webserve.py:5214 msgid "Config - Subtitles" msgstr "Konfigurer - undertekster" -#: sickbeard/webserve.py:5308 +#: sickbeard/webserve.py:5279 msgid "Config - Anime" msgstr "Konfigurer - Anime" -#: sickbeard/webserve.py:5336 +#: sickbeard/webserve.py:5307 msgid "Clear Errors" msgstr "Ret fejl" -#: sickbeard/webserve.py:5342 +#: sickbeard/webserve.py:5313 msgid "Clear Warnings" msgstr "Ryd advarsler" -#: sickbeard/webserve.py:5348 +#: sickbeard/webserve.py:5319 msgid "Submit Errors" msgstr "Indsend fejl" -#: sickbeard/webserve.py:5363 +#: sickbeard/webserve.py:5334 msgid "Logs & Errors" msgstr "Logs & fejl" -#: sickbeard/webserve.py:5388 +#: sickbeard/webserve.py:5359 msgid "Log File" msgstr "Logfiler" -#: sickbeard/webserve.py:5388 +#: sickbeard/webserve.py:5359 msgid "Logs" msgstr "Logfiler" @@ -1383,30 +1380,166 @@ msgstr "Logfiler" msgid "This is a test notification from SickRage" msgstr "Dette er en testbesked fra SickRage" -#: gui/slick/js/core.js:481 gui/slick/js/core.js:502 gui/slick/js/core.js:524 -#: gui/slick/js/core.js:548 gui/slick/js/core.js:573 gui/slick/js/core.js:596 -#: gui/slick/js/core.js:625 gui/slick/js/core.js:645 gui/slick/js/core.js:690 -#: gui/slick/js/core.js:769 gui/slick/js/core.js:829 gui/slick/js/core.js:849 -#: gui/slick/js/core.js:879 gui/slick/js/core.js:909 gui/slick/js/core.js:969 -#: gui/slick/js/core.js:1046 gui/slick/js/core.js:1066 gui/slick/js/core.js:1085 +#: gui/slick/js/browser.js:6 +msgid "Choose Directory" +msgstr "" + +#: gui/slick/js/core.js:443 +msgid "Select log file folder location" +msgstr "" + +#: gui/slick/js/core.js:445 +msgid "Select CSS file" +msgstr "" + +#: gui/slick/js/core.js:469 +msgid "Select backup folder to save to" +msgstr "" + +#: gui/slick/js/core.js:470 +msgid "Select backup files to restore" +msgstr "" + +#: gui/slick/js/core.js:479 gui/slick/js/core.js:500 gui/slick/js/core.js:522 +#: gui/slick/js/core.js:546 gui/slick/js/core.js:571 gui/slick/js/core.js:594 +#: gui/slick/js/core.js:623 gui/slick/js/core.js:643 gui/slick/js/core.js:688 +#: gui/slick/js/core.js:767 gui/slick/js/core.js:827 gui/slick/js/core.js:847 +#: gui/slick/js/core.js:877 gui/slick/js/core.js:907 gui/slick/js/core.js:967 +#: gui/slick/js/core.js:1044 gui/slick/js/core.js:1064 gui/slick/js/core.js:1083 msgid "Please fill out the necessary fields above." msgstr "" -#: gui/slick/js/core.js:1328 gui/slick/js/core.js:1378 gui/slick/js/core.js:1427 -#: gui/slick/js/core.js:1493 +#: gui/slick/js/core.js:680 +msgid "<b>Step 1:</b> Confirm Authorization" +msgstr "" + +#: gui/slick/js/core.js:977 +msgid "Check blacklist name; the value needs to be a trakt slug" +msgstr "" + +#: gui/slick/js/core.js:1022 +msgid "You must provide a recipient email address!" +msgstr "" + +#: gui/slick/js/core.js:1107 +msgid "You didn't supply a Pushbullet api key" +msgstr "" + +#: gui/slick/js/core.js:1133 gui/slick/js/core.js:1162 +msgid "Don't forget to save your new pushbullet settings." +msgstr "" + +#: gui/slick/js/core.js:1262 +msgid "Select TV Download Directory" +msgstr "" + +#: gui/slick/js/core.js:1263 +msgid "Select Unpack Directory" +msgstr "" + +#: gui/slick/js/core.js:1326 gui/slick/js/core.js:1376 gui/slick/js/core.js:1425 +#: gui/slick/js/core.js:1491 msgid "This pattern is invalid." msgstr "Dette mønster er ugyldig." -#: gui/slick/js/core.js:1336 gui/slick/js/core.js:1386 gui/slick/js/core.js:1435 -#: gui/slick/js/core.js:1501 +#: gui/slick/js/core.js:1334 gui/slick/js/core.js:1384 gui/slick/js/core.js:1433 +#: gui/slick/js/core.js:1499 msgid "This pattern would be invalid without the folders, using it will force \"Season Folders\" on for all shows." msgstr "" -#: gui/slick/js/core.js:1344 gui/slick/js/core.js:1394 gui/slick/js/core.js:1443 -#: gui/slick/js/core.js:1509 +#: gui/slick/js/core.js:1342 gui/slick/js/core.js:1392 gui/slick/js/core.js:1441 +#: gui/slick/js/core.js:1507 msgid "This pattern is valid." msgstr "Dette mønster er gyldig." +#: gui/slick/js/core.js:1818 +msgid "Select .nzb black hole/watch location" +msgstr "" + +#: gui/slick/js/core.js:1819 +msgid "Select .torrent black hole/watch location" +msgstr "" + +#: gui/slick/js/core.js:1820 +msgid "Select .torrent download location" +msgstr "" + +#: gui/slick/js/core.js:1900 +msgid "Minimum seeding time is" +msgstr "" + +#: gui/slick/js/core.js:1902 +msgid "URL to your uTorrent client (e.g. http://localhost:8000)" +msgstr "" + +#: gui/slick/js/core.js:1905 +msgid "Stop seeding when inactive for" +msgstr "" + +#: gui/slick/js/core.js:1911 +msgid "URL to your Transmission client (e.g. http://localhost:9091)" +msgstr "" + +#: gui/slick/js/core.js:1921 +msgid "URL to your Deluge client (e.g. http://localhost:8112)" +msgstr "" + +#: gui/slick/js/core.js:1930 +msgid "IP or Hostname of your Deluge Daemon (e.g. scgi://localhost:58846)" +msgstr "" + +#: gui/slick/js/core.js:1937 +msgid "URL to your Synology DS client (e.g. http://localhost:5000)" +msgstr "" + +#: gui/slick/js/core.js:1941 +msgid "URL to your rTorrent client (e.g. scgi://localhost:5000 <br> or https://localhost/rutorrent/plugins/httprpc/action.php)" +msgstr "" + +#: gui/slick/js/core.js:1952 +msgid "URL to your qBittorrent client (e.g. http://localhost:8080)" +msgstr "" + +#: gui/slick/js/core.js:1962 +msgid "URL to your MLDonkey (e.g. http://localhost:4080)" +msgstr "" + +#: gui/slick/js/core.js:1974 +msgid "URL to your putio client (e.g. http://localhost:8080)" +msgstr "" + +#: gui/slick/js/core.js:1975 +msgid "<a herf=\"https://app.put.io/oauth/apps/new\" target=\"_blank\"> Create a new OAuth app for put.io</a>" +msgstr "" + +#: gui/slick/js/core.js:1977 +msgid "Put.io Parent Folder" +msgstr "" + +#: gui/slick/js/core.js:1978 +msgid "Put.io OAuth Token" +msgstr "" + +#: gui/slick/js/core.js:3383 gui/slick/views/displayShow.mako:410 +msgid "Show Episodes" +msgstr "Serie episoder" + +#: gui/slick/js/core.js:3388 gui/slick/views/displayShow.mako:408 +msgid "Hide Episodes" +msgstr "" + +#: gui/slick/js/core.js:3396 +msgid "Select Show Location" +msgstr "" + +#: gui/slick/js/core.js:3460 +msgid "Select Unprocessed Episode Folder" +msgstr "" + +#: gui/slick/js/core.js:3790 +msgid "DELETED" +msgstr "" + #: gui/slick/js/core.js:4082 msgid "Resume updating the log on this page." msgstr "" @@ -1415,6 +1548,26 @@ msgstr "" msgid "Pause updating the log on this page." msgstr "" +#: gui/slick/js/core.js:4323 +msgid "searching {searchingFor}..." +msgstr "" + +#: gui/slick/js/core.js:4334 +msgid "search timed out, try again or try another indexer" +msgstr "" + +#: gui/slick/js/core.js:4503 +msgid "loading folders..." +msgstr "" + +#: gui/slick/js/parsers.js:7 gui/slick/js/parsers.js:8 +#: gui/slick/js/plotTooltip.js:6 gui/slick/js/sceneExceptionsTooltip.js:6 +#: gui/slick/views/inc_home_showList.mako:209 +#: gui/slick/views/inc_home_showList.mako:215 +#: gui/slick/views/inc_home_showList.mako:231 +msgid "Loading..." +msgstr "Indlæser..." + #: gui/slick/views/404.mako:5 msgid "You have reached this page by accident, please check the url." msgstr "Du har nået denne side ved et uheld, kontroller venligst url." @@ -2536,15 +2689,15 @@ msgstr "" #: gui/slick/views/config_general.mako:1120 msgid "Username and password" -msgstr "" +msgstr "Brugernavn og adgangskode" #: gui/slick/views/config_general.mako:1126 msgid "Personal access token" -msgstr "" +msgstr "Personlig adgangstoken" #: gui/slick/views/config_general.mako:1131 msgid "You must use a personal access token if you're using \"two-factor authentication\" on GitHub." -msgstr "" +msgstr "Hvis du bruger \"to-faktor autentificering\" på GitHub, skal du bruge en personlig adgangstoken." #: gui/slick/views/config_general.mako:1140 msgid "GitHub username" @@ -2566,11 +2719,11 @@ msgstr "" #: gui/slick/views/config_general.mako:1185 msgid "Generate Token" -msgstr "" +msgstr "Generere Token" #: gui/slick/views/config_general.mako:1187 msgid "Manage Tokens" -msgstr "" +msgstr "Administrere Tokens" #: gui/slick/views/config_general.mako:1202 msgid "GitHub remote for branch" @@ -2582,11 +2735,11 @@ msgstr "" #: gui/slick/views/config_general.mako:1217 msgid "default" -msgstr "" +msgstr "standard" #: gui/slick/views/config_general.mako:1217 msgid "origin" -msgstr "" +msgstr "oprindelse" #: gui/slick/views/config_general.mako:1225 msgid "Git executable path" @@ -2622,7 +2775,7 @@ msgstr "En gratis og open source cross-platform media center og home entertainme #: gui/slick/views/config_notifications.mako:37 msgid "send KODI commands?" -msgstr "" +msgstr "send KODI kommandoer?" #: gui/slick/views/config_notifications.mako:46 msgid "Always on" @@ -4083,11 +4236,11 @@ msgstr "" #: gui/slick/views/config_postProcessing.mako:182 msgid "Move associated files" -msgstr "" +msgstr "Flyt tilknyttede filer" #: gui/slick/views/config_postProcessing.mako:186 msgid "move associated (srt/srr/sfv/etc) files while post processing?" -msgstr "" +msgstr "flyt tilknyttede (srt/srr/sfv/etc) filer mens der efterbehandles?" #: gui/slick/views/config_postProcessing.mako:192 msgid "Rename .nfo file" @@ -4187,15 +4340,15 @@ msgstr "" #: gui/slick/views/config_postProcessing.mako:332 msgid "Unrar Location" -msgstr "" +msgstr "Unrar lokation" #: gui/slick/views/config_postProcessing.mako:343 msgid "add the path to unrar if it is not in the system path" -msgstr "" +msgstr "tilføj stien til unrar, hvis stien ikke er i system-stien" #: gui/slick/views/config_postProcessing.mako:351 msgid "Alternate Unrar Tool" -msgstr "" +msgstr "Alternativ Unrar værktøj" #: gui/slick/views/config_postProcessing.mako:362 msgid "add the path to an alternate unrar tool if it is not in the system path" @@ -4211,7 +4364,7 @@ msgstr "" #: gui/slick/views/config_postProcessing.mako:381 msgid "only working with RAR archive" -msgstr "" +msgstr "virker kun med RAR-filer" #: gui/slick/views/config_postProcessing.mako:391 msgid "Don't delete empty folders" @@ -4219,7 +4372,7 @@ msgstr "Slet ikke tomme mapper" #: gui/slick/views/config_postProcessing.mako:397 msgid "leave empty folders when Post Processing?" -msgstr "" +msgstr "efterlad tomme mapper i forbindelse med efterbehandling?" #: gui/slick/views/config_postProcessing.mako:402 msgid "can be overridden using manual Post Processing" @@ -4227,7 +4380,7 @@ msgstr "" #: gui/slick/views/config_postProcessing.mako:411 msgid "Follow symbolic-links" -msgstr "" +msgstr "Følg symbolske links" #: gui/slick/views/config_postProcessing.mako:418 msgid "follow down symbolic links in download directory?" @@ -4243,7 +4396,7 @@ msgstr "" #: gui/slick/views/config_postProcessing.mako:439 msgid "Windows only" -msgstr "" +msgstr "Kun Windows" #: gui/slick/views/config_postProcessing.mako:444 msgid "sets video permissions after using the move method in post processing" @@ -4256,7 +4409,7 @@ msgstr "Ekstra Scripts" #: gui/slick/views/config_postProcessing.mako:463 msgid "see" -msgstr "" +msgstr "se" #: gui/slick/views/config_postProcessing.mako:466 msgid "for script arguments description and usage." @@ -5711,14 +5864,6 @@ msgstr "Ændre valgte episoder til" msgid "Select Columns" msgstr "Vælg Kolonner" -#: gui/slick/views/displayShow.mako:408 -msgid "Hide Episodes" -msgstr "" - -#: gui/slick/views/displayShow.mako:410 -msgid "Show Episodes" -msgstr "Serie episoder" - #: gui/slick/views/displayShow.mako:424 msgid "NFO" msgstr "NFO" @@ -6237,12 +6382,6 @@ msgstr "Aktiv" msgid "loading" msgstr "indlæser" -#: gui/slick/views/inc_home_showList.mako:209 -#: gui/slick/views/inc_home_showList.mako:215 -#: gui/slick/views/inc_home_showList.mako:231 -msgid "Loading..." -msgstr "Indlæser..." - #: gui/slick/views/inc_qualityChooser.mako:31 msgid "<p><b><u>Preferred</u></b> qualities will replace those in <b><u>allowed</u></b>, even if they are lower.</p>" msgstr "<p><b><u>Foretrukne</u></b> kvaliteter vil erstatte dem, der er <b><u>tilladt</u></b>, selvom de er lavere.</p>" @@ -6780,6 +6919,10 @@ msgstr "Opdatere KODI" msgid "Update Emby" msgstr "Opdater Emby" +#: gui/slick/views/layouts/main.mako:167 +msgid "Manage Torrents" +msgstr "Administrer Torrents" + #: gui/slick/views/layouts/main.mako:173 msgid "Missed Subtitle Management" msgstr "Manglende Undertekst Håndtering" diff --git a/locale/de_DE/LC_MESSAGES/messages.json b/locale/de_DE/LC_MESSAGES/messages.json index df6e2170c562a32c69fb05f860206b807d12f9c8..478aef14e78f17f2aa861d84e3bc70a5f40981c1 100644 --- a/locale/de_DE/LC_MESSAGES/messages.json +++ b/locale/de_DE/LC_MESSAGES/messages.json @@ -1 +1 @@ -{"messages":{"domain":"messages","locale_data":{"messages":{"100":[null,"100"],"250":[null,"250"],"500":[null,"500"],"":{"domain":"messages","plural_forms":"nplurals=2; plural=(n != 1);","lang":"de_DE"},"Drama":[null,"Drama"],"Mystery":[null,"Mystery"],"Science-Fiction":[null,"Science-Fiction"],"Crime":[null,"Krimi"],"Action":[null,"Action"],"Comedy":[null,"Comedy"],"Thriller":[null,"Thriller"],"Animation":[null,"Animation"],"Family":[null,"Familie"],"Fantasy":[null,"Fantasy"],"Adventure":[null,"Abenteuer"],"Horror":[null,"Horror"],"Film-Noir":[null,"Film Noir"],"Sci-Fi":[null,"Sci-Fi"],"Romance":[null,"Romanze"],"Sport":[null,"Sport"],"War":[null,"Kriegsfilm"],"Biography":[null,"Biografie"],"History":[null,"Verlauf"],"Music":[null,"Musik"],"Western":[null,"Western"],"News":[null,"Neuigkeiten"],"Sitcom":[null,"Sitcom"],"Reality-TV":[null,"Reality-TV"],"Documentary":[null,"Doku"],"Game-Show":[null,"Spielshow"],"Musical":[null,"Musical"],"Talk-Show":[null,"Talkshow"],"Started Download":[null,"Download gestartet"],"Download Finished":[null,"Download abgeschlossen"],"Subtitle Download Finished":[null,"Untertitel-Download abgeschlossen"],"SickRage Updated":[null,"SickRage aktualisiert"],"SickRage Updated To Commit#: ":[null,"SickRage aktualisiert auf Commit#: "],"SickRage new login":[null,"Neue SickRage-Anmeldung"],"New login from IP: {0}. http://geomaplookup.net/?ip={0}":[null,"Neue Anmeldung von IP-Adresse: {0}. http://geomaplookup.NET/?IP={0}"],"Repeat":[null,"Wiederholen"],"Repeat (Separated)":[null,"Wiederholen (getrennt)"],"Extend":[null,"Erweitern"],"Extend (Limited)":[null,"Erweitern (begrenzt)"],"Extend (Limited, E-prefixed)":[null,"Erweitern (begrenzt, mit E-Präfix)"],"Downloaded":[null,"Heruntergeladen"],"Snatched":[null,"Ermittelt"],"Snatched (Proper)":[null,"Ermittelt (Proper)"],"Failed":[null,"Fehlgeschlagen"],"Snatched (Best)":[null,"Ermittelt (optimal)"],"Archived":[null,"Archiviert"],"Unknown":[null,"Unbekannt"],"Unaired":[null,"noch nicht ausgestrahlt"],"Skipped":[null,"Übersprungen"],"Wanted":[null,"Benötigt"],"Ignored":[null,"Ignoriert"],"Subtitled":[null,"Mit Untertiteln"],"<No Filter>":[null,"< kein Filter >"],"Daily Searcher":[null,"Tägliche Suche"],"Backlog":[null,"Rückstand"],"Show Updater":[null,"Serien-Updater"],"Check Version":[null,"Version überprüfen"],"Show Queue":[null,"Serien-Warteschlange"],"Search Queue (All)":[null,"Such-Warteschlange (alle)"],"Search Queue (Daily Searcher)":[null,"Such-Warteschlange (tägliche Suche)"],"Search Queue (Backlog)":[null,"Such-Warteschlange (Rückstand)"],"Search Queue (Manual)":[null,"Such-Warteschlange (manuell)"],"Search Queue (Retry/Failed)":[null,"Such-Warteschlange (Wiederholt/Fehlgeschlagen)"],"Search Queue (RSS)":[null,"Such-Warteschlange (RSS)"],"Find Propers":[null,"Suche nach Korrekturen (Propers)"],"Postprocessor":[null,"Nachbearbeitung"],"Find Subtitles":[null,"Untertitel finden"],"Trakt Checker":[null,"Trakt-Checker"],"Event":[null,"Ereignis"],"Error":[null,"Fehler"],"Tornado":[null,"Tornado"],"Thread":[null,"Thread"],"Main":[null,"Allgemein"],"Loading":[null,"Wird geladen"],"New update found for SickRage, starting auto-updater":[null,"Neues Update für SickRage gefunden, Auto-Updater wird gestartet"],"Update was successful":[null,"Aktualisierung erfolgreich"],"Update failed!":[null,"Aktualisierung fehlgeschlagen!"],"Backup":[null,"Sicherung"],"Config backup in progress...":[null,"Sicherheitskopie wird erstellt..."],"Config backup successful, updating...":[null,"Sicherheitskopie erfolgreich, aktualisiert..."],"Config backup failed, aborting update":[null,"Sicherung fehlgeschlagen, Update abgebrochen"],"No update needed":[null,"Keine Aktualisierung erforderlich"],"Mako Error":[null,"Mako-Fehler"],"Oops":[null,"Hoppla"],"Wrong API key used":[null,"Falscher API-Schlüssel"],"Login":[null,"Anmelden"],"API Key not generated":[null,"Kein API Key erzeugt"],"API Builder":[null,"API-Generator"],"Schedule":[null,"Zeitplan"],"Test 1":[null,"Test 1"],"This is test number 1":[null,"Dies ist Test Nummer 1"],"Test 2":[null,"Test 2"],"This is test number 2":[null,"Dies ist Test Nummer 2"],"You're using the {branch} branch. Please use 'master' unless specifically asked":[null,"Sie verwenden den {branch}-Versionszweig. Verwenden Sie bitte 'master', sofern nicht anders spezifiziert"],"Invalid show parameters":[null,"Ungültige Serienparameter"],"Invalid parameters":[null,"Ungültige Parameter"],"Episode couldn't be retrieved":[null,"Episode konnte nicht abgerufen werden"],"Home":[null,"Startseite"],"Show List":[null,"Serienliste"],"Error: Unsupported Request. Send jsonp request with 'callback' variable in the query string.":[null,"Fehler: Nicht unterstützter Request. Senden Sie Jsonp Requests mit \"callback\" Variable in der Abfragezeichenfolge."],"Success. Connected and authenticated":[null,"Erfolg. Verbunden und authentifiziert"],"Authentication failed. SABnzbd expects":[null,"Authentifizierung fehlgeschlagen. SABnzbd erwartet"],"as authentication method":[null,"als Authentifizierungsmethode"],"Unable to connect to host":[null,"Keine Verbindung zum Host"],"SMS sent successfully":[null,"SMS erfolgreich verschickt"],"Problem sending SMS: {message}":[null,"Problem beim Senden der SMS: {message}"],"Telegram notification succeeded. Check your Telegram clients to make sure it worked":[null,"Telegram-Benachrichtigung erfolgreich. Prüfen Sie Ihre Telegram-Clients ob es geklappt hat"],"Error sending Telegram notification: {message}":[null,"Fehler beim Senden der Telegram-Benachrichtigung: {message}"],"join notification succeeded. Check your join clients to make sure it worked":[null,"Join-Benachrichtigung erfolgreich. Überprüfen Sie die Join-Clients um sicherzustellen, dass es funktioniert hat"],"Error sending join notification: {message}":[null,"Fehler beim Senden der Join-Benachrichtigung: {message}"]," with password":[null," mit Passwort"],"Registered and Tested growl successfully {growl_host}":[null,"Growl-Registrierung und Test erfolgreich {growl_host}"],"Registration and Testing of growl failed {growl_host}":[null,"Growl-Registrierung und Test fehlgeschlagen {growl_host}"],"Test prowl notice sent successfully":[null,"Prowl-Testbenachrichtigung erfolgreich gesendet"],"Test prowl notice failed":[null,"Prowl-Testbenachrichtigung fehlgeschlagen"],"Boxcar2 notification succeeded. Check your Boxcar2 clients to make sure it worked":[null,"Boxcar2-Benachrichtigung erfolgreich gesendet. Prüfen Sie Ihre Clients ob es geklappt hat"],"Error sending Boxcar2 notification":[null,"Fehler beim Senden der Boxcar2-Benachrichtigung"],"Pushover notification succeeded. Check your Pushover clients to make sure it worked":[null,"Pushover-Benachrichtigung erfolgreich. Prüfen Sie Ihre Clients ob es geklappt hat"],"Error sending Pushover notification":[null,"Fehler beim Senden der Pushover-Benachrichtigung"],"Key verification successful":[null,"Schlüssel-Überprüfung erfolgreich"],"Unable to verify key":[null,"Schlüssel-Überprüfung nicht möglich"],"Tweet successful, check your twitter to make sure it worked":[null,"Tweet erfolgreich, prüfen Sie Twitter, ob es gelappt hat"],"Error sending tweet":[null,"Fehler beim Senden des Tweets"],"Please enter a valid account sid":[null,"Bitte geben Sie eine gültige Benutzerkonto-SID ein"],"Please enter a valid auth token":[null,"Bitte geben Sie ein gültiges Autorisierungs-Token ein"],"Please enter a valid phone sid":[null,"Bitte geben Sie eine gültige Telefon-SID ein"],"Please format the phone number as \"+1-###-###-####\"":[null,"Telefonnummer bitte in folgendem Format verwenden \"+ 1-###-###-###\""],"Authorization successful and number ownership verified":[null,"Autorisierung erfolgreich und Besitz der Nummer bestätigt"],"Error sending sms":[null,"Fehler beim Versand der SMS"],"Slack message successful":[null,"Slack Nachricht erfolgreich"],"Slack message failed":[null,"Slack Nachricht fehlgeschlagen"],"Discord message successful":[null,"Discord Nachricht erfolgreich"],"Discord message failed":[null,"Discord Nachricht fehlgeschlagen"],"Test KODI notice sent successfully to {kodi_host}":[null,"KODI-Testbenachrichtigung erfolgreich gesendet an {kodi_host}"],"Test KODI notice failed to {kodi_host}":[null,"KODI-Testbenachrichtigung fehlgeschlagen {kodi_host}"],"Successful test notice sent to Plex Home Theater ... {plex_clients}":[null,"Erfolgreiche Test-Benachrichtigung an Plex Home Theater gesendet ... {plex_clients}"],"Test failed for Plex Home Theater ... {plex_clients}":[null,"Test fehlgeschlagen für Plex Home Theater ... {plex_clients}"],"Tested Plex Home Theater(s)":[null,"Plex Home Theater(s) getestet"],"Successful test of Plex Media Server(s) ... {plex_servers}":[null,"Erfolgreich getestete Plex Media Server ... {plex_servers}"],"Test failed, No Plex Media Server host specified":[null,"Test fehlgeschlagen, kein Plex Media Server Host angegeben"],"Test failed for Plex Media Server(s) ... {plex_servers}":[null,"Test fehlgeschlagen für Plex Media Server ... {plex_servers}"],"Tested Plex Media Server host(s)":[null,"Getestete Plex Media Server Hosts"],"Tried sending desktop notification via libnotify":[null,"Desktop-Benachrichtigung via Libnotify versucht"],"Test notice sent successfully to {emby_host}":[null,"Testbenachrichtigung erfolgreich an {emby_host} gesendet"],"Test notice failed to {emby_host}":[null,"Testbenachrichtigung an {emby_host} fehlgeschlagen"],"Successfully started the scan update":[null,"Scan-Update erfolgreich gestartet"],"Test failed to start the scan update":[null,"Test fehlgeschlagen um das Scan-Update zu starten"],"Test notice sent successfully to {nmj2_host}":[null,"Testbenachrichtigung erfolgreich an {nmj2_host} gesendet"],"Test notice failed to {nmj2_host}":[null,"Testbeneachrichtigung an {nmj2_host} fehlgeschlagen"],"Trakt Authorized":[null,"Trakt autorisiert"],"Trakt Not Authorized!":[null,"Trakt nicht autorisiert!"],"Test email sent successfully! Check inbox.":[null,"Test-E-Mail erfolgreich versandt! Bitte Posteingang prüfen."],"ERROR: {last_error}":[null,"Fehler: {last_error}"],"Test NMA notice sent successfully":[null,"Test NMA-Nachricht erfolgreich versandt"],"Test NMA notice failed":[null,"Test-NMA-Benachrichtigung fehlgeschlagen"],"Pushalot notification succeeded. Check your Pushalot clients to make sure it worked":[null,"Pushalot-Benachrichtigung erfolgreich. Prüfen Sie Ihre Pushalot-Clients ob es geklappt hat"],"Error sending Pushalot notification":[null,"Fehler beim Senden der Pushalot-Benachrichtigung"],"Pushbullet notification succeeded. Check your device to make sure it worked":[null,"Pushbullet-Benachrichtigung erfolgreich. Prüfen Sie Ihre Clients ob es geklappt hat"],"Error sending Pushbullet notification":[null,"Fehler beim Senden der Pushbullet-Benachrichtigung"],"Status":[null,"Status"],"Restarting SickRage":[null,"SickRage wird neu gestartet"],"Update Failed":[null,"Aktualisierung fehlgeschlagen"],"Update wasn't successful, not restarting. Check your log for more information.":[null,"Aktualisierung fehlgeschlagen, Neustart verhindert. Die Protokolldatei enthält weitere Informationen."],"Checking out branch":[null,"Versionszweig überprüfen"],"Already on branch":[null,"Bereits auf Versionszweig"],"Invalid show ID: {show}":[null,"Ungültige Serien ID: {show}"],"Show not in show list":[null,"Die Serie ist nicht in der Serienliste"],"Edit":[null,"Bearbeiten"],"This show is in the process of being downloaded - the info below is incomplete.":[null,"Diese Serie wird gerade heruntergeladen - die Info unterhalb ist demnach unvollständig."],"The information on this page is in the process of being updated.":[null,"Die Informationen auf dieser Seite werden gerade aktualisiert."],"The episodes below are currently being refreshed from disk":[null,"Die Folgen unterhalb werden gerade von der Festplatte neu eingelesen"],"Currently downloading subtitles for this show":[null,"Untertitel werden gerade für diese Serie heruntergeladen"],"This show is queued to be refreshed.":[null,"Diese Serie wurde der Warteschlange hinzugefügt, um neu eingelesen zu werden."],"This show is queued and awaiting an update.":[null,"Diese Serie wurde der Warteschlange hinzugefügt und ist im Begriff aktualisiert zu werden."],"This show is queued and awaiting subtitles download.":[null,"Diese Serie wurde der Warteschlange hinzugefügt und Untertitel werden in Kürze heruntergeladen."],"Resume":[null,"Fortsetzen"],"Pause":[null,"Pausieren"],"Remove":[null,"Entfernen"],"Re-scan files":[null,"Dateien neu einlesen"],"Force Full Update":[null,"Vollständige Aktualisierung erzwingen"],"Update show in KODI":[null,"Serie in KODI aktualisieren"],"Update show in Emby":[null,"Aktualisiere Serie in Emby"],"Hide specials":[null,"Specials ausblenden"],"Show specials":[null,"Specials anzeigen"],"Preview Rename":[null,"Vorschau: Umbenennung"],"Download Subtitles":[null,"Untertitel herunterladen"],"No scene exceptions":[null,"Keine Szene-Ausnahmen"],"Invalid show ID":[null,"Ungültige Serien ID"],"Unable to find the specified show":[null,"Angegebene Serie konnte nicht gefunden werden"],"Unable to retreive Fansub Groups from AniDB.":[null,"Es können keine FanSub-Gruppen von AniDB empfangen werden."],"Edit Show":[null,"Serie bearbeiten"],"Unable to refresh this show: {error}":[null,"Aktualisierung dieser Serie nicht möglich: {error}"],"New location <tt>{location}</tt> does not exist":[null,"Neuer Speicherort <tt>{location}</tt> existiert nicht"],"Unable to update show: {error}":[null,"Aktualisierung der Serie nicht möglich: {error}"],"Unable to force an update on scene exceptions of the show.":[null,"Aktualiserung der Szene-Ausnahmen konnte für die Serie nicht erzwungen werden."],"Unable to force an update on scene numbering of the show.":[null,"Aktualiserung der Szene-Nummerierung konnte für die Serie nicht erzwungen werden."],"{num_errors:d} error{plural} while saving changes:":[null,"{num_errors:d} Fehler beim Speichern der Änderungen:"],"{show_name} has been {paused_resumed}":[null,"{show_name} wurde {paused_resumed}"],"resumed":[null,"fortgesetzt"],"paused":[null,"pausiert"],"{show_name} has been {deleted_trashed} {was_deleted}":[null,"{show_name} wurde {deleted_trashed}{was_deleted}"],"deleted":[null,"gelöscht"],"trashed":[null,"entsorgt"],"(media untouched)":[null,"(unveränderte Medien-Dateien)"],"(with all related media)":[null,"(mit allen zugehörigen Medien)"],"Unable to refresh this show.":[null,"Aktualisierung dieser Serie nicht möglich."],"Unable to update this show.":[null,"Aktualisierung dieser Serie nicht möglich."],"Library update command sent to KODI host(s)): {kodi_hosts}":[null,"Befehl zur Aktualisierung der Bibliothek an KODI host(s) gesendet: {kodi_hosts}"],"Unable to contact one or more KODI host(s)): {kodi_hosts}":[null,"Nicht in der Lage einen oder mehrere KODI-Hosts zu kontaktieren: {kodi_hosts}"],"Library update command sent to Plex Media Server host: {plex_server}":[null,"Update-Befehl an Plex Media Server Host gesendet: {plex_server}"],"Unable to contact Plex Media Server host: {plex_server}":[null,"Keine Verbindung zu Plex Media Server Host: {plex_server}"],"Library update command sent to Emby host: {emby_host}":[null,"Befehl zur Aktualisierung der Bibliothek an Emby Host gesendet: {emby_host}"],"Unable to contact Emby host: {emby_host}":[null,"Keine Verbindung zu Emby Host:{emby_host}"],"You must specify a show and at least one episode":[null,"Sie müssen mindestens eine Serie und eine Folge angeben"],"Invalid status":[null,"Ungültiger Status"],"Backlog was automatically started for the following seasons of <b>{show_name}</b>":[null,"Rückstandssuche wurde automatisch für die folgenden Staffeln gestartet <b>{show_name}</b>"],"Season":[null,"Staffel"],"Backlog started":[null,"Rückstandssuche gestartet"],"Retrying Search was automatically started for the following season of <b>{show_name}</b>":[null,"Erneute Suche wurde automatisch gestartet für die folgende Staffel von <b>{show_name}</b>"],"Retry Search started":[null,"Erneute Suche gestartet"],"You must specify a show":[null,"Sie müssen eine Serie angeben"],"Can't rename episodes when the show dir is missing.":[null,"Umbennen von Folgen nicht möglich, wenn Serienverzeichnis fehlt."],"New subtitles downloaded: {new_subtitle_languages}":[null,"Neue Untertitel heruntergeladen: {new_subtitle_languages}"],"No subtitles downloaded":[null,"Keine Untertitel heruntergeladen"],"IRC":[null,"IRC"],"Could not load news from the repo. [Click here for news.md])({news_url})":[null,"Konnte keine Neuigkeiten aus dem Repo laden. [Klicken Sie hier für news.md])({news_url})"],"The was a problem connecting to github, please refresh and try again":[null,"Es gab ein Problem beim Verbinden mit Github, bitte aktualisieren Sie die Seite und versuchen Sie es erneut"],"Could not load changes from the repo. [Click here for CHANGES.md]({changes_url})":[null,"Änderungen konnten aus dem Repo nicht geladen werden. [Klicken Sie hier für CHANGES.md] ({changes_url})"],"Changelog":[null,"Änderungsprotokoll"],"Post Processing":[null,"Nachbearbeitung"],"Add Shows":[null,"Serien hinzufügen"],"No folders selected.":[null,"Kein Verzeichnis ausgewählt."],"New Show":[null,"Neue Serie"],"Trending Shows":[null,"Serien-Trends"],"Popular Shows":[null,"Beliebte Serien"],"Most Anticipated Shows":[null,"Meisterwartete Serien"],"Most Collected Shows":[null,"Meistgesammelte Serien"],"Most Watched Shows":[null,"Meistgesehene Serien"],"Most Played Shows":[null,"Meistgespielte Serien"],"Recommended Shows":[null,"Empfohlene Serien"],"New Shows":[null,"Neue Serien"],"Season Premieres":[null,"Staffelpremieren"],"Existing Show":[null,"Vorhandene Serie"],"No root directories setup, please go back and add one.":[null,"Root-Verzeichnis nicht eingerichtet, bitte gehen Sie zurück und fügen Sie eins hinzu."],"Show added":[null,"Serie hinzugefügt"],"Adding the specified show {show_name}":[null,"Angegebene Serie {show_name} wird hinzugefügt"],"Missing params, no Indexer ID or folder: {show_to_add} and {root_dir}/{show_path}":[null,"Parameter, Indexer ID oder Ordner fehlt: {show_to_add} und {root_dir}/{show_path}"],"Unknown error. Unable to add show due to problem with show selection.":[null,"Unbekannter Fehler. Serie kann wegen eines Auswahlproblems nicht hinzugefügt werden."],"Unable to add show":[null,"Kann Serie nicht hinzufügen"],"Folder {show_dir} exists already":[null,"Ordner {show_dir} ist bereits vorhanden"],"Unable to create the folder {show_dir}, can't add the show":[null,"Kann den Ordner {show_dir} nicht erstellen, Serie kann nicht hinzugefügt werden"],"Adding the specified show into {show_dir}":[null,"Die angegebene Serie in {show_dir} hinzufügen"],"Shows Added":[null,"Serien hinzugefügt"],"Automatically added {num_shows} from their existing metadata files":[null,"{num_shows} automatisch aus vorhandenen Metadatendateien hinzugefügt"],"Mass Update":[null,"Massenaktualisierung"],"Episode Overview":[null,"Folgenübersicht"],"Missing Subtitles":[null,"Fehlende Untertitel"],"Backlog Overview":[null,"Rückstandsübersicht"],"Mass Edit":[null,"Massenbearbeitung"],"Unable to update show: {excption_format}":[null,"Serie konnte nicht aktualisiert werden: {excption_format}"],"Unable to refresh show {show_name}: {excption_format}":[null,"Serie {show_name}: {excption_format} kann nicht aktualisiert werden"],"Errors encountered":[null,"Aufgetretene Fehler"],"Updates":[null,"Aktualisierungen"],"Refreshes":[null,"Aktualisierungen"],"Renames":[null,"Umbennenungen"],"Subtitles":[null,"Untertitel"],"The following actions were queued":[null,"Folgende Aktionen wurden der Warteschlange hinzugefügt"],"For best results please set the Download Station alias as":[null,"Für optimale Ergebnisse setzen Sie bitte den Alias der Download-Station auf"],"You can check this setting in the Synology DSM":[null,"Diese Einstellung kann in der Synology DSM überprüft werden"],"Control Panel":[null,"Systemsteuerung"],"Application Portal":[null,"Anwendungsportal"],"Make sure you allow DSM to be embedded with iFrames too in":[null,"Stellen Sie sicher, dass bei DSM ebenfalls das Einbetten von iFrames erlaubt ist"],"DSM Settings":[null,"DSM-Einstellungen"],"Security":[null,"Sicherheit"],"Manage Torrents":[null,"Torrents verwalten"],"Failed Downloads":[null,"Fehlgeschlagene Downloads"],"Manage Searches":[null,"Suchverwaltung"],"Backlog search started":[null,"Rückstandssuche gestartet"],"Daily search started":[null,"Tägliche Suche gestartet"],"Find propers search started":[null,"Suche nach Korrekturen (Propers) gestartet"],"Subtitle search started":[null,"Untertitelsuche gestartet"],"Remove Selected":[null,"Markierte entfernen"],"Clear History":[null,"Verlauf löschen"],"Trim History":[null,"Verlauf kürzen"],"Selected history entries removed":[null,"Ausgewählte Verlaufseinträge entfernt"],"History cleared":[null,"Verlauf geleert"],"Removed history entries older than 30 days":[null,"Verlaufseinträge älter als 30 Tage entfernt"],"General":[null,"Allgemein"],"Backup/Restore":[null,"Sichern/Wiederherstellen"],"Search Settings":[null,"Sucheinstellungen"],"Search Providers":[null,"Suchanbieter"],"Subtitles Settings":[null,"Untertiteleinstellungen"],"Notifications":[null,"Benachrichtigungen"],"Anime":[null,"Anime"],"SickRage Configuration":[null,"SickRage Konfiguration"],"Config - Shares":[null,""],"Windows Shares Configuration":[null,""],"Saved Shares":[null,""],"Your Windows share settings have been saved":[null,""],"Config - General":[null,"Einstellungen - Allgemein"],"General Configuration":[null,"Grundeinstellungen"],"Saved Defaults":[null,"Gespeicherte Standardwerte"],"Your \"add show\" defaults have been set to your current selections.":[null,"Standardeinstellungen von \"Serien hinzufügen\" werden der aktuellen Auswahl entsprechend festgelegt."],"Unable to create directory {directory}, log directory not changed.":[null,"Verzeichnis {directory} kann nicht erstellt werden, Protokollverzeichnis wurde nicht geändert."],"Unable to create directory {directory}, https cert directory not changed.":[null,"Verzeichnis {directory} konnte nicht erstellt werden, https Zertifikatsverzeichnis wurde nicht geändert."],"Unable to create directory {directory}, https key directory not changed.":[null,"Verzeichnis {directory} konnte nicht erstellt werden, https Schlüsselverzeichnis wurde nicht geändert."],"Error(s) Saving Configuration":[null,"Fehler beim Speichern der Einstellungen"],"Configuration Saved":[null,"Konfiguration gespeichert"],"Config - Backup/Restore":[null,"Einstellungen - Sichern/Wiederherstellen"],"Config - Episode Search":[null,"Einstellungen - Episodensuche"],"Config - Post Processing":[null,"Einstellungen - Nachbearbeitung"],"Unpacking Not Supported, disabling unpack setting":[null,"Entpacken wird nicht unterstützt, Entpack-Einstellung wird deaktiviert"],"You tried saving an invalid normal naming config, not saving your naming settings":[null,"Sie haben versucht, eine ungültige Normal-Namens-Konfiguration zu speichern. Namens-Einstellungen werden daher nicht gespeichert"],"You tried saving an invalid anime naming config, not saving your naming settings":[null,"Sie haben versucht, eine ungültige Anime Namens-Konfiguration zu speichern. Namens-Einstellungen werden daher nicht gespeichert"],"Config - Providers":[null,"Einstellungen - Anbieter"],"No Provider Name specified":[null,"Kein Anbieter-Name angegeben"],"No Provider Url specified":[null,"Keine Anbieter-Url angegeben"],"No Provider Api key specified":[null,"Kein Anbieter API-Schlüssel angegeben"],"Config - Notifications":[null,"Einstellungen - Benachrichtigungen"],"Config - Subtitles":[null,"Einstellungen - Untertitel"],"Config - Anime":[null,"Einstellungen - Anime"],"Clear Errors":[null,"Fehler löschen"],"Clear Warnings":[null,"Warnungen löschen"],"Submit Errors":[null,"Fehler melden"],"Logs & Errors":[null,"Protokolle & Fehler"],"Log File":[null,"Protokolldatei"],"Logs":[null,"Protokolle"],"This is a test notification from SickRage":[null,"Dies ist eine Test-Mitteilung von SickRage"],"Please fill out the necessary fields above.":[null,""],"This pattern is invalid.":[null,"Dieses Muster ist ungültig."],"This pattern would be invalid without the folders, using it will force \"Season Folders\" on for all shows.":[null,"Dieses Muster wäre ungültig ohne die Ordner, wird es dennoch verwendet schaltet es \"Staffel-Ordner\" für alle Serien ein ."],"This pattern is valid.":[null,"Dieses Muster ist gültig."],"Resume updating the log on this page.":[null,"Wiederaufnahme der Aktualisierung des Protokolls auf dieser Seite."],"Pause updating the log on this page.":[null,"Pausiere die Aktualisierung des Protokolls auf dieser Seite."],"You have reached this page by accident, please check the url.":[null,"Sie haben diese Seite durch Zufall erreicht. Bitte prüfen Sie die Url."],"A mako error has occured.<br>\n If this happened during an update a simple page refresh may be the solution.<br>\n Mako errors that happen during updates may be a one time error if there were significant ui changes.":[null,"Ein Mako-Fehler ist aufgetreten.<br>\n Wenn das während einer Aktualisierung vorkommt, dann könnte ein Neuladen der Seite helfen.<br>\n Mako-Fehler, die während einer Aktualisierung passieren, treten oft nur einmalig auf, wenn größere Änderungen an der Benutzeroberfläche durchgeführt wurden."],"Show/Hide Error":[null,"Fehler ein-/ausblenden"],"Add New Show":[null,"Neue Serie hinzufügen"],"For shows that you haven't downloaded yet, this option finds a show on theTVDB.com, creates a directory for it's episodes, and adds it to SickRage.":[null,"Für Sendungen die Sie noch nicht heruntergeladen haben findet sie diese Option in theTVDB.com, erstellt ein Verzeichnis für ihre Episoden und fügt sie zu SickRage hinzu."],"Add From Trakt Lists":[null,"Von Trakt Listen hinzufügen"],"For shows that you haven't downloaded yet, this option lets you choose from a show from one of the Trakt lists to add to SickRage.":[null,"Für Serien, die Sie noch nicht heruntergeladen haben, ermöglicht diese Option Serien aus einer Trakt Liste auszuwählen und sie SickRage hinzuzufügen."],"Add From IMDB's Popular Shows":[null,"Aus beliebten Serien von IMDB hinzufügen"],"View IMDB's list of the most popular shows. This feature uses IMDB's MOVIEMeter algorithm to identify popular TV Series.":[null,"IMDB Liste der beliebtesten Serien anzeigen. Diese Funktion nutzt IMDBs MOVIEMeter-Algorithmus zur Identifizierung beliebter TV-Serien."],"Add Existing Shows":[null,"Vorhandene Serien hinzufügen"],"Use this option to add shows that already have a folder created on your hard drive. SickRage will scan your existing metadata/episodes and add the show accordingly.":[null,"Verwenden Sie diese Option um eine Serie hinzuzufügen, die sich bereits in einem Ordner auf Ihrer Festplatte befindet. SickRage durchsucht Ihre vorhandenen Metadaten/Episoden und wird die Serie entsprechend hinzufügen."],"Add Existing Show":[null,"Vorhandene Serie hinzufügen"],"Manage Directories":[null,"Verzeichnisse verwalten"],"Customize Options":[null,"Einstellungen anpassen"],"SickRage can add existing shows, using the current options, by using locally stored NFO/XML metadata to eliminate user interaction. If you would rather have SickRage prompt you to customize each show, then use the checkbox below.":[null,"SickRage kann vorhandene Serien mit gegebenen Einstellungen mithilfe von lokal gespeicherten NFO/XML-Metadaten ohne weitere Benutzerinteraktion hinzufügen. \n Um jede Serie individuell anzupassen, bitte das folgende Kontrollkästchen aktivieren."],"Prompt me to set settings for each show":[null,"Die Einstellungen für jede Serie anzeigen"],"Displaying folders within these directories which aren't already added to SickRage":[null,"Anzeigen von Ordnern innerhalb dieser Verzeichnisse, die SickRage nicht bereits hinzugefügt wurden"],"Submit":[null,"Absenden"],"Find a show on theTVDB":[null,"Eine Serie auf theTVDB finden"],"Show retrieved from existing metadata":[null,"Serie aus vorhandenen Metadaten ermittelt"],"All Indexers":[null,"Alle Indexer"],"Search":[null,"Suche"],"This will only affect the language of the retrieved metadata file contents and episode filenames.":[null,"Dies wirkt sich nur auf die Sprache der abgerufenen Metadateninhalte und Folge-Dateinamen aus."],"This <b>DOES NOT</b> allow SickRage to download non-english TV episodes!":[null,"<b>Nicht</b> zulassen, dass SickRage nicht englischsprachige TV-Folgen herunterlädt!"],"Pick the parent folder":[null,"Wählen Sie den übergeordneten Ordner"],"Pre-chosen Destination Folder":[null,"Vorab gewählter Zielordner"],"Customize options":[null,"Einstellungen anpassen"],"Add Show":[null,"Serie hinzufügen"],"Skip Show":[null,"Serie überspringen"],"Sort By":[null,"Sortieren nach"],"Name":[null,"Name"],"Original":[null,"Original"],"Votes":[null,"Stimmen"],"Rating":[null,"Bewertung"],"Rating > Votes":[null,"Bewertung > Stimmen"],"Sort Order":[null,"Sortierung"],"Asc":[null,"Aufsteigend"],"Desc":[null,"Absteigend"],"Fetching of IMDB Data failed. Are you online?":[null,"IMDB Daten abrufen fehlgeschlagen. Sind Sie online?"],"Exception":[null,"Ausnahme"],"Select Trakt List":[null,"Wähle Trakt Liste"],"Most Anticipated":[null,"Meisterwartet"],"Trending":[null,"Im Trend"],"Popular":[null,"Beliebt"],"Most Watched":[null,"Meistgesehen"],"Most Played":[null,"Meistgespielt"],"Most Collected":[null,"Meistgesammelt"],"Recommended":[null,"Empfohlen"],"Toggle navigation":[null,"Navigationsanzeige umschalten"],"Profile":[null,"Profil"],"JSONP":[null,"JSONP"],"Back to SickRage":[null,"Zurück zu SickRage"],"Parameters":[null,"Parameter"],"Required":[null,"Erforderlich"],"Description":[null,"Beschreibung"],"Type":[null,"Typ"],"Default value":[null,"Standardwert"],"Allowed values":[null,"Zulässigen Werte"],"Playground":[null,"Spielplatz"],"Clear":[null,"Bereinigen"],"Yes":[null,"Ja"],"No":[null,"Nein"],"season":[null,"Staffel"],"episode":[null,"Folge"],"Python Version":[null,"Python-Version"],"SSL Version":[null,"SSL-Version"],"OS":[null,"Betriebssystem"],"Locale":[null,"Gebietsschema"],"User":[null,"Benutzer"],"Program Folder":[null,"Programmordner"],"Config File":[null,"Konfigurationsdatei"],"Database File":[null,"Datenbankdatei"],"Cache Folder":[null,"Cache-Verzeichnis"],"Log Folder":[null,"Protokollordner"],"Arguments":[null,"Argumente"],"Web Root":[null,"Web Root-Verzeichnis"],"Website":[null,"Webseite"],"Wiki":[null,"Wiki"],"Source":[null,"Quelle"],"IRC Chat":[null,"IRC-Chat"],"AnimeDB Settings":[null,"AnimeDB Einstellungen"],"Look & Feel":[null,"Erscheinungsbild"],"AniDB is non-profit database of anime information that is freely open to the public":[null,"AniDB ist eine Non-Profit-Datenbank von Anime-Informationen, die für die Öffentlichkeit frei zugänglich ist"],"Enable":[null,"Einschalten"],"should SickRage use data from AniDB?":[null,"sollte SickRage Daten von AniDB verwenden?"],"AniDB Username":[null,"AniDB Benutzername"],"username of your AniDB account":[null,"Benutzername Ihres AniDB-Accounts"],"AniDB Password":[null,"AniDB Passwort"],"password of your AniDB account":[null,"Passwort Ihres AniDB-Accounts"],"AniDB MyList":[null,"AniDB MyList"],"do you want to add the PostProcessed episodes to the MyList?":[null,"Sollen nachbearbeitete Folgen MyList hinzugefügt werden?"],"Look and Feel":[null,"Erscheinungsbild"],"How should the anime functions show and behave.":[null,"Anzeige und Verhalten der Anime-Funktionen."],"Split show lists":[null,"Serienlisten aufteilen"],"separate anime and normal shows in groups":[null,"Anime und normale Serien in Gruppen trennen"],"Split in tabs":[null,"In Registerkarten aufteilen"],"use tabs for when splitting show lists":[null,"verwende Registerkarten für Aufspaltung der Serienlisten"],"Restore":[null,"Wiederherstellen"],"Backup your main database file and config.":[null,"Sicherung der Hauptdatenbank und Konfiguration."],"Select the folder you wish to save your backup file to":[null,"Verzeichnis für Sicherungsdatei wählen"],"Restore your main database file and config.":[null,"Wiederherstellung der Hauptdatenbank und Konfiguration."],"Select the backup file you wish to restore":[null,"Sicherungsdatei für Wiederherstellung wählen"],"Misc":[null,"Sonstiges"],"Interface":[null,"Benuzeroberfläche"],"Advanced Settings":[null,"Erweiterte Einstellungen"],"Startup options. Indexer options. Log and show file locations.":[null,"Starteinstellungen. Indexer Einstellungen. Speicherorte von Protokoll- und Seriendateien."],"Some options may require a manual restart to take effect.":[null,"Einige Einstellungen werden erst nach einem manuellen Neustart wirksam."],"Default Indexer Language":[null,"Indexer Standardsprache"],"for adding shows and metadata providers":[null,"zum Hinzufügen von Serien- und Metadaten-Anbietern"],"Launch browser":[null,"Browser starten"],"open the SickRage home page on startup":[null,"sickRage-Homepage beim Start öffnen"],"Initial page":[null,"Startseite"],"Shows":[null,"Serien"],"when launching SickRage interface":[null,"beim Start der SickRage-Benuzeroberfläche"],"Choose hour to update shows":[null,"Uhrzeit wählen zum Aktualisieren der Serien"],"with information such as next air dates, show ended, etc. Use 15 for 3pm, 4 for 4am etc.":[null,"mit Informationen wie nächste Sendetermine, Serie ist zu Ende usw. 15 = 15 Uhr (nachmittags), 4 = 4 Uhr (morgens) usw."],"note":[null,"Hinweis"],"minutes are randomized each time SickRage is started":[null,"Minuten werden bei jedem Start von SickRage randomisiert"],"Send to trash for actions":[null,"Papierkorb-Optionen"],"when using show \"Remove\" and delete files":[null,"Für den Fall, dass Serie \"Entfernen und Dateien löschen\" aktiv ist"],"on scheduled deletes of the oldest log files":[null,"bei geplanten Löschungen der ältesten Protokolldateien"],"selected actions use trash (recycle bin) instead of the default permanent delete":[null,"ausgewählte Aktionen verwenden den (wiederherstellbaren) Papierkorb statt standardmäßig permanent zu löschen"],"Log file folder location":[null,"Standort Protokolldatei"],"Number of Log files saved":[null,"Anzahl der Protokolldateien"],"number of log files saved when rotating logs (default: 5) (REQUIRES RESTART)":[null,"Anzahl der Protokolldateien für Protokollrotation (default: 5) (REQUIRES RESTART)"],"Size of Log files saved":[null,"Größe der gespeicherten Protokolldateien"],"maximum size in MB of the log file (default: 1MB) (REQUIRES RESTART)":[null,"maximale Größe der Protokolldatei in MB (Standard: 1MB) (Neustart erforderlich)"],"Use initial indexer set to":[null,"Setze ersten Indexer auf"],"as the default selection when adding new shows":[null,"Standardauswahl beim Hinzufügen neuer Serien"],"Timeout show indexer at":[null,"Timeout des Serienindexers bei"],"seconds of inactivity when finding new shows (default:20)":[null,"Inaktivität in Sekunden beim Finden neuer Serien (Standard: 20)"],"Show root directories":[null,"Stammverzeichnisse anzeigen"],"where the files of shows are located":[null,"Standort der Seriendateien"],"Save Changes":[null,"Änderungen speichern"],"Options for software updates.":[null,"Optionen für Softwareupdates."],"Check software updates":[null,"Auf neue Versionen prüfen"],"and display notifications when updates are available. Checks are run on startup and at the frequency set below*":[null,"und Benachrichtigungen anzeigen, sobald Updates verfügbar sind. Überprüfungen werden beim Start und gemäß dem unten angegebenen Takt ausgeführt*"],"Automatically update":[null,"Automatisch aktualisieren"],"fetch and install software updates. Updates are run on startup and in the background at the frequency set below*":[null,"Software Aktualisierungen abrufen und installieren. \n Updates werden beim Start und gemäß dem unten angegebenen Takt im Hintergrund ausgeführt*"],"Check the server every*":[null,"Überprüfung des Servers alle*"],"hours for software updates (default:1)":[null,"Stunden nach Software-Updates (Standard: 1)"],"Notify on software update":[null,"Benachrichtigen bei Softwareupdate"],"send a message to all enabled notifiers when SickRage has been updated":[null,"Nachricht an alle aktivierten Benachrichtigungs-Module senden, sobald SickRage aktualisiert wurde"],"User Interface":[null,"Benutzeroberfläche"],"Options for visual appearance.":[null,"Einstellungen für visuelle Darstellung."],"Interface Language":[null,"Sprache der Benutzeroberfläche"],"System Language":[null,"Systemsprache"],"for appearance to take effect, save then refresh your browser":[null,"um wirksam zu werden, speichern und Browser aktualisieren"],"Display theme":[null,"Anzeigedesign"],"Dark":[null,"Dunkel"],"Light":[null,"Hell"],"Use a background image":[null,"EIn Hintergrundbild verwenden"],"use a custom image as background for SickRage":[null,"Verwende ein benutzerdefiniertes Bild als Hintergrund für SickRage"],"Background Path":[null,"Pfad zum Hintergrundbild"],"Path to the background image":[null,"Pfad zum Hintergrundbild"],"Show fanart in the background":[null,"Fanart im Hintergrund anzeigen"],"on the show summary page":[null,"auf der Serien-Übersichtsseite"],"Fanart transparency":[null,"Fanart-Transparenz"],"transparency of the fanart in the background":[null,"Transparenz der Fanart im Hintergrund"],"Use a custom stylesheet file":[null,""],"use a custom .css file to style SickRage (for advanced users)":[null,""],"Stylesheet File Path":[null,""],"Path to the stylesheet (.css) file":[null,""],"Show all seasons":[null,"Alle Staffeln anzeigen"],"Sort with \"The\", \"A\", \"An\"":[null,"Inklusive \"The\", \"A\", \"Ein\" sortieren"],"include articles (\"The\", \"A\", \"An\") when sorting show lists":[null,"Beim Sortieren Artikel (\"The\", \"A\", \"An\") berücksichtigen"],"Missed episodes range":[null,"Zeitspanne versäumter Folgen"],"set the range in days of the missed episodes in the Schedule page":[null,"Spanne versäumter Folgen (in Tagen) im Zeitplaner festlegen"],"Display fuzzy dates":[null,"Ungefähre Datumsangaben anzeigen"],"move absolute dates into tooltips and display e.g. \"Last Thu\", \"On Tue\"":[null,"Absolute Datumsangaben in Tooltips verschieben und anzeigen z.B. \"Letzten Do\", \"Am Die\""],"Trim zero padding":[null,"Überflüssige Nullen kürzen"],"remove the leading number \"0\" shown on hour of day, and date of month":[null,"Führende Ziffer \"0\" aus der Stunde des Tages und dem Monatsdatum entfernen"],"Date style":[null,"Datumsformat"],"Use System Default":[null,"Systemstandard verwenden"],"Time style":[null,"Zeitformat"],"seconds are only shown on the History page":[null,"Sekunden werden nur auf der Verlaufsseite angezeigt"],"Timezone":[null,"Zeitzone"],"Local":[null,"Lokal"],"Network":[null,"Sender"],"display dates and times in either your timezone or the shows network timezone":[null,"Datum und Uhrzeit in Ihrer Zeitzone oder der des Senders anzeigen"],"use local timezone to start searching for episodes minutes after show ends (depends on your dailysearch frequency)":[null,"Verwendung der lokalen Zeitzone, um nach Folgen unmittelbar nach Ende der Serie zu suchen (abhängig vom Takt der täglichen Suche)"],"Download url":[null,"Download-URL"],"URL where the shows can be downloaded.":[null,"URL, von der die Serien heruntergeladen werden können."],"Web Interface":[null,"Weboberfläche"],"it is recommended that you enable a username and password to secure SickRage from being tampered with remotely.":[null,"Die Aktivierung von Benutzernamen und Passwort wird empfohlen, um SickRage vor unerwünschten Remote-Manipulationen zu schützen."],"these options require a manual restart to take effect.":[null,"Diese Optionen erfordern einen manuellen Neustart."],"API key":[null,"API-Schlüssel"],"used to give 3rd party programs limited access to SickRage":[null,"verwendet, um 3rd-Party-Programmen beschränkten Zugriff auf SickRage zu gewähren"],"you can try all the features of the API":[null,"Sie können alle Funktionen der API ausprobieren"],"here":[null,"Hier"],"HTTP logs":[null,"HTTP-Protokolle"],"enable logs from the internal Tornado web server":[null,"Protokolle des internen Tornado Webservers aktivieren"],"HTTP username":[null,"HTTP Benutzername"],"set blank for no login":[null,"Freilassen für kein Login"],"HTTP password":[null,"HTTP Passwort"],"blank = no authentication":[null,"leer = keine Authentifizierung"],"HTTP port":[null,"HTTP Port"],"web port to browse and access SickRage (default:8081)":[null,"Webport für den Zugriff auf SickRage (Standard: 8081)"],"Notify on login":[null,"Benachrichtigung beim Login"],"enable to be notified when a new login happens in webserver":[null,"Aktivieren, um bei einem neuen Webserver-Login benachrichtigt zu werden"],"Listen on IPv6":[null,"IPv6 Unterstützung"],"attempt binding to any available IPv6 address":[null,"Versuch der Anbindung an verfügbare IPv6-Adressen"],"Enable HTTPS":[null,"HTTPS einschalten"],"enable access to the web interface using a HTTPS address":[null,"Zugriff auf Web-Benutzeroberfläche über HTTPS"],"HTTPS certificate":[null,"HTTPS-Zertifikat"],"file name or path to HTTPS certificate":[null,"Dateiname oder Pfad zum HTTPS-Zertifikat"],"HTTPS key":[null,"HTTPS-Schlüssel"],"file name or path to HTTPS key":[null,"Dateiname oder Pfad zum HTTPS-Zertifikat"],"Reverse proxy headers":[null,"Reverse Proxy Header"],"accept the following reverse proxy headers (advanced)...":[null,"Akzeptieren folgender Reverse Proxy-Header (fortgeschritten)..."],"(X-Forwarded-For, X-Forwarded-Host, and X-Forwarded-Proto)":[null,"(X-Forwarded-For, X-Forwarded-Host und X-Forwarded-Proto)"],"CPU throttling":[null,"CPU-Drosselung"],"Normal (default). High is lower and Low is higher CPU use":[null,"Normal (Standard). Hoch ist niedrigere und Niedrig ist höhere CPU-Auslastung"],"Anonymous redirect":[null,"Anonyme Umleitung"],"backlink protection via anonymizer service, must end in \"?\"":[null,"Backlink-Schutz über Anonymizer-Service muss mit \"?\" enden"],"Enable debug":[null,"Debug einschalten"],"enable debug logs":[null,"Debug-Protokolle aktivieren"],"Verify SSL Certs":[null,"SSL-Zertifikate überprüfen"],"verify SSL Certificates (Disable this for broken SSL installs (Like QNAP))":[null,"SSL-Zertifikate überprüfen (deaktivieren Sie diese für 'defekte' SSL-Installationen (wie QNAP))"],"No Restart":[null,"Kein Neustart"],"only shutdown when restarting SR":[null,"nur abschalten bei SR Neustart"],"only select this when you have external software restarting SR automatically when it stops (like FireDaemon)":[null,"Nur auswählen, wenn externe Software SR automatisch neustartet, sobald angehalten (wie FireDaemon)"],"Encrypt passwords":[null,"Passwörter verschlüsseln"],"in the <code>config.ini</code> file":[null,"in der Datei <code>config.ini</code>"],"warning":[null,"Achtung"],"passwords must only contain":[null,"Passwörter dürfen nur enthalten"],"ASCII characters":[null,"ASCII-Zeichen"],"Unprotected calendar":[null,"Ungeschützter Kalender"],"allow subscribing to the calendar without user and password":[null,"Abonnieren des Kalenders ohne Benutzername und Passwort erlauben"],"some services like Google Calendar only work this way":[null,"einige Dienste wie Google Kalender funktionieren nur auf diese Weise"],"Google Calendar Icons":[null,"Google Kalender-Icons"],"show an icon next to exported calendar events in Google Calendar":[null,"Symbol neben exportierten Kalenderereignissen im Google Kalender anzeigen"],"Proxy host":[null,"Proxy-Host"],"blank to disable or proxy to use when connecting to providers":[null,"Freilassen zum deaktivieren beziehungsweise zu verwendender Proxy bei der Verbindung mit Anbietern"],"also use global proxy setting for indexers (tvdb, xem, anidb, etc.)":[null,"Globale Proxy-Einstellung auch für Indexer verwenden (Tvdb, Xen, Anidb usw.)"],"Skip Remove Detection":[null,"Erkennung entfernter Elemente ignorieren"],"skip detection of removed files":[null,"Erkennung von entfernten Dateien überspringen"],"if disabled the episode will be set to the default deleted status":[null,"sofern deaktiviert wird der Status der Folge standardmäßig auf \"gelöscht\" gesetzt"],"Default deleted episode status":[null,"Standardstatus gelöschter Folgen"],"define the status to be set for media file that has been deleted.":[null,"Status für gelöschte Mediendateien festlegen."],"Archived option will keep previous downloaded quality":[null,"Die Einstellung \"Archiviert\" behält die zuvor heruntergeladene Qualität bei"],"example: Downloaded (1080p WEB-DL) ==> Archived (1080p WEB-DL)":[null,"Beispiel: Heruntergeladen (1080p WEB-DL) ==> Archiviert (1080p WEB-DL)"],"Options for github related features.":[null,"Optionen rundum Github."],"Branch version":[null,"Branch Version"],"error: No branches found.":[null,"Fehler: Keine Versionszweige gefunden."],"select branch to use (restart required)":[null,"Versionszweig auswählen (Neustart erforderlich)"],"Authorization Type":[null,"Authentifizierungstyp"],"Username and password":[null,"Benutzername und Passwort"],"Personal access token":[null,"Persönlicher Zugangs-Token"],"You must use a personal access token if you're using \"two-factor authentication\" on GitHub.":[null,"Sie müssen einen persönlichen Zugangs-Token verwenden, wenn Sie \"zwei-Faktor-Authentifizierung\" auf GitHub verwenden möchten."],"GitHub username":[null,"GitHub Benutzername"],"*** (REQUIRED FOR SUBMITTING ISSUES) ***":[null,"(ERFORDERLICH UM PROBLEME EINZUREICHEN) ***"],"GitHub password":[null,"GitHub Passwort"],"GitHub personal access token":[null,"persönlicher GitHub Zugangs-Token"],"Generate Token":[null,"Token generieren"],"Manage Tokens":[null,"Tokens verwalten"],"GitHub remote for branch":[null,"GitHub Remote für Versionszweig"],"access repo configured remotes (save then refresh browser)":[null,"Zugriff Repo-konfigurierter Remotes (sichern, anschließend Browser aktualisieren)"],"default":[null,"Standard"],"origin":[null,"Quelle"],"Git executable path":[null,"Pfad zu 'Git'"],"only needed if OS is unable to locate git from env":[null,"nur erforderlich, wenn Git nicht über die das Betriebssystemumgebung gefunden werden kann"],"Git reset":[null,"'Git' zurücksetzen"],"removes untracked files and performs a hard reset on git branch automatically to help resolve update issues":[null,"entfernt nicht aufgezeichnete Dateien und führt automatisch einen harten Reset beim Git-Versionszweig durch, um Update-Probleme zu beheben"],"Home Theater / NAS":[null,"Heimkino / NAS"],"Devices":[null,"Geräte"],"Social":[null,"Sozial"],"A free and open source cross-platform media center and home entertainment system software with a 10-foot user interface designed for the living-room TV.":[null,"Kostenloses, plattformübergreifendes Open Source Medien-Center und Home Entertainment System Software mit einer 3 Meter Benutzeroberfläche für das Wohnzimmer-TV entwickelt."],"send KODI commands?":[null,"KODI Befehle senden?"],"Always on":[null,"Immer An"],"log errors when unreachable?":[null,"Fehler protokollieren sofern nicht erreichbar?"],"Notify on snatch":[null,"Sobald ermittelt benachrichtigen"],"send a notification when a download starts?":[null,"Benachrichtigung senden, sobald ein Download startet?"],"Notify on download":[null,"Beim Herunterladen benachrichtigen"],"send a notification when a download finishes?":[null,"Benachrichtigung senden, wenn ein Download abgeschlossen ist?"],"Notify on subtitle download":[null,"Beim Herunterladen von Untertiteln benachrichtigen"],"send a notification when subtitles are downloaded?":[null,"Benachrichtigung senden, wenn Untertitel heruntergeladen werden?"],"Update library":[null,"Bibliothek aktualisieren"],"update KODI library when a download finishes?":[null,"KODI-Bibliothek aktualisieren, sobald ein Download abgeschlossen ist?"],"Full library update":[null,"Vollständige Bibliotheksaktualisierung"],"perform a full library update if update per-show fails?":[null,"Vollständige Aktualisierung ausführen, sofern einzelne Serien-Aktualisierungen fehlschlagen?"],"Only update first host":[null,"Nur den ersten Host aktualisieren"],"only send library updates to the first active host?":[null,"Bibliotheks-Aktualisierungen nur an den ersten aktiven Host senden?"],"KODI IP:Port":[null,"KODI IP: Port"],"host running KODI (eg. 192.168.1.100:8080)":[null,"Host, auf dem KODI läuft (z.B. 192.168.1.100:8080)"],"(multiple host strings must be separated by commas)":[null,"(mehrere Host-Zeichenfolgen müssen durch Kommas getrennt werden)"],"Username":[null,"Benutzername"],"username for your KODI server (blank for none)":[null,"Benutzername für KODI-Server (leer lassen für keinen)"],"Password":[null,"Passwort"],"password for your KODI server (blank for none)":[null,"Passwort für KODI-Server (leer lassen für keins)"],"Click below to test.":[null,"Test: unten klicken."],"Experience your media on a visually stunning, easy to use interface on your Mac connected to your TV. Your media library has never looked this good!":[null,"Erleben Sie Ihre Medien auf einer visuell beeindruckenden und einfach zu bedienenden Benutzeroberfläche auf Ihrem Mac direkt an Ihr Fernsehgerät angeschlossen. Ihre Medienbibliothek sah noch nie so gut aus!"],"For sending notifications to Plex Home Theater (PHT) clients, use the KODI notifier with port <b>3005</b>.":[null,"Um Benachrichtigungen an Plex Home Theater (PHT)-Clients zu senden, verwenden Sie den KODI-Notifier an Port-<b>3005</b>."],"send Plex Media Server library updates?":[null,"Plex Media Server Bibliotheksaktualisierungen senden?"],"Plex Media Server Auth Token":[null,"Plex Media Server Autorisierungs-Token"],"auth token used by Plex":[null,"Plex Authentifizierungs-Token"],"Update Library":[null,"Bibliothek aktualisieren"],"update Plex Media Server library when a download finishes":[null,"Plex Media Server-Bibliothek aktualisieren, wenn ein Download abgeschlossen ist"],"Plex Media Server IP:Port":[null,"Plex Media Server IP: Port"],"one or more hosts running Plex Media Server<br/>(eg. 192.168.1.1:32400, 192.168.1.2:32400)":[null,"ein oder mehrere Hosts mit laufendem Plex Media Server <br/>(z.B. 192.168.1.1:32400, 192.168.1.2:32400)"],"HTTPS":[null,"HTTPS"],"use https for plex media server requests?":[null,"Https verwenden für Plex Media Serveranfragen?"],"Click below to test Plex Media Server(s)":[null,"Unten klicken, um Plex Media Server zu testen"],"Test Plex Media Server":[null,"Plex Media Server testen"],"Plex Home Theater":[null,"Plex Home Theater"],"send Plex Home Theater notifications?":[null,"Plex Home Theater Benachrichtigungen senden?"],"Plex Home Theater IP:Port":[null,"Plex Home Theater IP:Port"],"one or more hosts running Plex Home Theater<br>(eg. 192.168.1.100:3000, 192.168.1.101:3000)":[null,"ein oder mehrere Hosts mit laufendem Plex Home Theater <br>(z.B. 192.168.1.1:32400, 192.168.1.2:32400)"],"Click below to test Plex Home Theater(s)":[null,"Unten klicken, um Plex Home Theater zu testen"],"Test Plex Home Theater":[null,"Plex Home Theater testen"],"some Plex Home Theaters <b class=\"boldest\">do not</b> support notifications e.g. Plexapp for Samsung TVs":[null,"Einige Plex Home Theater Apps unterstützen <b class=\"boldest\"> keine </b> Benachrichtigungen z.B. Plexapp für Samsung TVs"],"Emby":[null,"Emby"],"A home media server built using other popular open source technologies.":[null,"Heim-Medien-Server für die Nutzung weiterer, populärer Open-Source-Technologien."],"send update commands to Emby?":[null,"Aktualisierungsbefehle an Emby schicken?"],"Emby IP:Port":[null,"Emby IP: Port"],"host running Emby (eg. 192.168.1.100:8096)":[null,"Host, auf dem Emby läuft (z.B. 192.168.1.100:8096)"],"Emby API Key":[null,"Emby API Key"],"Networked Media Jukebox":[null,"Networked Media Jukebox"],"The Networked Media Jukebox, or NMJ, is the official media jukebox interface made available for the Popcorn Hour 200-series.":[null,"Die Networked Media Jukebox oder NMJ ist die offizielle Media-Jukebox-Schnittstelle für die Popcorn Hour-200-Serie."],"send update commands to NMJ?":[null,"Aktualisierungsbefehle an NMJ schicken?"],"Popcorn IP address":[null,"Popcorn IP-Adresse"],"IP address of Popcorn 200-series (eg. 192.168.1.100)":[null,"IP-Adresse der Popcorn-200-Serie (z.B. 192.168.1.100)"],"Get settings":[null,"Einstellungen holen"],"Get Settings":[null,"Einstellungen abrufen"],"the Popcorn Hour device must be powered on and NMJ running.":[null,"Das Popcorn Hour-Gerät muss eingeschaltet und NMJ ausgeführt sein."],"NMJ database":[null,"NMJ-Datenbank"],"automatically filled via the 'Get Settings' button.":[null,"wird automatisch über den Button 'Einstellungen abrufen' vervollständigt."],"NMJ mount url":[null,"NMJ Mount URL"],"Networked Media Jukebox v2":[null,"Networked Media Jukebox v2"],"The Networked Media Jukebox, or NMJv2, is the official media jukebox interface made available for the Popcorn Hour 300 & 400-series.":[null,"Die Networked Media Jukebox oder NMJv2 ist die offizielle Medien-Jukebox-Schnittstelle für die Popcorn Hour 300 & 400-Serie."],"send update commands to NMJv2?":[null,"Aktualisierungsbefehle an NMJv2 schicken?"],"IP address of Popcorn 300/400-series (eg. 192.168.1.100)":[null,"IP-Adresse der Popcorn 300/400-Serie (z.B. 192.168.1.100)"],"Database location":[null,"Speicherort der Datenbank"],"Database instance":[null,"Datenbankinstanz"],"adjust this value if the wrong database is selected.":[null,"passen Sie diesen Wert an, sofern die falsche Datenbank ausgewählt ist."],"Find database":[null,"Datenbank suchen"],"Find Database":[null,"Datenbank suchen"],"the Popcorn Hour device must be powered on.":[null,"Das Popcorn Hour-Gerät muss eingeschaltet sein."],"NMJv2 database":[null,"NMJv2-Datenbank"],"automatically filled via the 'Find Database' buttons.":[null,"wird automatisch über den Button 'Datenbank suchen' vervollständigt."],"Synology":[null,"Synology"],"The Synology DiskStation NAS.":[null,"Die Synology DiskStation NAS."],"Synology Indexer is the daemon running on the Synology NAS to build its media database.":[null,"Synology-Indexer ist der Daemon, der auf dem Synology NAS läuft, um seine Mediendatenbank zu erstellen."],"send Synology notifications?":[null,"Synology Benachrichtigungen senden?"],"requires SickRage to be running on your Synology NAS.":[null,"SickRage muss auf Synology NAS ausgeführt werden."],"Synology Indexer":[null,"Synology-Indexer"],"Synology Notifier is the notification system of Synology DSM":[null,"Synology Notifier ist das Meldesystem von Synology DSM"],"send notifications to the Synology Notifier?":[null,"Benachrichtigungen an Synology-Notifier schicken?"],"pyTivo":[null,"pyTivo"],"pyTivo is both an HMO and GoBack server. This notifier will load the completed downloads to your Tivo.":[null,"pyTivo ist sowohl ein HMO- als auch ein GoBack-Server. Dieses Benachrichtungsssystem lädt abgeschlossene Downloads zu Ihrem Tivo."],"send notifications to pyTivo?":[null,"Benachrichtigungen an PyTivo schicken?"],"requires the downloaded files to be accessible by pyTivo.":[null,"Heruntergeladenen Dateien müssen für PyTivo zugänglich sein."],"pyTivo IP:Port":[null,"pyTivo IP:Port"],"host running pyTivo (eg. 192.168.1.1:9032)":[null,"Host, auf dem pyTivo läuft (z.B. 192.168.1.1:9032)"],"pyTivo share name":[null,"pyTivo-Freigabename"],"value used in pyTivo Web Configuration to name the share.":[null,"Wert in der PyTivo Web-Konfiguration für die Namensgebung der Freigabe."],"Tivo name":[null,"Tivo-Name"],"(Messages & Settings > Account & System Information > System Information > DVR name)":[null,"(Nachrichten & Einstellungen > Konto & Systeminformationen > Systeminformationen > DVR-Name)"],"Growl":[null,"Growl"],"A cross-platform unobtrusive global notification system.":[null,"Ein dezentes, globales Cross-Plattform Benachrichtigungssystem."],"send Growl notifications?":[null,"Growl Benachrichtigungen senden?"],"Growl IP:Port":[null,"Growl IP:Port"],"host running Growl (eg. 192.168.1.100:23053)":[null,"Growl-Host (z.B. 192.168.1.100:23053)"],"may leave blank if SickRage is on the same host.":[null,"Freilassen wenn SickRage auf dem gleichen Host ausgeführt wird."],"otherwise Growl <b>requires</b> a password to be used.":[null,"Ansonsten <b>erfordert</b> Growl ein Kennwort."],"Click below to register and test Growl, this is required for Growl notifications to work.":[null,"Unten klicken um Growl zu registrieren und zu testen, dies ist für Growl-Benachrichtigungen erforderlich."],"Register Growl":[null,"Growl-Registrierung"],"Prowl":[null,"Prowl"],"A Growl client for iOS.":[null,"Growl-Client für iOS."],"send Prowl notifications?":[null,"Prowl Benachrichtigungen senden?"],"Prowl Message Title":[null,"Prowl Nachrichtentitel"],"Global Prowl API key(s)":[null,"Globale Prowl-API-Schlüssel"],"Prowl API(s) listed here, separated by commas if applicable, will<br> receive notifications for <b>all</b> shows. Your Prowl API key is available at:":[null,"Aufgeführte Prowl-API(s), ggf. getrennt durch Kommas, werden<br> Benachrichtigungen für <b>alle</b> Serien erhalten. Ihr Prowl-API-Schlüssel ist abrufbar unter:"],"(this field may be blank except when testing.)":[null,"(Dieses Feld kann außer zu Testzwecken leerbleiben.)"],"Show notification list":[null,"Benachrichtigungen anzeigen"],"-- Select a Show --":[null,"-- Serie auswählen --"],"Configure per-show notifications here by entering Prowl API key(s), separated by commas, '\n 'after selecting a show in the drop-down box. Be sure to activate the 'Save for this show' '\n 'button below after each entry.":[null,"Konfigurieren Sie hier Benachrichtigungen einzelner Serien, indem Sie Prowl API-Schlüssel getrennt durch Kommas eingeben, \n nachdem eine Serie im Dropdown-Feld ausgewählt wurde. Achten Sie darauf den nachstehenden Button \"Sichern für diese Serie\"' \n nach jeder Eingabe zu betätigen."],"Save for this show":[null,"Für diese Serie sichern"],"Prowl priority":[null,"Prowl-Priorität"],"Very Low":[null,"Sehr niedrig"],"Moderate":[null,"Moderat"],"Normal":[null,"Normal"],"High":[null,"Hoch"],"Emergency":[null,"Notfall"],"priority of Prowl messages from SickRage.":[null,"priorität der Prowl Nachrichten von SickRage."],"Libnotify":[null,"Libnotify"],"The standard desktop notification API for Linux/*nix systems. This notifier will only function if the pynotify module is installed (Ubuntu/Debian package <a href=\"apt:python-notify\">python-notify</a>).":[null,"Die Standard-Desktop-Benachrichtigungs-API für Linux / * nix-Systeme. Dieses Benachrichtigungssystem wird nur dann funktionieren, wenn das pynotify-Modul installiert ist (Ubuntu/Debian Paket <a href=\"apt:python-notify\">python-notify</a>)."],"send Libnotify notifications?":[null,"Libnotify Benachrichtigungen senden?"],"Pushover":[null,"Pushover"],"Pushover makes it easy to send real-time notifications to your Android and iOS devices.":[null,"Pushover ermöglicht Echtzeit-Benachrichtigungen an Android und iOS-Geräte."],"send Pushover notifications?":[null,"Pushover Benachrichtigungen senden?"],"Pushover key":[null,"Pushover Schlüssel"],"user key of your Pushover account":[null,"Benutzerschlüssel Ihres Pushover-Kontos"],"Pushover API key":[null,"Pushover API-Schlüssel"],"click here":[null,""]," to create a Pushover API key":[null,""],"Pushover devices":[null,"Pushover-Geräte"],"comma separated list of pushover devices you want to send notifications to":[null,"durch Kommas getrennte Liste von Pushover-Geräten, an die Benachrichtigungen geschickt werden sollen"],"Pushover notification sound":[null,"Pushover-Benachrichtigungston"],"Bike":[null,"Fahrrad"],"Bugle":[null,"Signalhorn"],"Cash Register":[null,"Registrierkasse"],"Classical":[null,"Klassisch"],"Cosmic":[null,"Kosmisch"],"Falling":[null,"Fallen"],"Gamelan":[null,"Gamelan"],"Incoming":[null,"Eingehend"],"Intermission":[null,"Pause"],"Magic":[null,"Magie"],"Mechanical":[null,"Mechanisch"],"Piano Bar":[null,"Pianobar"],"Siren":[null,"Sirene"],"Space Alarm":[null,"Weltraum-Alarm"],"Tug Boat":[null,"Schlepper"],"Alien Alarm (long)":[null,"Alien-Alarm (lang)"],"Climb (long)":[null,"Klettern (lang)"],"Persistent (long)":[null,"Persistent (lang)"],"Pushover Echo (long)":[null,"Pushover-Echo (lang)"],"Up Down (long)":[null,"Hoch-Runter (lang)"],"None (silent)":[null,"Keiner (stumm)"],"Device specific":[null,"Gerätespezifisch"],"choose notification sound to use":[null,"Benachrichtigungston auswählen"],"Pushover priority":[null,"Pushover-Priorität"],"Choose priority to use":[null,"Priorität auswählen"],"Boxcar 2":[null,"Boxcar 2"],"Read your messages where and when you want them!":[null,"Lesen Sie Ihre Nachrichten wo und wann Sie wollen!"],"send Boxcar notifications?":[null,"Boxcar Benachrichtigungen senden?"],"Boxcar2 access token":[null,"Boxcar2 Zugangs-Token"],"access token for your Boxcar account.":[null,"Zugangs-Token für Ihr Boxcar-Konto."],"NMA":[null,"NMA"],"Notify My Android":[null,"Notify My Android"],"Notify My Android is a Prowl-like Android App and API that offers an easy way to send notifications from your application directly to your Android device.":[null,"\"Notify My Android\" ist eine Android- App und API ähnlich Prowl, die eine einfache Möglichkeit zum Senden von Benachrichtigungen aus Ihrer Anwendung direkt auf Ihr Android-Gerät bietet."],"send NMA notifications?":[null,"NMA Benachrichtigungen senden?"],"NMA API key":[null,"NMA API-Schlüssel"],"(multiple keys must be separated by commas, up to a maximum of 5)":[null,"(mehrere Schlüssel müssen durch Kommas getrennt werden, bis zu einem Maximum von 5)"],"NMA priority":[null,"NMA-Priorität"],"priority of NMA messages from SickRage.":[null,"Priorität der NMA-Nachrichten von SickRage."],"Pushalot":[null,"Pushalot"],"Pushalot is a platform for receiving custom push notifications to connected devices running Windows Phone or Windows 8.":[null,"Pushalot ist eine Plattform für den Empfang von benutzerdefinierten Push-Benachrichtigungen an angeschlossene Geräte unter Windows Phone oder Windows 8."],"send Pushalot notifications ?":[null,"Pushalot Benachrichtigungen senden?"],"Pushalot authorization token":[null,"Pushalot Autorisierungstoken"],"authorization token of your Pushalot account.":[null,"Autorisierungstoken Ihres Pushalot-Kontos."],"Pushbullet":[null,"Pushbullet"],"Pushbullet is a platform for receiving custom push notifications to connected devices running Android/iOS and desktop browsers such as Chrome, Firefox or Opera.":[null,"Pushbullet ist eine Plattform für den Empfang von benutzerdefinierten Push-Benachrichtigungen an angeschlossene Geräte mit Android/iOS und Desktop-Browsern wie Chrome, Firefox oder Opera."],"send Pushbullet notifications?":[null,"Pushbullet Benachrichtigungen senden?"],"Pushbullet API key":[null,"Pushbullet API-Schlüssel"],"API key of your Pushbullet account":[null,"API-Schlüssel Ihres Pushbullet-Kontos"],"Pushbullet devices":[null,"Pushbullet Geräte"],"Update device list":[null,"Geräteliste aktualisieren"],"Pushbullet channels":[null,"Pushbullet Kanäle"],"Free Mobile":[null,"Free Mobile"],"Free Mobile is a famous French cellular network provider.<br> It provides to their customer a free SMS API.":[null,"Free Mobile ist ein bekannter französischer Mobilfunknetz-Anbieter. <br>Er bietet seinen Kunden eine kostenlose SMS-API an."],"send SMS notifications?":[null,"SMS Benachrichtigungen senden?"],"send a SMS when a download starts?":[null,"SMS senden, wenn ein Download startet?"],"send a SMS when a download finishes?":[null,"SMS senden, wenn ein Download abgeschlossen ist?"],"send a SMS when subtitles are downloaded?":[null,"SMS senden, wenn Untertitel heruntergeladen werden?"],"Free Mobile customer ID":[null,"Free Mobile Kundennummer"],"it's your Free Mobile customer ID (8 digits)":[null,"Free Mobile-Kundennummer (8-stellig)"],"Free Mobile API key":[null,"Free Mobile-API-Schlüssel"],"find your API key in your customer portal.":[null,"Finden Sie Ihren API-Schlüssel in Ihrem Kundenportal."],"Click below to test your settings.":[null,"Klicken Sie unten, um Ihre Einstellungen zu testen."],"Telegram":[null,"Telegram"],"Telegram is a cloud-based instant messaging service.":[null,"Telegram ist ein Cloud-basierter Chat-Dienst."],"send Telegram notifications?":[null,"Telegram Benachrichtigungen senden?"],"send a message when a download starts?":[null,"Benachrichtigung senden, sobald ein Download startet?"],"send a message when a download finishes?":[null,"Benachrichtigung senden, sobald ein Download abgeschlossen ist?"],"send a message when subtitles are downloaded?":[null,"Benachrichtigung senden, wenn Untertitel heruntergeladen werden?"],"User/group ID":[null,"Benutzer/Gruppen-ID"],"contact @myidbot on Telegram to get an ID":[null,"@myidbot auf Telegram kontaktieren, um eine ID zu erhalten"],"Bot API token":[null,"Bot API Token"],"contact @BotFather on Telegram to set up one":[null,"@BotFather auf Telegram kontaktieren, um eins einzurichten"],"Join":[null,"Join"],"Join all of your devices together!":[null,"Schließen Sie all Ihre Geräte zusammen!"],"send Join notifications?":[null,"Join Benachrichtigungen senden?"],"Device ID":[null,"Geräte-ID"],"per device specific id":[null,"Gerätespezifische ID"]," to create a Join API key":[null,""],"Twilio":[null,"Twilio"],"Twilio is a webservice API that allows you to communicate directly with a mobile number. This notifier will send a text directly to your mobile device.":[null,"Twilio ist ein Webservice-API, das direkt mit einer Handynummer kommunizieren kann. Dieses Benachrichtigungs-Modul sendet SMS direkt auf Ihr Mobilgerät."],"should SickRage text your mobile device?":[null,"sollte SickRage Ihrem Mobilgerät SMS senden?"],"Twilio Account SID":[null,"Twilio Konto-SID"],"account SID of your Twilio account.":[null,"Konto-SID Ihres Twilio-Kontos."],"Twilio Auth Token":[null,"Twilio-Authentifizierungs-Token"],"Twilio Phone SID":[null,"Twilio Telefon-SID"],"phone SID that you would like to send the sms from":[null,"Telefon-SID, von der SMS gesendet werden sollen"],"Your phone number":[null,"Ihre Telefonnummer"],"phone number that will receive the sms. Please use the format +1-###-###-####":[null,"Rufnummer für den Empfang der SMS. Bitte verwenden Sie das Format + 1-###-###-###"],"Twitter":[null,"Twitter"],"A social networking and microblogging service, enabling its users to send and read other users' messages called tweets.":[null,"Ein sozialer Netzwerk- und Microblogging-Dienst, der Anwendern ermöglicht Nachrichten, sogenannte \"Tweets\", zu senden und die anderer Benutzer zu lesen."],"should SickRage post tweets on Twitter?":[null,"Soll SickRage Tweets auf Twitter veröffentlichen?"],"you may want to use a secondary account.":[null,"Für den Fall, dass Sie ein sekundäres Konto verwenden möchten."],"send direct message":[null,"direkte Nachricht senden"],"send a notification via Direct Message, not via status update":[null,"Senden einer Benachrichtigung via Direct Message, nicht über Statusupdate"],"send DM to":[null,"DM senden an"],"Twitter account to send Direct Messages to (must follow you)":[null,"Twitter-Konto, um direkte Nachrichten zu senden (Empfänger müssen Ihnen folgen)"],"Step One":[null,"Schritt eins"],"Request Authorization":[null,"Autorisierung einholen"],"Click the \"Request Authorization\" button.<br> This will open a new page containing an auth key.<br> <b>note:</b> if nothing happens check your popup blocker.":[null,"Klicken Sie auf \"Autorisierungsanfrage\". <br>Das öffnet eine neue Seite, die einen Authentifizierungsschlüssel enthält. <br><b>Hinweis:</b> wenn nichts passiert, überprüfen Sie Ihren Pop-up-Blocker."],"Step Two":[null,"Schritt zwei"],"Enter the key Twitter gave you below, and click \"Verify Key\".":[null,"Geben Sie Ihren Twitter-Schlüssel unten ein, und klicken Sie auf \"Schlüssel überprüfen\"."],"Trakt":[null,"Trakt"],"Trakt helps keep a record of what TV shows and movies you are watching. Based on your favorites, Trakt recommends additional shows and movies you'll enjoy!":[null,"Trakt dokumentiert Ihre TV-Serien und Filme. Basierend auf Ihren Favoriten, empfiehlt Trakt zusätzliche Serien und Filme nach Ihrem Geschmack!"],"send Trakt.tv notifications?":[null,"Trakt.tv Benachrichtigungen senden?"],"username of your Trakt account.":[null,"Benutzername Ihres Trakt Kontos."],"Trakt PIN":[null,"Trakt PIN"],"Get Trakt PIN":[null,"Trakt PIN erhalten"],"PIN code to authorize SickRage to access Trakt on your behalf.":[null,"PIN-Code um SickRage in Ihrem Namen Zugriff auf Trakt zu autorisieren."],"API Timeout":[null,"API-Timeout"],"seconds to wait for Trakt API to respond. (Use 0 to wait forever)":[null,"Wartezeit in Sekunden auf eine Antwort der Trakt-API. (Verwenden Sie 0, um keine Frist zu setzen)"],"Default indexer":[null,"Standardindexer"],"Sync libraries":[null,"Bibliotheken synchronisieren"],"sync your SickRage show library with your trakt show library.":[null,"Synchronisieren Sie Ihre SickRage-Serien-Bibliothek mit der von Trakt."],"Remove Episodes From Collection":[null,"Episoden aus der Sammlung entfernen"],"remove an episode from your Trakt Collection if it is not in your SickRage Library.":[null,"Eine Folge aus Ihrer Trakt-Sammlung entfernen, wenn sie sich nicht in Ihrer SickRage-Bibliothek befindet."],"Sync watchlist":[null,"Watchlist synchronisieren"],"sync your SickRage show watchlist with your trakt show watchlist (either Show and Episode).":[null,"Serien-Watchlists zwischen SickRage und Trakt synchronisieren (sowohl Serie als auch Folge)."],"episode will be added on watch list when wanted or snatched and will be removed when downloaded ":[null,"Folge wird der Watchlist sofern benötigt oder online ermittelt hinzugefügt und entfernt sobald heruntergeladen "],"Watchlist add method":[null,"Watchlist Hinzufügemodus"],"Skip All":[null,"Alles überspringen"],"Download Pilot Only":[null,"Nur Pilotfolge herunterladen"],"Get whole show":[null,"Komplette Serie holen"],"method in which to download episodes for new shows.":[null,"Methode, nach der Folgen für neue Serien heruntergeladen werden."],"Remove episode":[null,"Folge entfernen"],"remove an episode from your watchlist after it is downloaded.":[null,"Entfernen Sie Folgen aus Ihrer Watchlist, nachdem sie heruntergeladen wurden."],"Remove series":[null,"Serie entfernen"],"remove the whole series from your watchlist after any download.":[null,"Entfernen Sie die gesamte Serie aus Ihrer Watchlist nach jedem Download."],"Remove watched show":[null,"Gesehene Serie entfernen"],"remove the show from sickrage if it's ended and completely watched":[null,"Entfernen Sie die Serie aus Sickrage, wenn sie beendet ist und vollständig gesehen wurde"],"Start paused":[null,"Angehalten starten"],"shows grabbed from your trakt watchlist start paused.":[null,"Serien aus Ihrer Trakt-Watchlist starten pausiert."],"Trakt blackList name":[null,"Name der Trakt Blacklist"],"name (slug) of list on Trakt for blacklisting show on 'Add Trending Show' & 'Add Recommended Shows' pages":[null,"Name (slug) einer Trakt Liste, um eine Serie auf den Seiten \"Add Trending Show\" & \"Add Recommended Shows\" auf die Blacklist zu setzen"],"Email":[null,"E-Mail"],"Allows configuration of email notifications on a per show basis.":[null,"Ermöglicht die Konfiguration von E-Mail-Benachrichtigungen pro einzelner Serie."],"send email notifications?":[null,"E-Mail Benachrichtigungen senden?"],"SMTP host":[null,"SMTP-Server"],"hostname of your SMTP email server.":[null,"Hostname des SMTP E-Mail-Servers."],"SMTP port":[null,"SMTP-Port"],"port number used to connect to your SMTP host.":[null,"SMTP-Host Portnummer."],"SMTP from":[null,"SMTP von"],"sender email address, some hosts require a real address.":[null,"E-Mail-Adresse des Absenders, einige Hosts erfordern eine echte Adresse."],"Use TLS":[null,"TLS verwenden"],"check to use TLS encryption.":[null,"Auswählen, um TLS-Verschlüsselung zu verwenden."],"SMTP user":[null,"SMTP-Benutzer"],"(optional) your SMTP server username.":[null,"(optional) Ihr SMTP Benutzername."],"SMTP password":[null,"SMTP Passwort"],"(optional) your SMTP server password.":[null,"(optional) Ihr SMTP-Server-Passwort."],"Global email list":[null,"Globale E-Mail-Liste"],"email addresses listed here, separated by commas if applicable, will<br> receive notifications for <b>all</b> shows.":[null,"Die hier aufgeführten, ggf. durch Komma getrennten E-Mail-Adressen, <br>erhalten Benachrichtigungen für <b>alle</b> Serien."],"(This field may be blank except when testing.)":[null,"(Dieses Feld kann außer zu Testzwecken leerbleiben.)"],"Email Subject":[null,"E-Mail Betreff"],"use a custom subject for some privacy protection?":[null,"Verwenden eines benutzerdefinierten Betreffs zu Datenschutzzwecken?"],"(leave blank for the default SickRage subject)":[null,"(freilassen für den Standard SickRage-Betreff)"],"configure per-show notifications here by entering email address(es), separated by commas,":[null,"Konfigurieren Sie hier Benachrichtigungen einzelner Serien, indem Sie E-Mail-Adresse(n) durch Kommas getrennt eingeben,"],"after selecting a show in the drop-down box. Be sure to activate the 'Save for this show'":[null,"nach der Auswahl einer Serie im Dropdown-Feld. Achten Sie darauf 'Für diese Serie sichern' zu aktivieren"],"button below after each entry.":[null,"Nach jedem Eintrag Button betätigen."],"Slack":[null,"Slack"],"Slack brings all your communication together in one place. It's real-time messaging, archiving and search for modern teams.":[null,"Slack vereint all deine Kommunikation an einem Ort. Es ist Echtzeit-Kommunikation, Archivierung und Suche für moderne Teams."],"should SickRage post messages on Slack?":[null,"Soll SickRage Nachrichten auf Slack veröffentlichen?"],"Slack Incoming Webhook":[null,"Slack eingehender Webhook"],"Discord":[null,"Discord"],"All-in-one voice and text chat for gamers that's free, secure, and works on both your desktop and phone.":[null,"Allzweck Sprach- und Textchat für Spieler, es ist kostenlos, sicher und funktioniert auf Ihrem Desktop und Handy."],"Should SickRage post messages on Discord?":[null,"Soll SickRage Nachrichten auf Discord veröffentlichen?"],"Discord Incoming Webhook":[null,"Discord eingehender Webhook"],"Create webhook under channel settings.":[null,"Webhook erstellen unter Kanal Einstellungen."],"Discord Bot Name":[null,"Discord Bot Name"],"Blank will use webhook default Name.":[null,"Leerzeichen wird Webhook Standard Namen verwenden."],"Discord Avatar URL":[null,"Discord Avatar URL"],"Blank will use webhook default Avatar.":[null,"Leerzeichen wird Webhook Standard Avatar verwenden."],"Discord TTS":[null,"Discord TTS"],"Send notifications using text-to-speech":[null,"Senden von Benachrichtigungen mit Sprachausgabe"],"Post-Processing":[null,"Nachbearbeitung"],"Episode Naming":[null,"Umbenennung"],"Metadata":[null,"Metadaten"],"Settings that dictate how SickRage should process completed downloads.":[null,"Einstellungen, die festlegen, wie SickRage abgeschlossene Downloads verarbeiten soll."],"enable the automatic post processor to scan and process any files in your Post Processing Dir":[null,"Aktivieren der automatischen Nachbearbeitung zum Einlesen und Verarbeiten der Dateien aus Ihrem <i>Nachbearbeitungs-Verzeichnis"],"do not use if you use an external Post Processing script":[null,"Nicht verwenden, wenn ein externes Nachbearbeitungs-Skript im Einsatz ist"],"Post Processing Dir":[null,"Verzeichnis für die Nachbearbeitung"],"the folder where your download client puts the completed TV downloads.":[null,"Ordner, in den Ihr Download-Client abgeschlossene TV-Downloads herunterlädt."],"please use seperate downloading and completed folders in your download client if possible.":[null,"Wenn möglich bitte separate Ordner für eingehende und abgeschlossene Downloads in Ihrem Download-Client verwenden."],"Processing Method":[null,"Verarbeitungsmethode"],"what method should be used to put files into the library?":[null,"Welche Methode sollte verwendet werden, um Dateien in die Bibliothek aufzunehmen?"],"if you keep seeding torrents after they finish, please avoid the 'move' processing method to prevent errors.":[null,"Sofern Torrents nach Abschluss fortgesetztem \"Seeding\" zur Verfügung stehen sollen,\nvermeiden Sie bitte den \"Verschiebe-Prozess\" um Fehler zu vermeiden."],"Auto Post-Processing Frequency":[null,"Automatischer Nachbearbeitungs-Takt"],"time in minutes to check for new files to auto post-process (min 10)":[null,"Zeit in Minuten, um auf neue Dateien für die automatische Nachbearbeitung zu prüfen (10 min)"],"Postpone post processing":[null,"Nachbearbeitung zurückstellen"],"wait to process a folder if sync files are present.":[null,"Mit dem Bearbeiten eines Ordners warten, sofern zu synchronisierende Dateien vorhanden sind."],"Sync File Extensions":[null,"Datei-Erweiterungen synchronisieren"],"comma seperated list of extensions or filename globs SickRage ignores when Post Processing":[null,"durch Kommas getrennte Liste von Erweiterungen oder Dateinamen, die Sickrage bei der Nachbearbeitung ignorieren soll"],"Rename Episodes":[null,"Folgen umbenennen"],"rename episode using the Episode Naming settings?":[null,"Folgen entsprechend der Namenskonventionen umbenennen?"],"Create missing show directories":[null,"Anlegen fehlender Serienverzeichnisse"],"create missing show directories when they get deleted":[null,"Fehlende Serienverzeichnisse erstellen, wenn sie gelöscht wurden"],"Add shows without directory":[null,"Serien ohne Verzeichnis hinzufügen"],"add shows without creating a directory (not recommended)":[null,"Serien hinzufügen ohne ein Verzeichnis anzulegen (nicht empfohlen)"],"Move associated files":[null,"Zugehörige Dateien verschieben"],"move associated (srt/srr/sfv/etc) files while post processing?":[null,"verschiebe zugehörige (srt/srr/sfv/etc) Dateien während der Nachbearbeitung?"],"Rename .nfo file":[null,".nfo-Datei umbenennen"],"rename the original .nfo file to .nfo-orig to avoid conflicts?":[null,"Ursprüngliche .nfo Datei in .nfo-orig umbenennen, um Konflikte zu vermeiden?"],"Associated file extensions":[null,"Zugeordnete Dateierweiterungen"],"comma separated list of associated file extensions SickRage should keep while post processing.":[null,"durch Komma getrennte Liste zugeordneter Dateierweiterungen, die SickRage während der Nachbearbeitung behalten sollte."],"leaving it empty means no associated files will be post processed":[null,"sofern freigelassen, werden keine zugeordneten Dateien nachbearbeitet"],"Delete non associated files":[null,"Nicht zugeordnete Dateien löschen"],"delete non associated files while post processing?":[null,"löschen der nicht zugeordneten Dateien während der Nachbearbeitung?"],"Change File Date":[null,"Dateidatum ändern"],"set last modified filedate to the date that the episode aired?":[null,"Zuletzt geändertes Dateidatum auf das der Erstausstrahlung setzen?"],"some systems may ignore this feature.":[null,"Einige Systeme ignorieren diese Funktion."],"Timezone for File Date":[null,"Zeitzone für Dateidatum"],"local":[null,"lokal"],"network":[null,"Sender"],"what timezone should be used to change File Date?":[null,"Welche Zeitzone soll verwendet werden, um das Dateidatum zu ändern?"],"Unpack":[null,"Entpacken"],"What to do with archived releases found in your <i>TV Download Dir</i>?":[null,"Was tun mit archivierten Versionen, welche im <i>TV-Download-Verzeichnis</i> gefunden wurden?"],"Ignore (do not process contents)":[null,"Ignorieren (Inhalt nicht verarbeiten)"],"Unpack (process contents)":[null,"Entpacken (verarbeite Inhalte)"],"Treat as video (process archive as-is)":[null,"Behandele als Video (verarbeite Archive wie bekannt)"],"'Unpack' only works with RAR archives":[null,"'Entpacken' funktioniert nur mit RAR-Archiven"],"Windows":[null,"Windows"],"WinRar is required on windows":[null,"WinRar ist unter Windows erforderlich."],"Unpack Directory":[null,"Verzeichnis entpacken"],"Choose a path to unpack files, leave blank to unpack in download dir":[null,"Wähle einen Pfad zum Entpacken von Dateien, freilassen, um im Download-Verzeichnis zu entpacken"],"Unrar Location":[null,"Unrar Standort"],"add the path to unrar if it is not in the system path":[null,"Pfad eines alternativen Unrar-Tools hinzufügen, sofern nicht im Systempfad vorhanden"],"Alternate Unrar Tool":[null,"Alternatives Unrar-Tool"],"add the path to an alternate unrar tool if it is not in the system path":[null,"Pfad eines alternativen Unrar-Tools hinzufügen, sofern nicht im Systempfad vorhanden"],"Delete RAR contents":[null,"RAR-Inhalte löschen"],"delete content of RAR files, even if Process Method not set to move?":[null,"Inhalt von RAR-Dateien auch ohne Verschiebe-Modus löschen?"],"only working with RAR archive":[null,"Funktioniert nur mit RAR-Archiven"],"Don't delete empty folders":[null,"Leere Ordner nicht löschen"],"leave empty folders when Post Processing?":[null,"Leere Ordner bei der Nachbearbeitung behalten?"],"can be overridden using manual Post Processing":[null,"Kann mit manueller Nachbearbeitung überschrieben werden"],"Follow symbolic-links":[null,"Folge Softlinks"],"follow down symbolic links in download directory?":[null,"folge Softlinks im Download-Verzeichnis?"],"<b>EXPERTS ONLY.</b><br>Enable only if you know what <b>circular symbolic links</b> are,<br>and can <b>verify that you have none</b>.":[null,"<b>NUR FÜR EXPERTEN.</b> <br>Nur aktivieren, wenn Sie wissen, was <b>zirkuläre symbolische Verknüpfungen</b> sind <br>und Sie <b>sicherstellen können, dass Sie keine haben</b>."],"Use icacls":[null,"icacls verwenden"],"Windows only":[null,"Nur für Windows"],"sets video permissions after using the move method in post processing":[null,"Definiert Video-Berechtigungen nach Verwendung des Verschiebe-Modus in der Nachbearbeitung"],"Extra Scripts":[null,"Extra-Skripte"],"see":[null,"Siehe"],"for script arguments description and usage.":[null,"für die Beschreibung und Verwendung von Skript-Argumenten."],"How SickRage will name and sort your episodes.":[null,"Wie SickRage Ihre Folgen umbenennen und sortieren wird."],"Name Pattern":[null,"Namenskonventionen"],"Toggle Naming Legend":[null,"Namenslegende umschalten"],"don't forget to add quality pattern. Otherwise after post-processing the episode will have UNKNOWN quality":[null,"Vergessen Sie nicht Qualitäts-Konventionen hinzuzufügen. Ansonsten haben die Folgen nach der Nachbearbeitung UNBEKANNTE Qualität"],"Meaning":[null,"Bedeutung"],"Pattern":[null,"Schema"],"Result":[null,"Ergebnis"],"Use lower case if you want lower case names (eg. %sn, %e.n, %q_n etc)":[null,"Kleinbuchstaben verwenden, falls Kleinschreibung im Namen gewünscht wird (z.B. %sn, %e.n, % Q_n etc.)"],"Show Name":[null,"Serienname"],"Show.Name":[null,"Serie.Name"],"Show_Name":[null,"Serie_Name"],"Season Number":[null,"Staffelnummer"],"XEM Season Number":[null,"XEM Staffelnummer"],"Episode Number":[null,"Folgennummer"],"XEM Episode Number":[null,"XEM Folgennummer"],"Episode Name":[null,"Folge Name"],"Episode.Name":[null,"Folge.Name"],"Episode_Name":[null,"Folge_Name"],"Air Date":[null,"Sendetermin"],"Post-Processing Date":[null,"Nachbearbeitungsdatum"],"Quality":[null,"Qualität"],"Scene Quality":[null,"Szene-Qualität"],"Release Name":[null,"Release-Name"],"SickRage' is used in place of RLSGROUP if it could not be properly detected":[null,"SickRage' wird anstelle von RLSGROUP verwendet, sofern nicht ordnungsgemäß erkannt"],"Release Group":[null,"Release-Gruppe"],"If episode is proper/repack add 'proper' to name.":[null,"Sofern die Folge teil einer korrigierten/Repack-Version ist, \"korrigiert\" dem Namen anhängen."],"Release Type":[null,"Release-Typ"],"Multi-Episode Style":[null,"Multi-Folge-Stil"],"Single-EP Sample":[null,"Einzelfolge-Beispiel"],"Multi-EP sample":[null,"Multifolge-Beispiel"],"Strip Show Year":[null,"Serienjahr entfernen"],"remove the TV show's year when renaming the file?":[null,"Beim Umbenennen der Datei TV-Serien-Jahr entfernen?"],"only applies to shows that have year inside parentheses":[null,"Gilt nur für Serien, die das Jahr in Klammern haben"],"Custom Air-By-Date":[null,"Benutzerdefiniertes Air-by-Date"],"name air-by-date shows differently than regular shows?":[null,"Air-by-Date-Serien anders als reguläre Serien benennen?"],"Toggle ABD Naming Legend":[null,"ABD Namenslegende umschalten"],"Regular Air Date":[null,"Planmäßiger Sendetermin"],"Year":[null,"Jahr"],"Month":[null,"Monat"],"Day":[null,"Tag"],"Multi-EP style is ignored":[null,"Multi-EP-Stil wird ignoriert"],"Custom Sports":[null,"Benutzerdefinierter Sport"],"name sports shows differently than regular shows?":[null,"Sport-Serien anders als reguläre Serien benennen?"],"Toggle Sports Naming Legend":[null,"Sport Namenslegende umschalten"],"Sports Air Date":[null,"Sport Ausstrahlungsdatum"],"Custom Anime":[null,"Benutzerdefinierte Anime"],"name anime shows differently than regular shows?":[null,"Anime-Serien anders als reguläre Serien benennen?"],"Toggle Anime Naming Legend":[null,"Anime Namenslegende umschalten"],">XEM Season Number":[null,"> XEM Staffelnummer"],"Single-EP Anime Sample":[null,"Einzelfolge Anime-Beispiel"],"Multi-EP Anime sample":[null,"Multifolge Anime-Beispiel"],"Add Absolute Number":[null,"Absolute Zahl hinzufügen"],"add the absolute number to the season/episode format?":[null,"Absolute Zahl dem Staffel/Folge-Format hinzufügen?"],"only applies to anime. (eg. S15E45 - 310 vs S15E45)":[null,"gilt nur für Anime. (z.B. S15E45 - 310 statt S15E45)"],"Only Absolute Number":[null,"Nur absolute Zahl"],"replace season/episode format with absolute number":[null,"Staffel/Folge-Format mit absoluter Zahl ersetzen"],"only applies to anime.":[null,"gilt nur für Anime."],"No Absolute Number":[null,"Keine absolute Zahl"],"don't include the absolute number":[null,"Absolute Zahl nicht einschliessen"],"The data associated to the data. These are files associated to a TV show in the form of images and text that, when supported, will enhance the viewing experience.":[null,"Mit den Serien gekoppelte Daten. Dies sind Dateien, die mit einer TV-Serie in Form von Bildern und Text verknüpft sind und, sofern unterstützt, das Fernseherlebnis verbessern."],"Metadata Type":[null,"Metadatentyp"],"toggle metadata options that you wish to be created":[null,"Metadaten-Optionen umschalten, die erstellt werden sollen"],"multiple targets may be used":[null,"mehrere Ziele können verwendet werden"],"Select Metadata":[null,"Metadaten auswählen"],"Provider Priorities":[null,"Anbieter-Priorität"],"Provider Options":[null,"Anbietereinstellungen"],"Configure Custom Newznab Providers":[null,"Benutzerdefinierte Newznab-Anbieter konfigurieren"],"Configure Custom Torrent Providers":[null,"Benutzerdefinierte Torrent-Anbieter konfigurieren"],"Check off and drag the providers into the order you want them to be used.":[null,"Anbieter abhaken und in die Reihenfolge ziehen, in der sie benutzt werden sollen."],"At least one provider is required but two are recommended.":[null,"Mindestens ein Anbieter ist erforderlich, jedoch zwei werden empfohlen."],"Torrent providers can be toggled in ":[null,"Torrent-Anbieter können umgeschaltet werden in "],"Provider does not support backlog searches at this time.":[null,"Anbieter unterstützt aktuell keine Rückstandssuche."],"Provider is <b>NOT WORKING</b>.":[null,"Anbieter <b>FUNKTIONIERT NICHT</b>."],"Configure individual provider settings here.":[null,"Einzelne Anbieter-Einstellungen konfigurieren."],"Check with provider's website on how to obtain an API key if needed.":[null,"Wenden Sie sich an die Website des Anbieters um einen API-Schlüssel zu erwerben."],"Configure provider":[null,"Anbieter konfigurieren"],"no providers available to configure.":[null,"Kein Anbieter für die Konfiguration vorhanden."],"URL":[null,"URL"],"Enable daily searches":[null,"Tägliche Suche aktivieren"],"enable provider to perform daily searches.":[null,"Anbieter aktivieren für tägliche Suchen."],"Enable backlog searches":[null,"Rückstandssuche aktivieren"],"enable provider to perform backlog searches.":[null,"Anbieter für Rückstandssuchen aktivieren."],"Season search mode":[null,"Staffel-Suchmodus"],"when searching for complete seasons you can choose to have it look for season packs only, or choose to have it build a complete season from just single episodes.":[null,"Bei der Suche nach kompletten Staffeln können Sie ausschließlich nach sogenannten Staffel-Packs suchen lassen oder festlegen eine komplette Staffel aus einzelnen Folgen zusammenzustellen."],"season packs only.":[null,"Nur Staffel-Packs."],"episodes only.":[null,"Nur Folgen."],"Enable fallback":[null,"Fallback aktivieren"],"when searching for a complete season depending on search mode you may return no results, this helps by restarting the search using the opposite search mode.":[null,"Auf der Suche nach einer kompletten Staffel können je nach Suchmodus Ergebnisse ausbleiben. Diese Option hilft dabei die Suche mit entgegengesetzem Suchmodus neu zu starten."],"Custom URL":[null,"Benutzerdefinierte URL"],"the URL should include the protocol (and port if applicable). Examples: http://192.168.1.4/ or http://localhost:3000/":[null,"Die URL sollte das Protokoll (und ggf. Port) enthalten. Beispiele: http://192.168.1.4/ oder Http://localhost:3000/"],"Api key":[null,"API-Schlüssel"],"Digest":[null,"Kurzfassung"],"Hash":[null,"Hash"],"Passkey":[null,"Schlüssel"],"Cookies":[null,"Cookies"],"example: uid=1234;pass=567845439634987<br>note: uid and pass are not your username/password.<br>use DevTools or Firebug to get these values after logging in on your browser.":[null,"Beispiel: uid=1234;pass=567845439634987<br>Hinweis: uid und pass sind nicht Ihr Benutzername/Passwort.<br>Bitte DevTools oder Firebug benutzen, um diese Werte nach dem Login im Browser angezeigt zu bekommen."],"Pin":[null,"Pin"],"Seed ratio":[null,"Seeding-Verhältnis"],"stop transfer when ratio is reached<br>(-1 SickRage default to seed forever, or leave blank for downloader default)":[null,"Transfer stoppen, wenn Verhältnis erreicht ist<br>(-1 SickRage Standard = Seeding unbegrenzt oder für Download-Client-Standard leer lassen)"],"Minimum seeders":[null,"Mindestanzahl Seeder"],"Minimum leechers":[null,"Mindestanzahl Leecher"],"Confirmed download":[null,"Verifizierter Download"],"only download torrents from trusted or verified uploaders ?":[null,"Torrents nur von vertrauenswürdigen oder verifizierten Uploadern herunterladen?"],"Ranked torrents":[null,"Klassifizierte Torrents"],"only download ranked torrents (trusted releases)":[null,"nur klassifizierte Torrents herunterladen (vertrauenswürdige Releases)"],"English torrents":[null,"Englische Torrents"],"only download english torrents, or torrents containing english subtitles":[null,"Nur englische Torrents oder Torrents mit englischen Untertiteln herunterladen"],"For Spanish torrents":[null,"Für spanische Torrents"],"ONLY search on this provider if show info is defined as \"Spanish\" (avoid provider's use for VOS shows)":[null,"NUR auf diesem Anbieter suchen, wenn Serien-Info als \"Spanisch\" definiert ist (vermeidet die Nutzung für VOS Serien)"],"Sorting results by":[null,"Sortierung der Ergebnisse nach"],"Freeleech":[null,"Freeleech"],"only download <b>\"FreeLeech\"</b> torrents.":[null,"nur <b>\"FreeLeech\"</b> Torrents herunterladen."],"Category":[null,"Kategorie"],"select torrent with Italian subtitle":[null,"Torrent mit italienischen Untertitel auswählen"],"Configure Custom<br>Newznab Providers":[null,"Konfigurieren von benutzerdefinierten <br>Newznab Anbietern"],"Add and setup or remove custom Newznab providers.":[null,"Hinzufügen, einrichten oder entfernen von benutzerdefinierten Newznab-Anbietern."],"Select provider":[null,"Anbieter auswählen"],"-- add new provider --":[null,"--neuen Anbieter hinzufügen--"],"Provider name":[null,"Name des Anbieters"],"Site URL":[null,"Webadresse"],"Newznab search categories":[null,"Newznab-Suchkategorien"],"select your Newznab categories on the left, and click the \"update categories\" button to use them for searching.) <b>don't forget to to save the form!":[null,"wählen Sie Ihre Newznab-Kategorien auf der linken Seite und klicken Sie auf \"Kategorien aktualisieren\", um diese für die Suche zu verwenden.) <b>vergessen Sie nicht das Formular zu speichern!"],"Update Categories":[null,"Kategorien aktualisieren"],"Add":[null,"Hinzufügen"],"Delete":[null,"Löschen"],"Add and setup or remove custom RSS providers.":[null,"Hinzufügen, einrichten und entfernen von benutzerdefinierten RSS-Anbietern."],"RSS URL":[null,"RSS-Url"],"Search element":[null,"Element suchen"],"eg: title":[null,"z.B.: Titel"],"Episode Search":[null,"Episodensuche"],"NZB Search":[null,"NZB-Suche"],"Torrent Search":[null,"Torrent-Suche"],"How to manage searching with":[null,"Verwaltung von Suchen mit"],"Randomize Providers":[null,"Zufällige Anbieter"],"randomize the provider search order instead of going in order of placement":[null,"zufällige Reihenfolge der Anbieter-Suche anstatt in der Reihenfolge ihrer Platzierung"],"Download propers":[null,"Korrigierte Versionen (Propers) herunterladen"],"replace original download with \"Proper\" or \"Repack\" if nuked":[null,"ursprünglichen Download mit \"Proper\" oder \"Repack\" ersetzen, sofern \"genuked\""],"Check propers every":[null,"Auf korrigierte Versionen (Propers) überprüfen alle"],"24 hours":[null,"24 Stunden"],"4 hours":[null,"4 Stunden"],"90 mins":[null,"90 Minuten"],"45 mins":[null,"45 Minuten"],"15 mins":[null,"15 min"],"Backlog search day(s)":[null,"Rückstandssuche Tag(e)"],"number of day(s) that the \"Forced Backlog Search\" will cover (e.g. 7 Days)":[null,"Anzahl der Tage, die eine \"gezwungene Rückstandssuche\" abdeckt (z.B. 7 Tage)"],"Backlog search frequency":[null,"Takt der Rückstandssuche"],"time in minutes between searches (min.":[null,"Zeit in Minuten zwischen den Suchen (min."],"Daily search frequency":[null,"Takt der täglichen Suche"],"Usenet retention":[null,"Usenet-Speicherung"],"age limit in days for usenet articles to be used (e.g. 500)":[null,"Altersgrenze in Tagen für verwendete Usenet-Artikel (z. B. 500)"],"Ignore words":[null,"Ignorierte Wörter"],"results with one or more word from this list will be ignored<br>separate words with a comma, e.g. \"word1,word2,word3\"":[null,"Ergebnisse mit mindestens einem Wort aus dieser Liste werden ignoriert <br>Bitte Wörter mit Komma trennen, z.B. \"Wort1, Wort2, Wort3\""],"Require words":[null,"Erforderliche Wörter"],"results with no word from this list will be ignored<br>separate words with a comma, e.g. \"word1,word2,word3\"":[null,"Ergebnisse mit keinem einzigen Wort aus dieser Liste werden ignoriert <br>\n Bitte Wörter mit Komma trennen, z.B. \"Wort1, Wort2, Wort3\""],"Trackers list":[null,"Trackerliste"],"trackers that will be added to magnets without trackers<br>separate trackers with a comma, e.g. \"tracker1,tracker2,tracker3\"":[null,"Tracker, die Magneten ohne Tracker hinzugefügt werden<br>\n Bitte mehrere Tracker mit Komma trennen, z.B. \"tracker1, tracker2, tracker3\""],"Ignore language names in subbed results":[null,"Sprachcodes in Ergebnissen mit Untertiteln ignorieren"],"ignore subbed releases based on language names <br>\n Example: \"dk\" will ignore words: dksub, dksubs, dksubbed, dksubed <br>\n separate languages with a comma, e.g. \"lang1,lang2,lang3":[null,"Releases mit Untertiteln nach Sprachcodes ignorieren <br>\n Beispiel: \"dk\" ignoriert folgende Wörter: dksub, dksubs, dksubbed, dksubed <br>\n Bitte Sprachcodes mit einem Komma trennen, z.B. \"lang1, lang2, lang3\""],"Allow high priority":[null,"Erlaube hohe Priorität"],"set downloads of recently aired episodes to high priority":[null,"Downloads von vor kurzem ausgestrahlten Folgen auf hohe Priorität festlegen"],"Use Failed Downloads":[null,"Verwendung der Funktion \"fehlgeschlagene Downloads\""],"use Failed Download Handling?":[null,"Handhabung fehlgeschlagener Downloads verwenden?"],"will only work with snatched/downloaded episodes after enabling this":[null,"Funktioniert nur mit ermittelten/heruntergeladenen Folgen sofern aktiviert"],"Delete Failed":[null,"Fehlgeschlagene löschen"],"delete files left over from a failed download?":[null,"Übrige Dateien eines fehlgeschlagenen Downloads löschen?"],"this only works if Use Failed Downloads is enabled.":[null,"Dies funktioniert nur sofern \"Fehlgeschlagene Downloads\" aktiviert ist."],"How to handle NZB search results.":[null,"Umgang mit NZB-Suchergebnissen."],"Search NZBs":[null,"Suche NZBs"],"enable NZB search providers":[null,"NZB-Suchanbieter aktivieren"],"Send .nzb files to":[null,".nzb Dateien senden zu"],"SABnzbd server URL":[null,"SABnzbd Server URL"],"URL to your SABnzbd server (e.g. http://localhost:8080/)":[null,"URL zu SABnzbd-Server (z.B. localhost8080: /)"],"SABnzbd username":[null,"SABnzbd-Benutzername"],"(blank for none)":[null,"(leer lassen für kein)"],"SABnzbd password":[null,"SABnzbd-Passwort"],"SABnzbd API key":[null,"SABnzbd API-Schlüssel"],"locate at... SABnzbd Config -> General -> API Key":[null,"suchen unter... SABnzbd Konfiguration-> Allgemein-> API-Schlüssel"],"Use SABnzbd category":[null,"SABnzbd-Kategorie benutzen"],"add downloads to this category (e.g. TV)":[null,"Downloads zu dieser Kategorie (z.B. TV) hinzufügen"],"Use SABnzbd category (backlog episodes)":[null,"SABnzbd-Kategorie verwenden (rückständige Folgen)"],"add downloads of old episodes to this category (e.g. TV)":[null,"Downloads alter Folgen dieser Kategorie (z.B. TV) hinzufügen"],"Use SABnzbd category for anime":[null,"SABnzbd-Kategorie für Anime verwenden"],"add anime downloads to this category (e.g. anime)":[null,"Anime-Downlaods dieser Kategorie hinzufügen (z.B. Anime)"],"Use SABnzbd category for anime (backlog episodes)":[null,"SABnzbd-Kategorie für Anime verwenden (rückständige Folgen)"],"add anime downloads of old episodes to this category (e.g. anime)":[null,"Anime-Downloads alter Folgen dieser Kategorie hinzufügen (z.B. Anime)"],"Use forced priority":[null,"Erzwungene Priorität verwenden"],"enable to change priority from HIGH to FORCED":[null,"Ändern der Priorität von HOCH auf GEZWUNGEN aktivieren"],"Black hole folder location":[null,"\"Black Hole\"-Ordnerspeicherort"],"<b>.nzb</b> files are stored at this location for external software to find and use":[null,"<b>.nzb</b>-Dateien werden hier für externe Software bereitgestellt"],"Connect using HTTPS":[null,"Über HTTPS verbinden"],"enable Secure control in NZBGet and set the correct Secure Port here":[null,"Aktivieren des Secure-Steuerelements in NZBGet und legen Sie hier den richtigen Secure-Port fest"],"NZBget host:port":[null,"NZBget-Host: Port"],"(e.g. localhost:6789)":[null,"(z.B. localhost:6789)"],"NZBget RPC host name and port number (not NZBgetweb!)":[null,"NZBget RPC-host-Namen und die Portnummer (nicht NZBgetweb!)"],"NZBget username":[null,"NZBget-Benutzername"],"locate in nzbget.conf (default:nzbget)":[null,"Suche in nzbget.conf (Standard: nzbget)"],"NZBget password":[null,"NZBget-Passwort"],"locate in nzbget.conf (default:tegbzn6789)":[null,"Suche in nzbget.conf (Standard: tegbzn6789)"],"Use NZBget category":[null,"NZBget-Kategorie benutzen"],"send downloads marked this category (e.g. TV)":[null,"Downloads dieser Kategorie (z.B. TV) anhängen"],"Use NZBget category (backlog episodes)":[null,"NZBget-Kategorie verwenden (rückständige Folgen)"],"send downloads of old episodes marked this category (e.g. TV)":[null,"Downloads alter Folgen dieser Kategorie (z.B. TV) anhängen"],"Use NZBget category for anime":[null,"NZBget-Kategorie für Anime verwenden"],"send anime downloads marked this category (e.g. anime)":[null,"Anime-Downloads dieser Kategorie (z.B. anime) anhängen"],"Use NZBget category for anime (backlog episodes)":[null,"NZBget-Kategorie für Anime verwenden (rückständige Folgen)"],"send anime downloads of old episodes marked this category (e.g. anime)":[null,"Anime-Downloads alter Folgen dieser Kategorie (z.B. anime) anhängen"],"NZBget priority":[null,"NZBget-Priorität"],"Very low":[null,"Sehr niedrig"],"Low":[null,"Niedrig"],"Very high":[null,"Sehr hoch"],"Force":[null,"Erzwingen"],"priority for daily snatches (no backlog)":[null,"Priorität für tägliche Ermittlungen (kein Rückstand)"],"Torrent host:port":[null,"Torrent-Host:Port"],"URL to your Synology DSM (e.g. http://localhost:5000/)":[null,"URL zu Ihrer Synology DS (z.B. http://localhost:5000/)"],"Client username":[null,"Client-Benutzername"],"Client password":[null,"Client-Passwort"],"Downloaded files location":[null,"Speicherort heruntergeladener Dateien"],"where Synology Download Station will save downloaded files (blank for client default)":[null,"Speicherort für Synology Download Station (Freilassen für Standard)"],"the destination has to be a shared folder for Synology DS":[null,"Das Ziel muss ein freigegebener Ordner für Synology DS sein"],"Click below to test":[null,"Test: unten klicken"],"How to handle Torrent search results.":[null,"Umgang mit Torrent-Suchergebnissen."],"Search torrents":[null,"Suche torrents"],"enable torrent search providers":[null,"Torrent-Suchanbieter aktivieren"],"Send .torrent files to":[null,".torrent Dateien senden zu"],"<b>.torrent</b> files are stored at this location for external software to find and use":[null,"<b>.torrent</b>-Dateien werden hier für externe Software bereitgestellt"],"URL to your torrent client (e.g. http://localhost:8000/)":[null,"Torrent-Client-URL (z. B. http://localhost: 8000 /)"],"Torrent RPC URL":[null,"Torrent-RPC-URL"],"the path without leading and trailing slashes (e.g. transmission)":[null,"Pfad ohne führende und nachgestellte Schrägstriche (z.B. transmission)"],"Http Authentication":[null,"Http-Authentifizierung"],"Verify certificate":[null,"Zertifikat prüfen"],"disable if you get \"Deluge: Authentication Error\" in your log":[null,"Deaktivieren, wenn Ihr Protokoll \"Deluge: Authentifizierungsfehler\" ausgibt"],"verify SSL certificates for HTTPS requests":[null,"SSL-Zertifikate für HTTPS-Anforderungen überprüfen"],"Add label to torrent":[null,"Label zu Torrent hinzufügen"],"(blank spaces are not allowed)":[null,"(Leerzeichen sind nicht erlaubt)"],"label plugin must be enabled in Deluge clients":[null,"Label-Plugin muss in Deluge-Clients aktiviert sein"],"for QBitTorrent 3.3.1 and up":[null,"für QBitTorrent 3.3.1 und höher"],"Add label to torrent for anime":[null,"Label zu Anime-Torrent hinzufügen"],"for QBitTorrent 3.3.1 and up ":[null,"für QBitTorrent 3.3.1 und höher"],"where <span id=\"torrent_client\">the torrent client</span> will save downloaded files (blank for client default)":[null,"<p>wohin <span id=\"torrent_client\"> der Torrent-Client</span> heruntergeladene Dateien speichert (freilassen für Client-Standard)"],"the destination has to be a shared folder for Synology DS</span>":[null,"Das Ziel muss ein freigegebener Ordner für Synology DS sein</span>"],"Minimum seeding time":[null,"Minimale Seeding-Zeit"],"time in hours":[null,"Zeit in Stunden"],"(default:'0' passes blank to client and '-1' passes nothing)":[null,"(Standard: '0' übergibt Leerstelle an Client' und '-1' übergibt nichts)"],"Start torrent paused":[null,"Torrent pausiert starten"],"add .torrent to client but do <b style=\"font-weight:900\">not</b> start downloading":[null,".torrent dem Client hinzufügen, jedoch den Download <b style=\"font-weight:900\"> nicht</b> starten"],"Allow high bandwidth":[null,"Hohe Bandbreiten ermöglichen"],"use high bandwidth allocation if priority is high":[null,"hohe Bandbreiten verwenden, wenn Priorität hoch ist"],"Test Connection":[null,"Verbindung testen"],"Windows Shares":[null,""],"Defines your existing windows shares so that we can add them to the browse dialog":[null,""],"Share #{number}":[null,""],"Share label":[null,""],"Hostname or IP":[null,""],"Share path":[null,""],"Subtitles Search":[null,"Untertitelsuche"],"Subtitles Plugin":[null,"Untertitel-Plugin"],"Plugin Settings":[null,"Plugin-Einstellungen"],"Settings that dictate how SickRage handles subtitles search results.":[null,"Einstellungen für Ergebnisse der Untertitelsuche"],"Search Subtitles":[null,"Untertitel suchen"],"Subtitle Languages":[null,"Untertitelsprachen"],"Subtitle Directory":[null,"Untertitel-Verzeichnis"],"the directory where SickRage should store your <i>Subtitles</i> files.":[null,"Speicherort für <i>Untertitel</i>-."],"leave empty if you want store subtitle in episode path.":[null,"Freilassen, wenn Untertitel im Pfad der entsprechenden Folge gespeichert werden sollen."],"Subtitle Find Frequency":[null,"Untertitel-Suchtakt"],"time in hours between scans (default: 1)":[null,"Zeit in Stunden zwischen den Scans (Standard: 1)"],"Include Specials":[null,"Serien-Specials einbeziehen"],"include the show's specials when searching for subtitles?":[null,"Serien-Specials einbeziehen, wenn nach Untertiteln gesucht wird?"],"Perfect matches":[null,"Perfekte Treffer"],"only download subtitles that match: release group, video codec, audio codec and resolution":[null,"Untertitel nur bei Übereinstimmung mit folgenden Kriterien herunterladen: Release-Gruppen, Video-Codec, Audio-Codec und Auflösung"],"if disabled you may get out of sync subtitles":[null,"Sofern deaktiviert sind asynchrone Untertitel möglich"],"Subtitles History":[null,"Untertitel Verlauf"],"log downloaded Subtitle on History page?":[null,"Heruntergeladene Untertitel in Verlauf anzeigen?"],"Subtitles Multi-Language":[null,"Mehrsprachige Untertitel"],"append language codes to subtitle filenames?":[null,"Sprachcodes an Untertiteldateinamen anhängen?"],"this option is required if you use multiple subtitle languages":[null,"Diese Option ist erforderlich, wenn mehrere Untertitelsprachen verwendet werden."],"Delete unwanted subtitles":[null,"Unerwünschte Untertitel löschen"],"enable to delete unwanted subtitle languages bundled with release":[null,"Aktivieren, um unerwünschte Untertitelsprachen aus einem Release-Bundle zu löschen"],"Embedded Subtitles":[null,"Eingebettete Untertitel"],"ignore subtitles embedded inside video file?":[null,"Eingebettete Untertitel ignorieren?"],"this will ignore <u>all</u> embedded subtitles for every video file!":[null,"Dies wird <u>alle</u> eingebetteten Untertitel für jede Videodatei ignorieren!"],"Hearing Impaired Subtitles":[null,"Untertitel für Hörgeschädigte"],"download hearing impaired style subtitles?":[null,"Herunterladen von Untertiteln für Hörgeschädigte?"],"See":[null,"Siehe"],"for a script arguments description.":[null,"für die Beschreibung von Skript-Argumenten."],"Additional scripts separated by <b>|</b>.":[null,"Weitere Skripte durch <b>|</b> getrennt."],"Scripts are called after each episode has searched and downloaded subtitles.":[null,"Skripte werden aufgerufen, nachdem jede Folge gesucht und Untertitel heruntergeladen wurden."],"For any scripted languages, include the interpreter executable before the script. See the following example":[null,"Bitte geben Sie für jede Skriptsprache den dazugehörigen Interpreter vor dem Skript an. Im folgenden Beispiel zu sehen"],"For Windows:":[null,"Für Windows:"],"For Linux / OS X:":[null,"Für Linux / OS X:"],"Subtitle Providers":[null,"Untertitel-Anbieter"],"Check off and drag the plugins into the order you want them to be used.":[null,"Plugins abhaken und in die Reihenfolge ziehen, in der sie verwendet werden sollen."],"At least one plugin is required.":[null,"Mindestens ein Plugin ist erforderlich."]," Web-scraping plugin":[null," Web-Scraper-Plugin"],"Provider Settings":[null,"Anbietereinstellungen"],"Set user and password for each provider":[null,"Legen Sie Benutzername und Passwort für jeden Anbieter an"],"User Name":[null,"Benutzername"],"Change Show":[null,"Serie ändern"],"Prev Show":[null,"Vorherige Sendung"],"Next Show":[null,"Nächste Sendung"],"Jump to Season":[null,"Springe zu Staffel"],"Specials":[null,"Specials"],"Poster for":[null,"Poster für"],"Stars":[null,"Sterne"],"minutes":[null,"Minuten"],"View other popular {genre} shows on trakt.tv.":[null,"Andere beliebte {genre} Serien auf trakt.tv anzeigen."],"View other popular {imdbgenre} shows on IMDB.":[null,"Andere beliebte {imdbgenre} Serien auf IMDB anzeigen."],"Allowed":[null,"Zugelassen"],"Preferred":[null,"Bevorzugt"],"Originally Airs":[null,"Ursprünglicher Ausstrahlungstermin"],"Show Status":[null,"Serienstatus"],"Default EP Status":[null,"Folgenstatus"],"Location":[null,"Ort"],"Missing":[null,"Fehlend"],"Scene Name":[null,"Szene-Name"],"Required Words":[null,"Erforderliche Wörter"],"Ignored Words":[null,"Ignorierte Wörter"],"Size":[null,"Größe"],"Info Language":[null,"Info-Sprache"],"Subtitles SR Metadata":[null,"Untertitel SR Metadaten"],"Season Folders":[null,"Staffelordner"],"Paused":[null,"Pausiert"],"Air-by-Date":[null,"Air-by-Date"],"Sports":[null,"Sport"],"DVD Order":[null,"DVD Reihenfolge"],"Scene Numbering":[null,"Szene-Nummerierung"],"Select Filtered Episodes":[null,"Gefilterte Folgen auswählen"],"Clear All":[null,"Alles löschen"],"Change selected episodes to":[null,"Ausgewählte Folgen ändern zu"],"Select Columns":[null,"Spalten auswählen"],"Hide Episodes":[null,"Ausblenden von Episoden"],"Show Episodes":[null,"Serienfolgen"],"NFO":[null,"NFO"],"TBN":[null,"TBN"],"Episode":[null,"Folge"],"Absolute":[null,"Absolut"],"Scene":[null,"Szene"],"Scene Absolute":[null,"Szene absolut"],"File Name":[null,"Dateiname"],"Airdate":[null,"Erstausstrahlung"],"Download":[null,"Download"],"Change the value here if scene numbering differs from the indexer episode numbering":[null,"Ändern Sie diesen Wert, wenn sich Szene-Nummerierung und Indexer-Folgen-Nummerierung unterscheiden"],"Change the value here if scene absolute numbering differs from the indexer absolute numbering":[null,"Ändern Sie diesen Wert, wenn sich absolute Szene-Nummerierung und absolute Indexer-Folgennummerierung unterscheiden"],"Manual Search":[null,"Manuelle Suche"],"Do you want to mark this episode as failed?":[null,"Möchten Sie diese Folge als fehlgeschlagen kennzeichnen?"],"The episode release name will be added to the failed history, preventing it to be downloaded again.":[null,"Der Folgen-Release-Name wird zur gescheiterten Verlaufsliste hinzugefügt um zu verhindern, dass sie erneut heruntergeladen wird."],"Do you want to include the current episode quality in the search?":[null,"Möchten Sie die aktuelle Qualität der Folge in die Suche einbeziehen?"],"Choosing No will ignore any releases with the same episode quality as the one currently downloaded/snatched.":[null,"\"Nein\" ignoriert alle Versionen mit der gleichen Qualität wie die derzeit heruntergeladene/ermittelte."],"Download subtitle":[null,"Untertitel herunterladen"],"Do you want to re-download the subtitle for this language?":[null,"Untertitel für diese Sprache erneut herunterladen?"],"It will overwrite your current subtitle":[null,"Bereits vorhandene Untertitel werden überschrieben"],"Format":[null,"Format"],"Advanced":[null,"Erweitert"],"Main Settings":[null,"Haupteinstellungen"],"Show Location":[null,"Serien-Speicherort"],"Preferred Quality":[null,"Bevorzugte Qualität"],"Default Episode Status":[null,"Standardstatus Folge"],"this will set the status for future episodes.":[null,"Hier wird der Status für zukünftige Folgen festgelegt."],"this only applies to episode filenames and the contents of metadata files.":[null,"Dies gilt nur für Folgen-Dateinamen und den Inhalt der Metadaten-Dateien."],"search for subtitles":[null,"Suche nach Untertiteln"],"Use SR Metdata":[null,"SR Metadaten verwenden"],"use SickRage metadata when searching for subtitle, this will override the autodiscovered metadata":[null,"verwende SickRage Metadaten bei der Suche nach Untertiteln, dies wird die automatisch ermittelten Metadaten überschreiben"],"pause this show (SickRage will not download episodes)":[null,"Pausieren Sie diese Serie (SickRage wird keine Folgen herunterladen)"],"Format Settings":[null,"Formateinstellungen"],"Air by date":[null,"nach Ausstrahlungsdatum"],"check if the show is released as Show.03.02.2010 rather than Show.S02E03.":[null,"Festlegen, ob die Serien als \"Serienname.03.02.2010\" anstatt \"Serienname.S02E03\" erscheinen soll."],"in case of an air date conflict between regular and special episodes, the later will be ignored.":[null,"Im Falle eines Konflikts bezüglich des Ausstrahlungstermins zwischen regulären und speziellen Folgen werden Letztere ignoriert."],"check if the show is Anime and episodes are released as Show.265 rather than Show.S02E03":[null,"Überprüfen, ob die Serie ein Anime ist und Folgen als \"Serienname.265\" anstatt \"Serienname.S02E03\" erscheinen soll"],"check if the show is a sporting or MMA event released as Show.03.02.2010 rather than Show.S02E03":[null,"Überprüfen, ob die Serie ein Sport- oder MMA-Event ist und als \"Serienname.03.02.2010\" anstatt \"Serienname.S02E03\" erscheinen soll"],"Season folders":[null,"Staffelordner"],"group episodes by season folder (uncheck to store in a single folder)":[null,"Folgen nach Staffelordnern gruppieren (deaktivieren, um sie in einem einzigen Ordner zu speichern)"],"search by scene numbering (uncheck to search by indexer numbering)":[null,"Suche nach Szene-Nummerierung (deaktivieren, um nach Indexer-Nummerierung zu suchen)"],"use the DVD order instead of the air order":[null,"DVD-Reihenfolge statt Ausstrahlungsreihenfolge verwenden"],"a \"Force Full Update\" is necessary, and if you have existing episodes you need to sort them manually.":[null,"Eine \"erzwungene vollständige Aktualisierung\" ist notwendig. Sofern bereits Folgen vorhanden sind, müssen diese manuell sortiert werden."],"comma-separated <i>e.g. \"word1,word2,word3</i>\"":[null,"durch Komma getrennt <i>z.B. \"Wort1, Wort2, Wort3\"</i>"],"search results with one or more words from this list will be ignored.":[null,"Suchergebnisse mit einem oder mehreren Wörtern aus dieser Liste werden ignoriert."],"e.g. \"word1,word2,word3\"":[null,"z.B. \"Wort1,Wort2,Wort3\""],"search results with no words from this list will be ignored.":[null,"Suchergebnisse ohne Wörter aus dieser Liste werden ignoriert."],"Scene Exception":[null,"Szene-Ausnahme"],"this will affect episode search on NZB and torrent providers.":[null,"Dies wirkt sich auf die Episodensuche für NZB- und Torrent-Anbieter aus."],"this list appends to the original show name.":[null,"Diese Liste wird dem ursprünglichen Seriennamen angehängt."],"WARNING logs":[null,"Warnungsprotokoll"],"ERROR logs":[null,"Fehler-Protokoll"],"There are no events to display.":[null,"Keine Ereignisse vorhanden."],"Limit":[null,"Anzahl"],"Layout":[null,"Layout"],"HistoryLayout":[null,"Verlaufs-Layout"],"Compact":[null,"Kompakt"],"Detailed":[null,"Detailliert"],"Time":[null,"Uhrzeit"],"Provider":[null,"Anbieter"],"Missing Provider":[null,"Fehlender Anbieter"],"missing provider":[null,"fehlender Anbieter"],"Directory":[null,"Verzeichnis"],"Show Name (tvshow.nfo)":[null,"Serienname (tvshow.nfo)"],"Indexer":[null,"Indexer"],"Enter the folder containing the episode":[null,"Geben Sie den Ordner an, der die Folge enthält"],"Process Method to be used":[null,"Bearbeitungsmethode auswählen"],"Copy":[null,"Kopieren"],"Move":[null,"Verschieben"],"Hard Link":[null,"Hardlink"],"Symbolic Link":[null,"Softlink"],"Symbolic Link Reversed":[null,"Softlink (Gegenrichtung)"],"Force already Post Processed Dir/Files":[null,"Erzwinge bereits verarbeitete Elemente"],"Mark Dir/Files as priority download":[null,"Behandle Verzeichnisse und Dateien als priorisierten Download"],"(Check it to replace the file even if it exists at higher quality)":[null,"(Aktivieren um die Datei zu ersetzen, selbst wenn eine höhere Qualität bereits vorhanden ist)"],"Delete files and folders":[null,"Dateien und Verzeichnisse löschen"],"(Check it to delete files and folders like auto processing)":[null,"(Aktivieren, um Dateien und Ordnern wie bei der automatischen Verarbeitung zu löschen)"],"Don't use processing queue":[null,"Keine Verarbeitungswarteschlange verwenden"],"(If checked this will return the result of the process here, but may be slow!)":[null,"(Sofern markiert, gibt dies Ergebnisse des Prozesses zurück, kann aber langsam sein!)"],"Mark download as failed":[null,"Download als fehlgeschlagen kennzeichnen"],"Process":[null,"Verarbeiten"],"Download subtitles for this show?":[null,"Untertitel für diese Serie herunterladen?"],"use SickRage metadata when searching for subtitle, <br />this will override the autodiscovered metadata":[null,"verwende SickRage Metadaten bei der Suche nach Untertiteln, <br />dies überschreibt die automatisch ermittelten Metadaten"],"Status for previously aired episodes":[null,"Status bereits ausgestrahlter Folgen"],"Status for all future episodes":[null,"Status aller zukünftiger Folgen"],"Group episodes by season folder?":[null,"Episoden nach Staffelordnern gruppieren?"],"Is this show an Anime?":[null,"Ist diese Serie ein Anime?"],"Is this show scene numbered?":[null,"Ist diese Serie durchnummeriert?"],"Save Defaults":[null,"Standardwerte speichern"],"Use current values as the defaults":[null,"Aktuelle Werte als Standard setzen"],"<p>Select your preferred fansub groups from the <b>Available Groups</b> and add them to the <b>Whitelist</b>. Add groups to the <b>Blacklist</b> to ignore them.</p>\n <p>The <b>Whitelist</b> is checked <i>before</i> the <b>Blacklist</b>.</p>\n <p>Groups are shown as <b>Name</b> | <b>Rating</b> | <b>Number of subbed episodes</b>.</p>\n <p>You may also add any fansub group not listed to either list manually.</p>\n <p>When doing this please note that you can only use groups listed on anidb for this anime.\n <br>If a group is not listed on anidb but subbed this anime, please correct anidb's data.</p>":[null,"<p>Wählen Sie Ihre bevorzugte Fansub-Gruppen aus den <b>Verfügbaren Gruppen</b> und fügen Sie diese der <b>Whitelist</b> hinzu. Fügen Sie Gruppen der <b>Blacklist</b> hinzu werden diese ignoriert.</p> \n <p>die <b>Whitelist</b> wird zeitlich <i>vor</i> der <b>Blacklist</b> überprüft.</p> \n <p>Gruppen werden mit <b>Name</b> | <b>Bewertung</b> | <b>Anzahl der Folgen mit Untertitel</b> angezeigt.</p> \n <p>Sie können jegliche nicht aufgeführten Fansub-Gruppen der Liste manuell hinzufügen.</p> \n <p>Bitte beachten Sie dabei, dass Sie nur auf Anidb aufgeführte Gruppen für dieses Anime verwenden können.\n <br>wenn eine Gruppe nicht auf Anidb aufgeführt ist, aber dieses Anime mit Untertiteln versehen hat, korrigieren Sie bitte die Anidb-Daten.</p>"],"Whitelist":[null,"Whitelist"],"Available Groups":[null,"Verfügbare Gruppen"],"Add to Whitelist":[null,"Zur Whitelist hinzufügen"],"Add to Blacklist":[null,"Zur Blacklist hinzufügen"],"Blacklist":[null,"Blacklist"],"Custom Group":[null,"Benutzerdefinierte Gruppe"],"Allowed Quality:":[null,"Erlaubte Qualität:"],"Preferred Quality:":[null,"Bevorzugte Qualität:"],"Filter Show Name":[null,"Serienname filtern"],"Root":[null,"Stammverzeichnis"],"All":[null,"Alle"],"Clear Filter(s)":[null,"Filter entfernen"],"Poster":[null,"Poster"],"Small Poster":[null,"Kleines Poster"],"Banner":[null,"Banner"],"Simple":[null,"Einfach"],"Next Episode":[null,"Nächste Folge"],"Progress":[null,"Fortschritt"],"Direction":[null,"Richtung"],"Ascending":[null,"Aufsteigend"],"Descending":[null,"Absteigend"],"Poster Size":[null,"Postergröße"],"Continuing":[null,"Läuft"],"Ended":[null,"Beendet"],"Total":[null,"Gesamt"],"Invalid date":[null,"Ungültiges Datum"],"No Network":[null,"Kein Sender"],"Next Ep":[null,"Nächste Folge"],"Prev Ep":[null,"Vorherige Folge"],"Show":[null,"Serie"],"Downloads":[null,"Downloads"],"Active":[null,"Aktiv"],"loading":[null,"lade"],"Loading...":[null,"Lädt..."],"<p><b><u>Preferred</u></b> qualities will replace those in <b><u>allowed</u></b>, even if they are lower.</p>":[null,"<p><b><u>Bevorzugte</u></b> Qualitäten ersetzen diejenigen in <b><u>erlaubt</u></b>, auch wenn sie niedriger sind.</p>"],"New":[null,"Neu"],"Set as Default":[null,"Als Standard festlegen"],"Remember me":[null,"Merken"],"Edit Selected":[null,"Auswahl bearbeiten"],"Subtitle":[null,"Untertitel"],"Default Ep Status":[null,"Folgenstatus"],"Update":[null,"Aktualisieren"],"Rescan":[null,"Refresh"],"Rename":[null,"Umbenennen"],"Search Subtitle":[null,"Untertitel suchen"],"Force Metadata Regen":[null,"Erzwinge neu generierte Metadaten"],"Snatched (Allowed)":[null,"Ermittelt (Erlaubt)"],"Jump to Show":[null,"Zur Serie springen"],"Force Backlog":[null,"Rückstandssuche erzwingen"],"Manage episodes with status":[null,"Verwalten von Folgen mit Status"],"Manage":[null,"Verwalten"],"None of your episodes have status":[null,"Keine Ihrer Folgen hat Status"],"Shows containing":[null,"Sendungen mit"],"episodes":[null,"Folgen"],"Set checked shows/episodes to":[null,"Ausgewählte Serien/Folgen setzen auf"],"Go":[null,"Los"],"Select all":[null,"Alle auswählen"],"Clear all":[null,"Alles leeren"],"Release":[null,"Erscheinungsdatum"],"Backlog Search":[null,"Rückstandssuche"],"Not in progress":[null,"Nicht im Gange"],"In Progress":[null,"Im Gange"],"Daily Search":[null,"Tägliche Suche"],"Find Propers Search":[null,"Suche korrigierter Versionen (Propers)"],"Propers search disabled":[null,"Suche nach korrigierten Versionen (Propers) deaktiviert"],"Subtitle Search":[null,"Untertitelsuche"],"Subtitle search disabled":[null,"Untertitelsuche deaktiviert"],"Search Queue":[null,"Such-Warteschlange"],"pending items":[null,"ausstehende Elemente"],"Daily":[null,"Täglich"],"Manual":[null,"Manuell"],"Changing any settings marked with (<span class=\"separator\">*</span>) will force a refresh of the selected shows.":[null,"Änderungen von Einstellungen, die mit (<span class=\"separator\"> *</span>) gekennzeichnet sind, wird eine komplette Aktualisierung der ausgewählten Serien erzwingen."],"Selected Shows":[null,"Ausgewählte Serien"],"Root Directories":[null,"Stammverzeichnisse"],"Current":[null,"Aktuell"],"Keep":[null,"Behalten"],"Custom":[null,"Benutzerdefininert"],"Group episodes by season folder (set to \"No\" to store in a single folder).":[null,"Folgen nach Staffelordnern gruppieren (bei \"Nein\" in einem einzigen Ordner speichern)."],"Pause these shows (SickRage will not download episodes).":[null,"Pausieren Sie diese Serien (SickRage wird keine Folgen herunterladen)."],"This will set the status for future episodes.":[null,"Hier wird der Status für zukünftige Folgen festgelegt."],"Search by scene numbering (set to \"No\" to search by indexer numbering).":[null,"Suche nach Szene-Nummerierung (bei \"Nein\" Suche nach Indexer-Nummerierung)."],"Set if these shows are Anime and episodes are released as Show.265 rather than Show.S02E03":[null,"Festlegen, ob diese Serien Animes sind und Folgen als \"Serienname.265\" und nicht \"Serienname.S02E03\" erscheinen"],"Set if these shows are sporting or MMA events released as Show.03.02.2010 rather than Show.S02E03.":[null,"Festlegen, ob diese Serien Sport- oder MMA-Events sind und als \"Serienname.03.02.2010\" anstatt \"Serienname.S02E03\" erscheinen sollen."],"In case of an air date conflict between regular and special episodes, the later will be ignored.":[null,"Im Falle eines Konflikts bezüglich des Ausstrahlungstermins zwischen regulären und speziellen Folgen werden Letztere ignoriert."],"Set if these shows are released as Show.03.02.2010 rather than Show.S02E03.":[null,"Festlegen, ob diese Serien als \"Serienname.03.02.2010\" anstatt \"Serienname.S02E03\" erscheinen sollen."],"Search for subtitles.":[null,"Suche nach Untertiteln."],"All of your episodes have {subsLanguage} subtitles.":[null,"All Ihre Folgen haben {subsLanguage} Untertitel."],"Manage episodes without":[null,"Verwalten von Folgen ohne"],"Episodes without {subsLanguage} subtitles.":[null,"Folgen ohne {subsLanguage} Untertitel."],"Episodes without {subtitleLanguage} (undefined) subtitles.":[null,"Folgen ohne {subtitleLanguage} Untertitel (undefiniert)."],"Download missed subtitles for selected episodes":[null,"Download fehlender Untertitel für ausgewählte Folgen"],"Performing Restart":[null,"Neustart wird durchgeführt"],"Waiting for SickRage to shut down":[null,"SickRage wird heruntergefahren"],"Waiting for SickRage to start again":[null,"SickRage wird neu gestartet"],"Loading the default page":[null,"Standardseite wird geladen"],"Error: The restart has timed out, perhaps something prevented SickRage from starting again?":[null,"Fehler: Der Neustart ist abgelaufen, vielleicht hindert SickRage etwas daran?"],"Key":[null,"Legende"],"Missed":[null,"Entgangen"],"Today":[null,"Heute"],"Soon":[null,"Bald"],"Later":[null,"Später"],"Subscribe":[null,"Abonnieren"],"Date":[null,"Datum"],"View Paused":[null,"Pausierte"],"Hidden":[null,"Ausblenden"],"Shown":[null,"Anzeigen"],"Calendar":[null,"Kalender"],"List":[null,"Liste"],"Ends":[null,"Endet"],"Next Ep Name":[null,"Nächster Folgenname"],"Run time":[null,"Laufzeit"],"Indexers":[null,"Indexer"],"No shows for this day":[null,"Keine Serien an diesem Tag"],"Airs":[null,"Erstausstrahlung"],"Plot":[null,"Inhalt"],"Show Update":[null,"Serien Update"],"Version Check":[null,"Versionsprüfung"],"Proper Finder":[null,"Proper-Suche"],"Post Process":[null,"Nachbearbeitung"],"Subtitles Finder":[null,"Untertitel-Sucher"],"Scheduler":[null,"Zeitplaner"],"Alive":[null,"Reagiert"],"Start Time":[null,"Startzeit"],"Cycle Time":[null,"Durchlaufzeit"],"Next Run":[null,"Nächster Durchlauf"],"Last Run":[null,"Letzter Durchlauf"],"Silent":[null,"Stumm"],"True":[null,"Wahr"],"N/A":[null,"nicht verfügbar"],"Show id":[null,"Serien ID"],"Show name":[null,"Serienname"],"Priority":[null,"Priorität"],"Added":[null,"Hinzugefügt"],"Queue type":[null,"Warteschlangentyp"],"LOW":[null,"NIEDRIG"],"NORMAL":[null,"NORMAL"],"HIGH":[null,"HOCH"],"Disk Space":[null,"Speicherplatz"],"Free space":[null,"Freier Speicherplatz"],"TV Download Directory":[null,"TV Download-Verzeichnis"],"Media Root Directories":[null,"Medien-Stammverzeichnisse"],"Preview of the proposed name changes":[null,"Vorschau der vorgeschlagenen Namensänderungen"],"All Seasons":[null,"Alle Staffeln"],"select all":[null,"alle markieren"],"Rename Selected":[null,"Auswahl umbenennen"],"Cancel Rename":[null,"Umbenennen abbrechen"],"Old Location":[null,"alter Ort"],"New Location":[null,"neuer Ort"],"Trakt API did not return any results, please check your config.":[null,"Trakt-API liefert keine Ergebnisse, bitte überprüfen Sie die Konfiguration."],"votes":[null,"Stimmen"],"Remove Show":[null,"Serie entfernen"],"Level":[null,"Niveau"],"Filter":[null,"Filter"],"All non-absolute folder locations are relative to ":[null,"Alle nicht-absoluten Ordnerspeicherorte sind relativ zu "],"Manual Post-Processing":[null,"Manuelle Nachbearbeitung"],"Episode Status Management":[null,"Folgenstatusverwaltung"],"Update PLEX":[null,"PLEX aktualisieren"],"Update KODI":[null,"KODI aktualisieren"],"Update Emby":[null,"Emby aktualisieren"],"Missed Subtitle Management":[null,"Verwaltung fehlender Untertitel"],"Help & Info":[null,"Hilfe & Info"],"Backup & Restore":[null,"Sichern & Wiederherstellen"],"Tools":[null,"Werkzeuge"],"Support SickRage":[null,"Unterstütze SickRage"],"View Errors":[null,"Zeige Fehler"],"View Warnings":[null,"Zeige Warnungen"],"View Log":[null,"Zeige Protokoll"],"Check For Updates":[null,"Nach Updates suchen"],"Restart":[null,"Neustart"],"Shutdown":[null,"Herunterfahren"],"Logout":[null,"Abmelden"],"Server Status":[null,"Serverstatus"],"View overview of snatched episodes":[null,"Übersicht ermittelter Folgen anzeigen"],"Episodes Downloaded":[null,"Heruntergeladene Folgen"],"Memory used":[null,"Speichernutzung"],"Load time":[null,"Ladezeit"],"Branch":[null,"Versionszweig"],"Now":[null,"Jetzt"]}}}} \ No newline at end of file +{"messages":{"domain":"messages","locale_data":{"messages":{"100":[null,"100"],"250":[null,"250"],"500":[null,"500"],"":{"domain":"messages","plural_forms":"nplurals=2; plural=(n != 1);","lang":"de_DE"},"Drama":[null,"Drama"],"Mystery":[null,"Mystery"],"Science-Fiction":[null,"Science-Fiction"],"Crime":[null,"Krimi"],"Action":[null,"Action"],"Comedy":[null,"Comedy"],"Thriller":[null,"Thriller"],"Animation":[null,"Animation"],"Family":[null,"Familie"],"Fantasy":[null,"Fantasy"],"Adventure":[null,"Abenteuer"],"Horror":[null,"Horror"],"Film-Noir":[null,"Film Noir"],"Sci-Fi":[null,"Sci-Fi"],"Romance":[null,"Romanze"],"Sport":[null,"Sport"],"War":[null,"Kriegsfilm"],"Biography":[null,"Biografie"],"History":[null,"Verlauf"],"Music":[null,"Musik"],"Western":[null,"Western"],"News":[null,"Neuigkeiten"],"Sitcom":[null,"Sitcom"],"Reality-TV":[null,"Reality-TV"],"Documentary":[null,"Doku"],"Game-Show":[null,"Spielshow"],"Musical":[null,"Musical"],"Talk-Show":[null,"Talkshow"],"Started Download":[null,"Download gestartet"],"Download Finished":[null,"Download abgeschlossen"],"Subtitle Download Finished":[null,"Untertitel-Download abgeschlossen"],"SickRage Updated":[null,"SickRage aktualisiert"],"SickRage Updated To Commit#: ":[null,"SickRage aktualisiert auf Commit#: "],"SickRage new login":[null,"Neue SickRage-Anmeldung"],"New login from IP: {0}. http://geomaplookup.net/?ip={0}":[null,"Neue Anmeldung von IP-Adresse: {0}. http://geomaplookup.NET/?IP={0}"],"Repeat":[null,"Wiederholen"],"Repeat (Separated)":[null,"Wiederholen (getrennt)"],"Extend":[null,"Erweitern"],"Extend (Limited)":[null,"Erweitern (begrenzt)"],"Extend (Limited, E-prefixed)":[null,"Erweitern (begrenzt, mit E-Präfix)"],"Downloaded":[null,"Heruntergeladen"],"Snatched":[null,"Ermittelt"],"Snatched (Proper)":[null,"Ermittelt (Proper)"],"Failed":[null,"Fehlgeschlagen"],"Snatched (Best)":[null,"Ermittelt (optimal)"],"Archived":[null,"Archiviert"],"Unknown":[null,"Unbekannt"],"Unaired":[null,"noch nicht ausgestrahlt"],"Skipped":[null,"Übersprungen"],"Wanted":[null,"Benötigt"],"Ignored":[null,"Ignoriert"],"Subtitled":[null,"Mit Untertiteln"],"For best results please set the Download Station alias as":[null,"Für optimale Ergebnisse setzen Sie bitte den Alias der Download-Station auf"],"You can check this setting in the Synology DSM":[null,"Diese Einstellung kann in der Synology DSM überprüft werden"],"Control Panel":[null,"Systemsteuerung"],"Application Portal":[null,"Anwendungsportal"],"Make sure you allow DSM to be embedded with iFrames too in":[null,"Stellen Sie sicher, dass bei DSM ebenfalls das Einbetten von iFrames erlaubt ist"],"DSM Settings":[null,"DSM-Einstellungen"],"Security":[null,"Sicherheit"],"<No Filter>":[null,"< kein Filter >"],"Daily Searcher":[null,"Tägliche Suche"],"Backlog":[null,"Rückstand"],"Show Updater":[null,"Serien-Updater"],"Check Version":[null,"Version überprüfen"],"Show Queue":[null,"Serien-Warteschlange"],"Search Queue (All)":[null,"Such-Warteschlange (alle)"],"Search Queue (Daily Searcher)":[null,"Such-Warteschlange (tägliche Suche)"],"Search Queue (Backlog)":[null,"Such-Warteschlange (Rückstand)"],"Search Queue (Manual)":[null,"Such-Warteschlange (manuell)"],"Search Queue (Retry/Failed)":[null,"Such-Warteschlange (Wiederholt/Fehlgeschlagen)"],"Search Queue (RSS)":[null,"Such-Warteschlange (RSS)"],"Find Propers":[null,"Suche nach Korrekturen (Propers)"],"Postprocessor":[null,"Nachbearbeitung"],"Find Subtitles":[null,"Untertitel finden"],"Trakt Checker":[null,"Trakt-Checker"],"Event":[null,"Ereignis"],"Error":[null,"Fehler"],"Tornado":[null,"Tornado"],"Thread":[null,"Thread"],"Main":[null,"Allgemein"],"Loading":[null,"Wird geladen"],"New update found for SickRage, starting auto-updater":[null,"Neues Update für SickRage gefunden, Auto-Updater wird gestartet"],"Update was successful":[null,"Aktualisierung erfolgreich"],"Update failed!":[null,"Aktualisierung fehlgeschlagen!"],"Backup":[null,"Sicherung"],"Config backup in progress...":[null,"Sicherheitskopie wird erstellt..."],"Config backup successful, updating...":[null,"Sicherheitskopie erfolgreich, aktualisiert..."],"Config backup failed, aborting update":[null,"Sicherung fehlgeschlagen, Update abgebrochen"],"No update needed":[null,"Keine Aktualisierung erforderlich"],"Mako Error":[null,"Mako-Fehler"],"Oops":[null,"Hoppla"],"Wrong API key used":[null,"Falscher API-Key"],"Login":[null,"Anmelden"],"API Key not generated":[null,"Kein API Key erzeugt"],"API Builder":[null,"API-Generator"],"Schedule":[null,"Zeitplan"],"Test 1":[null,"Test 1"],"This is test number 1":[null,"Dies ist Test Nummer 1"],"Test 2":[null,"Test 2"],"This is test number 2":[null,"Dies ist Test Nummer 2"],"You're using the {branch} branch. Please use 'master' unless specifically asked":[null,"Sie verwenden den {branch}-Versionszweig. Verwenden Sie bitte 'master', sofern nicht anders spezifiziert"],"Invalid show parameters":[null,"Ungültige Serienparameter"],"Invalid parameters":[null,"Ungültige Parameter"],"Episode couldn't be retrieved":[null,"Episode konnte nicht abgerufen werden"],"Home":[null,"Startseite"],"Show List":[null,"Serienliste"],"Error: Unsupported Request. Send jsonp request with 'callback' variable in the query string.":[null,"Fehler: Nicht unterstützter Request. Senden Sie Jsonp Requests mit \"callback\" Variable in der Abfragezeichenfolge."],"Success. Connected and authenticated":[null,"Erfolg. Verbunden und authentifiziert"],"Authentication failed. SABnzbd expects":[null,"Authentifizierung fehlgeschlagen. SABnzbd erwartet"],"as authentication method":[null,"als Authentifizierungsmethode"],"Unable to connect to host":[null,"Keine Verbindung zum Host"],"SMS sent successfully":[null,"SMS erfolgreich verschickt"],"Problem sending SMS: {message}":[null,"Problem beim Senden der SMS: {message}"],"Telegram notification succeeded. Check your Telegram clients to make sure it worked":[null,"Telegram-Benachrichtigung erfolgreich. Prüfen Sie Ihre Telegram-Clients ob es geklappt hat"],"Error sending Telegram notification: {message}":[null,"Fehler beim Senden der Telegram-Benachrichtigung: {message}"],"join notification succeeded. Check your join clients to make sure it worked":[null,"Join-Benachrichtigung erfolgreich. Überprüfen Sie die Join-Clients um sicherzustellen, dass es funktioniert hat"],"Error sending join notification: {message}":[null,"Fehler beim Senden der Join-Benachrichtigung: {message}"]," with password":[null," mit Passwort"],"Registered and Tested growl successfully {growl_host}":[null,"Growl-Registrierung und Test erfolgreich {growl_host}"],"Registration and Testing of growl failed {growl_host}":[null,"Growl-Registrierung und Test fehlgeschlagen {growl_host}"],"Test prowl notice sent successfully":[null,"Prowl-Testbenachrichtigung erfolgreich gesendet"],"Test prowl notice failed":[null,"Prowl-Testbenachrichtigung fehlgeschlagen"],"Boxcar2 notification succeeded. Check your Boxcar2 clients to make sure it worked":[null,"Boxcar2-Benachrichtigung erfolgreich gesendet. Prüfen Sie Ihre Clients ob es geklappt hat"],"Error sending Boxcar2 notification":[null,"Fehler beim Senden der Boxcar2-Benachrichtigung"],"Pushover notification succeeded. Check your Pushover clients to make sure it worked":[null,"Pushover-Benachrichtigung erfolgreich. Prüfen Sie Ihre Clients ob es geklappt hat"],"Error sending Pushover notification":[null,"Fehler beim Senden der Pushover-Benachrichtigung"],"Key verification successful":[null,"Schlüssel-Überprüfung erfolgreich"],"Unable to verify key":[null,"Schlüssel-Überprüfung nicht möglich"],"Tweet successful, check your twitter to make sure it worked":[null,"Tweet erfolgreich, prüfen Sie Twitter, ob es gelappt hat"],"Error sending tweet":[null,"Fehler beim Senden des Tweets"],"Please enter a valid account sid":[null,"Bitte geben Sie eine gültige Benutzerkonto-SID ein"],"Please enter a valid auth token":[null,"Bitte geben Sie ein gültiges Autorisierungs-Token ein"],"Please enter a valid phone sid":[null,"Bitte geben Sie eine gültige Telefon-SID ein"],"Please format the phone number as \"+1-###-###-####\"":[null,"Telefonnummer bitte in folgendem Format verwenden \"+ 1-###-###-###\""],"Authorization successful and number ownership verified":[null,"Autorisierung erfolgreich und Besitz der Nummer bestätigt"],"Error sending sms":[null,"Fehler beim Versand der SMS"],"Slack message successful":[null,"Slack Nachricht erfolgreich"],"Slack message failed":[null,"Slack Nachricht fehlgeschlagen"],"Discord message successful":[null,"Discord Nachricht erfolgreich"],"Discord message failed":[null,"Discord Nachricht fehlgeschlagen"],"Test KODI notice sent successfully to {kodi_host}":[null,"KODI-Testbenachrichtigung erfolgreich gesendet an {kodi_host}"],"Test KODI notice failed to {kodi_host}":[null,"KODI-Testbenachrichtigung fehlgeschlagen {kodi_host}"],"Successful test notice sent to Plex Home Theater ... {plex_clients}":[null,"Erfolgreiche Test-Benachrichtigung an Plex Home Theater gesendet ... {plex_clients}"],"Test failed for Plex Home Theater ... {plex_clients}":[null,"Test fehlgeschlagen für Plex Home Theater ... {plex_clients}"],"Tested Plex Home Theater(s)":[null,"Plex Home Theater(s) getestet"],"Successful test of Plex Media Server(s) ... {plex_servers}":[null,"Erfolgreich getestete Plex Media Server ... {plex_servers}"],"Test failed, No Plex Media Server host specified":[null,"Test fehlgeschlagen, kein Plex Media Server Host angegeben"],"Test failed for Plex Media Server(s) ... {plex_servers}":[null,"Test fehlgeschlagen für Plex Media Server ... {plex_servers}"],"Tested Plex Media Server host(s)":[null,"Getestete Plex Media Server Hosts"],"Tried sending desktop notification via libnotify":[null,"Desktop-Benachrichtigung via Libnotify versucht"],"Test notice sent successfully to {emby_host}":[null,"Testbenachrichtigung erfolgreich an {emby_host} gesendet"],"Test notice failed to {emby_host}":[null,"Testbenachrichtigung an {emby_host} fehlgeschlagen"],"Successfully started the scan update":[null,"Scan-Update erfolgreich gestartet"],"Test failed to start the scan update":[null,"Test fehlgeschlagen um das Scan-Update zu starten"],"Test notice sent successfully to {nmj2_host}":[null,"Testbenachrichtigung erfolgreich an {nmj2_host} gesendet"],"Test notice failed to {nmj2_host}":[null,"Testbeneachrichtigung an {nmj2_host} fehlgeschlagen"],"Trakt Authorized":[null,"Trakt autorisiert"],"Trakt Not Authorized!":[null,"Trakt nicht autorisiert!"],"Test email sent successfully! Check inbox.":[null,"Test-E-Mail erfolgreich versandt! Bitte Posteingang prüfen."],"ERROR: {last_error}":[null,"Fehler: {last_error}"],"Test NMA notice sent successfully":[null,"Test NMA-Nachricht erfolgreich versandt"],"Test NMA notice failed":[null,"Test-NMA-Benachrichtigung fehlgeschlagen"],"Pushalot notification succeeded. Check your Pushalot clients to make sure it worked":[null,"Pushalot-Benachrichtigung erfolgreich. Prüfen Sie Ihre Pushalot-Clients ob es geklappt hat"],"Error sending Pushalot notification":[null,"Fehler beim Senden der Pushalot-Benachrichtigung"],"Pushbullet notification succeeded. Check your device to make sure it worked":[null,"Pushbullet-Benachrichtigung erfolgreich. Prüfen Sie Ihre Clients ob es geklappt hat"],"Error sending Pushbullet notification":[null,"Fehler beim Senden der Pushbullet-Benachrichtigung"],"Status":[null,"Status"],"Restarting SickRage":[null,"SickRage wird neu gestartet"],"Update Failed":[null,"Aktualisierung fehlgeschlagen"],"Update wasn't successful, not restarting. Check your log for more information.":[null,"Aktualisierung fehlgeschlagen, Neustart verhindert. Die Protokolldatei enthält weitere Informationen."],"Checking out branch":[null,"Versionszweig überprüfen"],"Already on branch":[null,"Bereits auf Versionszweig"],"Invalid show ID: {show}":[null,"Ungültige Serien ID: {show}"],"Show not in show list":[null,"Die Serie ist nicht in der Serienliste"],"Edit":[null,"Bearbeiten"],"This show is in the process of being downloaded - the info below is incomplete.":[null,"Diese Serie wird gerade heruntergeladen - die Info unterhalb ist demnach unvollständig."],"The information on this page is in the process of being updated.":[null,"Die Informationen auf dieser Seite werden gerade aktualisiert."],"The episodes below are currently being refreshed from disk":[null,"Die Folgen unterhalb werden gerade von der Festplatte neu eingelesen"],"Currently downloading subtitles for this show":[null,"Untertitel werden gerade für diese Serie heruntergeladen"],"This show is queued to be refreshed.":[null,"Diese Serie wurde der Warteschlange hinzugefügt, um neu eingelesen zu werden."],"This show is queued and awaiting an update.":[null,"Diese Serie wurde der Warteschlange hinzugefügt und ist im Begriff aktualisiert zu werden."],"This show is queued and awaiting subtitles download.":[null,"Diese Serie wurde der Warteschlange hinzugefügt und Untertitel werden in Kürze heruntergeladen."],"Resume":[null,"Fortsetzen"],"Pause":[null,"Pausieren"],"Remove":[null,"Entfernen"],"Re-scan files":[null,"Dateien neu einlesen"],"Force Full Update":[null,"Vollständige Aktualisierung erzwingen"],"Update show in KODI":[null,"Serie in KODI aktualisieren"],"Update show in Emby":[null,"Aktualisiere Serie in Emby"],"Hide specials":[null,"Specials ausblenden"],"Show specials":[null,"Specials anzeigen"],"Preview Rename":[null,"Vorschau: Umbenennung"],"Download Subtitles":[null,"Untertitel herunterladen"],"No scene exceptions":[null,"Keine Szene-Ausnahmen"],"Invalid show ID":[null,"Ungültige Serien ID"],"Unable to find the specified show":[null,"Angegebene Serie konnte nicht gefunden werden"],"Unable to retreive Fansub Groups from AniDB.":[null,"Es können keine FanSub-Gruppen von AniDB empfangen werden."],"Edit Show":[null,"Serie bearbeiten"],"Unable to refresh this show: {error}":[null,"Aktualisierung dieser Serie nicht möglich: {error}"],"New location <tt>{location}</tt> does not exist":[null,"Neuer Speicherort <tt>{location}</tt> existiert nicht"],"Unable to update show: {error}":[null,"Aktualisierung der Serie nicht möglich: {error}"],"Unable to force an update on scene exceptions of the show.":[null,"Aktualiserung der Szene-Ausnahmen konnte für die Serie nicht erzwungen werden."],"Unable to force an update on scene numbering of the show.":[null,"Aktualiserung der Szene-Nummerierung konnte für die Serie nicht erzwungen werden."],"{num_errors:d} error{plural} while saving changes:":[null,"{num_errors:d} Fehler beim Speichern der Änderungen:"],"{show_name} has been {paused_resumed}":[null,"{show_name} wurde {paused_resumed}"],"resumed":[null,"fortgesetzt"],"paused":[null,"pausiert"],"{show_name} has been {deleted_trashed} {was_deleted}":[null,"{show_name} wurde {deleted_trashed}{was_deleted}"],"deleted":[null,"gelöscht"],"trashed":[null,"entsorgt"],"(media untouched)":[null,"(unveränderte Medien-Dateien)"],"(with all related media)":[null,"(mit allen zugehörigen Medien)"],"Unable to refresh this show.":[null,"Aktualisierung dieser Serie nicht möglich."],"Unable to update this show.":[null,"Aktualisierung dieser Serie nicht möglich."],"Library update command sent to KODI host(s)): {kodi_hosts}":[null,"Befehl zur Aktualisierung der Bibliothek an KODI host(s) gesendet: {kodi_hosts}"],"Unable to contact one or more KODI host(s)): {kodi_hosts}":[null,"Nicht in der Lage einen oder mehrere KODI-Hosts zu kontaktieren: {kodi_hosts}"],"Library update command sent to Plex Media Server host: {plex_server}":[null,"Update-Befehl an Plex Media Server Host gesendet: {plex_server}"],"Unable to contact Plex Media Server host: {plex_server}":[null,"Keine Verbindung zu Plex Media Server Host: {plex_server}"],"Library update command sent to Emby host: {emby_host}":[null,"Befehl zur Aktualisierung der Bibliothek an Emby Host gesendet: {emby_host}"],"Unable to contact Emby host: {emby_host}":[null,"Keine Verbindung zu Emby Host:{emby_host}"],"You must specify a show and at least one episode":[null,"Sie müssen mindestens eine Serie und eine Folge angeben"],"Invalid status":[null,"Ungültiger Status"],"Backlog was automatically started for the following seasons of <b>{show_name}</b>":[null,"Rückstandssuche wurde automatisch für die folgenden Staffeln gestartet <b>{show_name}</b>"],"Season":[null,"Staffel"],"Backlog started":[null,"Rückstandssuche gestartet"],"Retrying Search was automatically started for the following season of <b>{show_name}</b>":[null,"Erneute Suche wurde automatisch gestartet für die folgende Staffel von <b>{show_name}</b>"],"Retry Search started":[null,"Erneute Suche gestartet"],"You must specify a show":[null,"Sie müssen eine Serie angeben"],"Can't rename episodes when the show dir is missing.":[null,"Umbennen von Folgen nicht möglich, wenn Serienverzeichnis fehlt."],"New subtitles downloaded: {new_subtitle_languages}":[null,"Neue Untertitel heruntergeladen: {new_subtitle_languages}"],"No subtitles downloaded":[null,"Keine Untertitel heruntergeladen"],"IRC":[null,"IRC"],"Could not load news from the repo. [Click here for news.md])({news_url})":[null,"Konnte keine Neuigkeiten aus dem Repo laden. [Klicken Sie hier für news.md])({news_url})"],"The was a problem connecting to github, please refresh and try again":[null,"Es gab ein Problem beim Verbinden mit Github, bitte aktualisieren Sie die Seite und versuchen Sie es erneut"],"Could not load changes from the repo. [Click here for CHANGES.md]({changes_url})":[null,"Änderungen konnten aus dem Repo nicht geladen werden. [Klicken Sie hier für CHANGES.md] ({changes_url})"],"Changelog":[null,"Änderungsprotokoll"],"Post Processing":[null,"Nachbearbeitung"],"Add Shows":[null,"Serien hinzufügen"],"No folders selected.":[null,"Kein Verzeichnis ausgewählt."],"New Show":[null,"Neue Serie"],"Trending Shows":[null,"Serien-Trends"],"Popular Shows":[null,"Beliebte Serien"],"Most Anticipated Shows":[null,"Meisterwartete Serien"],"Most Collected Shows":[null,"Meistgesammelte Serien"],"Most Watched Shows":[null,"Meistgesehene Serien"],"Most Played Shows":[null,"Meistgespielte Serien"],"Recommended Shows":[null,"Empfohlene Serien"],"New Shows":[null,"Neue Serien"],"Season Premieres":[null,"Staffelpremieren"],"Existing Show":[null,"Vorhandene Serie"],"No root directories setup, please go back and add one.":[null,"Root-Verzeichnis nicht eingerichtet, bitte gehen Sie zurück und fügen Sie eins hinzu."],"Show added":[null,"Serie hinzugefügt"],"Adding the specified show {show_name}":[null,"Angegebene Serie {show_name} wird hinzugefügt"],"Missing params, no Indexer ID or folder: {show_to_add} and {root_dir}/{show_path}":[null,"Parameter, Indexer ID oder Ordner fehlt: {show_to_add} und {root_dir}/{show_path}"],"Unknown error. Unable to add show due to problem with show selection.":[null,"Unbekannter Fehler. Serie kann wegen eines Auswahlproblems nicht hinzugefügt werden."],"Unable to add show":[null,"Kann Serie nicht hinzufügen"],"Folder {show_dir} exists already":[null,"Ordner {show_dir} ist bereits vorhanden"],"Unable to create the folder {show_dir}, can't add the show":[null,"Kann den Ordner {show_dir} nicht erstellen, Serie kann nicht hinzugefügt werden"],"Adding the specified show into {show_dir}":[null,"Die angegebene Serie in {show_dir} hinzufügen"],"Shows Added":[null,"Serien hinzugefügt"],"Automatically added {num_shows} from their existing metadata files":[null,"{num_shows} automatisch aus vorhandenen Metadatendateien hinzugefügt"],"Mass Update":[null,"Massenaktualisierung"],"Episode Overview":[null,"Folgenübersicht"],"Missing Subtitles":[null,"Fehlende Untertitel"],"Backlog Overview":[null,"Rückstandsübersicht"],"Mass Edit":[null,"Massenbearbeitung"],"Unable to update show: {excption_format}":[null,"Serie konnte nicht aktualisiert werden: {excption_format}"],"Unable to refresh show {show_name}: {excption_format}":[null,"Serie {show_name}: {excption_format} kann nicht aktualisiert werden"],"Errors encountered":[null,"Aufgetretene Fehler"],"Updates":[null,"Aktualisierungen"],"Refreshes":[null,"Aktualisierungen"],"Renames":[null,"Umbennenungen"],"Subtitles":[null,"Untertitel"],"The following actions were queued":[null,"Folgende Aktionen wurden der Warteschlange hinzugefügt"],"Failed Downloads":[null,"Fehlgeschlagene Downloads"],"Manage Searches":[null,"Suchverwaltung"],"Backlog search started":[null,"Rückstandssuche gestartet"],"Daily search started":[null,"Tägliche Suche gestartet"],"Find propers search started":[null,"Suche nach Korrekturen (Propers) gestartet"],"Subtitle search started":[null,"Untertitelsuche gestartet"],"Remove Selected":[null,"Markierte entfernen"],"Clear History":[null,"Verlauf löschen"],"Trim History":[null,"Verlauf kürzen"],"Selected history entries removed":[null,"Ausgewählte Verlaufseinträge entfernt"],"History cleared":[null,"Verlauf geleert"],"Removed history entries older than 30 days":[null,"Verlaufseinträge älter als 30 Tage entfernt"],"General":[null,"Allgemein"],"Backup/Restore":[null,"Sichern/Wiederherstellen"],"Search Settings":[null,"Sucheinstellungen"],"Search Providers":[null,"Suchanbieter"],"Subtitles Settings":[null,"Untertiteleinstellungen"],"Notifications":[null,"Benachrichtigungen"],"Anime":[null,"Anime"],"SickRage Configuration":[null,"SickRage Konfiguration"],"Config - Shares":[null,"Konfiguration - Freigaben"],"Windows Shares Configuration":[null,"Windows Freigabekonfiguration"],"Saved Shares":[null,"Gespeicherte Freigaben"],"Your Windows share settings have been saved":[null,"Die Windows Freigabe-Einstellungen wurden gespeichert"],"Config - General":[null,"Einstellungen - Allgemein"],"General Configuration":[null,"Grundeinstellungen"],"Saved Defaults":[null,"Gespeicherte Standardwerte"],"Your \"add show\" defaults have been set to your current selections.":[null,"Standardeinstellungen von \"Serien hinzufügen\" werden der aktuellen Auswahl entsprechend festgelegt."],"Unable to create directory {directory}, log directory not changed.":[null,"Verzeichnis {directory} kann nicht erstellt werden, Protokollverzeichnis wurde nicht geändert."],"Unable to create directory {directory}, https cert directory not changed.":[null,"Verzeichnis {directory} konnte nicht erstellt werden, https Zertifikatsverzeichnis wurde nicht geändert."],"Unable to create directory {directory}, https key directory not changed.":[null,"Verzeichnis {directory} konnte nicht erstellt werden, https Schlüsselverzeichnis wurde nicht geändert."],"Error(s) Saving Configuration":[null,"Fehler beim Speichern der Einstellungen"],"Configuration Saved":[null,"Konfiguration gespeichert"],"Config - Backup/Restore":[null,"Einstellungen - Sichern/Wiederherstellen"],"Config - Episode Search":[null,"Einstellungen - Episodensuche"],"Config - Post Processing":[null,"Einstellungen - Nachbearbeitung"],"Unpacking Not Supported, disabling unpack setting":[null,"Entpacken wird nicht unterstützt, Entpack-Einstellung wird deaktiviert"],"You tried saving an invalid normal naming config, not saving your naming settings":[null,"Sie haben versucht, eine ungültige Normal-Namens-Konfiguration zu speichern. Namens-Einstellungen werden daher nicht gespeichert"],"You tried saving an invalid anime naming config, not saving your naming settings":[null,"Sie haben versucht, eine ungültige Anime Namens-Konfiguration zu speichern. Namens-Einstellungen werden daher nicht gespeichert"],"Config - Providers":[null,"Einstellungen - Anbieter"],"No Provider Name specified":[null,"Kein Anbieter-Name angegeben"],"No Provider Url specified":[null,"Keine Anbieter-Url angegeben"],"No Provider Api key specified":[null,"Kein Anbieter API-Key angegeben"],"Config - Notifications":[null,"Einstellungen - Benachrichtigungen"],"Config - Subtitles":[null,"Einstellungen - Untertitel"],"Config - Anime":[null,"Einstellungen - Anime"],"Clear Errors":[null,"Fehler löschen"],"Clear Warnings":[null,"Warnungen löschen"],"Submit Errors":[null,"Fehler melden"],"Logs & Errors":[null,"Protokolle & Fehler"],"Log File":[null,"Protokolldatei"],"Logs":[null,"Protokolle"],"This is a test notification from SickRage":[null,"Dies ist eine Test-Mitteilung von SickRage"],"Choose Directory":[null,""],"Select log file folder location":[null,""],"Select CSS file":[null,""],"Select backup folder to save to":[null,""],"Select backup files to restore":[null,""],"Please fill out the necessary fields above.":[null,"Bitte füllen Sie die erforderlichen Felder oben aus."],"<b>Step 1:</b> Confirm Authorization":[null,""],"Check blacklist name; the value needs to be a trakt slug":[null,""],"You must provide a recipient email address!":[null,""],"You didn't supply a Pushbullet api key":[null,""],"Don't forget to save your new pushbullet settings.":[null,""],"Select TV Download Directory":[null,""],"Select Unpack Directory":[null,""],"This pattern is invalid.":[null,"Dieses Muster ist ungültig."],"This pattern would be invalid without the folders, using it will force \"Season Folders\" on for all shows.":[null,"Dieses Muster wäre ungültig ohne die Ordner, wird es dennoch verwendet schaltet es \"Staffel-Ordner\" für alle Serien ein ."],"This pattern is valid.":[null,"Dieses Muster ist gültig."],"Select .nzb black hole/watch location":[null,""],"Select .torrent black hole/watch location":[null,""],"Select .torrent download location":[null,""],"Minimum seeding time is":[null,""],"URL to your uTorrent client (e.g. http://localhost:8000)":[null,""],"Stop seeding when inactive for":[null,""],"URL to your Transmission client (e.g. http://localhost:9091)":[null,""],"URL to your Deluge client (e.g. http://localhost:8112)":[null,""],"IP or Hostname of your Deluge Daemon (e.g. scgi://localhost:58846)":[null,""],"URL to your Synology DS client (e.g. http://localhost:5000)":[null,""],"URL to your rTorrent client (e.g. scgi://localhost:5000 <br> or https://localhost/rutorrent/plugins/httprpc/action.php)":[null,""],"URL to your qBittorrent client (e.g. http://localhost:8080)":[null,""],"URL to your MLDonkey (e.g. http://localhost:4080)":[null,""],"URL to your putio client (e.g. http://localhost:8080)":[null,""],"<a herf=\"https://app.put.io/oauth/apps/new\" target=\"_blank\"> Create a new OAuth app for put.io</a>":[null,""],"Put.io Parent Folder":[null,""],"Put.io OAuth Token":[null,""],"Show Episodes":[null,"Serienfolgen"],"Hide Episodes":[null,"Ausblenden von Episoden"],"Select Show Location":[null,""],"Select Unprocessed Episode Folder":[null,""],"DELETED":[null,""],"Resume updating the log on this page.":[null,"Wiederaufnahme der Aktualisierung des Protokolls auf dieser Seite."],"Pause updating the log on this page.":[null,"Pausiere die Aktualisierung des Protokolls auf dieser Seite."],"searching {searchingFor}...":[null,""],"search timed out, try again or try another indexer":[null,""],"loading folders...":[null,""],"Loading...":[null,"Lädt..."],"You have reached this page by accident, please check the url.":[null,"Sie haben diese Seite durch Zufall erreicht. Bitte prüfen Sie die Url."],"A mako error has occured.<br>\n If this happened during an update a simple page refresh may be the solution.<br>\n Mako errors that happen during updates may be a one time error if there were significant ui changes.":[null,"Ein Mako-Fehler ist aufgetreten.<br>\n Wenn das während einer Aktualisierung vorkommt, dann könnte ein Neuladen der Seite helfen.<br>\n Mako-Fehler, die während einer Aktualisierung passieren, treten oft nur einmalig auf, wenn größere Änderungen an der Benutzeroberfläche durchgeführt wurden."],"Show/Hide Error":[null,"Fehler ein-/ausblenden"],"Add New Show":[null,"Neue Serie hinzufügen"],"For shows that you haven't downloaded yet, this option finds a show on theTVDB.com, creates a directory for it's episodes, and adds it to SickRage.":[null,"Für Sendungen die Sie noch nicht heruntergeladen haben findet sie diese Option in theTVDB.com, erstellt ein Verzeichnis für ihre Episoden und fügt sie zu SickRage hinzu."],"Add From Trakt Lists":[null,"Von Trakt Listen hinzufügen"],"For shows that you haven't downloaded yet, this option lets you choose from a show from one of the Trakt lists to add to SickRage.":[null,"Für Serien, die Sie noch nicht heruntergeladen haben, ermöglicht diese Option Serien aus einer Trakt Liste auszuwählen und sie SickRage hinzuzufügen."],"Add From IMDB's Popular Shows":[null,"Aus beliebten Serien von IMDB hinzufügen"],"View IMDB's list of the most popular shows. This feature uses IMDB's MOVIEMeter algorithm to identify popular TV Series.":[null,"IMDB Liste der beliebtesten Serien anzeigen. Diese Funktion nutzt IMDBs MOVIEMeter-Algorithmus zur Identifizierung beliebter TV-Serien."],"Add Existing Shows":[null,"Vorhandene Serien hinzufügen"],"Use this option to add shows that already have a folder created on your hard drive. SickRage will scan your existing metadata/episodes and add the show accordingly.":[null,"Verwenden Sie diese Option um eine Serie hinzuzufügen, die sich bereits in einem Ordner auf Ihrer Festplatte befindet. SickRage durchsucht Ihre vorhandenen Metadaten/Episoden und wird die Serie entsprechend hinzufügen."],"Add Existing Show":[null,"Vorhandene Serie hinzufügen"],"Manage Directories":[null,"Verzeichnisse verwalten"],"Customize Options":[null,"Einstellungen anpassen"],"SickRage can add existing shows, using the current options, by using locally stored NFO/XML metadata to eliminate user interaction. If you would rather have SickRage prompt you to customize each show, then use the checkbox below.":[null,"SickRage kann vorhandene Serien mit gegebenen Einstellungen mithilfe von lokal gespeicherten NFO/XML-Metadaten ohne weitere Benutzerinteraktion hinzufügen. \n Um jede Serie individuell anzupassen, bitte das folgende Kontrollkästchen aktivieren."],"Prompt me to set settings for each show":[null,"Die Einstellungen für jede Serie anzeigen"],"Displaying folders within these directories which aren't already added to SickRage":[null,"Anzeigen von Ordnern innerhalb dieser Verzeichnisse, die SickRage nicht bereits hinzugefügt wurden"],"Submit":[null,"Absenden"],"Find a show on theTVDB":[null,"Eine Serie auf theTVDB finden"],"Show retrieved from existing metadata":[null,"Serie aus vorhandenen Metadaten ermittelt"],"All Indexers":[null,"Alle Indexer"],"Search":[null,"Suche"],"This will only affect the language of the retrieved metadata file contents and episode filenames.":[null,"Dies wirkt sich nur auf die Sprache der abgerufenen Metadateninhalte und Folge-Dateinamen aus."],"This <b>DOES NOT</b> allow SickRage to download non-english TV episodes!":[null,"<b>Nicht</b> zulassen, dass SickRage nicht englischsprachige TV-Folgen herunterlädt!"],"Pick the parent folder":[null,"Wählen Sie den übergeordneten Ordner"],"Pre-chosen Destination Folder":[null,"Vorab gewählter Zielordner"],"Customize options":[null,"Einstellungen anpassen"],"Add Show":[null,"Serie hinzufügen"],"Skip Show":[null,"Serie überspringen"],"Sort By":[null,"Sortieren nach"],"Name":[null,"Name"],"Original":[null,"Original"],"Votes":[null,"Stimmen"],"Rating":[null,"Bewertung"],"Rating > Votes":[null,"Bewertung > Stimmen"],"Sort Order":[null,"Sortierung"],"Asc":[null,"Aufsteigend"],"Desc":[null,"Absteigend"],"Fetching of IMDB Data failed. Are you online?":[null,"IMDB Daten abrufen fehlgeschlagen. Sind Sie online?"],"Exception":[null,"Ausnahme"],"Select Trakt List":[null,"Wähle Trakt Liste"],"Most Anticipated":[null,"Meisterwartet"],"Trending":[null,"Im Trend"],"Popular":[null,"Beliebt"],"Most Watched":[null,"Meistgesehen"],"Most Played":[null,"Meistgespielt"],"Most Collected":[null,"Meistgesammelt"],"Recommended":[null,"Empfohlen"],"Toggle navigation":[null,"Navigationsanzeige umschalten"],"Profile":[null,"Profil"],"JSONP":[null,"JSONP"],"Back to SickRage":[null,"Zurück zu SickRage"],"Parameters":[null,"Parameter"],"Required":[null,"Erforderlich"],"Description":[null,"Beschreibung"],"Type":[null,"Typ"],"Default value":[null,"Standardwert"],"Allowed values":[null,"Zulässigen Werte"],"Playground":[null,"Spielplatz"],"Clear":[null,"Bereinigen"],"Yes":[null,"Ja"],"No":[null,"Nein"],"season":[null,"Staffel"],"episode":[null,"Folge"],"Python Version":[null,"Python-Version"],"SSL Version":[null,"SSL-Version"],"OS":[null,"Betriebssystem"],"Locale":[null,"Gebietsschema"],"User":[null,"Benutzer"],"Program Folder":[null,"Programmordner"],"Config File":[null,"Konfigurationsdatei"],"Database File":[null,"Datenbankdatei"],"Cache Folder":[null,"Cache-Verzeichnis"],"Log Folder":[null,"Protokollordner"],"Arguments":[null,"Argumente"],"Web Root":[null,"Web Root-Verzeichnis"],"Website":[null,"Webseite"],"Wiki":[null,"Wiki"],"Source":[null,"Quelle"],"IRC Chat":[null,"IRC-Chat"],"AnimeDB Settings":[null,"AnimeDB Einstellungen"],"Look & Feel":[null,"Erscheinungsbild"],"AniDB is non-profit database of anime information that is freely open to the public":[null,"AniDB ist eine Non-Profit-Datenbank von Anime-Informationen, die für die Öffentlichkeit frei zugänglich ist"],"Enable":[null,"Einschalten"],"should SickRage use data from AniDB?":[null,"sollte SickRage Daten von AniDB verwenden?"],"AniDB Username":[null,"AniDB Benutzername"],"username of your AniDB account":[null,"Benutzername Ihres AniDB-Accounts"],"AniDB Password":[null,"AniDB Passwort"],"password of your AniDB account":[null,"Passwort Ihres AniDB-Accounts"],"AniDB MyList":[null,"AniDB MyList"],"do you want to add the PostProcessed episodes to the MyList?":[null,"Sollen nachbearbeitete Folgen MyList hinzugefügt werden?"],"Look and Feel":[null,"Erscheinungsbild"],"How should the anime functions show and behave.":[null,"Anzeige und Verhalten der Anime-Funktionen."],"Split show lists":[null,"Serienlisten aufteilen"],"separate anime and normal shows in groups":[null,"Anime und normale Serien in Gruppen trennen"],"Split in tabs":[null,"In Registerkarten aufteilen"],"use tabs for when splitting show lists":[null,"verwende Registerkarten für Aufspaltung der Serienlisten"],"Restore":[null,"Wiederherstellen"],"Backup your main database file and config.":[null,"Sicherung der Hauptdatenbank und Konfiguration."],"Select the folder you wish to save your backup file to":[null,"Verzeichnis für Sicherungsdatei wählen"],"Restore your main database file and config.":[null,"Wiederherstellung der Hauptdatenbank und Konfiguration."],"Select the backup file you wish to restore":[null,"Sicherungsdatei für Wiederherstellung wählen"],"Misc":[null,"Sonstiges"],"Interface":[null,"Benuzeroberfläche"],"Advanced Settings":[null,"Erweiterte Einstellungen"],"Startup options. Indexer options. Log and show file locations.":[null,"Starteinstellungen. Indexer Einstellungen. Speicherorte von Protokoll- und Seriendateien."],"Some options may require a manual restart to take effect.":[null,"Einige Einstellungen werden erst nach einem manuellen Neustart wirksam."],"Default Indexer Language":[null,"Indexer Standardsprache"],"for adding shows and metadata providers":[null,"zum Hinzufügen von Serien- und Metadaten-Anbietern"],"Launch browser":[null,"Browser starten"],"open the SickRage home page on startup":[null,"sickRage-Homepage beim Start öffnen"],"Initial page":[null,"Startseite"],"Shows":[null,"Serien"],"when launching SickRage interface":[null,"beim Start der SickRage-Benuzeroberfläche"],"Choose hour to update shows":[null,"Uhrzeit wählen zum Aktualisieren der Serien"],"with information such as next air dates, show ended, etc. Use 15 for 3pm, 4 for 4am etc.":[null,"mit Informationen wie nächste Sendetermine, Serie ist zu Ende usw. 15 = 15 Uhr (nachmittags), 4 = 4 Uhr (morgens) usw."],"note":[null,"Hinweis"],"minutes are randomized each time SickRage is started":[null,"Minuten werden bei jedem Start von SickRage randomisiert"],"Send to trash for actions":[null,"Papierkorb-Optionen"],"when using show \"Remove\" and delete files":[null,"Für den Fall, dass Serie \"Entfernen und Dateien löschen\" aktiv ist"],"on scheduled deletes of the oldest log files":[null,"bei geplanten Löschungen der ältesten Protokolldateien"],"selected actions use trash (recycle bin) instead of the default permanent delete":[null,"ausgewählte Aktionen verwenden den (wiederherstellbaren) Papierkorb statt standardmäßig permanent zu löschen"],"Log file folder location":[null,"Standort Protokolldatei"],"Number of Log files saved":[null,"Anzahl der Protokolldateien"],"number of log files saved when rotating logs (default: 5) (REQUIRES RESTART)":[null,"Anzahl der Protokolldateien für Protokollrotation (default: 5) (REQUIRES RESTART)"],"Size of Log files saved":[null,"Größe der gespeicherten Protokolldateien"],"maximum size in MB of the log file (default: 1MB) (REQUIRES RESTART)":[null,"maximale Größe der Protokolldatei in MB (Standard: 1MB) (Neustart erforderlich)"],"Use initial indexer set to":[null,"Setze ersten Indexer auf"],"as the default selection when adding new shows":[null,"Standardauswahl beim Hinzufügen neuer Serien"],"Timeout show indexer at":[null,"Timeout des Serienindexers bei"],"seconds of inactivity when finding new shows (default:20)":[null,"Inaktivität in Sekunden beim Finden neuer Serien (Standard: 20)"],"Show root directories":[null,"Stammverzeichnisse anzeigen"],"where the files of shows are located":[null,"Standort der Seriendateien"],"Save Changes":[null,"Änderungen speichern"],"Options for software updates.":[null,"Optionen für Softwareupdates."],"Check software updates":[null,"Auf neue Versionen prüfen"],"and display notifications when updates are available. Checks are run on startup and at the frequency set below*":[null,"und Benachrichtigungen anzeigen, sobald Updates verfügbar sind. Überprüfungen werden beim Start und gemäß dem unten angegebenen Takt ausgeführt*"],"Automatically update":[null,"Automatisch aktualisieren"],"fetch and install software updates. Updates are run on startup and in the background at the frequency set below*":[null,"Software Aktualisierungen abrufen und installieren. \n Updates werden beim Start und gemäß dem unten angegebenen Takt im Hintergrund ausgeführt*"],"Check the server every*":[null,"Überprüfung des Servers alle*"],"hours for software updates (default:1)":[null,"Stunden nach Software-Updates (Standard: 1)"],"Notify on software update":[null,"Benachrichtigen bei Softwareupdate"],"send a message to all enabled notifiers when SickRage has been updated":[null,"Nachricht an alle aktivierten Benachrichtigungs-Module senden, sobald SickRage aktualisiert wurde"],"User Interface":[null,"Benutzeroberfläche"],"Options for visual appearance.":[null,"Einstellungen für visuelle Darstellung."],"Interface Language":[null,"Sprache der Benutzeroberfläche"],"System Language":[null,"Systemsprache"],"for appearance to take effect, save then refresh your browser":[null,"um wirksam zu werden, speichern und Seite neu laden"],"Display theme":[null,"Anzeigedesign"],"Dark":[null,"Dunkel"],"Light":[null,"Hell"],"Use a background image":[null,"Hintergrundbild verwenden"],"use a custom image as background for SickRage":[null,"Verwende ein benutzerdefiniertes Bild als Hintergrund für SickRage"],"Background Path":[null,"Pfad zum Hintergrundbild"],"Path to the background image":[null,"Pfad zum Hintergrundbild"],"Show fanart in the background":[null,"Fanart im Hintergrund anzeigen"],"on the show summary page":[null,"auf der Serien-Übersichtsseite"],"Fanart transparency":[null,"Fanart-Transparenz"],"transparency of the fanart in the background":[null,"Transparenz der Fanart im Hintergrund"],"Use a custom stylesheet file":[null,"Verwenden Sie eine benutzerdefinierte Stylesheet-Datei"],"use a custom .css file to style SickRage (for advanced users)":[null,"Verwenden Sie eine benutzerdefinierte CSS-Datei um SickRage zu stylen (für Fortgeschrittene)"],"Stylesheet File Path":[null,"Stylesheet-Dateipfad"],"Path to the stylesheet (.css) file":[null,"Pfad zur Stylesheet-Datei (.css)"],"Show all seasons":[null,"Alle Staffeln anzeigen"],"Sort with \"The\", \"A\", \"An\"":[null,"Inklusive \"The\", \"A\", \"Ein\" sortieren"],"include articles (\"The\", \"A\", \"An\") when sorting show lists":[null,"Beim Sortieren Artikel (\"The\", \"A\", \"An\") berücksichtigen"],"Missed episodes range":[null,"Zeitspanne versäumter Folgen"],"set the range in days of the missed episodes in the Schedule page":[null,"Spanne versäumter Folgen (in Tagen) im Zeitplaner festlegen"],"Display fuzzy dates":[null,"Ungefähre Datumsangaben anzeigen"],"move absolute dates into tooltips and display e.g. \"Last Thu\", \"On Tue\"":[null,"Absolute Datumsangaben in Tooltips verschieben und anzeigen z.B. \"Letzten Do\", \"Am Die\""],"Trim zero padding":[null,"Überflüssige Nullen kürzen"],"remove the leading number \"0\" shown on hour of day, and date of month":[null,"Führende Ziffer \"0\" aus der Stunde des Tages und dem Monatsdatum entfernen"],"Date style":[null,"Datumsformat"],"Use System Default":[null,"Systemstandard verwenden"],"Time style":[null,"Zeitformat"],"seconds are only shown on the History page":[null,"Sekunden werden nur auf der Verlaufsseite angezeigt"],"Timezone":[null,"Zeitzone"],"Local":[null,"Lokal"],"Network":[null,"Sender"],"display dates and times in either your timezone or the shows network timezone":[null,"Datum und Uhrzeit in Ihrer Zeitzone oder der des Senders anzeigen"],"use local timezone to start searching for episodes minutes after show ends (depends on your dailysearch frequency)":[null,"Verwendung der lokalen Zeitzone, um nach Folgen unmittelbar nach Ende der Serie zu suchen (abhängig vom Takt der täglichen Suche)"],"Download url":[null,"Download-URL"],"URL where the shows can be downloaded.":[null,"URL, von der die Serien heruntergeladen werden können."],"Web Interface":[null,"Weboberfläche"],"it is recommended that you enable a username and password to secure SickRage from being tampered with remotely.":[null,"Die Aktivierung von Benutzernamen und Passwort wird empfohlen, um SickRage vor unerwünschten Remote-Manipulationen zu schützen."],"these options require a manual restart to take effect.":[null,"Diese Optionen erfordern einen manuellen Neustart."],"API key":[null,"API-Key"],"used to give 3rd party programs limited access to SickRage":[null,"verwendet, um 3rd-Party-Programmen beschränkten Zugriff auf SickRage zu gewähren"],"you can try all the features of the API":[null,"Sie können alle Funktionen der API ausprobieren"],"here":[null,"Hier"],"HTTP logs":[null,"HTTP-Protokolle"],"enable logs from the internal Tornado web server":[null,"Protokolle des internen Tornado Webservers aktivieren"],"HTTP username":[null,"HTTP Benutzername"],"set blank for no login":[null,"Freilassen für kein Login"],"HTTP password":[null,"HTTP Passwort"],"blank = no authentication":[null,"leer = keine Authentifizierung"],"HTTP port":[null,"HTTP Port"],"web port to browse and access SickRage (default:8081)":[null,"Webport für den Zugriff auf SickRage (Standard: 8081)"],"Notify on login":[null,"Benachrichtigung beim Login"],"enable to be notified when a new login happens in webserver":[null,"Aktivieren, um bei einem neuen Webserver-Login benachrichtigt zu werden"],"Listen on IPv6":[null,"IPv6 Unterstützung"],"attempt binding to any available IPv6 address":[null,"Versuch der Anbindung an verfügbare IPv6-Adressen"],"Enable HTTPS":[null,"HTTPS einschalten"],"enable access to the web interface using a HTTPS address":[null,"Zugriff auf Web-Benutzeroberfläche über HTTPS"],"HTTPS certificate":[null,"HTTPS-Zertifikat"],"file name or path to HTTPS certificate":[null,"Dateiname oder Pfad zum HTTPS-Zertifikat"],"HTTPS key":[null,"HTTPS-Schlüssel"],"file name or path to HTTPS key":[null,"Dateiname oder Pfad zum HTTPS-Zertifikat"],"Reverse proxy headers":[null,"Reverse Proxy Header"],"accept the following reverse proxy headers (advanced)...":[null,"Akzeptieren folgender Reverse Proxy-Header (fortgeschritten)..."],"(X-Forwarded-For, X-Forwarded-Host, and X-Forwarded-Proto)":[null,"(X-Forwarded-For, X-Forwarded-Host und X-Forwarded-Proto)"],"CPU throttling":[null,"CPU-Drosselung"],"Normal (default). High is lower and Low is higher CPU use":[null,"Normal (Standard). Hoch ist niedrigere und Niedrig ist höhere CPU-Auslastung"],"Anonymous redirect":[null,"Anonyme Umleitung"],"backlink protection via anonymizer service, must end in \"?\"":[null,"Backlink-Schutz über Anonymizer-Service muss mit \"?\" enden"],"Enable debug":[null,"Debug einschalten"],"enable debug logs":[null,"Debug-Protokolle aktivieren"],"Verify SSL Certs":[null,"SSL-Zertifikate überprüfen"],"verify SSL Certificates (Disable this for broken SSL installs (Like QNAP))":[null,"SSL-Zertifikate überprüfen (deaktivieren Sie diese für 'defekte' SSL-Installationen (wie QNAP))"],"No Restart":[null,"Kein Neustart"],"only shutdown when restarting SR":[null,"nur abschalten bei SR Neustart"],"only select this when you have external software restarting SR automatically when it stops (like FireDaemon)":[null,"Nur auswählen, wenn externe Software SR automatisch neustartet, sobald angehalten (wie FireDaemon)"],"Encrypt passwords":[null,"Passwörter verschlüsseln"],"in the <code>config.ini</code> file":[null,"in der Datei <code>config.ini</code>"],"warning":[null,"Achtung"],"passwords must only contain":[null,"Passwörter dürfen nur enthalten"],"ASCII characters":[null,"ASCII-Zeichen"],"Unprotected calendar":[null,"Ungeschützter Kalender"],"allow subscribing to the calendar without user and password":[null,"Abonnieren des Kalenders ohne Benutzername und Passwort erlauben"],"some services like Google Calendar only work this way":[null,"einige Dienste wie Google Kalender funktionieren nur auf diese Weise"],"Google Calendar Icons":[null,"Google Kalender-Icons"],"show an icon next to exported calendar events in Google Calendar":[null,"Symbol neben exportierten Kalenderereignissen im Google Kalender anzeigen"],"Proxy host":[null,"Proxy-Host"],"blank to disable or proxy to use when connecting to providers":[null,"Freilassen zum deaktivieren beziehungsweise zu verwendender Proxy bei der Verbindung mit Anbietern"],"also use global proxy setting for indexers (tvdb, xem, anidb, etc.)":[null,"Globale Proxy-Einstellung auch für Indexer verwenden (Tvdb, Xen, Anidb usw.)"],"Skip Remove Detection":[null,"Erkennung entfernter Elemente ignorieren"],"skip detection of removed files":[null,"Erkennung von entfernten Dateien überspringen"],"if disabled the episode will be set to the default deleted status":[null,"sofern deaktiviert wird der Status der Folge standardmäßig auf \"gelöscht\" gesetzt"],"Default deleted episode status":[null,"Standardstatus gelöschter Folgen"],"define the status to be set for media file that has been deleted.":[null,"Status für gelöschte Mediendateien festlegen."],"Archived option will keep previous downloaded quality":[null,"Die Einstellung \"Archiviert\" behält die zuvor heruntergeladene Qualität bei"],"example: Downloaded (1080p WEB-DL) ==> Archived (1080p WEB-DL)":[null,"Beispiel: Heruntergeladen (1080p WEB-DL) ==> Archiviert (1080p WEB-DL)"],"Options for github related features.":[null,"Optionen rundum Github."],"Branch version":[null,"Branch Version"],"error: No branches found.":[null,"Fehler: Keine Versionszweige gefunden."],"select branch to use (restart required)":[null,"Versionszweig auswählen (Neustart erforderlich)"],"Authorization Type":[null,"Authentifizierungstyp"],"Username and password":[null,"Benutzername und Passwort"],"Personal access token":[null,"Persönlicher Zugangs-Token"],"You must use a personal access token if you're using \"two-factor authentication\" on GitHub.":[null,"Sie müssen einen persönlichen Zugangs-Token verwenden, wenn Sie \"zwei-Faktor-Authentifizierung\" auf GitHub verwenden möchten."],"GitHub username":[null,"GitHub Benutzername"],"*** (REQUIRED FOR SUBMITTING ISSUES) ***":[null,"(ERFORDERLICH UM PROBLEME EINZUREICHEN) ***"],"GitHub password":[null,"GitHub Passwort"],"GitHub personal access token":[null,"persönlicher GitHub Zugangs-Token"],"Generate Token":[null,"Token generieren"],"Manage Tokens":[null,"Tokens verwalten"],"GitHub remote for branch":[null,"GitHub Remote für Versionszweig"],"access repo configured remotes (save then refresh browser)":[null,"Zugriff Repo-konfigurierter Remotes (sichern, anschließend Seite neu laden)"],"default":[null,"Standard"],"origin":[null,"origin"],"Git executable path":[null,"Pfad zu 'Git'"],"only needed if OS is unable to locate git from env":[null,"nur erforderlich, wenn Git nicht über die das Betriebssystemumgebung gefunden werden kann"],"Git reset":[null,"'Git' zurücksetzen"],"removes untracked files and performs a hard reset on git branch automatically to help resolve update issues":[null,"entfernt nicht aufgezeichnete Dateien und führt automatisch einen harten Reset beim Git-Versionszweig durch, um Update-Probleme zu beheben"],"Home Theater / NAS":[null,"Heimkino / NAS"],"Devices":[null,"Geräte"],"Social":[null,"Sozial"],"A free and open source cross-platform media center and home entertainment system software with a 10-foot user interface designed for the living-room TV.":[null,"Ein kostenloses, plattformübergreifendes Open Source Medien-Center und Home Entertainment System Software mit einer 3-Meter (10-foot) Benutzeroberfläche für das Wohnzimmer-TV entwickelt."],"send KODI commands?":[null,"KODI Befehle senden?"],"Always on":[null,"Immer An"],"log errors when unreachable?":[null,"Fehler protokollieren sofern nicht erreichbar?"],"Notify on snatch":[null,"Sobald ermittelt benachrichtigen"],"send a notification when a download starts?":[null,"Benachrichtigung senden, sobald ein Download startet?"],"Notify on download":[null,"Beim Herunterladen benachrichtigen"],"send a notification when a download finishes?":[null,"Benachrichtigung senden, wenn ein Download abgeschlossen ist?"],"Notify on subtitle download":[null,"Beim Herunterladen von Untertiteln benachrichtigen"],"send a notification when subtitles are downloaded?":[null,"Benachrichtigung senden, wenn Untertitel heruntergeladen werden?"],"Update library":[null,"Bibliothek aktualisieren"],"update KODI library when a download finishes?":[null,"KODI-Bibliothek aktualisieren, sobald ein Download abgeschlossen ist?"],"Full library update":[null,"Vollständige Bibliotheksaktualisierung"],"perform a full library update if update per-show fails?":[null,"Vollständige Aktualisierung ausführen, sofern einzelne Serien-Aktualisierungen fehlschlagen?"],"Only update first host":[null,"Nur den ersten Host aktualisieren"],"only send library updates to the first active host?":[null,"Bibliotheks-Aktualisierungen nur an den ersten aktiven Host senden?"],"KODI IP:Port":[null,"KODI IP: Port"],"host running KODI (eg. 192.168.1.100:8080)":[null,"Host, auf dem KODI läuft (z.B. 192.168.1.100:8080)"],"(multiple host strings must be separated by commas)":[null,"(mehrere Host-Zeichenfolgen müssen durch Kommas getrennt werden)"],"Username":[null,"Benutzername"],"username for your KODI server (blank for none)":[null,"Benutzername für KODI-Server (leer lassen für keinen)"],"Password":[null,"Passwort"],"password for your KODI server (blank for none)":[null,"Passwort für KODI-Server (leer lassen für keins)"],"Click below to test.":[null,"Test: unten klicken."],"Experience your media on a visually stunning, easy to use interface on your Mac connected to your TV. Your media library has never looked this good!":[null,"Erleben Sie Ihre Medien auf einer visuell beeindruckenden und einfach zu bedienenden Benutzeroberfläche auf Ihrem Mac direkt an Ihr Fernsehgerät angeschlossen. Ihre Medienbibliothek sah noch nie so gut aus!"],"For sending notifications to Plex Home Theater (PHT) clients, use the KODI notifier with port <b>3005</b>.":[null,"Um Benachrichtigungen an Plex Home Theater (PHT)-Clients zu senden, verwenden Sie den KODI-Notifier an Port-<b>3005</b>."],"send Plex Media Server library updates?":[null,"Plex Media Server Bibliotheksaktualisierungen senden?"],"Plex Media Server Auth Token":[null,"Plex Media Server Autorisierungs-Token"],"auth token used by Plex":[null,"Plex Authentifizierungs-Token"],"Update Library":[null,"Bibliothek aktualisieren"],"update Plex Media Server library when a download finishes":[null,"Plex Media Server-Bibliothek aktualisieren, wenn ein Download abgeschlossen ist"],"Plex Media Server IP:Port":[null,"Plex Media Server IP: Port"],"one or more hosts running Plex Media Server<br/>(eg. 192.168.1.1:32400, 192.168.1.2:32400)":[null,"ein oder mehrere Hosts mit laufendem Plex Media Server <br/>(z.B. 192.168.1.1:32400, 192.168.1.2:32400)"],"HTTPS":[null,"HTTPS"],"use https for plex media server requests?":[null,"Https verwenden für Plex Media Serveranfragen?"],"Click below to test Plex Media Server(s)":[null,"Unten klicken, um Plex Media Server zu testen"],"Test Plex Media Server":[null,"Plex Media Server testen"],"Plex Home Theater":[null,"Plex Home Theater"],"send Plex Home Theater notifications?":[null,"Plex Home Theater Benachrichtigungen senden?"],"Plex Home Theater IP:Port":[null,"Plex Home Theater IP:Port"],"one or more hosts running Plex Home Theater<br>(eg. 192.168.1.100:3000, 192.168.1.101:3000)":[null,"ein oder mehrere Hosts mit laufendem Plex Home Theater <br>(z.B. 192.168.1.1:32400, 192.168.1.2:32400)"],"Click below to test Plex Home Theater(s)":[null,"Unten klicken, um Plex Home Theater zu testen"],"Test Plex Home Theater":[null,"Plex Home Theater testen"],"some Plex Home Theaters <b class=\"boldest\">do not</b> support notifications e.g. Plexapp for Samsung TVs":[null,"Einige Plex Home Theater Apps unterstützen <b class=\"boldest\"> keine </b> Benachrichtigungen z.B. Plexapp für Samsung TVs"],"Emby":[null,"Emby"],"A home media server built using other popular open source technologies.":[null,"Heim-Medien-Server für die Nutzung weiterer, populärer Open-Source-Technologien."],"send update commands to Emby?":[null,"Aktualisierungsbefehle an Emby schicken?"],"Emby IP:Port":[null,"Emby IP: Port"],"host running Emby (eg. 192.168.1.100:8096)":[null,"Host, auf dem Emby läuft (z.B. 192.168.1.100:8096)"],"Emby API Key":[null,"Emby API-Key"],"Networked Media Jukebox":[null,"Networked Media Jukebox"],"The Networked Media Jukebox, or NMJ, is the official media jukebox interface made available for the Popcorn Hour 200-series.":[null,"Die Networked Media Jukebox oder NMJ ist die offizielle Media-Jukebox-Schnittstelle für die Popcorn Hour-200-Serie."],"send update commands to NMJ?":[null,"Aktualisierungsbefehle an NMJ schicken?"],"Popcorn IP address":[null,"Popcorn IP-Adresse"],"IP address of Popcorn 200-series (eg. 192.168.1.100)":[null,"IP-Adresse der Popcorn-200-Serie (z.B. 192.168.1.100)"],"Get settings":[null,"Einstellungen holen"],"Get Settings":[null,"Einstellungen abrufen"],"the Popcorn Hour device must be powered on and NMJ running.":[null,"Das Popcorn Hour-Gerät muss eingeschaltet und NMJ ausgeführt sein."],"NMJ database":[null,"NMJ-Datenbank"],"automatically filled via the 'Get Settings' button.":[null,"wird automatisch über den Button 'Einstellungen abrufen' vervollständigt."],"NMJ mount url":[null,"NMJ Mount URL"],"Networked Media Jukebox v2":[null,"Networked Media Jukebox v2"],"The Networked Media Jukebox, or NMJv2, is the official media jukebox interface made available for the Popcorn Hour 300 & 400-series.":[null,"Die Networked Media Jukebox oder NMJv2 ist die offizielle Medien-Jukebox-Schnittstelle für die Popcorn Hour 300 & 400-Serie."],"send update commands to NMJv2?":[null,"Aktualisierungsbefehle an NMJv2 schicken?"],"IP address of Popcorn 300/400-series (eg. 192.168.1.100)":[null,"IP-Adresse der Popcorn 300/400-Serie (z.B. 192.168.1.100)"],"Database location":[null,"Speicherort der Datenbank"],"Database instance":[null,"Datenbankinstanz"],"adjust this value if the wrong database is selected.":[null,"passen Sie diesen Wert an, sofern die falsche Datenbank ausgewählt ist."],"Find database":[null,"Datenbank suchen"],"Find Database":[null,"Datenbank suchen"],"the Popcorn Hour device must be powered on.":[null,"Das Popcorn Hour-Gerät muss eingeschaltet sein."],"NMJv2 database":[null,"NMJv2-Datenbank"],"automatically filled via the 'Find Database' buttons.":[null,"wird automatisch über den Button 'Datenbank suchen' vervollständigt."],"Synology":[null,"Synology"],"The Synology DiskStation NAS.":[null,"Die Synology DiskStation NAS."],"Synology Indexer is the daemon running on the Synology NAS to build its media database.":[null,"Synology-Indexer ist der Daemon, der auf dem Synology NAS läuft, um seine Mediendatenbank zu erstellen."],"send Synology notifications?":[null,"Synology Benachrichtigungen senden?"],"requires SickRage to be running on your Synology NAS.":[null,"SickRage muss auf Synology NAS ausgeführt werden."],"Synology Indexer":[null,"Synology-Indexer"],"Synology Notifier is the notification system of Synology DSM":[null,"Synology Notifier ist das Meldesystem von Synology DSM"],"send notifications to the Synology Notifier?":[null,"Benachrichtigungen an Synology-Notifier schicken?"],"pyTivo":[null,"pyTivo"],"pyTivo is both an HMO and GoBack server. This notifier will load the completed downloads to your Tivo.":[null,"pyTivo ist sowohl ein HMO- als auch ein GoBack-Server. Dieses Benachrichtungsssystem lädt abgeschlossene Downloads zu Ihrem Tivo."],"send notifications to pyTivo?":[null,"Benachrichtigungen an PyTivo schicken?"],"requires the downloaded files to be accessible by pyTivo.":[null,"Heruntergeladenen Dateien müssen für PyTivo zugänglich sein."],"pyTivo IP:Port":[null,"pyTivo IP:Port"],"host running pyTivo (eg. 192.168.1.1:9032)":[null,"Host, auf dem pyTivo läuft (z.B. 192.168.1.1:9032)"],"pyTivo share name":[null,"pyTivo-Freigabename"],"value used in pyTivo Web Configuration to name the share.":[null,"Wert in der PyTivo Web-Konfiguration für die Namensgebung der Freigabe."],"Tivo name":[null,"Tivo-Name"],"(Messages & Settings > Account & System Information > System Information > DVR name)":[null,"(Nachrichten & Einstellungen > Konto & Systeminformationen > Systeminformationen > DVR-Name)"],"Growl":[null,"Growl"],"A cross-platform unobtrusive global notification system.":[null,"Ein dezentes, globales Cross-Plattform Benachrichtigungssystem."],"send Growl notifications?":[null,"Growl Benachrichtigungen senden?"],"Growl IP:Port":[null,"Growl IP:Port"],"host running Growl (eg. 192.168.1.100:23053)":[null,"Growl-Host (z.B. 192.168.1.100:23053)"],"may leave blank if SickRage is on the same host.":[null,"Freilassen wenn SickRage auf dem gleichen Host ausgeführt wird."],"otherwise Growl <b>requires</b> a password to be used.":[null,"Ansonsten <b>erfordert</b> Growl ein Kennwort."],"Click below to register and test Growl, this is required for Growl notifications to work.":[null,"Unten klicken um Growl zu registrieren und zu testen, dies ist für Growl-Benachrichtigungen erforderlich."],"Register Growl":[null,"Growl-Registrierung"],"Prowl":[null,"Prowl"],"A Growl client for iOS.":[null,"Growl-Client für iOS."],"send Prowl notifications?":[null,"Prowl Benachrichtigungen senden?"],"Prowl Message Title":[null,"Prowl Nachrichtentitel"],"Global Prowl API key(s)":[null,"Globale Prowl-API-Key(s)"],"Prowl API(s) listed here, separated by commas if applicable, will<br> receive notifications for <b>all</b> shows. Your Prowl API key is available at:":[null,"Aufgeführte Prowl-API(s), ggf. getrennt durch Kommas, werden<br> Benachrichtigungen für <b>alle</b> Serien erhalten. Ihr Prowl-API-Key ist abrufbar unter:"],"(this field may be blank except when testing.)":[null,"(Dieses Feld kann außer zu Testzwecken leerbleiben.)"],"Show notification list":[null,"Benachrichtigungen anzeigen"],"-- Select a Show --":[null,"-- Serie auswählen --"],"Configure per-show notifications here by entering Prowl API key(s), separated by commas, '\n 'after selecting a show in the drop-down box. Be sure to activate the 'Save for this show' '\n 'button below after each entry.":[null,"Konfigurieren Sie hier Benachrichtigungen einzelner Serien, indem Sie Prowl API-Key getrennt durch Kommas eingeben, \n nachdem eine Serie im Dropdown-Feld ausgewählt wurde. Achten Sie darauf den nachstehenden Button \"Sichern für diese Serie\"' \n nach jeder Eingabe zu betätigen."],"Save for this show":[null,"Für diese Serie sichern"],"Prowl priority":[null,"Prowl-Priorität"],"Very Low":[null,"Sehr niedrig"],"Moderate":[null,"Moderat"],"Normal":[null,"Normal"],"High":[null,"Hoch"],"Emergency":[null,"Notfall"],"priority of Prowl messages from SickRage.":[null,"priorität der Prowl Nachrichten von SickRage."],"Libnotify":[null,"Libnotify"],"The standard desktop notification API for Linux/*nix systems. This notifier will only function if the pynotify module is installed (Ubuntu/Debian package <a href=\"apt:python-notify\">python-notify</a>).":[null,"Die Standard-Desktop-Benachrichtigungs-API für Linux / * nix-Systeme. Dieses Benachrichtigungssystem wird nur dann funktionieren, wenn das pynotify-Modul installiert ist (Ubuntu/Debian Paket <a href=\"apt:python-notify\">python-notify</a>)."],"send Libnotify notifications?":[null,"Libnotify Benachrichtigungen senden?"],"Pushover":[null,"Pushover"],"Pushover makes it easy to send real-time notifications to your Android and iOS devices.":[null,"Pushover ermöglicht Echtzeit-Benachrichtigungen an Android und iOS-Geräte."],"send Pushover notifications?":[null,"Pushover Benachrichtigungen senden?"],"Pushover key":[null,"Pushover Schlüssel"],"user key of your Pushover account":[null,"Benutzerschlüssel Ihres Pushover-Kontos"],"Pushover API key":[null,"Pushover API-Key"],"click here":[null,"Hier klicken"]," to create a Pushover API key":[null," um einen Pushover API key zu erstellen"],"Pushover devices":[null,"Pushover-Geräte"],"comma separated list of pushover devices you want to send notifications to":[null,"durch Kommas getrennte Liste von Pushover-Geräten, an die Benachrichtigungen geschickt werden sollen"],"Pushover notification sound":[null,"Pushover-Benachrichtigungston"],"Bike":[null,"Fahrrad"],"Bugle":[null,"Signalhorn"],"Cash Register":[null,"Registrierkasse"],"Classical":[null,"Klassisch"],"Cosmic":[null,"Kosmisch"],"Falling":[null,"Fallen"],"Gamelan":[null,"Gamelan"],"Incoming":[null,"Eingehend"],"Intermission":[null,"Pause"],"Magic":[null,"Magie"],"Mechanical":[null,"Mechanisch"],"Piano Bar":[null,"Pianobar"],"Siren":[null,"Sirene"],"Space Alarm":[null,"Weltraum-Alarm"],"Tug Boat":[null,"Schlepper"],"Alien Alarm (long)":[null,"Alien-Alarm (lang)"],"Climb (long)":[null,"Klettern (lang)"],"Persistent (long)":[null,"Persistent (lang)"],"Pushover Echo (long)":[null,"Pushover-Echo (lang)"],"Up Down (long)":[null,"Hoch-Runter (lang)"],"None (silent)":[null,"Keiner (stumm)"],"Device specific":[null,"Gerätespezifisch"],"choose notification sound to use":[null,"Benachrichtigungston auswählen"],"Pushover priority":[null,"Pushover-Priorität"],"Choose priority to use":[null,"Priorität auswählen"],"Boxcar 2":[null,"Boxcar 2"],"Read your messages where and when you want them!":[null,"Lesen Sie Ihre Nachrichten wo und wann Sie wollen!"],"send Boxcar notifications?":[null,"Boxcar Benachrichtigungen senden?"],"Boxcar2 access token":[null,"Boxcar2 Zugangs-Token"],"access token for your Boxcar account.":[null,"Zugangs-Token für Ihr Boxcar-Konto."],"NMA":[null,"NMA"],"Notify My Android":[null,"Notify My Android"],"Notify My Android is a Prowl-like Android App and API that offers an easy way to send notifications from your application directly to your Android device.":[null,"\"Notify My Android\" ist eine Android- App und API ähnlich Prowl, die eine einfache Möglichkeit zum Senden von Benachrichtigungen aus Ihrer Anwendung direkt auf Ihr Android-Gerät bietet."],"send NMA notifications?":[null,"NMA Benachrichtigungen senden?"],"NMA API key":[null,"NMA API-Key"],"(multiple keys must be separated by commas, up to a maximum of 5)":[null,"(mehrere Schlüssel müssen durch Kommas getrennt werden, bis zu einem Maximum von 5)"],"NMA priority":[null,"NMA-Priorität"],"priority of NMA messages from SickRage.":[null,"Priorität der NMA-Nachrichten von SickRage."],"Pushalot":[null,"Pushalot"],"Pushalot is a platform for receiving custom push notifications to connected devices running Windows Phone or Windows 8.":[null,"Pushalot ist eine Plattform für den Empfang von benutzerdefinierten Push-Benachrichtigungen an angeschlossene Geräte unter Windows Phone oder Windows 8."],"send Pushalot notifications ?":[null,"Pushalot Benachrichtigungen senden?"],"Pushalot authorization token":[null,"Pushalot Autorisierungstoken"],"authorization token of your Pushalot account.":[null,"Autorisierungstoken Ihres Pushalot-Kontos."],"Pushbullet":[null,"Pushbullet"],"Pushbullet is a platform for receiving custom push notifications to connected devices running Android/iOS and desktop browsers such as Chrome, Firefox or Opera.":[null,"Pushbullet ist eine Plattform für den Empfang von benutzerdefinierten Push-Benachrichtigungen an angeschlossene Geräte mit Android/iOS und Desktop-Browsern wie Chrome, Firefox oder Opera."],"send Pushbullet notifications?":[null,"Pushbullet Benachrichtigungen senden?"],"Pushbullet API key":[null,"Pushbullet API-Key"],"API key of your Pushbullet account":[null,"API-Key Ihres Pushbullet-Kontos"],"Pushbullet devices":[null,"Pushbullet Geräte"],"Update device list":[null,"Geräteliste aktualisieren"],"Pushbullet channels":[null,"Pushbullet Kanäle"],"Free Mobile":[null,"Free Mobile"],"Free Mobile is a famous French cellular network provider.<br> It provides to their customer a free SMS API.":[null,"Free Mobile ist ein bekannter französischer Mobilfunknetz-Anbieter. <br>Er bietet seinen Kunden eine kostenlose SMS-API an."],"send SMS notifications?":[null,"SMS Benachrichtigungen senden?"],"send a SMS when a download starts?":[null,"SMS senden, wenn ein Download startet?"],"send a SMS when a download finishes?":[null,"SMS senden, wenn ein Download abgeschlossen ist?"],"send a SMS when subtitles are downloaded?":[null,"SMS senden, wenn Untertitel heruntergeladen werden?"],"Free Mobile customer ID":[null,"Free Mobile Kundennummer"],"it's your Free Mobile customer ID (8 digits)":[null,"Free Mobile-Kundennummer (8-stellig)"],"Free Mobile API key":[null,"Free Mobile-API-Key"],"find your API key in your customer portal.":[null,"Finden Sie Ihren API-Key in Ihrem Kundenportal."],"Click below to test your settings.":[null,"Klicken Sie unten, um Ihre Einstellungen zu testen."],"Telegram":[null,"Telegram"],"Telegram is a cloud-based instant messaging service.":[null,"Telegram ist ein Cloud-basierter Chat-Dienst."],"send Telegram notifications?":[null,"Telegram Benachrichtigungen senden?"],"send a message when a download starts?":[null,"Benachrichtigung senden, sobald ein Download startet?"],"send a message when a download finishes?":[null,"Benachrichtigung senden, sobald ein Download abgeschlossen ist?"],"send a message when subtitles are downloaded?":[null,"Benachrichtigung senden, wenn Untertitel heruntergeladen werden?"],"User/group ID":[null,"Benutzer/Gruppen-ID"],"contact @myidbot on Telegram to get an ID":[null,"@myidbot auf Telegram kontaktieren, um eine ID zu erhalten"],"Bot API token":[null,"Bot API Token"],"contact @BotFather on Telegram to set up one":[null,"@BotFather auf Telegram kontaktieren, um eins einzurichten"],"Join":[null,"Join"],"Join all of your devices together!":[null,"Schließen Sie all Ihre Geräte zusammen!"],"send Join notifications?":[null,"Join Benachrichtigungen senden?"],"Device ID":[null,"Geräte-ID"],"per device specific id":[null,"Gerätespezifische ID"]," to create a Join API key":[null," um einen Join API Key zu erstellen"],"Twilio":[null,"Twilio"],"Twilio is a webservice API that allows you to communicate directly with a mobile number. This notifier will send a text directly to your mobile device.":[null,"Twilio ist ein Webservice-API, das direkt mit einer Handynummer kommunizieren kann. Dieses Benachrichtigungs-Modul sendet SMS direkt auf Ihr Mobilgerät."],"should SickRage text your mobile device?":[null,"sollte SickRage Ihrem Mobilgerät SMS senden?"],"Twilio Account SID":[null,"Twilio Konto-SID"],"account SID of your Twilio account.":[null,"Konto-SID Ihres Twilio-Kontos."],"Twilio Auth Token":[null,"Twilio-Authentifizierungs-Token"],"Twilio Phone SID":[null,"Twilio Telefon-SID"],"phone SID that you would like to send the sms from":[null,"Telefon-SID, von der SMS gesendet werden sollen"],"Your phone number":[null,"Ihre Telefonnummer"],"phone number that will receive the sms. Please use the format +1-###-###-####":[null,"Rufnummer für den Empfang der SMS. Bitte verwenden Sie das Format + 1-###-###-###"],"Twitter":[null,"Twitter"],"A social networking and microblogging service, enabling its users to send and read other users' messages called tweets.":[null,"Ein sozialer Netzwerk- und Microblogging-Dienst, der Anwendern ermöglicht Nachrichten, sogenannte \"Tweets\", zu senden und die anderer Benutzer zu lesen."],"should SickRage post tweets on Twitter?":[null,"Soll SickRage Tweets auf Twitter veröffentlichen?"],"you may want to use a secondary account.":[null,"Für den Fall, dass Sie ein sekundäres Konto verwenden möchten."],"send direct message":[null,"direkte Nachricht senden"],"send a notification via Direct Message, not via status update":[null,"Senden einer Benachrichtigung via Direct Message, nicht über Statusupdate"],"send DM to":[null,"DM senden an"],"Twitter account to send Direct Messages to (must follow you)":[null,"Twitter-Konto, um direkte Nachrichten zu senden (Empfänger müssen Ihnen folgen)"],"Step One":[null,"Schritt eins"],"Request Authorization":[null,"Autorisierung einholen"],"Click the \"Request Authorization\" button.<br> This will open a new page containing an auth key.<br> <b>note:</b> if nothing happens check your popup blocker.":[null,"Klicken Sie auf \"Autorisierungsanfrage\". <br>Das öffnet eine neue Seite, die einen Authentifizierungsschlüssel enthält. <br><b>Hinweis:</b> wenn nichts passiert, überprüfen Sie Ihren Pop-up-Blocker."],"Step Two":[null,"Schritt zwei"],"Enter the key Twitter gave you below, and click \"Verify Key\".":[null,"Geben Sie Ihren Twitter-Schlüssel unten ein, und klicken Sie auf \"Schlüssel überprüfen\"."],"Trakt":[null,"Trakt"],"Trakt helps keep a record of what TV shows and movies you are watching. Based on your favorites, Trakt recommends additional shows and movies you'll enjoy!":[null,"Trakt dokumentiert Ihre TV-Serien und Filme. Basierend auf Ihren Favoriten, empfiehlt Trakt zusätzliche Serien und Filme nach Ihrem Geschmack!"],"send Trakt.tv notifications?":[null,"Trakt.tv Benachrichtigungen senden?"],"username of your Trakt account.":[null,"Benutzername Ihres Trakt Kontos."],"Trakt PIN":[null,"Trakt PIN"],"Get Trakt PIN":[null,"Trakt PIN erhalten"],"PIN code to authorize SickRage to access Trakt on your behalf.":[null,"PIN-Code um SickRage in Ihrem Namen Zugriff auf Trakt zu autorisieren."],"API Timeout":[null,"API-Timeout"],"seconds to wait for Trakt API to respond. (Use 0 to wait forever)":[null,"Wartezeit in Sekunden auf eine Antwort der Trakt-API. (Verwenden Sie 0, um keine Frist zu setzen)"],"Default indexer":[null,"Standardindexer"],"Sync libraries":[null,"Bibliotheken synchronisieren"],"sync your SickRage show library with your trakt show library.":[null,"Synchronisieren Sie Ihre SickRage-Serien-Bibliothek mit der von Trakt."],"Remove Episodes From Collection":[null,"Episoden aus der Sammlung entfernen"],"remove an episode from your Trakt Collection if it is not in your SickRage Library.":[null,"Eine Folge aus Ihrer Trakt-Sammlung entfernen, wenn sie sich nicht in Ihrer SickRage-Bibliothek befindet."],"Sync watchlist":[null,"Watchlist synchronisieren"],"sync your SickRage show watchlist with your trakt show watchlist (either Show and Episode).":[null,"Serien-Watchlists zwischen SickRage und Trakt synchronisieren (sowohl Serie als auch Folge)."],"episode will be added on watch list when wanted or snatched and will be removed when downloaded ":[null,"Folge wird der Watchlist sofern benötigt oder online ermittelt hinzugefügt und entfernt sobald heruntergeladen "],"Watchlist add method":[null,"Watchlist Hinzufügemodus"],"Skip All":[null,"Alles überspringen"],"Download Pilot Only":[null,"Nur Pilotfolge herunterladen"],"Get whole show":[null,"Komplette Serie holen"],"method in which to download episodes for new shows.":[null,"Methode, nach der Folgen für neue Serien heruntergeladen werden."],"Remove episode":[null,"Folge entfernen"],"remove an episode from your watchlist after it is downloaded.":[null,"Entfernen Sie Folgen aus Ihrer Watchlist, nachdem sie heruntergeladen wurden."],"Remove series":[null,"Serie entfernen"],"remove the whole series from your watchlist after any download.":[null,"Entfernen Sie die gesamte Serie aus Ihrer Watchlist nach jedem Download."],"Remove watched show":[null,"Gesehene Serie entfernen"],"remove the show from sickrage if it's ended and completely watched":[null,"Entfernen Sie die Serie aus Sickrage, wenn sie beendet ist und vollständig gesehen wurde"],"Start paused":[null,"Angehalten starten"],"shows grabbed from your trakt watchlist start paused.":[null,"Serien aus Ihrer Trakt-Watchlist starten pausiert."],"Trakt blackList name":[null,"Name der Trakt Blacklist"],"name (slug) of list on Trakt for blacklisting show on 'Add Trending Show' & 'Add Recommended Shows' pages":[null,"Name (slug) einer Trakt Liste, um eine Serie auf den Seiten \"Add Trending Show\" & \"Add Recommended Shows\" auf die Blacklist zu setzen"],"Email":[null,"E-Mail"],"Allows configuration of email notifications on a per show basis.":[null,"Ermöglicht die Konfiguration von E-Mail-Benachrichtigungen pro einzelner Serie."],"send email notifications?":[null,"E-Mail Benachrichtigungen senden?"],"SMTP host":[null,"SMTP-Server"],"hostname of your SMTP email server.":[null,"Hostname des SMTP E-Mail-Servers."],"SMTP port":[null,"SMTP-Port"],"port number used to connect to your SMTP host.":[null,"SMTP-Host Portnummer."],"SMTP from":[null,"SMTP von"],"sender email address, some hosts require a real address.":[null,"E-Mail-Adresse des Absenders, einige Hosts erfordern eine echte Adresse."],"Use TLS":[null,"TLS verwenden"],"check to use TLS encryption.":[null,"Auswählen, um TLS-Verschlüsselung zu verwenden."],"SMTP user":[null,"SMTP-Benutzer"],"(optional) your SMTP server username.":[null,"(optional) Ihr SMTP Benutzername."],"SMTP password":[null,"SMTP Passwort"],"(optional) your SMTP server password.":[null,"(optional) Ihr SMTP-Server-Passwort."],"Global email list":[null,"Globale E-Mail-Liste"],"email addresses listed here, separated by commas if applicable, will<br> receive notifications for <b>all</b> shows.":[null,"Die hier aufgeführten, ggf. durch Komma getrennten E-Mail-Adressen, <br>erhalten Benachrichtigungen für <b>alle</b> Serien."],"(This field may be blank except when testing.)":[null,"(Dieses Feld kann außer zu Testzwecken leerbleiben.)"],"Email Subject":[null,"E-Mail Betreff"],"use a custom subject for some privacy protection?":[null,"Verwenden eines benutzerdefinierten Betreffs zu Datenschutzzwecken?"],"(leave blank for the default SickRage subject)":[null,"(freilassen für den Standard SickRage-Betreff)"],"configure per-show notifications here by entering email address(es), separated by commas,":[null,"Konfigurieren Sie hier Benachrichtigungen einzelner Serien, indem Sie E-Mail-Adresse(n) durch Kommas getrennt eingeben,"],"after selecting a show in the drop-down box. Be sure to activate the 'Save for this show'":[null,"nach der Auswahl einer Serie im Dropdown-Feld. Achten Sie darauf 'Für diese Serie sichern' zu aktivieren"],"button below after each entry.":[null,"Nach jedem Eintrag Button betätigen."],"Slack":[null,"Slack"],"Slack brings all your communication together in one place. It's real-time messaging, archiving and search for modern teams.":[null,"Slack vereint all deine Kommunikation an einem Ort. Es ist Echtzeit-Kommunikation, Archivierung und Suche für moderne Teams."],"should SickRage post messages on Slack?":[null,"Soll SickRage Nachrichten auf Slack veröffentlichen?"],"Slack Incoming Webhook":[null,"Slack eingehender Webhook"],"Discord":[null,"Discord"],"All-in-one voice and text chat for gamers that's free, secure, and works on both your desktop and phone.":[null,"Allzweck Sprach- und Textchat für Spieler, es ist kostenlos, sicher und funktioniert auf Ihrem Desktop und Handy."],"Should SickRage post messages on Discord?":[null,"Soll SickRage Nachrichten auf Discord veröffentlichen?"],"Discord Incoming Webhook":[null,"Discord eingehender Webhook"],"Create webhook under channel settings.":[null,"Webhook erstellen unter Kanal Einstellungen."],"Discord Bot Name":[null,"Discord Bot Name"],"Blank will use webhook default Name.":[null,"Leerzeichen wird Webhook Standard Namen verwenden."],"Discord Avatar URL":[null,"Discord Avatar URL"],"Blank will use webhook default Avatar.":[null,"Leerzeichen wird Webhook Standard Avatar verwenden."],"Discord TTS":[null,"Discord TTS"],"Send notifications using text-to-speech":[null,"Senden von Benachrichtigungen mit Sprachausgabe"],"Post-Processing":[null,"Nachbearbeitung"],"Episode Naming":[null,"Umbenennung"],"Metadata":[null,"Metadaten"],"Settings that dictate how SickRage should process completed downloads.":[null,"Einstellungen, die festlegen, wie SickRage abgeschlossene Downloads verarbeiten soll."],"enable the automatic post processor to scan and process any files in your Post Processing Dir":[null,"Aktivieren der automatischen Nachbearbeitung zum Einlesen und Verarbeiten der Dateien aus Ihrem <i>Nachbearbeitungs-Verzeichnis"],"do not use if you use an external Post Processing script":[null,"Nicht verwenden, wenn ein externes Nachbearbeitungs-Skript im Einsatz ist"],"Post Processing Dir":[null,"Verzeichnis für die Nachbearbeitung"],"the folder where your download client puts the completed TV downloads.":[null,"Ordner, in den Ihr Download-Client abgeschlossene TV-Downloads herunterlädt."],"please use seperate downloading and completed folders in your download client if possible.":[null,"Wenn möglich bitte separate Ordner für eingehende und abgeschlossene Downloads in Ihrem Download-Client verwenden."],"Processing Method":[null,"Verarbeitungsmethode"],"what method should be used to put files into the library?":[null,"Welche Methode sollte verwendet werden, um Dateien in die Bibliothek aufzunehmen?"],"if you keep seeding torrents after they finish, please avoid the 'move' processing method to prevent errors.":[null,"Sofern Torrents nach Abschluss fortgesetztem \"Seeding\" zur Verfügung stehen sollen,\nvermeiden Sie bitte den \"Verschiebe-Prozess\" um Fehler zu vermeiden."],"Auto Post-Processing Frequency":[null,"Automatischer Nachbearbeitungs-Takt"],"time in minutes to check for new files to auto post-process (min 10)":[null,"Zeit in Minuten, um auf neue Dateien für die automatische Nachbearbeitung zu prüfen (10 min)"],"Postpone post processing":[null,"Nachbearbeitung zurückstellen"],"wait to process a folder if sync files are present.":[null,"Mit dem Bearbeiten eines Ordners warten, sofern zu synchronisierende Dateien vorhanden sind."],"Sync File Extensions":[null,"Datei-Erweiterungen synchronisieren"],"comma seperated list of extensions or filename globs SickRage ignores when Post Processing":[null,"durch Kommas getrennte Liste von Erweiterungen oder Dateinamen, die Sickrage bei der Nachbearbeitung ignorieren soll"],"Rename Episodes":[null,"Folgen umbenennen"],"rename episode using the Episode Naming settings?":[null,"Folgen entsprechend der Namenskonventionen umbenennen?"],"Create missing show directories":[null,"Anlegen fehlender Serienverzeichnisse"],"create missing show directories when they get deleted":[null,"Fehlende Serienverzeichnisse erstellen, wenn sie gelöscht wurden"],"Add shows without directory":[null,"Serien ohne Verzeichnis hinzufügen"],"add shows without creating a directory (not recommended)":[null,"Serien hinzufügen ohne ein Verzeichnis anzulegen (nicht empfohlen)"],"Move associated files":[null,"Zugehörige Dateien verschieben"],"move associated (srt/srr/sfv/etc) files while post processing?":[null,"verschiebe zugehörige (srt/srr/sfv/etc) Dateien während der Nachbearbeitung?"],"Rename .nfo file":[null,".nfo-Datei umbenennen"],"rename the original .nfo file to .nfo-orig to avoid conflicts?":[null,"Ursprüngliche .nfo Datei in .nfo-orig umbenennen, um Konflikte zu vermeiden?"],"Associated file extensions":[null,"Zugeordnete Dateierweiterungen"],"comma separated list of associated file extensions SickRage should keep while post processing.":[null,"durch Komma getrennte Liste zugeordneter Dateierweiterungen, die SickRage während der Nachbearbeitung behalten sollte."],"leaving it empty means no associated files will be post processed":[null,"sofern freigelassen, werden keine zugeordneten Dateien nachbearbeitet"],"Delete non associated files":[null,"Nicht zugeordnete Dateien löschen"],"delete non associated files while post processing?":[null,"löschen der nicht zugeordneten Dateien während der Nachbearbeitung?"],"Change File Date":[null,"Dateidatum ändern"],"set last modified filedate to the date that the episode aired?":[null,"Zuletzt geändertes Dateidatum auf das der Erstausstrahlung setzen?"],"some systems may ignore this feature.":[null,"Einige Systeme ignorieren diese Funktion."],"Timezone for File Date":[null,"Zeitzone für Dateidatum"],"local":[null,"lokal"],"network":[null,"Sender"],"what timezone should be used to change File Date?":[null,"Welche Zeitzone soll verwendet werden, um das Dateidatum zu ändern?"],"Unpack":[null,"Entpacken"],"What to do with archived releases found in your <i>TV Download Dir</i>?":[null,"Was tun mit archivierten Versionen, welche im <i>TV-Download-Verzeichnis</i> gefunden wurden?"],"Ignore (do not process contents)":[null,"Ignorieren (Inhalt nicht verarbeiten)"],"Unpack (process contents)":[null,"Entpacken (verarbeite Inhalte)"],"Treat as video (process archive as-is)":[null,"Behandele als Video (verarbeite Archive wie bekannt)"],"'Unpack' only works with RAR archives":[null,"'Entpacken' funktioniert nur mit RAR-Archiven"],"Windows":[null,"Windows"],"WinRar is required on windows":[null,"WinRar ist unter Windows erforderlich."],"Unpack Directory":[null,"Verzeichnis entpacken"],"Choose a path to unpack files, leave blank to unpack in download dir":[null,"Wähle einen Pfad zum Entpacken von Dateien, freilassen, um im Download-Verzeichnis zu entpacken"],"Unrar Location":[null,"Unrar Standort"],"add the path to unrar if it is not in the system path":[null,"Pfad eines alternativen Unrar-Tools hinzufügen, sofern nicht im Systempfad vorhanden"],"Alternate Unrar Tool":[null,"Alternatives Unrar-Tool"],"add the path to an alternate unrar tool if it is not in the system path":[null,"Pfad eines alternativen Unrar-Tools hinzufügen, sofern nicht im Systempfad vorhanden"],"Delete RAR contents":[null,"RAR-Inhalte löschen"],"delete content of RAR files, even if Process Method not set to move?":[null,"Inhalt von RAR-Dateien auch ohne Verschiebe-Modus löschen?"],"only working with RAR archive":[null,"Funktioniert nur mit RAR-Archiven"],"Don't delete empty folders":[null,"Leere Ordner nicht löschen"],"leave empty folders when Post Processing?":[null,"Leere Ordner bei der Nachbearbeitung behalten?"],"can be overridden using manual Post Processing":[null,"Kann mit manueller Nachbearbeitung überschrieben werden"],"Follow symbolic-links":[null,"Folge Softlinks"],"follow down symbolic links in download directory?":[null,"folge Softlinks im Download-Verzeichnis?"],"<b>EXPERTS ONLY.</b><br>Enable only if you know what <b>circular symbolic links</b> are,<br>and can <b>verify that you have none</b>.":[null,"<b>NUR FÜR EXPERTEN.</b> <br>Nur aktivieren, wenn Sie wissen, was <b>zirkuläre symbolische Verknüpfungen</b> sind <br>und Sie <b>sicherstellen können, dass Sie keine haben</b>."],"Use icacls":[null,"icacls verwenden"],"Windows only":[null,"Nur für Windows"],"sets video permissions after using the move method in post processing":[null,"Definiert Video-Berechtigungen nach Verwendung des Verschiebe-Modus in der Nachbearbeitung"],"Extra Scripts":[null,"Extra-Skripte"],"see":[null,"Siehe"],"for script arguments description and usage.":[null,"für die Beschreibung und Verwendung von Skript-Argumenten."],"How SickRage will name and sort your episodes.":[null,"Wie SickRage Ihre Folgen umbenennen und sortieren wird."],"Name Pattern":[null,"Namenskonventionen"],"Toggle Naming Legend":[null,"Namenslegende umschalten"],"don't forget to add quality pattern. Otherwise after post-processing the episode will have UNKNOWN quality":[null,"Vergessen Sie nicht Qualitäts-Konventionen hinzuzufügen. Ansonsten haben die Folgen nach der Nachbearbeitung UNBEKANNTE Qualität"],"Meaning":[null,"Bedeutung"],"Pattern":[null,"Schema"],"Result":[null,"Ergebnis"],"Use lower case if you want lower case names (eg. %sn, %e.n, %q_n etc)":[null,"Kleinbuchstaben verwenden, falls Kleinschreibung im Namen gewünscht wird (z.B. %sn, %e.n, % Q_n etc.)"],"Show Name":[null,"Serienname"],"Show.Name":[null,"Serie.Name"],"Show_Name":[null,"Serie_Name"],"Season Number":[null,"Staffelnummer"],"XEM Season Number":[null,"XEM Staffelnummer"],"Episode Number":[null,"Folgennummer"],"XEM Episode Number":[null,"XEM Folgennummer"],"Episode Name":[null,"Folge Name"],"Episode.Name":[null,"Folge.Name"],"Episode_Name":[null,"Folge_Name"],"Air Date":[null,"Sendetermin"],"Post-Processing Date":[null,"Nachbearbeitungsdatum"],"Quality":[null,"Qualität"],"Scene Quality":[null,"Szene-Qualität"],"Release Name":[null,"Release-Name"],"SickRage' is used in place of RLSGROUP if it could not be properly detected":[null,"SickRage' wird anstelle von RLSGROUP verwendet, sofern nicht ordnungsgemäß erkannt"],"Release Group":[null,"Release-Gruppe"],"If episode is proper/repack add 'proper' to name.":[null,"Sofern die Folge teil einer korrigierten/Repack-Version ist, \"korrigiert\" dem Namen anhängen."],"Release Type":[null,"Release-Typ"],"Multi-Episode Style":[null,"Multi-Folge-Stil"],"Single-EP Sample":[null,"Einzelfolge-Beispiel"],"Multi-EP sample":[null,"Multifolge-Beispiel"],"Strip Show Year":[null,"Serienjahr entfernen"],"remove the TV show's year when renaming the file?":[null,"Beim Umbenennen der Datei TV-Serien-Jahr entfernen?"],"only applies to shows that have year inside parentheses":[null,"Gilt nur für Serien, die das Jahr in Klammern haben"],"Custom Air-By-Date":[null,"Benutzerdefiniertes Air-by-Date"],"name air-by-date shows differently than regular shows?":[null,"Air-by-Date-Serien anders als reguläre Serien benennen?"],"Toggle ABD Naming Legend":[null,"ABD Namenslegende umschalten"],"Regular Air Date":[null,"Planmäßiger Sendetermin"],"Year":[null,"Jahr"],"Month":[null,"Monat"],"Day":[null,"Tag"],"Multi-EP style is ignored":[null,"Multi-EP-Stil wird ignoriert"],"Custom Sports":[null,"Benutzerdefinierter Sport"],"name sports shows differently than regular shows?":[null,"Sport-Serien anders als reguläre Serien benennen?"],"Toggle Sports Naming Legend":[null,"Sport Namenslegende umschalten"],"Sports Air Date":[null,"Sport Ausstrahlungsdatum"],"Custom Anime":[null,"Benutzerdefinierte Anime"],"name anime shows differently than regular shows?":[null,"Anime-Serien anders als reguläre Serien benennen?"],"Toggle Anime Naming Legend":[null,"Anime Namenslegende umschalten"],">XEM Season Number":[null,"> XEM Staffelnummer"],"Single-EP Anime Sample":[null,"Einzelfolge Anime-Beispiel"],"Multi-EP Anime sample":[null,"Multifolge Anime-Beispiel"],"Add Absolute Number":[null,"Absolute Zahl hinzufügen"],"add the absolute number to the season/episode format?":[null,"Absolute Zahl dem Staffel/Folge-Format hinzufügen?"],"only applies to anime. (eg. S15E45 - 310 vs S15E45)":[null,"gilt nur für Anime. (z.B. S15E45 - 310 statt S15E45)"],"Only Absolute Number":[null,"Nur absolute Zahl"],"replace season/episode format with absolute number":[null,"Staffel/Folge-Format mit absoluter Zahl ersetzen"],"only applies to anime.":[null,"gilt nur für Anime."],"No Absolute Number":[null,"Keine absolute Zahl"],"don't include the absolute number":[null,"Absolute Zahl nicht einschliessen"],"The data associated to the data. These are files associated to a TV show in the form of images and text that, when supported, will enhance the viewing experience.":[null,"Mit den Serien gekoppelte Daten. Dies sind Dateien, die mit einer TV-Serie in Form von Bildern und Text verknüpft sind und, sofern unterstützt, das Fernseherlebnis verbessern."],"Metadata Type":[null,"Metadatentyp"],"toggle metadata options that you wish to be created":[null,"Metadaten-Optionen umschalten, die erstellt werden sollen"],"multiple targets may be used":[null,"mehrere Ziele können verwendet werden"],"Select Metadata":[null,"Metadaten auswählen"],"Provider Priorities":[null,"Anbieter-Priorität"],"Provider Options":[null,"Anbietereinstellungen"],"Configure Custom Newznab Providers":[null,"Benutzerdefinierte Newznab-Anbieter konfigurieren"],"Configure Custom Torrent Providers":[null,"Benutzerdefinierte Torrent-Anbieter konfigurieren"],"Check off and drag the providers into the order you want them to be used.":[null,"Anbieter abhaken und in die Reihenfolge ziehen, in der sie benutzt werden sollen."],"At least one provider is required but two are recommended.":[null,"Mindestens ein Anbieter ist erforderlich, jedoch zwei werden empfohlen."],"Torrent providers can be toggled in ":[null,"Torrent-Anbieter können umgeschaltet werden in "],"Provider does not support backlog searches at this time.":[null,"Anbieter unterstützt aktuell keine Rückstandssuche."],"Provider is <b>NOT WORKING</b>.":[null,"Anbieter <b>FUNKTIONIERT NICHT</b>."],"Configure individual provider settings here.":[null,"Einzelne Anbieter-Einstellungen konfigurieren."],"Check with provider's website on how to obtain an API key if needed.":[null,"Wenden Sie sich an die Website des Anbieters um einen API-Key zu erwerben."],"Configure provider":[null,"Anbieter konfigurieren"],"no providers available to configure.":[null,"Kein Anbieter für die Konfiguration vorhanden."],"URL":[null,"URL"],"Enable daily searches":[null,"Tägliche Suche aktivieren"],"enable provider to perform daily searches.":[null,"Anbieter aktivieren für tägliche Suchen."],"Enable backlog searches":[null,"Rückstandssuche aktivieren"],"enable provider to perform backlog searches.":[null,"Anbieter für Rückstandssuchen aktivieren."],"Season search mode":[null,"Staffel-Suchmodus"],"when searching for complete seasons you can choose to have it look for season packs only, or choose to have it build a complete season from just single episodes.":[null,"Bei der Suche nach kompletten Staffeln können Sie ausschließlich nach sogenannten Staffel-Packs suchen lassen oder festlegen eine komplette Staffel aus einzelnen Folgen zusammenzustellen."],"season packs only.":[null,"Nur Staffel-Packs."],"episodes only.":[null,"Nur Folgen."],"Enable fallback":[null,"Fallback aktivieren"],"when searching for a complete season depending on search mode you may return no results, this helps by restarting the search using the opposite search mode.":[null,"Auf der Suche nach einer kompletten Staffel können je nach Suchmodus Ergebnisse ausbleiben. Diese Option hilft dabei die Suche mit entgegengesetzem Suchmodus neu zu starten."],"Custom URL":[null,"Benutzerdefinierte URL"],"the URL should include the protocol (and port if applicable). Examples: http://192.168.1.4/ or http://localhost:3000/":[null,"Die URL sollte das Protokoll (und ggf. Port) enthalten. Beispiele: http://192.168.1.4/ oder Http://localhost:3000/"],"Api key":[null,"API-Key"],"Digest":[null,"Kurzfassung"],"Hash":[null,"Hash"],"Passkey":[null,"Schlüssel"],"Cookies":[null,"Cookies"],"example: uid=1234;pass=567845439634987<br>note: uid and pass are not your username/password.<br>use DevTools or Firebug to get these values after logging in on your browser.":[null,"Beispiel: uid=1234;pass=567845439634987<br>Hinweis: uid und pass sind nicht Ihr Benutzername/Passwort.<br>Bitte DevTools oder Firebug benutzen, um diese Werte nach dem Login im Browser angezeigt zu bekommen."],"Pin":[null,"Pin"],"Seed ratio":[null,"Seeding-Verhältnis"],"stop transfer when ratio is reached<br>(-1 SickRage default to seed forever, or leave blank for downloader default)":[null,"Transfer stoppen, wenn Verhältnis erreicht ist<br>(-1 SickRage Standard = Seeding unbegrenzt oder für Download-Client-Standard leer lassen)"],"Minimum seeders":[null,"Mindestanzahl Seeder"],"Minimum leechers":[null,"Mindestanzahl Leecher"],"Confirmed download":[null,"Verifizierter Download"],"only download torrents from trusted or verified uploaders ?":[null,"Torrents nur von vertrauenswürdigen oder verifizierten Uploadern herunterladen?"],"Ranked torrents":[null,"Klassifizierte Torrents"],"only download ranked torrents (trusted releases)":[null,"nur klassifizierte Torrents herunterladen (vertrauenswürdige Releases)"],"English torrents":[null,"Englische Torrents"],"only download english torrents, or torrents containing english subtitles":[null,"Nur englische Torrents oder Torrents mit englischen Untertiteln herunterladen"],"For Spanish torrents":[null,"Für spanische Torrents"],"ONLY search on this provider if show info is defined as \"Spanish\" (avoid provider's use for VOS shows)":[null,"NUR auf diesem Anbieter suchen, wenn Serien-Info als \"Spanisch\" definiert ist (vermeidet die Nutzung für VOS Serien)"],"Sorting results by":[null,"Sortierung der Ergebnisse nach"],"Freeleech":[null,"Freeleech"],"only download <b>\"FreeLeech\"</b> torrents.":[null,"nur <b>\"FreeLeech\"</b> Torrents herunterladen."],"Category":[null,"Kategorie"],"select torrent with Italian subtitle":[null,"Torrent mit italienischen Untertitel auswählen"],"Configure Custom<br>Newznab Providers":[null,"Konfigurieren von benutzerdefinierten <br>Newznab Anbietern"],"Add and setup or remove custom Newznab providers.":[null,"Hinzufügen, einrichten oder entfernen von benutzerdefinierten Newznab-Anbietern."],"Select provider":[null,"Anbieter auswählen"],"-- add new provider --":[null,"--neuen Anbieter hinzufügen--"],"Provider name":[null,"Name des Anbieters"],"Site URL":[null,"Webadresse"],"Newznab search categories":[null,"Newznab-Suchkategorien"],"select your Newznab categories on the left, and click the \"update categories\" button to use them for searching.) <b>don't forget to to save the form!":[null,"wählen Sie Ihre Newznab-Kategorien auf der linken Seite und klicken Sie auf \"Kategorien aktualisieren\", um diese für die Suche zu verwenden.) <b>vergessen Sie nicht das Formular zu speichern!"],"Update Categories":[null,"Kategorien aktualisieren"],"Add":[null,"Hinzufügen"],"Delete":[null,"Löschen"],"Add and setup or remove custom RSS providers.":[null,"Hinzufügen, einrichten und entfernen von benutzerdefinierten RSS-Anbietern."],"RSS URL":[null,"RSS-Url"],"Search element":[null,"Element suchen"],"eg: title":[null,"z.B.: Titel"],"Episode Search":[null,"Episodensuche"],"NZB Search":[null,"NZB-Suche"],"Torrent Search":[null,"Torrent-Suche"],"How to manage searching with":[null,"Verwaltung von Suchen mit"],"Randomize Providers":[null,"Zufällige Anbieter"],"randomize the provider search order instead of going in order of placement":[null,"zufällige Reihenfolge der Anbieter-Suche anstatt in der Reihenfolge ihrer Platzierung"],"Download propers":[null,"Korrigierte Versionen (Propers) herunterladen"],"replace original download with \"Proper\" or \"Repack\" if nuked":[null,"ursprünglichen Download mit \"Proper\" oder \"Repack\" ersetzen, sofern \"genuked\""],"Check propers every":[null,"Auf korrigierte Versionen (Propers) überprüfen alle"],"24 hours":[null,"24 Stunden"],"4 hours":[null,"4 Stunden"],"90 mins":[null,"90 Minuten"],"45 mins":[null,"45 Minuten"],"15 mins":[null,"15 min"],"Backlog search day(s)":[null,"Rückstandssuche Tag(e)"],"number of day(s) that the \"Forced Backlog Search\" will cover (e.g. 7 Days)":[null,"Anzahl der Tage, die eine \"gezwungene Rückstandssuche\" abdeckt (z.B. 7 Tage)"],"Backlog search frequency":[null,"Takt der Rückstandssuche"],"time in minutes between searches (min.":[null,"Zeit in Minuten zwischen den Suchen (min."],"Daily search frequency":[null,"Takt der täglichen Suche"],"Usenet retention":[null,"Usenet-Speicherung"],"age limit in days for usenet articles to be used (e.g. 500)":[null,"Altersgrenze in Tagen für verwendete Usenet-Artikel (z. B. 500)"],"Ignore words":[null,"Ignorierte Wörter"],"results with one or more word from this list will be ignored<br>separate words with a comma, e.g. \"word1,word2,word3\"":[null,"Ergebnisse mit mindestens einem Wort aus dieser Liste werden ignoriert <br>Bitte Wörter mit Komma trennen, z.B. \"Wort1, Wort2, Wort3\""],"Require words":[null,"Erforderliche Wörter"],"results with no word from this list will be ignored<br>separate words with a comma, e.g. \"word1,word2,word3\"":[null,"Ergebnisse mit keinem einzigen Wort aus dieser Liste werden ignoriert <br>\n Bitte Wörter mit Komma trennen, z.B. \"Wort1, Wort2, Wort3\""],"Trackers list":[null,"Trackerliste"],"trackers that will be added to magnets without trackers<br>separate trackers with a comma, e.g. \"tracker1,tracker2,tracker3\"":[null,"Tracker, die Magneten ohne Tracker hinzugefügt werden<br>\n Bitte mehrere Tracker mit Komma trennen, z.B. \"tracker1, tracker2, tracker3\""],"Ignore language names in subbed results":[null,"Sprachcodes in Ergebnissen mit Untertiteln ignorieren"],"ignore subbed releases based on language names <br>\n Example: \"dk\" will ignore words: dksub, dksubs, dksubbed, dksubed <br>\n separate languages with a comma, e.g. \"lang1,lang2,lang3":[null,"Releases mit Untertiteln nach Sprachcodes ignorieren <br>\n Beispiel: \"dk\" ignoriert folgende Wörter: dksub, dksubs, dksubbed, dksubed <br>\n Bitte Sprachcodes mit einem Komma trennen, z.B. \"lang1, lang2, lang3\""],"Allow high priority":[null,"Erlaube hohe Priorität"],"set downloads of recently aired episodes to high priority":[null,"Downloads von vor kurzem ausgestrahlten Folgen auf hohe Priorität festlegen"],"Use Failed Downloads":[null,"Fehlgeschlagene Downloads"],"use Failed Download Handling?":[null,"Handhabung fehlgeschlagener Downloads verwenden?"],"will only work with snatched/downloaded episodes after enabling this":[null,"Funktioniert nur mit ermittelten/heruntergeladenen Folgen sofern aktiviert"],"Delete Failed":[null,"Fehlgeschlagene löschen"],"delete files left over from a failed download?":[null,"Übrige Dateien eines fehlgeschlagenen Downloads löschen?"],"this only works if Use Failed Downloads is enabled.":[null,"Dies funktioniert nur sofern \"Fehlgeschlagene Downloads\" aktiviert ist."],"How to handle NZB search results.":[null,"Umgang mit NZB-Suchergebnissen."],"Search NZBs":[null,"Suche NZBs"],"enable NZB search providers":[null,"NZB-Suchanbieter aktivieren"],"Send .nzb files to":[null,".nzb Dateien senden zu"],"SABnzbd server URL":[null,"SABnzbd Server URL"],"URL to your SABnzbd server (e.g. http://localhost:8080/)":[null,"URL zu SABnzbd-Server (z.B. localhost8080: /)"],"SABnzbd username":[null,"SABnzbd-Benutzername"],"(blank for none)":[null,"(leer lassen für kein)"],"SABnzbd password":[null,"SABnzbd-Passwort"],"SABnzbd API key":[null,"SABnzbd API-Key"],"locate at... SABnzbd Config -> General -> API Key":[null,"suchen unter... SABnzbd Konfiguration-> Allgemein-> API-Key"],"Use SABnzbd category":[null,"SABnzbd-Kategorie benutzen"],"add downloads to this category (e.g. TV)":[null,"Downloads zu dieser Kategorie (z.B. TV) hinzufügen"],"Use SABnzbd category (backlog episodes)":[null,"SABnzbd-Kategorie verwenden (rückständige Folgen)"],"add downloads of old episodes to this category (e.g. TV)":[null,"Downloads alter Folgen dieser Kategorie (z.B. TV) hinzufügen"],"Use SABnzbd category for anime":[null,"SABnzbd-Kategorie für Anime verwenden"],"add anime downloads to this category (e.g. anime)":[null,"Anime-Downlaods dieser Kategorie hinzufügen (z.B. Anime)"],"Use SABnzbd category for anime (backlog episodes)":[null,"SABnzbd-Kategorie für Anime verwenden (rückständige Folgen)"],"add anime downloads of old episodes to this category (e.g. anime)":[null,"Anime-Downloads alter Folgen dieser Kategorie hinzufügen (z.B. Anime)"],"Use forced priority":[null,"Erzwungene Priorität verwenden"],"enable to change priority from HIGH to FORCED":[null,"Ändern der Priorität von HOCH auf GEZWUNGEN aktivieren"],"Black hole folder location":[null,"\"Black Hole\"-Ordnerspeicherort"],"<b>.nzb</b> files are stored at this location for external software to find and use":[null,"<b>.nzb</b>-Dateien werden hier für externe Software bereitgestellt"],"Connect using HTTPS":[null,"Über HTTPS verbinden"],"enable Secure control in NZBGet and set the correct Secure Port here":[null,"Aktivieren des Secure-Steuerelements in NZBGet und legen Sie hier den richtigen Secure-Port fest"],"NZBget host:port":[null,"NZBget-Host: Port"],"(e.g. localhost:6789)":[null,"(z.B. localhost:6789)"],"NZBget RPC host name and port number (not NZBgetweb!)":[null,"NZBget RPC-host-Namen und die Portnummer (nicht NZBgetweb!)"],"NZBget username":[null,"NZBget-Benutzername"],"locate in nzbget.conf (default:nzbget)":[null,"Suche in nzbget.conf (Standard: nzbget)"],"NZBget password":[null,"NZBget-Passwort"],"locate in nzbget.conf (default:tegbzn6789)":[null,"Suche in nzbget.conf (Standard: tegbzn6789)"],"Use NZBget category":[null,"NZBget-Kategorie benutzen"],"send downloads marked this category (e.g. TV)":[null,"Downloads dieser Kategorie (z.B. TV) anhängen"],"Use NZBget category (backlog episodes)":[null,"NZBget-Kategorie verwenden (rückständige Folgen)"],"send downloads of old episodes marked this category (e.g. TV)":[null,"Downloads alter Folgen dieser Kategorie (z.B. TV) anhängen"],"Use NZBget category for anime":[null,"NZBget-Kategorie für Anime verwenden"],"send anime downloads marked this category (e.g. anime)":[null,"Anime-Downloads dieser Kategorie (z.B. anime) anhängen"],"Use NZBget category for anime (backlog episodes)":[null,"NZBget-Kategorie für Anime verwenden (rückständige Folgen)"],"send anime downloads of old episodes marked this category (e.g. anime)":[null,"Anime-Downloads alter Folgen dieser Kategorie (z.B. anime) anhängen"],"NZBget priority":[null,"NZBget-Priorität"],"Very low":[null,"Sehr niedrig"],"Low":[null,"Niedrig"],"Very high":[null,"Sehr hoch"],"Force":[null,"Erzwingen"],"priority for daily snatches (no backlog)":[null,"Priorität für tägliche Ermittlungen (kein Rückstand)"],"Torrent host:port":[null,"Torrent-Host:Port"],"URL to your Synology DSM (e.g. http://localhost:5000/)":[null,"URL zu Ihrer Synology DS (z.B. http://localhost:5000/)"],"Client username":[null,"Client-Benutzername"],"Client password":[null,"Client-Passwort"],"Downloaded files location":[null,"Speicherort heruntergeladener Dateien"],"where Synology Download Station will save downloaded files (blank for client default)":[null,"Speicherort für Synology Download Station (Freilassen für Standard)"],"the destination has to be a shared folder for Synology DS":[null,"Das Ziel muss ein freigegebener Ordner für Synology DS sein"],"Click below to test":[null,"Test: unten klicken"],"How to handle Torrent search results.":[null,"Umgang mit Torrent-Suchergebnissen."],"Search torrents":[null,"Suche torrents"],"enable torrent search providers":[null,"Torrent-Suchanbieter aktivieren"],"Send .torrent files to":[null,".torrent Dateien senden zu"],"<b>.torrent</b> files are stored at this location for external software to find and use":[null,"<b>.torrent</b>-Dateien werden hier für externe Software bereitgestellt"],"URL to your torrent client (e.g. http://localhost:8000/)":[null,"Torrent-Client-URL (z. B. http://localhost: 8000 /)"],"Torrent RPC URL":[null,"Torrent-RPC-URL"],"the path without leading and trailing slashes (e.g. transmission)":[null,"Pfad ohne führende und nachgestellte Schrägstriche (z.B. transmission)"],"Http Authentication":[null,"Http-Authentifizierung"],"Verify certificate":[null,"Zertifikat prüfen"],"disable if you get \"Deluge: Authentication Error\" in your log":[null,"Deaktivieren, wenn Ihr Protokoll \"Deluge: Authentifizierungsfehler\" ausgibt"],"verify SSL certificates for HTTPS requests":[null,"SSL-Zertifikate für HTTPS-Anforderungen überprüfen"],"Add label to torrent":[null,"Label zu Torrent hinzufügen"],"(blank spaces are not allowed)":[null,"(Leerzeichen sind nicht erlaubt)"],"label plugin must be enabled in Deluge clients":[null,"Label-Plugin muss in Deluge-Clients aktiviert sein"],"for QBitTorrent 3.3.1 and up":[null,"für QBitTorrent 3.3.1 und höher"],"Add label to torrent for anime":[null,"Label zu Anime-Torrent hinzufügen"],"for QBitTorrent 3.3.1 and up ":[null,"für QBitTorrent 3.3.1 und höher"],"where <span id=\"torrent_client\">the torrent client</span> will save downloaded files (blank for client default)":[null,"<p>wohin <span id=\"torrent_client\"> der Torrent-Client</span> heruntergeladene Dateien speichert (freilassen für Client-Standard)"],"the destination has to be a shared folder for Synology DS</span>":[null,"Das Ziel muss ein freigegebener Ordner für Synology DS sein</span>"],"Minimum seeding time":[null,"Minimale Seeding-Zeit"],"time in hours":[null,"Zeit in Stunden"],"(default:'0' passes blank to client and '-1' passes nothing)":[null,"(Standard: '0' übergibt Leerstelle an Client' und '-1' übergibt nichts)"],"Start torrent paused":[null,"Torrent pausiert starten"],"add .torrent to client but do <b style=\"font-weight:900\">not</b> start downloading":[null,".torrent dem Client hinzufügen, jedoch den Download <b style=\"font-weight:900\"> nicht</b> starten"],"Allow high bandwidth":[null,"Hohe Bandbreiten ermöglichen"],"use high bandwidth allocation if priority is high":[null,"hohe Bandbreiten verwenden, wenn Priorität hoch ist"],"Test Connection":[null,"Verbindung testen"],"Windows Shares":[null,"Windows Freigaben"],"Defines your existing windows shares so that we can add them to the browse dialog":[null,"Definiert Ihre Windows Freigaben um diese dem Durchsuchen-Dialog hinzuzufügen"],"Share #{number}":[null,"Freigabe #{number}"],"Share label":[null,"Freigaben-Bezeichnung"],"Hostname or IP":[null,"Hostname oder IP"],"Share path":[null,"Freigabe-Pfad"],"Subtitles Search":[null,"Untertitelsuche"],"Subtitles Plugin":[null,"Untertitel-Plugin"],"Plugin Settings":[null,"Plugin-Einstellungen"],"Settings that dictate how SickRage handles subtitles search results.":[null,"Einstellungen für Ergebnisse der Untertitelsuche"],"Search Subtitles":[null,"Untertitel suchen"],"Subtitle Languages":[null,"Untertitelsprachen"],"Subtitle Directory":[null,"Untertitel-Verzeichnis"],"the directory where SickRage should store your <i>Subtitles</i> files.":[null,"Speicherort für <i>Untertitel</i>-."],"leave empty if you want store subtitle in episode path.":[null,"Freilassen, wenn Untertitel im Pfad der entsprechenden Folge gespeichert werden sollen."],"Subtitle Find Frequency":[null,"Untertitel-Suchtakt"],"time in hours between scans (default: 1)":[null,"Zeit in Stunden zwischen den Scans (Standard: 1)"],"Include Specials":[null,"Serien-Specials einbeziehen"],"include the show's specials when searching for subtitles?":[null,"Serien-Specials einbeziehen, wenn nach Untertiteln gesucht wird?"],"Perfect matches":[null,"Perfekte Treffer"],"only download subtitles that match: release group, video codec, audio codec and resolution":[null,"Untertitel nur bei Übereinstimmung mit folgenden Kriterien herunterladen: Release-Gruppen, Video-Codec, Audio-Codec und Auflösung"],"if disabled you may get out of sync subtitles":[null,"Sofern deaktiviert sind asynchrone Untertitel möglich"],"Subtitles History":[null,"Untertitel Verlauf"],"log downloaded Subtitle on History page?":[null,"Heruntergeladene Untertitel in Verlauf anzeigen?"],"Subtitles Multi-Language":[null,"Mehrsprachige Untertitel"],"append language codes to subtitle filenames?":[null,"Sprachcodes an Untertiteldateinamen anhängen?"],"this option is required if you use multiple subtitle languages":[null,"Diese Option ist erforderlich, wenn mehrere Untertitelsprachen verwendet werden."],"Delete unwanted subtitles":[null,"Unerwünschte Untertitel löschen"],"enable to delete unwanted subtitle languages bundled with release":[null,"Aktivieren, um unerwünschte Untertitelsprachen aus einem Release-Bundle zu löschen"],"Embedded Subtitles":[null,"Eingebettete Untertitel"],"ignore subtitles embedded inside video file?":[null,"Eingebettete Untertitel ignorieren?"],"this will ignore <u>all</u> embedded subtitles for every video file!":[null,"Dies wird <u>alle</u> eingebetteten Untertitel für jede Videodatei ignorieren!"],"Hearing Impaired Subtitles":[null,"Untertitel für Hörgeschädigte"],"download hearing impaired style subtitles?":[null,"Herunterladen von Untertiteln für Hörgeschädigte?"],"See":[null,"Siehe"],"for a script arguments description.":[null,"für die Beschreibung von Skript-Argumenten."],"Additional scripts separated by <b>|</b>.":[null,"Weitere Skripte durch <b>|</b> getrennt."],"Scripts are called after each episode has searched and downloaded subtitles.":[null,"Skripte werden aufgerufen, nachdem jede Folge gesucht und Untertitel heruntergeladen wurden."],"For any scripted languages, include the interpreter executable before the script. See the following example":[null,"Bitte geben Sie für jede Skriptsprache den dazugehörigen Interpreter vor dem Skript an. Im folgenden Beispiel zu sehen"],"For Windows:":[null,"Für Windows:"],"For Linux / OS X:":[null,"Für Linux / OS X:"],"Subtitle Providers":[null,"Untertitel-Anbieter"],"Check off and drag the plugins into the order you want them to be used.":[null,"Plugins abhaken und in die Reihenfolge ziehen, in der sie verwendet werden sollen."],"At least one plugin is required.":[null,"Mindestens ein Plugin ist erforderlich."]," Web-scraping plugin":[null," Web-Scraper-Plugin"],"Provider Settings":[null,"Anbietereinstellungen"],"Set user and password for each provider":[null,"Legen Sie Benutzername und Passwort für jeden Anbieter an"],"User Name":[null,"Benutzername"],"Change Show":[null,"Serie ändern"],"Prev Show":[null,"Vorherige Sendung"],"Next Show":[null,"Nächste Sendung"],"Jump to Season":[null,"Springe zu Staffel"],"Specials":[null,"Specials"],"Poster for":[null,"Poster für"],"Stars":[null,"Sterne"],"minutes":[null,"Minuten"],"View other popular {genre} shows on trakt.tv.":[null,"Andere beliebte {genre} Serien auf trakt.tv anzeigen."],"View other popular {imdbgenre} shows on IMDB.":[null,"Andere beliebte {imdbgenre} Serien auf IMDB anzeigen."],"Allowed":[null,"Zugelassen"],"Preferred":[null,"Bevorzugt"],"Originally Airs":[null,"Ursprünglicher Ausstrahlungstermin"],"Show Status":[null,"Serienstatus"],"Default EP Status":[null,"Folgenstatus"],"Location":[null,"Ort"],"Missing":[null,"Fehlend"],"Scene Name":[null,"Szene-Name"],"Required Words":[null,"Erforderliche Wörter"],"Ignored Words":[null,"Ignorierte Wörter"],"Size":[null,"Größe"],"Info Language":[null,"Info-Sprache"],"Subtitles SR Metadata":[null,"Untertitel SR Metadaten"],"Season Folders":[null,"Staffelordner"],"Paused":[null,"Pausiert"],"Air-by-Date":[null,"Air-by-Date"],"Sports":[null,"Sport"],"DVD Order":[null,"DVD Reihenfolge"],"Scene Numbering":[null,"Szene-Nummerierung"],"Select Filtered Episodes":[null,"Gefilterte Folgen auswählen"],"Clear All":[null,"Alles löschen"],"Change selected episodes to":[null,"Ausgewählte Folgen ändern zu"],"Select Columns":[null,"Spalten auswählen"],"NFO":[null,"NFO"],"TBN":[null,"TBN"],"Episode":[null,"Folge"],"Absolute":[null,"Absolut"],"Scene":[null,"Szene"],"Scene Absolute":[null,"Szene absolut"],"File Name":[null,"Dateiname"],"Airdate":[null,"Erstausstrahlung"],"Download":[null,"Download"],"Change the value here if scene numbering differs from the indexer episode numbering":[null,"Ändern Sie diesen Wert, wenn sich Szene-Nummerierung und Indexer-Folgen-Nummerierung unterscheiden"],"Change the value here if scene absolute numbering differs from the indexer absolute numbering":[null,"Ändern Sie diesen Wert, wenn sich absolute Szene-Nummerierung und absolute Indexer-Folgennummerierung unterscheiden"],"Manual Search":[null,"Manuelle Suche"],"Do you want to mark this episode as failed?":[null,"Möchten Sie diese Folge als fehlgeschlagen kennzeichnen?"],"The episode release name will be added to the failed history, preventing it to be downloaded again.":[null,"Der Folgen-Release-Name wird zur gescheiterten Verlaufsliste hinzugefügt um zu verhindern, dass sie erneut heruntergeladen wird."],"Do you want to include the current episode quality in the search?":[null,"Möchten Sie die aktuelle Qualität der Folge in die Suche einbeziehen?"],"Choosing No will ignore any releases with the same episode quality as the one currently downloaded/snatched.":[null,"\"Nein\" ignoriert alle Versionen mit der gleichen Qualität wie die derzeit heruntergeladene/ermittelte."],"Download subtitle":[null,"Untertitel herunterladen"],"Do you want to re-download the subtitle for this language?":[null,"Untertitel für diese Sprache erneut herunterladen?"],"It will overwrite your current subtitle":[null,"Bereits vorhandene Untertitel werden überschrieben"],"Format":[null,"Format"],"Advanced":[null,"Erweitert"],"Main Settings":[null,"Haupteinstellungen"],"Show Location":[null,"Serien-Speicherort"],"Preferred Quality":[null,"Bevorzugte Qualität"],"Default Episode Status":[null,"Standardstatus Folge"],"this will set the status for future episodes.":[null,"Hier wird der Status für zukünftige Folgen festgelegt."],"this only applies to episode filenames and the contents of metadata files.":[null,"Dies gilt nur für Folgen-Dateinamen und den Inhalt der Metadaten-Dateien."],"search for subtitles":[null,"Suche nach Untertiteln"],"Use SR Metdata":[null,"SR Metadaten verwenden"],"use SickRage metadata when searching for subtitle, this will override the autodiscovered metadata":[null,"verwende SickRage Metadaten bei der Suche nach Untertiteln, dies wird die automatisch ermittelten Metadaten überschreiben"],"pause this show (SickRage will not download episodes)":[null,"Pausieren Sie diese Serie (SickRage wird keine Folgen herunterladen)"],"Format Settings":[null,"Formateinstellungen"],"Air by date":[null,"nach Ausstrahlungsdatum"],"check if the show is released as Show.03.02.2010 rather than Show.S02E03.":[null,"Festlegen, ob die Serien als \"Serienname.03.02.2010\" anstatt \"Serienname.S02E03\" erscheinen soll."],"in case of an air date conflict between regular and special episodes, the later will be ignored.":[null,"Im Falle eines Konflikts bezüglich des Ausstrahlungstermins zwischen regulären und speziellen Folgen werden Letztere ignoriert."],"check if the show is Anime and episodes are released as Show.265 rather than Show.S02E03":[null,"Überprüfen, ob die Serie ein Anime ist und Folgen als \"Serienname.265\" anstatt \"Serienname.S02E03\" erscheinen soll"],"check if the show is a sporting or MMA event released as Show.03.02.2010 rather than Show.S02E03":[null,"Überprüfen, ob die Serie ein Sport- oder MMA-Event ist und als \"Serienname.03.02.2010\" anstatt \"Serienname.S02E03\" erscheinen soll"],"Season folders":[null,"Staffelordner"],"group episodes by season folder (uncheck to store in a single folder)":[null,"Folgen nach Staffelordnern gruppieren (deaktivieren, um sie in einem einzigen Ordner zu speichern)"],"search by scene numbering (uncheck to search by indexer numbering)":[null,"Suche nach Szene-Nummerierung (deaktivieren, um nach Indexer-Nummerierung zu suchen)"],"use the DVD order instead of the air order":[null,"DVD-Reihenfolge statt Ausstrahlungsreihenfolge verwenden"],"a \"Force Full Update\" is necessary, and if you have existing episodes you need to sort them manually.":[null,"Eine \"erzwungene vollständige Aktualisierung\" ist notwendig. Sofern bereits Folgen vorhanden sind, müssen diese manuell sortiert werden."],"comma-separated <i>e.g. \"word1,word2,word3</i>\"":[null,"durch Komma getrennt <i>z.B. \"Wort1, Wort2, Wort3\"</i>"],"search results with one or more words from this list will be ignored.":[null,"Suchergebnisse mit einem oder mehreren Wörtern aus dieser Liste werden ignoriert."],"e.g. \"word1,word2,word3\"":[null,"z.B. \"Wort1,Wort2,Wort3\""],"search results with no words from this list will be ignored.":[null,"Suchergebnisse ohne Wörter aus dieser Liste werden ignoriert."],"Scene Exception":[null,"Szene-Ausnahme"],"this will affect episode search on NZB and torrent providers.":[null,"Dies wirkt sich auf die Episodensuche für NZB- und Torrent-Anbieter aus."],"this list appends to the original show name.":[null,"Diese Liste wird dem ursprünglichen Seriennamen angehängt."],"WARNING logs":[null,"Warnungsprotokoll"],"ERROR logs":[null,"Fehler-Protokoll"],"There are no events to display.":[null,"Keine Ereignisse vorhanden."],"Limit":[null,"Anzahl"],"Layout":[null,"Layout"],"HistoryLayout":[null,"Verlaufs-Layout"],"Compact":[null,"Kompakt"],"Detailed":[null,"Detailliert"],"Time":[null,"Uhrzeit"],"Provider":[null,"Anbieter"],"Missing Provider":[null,"Fehlender Anbieter"],"missing provider":[null,"fehlender Anbieter"],"Directory":[null,"Verzeichnis"],"Show Name (tvshow.nfo)":[null,"Serienname (tvshow.nfo)"],"Indexer":[null,"Indexer"],"Enter the folder containing the episode":[null,"Geben Sie den Ordner an, der die Folge enthält"],"Process Method to be used":[null,"Bearbeitungsmethode auswählen"],"Copy":[null,"Kopieren"],"Move":[null,"Verschieben"],"Hard Link":[null,"Hardlink"],"Symbolic Link":[null,"Softlink"],"Symbolic Link Reversed":[null,"Softlink (Gegenrichtung)"],"Force already Post Processed Dir/Files":[null,"Erzwinge bereits verarbeitete Elemente"],"Mark Dir/Files as priority download":[null,"Behandle Verzeichnisse und Dateien als priorisierten Download"],"(Check it to replace the file even if it exists at higher quality)":[null,"(Aktivieren um die Datei zu ersetzen, selbst wenn eine höhere Qualität bereits vorhanden ist)"],"Delete files and folders":[null,"Dateien und Verzeichnisse löschen"],"(Check it to delete files and folders like auto processing)":[null,"(Aktivieren, um Dateien und Ordnern wie bei der automatischen Verarbeitung zu löschen)"],"Don't use processing queue":[null,"Keine Verarbeitungswarteschlange verwenden"],"(If checked this will return the result of the process here, but may be slow!)":[null,"(Sofern markiert, gibt dies Ergebnisse des Prozesses zurück, kann aber langsam sein!)"],"Mark download as failed":[null,"Download als fehlgeschlagen kennzeichnen"],"Process":[null,"Verarbeiten"],"Download subtitles for this show?":[null,"Untertitel für diese Serie herunterladen?"],"use SickRage metadata when searching for subtitle, <br />this will override the autodiscovered metadata":[null,"verwende SickRage Metadaten bei der Suche nach Untertiteln, <br />dies überschreibt die automatisch ermittelten Metadaten"],"Status for previously aired episodes":[null,"Status bereits ausgestrahlter Folgen"],"Status for all future episodes":[null,"Status aller zukünftiger Folgen"],"Group episodes by season folder?":[null,"Episoden nach Staffelordnern gruppieren?"],"Is this show an Anime?":[null,"Ist diese Serie ein Anime?"],"Is this show scene numbered?":[null,"Ist diese Serie durchnummeriert?"],"Save Defaults":[null,"Standardwerte speichern"],"Use current values as the defaults":[null,"Aktuelle Werte als Standard setzen"],"<p>Select your preferred fansub groups from the <b>Available Groups</b> and add them to the <b>Whitelist</b>. Add groups to the <b>Blacklist</b> to ignore them.</p>\n <p>The <b>Whitelist</b> is checked <i>before</i> the <b>Blacklist</b>.</p>\n <p>Groups are shown as <b>Name</b> | <b>Rating</b> | <b>Number of subbed episodes</b>.</p>\n <p>You may also add any fansub group not listed to either list manually.</p>\n <p>When doing this please note that you can only use groups listed on anidb for this anime.\n <br>If a group is not listed on anidb but subbed this anime, please correct anidb's data.</p>":[null,"<p>Wählen Sie Ihre bevorzugte Fansub-Gruppen aus den <b>Verfügbaren Gruppen</b> und fügen Sie diese der <b>Whitelist</b> hinzu. Fügen Sie Gruppen der <b>Blacklist</b> hinzu werden diese ignoriert.</p> \n <p>die <b>Whitelist</b> wird zeitlich <i>vor</i> der <b>Blacklist</b> überprüft.</p> \n <p>Gruppen werden mit <b>Name</b> | <b>Bewertung</b> | <b>Anzahl der Folgen mit Untertitel</b> angezeigt.</p> \n <p>Sie können jegliche nicht aufgeführten Fansub-Gruppen der Liste manuell hinzufügen.</p> \n <p>Bitte beachten Sie dabei, dass Sie nur auf Anidb aufgeführte Gruppen für dieses Anime verwenden können.\n <br>wenn eine Gruppe nicht auf Anidb aufgeführt ist, aber dieses Anime mit Untertiteln versehen hat, korrigieren Sie bitte die Anidb-Daten.</p>"],"Whitelist":[null,"Whitelist"],"Available Groups":[null,"Verfügbare Gruppen"],"Add to Whitelist":[null,"Zur Whitelist hinzufügen"],"Add to Blacklist":[null,"Zur Blacklist hinzufügen"],"Blacklist":[null,"Blacklist"],"Custom Group":[null,"Benutzerdefinierte Gruppe"],"Allowed Quality:":[null,"Erlaubte Qualität:"],"Preferred Quality:":[null,"Bevorzugte Qualität:"],"Filter Show Name":[null,"Serienname filtern"],"Root":[null,"Stammverzeichnis"],"All":[null,"Alle"],"Clear Filter(s)":[null,"Filter entfernen"],"Poster":[null,"Poster"],"Small Poster":[null,"Kleines Poster"],"Banner":[null,"Banner"],"Simple":[null,"Einfach"],"Next Episode":[null,"Nächste Folge"],"Progress":[null,"Fortschritt"],"Direction":[null,"Richtung"],"Ascending":[null,"Aufsteigend"],"Descending":[null,"Absteigend"],"Poster Size":[null,"Postergröße"],"Continuing":[null,"Läuft"],"Ended":[null,"Beendet"],"Total":[null,"Gesamt"],"Invalid date":[null,"Ungültiges Datum"],"No Network":[null,"Kein Sender"],"Next Ep":[null,"Nächste Folge"],"Prev Ep":[null,"Vorherige Folge"],"Show":[null,"Serie"],"Downloads":[null,"Downloads"],"Active":[null,"Aktiv"],"loading":[null,"lade"],"<p><b><u>Preferred</u></b> qualities will replace those in <b><u>allowed</u></b>, even if they are lower.</p>":[null,"<p><b><u>Bevorzugte</u></b> Qualitäten ersetzen diejenigen in <b><u>erlaubt</u></b>, auch wenn sie niedriger sind.</p>"],"New":[null,"Neu"],"Set as Default":[null,"Als Standard festlegen"],"Remember me":[null,"Merken"],"Edit Selected":[null,"Auswahl bearbeiten"],"Subtitle":[null,"Untertitel"],"Default Ep Status":[null,"Folgenstatus"],"Update":[null,"Aktualisieren"],"Rescan":[null,"Refresh"],"Rename":[null,"Umbenennen"],"Search Subtitle":[null,"Untertitel suchen"],"Force Metadata Regen":[null,"Erzwinge neu generierte Metadaten"],"Snatched (Allowed)":[null,"Ermittelt (Erlaubt)"],"Jump to Show":[null,"Zur Serie springen"],"Force Backlog":[null,"Rückstandssuche erzwingen"],"Manage episodes with status":[null,"Verwalten von Folgen mit Status"],"Manage":[null,"Verwalten"],"None of your episodes have status":[null,"Keine Ihrer Folgen hat Status"],"Shows containing":[null,"Sendungen mit"],"episodes":[null,"Folgen"],"Set checked shows/episodes to":[null,"Ausgewählte Serien/Folgen setzen auf"],"Go":[null,"Los"],"Select all":[null,"Alle auswählen"],"Clear all":[null,"Alles leeren"],"Release":[null,"Erscheinungsdatum"],"Backlog Search":[null,"Rückstandssuche"],"Not in progress":[null,"Nicht im Gange"],"In Progress":[null,"Im Gange"],"Daily Search":[null,"Tägliche Suche"],"Find Propers Search":[null,"Suche korrigierter Versionen (Propers)"],"Propers search disabled":[null,"Suche nach korrigierten Versionen (Propers) deaktiviert"],"Subtitle Search":[null,"Untertitelsuche"],"Subtitle search disabled":[null,"Untertitelsuche deaktiviert"],"Search Queue":[null,"Such-Warteschlange"],"pending items":[null,"ausstehende Elemente"],"Daily":[null,"Täglich"],"Manual":[null,"Manuell"],"Changing any settings marked with (<span class=\"separator\">*</span>) will force a refresh of the selected shows.":[null,"Änderungen von Einstellungen, die mit (<span class=\"separator\"> *</span>) gekennzeichnet sind, wird eine komplette Aktualisierung der ausgewählten Serien erzwingen."],"Selected Shows":[null,"Ausgewählte Serien"],"Root Directories":[null,"Stammverzeichnisse"],"Current":[null,"Aktuell"],"Keep":[null,"Behalten"],"Custom":[null,"Benutzerdefininert"],"Group episodes by season folder (set to \"No\" to store in a single folder).":[null,"Folgen nach Staffelordnern gruppieren (bei \"Nein\" in einem einzigen Ordner speichern)."],"Pause these shows (SickRage will not download episodes).":[null,"Pausieren Sie diese Serien (SickRage wird keine Folgen herunterladen)."],"This will set the status for future episodes.":[null,"Hier wird der Status für zukünftige Folgen festgelegt."],"Search by scene numbering (set to \"No\" to search by indexer numbering).":[null,"Suche nach Szene-Nummerierung (bei \"Nein\" Suche nach Indexer-Nummerierung)."],"Set if these shows are Anime and episodes are released as Show.265 rather than Show.S02E03":[null,"Festlegen, ob diese Serien Animes sind und Folgen als \"Serienname.265\" und nicht \"Serienname.S02E03\" erscheinen"],"Set if these shows are sporting or MMA events released as Show.03.02.2010 rather than Show.S02E03.":[null,"Festlegen, ob diese Serien Sport- oder MMA-Events sind und als \"Serienname.03.02.2010\" anstatt \"Serienname.S02E03\" erscheinen sollen."],"In case of an air date conflict between regular and special episodes, the later will be ignored.":[null,"Im Falle eines Konflikts bezüglich des Ausstrahlungstermins zwischen regulären und speziellen Folgen werden Letztere ignoriert."],"Set if these shows are released as Show.03.02.2010 rather than Show.S02E03.":[null,"Festlegen, ob diese Serien als \"Serienname.03.02.2010\" anstatt \"Serienname.S02E03\" erscheinen sollen."],"Search for subtitles.":[null,"Suche nach Untertiteln."],"All of your episodes have {subsLanguage} subtitles.":[null,"All Ihre Folgen haben {subsLanguage} Untertitel."],"Manage episodes without":[null,"Verwalten von Folgen ohne"],"Episodes without {subsLanguage} subtitles.":[null,"Folgen ohne {subsLanguage} Untertitel."],"Episodes without {subtitleLanguage} (undefined) subtitles.":[null,"Folgen ohne {subtitleLanguage} Untertitel (undefiniert)."],"Download missed subtitles for selected episodes":[null,"Download fehlender Untertitel für ausgewählte Folgen"],"Performing Restart":[null,"Neustart wird durchgeführt"],"Waiting for SickRage to shut down":[null,"SickRage wird heruntergefahren"],"Waiting for SickRage to start again":[null,"SickRage wird neu gestartet"],"Loading the default page":[null,"Standardseite wird geladen"],"Error: The restart has timed out, perhaps something prevented SickRage from starting again?":[null,"Fehler: Der Neustart ist abgelaufen, vielleicht hindert SickRage etwas daran?"],"Key":[null,"Legende"],"Missed":[null,"Entgangen"],"Today":[null,"Heute"],"Soon":[null,"Bald"],"Later":[null,"Später"],"Subscribe":[null,"Abonnieren"],"Date":[null,"Datum"],"View Paused":[null,"Pausierte"],"Hidden":[null,"Ausblenden"],"Shown":[null,"Anzeigen"],"Calendar":[null,"Kalender"],"List":[null,"Liste"],"Ends":[null,"Endet"],"Next Ep Name":[null,"Nächster Folgenname"],"Run time":[null,"Laufzeit"],"Indexers":[null,"Indexer"],"No shows for this day":[null,"Keine Serien an diesem Tag"],"Airs":[null,"Erstausstrahlung"],"Plot":[null,"Inhalt"],"Show Update":[null,"Serien Update"],"Version Check":[null,"Versionsprüfung"],"Proper Finder":[null,"Proper-Suche"],"Post Process":[null,"Nachbearbeitung"],"Subtitles Finder":[null,"Untertitel-Sucher"],"Scheduler":[null,"Zeitplaner"],"Alive":[null,"Reagiert"],"Start Time":[null,"Startzeit"],"Cycle Time":[null,"Durchlaufzeit"],"Next Run":[null,"Nächster Durchlauf"],"Last Run":[null,"Letzter Durchlauf"],"Silent":[null,"Stumm"],"True":[null,"Wahr"],"N/A":[null,"nicht verfügbar"],"Show id":[null,"Serien ID"],"Show name":[null,"Serienname"],"Priority":[null,"Priorität"],"Added":[null,"Hinzugefügt"],"Queue type":[null,"Warteschlangentyp"],"LOW":[null,"NIEDRIG"],"NORMAL":[null,"NORMAL"],"HIGH":[null,"HOCH"],"Disk Space":[null,"Speicherplatz"],"Free space":[null,"Freier Speicherplatz"],"TV Download Directory":[null,"TV Download-Verzeichnis"],"Media Root Directories":[null,"Medien-Stammverzeichnisse"],"Preview of the proposed name changes":[null,"Vorschau der vorgeschlagenen Namensänderungen"],"All Seasons":[null,"Alle Staffeln"],"select all":[null,"alle markieren"],"Rename Selected":[null,"Auswahl umbenennen"],"Cancel Rename":[null,"Umbenennen abbrechen"],"Old Location":[null,"alter Ort"],"New Location":[null,"neuer Ort"],"Trakt API did not return any results, please check your config.":[null,"Trakt-API liefert keine Ergebnisse, bitte überprüfen Sie die Konfiguration."],"votes":[null,"Stimmen"],"Remove Show":[null,"Serie entfernen"],"Level":[null,"Niveau"],"Filter":[null,"Filter"],"All non-absolute folder locations are relative to ":[null,"Alle nicht-absoluten Ordnerspeicherorte sind relativ zu "],"Manual Post-Processing":[null,"Manuelle Nachbearbeitung"],"Episode Status Management":[null,"Folgenstatusverwaltung"],"Update PLEX":[null,"PLEX aktualisieren"],"Update KODI":[null,"KODI aktualisieren"],"Update Emby":[null,"Emby aktualisieren"],"Manage Torrents":[null,"Torrents verwalten"],"Missed Subtitle Management":[null,"Verwaltung fehlender Untertitel"],"Help & Info":[null,"Hilfe & Info"],"Backup & Restore":[null,"Sichern & Wiederherstellen"],"Tools":[null,"Werkzeuge"],"Support SickRage":[null,"Unterstütze SickRage"],"View Errors":[null,"Zeige Fehler"],"View Warnings":[null,"Zeige Warnungen"],"View Log":[null,"Zeige Protokoll"],"Check For Updates":[null,"Nach Updates suchen"],"Restart":[null,"Neustart"],"Shutdown":[null,"Herunterfahren"],"Logout":[null,"Abmelden"],"Server Status":[null,"Serverstatus"],"View overview of snatched episodes":[null,"Übersicht ermittelter Folgen anzeigen"],"Episodes Downloaded":[null,"Heruntergeladene Folgen"],"Memory used":[null,"Speichernutzung"],"Load time":[null,"Ladezeit"],"Branch":[null,"Versionszweig"],"Now":[null,"Jetzt"]}}}} \ No newline at end of file diff --git a/locale/de_DE/LC_MESSAGES/messages.mo b/locale/de_DE/LC_MESSAGES/messages.mo index 2b26a708e44bac38bc55554155360e9266345da8..2554522b739135935c02635fab0e865fc5ed2bf2 100644 Binary files a/locale/de_DE/LC_MESSAGES/messages.mo and b/locale/de_DE/LC_MESSAGES/messages.mo differ diff --git a/locale/de_DE/LC_MESSAGES/messages.po b/locale/de_DE/LC_MESSAGES/messages.po index 659b24bd850dbe9c727ab1fc0c909b87bc5c4956..cc34d41931b1d9d9b1cb6d9e6243dceb3f38ebd4 100644 --- a/locale/de_DE/LC_MESSAGES/messages.po +++ b/locale/de_DE/LC_MESSAGES/messages.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: sickrage\n" "Report-Msgid-Bugs-To: miigotu@gmail.com\n" -"POT-Creation-Date: 2017-03-25 09:28-0700\n" -"PO-Revision-Date: 2017-03-25 12:29-0400\n" +"POT-Creation-Date: 2017-03-28 09:10-0700\n" +"PO-Revision-Date: 2017-03-28 12:12-0400\n" "Last-Translator: miigotu <miigotu@gmail.com>\n" "Language-Team: German\n" "MIME-Version: 1.0\n" @@ -90,7 +90,7 @@ msgid "Biography" msgstr "Biografie" #: gui/slick/views/config_general.mako:78 gui/slick/views/layouts/main.mako:145 -#: sickbeard/__init__.py:79 sickbeard/webserve.py:3807 +#: sickbeard/__init__.py:79 sickbeard/webserve.py:3778 msgid "History" msgstr "Verlauf" @@ -103,7 +103,7 @@ msgid "Western" msgstr "Western" #: gui/slick/views/config_general.mako:79 gui/slick/views/layouts/main.mako:221 -#: sickbeard/__init__.py:80 sickbeard/webserve.py:2385 +#: sickbeard/__init__.py:80 sickbeard/webserve.py:2384 msgid "News" msgstr "Neuigkeiten" @@ -238,6 +238,34 @@ msgstr "Ignoriert" msgid "Subtitled" msgstr "Mit Untertiteln" +#: sickbeard/helpers.py:1887 +msgid "For best results please set the Download Station alias as" +msgstr "Für optimale Ergebnisse setzen Sie bitte den Alias der Download-Station auf" + +#: sickbeard/helpers.py:1888 +msgid "You can check this setting in the Synology DSM" +msgstr "Diese Einstellung kann in der Synology DSM überprüft werden" + +#: sickbeard/helpers.py:1888 sickbeard/helpers.py:1890 +msgid "Control Panel" +msgstr "Systemsteuerung" + +#: sickbeard/helpers.py:1888 +msgid "Application Portal" +msgstr "Anwendungsportal" + +#: sickbeard/helpers.py:1889 +msgid "Make sure you allow DSM to be embedded with iFrames too in" +msgstr "Stellen Sie sicher, dass bei DSM ebenfalls das Einbetten von iFrames erlaubt ist" + +#: sickbeard/helpers.py:1890 +msgid "DSM Settings" +msgstr "DSM-Einstellungen" + +#: sickbeard/helpers.py:1890 +msgid "Security" +msgstr "Sicherheit" + #: sickbeard/logger.py:474 msgid "<No Filter>" msgstr "< kein Filter >" @@ -308,15 +336,15 @@ msgstr "Trakt-Checker" msgid "Event" msgstr "Ereignis" -#: sickbeard/logger.py:491 sickbeard/webserve.py:1339 sickbeard/webserve.py:1342 -#: sickbeard/webserve.py:1520 sickbeard/webserve.py:1529 sickbeard/webserve.py:1717 -#: sickbeard/webserve.py:1728 sickbeard/webserve.py:1751 sickbeard/webserve.py:1764 -#: sickbeard/webserve.py:1769 sickbeard/webserve.py:1785 sickbeard/webserve.py:1790 -#: sickbeard/webserve.py:1854 sickbeard/webserve.py:1857 sickbeard/webserve.py:1863 -#: sickbeard/webserve.py:1866 sickbeard/webserve.py:1873 sickbeard/webserve.py:1876 -#: sickbeard/webserve.py:1899 sickbeard/webserve.py:1997 sickbeard/webserve.py:2002 -#: sickbeard/webserve.py:2007 sickbeard/webserve.py:2036 sickbeard/webserve.py:2040 -#: sickbeard/webserve.py:2045 +#: sickbeard/logger.py:491 sickbeard/webserve.py:1338 sickbeard/webserve.py:1341 +#: sickbeard/webserve.py:1519 sickbeard/webserve.py:1528 sickbeard/webserve.py:1716 +#: sickbeard/webserve.py:1727 sickbeard/webserve.py:1750 sickbeard/webserve.py:1763 +#: sickbeard/webserve.py:1768 sickbeard/webserve.py:1784 sickbeard/webserve.py:1789 +#: sickbeard/webserve.py:1853 sickbeard/webserve.py:1856 sickbeard/webserve.py:1862 +#: sickbeard/webserve.py:1865 sickbeard/webserve.py:1872 sickbeard/webserve.py:1875 +#: sickbeard/webserve.py:1898 sickbeard/webserve.py:1996 sickbeard/webserve.py:2001 +#: sickbeard/webserve.py:2006 sickbeard/webserve.py:2035 sickbeard/webserve.py:2039 +#: sickbeard/webserve.py:2044 msgid "Error" msgstr "Fehler" @@ -333,6 +361,7 @@ msgstr "Thread" msgid "Main" msgstr "Allgemein" +#: gui/slick/js/ajaxEpSearch.js:146 gui/slick/js/ajaxEpSearch.js:147 #: gui/slick/views/inc_home_showList.mako:27 sickbeard/show_queue.py:298 msgid "Loading" msgstr "Wird geladen" @@ -372,867 +401,835 @@ msgstr "Sicherung fehlgeschlagen, Update abgebrochen" msgid "No update needed" msgstr "Keine Aktualisierung erforderlich" -#: sickbeard/webserve.py:170 +#: sickbeard/webserve.py:171 msgid "Mako Error" msgstr "Mako-Fehler" -#: sickbeard/webserve.py:195 +#: sickbeard/webserve.py:196 msgid "Oops" msgstr "Hoppla" -#: sickbeard/webserve.py:197 +#: sickbeard/webserve.py:198 msgid "Wrong API key used" -msgstr "Falscher API-Schlüssel" +msgstr "Falscher API-Key" -#: gui/slick/views/login.mako:34 sickbeard/webserve.py:302 +#: gui/slick/views/login.mako:34 sickbeard/webserve.py:303 msgid "Login" msgstr "Anmelden" -#: sickbeard/webserve.py:406 +#: sickbeard/webserve.py:392 msgid "API Key not generated" msgstr "Kein API Key erzeugt" -#: sickbeard/webserve.py:409 +#: sickbeard/webserve.py:395 msgid "API Builder" msgstr "API-Generator" #: gui/slick/views/config_general.mako:77 gui/slick/views/layouts/main.mako:141 -#: sickbeard/webserve.py:512 +#: sickbeard/webserve.py:498 msgid "Schedule" msgstr "Zeitplan" -#: sickbeard/webserve.py:610 +#: sickbeard/webserve.py:609 msgid "Test 1" msgstr "Test 1" -#: sickbeard/webserve.py:610 +#: sickbeard/webserve.py:609 msgid "This is test number 1" msgstr "Dies ist Test Nummer 1" -#: sickbeard/webserve.py:611 +#: sickbeard/webserve.py:610 msgid "Test 2" msgstr "Test 2" -#: sickbeard/webserve.py:611 +#: sickbeard/webserve.py:610 msgid "This is test number 2" msgstr "Dies ist Test Nummer 2" -#: sickbeard/webserve.py:634 +#: sickbeard/webserve.py:633 msgid "You're using the {branch} branch. Please use 'master' unless specifically asked" msgstr "Sie verwenden den {branch}-Versionszweig. Verwenden Sie bitte 'master', sofern nicht anders spezifiziert" -#: sickbeard/webserve.py:698 sickbeard/webserve.py:703 +#: sickbeard/webserve.py:697 sickbeard/webserve.py:702 msgid "Invalid show parameters" msgstr "Ungültige Serienparameter" -#: sickbeard/webserve.py:710 +#: sickbeard/webserve.py:709 msgid "Invalid parameters" msgstr "Ungültige Parameter" -#: sickbeard/webserve.py:713 sickbeard/webserve.py:1899 +#: sickbeard/webserve.py:712 sickbeard/webserve.py:1898 msgid "Episode couldn't be retrieved" msgstr "Episode konnte nicht abgerufen werden" -#: sickbeard/webserve.py:759 sickbeard/webserve.py:1268 sickbeard/webserve.py:1297 +#: sickbeard/webserve.py:758 sickbeard/webserve.py:1267 sickbeard/webserve.py:1296 msgid "Home" msgstr "Startseite" -#: gui/slick/views/layouts/main.mako:127 sickbeard/webserve.py:759 +#: gui/slick/views/layouts/main.mako:127 sickbeard/webserve.py:758 msgid "Show List" msgstr "Serienliste" -#: sickbeard/webserve.py:807 +#: sickbeard/webserve.py:806 msgid "Error: Unsupported Request. Send jsonp request with 'callback' variable in the query string." msgstr "Fehler: Nicht unterstützter Request. Senden Sie Jsonp Requests mit \"callback\" Variable in der Abfragezeichenfolge." -#: sickbeard/webserve.py:851 +#: sickbeard/webserve.py:850 msgid "Success. Connected and authenticated" msgstr "Erfolg. Verbunden und authentifiziert" -#: sickbeard/webserve.py:853 +#: sickbeard/webserve.py:852 msgid "Authentication failed. SABnzbd expects" msgstr "Authentifizierung fehlgeschlagen. SABnzbd erwartet" -#: sickbeard/webserve.py:853 +#: sickbeard/webserve.py:852 msgid "as authentication method" msgstr "als Authentifizierungsmethode" -#: sickbeard/webserve.py:855 +#: sickbeard/webserve.py:854 msgid "Unable to connect to host" msgstr "Keine Verbindung zum Host" -#: sickbeard/webserve.py:876 +#: sickbeard/webserve.py:875 msgid "SMS sent successfully" msgstr "SMS erfolgreich verschickt" -#: sickbeard/webserve.py:878 +#: sickbeard/webserve.py:877 msgid "Problem sending SMS: {message}" msgstr "Problem beim Senden der SMS: {message}" -#: sickbeard/webserve.py:885 +#: sickbeard/webserve.py:884 msgid "Telegram notification succeeded. Check your Telegram clients to make sure it worked" msgstr "Telegram-Benachrichtigung erfolgreich. Prüfen Sie Ihre Telegram-Clients ob es geklappt hat" -#: sickbeard/webserve.py:887 +#: sickbeard/webserve.py:886 msgid "Error sending Telegram notification: {message}" msgstr "Fehler beim Senden der Telegram-Benachrichtigung: {message}" -#: sickbeard/webserve.py:894 +#: sickbeard/webserve.py:893 msgid "join notification succeeded. Check your join clients to make sure it worked" msgstr "Join-Benachrichtigung erfolgreich. Überprüfen Sie die Join-Clients um sicherzustellen, dass es funktioniert hat" -#: sickbeard/webserve.py:896 +#: sickbeard/webserve.py:895 msgid "Error sending join notification: {message}" msgstr "Fehler beim Senden der Join-Benachrichtigung: {message}" -#: sickbeard/webserve.py:906 +#: sickbeard/webserve.py:905 msgid " with password" msgstr " mit Passwort" -#: sickbeard/webserve.py:908 +#: sickbeard/webserve.py:907 msgid "Registered and Tested growl successfully {growl_host}" msgstr "Growl-Registrierung und Test erfolgreich {growl_host}" -#: sickbeard/webserve.py:910 +#: sickbeard/webserve.py:909 msgid "Registration and Testing of growl failed {growl_host}" msgstr "Growl-Registrierung und Test fehlgeschlagen {growl_host}" -#: sickbeard/webserve.py:917 +#: sickbeard/webserve.py:916 msgid "Test prowl notice sent successfully" msgstr "Prowl-Testbenachrichtigung erfolgreich gesendet" -#: sickbeard/webserve.py:919 +#: sickbeard/webserve.py:918 msgid "Test prowl notice failed" msgstr "Prowl-Testbenachrichtigung fehlgeschlagen" -#: sickbeard/webserve.py:926 +#: sickbeard/webserve.py:925 msgid "Boxcar2 notification succeeded. Check your Boxcar2 clients to make sure it worked" msgstr "Boxcar2-Benachrichtigung erfolgreich gesendet. Prüfen Sie Ihre Clients ob es geklappt hat" -#: sickbeard/webserve.py:928 +#: sickbeard/webserve.py:927 msgid "Error sending Boxcar2 notification" msgstr "Fehler beim Senden der Boxcar2-Benachrichtigung" -#: sickbeard/webserve.py:935 +#: sickbeard/webserve.py:934 msgid "Pushover notification succeeded. Check your Pushover clients to make sure it worked" msgstr "Pushover-Benachrichtigung erfolgreich. Prüfen Sie Ihre Clients ob es geklappt hat" -#: sickbeard/webserve.py:937 +#: sickbeard/webserve.py:936 msgid "Error sending Pushover notification" msgstr "Fehler beim Senden der Pushover-Benachrichtigung" -#: sickbeard/webserve.py:949 +#: sickbeard/webserve.py:948 msgid "Key verification successful" msgstr "Schlüssel-Überprüfung erfolgreich" -#: sickbeard/webserve.py:951 +#: sickbeard/webserve.py:950 msgid "Unable to verify key" msgstr "Schlüssel-Überprüfung nicht möglich" -#: sickbeard/webserve.py:958 +#: sickbeard/webserve.py:957 msgid "Tweet successful, check your twitter to make sure it worked" msgstr "Tweet erfolgreich, prüfen Sie Twitter, ob es gelappt hat" -#: sickbeard/webserve.py:960 +#: sickbeard/webserve.py:959 msgid "Error sending tweet" msgstr "Fehler beim Senden des Tweets" -#: sickbeard/webserve.py:965 +#: sickbeard/webserve.py:964 msgid "Please enter a valid account sid" msgstr "Bitte geben Sie eine gültige Benutzerkonto-SID ein" -#: sickbeard/webserve.py:968 +#: sickbeard/webserve.py:967 msgid "Please enter a valid auth token" msgstr "Bitte geben Sie ein gültiges Autorisierungs-Token ein" -#: sickbeard/webserve.py:971 +#: sickbeard/webserve.py:970 msgid "Please enter a valid phone sid" msgstr "Bitte geben Sie eine gültige Telefon-SID ein" -#: sickbeard/webserve.py:974 +#: sickbeard/webserve.py:973 msgid "Please format the phone number as \"+1-###-###-####\"" msgstr "Telefonnummer bitte in folgendem Format verwenden \"+ 1-###-###-###\"" -#: sickbeard/webserve.py:978 +#: sickbeard/webserve.py:977 msgid "Authorization successful and number ownership verified" msgstr "Autorisierung erfolgreich und Besitz der Nummer bestätigt" -#: sickbeard/webserve.py:980 +#: sickbeard/webserve.py:979 msgid "Error sending sms" msgstr "Fehler beim Versand der SMS" -#: sickbeard/webserve.py:986 +#: sickbeard/webserve.py:985 msgid "Slack message successful" msgstr "Slack Nachricht erfolgreich" -#: sickbeard/webserve.py:988 +#: sickbeard/webserve.py:987 msgid "Slack message failed" msgstr "Slack Nachricht fehlgeschlagen" -#: sickbeard/webserve.py:994 +#: sickbeard/webserve.py:993 msgid "Discord message successful" msgstr "Discord Nachricht erfolgreich" -#: sickbeard/webserve.py:996 +#: sickbeard/webserve.py:995 msgid "Discord message failed" msgstr "Discord Nachricht fehlgeschlagen" -#: sickbeard/webserve.py:1006 +#: sickbeard/webserve.py:1005 msgid "Test KODI notice sent successfully to {kodi_host}" msgstr "KODI-Testbenachrichtigung erfolgreich gesendet an {kodi_host}" -#: sickbeard/webserve.py:1008 +#: sickbeard/webserve.py:1007 msgid "Test KODI notice failed to {kodi_host}" msgstr "KODI-Testbenachrichtigung fehlgeschlagen {kodi_host}" -#: sickbeard/webserve.py:1023 +#: sickbeard/webserve.py:1022 msgid "Successful test notice sent to Plex Home Theater ... {plex_clients}" msgstr "Erfolgreiche Test-Benachrichtigung an Plex Home Theater gesendet ... {plex_clients}" -#: sickbeard/webserve.py:1025 +#: sickbeard/webserve.py:1024 msgid "Test failed for Plex Home Theater ... {plex_clients}" msgstr "Test fehlgeschlagen für Plex Home Theater ... {plex_clients}" -#: sickbeard/webserve.py:1028 +#: sickbeard/webserve.py:1027 msgid "Tested Plex Home Theater(s)" msgstr "Plex Home Theater(s) getestet" -#: sickbeard/webserve.py:1042 +#: sickbeard/webserve.py:1041 msgid "Successful test of Plex Media Server(s) ... {plex_servers}" msgstr "Erfolgreich getestete Plex Media Server ... {plex_servers}" -#: sickbeard/webserve.py:1044 +#: sickbeard/webserve.py:1043 msgid "Test failed, No Plex Media Server host specified" msgstr "Test fehlgeschlagen, kein Plex Media Server Host angegeben" -#: sickbeard/webserve.py:1046 +#: sickbeard/webserve.py:1045 msgid "Test failed for Plex Media Server(s) ... {plex_servers}" msgstr "Test fehlgeschlagen für Plex Media Server ... {plex_servers}" -#: sickbeard/webserve.py:1049 +#: sickbeard/webserve.py:1048 msgid "Tested Plex Media Server host(s)" msgstr "Getestete Plex Media Server Hosts" -#: sickbeard/webserve.py:1057 +#: sickbeard/webserve.py:1056 msgid "Tried sending desktop notification via libnotify" msgstr "Desktop-Benachrichtigung via Libnotify versucht" -#: sickbeard/webserve.py:1066 +#: sickbeard/webserve.py:1065 msgid "Test notice sent successfully to {emby_host}" msgstr "Testbenachrichtigung erfolgreich an {emby_host} gesendet" -#: sickbeard/webserve.py:1068 +#: sickbeard/webserve.py:1067 msgid "Test notice failed to {emby_host}" msgstr "Testbenachrichtigung an {emby_host} fehlgeschlagen" -#: sickbeard/webserve.py:1076 +#: sickbeard/webserve.py:1075 msgid "Successfully started the scan update" msgstr "Scan-Update erfolgreich gestartet" -#: sickbeard/webserve.py:1078 +#: sickbeard/webserve.py:1077 msgid "Test failed to start the scan update" msgstr "Test fehlgeschlagen um das Scan-Update zu starten" -#: sickbeard/webserve.py:1097 +#: sickbeard/webserve.py:1096 msgid "Test notice sent successfully to {nmj2_host}" msgstr "Testbenachrichtigung erfolgreich an {nmj2_host} gesendet" -#: sickbeard/webserve.py:1099 +#: sickbeard/webserve.py:1098 msgid "Test notice failed to {nmj2_host}" msgstr "Testbeneachrichtigung an {nmj2_host} fehlgeschlagen" -#: sickbeard/webserve.py:1119 +#: sickbeard/webserve.py:1118 msgid "Trakt Authorized" msgstr "Trakt autorisiert" -#: sickbeard/webserve.py:1120 +#: sickbeard/webserve.py:1119 msgid "Trakt Not Authorized!" msgstr "Trakt nicht autorisiert!" -#: sickbeard/webserve.py:1184 +#: sickbeard/webserve.py:1183 msgid "Test email sent successfully! Check inbox." msgstr "Test-E-Mail erfolgreich versandt! Bitte Posteingang prüfen." -#: sickbeard/webserve.py:1186 +#: sickbeard/webserve.py:1185 msgid "ERROR: {last_error}" msgstr "Fehler: {last_error}" -#: sickbeard/webserve.py:1193 +#: sickbeard/webserve.py:1192 msgid "Test NMA notice sent successfully" msgstr "Test NMA-Nachricht erfolgreich versandt" -#: sickbeard/webserve.py:1195 +#: sickbeard/webserve.py:1194 msgid "Test NMA notice failed" msgstr "Test-NMA-Benachrichtigung fehlgeschlagen" -#: sickbeard/webserve.py:1202 +#: sickbeard/webserve.py:1201 msgid "Pushalot notification succeeded. Check your Pushalot clients to make sure it worked" msgstr "Pushalot-Benachrichtigung erfolgreich. Prüfen Sie Ihre Pushalot-Clients ob es geklappt hat" -#: sickbeard/webserve.py:1204 +#: sickbeard/webserve.py:1203 msgid "Error sending Pushalot notification" msgstr "Fehler beim Senden der Pushalot-Benachrichtigung" -#: sickbeard/webserve.py:1211 +#: sickbeard/webserve.py:1210 msgid "Pushbullet notification succeeded. Check your device to make sure it worked" msgstr "Pushbullet-Benachrichtigung erfolgreich. Prüfen Sie Ihre Clients ob es geklappt hat" -#: sickbeard/webserve.py:1213 sickbeard/webserve.py:1223 sickbeard/webserve.py:1232 +#: sickbeard/webserve.py:1212 sickbeard/webserve.py:1222 sickbeard/webserve.py:1231 msgid "Error sending Pushbullet notification" msgstr "Fehler beim Senden der Pushbullet-Benachrichtigung" #: gui/slick/views/displayShow.mako:436 gui/slick/views/inc_home_showList.mako:174 -#: gui/slick/views/manage.mako:49 sickbeard/webserve.py:1249 +#: gui/slick/views/manage.mako:49 sickbeard/webserve.py:1248 msgid "Status" msgstr "Status" -#: sickbeard/webserve.py:1268 sickbeard/webserve.py:1297 +#: sickbeard/webserve.py:1267 sickbeard/webserve.py:1296 msgid "Restarting SickRage" msgstr "SickRage wird neu gestartet" -#: sickbeard/webserve.py:1300 +#: sickbeard/webserve.py:1299 msgid "Update Failed" msgstr "Aktualisierung fehlgeschlagen" -#: sickbeard/webserve.py:1301 +#: sickbeard/webserve.py:1300 msgid "Update wasn't successful, not restarting. Check your log for more information." msgstr "Aktualisierung fehlgeschlagen, Neustart verhindert. Die Protokolldatei enthält weitere Informationen." -#: sickbeard/webserve.py:1308 +#: sickbeard/webserve.py:1307 msgid "Checking out branch" msgstr "Versionszweig überprüfen" -#: sickbeard/webserve.py:1311 +#: sickbeard/webserve.py:1310 msgid "Already on branch" msgstr "Bereits auf Versionszweig" -#: sickbeard/webserve.py:1339 +#: sickbeard/webserve.py:1338 msgid "Invalid show ID: {show}" msgstr "Ungültige Serien ID: {show}" -#: sickbeard/webserve.py:1342 sickbeard/webserve.py:1871 sickbeard/webserve.py:2002 -#: sickbeard/webserve.py:2040 +#: sickbeard/webserve.py:1341 sickbeard/webserve.py:1870 sickbeard/webserve.py:2001 +#: sickbeard/webserve.py:2039 msgid "Show not in show list" msgstr "Die Serie ist nicht in der Serienliste" #: gui/slick/views/inc_rootDirs.mako:31 gui/slick/views/manage.mako:38 -#: gui/slick/views/manage_massEdit.mako:74 sickbeard/webserve.py:1358 -#: sickbeard/webserve.py:2027 +#: gui/slick/views/manage_massEdit.mako:74 sickbeard/webserve.py:1357 +#: sickbeard/webserve.py:2026 msgid "Edit" msgstr "Bearbeiten" -#: sickbeard/webserve.py:1368 +#: sickbeard/webserve.py:1367 msgid "This show is in the process of being downloaded - the info below is incomplete." msgstr "Diese Serie wird gerade heruntergeladen - die Info unterhalb ist demnach unvollständig." -#: sickbeard/webserve.py:1371 +#: sickbeard/webserve.py:1370 msgid "The information on this page is in the process of being updated." msgstr "Die Informationen auf dieser Seite werden gerade aktualisiert." -#: sickbeard/webserve.py:1374 +#: sickbeard/webserve.py:1373 msgid "The episodes below are currently being refreshed from disk" msgstr "Die Folgen unterhalb werden gerade von der Festplatte neu eingelesen" -#: sickbeard/webserve.py:1377 +#: sickbeard/webserve.py:1376 msgid "Currently downloading subtitles for this show" msgstr "Untertitel werden gerade für diese Serie heruntergeladen" -#: sickbeard/webserve.py:1380 +#: sickbeard/webserve.py:1379 msgid "This show is queued to be refreshed." msgstr "Diese Serie wurde der Warteschlange hinzugefügt, um neu eingelesen zu werden." -#: sickbeard/webserve.py:1383 +#: sickbeard/webserve.py:1382 msgid "This show is queued and awaiting an update." msgstr "Diese Serie wurde der Warteschlange hinzugefügt und ist im Begriff aktualisiert zu werden." -#: sickbeard/webserve.py:1386 +#: sickbeard/webserve.py:1385 msgid "This show is queued and awaiting subtitles download." msgstr "Diese Serie wurde der Warteschlange hinzugefügt und Untertitel werden in Kürze heruntergeladen." -#: gui/slick/js/core.js:4081 sickbeard/webserve.py:1391 +#: gui/slick/js/core.js:4081 sickbeard/webserve.py:1390 msgid "Resume" msgstr "Fortsetzen" #: gui/slick/js/core.js:4081 gui/slick/views/viewlogs.mako:12 -#: sickbeard/webserve.py:1393 +#: sickbeard/webserve.py:1392 msgid "Pause" msgstr "Pausieren" #: gui/slick/views/editShow.mako:345 gui/slick/views/inc_blackwhitelist.mako:40 #: gui/slick/views/inc_blackwhitelist.mako:85 gui/slick/views/manage.mako:58 -#: gui/slick/views/manage_failedDownloads.mako:43 sickbeard/webserve.py:1395 +#: gui/slick/views/manage_failedDownloads.mako:43 sickbeard/webserve.py:1394 msgid "Remove" msgstr "Entfernen" -#: sickbeard/webserve.py:1396 +#: sickbeard/webserve.py:1395 msgid "Re-scan files" msgstr "Dateien neu einlesen" -#: sickbeard/webserve.py:1397 +#: sickbeard/webserve.py:1396 msgid "Force Full Update" msgstr "Vollständige Aktualisierung erzwingen" -#: sickbeard/webserve.py:1398 +#: sickbeard/webserve.py:1397 msgid "Update show in KODI" msgstr "Serie in KODI aktualisieren" -#: sickbeard/webserve.py:1399 +#: sickbeard/webserve.py:1398 msgid "Update show in Emby" msgstr "Aktualisiere Serie in Emby" -#: sickbeard/webserve.py:1402 +#: sickbeard/webserve.py:1401 msgid "Hide specials" msgstr "Specials ausblenden" -#: sickbeard/webserve.py:1404 +#: sickbeard/webserve.py:1403 msgid "Show specials" msgstr "Specials anzeigen" -#: sickbeard/webserve.py:1406 sickbeard/webserve.py:2030 sickbeard/webserve.py:2031 +#: sickbeard/webserve.py:1405 sickbeard/webserve.py:2029 sickbeard/webserve.py:2030 msgid "Preview Rename" msgstr "Vorschau: Umbenennung" -#: sickbeard/webserve.py:1409 +#: sickbeard/webserve.py:1408 msgid "Download Subtitles" msgstr "Untertitel herunterladen" -#: sickbeard/webserve.py:1498 +#: sickbeard/webserve.py:1497 msgid "No scene exceptions" msgstr "Keine Szene-Ausnahmen" -#: sickbeard/webserve.py:1516 sickbeard/webserve.py:1764 sickbeard/webserve.py:1785 +#: sickbeard/webserve.py:1515 sickbeard/webserve.py:1763 sickbeard/webserve.py:1784 msgid "Invalid show ID" msgstr "Ungültige Serien ID" -#: sickbeard/webserve.py:1525 sickbeard/webserve.py:1769 sickbeard/webserve.py:1790 +#: sickbeard/webserve.py:1524 sickbeard/webserve.py:1768 sickbeard/webserve.py:1789 msgid "Unable to find the specified show" msgstr "Angegebene Serie konnte nicht gefunden werden" -#: sickbeard/webserve.py:1550 +#: sickbeard/webserve.py:1549 msgid "Unable to retreive Fansub Groups from AniDB." msgstr "Es können keine FanSub-Gruppen von AniDB empfangen werden." -#: sickbeard/webserve.py:1559 sickbeard/webserve.py:1561 +#: sickbeard/webserve.py:1558 sickbeard/webserve.py:1560 msgid "Edit Show" msgstr "Serie bearbeiten" -#: sickbeard/webserve.py:1637 sickbeard/webserve.py:1671 +#: sickbeard/webserve.py:1636 sickbeard/webserve.py:1670 msgid "Unable to refresh this show: {error}" msgstr "Aktualisierung dieser Serie nicht möglich: {error}" -#: sickbeard/webserve.py:1663 +#: sickbeard/webserve.py:1662 msgid "New location <tt>{location}</tt> does not exist" msgstr "Neuer Speicherort <tt>{location}</tt> existiert nicht" -#: sickbeard/webserve.py:1688 +#: sickbeard/webserve.py:1687 msgid "Unable to update show: {error}" msgstr "Aktualisierung der Serie nicht möglich: {error}" -#: sickbeard/webserve.py:1695 +#: sickbeard/webserve.py:1694 msgid "Unable to force an update on scene exceptions of the show." msgstr "Aktualiserung der Szene-Ausnahmen konnte für die Serie nicht erzwungen werden." -#: sickbeard/webserve.py:1702 +#: sickbeard/webserve.py:1701 msgid "Unable to force an update on scene numbering of the show." msgstr "Aktualiserung der Szene-Nummerierung konnte für die Serie nicht erzwungen werden." -#: sickbeard/webserve.py:1708 sickbeard/webserve.py:3540 +#: sickbeard/webserve.py:1707 sickbeard/webserve.py:3539 msgid "{num_errors:d} error{plural} while saving changes:" msgstr "{num_errors:d} Fehler beim Speichern der Änderungen:" -#: sickbeard/webserve.py:1719 +#: sickbeard/webserve.py:1718 msgid "{show_name} has been {paused_resumed}" msgstr "{show_name} wurde {paused_resumed}" -#: sickbeard/webserve.py:1719 +#: sickbeard/webserve.py:1718 msgid "resumed" msgstr "fortgesetzt" -#: sickbeard/webserve.py:1719 +#: sickbeard/webserve.py:1718 msgid "paused" msgstr "pausiert" -#: sickbeard/webserve.py:1731 +#: sickbeard/webserve.py:1730 msgid "{show_name} has been {deleted_trashed} {was_deleted}" msgstr "{show_name} wurde {deleted_trashed}{was_deleted}" -#: sickbeard/webserve.py:1733 +#: sickbeard/webserve.py:1732 msgid "deleted" msgstr "gelöscht" -#: sickbeard/webserve.py:1733 +#: sickbeard/webserve.py:1732 msgid "trashed" msgstr "entsorgt" -#: sickbeard/webserve.py:1734 +#: sickbeard/webserve.py:1733 msgid "(media untouched)" msgstr "(unveränderte Medien-Dateien)" -#: sickbeard/webserve.py:1734 +#: sickbeard/webserve.py:1733 msgid "(with all related media)" msgstr "(mit allen zugehörigen Medien)" -#: sickbeard/webserve.py:1755 +#: sickbeard/webserve.py:1754 msgid "Unable to refresh this show." msgstr "Aktualisierung dieser Serie nicht möglich." -#: sickbeard/webserve.py:1775 +#: sickbeard/webserve.py:1774 msgid "Unable to update this show." msgstr "Aktualisierung dieser Serie nicht möglich." -#: sickbeard/webserve.py:1814 +#: sickbeard/webserve.py:1813 msgid "Library update command sent to KODI host(s)): {kodi_hosts}" msgstr "Befehl zur Aktualisierung der Bibliothek an KODI host(s) gesendet: {kodi_hosts}" -#: sickbeard/webserve.py:1816 +#: sickbeard/webserve.py:1815 msgid "Unable to contact one or more KODI host(s)): {kodi_hosts}" msgstr "Nicht in der Lage einen oder mehrere KODI-Hosts zu kontaktieren: {kodi_hosts}" -#: sickbeard/webserve.py:1825 +#: sickbeard/webserve.py:1824 msgid "Library update command sent to Plex Media Server host: {plex_server}" msgstr "Update-Befehl an Plex Media Server Host gesendet: {plex_server}" -#: sickbeard/webserve.py:1828 +#: sickbeard/webserve.py:1827 msgid "Unable to contact Plex Media Server host: {plex_server}" msgstr "Keine Verbindung zu Plex Media Server Host: {plex_server}" -#: sickbeard/webserve.py:1840 +#: sickbeard/webserve.py:1839 msgid "Library update command sent to Emby host: {emby_host}" msgstr "Befehl zur Aktualisierung der Bibliothek an Emby Host gesendet: {emby_host}" -#: sickbeard/webserve.py:1842 +#: sickbeard/webserve.py:1841 msgid "Unable to contact Emby host: {emby_host}" msgstr "Keine Verbindung zu Emby Host:{emby_host}" -#: sickbeard/webserve.py:1852 sickbeard/webserve.py:2036 +#: sickbeard/webserve.py:1851 sickbeard/webserve.py:2035 msgid "You must specify a show and at least one episode" msgstr "Sie müssen mindestens eine Serie und eine Folge angeben" -#: sickbeard/webserve.py:1861 +#: sickbeard/webserve.py:1860 msgid "Invalid status" msgstr "Ungültiger Status" -#: sickbeard/webserve.py:1954 +#: sickbeard/webserve.py:1953 msgid "Backlog was automatically started for the following seasons of <b>{show_name}</b>" msgstr "Rückstandssuche wurde automatisch für die folgenden Staffeln gestartet <b>{show_name}</b>" #: gui/slick/views/displayShow.mako:74 gui/slick/views/displayShow.mako:79 -#: gui/slick/views/displayShow.mako:404 sickbeard/webserve.py:1961 -#: sickbeard/webserve.py:1980 +#: gui/slick/views/displayShow.mako:404 sickbeard/webserve.py:1960 +#: sickbeard/webserve.py:1979 msgid "Season" msgstr "Staffel" -#: sickbeard/webserve.py:1968 +#: sickbeard/webserve.py:1967 msgid "Backlog started" msgstr "Rückstandssuche gestartet" -#: sickbeard/webserve.py:1973 +#: sickbeard/webserve.py:1972 msgid "Retrying Search was automatically started for the following season of <b>{show_name}</b>" msgstr "Erneute Suche wurde automatisch gestartet für die folgende Staffel von <b>{show_name}</b>" -#: sickbeard/webserve.py:1987 +#: sickbeard/webserve.py:1986 msgid "Retry Search started" msgstr "Erneute Suche gestartet" -#: sickbeard/webserve.py:1997 +#: sickbeard/webserve.py:1996 msgid "You must specify a show" msgstr "Sie müssen eine Serie angeben" -#: sickbeard/webserve.py:2007 sickbeard/webserve.py:2045 +#: sickbeard/webserve.py:2006 sickbeard/webserve.py:2044 msgid "Can't rename episodes when the show dir is missing." msgstr "Umbennen von Folgen nicht möglich, wenn Serienverzeichnis fehlt." -#: sickbeard/webserve.py:2212 sickbeard/webserve.py:2233 +#: sickbeard/webserve.py:2211 sickbeard/webserve.py:2232 msgid "New subtitles downloaded: {new_subtitle_languages}" msgstr "Neue Untertitel heruntergeladen: {new_subtitle_languages}" -#: sickbeard/webserve.py:2215 sickbeard/webserve.py:2236 +#: sickbeard/webserve.py:2214 sickbeard/webserve.py:2235 msgid "No subtitles downloaded" msgstr "Keine Untertitel heruntergeladen" #: gui/slick/views/config_general.mako:80 gui/slick/views/layouts/main.mako:222 -#: sickbeard/webserve.py:2363 +#: sickbeard/webserve.py:2362 msgid "IRC" msgstr "IRC" -#: sickbeard/webserve.py:2376 +#: sickbeard/webserve.py:2375 msgid "Could not load news from the repo. [Click here for news.md])({news_url})" msgstr "Konnte keine Neuigkeiten aus dem Repo laden. [Klicken Sie hier für news.md])({news_url})" -#: sickbeard/webserve.py:2383 sickbeard/webserve.py:2401 +#: sickbeard/webserve.py:2382 sickbeard/webserve.py:2400 msgid "The was a problem connecting to github, please refresh and try again" msgstr "Es gab ein Problem beim Verbinden mit Github, bitte aktualisieren Sie die Seite und versuchen Sie es erneut" -#: sickbeard/webserve.py:2398 +#: sickbeard/webserve.py:2397 msgid "Could not load changes from the repo. [Click here for CHANGES.md]({changes_url})" msgstr "Änderungen konnten aus dem Repo nicht geladen werden. [Klicken Sie hier für CHANGES.md] ({changes_url})" -#: gui/slick/views/layouts/main.mako:223 sickbeard/webserve.py:2403 +#: gui/slick/views/layouts/main.mako:223 sickbeard/webserve.py:2402 msgid "Changelog" msgstr "Änderungsprotokoll" -#: gui/slick/views/layouts/main.mako:190 sickbeard/webserve.py:2413 -#: sickbeard/webserve.py:3855 sickbeard/webserve.py:4341 +#: gui/slick/views/layouts/main.mako:190 sickbeard/webserve.py:2412 +#: sickbeard/webserve.py:3826 sickbeard/webserve.py:4312 msgid "Post Processing" msgstr "Nachbearbeitung" -#: gui/slick/views/layouts/main.mako:128 sickbeard/webserve.py:2445 +#: gui/slick/views/layouts/main.mako:128 sickbeard/webserve.py:2444 msgid "Add Shows" msgstr "Serien hinzufügen" -#: sickbeard/webserve.py:2510 +#: sickbeard/webserve.py:2509 msgid "No folders selected." msgstr "Kein Verzeichnis ausgewählt." -#: sickbeard/webserve.py:2632 +#: sickbeard/webserve.py:2631 msgid "New Show" msgstr "Neue Serie" -#: sickbeard/webserve.py:2647 +#: sickbeard/webserve.py:2646 msgid "Trending Shows" msgstr "Serien-Trends" -#: sickbeard/webserve.py:2649 sickbeard/webserve.py:2772 +#: sickbeard/webserve.py:2648 sickbeard/webserve.py:2771 msgid "Popular Shows" msgstr "Beliebte Serien" -#: sickbeard/webserve.py:2651 sickbeard/webserve.py:2665 +#: sickbeard/webserve.py:2650 sickbeard/webserve.py:2664 msgid "Most Anticipated Shows" msgstr "Meisterwartete Serien" -#: sickbeard/webserve.py:2653 +#: sickbeard/webserve.py:2652 msgid "Most Collected Shows" msgstr "Meistgesammelte Serien" -#: sickbeard/webserve.py:2655 +#: sickbeard/webserve.py:2654 msgid "Most Watched Shows" msgstr "Meistgesehene Serien" -#: sickbeard/webserve.py:2657 +#: sickbeard/webserve.py:2656 msgid "Most Played Shows" msgstr "Meistgespielte Serien" -#: sickbeard/webserve.py:2659 +#: sickbeard/webserve.py:2658 msgid "Recommended Shows" msgstr "Empfohlene Serien" -#: gui/slick/views/addShows_trendingShows.mako:60 sickbeard/webserve.py:2661 +#: gui/slick/views/addShows_trendingShows.mako:60 sickbeard/webserve.py:2660 msgid "New Shows" msgstr "Neue Serien" -#: gui/slick/views/addShows_trendingShows.mako:61 sickbeard/webserve.py:2663 +#: gui/slick/views/addShows_trendingShows.mako:61 sickbeard/webserve.py:2662 msgid "Season Premieres" msgstr "Staffelpremieren" -#: sickbeard/webserve.py:2792 sickbeard/webserve.py:2793 +#: sickbeard/webserve.py:2791 sickbeard/webserve.py:2792 msgid "Existing Show" msgstr "Vorhandene Serie" -#: sickbeard/webserve.py:2871 +#: sickbeard/webserve.py:2870 msgid "No root directories setup, please go back and add one." msgstr "Root-Verzeichnis nicht eingerichtet, bitte gehen Sie zurück und fügen Sie eins hinzu." -#: sickbeard/webserve.py:2883 sickbeard/webserve.py:3002 +#: sickbeard/webserve.py:2882 sickbeard/webserve.py:3001 msgid "Show added" msgstr "Serie hinzugefügt" -#: sickbeard/webserve.py:2883 +#: sickbeard/webserve.py:2882 msgid "Adding the specified show {show_name}" msgstr "Angegebene Serie {show_name} wird hinzugefügt" -#: sickbeard/webserve.py:2924 +#: sickbeard/webserve.py:2923 msgid "Missing params, no Indexer ID or folder: {show_to_add} and {root_dir}/{show_path}" msgstr "Parameter, Indexer ID oder Ordner fehlt: {show_to_add} und {root_dir}/{show_path}" -#: sickbeard/webserve.py:2933 +#: sickbeard/webserve.py:2932 msgid "Unknown error. Unable to add show due to problem with show selection." msgstr "Unbekannter Fehler. Serie kann wegen eines Auswahlproblems nicht hinzugefügt werden." -#: sickbeard/webserve.py:2957 sickbeard/webserve.py:2967 +#: sickbeard/webserve.py:2956 sickbeard/webserve.py:2966 msgid "Unable to add show" msgstr "Kann Serie nicht hinzufügen" -#: sickbeard/webserve.py:2957 +#: sickbeard/webserve.py:2956 msgid "Folder {show_dir} exists already" msgstr "Ordner {show_dir} ist bereits vorhanden" -#: sickbeard/webserve.py:2968 +#: sickbeard/webserve.py:2967 msgid "Unable to create the folder {show_dir}, can't add the show" msgstr "Kann den Ordner {show_dir} nicht erstellen, Serie kann nicht hinzugefügt werden" -#: sickbeard/webserve.py:3002 +#: sickbeard/webserve.py:3001 msgid "Adding the specified show into {show_dir}" msgstr "Die angegebene Serie in {show_dir} hinzufügen" -#: sickbeard/webserve.py:3078 +#: sickbeard/webserve.py:3077 msgid "Shows Added" msgstr "Serien hinzugefügt" -#: sickbeard/webserve.py:3079 +#: sickbeard/webserve.py:3078 msgid "Automatically added {num_shows} from their existing metadata files" msgstr "{num_shows} automatisch aus vorhandenen Metadatendateien hinzugefügt" -#: gui/slick/views/layouts/main.mako:153 sickbeard/webserve.py:3096 +#: gui/slick/views/layouts/main.mako:153 sickbeard/webserve.py:3095 msgid "Mass Update" msgstr "Massenaktualisierung" -#: sickbeard/webserve.py:3134 sickbeard/webserve.py:3161 sickbeard/webserve.py:3237 -#: sickbeard/webserve.py:3238 +#: sickbeard/webserve.py:3133 sickbeard/webserve.py:3160 sickbeard/webserve.py:3236 +#: sickbeard/webserve.py:3237 msgid "Episode Overview" msgstr "Folgenübersicht" -#: sickbeard/webserve.py:3270 +#: sickbeard/webserve.py:3269 msgid "Missing Subtitles" msgstr "Fehlende Untertitel" -#: gui/slick/views/layouts/main.mako:154 sickbeard/webserve.py:3356 -#: sickbeard/webserve.py:3357 +#: gui/slick/views/layouts/main.mako:154 sickbeard/webserve.py:3355 +#: sickbeard/webserve.py:3356 msgid "Backlog Overview" msgstr "Rückstandsübersicht" -#: sickbeard/webserve.py:3481 +#: sickbeard/webserve.py:3480 msgid "Mass Edit" msgstr "Massenbearbeitung" -#: sickbeard/webserve.py:3586 +#: sickbeard/webserve.py:3585 msgid "Unable to update show: {excption_format}" msgstr "Serie konnte nicht aktualisiert werden: {excption_format}" -#: sickbeard/webserve.py:3594 +#: sickbeard/webserve.py:3593 msgid "Unable to refresh show {show_name}: {excption_format}" msgstr "Serie {show_name}: {excption_format} kann nicht aktualisiert werden" -#: sickbeard/webserve.py:3605 +#: sickbeard/webserve.py:3604 msgid "Errors encountered" msgstr "Aufgetretene Fehler" -#: gui/slick/views/config_general.mako:261 sickbeard/webserve.py:3611 +#: gui/slick/views/config_general.mako:261 sickbeard/webserve.py:3610 msgid "Updates" msgstr "Aktualisierungen" -#: sickbeard/webserve.py:3616 +#: sickbeard/webserve.py:3615 msgid "Refreshes" msgstr "Aktualisierungen" -#: sickbeard/webserve.py:3621 +#: sickbeard/webserve.py:3620 msgid "Renames" msgstr "Umbennenungen" #: gui/slick/views/displayShow.mako:260 gui/slick/views/displayShow.mako:435 #: gui/slick/views/editShow.mako:119 gui/slick/views/inc_addShowOptions.mako:20 -#: gui/slick/views/manage_massEdit.mako:262 sickbeard/webserve.py:3626 -#: sickbeard/webserve.py:5244 +#: gui/slick/views/manage_massEdit.mako:262 sickbeard/webserve.py:3625 +#: sickbeard/webserve.py:5215 msgid "Subtitles" msgstr "Untertitel" -#: sickbeard/webserve.py:3631 +#: sickbeard/webserve.py:3630 msgid "The following actions were queued" msgstr "Folgende Aktionen wurden der Warteschlange hinzugefügt" -#: sickbeard/webserve.py:3651 -msgid "For best results please set the Download Station alias as" -msgstr "Für optimale Ergebnisse setzen Sie bitte den Alias der Download-Station auf" - -#: sickbeard/webserve.py:3652 -msgid "You can check this setting in the Synology DSM" -msgstr "Diese Einstellung kann in der Synology DSM überprüft werden" - -#: sickbeard/webserve.py:3652 sickbeard/webserve.py:3654 -msgid "Control Panel" -msgstr "Systemsteuerung" - -#: sickbeard/webserve.py:3652 -msgid "Application Portal" -msgstr "Anwendungsportal" - -#: sickbeard/webserve.py:3653 -msgid "Make sure you allow DSM to be embedded with iFrames too in" -msgstr "Stellen Sie sicher, dass bei DSM ebenfalls das Einbetten von iFrames erlaubt ist" - -#: sickbeard/webserve.py:3654 -msgid "DSM Settings" -msgstr "DSM-Einstellungen" - -#: sickbeard/webserve.py:3654 -msgid "Security" -msgstr "Sicherheit" - -#: gui/slick/views/layouts/main.mako:167 sickbeard/webserve.py:3662 -msgid "Manage Torrents" -msgstr "Torrents verwalten" - -#: gui/slick/views/layouts/main.mako:170 sickbeard/webserve.py:3683 +#: gui/slick/views/layouts/main.mako:170 sickbeard/webserve.py:3654 msgid "Failed Downloads" msgstr "Fehlgeschlagene Downloads" -#: gui/slick/views/layouts/main.mako:155 sickbeard/webserve.py:3701 +#: gui/slick/views/layouts/main.mako:155 sickbeard/webserve.py:3672 msgid "Manage Searches" msgstr "Suchverwaltung" -#: sickbeard/webserve.py:3709 +#: sickbeard/webserve.py:3680 msgid "Backlog search started" msgstr "Rückstandssuche gestartet" -#: sickbeard/webserve.py:3719 +#: sickbeard/webserve.py:3690 msgid "Daily search started" msgstr "Tägliche Suche gestartet" -#: sickbeard/webserve.py:3728 +#: sickbeard/webserve.py:3699 msgid "Find propers search started" msgstr "Suche nach Korrekturen (Propers) gestartet" -#: sickbeard/webserve.py:3737 +#: sickbeard/webserve.py:3708 msgid "Subtitle search started" msgstr "Untertitelsuche gestartet" -#: sickbeard/webserve.py:3801 +#: sickbeard/webserve.py:3772 msgid "Remove Selected" msgstr "Markierte entfernen" -#: sickbeard/webserve.py:3802 +#: sickbeard/webserve.py:3773 msgid "Clear History" msgstr "Verlauf löschen" -#: sickbeard/webserve.py:3803 +#: sickbeard/webserve.py:3774 msgid "Trim History" msgstr "Verlauf kürzen" -#: sickbeard/webserve.py:3823 +#: sickbeard/webserve.py:3794 msgid "Selected history entries removed" msgstr "Ausgewählte Verlaufseinträge entfernt" -#: sickbeard/webserve.py:3830 +#: sickbeard/webserve.py:3801 msgid "History cleared" msgstr "Verlauf geleert" -#: sickbeard/webserve.py:3837 +#: sickbeard/webserve.py:3808 msgid "Removed history entries older than 30 days" msgstr "Verlaufseinträge älter als 30 Tage entfernt" -#: gui/slick/views/layouts/main.mako:185 sickbeard/webserve.py:3850 +#: gui/slick/views/layouts/main.mako:185 sickbeard/webserve.py:3821 msgid "General" msgstr "Allgemein" -#: sickbeard/webserve.py:3851 sickbeard/webserve.py:4143 +#: sickbeard/webserve.py:3822 sickbeard/webserve.py:4114 msgid "Backup/Restore" msgstr "Sichern/Wiederherstellen" -#: gui/slick/views/layouts/main.mako:187 sickbeard/webserve.py:3852 -#: sickbeard/webserve.py:4206 +#: gui/slick/views/layouts/main.mako:187 sickbeard/webserve.py:3823 +#: sickbeard/webserve.py:4177 msgid "Search Settings" msgstr "Sucheinstellungen" -#: gui/slick/views/layouts/main.mako:188 sickbeard/webserve.py:3853 -#: sickbeard/webserve.py:4518 +#: gui/slick/views/layouts/main.mako:188 sickbeard/webserve.py:3824 +#: sickbeard/webserve.py:4489 msgid "Search Providers" msgstr "Suchanbieter" -#: gui/slick/views/layouts/main.mako:189 sickbeard/webserve.py:3854 +#: gui/slick/views/layouts/main.mako:189 sickbeard/webserve.py:3825 msgid "Subtitles Settings" msgstr "Untertiteleinstellungen" -#: gui/slick/views/layouts/main.mako:191 sickbeard/webserve.py:3856 -#: sickbeard/webserve.py:4964 +#: gui/slick/views/layouts/main.mako:191 sickbeard/webserve.py:3827 +#: sickbeard/webserve.py:4935 msgid "Notifications" msgstr "Benachrichtigungen" @@ -1240,142 +1237,142 @@ msgstr "Benachrichtigungen" #: gui/slick/views/home.mako:35 gui/slick/views/inc_addShowOptions.mako:79 #: gui/slick/views/inc_home_showList.mako:179 gui/slick/views/layouts/main.mako:192 #: gui/slick/views/manage.mako:44 gui/slick/views/manage_massEdit.mako:202 -#: sickbeard/webserve.py:3857 sickbeard/webserve.py:5309 +#: sickbeard/webserve.py:3828 sickbeard/webserve.py:5280 msgid "Anime" msgstr "Anime" -#: sickbeard/webserve.py:3895 sickbeard/webserve.py:3896 +#: sickbeard/webserve.py:3866 sickbeard/webserve.py:3867 msgid "SickRage Configuration" msgstr "SickRage Konfiguration" -#: sickbeard/webserve.py:3910 +#: sickbeard/webserve.py:3881 msgid "Config - Shares" -msgstr "" +msgstr "Konfiguration - Freigaben" -#: sickbeard/webserve.py:3910 +#: sickbeard/webserve.py:3881 msgid "Windows Shares Configuration" -msgstr "" +msgstr "Windows Freigabekonfiguration" -#: sickbeard/webserve.py:3937 +#: sickbeard/webserve.py:3908 msgid "Saved Shares" -msgstr "" +msgstr "Gespeicherte Freigaben" -#: sickbeard/webserve.py:3937 +#: sickbeard/webserve.py:3908 msgid "Your Windows share settings have been saved" -msgstr "" +msgstr "Die Windows Freigabe-Einstellungen wurden gespeichert" -#: sickbeard/webserve.py:3948 +#: sickbeard/webserve.py:3919 msgid "Config - General" msgstr "Einstellungen - Allgemein" -#: sickbeard/webserve.py:3948 +#: sickbeard/webserve.py:3919 msgid "General Configuration" msgstr "Grundeinstellungen" -#: sickbeard/webserve.py:3988 +#: sickbeard/webserve.py:3959 msgid "Saved Defaults" msgstr "Gespeicherte Standardwerte" -#: sickbeard/webserve.py:3988 +#: sickbeard/webserve.py:3959 msgid "Your \"add show\" defaults have been set to your current selections." msgstr "Standardeinstellungen von \"Serien hinzufügen\" werden der aktuellen Auswahl entsprechend festgelegt." -#: sickbeard/webserve.py:4095 +#: sickbeard/webserve.py:4066 msgid "Unable to create directory {directory}, log directory not changed." msgstr "Verzeichnis {directory} kann nicht erstellt werden, Protokollverzeichnis wurde nicht geändert." -#: sickbeard/webserve.py:4103 +#: sickbeard/webserve.py:4074 msgid "Unable to create directory {directory}, https cert directory not changed." msgstr "Verzeichnis {directory} konnte nicht erstellt werden, https Zertifikatsverzeichnis wurde nicht geändert." -#: sickbeard/webserve.py:4107 +#: sickbeard/webserve.py:4078 msgid "Unable to create directory {directory}, https key directory not changed." msgstr "Verzeichnis {directory} konnte nicht erstellt werden, https Schlüsselverzeichnis wurde nicht geändert." -#: sickbeard/webserve.py:4126 sickbeard/webserve.py:4324 sickbeard/webserve.py:4456 -#: sickbeard/webserve.py:5227 +#: sickbeard/webserve.py:4097 sickbeard/webserve.py:4295 sickbeard/webserve.py:4427 +#: sickbeard/webserve.py:5198 msgid "Error(s) Saving Configuration" msgstr "Fehler beim Speichern der Einstellungen" -#: sickbeard/webserve.py:4129 sickbeard/webserve.py:4327 sickbeard/webserve.py:4458 -#: sickbeard/webserve.py:4950 sickbeard/webserve.py:5230 sickbeard/webserve.py:5294 -#: sickbeard/webserve.py:5323 +#: sickbeard/webserve.py:4100 sickbeard/webserve.py:4298 sickbeard/webserve.py:4429 +#: sickbeard/webserve.py:4921 sickbeard/webserve.py:5201 sickbeard/webserve.py:5265 +#: sickbeard/webserve.py:5294 msgid "Configuration Saved" msgstr "Konfiguration gespeichert" -#: sickbeard/webserve.py:4142 +#: sickbeard/webserve.py:4113 msgid "Config - Backup/Restore" msgstr "Einstellungen - Sichern/Wiederherstellen" -#: sickbeard/webserve.py:4205 +#: sickbeard/webserve.py:4176 msgid "Config - Episode Search" msgstr "Einstellungen - Episodensuche" -#: sickbeard/webserve.py:4340 +#: sickbeard/webserve.py:4311 msgid "Config - Post Processing" msgstr "Einstellungen - Nachbearbeitung" -#: sickbeard/webserve.py:4380 +#: sickbeard/webserve.py:4351 msgid "Unpacking Not Supported, disabling unpack setting" msgstr "Entpacken wird nicht unterstützt, Entpack-Einstellung wird deaktiviert" -#: sickbeard/webserve.py:4431 +#: sickbeard/webserve.py:4402 msgid "You tried saving an invalid normal naming config, not saving your naming settings" msgstr "Sie haben versucht, eine ungültige Normal-Namens-Konfiguration zu speichern. Namens-Einstellungen werden daher nicht gespeichert" -#: sickbeard/webserve.py:4439 +#: sickbeard/webserve.py:4410 msgid "You tried saving an invalid anime naming config, not saving your naming settings" msgstr "Sie haben versucht, eine ungültige Anime Namens-Konfiguration zu speichern. Namens-Einstellungen werden daher nicht gespeichert" -#: sickbeard/webserve.py:4517 +#: sickbeard/webserve.py:4488 msgid "Config - Providers" msgstr "Einstellungen - Anbieter" -#: sickbeard/webserve.py:4547 +#: sickbeard/webserve.py:4518 msgid "No Provider Name specified" msgstr "Kein Anbieter-Name angegeben" -#: sickbeard/webserve.py:4549 +#: sickbeard/webserve.py:4520 msgid "No Provider Url specified" msgstr "Keine Anbieter-Url angegeben" -#: sickbeard/webserve.py:4551 +#: sickbeard/webserve.py:4522 msgid "No Provider Api key specified" -msgstr "Kein Anbieter API-Schlüssel angegeben" +msgstr "Kein Anbieter API-Key angegeben" -#: sickbeard/webserve.py:4963 +#: sickbeard/webserve.py:4934 msgid "Config - Notifications" msgstr "Einstellungen - Benachrichtigungen" -#: sickbeard/webserve.py:5243 +#: sickbeard/webserve.py:5214 msgid "Config - Subtitles" msgstr "Einstellungen - Untertitel" -#: sickbeard/webserve.py:5308 +#: sickbeard/webserve.py:5279 msgid "Config - Anime" msgstr "Einstellungen - Anime" -#: sickbeard/webserve.py:5336 +#: sickbeard/webserve.py:5307 msgid "Clear Errors" msgstr "Fehler löschen" -#: sickbeard/webserve.py:5342 +#: sickbeard/webserve.py:5313 msgid "Clear Warnings" msgstr "Warnungen löschen" -#: sickbeard/webserve.py:5348 +#: sickbeard/webserve.py:5319 msgid "Submit Errors" msgstr "Fehler melden" -#: sickbeard/webserve.py:5363 +#: sickbeard/webserve.py:5334 msgid "Logs & Errors" msgstr "Protokolle & Fehler" -#: sickbeard/webserve.py:5388 +#: sickbeard/webserve.py:5359 msgid "Log File" msgstr "Protokolldatei" -#: sickbeard/webserve.py:5388 +#: sickbeard/webserve.py:5359 msgid "Logs" msgstr "Protokolle" @@ -1383,30 +1380,166 @@ msgstr "Protokolle" msgid "This is a test notification from SickRage" msgstr "Dies ist eine Test-Mitteilung von SickRage" -#: gui/slick/js/core.js:481 gui/slick/js/core.js:502 gui/slick/js/core.js:524 -#: gui/slick/js/core.js:548 gui/slick/js/core.js:573 gui/slick/js/core.js:596 -#: gui/slick/js/core.js:625 gui/slick/js/core.js:645 gui/slick/js/core.js:690 -#: gui/slick/js/core.js:769 gui/slick/js/core.js:829 gui/slick/js/core.js:849 -#: gui/slick/js/core.js:879 gui/slick/js/core.js:909 gui/slick/js/core.js:969 -#: gui/slick/js/core.js:1046 gui/slick/js/core.js:1066 gui/slick/js/core.js:1085 +#: gui/slick/js/browser.js:6 +msgid "Choose Directory" +msgstr "" + +#: gui/slick/js/core.js:443 +msgid "Select log file folder location" +msgstr "" + +#: gui/slick/js/core.js:445 +msgid "Select CSS file" +msgstr "" + +#: gui/slick/js/core.js:469 +msgid "Select backup folder to save to" +msgstr "" + +#: gui/slick/js/core.js:470 +msgid "Select backup files to restore" +msgstr "" + +#: gui/slick/js/core.js:479 gui/slick/js/core.js:500 gui/slick/js/core.js:522 +#: gui/slick/js/core.js:546 gui/slick/js/core.js:571 gui/slick/js/core.js:594 +#: gui/slick/js/core.js:623 gui/slick/js/core.js:643 gui/slick/js/core.js:688 +#: gui/slick/js/core.js:767 gui/slick/js/core.js:827 gui/slick/js/core.js:847 +#: gui/slick/js/core.js:877 gui/slick/js/core.js:907 gui/slick/js/core.js:967 +#: gui/slick/js/core.js:1044 gui/slick/js/core.js:1064 gui/slick/js/core.js:1083 msgid "Please fill out the necessary fields above." +msgstr "Bitte füllen Sie die erforderlichen Felder oben aus." + +#: gui/slick/js/core.js:680 +msgid "<b>Step 1:</b> Confirm Authorization" +msgstr "" + +#: gui/slick/js/core.js:977 +msgid "Check blacklist name; the value needs to be a trakt slug" +msgstr "" + +#: gui/slick/js/core.js:1022 +msgid "You must provide a recipient email address!" +msgstr "" + +#: gui/slick/js/core.js:1107 +msgid "You didn't supply a Pushbullet api key" +msgstr "" + +#: gui/slick/js/core.js:1133 gui/slick/js/core.js:1162 +msgid "Don't forget to save your new pushbullet settings." msgstr "" -#: gui/slick/js/core.js:1328 gui/slick/js/core.js:1378 gui/slick/js/core.js:1427 -#: gui/slick/js/core.js:1493 +#: gui/slick/js/core.js:1262 +msgid "Select TV Download Directory" +msgstr "" + +#: gui/slick/js/core.js:1263 +msgid "Select Unpack Directory" +msgstr "" + +#: gui/slick/js/core.js:1326 gui/slick/js/core.js:1376 gui/slick/js/core.js:1425 +#: gui/slick/js/core.js:1491 msgid "This pattern is invalid." msgstr "Dieses Muster ist ungültig." -#: gui/slick/js/core.js:1336 gui/slick/js/core.js:1386 gui/slick/js/core.js:1435 -#: gui/slick/js/core.js:1501 +#: gui/slick/js/core.js:1334 gui/slick/js/core.js:1384 gui/slick/js/core.js:1433 +#: gui/slick/js/core.js:1499 msgid "This pattern would be invalid without the folders, using it will force \"Season Folders\" on for all shows." msgstr "Dieses Muster wäre ungültig ohne die Ordner, wird es dennoch verwendet schaltet es \"Staffel-Ordner\" für alle Serien ein ." -#: gui/slick/js/core.js:1344 gui/slick/js/core.js:1394 gui/slick/js/core.js:1443 -#: gui/slick/js/core.js:1509 +#: gui/slick/js/core.js:1342 gui/slick/js/core.js:1392 gui/slick/js/core.js:1441 +#: gui/slick/js/core.js:1507 msgid "This pattern is valid." msgstr "Dieses Muster ist gültig." +#: gui/slick/js/core.js:1818 +msgid "Select .nzb black hole/watch location" +msgstr "" + +#: gui/slick/js/core.js:1819 +msgid "Select .torrent black hole/watch location" +msgstr "" + +#: gui/slick/js/core.js:1820 +msgid "Select .torrent download location" +msgstr "" + +#: gui/slick/js/core.js:1900 +msgid "Minimum seeding time is" +msgstr "" + +#: gui/slick/js/core.js:1902 +msgid "URL to your uTorrent client (e.g. http://localhost:8000)" +msgstr "" + +#: gui/slick/js/core.js:1905 +msgid "Stop seeding when inactive for" +msgstr "" + +#: gui/slick/js/core.js:1911 +msgid "URL to your Transmission client (e.g. http://localhost:9091)" +msgstr "" + +#: gui/slick/js/core.js:1921 +msgid "URL to your Deluge client (e.g. http://localhost:8112)" +msgstr "" + +#: gui/slick/js/core.js:1930 +msgid "IP or Hostname of your Deluge Daemon (e.g. scgi://localhost:58846)" +msgstr "" + +#: gui/slick/js/core.js:1937 +msgid "URL to your Synology DS client (e.g. http://localhost:5000)" +msgstr "" + +#: gui/slick/js/core.js:1941 +msgid "URL to your rTorrent client (e.g. scgi://localhost:5000 <br> or https://localhost/rutorrent/plugins/httprpc/action.php)" +msgstr "" + +#: gui/slick/js/core.js:1952 +msgid "URL to your qBittorrent client (e.g. http://localhost:8080)" +msgstr "" + +#: gui/slick/js/core.js:1962 +msgid "URL to your MLDonkey (e.g. http://localhost:4080)" +msgstr "" + +#: gui/slick/js/core.js:1974 +msgid "URL to your putio client (e.g. http://localhost:8080)" +msgstr "" + +#: gui/slick/js/core.js:1975 +msgid "<a herf=\"https://app.put.io/oauth/apps/new\" target=\"_blank\"> Create a new OAuth app for put.io</a>" +msgstr "" + +#: gui/slick/js/core.js:1977 +msgid "Put.io Parent Folder" +msgstr "" + +#: gui/slick/js/core.js:1978 +msgid "Put.io OAuth Token" +msgstr "" + +#: gui/slick/js/core.js:3383 gui/slick/views/displayShow.mako:410 +msgid "Show Episodes" +msgstr "Serienfolgen" + +#: gui/slick/js/core.js:3388 gui/slick/views/displayShow.mako:408 +msgid "Hide Episodes" +msgstr "Ausblenden von Episoden" + +#: gui/slick/js/core.js:3396 +msgid "Select Show Location" +msgstr "" + +#: gui/slick/js/core.js:3460 +msgid "Select Unprocessed Episode Folder" +msgstr "" + +#: gui/slick/js/core.js:3790 +msgid "DELETED" +msgstr "" + #: gui/slick/js/core.js:4082 msgid "Resume updating the log on this page." msgstr "Wiederaufnahme der Aktualisierung des Protokolls auf dieser Seite." @@ -1415,6 +1548,26 @@ msgstr "Wiederaufnahme der Aktualisierung des Protokolls auf dieser Seite." msgid "Pause updating the log on this page." msgstr "Pausiere die Aktualisierung des Protokolls auf dieser Seite." +#: gui/slick/js/core.js:4323 +msgid "searching {searchingFor}..." +msgstr "" + +#: gui/slick/js/core.js:4334 +msgid "search timed out, try again or try another indexer" +msgstr "" + +#: gui/slick/js/core.js:4503 +msgid "loading folders..." +msgstr "" + +#: gui/slick/js/parsers.js:7 gui/slick/js/parsers.js:8 +#: gui/slick/js/plotTooltip.js:6 gui/slick/js/sceneExceptionsTooltip.js:6 +#: gui/slick/views/inc_home_showList.mako:209 +#: gui/slick/views/inc_home_showList.mako:215 +#: gui/slick/views/inc_home_showList.mako:231 +msgid "Loading..." +msgstr "Lädt..." + #: gui/slick/views/404.mako:5 msgid "You have reached this page by accident, please check the url." msgstr "Sie haben diese Seite durch Zufall erreicht. Bitte prüfen Sie die Url." @@ -2128,7 +2281,7 @@ msgstr "Systemsprache" #: gui/slick/views/config_general.mako:357 gui/slick/views/config_general.mako:378 msgid "for appearance to take effect, save then refresh your browser" -msgstr "um wirksam zu werden, speichern und Browser aktualisieren" +msgstr "um wirksam zu werden, speichern und Seite neu laden" #: gui/slick/views/config_general.mako:365 msgid "Display theme" @@ -2144,7 +2297,7 @@ msgstr "Hell" #: gui/slick/views/config_general.mako:386 msgid "Use a background image" -msgstr "EIn Hintergrundbild verwenden" +msgstr "Hintergrundbild verwenden" #: gui/slick/views/config_general.mako:391 msgid "use a custom image as background for SickRage" @@ -2176,19 +2329,19 @@ msgstr "Transparenz der Fanart im Hintergrund" #: gui/slick/views/config_general.mako:446 msgid "Use a custom stylesheet file" -msgstr "" +msgstr "Verwenden Sie eine benutzerdefinierte Stylesheet-Datei" #: gui/slick/views/config_general.mako:451 msgid "use a custom .css file to style SickRage (for advanced users)" -msgstr "" +msgstr "Verwenden Sie eine benutzerdefinierte CSS-Datei um SickRage zu stylen (für Fortgeschrittene)" #: gui/slick/views/config_general.mako:457 msgid "Stylesheet File Path" -msgstr "" +msgstr "Stylesheet-Dateipfad" #: gui/slick/views/config_general.mako:468 msgid "Path to the stylesheet (.css) file" -msgstr "" +msgstr "Pfad zur Stylesheet-Datei (.css)" #: gui/slick/views/config_general.mako:477 msgid "Show all seasons" @@ -2290,7 +2443,7 @@ msgstr "Diese Optionen erfordern einen manuellen Neustart." #: gui/slick/views/config_providers.mako:269 #: gui/slick/views/config_providers.mako:779 msgid "API key" -msgstr "API-Schlüssel" +msgstr "API-Key" #: gui/slick/views/config_general.mako:661 msgid "used to give 3rd party programs limited access to SickRage" @@ -2582,7 +2735,7 @@ msgstr "GitHub Remote für Versionszweig" #: gui/slick/views/config_general.mako:1212 msgid "access repo configured remotes (save then refresh browser)" -msgstr "Zugriff Repo-konfigurierter Remotes (sichern, anschließend Browser aktualisieren)" +msgstr "Zugriff Repo-konfigurierter Remotes (sichern, anschließend Seite neu laden)" #: gui/slick/views/config_general.mako:1217 msgid "default" @@ -2590,7 +2743,7 @@ msgstr "Standard" #: gui/slick/views/config_general.mako:1217 msgid "origin" -msgstr "Quelle" +msgstr "origin" #: gui/slick/views/config_general.mako:1225 msgid "Git executable path" @@ -2622,7 +2775,7 @@ msgstr "Sozial" #: gui/slick/views/config_notifications.mako:26 msgid "A free and open source cross-platform media center and home entertainment system software with a 10-foot user interface designed for the living-room TV." -msgstr "Kostenloses, plattformübergreifendes Open Source Medien-Center und Home Entertainment System Software mit einer 3 Meter Benutzeroberfläche für das Wohnzimmer-TV entwickelt." +msgstr "Ein kostenloses, plattformübergreifendes Open Source Medien-Center und Home Entertainment System Software mit einer 3-Meter (10-foot) Benutzeroberfläche für das Wohnzimmer-TV entwickelt." #: gui/slick/views/config_notifications.mako:37 msgid "send KODI commands?" @@ -2938,7 +3091,7 @@ msgstr "Host, auf dem Emby läuft (z.B. 192.168.1.100:8096)" #: gui/slick/views/config_notifications.mako:513 msgid "Emby API Key" -msgstr "Emby API Key" +msgstr "Emby API-Key" #: gui/slick/views/config_notifications.mako:542 msgid "Networked Media Jukebox" @@ -3161,11 +3314,11 @@ msgstr "Prowl Nachrichtentitel" #: gui/slick/views/config_notifications.mako:1197 msgid "Global Prowl API key(s)" -msgstr "Globale Prowl-API-Schlüssel" +msgstr "Globale Prowl-API-Key(s)" #: gui/slick/views/config_notifications.mako:1207 msgid "Prowl API(s) listed here, separated by commas if applicable, will<br> receive notifications for <b>all</b> shows. Your Prowl API key is available at:" -msgstr "Aufgeführte Prowl-API(s), ggf. getrennt durch Kommas, werden<br> Benachrichtigungen für <b>alle</b> Serien erhalten. Ihr Prowl-API-Schlüssel ist abrufbar unter:" +msgstr "Aufgeführte Prowl-API(s), ggf. getrennt durch Kommas, werden<br> Benachrichtigungen für <b>alle</b> Serien erhalten. Ihr Prowl-API-Key ist abrufbar unter:" #: gui/slick/views/config_notifications.mako:1211 msgid "(this field may be blank except when testing.)" @@ -3185,7 +3338,7 @@ msgstr "-- Serie auswählen --" msgid "Configure per-show notifications here by entering Prowl API key(s), separated by commas, '\n" " 'after selecting a show in the drop-down box. Be sure to activate the 'Save for this show' '\n" " 'button below after each entry." -msgstr "Konfigurieren Sie hier Benachrichtigungen einzelner Serien, indem Sie Prowl API-Schlüssel getrennt durch Kommas eingeben, \n" +msgstr "Konfigurieren Sie hier Benachrichtigungen einzelner Serien, indem Sie Prowl API-Key getrennt durch Kommas eingeben, \n" " nachdem eine Serie im Dropdown-Feld ausgewählt wurde. Achten Sie darauf den nachstehenden Button \"Sichern für diese Serie\"' \n" " nach jeder Eingabe zu betätigen." @@ -3269,16 +3422,16 @@ msgstr "Benutzerschlüssel Ihres Pushover-Kontos" #: gui/slick/views/config_notifications.mako:1434 msgid "Pushover API key" -msgstr "Pushover API-Schlüssel" +msgstr "Pushover API-Key" #: gui/slick/views/config_notifications.mako:1444 #: gui/slick/views/config_notifications.mako:2297 msgid "click here" -msgstr "" +msgstr "Hier klicken" #: gui/slick/views/config_notifications.mako:1444 msgid " to create a Pushover API key" -msgstr "" +msgstr " um einen Pushover API key zu erstellen" #: gui/slick/views/config_notifications.mako:1452 msgid "Pushover devices" @@ -3430,7 +3583,7 @@ msgstr "NMA Benachrichtigungen senden?" #: gui/slick/views/config_notifications.mako:1704 msgid "NMA API key" -msgstr "NMA API-Schlüssel" +msgstr "NMA API-Key" #: gui/slick/views/config_notifications.mako:1714 msgid "(multiple keys must be separated by commas, up to a maximum of 5)" @@ -3478,11 +3631,11 @@ msgstr "Pushbullet Benachrichtigungen senden?" #: gui/slick/views/config_notifications.mako:1913 msgid "Pushbullet API key" -msgstr "Pushbullet API-Schlüssel" +msgstr "Pushbullet API-Key" #: gui/slick/views/config_notifications.mako:1923 msgid "API key of your Pushbullet account" -msgstr "API-Schlüssel Ihres Pushbullet-Kontos" +msgstr "API-Key Ihres Pushbullet-Kontos" #: gui/slick/views/config_notifications.mako:1931 msgid "Pushbullet devices" @@ -3530,11 +3683,11 @@ msgstr "Free Mobile-Kundennummer (8-stellig)" #: gui/slick/views/config_notifications.mako:2065 msgid "Free Mobile API key" -msgstr "Free Mobile-API-Schlüssel" +msgstr "Free Mobile-API-Key" #: gui/slick/views/config_notifications.mako:2075 msgid "find your API key in your customer portal." -msgstr "Finden Sie Ihren API-Schlüssel in Ihrem Kundenportal." +msgstr "Finden Sie Ihren API-Key in Ihrem Kundenportal." #: gui/slick/views/config_notifications.mako:2083 #: gui/slick/views/config_notifications.mako:2194 @@ -3609,7 +3762,7 @@ msgstr "Gerätespezifische ID" #: gui/slick/views/config_notifications.mako:2297 msgid " to create a Join API key" -msgstr "" +msgstr " um einen Join API Key zu erstellen" #: gui/slick/views/config_notifications.mako:2328 msgid "Twilio" @@ -4647,7 +4800,7 @@ msgstr "Einzelne Anbieter-Einstellungen konfigurieren." #: gui/slick/views/config_providers.mako:114 msgid "Check with provider's website on how to obtain an API key if needed." -msgstr "Wenden Sie sich an die Website des Anbieters um einen API-Schlüssel zu erwerben." +msgstr "Wenden Sie sich an die Website des Anbieters um einen API-Key zu erwerben." #: gui/slick/views/config_providers.mako:124 msgid "Configure provider" @@ -4727,7 +4880,7 @@ msgstr "Die URL sollte das Protokoll (und ggf. Port) enthalten. Beispiele: http #: gui/slick/views/config_providers.mako:373 msgid "Api key" -msgstr "API-Schlüssel" +msgstr "API-Key" #: gui/slick/views/config_providers.mako:387 msgid "Digest" @@ -5021,7 +5174,7 @@ msgstr "Downloads von vor kurzem ausgestrahlten Folgen auf hohe Priorität festl #: gui/slick/views/config_search.mako:242 msgid "Use Failed Downloads" -msgstr "Verwendung der Funktion \"fehlgeschlagene Downloads\"" +msgstr "Fehlgeschlagene Downloads" #: gui/slick/views/config_search.mako:249 msgid "use Failed Download Handling?" @@ -5083,11 +5236,11 @@ msgstr "SABnzbd-Passwort" #: gui/slick/views/config_search.mako:393 msgid "SABnzbd API key" -msgstr "SABnzbd API-Schlüssel" +msgstr "SABnzbd API-Key" #: gui/slick/views/config_search.mako:405 msgid "locate at... SABnzbd Config -> General -> API Key" -msgstr "suchen unter... SABnzbd Konfiguration-> Allgemein-> API-Schlüssel" +msgstr "suchen unter... SABnzbd Konfiguration-> Allgemein-> API-Key" #: gui/slick/views/config_search.mako:413 msgid "Use SABnzbd category" @@ -5381,27 +5534,27 @@ msgstr "Verbindung testen" #: gui/slick/views/config_shares.mako:11 msgid "Windows Shares" -msgstr "" +msgstr "Windows Freigaben" #: gui/slick/views/config_shares.mako:12 msgid "Defines your existing windows shares so that we can add them to the browse dialog" -msgstr "" +msgstr "Definiert Ihre Windows Freigaben um diese dem Durchsuchen-Dialog hinzuzufügen" #: gui/slick/views/config_shares.mako:22 msgid "Share #{number}" -msgstr "" +msgstr "Freigabe #{number}" #: gui/slick/views/config_shares.mako:27 msgid "Share label" -msgstr "" +msgstr "Freigaben-Bezeichnung" #: gui/slick/views/config_shares.mako:31 msgid "Hostname or IP" -msgstr "" +msgstr "Hostname oder IP" #: gui/slick/views/config_shares.mako:35 msgid "Share path" -msgstr "" +msgstr "Freigabe-Pfad" #: gui/slick/views/config_subtitles.mako:30 #: gui/slick/views/config_subtitles.mako:43 @@ -5722,14 +5875,6 @@ msgstr "Ausgewählte Folgen ändern zu" msgid "Select Columns" msgstr "Spalten auswählen" -#: gui/slick/views/displayShow.mako:408 -msgid "Hide Episodes" -msgstr "Ausblenden von Episoden" - -#: gui/slick/views/displayShow.mako:410 -msgid "Show Episodes" -msgstr "Serienfolgen" - #: gui/slick/views/displayShow.mako:424 msgid "NFO" msgstr "NFO" @@ -6248,12 +6393,6 @@ msgstr "Aktiv" msgid "loading" msgstr "lade" -#: gui/slick/views/inc_home_showList.mako:209 -#: gui/slick/views/inc_home_showList.mako:215 -#: gui/slick/views/inc_home_showList.mako:231 -msgid "Loading..." -msgstr "Lädt..." - #: gui/slick/views/inc_qualityChooser.mako:31 msgid "<p><b><u>Preferred</u></b> qualities will replace those in <b><u>allowed</u></b>, even if they are lower.</p>" msgstr "<p><b><u>Bevorzugte</u></b> Qualitäten ersetzen diejenigen in <b><u>erlaubt</u></b>, auch wenn sie niedriger sind.</p>" @@ -6791,6 +6930,10 @@ msgstr "KODI aktualisieren" msgid "Update Emby" msgstr "Emby aktualisieren" +#: gui/slick/views/layouts/main.mako:167 +msgid "Manage Torrents" +msgstr "Torrents verwalten" + #: gui/slick/views/layouts/main.mako:173 msgid "Missed Subtitle Management" msgstr "Verwaltung fehlender Untertitel" diff --git a/locale/el_GR/LC_MESSAGES/messages.json b/locale/el_GR/LC_MESSAGES/messages.json index 3361c97025382fb93af771ca18bab1e5eb90b0ef..fc7e971f91c4be79a6e524e8ed2a5fe29f05b060 100644 --- a/locale/el_GR/LC_MESSAGES/messages.json +++ b/locale/el_GR/LC_MESSAGES/messages.json @@ -1 +1 @@ -{"messages":{"domain":"messages","locale_data":{"messages":{"100":[null,""],"250":[null,""],"500":[null,""],"":{"domain":"messages","plural_forms":"nplurals=2; plural=(n != 1);","lang":"el_GR"},"Drama":[null,""],"Mystery":[null,""],"Science-Fiction":[null,""],"Crime":[null,""],"Action":[null,""],"Comedy":[null,""],"Thriller":[null,""],"Animation":[null,""],"Family":[null,""],"Fantasy":[null,""],"Adventure":[null,""],"Horror":[null,""],"Film-Noir":[null,""],"Sci-Fi":[null,""],"Romance":[null,""],"Sport":[null,""],"War":[null,""],"Biography":[null,""],"History":[null,""],"Music":[null,""],"Western":[null,""],"News":[null,""],"Sitcom":[null,""],"Reality-TV":[null,""],"Documentary":[null,""],"Game-Show":[null,""],"Musical":[null,""],"Talk-Show":[null,""],"Started Download":[null,"Έναρξη λήψης"],"Download Finished":[null,"Ολοκλήρωση λήψης"],"Subtitle Download Finished":[null,"Ολοκλήρωση κατεβάσματος υπότιτλων"],"SickRage Updated":[null,"Το SickRage ενημερώθηκε"],"SickRage Updated To Commit#: ":[null,""],"SickRage new login":[null,"Νέα σύνδεση SickRage"],"New login from IP: {0}. http://geomaplookup.net/?ip={0}":[null,"Νέα είσοδος από την IP: {0}. http://geomaplookup.net/?IP={0}"],"Repeat":[null,""],"Repeat (Separated)":[null,""],"Extend":[null,""],"Extend (Limited)":[null,""],"Extend (Limited, E-prefixed)":[null,""],"Downloaded":[null,""],"Snatched":[null,""],"Snatched (Proper)":[null,""],"Failed":[null,""],"Snatched (Best)":[null,""],"Archived":[null,"Αρχειοθετημένο"],"Unknown":[null,"Άγνωστο"],"Unaired":[null,""],"Skipped":[null,""],"Wanted":[null,""],"Ignored":[null,""],"Subtitled":[null,""],"<No Filter>":[null,""],"Daily Searcher":[null,""],"Backlog":[null,""],"Show Updater":[null,""],"Check Version":[null,""],"Show Queue":[null,""],"Search Queue (All)":[null,""],"Search Queue (Daily Searcher)":[null,""],"Search Queue (Backlog)":[null,""],"Search Queue (Manual)":[null,""],"Search Queue (Retry/Failed)":[null,""],"Search Queue (RSS)":[null,""],"Find Propers":[null,""],"Postprocessor":[null,""],"Find Subtitles":[null,""],"Trakt Checker":[null,""],"Event":[null,""],"Error":[null,""],"Tornado":[null,""],"Thread":[null,""],"Main":[null,""],"Loading":[null,""],"New update found for SickRage, starting auto-updater":[null,""],"Update was successful":[null,""],"Update failed!":[null,""],"Backup":[null,""],"Config backup in progress...":[null,""],"Config backup successful, updating...":[null,""],"Config backup failed, aborting update":[null,""],"No update needed":[null,""],"Mako Error":[null,"Σφάλμα Mako"],"Oops":[null,"Ωχ"],"Wrong API key used":[null,""],"Login":[null,"Είσοδος"],"API Key not generated":[null,""],"API Builder":[null,""],"Schedule":[null,"Χρονοδιάγραμμα"],"Test 1":[null,""],"This is test number 1":[null,""],"Test 2":[null,""],"This is test number 2":[null,""],"You're using the {branch} branch. Please use 'master' unless specifically asked":[null,""],"Invalid show parameters":[null,""],"Invalid parameters":[null,""],"Episode couldn't be retrieved":[null,""],"Home":[null,"Αρχική σελίδα"],"Show List":[null,""],"Error: Unsupported Request. Send jsonp request with 'callback' variable in the query string.":[null,""],"Success. Connected and authenticated":[null,""],"Authentication failed. SABnzbd expects":[null,""],"as authentication method":[null,""],"Unable to connect to host":[null,"Αδυναμία σύνδεσης στον διακομιστή"],"SMS sent successfully":[null,""],"Problem sending SMS: {message}":[null,""],"Telegram notification succeeded. Check your Telegram clients to make sure it worked":[null,""],"Error sending Telegram notification: {message}":[null,""],"join notification succeeded. Check your join clients to make sure it worked":[null,""],"Error sending join notification: {message}":[null,""]," with password":[null," με κωδικό πρόσβασης"],"Registered and Tested growl successfully {growl_host}":[null,""],"Registration and Testing of growl failed {growl_host}":[null,""],"Test prowl notice sent successfully":[null,""],"Test prowl notice failed":[null,""],"Boxcar2 notification succeeded. Check your Boxcar2 clients to make sure it worked":[null,""],"Error sending Boxcar2 notification":[null,""],"Pushover notification succeeded. Check your Pushover clients to make sure it worked":[null,""],"Error sending Pushover notification":[null,""],"Key verification successful":[null,""],"Unable to verify key":[null,"Δεν είναι δυνατή η επαλήθευση του κλειδιού"],"Tweet successful, check your twitter to make sure it worked":[null,""],"Error sending tweet":[null,""],"Please enter a valid account sid":[null,""],"Please enter a valid auth token":[null,""],"Please enter a valid phone sid":[null,""],"Please format the phone number as \"+1-###-###-####\"":[null,""],"Authorization successful and number ownership verified":[null,""],"Error sending sms":[null,""],"Slack message successful":[null,""],"Slack message failed":[null,""],"Discord message successful":[null,""],"Discord message failed":[null,""],"Test KODI notice sent successfully to {kodi_host}":[null,""],"Test KODI notice failed to {kodi_host}":[null,""],"Successful test notice sent to Plex Home Theater ... {plex_clients}":[null,""],"Test failed for Plex Home Theater ... {plex_clients}":[null,""],"Tested Plex Home Theater(s)":[null,""],"Successful test of Plex Media Server(s) ... {plex_servers}":[null,""],"Test failed, No Plex Media Server host specified":[null,""],"Test failed for Plex Media Server(s) ... {plex_servers}":[null,""],"Tested Plex Media Server host(s)":[null,""],"Tried sending desktop notification via libnotify":[null,""],"Test notice sent successfully to {emby_host}":[null,""],"Test notice failed to {emby_host}":[null,""],"Successfully started the scan update":[null,""],"Test failed to start the scan update":[null,""],"Test notice sent successfully to {nmj2_host}":[null,""],"Test notice failed to {nmj2_host}":[null,""],"Trakt Authorized":[null,""],"Trakt Not Authorized!":[null,""],"Test email sent successfully! Check inbox.":[null,""],"ERROR: {last_error}":[null,""],"Test NMA notice sent successfully":[null,""],"Test NMA notice failed":[null,""],"Pushalot notification succeeded. Check your Pushalot clients to make sure it worked":[null,""],"Error sending Pushalot notification":[null,""],"Pushbullet notification succeeded. Check your device to make sure it worked":[null,""],"Error sending Pushbullet notification":[null,""],"Status":[null,""],"Restarting SickRage":[null,""],"Update Failed":[null,""],"Update wasn't successful, not restarting. Check your log for more information.":[null,""],"Checking out branch":[null,""],"Already on branch":[null,""],"Invalid show ID: {show}":[null,""],"Show not in show list":[null,""],"Edit":[null,"Επεξεργασία"],"This show is in the process of being downloaded - the info below is incomplete.":[null,""],"The information on this page is in the process of being updated.":[null,""],"The episodes below are currently being refreshed from disk":[null,""],"Currently downloading subtitles for this show":[null,""],"This show is queued to be refreshed.":[null,""],"This show is queued and awaiting an update.":[null,""],"This show is queued and awaiting subtitles download.":[null,""],"Resume":[null,""],"Pause":[null,"Παύση"],"Remove":[null,"Κατάργηση"],"Re-scan files":[null,""],"Force Full Update":[null,""],"Update show in KODI":[null,""],"Update show in Emby":[null,""],"Hide specials":[null,""],"Show specials":[null,""],"Preview Rename":[null,""],"Download Subtitles":[null,""],"No scene exceptions":[null,""],"Invalid show ID":[null,""],"Unable to find the specified show":[null,""],"Unable to retreive Fansub Groups from AniDB.":[null,""],"Edit Show":[null,""],"Unable to refresh this show: {error}":[null,""],"New location <tt>{location}</tt> does not exist":[null,""],"Unable to update show: {error}":[null,""],"Unable to force an update on scene exceptions of the show.":[null,""],"Unable to force an update on scene numbering of the show.":[null,""],"{num_errors:d} error{plural} while saving changes:":[null,""],"{show_name} has been {paused_resumed}":[null,""],"resumed":[null,""],"paused":[null,""],"{show_name} has been {deleted_trashed} {was_deleted}":[null,""],"deleted":[null,""],"trashed":[null,""],"(media untouched)":[null,""],"(with all related media)":[null,""],"Unable to refresh this show.":[null,""],"Unable to update this show.":[null,""],"Library update command sent to KODI host(s)): {kodi_hosts}":[null,""],"Unable to contact one or more KODI host(s)): {kodi_hosts}":[null,""],"Library update command sent to Plex Media Server host: {plex_server}":[null,""],"Unable to contact Plex Media Server host: {plex_server}":[null,""],"Library update command sent to Emby host: {emby_host}":[null,""],"Unable to contact Emby host: {emby_host}":[null,""],"You must specify a show and at least one episode":[null,""],"Invalid status":[null,""],"Backlog was automatically started for the following seasons of <b>{show_name}</b>":[null,""],"Season":[null,""],"Backlog started":[null,""],"Retrying Search was automatically started for the following season of <b>{show_name}</b>":[null,""],"Retry Search started":[null,""],"You must specify a show":[null,""],"Can't rename episodes when the show dir is missing.":[null,""],"New subtitles downloaded: {new_subtitle_languages}":[null,""],"No subtitles downloaded":[null,""],"IRC":[null,""],"Could not load news from the repo. [Click here for news.md])({news_url})":[null,""],"The was a problem connecting to github, please refresh and try again":[null,""],"Could not load changes from the repo. [Click here for CHANGES.md]({changes_url})":[null,""],"Changelog":[null,""],"Post Processing":[null,""],"Add Shows":[null,""],"No folders selected.":[null,""],"New Show":[null,""],"Trending Shows":[null,""],"Popular Shows":[null,""],"Most Anticipated Shows":[null,""],"Most Collected Shows":[null,""],"Most Watched Shows":[null,""],"Most Played Shows":[null,""],"Recommended Shows":[null,""],"New Shows":[null,""],"Season Premieres":[null,""],"Existing Show":[null,""],"No root directories setup, please go back and add one.":[null,""],"Show added":[null,""],"Adding the specified show {show_name}":[null,""],"Missing params, no Indexer ID or folder: {show_to_add} and {root_dir}/{show_path}":[null,""],"Unknown error. Unable to add show due to problem with show selection.":[null,""],"Unable to add show":[null,""],"Folder {show_dir} exists already":[null,""],"Unable to create the folder {show_dir}, can't add the show":[null,""],"Adding the specified show into {show_dir}":[null,""],"Shows Added":[null,""],"Automatically added {num_shows} from their existing metadata files":[null,""],"Mass Update":[null,""],"Episode Overview":[null,""],"Missing Subtitles":[null,""],"Backlog Overview":[null,""],"Mass Edit":[null,""],"Unable to update show: {excption_format}":[null,""],"Unable to refresh show {show_name}: {excption_format}":[null,""],"Errors encountered":[null,""],"Updates":[null,""],"Refreshes":[null,""],"Renames":[null,""],"Subtitles":[null,""],"The following actions were queued":[null,""],"For best results please set the Download Station alias as":[null,""],"You can check this setting in the Synology DSM":[null,""],"Control Panel":[null,""],"Application Portal":[null,""],"Make sure you allow DSM to be embedded with iFrames too in":[null,""],"DSM Settings":[null,""],"Security":[null,""],"Manage Torrents":[null,""],"Failed Downloads":[null,""],"Manage Searches":[null,""],"Backlog search started":[null,""],"Daily search started":[null,""],"Find propers search started":[null,""],"Subtitle search started":[null,""],"Remove Selected":[null,""],"Clear History":[null,""],"Trim History":[null,""],"Selected history entries removed":[null,""],"History cleared":[null,""],"Removed history entries older than 30 days":[null,""],"General":[null,""],"Backup/Restore":[null,""],"Search Settings":[null,""],"Search Providers":[null,""],"Subtitles Settings":[null,""],"Notifications":[null,""],"Anime":[null,""],"SickRage Configuration":[null,""],"Config - Shares":[null,""],"Windows Shares Configuration":[null,""],"Saved Shares":[null,""],"Your Windows share settings have been saved":[null,""],"Config - General":[null,""],"General Configuration":[null,""],"Saved Defaults":[null,""],"Your \"add show\" defaults have been set to your current selections.":[null,""],"Unable to create directory {directory}, log directory not changed.":[null,""],"Unable to create directory {directory}, https cert directory not changed.":[null,""],"Unable to create directory {directory}, https key directory not changed.":[null,""],"Error(s) Saving Configuration":[null,""],"Configuration Saved":[null,""],"Config - Backup/Restore":[null,""],"Config - Episode Search":[null,""],"Config - Post Processing":[null,""],"Unpacking Not Supported, disabling unpack setting":[null,""],"You tried saving an invalid normal naming config, not saving your naming settings":[null,""],"You tried saving an invalid anime naming config, not saving your naming settings":[null,""],"Config - Providers":[null,""],"No Provider Name specified":[null,""],"No Provider Url specified":[null,""],"No Provider Api key specified":[null,""],"Config - Notifications":[null,""],"Config - Subtitles":[null,""],"Config - Anime":[null,""],"Clear Errors":[null,""],"Clear Warnings":[null,""],"Submit Errors":[null,""],"Logs & Errors":[null,""],"Log File":[null,""],"Logs":[null,""],"This is a test notification from SickRage":[null,""],"Please fill out the necessary fields above.":[null,""],"This pattern is invalid.":[null,""],"This pattern would be invalid without the folders, using it will force \"Season Folders\" on for all shows.":[null,""],"This pattern is valid.":[null,""],"Resume updating the log on this page.":[null,""],"Pause updating the log on this page.":[null,""],"You have reached this page by accident, please check the url.":[null,""],"A mako error has occured.<br>\n If this happened during an update a simple page refresh may be the solution.<br>\n Mako errors that happen during updates may be a one time error if there were significant ui changes.":[null,""],"Show/Hide Error":[null,""],"Add New Show":[null,""],"For shows that you haven't downloaded yet, this option finds a show on theTVDB.com, creates a directory for it's episodes, and adds it to SickRage.":[null,""],"Add From Trakt Lists":[null,""],"For shows that you haven't downloaded yet, this option lets you choose from a show from one of the Trakt lists to add to SickRage.":[null,""],"Add From IMDB's Popular Shows":[null,""],"View IMDB's list of the most popular shows. This feature uses IMDB's MOVIEMeter algorithm to identify popular TV Series.":[null,""],"Add Existing Shows":[null,""],"Use this option to add shows that already have a folder created on your hard drive. SickRage will scan your existing metadata/episodes and add the show accordingly.":[null,""],"Add Existing Show":[null,""],"Manage Directories":[null,""],"Customize Options":[null,""],"SickRage can add existing shows, using the current options, by using locally stored NFO/XML metadata to eliminate user interaction. If you would rather have SickRage prompt you to customize each show, then use the checkbox below.":[null,""],"Prompt me to set settings for each show":[null,""],"Displaying folders within these directories which aren't already added to SickRage":[null,""],"Submit":[null,""],"Find a show on theTVDB":[null,""],"Show retrieved from existing metadata":[null,""],"All Indexers":[null,""],"Search":[null,""],"This will only affect the language of the retrieved metadata file contents and episode filenames.":[null,""],"This <b>DOES NOT</b> allow SickRage to download non-english TV episodes!":[null,""],"Pick the parent folder":[null,""],"Pre-chosen Destination Folder":[null,""],"Customize options":[null,""],"Add Show":[null,""],"Skip Show":[null,""],"Sort By":[null,""],"Name":[null,""],"Original":[null,""],"Votes":[null,""],"Rating":[null,""],"Rating > Votes":[null,""],"Sort Order":[null,""],"Asc":[null,""],"Desc":[null,""],"Fetching of IMDB Data failed. Are you online?":[null,""],"Exception":[null,""],"Select Trakt List":[null,""],"Most Anticipated":[null,""],"Trending":[null,""],"Popular":[null,""],"Most Watched":[null,""],"Most Played":[null,""],"Most Collected":[null,""],"Recommended":[null,""],"Toggle navigation":[null,""],"Profile":[null,""],"JSONP":[null,""],"Back to SickRage":[null,""],"Parameters":[null,""],"Required":[null,""],"Description":[null,""],"Type":[null,""],"Default value":[null,""],"Allowed values":[null,""],"Playground":[null,""],"Clear":[null,""],"Yes":[null,""],"No":[null,""],"season":[null,""],"episode":[null,""],"Python Version":[null,""],"SSL Version":[null,""],"OS":[null,""],"Locale":[null,""],"User":[null,""],"Program Folder":[null,""],"Config File":[null,""],"Database File":[null,""],"Cache Folder":[null,""],"Log Folder":[null,""],"Arguments":[null,""],"Web Root":[null,""],"Website":[null,""],"Wiki":[null,""],"Source":[null,""],"IRC Chat":[null,""],"AnimeDB Settings":[null,""],"Look & Feel":[null,""],"AniDB is non-profit database of anime information that is freely open to the public":[null,""],"Enable":[null,""],"should SickRage use data from AniDB?":[null,""],"AniDB Username":[null,""],"username of your AniDB account":[null,""],"AniDB Password":[null,""],"password of your AniDB account":[null,""],"AniDB MyList":[null,""],"do you want to add the PostProcessed episodes to the MyList?":[null,""],"Look and Feel":[null,""],"How should the anime functions show and behave.":[null,""],"Split show lists":[null,""],"separate anime and normal shows in groups":[null,""],"Split in tabs":[null,""],"use tabs for when splitting show lists":[null,""],"Restore":[null,""],"Backup your main database file and config.":[null,""],"Select the folder you wish to save your backup file to":[null,""],"Restore your main database file and config.":[null,""],"Select the backup file you wish to restore":[null,""],"Misc":[null,""],"Interface":[null,""],"Advanced Settings":[null,""],"Startup options. Indexer options. Log and show file locations.":[null,""],"Some options may require a manual restart to take effect.":[null,""],"Default Indexer Language":[null,""],"for adding shows and metadata providers":[null,""],"Launch browser":[null,""],"open the SickRage home page on startup":[null,""],"Initial page":[null,""],"Shows":[null,""],"when launching SickRage interface":[null,""],"Choose hour to update shows":[null,""],"with information such as next air dates, show ended, etc. Use 15 for 3pm, 4 for 4am etc.":[null,""],"note":[null,""],"minutes are randomized each time SickRage is started":[null,""],"Send to trash for actions":[null,""],"when using show \"Remove\" and delete files":[null,""],"on scheduled deletes of the oldest log files":[null,""],"selected actions use trash (recycle bin) instead of the default permanent delete":[null,""],"Log file folder location":[null,""],"Number of Log files saved":[null,""],"number of log files saved when rotating logs (default: 5) (REQUIRES RESTART)":[null,""],"Size of Log files saved":[null,""],"maximum size in MB of the log file (default: 1MB) (REQUIRES RESTART)":[null,""],"Use initial indexer set to":[null,""],"as the default selection when adding new shows":[null,""],"Timeout show indexer at":[null,""],"seconds of inactivity when finding new shows (default:20)":[null,""],"Show root directories":[null,""],"where the files of shows are located":[null,""],"Save Changes":[null,""],"Options for software updates.":[null,""],"Check software updates":[null,""],"and display notifications when updates are available. Checks are run on startup and at the frequency set below*":[null,""],"Automatically update":[null,""],"fetch and install software updates. Updates are run on startup and in the background at the frequency set below*":[null,""],"Check the server every*":[null,""],"hours for software updates (default:1)":[null,""],"Notify on software update":[null,""],"send a message to all enabled notifiers when SickRage has been updated":[null,""],"User Interface":[null,""],"Options for visual appearance.":[null,""],"Interface Language":[null,""],"System Language":[null,""],"for appearance to take effect, save then refresh your browser":[null,""],"Display theme":[null,""],"Dark":[null,""],"Light":[null,""],"Use a background image":[null,""],"use a custom image as background for SickRage":[null,""],"Background Path":[null,""],"Path to the background image":[null,""],"Show fanart in the background":[null,""],"on the show summary page":[null,""],"Fanart transparency":[null,""],"transparency of the fanart in the background":[null,""],"Use a custom stylesheet file":[null,""],"use a custom .css file to style SickRage (for advanced users)":[null,""],"Stylesheet File Path":[null,""],"Path to the stylesheet (.css) file":[null,""],"Show all seasons":[null,""],"Sort with \"The\", \"A\", \"An\"":[null,""],"include articles (\"The\", \"A\", \"An\") when sorting show lists":[null,""],"Missed episodes range":[null,""],"set the range in days of the missed episodes in the Schedule page":[null,""],"Display fuzzy dates":[null,""],"move absolute dates into tooltips and display e.g. \"Last Thu\", \"On Tue\"":[null,""],"Trim zero padding":[null,""],"remove the leading number \"0\" shown on hour of day, and date of month":[null,""],"Date style":[null,""],"Use System Default":[null,""],"Time style":[null,""],"seconds are only shown on the History page":[null,""],"Timezone":[null,""],"Local":[null,""],"Network":[null,""],"display dates and times in either your timezone or the shows network timezone":[null,""],"use local timezone to start searching for episodes minutes after show ends (depends on your dailysearch frequency)":[null,""],"Download url":[null,""],"URL where the shows can be downloaded.":[null,""],"Web Interface":[null,""],"it is recommended that you enable a username and password to secure SickRage from being tampered with remotely.":[null,""],"these options require a manual restart to take effect.":[null,""],"API key":[null,""],"used to give 3rd party programs limited access to SickRage":[null,""],"you can try all the features of the API":[null,""],"here":[null,""],"HTTP logs":[null,""],"enable logs from the internal Tornado web server":[null,""],"HTTP username":[null,""],"set blank for no login":[null,""],"HTTP password":[null,""],"blank = no authentication":[null,""],"HTTP port":[null,""],"web port to browse and access SickRage (default:8081)":[null,""],"Notify on login":[null,""],"enable to be notified when a new login happens in webserver":[null,""],"Listen on IPv6":[null,""],"attempt binding to any available IPv6 address":[null,""],"Enable HTTPS":[null,""],"enable access to the web interface using a HTTPS address":[null,""],"HTTPS certificate":[null,""],"file name or path to HTTPS certificate":[null,""],"HTTPS key":[null,""],"file name or path to HTTPS key":[null,""],"Reverse proxy headers":[null,""],"accept the following reverse proxy headers (advanced)...":[null,""],"(X-Forwarded-For, X-Forwarded-Host, and X-Forwarded-Proto)":[null,""],"CPU throttling":[null,""],"Normal (default). High is lower and Low is higher CPU use":[null,""],"Anonymous redirect":[null,""],"backlink protection via anonymizer service, must end in \"?\"":[null,""],"Enable debug":[null,""],"enable debug logs":[null,""],"Verify SSL Certs":[null,""],"verify SSL Certificates (Disable this for broken SSL installs (Like QNAP))":[null,""],"No Restart":[null,""],"only shutdown when restarting SR":[null,""],"only select this when you have external software restarting SR automatically when it stops (like FireDaemon)":[null,""],"Encrypt passwords":[null,""],"in the <code>config.ini</code> file":[null,""],"warning":[null,""],"passwords must only contain":[null,""],"ASCII characters":[null,""],"Unprotected calendar":[null,""],"allow subscribing to the calendar without user and password":[null,""],"some services like Google Calendar only work this way":[null,""],"Google Calendar Icons":[null,""],"show an icon next to exported calendar events in Google Calendar":[null,""],"Proxy host":[null,""],"blank to disable or proxy to use when connecting to providers":[null,""],"also use global proxy setting for indexers (tvdb, xem, anidb, etc.)":[null,""],"Skip Remove Detection":[null,""],"skip detection of removed files":[null,""],"if disabled the episode will be set to the default deleted status":[null,""],"Default deleted episode status":[null,""],"define the status to be set for media file that has been deleted.":[null,""],"Archived option will keep previous downloaded quality":[null,""],"example: Downloaded (1080p WEB-DL) ==> Archived (1080p WEB-DL)":[null,""],"Options for github related features.":[null,""],"Branch version":[null,""],"error: No branches found.":[null,""],"select branch to use (restart required)":[null,""],"Authorization Type":[null,""],"Username and password":[null,""],"Personal access token":[null,""],"You must use a personal access token if you're using \"two-factor authentication\" on GitHub.":[null,""],"GitHub username":[null,""],"*** (REQUIRED FOR SUBMITTING ISSUES) ***":[null,""],"GitHub password":[null,""],"GitHub personal access token":[null,""],"Generate Token":[null,""],"Manage Tokens":[null,""],"GitHub remote for branch":[null,""],"access repo configured remotes (save then refresh browser)":[null,""],"default":[null,""],"origin":[null,""],"Git executable path":[null,""],"only needed if OS is unable to locate git from env":[null,""],"Git reset":[null,""],"removes untracked files and performs a hard reset on git branch automatically to help resolve update issues":[null,""],"Home Theater / NAS":[null,""],"Devices":[null,""],"Social":[null,""],"A free and open source cross-platform media center and home entertainment system software with a 10-foot user interface designed for the living-room TV.":[null,""],"send KODI commands?":[null,""],"Always on":[null,""],"log errors when unreachable?":[null,""],"Notify on snatch":[null,""],"send a notification when a download starts?":[null,""],"Notify on download":[null,""],"send a notification when a download finishes?":[null,""],"Notify on subtitle download":[null,""],"send a notification when subtitles are downloaded?":[null,""],"Update library":[null,""],"update KODI library when a download finishes?":[null,""],"Full library update":[null,""],"perform a full library update if update per-show fails?":[null,""],"Only update first host":[null,""],"only send library updates to the first active host?":[null,""],"KODI IP:Port":[null,""],"host running KODI (eg. 192.168.1.100:8080)":[null,""],"(multiple host strings must be separated by commas)":[null,""],"Username":[null,""],"username for your KODI server (blank for none)":[null,""],"Password":[null,""],"password for your KODI server (blank for none)":[null,""],"Click below to test.":[null,""],"Experience your media on a visually stunning, easy to use interface on your Mac connected to your TV. Your media library has never looked this good!":[null,""],"For sending notifications to Plex Home Theater (PHT) clients, use the KODI notifier with port <b>3005</b>.":[null,""],"send Plex Media Server library updates?":[null,""],"Plex Media Server Auth Token":[null,""],"auth token used by Plex":[null,""],"Update Library":[null,""],"update Plex Media Server library when a download finishes":[null,""],"Plex Media Server IP:Port":[null,""],"one or more hosts running Plex Media Server<br/>(eg. 192.168.1.1:32400, 192.168.1.2:32400)":[null,""],"HTTPS":[null,""],"use https for plex media server requests?":[null,""],"Click below to test Plex Media Server(s)":[null,""],"Test Plex Media Server":[null,""],"Plex Home Theater":[null,""],"send Plex Home Theater notifications?":[null,""],"Plex Home Theater IP:Port":[null,""],"one or more hosts running Plex Home Theater<br>(eg. 192.168.1.100:3000, 192.168.1.101:3000)":[null,""],"Click below to test Plex Home Theater(s)":[null,""],"Test Plex Home Theater":[null,""],"some Plex Home Theaters <b class=\"boldest\">do not</b> support notifications e.g. Plexapp for Samsung TVs":[null,""],"Emby":[null,""],"A home media server built using other popular open source technologies.":[null,""],"send update commands to Emby?":[null,""],"Emby IP:Port":[null,""],"host running Emby (eg. 192.168.1.100:8096)":[null,""],"Emby API Key":[null,""],"Networked Media Jukebox":[null,""],"The Networked Media Jukebox, or NMJ, is the official media jukebox interface made available for the Popcorn Hour 200-series.":[null,""],"send update commands to NMJ?":[null,""],"Popcorn IP address":[null,""],"IP address of Popcorn 200-series (eg. 192.168.1.100)":[null,""],"Get settings":[null,""],"Get Settings":[null,""],"the Popcorn Hour device must be powered on and NMJ running.":[null,""],"NMJ database":[null,""],"automatically filled via the 'Get Settings' button.":[null,""],"NMJ mount url":[null,""],"Networked Media Jukebox v2":[null,""],"The Networked Media Jukebox, or NMJv2, is the official media jukebox interface made available for the Popcorn Hour 300 & 400-series.":[null,""],"send update commands to NMJv2?":[null,""],"IP address of Popcorn 300/400-series (eg. 192.168.1.100)":[null,""],"Database location":[null,""],"Database instance":[null,""],"adjust this value if the wrong database is selected.":[null,""],"Find database":[null,""],"Find Database":[null,""],"the Popcorn Hour device must be powered on.":[null,""],"NMJv2 database":[null,""],"automatically filled via the 'Find Database' buttons.":[null,""],"Synology":[null,""],"The Synology DiskStation NAS.":[null,""],"Synology Indexer is the daemon running on the Synology NAS to build its media database.":[null,""],"send Synology notifications?":[null,""],"requires SickRage to be running on your Synology NAS.":[null,""],"Synology Indexer":[null,""],"Synology Notifier is the notification system of Synology DSM":[null,""],"send notifications to the Synology Notifier?":[null,""],"pyTivo":[null,""],"pyTivo is both an HMO and GoBack server. This notifier will load the completed downloads to your Tivo.":[null,""],"send notifications to pyTivo?":[null,""],"requires the downloaded files to be accessible by pyTivo.":[null,""],"pyTivo IP:Port":[null,""],"host running pyTivo (eg. 192.168.1.1:9032)":[null,""],"pyTivo share name":[null,""],"value used in pyTivo Web Configuration to name the share.":[null,""],"Tivo name":[null,""],"(Messages & Settings > Account & System Information > System Information > DVR name)":[null,""],"Growl":[null,""],"A cross-platform unobtrusive global notification system.":[null,""],"send Growl notifications?":[null,""],"Growl IP:Port":[null,""],"host running Growl (eg. 192.168.1.100:23053)":[null,""],"may leave blank if SickRage is on the same host.":[null,""],"otherwise Growl <b>requires</b> a password to be used.":[null,""],"Click below to register and test Growl, this is required for Growl notifications to work.":[null,""],"Register Growl":[null,""],"Prowl":[null,""],"A Growl client for iOS.":[null,""],"send Prowl notifications?":[null,""],"Prowl Message Title":[null,""],"Global Prowl API key(s)":[null,""],"Prowl API(s) listed here, separated by commas if applicable, will<br> receive notifications for <b>all</b> shows. Your Prowl API key is available at:":[null,""],"(this field may be blank except when testing.)":[null,""],"Show notification list":[null,""],"-- Select a Show --":[null,""],"Configure per-show notifications here by entering Prowl API key(s), separated by commas, '\n 'after selecting a show in the drop-down box. Be sure to activate the 'Save for this show' '\n 'button below after each entry.":[null,""],"Save for this show":[null,""],"Prowl priority":[null,""],"Very Low":[null,""],"Moderate":[null,""],"Normal":[null,""],"High":[null,""],"Emergency":[null,""],"priority of Prowl messages from SickRage.":[null,""],"Libnotify":[null,""],"The standard desktop notification API for Linux/*nix systems. This notifier will only function if the pynotify module is installed (Ubuntu/Debian package <a href=\"apt:python-notify\">python-notify</a>).":[null,""],"send Libnotify notifications?":[null,""],"Pushover":[null,""],"Pushover makes it easy to send real-time notifications to your Android and iOS devices.":[null,""],"send Pushover notifications?":[null,""],"Pushover key":[null,""],"user key of your Pushover account":[null,""],"Pushover API key":[null,""],"click here":[null,""]," to create a Pushover API key":[null,""],"Pushover devices":[null,""],"comma separated list of pushover devices you want to send notifications to":[null,""],"Pushover notification sound":[null,""],"Bike":[null,""],"Bugle":[null,""],"Cash Register":[null,""],"Classical":[null,""],"Cosmic":[null,""],"Falling":[null,""],"Gamelan":[null,""],"Incoming":[null,""],"Intermission":[null,""],"Magic":[null,""],"Mechanical":[null,""],"Piano Bar":[null,""],"Siren":[null,""],"Space Alarm":[null,""],"Tug Boat":[null,""],"Alien Alarm (long)":[null,""],"Climb (long)":[null,""],"Persistent (long)":[null,""],"Pushover Echo (long)":[null,""],"Up Down (long)":[null,""],"None (silent)":[null,""],"Device specific":[null,""],"choose notification sound to use":[null,""],"Pushover priority":[null,""],"Choose priority to use":[null,""],"Boxcar 2":[null,""],"Read your messages where and when you want them!":[null,""],"send Boxcar notifications?":[null,""],"Boxcar2 access token":[null,""],"access token for your Boxcar account.":[null,""],"NMA":[null,""],"Notify My Android":[null,""],"Notify My Android is a Prowl-like Android App and API that offers an easy way to send notifications from your application directly to your Android device.":[null,""],"send NMA notifications?":[null,""],"NMA API key":[null,""],"(multiple keys must be separated by commas, up to a maximum of 5)":[null,""],"NMA priority":[null,""],"priority of NMA messages from SickRage.":[null,""],"Pushalot":[null,""],"Pushalot is a platform for receiving custom push notifications to connected devices running Windows Phone or Windows 8.":[null,""],"send Pushalot notifications ?":[null,""],"Pushalot authorization token":[null,""],"authorization token of your Pushalot account.":[null,""],"Pushbullet":[null,""],"Pushbullet is a platform for receiving custom push notifications to connected devices running Android/iOS and desktop browsers such as Chrome, Firefox or Opera.":[null,""],"send Pushbullet notifications?":[null,""],"Pushbullet API key":[null,""],"API key of your Pushbullet account":[null,""],"Pushbullet devices":[null,""],"Update device list":[null,""],"Pushbullet channels":[null,""],"Free Mobile":[null,""],"Free Mobile is a famous French cellular network provider.<br> It provides to their customer a free SMS API.":[null,""],"send SMS notifications?":[null,""],"send a SMS when a download starts?":[null,""],"send a SMS when a download finishes?":[null,""],"send a SMS when subtitles are downloaded?":[null,""],"Free Mobile customer ID":[null,""],"it's your Free Mobile customer ID (8 digits)":[null,""],"Free Mobile API key":[null,""],"find your API key in your customer portal.":[null,""],"Click below to test your settings.":[null,""],"Telegram":[null,""],"Telegram is a cloud-based instant messaging service.":[null,""],"send Telegram notifications?":[null,""],"send a message when a download starts?":[null,""],"send a message when a download finishes?":[null,""],"send a message when subtitles are downloaded?":[null,""],"User/group ID":[null,""],"contact @myidbot on Telegram to get an ID":[null,""],"Bot API token":[null,""],"contact @BotFather on Telegram to set up one":[null,""],"Join":[null,""],"Join all of your devices together!":[null,""],"send Join notifications?":[null,""],"Device ID":[null,""],"per device specific id":[null,""]," to create a Join API key":[null,""],"Twilio":[null,""],"Twilio is a webservice API that allows you to communicate directly with a mobile number. This notifier will send a text directly to your mobile device.":[null,""],"should SickRage text your mobile device?":[null,""],"Twilio Account SID":[null,""],"account SID of your Twilio account.":[null,""],"Twilio Auth Token":[null,""],"Twilio Phone SID":[null,""],"phone SID that you would like to send the sms from":[null,""],"Your phone number":[null,""],"phone number that will receive the sms. Please use the format +1-###-###-####":[null,""],"Twitter":[null,""],"A social networking and microblogging service, enabling its users to send and read other users' messages called tweets.":[null,""],"should SickRage post tweets on Twitter?":[null,""],"you may want to use a secondary account.":[null,""],"send direct message":[null,""],"send a notification via Direct Message, not via status update":[null,""],"send DM to":[null,""],"Twitter account to send Direct Messages to (must follow you)":[null,""],"Step One":[null,""],"Request Authorization":[null,""],"Click the \"Request Authorization\" button.<br> This will open a new page containing an auth key.<br> <b>note:</b> if nothing happens check your popup blocker.":[null,""],"Step Two":[null,""],"Enter the key Twitter gave you below, and click \"Verify Key\".":[null,""],"Trakt":[null,""],"Trakt helps keep a record of what TV shows and movies you are watching. Based on your favorites, Trakt recommends additional shows and movies you'll enjoy!":[null,""],"send Trakt.tv notifications?":[null,""],"username of your Trakt account.":[null,""],"Trakt PIN":[null,""],"Get Trakt PIN":[null,""],"PIN code to authorize SickRage to access Trakt on your behalf.":[null,""],"API Timeout":[null,""],"seconds to wait for Trakt API to respond. (Use 0 to wait forever)":[null,""],"Default indexer":[null,""],"Sync libraries":[null,""],"sync your SickRage show library with your trakt show library.":[null,""],"Remove Episodes From Collection":[null,""],"remove an episode from your Trakt Collection if it is not in your SickRage Library.":[null,""],"Sync watchlist":[null,""],"sync your SickRage show watchlist with your trakt show watchlist (either Show and Episode).":[null,""],"episode will be added on watch list when wanted or snatched and will be removed when downloaded ":[null,""],"Watchlist add method":[null,""],"Skip All":[null,""],"Download Pilot Only":[null,""],"Get whole show":[null,""],"method in which to download episodes for new shows.":[null,""],"Remove episode":[null,""],"remove an episode from your watchlist after it is downloaded.":[null,""],"Remove series":[null,""],"remove the whole series from your watchlist after any download.":[null,""],"Remove watched show":[null,""],"remove the show from sickrage if it's ended and completely watched":[null,""],"Start paused":[null,""],"shows grabbed from your trakt watchlist start paused.":[null,""],"Trakt blackList name":[null,""],"name (slug) of list on Trakt for blacklisting show on 'Add Trending Show' & 'Add Recommended Shows' pages":[null,""],"Email":[null,""],"Allows configuration of email notifications on a per show basis.":[null,""],"send email notifications?":[null,""],"SMTP host":[null,""],"hostname of your SMTP email server.":[null,""],"SMTP port":[null,""],"port number used to connect to your SMTP host.":[null,""],"SMTP from":[null,""],"sender email address, some hosts require a real address.":[null,""],"Use TLS":[null,""],"check to use TLS encryption.":[null,""],"SMTP user":[null,""],"(optional) your SMTP server username.":[null,""],"SMTP password":[null,""],"(optional) your SMTP server password.":[null,""],"Global email list":[null,""],"email addresses listed here, separated by commas if applicable, will<br> receive notifications for <b>all</b> shows.":[null,""],"(This field may be blank except when testing.)":[null,""],"Email Subject":[null,""],"use a custom subject for some privacy protection?":[null,""],"(leave blank for the default SickRage subject)":[null,""],"configure per-show notifications here by entering email address(es), separated by commas,":[null,""],"after selecting a show in the drop-down box. Be sure to activate the 'Save for this show'":[null,""],"button below after each entry.":[null,""],"Slack":[null,""],"Slack brings all your communication together in one place. It's real-time messaging, archiving and search for modern teams.":[null,""],"should SickRage post messages on Slack?":[null,""],"Slack Incoming Webhook":[null,""],"Discord":[null,""],"All-in-one voice and text chat for gamers that's free, secure, and works on both your desktop and phone.":[null,""],"Should SickRage post messages on Discord?":[null,""],"Discord Incoming Webhook":[null,""],"Create webhook under channel settings.":[null,""],"Discord Bot Name":[null,""],"Blank will use webhook default Name.":[null,""],"Discord Avatar URL":[null,""],"Blank will use webhook default Avatar.":[null,""],"Discord TTS":[null,""],"Send notifications using text-to-speech":[null,""],"Post-Processing":[null,""],"Episode Naming":[null,""],"Metadata":[null,""],"Settings that dictate how SickRage should process completed downloads.":[null,""],"enable the automatic post processor to scan and process any files in your Post Processing Dir":[null,""],"do not use if you use an external Post Processing script":[null,""],"Post Processing Dir":[null,""],"the folder where your download client puts the completed TV downloads.":[null,""],"please use seperate downloading and completed folders in your download client if possible.":[null,""],"Processing Method":[null,""],"what method should be used to put files into the library?":[null,""],"if you keep seeding torrents after they finish, please avoid the 'move' processing method to prevent errors.":[null,""],"Auto Post-Processing Frequency":[null,""],"time in minutes to check for new files to auto post-process (min 10)":[null,""],"Postpone post processing":[null,""],"wait to process a folder if sync files are present.":[null,""],"Sync File Extensions":[null,""],"comma seperated list of extensions or filename globs SickRage ignores when Post Processing":[null,""],"Rename Episodes":[null,""],"rename episode using the Episode Naming settings?":[null,""],"Create missing show directories":[null,""],"create missing show directories when they get deleted":[null,""],"Add shows without directory":[null,""],"add shows without creating a directory (not recommended)":[null,""],"Move associated files":[null,""],"move associated (srt/srr/sfv/etc) files while post processing?":[null,""],"Rename .nfo file":[null,""],"rename the original .nfo file to .nfo-orig to avoid conflicts?":[null,""],"Associated file extensions":[null,""],"comma separated list of associated file extensions SickRage should keep while post processing.":[null,""],"leaving it empty means no associated files will be post processed":[null,""],"Delete non associated files":[null,""],"delete non associated files while post processing?":[null,""],"Change File Date":[null,""],"set last modified filedate to the date that the episode aired?":[null,""],"some systems may ignore this feature.":[null,""],"Timezone for File Date":[null,""],"local":[null,""],"network":[null,""],"what timezone should be used to change File Date?":[null,""],"Unpack":[null,""],"What to do with archived releases found in your <i>TV Download Dir</i>?":[null,""],"Ignore (do not process contents)":[null,""],"Unpack (process contents)":[null,""],"Treat as video (process archive as-is)":[null,""],"'Unpack' only works with RAR archives":[null,""],"Windows":[null,""],"WinRar is required on windows":[null,""],"Unpack Directory":[null,""],"Choose a path to unpack files, leave blank to unpack in download dir":[null,""],"Unrar Location":[null,""],"add the path to unrar if it is not in the system path":[null,""],"Alternate Unrar Tool":[null,""],"add the path to an alternate unrar tool if it is not in the system path":[null,""],"Delete RAR contents":[null,""],"delete content of RAR files, even if Process Method not set to move?":[null,""],"only working with RAR archive":[null,""],"Don't delete empty folders":[null,""],"leave empty folders when Post Processing?":[null,""],"can be overridden using manual Post Processing":[null,""],"Follow symbolic-links":[null,""],"follow down symbolic links in download directory?":[null,""],"<b>EXPERTS ONLY.</b><br>Enable only if you know what <b>circular symbolic links</b> are,<br>and can <b>verify that you have none</b>.":[null,""],"Use icacls":[null,""],"Windows only":[null,""],"sets video permissions after using the move method in post processing":[null,""],"Extra Scripts":[null,""],"see":[null,""],"for script arguments description and usage.":[null,""],"How SickRage will name and sort your episodes.":[null,""],"Name Pattern":[null,""],"Toggle Naming Legend":[null,""],"don't forget to add quality pattern. Otherwise after post-processing the episode will have UNKNOWN quality":[null,""],"Meaning":[null,""],"Pattern":[null,""],"Result":[null,""],"Use lower case if you want lower case names (eg. %sn, %e.n, %q_n etc)":[null,""],"Show Name":[null,""],"Show.Name":[null,""],"Show_Name":[null,""],"Season Number":[null,""],"XEM Season Number":[null,""],"Episode Number":[null,""],"XEM Episode Number":[null,""],"Episode Name":[null,""],"Episode.Name":[null,""],"Episode_Name":[null,""],"Air Date":[null,""],"Post-Processing Date":[null,""],"Quality":[null,""],"Scene Quality":[null,""],"Release Name":[null,""],"SickRage' is used in place of RLSGROUP if it could not be properly detected":[null,""],"Release Group":[null,""],"If episode is proper/repack add 'proper' to name.":[null,""],"Release Type":[null,""],"Multi-Episode Style":[null,""],"Single-EP Sample":[null,""],"Multi-EP sample":[null,""],"Strip Show Year":[null,""],"remove the TV show's year when renaming the file?":[null,""],"only applies to shows that have year inside parentheses":[null,""],"Custom Air-By-Date":[null,""],"name air-by-date shows differently than regular shows?":[null,""],"Toggle ABD Naming Legend":[null,""],"Regular Air Date":[null,""],"Year":[null,""],"Month":[null,""],"Day":[null,""],"Multi-EP style is ignored":[null,""],"Custom Sports":[null,""],"name sports shows differently than regular shows?":[null,""],"Toggle Sports Naming Legend":[null,""],"Sports Air Date":[null,""],"Custom Anime":[null,""],"name anime shows differently than regular shows?":[null,""],"Toggle Anime Naming Legend":[null,""],">XEM Season Number":[null,""],"Single-EP Anime Sample":[null,""],"Multi-EP Anime sample":[null,""],"Add Absolute Number":[null,""],"add the absolute number to the season/episode format?":[null,""],"only applies to anime. (eg. S15E45 - 310 vs S15E45)":[null,""],"Only Absolute Number":[null,""],"replace season/episode format with absolute number":[null,""],"only applies to anime.":[null,""],"No Absolute Number":[null,""],"don't include the absolute number":[null,""],"The data associated to the data. These are files associated to a TV show in the form of images and text that, when supported, will enhance the viewing experience.":[null,""],"Metadata Type":[null,""],"toggle metadata options that you wish to be created":[null,""],"multiple targets may be used":[null,""],"Select Metadata":[null,""],"Provider Priorities":[null,""],"Provider Options":[null,""],"Configure Custom Newznab Providers":[null,""],"Configure Custom Torrent Providers":[null,""],"Check off and drag the providers into the order you want them to be used.":[null,""],"At least one provider is required but two are recommended.":[null,""],"Torrent providers can be toggled in ":[null,""],"Provider does not support backlog searches at this time.":[null,""],"Provider is <b>NOT WORKING</b>.":[null,""],"Configure individual provider settings here.":[null,""],"Check with provider's website on how to obtain an API key if needed.":[null,""],"Configure provider":[null,""],"no providers available to configure.":[null,""],"URL":[null,""],"Enable daily searches":[null,""],"enable provider to perform daily searches.":[null,""],"Enable backlog searches":[null,""],"enable provider to perform backlog searches.":[null,""],"Season search mode":[null,""],"when searching for complete seasons you can choose to have it look for season packs only, or choose to have it build a complete season from just single episodes.":[null,""],"season packs only.":[null,""],"episodes only.":[null,""],"Enable fallback":[null,""],"when searching for a complete season depending on search mode you may return no results, this helps by restarting the search using the opposite search mode.":[null,""],"Custom URL":[null,""],"the URL should include the protocol (and port if applicable). Examples: http://192.168.1.4/ or http://localhost:3000/":[null,""],"Api key":[null,""],"Digest":[null,""],"Hash":[null,""],"Passkey":[null,""],"Cookies":[null,""],"example: uid=1234;pass=567845439634987<br>note: uid and pass are not your username/password.<br>use DevTools or Firebug to get these values after logging in on your browser.":[null,""],"Pin":[null,""],"Seed ratio":[null,""],"stop transfer when ratio is reached<br>(-1 SickRage default to seed forever, or leave blank for downloader default)":[null,""],"Minimum seeders":[null,""],"Minimum leechers":[null,""],"Confirmed download":[null,""],"only download torrents from trusted or verified uploaders ?":[null,""],"Ranked torrents":[null,""],"only download ranked torrents (trusted releases)":[null,""],"English torrents":[null,""],"only download english torrents, or torrents containing english subtitles":[null,""],"For Spanish torrents":[null,""],"ONLY search on this provider if show info is defined as \"Spanish\" (avoid provider's use for VOS shows)":[null,""],"Sorting results by":[null,""],"Freeleech":[null,""],"only download <b>\"FreeLeech\"</b> torrents.":[null,""],"Category":[null,""],"select torrent with Italian subtitle":[null,""],"Configure Custom<br>Newznab Providers":[null,""],"Add and setup or remove custom Newznab providers.":[null,""],"Select provider":[null,""],"-- add new provider --":[null,""],"Provider name":[null,""],"Site URL":[null,""],"Newznab search categories":[null,""],"select your Newznab categories on the left, and click the \"update categories\" button to use them for searching.) <b>don't forget to to save the form!":[null,""],"Update Categories":[null,""],"Add":[null,""],"Delete":[null,""],"Add and setup or remove custom RSS providers.":[null,""],"RSS URL":[null,""],"Search element":[null,""],"eg: title":[null,""],"Episode Search":[null,""],"NZB Search":[null,""],"Torrent Search":[null,""],"How to manage searching with":[null,""],"Randomize Providers":[null,""],"randomize the provider search order instead of going in order of placement":[null,""],"Download propers":[null,""],"replace original download with \"Proper\" or \"Repack\" if nuked":[null,""],"Check propers every":[null,""],"24 hours":[null,""],"4 hours":[null,""],"90 mins":[null,""],"45 mins":[null,""],"15 mins":[null,""],"Backlog search day(s)":[null,""],"number of day(s) that the \"Forced Backlog Search\" will cover (e.g. 7 Days)":[null,""],"Backlog search frequency":[null,""],"time in minutes between searches (min.":[null,""],"Daily search frequency":[null,""],"Usenet retention":[null,""],"age limit in days for usenet articles to be used (e.g. 500)":[null,""],"Ignore words":[null,""],"results with one or more word from this list will be ignored<br>separate words with a comma, e.g. \"word1,word2,word3\"":[null,""],"Require words":[null,""],"results with no word from this list will be ignored<br>separate words with a comma, e.g. \"word1,word2,word3\"":[null,""],"Trackers list":[null,""],"trackers that will be added to magnets without trackers<br>separate trackers with a comma, e.g. \"tracker1,tracker2,tracker3\"":[null,""],"Ignore language names in subbed results":[null,""],"ignore subbed releases based on language names <br>\n Example: \"dk\" will ignore words: dksub, dksubs, dksubbed, dksubed <br>\n separate languages with a comma, e.g. \"lang1,lang2,lang3":[null,""],"Allow high priority":[null,""],"set downloads of recently aired episodes to high priority":[null,""],"Use Failed Downloads":[null,""],"use Failed Download Handling?":[null,""],"will only work with snatched/downloaded episodes after enabling this":[null,""],"Delete Failed":[null,""],"delete files left over from a failed download?":[null,""],"this only works if Use Failed Downloads is enabled.":[null,""],"How to handle NZB search results.":[null,""],"Search NZBs":[null,""],"enable NZB search providers":[null,""],"Send .nzb files to":[null,""],"SABnzbd server URL":[null,""],"URL to your SABnzbd server (e.g. http://localhost:8080/)":[null,""],"SABnzbd username":[null,""],"(blank for none)":[null,""],"SABnzbd password":[null,""],"SABnzbd API key":[null,""],"locate at... SABnzbd Config -> General -> API Key":[null,""],"Use SABnzbd category":[null,""],"add downloads to this category (e.g. TV)":[null,""],"Use SABnzbd category (backlog episodes)":[null,""],"add downloads of old episodes to this category (e.g. TV)":[null,""],"Use SABnzbd category for anime":[null,""],"add anime downloads to this category (e.g. anime)":[null,""],"Use SABnzbd category for anime (backlog episodes)":[null,""],"add anime downloads of old episodes to this category (e.g. anime)":[null,""],"Use forced priority":[null,""],"enable to change priority from HIGH to FORCED":[null,""],"Black hole folder location":[null,""],"<b>.nzb</b> files are stored at this location for external software to find and use":[null,""],"Connect using HTTPS":[null,""],"enable Secure control in NZBGet and set the correct Secure Port here":[null,""],"NZBget host:port":[null,""],"(e.g. localhost:6789)":[null,""],"NZBget RPC host name and port number (not NZBgetweb!)":[null,""],"NZBget username":[null,""],"locate in nzbget.conf (default:nzbget)":[null,""],"NZBget password":[null,""],"locate in nzbget.conf (default:tegbzn6789)":[null,""],"Use NZBget category":[null,""],"send downloads marked this category (e.g. TV)":[null,""],"Use NZBget category (backlog episodes)":[null,""],"send downloads of old episodes marked this category (e.g. TV)":[null,""],"Use NZBget category for anime":[null,""],"send anime downloads marked this category (e.g. anime)":[null,""],"Use NZBget category for anime (backlog episodes)":[null,""],"send anime downloads of old episodes marked this category (e.g. anime)":[null,""],"NZBget priority":[null,""],"Very low":[null,""],"Low":[null,""],"Very high":[null,""],"Force":[null,""],"priority for daily snatches (no backlog)":[null,""],"Torrent host:port":[null,""],"URL to your Synology DSM (e.g. http://localhost:5000/)":[null,""],"Client username":[null,""],"Client password":[null,""],"Downloaded files location":[null,""],"where Synology Download Station will save downloaded files (blank for client default)":[null,""],"the destination has to be a shared folder for Synology DS":[null,""],"Click below to test":[null,""],"How to handle Torrent search results.":[null,""],"Search torrents":[null,""],"enable torrent search providers":[null,""],"Send .torrent files to":[null,""],"<b>.torrent</b> files are stored at this location for external software to find and use":[null,""],"URL to your torrent client (e.g. http://localhost:8000/)":[null,""],"Torrent RPC URL":[null,""],"the path without leading and trailing slashes (e.g. transmission)":[null,""],"Http Authentication":[null,""],"Verify certificate":[null,""],"disable if you get \"Deluge: Authentication Error\" in your log":[null,""],"verify SSL certificates for HTTPS requests":[null,""],"Add label to torrent":[null,""],"(blank spaces are not allowed)":[null,""],"label plugin must be enabled in Deluge clients":[null,""],"for QBitTorrent 3.3.1 and up":[null,""],"Add label to torrent for anime":[null,""],"for QBitTorrent 3.3.1 and up ":[null,""],"where <span id=\"torrent_client\">the torrent client</span> will save downloaded files (blank for client default)":[null,""],"the destination has to be a shared folder for Synology DS</span>":[null,""],"Minimum seeding time":[null,""],"time in hours":[null,""],"(default:'0' passes blank to client and '-1' passes nothing)":[null,""],"Start torrent paused":[null,""],"add .torrent to client but do <b style=\"font-weight:900\">not</b> start downloading":[null,""],"Allow high bandwidth":[null,""],"use high bandwidth allocation if priority is high":[null,""],"Test Connection":[null,""],"Windows Shares":[null,""],"Defines your existing windows shares so that we can add them to the browse dialog":[null,""],"Share #{number}":[null,""],"Share label":[null,""],"Hostname or IP":[null,""],"Share path":[null,""],"Subtitles Search":[null,""],"Subtitles Plugin":[null,""],"Plugin Settings":[null,""],"Settings that dictate how SickRage handles subtitles search results.":[null,""],"Search Subtitles":[null,""],"Subtitle Languages":[null,""],"Subtitle Directory":[null,""],"the directory where SickRage should store your <i>Subtitles</i> files.":[null,""],"leave empty if you want store subtitle in episode path.":[null,""],"Subtitle Find Frequency":[null,""],"time in hours between scans (default: 1)":[null,""],"Include Specials":[null,""],"include the show's specials when searching for subtitles?":[null,""],"Perfect matches":[null,""],"only download subtitles that match: release group, video codec, audio codec and resolution":[null,""],"if disabled you may get out of sync subtitles":[null,""],"Subtitles History":[null,""],"log downloaded Subtitle on History page?":[null,""],"Subtitles Multi-Language":[null,""],"append language codes to subtitle filenames?":[null,""],"this option is required if you use multiple subtitle languages":[null,""],"Delete unwanted subtitles":[null,""],"enable to delete unwanted subtitle languages bundled with release":[null,""],"Embedded Subtitles":[null,""],"ignore subtitles embedded inside video file?":[null,""],"this will ignore <u>all</u> embedded subtitles for every video file!":[null,""],"Hearing Impaired Subtitles":[null,""],"download hearing impaired style subtitles?":[null,""],"See":[null,""],"for a script arguments description.":[null,""],"Additional scripts separated by <b>|</b>.":[null,""],"Scripts are called after each episode has searched and downloaded subtitles.":[null,""],"For any scripted languages, include the interpreter executable before the script. See the following example":[null,""],"For Windows:":[null,""],"For Linux / OS X:":[null,""],"Subtitle Providers":[null,""],"Check off and drag the plugins into the order you want them to be used.":[null,""],"At least one plugin is required.":[null,""]," Web-scraping plugin":[null,""],"Provider Settings":[null,""],"Set user and password for each provider":[null,""],"User Name":[null,""],"Change Show":[null,""],"Prev Show":[null,""],"Next Show":[null,""],"Jump to Season":[null,""],"Specials":[null,""],"Poster for":[null,""],"Stars":[null,""],"minutes":[null,""],"View other popular {genre} shows on trakt.tv.":[null,""],"View other popular {imdbgenre} shows on IMDB.":[null,""],"Allowed":[null,""],"Preferred":[null,""],"Originally Airs":[null,""],"Show Status":[null,""],"Default EP Status":[null,""],"Location":[null,""],"Missing":[null,""],"Scene Name":[null,""],"Required Words":[null,""],"Ignored Words":[null,""],"Size":[null,""],"Info Language":[null,""],"Subtitles SR Metadata":[null,""],"Season Folders":[null,""],"Paused":[null,""],"Air-by-Date":[null,""],"Sports":[null,""],"DVD Order":[null,""],"Scene Numbering":[null,""],"Select Filtered Episodes":[null,""],"Clear All":[null,""],"Change selected episodes to":[null,""],"Select Columns":[null,""],"Hide Episodes":[null,""],"Show Episodes":[null,""],"NFO":[null,""],"TBN":[null,""],"Episode":[null,""],"Absolute":[null,""],"Scene":[null,""],"Scene Absolute":[null,""],"File Name":[null,""],"Airdate":[null,""],"Download":[null,""],"Change the value here if scene numbering differs from the indexer episode numbering":[null,""],"Change the value here if scene absolute numbering differs from the indexer absolute numbering":[null,""],"Manual Search":[null,""],"Do you want to mark this episode as failed?":[null,""],"The episode release name will be added to the failed history, preventing it to be downloaded again.":[null,""],"Do you want to include the current episode quality in the search?":[null,""],"Choosing No will ignore any releases with the same episode quality as the one currently downloaded/snatched.":[null,""],"Download subtitle":[null,""],"Do you want to re-download the subtitle for this language?":[null,""],"It will overwrite your current subtitle":[null,""],"Format":[null,""],"Advanced":[null,""],"Main Settings":[null,""],"Show Location":[null,""],"Preferred Quality":[null,""],"Default Episode Status":[null,""],"this will set the status for future episodes.":[null,""],"this only applies to episode filenames and the contents of metadata files.":[null,""],"search for subtitles":[null,""],"Use SR Metdata":[null,""],"use SickRage metadata when searching for subtitle, this will override the autodiscovered metadata":[null,""],"pause this show (SickRage will not download episodes)":[null,""],"Format Settings":[null,""],"Air by date":[null,""],"check if the show is released as Show.03.02.2010 rather than Show.S02E03.":[null,""],"in case of an air date conflict between regular and special episodes, the later will be ignored.":[null,""],"check if the show is Anime and episodes are released as Show.265 rather than Show.S02E03":[null,""],"check if the show is a sporting or MMA event released as Show.03.02.2010 rather than Show.S02E03":[null,""],"Season folders":[null,""],"group episodes by season folder (uncheck to store in a single folder)":[null,""],"search by scene numbering (uncheck to search by indexer numbering)":[null,""],"use the DVD order instead of the air order":[null,""],"a \"Force Full Update\" is necessary, and if you have existing episodes you need to sort them manually.":[null,""],"comma-separated <i>e.g. \"word1,word2,word3</i>\"":[null,""],"search results with one or more words from this list will be ignored.":[null,""],"e.g. \"word1,word2,word3\"":[null,""],"search results with no words from this list will be ignored.":[null,""],"Scene Exception":[null,""],"this will affect episode search on NZB and torrent providers.":[null,""],"this list appends to the original show name.":[null,""],"WARNING logs":[null,""],"ERROR logs":[null,""],"There are no events to display.":[null,""],"Limit":[null,""],"Layout":[null,""],"HistoryLayout":[null,""],"Compact":[null,""],"Detailed":[null,""],"Time":[null,""],"Provider":[null,""],"Missing Provider":[null,""],"missing provider":[null,""],"Directory":[null,""],"Show Name (tvshow.nfo)":[null,""],"Indexer":[null,""],"Enter the folder containing the episode":[null,""],"Process Method to be used":[null,""],"Copy":[null,""],"Move":[null,""],"Hard Link":[null,""],"Symbolic Link":[null,""],"Symbolic Link Reversed":[null,""],"Force already Post Processed Dir/Files":[null,""],"Mark Dir/Files as priority download":[null,""],"(Check it to replace the file even if it exists at higher quality)":[null,""],"Delete files and folders":[null,""],"(Check it to delete files and folders like auto processing)":[null,""],"Don't use processing queue":[null,""],"(If checked this will return the result of the process here, but may be slow!)":[null,""],"Mark download as failed":[null,""],"Process":[null,""],"Download subtitles for this show?":[null,""],"use SickRage metadata when searching for subtitle, <br />this will override the autodiscovered metadata":[null,""],"Status for previously aired episodes":[null,""],"Status for all future episodes":[null,""],"Group episodes by season folder?":[null,""],"Is this show an Anime?":[null,""],"Is this show scene numbered?":[null,""],"Save Defaults":[null,""],"Use current values as the defaults":[null,""],"<p>Select your preferred fansub groups from the <b>Available Groups</b> and add them to the <b>Whitelist</b>. Add groups to the <b>Blacklist</b> to ignore them.</p>\n <p>The <b>Whitelist</b> is checked <i>before</i> the <b>Blacklist</b>.</p>\n <p>Groups are shown as <b>Name</b> | <b>Rating</b> | <b>Number of subbed episodes</b>.</p>\n <p>You may also add any fansub group not listed to either list manually.</p>\n <p>When doing this please note that you can only use groups listed on anidb for this anime.\n <br>If a group is not listed on anidb but subbed this anime, please correct anidb's data.</p>":[null,""],"Whitelist":[null,""],"Available Groups":[null,""],"Add to Whitelist":[null,""],"Add to Blacklist":[null,""],"Blacklist":[null,""],"Custom Group":[null,""],"Allowed Quality:":[null,""],"Preferred Quality:":[null,""],"Filter Show Name":[null,""],"Root":[null,""],"All":[null,""],"Clear Filter(s)":[null,""],"Poster":[null,"Αφίσα"],"Small Poster":[null,""],"Banner":[null,"Banner"],"Simple":[null,""],"Next Episode":[null,""],"Progress":[null,""],"Direction":[null,""],"Ascending":[null,""],"Descending":[null,""],"Poster Size":[null,""],"Continuing":[null,""],"Ended":[null,""],"Total":[null,""],"Invalid date":[null,""],"No Network":[null,""],"Next Ep":[null,""],"Prev Ep":[null,""],"Show":[null,"Εμφάνιση"],"Downloads":[null,""],"Active":[null,""],"loading":[null,""],"Loading...":[null,""],"<p><b><u>Preferred</u></b> qualities will replace those in <b><u>allowed</u></b>, even if they are lower.</p>":[null,""],"New":[null,""],"Set as Default":[null,""],"Remember me":[null,""],"Edit Selected":[null,""],"Subtitle":[null,""],"Default Ep Status":[null,""],"Update":[null,""],"Rescan":[null,""],"Rename":[null,""],"Search Subtitle":[null,""],"Force Metadata Regen":[null,""],"Snatched (Allowed)":[null,""],"Jump to Show":[null,""],"Force Backlog":[null,""],"Manage episodes with status":[null,""],"Manage":[null,""],"None of your episodes have status":[null,""],"Shows containing":[null,""],"episodes":[null,""],"Set checked shows/episodes to":[null,""],"Go":[null,""],"Select all":[null,""],"Clear all":[null,""],"Release":[null,""],"Backlog Search":[null,""],"Not in progress":[null,""],"In Progress":[null,""],"Daily Search":[null,""],"Find Propers Search":[null,""],"Propers search disabled":[null,""],"Subtitle Search":[null,""],"Subtitle search disabled":[null,""],"Search Queue":[null,""],"pending items":[null,""],"Daily":[null,""],"Manual":[null,""],"Changing any settings marked with (<span class=\"separator\">*</span>) will force a refresh of the selected shows.":[null,""],"Selected Shows":[null,""],"Root Directories":[null,""],"Current":[null,""],"Keep":[null,""],"Custom":[null,""],"Group episodes by season folder (set to \"No\" to store in a single folder).":[null,""],"Pause these shows (SickRage will not download episodes).":[null,""],"This will set the status for future episodes.":[null,""],"Search by scene numbering (set to \"No\" to search by indexer numbering).":[null,""],"Set if these shows are Anime and episodes are released as Show.265 rather than Show.S02E03":[null,""],"Set if these shows are sporting or MMA events released as Show.03.02.2010 rather than Show.S02E03.":[null,""],"In case of an air date conflict between regular and special episodes, the later will be ignored.":[null,""],"Set if these shows are released as Show.03.02.2010 rather than Show.S02E03.":[null,""],"Search for subtitles.":[null,""],"All of your episodes have {subsLanguage} subtitles.":[null,""],"Manage episodes without":[null,""],"Episodes without {subsLanguage} subtitles.":[null,""],"Episodes without {subtitleLanguage} (undefined) subtitles.":[null,""],"Download missed subtitles for selected episodes":[null,""],"Performing Restart":[null,""],"Waiting for SickRage to shut down":[null,""],"Waiting for SickRage to start again":[null,""],"Loading the default page":[null,""],"Error: The restart has timed out, perhaps something prevented SickRage from starting again?":[null,""],"Key":[null,""],"Missed":[null,""],"Today":[null,""],"Soon":[null,""],"Later":[null,""],"Subscribe":[null,""],"Date":[null,""],"View Paused":[null,""],"Hidden":[null,""],"Shown":[null,""],"Calendar":[null,"Ημερολόγιο"],"List":[null,"Λίστα"],"Ends":[null,""],"Next Ep Name":[null,""],"Run time":[null,""],"Indexers":[null,""],"No shows for this day":[null,""],"Airs":[null,""],"Plot":[null,""],"Show Update":[null,""],"Version Check":[null,""],"Proper Finder":[null,""],"Post Process":[null,""],"Subtitles Finder":[null,""],"Scheduler":[null,""],"Alive":[null,""],"Start Time":[null,""],"Cycle Time":[null,""],"Next Run":[null,""],"Last Run":[null,""],"Silent":[null,""],"True":[null,""],"N/A":[null,""],"Show id":[null,""],"Show name":[null,""],"Priority":[null,""],"Added":[null,""],"Queue type":[null,""],"LOW":[null,""],"NORMAL":[null,""],"HIGH":[null,""],"Disk Space":[null,""],"Free space":[null,""],"TV Download Directory":[null,""],"Media Root Directories":[null,""],"Preview of the proposed name changes":[null,""],"All Seasons":[null,""],"select all":[null,""],"Rename Selected":[null,""],"Cancel Rename":[null,""],"Old Location":[null,""],"New Location":[null,""],"Trakt API did not return any results, please check your config.":[null,""],"votes":[null,""],"Remove Show":[null,""],"Level":[null,""],"Filter":[null,""],"All non-absolute folder locations are relative to ":[null,""],"Manual Post-Processing":[null,""],"Episode Status Management":[null,""],"Update PLEX":[null,""],"Update KODI":[null,""],"Update Emby":[null,""],"Missed Subtitle Management":[null,""],"Help & Info":[null,""],"Backup & Restore":[null,""],"Tools":[null,""],"Support SickRage":[null,""],"View Errors":[null,""],"View Warnings":[null,""],"View Log":[null,""],"Check For Updates":[null,""],"Restart":[null,""],"Shutdown":[null,""],"Logout":[null,""],"Server Status":[null,""],"View overview of snatched episodes":[null,""],"Episodes Downloaded":[null,""],"Memory used":[null,""],"Load time":[null,""],"Branch":[null,""],"Now":[null,""]}}}} \ No newline at end of file +{"messages":{"domain":"messages","locale_data":{"messages":{"100":[null,""],"250":[null,""],"500":[null,""],"":{"domain":"messages","plural_forms":"nplurals=2; plural=(n != 1);","lang":"el_GR"},"Drama":[null,""],"Mystery":[null,""],"Science-Fiction":[null,""],"Crime":[null,""],"Action":[null,""],"Comedy":[null,""],"Thriller":[null,""],"Animation":[null,""],"Family":[null,""],"Fantasy":[null,""],"Adventure":[null,""],"Horror":[null,""],"Film-Noir":[null,""],"Sci-Fi":[null,""],"Romance":[null,""],"Sport":[null,""],"War":[null,""],"Biography":[null,""],"History":[null,""],"Music":[null,""],"Western":[null,""],"News":[null,""],"Sitcom":[null,""],"Reality-TV":[null,""],"Documentary":[null,""],"Game-Show":[null,""],"Musical":[null,""],"Talk-Show":[null,""],"Started Download":[null,"Έναρξη λήψης"],"Download Finished":[null,"Ολοκλήρωση λήψης"],"Subtitle Download Finished":[null,"Ολοκλήρωση κατεβάσματος υπότιτλων"],"SickRage Updated":[null,"Το SickRage ενημερώθηκε"],"SickRage Updated To Commit#: ":[null,""],"SickRage new login":[null,"Νέα σύνδεση SickRage"],"New login from IP: {0}. http://geomaplookup.net/?ip={0}":[null,"Νέα είσοδος από την IP: {0}. http://geomaplookup.net/?IP={0}"],"Repeat":[null,""],"Repeat (Separated)":[null,""],"Extend":[null,""],"Extend (Limited)":[null,""],"Extend (Limited, E-prefixed)":[null,""],"Downloaded":[null,""],"Snatched":[null,""],"Snatched (Proper)":[null,""],"Failed":[null,""],"Snatched (Best)":[null,""],"Archived":[null,"Αρχειοθετημένο"],"Unknown":[null,"Άγνωστο"],"Unaired":[null,""],"Skipped":[null,""],"Wanted":[null,""],"Ignored":[null,""],"Subtitled":[null,""],"For best results please set the Download Station alias as":[null,""],"You can check this setting in the Synology DSM":[null,""],"Control Panel":[null,""],"Application Portal":[null,""],"Make sure you allow DSM to be embedded with iFrames too in":[null,""],"DSM Settings":[null,""],"Security":[null,""],"<No Filter>":[null,""],"Daily Searcher":[null,""],"Backlog":[null,""],"Show Updater":[null,""],"Check Version":[null,""],"Show Queue":[null,""],"Search Queue (All)":[null,""],"Search Queue (Daily Searcher)":[null,""],"Search Queue (Backlog)":[null,""],"Search Queue (Manual)":[null,""],"Search Queue (Retry/Failed)":[null,""],"Search Queue (RSS)":[null,""],"Find Propers":[null,""],"Postprocessor":[null,""],"Find Subtitles":[null,""],"Trakt Checker":[null,""],"Event":[null,""],"Error":[null,""],"Tornado":[null,""],"Thread":[null,""],"Main":[null,""],"Loading":[null,""],"New update found for SickRage, starting auto-updater":[null,""],"Update was successful":[null,""],"Update failed!":[null,""],"Backup":[null,""],"Config backup in progress...":[null,""],"Config backup successful, updating...":[null,""],"Config backup failed, aborting update":[null,""],"No update needed":[null,""],"Mako Error":[null,"Σφάλμα Mako"],"Oops":[null,"Ωχ"],"Wrong API key used":[null,""],"Login":[null,"Είσοδος"],"API Key not generated":[null,""],"API Builder":[null,""],"Schedule":[null,"Χρονοδιάγραμμα"],"Test 1":[null,""],"This is test number 1":[null,""],"Test 2":[null,""],"This is test number 2":[null,""],"You're using the {branch} branch. Please use 'master' unless specifically asked":[null,""],"Invalid show parameters":[null,""],"Invalid parameters":[null,""],"Episode couldn't be retrieved":[null,""],"Home":[null,"Αρχική σελίδα"],"Show List":[null,""],"Error: Unsupported Request. Send jsonp request with 'callback' variable in the query string.":[null,""],"Success. Connected and authenticated":[null,""],"Authentication failed. SABnzbd expects":[null,""],"as authentication method":[null,""],"Unable to connect to host":[null,"Αδυναμία σύνδεσης στον διακομιστή"],"SMS sent successfully":[null,""],"Problem sending SMS: {message}":[null,""],"Telegram notification succeeded. Check your Telegram clients to make sure it worked":[null,""],"Error sending Telegram notification: {message}":[null,""],"join notification succeeded. Check your join clients to make sure it worked":[null,""],"Error sending join notification: {message}":[null,""]," with password":[null," με κωδικό πρόσβασης"],"Registered and Tested growl successfully {growl_host}":[null,""],"Registration and Testing of growl failed {growl_host}":[null,""],"Test prowl notice sent successfully":[null,""],"Test prowl notice failed":[null,""],"Boxcar2 notification succeeded. Check your Boxcar2 clients to make sure it worked":[null,""],"Error sending Boxcar2 notification":[null,""],"Pushover notification succeeded. Check your Pushover clients to make sure it worked":[null,""],"Error sending Pushover notification":[null,""],"Key verification successful":[null,""],"Unable to verify key":[null,"Δεν είναι δυνατή η επαλήθευση του κλειδιού"],"Tweet successful, check your twitter to make sure it worked":[null,""],"Error sending tweet":[null,""],"Please enter a valid account sid":[null,""],"Please enter a valid auth token":[null,""],"Please enter a valid phone sid":[null,""],"Please format the phone number as \"+1-###-###-####\"":[null,""],"Authorization successful and number ownership verified":[null,""],"Error sending sms":[null,""],"Slack message successful":[null,""],"Slack message failed":[null,""],"Discord message successful":[null,""],"Discord message failed":[null,""],"Test KODI notice sent successfully to {kodi_host}":[null,""],"Test KODI notice failed to {kodi_host}":[null,""],"Successful test notice sent to Plex Home Theater ... {plex_clients}":[null,""],"Test failed for Plex Home Theater ... {plex_clients}":[null,""],"Tested Plex Home Theater(s)":[null,""],"Successful test of Plex Media Server(s) ... {plex_servers}":[null,""],"Test failed, No Plex Media Server host specified":[null,""],"Test failed for Plex Media Server(s) ... {plex_servers}":[null,""],"Tested Plex Media Server host(s)":[null,""],"Tried sending desktop notification via libnotify":[null,""],"Test notice sent successfully to {emby_host}":[null,""],"Test notice failed to {emby_host}":[null,""],"Successfully started the scan update":[null,""],"Test failed to start the scan update":[null,""],"Test notice sent successfully to {nmj2_host}":[null,""],"Test notice failed to {nmj2_host}":[null,""],"Trakt Authorized":[null,""],"Trakt Not Authorized!":[null,""],"Test email sent successfully! Check inbox.":[null,""],"ERROR: {last_error}":[null,""],"Test NMA notice sent successfully":[null,""],"Test NMA notice failed":[null,""],"Pushalot notification succeeded. Check your Pushalot clients to make sure it worked":[null,""],"Error sending Pushalot notification":[null,""],"Pushbullet notification succeeded. Check your device to make sure it worked":[null,""],"Error sending Pushbullet notification":[null,""],"Status":[null,""],"Restarting SickRage":[null,""],"Update Failed":[null,""],"Update wasn't successful, not restarting. Check your log for more information.":[null,""],"Checking out branch":[null,""],"Already on branch":[null,""],"Invalid show ID: {show}":[null,""],"Show not in show list":[null,""],"Edit":[null,"Επεξεργασία"],"This show is in the process of being downloaded - the info below is incomplete.":[null,""],"The information on this page is in the process of being updated.":[null,""],"The episodes below are currently being refreshed from disk":[null,""],"Currently downloading subtitles for this show":[null,""],"This show is queued to be refreshed.":[null,""],"This show is queued and awaiting an update.":[null,""],"This show is queued and awaiting subtitles download.":[null,""],"Resume":[null,""],"Pause":[null,"Παύση"],"Remove":[null,"Κατάργηση"],"Re-scan files":[null,""],"Force Full Update":[null,""],"Update show in KODI":[null,""],"Update show in Emby":[null,""],"Hide specials":[null,""],"Show specials":[null,""],"Preview Rename":[null,""],"Download Subtitles":[null,""],"No scene exceptions":[null,""],"Invalid show ID":[null,""],"Unable to find the specified show":[null,""],"Unable to retreive Fansub Groups from AniDB.":[null,""],"Edit Show":[null,""],"Unable to refresh this show: {error}":[null,""],"New location <tt>{location}</tt> does not exist":[null,""],"Unable to update show: {error}":[null,""],"Unable to force an update on scene exceptions of the show.":[null,""],"Unable to force an update on scene numbering of the show.":[null,""],"{num_errors:d} error{plural} while saving changes:":[null,""],"{show_name} has been {paused_resumed}":[null,""],"resumed":[null,""],"paused":[null,""],"{show_name} has been {deleted_trashed} {was_deleted}":[null,""],"deleted":[null,""],"trashed":[null,""],"(media untouched)":[null,""],"(with all related media)":[null,""],"Unable to refresh this show.":[null,""],"Unable to update this show.":[null,""],"Library update command sent to KODI host(s)): {kodi_hosts}":[null,""],"Unable to contact one or more KODI host(s)): {kodi_hosts}":[null,""],"Library update command sent to Plex Media Server host: {plex_server}":[null,""],"Unable to contact Plex Media Server host: {plex_server}":[null,""],"Library update command sent to Emby host: {emby_host}":[null,""],"Unable to contact Emby host: {emby_host}":[null,""],"You must specify a show and at least one episode":[null,""],"Invalid status":[null,""],"Backlog was automatically started for the following seasons of <b>{show_name}</b>":[null,""],"Season":[null,""],"Backlog started":[null,""],"Retrying Search was automatically started for the following season of <b>{show_name}</b>":[null,""],"Retry Search started":[null,""],"You must specify a show":[null,""],"Can't rename episodes when the show dir is missing.":[null,""],"New subtitles downloaded: {new_subtitle_languages}":[null,""],"No subtitles downloaded":[null,""],"IRC":[null,""],"Could not load news from the repo. [Click here for news.md])({news_url})":[null,""],"The was a problem connecting to github, please refresh and try again":[null,""],"Could not load changes from the repo. [Click here for CHANGES.md]({changes_url})":[null,""],"Changelog":[null,""],"Post Processing":[null,""],"Add Shows":[null,""],"No folders selected.":[null,""],"New Show":[null,""],"Trending Shows":[null,""],"Popular Shows":[null,""],"Most Anticipated Shows":[null,""],"Most Collected Shows":[null,""],"Most Watched Shows":[null,""],"Most Played Shows":[null,""],"Recommended Shows":[null,""],"New Shows":[null,""],"Season Premieres":[null,""],"Existing Show":[null,""],"No root directories setup, please go back and add one.":[null,""],"Show added":[null,""],"Adding the specified show {show_name}":[null,""],"Missing params, no Indexer ID or folder: {show_to_add} and {root_dir}/{show_path}":[null,""],"Unknown error. Unable to add show due to problem with show selection.":[null,""],"Unable to add show":[null,""],"Folder {show_dir} exists already":[null,""],"Unable to create the folder {show_dir}, can't add the show":[null,""],"Adding the specified show into {show_dir}":[null,""],"Shows Added":[null,""],"Automatically added {num_shows} from their existing metadata files":[null,""],"Mass Update":[null,""],"Episode Overview":[null,""],"Missing Subtitles":[null,""],"Backlog Overview":[null,""],"Mass Edit":[null,""],"Unable to update show: {excption_format}":[null,""],"Unable to refresh show {show_name}: {excption_format}":[null,""],"Errors encountered":[null,""],"Updates":[null,""],"Refreshes":[null,""],"Renames":[null,""],"Subtitles":[null,""],"The following actions were queued":[null,""],"Failed Downloads":[null,""],"Manage Searches":[null,""],"Backlog search started":[null,""],"Daily search started":[null,""],"Find propers search started":[null,""],"Subtitle search started":[null,""],"Remove Selected":[null,""],"Clear History":[null,""],"Trim History":[null,""],"Selected history entries removed":[null,""],"History cleared":[null,""],"Removed history entries older than 30 days":[null,""],"General":[null,""],"Backup/Restore":[null,""],"Search Settings":[null,""],"Search Providers":[null,""],"Subtitles Settings":[null,""],"Notifications":[null,""],"Anime":[null,""],"SickRage Configuration":[null,""],"Config - Shares":[null,""],"Windows Shares Configuration":[null,""],"Saved Shares":[null,""],"Your Windows share settings have been saved":[null,""],"Config - General":[null,""],"General Configuration":[null,""],"Saved Defaults":[null,""],"Your \"add show\" defaults have been set to your current selections.":[null,""],"Unable to create directory {directory}, log directory not changed.":[null,""],"Unable to create directory {directory}, https cert directory not changed.":[null,""],"Unable to create directory {directory}, https key directory not changed.":[null,""],"Error(s) Saving Configuration":[null,""],"Configuration Saved":[null,""],"Config - Backup/Restore":[null,""],"Config - Episode Search":[null,""],"Config - Post Processing":[null,""],"Unpacking Not Supported, disabling unpack setting":[null,""],"You tried saving an invalid normal naming config, not saving your naming settings":[null,""],"You tried saving an invalid anime naming config, not saving your naming settings":[null,""],"Config - Providers":[null,""],"No Provider Name specified":[null,""],"No Provider Url specified":[null,""],"No Provider Api key specified":[null,""],"Config - Notifications":[null,""],"Config - Subtitles":[null,""],"Config - Anime":[null,""],"Clear Errors":[null,""],"Clear Warnings":[null,""],"Submit Errors":[null,""],"Logs & Errors":[null,""],"Log File":[null,""],"Logs":[null,""],"This is a test notification from SickRage":[null,""],"Choose Directory":[null,""],"Select log file folder location":[null,""],"Select CSS file":[null,""],"Select backup folder to save to":[null,""],"Select backup files to restore":[null,""],"Please fill out the necessary fields above.":[null,""],"<b>Step 1:</b> Confirm Authorization":[null,""],"Check blacklist name; the value needs to be a trakt slug":[null,""],"You must provide a recipient email address!":[null,""],"You didn't supply a Pushbullet api key":[null,""],"Don't forget to save your new pushbullet settings.":[null,""],"Select TV Download Directory":[null,""],"Select Unpack Directory":[null,""],"This pattern is invalid.":[null,""],"This pattern would be invalid without the folders, using it will force \"Season Folders\" on for all shows.":[null,""],"This pattern is valid.":[null,""],"Select .nzb black hole/watch location":[null,""],"Select .torrent black hole/watch location":[null,""],"Select .torrent download location":[null,""],"Minimum seeding time is":[null,""],"URL to your uTorrent client (e.g. http://localhost:8000)":[null,""],"Stop seeding when inactive for":[null,""],"URL to your Transmission client (e.g. http://localhost:9091)":[null,""],"URL to your Deluge client (e.g. http://localhost:8112)":[null,""],"IP or Hostname of your Deluge Daemon (e.g. scgi://localhost:58846)":[null,""],"URL to your Synology DS client (e.g. http://localhost:5000)":[null,""],"URL to your rTorrent client (e.g. scgi://localhost:5000 <br> or https://localhost/rutorrent/plugins/httprpc/action.php)":[null,""],"URL to your qBittorrent client (e.g. http://localhost:8080)":[null,""],"URL to your MLDonkey (e.g. http://localhost:4080)":[null,""],"URL to your putio client (e.g. http://localhost:8080)":[null,""],"<a herf=\"https://app.put.io/oauth/apps/new\" target=\"_blank\"> Create a new OAuth app for put.io</a>":[null,""],"Put.io Parent Folder":[null,""],"Put.io OAuth Token":[null,""],"Show Episodes":[null,""],"Hide Episodes":[null,""],"Select Show Location":[null,""],"Select Unprocessed Episode Folder":[null,""],"DELETED":[null,""],"Resume updating the log on this page.":[null,""],"Pause updating the log on this page.":[null,""],"searching {searchingFor}...":[null,""],"search timed out, try again or try another indexer":[null,""],"loading folders...":[null,""],"Loading...":[null,""],"You have reached this page by accident, please check the url.":[null,""],"A mako error has occured.<br>\n If this happened during an update a simple page refresh may be the solution.<br>\n Mako errors that happen during updates may be a one time error if there were significant ui changes.":[null,""],"Show/Hide Error":[null,""],"Add New Show":[null,""],"For shows that you haven't downloaded yet, this option finds a show on theTVDB.com, creates a directory for it's episodes, and adds it to SickRage.":[null,""],"Add From Trakt Lists":[null,""],"For shows that you haven't downloaded yet, this option lets you choose from a show from one of the Trakt lists to add to SickRage.":[null,""],"Add From IMDB's Popular Shows":[null,""],"View IMDB's list of the most popular shows. This feature uses IMDB's MOVIEMeter algorithm to identify popular TV Series.":[null,""],"Add Existing Shows":[null,""],"Use this option to add shows that already have a folder created on your hard drive. SickRage will scan your existing metadata/episodes and add the show accordingly.":[null,""],"Add Existing Show":[null,""],"Manage Directories":[null,""],"Customize Options":[null,""],"SickRage can add existing shows, using the current options, by using locally stored NFO/XML metadata to eliminate user interaction. If you would rather have SickRage prompt you to customize each show, then use the checkbox below.":[null,""],"Prompt me to set settings for each show":[null,""],"Displaying folders within these directories which aren't already added to SickRage":[null,""],"Submit":[null,""],"Find a show on theTVDB":[null,""],"Show retrieved from existing metadata":[null,""],"All Indexers":[null,""],"Search":[null,""],"This will only affect the language of the retrieved metadata file contents and episode filenames.":[null,""],"This <b>DOES NOT</b> allow SickRage to download non-english TV episodes!":[null,""],"Pick the parent folder":[null,""],"Pre-chosen Destination Folder":[null,""],"Customize options":[null,""],"Add Show":[null,""],"Skip Show":[null,""],"Sort By":[null,""],"Name":[null,""],"Original":[null,""],"Votes":[null,""],"Rating":[null,""],"Rating > Votes":[null,""],"Sort Order":[null,""],"Asc":[null,""],"Desc":[null,""],"Fetching of IMDB Data failed. Are you online?":[null,""],"Exception":[null,""],"Select Trakt List":[null,""],"Most Anticipated":[null,""],"Trending":[null,""],"Popular":[null,""],"Most Watched":[null,""],"Most Played":[null,""],"Most Collected":[null,""],"Recommended":[null,""],"Toggle navigation":[null,""],"Profile":[null,""],"JSONP":[null,""],"Back to SickRage":[null,""],"Parameters":[null,""],"Required":[null,""],"Description":[null,""],"Type":[null,""],"Default value":[null,""],"Allowed values":[null,""],"Playground":[null,""],"Clear":[null,""],"Yes":[null,""],"No":[null,""],"season":[null,""],"episode":[null,""],"Python Version":[null,""],"SSL Version":[null,""],"OS":[null,""],"Locale":[null,""],"User":[null,""],"Program Folder":[null,""],"Config File":[null,""],"Database File":[null,""],"Cache Folder":[null,""],"Log Folder":[null,""],"Arguments":[null,""],"Web Root":[null,""],"Website":[null,""],"Wiki":[null,""],"Source":[null,""],"IRC Chat":[null,""],"AnimeDB Settings":[null,""],"Look & Feel":[null,""],"AniDB is non-profit database of anime information that is freely open to the public":[null,""],"Enable":[null,""],"should SickRage use data from AniDB?":[null,""],"AniDB Username":[null,""],"username of your AniDB account":[null,""],"AniDB Password":[null,""],"password of your AniDB account":[null,""],"AniDB MyList":[null,""],"do you want to add the PostProcessed episodes to the MyList?":[null,""],"Look and Feel":[null,""],"How should the anime functions show and behave.":[null,""],"Split show lists":[null,""],"separate anime and normal shows in groups":[null,""],"Split in tabs":[null,""],"use tabs for when splitting show lists":[null,""],"Restore":[null,""],"Backup your main database file and config.":[null,""],"Select the folder you wish to save your backup file to":[null,""],"Restore your main database file and config.":[null,""],"Select the backup file you wish to restore":[null,""],"Misc":[null,""],"Interface":[null,""],"Advanced Settings":[null,""],"Startup options. Indexer options. Log and show file locations.":[null,""],"Some options may require a manual restart to take effect.":[null,""],"Default Indexer Language":[null,""],"for adding shows and metadata providers":[null,""],"Launch browser":[null,""],"open the SickRage home page on startup":[null,""],"Initial page":[null,""],"Shows":[null,""],"when launching SickRage interface":[null,""],"Choose hour to update shows":[null,""],"with information such as next air dates, show ended, etc. Use 15 for 3pm, 4 for 4am etc.":[null,""],"note":[null,""],"minutes are randomized each time SickRage is started":[null,""],"Send to trash for actions":[null,""],"when using show \"Remove\" and delete files":[null,""],"on scheduled deletes of the oldest log files":[null,""],"selected actions use trash (recycle bin) instead of the default permanent delete":[null,""],"Log file folder location":[null,""],"Number of Log files saved":[null,""],"number of log files saved when rotating logs (default: 5) (REQUIRES RESTART)":[null,""],"Size of Log files saved":[null,""],"maximum size in MB of the log file (default: 1MB) (REQUIRES RESTART)":[null,""],"Use initial indexer set to":[null,""],"as the default selection when adding new shows":[null,""],"Timeout show indexer at":[null,""],"seconds of inactivity when finding new shows (default:20)":[null,""],"Show root directories":[null,""],"where the files of shows are located":[null,""],"Save Changes":[null,""],"Options for software updates.":[null,""],"Check software updates":[null,""],"and display notifications when updates are available. Checks are run on startup and at the frequency set below*":[null,""],"Automatically update":[null,""],"fetch and install software updates. Updates are run on startup and in the background at the frequency set below*":[null,""],"Check the server every*":[null,""],"hours for software updates (default:1)":[null,""],"Notify on software update":[null,""],"send a message to all enabled notifiers when SickRage has been updated":[null,""],"User Interface":[null,""],"Options for visual appearance.":[null,""],"Interface Language":[null,""],"System Language":[null,""],"for appearance to take effect, save then refresh your browser":[null,""],"Display theme":[null,""],"Dark":[null,""],"Light":[null,""],"Use a background image":[null,""],"use a custom image as background for SickRage":[null,""],"Background Path":[null,""],"Path to the background image":[null,""],"Show fanart in the background":[null,""],"on the show summary page":[null,""],"Fanart transparency":[null,""],"transparency of the fanart in the background":[null,""],"Use a custom stylesheet file":[null,""],"use a custom .css file to style SickRage (for advanced users)":[null,""],"Stylesheet File Path":[null,""],"Path to the stylesheet (.css) file":[null,""],"Show all seasons":[null,""],"Sort with \"The\", \"A\", \"An\"":[null,""],"include articles (\"The\", \"A\", \"An\") when sorting show lists":[null,""],"Missed episodes range":[null,""],"set the range in days of the missed episodes in the Schedule page":[null,""],"Display fuzzy dates":[null,""],"move absolute dates into tooltips and display e.g. \"Last Thu\", \"On Tue\"":[null,""],"Trim zero padding":[null,""],"remove the leading number \"0\" shown on hour of day, and date of month":[null,""],"Date style":[null,""],"Use System Default":[null,""],"Time style":[null,""],"seconds are only shown on the History page":[null,""],"Timezone":[null,""],"Local":[null,""],"Network":[null,""],"display dates and times in either your timezone or the shows network timezone":[null,""],"use local timezone to start searching for episodes minutes after show ends (depends on your dailysearch frequency)":[null,""],"Download url":[null,""],"URL where the shows can be downloaded.":[null,""],"Web Interface":[null,""],"it is recommended that you enable a username and password to secure SickRage from being tampered with remotely.":[null,""],"these options require a manual restart to take effect.":[null,""],"API key":[null,""],"used to give 3rd party programs limited access to SickRage":[null,""],"you can try all the features of the API":[null,""],"here":[null,""],"HTTP logs":[null,""],"enable logs from the internal Tornado web server":[null,""],"HTTP username":[null,""],"set blank for no login":[null,""],"HTTP password":[null,""],"blank = no authentication":[null,""],"HTTP port":[null,""],"web port to browse and access SickRage (default:8081)":[null,""],"Notify on login":[null,""],"enable to be notified when a new login happens in webserver":[null,""],"Listen on IPv6":[null,""],"attempt binding to any available IPv6 address":[null,""],"Enable HTTPS":[null,""],"enable access to the web interface using a HTTPS address":[null,""],"HTTPS certificate":[null,""],"file name or path to HTTPS certificate":[null,""],"HTTPS key":[null,""],"file name or path to HTTPS key":[null,""],"Reverse proxy headers":[null,""],"accept the following reverse proxy headers (advanced)...":[null,""],"(X-Forwarded-For, X-Forwarded-Host, and X-Forwarded-Proto)":[null,""],"CPU throttling":[null,""],"Normal (default). High is lower and Low is higher CPU use":[null,""],"Anonymous redirect":[null,""],"backlink protection via anonymizer service, must end in \"?\"":[null,""],"Enable debug":[null,""],"enable debug logs":[null,""],"Verify SSL Certs":[null,""],"verify SSL Certificates (Disable this for broken SSL installs (Like QNAP))":[null,""],"No Restart":[null,""],"only shutdown when restarting SR":[null,""],"only select this when you have external software restarting SR automatically when it stops (like FireDaemon)":[null,""],"Encrypt passwords":[null,""],"in the <code>config.ini</code> file":[null,""],"warning":[null,""],"passwords must only contain":[null,""],"ASCII characters":[null,""],"Unprotected calendar":[null,""],"allow subscribing to the calendar without user and password":[null,""],"some services like Google Calendar only work this way":[null,""],"Google Calendar Icons":[null,""],"show an icon next to exported calendar events in Google Calendar":[null,""],"Proxy host":[null,""],"blank to disable or proxy to use when connecting to providers":[null,""],"also use global proxy setting for indexers (tvdb, xem, anidb, etc.)":[null,""],"Skip Remove Detection":[null,""],"skip detection of removed files":[null,""],"if disabled the episode will be set to the default deleted status":[null,""],"Default deleted episode status":[null,""],"define the status to be set for media file that has been deleted.":[null,""],"Archived option will keep previous downloaded quality":[null,""],"example: Downloaded (1080p WEB-DL) ==> Archived (1080p WEB-DL)":[null,""],"Options for github related features.":[null,""],"Branch version":[null,""],"error: No branches found.":[null,""],"select branch to use (restart required)":[null,""],"Authorization Type":[null,""],"Username and password":[null,""],"Personal access token":[null,""],"You must use a personal access token if you're using \"two-factor authentication\" on GitHub.":[null,""],"GitHub username":[null,""],"*** (REQUIRED FOR SUBMITTING ISSUES) ***":[null,""],"GitHub password":[null,""],"GitHub personal access token":[null,""],"Generate Token":[null,""],"Manage Tokens":[null,""],"GitHub remote for branch":[null,""],"access repo configured remotes (save then refresh browser)":[null,""],"default":[null,""],"origin":[null,""],"Git executable path":[null,""],"only needed if OS is unable to locate git from env":[null,""],"Git reset":[null,""],"removes untracked files and performs a hard reset on git branch automatically to help resolve update issues":[null,""],"Home Theater / NAS":[null,""],"Devices":[null,""],"Social":[null,""],"A free and open source cross-platform media center and home entertainment system software with a 10-foot user interface designed for the living-room TV.":[null,""],"send KODI commands?":[null,""],"Always on":[null,""],"log errors when unreachable?":[null,""],"Notify on snatch":[null,""],"send a notification when a download starts?":[null,""],"Notify on download":[null,""],"send a notification when a download finishes?":[null,""],"Notify on subtitle download":[null,""],"send a notification when subtitles are downloaded?":[null,""],"Update library":[null,""],"update KODI library when a download finishes?":[null,""],"Full library update":[null,""],"perform a full library update if update per-show fails?":[null,""],"Only update first host":[null,""],"only send library updates to the first active host?":[null,""],"KODI IP:Port":[null,""],"host running KODI (eg. 192.168.1.100:8080)":[null,""],"(multiple host strings must be separated by commas)":[null,""],"Username":[null,""],"username for your KODI server (blank for none)":[null,""],"Password":[null,""],"password for your KODI server (blank for none)":[null,""],"Click below to test.":[null,""],"Experience your media on a visually stunning, easy to use interface on your Mac connected to your TV. Your media library has never looked this good!":[null,""],"For sending notifications to Plex Home Theater (PHT) clients, use the KODI notifier with port <b>3005</b>.":[null,""],"send Plex Media Server library updates?":[null,""],"Plex Media Server Auth Token":[null,""],"auth token used by Plex":[null,""],"Update Library":[null,""],"update Plex Media Server library when a download finishes":[null,""],"Plex Media Server IP:Port":[null,""],"one or more hosts running Plex Media Server<br/>(eg. 192.168.1.1:32400, 192.168.1.2:32400)":[null,""],"HTTPS":[null,""],"use https for plex media server requests?":[null,""],"Click below to test Plex Media Server(s)":[null,""],"Test Plex Media Server":[null,""],"Plex Home Theater":[null,""],"send Plex Home Theater notifications?":[null,""],"Plex Home Theater IP:Port":[null,""],"one or more hosts running Plex Home Theater<br>(eg. 192.168.1.100:3000, 192.168.1.101:3000)":[null,""],"Click below to test Plex Home Theater(s)":[null,""],"Test Plex Home Theater":[null,""],"some Plex Home Theaters <b class=\"boldest\">do not</b> support notifications e.g. Plexapp for Samsung TVs":[null,""],"Emby":[null,""],"A home media server built using other popular open source technologies.":[null,""],"send update commands to Emby?":[null,""],"Emby IP:Port":[null,""],"host running Emby (eg. 192.168.1.100:8096)":[null,""],"Emby API Key":[null,""],"Networked Media Jukebox":[null,""],"The Networked Media Jukebox, or NMJ, is the official media jukebox interface made available for the Popcorn Hour 200-series.":[null,""],"send update commands to NMJ?":[null,""],"Popcorn IP address":[null,""],"IP address of Popcorn 200-series (eg. 192.168.1.100)":[null,""],"Get settings":[null,""],"Get Settings":[null,""],"the Popcorn Hour device must be powered on and NMJ running.":[null,""],"NMJ database":[null,""],"automatically filled via the 'Get Settings' button.":[null,""],"NMJ mount url":[null,""],"Networked Media Jukebox v2":[null,""],"The Networked Media Jukebox, or NMJv2, is the official media jukebox interface made available for the Popcorn Hour 300 & 400-series.":[null,""],"send update commands to NMJv2?":[null,""],"IP address of Popcorn 300/400-series (eg. 192.168.1.100)":[null,""],"Database location":[null,""],"Database instance":[null,""],"adjust this value if the wrong database is selected.":[null,""],"Find database":[null,""],"Find Database":[null,""],"the Popcorn Hour device must be powered on.":[null,""],"NMJv2 database":[null,""],"automatically filled via the 'Find Database' buttons.":[null,""],"Synology":[null,""],"The Synology DiskStation NAS.":[null,""],"Synology Indexer is the daemon running on the Synology NAS to build its media database.":[null,""],"send Synology notifications?":[null,""],"requires SickRage to be running on your Synology NAS.":[null,""],"Synology Indexer":[null,""],"Synology Notifier is the notification system of Synology DSM":[null,""],"send notifications to the Synology Notifier?":[null,""],"pyTivo":[null,""],"pyTivo is both an HMO and GoBack server. This notifier will load the completed downloads to your Tivo.":[null,""],"send notifications to pyTivo?":[null,""],"requires the downloaded files to be accessible by pyTivo.":[null,""],"pyTivo IP:Port":[null,""],"host running pyTivo (eg. 192.168.1.1:9032)":[null,""],"pyTivo share name":[null,""],"value used in pyTivo Web Configuration to name the share.":[null,""],"Tivo name":[null,""],"(Messages & Settings > Account & System Information > System Information > DVR name)":[null,""],"Growl":[null,""],"A cross-platform unobtrusive global notification system.":[null,""],"send Growl notifications?":[null,""],"Growl IP:Port":[null,""],"host running Growl (eg. 192.168.1.100:23053)":[null,""],"may leave blank if SickRage is on the same host.":[null,""],"otherwise Growl <b>requires</b> a password to be used.":[null,""],"Click below to register and test Growl, this is required for Growl notifications to work.":[null,""],"Register Growl":[null,""],"Prowl":[null,""],"A Growl client for iOS.":[null,""],"send Prowl notifications?":[null,""],"Prowl Message Title":[null,""],"Global Prowl API key(s)":[null,""],"Prowl API(s) listed here, separated by commas if applicable, will<br> receive notifications for <b>all</b> shows. Your Prowl API key is available at:":[null,""],"(this field may be blank except when testing.)":[null,""],"Show notification list":[null,""],"-- Select a Show --":[null,""],"Configure per-show notifications here by entering Prowl API key(s), separated by commas, '\n 'after selecting a show in the drop-down box. Be sure to activate the 'Save for this show' '\n 'button below after each entry.":[null,""],"Save for this show":[null,""],"Prowl priority":[null,""],"Very Low":[null,""],"Moderate":[null,""],"Normal":[null,""],"High":[null,""],"Emergency":[null,""],"priority of Prowl messages from SickRage.":[null,""],"Libnotify":[null,""],"The standard desktop notification API for Linux/*nix systems. This notifier will only function if the pynotify module is installed (Ubuntu/Debian package <a href=\"apt:python-notify\">python-notify</a>).":[null,""],"send Libnotify notifications?":[null,""],"Pushover":[null,""],"Pushover makes it easy to send real-time notifications to your Android and iOS devices.":[null,""],"send Pushover notifications?":[null,""],"Pushover key":[null,""],"user key of your Pushover account":[null,""],"Pushover API key":[null,""],"click here":[null,""]," to create a Pushover API key":[null,""],"Pushover devices":[null,""],"comma separated list of pushover devices you want to send notifications to":[null,""],"Pushover notification sound":[null,""],"Bike":[null,""],"Bugle":[null,""],"Cash Register":[null,""],"Classical":[null,""],"Cosmic":[null,""],"Falling":[null,""],"Gamelan":[null,""],"Incoming":[null,""],"Intermission":[null,""],"Magic":[null,""],"Mechanical":[null,""],"Piano Bar":[null,""],"Siren":[null,""],"Space Alarm":[null,""],"Tug Boat":[null,""],"Alien Alarm (long)":[null,""],"Climb (long)":[null,""],"Persistent (long)":[null,""],"Pushover Echo (long)":[null,""],"Up Down (long)":[null,""],"None (silent)":[null,""],"Device specific":[null,""],"choose notification sound to use":[null,""],"Pushover priority":[null,""],"Choose priority to use":[null,""],"Boxcar 2":[null,""],"Read your messages where and when you want them!":[null,""],"send Boxcar notifications?":[null,""],"Boxcar2 access token":[null,""],"access token for your Boxcar account.":[null,""],"NMA":[null,""],"Notify My Android":[null,""],"Notify My Android is a Prowl-like Android App and API that offers an easy way to send notifications from your application directly to your Android device.":[null,""],"send NMA notifications?":[null,""],"NMA API key":[null,""],"(multiple keys must be separated by commas, up to a maximum of 5)":[null,""],"NMA priority":[null,""],"priority of NMA messages from SickRage.":[null,""],"Pushalot":[null,""],"Pushalot is a platform for receiving custom push notifications to connected devices running Windows Phone or Windows 8.":[null,""],"send Pushalot notifications ?":[null,""],"Pushalot authorization token":[null,""],"authorization token of your Pushalot account.":[null,""],"Pushbullet":[null,""],"Pushbullet is a platform for receiving custom push notifications to connected devices running Android/iOS and desktop browsers such as Chrome, Firefox or Opera.":[null,""],"send Pushbullet notifications?":[null,""],"Pushbullet API key":[null,""],"API key of your Pushbullet account":[null,""],"Pushbullet devices":[null,""],"Update device list":[null,""],"Pushbullet channels":[null,""],"Free Mobile":[null,""],"Free Mobile is a famous French cellular network provider.<br> It provides to their customer a free SMS API.":[null,""],"send SMS notifications?":[null,""],"send a SMS when a download starts?":[null,""],"send a SMS when a download finishes?":[null,""],"send a SMS when subtitles are downloaded?":[null,""],"Free Mobile customer ID":[null,""],"it's your Free Mobile customer ID (8 digits)":[null,""],"Free Mobile API key":[null,""],"find your API key in your customer portal.":[null,""],"Click below to test your settings.":[null,""],"Telegram":[null,""],"Telegram is a cloud-based instant messaging service.":[null,""],"send Telegram notifications?":[null,""],"send a message when a download starts?":[null,""],"send a message when a download finishes?":[null,""],"send a message when subtitles are downloaded?":[null,""],"User/group ID":[null,""],"contact @myidbot on Telegram to get an ID":[null,""],"Bot API token":[null,""],"contact @BotFather on Telegram to set up one":[null,""],"Join":[null,""],"Join all of your devices together!":[null,""],"send Join notifications?":[null,""],"Device ID":[null,""],"per device specific id":[null,""]," to create a Join API key":[null,""],"Twilio":[null,""],"Twilio is a webservice API that allows you to communicate directly with a mobile number. This notifier will send a text directly to your mobile device.":[null,""],"should SickRage text your mobile device?":[null,""],"Twilio Account SID":[null,""],"account SID of your Twilio account.":[null,""],"Twilio Auth Token":[null,""],"Twilio Phone SID":[null,""],"phone SID that you would like to send the sms from":[null,""],"Your phone number":[null,""],"phone number that will receive the sms. Please use the format +1-###-###-####":[null,""],"Twitter":[null,""],"A social networking and microblogging service, enabling its users to send and read other users' messages called tweets.":[null,""],"should SickRage post tweets on Twitter?":[null,""],"you may want to use a secondary account.":[null,""],"send direct message":[null,""],"send a notification via Direct Message, not via status update":[null,""],"send DM to":[null,""],"Twitter account to send Direct Messages to (must follow you)":[null,""],"Step One":[null,""],"Request Authorization":[null,""],"Click the \"Request Authorization\" button.<br> This will open a new page containing an auth key.<br> <b>note:</b> if nothing happens check your popup blocker.":[null,""],"Step Two":[null,""],"Enter the key Twitter gave you below, and click \"Verify Key\".":[null,""],"Trakt":[null,""],"Trakt helps keep a record of what TV shows and movies you are watching. Based on your favorites, Trakt recommends additional shows and movies you'll enjoy!":[null,""],"send Trakt.tv notifications?":[null,""],"username of your Trakt account.":[null,""],"Trakt PIN":[null,""],"Get Trakt PIN":[null,""],"PIN code to authorize SickRage to access Trakt on your behalf.":[null,""],"API Timeout":[null,""],"seconds to wait for Trakt API to respond. (Use 0 to wait forever)":[null,""],"Default indexer":[null,""],"Sync libraries":[null,""],"sync your SickRage show library with your trakt show library.":[null,""],"Remove Episodes From Collection":[null,""],"remove an episode from your Trakt Collection if it is not in your SickRage Library.":[null,""],"Sync watchlist":[null,""],"sync your SickRage show watchlist with your trakt show watchlist (either Show and Episode).":[null,""],"episode will be added on watch list when wanted or snatched and will be removed when downloaded ":[null,""],"Watchlist add method":[null,""],"Skip All":[null,""],"Download Pilot Only":[null,""],"Get whole show":[null,""],"method in which to download episodes for new shows.":[null,""],"Remove episode":[null,""],"remove an episode from your watchlist after it is downloaded.":[null,""],"Remove series":[null,""],"remove the whole series from your watchlist after any download.":[null,""],"Remove watched show":[null,""],"remove the show from sickrage if it's ended and completely watched":[null,""],"Start paused":[null,""],"shows grabbed from your trakt watchlist start paused.":[null,""],"Trakt blackList name":[null,""],"name (slug) of list on Trakt for blacklisting show on 'Add Trending Show' & 'Add Recommended Shows' pages":[null,""],"Email":[null,""],"Allows configuration of email notifications on a per show basis.":[null,""],"send email notifications?":[null,""],"SMTP host":[null,""],"hostname of your SMTP email server.":[null,""],"SMTP port":[null,""],"port number used to connect to your SMTP host.":[null,""],"SMTP from":[null,""],"sender email address, some hosts require a real address.":[null,""],"Use TLS":[null,""],"check to use TLS encryption.":[null,""],"SMTP user":[null,""],"(optional) your SMTP server username.":[null,""],"SMTP password":[null,""],"(optional) your SMTP server password.":[null,""],"Global email list":[null,""],"email addresses listed here, separated by commas if applicable, will<br> receive notifications for <b>all</b> shows.":[null,""],"(This field may be blank except when testing.)":[null,""],"Email Subject":[null,""],"use a custom subject for some privacy protection?":[null,""],"(leave blank for the default SickRage subject)":[null,""],"configure per-show notifications here by entering email address(es), separated by commas,":[null,""],"after selecting a show in the drop-down box. Be sure to activate the 'Save for this show'":[null,""],"button below after each entry.":[null,""],"Slack":[null,""],"Slack brings all your communication together in one place. It's real-time messaging, archiving and search for modern teams.":[null,""],"should SickRage post messages on Slack?":[null,""],"Slack Incoming Webhook":[null,""],"Discord":[null,""],"All-in-one voice and text chat for gamers that's free, secure, and works on both your desktop and phone.":[null,""],"Should SickRage post messages on Discord?":[null,""],"Discord Incoming Webhook":[null,""],"Create webhook under channel settings.":[null,""],"Discord Bot Name":[null,""],"Blank will use webhook default Name.":[null,""],"Discord Avatar URL":[null,""],"Blank will use webhook default Avatar.":[null,""],"Discord TTS":[null,""],"Send notifications using text-to-speech":[null,""],"Post-Processing":[null,""],"Episode Naming":[null,""],"Metadata":[null,""],"Settings that dictate how SickRage should process completed downloads.":[null,""],"enable the automatic post processor to scan and process any files in your Post Processing Dir":[null,""],"do not use if you use an external Post Processing script":[null,""],"Post Processing Dir":[null,""],"the folder where your download client puts the completed TV downloads.":[null,""],"please use seperate downloading and completed folders in your download client if possible.":[null,""],"Processing Method":[null,""],"what method should be used to put files into the library?":[null,""],"if you keep seeding torrents after they finish, please avoid the 'move' processing method to prevent errors.":[null,""],"Auto Post-Processing Frequency":[null,""],"time in minutes to check for new files to auto post-process (min 10)":[null,""],"Postpone post processing":[null,""],"wait to process a folder if sync files are present.":[null,""],"Sync File Extensions":[null,""],"comma seperated list of extensions or filename globs SickRage ignores when Post Processing":[null,""],"Rename Episodes":[null,""],"rename episode using the Episode Naming settings?":[null,""],"Create missing show directories":[null,""],"create missing show directories when they get deleted":[null,""],"Add shows without directory":[null,""],"add shows without creating a directory (not recommended)":[null,""],"Move associated files":[null,""],"move associated (srt/srr/sfv/etc) files while post processing?":[null,""],"Rename .nfo file":[null,""],"rename the original .nfo file to .nfo-orig to avoid conflicts?":[null,""],"Associated file extensions":[null,""],"comma separated list of associated file extensions SickRage should keep while post processing.":[null,""],"leaving it empty means no associated files will be post processed":[null,""],"Delete non associated files":[null,""],"delete non associated files while post processing?":[null,""],"Change File Date":[null,""],"set last modified filedate to the date that the episode aired?":[null,""],"some systems may ignore this feature.":[null,""],"Timezone for File Date":[null,""],"local":[null,""],"network":[null,""],"what timezone should be used to change File Date?":[null,""],"Unpack":[null,""],"What to do with archived releases found in your <i>TV Download Dir</i>?":[null,""],"Ignore (do not process contents)":[null,""],"Unpack (process contents)":[null,""],"Treat as video (process archive as-is)":[null,""],"'Unpack' only works with RAR archives":[null,""],"Windows":[null,""],"WinRar is required on windows":[null,""],"Unpack Directory":[null,""],"Choose a path to unpack files, leave blank to unpack in download dir":[null,""],"Unrar Location":[null,""],"add the path to unrar if it is not in the system path":[null,""],"Alternate Unrar Tool":[null,""],"add the path to an alternate unrar tool if it is not in the system path":[null,""],"Delete RAR contents":[null,""],"delete content of RAR files, even if Process Method not set to move?":[null,""],"only working with RAR archive":[null,""],"Don't delete empty folders":[null,""],"leave empty folders when Post Processing?":[null,""],"can be overridden using manual Post Processing":[null,""],"Follow symbolic-links":[null,""],"follow down symbolic links in download directory?":[null,""],"<b>EXPERTS ONLY.</b><br>Enable only if you know what <b>circular symbolic links</b> are,<br>and can <b>verify that you have none</b>.":[null,""],"Use icacls":[null,""],"Windows only":[null,""],"sets video permissions after using the move method in post processing":[null,""],"Extra Scripts":[null,""],"see":[null,""],"for script arguments description and usage.":[null,""],"How SickRage will name and sort your episodes.":[null,""],"Name Pattern":[null,""],"Toggle Naming Legend":[null,""],"don't forget to add quality pattern. Otherwise after post-processing the episode will have UNKNOWN quality":[null,""],"Meaning":[null,""],"Pattern":[null,""],"Result":[null,""],"Use lower case if you want lower case names (eg. %sn, %e.n, %q_n etc)":[null,""],"Show Name":[null,""],"Show.Name":[null,""],"Show_Name":[null,""],"Season Number":[null,""],"XEM Season Number":[null,""],"Episode Number":[null,""],"XEM Episode Number":[null,""],"Episode Name":[null,""],"Episode.Name":[null,""],"Episode_Name":[null,""],"Air Date":[null,""],"Post-Processing Date":[null,""],"Quality":[null,""],"Scene Quality":[null,""],"Release Name":[null,""],"SickRage' is used in place of RLSGROUP if it could not be properly detected":[null,""],"Release Group":[null,""],"If episode is proper/repack add 'proper' to name.":[null,""],"Release Type":[null,""],"Multi-Episode Style":[null,""],"Single-EP Sample":[null,""],"Multi-EP sample":[null,""],"Strip Show Year":[null,""],"remove the TV show's year when renaming the file?":[null,""],"only applies to shows that have year inside parentheses":[null,""],"Custom Air-By-Date":[null,""],"name air-by-date shows differently than regular shows?":[null,""],"Toggle ABD Naming Legend":[null,""],"Regular Air Date":[null,""],"Year":[null,""],"Month":[null,""],"Day":[null,""],"Multi-EP style is ignored":[null,""],"Custom Sports":[null,""],"name sports shows differently than regular shows?":[null,""],"Toggle Sports Naming Legend":[null,""],"Sports Air Date":[null,""],"Custom Anime":[null,""],"name anime shows differently than regular shows?":[null,""],"Toggle Anime Naming Legend":[null,""],">XEM Season Number":[null,""],"Single-EP Anime Sample":[null,""],"Multi-EP Anime sample":[null,""],"Add Absolute Number":[null,""],"add the absolute number to the season/episode format?":[null,""],"only applies to anime. (eg. S15E45 - 310 vs S15E45)":[null,""],"Only Absolute Number":[null,""],"replace season/episode format with absolute number":[null,""],"only applies to anime.":[null,""],"No Absolute Number":[null,""],"don't include the absolute number":[null,""],"The data associated to the data. These are files associated to a TV show in the form of images and text that, when supported, will enhance the viewing experience.":[null,""],"Metadata Type":[null,""],"toggle metadata options that you wish to be created":[null,""],"multiple targets may be used":[null,""],"Select Metadata":[null,""],"Provider Priorities":[null,""],"Provider Options":[null,""],"Configure Custom Newznab Providers":[null,""],"Configure Custom Torrent Providers":[null,""],"Check off and drag the providers into the order you want them to be used.":[null,""],"At least one provider is required but two are recommended.":[null,""],"Torrent providers can be toggled in ":[null,""],"Provider does not support backlog searches at this time.":[null,""],"Provider is <b>NOT WORKING</b>.":[null,""],"Configure individual provider settings here.":[null,""],"Check with provider's website on how to obtain an API key if needed.":[null,""],"Configure provider":[null,""],"no providers available to configure.":[null,""],"URL":[null,""],"Enable daily searches":[null,""],"enable provider to perform daily searches.":[null,""],"Enable backlog searches":[null,""],"enable provider to perform backlog searches.":[null,""],"Season search mode":[null,""],"when searching for complete seasons you can choose to have it look for season packs only, or choose to have it build a complete season from just single episodes.":[null,""],"season packs only.":[null,""],"episodes only.":[null,""],"Enable fallback":[null,""],"when searching for a complete season depending on search mode you may return no results, this helps by restarting the search using the opposite search mode.":[null,""],"Custom URL":[null,""],"the URL should include the protocol (and port if applicable). Examples: http://192.168.1.4/ or http://localhost:3000/":[null,""],"Api key":[null,""],"Digest":[null,""],"Hash":[null,""],"Passkey":[null,""],"Cookies":[null,""],"example: uid=1234;pass=567845439634987<br>note: uid and pass are not your username/password.<br>use DevTools or Firebug to get these values after logging in on your browser.":[null,""],"Pin":[null,""],"Seed ratio":[null,""],"stop transfer when ratio is reached<br>(-1 SickRage default to seed forever, or leave blank for downloader default)":[null,""],"Minimum seeders":[null,""],"Minimum leechers":[null,""],"Confirmed download":[null,""],"only download torrents from trusted or verified uploaders ?":[null,""],"Ranked torrents":[null,""],"only download ranked torrents (trusted releases)":[null,""],"English torrents":[null,""],"only download english torrents, or torrents containing english subtitles":[null,""],"For Spanish torrents":[null,""],"ONLY search on this provider if show info is defined as \"Spanish\" (avoid provider's use for VOS shows)":[null,""],"Sorting results by":[null,""],"Freeleech":[null,""],"only download <b>\"FreeLeech\"</b> torrents.":[null,""],"Category":[null,""],"select torrent with Italian subtitle":[null,""],"Configure Custom<br>Newznab Providers":[null,""],"Add and setup or remove custom Newznab providers.":[null,""],"Select provider":[null,""],"-- add new provider --":[null,""],"Provider name":[null,""],"Site URL":[null,""],"Newznab search categories":[null,""],"select your Newznab categories on the left, and click the \"update categories\" button to use them for searching.) <b>don't forget to to save the form!":[null,""],"Update Categories":[null,""],"Add":[null,""],"Delete":[null,""],"Add and setup or remove custom RSS providers.":[null,""],"RSS URL":[null,""],"Search element":[null,""],"eg: title":[null,""],"Episode Search":[null,""],"NZB Search":[null,""],"Torrent Search":[null,""],"How to manage searching with":[null,""],"Randomize Providers":[null,""],"randomize the provider search order instead of going in order of placement":[null,""],"Download propers":[null,""],"replace original download with \"Proper\" or \"Repack\" if nuked":[null,""],"Check propers every":[null,""],"24 hours":[null,""],"4 hours":[null,""],"90 mins":[null,""],"45 mins":[null,""],"15 mins":[null,""],"Backlog search day(s)":[null,""],"number of day(s) that the \"Forced Backlog Search\" will cover (e.g. 7 Days)":[null,""],"Backlog search frequency":[null,""],"time in minutes between searches (min.":[null,""],"Daily search frequency":[null,""],"Usenet retention":[null,""],"age limit in days for usenet articles to be used (e.g. 500)":[null,""],"Ignore words":[null,""],"results with one or more word from this list will be ignored<br>separate words with a comma, e.g. \"word1,word2,word3\"":[null,""],"Require words":[null,""],"results with no word from this list will be ignored<br>separate words with a comma, e.g. \"word1,word2,word3\"":[null,""],"Trackers list":[null,""],"trackers that will be added to magnets without trackers<br>separate trackers with a comma, e.g. \"tracker1,tracker2,tracker3\"":[null,""],"Ignore language names in subbed results":[null,""],"ignore subbed releases based on language names <br>\n Example: \"dk\" will ignore words: dksub, dksubs, dksubbed, dksubed <br>\n separate languages with a comma, e.g. \"lang1,lang2,lang3":[null,""],"Allow high priority":[null,""],"set downloads of recently aired episodes to high priority":[null,""],"Use Failed Downloads":[null,""],"use Failed Download Handling?":[null,""],"will only work with snatched/downloaded episodes after enabling this":[null,""],"Delete Failed":[null,""],"delete files left over from a failed download?":[null,""],"this only works if Use Failed Downloads is enabled.":[null,""],"How to handle NZB search results.":[null,""],"Search NZBs":[null,""],"enable NZB search providers":[null,""],"Send .nzb files to":[null,""],"SABnzbd server URL":[null,""],"URL to your SABnzbd server (e.g. http://localhost:8080/)":[null,""],"SABnzbd username":[null,""],"(blank for none)":[null,""],"SABnzbd password":[null,""],"SABnzbd API key":[null,""],"locate at... SABnzbd Config -> General -> API Key":[null,""],"Use SABnzbd category":[null,""],"add downloads to this category (e.g. TV)":[null,""],"Use SABnzbd category (backlog episodes)":[null,""],"add downloads of old episodes to this category (e.g. TV)":[null,""],"Use SABnzbd category for anime":[null,""],"add anime downloads to this category (e.g. anime)":[null,""],"Use SABnzbd category for anime (backlog episodes)":[null,""],"add anime downloads of old episodes to this category (e.g. anime)":[null,""],"Use forced priority":[null,""],"enable to change priority from HIGH to FORCED":[null,""],"Black hole folder location":[null,""],"<b>.nzb</b> files are stored at this location for external software to find and use":[null,""],"Connect using HTTPS":[null,""],"enable Secure control in NZBGet and set the correct Secure Port here":[null,""],"NZBget host:port":[null,""],"(e.g. localhost:6789)":[null,""],"NZBget RPC host name and port number (not NZBgetweb!)":[null,""],"NZBget username":[null,""],"locate in nzbget.conf (default:nzbget)":[null,""],"NZBget password":[null,""],"locate in nzbget.conf (default:tegbzn6789)":[null,""],"Use NZBget category":[null,""],"send downloads marked this category (e.g. TV)":[null,""],"Use NZBget category (backlog episodes)":[null,""],"send downloads of old episodes marked this category (e.g. TV)":[null,""],"Use NZBget category for anime":[null,""],"send anime downloads marked this category (e.g. anime)":[null,""],"Use NZBget category for anime (backlog episodes)":[null,""],"send anime downloads of old episodes marked this category (e.g. anime)":[null,""],"NZBget priority":[null,""],"Very low":[null,""],"Low":[null,""],"Very high":[null,""],"Force":[null,""],"priority for daily snatches (no backlog)":[null,""],"Torrent host:port":[null,""],"URL to your Synology DSM (e.g. http://localhost:5000/)":[null,""],"Client username":[null,""],"Client password":[null,""],"Downloaded files location":[null,""],"where Synology Download Station will save downloaded files (blank for client default)":[null,""],"the destination has to be a shared folder for Synology DS":[null,""],"Click below to test":[null,""],"How to handle Torrent search results.":[null,""],"Search torrents":[null,""],"enable torrent search providers":[null,""],"Send .torrent files to":[null,""],"<b>.torrent</b> files are stored at this location for external software to find and use":[null,""],"URL to your torrent client (e.g. http://localhost:8000/)":[null,""],"Torrent RPC URL":[null,""],"the path without leading and trailing slashes (e.g. transmission)":[null,""],"Http Authentication":[null,""],"Verify certificate":[null,""],"disable if you get \"Deluge: Authentication Error\" in your log":[null,""],"verify SSL certificates for HTTPS requests":[null,""],"Add label to torrent":[null,""],"(blank spaces are not allowed)":[null,""],"label plugin must be enabled in Deluge clients":[null,""],"for QBitTorrent 3.3.1 and up":[null,""],"Add label to torrent for anime":[null,""],"for QBitTorrent 3.3.1 and up ":[null,""],"where <span id=\"torrent_client\">the torrent client</span> will save downloaded files (blank for client default)":[null,""],"the destination has to be a shared folder for Synology DS</span>":[null,""],"Minimum seeding time":[null,""],"time in hours":[null,""],"(default:'0' passes blank to client and '-1' passes nothing)":[null,""],"Start torrent paused":[null,""],"add .torrent to client but do <b style=\"font-weight:900\">not</b> start downloading":[null,""],"Allow high bandwidth":[null,""],"use high bandwidth allocation if priority is high":[null,""],"Test Connection":[null,""],"Windows Shares":[null,""],"Defines your existing windows shares so that we can add them to the browse dialog":[null,""],"Share #{number}":[null,""],"Share label":[null,""],"Hostname or IP":[null,""],"Share path":[null,""],"Subtitles Search":[null,""],"Subtitles Plugin":[null,""],"Plugin Settings":[null,""],"Settings that dictate how SickRage handles subtitles search results.":[null,""],"Search Subtitles":[null,""],"Subtitle Languages":[null,""],"Subtitle Directory":[null,""],"the directory where SickRage should store your <i>Subtitles</i> files.":[null,""],"leave empty if you want store subtitle in episode path.":[null,""],"Subtitle Find Frequency":[null,""],"time in hours between scans (default: 1)":[null,""],"Include Specials":[null,""],"include the show's specials when searching for subtitles?":[null,""],"Perfect matches":[null,""],"only download subtitles that match: release group, video codec, audio codec and resolution":[null,""],"if disabled you may get out of sync subtitles":[null,""],"Subtitles History":[null,""],"log downloaded Subtitle on History page?":[null,""],"Subtitles Multi-Language":[null,""],"append language codes to subtitle filenames?":[null,""],"this option is required if you use multiple subtitle languages":[null,""],"Delete unwanted subtitles":[null,""],"enable to delete unwanted subtitle languages bundled with release":[null,""],"Embedded Subtitles":[null,""],"ignore subtitles embedded inside video file?":[null,""],"this will ignore <u>all</u> embedded subtitles for every video file!":[null,""],"Hearing Impaired Subtitles":[null,""],"download hearing impaired style subtitles?":[null,""],"See":[null,""],"for a script arguments description.":[null,""],"Additional scripts separated by <b>|</b>.":[null,""],"Scripts are called after each episode has searched and downloaded subtitles.":[null,""],"For any scripted languages, include the interpreter executable before the script. See the following example":[null,""],"For Windows:":[null,""],"For Linux / OS X:":[null,""],"Subtitle Providers":[null,""],"Check off and drag the plugins into the order you want them to be used.":[null,""],"At least one plugin is required.":[null,""]," Web-scraping plugin":[null,""],"Provider Settings":[null,""],"Set user and password for each provider":[null,""],"User Name":[null,""],"Change Show":[null,""],"Prev Show":[null,""],"Next Show":[null,""],"Jump to Season":[null,""],"Specials":[null,""],"Poster for":[null,""],"Stars":[null,""],"minutes":[null,""],"View other popular {genre} shows on trakt.tv.":[null,""],"View other popular {imdbgenre} shows on IMDB.":[null,""],"Allowed":[null,""],"Preferred":[null,""],"Originally Airs":[null,""],"Show Status":[null,""],"Default EP Status":[null,""],"Location":[null,""],"Missing":[null,""],"Scene Name":[null,""],"Required Words":[null,""],"Ignored Words":[null,""],"Size":[null,""],"Info Language":[null,""],"Subtitles SR Metadata":[null,""],"Season Folders":[null,""],"Paused":[null,""],"Air-by-Date":[null,""],"Sports":[null,""],"DVD Order":[null,""],"Scene Numbering":[null,""],"Select Filtered Episodes":[null,""],"Clear All":[null,""],"Change selected episodes to":[null,""],"Select Columns":[null,""],"NFO":[null,""],"TBN":[null,""],"Episode":[null,""],"Absolute":[null,""],"Scene":[null,""],"Scene Absolute":[null,""],"File Name":[null,""],"Airdate":[null,""],"Download":[null,""],"Change the value here if scene numbering differs from the indexer episode numbering":[null,""],"Change the value here if scene absolute numbering differs from the indexer absolute numbering":[null,""],"Manual Search":[null,""],"Do you want to mark this episode as failed?":[null,""],"The episode release name will be added to the failed history, preventing it to be downloaded again.":[null,""],"Do you want to include the current episode quality in the search?":[null,""],"Choosing No will ignore any releases with the same episode quality as the one currently downloaded/snatched.":[null,""],"Download subtitle":[null,""],"Do you want to re-download the subtitle for this language?":[null,""],"It will overwrite your current subtitle":[null,""],"Format":[null,""],"Advanced":[null,""],"Main Settings":[null,""],"Show Location":[null,""],"Preferred Quality":[null,""],"Default Episode Status":[null,""],"this will set the status for future episodes.":[null,""],"this only applies to episode filenames and the contents of metadata files.":[null,""],"search for subtitles":[null,""],"Use SR Metdata":[null,""],"use SickRage metadata when searching for subtitle, this will override the autodiscovered metadata":[null,""],"pause this show (SickRage will not download episodes)":[null,""],"Format Settings":[null,""],"Air by date":[null,""],"check if the show is released as Show.03.02.2010 rather than Show.S02E03.":[null,""],"in case of an air date conflict between regular and special episodes, the later will be ignored.":[null,""],"check if the show is Anime and episodes are released as Show.265 rather than Show.S02E03":[null,""],"check if the show is a sporting or MMA event released as Show.03.02.2010 rather than Show.S02E03":[null,""],"Season folders":[null,""],"group episodes by season folder (uncheck to store in a single folder)":[null,""],"search by scene numbering (uncheck to search by indexer numbering)":[null,""],"use the DVD order instead of the air order":[null,""],"a \"Force Full Update\" is necessary, and if you have existing episodes you need to sort them manually.":[null,""],"comma-separated <i>e.g. \"word1,word2,word3</i>\"":[null,""],"search results with one or more words from this list will be ignored.":[null,""],"e.g. \"word1,word2,word3\"":[null,""],"search results with no words from this list will be ignored.":[null,""],"Scene Exception":[null,""],"this will affect episode search on NZB and torrent providers.":[null,""],"this list appends to the original show name.":[null,""],"WARNING logs":[null,""],"ERROR logs":[null,""],"There are no events to display.":[null,""],"Limit":[null,""],"Layout":[null,""],"HistoryLayout":[null,""],"Compact":[null,""],"Detailed":[null,""],"Time":[null,""],"Provider":[null,""],"Missing Provider":[null,""],"missing provider":[null,""],"Directory":[null,""],"Show Name (tvshow.nfo)":[null,""],"Indexer":[null,""],"Enter the folder containing the episode":[null,""],"Process Method to be used":[null,""],"Copy":[null,""],"Move":[null,""],"Hard Link":[null,""],"Symbolic Link":[null,""],"Symbolic Link Reversed":[null,""],"Force already Post Processed Dir/Files":[null,""],"Mark Dir/Files as priority download":[null,""],"(Check it to replace the file even if it exists at higher quality)":[null,""],"Delete files and folders":[null,""],"(Check it to delete files and folders like auto processing)":[null,""],"Don't use processing queue":[null,""],"(If checked this will return the result of the process here, but may be slow!)":[null,""],"Mark download as failed":[null,""],"Process":[null,""],"Download subtitles for this show?":[null,""],"use SickRage metadata when searching for subtitle, <br />this will override the autodiscovered metadata":[null,""],"Status for previously aired episodes":[null,""],"Status for all future episodes":[null,""],"Group episodes by season folder?":[null,""],"Is this show an Anime?":[null,""],"Is this show scene numbered?":[null,""],"Save Defaults":[null,""],"Use current values as the defaults":[null,""],"<p>Select your preferred fansub groups from the <b>Available Groups</b> and add them to the <b>Whitelist</b>. Add groups to the <b>Blacklist</b> to ignore them.</p>\n <p>The <b>Whitelist</b> is checked <i>before</i> the <b>Blacklist</b>.</p>\n <p>Groups are shown as <b>Name</b> | <b>Rating</b> | <b>Number of subbed episodes</b>.</p>\n <p>You may also add any fansub group not listed to either list manually.</p>\n <p>When doing this please note that you can only use groups listed on anidb for this anime.\n <br>If a group is not listed on anidb but subbed this anime, please correct anidb's data.</p>":[null,""],"Whitelist":[null,""],"Available Groups":[null,""],"Add to Whitelist":[null,""],"Add to Blacklist":[null,""],"Blacklist":[null,""],"Custom Group":[null,""],"Allowed Quality:":[null,""],"Preferred Quality:":[null,""],"Filter Show Name":[null,""],"Root":[null,""],"All":[null,""],"Clear Filter(s)":[null,""],"Poster":[null,"Αφίσα"],"Small Poster":[null,""],"Banner":[null,"Banner"],"Simple":[null,""],"Next Episode":[null,""],"Progress":[null,""],"Direction":[null,""],"Ascending":[null,""],"Descending":[null,""],"Poster Size":[null,""],"Continuing":[null,""],"Ended":[null,""],"Total":[null,""],"Invalid date":[null,""],"No Network":[null,""],"Next Ep":[null,""],"Prev Ep":[null,""],"Show":[null,"Εμφάνιση"],"Downloads":[null,""],"Active":[null,""],"loading":[null,""],"<p><b><u>Preferred</u></b> qualities will replace those in <b><u>allowed</u></b>, even if they are lower.</p>":[null,""],"New":[null,""],"Set as Default":[null,""],"Remember me":[null,""],"Edit Selected":[null,""],"Subtitle":[null,""],"Default Ep Status":[null,""],"Update":[null,""],"Rescan":[null,""],"Rename":[null,""],"Search Subtitle":[null,""],"Force Metadata Regen":[null,""],"Snatched (Allowed)":[null,""],"Jump to Show":[null,""],"Force Backlog":[null,""],"Manage episodes with status":[null,""],"Manage":[null,""],"None of your episodes have status":[null,""],"Shows containing":[null,""],"episodes":[null,""],"Set checked shows/episodes to":[null,""],"Go":[null,""],"Select all":[null,""],"Clear all":[null,""],"Release":[null,""],"Backlog Search":[null,""],"Not in progress":[null,""],"In Progress":[null,""],"Daily Search":[null,""],"Find Propers Search":[null,""],"Propers search disabled":[null,""],"Subtitle Search":[null,""],"Subtitle search disabled":[null,""],"Search Queue":[null,""],"pending items":[null,""],"Daily":[null,""],"Manual":[null,""],"Changing any settings marked with (<span class=\"separator\">*</span>) will force a refresh of the selected shows.":[null,""],"Selected Shows":[null,""],"Root Directories":[null,""],"Current":[null,""],"Keep":[null,""],"Custom":[null,""],"Group episodes by season folder (set to \"No\" to store in a single folder).":[null,""],"Pause these shows (SickRage will not download episodes).":[null,""],"This will set the status for future episodes.":[null,""],"Search by scene numbering (set to \"No\" to search by indexer numbering).":[null,""],"Set if these shows are Anime and episodes are released as Show.265 rather than Show.S02E03":[null,""],"Set if these shows are sporting or MMA events released as Show.03.02.2010 rather than Show.S02E03.":[null,""],"In case of an air date conflict between regular and special episodes, the later will be ignored.":[null,""],"Set if these shows are released as Show.03.02.2010 rather than Show.S02E03.":[null,""],"Search for subtitles.":[null,""],"All of your episodes have {subsLanguage} subtitles.":[null,""],"Manage episodes without":[null,""],"Episodes without {subsLanguage} subtitles.":[null,""],"Episodes without {subtitleLanguage} (undefined) subtitles.":[null,""],"Download missed subtitles for selected episodes":[null,""],"Performing Restart":[null,""],"Waiting for SickRage to shut down":[null,""],"Waiting for SickRage to start again":[null,""],"Loading the default page":[null,""],"Error: The restart has timed out, perhaps something prevented SickRage from starting again?":[null,""],"Key":[null,""],"Missed":[null,""],"Today":[null,""],"Soon":[null,""],"Later":[null,""],"Subscribe":[null,""],"Date":[null,""],"View Paused":[null,""],"Hidden":[null,""],"Shown":[null,""],"Calendar":[null,"Ημερολόγιο"],"List":[null,"Λίστα"],"Ends":[null,""],"Next Ep Name":[null,""],"Run time":[null,""],"Indexers":[null,""],"No shows for this day":[null,""],"Airs":[null,""],"Plot":[null,""],"Show Update":[null,""],"Version Check":[null,""],"Proper Finder":[null,""],"Post Process":[null,""],"Subtitles Finder":[null,""],"Scheduler":[null,""],"Alive":[null,""],"Start Time":[null,""],"Cycle Time":[null,""],"Next Run":[null,""],"Last Run":[null,""],"Silent":[null,""],"True":[null,""],"N/A":[null,""],"Show id":[null,""],"Show name":[null,""],"Priority":[null,""],"Added":[null,""],"Queue type":[null,""],"LOW":[null,""],"NORMAL":[null,""],"HIGH":[null,""],"Disk Space":[null,""],"Free space":[null,""],"TV Download Directory":[null,""],"Media Root Directories":[null,""],"Preview of the proposed name changes":[null,""],"All Seasons":[null,""],"select all":[null,""],"Rename Selected":[null,""],"Cancel Rename":[null,""],"Old Location":[null,""],"New Location":[null,""],"Trakt API did not return any results, please check your config.":[null,""],"votes":[null,""],"Remove Show":[null,""],"Level":[null,""],"Filter":[null,""],"All non-absolute folder locations are relative to ":[null,""],"Manual Post-Processing":[null,""],"Episode Status Management":[null,""],"Update PLEX":[null,""],"Update KODI":[null,""],"Update Emby":[null,""],"Manage Torrents":[null,""],"Missed Subtitle Management":[null,""],"Help & Info":[null,""],"Backup & Restore":[null,""],"Tools":[null,""],"Support SickRage":[null,""],"View Errors":[null,""],"View Warnings":[null,""],"View Log":[null,""],"Check For Updates":[null,""],"Restart":[null,""],"Shutdown":[null,""],"Logout":[null,""],"Server Status":[null,""],"View overview of snatched episodes":[null,""],"Episodes Downloaded":[null,""],"Memory used":[null,""],"Load time":[null,""],"Branch":[null,""],"Now":[null,""]}}}} \ No newline at end of file diff --git a/locale/el_GR/LC_MESSAGES/messages.mo b/locale/el_GR/LC_MESSAGES/messages.mo index 0dc9d1621dc38c0fdc91e901eb37577c6d57c38e..cc9a23a7f8b546aa0d5c61032c346e2c4965967b 100644 Binary files a/locale/el_GR/LC_MESSAGES/messages.mo and b/locale/el_GR/LC_MESSAGES/messages.mo differ diff --git a/locale/el_GR/LC_MESSAGES/messages.po b/locale/el_GR/LC_MESSAGES/messages.po index ce698001152e8f3535a8ec89cf40f07a86153d7d..3c1964426d6a2d884a46f435e997a4def9bd3ac7 100644 --- a/locale/el_GR/LC_MESSAGES/messages.po +++ b/locale/el_GR/LC_MESSAGES/messages.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: sickrage\n" "Report-Msgid-Bugs-To: miigotu@gmail.com\n" -"POT-Creation-Date: 2017-03-25 09:28-0700\n" -"PO-Revision-Date: 2017-03-25 12:29-0400\n" +"POT-Creation-Date: 2017-03-28 09:10-0700\n" +"PO-Revision-Date: 2017-03-28 12:12-0400\n" "Last-Translator: miigotu <miigotu@gmail.com>\n" "Language-Team: Greek\n" "MIME-Version: 1.0\n" @@ -90,7 +90,7 @@ msgid "Biography" msgstr "" #: gui/slick/views/config_general.mako:78 gui/slick/views/layouts/main.mako:145 -#: sickbeard/__init__.py:79 sickbeard/webserve.py:3807 +#: sickbeard/__init__.py:79 sickbeard/webserve.py:3778 msgid "History" msgstr "" @@ -103,7 +103,7 @@ msgid "Western" msgstr "" #: gui/slick/views/config_general.mako:79 gui/slick/views/layouts/main.mako:221 -#: sickbeard/__init__.py:80 sickbeard/webserve.py:2385 +#: sickbeard/__init__.py:80 sickbeard/webserve.py:2384 msgid "News" msgstr "" @@ -238,6 +238,34 @@ msgstr "" msgid "Subtitled" msgstr "" +#: sickbeard/helpers.py:1887 +msgid "For best results please set the Download Station alias as" +msgstr "" + +#: sickbeard/helpers.py:1888 +msgid "You can check this setting in the Synology DSM" +msgstr "" + +#: sickbeard/helpers.py:1888 sickbeard/helpers.py:1890 +msgid "Control Panel" +msgstr "" + +#: sickbeard/helpers.py:1888 +msgid "Application Portal" +msgstr "" + +#: sickbeard/helpers.py:1889 +msgid "Make sure you allow DSM to be embedded with iFrames too in" +msgstr "" + +#: sickbeard/helpers.py:1890 +msgid "DSM Settings" +msgstr "" + +#: sickbeard/helpers.py:1890 +msgid "Security" +msgstr "" + #: sickbeard/logger.py:474 msgid "<No Filter>" msgstr "" @@ -308,15 +336,15 @@ msgstr "" msgid "Event" msgstr "" -#: sickbeard/logger.py:491 sickbeard/webserve.py:1339 sickbeard/webserve.py:1342 -#: sickbeard/webserve.py:1520 sickbeard/webserve.py:1529 sickbeard/webserve.py:1717 -#: sickbeard/webserve.py:1728 sickbeard/webserve.py:1751 sickbeard/webserve.py:1764 -#: sickbeard/webserve.py:1769 sickbeard/webserve.py:1785 sickbeard/webserve.py:1790 -#: sickbeard/webserve.py:1854 sickbeard/webserve.py:1857 sickbeard/webserve.py:1863 -#: sickbeard/webserve.py:1866 sickbeard/webserve.py:1873 sickbeard/webserve.py:1876 -#: sickbeard/webserve.py:1899 sickbeard/webserve.py:1997 sickbeard/webserve.py:2002 -#: sickbeard/webserve.py:2007 sickbeard/webserve.py:2036 sickbeard/webserve.py:2040 -#: sickbeard/webserve.py:2045 +#: sickbeard/logger.py:491 sickbeard/webserve.py:1338 sickbeard/webserve.py:1341 +#: sickbeard/webserve.py:1519 sickbeard/webserve.py:1528 sickbeard/webserve.py:1716 +#: sickbeard/webserve.py:1727 sickbeard/webserve.py:1750 sickbeard/webserve.py:1763 +#: sickbeard/webserve.py:1768 sickbeard/webserve.py:1784 sickbeard/webserve.py:1789 +#: sickbeard/webserve.py:1853 sickbeard/webserve.py:1856 sickbeard/webserve.py:1862 +#: sickbeard/webserve.py:1865 sickbeard/webserve.py:1872 sickbeard/webserve.py:1875 +#: sickbeard/webserve.py:1898 sickbeard/webserve.py:1996 sickbeard/webserve.py:2001 +#: sickbeard/webserve.py:2006 sickbeard/webserve.py:2035 sickbeard/webserve.py:2039 +#: sickbeard/webserve.py:2044 msgid "Error" msgstr "" @@ -333,6 +361,7 @@ msgstr "" msgid "Main" msgstr "" +#: gui/slick/js/ajaxEpSearch.js:146 gui/slick/js/ajaxEpSearch.js:147 #: gui/slick/views/inc_home_showList.mako:27 sickbeard/show_queue.py:298 msgid "Loading" msgstr "" @@ -372,867 +401,835 @@ msgstr "" msgid "No update needed" msgstr "" -#: sickbeard/webserve.py:170 +#: sickbeard/webserve.py:171 msgid "Mako Error" msgstr "Σφάλμα Mako" -#: sickbeard/webserve.py:195 +#: sickbeard/webserve.py:196 msgid "Oops" msgstr "Ωχ" -#: sickbeard/webserve.py:197 +#: sickbeard/webserve.py:198 msgid "Wrong API key used" msgstr "" -#: gui/slick/views/login.mako:34 sickbeard/webserve.py:302 +#: gui/slick/views/login.mako:34 sickbeard/webserve.py:303 msgid "Login" msgstr "Είσοδος" -#: sickbeard/webserve.py:406 +#: sickbeard/webserve.py:392 msgid "API Key not generated" msgstr "" -#: sickbeard/webserve.py:409 +#: sickbeard/webserve.py:395 msgid "API Builder" msgstr "" #: gui/slick/views/config_general.mako:77 gui/slick/views/layouts/main.mako:141 -#: sickbeard/webserve.py:512 +#: sickbeard/webserve.py:498 msgid "Schedule" msgstr "Χρονοδιάγραμμα" -#: sickbeard/webserve.py:610 +#: sickbeard/webserve.py:609 msgid "Test 1" msgstr "" -#: sickbeard/webserve.py:610 +#: sickbeard/webserve.py:609 msgid "This is test number 1" msgstr "" -#: sickbeard/webserve.py:611 +#: sickbeard/webserve.py:610 msgid "Test 2" msgstr "" -#: sickbeard/webserve.py:611 +#: sickbeard/webserve.py:610 msgid "This is test number 2" msgstr "" -#: sickbeard/webserve.py:634 +#: sickbeard/webserve.py:633 msgid "You're using the {branch} branch. Please use 'master' unless specifically asked" msgstr "" -#: sickbeard/webserve.py:698 sickbeard/webserve.py:703 +#: sickbeard/webserve.py:697 sickbeard/webserve.py:702 msgid "Invalid show parameters" msgstr "" -#: sickbeard/webserve.py:710 +#: sickbeard/webserve.py:709 msgid "Invalid parameters" msgstr "" -#: sickbeard/webserve.py:713 sickbeard/webserve.py:1899 +#: sickbeard/webserve.py:712 sickbeard/webserve.py:1898 msgid "Episode couldn't be retrieved" msgstr "" -#: sickbeard/webserve.py:759 sickbeard/webserve.py:1268 sickbeard/webserve.py:1297 +#: sickbeard/webserve.py:758 sickbeard/webserve.py:1267 sickbeard/webserve.py:1296 msgid "Home" msgstr "Αρχική σελίδα" -#: gui/slick/views/layouts/main.mako:127 sickbeard/webserve.py:759 +#: gui/slick/views/layouts/main.mako:127 sickbeard/webserve.py:758 msgid "Show List" msgstr "" -#: sickbeard/webserve.py:807 +#: sickbeard/webserve.py:806 msgid "Error: Unsupported Request. Send jsonp request with 'callback' variable in the query string." msgstr "" -#: sickbeard/webserve.py:851 +#: sickbeard/webserve.py:850 msgid "Success. Connected and authenticated" msgstr "" -#: sickbeard/webserve.py:853 +#: sickbeard/webserve.py:852 msgid "Authentication failed. SABnzbd expects" msgstr "" -#: sickbeard/webserve.py:853 +#: sickbeard/webserve.py:852 msgid "as authentication method" msgstr "" -#: sickbeard/webserve.py:855 +#: sickbeard/webserve.py:854 msgid "Unable to connect to host" msgstr "Αδυναμία σύνδεσης στον διακομιστή" -#: sickbeard/webserve.py:876 +#: sickbeard/webserve.py:875 msgid "SMS sent successfully" msgstr "" -#: sickbeard/webserve.py:878 +#: sickbeard/webserve.py:877 msgid "Problem sending SMS: {message}" msgstr "" -#: sickbeard/webserve.py:885 +#: sickbeard/webserve.py:884 msgid "Telegram notification succeeded. Check your Telegram clients to make sure it worked" msgstr "" -#: sickbeard/webserve.py:887 +#: sickbeard/webserve.py:886 msgid "Error sending Telegram notification: {message}" msgstr "" -#: sickbeard/webserve.py:894 +#: sickbeard/webserve.py:893 msgid "join notification succeeded. Check your join clients to make sure it worked" msgstr "" -#: sickbeard/webserve.py:896 +#: sickbeard/webserve.py:895 msgid "Error sending join notification: {message}" msgstr "" -#: sickbeard/webserve.py:906 +#: sickbeard/webserve.py:905 msgid " with password" msgstr " με κωδικό πρόσβασης" -#: sickbeard/webserve.py:908 +#: sickbeard/webserve.py:907 msgid "Registered and Tested growl successfully {growl_host}" msgstr "" -#: sickbeard/webserve.py:910 +#: sickbeard/webserve.py:909 msgid "Registration and Testing of growl failed {growl_host}" msgstr "" -#: sickbeard/webserve.py:917 +#: sickbeard/webserve.py:916 msgid "Test prowl notice sent successfully" msgstr "" -#: sickbeard/webserve.py:919 +#: sickbeard/webserve.py:918 msgid "Test prowl notice failed" msgstr "" -#: sickbeard/webserve.py:926 +#: sickbeard/webserve.py:925 msgid "Boxcar2 notification succeeded. Check your Boxcar2 clients to make sure it worked" msgstr "" -#: sickbeard/webserve.py:928 +#: sickbeard/webserve.py:927 msgid "Error sending Boxcar2 notification" msgstr "" -#: sickbeard/webserve.py:935 +#: sickbeard/webserve.py:934 msgid "Pushover notification succeeded. Check your Pushover clients to make sure it worked" msgstr "" -#: sickbeard/webserve.py:937 +#: sickbeard/webserve.py:936 msgid "Error sending Pushover notification" msgstr "" -#: sickbeard/webserve.py:949 +#: sickbeard/webserve.py:948 msgid "Key verification successful" msgstr "" -#: sickbeard/webserve.py:951 +#: sickbeard/webserve.py:950 msgid "Unable to verify key" msgstr "Δεν είναι δυνατή η επαλήθευση του κλειδιού" -#: sickbeard/webserve.py:958 +#: sickbeard/webserve.py:957 msgid "Tweet successful, check your twitter to make sure it worked" msgstr "" -#: sickbeard/webserve.py:960 +#: sickbeard/webserve.py:959 msgid "Error sending tweet" msgstr "" -#: sickbeard/webserve.py:965 +#: sickbeard/webserve.py:964 msgid "Please enter a valid account sid" msgstr "" -#: sickbeard/webserve.py:968 +#: sickbeard/webserve.py:967 msgid "Please enter a valid auth token" msgstr "" -#: sickbeard/webserve.py:971 +#: sickbeard/webserve.py:970 msgid "Please enter a valid phone sid" msgstr "" -#: sickbeard/webserve.py:974 +#: sickbeard/webserve.py:973 msgid "Please format the phone number as \"+1-###-###-####\"" msgstr "" -#: sickbeard/webserve.py:978 +#: sickbeard/webserve.py:977 msgid "Authorization successful and number ownership verified" msgstr "" -#: sickbeard/webserve.py:980 +#: sickbeard/webserve.py:979 msgid "Error sending sms" msgstr "" -#: sickbeard/webserve.py:986 +#: sickbeard/webserve.py:985 msgid "Slack message successful" msgstr "" -#: sickbeard/webserve.py:988 +#: sickbeard/webserve.py:987 msgid "Slack message failed" msgstr "" -#: sickbeard/webserve.py:994 +#: sickbeard/webserve.py:993 msgid "Discord message successful" msgstr "" -#: sickbeard/webserve.py:996 +#: sickbeard/webserve.py:995 msgid "Discord message failed" msgstr "" -#: sickbeard/webserve.py:1006 +#: sickbeard/webserve.py:1005 msgid "Test KODI notice sent successfully to {kodi_host}" msgstr "" -#: sickbeard/webserve.py:1008 +#: sickbeard/webserve.py:1007 msgid "Test KODI notice failed to {kodi_host}" msgstr "" -#: sickbeard/webserve.py:1023 +#: sickbeard/webserve.py:1022 msgid "Successful test notice sent to Plex Home Theater ... {plex_clients}" msgstr "" -#: sickbeard/webserve.py:1025 +#: sickbeard/webserve.py:1024 msgid "Test failed for Plex Home Theater ... {plex_clients}" msgstr "" -#: sickbeard/webserve.py:1028 +#: sickbeard/webserve.py:1027 msgid "Tested Plex Home Theater(s)" msgstr "" -#: sickbeard/webserve.py:1042 +#: sickbeard/webserve.py:1041 msgid "Successful test of Plex Media Server(s) ... {plex_servers}" msgstr "" -#: sickbeard/webserve.py:1044 +#: sickbeard/webserve.py:1043 msgid "Test failed, No Plex Media Server host specified" msgstr "" -#: sickbeard/webserve.py:1046 +#: sickbeard/webserve.py:1045 msgid "Test failed for Plex Media Server(s) ... {plex_servers}" msgstr "" -#: sickbeard/webserve.py:1049 +#: sickbeard/webserve.py:1048 msgid "Tested Plex Media Server host(s)" msgstr "" -#: sickbeard/webserve.py:1057 +#: sickbeard/webserve.py:1056 msgid "Tried sending desktop notification via libnotify" msgstr "" -#: sickbeard/webserve.py:1066 +#: sickbeard/webserve.py:1065 msgid "Test notice sent successfully to {emby_host}" msgstr "" -#: sickbeard/webserve.py:1068 +#: sickbeard/webserve.py:1067 msgid "Test notice failed to {emby_host}" msgstr "" -#: sickbeard/webserve.py:1076 +#: sickbeard/webserve.py:1075 msgid "Successfully started the scan update" msgstr "" -#: sickbeard/webserve.py:1078 +#: sickbeard/webserve.py:1077 msgid "Test failed to start the scan update" msgstr "" -#: sickbeard/webserve.py:1097 +#: sickbeard/webserve.py:1096 msgid "Test notice sent successfully to {nmj2_host}" msgstr "" -#: sickbeard/webserve.py:1099 +#: sickbeard/webserve.py:1098 msgid "Test notice failed to {nmj2_host}" msgstr "" -#: sickbeard/webserve.py:1119 +#: sickbeard/webserve.py:1118 msgid "Trakt Authorized" msgstr "" -#: sickbeard/webserve.py:1120 +#: sickbeard/webserve.py:1119 msgid "Trakt Not Authorized!" msgstr "" -#: sickbeard/webserve.py:1184 +#: sickbeard/webserve.py:1183 msgid "Test email sent successfully! Check inbox." msgstr "" -#: sickbeard/webserve.py:1186 +#: sickbeard/webserve.py:1185 msgid "ERROR: {last_error}" msgstr "" -#: sickbeard/webserve.py:1193 +#: sickbeard/webserve.py:1192 msgid "Test NMA notice sent successfully" msgstr "" -#: sickbeard/webserve.py:1195 +#: sickbeard/webserve.py:1194 msgid "Test NMA notice failed" msgstr "" -#: sickbeard/webserve.py:1202 +#: sickbeard/webserve.py:1201 msgid "Pushalot notification succeeded. Check your Pushalot clients to make sure it worked" msgstr "" -#: sickbeard/webserve.py:1204 +#: sickbeard/webserve.py:1203 msgid "Error sending Pushalot notification" msgstr "" -#: sickbeard/webserve.py:1211 +#: sickbeard/webserve.py:1210 msgid "Pushbullet notification succeeded. Check your device to make sure it worked" msgstr "" -#: sickbeard/webserve.py:1213 sickbeard/webserve.py:1223 sickbeard/webserve.py:1232 +#: sickbeard/webserve.py:1212 sickbeard/webserve.py:1222 sickbeard/webserve.py:1231 msgid "Error sending Pushbullet notification" msgstr "" #: gui/slick/views/displayShow.mako:436 gui/slick/views/inc_home_showList.mako:174 -#: gui/slick/views/manage.mako:49 sickbeard/webserve.py:1249 +#: gui/slick/views/manage.mako:49 sickbeard/webserve.py:1248 msgid "Status" msgstr "" -#: sickbeard/webserve.py:1268 sickbeard/webserve.py:1297 +#: sickbeard/webserve.py:1267 sickbeard/webserve.py:1296 msgid "Restarting SickRage" msgstr "" -#: sickbeard/webserve.py:1300 +#: sickbeard/webserve.py:1299 msgid "Update Failed" msgstr "" -#: sickbeard/webserve.py:1301 +#: sickbeard/webserve.py:1300 msgid "Update wasn't successful, not restarting. Check your log for more information." msgstr "" -#: sickbeard/webserve.py:1308 +#: sickbeard/webserve.py:1307 msgid "Checking out branch" msgstr "" -#: sickbeard/webserve.py:1311 +#: sickbeard/webserve.py:1310 msgid "Already on branch" msgstr "" -#: sickbeard/webserve.py:1339 +#: sickbeard/webserve.py:1338 msgid "Invalid show ID: {show}" msgstr "" -#: sickbeard/webserve.py:1342 sickbeard/webserve.py:1871 sickbeard/webserve.py:2002 -#: sickbeard/webserve.py:2040 +#: sickbeard/webserve.py:1341 sickbeard/webserve.py:1870 sickbeard/webserve.py:2001 +#: sickbeard/webserve.py:2039 msgid "Show not in show list" msgstr "" #: gui/slick/views/inc_rootDirs.mako:31 gui/slick/views/manage.mako:38 -#: gui/slick/views/manage_massEdit.mako:74 sickbeard/webserve.py:1358 -#: sickbeard/webserve.py:2027 +#: gui/slick/views/manage_massEdit.mako:74 sickbeard/webserve.py:1357 +#: sickbeard/webserve.py:2026 msgid "Edit" msgstr "Επεξεργασία" -#: sickbeard/webserve.py:1368 +#: sickbeard/webserve.py:1367 msgid "This show is in the process of being downloaded - the info below is incomplete." msgstr "" -#: sickbeard/webserve.py:1371 +#: sickbeard/webserve.py:1370 msgid "The information on this page is in the process of being updated." msgstr "" -#: sickbeard/webserve.py:1374 +#: sickbeard/webserve.py:1373 msgid "The episodes below are currently being refreshed from disk" msgstr "" -#: sickbeard/webserve.py:1377 +#: sickbeard/webserve.py:1376 msgid "Currently downloading subtitles for this show" msgstr "" -#: sickbeard/webserve.py:1380 +#: sickbeard/webserve.py:1379 msgid "This show is queued to be refreshed." msgstr "" -#: sickbeard/webserve.py:1383 +#: sickbeard/webserve.py:1382 msgid "This show is queued and awaiting an update." msgstr "" -#: sickbeard/webserve.py:1386 +#: sickbeard/webserve.py:1385 msgid "This show is queued and awaiting subtitles download." msgstr "" -#: gui/slick/js/core.js:4081 sickbeard/webserve.py:1391 +#: gui/slick/js/core.js:4081 sickbeard/webserve.py:1390 msgid "Resume" msgstr "" #: gui/slick/js/core.js:4081 gui/slick/views/viewlogs.mako:12 -#: sickbeard/webserve.py:1393 +#: sickbeard/webserve.py:1392 msgid "Pause" msgstr "Παύση" #: gui/slick/views/editShow.mako:345 gui/slick/views/inc_blackwhitelist.mako:40 #: gui/slick/views/inc_blackwhitelist.mako:85 gui/slick/views/manage.mako:58 -#: gui/slick/views/manage_failedDownloads.mako:43 sickbeard/webserve.py:1395 +#: gui/slick/views/manage_failedDownloads.mako:43 sickbeard/webserve.py:1394 msgid "Remove" msgstr "Κατάργηση" -#: sickbeard/webserve.py:1396 +#: sickbeard/webserve.py:1395 msgid "Re-scan files" msgstr "" -#: sickbeard/webserve.py:1397 +#: sickbeard/webserve.py:1396 msgid "Force Full Update" msgstr "" -#: sickbeard/webserve.py:1398 +#: sickbeard/webserve.py:1397 msgid "Update show in KODI" msgstr "" -#: sickbeard/webserve.py:1399 +#: sickbeard/webserve.py:1398 msgid "Update show in Emby" msgstr "" -#: sickbeard/webserve.py:1402 +#: sickbeard/webserve.py:1401 msgid "Hide specials" msgstr "" -#: sickbeard/webserve.py:1404 +#: sickbeard/webserve.py:1403 msgid "Show specials" msgstr "" -#: sickbeard/webserve.py:1406 sickbeard/webserve.py:2030 sickbeard/webserve.py:2031 +#: sickbeard/webserve.py:1405 sickbeard/webserve.py:2029 sickbeard/webserve.py:2030 msgid "Preview Rename" msgstr "" -#: sickbeard/webserve.py:1409 +#: sickbeard/webserve.py:1408 msgid "Download Subtitles" msgstr "" -#: sickbeard/webserve.py:1498 +#: sickbeard/webserve.py:1497 msgid "No scene exceptions" msgstr "" -#: sickbeard/webserve.py:1516 sickbeard/webserve.py:1764 sickbeard/webserve.py:1785 +#: sickbeard/webserve.py:1515 sickbeard/webserve.py:1763 sickbeard/webserve.py:1784 msgid "Invalid show ID" msgstr "" -#: sickbeard/webserve.py:1525 sickbeard/webserve.py:1769 sickbeard/webserve.py:1790 +#: sickbeard/webserve.py:1524 sickbeard/webserve.py:1768 sickbeard/webserve.py:1789 msgid "Unable to find the specified show" msgstr "" -#: sickbeard/webserve.py:1550 +#: sickbeard/webserve.py:1549 msgid "Unable to retreive Fansub Groups from AniDB." msgstr "" -#: sickbeard/webserve.py:1559 sickbeard/webserve.py:1561 +#: sickbeard/webserve.py:1558 sickbeard/webserve.py:1560 msgid "Edit Show" msgstr "" -#: sickbeard/webserve.py:1637 sickbeard/webserve.py:1671 +#: sickbeard/webserve.py:1636 sickbeard/webserve.py:1670 msgid "Unable to refresh this show: {error}" msgstr "" -#: sickbeard/webserve.py:1663 +#: sickbeard/webserve.py:1662 msgid "New location <tt>{location}</tt> does not exist" msgstr "" -#: sickbeard/webserve.py:1688 +#: sickbeard/webserve.py:1687 msgid "Unable to update show: {error}" msgstr "" -#: sickbeard/webserve.py:1695 +#: sickbeard/webserve.py:1694 msgid "Unable to force an update on scene exceptions of the show." msgstr "" -#: sickbeard/webserve.py:1702 +#: sickbeard/webserve.py:1701 msgid "Unable to force an update on scene numbering of the show." msgstr "" -#: sickbeard/webserve.py:1708 sickbeard/webserve.py:3540 +#: sickbeard/webserve.py:1707 sickbeard/webserve.py:3539 msgid "{num_errors:d} error{plural} while saving changes:" msgstr "" -#: sickbeard/webserve.py:1719 +#: sickbeard/webserve.py:1718 msgid "{show_name} has been {paused_resumed}" msgstr "" -#: sickbeard/webserve.py:1719 +#: sickbeard/webserve.py:1718 msgid "resumed" msgstr "" -#: sickbeard/webserve.py:1719 +#: sickbeard/webserve.py:1718 msgid "paused" msgstr "" -#: sickbeard/webserve.py:1731 +#: sickbeard/webserve.py:1730 msgid "{show_name} has been {deleted_trashed} {was_deleted}" msgstr "" -#: sickbeard/webserve.py:1733 +#: sickbeard/webserve.py:1732 msgid "deleted" msgstr "" -#: sickbeard/webserve.py:1733 +#: sickbeard/webserve.py:1732 msgid "trashed" msgstr "" -#: sickbeard/webserve.py:1734 +#: sickbeard/webserve.py:1733 msgid "(media untouched)" msgstr "" -#: sickbeard/webserve.py:1734 +#: sickbeard/webserve.py:1733 msgid "(with all related media)" msgstr "" -#: sickbeard/webserve.py:1755 +#: sickbeard/webserve.py:1754 msgid "Unable to refresh this show." msgstr "" -#: sickbeard/webserve.py:1775 +#: sickbeard/webserve.py:1774 msgid "Unable to update this show." msgstr "" -#: sickbeard/webserve.py:1814 +#: sickbeard/webserve.py:1813 msgid "Library update command sent to KODI host(s)): {kodi_hosts}" msgstr "" -#: sickbeard/webserve.py:1816 +#: sickbeard/webserve.py:1815 msgid "Unable to contact one or more KODI host(s)): {kodi_hosts}" msgstr "" -#: sickbeard/webserve.py:1825 +#: sickbeard/webserve.py:1824 msgid "Library update command sent to Plex Media Server host: {plex_server}" msgstr "" -#: sickbeard/webserve.py:1828 +#: sickbeard/webserve.py:1827 msgid "Unable to contact Plex Media Server host: {plex_server}" msgstr "" -#: sickbeard/webserve.py:1840 +#: sickbeard/webserve.py:1839 msgid "Library update command sent to Emby host: {emby_host}" msgstr "" -#: sickbeard/webserve.py:1842 +#: sickbeard/webserve.py:1841 msgid "Unable to contact Emby host: {emby_host}" msgstr "" -#: sickbeard/webserve.py:1852 sickbeard/webserve.py:2036 +#: sickbeard/webserve.py:1851 sickbeard/webserve.py:2035 msgid "You must specify a show and at least one episode" msgstr "" -#: sickbeard/webserve.py:1861 +#: sickbeard/webserve.py:1860 msgid "Invalid status" msgstr "" -#: sickbeard/webserve.py:1954 +#: sickbeard/webserve.py:1953 msgid "Backlog was automatically started for the following seasons of <b>{show_name}</b>" msgstr "" #: gui/slick/views/displayShow.mako:74 gui/slick/views/displayShow.mako:79 -#: gui/slick/views/displayShow.mako:404 sickbeard/webserve.py:1961 -#: sickbeard/webserve.py:1980 +#: gui/slick/views/displayShow.mako:404 sickbeard/webserve.py:1960 +#: sickbeard/webserve.py:1979 msgid "Season" msgstr "" -#: sickbeard/webserve.py:1968 +#: sickbeard/webserve.py:1967 msgid "Backlog started" msgstr "" -#: sickbeard/webserve.py:1973 +#: sickbeard/webserve.py:1972 msgid "Retrying Search was automatically started for the following season of <b>{show_name}</b>" msgstr "" -#: sickbeard/webserve.py:1987 +#: sickbeard/webserve.py:1986 msgid "Retry Search started" msgstr "" -#: sickbeard/webserve.py:1997 +#: sickbeard/webserve.py:1996 msgid "You must specify a show" msgstr "" -#: sickbeard/webserve.py:2007 sickbeard/webserve.py:2045 +#: sickbeard/webserve.py:2006 sickbeard/webserve.py:2044 msgid "Can't rename episodes when the show dir is missing." msgstr "" -#: sickbeard/webserve.py:2212 sickbeard/webserve.py:2233 +#: sickbeard/webserve.py:2211 sickbeard/webserve.py:2232 msgid "New subtitles downloaded: {new_subtitle_languages}" msgstr "" -#: sickbeard/webserve.py:2215 sickbeard/webserve.py:2236 +#: sickbeard/webserve.py:2214 sickbeard/webserve.py:2235 msgid "No subtitles downloaded" msgstr "" #: gui/slick/views/config_general.mako:80 gui/slick/views/layouts/main.mako:222 -#: sickbeard/webserve.py:2363 +#: sickbeard/webserve.py:2362 msgid "IRC" msgstr "" -#: sickbeard/webserve.py:2376 +#: sickbeard/webserve.py:2375 msgid "Could not load news from the repo. [Click here for news.md])({news_url})" msgstr "" -#: sickbeard/webserve.py:2383 sickbeard/webserve.py:2401 +#: sickbeard/webserve.py:2382 sickbeard/webserve.py:2400 msgid "The was a problem connecting to github, please refresh and try again" msgstr "" -#: sickbeard/webserve.py:2398 +#: sickbeard/webserve.py:2397 msgid "Could not load changes from the repo. [Click here for CHANGES.md]({changes_url})" msgstr "" -#: gui/slick/views/layouts/main.mako:223 sickbeard/webserve.py:2403 +#: gui/slick/views/layouts/main.mako:223 sickbeard/webserve.py:2402 msgid "Changelog" msgstr "" -#: gui/slick/views/layouts/main.mako:190 sickbeard/webserve.py:2413 -#: sickbeard/webserve.py:3855 sickbeard/webserve.py:4341 +#: gui/slick/views/layouts/main.mako:190 sickbeard/webserve.py:2412 +#: sickbeard/webserve.py:3826 sickbeard/webserve.py:4312 msgid "Post Processing" msgstr "" -#: gui/slick/views/layouts/main.mako:128 sickbeard/webserve.py:2445 +#: gui/slick/views/layouts/main.mako:128 sickbeard/webserve.py:2444 msgid "Add Shows" msgstr "" -#: sickbeard/webserve.py:2510 +#: sickbeard/webserve.py:2509 msgid "No folders selected." msgstr "" -#: sickbeard/webserve.py:2632 +#: sickbeard/webserve.py:2631 msgid "New Show" msgstr "" -#: sickbeard/webserve.py:2647 +#: sickbeard/webserve.py:2646 msgid "Trending Shows" msgstr "" -#: sickbeard/webserve.py:2649 sickbeard/webserve.py:2772 +#: sickbeard/webserve.py:2648 sickbeard/webserve.py:2771 msgid "Popular Shows" msgstr "" -#: sickbeard/webserve.py:2651 sickbeard/webserve.py:2665 +#: sickbeard/webserve.py:2650 sickbeard/webserve.py:2664 msgid "Most Anticipated Shows" msgstr "" -#: sickbeard/webserve.py:2653 +#: sickbeard/webserve.py:2652 msgid "Most Collected Shows" msgstr "" -#: sickbeard/webserve.py:2655 +#: sickbeard/webserve.py:2654 msgid "Most Watched Shows" msgstr "" -#: sickbeard/webserve.py:2657 +#: sickbeard/webserve.py:2656 msgid "Most Played Shows" msgstr "" -#: sickbeard/webserve.py:2659 +#: sickbeard/webserve.py:2658 msgid "Recommended Shows" msgstr "" -#: gui/slick/views/addShows_trendingShows.mako:60 sickbeard/webserve.py:2661 +#: gui/slick/views/addShows_trendingShows.mako:60 sickbeard/webserve.py:2660 msgid "New Shows" msgstr "" -#: gui/slick/views/addShows_trendingShows.mako:61 sickbeard/webserve.py:2663 +#: gui/slick/views/addShows_trendingShows.mako:61 sickbeard/webserve.py:2662 msgid "Season Premieres" msgstr "" -#: sickbeard/webserve.py:2792 sickbeard/webserve.py:2793 +#: sickbeard/webserve.py:2791 sickbeard/webserve.py:2792 msgid "Existing Show" msgstr "" -#: sickbeard/webserve.py:2871 +#: sickbeard/webserve.py:2870 msgid "No root directories setup, please go back and add one." msgstr "" -#: sickbeard/webserve.py:2883 sickbeard/webserve.py:3002 +#: sickbeard/webserve.py:2882 sickbeard/webserve.py:3001 msgid "Show added" msgstr "" -#: sickbeard/webserve.py:2883 +#: sickbeard/webserve.py:2882 msgid "Adding the specified show {show_name}" msgstr "" -#: sickbeard/webserve.py:2924 +#: sickbeard/webserve.py:2923 msgid "Missing params, no Indexer ID or folder: {show_to_add} and {root_dir}/{show_path}" msgstr "" -#: sickbeard/webserve.py:2933 +#: sickbeard/webserve.py:2932 msgid "Unknown error. Unable to add show due to problem with show selection." msgstr "" -#: sickbeard/webserve.py:2957 sickbeard/webserve.py:2967 +#: sickbeard/webserve.py:2956 sickbeard/webserve.py:2966 msgid "Unable to add show" msgstr "" -#: sickbeard/webserve.py:2957 +#: sickbeard/webserve.py:2956 msgid "Folder {show_dir} exists already" msgstr "" -#: sickbeard/webserve.py:2968 +#: sickbeard/webserve.py:2967 msgid "Unable to create the folder {show_dir}, can't add the show" msgstr "" -#: sickbeard/webserve.py:3002 +#: sickbeard/webserve.py:3001 msgid "Adding the specified show into {show_dir}" msgstr "" -#: sickbeard/webserve.py:3078 +#: sickbeard/webserve.py:3077 msgid "Shows Added" msgstr "" -#: sickbeard/webserve.py:3079 +#: sickbeard/webserve.py:3078 msgid "Automatically added {num_shows} from their existing metadata files" msgstr "" -#: gui/slick/views/layouts/main.mako:153 sickbeard/webserve.py:3096 +#: gui/slick/views/layouts/main.mako:153 sickbeard/webserve.py:3095 msgid "Mass Update" msgstr "" -#: sickbeard/webserve.py:3134 sickbeard/webserve.py:3161 sickbeard/webserve.py:3237 -#: sickbeard/webserve.py:3238 +#: sickbeard/webserve.py:3133 sickbeard/webserve.py:3160 sickbeard/webserve.py:3236 +#: sickbeard/webserve.py:3237 msgid "Episode Overview" msgstr "" -#: sickbeard/webserve.py:3270 +#: sickbeard/webserve.py:3269 msgid "Missing Subtitles" msgstr "" -#: gui/slick/views/layouts/main.mako:154 sickbeard/webserve.py:3356 -#: sickbeard/webserve.py:3357 +#: gui/slick/views/layouts/main.mako:154 sickbeard/webserve.py:3355 +#: sickbeard/webserve.py:3356 msgid "Backlog Overview" msgstr "" -#: sickbeard/webserve.py:3481 +#: sickbeard/webserve.py:3480 msgid "Mass Edit" msgstr "" -#: sickbeard/webserve.py:3586 +#: sickbeard/webserve.py:3585 msgid "Unable to update show: {excption_format}" msgstr "" -#: sickbeard/webserve.py:3594 +#: sickbeard/webserve.py:3593 msgid "Unable to refresh show {show_name}: {excption_format}" msgstr "" -#: sickbeard/webserve.py:3605 +#: sickbeard/webserve.py:3604 msgid "Errors encountered" msgstr "" -#: gui/slick/views/config_general.mako:261 sickbeard/webserve.py:3611 +#: gui/slick/views/config_general.mako:261 sickbeard/webserve.py:3610 msgid "Updates" msgstr "" -#: sickbeard/webserve.py:3616 +#: sickbeard/webserve.py:3615 msgid "Refreshes" msgstr "" -#: sickbeard/webserve.py:3621 +#: sickbeard/webserve.py:3620 msgid "Renames" msgstr "" #: gui/slick/views/displayShow.mako:260 gui/slick/views/displayShow.mako:435 #: gui/slick/views/editShow.mako:119 gui/slick/views/inc_addShowOptions.mako:20 -#: gui/slick/views/manage_massEdit.mako:262 sickbeard/webserve.py:3626 -#: sickbeard/webserve.py:5244 +#: gui/slick/views/manage_massEdit.mako:262 sickbeard/webserve.py:3625 +#: sickbeard/webserve.py:5215 msgid "Subtitles" msgstr "" -#: sickbeard/webserve.py:3631 +#: sickbeard/webserve.py:3630 msgid "The following actions were queued" msgstr "" -#: sickbeard/webserve.py:3651 -msgid "For best results please set the Download Station alias as" -msgstr "" - -#: sickbeard/webserve.py:3652 -msgid "You can check this setting in the Synology DSM" -msgstr "" - -#: sickbeard/webserve.py:3652 sickbeard/webserve.py:3654 -msgid "Control Panel" -msgstr "" - -#: sickbeard/webserve.py:3652 -msgid "Application Portal" -msgstr "" - -#: sickbeard/webserve.py:3653 -msgid "Make sure you allow DSM to be embedded with iFrames too in" -msgstr "" - -#: sickbeard/webserve.py:3654 -msgid "DSM Settings" -msgstr "" - -#: sickbeard/webserve.py:3654 -msgid "Security" -msgstr "" - -#: gui/slick/views/layouts/main.mako:167 sickbeard/webserve.py:3662 -msgid "Manage Torrents" -msgstr "" - -#: gui/slick/views/layouts/main.mako:170 sickbeard/webserve.py:3683 +#: gui/slick/views/layouts/main.mako:170 sickbeard/webserve.py:3654 msgid "Failed Downloads" msgstr "" -#: gui/slick/views/layouts/main.mako:155 sickbeard/webserve.py:3701 +#: gui/slick/views/layouts/main.mako:155 sickbeard/webserve.py:3672 msgid "Manage Searches" msgstr "" -#: sickbeard/webserve.py:3709 +#: sickbeard/webserve.py:3680 msgid "Backlog search started" msgstr "" -#: sickbeard/webserve.py:3719 +#: sickbeard/webserve.py:3690 msgid "Daily search started" msgstr "" -#: sickbeard/webserve.py:3728 +#: sickbeard/webserve.py:3699 msgid "Find propers search started" msgstr "" -#: sickbeard/webserve.py:3737 +#: sickbeard/webserve.py:3708 msgid "Subtitle search started" msgstr "" -#: sickbeard/webserve.py:3801 +#: sickbeard/webserve.py:3772 msgid "Remove Selected" msgstr "" -#: sickbeard/webserve.py:3802 +#: sickbeard/webserve.py:3773 msgid "Clear History" msgstr "" -#: sickbeard/webserve.py:3803 +#: sickbeard/webserve.py:3774 msgid "Trim History" msgstr "" -#: sickbeard/webserve.py:3823 +#: sickbeard/webserve.py:3794 msgid "Selected history entries removed" msgstr "" -#: sickbeard/webserve.py:3830 +#: sickbeard/webserve.py:3801 msgid "History cleared" msgstr "" -#: sickbeard/webserve.py:3837 +#: sickbeard/webserve.py:3808 msgid "Removed history entries older than 30 days" msgstr "" -#: gui/slick/views/layouts/main.mako:185 sickbeard/webserve.py:3850 +#: gui/slick/views/layouts/main.mako:185 sickbeard/webserve.py:3821 msgid "General" msgstr "" -#: sickbeard/webserve.py:3851 sickbeard/webserve.py:4143 +#: sickbeard/webserve.py:3822 sickbeard/webserve.py:4114 msgid "Backup/Restore" msgstr "" -#: gui/slick/views/layouts/main.mako:187 sickbeard/webserve.py:3852 -#: sickbeard/webserve.py:4206 +#: gui/slick/views/layouts/main.mako:187 sickbeard/webserve.py:3823 +#: sickbeard/webserve.py:4177 msgid "Search Settings" msgstr "" -#: gui/slick/views/layouts/main.mako:188 sickbeard/webserve.py:3853 -#: sickbeard/webserve.py:4518 +#: gui/slick/views/layouts/main.mako:188 sickbeard/webserve.py:3824 +#: sickbeard/webserve.py:4489 msgid "Search Providers" msgstr "" -#: gui/slick/views/layouts/main.mako:189 sickbeard/webserve.py:3854 +#: gui/slick/views/layouts/main.mako:189 sickbeard/webserve.py:3825 msgid "Subtitles Settings" msgstr "" -#: gui/slick/views/layouts/main.mako:191 sickbeard/webserve.py:3856 -#: sickbeard/webserve.py:4964 +#: gui/slick/views/layouts/main.mako:191 sickbeard/webserve.py:3827 +#: sickbeard/webserve.py:4935 msgid "Notifications" msgstr "" @@ -1240,142 +1237,142 @@ msgstr "" #: gui/slick/views/home.mako:35 gui/slick/views/inc_addShowOptions.mako:79 #: gui/slick/views/inc_home_showList.mako:179 gui/slick/views/layouts/main.mako:192 #: gui/slick/views/manage.mako:44 gui/slick/views/manage_massEdit.mako:202 -#: sickbeard/webserve.py:3857 sickbeard/webserve.py:5309 +#: sickbeard/webserve.py:3828 sickbeard/webserve.py:5280 msgid "Anime" msgstr "" -#: sickbeard/webserve.py:3895 sickbeard/webserve.py:3896 +#: sickbeard/webserve.py:3866 sickbeard/webserve.py:3867 msgid "SickRage Configuration" msgstr "" -#: sickbeard/webserve.py:3910 +#: sickbeard/webserve.py:3881 msgid "Config - Shares" msgstr "" -#: sickbeard/webserve.py:3910 +#: sickbeard/webserve.py:3881 msgid "Windows Shares Configuration" msgstr "" -#: sickbeard/webserve.py:3937 +#: sickbeard/webserve.py:3908 msgid "Saved Shares" msgstr "" -#: sickbeard/webserve.py:3937 +#: sickbeard/webserve.py:3908 msgid "Your Windows share settings have been saved" msgstr "" -#: sickbeard/webserve.py:3948 +#: sickbeard/webserve.py:3919 msgid "Config - General" msgstr "" -#: sickbeard/webserve.py:3948 +#: sickbeard/webserve.py:3919 msgid "General Configuration" msgstr "" -#: sickbeard/webserve.py:3988 +#: sickbeard/webserve.py:3959 msgid "Saved Defaults" msgstr "" -#: sickbeard/webserve.py:3988 +#: sickbeard/webserve.py:3959 msgid "Your \"add show\" defaults have been set to your current selections." msgstr "" -#: sickbeard/webserve.py:4095 +#: sickbeard/webserve.py:4066 msgid "Unable to create directory {directory}, log directory not changed." msgstr "" -#: sickbeard/webserve.py:4103 +#: sickbeard/webserve.py:4074 msgid "Unable to create directory {directory}, https cert directory not changed." msgstr "" -#: sickbeard/webserve.py:4107 +#: sickbeard/webserve.py:4078 msgid "Unable to create directory {directory}, https key directory not changed." msgstr "" -#: sickbeard/webserve.py:4126 sickbeard/webserve.py:4324 sickbeard/webserve.py:4456 -#: sickbeard/webserve.py:5227 +#: sickbeard/webserve.py:4097 sickbeard/webserve.py:4295 sickbeard/webserve.py:4427 +#: sickbeard/webserve.py:5198 msgid "Error(s) Saving Configuration" msgstr "" -#: sickbeard/webserve.py:4129 sickbeard/webserve.py:4327 sickbeard/webserve.py:4458 -#: sickbeard/webserve.py:4950 sickbeard/webserve.py:5230 sickbeard/webserve.py:5294 -#: sickbeard/webserve.py:5323 +#: sickbeard/webserve.py:4100 sickbeard/webserve.py:4298 sickbeard/webserve.py:4429 +#: sickbeard/webserve.py:4921 sickbeard/webserve.py:5201 sickbeard/webserve.py:5265 +#: sickbeard/webserve.py:5294 msgid "Configuration Saved" msgstr "" -#: sickbeard/webserve.py:4142 +#: sickbeard/webserve.py:4113 msgid "Config - Backup/Restore" msgstr "" -#: sickbeard/webserve.py:4205 +#: sickbeard/webserve.py:4176 msgid "Config - Episode Search" msgstr "" -#: sickbeard/webserve.py:4340 +#: sickbeard/webserve.py:4311 msgid "Config - Post Processing" msgstr "" -#: sickbeard/webserve.py:4380 +#: sickbeard/webserve.py:4351 msgid "Unpacking Not Supported, disabling unpack setting" msgstr "" -#: sickbeard/webserve.py:4431 +#: sickbeard/webserve.py:4402 msgid "You tried saving an invalid normal naming config, not saving your naming settings" msgstr "" -#: sickbeard/webserve.py:4439 +#: sickbeard/webserve.py:4410 msgid "You tried saving an invalid anime naming config, not saving your naming settings" msgstr "" -#: sickbeard/webserve.py:4517 +#: sickbeard/webserve.py:4488 msgid "Config - Providers" msgstr "" -#: sickbeard/webserve.py:4547 +#: sickbeard/webserve.py:4518 msgid "No Provider Name specified" msgstr "" -#: sickbeard/webserve.py:4549 +#: sickbeard/webserve.py:4520 msgid "No Provider Url specified" msgstr "" -#: sickbeard/webserve.py:4551 +#: sickbeard/webserve.py:4522 msgid "No Provider Api key specified" msgstr "" -#: sickbeard/webserve.py:4963 +#: sickbeard/webserve.py:4934 msgid "Config - Notifications" msgstr "" -#: sickbeard/webserve.py:5243 +#: sickbeard/webserve.py:5214 msgid "Config - Subtitles" msgstr "" -#: sickbeard/webserve.py:5308 +#: sickbeard/webserve.py:5279 msgid "Config - Anime" msgstr "" -#: sickbeard/webserve.py:5336 +#: sickbeard/webserve.py:5307 msgid "Clear Errors" msgstr "" -#: sickbeard/webserve.py:5342 +#: sickbeard/webserve.py:5313 msgid "Clear Warnings" msgstr "" -#: sickbeard/webserve.py:5348 +#: sickbeard/webserve.py:5319 msgid "Submit Errors" msgstr "" -#: sickbeard/webserve.py:5363 +#: sickbeard/webserve.py:5334 msgid "Logs & Errors" msgstr "" -#: sickbeard/webserve.py:5388 +#: sickbeard/webserve.py:5359 msgid "Log File" msgstr "" -#: sickbeard/webserve.py:5388 +#: sickbeard/webserve.py:5359 msgid "Logs" msgstr "" @@ -1383,30 +1380,166 @@ msgstr "" msgid "This is a test notification from SickRage" msgstr "" -#: gui/slick/js/core.js:481 gui/slick/js/core.js:502 gui/slick/js/core.js:524 -#: gui/slick/js/core.js:548 gui/slick/js/core.js:573 gui/slick/js/core.js:596 -#: gui/slick/js/core.js:625 gui/slick/js/core.js:645 gui/slick/js/core.js:690 -#: gui/slick/js/core.js:769 gui/slick/js/core.js:829 gui/slick/js/core.js:849 -#: gui/slick/js/core.js:879 gui/slick/js/core.js:909 gui/slick/js/core.js:969 -#: gui/slick/js/core.js:1046 gui/slick/js/core.js:1066 gui/slick/js/core.js:1085 +#: gui/slick/js/browser.js:6 +msgid "Choose Directory" +msgstr "" + +#: gui/slick/js/core.js:443 +msgid "Select log file folder location" +msgstr "" + +#: gui/slick/js/core.js:445 +msgid "Select CSS file" +msgstr "" + +#: gui/slick/js/core.js:469 +msgid "Select backup folder to save to" +msgstr "" + +#: gui/slick/js/core.js:470 +msgid "Select backup files to restore" +msgstr "" + +#: gui/slick/js/core.js:479 gui/slick/js/core.js:500 gui/slick/js/core.js:522 +#: gui/slick/js/core.js:546 gui/slick/js/core.js:571 gui/slick/js/core.js:594 +#: gui/slick/js/core.js:623 gui/slick/js/core.js:643 gui/slick/js/core.js:688 +#: gui/slick/js/core.js:767 gui/slick/js/core.js:827 gui/slick/js/core.js:847 +#: gui/slick/js/core.js:877 gui/slick/js/core.js:907 gui/slick/js/core.js:967 +#: gui/slick/js/core.js:1044 gui/slick/js/core.js:1064 gui/slick/js/core.js:1083 msgid "Please fill out the necessary fields above." msgstr "" -#: gui/slick/js/core.js:1328 gui/slick/js/core.js:1378 gui/slick/js/core.js:1427 -#: gui/slick/js/core.js:1493 +#: gui/slick/js/core.js:680 +msgid "<b>Step 1:</b> Confirm Authorization" +msgstr "" + +#: gui/slick/js/core.js:977 +msgid "Check blacklist name; the value needs to be a trakt slug" +msgstr "" + +#: gui/slick/js/core.js:1022 +msgid "You must provide a recipient email address!" +msgstr "" + +#: gui/slick/js/core.js:1107 +msgid "You didn't supply a Pushbullet api key" +msgstr "" + +#: gui/slick/js/core.js:1133 gui/slick/js/core.js:1162 +msgid "Don't forget to save your new pushbullet settings." +msgstr "" + +#: gui/slick/js/core.js:1262 +msgid "Select TV Download Directory" +msgstr "" + +#: gui/slick/js/core.js:1263 +msgid "Select Unpack Directory" +msgstr "" + +#: gui/slick/js/core.js:1326 gui/slick/js/core.js:1376 gui/slick/js/core.js:1425 +#: gui/slick/js/core.js:1491 msgid "This pattern is invalid." msgstr "" -#: gui/slick/js/core.js:1336 gui/slick/js/core.js:1386 gui/slick/js/core.js:1435 -#: gui/slick/js/core.js:1501 +#: gui/slick/js/core.js:1334 gui/slick/js/core.js:1384 gui/slick/js/core.js:1433 +#: gui/slick/js/core.js:1499 msgid "This pattern would be invalid without the folders, using it will force \"Season Folders\" on for all shows." msgstr "" -#: gui/slick/js/core.js:1344 gui/slick/js/core.js:1394 gui/slick/js/core.js:1443 -#: gui/slick/js/core.js:1509 +#: gui/slick/js/core.js:1342 gui/slick/js/core.js:1392 gui/slick/js/core.js:1441 +#: gui/slick/js/core.js:1507 msgid "This pattern is valid." msgstr "" +#: gui/slick/js/core.js:1818 +msgid "Select .nzb black hole/watch location" +msgstr "" + +#: gui/slick/js/core.js:1819 +msgid "Select .torrent black hole/watch location" +msgstr "" + +#: gui/slick/js/core.js:1820 +msgid "Select .torrent download location" +msgstr "" + +#: gui/slick/js/core.js:1900 +msgid "Minimum seeding time is" +msgstr "" + +#: gui/slick/js/core.js:1902 +msgid "URL to your uTorrent client (e.g. http://localhost:8000)" +msgstr "" + +#: gui/slick/js/core.js:1905 +msgid "Stop seeding when inactive for" +msgstr "" + +#: gui/slick/js/core.js:1911 +msgid "URL to your Transmission client (e.g. http://localhost:9091)" +msgstr "" + +#: gui/slick/js/core.js:1921 +msgid "URL to your Deluge client (e.g. http://localhost:8112)" +msgstr "" + +#: gui/slick/js/core.js:1930 +msgid "IP or Hostname of your Deluge Daemon (e.g. scgi://localhost:58846)" +msgstr "" + +#: gui/slick/js/core.js:1937 +msgid "URL to your Synology DS client (e.g. http://localhost:5000)" +msgstr "" + +#: gui/slick/js/core.js:1941 +msgid "URL to your rTorrent client (e.g. scgi://localhost:5000 <br> or https://localhost/rutorrent/plugins/httprpc/action.php)" +msgstr "" + +#: gui/slick/js/core.js:1952 +msgid "URL to your qBittorrent client (e.g. http://localhost:8080)" +msgstr "" + +#: gui/slick/js/core.js:1962 +msgid "URL to your MLDonkey (e.g. http://localhost:4080)" +msgstr "" + +#: gui/slick/js/core.js:1974 +msgid "URL to your putio client (e.g. http://localhost:8080)" +msgstr "" + +#: gui/slick/js/core.js:1975 +msgid "<a herf=\"https://app.put.io/oauth/apps/new\" target=\"_blank\"> Create a new OAuth app for put.io</a>" +msgstr "" + +#: gui/slick/js/core.js:1977 +msgid "Put.io Parent Folder" +msgstr "" + +#: gui/slick/js/core.js:1978 +msgid "Put.io OAuth Token" +msgstr "" + +#: gui/slick/js/core.js:3383 gui/slick/views/displayShow.mako:410 +msgid "Show Episodes" +msgstr "" + +#: gui/slick/js/core.js:3388 gui/slick/views/displayShow.mako:408 +msgid "Hide Episodes" +msgstr "" + +#: gui/slick/js/core.js:3396 +msgid "Select Show Location" +msgstr "" + +#: gui/slick/js/core.js:3460 +msgid "Select Unprocessed Episode Folder" +msgstr "" + +#: gui/slick/js/core.js:3790 +msgid "DELETED" +msgstr "" + #: gui/slick/js/core.js:4082 msgid "Resume updating the log on this page." msgstr "" @@ -1415,6 +1548,26 @@ msgstr "" msgid "Pause updating the log on this page." msgstr "" +#: gui/slick/js/core.js:4323 +msgid "searching {searchingFor}..." +msgstr "" + +#: gui/slick/js/core.js:4334 +msgid "search timed out, try again or try another indexer" +msgstr "" + +#: gui/slick/js/core.js:4503 +msgid "loading folders..." +msgstr "" + +#: gui/slick/js/parsers.js:7 gui/slick/js/parsers.js:8 +#: gui/slick/js/plotTooltip.js:6 gui/slick/js/sceneExceptionsTooltip.js:6 +#: gui/slick/views/inc_home_showList.mako:209 +#: gui/slick/views/inc_home_showList.mako:215 +#: gui/slick/views/inc_home_showList.mako:231 +msgid "Loading..." +msgstr "" + #: gui/slick/views/404.mako:5 msgid "You have reached this page by accident, please check the url." msgstr "" @@ -5711,14 +5864,6 @@ msgstr "" msgid "Select Columns" msgstr "" -#: gui/slick/views/displayShow.mako:408 -msgid "Hide Episodes" -msgstr "" - -#: gui/slick/views/displayShow.mako:410 -msgid "Show Episodes" -msgstr "" - #: gui/slick/views/displayShow.mako:424 msgid "NFO" msgstr "" @@ -6232,12 +6377,6 @@ msgstr "" msgid "loading" msgstr "" -#: gui/slick/views/inc_home_showList.mako:209 -#: gui/slick/views/inc_home_showList.mako:215 -#: gui/slick/views/inc_home_showList.mako:231 -msgid "Loading..." -msgstr "" - #: gui/slick/views/inc_qualityChooser.mako:31 msgid "<p><b><u>Preferred</u></b> qualities will replace those in <b><u>allowed</u></b>, even if they are lower.</p>" msgstr "" @@ -6775,6 +6914,10 @@ msgstr "" msgid "Update Emby" msgstr "" +#: gui/slick/views/layouts/main.mako:167 +msgid "Manage Torrents" +msgstr "" + #: gui/slick/views/layouts/main.mako:173 msgid "Missed Subtitle Management" msgstr "" diff --git a/locale/en_GB/LC_MESSAGES/messages.json b/locale/en_GB/LC_MESSAGES/messages.json index 1216ccdfd80a7c854e409f5d4dbbba25dd02b3b7..6367a8b2146d21402a795571430bb32119dc8e08 100644 --- a/locale/en_GB/LC_MESSAGES/messages.json +++ b/locale/en_GB/LC_MESSAGES/messages.json @@ -1 +1 @@ -{"messages":{"domain":"messages","locale_data":{"messages":{"100":[null,"100"],"250":[null,"250"],"500":[null,"500"],"":{"domain":"messages","plural_forms":"nplurals=2; plural=(n != 1);","lang":"en_GB"},"Drama":[null,"Drama"],"Mystery":[null,"Mystery"],"Science-Fiction":[null,"Science-Fiction"],"Crime":[null,"Crime"],"Action":[null,"Action"],"Comedy":[null,"Comedy"],"Thriller":[null,"Thriller"],"Animation":[null,"Animation"],"Family":[null,"Family"],"Fantasy":[null,"Fantasy"],"Adventure":[null,"Adventure"],"Horror":[null,"Horror"],"Film-Noir":[null,"Film-Noir"],"Sci-Fi":[null,"Sci-Fi"],"Romance":[null,"Romance"],"Sport":[null,"Sport"],"War":[null,"War"],"Biography":[null,"Biography"],"History":[null,"History"],"Music":[null,"Music"],"Western":[null,"Western"],"News":[null,"News"],"Sitcom":[null,"Sitcom"],"Reality-TV":[null,"Reality-TV"],"Documentary":[null,"Documentary"],"Game-Show":[null,"Game-Show"],"Musical":[null,"Musical"],"Talk-Show":[null,"Talk-Show"],"Started Download":[null,"Started Download"],"Download Finished":[null,"Download Finished"],"Subtitle Download Finished":[null,"Subtitle Download Finished"],"SickRage Updated":[null,"SickRage Updated"],"SickRage Updated To Commit#: ":[null,"SickRage Updated to Commit#: "],"SickRage new login":[null,"SickRage new login"],"New login from IP: {0}. http://geomaplookup.net/?ip={0}":[null,"New login from IP: {0}. http://geomaplookup.net/?ip={0}"],"Repeat":[null,"Repeat"],"Repeat (Separated)":[null,"Repeat (Separated)"],"Extend":[null,"Extend"],"Extend (Limited)":[null,"Extend (Limited)"],"Extend (Limited, E-prefixed)":[null,"Extend (Limited, E-prefixed)"],"Downloaded":[null,"Downloaded"],"Snatched":[null,"Snatched"],"Snatched (Proper)":[null,"Snatched (Proper)"],"Failed":[null,"Failed"],"Snatched (Best)":[null,"Snatched (Best)"],"Archived":[null,"Archived"],"Unknown":[null,"Unknown"],"Unaired":[null,"Unaired"],"Skipped":[null,"Skipped"],"Wanted":[null,"Wanted"],"Ignored":[null,"Ignored"],"Subtitled":[null,"Subtitled"],"<No Filter>":[null,"<No Filter>"],"Daily Searcher":[null,"Daily Searcher"],"Backlog":[null,"Backlog"],"Show Updater":[null,"Show Updater"],"Check Version":[null,"Check Version"],"Show Queue":[null,"Show Queue"],"Search Queue (All)":[null,"Search Queue (All)"],"Search Queue (Daily Searcher)":[null,"Search Queue (Daily Searcher)"],"Search Queue (Backlog)":[null,"Search Queue (Backlog)"],"Search Queue (Manual)":[null,"Search Queue (Manual)"],"Search Queue (Retry/Failed)":[null,"Search Queue (Retry/Failed)"],"Search Queue (RSS)":[null,"Search Queue (RSS)"],"Find Propers":[null,"Find Propers"],"Postprocessor":[null,"Postprocessor"],"Find Subtitles":[null,"Find Subtitles"],"Trakt Checker":[null,"Trakt Checker"],"Event":[null,"Event"],"Error":[null,"Error"],"Tornado":[null,"Tornado"],"Thread":[null,"Thread"],"Main":[null,"Main"],"Loading":[null,"Loading"],"New update found for SickRage, starting auto-updater":[null,"New update found for SickRage, starting auto-updater"],"Update was successful":[null,"Update was successful"],"Update failed!":[null,"Update failed!"],"Backup":[null,"Backup"],"Config backup in progress...":[null,"Config backup in progress..."],"Config backup successful, updating...":[null,"Config backup successful, updating..."],"Config backup failed, aborting update":[null,"Config backup failed, aborting update"],"No update needed":[null,"No update needed"],"Mako Error":[null,"Mako Error"],"Oops":[null,"Oops"],"Wrong API key used":[null,"Wrong API key used"],"Login":[null,"Login"],"API Key not generated":[null,"API Key not generated"],"API Builder":[null,"API Builder"],"Schedule":[null,"Schedule"],"Test 1":[null,"Test 1"],"This is test number 1":[null,"This is test number 1"],"Test 2":[null,"Test 2"],"This is test number 2":[null,"This is test number 2"],"You're using the {branch} branch. Please use 'master' unless specifically asked":[null,"You're using the {branch} branch. Please use 'master' unless specifically asked"],"Invalid show parameters":[null,"Invalid show parameters"],"Invalid parameters":[null,"Invalid parameters"],"Episode couldn't be retrieved":[null,"Episode couldn't be retrieved"],"Home":[null,"Home"],"Show List":[null,"Show List"],"Error: Unsupported Request. Send jsonp request with 'callback' variable in the query string.":[null,"Error: Unsupported Request. Send jsonp request with 'callback' variable in the query string."],"Success. Connected and authenticated":[null,"Success. Connected and authenticated"],"Authentication failed. SABnzbd expects":[null,"Authentication failed. SABnzbd expects"],"as authentication method":[null,"as authentication method"],"Unable to connect to host":[null,"Unable to connect to host"],"SMS sent successfully":[null,"SMS sent successfully"],"Problem sending SMS: {message}":[null,"Problem sending SMS: {message}"],"Telegram notification succeeded. Check your Telegram clients to make sure it worked":[null,"Telegram notification succeeded. Check your Telegram clients to make sure it worked"],"Error sending Telegram notification: {message}":[null,"Error sending Telegram notification: {message}"],"join notification succeeded. Check your join clients to make sure it worked":[null,"join notification succeeded. Check your join clients to make sure it worked"],"Error sending join notification: {message}":[null,"Error sending join notification: {message}"]," with password":[null," with password"],"Registered and Tested growl successfully {growl_host}":[null,"Registered and Tested growl successfully {growl_host}"],"Registration and Testing of growl failed {growl_host}":[null,"Registration and Testing of growl failed {growl_host}"],"Test prowl notice sent successfully":[null,"Test prowl notice sent successfully"],"Test prowl notice failed":[null,"Test prowl notice failed"],"Boxcar2 notification succeeded. Check your Boxcar2 clients to make sure it worked":[null,"Boxcar2 notification succeeded. Check your Boxcar2 clients to make sure it worked"],"Error sending Boxcar2 notification":[null,"Error sending Boxcar2 notification"],"Pushover notification succeeded. Check your Pushover clients to make sure it worked":[null,"Pushover notification succeeded. Check your Pushover clients to make sure it worked"],"Error sending Pushover notification":[null,"Error sending Pushover notification"],"Key verification successful":[null,"Key verification successful"],"Unable to verify key":[null,"Unable to verify key"],"Tweet successful, check your twitter to make sure it worked":[null,"Tweet successful, check your twitter to make sure it worked"],"Error sending tweet":[null,"Error sending tweet"],"Please enter a valid account sid":[null,"Please enter a valid account sid"],"Please enter a valid auth token":[null,"Please enter a valid auth token"],"Please enter a valid phone sid":[null,"Please enter a valid phone sid"],"Please format the phone number as \"+1-###-###-####\"":[null,"Please format the phone number as \"+1-###-###-####\""],"Authorization successful and number ownership verified":[null,"Authorisation successful and number ownership verified"],"Error sending sms":[null,"Error sending sms"],"Slack message successful":[null,"Slack message successful"],"Slack message failed":[null,"Slack message failed"],"Discord message successful":[null,"Discord message successful"],"Discord message failed":[null,"Discord message failed"],"Test KODI notice sent successfully to {kodi_host}":[null,"Test KODI notice sent successfully to {kodi_host}"],"Test KODI notice failed to {kodi_host}":[null,"Test KODI notice failed to {kodi_host}"],"Successful test notice sent to Plex Home Theater ... {plex_clients}":[null,"Successful test notice sent to Plex Home Theater ... {plex_clients}"],"Test failed for Plex Home Theater ... {plex_clients}":[null,"Test failed for Plex Home Theater ... {plex_clients}"],"Tested Plex Home Theater(s)":[null,"Tested Plex Home Theater(s)"],"Successful test of Plex Media Server(s) ... {plex_servers}":[null,"Successful test of Plex Media Server(s) ... {plex_servers}"],"Test failed, No Plex Media Server host specified":[null,"Test failed, No Plex Media Server host specified"],"Test failed for Plex Media Server(s) ... {plex_servers}":[null,"Test failed for Plex Media Server(s) ... {plex_servers}"],"Tested Plex Media Server host(s)":[null,"Tested Plex Media Server host(s)"],"Tried sending desktop notification via libnotify":[null,"Tried sending desktop notification via libnotify"],"Test notice sent successfully to {emby_host}":[null,"Test notice sent successfully to {emby_host}"],"Test notice failed to {emby_host}":[null,"Test notice failed to {emby_host}"],"Successfully started the scan update":[null,"Successfully started the scan update"],"Test failed to start the scan update":[null,"Test failed to start the scan update"],"Test notice sent successfully to {nmj2_host}":[null,"Test notice sent successfully to {nmj2_host}"],"Test notice failed to {nmj2_host}":[null,"Test notice failed to {nmj2_host}"],"Trakt Authorized":[null,"Trakt Authorised"],"Trakt Not Authorized!":[null,"Trakt Not Authorised!"],"Test email sent successfully! Check inbox.":[null,"Test email sent successfully! Check inbox."],"ERROR: {last_error}":[null,"ERROR: {last_error}"],"Test NMA notice sent successfully":[null,"Test NMA notice sent successfully"],"Test NMA notice failed":[null,"Test NMA notice failed"],"Pushalot notification succeeded. Check your Pushalot clients to make sure it worked":[null,"Pushalot notification succeeded. Check your Pushalot clients to make sure it worked"],"Error sending Pushalot notification":[null,"Error sending Pushalot notification"],"Pushbullet notification succeeded. Check your device to make sure it worked":[null,"Pushbullet notification succeeded. Check your device to make sure it worked"],"Error sending Pushbullet notification":[null,"Error sending Pushbullet notification"],"Status":[null,"Status"],"Restarting SickRage":[null,"Restarting SickRage"],"Update Failed":[null,"Update Failed"],"Update wasn't successful, not restarting. Check your log for more information.":[null,"Update wasn't successful, not restarting. Check your log for more information."],"Checking out branch":[null,"Checking out branch"],"Already on branch":[null,"Already on branch"],"Invalid show ID: {show}":[null,"Invalid show ID: {show}"],"Show not in show list":[null,"Show not in show list"],"Edit":[null,"Edit"],"This show is in the process of being downloaded - the info below is incomplete.":[null,"This show is in the process of being downloaded - the info below is incomplete."],"The information on this page is in the process of being updated.":[null,"The information on this page is in the process of being updated."],"The episodes below are currently being refreshed from disk":[null,"The episodes below are currently being refreshed from disk"],"Currently downloading subtitles for this show":[null,"Currently downloading subtitles for this show"],"This show is queued to be refreshed.":[null,"This show is queued to be refreshed."],"This show is queued and awaiting an update.":[null,"This show is queued and awaiting an update."],"This show is queued and awaiting subtitles download.":[null,"This show is queued and awaiting subtitles download."],"Resume":[null,"Resume"],"Pause":[null,"Pause"],"Remove":[null,"Remove"],"Re-scan files":[null,"Re-scan files"],"Force Full Update":[null,"Force Full Update"],"Update show in KODI":[null,"Update show in KODI"],"Update show in Emby":[null,"Update show in Emby"],"Hide specials":[null,"Hide specials"],"Show specials":[null,"Show specials"],"Preview Rename":[null,"Preview Rename"],"Download Subtitles":[null,"Download Subtitles"],"No scene exceptions":[null,"No scene exceptions"],"Invalid show ID":[null,"Invalid show ID"],"Unable to find the specified show":[null,"Unable to find the specified show"],"Unable to retreive Fansub Groups from AniDB.":[null,"Unable to retrieve Fansub Groups from AniDB."],"Edit Show":[null,"Edit Show"],"Unable to refresh this show: {error}":[null,"Unable to refresh this show: {error}"],"New location <tt>{location}</tt> does not exist":[null,"New location <tt>{location}</tt> does not exist"],"Unable to update show: {error}":[null,"Unable to update show: {error}"],"Unable to force an update on scene exceptions of the show.":[null,"Unable to force an update on scene exceptions of the show."],"Unable to force an update on scene numbering of the show.":[null,"Unable to force an update on scene numbering of the show."],"{num_errors:d} error{plural} while saving changes:":[null,"{num_errors:d} error{plural} while saving changes:"],"{show_name} has been {paused_resumed}":[null,"{show_name} has been {paused_resumed}"],"resumed":[null,"resumed"],"paused":[null,"paused"],"{show_name} has been {deleted_trashed} {was_deleted}":[null,"{show_name} has been {deleted_trashed} {was_deleted}"],"deleted":[null,"deleted"],"trashed":[null,"trashed"],"(media untouched)":[null,"(media untouched)"],"(with all related media)":[null,"(with all related media)"],"Unable to refresh this show.":[null,"Unable to refresh this show."],"Unable to update this show.":[null,"Unable to update this show."],"Library update command sent to KODI host(s)): {kodi_hosts}":[null,"Library update command sent to KODI host(s)): {kodi_hosts}"],"Unable to contact one or more KODI host(s)): {kodi_hosts}":[null,"Unable to contact one or more KODI host(s)): {kodi_hosts}"],"Library update command sent to Plex Media Server host: {plex_server}":[null,"Library update command sent to Plex Media Server host: {plex_server}"],"Unable to contact Plex Media Server host: {plex_server}":[null,"Unable to contact Plex Media Server host: {plex_server}"],"Library update command sent to Emby host: {emby_host}":[null,"Library update command sent to Emby host: {emby_host}"],"Unable to contact Emby host: {emby_host}":[null,"Unable to contact Emby host: {emby_host}"],"You must specify a show and at least one episode":[null,"You must specify a show and at least one episode"],"Invalid status":[null,"Invalid status"],"Backlog was automatically started for the following seasons of <b>{show_name}</b>":[null,"Backlog was automatically started for the following series of <b>{show_name}</b>"],"Season":[null,"Series"],"Backlog started":[null,"Backlog started"],"Retrying Search was automatically started for the following season of <b>{show_name}</b>":[null,"Retrying Search was automatically started for the following series of <b>{show_name}</b>"],"Retry Search started":[null,"Retry Search started"],"You must specify a show":[null,"You must specify a show"],"Can't rename episodes when the show dir is missing.":[null,"Can't rename episodes when the show dir is missing."],"New subtitles downloaded: {new_subtitle_languages}":[null,"New subtitles downloaded: {new_subtitle_languages}"],"No subtitles downloaded":[null,"No subtitles downloaded"],"IRC":[null,"IRC"],"Could not load news from the repo. [Click here for news.md])({news_url})":[null,"Could not load news from the repo. [Click here for news.md]) ({news_url})"],"The was a problem connecting to github, please refresh and try again":[null,"The was a problem connecting to github, please refresh and try again"],"Could not load changes from the repo. [Click here for CHANGES.md]({changes_url})":[null,"Could not load changes from the repo. [Click here for CHANGES.md] ({changes_url})"],"Changelog":[null,"Changelog"],"Post Processing":[null,"Post Processing"],"Add Shows":[null,"Add Shows"],"No folders selected.":[null,"No folders selected."],"New Show":[null,"New Show"],"Trending Shows":[null,"Trending Shows"],"Popular Shows":[null,"Popular Shows"],"Most Anticipated Shows":[null,"Most Anticipated Shows"],"Most Collected Shows":[null,"Most Collected Shows"],"Most Watched Shows":[null,"Most Watched Shows"],"Most Played Shows":[null,"Most Played Shows"],"Recommended Shows":[null,"Recommended Shows"],"New Shows":[null,"New Shows"],"Season Premieres":[null,"Series Premieres"],"Existing Show":[null,"Existing Show"],"No root directories setup, please go back and add one.":[null,"No root directories setup, please go back and add one."],"Show added":[null,"Show added"],"Adding the specified show {show_name}":[null,"Adding the specified show {show_name}"],"Missing params, no Indexer ID or folder: {show_to_add} and {root_dir}/{show_path}":[null,"Missing params, no Indexer ID or folder: {show_to_add} and {root_dir}/{show_path}"],"Unknown error. Unable to add show due to problem with show selection.":[null,"Unknown error. Unable to add show due to problem with show selection."],"Unable to add show":[null,"Unable to add show"],"Folder {show_dir} exists already":[null,"Folder {show_dir} exists already"],"Unable to create the folder {show_dir}, can't add the show":[null,"Unable to create the folder {show_dir}, can't add the show"],"Adding the specified show into {show_dir}":[null,"Adding the specified show into {show_dir}"],"Shows Added":[null,"Shows Added"],"Automatically added {num_shows} from their existing metadata files":[null,"Automatically added {num_shows} from their existing metadata files"],"Mass Update":[null,"Mass Update"],"Episode Overview":[null,"Episode Overview"],"Missing Subtitles":[null,"Missing Subtitles"],"Backlog Overview":[null,"Backlog Overview"],"Mass Edit":[null,"Mass Edit"],"Unable to update show: {excption_format}":[null,"Unable to update show: {excption_format}"],"Unable to refresh show {show_name}: {excption_format}":[null,"Unable to refresh show {show_name}: {excption_format}"],"Errors encountered":[null,"Errors encountered"],"Updates":[null,"Updates"],"Refreshes":[null,"Refreshes"],"Renames":[null,"Renames"],"Subtitles":[null,"Subtitles"],"The following actions were queued":[null,"The following actions were queued"],"For best results please set the Download Station alias as":[null,"For best results please set the Download Station alias as"],"You can check this setting in the Synology DSM":[null,"You can check this setting in the Synology DSM"],"Control Panel":[null,"Control Panel"],"Application Portal":[null,"Application Portal"],"Make sure you allow DSM to be embedded with iFrames too in":[null,"Make sure you allow DSM to be embedded with iFrames too in"],"DSM Settings":[null,"DSM Settings"],"Security":[null,"Security"],"Manage Torrents":[null,"Manage Torrents"],"Failed Downloads":[null,"Failed Downloads"],"Manage Searches":[null,"Manage Searches"],"Backlog search started":[null,"Backlog search started"],"Daily search started":[null,"Daily search started"],"Find propers search started":[null,"Find propers search started"],"Subtitle search started":[null,"Subtitle search started"],"Remove Selected":[null,"Remove Selected"],"Clear History":[null,"Clear History"],"Trim History":[null,"Trim History"],"Selected history entries removed":[null,"Selected history entries removed"],"History cleared":[null,"History cleared"],"Removed history entries older than 30 days":[null,"Removed history entries older than 30 days"],"General":[null,"General"],"Backup/Restore":[null,"Backup/Restore"],"Search Settings":[null,"Search Settings"],"Search Providers":[null,"Search Providers"],"Subtitles Settings":[null,"Subtitles Settings"],"Notifications":[null,"Notifications"],"Anime":[null,"Anime"],"SickRage Configuration":[null,"SickRage Configuration"],"Config - Shares":[null,""],"Windows Shares Configuration":[null,""],"Saved Shares":[null,""],"Your Windows share settings have been saved":[null,""],"Config - General":[null,"Config - General"],"General Configuration":[null,"General Configuration"],"Saved Defaults":[null,"Saved Defaults"],"Your \"add show\" defaults have been set to your current selections.":[null,"Your \"add show\" defaults have been set to your current selections."],"Unable to create directory {directory}, log directory not changed.":[null,"Unable to create directory {directory}, log directory not changed."],"Unable to create directory {directory}, https cert directory not changed.":[null,"Unable to create directory {directory}, https cert directory not changed."],"Unable to create directory {directory}, https key directory not changed.":[null,"Unable to create directory {directory}, https key directory not changed."],"Error(s) Saving Configuration":[null,"Error(s) Saving Configuration"],"Configuration Saved":[null,"Configuration Saved"],"Config - Backup/Restore":[null,"Config - Backup/Restore"],"Config - Episode Search":[null,"Config - Episode Search"],"Config - Post Processing":[null,"Config - Post Processing"],"Unpacking Not Supported, disabling unpack setting":[null,"Unpacking Not Supported, disabling unpack setting"],"You tried saving an invalid normal naming config, not saving your naming settings":[null,"You tried saving an invalid normal naming config, not saving your naming settings"],"You tried saving an invalid anime naming config, not saving your naming settings":[null,"You tried saving an invalid anime naming config, not saving your naming settings"],"Config - Providers":[null,"Config - Providers"],"No Provider Name specified":[null,"No Provider Name specified"],"No Provider Url specified":[null,"No Provider URL specified"],"No Provider Api key specified":[null,"No Provider API key specified"],"Config - Notifications":[null,"Config - Notifications"],"Config - Subtitles":[null,"Config - Subtitles"],"Config - Anime":[null,"Config - Anime"],"Clear Errors":[null,"Clear Errors"],"Clear Warnings":[null,"Clear Warnings"],"Submit Errors":[null,"Submit Errors"],"Logs & Errors":[null,"Logs & Errors"],"Log File":[null,"Log File"],"Logs":[null,"Logs"],"This is a test notification from SickRage":[null,"This is a test notification from SickRage"],"Please fill out the necessary fields above.":[null,""],"This pattern is invalid.":[null,"This pattern is invalid."],"This pattern would be invalid without the folders, using it will force \"Season Folders\" on for all shows.":[null,"This pattern would be invalid without the folders, using it will force \"Season Folders\" on for all shows."],"This pattern is valid.":[null,"This pattern is valid."],"Resume updating the log on this page.":[null,"Resume updating the log on this page."],"Pause updating the log on this page.":[null,"Pause updating the log on this page."],"You have reached this page by accident, please check the url.":[null,"You have reached this page by accident, please check the url."],"A mako error has occured.<br>\n If this happened during an update a simple page refresh may be the solution.<br>\n Mako errors that happen during updates may be a one time error if there were significant ui changes.":[null,"A mako error has occured. <br>\n If this happened during an update a simple page refresh may be the solution. <br>\n Mako errors that happen during updates may be a one time error if there were significant ui changes."],"Show/Hide Error":[null,"Show/Hide Error"],"Add New Show":[null,"Add New Show"],"For shows that you haven't downloaded yet, this option finds a show on theTVDB.com, creates a directory for it's episodes, and adds it to SickRage.":[null,"For shows that you haven't downloaded yet, this option finds a show on theTVDB.com, creates a directory for its episodes, and adds it to SickRage."],"Add From Trakt Lists":[null,"Add From Trakt Lists"],"For shows that you haven't downloaded yet, this option lets you choose from a show from one of the Trakt lists to add to SickRage.":[null,"For shows that you haven't downloaded yet, this option lets you choose a show from one of the Trakt lists to add to SickRage."],"Add From IMDB's Popular Shows":[null,"Add From IMDB's Popular Shows"],"View IMDB's list of the most popular shows. This feature uses IMDB's MOVIEMeter algorithm to identify popular TV Series.":[null,"View IMDB's list of the most popular shows. This feature uses IMDB's MOVIEMeter algorithm to identify popular TV Series."],"Add Existing Shows":[null,"Add Existing Shows"],"Use this option to add shows that already have a folder created on your hard drive. SickRage will scan your existing metadata/episodes and add the show accordingly.":[null,"Use this option to add shows that already have a folder created on your hard drive. SickRage will scan your existing metadata/episodes and add the show accordingly."],"Add Existing Show":[null,"Add Existing Show"],"Manage Directories":[null,"Manage Directories"],"Customize Options":[null,"Customise Options"],"SickRage can add existing shows, using the current options, by using locally stored NFO/XML metadata to eliminate user interaction. If you would rather have SickRage prompt you to customize each show, then use the checkbox below.":[null,"SickRage can add existing shows, using the current options, by using locally stored NFO/XML metadata to eliminate user interaction. If you would rather have SickRage prompt you to customise each show, then use the checkbox below."],"Prompt me to set settings for each show":[null,"Prompt me to set settings for each show"],"Displaying folders within these directories which aren't already added to SickRage":[null,"Displaying folders within these directories which aren't already added to SickRage"],"Submit":[null,"Submit"],"Find a show on theTVDB":[null,"Find a show on theTVDB"],"Show retrieved from existing metadata":[null,"Show retrieved from existing metadata"],"All Indexers":[null,"All Indexers"],"Search":[null,"Search"],"This will only affect the language of the retrieved metadata file contents and episode filenames.":[null,"This will only affect the language of the retrieved metadata file contents and episode filenames."],"This <b>DOES NOT</b> allow SickRage to download non-english TV episodes!":[null,"This <b>DOES NOT</b> allow SickRage to download non-english TV episodes!"],"Pick the parent folder":[null,"Pick the parent folder"],"Pre-chosen Destination Folder":[null,"Pre-chosen Destination Folder"],"Customize options":[null,"Customise options"],"Add Show":[null,"Add Show"],"Skip Show":[null,"Skip Show"],"Sort By":[null,"Sort By"],"Name":[null,"Name"],"Original":[null,"Original"],"Votes":[null,"Votes"],"Rating":[null,"Rating"],"Rating > Votes":[null,"Rating > Votes"],"Sort Order":[null,"Sort Order"],"Asc":[null,"Asc"],"Desc":[null,"Desc"],"Fetching of IMDB Data failed. Are you online?":[null,"Fetching of IMDB Data failed. Are you online?"],"Exception":[null,"Exception"],"Select Trakt List":[null,"Select Trakt List"],"Most Anticipated":[null,"Most Anticipated"],"Trending":[null,"Trending"],"Popular":[null,"Popular"],"Most Watched":[null,"Most Watched"],"Most Played":[null,"Most Played"],"Most Collected":[null,"Most Collected"],"Recommended":[null,"Recommended"],"Toggle navigation":[null,"Toggle navigation"],"Profile":[null,"Profile"],"JSONP":[null,"JSONP"],"Back to SickRage":[null,"Back to SickRage"],"Parameters":[null,"Parameters"],"Required":[null,"Required"],"Description":[null,"Description"],"Type":[null,"Type"],"Default value":[null,"Default value"],"Allowed values":[null,"Allowed values"],"Playground":[null,"Playground"],"Clear":[null,"Clear"],"Yes":[null,"Yes"],"No":[null,"No"],"season":[null,"series"],"episode":[null,"episode"],"Python Version":[null,"Python Version"],"SSL Version":[null,"SSL Version"],"OS":[null,"OS"],"Locale":[null,"Locale"],"User":[null,"User"],"Program Folder":[null,"Program Folder"],"Config File":[null,"Config File"],"Database File":[null,"Database File"],"Cache Folder":[null,"Cache Folder"],"Log Folder":[null,"Log Folder"],"Arguments":[null,"Arguments"],"Web Root":[null,"Web Root"],"Website":[null,"Website"],"Wiki":[null,"Wiki"],"Source":[null,"Source"],"IRC Chat":[null,"IRC Chat"],"AnimeDB Settings":[null,"AnimeDB Settings"],"Look & Feel":[null,"Look & Feel"],"AniDB is non-profit database of anime information that is freely open to the public":[null,"AniDB is non-profit database of anime information that is freely open to the public"],"Enable":[null,"Enable"],"should SickRage use data from AniDB?":[null,"should SickRage use data from AniDB?"],"AniDB Username":[null,"AniDB Username"],"username of your AniDB account":[null,"Username of your AniDB account"],"AniDB Password":[null,"AniDB Password"],"password of your AniDB account":[null,"Password of your AniDB account"],"AniDB MyList":[null,"AniDB MyList"],"do you want to add the PostProcessed episodes to the MyList?":[null,"Do you want to add the PostProcessed Episodes to the MyList?"],"Look and Feel":[null,"Look and Feel"],"How should the anime functions show and behave.":[null,"How should the anime functions show and behave."],"Split show lists":[null,"Split show lists"],"separate anime and normal shows in groups":[null,"separate anime and normal shows in groups"],"Split in tabs":[null,"Split in tabs"],"use tabs for when splitting show lists":[null,"use tabs for when splitting show lists"],"Restore":[null,"Restore"],"Backup your main database file and config.":[null,"Backup your main database file and config."],"Select the folder you wish to save your backup file to":[null,"Select the folder you wish to save your backup file to"],"Restore your main database file and config.":[null,"Restore your main database file and config."],"Select the backup file you wish to restore":[null,"Select the backup file you wish to restore"],"Misc":[null,"Misc"],"Interface":[null,"Interface"],"Advanced Settings":[null,"Advanced Settings"],"Startup options. Indexer options. Log and show file locations.":[null,"Startup options. Indexer options. Log and show file locations."],"Some options may require a manual restart to take effect.":[null,"Some options may require a manual restart to take effect."],"Default Indexer Language":[null,"Default Indexer Language"],"for adding shows and metadata providers":[null,"for adding shows and metadata providers"],"Launch browser":[null,"Launch browser"],"open the SickRage home page on startup":[null,"open the SickRage home page on startup"],"Initial page":[null,"Initial page"],"Shows":[null,"Shows"],"when launching SickRage interface":[null,"when launching SickRage interface"],"Choose hour to update shows":[null,"Choose hour to update shows"],"with information such as next air dates, show ended, etc. Use 15 for 3pm, 4 for 4am etc.":[null,"with information such as next air dates, show ended, etc. Use 15 for 3pm, 4 for 4am etc."],"note":[null,"note"],"minutes are randomized each time SickRage is started":[null,"minutes are randomised each time SickRage is started"],"Send to trash for actions":[null,"Send to trash for actions"],"when using show \"Remove\" and delete files":[null,"when using show \"Remove\" and delete files"],"on scheduled deletes of the oldest log files":[null,"on scheduled deletes of the oldest log files"],"selected actions use trash (recycle bin) instead of the default permanent delete":[null,"selected actions use trash (recycle bin) instead of the default permanent delete"],"Log file folder location":[null,"Log file folder location"],"Number of Log files saved":[null,"Number of Log files saved"],"number of log files saved when rotating logs (default: 5) (REQUIRES RESTART)":[null,"number of log files saved when rotating logs (default: 5) (REQUIRES RESTART)"],"Size of Log files saved":[null,"Size of Log files saved"],"maximum size in MB of the log file (default: 1MB) (REQUIRES RESTART)":[null,"maximum size in MB of the log file (default: 1MB) (REQUIRES RESTART)"],"Use initial indexer set to":[null,"Use initial indexer set to"],"as the default selection when adding new shows":[null,"as the default selection when adding new shows"],"Timeout show indexer at":[null,"Timeout show indexer at"],"seconds of inactivity when finding new shows (default:20)":[null,"seconds of inactivity when finding new shows (default:20)"],"Show root directories":[null,"Show root directories"],"where the files of shows are located":[null,"where the files of shows are located"],"Save Changes":[null,"Save Changes"],"Options for software updates.":[null,"Options for software updates."],"Check software updates":[null,"Check software updates"],"and display notifications when updates are available. Checks are run on startup and at the frequency set below*":[null,"and display notifications when updates are available. Checks are run on startup and at the frequency set below*"],"Automatically update":[null,"Automatically update"],"fetch and install software updates. Updates are run on startup and in the background at the frequency set below*":[null,"fetch and install software updates. Updates are run on startup and in the background at the frequency set below*"],"Check the server every*":[null,"Check the server every*"],"hours for software updates (default:1)":[null,"hours for software updates (default:1)"],"Notify on software update":[null,"Notify on software update"],"send a message to all enabled notifiers when SickRage has been updated":[null,"send a message to all enabled notifiers when SickRage has been updated"],"User Interface":[null,"User Interface"],"Options for visual appearance.":[null,"Options for visual appearance."],"Interface Language":[null,"Interface Language"],"System Language":[null,"System Language"],"for appearance to take effect, save then refresh your browser":[null,"for appearance to take effect, save then refresh your browser"],"Display theme":[null,"Display theme"],"Dark":[null,"Dark"],"Light":[null,"Light"],"Use a background image":[null,"Use a background image"],"use a custom image as background for SickRage":[null,"use a custom image as background for SickRage"],"Background Path":[null,"Background Path"],"Path to the background image":[null,"Path to the background image"],"Show fanart in the background":[null,"Show fanart in the background"],"on the show summary page":[null,"on the show summary page"],"Fanart transparency":[null,"Fanart transparency"],"transparency of the fanart in the background":[null,"transparency of the fanart in the background"],"Use a custom stylesheet file":[null,""],"use a custom .css file to style SickRage (for advanced users)":[null,""],"Stylesheet File Path":[null,""],"Path to the stylesheet (.css) file":[null,""],"Show all seasons":[null,"Show all series"],"Sort with \"The\", \"A\", \"An\"":[null,"Sort with \"The\", \"A\", \"An\""],"include articles (\"The\", \"A\", \"An\") when sorting show lists":[null,"include articles (\"The\", \"A\", \"An\") when sorting show lists"],"Missed episodes range":[null,"Missed episodes range"],"set the range in days of the missed episodes in the Schedule page":[null,"set the range in days of the missed episodes in the Schedule page"],"Display fuzzy dates":[null,"Display fuzzy dates"],"move absolute dates into tooltips and display e.g. \"Last Thu\", \"On Tue\"":[null,"move absolute dates into tooltips and display e.g. \"Last Thu\", \"On Tue\""],"Trim zero padding":[null,"Trim zero padding"],"remove the leading number \"0\" shown on hour of day, and date of month":[null,"remove the leading number \"0\" shown on hour of day, and date of month"],"Date style":[null,"Date style"],"Use System Default":[null,"Use System Default"],"Time style":[null,"Time style"],"seconds are only shown on the History page":[null,"seconds are only shown on the History page"],"Timezone":[null,"Timezone"],"Local":[null,"Local"],"Network":[null,"Network"],"display dates and times in either your timezone or the shows network timezone":[null,"display dates and times in either your timezone or the shows network timezone"],"use local timezone to start searching for episodes minutes after show ends (depends on your dailysearch frequency)":[null,"use local timezone to start searching for episodes minutes after show ends (depends on your dailysearch frequency)"],"Download url":[null,"Download url"],"URL where the shows can be downloaded.":[null,"URL where the shows can be downloaded."],"Web Interface":[null,"Web Interface"],"it is recommended that you enable a username and password to secure SickRage from being tampered with remotely.":[null,"it is recommended that you enable a username and password to secure SickRage from being tampered with remotely."],"these options require a manual restart to take effect.":[null,"these options require a manual restart to take effect."],"API key":[null,"API key"],"used to give 3rd party programs limited access to SickRage":[null,"used to give 3rd party programs limited access to SickRage"],"you can try all the features of the API":[null,"you can try all the features of the API"],"here":[null,"here"],"HTTP logs":[null,"HTTP logs"],"enable logs from the internal Tornado web server":[null,"enable logs from the internal Tornado web server"],"HTTP username":[null,"HTTP username"],"set blank for no login":[null,"set blank for no login"],"HTTP password":[null,"HTTP password"],"blank = no authentication":[null,"blank = no authentication"],"HTTP port":[null,"HTTP port"],"web port to browse and access SickRage (default:8081)":[null,"web port to browse and access SickRage (default:8081)"],"Notify on login":[null,"Notify on login"],"enable to be notified when a new login happens in webserver":[null,"enable to be notified when a new login happens in webserver"],"Listen on IPv6":[null,"Listen on IPv6"],"attempt binding to any available IPv6 address":[null,"attempt binding to any available IPv6 address"],"Enable HTTPS":[null,"Enable HTTPS"],"enable access to the web interface using a HTTPS address":[null,"enable access to the web interface using a HTTPS address"],"HTTPS certificate":[null,"HTTPS certificate"],"file name or path to HTTPS certificate":[null,"file name or path to HTTPS certificate"],"HTTPS key":[null,"HTTPS key"],"file name or path to HTTPS key":[null,"file name or path to HTTPS key"],"Reverse proxy headers":[null,"Reverse proxy headers"],"accept the following reverse proxy headers (advanced)...":[null,"accept the following reverse proxy headers (advanced)..."],"(X-Forwarded-For, X-Forwarded-Host, and X-Forwarded-Proto)":[null,"(X-Forwarded-For, X-Forwarded-Host, and X-Forwarded-Proto)"],"CPU throttling":[null,"CPU throttling"],"Normal (default). High is lower and Low is higher CPU use":[null,"Normal (default). High is lower and Low is higher CPU use"],"Anonymous redirect":[null,"Anonymous redirect"],"backlink protection via anonymizer service, must end in \"?\"":[null,"backlink protection via anonymizer service, must end in \"?\""],"Enable debug":[null,"Enable debug"],"enable debug logs":[null,"enable debug logs"],"Verify SSL Certs":[null,"Verify SSL Certs"],"verify SSL Certificates (Disable this for broken SSL installs (Like QNAP))":[null,"verify SSL Certificates (Disable this for broken SSL installs (Like QNAP))"],"No Restart":[null,"No Restart"],"only shutdown when restarting SR":[null,"only shutdown when restarting SR"],"only select this when you have external software restarting SR automatically when it stops (like FireDaemon)":[null,"only select this when you have external software restarting SR automatically when it stops (like FireDaemon)"],"Encrypt passwords":[null,"Encrypt passwords"],"in the <code>config.ini</code> file":[null,"in the <code>config.ini</code> file"],"warning":[null,"warning"],"passwords must only contain":[null,"passwords must only contain"],"ASCII characters":[null,"ASCII characters"],"Unprotected calendar":[null,"Unprotected calendar"],"allow subscribing to the calendar without user and password":[null,"allow subscribing to the calendar without user and password"],"some services like Google Calendar only work this way":[null,"some services like Google Calendar only work this way"],"Google Calendar Icons":[null,"Google Calendar Icons"],"show an icon next to exported calendar events in Google Calendar":[null,"show an icon next to exported calendar events in Google Calendar"],"Proxy host":[null,"Proxy host"],"blank to disable or proxy to use when connecting to providers":[null,"blank to disable or proxy to use when connecting to providers"],"also use global proxy setting for indexers (tvdb, xem, anidb, etc.)":[null,"also use global proxy setting for indexers (tvdb, xem, anidb, etc.)"],"Skip Remove Detection":[null,"Skip Remove Detection"],"skip detection of removed files":[null,"skip detection of removed files"],"if disabled the episode will be set to the default deleted status":[null,"if disabled the episode will be set to the default deleted status"],"Default deleted episode status":[null,"Default deleted episode status"],"define the status to be set for media file that has been deleted.":[null,"define the status to be set for media file that has been deleted."],"Archived option will keep previous downloaded quality":[null,"Archived option will keep previous downloaded quality"],"example: Downloaded (1080p WEB-DL) ==> Archived (1080p WEB-DL)":[null,"example: Downloaded (1080p WEB-DL) ==> Archived (1080p WEB-DL)"],"Options for github related features.":[null,"Options for github related features."],"Branch version":[null,"Branch version"],"error: No branches found.":[null,"error: No branches found."],"select branch to use (restart required)":[null,"select branch to use (restart required)"],"Authorization Type":[null,"Authorization Type"],"Username and password":[null,"Username and password"],"Personal access token":[null,"Personal access token"],"You must use a personal access token if you're using \"two-factor authentication\" on GitHub.":[null,"You must use a personal access token if you're using \"two-factor authentication\" on GitHub."],"GitHub username":[null,"GitHub username"],"*** (REQUIRED FOR SUBMITTING ISSUES) ***":[null,"*** (REQUIRED FOR SUBMITTING ISSUES) ***"],"GitHub password":[null,"GitHub password"],"GitHub personal access token":[null,"GitHub personal access token"],"Generate Token":[null,"Generate Token"],"Manage Tokens":[null,"Manage Tokens"],"GitHub remote for branch":[null,"GitHub remote for branch"],"access repo configured remotes (save then refresh browser)":[null,"access repo configured remotes (save then refresh browser)"],"default":[null,"default"],"origin":[null,"origin"],"Git executable path":[null,"Git executable path"],"only needed if OS is unable to locate git from env":[null,"only needed if OS is unable to locate git from env"],"Git reset":[null,"Git reset"],"removes untracked files and performs a hard reset on git branch automatically to help resolve update issues":[null,"removes untracked files and performs a hard reset on git branch automatically to help resolve update issues"],"Home Theater / NAS":[null,"Home Theatre / NAS"],"Devices":[null,"Devices"],"Social":[null,"Social"],"A free and open source cross-platform media center and home entertainment system software with a 10-foot user interface designed for the living-room TV.":[null,"A free and open source cross-platform media center and home entertainment system software with a 10-foot user interface designed for the living-room TV."],"send KODI commands?":[null,"send KODI commands?"],"Always on":[null,"Always on"],"log errors when unreachable?":[null,"log errors when unreachable?"],"Notify on snatch":[null,"Notify on snatch"],"send a notification when a download starts?":[null,"send a notification when a download starts?"],"Notify on download":[null,"Notify on download"],"send a notification when a download finishes?":[null,"send a notification when a download finishes?"],"Notify on subtitle download":[null,"Notify on subtitle download"],"send a notification when subtitles are downloaded?":[null,"send a notification when subtitles are downloaded?"],"Update library":[null,"Update library"],"update KODI library when a download finishes?":[null,"update KODI library when a download finishes?"],"Full library update":[null,"Full library update"],"perform a full library update if update per-show fails?":[null,"perform a full library update if update per-show fails?"],"Only update first host":[null,"Only update first host"],"only send library updates to the first active host?":[null,"only send library updates to the first active host?"],"KODI IP:Port":[null,"KODI IP:Port"],"host running KODI (eg. 192.168.1.100:8080)":[null,"host running KODI (eg. 192.168.1.100:8080)"],"(multiple host strings must be separated by commas)":[null,"(multiple host strings must be separated by commas)"],"Username":[null,"Username"],"username for your KODI server (blank for none)":[null,"username for your KODI server (blank for none)"],"Password":[null,"Password"],"password for your KODI server (blank for none)":[null,"password for your KODI server (blank for none)"],"Click below to test.":[null,"Click below to test."],"Experience your media on a visually stunning, easy to use interface on your Mac connected to your TV. Your media library has never looked this good!":[null,"Experience your media on a visually stunning, easy to use interface on your Mac connected to your TV. Your media library has never looked this good!"],"For sending notifications to Plex Home Theater (PHT) clients, use the KODI notifier with port <b>3005</b>.":[null,"For sending notifications to Plex Home Theater (PHT) clients, use the KODI notifier with port <b>3005</b>."],"send Plex Media Server library updates?":[null,"send Plex Media Server library updates?"],"Plex Media Server Auth Token":[null,"Plex Media Server Auth Token"],"auth token used by Plex":[null,"auth token used by Plex"],"Update Library":[null,"Update Library"],"update Plex Media Server library when a download finishes":[null,"update Plex Media Server library when a download finishes"],"Plex Media Server IP:Port":[null,"Plex Media Server IP:Port"],"one or more hosts running Plex Media Server<br/>(eg. 192.168.1.1:32400, 192.168.1.2:32400)":[null,"one or more hosts running Plex Media Server<br/>(eg. 192.168.1.1:32400, 192.168.1.2:32400)"],"HTTPS":[null,"HTTPS"],"use https for plex media server requests?":[null,"use https for plex media server requests?"],"Click below to test Plex Media Server(s)":[null,"Click below to test Plex Media Server(s)"],"Test Plex Media Server":[null,"Test Plex Media Server"],"Plex Home Theater":[null,"Plex Home Theater"],"send Plex Home Theater notifications?":[null,"send Plex Home Theater notifications?"],"Plex Home Theater IP:Port":[null,"Plex Home Theater IP:Port"],"one or more hosts running Plex Home Theater<br>(eg. 192.168.1.100:3000, 192.168.1.101:3000)":[null,"one or more hosts running Plex Home Theater<br>(eg. 192.168.1.100:3000, 192.168.1.101:3000)"],"Click below to test Plex Home Theater(s)":[null,"Click below to test Plex Home Theater(s)"],"Test Plex Home Theater":[null,"Test Plex Home Theater"],"some Plex Home Theaters <b class=\"boldest\">do not</b> support notifications e.g. Plexapp for Samsung TVs":[null,"some Plex Home Theaters <b class=\"boldest\">do not</b> support notifications e.g. Plexapp for Samsung TVs"],"Emby":[null,"Emby"],"A home media server built using other popular open source technologies.":[null,"A home media server built using other popular open source technologies."],"send update commands to Emby?":[null,"send update commands to Emby?"],"Emby IP:Port":[null,"Emby IP:Port"],"host running Emby (eg. 192.168.1.100:8096)":[null,"host running Emby (eg. 192.168.1.100:8096)"],"Emby API Key":[null,"Emby API Key"],"Networked Media Jukebox":[null,"Networked Media Jukebox"],"The Networked Media Jukebox, or NMJ, is the official media jukebox interface made available for the Popcorn Hour 200-series.":[null,"The Networked Media Jukebox, or NMJ, is the official media jukebox interface made available for the Popcorn Hour 200-series."],"send update commands to NMJ?":[null,"send update commands to NMJ?"],"Popcorn IP address":[null,"Popcorn IP address"],"IP address of Popcorn 200-series (eg. 192.168.1.100)":[null,"IP address of Popcorn 200-series (eg. 192.168.1.100)"],"Get settings":[null,"Get settings"],"Get Settings":[null,"Get Settings"],"the Popcorn Hour device must be powered on and NMJ running.":[null,"the Popcorn Hour device must be powered on and NMJ running."],"NMJ database":[null,"NMJ database"],"automatically filled via the 'Get Settings' button.":[null,"automatically filled via the 'Get Settings' button."],"NMJ mount url":[null,"NMJ mount url"],"Networked Media Jukebox v2":[null,"Networked Media Jukebox v2"],"The Networked Media Jukebox, or NMJv2, is the official media jukebox interface made available for the Popcorn Hour 300 & 400-series.":[null,"The Networked Media Jukebox, or NMJv2, is the official media jukebox interface made available for the Popcorn Hour 300 & 400-series."],"send update commands to NMJv2?":[null,"send update commands to NMJv2?"],"IP address of Popcorn 300/400-series (eg. 192.168.1.100)":[null,"IP address of Popcorn 300/400-series (eg. 192.168.1.100)"],"Database location":[null,"Database location"],"Database instance":[null,"Database instance"],"adjust this value if the wrong database is selected.":[null,"adjust this value if the wrong database is selected."],"Find database":[null,"Find database"],"Find Database":[null,"Find Database"],"the Popcorn Hour device must be powered on.":[null,"the Popcorn Hour device must be powered on."],"NMJv2 database":[null,"NMJv2 database"],"automatically filled via the 'Find Database' buttons.":[null,"automatically filled via the 'Find Database' buttons."],"Synology":[null,"Synology"],"The Synology DiskStation NAS.":[null,"The Synology DiskStation NAS."],"Synology Indexer is the daemon running on the Synology NAS to build its media database.":[null,"Synology Indexer is the daemon running on the Synology NAS to build its media database."],"send Synology notifications?":[null,"send Synology notifications?"],"requires SickRage to be running on your Synology NAS.":[null,"requires SickRage to be running on your Synology NAS."],"Synology Indexer":[null,"Synology Indexer"],"Synology Notifier is the notification system of Synology DSM":[null,"Synology Notifier is the notification system of Synology DSM"],"send notifications to the Synology Notifier?":[null,"send notifications to the Synology Notifier?"],"pyTivo":[null,"pyTivo"],"pyTivo is both an HMO and GoBack server. This notifier will load the completed downloads to your Tivo.":[null,"pyTivo is both an HMO and GoBack server. This notifier will load the completed downloads to your Tivo."],"send notifications to pyTivo?":[null,"send notifications to pyTivo?"],"requires the downloaded files to be accessible by pyTivo.":[null,"requires the downloaded files to be accessible by pyTivo."],"pyTivo IP:Port":[null,"pyTivo IP:Port"],"host running pyTivo (eg. 192.168.1.1:9032)":[null,"host running pyTivo (eg. 192.168.1.1:9032)"],"pyTivo share name":[null,"pyTivo share name"],"value used in pyTivo Web Configuration to name the share.":[null,"value used in pyTivo Web Configuration to name the share."],"Tivo name":[null,"Tivo name"],"(Messages & Settings > Account & System Information > System Information > DVR name)":[null,"(Messages & Settings > Account & System Information > System Information > DVR name)"],"Growl":[null,"Growl"],"A cross-platform unobtrusive global notification system.":[null,"A cross-platform unobtrusive global notification system."],"send Growl notifications?":[null,"send Growl notifications?"],"Growl IP:Port":[null,"Growl IP:Port"],"host running Growl (eg. 192.168.1.100:23053)":[null,"host running Growl (eg. 192.168.1.100:23053)"],"may leave blank if SickRage is on the same host.":[null,"may leave blank if SickRage is on the same host."],"otherwise Growl <b>requires</b> a password to be used.":[null,"otherwise Growl <b>requires</b> a password to be used."],"Click below to register and test Growl, this is required for Growl notifications to work.":[null,"Click below to register and test Growl, this is required for Growl notifications to work."],"Register Growl":[null,"Register Growl"],"Prowl":[null,"Prowl"],"A Growl client for iOS.":[null,"A Growl client for iOS."],"send Prowl notifications?":[null,"send Prowl notifications?"],"Prowl Message Title":[null,"Prowl Message Title"],"Global Prowl API key(s)":[null,"Global Prowl API key(s)"],"Prowl API(s) listed here, separated by commas if applicable, will<br> receive notifications for <b>all</b> shows. Your Prowl API key is available at:":[null,"Prowl API(s) listed here, separated by commas if applicable, will<br> receive notifications for <b>all</b> shows. Your Prowl API key is available at:"],"(this field may be blank except when testing.)":[null,"(this field may be blank except when testing.)"],"Show notification list":[null,"Show notification list"],"-- Select a Show --":[null,"-- Select a Show --"],"Configure per-show notifications here by entering Prowl API key(s), separated by commas, '\n 'after selecting a show in the drop-down box. Be sure to activate the 'Save for this show' '\n 'button below after each entry.":[null,"Configure per-show notifications here by entering Prowl API key(s), separated by commas, '\n 'after selecting a show in the drop-down box. Be sure to activate the 'Save for this show' '\n 'button below after each entry."],"Save for this show":[null,"Save for this show"],"Prowl priority":[null,"Prowl priority"],"Very Low":[null,"Very Low"],"Moderate":[null,"Moderate"],"Normal":[null,"Normal"],"High":[null,"High"],"Emergency":[null,"Emergency"],"priority of Prowl messages from SickRage.":[null,"priority of Prowl messages from SickRage."],"Libnotify":[null,"Libnotify"],"The standard desktop notification API for Linux/*nix systems. This notifier will only function if the pynotify module is installed (Ubuntu/Debian package <a href=\"apt:python-notify\">python-notify</a>).":[null,"The standard desktop notification API for Linux/*nix systems. This notifier will only function if the pynotify module is installed (Ubuntu/Debian package <a href=\"apt:python-notify\">python-notify</a>)."],"send Libnotify notifications?":[null,"send Libnotify notifications?"],"Pushover":[null,"Pushover"],"Pushover makes it easy to send real-time notifications to your Android and iOS devices.":[null,"Pushover makes it easy to send real-time notifications to your Android and iOS devices."],"send Pushover notifications?":[null,"send Pushover notifications?"],"Pushover key":[null,"Pushover key"],"user key of your Pushover account":[null,"user key of your Pushover account"],"Pushover API key":[null,"Pushover API key"],"click here":[null,""]," to create a Pushover API key":[null,""],"Pushover devices":[null,"Pushover devices"],"comma separated list of pushover devices you want to send notifications to":[null,"comma separated list of pushover devices you want to send notifications to"],"Pushover notification sound":[null,"Pushover notification sound"],"Bike":[null,"Bike"],"Bugle":[null,"Bugle"],"Cash Register":[null,"Cash Register"],"Classical":[null,"Classical"],"Cosmic":[null,"Cosmic"],"Falling":[null,"Falling"],"Gamelan":[null,"Gamelan"],"Incoming":[null,"Incoming"],"Intermission":[null,"Intermission"],"Magic":[null,"Magic"],"Mechanical":[null,"Mechanical"],"Piano Bar":[null,"Piano Bar"],"Siren":[null,"Siren"],"Space Alarm":[null,"Space Alarm"],"Tug Boat":[null,"Tug Boat"],"Alien Alarm (long)":[null,"Alien Alarm (long)"],"Climb (long)":[null,"Climb (long)"],"Persistent (long)":[null,"Persistent (long)"],"Pushover Echo (long)":[null,"Pushover Echo (long)"],"Up Down (long)":[null,"Up Down (long)"],"None (silent)":[null,"None (silent)"],"Device specific":[null,"Device specific"],"choose notification sound to use":[null,"choose notification sound to use"],"Pushover priority":[null,"Pushover priority"],"Choose priority to use":[null,"Choose priority to use"],"Boxcar 2":[null,"Boxcar 2"],"Read your messages where and when you want them!":[null,"Read your messages where and when you want them!"],"send Boxcar notifications?":[null,"send Boxcar notifications?"],"Boxcar2 access token":[null,"Boxcar2 access token"],"access token for your Boxcar account.":[null,"access token for your Boxcar account."],"NMA":[null,"NMA"],"Notify My Android":[null,"Notify My Android"],"Notify My Android is a Prowl-like Android App and API that offers an easy way to send notifications from your application directly to your Android device.":[null,"Notify My Android is a Prowl-like Android App and API that offers an easy way to send notifications from your application directly to your Android device."],"send NMA notifications?":[null,"send NMA notifications?"],"NMA API key":[null,"NMA API key"],"(multiple keys must be separated by commas, up to a maximum of 5)":[null,"(multiple keys must be separated by commas, up to a maximum of 5)"],"NMA priority":[null,"NMA priority"],"priority of NMA messages from SickRage.":[null,"priority of NMA messages from SickRage."],"Pushalot":[null,"Pushalot"],"Pushalot is a platform for receiving custom push notifications to connected devices running Windows Phone or Windows 8.":[null,"Pushalot is a platform for receiving custom push notifications to connected devices running Windows Phone or Windows 8."],"send Pushalot notifications ?":[null,"send Pushalot notifications ?"],"Pushalot authorization token":[null,"Pushalot authorisation token"],"authorization token of your Pushalot account.":[null,"authorisation token of your Pushalot account."],"Pushbullet":[null,"Pushbullet"],"Pushbullet is a platform for receiving custom push notifications to connected devices running Android/iOS and desktop browsers such as Chrome, Firefox or Opera.":[null,"Pushbullet is a platform for receiving custom push notifications to connected devices running Android/iOS and desktop browsers such as Chrome, Firefox or Opera."],"send Pushbullet notifications?":[null,"send Pushbullet notifications?"],"Pushbullet API key":[null,"Pushbullet API key"],"API key of your Pushbullet account":[null,"API key of your Pushbullet account"],"Pushbullet devices":[null,"Pushbullet devices"],"Update device list":[null,"Update device list"],"Pushbullet channels":[null,"Pushbullet channels"],"Free Mobile":[null,"Free Mobile"],"Free Mobile is a famous French cellular network provider.<br> It provides to their customer a free SMS API.":[null,"Free Mobile is a famous French cellular network provider. <br> It provides their customers with a free SMS API."],"send SMS notifications?":[null,"send SMS notifications?"],"send a SMS when a download starts?":[null,"send a SMS when a download starts?"],"send a SMS when a download finishes?":[null,"send a SMS when a download finishes?"],"send a SMS when subtitles are downloaded?":[null,"send a SMS when subtitles are downloaded?"],"Free Mobile customer ID":[null,"Free Mobile customer ID"],"it's your Free Mobile customer ID (8 digits)":[null,"it's your Free Mobile customer ID (8 digits)"],"Free Mobile API key":[null,"Free Mobile API key"],"find your API key in your customer portal.":[null,"find your API key in your customer portal."],"Click below to test your settings.":[null,"Click below to test your settings."],"Telegram":[null,"Telegram"],"Telegram is a cloud-based instant messaging service.":[null,"Telegram is a cloud-based instant messaging service."],"send Telegram notifications?":[null,"send Telegram notifications?"],"send a message when a download starts?":[null,"send a message when a download starts?"],"send a message when a download finishes?":[null,"send a message when a download finishes?"],"send a message when subtitles are downloaded?":[null,"send a message when subtitles are downloaded?"],"User/group ID":[null,"User/group ID"],"contact @myidbot on Telegram to get an ID":[null,"contact @myidbot on Telegram to get an ID"],"Bot API token":[null,"Bot API token"],"contact @BotFather on Telegram to set up one":[null,"contact @BotFather on Telegram to set up one"],"Join":[null,"Join"],"Join all of your devices together!":[null,"Join all of your devices together!"],"send Join notifications?":[null,"send Join notifications?"],"Device ID":[null,"Device ID"],"per device specific id":[null,"per device specific id"]," to create a Join API key":[null,""],"Twilio":[null,"Twilio"],"Twilio is a webservice API that allows you to communicate directly with a mobile number. This notifier will send a text directly to your mobile device.":[null,"Twilio is a webservice API that allows you to communicate directly with a mobile number. This notifier will send a text directly to your mobile device."],"should SickRage text your mobile device?":[null,"should SickRage text your mobile device?"],"Twilio Account SID":[null,"Twilio Account SID"],"account SID of your Twilio account.":[null,"account SID of your Twilio account."],"Twilio Auth Token":[null,"Twilio Auth Token"],"Twilio Phone SID":[null,"Twilio Phone SID"],"phone SID that you would like to send the sms from":[null,"phone SID that you would like to send the sms from"],"Your phone number":[null,"Your phone number"],"phone number that will receive the sms. Please use the format +1-###-###-####":[null,"phone number that will receive the sms. Please use the format +1-###-###-####"],"Twitter":[null,"Twitter"],"A social networking and microblogging service, enabling its users to send and read other users' messages called tweets.":[null,"A social networking and microblogging service, enabling its users to send and read other users' messages called tweets."],"should SickRage post tweets on Twitter?":[null,"should SickRage post tweets on Twitter?"],"you may want to use a secondary account.":[null,"you may want to use a secondary account."],"send direct message":[null,"send direct message"],"send a notification via Direct Message, not via status update":[null,"send a notification via Direct Message, not via status update"],"send DM to":[null,"send DM to"],"Twitter account to send Direct Messages to (must follow you)":[null,"Twitter account to send Direct Messages to (must follow you)"],"Step One":[null,"Step One"],"Request Authorization":[null,"Request Authorisation"],"Click the \"Request Authorization\" button.<br> This will open a new page containing an auth key.<br> <b>note:</b> if nothing happens check your popup blocker.":[null,"Click the \"Request Authorization\" button.<br> This will open a new page containing an auth key.<br> <b>note:</b> if nothing happens check your popup blocker."],"Step Two":[null,"Step Two"],"Enter the key Twitter gave you below, and click \"Verify Key\".":[null,"Enter the key Twitter gave you below, and click \"Verify Key\"."],"Trakt":[null,"Trakt"],"Trakt helps keep a record of what TV shows and movies you are watching. Based on your favorites, Trakt recommends additional shows and movies you'll enjoy!":[null,"Trakt helps keep a record of what TV shows and movies you are watching. Based on your favorites, Trakt recommends additional shows and movies you'll enjoy!"],"send Trakt.tv notifications?":[null,"send Trakt.tv notifications?"],"username of your Trakt account.":[null,"username of your Trakt account."],"Trakt PIN":[null,"Trakt PIN"],"Get Trakt PIN":[null,"Get Trakt PIN"],"PIN code to authorize SickRage to access Trakt on your behalf.":[null,"PIN code to authorise SickRage to access Trakt on your behalf."],"API Timeout":[null,"API Timeout"],"seconds to wait for Trakt API to respond. (Use 0 to wait forever)":[null,"seconds to wait for Trakt API to respond. (Use 0 to wait forever)"],"Default indexer":[null,"Default indexer"],"Sync libraries":[null,"Sync libraries"],"sync your SickRage show library with your trakt show library.":[null,"sync your SickRage show library with your trakt show library."],"Remove Episodes From Collection":[null,"Remove Episodes From Collection"],"remove an episode from your Trakt Collection if it is not in your SickRage Library.":[null,"remove an episode from your Trakt Collection if it is not in your SickRage Library."],"Sync watchlist":[null,"Sync watchlist"],"sync your SickRage show watchlist with your trakt show watchlist (either Show and Episode).":[null,"sync your SickRage show watchlist with your trakt show watchlist (either Show and Episode)."],"episode will be added on watch list when wanted or snatched and will be removed when downloaded ":[null,"episode will be added on watch list when wanted or snatched and will be removed when downloaded "],"Watchlist add method":[null,"Watchlist add method"],"Skip All":[null,"Skip All"],"Download Pilot Only":[null,"Download Pilot Only"],"Get whole show":[null,"Get whole show"],"method in which to download episodes for new shows.":[null,"method in which to download episodes for new shows."],"Remove episode":[null,"Remove episode"],"remove an episode from your watchlist after it is downloaded.":[null,"remove an episode from your watchlist after it is downloaded."],"Remove series":[null,"Remove series"],"remove the whole series from your watchlist after any download.":[null,"remove the whole series from your watchlist after any download."],"Remove watched show":[null,"Remove watched show"],"remove the show from sickrage if it's ended and completely watched":[null,"remove the show from sickrage if it's ended and completely watched"],"Start paused":[null,"Start paused"],"shows grabbed from your trakt watchlist start paused.":[null,"shows grabbed from your trakt watchlist start paused."],"Trakt blackList name":[null,"Trakt BlackList name"],"name (slug) of list on Trakt for blacklisting show on 'Add Trending Show' & 'Add Recommended Shows' pages":[null,"name (slug) of list on Trakt for blacklisting show on 'Add Trending Show' & 'Add Recommended Shows' pages"],"Email":[null,"Email"],"Allows configuration of email notifications on a per show basis.":[null,"Allows configuration of email notifications on a per show basis."],"send email notifications?":[null,"send email notifications?"],"SMTP host":[null,"SMTP host"],"hostname of your SMTP email server.":[null,"hostname of your SMTP email server."],"SMTP port":[null,"SMTP port"],"port number used to connect to your SMTP host.":[null,"port number used to connect to your SMTP host."],"SMTP from":[null,"SMTP from"],"sender email address, some hosts require a real address.":[null,"sender email address, some hosts require a real address."],"Use TLS":[null,"Use TLS"],"check to use TLS encryption.":[null,"check to use TLS encryption."],"SMTP user":[null,"SMTP user"],"(optional) your SMTP server username.":[null,"(optional) your SMTP server username."],"SMTP password":[null,"SMTP password"],"(optional) your SMTP server password.":[null,"(optional) your SMTP server password."],"Global email list":[null,"Global email list"],"email addresses listed here, separated by commas if applicable, will<br> receive notifications for <b>all</b> shows.":[null,"email addresses listed here, separated by commas if applicable, will<br> receive notifications for <b>all</b> shows."],"(This field may be blank except when testing.)":[null,"(This field may be blank except when testing.)"],"Email Subject":[null,"Email Subject"],"use a custom subject for some privacy protection?":[null,"use a custom subject for some privacy protection?"],"(leave blank for the default SickRage subject)":[null,"(leave blank for the default SickRage subject)"],"configure per-show notifications here by entering email address(es), separated by commas,":[null,"configure per-show notifications here by entering email address(es), separated by commas,"],"after selecting a show in the drop-down box. Be sure to activate the 'Save for this show'":[null,"after selecting a show in the drop-down box. Be sure to activate the 'Save for this show'"],"button below after each entry.":[null,"button below after each entry."],"Slack":[null,"Slack"],"Slack brings all your communication together in one place. It's real-time messaging, archiving and search for modern teams.":[null,"Slack brings all your communication together in one place. It's real-time messaging, archiving and search for modern teams."],"should SickRage post messages on Slack?":[null,"should SickRage post messages on Slack?"],"Slack Incoming Webhook":[null,"Slack Incoming Webhook"],"Discord":[null,"Discord"],"All-in-one voice and text chat for gamers that's free, secure, and works on both your desktop and phone.":[null,"All-in-one voice and text chat for gamers that's free, secure, and works on both your desktop and phone."],"Should SickRage post messages on Discord?":[null,"Should SickRage post messages on Discord?"],"Discord Incoming Webhook":[null,"Discord Incoming Webhook"],"Create webhook under channel settings.":[null,"Create webhook under channel settings."],"Discord Bot Name":[null,"Discord Bot Name"],"Blank will use webhook default Name.":[null,"Blank will use webhook default Name."],"Discord Avatar URL":[null,"Discord Avatar URL"],"Blank will use webhook default Avatar.":[null,"Blank will use webhook default Avatar."],"Discord TTS":[null,"Discord TTS"],"Send notifications using text-to-speech":[null,"Send notifications using text-to-speech"],"Post-Processing":[null,"Post-Processing"],"Episode Naming":[null,"Episode Naming"],"Metadata":[null,"Metadata"],"Settings that dictate how SickRage should process completed downloads.":[null,"Settings that dictate how SickRage should process completed downloads."],"enable the automatic post processor to scan and process any files in your Post Processing Dir":[null,"enable the automatic post processor to scan and process any files in your Post Processing Dir"],"do not use if you use an external Post Processing script":[null,"do not use if you use an external Post Processing script"],"Post Processing Dir":[null,"Post Processing Dir"],"the folder where your download client puts the completed TV downloads.":[null,"the folder where your download client puts the completed TV downloads."],"please use seperate downloading and completed folders in your download client if possible.":[null,"please use seperate downloading and completed folders in your download client if possible."],"Processing Method":[null,"Processing Method"],"what method should be used to put files into the library?":[null,"what method should be used to put files into the library?"],"if you keep seeding torrents after they finish, please avoid the 'move' processing method to prevent errors.":[null,"if you keep seeding torrents after they finish, please avoid the 'move' processing method to prevent errors."],"Auto Post-Processing Frequency":[null,"Auto Post-Processing Frequency"],"time in minutes to check for new files to auto post-process (min 10)":[null,"time in minutes to check for new files to auto post-process (min 10)"],"Postpone post processing":[null,"Postpone post processing"],"wait to process a folder if sync files are present.":[null,"wait to process a folder if sync files are present."],"Sync File Extensions":[null,"Sync File Extensions"],"comma seperated list of extensions or filename globs SickRage ignores when Post Processing":[null,"comma seperated list of extensions or filename globs SickRage ignores when Post Processing"],"Rename Episodes":[null,"Rename Episodes"],"rename episode using the Episode Naming settings?":[null,"rename episode using the Episode Naming settings?"],"Create missing show directories":[null,"Create missing show directories"],"create missing show directories when they get deleted":[null,"create missing show directories when they get deleted"],"Add shows without directory":[null,"Add shows without directory"],"add shows without creating a directory (not recommended)":[null,"add shows without creating a directory (not recommended)"],"Move associated files":[null,"Move associated files"],"move associated (srt/srr/sfv/etc) files while post processing?":[null,"move associated (srt/srr/sfv/etc) files while post processing?"],"Rename .nfo file":[null,"Rename .nfo file"],"rename the original .nfo file to .nfo-orig to avoid conflicts?":[null,"rename the original .nfo file to .nfo-orig to avoid conflicts?"],"Associated file extensions":[null,"Associated file extensions"],"comma separated list of associated file extensions SickRage should keep while post processing.":[null,"comma separated list of associated file extensions SickRage should keep while post processing."],"leaving it empty means no associated files will be post processed":[null,"leaving it empty means no associated files will be post processed"],"Delete non associated files":[null,"Delete non associated files"],"delete non associated files while post processing?":[null,"delete non associated files while post processing?"],"Change File Date":[null,"Change File Date"],"set last modified filedate to the date that the episode aired?":[null,"set last modified filedate to the date that the episode aired?"],"some systems may ignore this feature.":[null,"some systems may ignore this feature."],"Timezone for File Date":[null,"Timezone for File Date"],"local":[null,"local"],"network":[null,"network"],"what timezone should be used to change File Date?":[null,"what timezone should be used to change File Date?"],"Unpack":[null,"Unpack"],"What to do with archived releases found in your <i>TV Download Dir</i>?":[null,"What to do with archived releases found in your <i>TV Download Dir</i>?"],"Ignore (do not process contents)":[null,"Ignore (do not process contents)"],"Unpack (process contents)":[null,"Unpack (process contents)"],"Treat as video (process archive as-is)":[null,"Treat as video (process archive as-is)"],"'Unpack' only works with RAR archives":[null,"'Unpack' only works with RAR archives"],"Windows":[null,"Windows"],"WinRar is required on windows":[null,"WinRar is required on windows"],"Unpack Directory":[null,"Unpack Directory"],"Choose a path to unpack files, leave blank to unpack in download dir":[null,"Choose a path to unpack files, leave blank to unpack in download dir"],"Unrar Location":[null,"Unrar Location"],"add the path to unrar if it is not in the system path":[null,"add the path to unrar if it is not in the system path"],"Alternate Unrar Tool":[null,"Alternate Unrar Tool"],"add the path to an alternate unrar tool if it is not in the system path":[null,"add the path to an alternate unrar tool if it is not in the system path"],"Delete RAR contents":[null,"Delete RAR contents"],"delete content of RAR files, even if Process Method not set to move?":[null,"delete content of RAR files, even if Process Method not set to move?"],"only working with RAR archive":[null,"only working with RAR archive"],"Don't delete empty folders":[null,"Don't delete empty folders"],"leave empty folders when Post Processing?":[null,"leave empty folders when Post Processing?"],"can be overridden using manual Post Processing":[null,"can be overridden using manual Post Processing"],"Follow symbolic-links":[null,"Follow symbolic-links"],"follow down symbolic links in download directory?":[null,"follow down symbolic links in download directory?"],"<b>EXPERTS ONLY.</b><br>Enable only if you know what <b>circular symbolic links</b> are,<br>and can <b>verify that you have none</b>.":[null,"<b>EXPERTS ONLY.</b><br>Enable only if you know what <b>circular symbolic links</b> are,<br>and can <b>verify that you have none</b>."],"Use icacls":[null,"Use icacls"],"Windows only":[null,"Windows only"],"sets video permissions after using the move method in post processing":[null,"sets video permissions after using the move method in post processing"],"Extra Scripts":[null,"Extra Scripts"],"see":[null,"see"],"for script arguments description and usage.":[null,"for script arguments description and usage."],"How SickRage will name and sort your episodes.":[null,"How SickRage will name and sort your episodes."],"Name Pattern":[null,"Name Pattern"],"Toggle Naming Legend":[null,"Toggle Naming Legend"],"don't forget to add quality pattern. Otherwise after post-processing the episode will have UNKNOWN quality":[null,"don't forget to add quality pattern. Otherwise after post-processing the episode will have UNKNOWN quality"],"Meaning":[null,"Meaning"],"Pattern":[null,"Pattern"],"Result":[null,"Result"],"Use lower case if you want lower case names (eg. %sn, %e.n, %q_n etc)":[null,"Use lower case if you want lower case names (eg. %sn, %e.n, %q_n etc)"],"Show Name":[null,"Show Name"],"Show.Name":[null,"Show.Name"],"Show_Name":[null,"Show_Name"],"Season Number":[null,"Series Number"],"XEM Season Number":[null,"XEM Series Number"],"Episode Number":[null,"Episode Number"],"XEM Episode Number":[null,"XEM Episode Number"],"Episode Name":[null,"Episode Name"],"Episode.Name":[null,"Episode.Name"],"Episode_Name":[null,"Episode_Name"],"Air Date":[null,"Air Date"],"Post-Processing Date":[null,"Post-Processing Date"],"Quality":[null,"Quality"],"Scene Quality":[null,"Scene Quality"],"Release Name":[null,"Release Name"],"SickRage' is used in place of RLSGROUP if it could not be properly detected":[null,"SickRage' is used in place of RLSGROUP if it could not be properly detected"],"Release Group":[null,"Release Group"],"If episode is proper/repack add 'proper' to name.":[null,"If episode is proper/repack add 'proper' to name."],"Release Type":[null,"Release Type"],"Multi-Episode Style":[null,"Multi-Episode Style"],"Single-EP Sample":[null,"Single-EP Sample"],"Multi-EP sample":[null,"Multi-EP sample"],"Strip Show Year":[null,"Strip Show Year"],"remove the TV show's year when renaming the file?":[null,"remove the TV show's year when renaming the file?"],"only applies to shows that have year inside parentheses":[null,"only applies to shows that have year inside parentheses"],"Custom Air-By-Date":[null,"Custom Air-By-Date"],"name air-by-date shows differently than regular shows?":[null,"name air-by-date shows differently than regular shows?"],"Toggle ABD Naming Legend":[null,"Toggle ABD Naming Legend"],"Regular Air Date":[null,"Regular Air Date"],"Year":[null,"Year"],"Month":[null,"Month"],"Day":[null,"Day"],"Multi-EP style is ignored":[null,"Multi-EP style is ignored"],"Custom Sports":[null,"Custom Sports"],"name sports shows differently than regular shows?":[null,"name sports shows differently than regular shows?"],"Toggle Sports Naming Legend":[null,"Toggle Sports Naming Legend"],"Sports Air Date":[null,"Sports Air Date"],"Custom Anime":[null,"Custom Anime"],"name anime shows differently than regular shows?":[null,"name anime shows differently than regular shows?"],"Toggle Anime Naming Legend":[null,"Toggle Anime Naming Legend"],">XEM Season Number":[null,">XEM Series Number"],"Single-EP Anime Sample":[null,"Single-EP Anime Sample"],"Multi-EP Anime sample":[null,"Multi-EP Anime sample"],"Add Absolute Number":[null,"Add Absolute Number"],"add the absolute number to the season/episode format?":[null,"add the absolute number to the season/episode format?"],"only applies to anime. (eg. S15E45 - 310 vs S15E45)":[null,"only applies to anime. (eg. S15E45 - 310 vs S15E45)"],"Only Absolute Number":[null,"Only Absolute Number"],"replace season/episode format with absolute number":[null,"replace season/episode format with absolute number"],"only applies to anime.":[null,"only applies to anime."],"No Absolute Number":[null,"No Absolute Number"],"don't include the absolute number":[null,"don't include the absolute number"],"The data associated to the data. These are files associated to a TV show in the form of images and text that, when supported, will enhance the viewing experience.":[null,"The data associated to the data. These are files associated to a TV show in the form of images and text that, when supported, will enhance the viewing experience."],"Metadata Type":[null,"Metadata Type"],"toggle metadata options that you wish to be created":[null,"toggle metadata options that you wish to be created"],"multiple targets may be used":[null,"multiple targets may be used"],"Select Metadata":[null,"Select Metadata"],"Provider Priorities":[null,"Provider Priorities"],"Provider Options":[null,"Provider Options"],"Configure Custom Newznab Providers":[null,"Configure Custom Newznab Providers"],"Configure Custom Torrent Providers":[null,"Configure Custom Torrent Providers"],"Check off and drag the providers into the order you want them to be used.":[null,"Check off and drag the providers into the order you want them to be used."],"At least one provider is required but two are recommended.":[null,"At least one provider is required but two are recommended."],"Torrent providers can be toggled in ":[null,"Torrent providers can be toggled in "],"Provider does not support backlog searches at this time.":[null,"Provider does not support backlog searches at this time."],"Provider is <b>NOT WORKING</b>.":[null,"Provider is <b>NOT WORKING</b>."],"Configure individual provider settings here.":[null,"Configure individual provider settings here."],"Check with provider's website on how to obtain an API key if needed.":[null,"Check with provider's website on how to obtain an API key if needed."],"Configure provider":[null,"Configure provider"],"no providers available to configure.":[null,"no providers available to configure."],"URL":[null,"URL"],"Enable daily searches":[null,"Enable daily searches"],"enable provider to perform daily searches.":[null,"enable provider to perform daily searches."],"Enable backlog searches":[null,"Enable backlog searches"],"enable provider to perform backlog searches.":[null,"enable provider to perform backlog searches."],"Season search mode":[null,"Series search mode"],"when searching for complete seasons you can choose to have it look for season packs only, or choose to have it build a complete season from just single episodes.":[null,"when searching for a complete series you can choose to have it look for series packs only, or choose to have it build a complete series from just single episodes."],"season packs only.":[null,"series packs only."],"episodes only.":[null,"episodes only."],"Enable fallback":[null,"Enable fallback"],"when searching for a complete season depending on search mode you may return no results, this helps by restarting the search using the opposite search mode.":[null,"when searching for a complete series depending on search mode you may not get any results, this helps by restarting the search using the opposite search mode."],"Custom URL":[null,"Custom URL"],"the URL should include the protocol (and port if applicable). Examples: http://192.168.1.4/ or http://localhost:3000/":[null,"the URL should include the protocol (and port if applicable). Examples: http://192.168.1.4/ or http://localhost:3000/"],"Api key":[null,"Api key"],"Digest":[null,"Digest"],"Hash":[null,"Hash"],"Passkey":[null,"Passkey"],"Cookies":[null,"Cookies"],"example: uid=1234;pass=567845439634987<br>note: uid and pass are not your username/password.<br>use DevTools or Firebug to get these values after logging in on your browser.":[null,"example: uid=1234;pass=567845439634987<br>note: uid and pass are not your username/password.<br>use DevTools or Firebug to get these values after logging in on your browser."],"Pin":[null,"Pin"],"Seed ratio":[null,"Seed ratio"],"stop transfer when ratio is reached<br>(-1 SickRage default to seed forever, or leave blank for downloader default)":[null,"stop transfer when ratio is reached<br>(-1 SickRage default to seed forever, or leave blank for downloader default)"],"Minimum seeders":[null,"Minimum seeders"],"Minimum leechers":[null,"Minimum leechers"],"Confirmed download":[null,"Confirmed download"],"only download torrents from trusted or verified uploaders ?":[null,"only download torrents from trusted or verified uploaders ?"],"Ranked torrents":[null,"Ranked torrents"],"only download ranked torrents (trusted releases)":[null,"only download ranked torrents (trusted releases)"],"English torrents":[null,"English torrents"],"only download english torrents, or torrents containing english subtitles":[null,"only download english torrents, or torrents containing english subtitles"],"For Spanish torrents":[null,"For Spanish torrents"],"ONLY search on this provider if show info is defined as \"Spanish\" (avoid provider's use for VOS shows)":[null,"ONLY search on this provider if show info is defined as \"Spanish\" (avoid provider's use for VOS shows)"],"Sorting results by":[null,"Sorting results by"],"Freeleech":[null,"Freeleech"],"only download <b>\"FreeLeech\"</b> torrents.":[null,"only download <b>\"FreeLeech\"</b> torrents."],"Category":[null,"Category"],"select torrent with Italian subtitle":[null,"select torrent with Italian subtitle"],"Configure Custom<br>Newznab Providers":[null,"Configure Custom<br>Newznab Providers"],"Add and setup or remove custom Newznab providers.":[null,"Add and setup or remove custom Newznab providers."],"Select provider":[null,"Select provider"],"-- add new provider --":[null,"-- add new provider --"],"Provider name":[null,"Provider name"],"Site URL":[null,"Site URL"],"Newznab search categories":[null,"Newznab search categories"],"select your Newznab categories on the left, and click the \"update categories\" button to use them for searching.) <b>don't forget to to save the form!":[null,"select your Newznab categories on the left, and click the \"Update Categories\" button to use them for searching.) <b>don't forget to to save the form!"],"Update Categories":[null,"Update Categories"],"Add":[null,"Add"],"Delete":[null,"Delete"],"Add and setup or remove custom RSS providers.":[null,"Add and setup or remove custom RSS providers."],"RSS URL":[null,"RSS URL"],"Search element":[null,"Search element"],"eg: title":[null,"eg: title"],"Episode Search":[null,"Episode Search"],"NZB Search":[null,"NZB Search"],"Torrent Search":[null,"Torrent Search"],"How to manage searching with":[null,"How to manage searching with"],"Randomize Providers":[null,"Randomise Providers"],"randomize the provider search order instead of going in order of placement":[null,"randomise the provider search order instead of going in order of placement"],"Download propers":[null,"Download propers"],"replace original download with \"Proper\" or \"Repack\" if nuked":[null,"replace original download with \"Proper\" or \"Repack\" if nuked"],"Check propers every":[null,"Check propers every"],"24 hours":[null,"24 hours"],"4 hours":[null,"4 hours"],"90 mins":[null,"90 mins"],"45 mins":[null,"45 mins"],"15 mins":[null,"15 mins"],"Backlog search day(s)":[null,"Backlog search day(s)"],"number of day(s) that the \"Forced Backlog Search\" will cover (e.g. 7 Days)":[null,"number of day(s) that the \"Forced Backlog Search\" will cover (e.g. 7 Days)"],"Backlog search frequency":[null,"Backlog search frequency"],"time in minutes between searches (min.":[null,"time in minutes between searches (min."],"Daily search frequency":[null,"Daily search frequency"],"Usenet retention":[null,"Usenet retention"],"age limit in days for usenet articles to be used (e.g. 500)":[null,"age limit in days for usenet articles to be used (e.g. 500)"],"Ignore words":[null,"Ignore words"],"results with one or more word from this list will be ignored<br>separate words with a comma, e.g. \"word1,word2,word3\"":[null,"results with one or more word from this list will be ignored<br>separate words with a comma, e.g. \"word1,word2,word3\""],"Require words":[null,"Require words"],"results with no word from this list will be ignored<br>separate words with a comma, e.g. \"word1,word2,word3\"":[null,"results with no word from this list will be ignored<br>separate words with a comma, e.g. \"word1,word2,word3\""],"Trackers list":[null,"Trackers list"],"trackers that will be added to magnets without trackers<br>separate trackers with a comma, e.g. \"tracker1,tracker2,tracker3\"":[null,"trackers that will be added to magnets without trackers<br>separate trackers with a comma, e.g. \"tracker1,tracker2,tracker3\""],"Ignore language names in subbed results":[null,"Ignore language names in subbed results"],"ignore subbed releases based on language names <br>\n Example: \"dk\" will ignore words: dksub, dksubs, dksubbed, dksubed <br>\n separate languages with a comma, e.g. \"lang1,lang2,lang3":[null,"ignore subbed releases based on language names <br>\n Example: \"dk\" will ignore words: dksub, dksubs, dksubbed, dksubed <br>\n separate languages with a comma, e.g. \"lang1,lang2,lang3"],"Allow high priority":[null,"Allow high priority"],"set downloads of recently aired episodes to high priority":[null,"set downloads of recently aired episodes to high priority"],"Use Failed Downloads":[null,"Use Failed Downloads"],"use Failed Download Handling?":[null,"use Failed Download Handling?"],"will only work with snatched/downloaded episodes after enabling this":[null,"will only work with snatched/downloaded episodes after enabling this"],"Delete Failed":[null,"Delete Failed"],"delete files left over from a failed download?":[null,"delete files left over from a failed download?"],"this only works if Use Failed Downloads is enabled.":[null,"this only works if Use Failed Downloads is enabled."],"How to handle NZB search results.":[null,"How to handle NZB search results."],"Search NZBs":[null,"Search NZBs"],"enable NZB search providers":[null,"enable NZB search providers"],"Send .nzb files to":[null,"Send .nzb files to"],"SABnzbd server URL":[null,"SABnzbd server URL"],"URL to your SABnzbd server (e.g. http://localhost:8080/)":[null,"URL to your SABnzbd server (e.g. http://localhost:8080/)"],"SABnzbd username":[null,"SABnzbd username"],"(blank for none)":[null,"(blank for none)"],"SABnzbd password":[null,"SABnzbd password"],"SABnzbd API key":[null,"SABnzbd API key"],"locate at... SABnzbd Config -> General -> API Key":[null,"locate at... SABnzbd Config -> General -> API Key"],"Use SABnzbd category":[null,"Use SABnzbd category"],"add downloads to this category (e.g. TV)":[null,"add downloads to this category (e.g. TV)"],"Use SABnzbd category (backlog episodes)":[null,"Use SABnzbd category (backlog episodes)"],"add downloads of old episodes to this category (e.g. TV)":[null,"add downloads of old episodes to this category (e.g. TV)"],"Use SABnzbd category for anime":[null,"Use SABnzbd category for anime"],"add anime downloads to this category (e.g. anime)":[null,"add anime downloads to this category (e.g. anime)"],"Use SABnzbd category for anime (backlog episodes)":[null,"Use SABnzbd category for anime (backlog episodes)"],"add anime downloads of old episodes to this category (e.g. anime)":[null,"add anime downloads of old episodes to this category (e.g. anime)"],"Use forced priority":[null,"Use forced priority"],"enable to change priority from HIGH to FORCED":[null,"enable to change priority from HIGH to FORCED"],"Black hole folder location":[null,"Black hole folder location"],"<b>.nzb</b> files are stored at this location for external software to find and use":[null,"<b>.nzb</b> files are stored at this location for external software to find and use"],"Connect using HTTPS":[null,"Connect using HTTPS"],"enable Secure control in NZBGet and set the correct Secure Port here":[null,"enable Secure control in NZBGet and set the correct Secure Port here"],"NZBget host:port":[null,"NZBget host:port"],"(e.g. localhost:6789)":[null,"(e.g. localhost:6789)"],"NZBget RPC host name and port number (not NZBgetweb!)":[null,"NZBget RPC host name and port number (not NZBgetweb!)"],"NZBget username":[null,"NZBget username"],"locate in nzbget.conf (default:nzbget)":[null,"locate in nzbget.conf (default:nzbget)"],"NZBget password":[null,"NZBget password"],"locate in nzbget.conf (default:tegbzn6789)":[null,"locate in nzbget.conf (default:tegbzn6789)"],"Use NZBget category":[null,"Use NZBget category"],"send downloads marked this category (e.g. TV)":[null,"send downloads marked this category (e.g. TV)"],"Use NZBget category (backlog episodes)":[null,"Use NZBget category (backlog episodes)"],"send downloads of old episodes marked this category (e.g. TV)":[null,"send downloads of old episodes marked this category (e.g. TV)"],"Use NZBget category for anime":[null,"Use NZBget category for anime"],"send anime downloads marked this category (e.g. anime)":[null,"send anime downloads marked this category (e.g. anime)"],"Use NZBget category for anime (backlog episodes)":[null,"Use NZBget category for anime (backlog episodes)"],"send anime downloads of old episodes marked this category (e.g. anime)":[null,"send anime downloads of old episodes marked this category (e.g. anime)"],"NZBget priority":[null,"NZBget priority"],"Very low":[null,"Very low"],"Low":[null,"Low"],"Very high":[null,"Very high"],"Force":[null,"Force"],"priority for daily snatches (no backlog)":[null,"priority for daily snatches (no backlog)"],"Torrent host:port":[null,"Torrent host:port"],"URL to your Synology DSM (e.g. http://localhost:5000/)":[null,"URL to your Synology DSM (e.g. http://localhost:5000/)"],"Client username":[null,"Client username"],"Client password":[null,"Client password"],"Downloaded files location":[null,"Downloaded files location"],"where Synology Download Station will save downloaded files (blank for client default)":[null,"where Synology Download Station will save downloaded files (blank for client default)"],"the destination has to be a shared folder for Synology DS":[null,"the destination has to be a shared folder for Synology DS"],"Click below to test":[null,"Click below to test"],"How to handle Torrent search results.":[null,"How to handle Torrent search results."],"Search torrents":[null,"Search torrents"],"enable torrent search providers":[null,"enable torrent search providers"],"Send .torrent files to":[null,"Send .torrent files to"],"<b>.torrent</b> files are stored at this location for external software to find and use":[null,"<b>.torrent</b> files are stored at this location for external software to find and use"],"URL to your torrent client (e.g. http://localhost:8000/)":[null,"URL to your torrent client (e.g. http://localhost:8000/)"],"Torrent RPC URL":[null,"Torrent RPC URL"],"the path without leading and trailing slashes (e.g. transmission)":[null,"the path without leading and trailing slashes (e.g. transmission)"],"Http Authentication":[null,"Http Authentication"],"Verify certificate":[null,"Verify certificate"],"disable if you get \"Deluge: Authentication Error\" in your log":[null,"disable if you get \"Deluge: Authentication Error\" in your log"],"verify SSL certificates for HTTPS requests":[null,"verify SSL certificates for HTTPS requests"],"Add label to torrent":[null,"Add label to torrent"],"(blank spaces are not allowed)":[null,"(blank spaces are not allowed)"],"label plugin must be enabled in Deluge clients":[null,"label plugin must be enabled in Deluge clients"],"for QBitTorrent 3.3.1 and up":[null,"for QBitTorrent 3.3.1 and up"],"Add label to torrent for anime":[null,"Add label to torrent for anime"],"for QBitTorrent 3.3.1 and up ":[null,"for QBitTorrent 3.3.1 and up "],"where <span id=\"torrent_client\">the torrent client</span> will save downloaded files (blank for client default)":[null,"where <span id=\"torrent_client\">the torrent client</span> will save downloaded files (blank for client default)"],"the destination has to be a shared folder for Synology DS</span>":[null,"the destination has to be a shared folder for Synology DS</span>"],"Minimum seeding time":[null,"Minimum seeding time"],"time in hours":[null,"time in hours"],"(default:'0' passes blank to client and '-1' passes nothing)":[null,"(default:'0' passes blank to client and '-1' passes nothing)"],"Start torrent paused":[null,"Start torrent paused"],"add .torrent to client but do <b style=\"font-weight:900\">not</b> start downloading":[null,"add .torrent to client but do <b style=\"font-weight:900\">not</b> start downloading"],"Allow high bandwidth":[null,"Allow high bandwidth"],"use high bandwidth allocation if priority is high":[null,"use high bandwidth allocation if priority is high"],"Test Connection":[null,"Test Connection"],"Windows Shares":[null,""],"Defines your existing windows shares so that we can add them to the browse dialog":[null,""],"Share #{number}":[null,""],"Share label":[null,""],"Hostname or IP":[null,""],"Share path":[null,""],"Subtitles Search":[null,"Subtitles Search"],"Subtitles Plugin":[null,"Subtitles Plugin"],"Plugin Settings":[null,"Plugin Settings"],"Settings that dictate how SickRage handles subtitles search results.":[null,"Settings that dictate how SickRage handles subtitle search results."],"Search Subtitles":[null,"Search Subtitles"],"Subtitle Languages":[null,"Subtitle Languages"],"Subtitle Directory":[null,"Subtitle Directory"],"the directory where SickRage should store your <i>Subtitles</i> files.":[null,"the directory where SickRage should store your <i>Subtitles</i> files."],"leave empty if you want store subtitle in episode path.":[null,"leave empty if you want store subtitle in episode path."],"Subtitle Find Frequency":[null,"Subtitle Find Frequency"],"time in hours between scans (default: 1)":[null,"time in hours between scans (default: 1)"],"Include Specials":[null,"Include Specials"],"include the show's specials when searching for subtitles?":[null,"include the show's specials when searching for subtitles?"],"Perfect matches":[null,"Perfect matches"],"only download subtitles that match: release group, video codec, audio codec and resolution":[null,"only download subtitles that match: release group, video codec, audio codec and resolution"],"if disabled you may get out of sync subtitles":[null,"if disabled you may get out of sync subtitles"],"Subtitles History":[null,"Subtitles History"],"log downloaded Subtitle on History page?":[null,"log downloaded Subtitle on History page?"],"Subtitles Multi-Language":[null,"Subtitles Multi-Language"],"append language codes to subtitle filenames?":[null,"append language codes to subtitle filenames?"],"this option is required if you use multiple subtitle languages":[null,"this option is required if you use multiple subtitle languages"],"Delete unwanted subtitles":[null,"Delete unwanted subtitles"],"enable to delete unwanted subtitle languages bundled with release":[null,"enable to delete unwanted subtitle languages bundled with release"],"Embedded Subtitles":[null,"Embedded Subtitles"],"ignore subtitles embedded inside video file?":[null,"ignore subtitles embedded inside video file?"],"this will ignore <u>all</u> embedded subtitles for every video file!":[null,"this will ignore <u>all</u> embedded subtitles for every video file!"],"Hearing Impaired Subtitles":[null,"Hearing Impaired Subtitles"],"download hearing impaired style subtitles?":[null,"download hearing impaired style subtitles?"],"See":[null,"See"],"for a script arguments description.":[null,"for a script arguments description."],"Additional scripts separated by <b>|</b>.":[null,"Additional scripts separated by <b>|</b>."],"Scripts are called after each episode has searched and downloaded subtitles.":[null,"Scripts are called after each episode has searched and downloaded subtitles."],"For any scripted languages, include the interpreter executable before the script. See the following example":[null,"For any scripted languages, include the interpreter executable before the script. See the following example"],"For Windows:":[null,"For Windows:"],"For Linux / OS X:":[null,"For Linux / OS X:"],"Subtitle Providers":[null,"Subtitle Providers"],"Check off and drag the plugins into the order you want them to be used.":[null,"Check off and drag the plugins into the order you want them to be used."],"At least one plugin is required.":[null,"At least one plugin is required."]," Web-scraping plugin":[null," Web-scraping plugin"],"Provider Settings":[null,"Provider Settings"],"Set user and password for each provider":[null,"Set user and password for each provider"],"User Name":[null,"User Name"],"Change Show":[null,"Change Show"],"Prev Show":[null,"Prev Show"],"Next Show":[null,"Next Show"],"Jump to Season":[null,"Jump to Series"],"Specials":[null,"Specials"],"Poster for":[null,"Poster for"],"Stars":[null,"Stars"],"minutes":[null,"minutes"],"View other popular {genre} shows on trakt.tv.":[null,"View other popular {genre} shows on trakt.tv."],"View other popular {imdbgenre} shows on IMDB.":[null,"View other popular {imdbgenre} shows on IMDB."],"Allowed":[null,"Allowed"],"Preferred":[null,"Preferred"],"Originally Airs":[null,"Originally Airs"],"Show Status":[null,"Show Status"],"Default EP Status":[null,"Default EP Status"],"Location":[null,"Location"],"Missing":[null,"Missing"],"Scene Name":[null,"Scene Name"],"Required Words":[null,"Required Words"],"Ignored Words":[null,"Ignored Words"],"Size":[null,"Size"],"Info Language":[null,"Info Language"],"Subtitles SR Metadata":[null,"Subtitles SR Metadata"],"Season Folders":[null,"Series Folders"],"Paused":[null,"Paused"],"Air-by-Date":[null,"Air-by-Date"],"Sports":[null,"Sports"],"DVD Order":[null,"DVD Order"],"Scene Numbering":[null,"Scene Numbering"],"Select Filtered Episodes":[null,"Select Filtered Episodes"],"Clear All":[null,"Clear All"],"Change selected episodes to":[null,"Change selected episodes to"],"Select Columns":[null,"Select Columns"],"Hide Episodes":[null,"Hide Episodes"],"Show Episodes":[null,"Show Episodes"],"NFO":[null,"NFO"],"TBN":[null,"TBN"],"Episode":[null,"Episode"],"Absolute":[null,"Absolute"],"Scene":[null,"Scene"],"Scene Absolute":[null,"Scene Absolute"],"File Name":[null,"File Name"],"Airdate":[null,"Airdate"],"Download":[null,"Download"],"Change the value here if scene numbering differs from the indexer episode numbering":[null,"Change the value here if scene numbering differs from the indexer episode numbering"],"Change the value here if scene absolute numbering differs from the indexer absolute numbering":[null,"Change the value here if scene absolute numbering differs from the indexer absolute numbering"],"Manual Search":[null,"Manual Search"],"Do you want to mark this episode as failed?":[null,"Do you want to mark this episode as failed?"],"The episode release name will be added to the failed history, preventing it to be downloaded again.":[null,"The episode release name will be added to the failed history, preventing it being downloaded again."],"Do you want to include the current episode quality in the search?":[null,"Do you want to include the current episode quality in the search?"],"Choosing No will ignore any releases with the same episode quality as the one currently downloaded/snatched.":[null,"Choosing No will ignore any releases with the same episode quality as the one currently downloaded/snatched."],"Download subtitle":[null,"Download subtitle"],"Do you want to re-download the subtitle for this language?":[null,"Do you want to re-download the subtitle for this language?"],"It will overwrite your current subtitle":[null,"It will overwrite your current subtitle"],"Format":[null,"Format"],"Advanced":[null,"Advanced"],"Main Settings":[null,"Main Settings"],"Show Location":[null,"Show Location"],"Preferred Quality":[null,"Preferred Quality"],"Default Episode Status":[null,"Default Episode Status"],"this will set the status for future episodes.":[null,"this will set the status for future episodes."],"this only applies to episode filenames and the contents of metadata files.":[null,"this only applies to episode filenames and the contents of metadata files."],"search for subtitles":[null,"search for subtitles"],"Use SR Metdata":[null,"Use SR Metadata"],"use SickRage metadata when searching for subtitle, this will override the autodiscovered metadata":[null,"use SickRage metadata when searching for subtitle, this will override the autodiscovered metadata"],"pause this show (SickRage will not download episodes)":[null,"pause this show (SickRage will not download episodes)"],"Format Settings":[null,"Format Settings"],"Air by date":[null,"Air by date"],"check if the show is released as Show.03.02.2010 rather than Show.S02E03.":[null,"check if the show is released as Show.03.02.2010 rather than Show.S02E03."],"in case of an air date conflict between regular and special episodes, the later will be ignored.":[null,"in case of an air date conflict between regular and special episodes, the later will be ignored."],"check if the show is Anime and episodes are released as Show.265 rather than Show.S02E03":[null,"check if the show is Anime and episodes are released as Show.265 rather than Show.S02E03"],"check if the show is a sporting or MMA event released as Show.03.02.2010 rather than Show.S02E03":[null,"check if the show is a sporting or MMA event released as Show.03.02.2010 rather than Show.S02E03"],"Season folders":[null,"Series folders"],"group episodes by season folder (uncheck to store in a single folder)":[null,"group episodes by series folder (uncheck to store in a single folder)"],"search by scene numbering (uncheck to search by indexer numbering)":[null,"search by scene numbering (uncheck to search by indexer numbering)"],"use the DVD order instead of the air order":[null,"use the DVD order instead of the air order"],"a \"Force Full Update\" is necessary, and if you have existing episodes you need to sort them manually.":[null,"a \"Force Full Update\" is necessary, and if you have existing episodes you need to sort them manually."],"comma-separated <i>e.g. \"word1,word2,word3</i>\"":[null,"comma-separated <i>e.g. \"word1,word2,word3</i>\""],"search results with one or more words from this list will be ignored.":[null,"search results with one or more words from this list will be ignored."],"e.g. \"word1,word2,word3\"":[null,"e.g. \"word1,word2,word3\""],"search results with no words from this list will be ignored.":[null,"search results with no words from this list will be ignored."],"Scene Exception":[null,"Scene Exception"],"this will affect episode search on NZB and torrent providers.":[null,"this will affect episode search on NZB and torrent providers."],"this list appends to the original show name.":[null,"this list appends to the original show name."],"WARNING logs":[null,"WARNING logs"],"ERROR logs":[null,"ERROR logs"],"There are no events to display.":[null,"There are no events to display."],"Limit":[null,"Limit"],"Layout":[null,"Layout"],"HistoryLayout":[null,"HistoryLayout"],"Compact":[null,"Compact"],"Detailed":[null,"Detailed"],"Time":[null,"Time"],"Provider":[null,"Provider"],"Missing Provider":[null,"Missing Provider"],"missing provider":[null,"missing provider"],"Directory":[null,"Directory"],"Show Name (tvshow.nfo)":[null,"Show Name (tvshow.nfo)"],"Indexer":[null,"Indexer"],"Enter the folder containing the episode":[null,"Enter the folder containing the episode"],"Process Method to be used":[null,"Process Method to be used"],"Copy":[null,"Copy"],"Move":[null,"Move"],"Hard Link":[null,"Hard Link"],"Symbolic Link":[null,"Symbolic Link"],"Symbolic Link Reversed":[null,"Symbolic Link Reversed"],"Force already Post Processed Dir/Files":[null,"Force already Post Processed Dir/Files"],"Mark Dir/Files as priority download":[null,"Mark Dir/Files as priority download"],"(Check it to replace the file even if it exists at higher quality)":[null,"(Check it to replace the file even if it exists at higher quality)"],"Delete files and folders":[null,"Delete files and folders"],"(Check it to delete files and folders like auto processing)":[null,"(Check it to delete files and folders like auto processing)"],"Don't use processing queue":[null,"Don't use processing queue"],"(If checked this will return the result of the process here, but may be slow!)":[null,"(If checked this will return the result of the process here, but may be slow!)"],"Mark download as failed":[null,"Mark download as failed"],"Process":[null,"Process"],"Download subtitles for this show?":[null,"Download subtitles for this show?"],"use SickRage metadata when searching for subtitle, <br />this will override the autodiscovered metadata":[null,"use SickRage metadata when searching for subtitle, <br />this will override the autodiscovered metadata"],"Status for previously aired episodes":[null,"Status for previously aired episodes"],"Status for all future episodes":[null,"Status for all future episodes"],"Group episodes by season folder?":[null,"Group episodes by season folder?"],"Is this show an Anime?":[null,"Is this show an Anime?"],"Is this show scene numbered?":[null,"Is this show scene numbered?"],"Save Defaults":[null,"Save Defaults"],"Use current values as the defaults":[null,"Use current values as the defaults"],"<p>Select your preferred fansub groups from the <b>Available Groups</b> and add them to the <b>Whitelist</b>. Add groups to the <b>Blacklist</b> to ignore them.</p>\n <p>The <b>Whitelist</b> is checked <i>before</i> the <b>Blacklist</b>.</p>\n <p>Groups are shown as <b>Name</b> | <b>Rating</b> | <b>Number of subbed episodes</b>.</p>\n <p>You may also add any fansub group not listed to either list manually.</p>\n <p>When doing this please note that you can only use groups listed on anidb for this anime.\n <br>If a group is not listed on anidb but subbed this anime, please correct anidb's data.</p>":[null,"<p>Select your preferred fansub groups from the <b>Available Groups</b> and add them to the <b>Whitelist</b>. Add groups to the <b>Blacklist</b> to ignore them.</p> \n <p>The <b>Whitelist</b> is checked <i>before</i> the <b>Blacklist</b>.</p> \n <p>Groups are shown as <b>Name</b> | <b>Rating</b> | <b>Number of subbed episodes</b>.</p> \n <p>You may also add any fansub group not listed to either list manually.</p> \n <p>When doing this please note that you can only use groups listed on anidb for this anime.\n <br>If a group is not listed on anidb but subbed this anime, please correct anidb's data.</p>"],"Whitelist":[null,"Whitelist"],"Available Groups":[null,"Available Groups"],"Add to Whitelist":[null,"Add to Whitelist"],"Add to Blacklist":[null,"Add to Blacklist"],"Blacklist":[null,"Blacklist"],"Custom Group":[null,"Custom Group"],"Allowed Quality:":[null,"Allowed Quality:"],"Preferred Quality:":[null,"Preferred Quality:"],"Filter Show Name":[null,"Filter Show Name"],"Root":[null,"Root"],"All":[null,"All"],"Clear Filter(s)":[null,"Clear Filter(s)"],"Poster":[null,"Poster"],"Small Poster":[null,"Small Poster"],"Banner":[null,"Banner"],"Simple":[null,"Simple"],"Next Episode":[null,"Next Episode"],"Progress":[null,"Progress"],"Direction":[null,"Direction"],"Ascending":[null,"Ascending"],"Descending":[null,"Descending"],"Poster Size":[null,"Poster Size"],"Continuing":[null,"Continuing"],"Ended":[null,"Ended"],"Total":[null,"Total"],"Invalid date":[null,"Invalid date"],"No Network":[null,"No Network"],"Next Ep":[null,"Next Ep"],"Prev Ep":[null,"Prev Ep"],"Show":[null,"Show"],"Downloads":[null,"Downloads"],"Active":[null,"Active"],"loading":[null,"loading"],"Loading...":[null,"Loading..."],"<p><b><u>Preferred</u></b> qualities will replace those in <b><u>allowed</u></b>, even if they are lower.</p>":[null,"<p><b><u>Preferred</u></b> qualities will replace those in <b><u>allowed</u></b>, even if they are lower.</p>"],"New":[null,"New"],"Set as Default":[null,"Set as Default"],"Remember me":[null,"Remember me"],"Edit Selected":[null,"Edit Selected"],"Subtitle":[null,"Subtitle"],"Default Ep Status":[null,"Default Ep Status"],"Update":[null,"Update"],"Rescan":[null,"Rescan"],"Rename":[null,"Rename"],"Search Subtitle":[null,"Search Subtitle"],"Force Metadata Regen":[null,"Force Metadata Regen"],"Snatched (Allowed)":[null,"Snatched (Allowed)"],"Jump to Show":[null,"Jump to Show"],"Force Backlog":[null,"Force Backlog"],"Manage episodes with status":[null,"Manage episodes with status"],"Manage":[null,"Manage"],"None of your episodes have status":[null,"None of your episodes have status"],"Shows containing":[null,"Shows containing"],"episodes":[null,"episodes"],"Set checked shows/episodes to":[null,"Set checked shows/episodes to"],"Go":[null,"Go"],"Select all":[null,"Select all"],"Clear all":[null,"Clear all"],"Release":[null,"Release"],"Backlog Search":[null,"Backlog Search"],"Not in progress":[null,"Not in progress"],"In Progress":[null,"In Progress"],"Daily Search":[null,"Daily Search"],"Find Propers Search":[null,"Find Propers Search"],"Propers search disabled":[null,"Propers search disabled"],"Subtitle Search":[null,"Subtitle Search"],"Subtitle search disabled":[null,"Subtitle search disabled"],"Search Queue":[null,"Search Queue"],"pending items":[null,"pending items"],"Daily":[null,"Daily"],"Manual":[null,"Manual"],"Changing any settings marked with (<span class=\"separator\">*</span>) will force a refresh of the selected shows.":[null,"Changing any settings marked with (<span class=\"separator\">*</span>) will force a refresh of the selected shows."],"Selected Shows":[null,"Selected Shows"],"Root Directories":[null,"Root Directories"],"Current":[null,"Current"],"Keep":[null,"Keep"],"Custom":[null,"Custom"],"Group episodes by season folder (set to \"No\" to store in a single folder).":[null,"Group episodes by series folder (set to \"No\" to store in a single folder)."],"Pause these shows (SickRage will not download episodes).":[null,"Pause these shows (SickRage will not download episodes)."],"This will set the status for future episodes.":[null,"This will set the status for future episodes."],"Search by scene numbering (set to \"No\" to search by indexer numbering).":[null,"Search by scene numbering (set to \"No\" to search by indexer numbering)."],"Set if these shows are Anime and episodes are released as Show.265 rather than Show.S02E03":[null,"Set if these shows are Anime and episodes are released as Show.265 rather than Show.S02E03"],"Set if these shows are sporting or MMA events released as Show.03.02.2010 rather than Show.S02E03.":[null,"Set if these shows are sporting or MMA events released as Show.03.02.2010 rather than Show.S02E03."],"In case of an air date conflict between regular and special episodes, the later will be ignored.":[null,"In case of an air date conflict between regular and special episodes, the latter will be ignored."],"Set if these shows are released as Show.03.02.2010 rather than Show.S02E03.":[null,"Set if these shows are released as Show.03.02.2010 rather than Show.S02E03."],"Search for subtitles.":[null,"Search for subtitles."],"All of your episodes have {subsLanguage} subtitles.":[null,"All of your episodes have {subsLanguage} subtitles."],"Manage episodes without":[null,"Manage episodes without"],"Episodes without {subsLanguage} subtitles.":[null,"Episodes without {subsLanguage} subtitles."],"Episodes without {subtitleLanguage} (undefined) subtitles.":[null,"Episodes without {subtitleLanguage} (undefined) subtitles."],"Download missed subtitles for selected episodes":[null,"Download missed subtitles for selected episodes"],"Performing Restart":[null,"Performing Restart"],"Waiting for SickRage to shut down":[null,"Waiting for SickRage to shut down"],"Waiting for SickRage to start again":[null,"Waiting for SickRage to start again"],"Loading the default page":[null,"Loading the default page"],"Error: The restart has timed out, perhaps something prevented SickRage from starting again?":[null,"Error: The restart has timed out, perhaps something prevented SickRage from starting again?"],"Key":[null,"Key"],"Missed":[null,"Missed"],"Today":[null,"Today"],"Soon":[null,"Soon"],"Later":[null,"Later"],"Subscribe":[null,"Subscribe"],"Date":[null,"Date"],"View Paused":[null,"View Paused"],"Hidden":[null,"Hidden"],"Shown":[null,"Shown"],"Calendar":[null,"Calendar"],"List":[null,"List"],"Ends":[null,"Ends"],"Next Ep Name":[null,"Next Ep Name"],"Run time":[null,"Run time"],"Indexers":[null,"Indexers"],"No shows for this day":[null,"No shows for this day"],"Airs":[null,"Airs"],"Plot":[null,"Plot"],"Show Update":[null,"Show Update"],"Version Check":[null,"Version Check"],"Proper Finder":[null,"Proper Finder"],"Post Process":[null,"Post Process"],"Subtitles Finder":[null,"Subtitles Finder"],"Scheduler":[null,"Scheduler"],"Alive":[null,"Alive"],"Start Time":[null,"Start Time"],"Cycle Time":[null,"Cycle Time"],"Next Run":[null,"Next Run"],"Last Run":[null,"Last Run"],"Silent":[null,"Silent"],"True":[null,"True"],"N/A":[null,"N/A"],"Show id":[null,"Show id"],"Show name":[null,"Show name"],"Priority":[null,"Priority"],"Added":[null,"Added"],"Queue type":[null,"Queue type"],"LOW":[null,"LOW"],"NORMAL":[null,"NORMAL"],"HIGH":[null,"HIGH"],"Disk Space":[null,"Disk Space"],"Free space":[null,"Free space"],"TV Download Directory":[null,"TV Download Directory"],"Media Root Directories":[null,"Media Root Directories"],"Preview of the proposed name changes":[null,"Preview of the proposed name changes"],"All Seasons":[null,"All Series"],"select all":[null,"select all"],"Rename Selected":[null,"Rename Selected"],"Cancel Rename":[null,"Cancel Rename"],"Old Location":[null,"Old Location"],"New Location":[null,"New Location"],"Trakt API did not return any results, please check your config.":[null,"Trakt API did not return any results, please check your config."],"votes":[null,"votes"],"Remove Show":[null,"Remove Show"],"Level":[null,"Level"],"Filter":[null,"Filter"],"All non-absolute folder locations are relative to ":[null,"All non-absolute folder locations are relative to "],"Manual Post-Processing":[null,"Manual Post-Processing"],"Episode Status Management":[null,"Episode Status Management"],"Update PLEX":[null,"Update PLEX"],"Update KODI":[null,"Update KODI"],"Update Emby":[null,"Update Emby"],"Missed Subtitle Management":[null,"Missed Subtitle Management"],"Help & Info":[null,"Help & Info"],"Backup & Restore":[null,"Backup & Restore"],"Tools":[null,"Tools"],"Support SickRage":[null,"Support SickRage"],"View Errors":[null,"View Errors"],"View Warnings":[null,"View Warnings"],"View Log":[null,"View Log"],"Check For Updates":[null,"Check For Updates"],"Restart":[null,"Restart"],"Shutdown":[null,"Shutdown"],"Logout":[null,"Logout"],"Server Status":[null,"Server Status"],"View overview of snatched episodes":[null,"View overview of snatched episodes"],"Episodes Downloaded":[null,"Episodes Downloaded"],"Memory used":[null,"Memory used"],"Load time":[null,"Load time"],"Branch":[null,"Branch"],"Now":[null,"Now"]}}}} \ No newline at end of file +{"messages":{"domain":"messages","locale_data":{"messages":{"100":[null,"100"],"250":[null,"250"],"500":[null,"500"],"":{"domain":"messages","plural_forms":"nplurals=2; plural=(n != 1);","lang":"en_GB"},"Drama":[null,"Drama"],"Mystery":[null,"Mystery"],"Science-Fiction":[null,"Science-Fiction"],"Crime":[null,"Crime"],"Action":[null,"Action"],"Comedy":[null,"Comedy"],"Thriller":[null,"Thriller"],"Animation":[null,"Animation"],"Family":[null,"Family"],"Fantasy":[null,"Fantasy"],"Adventure":[null,"Adventure"],"Horror":[null,"Horror"],"Film-Noir":[null,"Film-Noir"],"Sci-Fi":[null,"Sci-Fi"],"Romance":[null,"Romance"],"Sport":[null,"Sport"],"War":[null,"War"],"Biography":[null,"Biography"],"History":[null,"History"],"Music":[null,"Music"],"Western":[null,"Western"],"News":[null,"News"],"Sitcom":[null,"Sitcom"],"Reality-TV":[null,"Reality-TV"],"Documentary":[null,"Documentary"],"Game-Show":[null,"Game-Show"],"Musical":[null,"Musical"],"Talk-Show":[null,"Talk-Show"],"Started Download":[null,"Started Download"],"Download Finished":[null,"Download Finished"],"Subtitle Download Finished":[null,"Subtitle Download Finished"],"SickRage Updated":[null,"SickRage Updated"],"SickRage Updated To Commit#: ":[null,"SickRage Updated to Commit#: "],"SickRage new login":[null,"SickRage new login"],"New login from IP: {0}. http://geomaplookup.net/?ip={0}":[null,"New login from IP: {0}. http://geomaplookup.net/?ip={0}"],"Repeat":[null,"Repeat"],"Repeat (Separated)":[null,"Repeat (Separated)"],"Extend":[null,"Extend"],"Extend (Limited)":[null,"Extend (Limited)"],"Extend (Limited, E-prefixed)":[null,"Extend (Limited, E-prefixed)"],"Downloaded":[null,"Downloaded"],"Snatched":[null,"Snatched"],"Snatched (Proper)":[null,"Snatched (Proper)"],"Failed":[null,"Failed"],"Snatched (Best)":[null,"Snatched (Best)"],"Archived":[null,"Archived"],"Unknown":[null,"Unknown"],"Unaired":[null,"Unaired"],"Skipped":[null,"Skipped"],"Wanted":[null,"Wanted"],"Ignored":[null,"Ignored"],"Subtitled":[null,"Subtitled"],"For best results please set the Download Station alias as":[null,"For best results please set the Download Station alias as"],"You can check this setting in the Synology DSM":[null,"You can check this setting in the Synology DSM"],"Control Panel":[null,"Control Panel"],"Application Portal":[null,"Application Portal"],"Make sure you allow DSM to be embedded with iFrames too in":[null,"Make sure you allow DSM to be embedded with iFrames too in"],"DSM Settings":[null,"DSM Settings"],"Security":[null,"Security"],"<No Filter>":[null,"<No Filter>"],"Daily Searcher":[null,"Daily Searcher"],"Backlog":[null,"Backlog"],"Show Updater":[null,"Show Updater"],"Check Version":[null,"Check Version"],"Show Queue":[null,"Show Queue"],"Search Queue (All)":[null,"Search Queue (All)"],"Search Queue (Daily Searcher)":[null,"Search Queue (Daily Searcher)"],"Search Queue (Backlog)":[null,"Search Queue (Backlog)"],"Search Queue (Manual)":[null,"Search Queue (Manual)"],"Search Queue (Retry/Failed)":[null,"Search Queue (Retry/Failed)"],"Search Queue (RSS)":[null,"Search Queue (RSS)"],"Find Propers":[null,"Find Propers"],"Postprocessor":[null,"Postprocessor"],"Find Subtitles":[null,"Find Subtitles"],"Trakt Checker":[null,"Trakt Checker"],"Event":[null,"Event"],"Error":[null,"Error"],"Tornado":[null,"Tornado"],"Thread":[null,"Thread"],"Main":[null,"Main"],"Loading":[null,"Loading"],"New update found for SickRage, starting auto-updater":[null,"New update found for SickRage, starting auto-updater"],"Update was successful":[null,"Update was successful"],"Update failed!":[null,"Update failed!"],"Backup":[null,"Backup"],"Config backup in progress...":[null,"Config backup in progress..."],"Config backup successful, updating...":[null,"Config backup successful, updating..."],"Config backup failed, aborting update":[null,"Config backup failed, aborting update"],"No update needed":[null,"No update needed"],"Mako Error":[null,"Mako Error"],"Oops":[null,"Oops"],"Wrong API key used":[null,"Wrong API key used"],"Login":[null,"Login"],"API Key not generated":[null,"API Key not generated"],"API Builder":[null,"API Builder"],"Schedule":[null,"Schedule"],"Test 1":[null,"Test 1"],"This is test number 1":[null,"This is test number 1"],"Test 2":[null,"Test 2"],"This is test number 2":[null,"This is test number 2"],"You're using the {branch} branch. Please use 'master' unless specifically asked":[null,"You're using the {branch} branch. Please use 'master' unless specifically asked"],"Invalid show parameters":[null,"Invalid show parameters"],"Invalid parameters":[null,"Invalid parameters"],"Episode couldn't be retrieved":[null,"Episode couldn't be retrieved"],"Home":[null,"Home"],"Show List":[null,"Show List"],"Error: Unsupported Request. Send jsonp request with 'callback' variable in the query string.":[null,"Error: Unsupported Request. Send jsonp request with 'callback' variable in the query string."],"Success. Connected and authenticated":[null,"Success. Connected and authenticated"],"Authentication failed. SABnzbd expects":[null,"Authentication failed. SABnzbd expects"],"as authentication method":[null,"as authentication method"],"Unable to connect to host":[null,"Unable to connect to host"],"SMS sent successfully":[null,"SMS sent successfully"],"Problem sending SMS: {message}":[null,"Problem sending SMS: {message}"],"Telegram notification succeeded. Check your Telegram clients to make sure it worked":[null,"Telegram notification succeeded. Check your Telegram clients to make sure it worked"],"Error sending Telegram notification: {message}":[null,"Error sending Telegram notification: {message}"],"join notification succeeded. Check your join clients to make sure it worked":[null,"join notification succeeded. Check your join clients to make sure it worked"],"Error sending join notification: {message}":[null,"Error sending join notification: {message}"]," with password":[null," with password"],"Registered and Tested growl successfully {growl_host}":[null,"Registered and Tested growl successfully {growl_host}"],"Registration and Testing of growl failed {growl_host}":[null,"Registration and Testing of growl failed {growl_host}"],"Test prowl notice sent successfully":[null,"Test prowl notice sent successfully"],"Test prowl notice failed":[null,"Test prowl notice failed"],"Boxcar2 notification succeeded. Check your Boxcar2 clients to make sure it worked":[null,"Boxcar2 notification succeeded. Check your Boxcar2 clients to make sure it worked"],"Error sending Boxcar2 notification":[null,"Error sending Boxcar2 notification"],"Pushover notification succeeded. Check your Pushover clients to make sure it worked":[null,"Pushover notification succeeded. Check your Pushover clients to make sure it worked"],"Error sending Pushover notification":[null,"Error sending Pushover notification"],"Key verification successful":[null,"Key verification successful"],"Unable to verify key":[null,"Unable to verify key"],"Tweet successful, check your twitter to make sure it worked":[null,"Tweet successful, check your twitter to make sure it worked"],"Error sending tweet":[null,"Error sending tweet"],"Please enter a valid account sid":[null,"Please enter a valid account sid"],"Please enter a valid auth token":[null,"Please enter a valid auth token"],"Please enter a valid phone sid":[null,"Please enter a valid phone sid"],"Please format the phone number as \"+1-###-###-####\"":[null,"Please format the phone number as \"+1-###-###-####\""],"Authorization successful and number ownership verified":[null,"Authorisation successful and number ownership verified"],"Error sending sms":[null,"Error sending sms"],"Slack message successful":[null,"Slack message successful"],"Slack message failed":[null,"Slack message failed"],"Discord message successful":[null,"Discord message successful"],"Discord message failed":[null,"Discord message failed"],"Test KODI notice sent successfully to {kodi_host}":[null,"Test KODI notice sent successfully to {kodi_host}"],"Test KODI notice failed to {kodi_host}":[null,"Test KODI notice failed to {kodi_host}"],"Successful test notice sent to Plex Home Theater ... {plex_clients}":[null,"Successful test notice sent to Plex Home Theater ... {plex_clients}"],"Test failed for Plex Home Theater ... {plex_clients}":[null,"Test failed for Plex Home Theater ... {plex_clients}"],"Tested Plex Home Theater(s)":[null,"Tested Plex Home Theater(s)"],"Successful test of Plex Media Server(s) ... {plex_servers}":[null,"Successful test of Plex Media Server(s) ... {plex_servers}"],"Test failed, No Plex Media Server host specified":[null,"Test failed, No Plex Media Server host specified"],"Test failed for Plex Media Server(s) ... {plex_servers}":[null,"Test failed for Plex Media Server(s) ... {plex_servers}"],"Tested Plex Media Server host(s)":[null,"Tested Plex Media Server host(s)"],"Tried sending desktop notification via libnotify":[null,"Tried sending desktop notification via libnotify"],"Test notice sent successfully to {emby_host}":[null,"Test notice sent successfully to {emby_host}"],"Test notice failed to {emby_host}":[null,"Test notice failed to {emby_host}"],"Successfully started the scan update":[null,"Successfully started the scan update"],"Test failed to start the scan update":[null,"Test failed to start the scan update"],"Test notice sent successfully to {nmj2_host}":[null,"Test notice sent successfully to {nmj2_host}"],"Test notice failed to {nmj2_host}":[null,"Test notice failed to {nmj2_host}"],"Trakt Authorized":[null,"Trakt Authorised"],"Trakt Not Authorized!":[null,"Trakt Not Authorised!"],"Test email sent successfully! Check inbox.":[null,"Test email sent successfully! Check inbox."],"ERROR: {last_error}":[null,"ERROR: {last_error}"],"Test NMA notice sent successfully":[null,"Test NMA notice sent successfully"],"Test NMA notice failed":[null,"Test NMA notice failed"],"Pushalot notification succeeded. Check your Pushalot clients to make sure it worked":[null,"Pushalot notification succeeded. Check your Pushalot clients to make sure it worked"],"Error sending Pushalot notification":[null,"Error sending Pushalot notification"],"Pushbullet notification succeeded. Check your device to make sure it worked":[null,"Pushbullet notification succeeded. Check your device to make sure it worked"],"Error sending Pushbullet notification":[null,"Error sending Pushbullet notification"],"Status":[null,"Status"],"Restarting SickRage":[null,"Restarting SickRage"],"Update Failed":[null,"Update Failed"],"Update wasn't successful, not restarting. Check your log for more information.":[null,"Update wasn't successful, not restarting. Check your log for more information."],"Checking out branch":[null,"Checking out branch"],"Already on branch":[null,"Already on branch"],"Invalid show ID: {show}":[null,"Invalid show ID: {show}"],"Show not in show list":[null,"Show not in show list"],"Edit":[null,"Edit"],"This show is in the process of being downloaded - the info below is incomplete.":[null,"This show is in the process of being downloaded - the info below is incomplete."],"The information on this page is in the process of being updated.":[null,"The information on this page is in the process of being updated."],"The episodes below are currently being refreshed from disk":[null,"The episodes below are currently being refreshed from disk"],"Currently downloading subtitles for this show":[null,"Currently downloading subtitles for this show"],"This show is queued to be refreshed.":[null,"This show is queued to be refreshed."],"This show is queued and awaiting an update.":[null,"This show is queued and awaiting an update."],"This show is queued and awaiting subtitles download.":[null,"This show is queued and awaiting subtitles download."],"Resume":[null,"Resume"],"Pause":[null,"Pause"],"Remove":[null,"Remove"],"Re-scan files":[null,"Re-scan files"],"Force Full Update":[null,"Force Full Update"],"Update show in KODI":[null,"Update show in KODI"],"Update show in Emby":[null,"Update show in Emby"],"Hide specials":[null,"Hide specials"],"Show specials":[null,"Show specials"],"Preview Rename":[null,"Preview Rename"],"Download Subtitles":[null,"Download Subtitles"],"No scene exceptions":[null,"No scene exceptions"],"Invalid show ID":[null,"Invalid show ID"],"Unable to find the specified show":[null,"Unable to find the specified show"],"Unable to retreive Fansub Groups from AniDB.":[null,"Unable to retrieve Fansub Groups from AniDB."],"Edit Show":[null,"Edit Show"],"Unable to refresh this show: {error}":[null,"Unable to refresh this show: {error}"],"New location <tt>{location}</tt> does not exist":[null,"New location <tt>{location}</tt> does not exist"],"Unable to update show: {error}":[null,"Unable to update show: {error}"],"Unable to force an update on scene exceptions of the show.":[null,"Unable to force an update on scene exceptions of the show."],"Unable to force an update on scene numbering of the show.":[null,"Unable to force an update on scene numbering of the show."],"{num_errors:d} error{plural} while saving changes:":[null,"{num_errors:d} error{plural} while saving changes:"],"{show_name} has been {paused_resumed}":[null,"{show_name} has been {paused_resumed}"],"resumed":[null,"resumed"],"paused":[null,"paused"],"{show_name} has been {deleted_trashed} {was_deleted}":[null,"{show_name} has been {deleted_trashed} {was_deleted}"],"deleted":[null,"deleted"],"trashed":[null,"trashed"],"(media untouched)":[null,"(media untouched)"],"(with all related media)":[null,"(with all related media)"],"Unable to refresh this show.":[null,"Unable to refresh this show."],"Unable to update this show.":[null,"Unable to update this show."],"Library update command sent to KODI host(s)): {kodi_hosts}":[null,"Library update command sent to KODI host(s)): {kodi_hosts}"],"Unable to contact one or more KODI host(s)): {kodi_hosts}":[null,"Unable to contact one or more KODI host(s)): {kodi_hosts}"],"Library update command sent to Plex Media Server host: {plex_server}":[null,"Library update command sent to Plex Media Server host: {plex_server}"],"Unable to contact Plex Media Server host: {plex_server}":[null,"Unable to contact Plex Media Server host: {plex_server}"],"Library update command sent to Emby host: {emby_host}":[null,"Library update command sent to Emby host: {emby_host}"],"Unable to contact Emby host: {emby_host}":[null,"Unable to contact Emby host: {emby_host}"],"You must specify a show and at least one episode":[null,"You must specify a show and at least one episode"],"Invalid status":[null,"Invalid status"],"Backlog was automatically started for the following seasons of <b>{show_name}</b>":[null,"Backlog was automatically started for the following series of <b>{show_name}</b>"],"Season":[null,"Series"],"Backlog started":[null,"Backlog started"],"Retrying Search was automatically started for the following season of <b>{show_name}</b>":[null,"Retrying Search was automatically started for the following series of <b>{show_name}</b>"],"Retry Search started":[null,"Retry Search started"],"You must specify a show":[null,"You must specify a show"],"Can't rename episodes when the show dir is missing.":[null,"Can't rename episodes when the show dir is missing."],"New subtitles downloaded: {new_subtitle_languages}":[null,"New subtitles downloaded: {new_subtitle_languages}"],"No subtitles downloaded":[null,"No subtitles downloaded"],"IRC":[null,"IRC"],"Could not load news from the repo. [Click here for news.md])({news_url})":[null,"Could not load news from the repo. [Click here for news.md]) ({news_url})"],"The was a problem connecting to github, please refresh and try again":[null,"The was a problem connecting to github, please refresh and try again"],"Could not load changes from the repo. [Click here for CHANGES.md]({changes_url})":[null,"Could not load changes from the repo. [Click here for CHANGES.md] ({changes_url})"],"Changelog":[null,"Changelog"],"Post Processing":[null,"Post Processing"],"Add Shows":[null,"Add Shows"],"No folders selected.":[null,"No folders selected."],"New Show":[null,"New Show"],"Trending Shows":[null,"Trending Shows"],"Popular Shows":[null,"Popular Shows"],"Most Anticipated Shows":[null,"Most Anticipated Shows"],"Most Collected Shows":[null,"Most Collected Shows"],"Most Watched Shows":[null,"Most Watched Shows"],"Most Played Shows":[null,"Most Played Shows"],"Recommended Shows":[null,"Recommended Shows"],"New Shows":[null,"New Shows"],"Season Premieres":[null,"Series Premieres"],"Existing Show":[null,"Existing Show"],"No root directories setup, please go back and add one.":[null,"No root directories setup, please go back and add one."],"Show added":[null,"Show added"],"Adding the specified show {show_name}":[null,"Adding the specified show {show_name}"],"Missing params, no Indexer ID or folder: {show_to_add} and {root_dir}/{show_path}":[null,"Missing params, no Indexer ID or folder: {show_to_add} and {root_dir}/{show_path}"],"Unknown error. Unable to add show due to problem with show selection.":[null,"Unknown error. Unable to add show due to problem with show selection."],"Unable to add show":[null,"Unable to add show"],"Folder {show_dir} exists already":[null,"Folder {show_dir} exists already"],"Unable to create the folder {show_dir}, can't add the show":[null,"Unable to create the folder {show_dir}, can't add the show"],"Adding the specified show into {show_dir}":[null,"Adding the specified show into {show_dir}"],"Shows Added":[null,"Shows Added"],"Automatically added {num_shows} from their existing metadata files":[null,"Automatically added {num_shows} from their existing metadata files"],"Mass Update":[null,"Mass Update"],"Episode Overview":[null,"Episode Overview"],"Missing Subtitles":[null,"Missing Subtitles"],"Backlog Overview":[null,"Backlog Overview"],"Mass Edit":[null,"Mass Edit"],"Unable to update show: {excption_format}":[null,"Unable to update show: {excption_format}"],"Unable to refresh show {show_name}: {excption_format}":[null,"Unable to refresh show {show_name}: {excption_format}"],"Errors encountered":[null,"Errors encountered"],"Updates":[null,"Updates"],"Refreshes":[null,"Refreshes"],"Renames":[null,"Renames"],"Subtitles":[null,"Subtitles"],"The following actions were queued":[null,"The following actions were queued"],"Failed Downloads":[null,"Failed Downloads"],"Manage Searches":[null,"Manage Searches"],"Backlog search started":[null,"Backlog search started"],"Daily search started":[null,"Daily search started"],"Find propers search started":[null,"Find propers search started"],"Subtitle search started":[null,"Subtitle search started"],"Remove Selected":[null,"Remove Selected"],"Clear History":[null,"Clear History"],"Trim History":[null,"Trim History"],"Selected history entries removed":[null,"Selected history entries removed"],"History cleared":[null,"History cleared"],"Removed history entries older than 30 days":[null,"Removed history entries older than 30 days"],"General":[null,"General"],"Backup/Restore":[null,"Backup/Restore"],"Search Settings":[null,"Search Settings"],"Search Providers":[null,"Search Providers"],"Subtitles Settings":[null,"Subtitles Settings"],"Notifications":[null,"Notifications"],"Anime":[null,"Anime"],"SickRage Configuration":[null,"SickRage Configuration"],"Config - Shares":[null,""],"Windows Shares Configuration":[null,""],"Saved Shares":[null,""],"Your Windows share settings have been saved":[null,""],"Config - General":[null,"Config - General"],"General Configuration":[null,"General Configuration"],"Saved Defaults":[null,"Saved Defaults"],"Your \"add show\" defaults have been set to your current selections.":[null,"Your \"add show\" defaults have been set to your current selections."],"Unable to create directory {directory}, log directory not changed.":[null,"Unable to create directory {directory}, log directory not changed."],"Unable to create directory {directory}, https cert directory not changed.":[null,"Unable to create directory {directory}, https cert directory not changed."],"Unable to create directory {directory}, https key directory not changed.":[null,"Unable to create directory {directory}, https key directory not changed."],"Error(s) Saving Configuration":[null,"Error(s) Saving Configuration"],"Configuration Saved":[null,"Configuration Saved"],"Config - Backup/Restore":[null,"Config - Backup/Restore"],"Config - Episode Search":[null,"Config - Episode Search"],"Config - Post Processing":[null,"Config - Post Processing"],"Unpacking Not Supported, disabling unpack setting":[null,"Unpacking Not Supported, disabling unpack setting"],"You tried saving an invalid normal naming config, not saving your naming settings":[null,"You tried saving an invalid normal naming config, not saving your naming settings"],"You tried saving an invalid anime naming config, not saving your naming settings":[null,"You tried saving an invalid anime naming config, not saving your naming settings"],"Config - Providers":[null,"Config - Providers"],"No Provider Name specified":[null,"No Provider Name specified"],"No Provider Url specified":[null,"No Provider URL specified"],"No Provider Api key specified":[null,"No Provider API key specified"],"Config - Notifications":[null,"Config - Notifications"],"Config - Subtitles":[null,"Config - Subtitles"],"Config - Anime":[null,"Config - Anime"],"Clear Errors":[null,"Clear Errors"],"Clear Warnings":[null,"Clear Warnings"],"Submit Errors":[null,"Submit Errors"],"Logs & Errors":[null,"Logs & Errors"],"Log File":[null,"Log File"],"Logs":[null,"Logs"],"This is a test notification from SickRage":[null,"This is a test notification from SickRage"],"Choose Directory":[null,""],"Select log file folder location":[null,""],"Select CSS file":[null,""],"Select backup folder to save to":[null,""],"Select backup files to restore":[null,""],"Please fill out the necessary fields above.":[null,""],"<b>Step 1:</b> Confirm Authorization":[null,""],"Check blacklist name; the value needs to be a trakt slug":[null,""],"You must provide a recipient email address!":[null,""],"You didn't supply a Pushbullet api key":[null,""],"Don't forget to save your new pushbullet settings.":[null,""],"Select TV Download Directory":[null,""],"Select Unpack Directory":[null,""],"This pattern is invalid.":[null,"This pattern is invalid."],"This pattern would be invalid without the folders, using it will force \"Season Folders\" on for all shows.":[null,"This pattern would be invalid without the folders, using it will force \"Season Folders\" on for all shows."],"This pattern is valid.":[null,"This pattern is valid."],"Select .nzb black hole/watch location":[null,""],"Select .torrent black hole/watch location":[null,""],"Select .torrent download location":[null,""],"Minimum seeding time is":[null,""],"URL to your uTorrent client (e.g. http://localhost:8000)":[null,""],"Stop seeding when inactive for":[null,""],"URL to your Transmission client (e.g. http://localhost:9091)":[null,""],"URL to your Deluge client (e.g. http://localhost:8112)":[null,""],"IP or Hostname of your Deluge Daemon (e.g. scgi://localhost:58846)":[null,""],"URL to your Synology DS client (e.g. http://localhost:5000)":[null,""],"URL to your rTorrent client (e.g. scgi://localhost:5000 <br> or https://localhost/rutorrent/plugins/httprpc/action.php)":[null,""],"URL to your qBittorrent client (e.g. http://localhost:8080)":[null,""],"URL to your MLDonkey (e.g. http://localhost:4080)":[null,""],"URL to your putio client (e.g. http://localhost:8080)":[null,""],"<a herf=\"https://app.put.io/oauth/apps/new\" target=\"_blank\"> Create a new OAuth app for put.io</a>":[null,""],"Put.io Parent Folder":[null,""],"Put.io OAuth Token":[null,""],"Show Episodes":[null,"Show Episodes"],"Hide Episodes":[null,"Hide Episodes"],"Select Show Location":[null,""],"Select Unprocessed Episode Folder":[null,""],"DELETED":[null,""],"Resume updating the log on this page.":[null,"Resume updating the log on this page."],"Pause updating the log on this page.":[null,"Pause updating the log on this page."],"searching {searchingFor}...":[null,""],"search timed out, try again or try another indexer":[null,""],"loading folders...":[null,""],"Loading...":[null,"Loading..."],"You have reached this page by accident, please check the url.":[null,"You have reached this page by accident, please check the url."],"A mako error has occured.<br>\n If this happened during an update a simple page refresh may be the solution.<br>\n Mako errors that happen during updates may be a one time error if there were significant ui changes.":[null,"A mako error has occured. <br>\n If this happened during an update a simple page refresh may be the solution. <br>\n Mako errors that happen during updates may be a one time error if there were significant ui changes."],"Show/Hide Error":[null,"Show/Hide Error"],"Add New Show":[null,"Add New Show"],"For shows that you haven't downloaded yet, this option finds a show on theTVDB.com, creates a directory for it's episodes, and adds it to SickRage.":[null,"For shows that you haven't downloaded yet, this option finds a show on theTVDB.com, creates a directory for its episodes, and adds it to SickRage."],"Add From Trakt Lists":[null,"Add From Trakt Lists"],"For shows that you haven't downloaded yet, this option lets you choose from a show from one of the Trakt lists to add to SickRage.":[null,"For shows that you haven't downloaded yet, this option lets you choose a show from one of the Trakt lists to add to SickRage."],"Add From IMDB's Popular Shows":[null,"Add From IMDB's Popular Shows"],"View IMDB's list of the most popular shows. This feature uses IMDB's MOVIEMeter algorithm to identify popular TV Series.":[null,"View IMDB's list of the most popular shows. This feature uses IMDB's MOVIEMeter algorithm to identify popular TV Series."],"Add Existing Shows":[null,"Add Existing Shows"],"Use this option to add shows that already have a folder created on your hard drive. SickRage will scan your existing metadata/episodes and add the show accordingly.":[null,"Use this option to add shows that already have a folder created on your hard drive. SickRage will scan your existing metadata/episodes and add the show accordingly."],"Add Existing Show":[null,"Add Existing Show"],"Manage Directories":[null,"Manage Directories"],"Customize Options":[null,"Customise Options"],"SickRage can add existing shows, using the current options, by using locally stored NFO/XML metadata to eliminate user interaction. If you would rather have SickRage prompt you to customize each show, then use the checkbox below.":[null,"SickRage can add existing shows, using the current options, by using locally stored NFO/XML metadata to eliminate user interaction. If you would rather have SickRage prompt you to customise each show, then use the checkbox below."],"Prompt me to set settings for each show":[null,"Prompt me to set settings for each show"],"Displaying folders within these directories which aren't already added to SickRage":[null,"Displaying folders within these directories which aren't already added to SickRage"],"Submit":[null,"Submit"],"Find a show on theTVDB":[null,"Find a show on theTVDB"],"Show retrieved from existing metadata":[null,"Show retrieved from existing metadata"],"All Indexers":[null,"All Indexers"],"Search":[null,"Search"],"This will only affect the language of the retrieved metadata file contents and episode filenames.":[null,"This will only affect the language of the retrieved metadata file contents and episode filenames."],"This <b>DOES NOT</b> allow SickRage to download non-english TV episodes!":[null,"This <b>DOES NOT</b> allow SickRage to download non-english TV episodes!"],"Pick the parent folder":[null,"Pick the parent folder"],"Pre-chosen Destination Folder":[null,"Pre-chosen Destination Folder"],"Customize options":[null,"Customise options"],"Add Show":[null,"Add Show"],"Skip Show":[null,"Skip Show"],"Sort By":[null,"Sort By"],"Name":[null,"Name"],"Original":[null,"Original"],"Votes":[null,"Votes"],"Rating":[null,"Rating"],"Rating > Votes":[null,"Rating > Votes"],"Sort Order":[null,"Sort Order"],"Asc":[null,"Asc"],"Desc":[null,"Desc"],"Fetching of IMDB Data failed. Are you online?":[null,"Fetching of IMDB Data failed. Are you online?"],"Exception":[null,"Exception"],"Select Trakt List":[null,"Select Trakt List"],"Most Anticipated":[null,"Most Anticipated"],"Trending":[null,"Trending"],"Popular":[null,"Popular"],"Most Watched":[null,"Most Watched"],"Most Played":[null,"Most Played"],"Most Collected":[null,"Most Collected"],"Recommended":[null,"Recommended"],"Toggle navigation":[null,"Toggle navigation"],"Profile":[null,"Profile"],"JSONP":[null,"JSONP"],"Back to SickRage":[null,"Back to SickRage"],"Parameters":[null,"Parameters"],"Required":[null,"Required"],"Description":[null,"Description"],"Type":[null,"Type"],"Default value":[null,"Default value"],"Allowed values":[null,"Allowed values"],"Playground":[null,"Playground"],"Clear":[null,"Clear"],"Yes":[null,"Yes"],"No":[null,"No"],"season":[null,"series"],"episode":[null,"episode"],"Python Version":[null,"Python Version"],"SSL Version":[null,"SSL Version"],"OS":[null,"OS"],"Locale":[null,"Locale"],"User":[null,"User"],"Program Folder":[null,"Program Folder"],"Config File":[null,"Config File"],"Database File":[null,"Database File"],"Cache Folder":[null,"Cache Folder"],"Log Folder":[null,"Log Folder"],"Arguments":[null,"Arguments"],"Web Root":[null,"Web Root"],"Website":[null,"Website"],"Wiki":[null,"Wiki"],"Source":[null,"Source"],"IRC Chat":[null,"IRC Chat"],"AnimeDB Settings":[null,"AnimeDB Settings"],"Look & Feel":[null,"Look & Feel"],"AniDB is non-profit database of anime information that is freely open to the public":[null,"AniDB is non-profit database of anime information that is freely open to the public"],"Enable":[null,"Enable"],"should SickRage use data from AniDB?":[null,"should SickRage use data from AniDB?"],"AniDB Username":[null,"AniDB Username"],"username of your AniDB account":[null,"Username of your AniDB account"],"AniDB Password":[null,"AniDB Password"],"password of your AniDB account":[null,"Password of your AniDB account"],"AniDB MyList":[null,"AniDB MyList"],"do you want to add the PostProcessed episodes to the MyList?":[null,"Do you want to add the PostProcessed Episodes to the MyList?"],"Look and Feel":[null,"Look and Feel"],"How should the anime functions show and behave.":[null,"How should the anime functions show and behave."],"Split show lists":[null,"Split show lists"],"separate anime and normal shows in groups":[null,"separate anime and normal shows in groups"],"Split in tabs":[null,"Split in tabs"],"use tabs for when splitting show lists":[null,"use tabs for when splitting show lists"],"Restore":[null,"Restore"],"Backup your main database file and config.":[null,"Backup your main database file and config."],"Select the folder you wish to save your backup file to":[null,"Select the folder you wish to save your backup file to"],"Restore your main database file and config.":[null,"Restore your main database file and config."],"Select the backup file you wish to restore":[null,"Select the backup file you wish to restore"],"Misc":[null,"Misc"],"Interface":[null,"Interface"],"Advanced Settings":[null,"Advanced Settings"],"Startup options. Indexer options. Log and show file locations.":[null,"Startup options. Indexer options. Log and show file locations."],"Some options may require a manual restart to take effect.":[null,"Some options may require a manual restart to take effect."],"Default Indexer Language":[null,"Default Indexer Language"],"for adding shows and metadata providers":[null,"for adding shows and metadata providers"],"Launch browser":[null,"Launch browser"],"open the SickRage home page on startup":[null,"open the SickRage home page on startup"],"Initial page":[null,"Initial page"],"Shows":[null,"Shows"],"when launching SickRage interface":[null,"when launching SickRage interface"],"Choose hour to update shows":[null,"Choose hour to update shows"],"with information such as next air dates, show ended, etc. Use 15 for 3pm, 4 for 4am etc.":[null,"with information such as next air dates, show ended, etc. Use 15 for 3pm, 4 for 4am etc."],"note":[null,"note"],"minutes are randomized each time SickRage is started":[null,"minutes are randomised each time SickRage is started"],"Send to trash for actions":[null,"Send to trash for actions"],"when using show \"Remove\" and delete files":[null,"when using show \"Remove\" and delete files"],"on scheduled deletes of the oldest log files":[null,"on scheduled deletes of the oldest log files"],"selected actions use trash (recycle bin) instead of the default permanent delete":[null,"selected actions use trash (recycle bin) instead of the default permanent delete"],"Log file folder location":[null,"Log file folder location"],"Number of Log files saved":[null,"Number of Log files saved"],"number of log files saved when rotating logs (default: 5) (REQUIRES RESTART)":[null,"number of log files saved when rotating logs (default: 5) (REQUIRES RESTART)"],"Size of Log files saved":[null,"Size of Log files saved"],"maximum size in MB of the log file (default: 1MB) (REQUIRES RESTART)":[null,"maximum size in MB of the log file (default: 1MB) (REQUIRES RESTART)"],"Use initial indexer set to":[null,"Use initial indexer set to"],"as the default selection when adding new shows":[null,"as the default selection when adding new shows"],"Timeout show indexer at":[null,"Timeout show indexer at"],"seconds of inactivity when finding new shows (default:20)":[null,"seconds of inactivity when finding new shows (default:20)"],"Show root directories":[null,"Show root directories"],"where the files of shows are located":[null,"where the files of shows are located"],"Save Changes":[null,"Save Changes"],"Options for software updates.":[null,"Options for software updates."],"Check software updates":[null,"Check software updates"],"and display notifications when updates are available. Checks are run on startup and at the frequency set below*":[null,"and display notifications when updates are available. Checks are run on startup and at the frequency set below*"],"Automatically update":[null,"Automatically update"],"fetch and install software updates. Updates are run on startup and in the background at the frequency set below*":[null,"fetch and install software updates. Updates are run on startup and in the background at the frequency set below*"],"Check the server every*":[null,"Check the server every*"],"hours for software updates (default:1)":[null,"hours for software updates (default:1)"],"Notify on software update":[null,"Notify on software update"],"send a message to all enabled notifiers when SickRage has been updated":[null,"send a message to all enabled notifiers when SickRage has been updated"],"User Interface":[null,"User Interface"],"Options for visual appearance.":[null,"Options for visual appearance."],"Interface Language":[null,"Interface Language"],"System Language":[null,"System Language"],"for appearance to take effect, save then refresh your browser":[null,"for appearance to take effect, save then refresh your browser"],"Display theme":[null,"Display theme"],"Dark":[null,"Dark"],"Light":[null,"Light"],"Use a background image":[null,"Use a background image"],"use a custom image as background for SickRage":[null,"use a custom image as background for SickRage"],"Background Path":[null,"Background Path"],"Path to the background image":[null,"Path to the background image"],"Show fanart in the background":[null,"Show fanart in the background"],"on the show summary page":[null,"on the show summary page"],"Fanart transparency":[null,"Fanart transparency"],"transparency of the fanart in the background":[null,"transparency of the fanart in the background"],"Use a custom stylesheet file":[null,""],"use a custom .css file to style SickRage (for advanced users)":[null,""],"Stylesheet File Path":[null,""],"Path to the stylesheet (.css) file":[null,""],"Show all seasons":[null,"Show all series"],"Sort with \"The\", \"A\", \"An\"":[null,"Sort with \"The\", \"A\", \"An\""],"include articles (\"The\", \"A\", \"An\") when sorting show lists":[null,"include articles (\"The\", \"A\", \"An\") when sorting show lists"],"Missed episodes range":[null,"Missed episodes range"],"set the range in days of the missed episodes in the Schedule page":[null,"set the range in days of the missed episodes in the Schedule page"],"Display fuzzy dates":[null,"Display fuzzy dates"],"move absolute dates into tooltips and display e.g. \"Last Thu\", \"On Tue\"":[null,"move absolute dates into tooltips and display e.g. \"Last Thu\", \"On Tue\""],"Trim zero padding":[null,"Trim zero padding"],"remove the leading number \"0\" shown on hour of day, and date of month":[null,"remove the leading number \"0\" shown on hour of day, and date of month"],"Date style":[null,"Date style"],"Use System Default":[null,"Use System Default"],"Time style":[null,"Time style"],"seconds are only shown on the History page":[null,"seconds are only shown on the History page"],"Timezone":[null,"Timezone"],"Local":[null,"Local"],"Network":[null,"Network"],"display dates and times in either your timezone or the shows network timezone":[null,"display dates and times in either your timezone or the shows network timezone"],"use local timezone to start searching for episodes minutes after show ends (depends on your dailysearch frequency)":[null,"use local timezone to start searching for episodes minutes after show ends (depends on your dailysearch frequency)"],"Download url":[null,"Download url"],"URL where the shows can be downloaded.":[null,"URL where the shows can be downloaded."],"Web Interface":[null,"Web Interface"],"it is recommended that you enable a username and password to secure SickRage from being tampered with remotely.":[null,"it is recommended that you enable a username and password to secure SickRage from being tampered with remotely."],"these options require a manual restart to take effect.":[null,"these options require a manual restart to take effect."],"API key":[null,"API key"],"used to give 3rd party programs limited access to SickRage":[null,"used to give 3rd party programs limited access to SickRage"],"you can try all the features of the API":[null,"you can try all the features of the API"],"here":[null,"here"],"HTTP logs":[null,"HTTP logs"],"enable logs from the internal Tornado web server":[null,"enable logs from the internal Tornado web server"],"HTTP username":[null,"HTTP username"],"set blank for no login":[null,"set blank for no login"],"HTTP password":[null,"HTTP password"],"blank = no authentication":[null,"blank = no authentication"],"HTTP port":[null,"HTTP port"],"web port to browse and access SickRage (default:8081)":[null,"web port to browse and access SickRage (default:8081)"],"Notify on login":[null,"Notify on login"],"enable to be notified when a new login happens in webserver":[null,"enable to be notified when a new login happens in webserver"],"Listen on IPv6":[null,"Listen on IPv6"],"attempt binding to any available IPv6 address":[null,"attempt binding to any available IPv6 address"],"Enable HTTPS":[null,"Enable HTTPS"],"enable access to the web interface using a HTTPS address":[null,"enable access to the web interface using a HTTPS address"],"HTTPS certificate":[null,"HTTPS certificate"],"file name or path to HTTPS certificate":[null,"file name or path to HTTPS certificate"],"HTTPS key":[null,"HTTPS key"],"file name or path to HTTPS key":[null,"file name or path to HTTPS key"],"Reverse proxy headers":[null,"Reverse proxy headers"],"accept the following reverse proxy headers (advanced)...":[null,"accept the following reverse proxy headers (advanced)..."],"(X-Forwarded-For, X-Forwarded-Host, and X-Forwarded-Proto)":[null,"(X-Forwarded-For, X-Forwarded-Host, and X-Forwarded-Proto)"],"CPU throttling":[null,"CPU throttling"],"Normal (default). High is lower and Low is higher CPU use":[null,"Normal (default). High is lower and Low is higher CPU use"],"Anonymous redirect":[null,"Anonymous redirect"],"backlink protection via anonymizer service, must end in \"?\"":[null,"backlink protection via anonymizer service, must end in \"?\""],"Enable debug":[null,"Enable debug"],"enable debug logs":[null,"enable debug logs"],"Verify SSL Certs":[null,"Verify SSL Certs"],"verify SSL Certificates (Disable this for broken SSL installs (Like QNAP))":[null,"verify SSL Certificates (Disable this for broken SSL installs (Like QNAP))"],"No Restart":[null,"No Restart"],"only shutdown when restarting SR":[null,"only shutdown when restarting SR"],"only select this when you have external software restarting SR automatically when it stops (like FireDaemon)":[null,"only select this when you have external software restarting SR automatically when it stops (like FireDaemon)"],"Encrypt passwords":[null,"Encrypt passwords"],"in the <code>config.ini</code> file":[null,"in the <code>config.ini</code> file"],"warning":[null,"warning"],"passwords must only contain":[null,"passwords must only contain"],"ASCII characters":[null,"ASCII characters"],"Unprotected calendar":[null,"Unprotected calendar"],"allow subscribing to the calendar without user and password":[null,"allow subscribing to the calendar without user and password"],"some services like Google Calendar only work this way":[null,"some services like Google Calendar only work this way"],"Google Calendar Icons":[null,"Google Calendar Icons"],"show an icon next to exported calendar events in Google Calendar":[null,"show an icon next to exported calendar events in Google Calendar"],"Proxy host":[null,"Proxy host"],"blank to disable or proxy to use when connecting to providers":[null,"blank to disable or proxy to use when connecting to providers"],"also use global proxy setting for indexers (tvdb, xem, anidb, etc.)":[null,"also use global proxy setting for indexers (tvdb, xem, anidb, etc.)"],"Skip Remove Detection":[null,"Skip Remove Detection"],"skip detection of removed files":[null,"skip detection of removed files"],"if disabled the episode will be set to the default deleted status":[null,"if disabled the episode will be set to the default deleted status"],"Default deleted episode status":[null,"Default deleted episode status"],"define the status to be set for media file that has been deleted.":[null,"define the status to be set for media file that has been deleted."],"Archived option will keep previous downloaded quality":[null,"Archived option will keep previous downloaded quality"],"example: Downloaded (1080p WEB-DL) ==> Archived (1080p WEB-DL)":[null,"example: Downloaded (1080p WEB-DL) ==> Archived (1080p WEB-DL)"],"Options for github related features.":[null,"Options for github related features."],"Branch version":[null,"Branch version"],"error: No branches found.":[null,"error: No branches found."],"select branch to use (restart required)":[null,"select branch to use (restart required)"],"Authorization Type":[null,"Authorization Type"],"Username and password":[null,"Username and password"],"Personal access token":[null,"Personal access token"],"You must use a personal access token if you're using \"two-factor authentication\" on GitHub.":[null,"You must use a personal access token if you're using \"two-factor authentication\" on GitHub."],"GitHub username":[null,"GitHub username"],"*** (REQUIRED FOR SUBMITTING ISSUES) ***":[null,"*** (REQUIRED FOR SUBMITTING ISSUES) ***"],"GitHub password":[null,"GitHub password"],"GitHub personal access token":[null,"GitHub personal access token"],"Generate Token":[null,"Generate Token"],"Manage Tokens":[null,"Manage Tokens"],"GitHub remote for branch":[null,"GitHub remote for branch"],"access repo configured remotes (save then refresh browser)":[null,"access repo configured remotes (save then refresh browser)"],"default":[null,"default"],"origin":[null,"origin"],"Git executable path":[null,"Git executable path"],"only needed if OS is unable to locate git from env":[null,"only needed if OS is unable to locate git from env"],"Git reset":[null,"Git reset"],"removes untracked files and performs a hard reset on git branch automatically to help resolve update issues":[null,"removes untracked files and performs a hard reset on git branch automatically to help resolve update issues"],"Home Theater / NAS":[null,"Home Theatre / NAS"],"Devices":[null,"Devices"],"Social":[null,"Social"],"A free and open source cross-platform media center and home entertainment system software with a 10-foot user interface designed for the living-room TV.":[null,"A free and open source cross-platform media center and home entertainment system software with a 10-foot user interface designed for the living-room TV."],"send KODI commands?":[null,"send KODI commands?"],"Always on":[null,"Always on"],"log errors when unreachable?":[null,"log errors when unreachable?"],"Notify on snatch":[null,"Notify on snatch"],"send a notification when a download starts?":[null,"send a notification when a download starts?"],"Notify on download":[null,"Notify on download"],"send a notification when a download finishes?":[null,"send a notification when a download finishes?"],"Notify on subtitle download":[null,"Notify on subtitle download"],"send a notification when subtitles are downloaded?":[null,"send a notification when subtitles are downloaded?"],"Update library":[null,"Update library"],"update KODI library when a download finishes?":[null,"update KODI library when a download finishes?"],"Full library update":[null,"Full library update"],"perform a full library update if update per-show fails?":[null,"perform a full library update if update per-show fails?"],"Only update first host":[null,"Only update first host"],"only send library updates to the first active host?":[null,"only send library updates to the first active host?"],"KODI IP:Port":[null,"KODI IP:Port"],"host running KODI (eg. 192.168.1.100:8080)":[null,"host running KODI (eg. 192.168.1.100:8080)"],"(multiple host strings must be separated by commas)":[null,"(multiple host strings must be separated by commas)"],"Username":[null,"Username"],"username for your KODI server (blank for none)":[null,"username for your KODI server (blank for none)"],"Password":[null,"Password"],"password for your KODI server (blank for none)":[null,"password for your KODI server (blank for none)"],"Click below to test.":[null,"Click below to test."],"Experience your media on a visually stunning, easy to use interface on your Mac connected to your TV. Your media library has never looked this good!":[null,"Experience your media on a visually stunning, easy to use interface on your Mac connected to your TV. Your media library has never looked this good!"],"For sending notifications to Plex Home Theater (PHT) clients, use the KODI notifier with port <b>3005</b>.":[null,"For sending notifications to Plex Home Theater (PHT) clients, use the KODI notifier with port <b>3005</b>."],"send Plex Media Server library updates?":[null,"send Plex Media Server library updates?"],"Plex Media Server Auth Token":[null,"Plex Media Server Auth Token"],"auth token used by Plex":[null,"auth token used by Plex"],"Update Library":[null,"Update Library"],"update Plex Media Server library when a download finishes":[null,"update Plex Media Server library when a download finishes"],"Plex Media Server IP:Port":[null,"Plex Media Server IP:Port"],"one or more hosts running Plex Media Server<br/>(eg. 192.168.1.1:32400, 192.168.1.2:32400)":[null,"one or more hosts running Plex Media Server<br/>(eg. 192.168.1.1:32400, 192.168.1.2:32400)"],"HTTPS":[null,"HTTPS"],"use https for plex media server requests?":[null,"use https for plex media server requests?"],"Click below to test Plex Media Server(s)":[null,"Click below to test Plex Media Server(s)"],"Test Plex Media Server":[null,"Test Plex Media Server"],"Plex Home Theater":[null,"Plex Home Theater"],"send Plex Home Theater notifications?":[null,"send Plex Home Theater notifications?"],"Plex Home Theater IP:Port":[null,"Plex Home Theater IP:Port"],"one or more hosts running Plex Home Theater<br>(eg. 192.168.1.100:3000, 192.168.1.101:3000)":[null,"one or more hosts running Plex Home Theater<br>(eg. 192.168.1.100:3000, 192.168.1.101:3000)"],"Click below to test Plex Home Theater(s)":[null,"Click below to test Plex Home Theater(s)"],"Test Plex Home Theater":[null,"Test Plex Home Theater"],"some Plex Home Theaters <b class=\"boldest\">do not</b> support notifications e.g. Plexapp for Samsung TVs":[null,"some Plex Home Theaters <b class=\"boldest\">do not</b> support notifications e.g. Plexapp for Samsung TVs"],"Emby":[null,"Emby"],"A home media server built using other popular open source technologies.":[null,"A home media server built using other popular open source technologies."],"send update commands to Emby?":[null,"send update commands to Emby?"],"Emby IP:Port":[null,"Emby IP:Port"],"host running Emby (eg. 192.168.1.100:8096)":[null,"host running Emby (eg. 192.168.1.100:8096)"],"Emby API Key":[null,"Emby API Key"],"Networked Media Jukebox":[null,"Networked Media Jukebox"],"The Networked Media Jukebox, or NMJ, is the official media jukebox interface made available for the Popcorn Hour 200-series.":[null,"The Networked Media Jukebox, or NMJ, is the official media jukebox interface made available for the Popcorn Hour 200-series."],"send update commands to NMJ?":[null,"send update commands to NMJ?"],"Popcorn IP address":[null,"Popcorn IP address"],"IP address of Popcorn 200-series (eg. 192.168.1.100)":[null,"IP address of Popcorn 200-series (eg. 192.168.1.100)"],"Get settings":[null,"Get settings"],"Get Settings":[null,"Get Settings"],"the Popcorn Hour device must be powered on and NMJ running.":[null,"the Popcorn Hour device must be powered on and NMJ running."],"NMJ database":[null,"NMJ database"],"automatically filled via the 'Get Settings' button.":[null,"automatically filled via the 'Get Settings' button."],"NMJ mount url":[null,"NMJ mount url"],"Networked Media Jukebox v2":[null,"Networked Media Jukebox v2"],"The Networked Media Jukebox, or NMJv2, is the official media jukebox interface made available for the Popcorn Hour 300 & 400-series.":[null,"The Networked Media Jukebox, or NMJv2, is the official media jukebox interface made available for the Popcorn Hour 300 & 400-series."],"send update commands to NMJv2?":[null,"send update commands to NMJv2?"],"IP address of Popcorn 300/400-series (eg. 192.168.1.100)":[null,"IP address of Popcorn 300/400-series (eg. 192.168.1.100)"],"Database location":[null,"Database location"],"Database instance":[null,"Database instance"],"adjust this value if the wrong database is selected.":[null,"adjust this value if the wrong database is selected."],"Find database":[null,"Find database"],"Find Database":[null,"Find Database"],"the Popcorn Hour device must be powered on.":[null,"the Popcorn Hour device must be powered on."],"NMJv2 database":[null,"NMJv2 database"],"automatically filled via the 'Find Database' buttons.":[null,"automatically filled via the 'Find Database' buttons."],"Synology":[null,"Synology"],"The Synology DiskStation NAS.":[null,"The Synology DiskStation NAS."],"Synology Indexer is the daemon running on the Synology NAS to build its media database.":[null,"Synology Indexer is the daemon running on the Synology NAS to build its media database."],"send Synology notifications?":[null,"send Synology notifications?"],"requires SickRage to be running on your Synology NAS.":[null,"requires SickRage to be running on your Synology NAS."],"Synology Indexer":[null,"Synology Indexer"],"Synology Notifier is the notification system of Synology DSM":[null,"Synology Notifier is the notification system of Synology DSM"],"send notifications to the Synology Notifier?":[null,"send notifications to the Synology Notifier?"],"pyTivo":[null,"pyTivo"],"pyTivo is both an HMO and GoBack server. This notifier will load the completed downloads to your Tivo.":[null,"pyTivo is both an HMO and GoBack server. This notifier will load the completed downloads to your Tivo."],"send notifications to pyTivo?":[null,"send notifications to pyTivo?"],"requires the downloaded files to be accessible by pyTivo.":[null,"requires the downloaded files to be accessible by pyTivo."],"pyTivo IP:Port":[null,"pyTivo IP:Port"],"host running pyTivo (eg. 192.168.1.1:9032)":[null,"host running pyTivo (eg. 192.168.1.1:9032)"],"pyTivo share name":[null,"pyTivo share name"],"value used in pyTivo Web Configuration to name the share.":[null,"value used in pyTivo Web Configuration to name the share."],"Tivo name":[null,"Tivo name"],"(Messages & Settings > Account & System Information > System Information > DVR name)":[null,"(Messages & Settings > Account & System Information > System Information > DVR name)"],"Growl":[null,"Growl"],"A cross-platform unobtrusive global notification system.":[null,"A cross-platform unobtrusive global notification system."],"send Growl notifications?":[null,"send Growl notifications?"],"Growl IP:Port":[null,"Growl IP:Port"],"host running Growl (eg. 192.168.1.100:23053)":[null,"host running Growl (eg. 192.168.1.100:23053)"],"may leave blank if SickRage is on the same host.":[null,"may leave blank if SickRage is on the same host."],"otherwise Growl <b>requires</b> a password to be used.":[null,"otherwise Growl <b>requires</b> a password to be used."],"Click below to register and test Growl, this is required for Growl notifications to work.":[null,"Click below to register and test Growl, this is required for Growl notifications to work."],"Register Growl":[null,"Register Growl"],"Prowl":[null,"Prowl"],"A Growl client for iOS.":[null,"A Growl client for iOS."],"send Prowl notifications?":[null,"send Prowl notifications?"],"Prowl Message Title":[null,"Prowl Message Title"],"Global Prowl API key(s)":[null,"Global Prowl API key(s)"],"Prowl API(s) listed here, separated by commas if applicable, will<br> receive notifications for <b>all</b> shows. Your Prowl API key is available at:":[null,"Prowl API(s) listed here, separated by commas if applicable, will<br> receive notifications for <b>all</b> shows. Your Prowl API key is available at:"],"(this field may be blank except when testing.)":[null,"(this field may be blank except when testing.)"],"Show notification list":[null,"Show notification list"],"-- Select a Show --":[null,"-- Select a Show --"],"Configure per-show notifications here by entering Prowl API key(s), separated by commas, '\n 'after selecting a show in the drop-down box. Be sure to activate the 'Save for this show' '\n 'button below after each entry.":[null,"Configure per-show notifications here by entering Prowl API key(s), separated by commas, '\n 'after selecting a show in the drop-down box. Be sure to activate the 'Save for this show' '\n 'button below after each entry."],"Save for this show":[null,"Save for this show"],"Prowl priority":[null,"Prowl priority"],"Very Low":[null,"Very Low"],"Moderate":[null,"Moderate"],"Normal":[null,"Normal"],"High":[null,"High"],"Emergency":[null,"Emergency"],"priority of Prowl messages from SickRage.":[null,"priority of Prowl messages from SickRage."],"Libnotify":[null,"Libnotify"],"The standard desktop notification API for Linux/*nix systems. This notifier will only function if the pynotify module is installed (Ubuntu/Debian package <a href=\"apt:python-notify\">python-notify</a>).":[null,"The standard desktop notification API for Linux/*nix systems. This notifier will only function if the pynotify module is installed (Ubuntu/Debian package <a href=\"apt:python-notify\">python-notify</a>)."],"send Libnotify notifications?":[null,"send Libnotify notifications?"],"Pushover":[null,"Pushover"],"Pushover makes it easy to send real-time notifications to your Android and iOS devices.":[null,"Pushover makes it easy to send real-time notifications to your Android and iOS devices."],"send Pushover notifications?":[null,"send Pushover notifications?"],"Pushover key":[null,"Pushover key"],"user key of your Pushover account":[null,"user key of your Pushover account"],"Pushover API key":[null,"Pushover API key"],"click here":[null,""]," to create a Pushover API key":[null,""],"Pushover devices":[null,"Pushover devices"],"comma separated list of pushover devices you want to send notifications to":[null,"comma separated list of pushover devices you want to send notifications to"],"Pushover notification sound":[null,"Pushover notification sound"],"Bike":[null,"Bike"],"Bugle":[null,"Bugle"],"Cash Register":[null,"Cash Register"],"Classical":[null,"Classical"],"Cosmic":[null,"Cosmic"],"Falling":[null,"Falling"],"Gamelan":[null,"Gamelan"],"Incoming":[null,"Incoming"],"Intermission":[null,"Intermission"],"Magic":[null,"Magic"],"Mechanical":[null,"Mechanical"],"Piano Bar":[null,"Piano Bar"],"Siren":[null,"Siren"],"Space Alarm":[null,"Space Alarm"],"Tug Boat":[null,"Tug Boat"],"Alien Alarm (long)":[null,"Alien Alarm (long)"],"Climb (long)":[null,"Climb (long)"],"Persistent (long)":[null,"Persistent (long)"],"Pushover Echo (long)":[null,"Pushover Echo (long)"],"Up Down (long)":[null,"Up Down (long)"],"None (silent)":[null,"None (silent)"],"Device specific":[null,"Device specific"],"choose notification sound to use":[null,"choose notification sound to use"],"Pushover priority":[null,"Pushover priority"],"Choose priority to use":[null,"Choose priority to use"],"Boxcar 2":[null,"Boxcar 2"],"Read your messages where and when you want them!":[null,"Read your messages where and when you want them!"],"send Boxcar notifications?":[null,"send Boxcar notifications?"],"Boxcar2 access token":[null,"Boxcar2 access token"],"access token for your Boxcar account.":[null,"access token for your Boxcar account."],"NMA":[null,"NMA"],"Notify My Android":[null,"Notify My Android"],"Notify My Android is a Prowl-like Android App and API that offers an easy way to send notifications from your application directly to your Android device.":[null,"Notify My Android is a Prowl-like Android App and API that offers an easy way to send notifications from your application directly to your Android device."],"send NMA notifications?":[null,"send NMA notifications?"],"NMA API key":[null,"NMA API key"],"(multiple keys must be separated by commas, up to a maximum of 5)":[null,"(multiple keys must be separated by commas, up to a maximum of 5)"],"NMA priority":[null,"NMA priority"],"priority of NMA messages from SickRage.":[null,"priority of NMA messages from SickRage."],"Pushalot":[null,"Pushalot"],"Pushalot is a platform for receiving custom push notifications to connected devices running Windows Phone or Windows 8.":[null,"Pushalot is a platform for receiving custom push notifications to connected devices running Windows Phone or Windows 8."],"send Pushalot notifications ?":[null,"send Pushalot notifications ?"],"Pushalot authorization token":[null,"Pushalot authorisation token"],"authorization token of your Pushalot account.":[null,"authorisation token of your Pushalot account."],"Pushbullet":[null,"Pushbullet"],"Pushbullet is a platform for receiving custom push notifications to connected devices running Android/iOS and desktop browsers such as Chrome, Firefox or Opera.":[null,"Pushbullet is a platform for receiving custom push notifications to connected devices running Android/iOS and desktop browsers such as Chrome, Firefox or Opera."],"send Pushbullet notifications?":[null,"send Pushbullet notifications?"],"Pushbullet API key":[null,"Pushbullet API key"],"API key of your Pushbullet account":[null,"API key of your Pushbullet account"],"Pushbullet devices":[null,"Pushbullet devices"],"Update device list":[null,"Update device list"],"Pushbullet channels":[null,"Pushbullet channels"],"Free Mobile":[null,"Free Mobile"],"Free Mobile is a famous French cellular network provider.<br> It provides to their customer a free SMS API.":[null,"Free Mobile is a famous French cellular network provider. <br> It provides their customers with a free SMS API."],"send SMS notifications?":[null,"send SMS notifications?"],"send a SMS when a download starts?":[null,"send a SMS when a download starts?"],"send a SMS when a download finishes?":[null,"send a SMS when a download finishes?"],"send a SMS when subtitles are downloaded?":[null,"send a SMS when subtitles are downloaded?"],"Free Mobile customer ID":[null,"Free Mobile customer ID"],"it's your Free Mobile customer ID (8 digits)":[null,"it's your Free Mobile customer ID (8 digits)"],"Free Mobile API key":[null,"Free Mobile API key"],"find your API key in your customer portal.":[null,"find your API key in your customer portal."],"Click below to test your settings.":[null,"Click below to test your settings."],"Telegram":[null,"Telegram"],"Telegram is a cloud-based instant messaging service.":[null,"Telegram is a cloud-based instant messaging service."],"send Telegram notifications?":[null,"send Telegram notifications?"],"send a message when a download starts?":[null,"send a message when a download starts?"],"send a message when a download finishes?":[null,"send a message when a download finishes?"],"send a message when subtitles are downloaded?":[null,"send a message when subtitles are downloaded?"],"User/group ID":[null,"User/group ID"],"contact @myidbot on Telegram to get an ID":[null,"contact @myidbot on Telegram to get an ID"],"Bot API token":[null,"Bot API token"],"contact @BotFather on Telegram to set up one":[null,"contact @BotFather on Telegram to set up one"],"Join":[null,"Join"],"Join all of your devices together!":[null,"Join all of your devices together!"],"send Join notifications?":[null,"send Join notifications?"],"Device ID":[null,"Device ID"],"per device specific id":[null,"per device specific id"]," to create a Join API key":[null,""],"Twilio":[null,"Twilio"],"Twilio is a webservice API that allows you to communicate directly with a mobile number. This notifier will send a text directly to your mobile device.":[null,"Twilio is a webservice API that allows you to communicate directly with a mobile number. This notifier will send a text directly to your mobile device."],"should SickRage text your mobile device?":[null,"should SickRage text your mobile device?"],"Twilio Account SID":[null,"Twilio Account SID"],"account SID of your Twilio account.":[null,"account SID of your Twilio account."],"Twilio Auth Token":[null,"Twilio Auth Token"],"Twilio Phone SID":[null,"Twilio Phone SID"],"phone SID that you would like to send the sms from":[null,"phone SID that you would like to send the sms from"],"Your phone number":[null,"Your phone number"],"phone number that will receive the sms. Please use the format +1-###-###-####":[null,"phone number that will receive the sms. Please use the format +1-###-###-####"],"Twitter":[null,"Twitter"],"A social networking and microblogging service, enabling its users to send and read other users' messages called tweets.":[null,"A social networking and microblogging service, enabling its users to send and read other users' messages called tweets."],"should SickRage post tweets on Twitter?":[null,"should SickRage post tweets on Twitter?"],"you may want to use a secondary account.":[null,"you may want to use a secondary account."],"send direct message":[null,"send direct message"],"send a notification via Direct Message, not via status update":[null,"send a notification via Direct Message, not via status update"],"send DM to":[null,"send DM to"],"Twitter account to send Direct Messages to (must follow you)":[null,"Twitter account to send Direct Messages to (must follow you)"],"Step One":[null,"Step One"],"Request Authorization":[null,"Request Authorisation"],"Click the \"Request Authorization\" button.<br> This will open a new page containing an auth key.<br> <b>note:</b> if nothing happens check your popup blocker.":[null,"Click the \"Request Authorization\" button.<br> This will open a new page containing an auth key.<br> <b>note:</b> if nothing happens check your popup blocker."],"Step Two":[null,"Step Two"],"Enter the key Twitter gave you below, and click \"Verify Key\".":[null,"Enter the key Twitter gave you below, and click \"Verify Key\"."],"Trakt":[null,"Trakt"],"Trakt helps keep a record of what TV shows and movies you are watching. Based on your favorites, Trakt recommends additional shows and movies you'll enjoy!":[null,"Trakt helps keep a record of what TV shows and movies you are watching. Based on your favorites, Trakt recommends additional shows and movies you'll enjoy!"],"send Trakt.tv notifications?":[null,"send Trakt.tv notifications?"],"username of your Trakt account.":[null,"username of your Trakt account."],"Trakt PIN":[null,"Trakt PIN"],"Get Trakt PIN":[null,"Get Trakt PIN"],"PIN code to authorize SickRage to access Trakt on your behalf.":[null,"PIN code to authorise SickRage to access Trakt on your behalf."],"API Timeout":[null,"API Timeout"],"seconds to wait for Trakt API to respond. (Use 0 to wait forever)":[null,"seconds to wait for Trakt API to respond. (Use 0 to wait forever)"],"Default indexer":[null,"Default indexer"],"Sync libraries":[null,"Sync libraries"],"sync your SickRage show library with your trakt show library.":[null,"sync your SickRage show library with your trakt show library."],"Remove Episodes From Collection":[null,"Remove Episodes From Collection"],"remove an episode from your Trakt Collection if it is not in your SickRage Library.":[null,"remove an episode from your Trakt Collection if it is not in your SickRage Library."],"Sync watchlist":[null,"Sync watchlist"],"sync your SickRage show watchlist with your trakt show watchlist (either Show and Episode).":[null,"sync your SickRage show watchlist with your trakt show watchlist (either Show and Episode)."],"episode will be added on watch list when wanted or snatched and will be removed when downloaded ":[null,"episode will be added on watch list when wanted or snatched and will be removed when downloaded "],"Watchlist add method":[null,"Watchlist add method"],"Skip All":[null,"Skip All"],"Download Pilot Only":[null,"Download Pilot Only"],"Get whole show":[null,"Get whole show"],"method in which to download episodes for new shows.":[null,"method in which to download episodes for new shows."],"Remove episode":[null,"Remove episode"],"remove an episode from your watchlist after it is downloaded.":[null,"remove an episode from your watchlist after it is downloaded."],"Remove series":[null,"Remove series"],"remove the whole series from your watchlist after any download.":[null,"remove the whole series from your watchlist after any download."],"Remove watched show":[null,"Remove watched show"],"remove the show from sickrage if it's ended and completely watched":[null,"remove the show from sickrage if it's ended and completely watched"],"Start paused":[null,"Start paused"],"shows grabbed from your trakt watchlist start paused.":[null,"shows grabbed from your trakt watchlist start paused."],"Trakt blackList name":[null,"Trakt BlackList name"],"name (slug) of list on Trakt for blacklisting show on 'Add Trending Show' & 'Add Recommended Shows' pages":[null,"name (slug) of list on Trakt for blacklisting show on 'Add Trending Show' & 'Add Recommended Shows' pages"],"Email":[null,"Email"],"Allows configuration of email notifications on a per show basis.":[null,"Allows configuration of email notifications on a per show basis."],"send email notifications?":[null,"send email notifications?"],"SMTP host":[null,"SMTP host"],"hostname of your SMTP email server.":[null,"hostname of your SMTP email server."],"SMTP port":[null,"SMTP port"],"port number used to connect to your SMTP host.":[null,"port number used to connect to your SMTP host."],"SMTP from":[null,"SMTP from"],"sender email address, some hosts require a real address.":[null,"sender email address, some hosts require a real address."],"Use TLS":[null,"Use TLS"],"check to use TLS encryption.":[null,"check to use TLS encryption."],"SMTP user":[null,"SMTP user"],"(optional) your SMTP server username.":[null,"(optional) your SMTP server username."],"SMTP password":[null,"SMTP password"],"(optional) your SMTP server password.":[null,"(optional) your SMTP server password."],"Global email list":[null,"Global email list"],"email addresses listed here, separated by commas if applicable, will<br> receive notifications for <b>all</b> shows.":[null,"email addresses listed here, separated by commas if applicable, will<br> receive notifications for <b>all</b> shows."],"(This field may be blank except when testing.)":[null,"(This field may be blank except when testing.)"],"Email Subject":[null,"Email Subject"],"use a custom subject for some privacy protection?":[null,"use a custom subject for some privacy protection?"],"(leave blank for the default SickRage subject)":[null,"(leave blank for the default SickRage subject)"],"configure per-show notifications here by entering email address(es), separated by commas,":[null,"configure per-show notifications here by entering email address(es), separated by commas,"],"after selecting a show in the drop-down box. Be sure to activate the 'Save for this show'":[null,"after selecting a show in the drop-down box. Be sure to activate the 'Save for this show'"],"button below after each entry.":[null,"button below after each entry."],"Slack":[null,"Slack"],"Slack brings all your communication together in one place. It's real-time messaging, archiving and search for modern teams.":[null,"Slack brings all your communication together in one place. It's real-time messaging, archiving and search for modern teams."],"should SickRage post messages on Slack?":[null,"should SickRage post messages on Slack?"],"Slack Incoming Webhook":[null,"Slack Incoming Webhook"],"Discord":[null,"Discord"],"All-in-one voice and text chat for gamers that's free, secure, and works on both your desktop and phone.":[null,"All-in-one voice and text chat for gamers that's free, secure, and works on both your desktop and phone."],"Should SickRage post messages on Discord?":[null,"Should SickRage post messages on Discord?"],"Discord Incoming Webhook":[null,"Discord Incoming Webhook"],"Create webhook under channel settings.":[null,"Create webhook under channel settings."],"Discord Bot Name":[null,"Discord Bot Name"],"Blank will use webhook default Name.":[null,"Blank will use webhook default Name."],"Discord Avatar URL":[null,"Discord Avatar URL"],"Blank will use webhook default Avatar.":[null,"Blank will use webhook default Avatar."],"Discord TTS":[null,"Discord TTS"],"Send notifications using text-to-speech":[null,"Send notifications using text-to-speech"],"Post-Processing":[null,"Post-Processing"],"Episode Naming":[null,"Episode Naming"],"Metadata":[null,"Metadata"],"Settings that dictate how SickRage should process completed downloads.":[null,"Settings that dictate how SickRage should process completed downloads."],"enable the automatic post processor to scan and process any files in your Post Processing Dir":[null,"enable the automatic post processor to scan and process any files in your Post Processing Dir"],"do not use if you use an external Post Processing script":[null,"do not use if you use an external Post Processing script"],"Post Processing Dir":[null,"Post Processing Dir"],"the folder where your download client puts the completed TV downloads.":[null,"the folder where your download client puts the completed TV downloads."],"please use seperate downloading and completed folders in your download client if possible.":[null,"please use seperate downloading and completed folders in your download client if possible."],"Processing Method":[null,"Processing Method"],"what method should be used to put files into the library?":[null,"what method should be used to put files into the library?"],"if you keep seeding torrents after they finish, please avoid the 'move' processing method to prevent errors.":[null,"if you keep seeding torrents after they finish, please avoid the 'move' processing method to prevent errors."],"Auto Post-Processing Frequency":[null,"Auto Post-Processing Frequency"],"time in minutes to check for new files to auto post-process (min 10)":[null,"time in minutes to check for new files to auto post-process (min 10)"],"Postpone post processing":[null,"Postpone post processing"],"wait to process a folder if sync files are present.":[null,"wait to process a folder if sync files are present."],"Sync File Extensions":[null,"Sync File Extensions"],"comma seperated list of extensions or filename globs SickRage ignores when Post Processing":[null,"comma seperated list of extensions or filename globs SickRage ignores when Post Processing"],"Rename Episodes":[null,"Rename Episodes"],"rename episode using the Episode Naming settings?":[null,"rename episode using the Episode Naming settings?"],"Create missing show directories":[null,"Create missing show directories"],"create missing show directories when they get deleted":[null,"create missing show directories when they get deleted"],"Add shows without directory":[null,"Add shows without directory"],"add shows without creating a directory (not recommended)":[null,"add shows without creating a directory (not recommended)"],"Move associated files":[null,"Move associated files"],"move associated (srt/srr/sfv/etc) files while post processing?":[null,"move associated (srt/srr/sfv/etc) files while post processing?"],"Rename .nfo file":[null,"Rename .nfo file"],"rename the original .nfo file to .nfo-orig to avoid conflicts?":[null,"rename the original .nfo file to .nfo-orig to avoid conflicts?"],"Associated file extensions":[null,"Associated file extensions"],"comma separated list of associated file extensions SickRage should keep while post processing.":[null,"comma separated list of associated file extensions SickRage should keep while post processing."],"leaving it empty means no associated files will be post processed":[null,"leaving it empty means no associated files will be post processed"],"Delete non associated files":[null,"Delete non associated files"],"delete non associated files while post processing?":[null,"delete non associated files while post processing?"],"Change File Date":[null,"Change File Date"],"set last modified filedate to the date that the episode aired?":[null,"set last modified filedate to the date that the episode aired?"],"some systems may ignore this feature.":[null,"some systems may ignore this feature."],"Timezone for File Date":[null,"Timezone for File Date"],"local":[null,"local"],"network":[null,"network"],"what timezone should be used to change File Date?":[null,"what timezone should be used to change File Date?"],"Unpack":[null,"Unpack"],"What to do with archived releases found in your <i>TV Download Dir</i>?":[null,"What to do with archived releases found in your <i>TV Download Dir</i>?"],"Ignore (do not process contents)":[null,"Ignore (do not process contents)"],"Unpack (process contents)":[null,"Unpack (process contents)"],"Treat as video (process archive as-is)":[null,"Treat as video (process archive as-is)"],"'Unpack' only works with RAR archives":[null,"'Unpack' only works with RAR archives"],"Windows":[null,"Windows"],"WinRar is required on windows":[null,"WinRar is required on windows"],"Unpack Directory":[null,"Unpack Directory"],"Choose a path to unpack files, leave blank to unpack in download dir":[null,"Choose a path to unpack files, leave blank to unpack in download dir"],"Unrar Location":[null,"Unrar Location"],"add the path to unrar if it is not in the system path":[null,"add the path to unrar if it is not in the system path"],"Alternate Unrar Tool":[null,"Alternate Unrar Tool"],"add the path to an alternate unrar tool if it is not in the system path":[null,"add the path to an alternate unrar tool if it is not in the system path"],"Delete RAR contents":[null,"Delete RAR contents"],"delete content of RAR files, even if Process Method not set to move?":[null,"delete content of RAR files, even if Process Method not set to move?"],"only working with RAR archive":[null,"only working with RAR archive"],"Don't delete empty folders":[null,"Don't delete empty folders"],"leave empty folders when Post Processing?":[null,"leave empty folders when Post Processing?"],"can be overridden using manual Post Processing":[null,"can be overridden using manual Post Processing"],"Follow symbolic-links":[null,"Follow symbolic-links"],"follow down symbolic links in download directory?":[null,"follow down symbolic links in download directory?"],"<b>EXPERTS ONLY.</b><br>Enable only if you know what <b>circular symbolic links</b> are,<br>and can <b>verify that you have none</b>.":[null,"<b>EXPERTS ONLY.</b><br>Enable only if you know what <b>circular symbolic links</b> are,<br>and can <b>verify that you have none</b>."],"Use icacls":[null,"Use icacls"],"Windows only":[null,"Windows only"],"sets video permissions after using the move method in post processing":[null,"sets video permissions after using the move method in post processing"],"Extra Scripts":[null,"Extra Scripts"],"see":[null,"see"],"for script arguments description and usage.":[null,"for script arguments description and usage."],"How SickRage will name and sort your episodes.":[null,"How SickRage will name and sort your episodes."],"Name Pattern":[null,"Name Pattern"],"Toggle Naming Legend":[null,"Toggle Naming Legend"],"don't forget to add quality pattern. Otherwise after post-processing the episode will have UNKNOWN quality":[null,"don't forget to add quality pattern. Otherwise after post-processing the episode will have UNKNOWN quality"],"Meaning":[null,"Meaning"],"Pattern":[null,"Pattern"],"Result":[null,"Result"],"Use lower case if you want lower case names (eg. %sn, %e.n, %q_n etc)":[null,"Use lower case if you want lower case names (eg. %sn, %e.n, %q_n etc)"],"Show Name":[null,"Show Name"],"Show.Name":[null,"Show.Name"],"Show_Name":[null,"Show_Name"],"Season Number":[null,"Series Number"],"XEM Season Number":[null,"XEM Series Number"],"Episode Number":[null,"Episode Number"],"XEM Episode Number":[null,"XEM Episode Number"],"Episode Name":[null,"Episode Name"],"Episode.Name":[null,"Episode.Name"],"Episode_Name":[null,"Episode_Name"],"Air Date":[null,"Air Date"],"Post-Processing Date":[null,"Post-Processing Date"],"Quality":[null,"Quality"],"Scene Quality":[null,"Scene Quality"],"Release Name":[null,"Release Name"],"SickRage' is used in place of RLSGROUP if it could not be properly detected":[null,"SickRage' is used in place of RLSGROUP if it could not be properly detected"],"Release Group":[null,"Release Group"],"If episode is proper/repack add 'proper' to name.":[null,"If episode is proper/repack add 'proper' to name."],"Release Type":[null,"Release Type"],"Multi-Episode Style":[null,"Multi-Episode Style"],"Single-EP Sample":[null,"Single-EP Sample"],"Multi-EP sample":[null,"Multi-EP sample"],"Strip Show Year":[null,"Strip Show Year"],"remove the TV show's year when renaming the file?":[null,"remove the TV show's year when renaming the file?"],"only applies to shows that have year inside parentheses":[null,"only applies to shows that have year inside parentheses"],"Custom Air-By-Date":[null,"Custom Air-By-Date"],"name air-by-date shows differently than regular shows?":[null,"name air-by-date shows differently than regular shows?"],"Toggle ABD Naming Legend":[null,"Toggle ABD Naming Legend"],"Regular Air Date":[null,"Regular Air Date"],"Year":[null,"Year"],"Month":[null,"Month"],"Day":[null,"Day"],"Multi-EP style is ignored":[null,"Multi-EP style is ignored"],"Custom Sports":[null,"Custom Sports"],"name sports shows differently than regular shows?":[null,"name sports shows differently than regular shows?"],"Toggle Sports Naming Legend":[null,"Toggle Sports Naming Legend"],"Sports Air Date":[null,"Sports Air Date"],"Custom Anime":[null,"Custom Anime"],"name anime shows differently than regular shows?":[null,"name anime shows differently than regular shows?"],"Toggle Anime Naming Legend":[null,"Toggle Anime Naming Legend"],">XEM Season Number":[null,">XEM Series Number"],"Single-EP Anime Sample":[null,"Single-EP Anime Sample"],"Multi-EP Anime sample":[null,"Multi-EP Anime sample"],"Add Absolute Number":[null,"Add Absolute Number"],"add the absolute number to the season/episode format?":[null,"add the absolute number to the season/episode format?"],"only applies to anime. (eg. S15E45 - 310 vs S15E45)":[null,"only applies to anime. (eg. S15E45 - 310 vs S15E45)"],"Only Absolute Number":[null,"Only Absolute Number"],"replace season/episode format with absolute number":[null,"replace season/episode format with absolute number"],"only applies to anime.":[null,"only applies to anime."],"No Absolute Number":[null,"No Absolute Number"],"don't include the absolute number":[null,"don't include the absolute number"],"The data associated to the data. These are files associated to a TV show in the form of images and text that, when supported, will enhance the viewing experience.":[null,"The data associated to the data. These are files associated to a TV show in the form of images and text that, when supported, will enhance the viewing experience."],"Metadata Type":[null,"Metadata Type"],"toggle metadata options that you wish to be created":[null,"toggle metadata options that you wish to be created"],"multiple targets may be used":[null,"multiple targets may be used"],"Select Metadata":[null,"Select Metadata"],"Provider Priorities":[null,"Provider Priorities"],"Provider Options":[null,"Provider Options"],"Configure Custom Newznab Providers":[null,"Configure Custom Newznab Providers"],"Configure Custom Torrent Providers":[null,"Configure Custom Torrent Providers"],"Check off and drag the providers into the order you want them to be used.":[null,"Check off and drag the providers into the order you want them to be used."],"At least one provider is required but two are recommended.":[null,"At least one provider is required but two are recommended."],"Torrent providers can be toggled in ":[null,"Torrent providers can be toggled in "],"Provider does not support backlog searches at this time.":[null,"Provider does not support backlog searches at this time."],"Provider is <b>NOT WORKING</b>.":[null,"Provider is <b>NOT WORKING</b>."],"Configure individual provider settings here.":[null,"Configure individual provider settings here."],"Check with provider's website on how to obtain an API key if needed.":[null,"Check with provider's website on how to obtain an API key if needed."],"Configure provider":[null,"Configure provider"],"no providers available to configure.":[null,"no providers available to configure."],"URL":[null,"URL"],"Enable daily searches":[null,"Enable daily searches"],"enable provider to perform daily searches.":[null,"enable provider to perform daily searches."],"Enable backlog searches":[null,"Enable backlog searches"],"enable provider to perform backlog searches.":[null,"enable provider to perform backlog searches."],"Season search mode":[null,"Series search mode"],"when searching for complete seasons you can choose to have it look for season packs only, or choose to have it build a complete season from just single episodes.":[null,"when searching for a complete series you can choose to have it look for series packs only, or choose to have it build a complete series from just single episodes."],"season packs only.":[null,"series packs only."],"episodes only.":[null,"episodes only."],"Enable fallback":[null,"Enable fallback"],"when searching for a complete season depending on search mode you may return no results, this helps by restarting the search using the opposite search mode.":[null,"when searching for a complete series depending on search mode you may not get any results, this helps by restarting the search using the opposite search mode."],"Custom URL":[null,"Custom URL"],"the URL should include the protocol (and port if applicable). Examples: http://192.168.1.4/ or http://localhost:3000/":[null,"the URL should include the protocol (and port if applicable). Examples: http://192.168.1.4/ or http://localhost:3000/"],"Api key":[null,"Api key"],"Digest":[null,"Digest"],"Hash":[null,"Hash"],"Passkey":[null,"Passkey"],"Cookies":[null,"Cookies"],"example: uid=1234;pass=567845439634987<br>note: uid and pass are not your username/password.<br>use DevTools or Firebug to get these values after logging in on your browser.":[null,"example: uid=1234;pass=567845439634987<br>note: uid and pass are not your username/password.<br>use DevTools or Firebug to get these values after logging in on your browser."],"Pin":[null,"Pin"],"Seed ratio":[null,"Seed ratio"],"stop transfer when ratio is reached<br>(-1 SickRage default to seed forever, or leave blank for downloader default)":[null,"stop transfer when ratio is reached<br>(-1 SickRage default to seed forever, or leave blank for downloader default)"],"Minimum seeders":[null,"Minimum seeders"],"Minimum leechers":[null,"Minimum leechers"],"Confirmed download":[null,"Confirmed download"],"only download torrents from trusted or verified uploaders ?":[null,"only download torrents from trusted or verified uploaders ?"],"Ranked torrents":[null,"Ranked torrents"],"only download ranked torrents (trusted releases)":[null,"only download ranked torrents (trusted releases)"],"English torrents":[null,"English torrents"],"only download english torrents, or torrents containing english subtitles":[null,"only download english torrents, or torrents containing english subtitles"],"For Spanish torrents":[null,"For Spanish torrents"],"ONLY search on this provider if show info is defined as \"Spanish\" (avoid provider's use for VOS shows)":[null,"ONLY search on this provider if show info is defined as \"Spanish\" (avoid provider's use for VOS shows)"],"Sorting results by":[null,"Sorting results by"],"Freeleech":[null,"Freeleech"],"only download <b>\"FreeLeech\"</b> torrents.":[null,"only download <b>\"FreeLeech\"</b> torrents."],"Category":[null,"Category"],"select torrent with Italian subtitle":[null,"select torrent with Italian subtitle"],"Configure Custom<br>Newznab Providers":[null,"Configure Custom<br>Newznab Providers"],"Add and setup or remove custom Newznab providers.":[null,"Add and setup or remove custom Newznab providers."],"Select provider":[null,"Select provider"],"-- add new provider --":[null,"-- add new provider --"],"Provider name":[null,"Provider name"],"Site URL":[null,"Site URL"],"Newznab search categories":[null,"Newznab search categories"],"select your Newznab categories on the left, and click the \"update categories\" button to use them for searching.) <b>don't forget to to save the form!":[null,"select your Newznab categories on the left, and click the \"Update Categories\" button to use them for searching.) <b>don't forget to to save the form!"],"Update Categories":[null,"Update Categories"],"Add":[null,"Add"],"Delete":[null,"Delete"],"Add and setup or remove custom RSS providers.":[null,"Add and setup or remove custom RSS providers."],"RSS URL":[null,"RSS URL"],"Search element":[null,"Search element"],"eg: title":[null,"eg: title"],"Episode Search":[null,"Episode Search"],"NZB Search":[null,"NZB Search"],"Torrent Search":[null,"Torrent Search"],"How to manage searching with":[null,"How to manage searching with"],"Randomize Providers":[null,"Randomise Providers"],"randomize the provider search order instead of going in order of placement":[null,"randomise the provider search order instead of going in order of placement"],"Download propers":[null,"Download propers"],"replace original download with \"Proper\" or \"Repack\" if nuked":[null,"replace original download with \"Proper\" or \"Repack\" if nuked"],"Check propers every":[null,"Check propers every"],"24 hours":[null,"24 hours"],"4 hours":[null,"4 hours"],"90 mins":[null,"90 mins"],"45 mins":[null,"45 mins"],"15 mins":[null,"15 mins"],"Backlog search day(s)":[null,"Backlog search day(s)"],"number of day(s) that the \"Forced Backlog Search\" will cover (e.g. 7 Days)":[null,"number of day(s) that the \"Forced Backlog Search\" will cover (e.g. 7 Days)"],"Backlog search frequency":[null,"Backlog search frequency"],"time in minutes between searches (min.":[null,"time in minutes between searches (min."],"Daily search frequency":[null,"Daily search frequency"],"Usenet retention":[null,"Usenet retention"],"age limit in days for usenet articles to be used (e.g. 500)":[null,"age limit in days for usenet articles to be used (e.g. 500)"],"Ignore words":[null,"Ignore words"],"results with one or more word from this list will be ignored<br>separate words with a comma, e.g. \"word1,word2,word3\"":[null,"results with one or more word from this list will be ignored<br>separate words with a comma, e.g. \"word1,word2,word3\""],"Require words":[null,"Require words"],"results with no word from this list will be ignored<br>separate words with a comma, e.g. \"word1,word2,word3\"":[null,"results with no word from this list will be ignored<br>separate words with a comma, e.g. \"word1,word2,word3\""],"Trackers list":[null,"Trackers list"],"trackers that will be added to magnets without trackers<br>separate trackers with a comma, e.g. \"tracker1,tracker2,tracker3\"":[null,"trackers that will be added to magnets without trackers<br>separate trackers with a comma, e.g. \"tracker1,tracker2,tracker3\""],"Ignore language names in subbed results":[null,"Ignore language names in subbed results"],"ignore subbed releases based on language names <br>\n Example: \"dk\" will ignore words: dksub, dksubs, dksubbed, dksubed <br>\n separate languages with a comma, e.g. \"lang1,lang2,lang3":[null,"ignore subbed releases based on language names <br>\n Example: \"dk\" will ignore words: dksub, dksubs, dksubbed, dksubed <br>\n separate languages with a comma, e.g. \"lang1,lang2,lang3"],"Allow high priority":[null,"Allow high priority"],"set downloads of recently aired episodes to high priority":[null,"set downloads of recently aired episodes to high priority"],"Use Failed Downloads":[null,"Use Failed Downloads"],"use Failed Download Handling?":[null,"use Failed Download Handling?"],"will only work with snatched/downloaded episodes after enabling this":[null,"will only work with snatched/downloaded episodes after enabling this"],"Delete Failed":[null,"Delete Failed"],"delete files left over from a failed download?":[null,"delete files left over from a failed download?"],"this only works if Use Failed Downloads is enabled.":[null,"this only works if Use Failed Downloads is enabled."],"How to handle NZB search results.":[null,"How to handle NZB search results."],"Search NZBs":[null,"Search NZBs"],"enable NZB search providers":[null,"enable NZB search providers"],"Send .nzb files to":[null,"Send .nzb files to"],"SABnzbd server URL":[null,"SABnzbd server URL"],"URL to your SABnzbd server (e.g. http://localhost:8080/)":[null,"URL to your SABnzbd server (e.g. http://localhost:8080/)"],"SABnzbd username":[null,"SABnzbd username"],"(blank for none)":[null,"(blank for none)"],"SABnzbd password":[null,"SABnzbd password"],"SABnzbd API key":[null,"SABnzbd API key"],"locate at... SABnzbd Config -> General -> API Key":[null,"locate at... SABnzbd Config -> General -> API Key"],"Use SABnzbd category":[null,"Use SABnzbd category"],"add downloads to this category (e.g. TV)":[null,"add downloads to this category (e.g. TV)"],"Use SABnzbd category (backlog episodes)":[null,"Use SABnzbd category (backlog episodes)"],"add downloads of old episodes to this category (e.g. TV)":[null,"add downloads of old episodes to this category (e.g. TV)"],"Use SABnzbd category for anime":[null,"Use SABnzbd category for anime"],"add anime downloads to this category (e.g. anime)":[null,"add anime downloads to this category (e.g. anime)"],"Use SABnzbd category for anime (backlog episodes)":[null,"Use SABnzbd category for anime (backlog episodes)"],"add anime downloads of old episodes to this category (e.g. anime)":[null,"add anime downloads of old episodes to this category (e.g. anime)"],"Use forced priority":[null,"Use forced priority"],"enable to change priority from HIGH to FORCED":[null,"enable to change priority from HIGH to FORCED"],"Black hole folder location":[null,"Black hole folder location"],"<b>.nzb</b> files are stored at this location for external software to find and use":[null,"<b>.nzb</b> files are stored at this location for external software to find and use"],"Connect using HTTPS":[null,"Connect using HTTPS"],"enable Secure control in NZBGet and set the correct Secure Port here":[null,"enable Secure control in NZBGet and set the correct Secure Port here"],"NZBget host:port":[null,"NZBget host:port"],"(e.g. localhost:6789)":[null,"(e.g. localhost:6789)"],"NZBget RPC host name and port number (not NZBgetweb!)":[null,"NZBget RPC host name and port number (not NZBgetweb!)"],"NZBget username":[null,"NZBget username"],"locate in nzbget.conf (default:nzbget)":[null,"locate in nzbget.conf (default:nzbget)"],"NZBget password":[null,"NZBget password"],"locate in nzbget.conf (default:tegbzn6789)":[null,"locate in nzbget.conf (default:tegbzn6789)"],"Use NZBget category":[null,"Use NZBget category"],"send downloads marked this category (e.g. TV)":[null,"send downloads marked this category (e.g. TV)"],"Use NZBget category (backlog episodes)":[null,"Use NZBget category (backlog episodes)"],"send downloads of old episodes marked this category (e.g. TV)":[null,"send downloads of old episodes marked this category (e.g. TV)"],"Use NZBget category for anime":[null,"Use NZBget category for anime"],"send anime downloads marked this category (e.g. anime)":[null,"send anime downloads marked this category (e.g. anime)"],"Use NZBget category for anime (backlog episodes)":[null,"Use NZBget category for anime (backlog episodes)"],"send anime downloads of old episodes marked this category (e.g. anime)":[null,"send anime downloads of old episodes marked this category (e.g. anime)"],"NZBget priority":[null,"NZBget priority"],"Very low":[null,"Very low"],"Low":[null,"Low"],"Very high":[null,"Very high"],"Force":[null,"Force"],"priority for daily snatches (no backlog)":[null,"priority for daily snatches (no backlog)"],"Torrent host:port":[null,"Torrent host:port"],"URL to your Synology DSM (e.g. http://localhost:5000/)":[null,"URL to your Synology DSM (e.g. http://localhost:5000/)"],"Client username":[null,"Client username"],"Client password":[null,"Client password"],"Downloaded files location":[null,"Downloaded files location"],"where Synology Download Station will save downloaded files (blank for client default)":[null,"where Synology Download Station will save downloaded files (blank for client default)"],"the destination has to be a shared folder for Synology DS":[null,"the destination has to be a shared folder for Synology DS"],"Click below to test":[null,"Click below to test"],"How to handle Torrent search results.":[null,"How to handle Torrent search results."],"Search torrents":[null,"Search torrents"],"enable torrent search providers":[null,"enable torrent search providers"],"Send .torrent files to":[null,"Send .torrent files to"],"<b>.torrent</b> files are stored at this location for external software to find and use":[null,"<b>.torrent</b> files are stored at this location for external software to find and use"],"URL to your torrent client (e.g. http://localhost:8000/)":[null,"URL to your torrent client (e.g. http://localhost:8000/)"],"Torrent RPC URL":[null,"Torrent RPC URL"],"the path without leading and trailing slashes (e.g. transmission)":[null,"the path without leading and trailing slashes (e.g. transmission)"],"Http Authentication":[null,"Http Authentication"],"Verify certificate":[null,"Verify certificate"],"disable if you get \"Deluge: Authentication Error\" in your log":[null,"disable if you get \"Deluge: Authentication Error\" in your log"],"verify SSL certificates for HTTPS requests":[null,"verify SSL certificates for HTTPS requests"],"Add label to torrent":[null,"Add label to torrent"],"(blank spaces are not allowed)":[null,"(blank spaces are not allowed)"],"label plugin must be enabled in Deluge clients":[null,"label plugin must be enabled in Deluge clients"],"for QBitTorrent 3.3.1 and up":[null,"for QBitTorrent 3.3.1 and up"],"Add label to torrent for anime":[null,"Add label to torrent for anime"],"for QBitTorrent 3.3.1 and up ":[null,"for QBitTorrent 3.3.1 and up "],"where <span id=\"torrent_client\">the torrent client</span> will save downloaded files (blank for client default)":[null,"where <span id=\"torrent_client\">the torrent client</span> will save downloaded files (blank for client default)"],"the destination has to be a shared folder for Synology DS</span>":[null,"the destination has to be a shared folder for Synology DS</span>"],"Minimum seeding time":[null,"Minimum seeding time"],"time in hours":[null,"time in hours"],"(default:'0' passes blank to client and '-1' passes nothing)":[null,"(default:'0' passes blank to client and '-1' passes nothing)"],"Start torrent paused":[null,"Start torrent paused"],"add .torrent to client but do <b style=\"font-weight:900\">not</b> start downloading":[null,"add .torrent to client but do <b style=\"font-weight:900\">not</b> start downloading"],"Allow high bandwidth":[null,"Allow high bandwidth"],"use high bandwidth allocation if priority is high":[null,"use high bandwidth allocation if priority is high"],"Test Connection":[null,"Test Connection"],"Windows Shares":[null,""],"Defines your existing windows shares so that we can add them to the browse dialog":[null,""],"Share #{number}":[null,""],"Share label":[null,""],"Hostname or IP":[null,""],"Share path":[null,""],"Subtitles Search":[null,"Subtitles Search"],"Subtitles Plugin":[null,"Subtitles Plugin"],"Plugin Settings":[null,"Plugin Settings"],"Settings that dictate how SickRage handles subtitles search results.":[null,"Settings that dictate how SickRage handles subtitle search results."],"Search Subtitles":[null,"Search Subtitles"],"Subtitle Languages":[null,"Subtitle Languages"],"Subtitle Directory":[null,"Subtitle Directory"],"the directory where SickRage should store your <i>Subtitles</i> files.":[null,"the directory where SickRage should store your <i>Subtitles</i> files."],"leave empty if you want store subtitle in episode path.":[null,"leave empty if you want store subtitle in episode path."],"Subtitle Find Frequency":[null,"Subtitle Find Frequency"],"time in hours between scans (default: 1)":[null,"time in hours between scans (default: 1)"],"Include Specials":[null,"Include Specials"],"include the show's specials when searching for subtitles?":[null,"include the show's specials when searching for subtitles?"],"Perfect matches":[null,"Perfect matches"],"only download subtitles that match: release group, video codec, audio codec and resolution":[null,"only download subtitles that match: release group, video codec, audio codec and resolution"],"if disabled you may get out of sync subtitles":[null,"if disabled you may get out of sync subtitles"],"Subtitles History":[null,"Subtitles History"],"log downloaded Subtitle on History page?":[null,"log downloaded Subtitle on History page?"],"Subtitles Multi-Language":[null,"Subtitles Multi-Language"],"append language codes to subtitle filenames?":[null,"append language codes to subtitle filenames?"],"this option is required if you use multiple subtitle languages":[null,"this option is required if you use multiple subtitle languages"],"Delete unwanted subtitles":[null,"Delete unwanted subtitles"],"enable to delete unwanted subtitle languages bundled with release":[null,"enable to delete unwanted subtitle languages bundled with release"],"Embedded Subtitles":[null,"Embedded Subtitles"],"ignore subtitles embedded inside video file?":[null,"ignore subtitles embedded inside video file?"],"this will ignore <u>all</u> embedded subtitles for every video file!":[null,"this will ignore <u>all</u> embedded subtitles for every video file!"],"Hearing Impaired Subtitles":[null,"Hearing Impaired Subtitles"],"download hearing impaired style subtitles?":[null,"download hearing impaired style subtitles?"],"See":[null,"See"],"for a script arguments description.":[null,"for a script arguments description."],"Additional scripts separated by <b>|</b>.":[null,"Additional scripts separated by <b>|</b>."],"Scripts are called after each episode has searched and downloaded subtitles.":[null,"Scripts are called after each episode has searched and downloaded subtitles."],"For any scripted languages, include the interpreter executable before the script. See the following example":[null,"For any scripted languages, include the interpreter executable before the script. See the following example"],"For Windows:":[null,"For Windows:"],"For Linux / OS X:":[null,"For Linux / OS X:"],"Subtitle Providers":[null,"Subtitle Providers"],"Check off and drag the plugins into the order you want them to be used.":[null,"Check off and drag the plugins into the order you want them to be used."],"At least one plugin is required.":[null,"At least one plugin is required."]," Web-scraping plugin":[null," Web-scraping plugin"],"Provider Settings":[null,"Provider Settings"],"Set user and password for each provider":[null,"Set user and password for each provider"],"User Name":[null,"User Name"],"Change Show":[null,"Change Show"],"Prev Show":[null,"Prev Show"],"Next Show":[null,"Next Show"],"Jump to Season":[null,"Jump to Series"],"Specials":[null,"Specials"],"Poster for":[null,"Poster for"],"Stars":[null,"Stars"],"minutes":[null,"minutes"],"View other popular {genre} shows on trakt.tv.":[null,"View other popular {genre} shows on trakt.tv."],"View other popular {imdbgenre} shows on IMDB.":[null,"View other popular {imdbgenre} shows on IMDB."],"Allowed":[null,"Allowed"],"Preferred":[null,"Preferred"],"Originally Airs":[null,"Originally Airs"],"Show Status":[null,"Show Status"],"Default EP Status":[null,"Default EP Status"],"Location":[null,"Location"],"Missing":[null,"Missing"],"Scene Name":[null,"Scene Name"],"Required Words":[null,"Required Words"],"Ignored Words":[null,"Ignored Words"],"Size":[null,"Size"],"Info Language":[null,"Info Language"],"Subtitles SR Metadata":[null,"Subtitles SR Metadata"],"Season Folders":[null,"Series Folders"],"Paused":[null,"Paused"],"Air-by-Date":[null,"Air-by-Date"],"Sports":[null,"Sports"],"DVD Order":[null,"DVD Order"],"Scene Numbering":[null,"Scene Numbering"],"Select Filtered Episodes":[null,"Select Filtered Episodes"],"Clear All":[null,"Clear All"],"Change selected episodes to":[null,"Change selected episodes to"],"Select Columns":[null,"Select Columns"],"NFO":[null,"NFO"],"TBN":[null,"TBN"],"Episode":[null,"Episode"],"Absolute":[null,"Absolute"],"Scene":[null,"Scene"],"Scene Absolute":[null,"Scene Absolute"],"File Name":[null,"File Name"],"Airdate":[null,"Airdate"],"Download":[null,"Download"],"Change the value here if scene numbering differs from the indexer episode numbering":[null,"Change the value here if scene numbering differs from the indexer episode numbering"],"Change the value here if scene absolute numbering differs from the indexer absolute numbering":[null,"Change the value here if scene absolute numbering differs from the indexer absolute numbering"],"Manual Search":[null,"Manual Search"],"Do you want to mark this episode as failed?":[null,"Do you want to mark this episode as failed?"],"The episode release name will be added to the failed history, preventing it to be downloaded again.":[null,"The episode release name will be added to the failed history, preventing it being downloaded again."],"Do you want to include the current episode quality in the search?":[null,"Do you want to include the current episode quality in the search?"],"Choosing No will ignore any releases with the same episode quality as the one currently downloaded/snatched.":[null,"Choosing No will ignore any releases with the same episode quality as the one currently downloaded/snatched."],"Download subtitle":[null,"Download subtitle"],"Do you want to re-download the subtitle for this language?":[null,"Do you want to re-download the subtitle for this language?"],"It will overwrite your current subtitle":[null,"It will overwrite your current subtitle"],"Format":[null,"Format"],"Advanced":[null,"Advanced"],"Main Settings":[null,"Main Settings"],"Show Location":[null,"Show Location"],"Preferred Quality":[null,"Preferred Quality"],"Default Episode Status":[null,"Default Episode Status"],"this will set the status for future episodes.":[null,"this will set the status for future episodes."],"this only applies to episode filenames and the contents of metadata files.":[null,"this only applies to episode filenames and the contents of metadata files."],"search for subtitles":[null,"search for subtitles"],"Use SR Metdata":[null,"Use SR Metadata"],"use SickRage metadata when searching for subtitle, this will override the autodiscovered metadata":[null,"use SickRage metadata when searching for subtitle, this will override the autodiscovered metadata"],"pause this show (SickRage will not download episodes)":[null,"pause this show (SickRage will not download episodes)"],"Format Settings":[null,"Format Settings"],"Air by date":[null,"Air by date"],"check if the show is released as Show.03.02.2010 rather than Show.S02E03.":[null,"check if the show is released as Show.03.02.2010 rather than Show.S02E03."],"in case of an air date conflict between regular and special episodes, the later will be ignored.":[null,"in case of an air date conflict between regular and special episodes, the later will be ignored."],"check if the show is Anime and episodes are released as Show.265 rather than Show.S02E03":[null,"check if the show is Anime and episodes are released as Show.265 rather than Show.S02E03"],"check if the show is a sporting or MMA event released as Show.03.02.2010 rather than Show.S02E03":[null,"check if the show is a sporting or MMA event released as Show.03.02.2010 rather than Show.S02E03"],"Season folders":[null,"Series folders"],"group episodes by season folder (uncheck to store in a single folder)":[null,"group episodes by series folder (uncheck to store in a single folder)"],"search by scene numbering (uncheck to search by indexer numbering)":[null,"search by scene numbering (uncheck to search by indexer numbering)"],"use the DVD order instead of the air order":[null,"use the DVD order instead of the air order"],"a \"Force Full Update\" is necessary, and if you have existing episodes you need to sort them manually.":[null,"a \"Force Full Update\" is necessary, and if you have existing episodes you need to sort them manually."],"comma-separated <i>e.g. \"word1,word2,word3</i>\"":[null,"comma-separated <i>e.g. \"word1,word2,word3</i>\""],"search results with one or more words from this list will be ignored.":[null,"search results with one or more words from this list will be ignored."],"e.g. \"word1,word2,word3\"":[null,"e.g. \"word1,word2,word3\""],"search results with no words from this list will be ignored.":[null,"search results with no words from this list will be ignored."],"Scene Exception":[null,"Scene Exception"],"this will affect episode search on NZB and torrent providers.":[null,"this will affect episode search on NZB and torrent providers."],"this list appends to the original show name.":[null,"this list appends to the original show name."],"WARNING logs":[null,"WARNING logs"],"ERROR logs":[null,"ERROR logs"],"There are no events to display.":[null,"There are no events to display."],"Limit":[null,"Limit"],"Layout":[null,"Layout"],"HistoryLayout":[null,"HistoryLayout"],"Compact":[null,"Compact"],"Detailed":[null,"Detailed"],"Time":[null,"Time"],"Provider":[null,"Provider"],"Missing Provider":[null,"Missing Provider"],"missing provider":[null,"missing provider"],"Directory":[null,"Directory"],"Show Name (tvshow.nfo)":[null,"Show Name (tvshow.nfo)"],"Indexer":[null,"Indexer"],"Enter the folder containing the episode":[null,"Enter the folder containing the episode"],"Process Method to be used":[null,"Process Method to be used"],"Copy":[null,"Copy"],"Move":[null,"Move"],"Hard Link":[null,"Hard Link"],"Symbolic Link":[null,"Symbolic Link"],"Symbolic Link Reversed":[null,"Symbolic Link Reversed"],"Force already Post Processed Dir/Files":[null,"Force already Post Processed Dir/Files"],"Mark Dir/Files as priority download":[null,"Mark Dir/Files as priority download"],"(Check it to replace the file even if it exists at higher quality)":[null,"(Check it to replace the file even if it exists at higher quality)"],"Delete files and folders":[null,"Delete files and folders"],"(Check it to delete files and folders like auto processing)":[null,"(Check it to delete files and folders like auto processing)"],"Don't use processing queue":[null,"Don't use processing queue"],"(If checked this will return the result of the process here, but may be slow!)":[null,"(If checked this will return the result of the process here, but may be slow!)"],"Mark download as failed":[null,"Mark download as failed"],"Process":[null,"Process"],"Download subtitles for this show?":[null,"Download subtitles for this show?"],"use SickRage metadata when searching for subtitle, <br />this will override the autodiscovered metadata":[null,"use SickRage metadata when searching for subtitle, <br />this will override the autodiscovered metadata"],"Status for previously aired episodes":[null,"Status for previously aired episodes"],"Status for all future episodes":[null,"Status for all future episodes"],"Group episodes by season folder?":[null,"Group episodes by season folder?"],"Is this show an Anime?":[null,"Is this show an Anime?"],"Is this show scene numbered?":[null,"Is this show scene numbered?"],"Save Defaults":[null,"Save Defaults"],"Use current values as the defaults":[null,"Use current values as the defaults"],"<p>Select your preferred fansub groups from the <b>Available Groups</b> and add them to the <b>Whitelist</b>. Add groups to the <b>Blacklist</b> to ignore them.</p>\n <p>The <b>Whitelist</b> is checked <i>before</i> the <b>Blacklist</b>.</p>\n <p>Groups are shown as <b>Name</b> | <b>Rating</b> | <b>Number of subbed episodes</b>.</p>\n <p>You may also add any fansub group not listed to either list manually.</p>\n <p>When doing this please note that you can only use groups listed on anidb for this anime.\n <br>If a group is not listed on anidb but subbed this anime, please correct anidb's data.</p>":[null,"<p>Select your preferred fansub groups from the <b>Available Groups</b> and add them to the <b>Whitelist</b>. Add groups to the <b>Blacklist</b> to ignore them.</p> \n <p>The <b>Whitelist</b> is checked <i>before</i> the <b>Blacklist</b>.</p> \n <p>Groups are shown as <b>Name</b> | <b>Rating</b> | <b>Number of subbed episodes</b>.</p> \n <p>You may also add any fansub group not listed to either list manually.</p> \n <p>When doing this please note that you can only use groups listed on anidb for this anime.\n <br>If a group is not listed on anidb but subbed this anime, please correct anidb's data.</p>"],"Whitelist":[null,"Whitelist"],"Available Groups":[null,"Available Groups"],"Add to Whitelist":[null,"Add to Whitelist"],"Add to Blacklist":[null,"Add to Blacklist"],"Blacklist":[null,"Blacklist"],"Custom Group":[null,"Custom Group"],"Allowed Quality:":[null,"Allowed Quality:"],"Preferred Quality:":[null,"Preferred Quality:"],"Filter Show Name":[null,"Filter Show Name"],"Root":[null,"Root"],"All":[null,"All"],"Clear Filter(s)":[null,"Clear Filter(s)"],"Poster":[null,"Poster"],"Small Poster":[null,"Small Poster"],"Banner":[null,"Banner"],"Simple":[null,"Simple"],"Next Episode":[null,"Next Episode"],"Progress":[null,"Progress"],"Direction":[null,"Direction"],"Ascending":[null,"Ascending"],"Descending":[null,"Descending"],"Poster Size":[null,"Poster Size"],"Continuing":[null,"Continuing"],"Ended":[null,"Ended"],"Total":[null,"Total"],"Invalid date":[null,"Invalid date"],"No Network":[null,"No Network"],"Next Ep":[null,"Next Ep"],"Prev Ep":[null,"Prev Ep"],"Show":[null,"Show"],"Downloads":[null,"Downloads"],"Active":[null,"Active"],"loading":[null,"loading"],"<p><b><u>Preferred</u></b> qualities will replace those in <b><u>allowed</u></b>, even if they are lower.</p>":[null,"<p><b><u>Preferred</u></b> qualities will replace those in <b><u>allowed</u></b>, even if they are lower.</p>"],"New":[null,"New"],"Set as Default":[null,"Set as Default"],"Remember me":[null,"Remember me"],"Edit Selected":[null,"Edit Selected"],"Subtitle":[null,"Subtitle"],"Default Ep Status":[null,"Default Ep Status"],"Update":[null,"Update"],"Rescan":[null,"Rescan"],"Rename":[null,"Rename"],"Search Subtitle":[null,"Search Subtitle"],"Force Metadata Regen":[null,"Force Metadata Regen"],"Snatched (Allowed)":[null,"Snatched (Allowed)"],"Jump to Show":[null,"Jump to Show"],"Force Backlog":[null,"Force Backlog"],"Manage episodes with status":[null,"Manage episodes with status"],"Manage":[null,"Manage"],"None of your episodes have status":[null,"None of your episodes have status"],"Shows containing":[null,"Shows containing"],"episodes":[null,"episodes"],"Set checked shows/episodes to":[null,"Set checked shows/episodes to"],"Go":[null,"Go"],"Select all":[null,"Select all"],"Clear all":[null,"Clear all"],"Release":[null,"Release"],"Backlog Search":[null,"Backlog Search"],"Not in progress":[null,"Not in progress"],"In Progress":[null,"In Progress"],"Daily Search":[null,"Daily Search"],"Find Propers Search":[null,"Find Propers Search"],"Propers search disabled":[null,"Propers search disabled"],"Subtitle Search":[null,"Subtitle Search"],"Subtitle search disabled":[null,"Subtitle search disabled"],"Search Queue":[null,"Search Queue"],"pending items":[null,"pending items"],"Daily":[null,"Daily"],"Manual":[null,"Manual"],"Changing any settings marked with (<span class=\"separator\">*</span>) will force a refresh of the selected shows.":[null,"Changing any settings marked with (<span class=\"separator\">*</span>) will force a refresh of the selected shows."],"Selected Shows":[null,"Selected Shows"],"Root Directories":[null,"Root Directories"],"Current":[null,"Current"],"Keep":[null,"Keep"],"Custom":[null,"Custom"],"Group episodes by season folder (set to \"No\" to store in a single folder).":[null,"Group episodes by series folder (set to \"No\" to store in a single folder)."],"Pause these shows (SickRage will not download episodes).":[null,"Pause these shows (SickRage will not download episodes)."],"This will set the status for future episodes.":[null,"This will set the status for future episodes."],"Search by scene numbering (set to \"No\" to search by indexer numbering).":[null,"Search by scene numbering (set to \"No\" to search by indexer numbering)."],"Set if these shows are Anime and episodes are released as Show.265 rather than Show.S02E03":[null,"Set if these shows are Anime and episodes are released as Show.265 rather than Show.S02E03"],"Set if these shows are sporting or MMA events released as Show.03.02.2010 rather than Show.S02E03.":[null,"Set if these shows are sporting or MMA events released as Show.03.02.2010 rather than Show.S02E03."],"In case of an air date conflict between regular and special episodes, the later will be ignored.":[null,"In case of an air date conflict between regular and special episodes, the latter will be ignored."],"Set if these shows are released as Show.03.02.2010 rather than Show.S02E03.":[null,"Set if these shows are released as Show.03.02.2010 rather than Show.S02E03."],"Search for subtitles.":[null,"Search for subtitles."],"All of your episodes have {subsLanguage} subtitles.":[null,"All of your episodes have {subsLanguage} subtitles."],"Manage episodes without":[null,"Manage episodes without"],"Episodes without {subsLanguage} subtitles.":[null,"Episodes without {subsLanguage} subtitles."],"Episodes without {subtitleLanguage} (undefined) subtitles.":[null,"Episodes without {subtitleLanguage} (undefined) subtitles."],"Download missed subtitles for selected episodes":[null,"Download missed subtitles for selected episodes"],"Performing Restart":[null,"Performing Restart"],"Waiting for SickRage to shut down":[null,"Waiting for SickRage to shut down"],"Waiting for SickRage to start again":[null,"Waiting for SickRage to start again"],"Loading the default page":[null,"Loading the default page"],"Error: The restart has timed out, perhaps something prevented SickRage from starting again?":[null,"Error: The restart has timed out, perhaps something prevented SickRage from starting again?"],"Key":[null,"Key"],"Missed":[null,"Missed"],"Today":[null,"Today"],"Soon":[null,"Soon"],"Later":[null,"Later"],"Subscribe":[null,"Subscribe"],"Date":[null,"Date"],"View Paused":[null,"View Paused"],"Hidden":[null,"Hidden"],"Shown":[null,"Shown"],"Calendar":[null,"Calendar"],"List":[null,"List"],"Ends":[null,"Ends"],"Next Ep Name":[null,"Next Ep Name"],"Run time":[null,"Run time"],"Indexers":[null,"Indexers"],"No shows for this day":[null,"No shows for this day"],"Airs":[null,"Airs"],"Plot":[null,"Plot"],"Show Update":[null,"Show Update"],"Version Check":[null,"Version Check"],"Proper Finder":[null,"Proper Finder"],"Post Process":[null,"Post Process"],"Subtitles Finder":[null,"Subtitles Finder"],"Scheduler":[null,"Scheduler"],"Alive":[null,"Alive"],"Start Time":[null,"Start Time"],"Cycle Time":[null,"Cycle Time"],"Next Run":[null,"Next Run"],"Last Run":[null,"Last Run"],"Silent":[null,"Silent"],"True":[null,"True"],"N/A":[null,"N/A"],"Show id":[null,"Show id"],"Show name":[null,"Show name"],"Priority":[null,"Priority"],"Added":[null,"Added"],"Queue type":[null,"Queue type"],"LOW":[null,"LOW"],"NORMAL":[null,"NORMAL"],"HIGH":[null,"HIGH"],"Disk Space":[null,"Disk Space"],"Free space":[null,"Free space"],"TV Download Directory":[null,"TV Download Directory"],"Media Root Directories":[null,"Media Root Directories"],"Preview of the proposed name changes":[null,"Preview of the proposed name changes"],"All Seasons":[null,"All Series"],"select all":[null,"select all"],"Rename Selected":[null,"Rename Selected"],"Cancel Rename":[null,"Cancel Rename"],"Old Location":[null,"Old Location"],"New Location":[null,"New Location"],"Trakt API did not return any results, please check your config.":[null,"Trakt API did not return any results, please check your config."],"votes":[null,"votes"],"Remove Show":[null,"Remove Show"],"Level":[null,"Level"],"Filter":[null,"Filter"],"All non-absolute folder locations are relative to ":[null,"All non-absolute folder locations are relative to "],"Manual Post-Processing":[null,"Manual Post-Processing"],"Episode Status Management":[null,"Episode Status Management"],"Update PLEX":[null,"Update PLEX"],"Update KODI":[null,"Update KODI"],"Update Emby":[null,"Update Emby"],"Manage Torrents":[null,"Manage Torrents"],"Missed Subtitle Management":[null,"Missed Subtitle Management"],"Help & Info":[null,"Help & Info"],"Backup & Restore":[null,"Backup & Restore"],"Tools":[null,"Tools"],"Support SickRage":[null,"Support SickRage"],"View Errors":[null,"View Errors"],"View Warnings":[null,"View Warnings"],"View Log":[null,"View Log"],"Check For Updates":[null,"Check For Updates"],"Restart":[null,"Restart"],"Shutdown":[null,"Shutdown"],"Logout":[null,"Logout"],"Server Status":[null,"Server Status"],"View overview of snatched episodes":[null,"View overview of snatched episodes"],"Episodes Downloaded":[null,"Episodes Downloaded"],"Memory used":[null,"Memory used"],"Load time":[null,"Load time"],"Branch":[null,"Branch"],"Now":[null,"Now"]}}}} \ No newline at end of file diff --git a/locale/en_GB/LC_MESSAGES/messages.mo b/locale/en_GB/LC_MESSAGES/messages.mo index fc8d54da5c4a1815f779af5f53a85c061b77fb07..f26dbcd9e69861fe22d902c2ea2072c4180817fd 100644 Binary files a/locale/en_GB/LC_MESSAGES/messages.mo and b/locale/en_GB/LC_MESSAGES/messages.mo differ diff --git a/locale/en_GB/LC_MESSAGES/messages.po b/locale/en_GB/LC_MESSAGES/messages.po index 43a976bf5d95204666b2a393536480b7e80212fe..69cc858cb99368fcd51307130028b641bbd76d5e 100644 --- a/locale/en_GB/LC_MESSAGES/messages.po +++ b/locale/en_GB/LC_MESSAGES/messages.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: sickrage\n" "Report-Msgid-Bugs-To: miigotu@gmail.com\n" -"POT-Creation-Date: 2017-03-25 09:28-0700\n" -"PO-Revision-Date: 2017-03-25 12:29-0400\n" +"POT-Creation-Date: 2017-03-28 09:10-0700\n" +"PO-Revision-Date: 2017-03-28 12:11-0400\n" "Last-Translator: miigotu <miigotu@gmail.com>\n" "Language-Team: English, United Kingdom\n" "MIME-Version: 1.0\n" @@ -90,7 +90,7 @@ msgid "Biography" msgstr "Biography" #: gui/slick/views/config_general.mako:78 gui/slick/views/layouts/main.mako:145 -#: sickbeard/__init__.py:79 sickbeard/webserve.py:3807 +#: sickbeard/__init__.py:79 sickbeard/webserve.py:3778 msgid "History" msgstr "History" @@ -103,7 +103,7 @@ msgid "Western" msgstr "Western" #: gui/slick/views/config_general.mako:79 gui/slick/views/layouts/main.mako:221 -#: sickbeard/__init__.py:80 sickbeard/webserve.py:2385 +#: sickbeard/__init__.py:80 sickbeard/webserve.py:2384 msgid "News" msgstr "News" @@ -238,6 +238,34 @@ msgstr "Ignored" msgid "Subtitled" msgstr "Subtitled" +#: sickbeard/helpers.py:1887 +msgid "For best results please set the Download Station alias as" +msgstr "For best results please set the Download Station alias as" + +#: sickbeard/helpers.py:1888 +msgid "You can check this setting in the Synology DSM" +msgstr "You can check this setting in the Synology DSM" + +#: sickbeard/helpers.py:1888 sickbeard/helpers.py:1890 +msgid "Control Panel" +msgstr "Control Panel" + +#: sickbeard/helpers.py:1888 +msgid "Application Portal" +msgstr "Application Portal" + +#: sickbeard/helpers.py:1889 +msgid "Make sure you allow DSM to be embedded with iFrames too in" +msgstr "Make sure you allow DSM to be embedded with iFrames too in" + +#: sickbeard/helpers.py:1890 +msgid "DSM Settings" +msgstr "DSM Settings" + +#: sickbeard/helpers.py:1890 +msgid "Security" +msgstr "Security" + #: sickbeard/logger.py:474 msgid "<No Filter>" msgstr "<No Filter>" @@ -308,15 +336,15 @@ msgstr "Trakt Checker" msgid "Event" msgstr "Event" -#: sickbeard/logger.py:491 sickbeard/webserve.py:1339 sickbeard/webserve.py:1342 -#: sickbeard/webserve.py:1520 sickbeard/webserve.py:1529 sickbeard/webserve.py:1717 -#: sickbeard/webserve.py:1728 sickbeard/webserve.py:1751 sickbeard/webserve.py:1764 -#: sickbeard/webserve.py:1769 sickbeard/webserve.py:1785 sickbeard/webserve.py:1790 -#: sickbeard/webserve.py:1854 sickbeard/webserve.py:1857 sickbeard/webserve.py:1863 -#: sickbeard/webserve.py:1866 sickbeard/webserve.py:1873 sickbeard/webserve.py:1876 -#: sickbeard/webserve.py:1899 sickbeard/webserve.py:1997 sickbeard/webserve.py:2002 -#: sickbeard/webserve.py:2007 sickbeard/webserve.py:2036 sickbeard/webserve.py:2040 -#: sickbeard/webserve.py:2045 +#: sickbeard/logger.py:491 sickbeard/webserve.py:1338 sickbeard/webserve.py:1341 +#: sickbeard/webserve.py:1519 sickbeard/webserve.py:1528 sickbeard/webserve.py:1716 +#: sickbeard/webserve.py:1727 sickbeard/webserve.py:1750 sickbeard/webserve.py:1763 +#: sickbeard/webserve.py:1768 sickbeard/webserve.py:1784 sickbeard/webserve.py:1789 +#: sickbeard/webserve.py:1853 sickbeard/webserve.py:1856 sickbeard/webserve.py:1862 +#: sickbeard/webserve.py:1865 sickbeard/webserve.py:1872 sickbeard/webserve.py:1875 +#: sickbeard/webserve.py:1898 sickbeard/webserve.py:1996 sickbeard/webserve.py:2001 +#: sickbeard/webserve.py:2006 sickbeard/webserve.py:2035 sickbeard/webserve.py:2039 +#: sickbeard/webserve.py:2044 msgid "Error" msgstr "Error" @@ -333,6 +361,7 @@ msgstr "Thread" msgid "Main" msgstr "Main" +#: gui/slick/js/ajaxEpSearch.js:146 gui/slick/js/ajaxEpSearch.js:147 #: gui/slick/views/inc_home_showList.mako:27 sickbeard/show_queue.py:298 msgid "Loading" msgstr "Loading" @@ -372,867 +401,835 @@ msgstr "Config backup failed, aborting update" msgid "No update needed" msgstr "No update needed" -#: sickbeard/webserve.py:170 +#: sickbeard/webserve.py:171 msgid "Mako Error" msgstr "Mako Error" -#: sickbeard/webserve.py:195 +#: sickbeard/webserve.py:196 msgid "Oops" msgstr "Oops" -#: sickbeard/webserve.py:197 +#: sickbeard/webserve.py:198 msgid "Wrong API key used" msgstr "Wrong API key used" -#: gui/slick/views/login.mako:34 sickbeard/webserve.py:302 +#: gui/slick/views/login.mako:34 sickbeard/webserve.py:303 msgid "Login" msgstr "Login" -#: sickbeard/webserve.py:406 +#: sickbeard/webserve.py:392 msgid "API Key not generated" msgstr "API Key not generated" -#: sickbeard/webserve.py:409 +#: sickbeard/webserve.py:395 msgid "API Builder" msgstr "API Builder" #: gui/slick/views/config_general.mako:77 gui/slick/views/layouts/main.mako:141 -#: sickbeard/webserve.py:512 +#: sickbeard/webserve.py:498 msgid "Schedule" msgstr "Schedule" -#: sickbeard/webserve.py:610 +#: sickbeard/webserve.py:609 msgid "Test 1" msgstr "Test 1" -#: sickbeard/webserve.py:610 +#: sickbeard/webserve.py:609 msgid "This is test number 1" msgstr "This is test number 1" -#: sickbeard/webserve.py:611 +#: sickbeard/webserve.py:610 msgid "Test 2" msgstr "Test 2" -#: sickbeard/webserve.py:611 +#: sickbeard/webserve.py:610 msgid "This is test number 2" msgstr "This is test number 2" -#: sickbeard/webserve.py:634 +#: sickbeard/webserve.py:633 msgid "You're using the {branch} branch. Please use 'master' unless specifically asked" msgstr "You're using the {branch} branch. Please use 'master' unless specifically asked" -#: sickbeard/webserve.py:698 sickbeard/webserve.py:703 +#: sickbeard/webserve.py:697 sickbeard/webserve.py:702 msgid "Invalid show parameters" msgstr "Invalid show parameters" -#: sickbeard/webserve.py:710 +#: sickbeard/webserve.py:709 msgid "Invalid parameters" msgstr "Invalid parameters" -#: sickbeard/webserve.py:713 sickbeard/webserve.py:1899 +#: sickbeard/webserve.py:712 sickbeard/webserve.py:1898 msgid "Episode couldn't be retrieved" msgstr "Episode couldn't be retrieved" -#: sickbeard/webserve.py:759 sickbeard/webserve.py:1268 sickbeard/webserve.py:1297 +#: sickbeard/webserve.py:758 sickbeard/webserve.py:1267 sickbeard/webserve.py:1296 msgid "Home" msgstr "Home" -#: gui/slick/views/layouts/main.mako:127 sickbeard/webserve.py:759 +#: gui/slick/views/layouts/main.mako:127 sickbeard/webserve.py:758 msgid "Show List" msgstr "Show List" -#: sickbeard/webserve.py:807 +#: sickbeard/webserve.py:806 msgid "Error: Unsupported Request. Send jsonp request with 'callback' variable in the query string." msgstr "Error: Unsupported Request. Send jsonp request with 'callback' variable in the query string." -#: sickbeard/webserve.py:851 +#: sickbeard/webserve.py:850 msgid "Success. Connected and authenticated" msgstr "Success. Connected and authenticated" -#: sickbeard/webserve.py:853 +#: sickbeard/webserve.py:852 msgid "Authentication failed. SABnzbd expects" msgstr "Authentication failed. SABnzbd expects" -#: sickbeard/webserve.py:853 +#: sickbeard/webserve.py:852 msgid "as authentication method" msgstr "as authentication method" -#: sickbeard/webserve.py:855 +#: sickbeard/webserve.py:854 msgid "Unable to connect to host" msgstr "Unable to connect to host" -#: sickbeard/webserve.py:876 +#: sickbeard/webserve.py:875 msgid "SMS sent successfully" msgstr "SMS sent successfully" -#: sickbeard/webserve.py:878 +#: sickbeard/webserve.py:877 msgid "Problem sending SMS: {message}" msgstr "Problem sending SMS: {message}" -#: sickbeard/webserve.py:885 +#: sickbeard/webserve.py:884 msgid "Telegram notification succeeded. Check your Telegram clients to make sure it worked" msgstr "Telegram notification succeeded. Check your Telegram clients to make sure it worked" -#: sickbeard/webserve.py:887 +#: sickbeard/webserve.py:886 msgid "Error sending Telegram notification: {message}" msgstr "Error sending Telegram notification: {message}" -#: sickbeard/webserve.py:894 +#: sickbeard/webserve.py:893 msgid "join notification succeeded. Check your join clients to make sure it worked" msgstr "join notification succeeded. Check your join clients to make sure it worked" -#: sickbeard/webserve.py:896 +#: sickbeard/webserve.py:895 msgid "Error sending join notification: {message}" msgstr "Error sending join notification: {message}" -#: sickbeard/webserve.py:906 +#: sickbeard/webserve.py:905 msgid " with password" msgstr " with password" -#: sickbeard/webserve.py:908 +#: sickbeard/webserve.py:907 msgid "Registered and Tested growl successfully {growl_host}" msgstr "Registered and Tested growl successfully {growl_host}" -#: sickbeard/webserve.py:910 +#: sickbeard/webserve.py:909 msgid "Registration and Testing of growl failed {growl_host}" msgstr "Registration and Testing of growl failed {growl_host}" -#: sickbeard/webserve.py:917 +#: sickbeard/webserve.py:916 msgid "Test prowl notice sent successfully" msgstr "Test prowl notice sent successfully" -#: sickbeard/webserve.py:919 +#: sickbeard/webserve.py:918 msgid "Test prowl notice failed" msgstr "Test prowl notice failed" -#: sickbeard/webserve.py:926 +#: sickbeard/webserve.py:925 msgid "Boxcar2 notification succeeded. Check your Boxcar2 clients to make sure it worked" msgstr "Boxcar2 notification succeeded. Check your Boxcar2 clients to make sure it worked" -#: sickbeard/webserve.py:928 +#: sickbeard/webserve.py:927 msgid "Error sending Boxcar2 notification" msgstr "Error sending Boxcar2 notification" -#: sickbeard/webserve.py:935 +#: sickbeard/webserve.py:934 msgid "Pushover notification succeeded. Check your Pushover clients to make sure it worked" msgstr "Pushover notification succeeded. Check your Pushover clients to make sure it worked" -#: sickbeard/webserve.py:937 +#: sickbeard/webserve.py:936 msgid "Error sending Pushover notification" msgstr "Error sending Pushover notification" -#: sickbeard/webserve.py:949 +#: sickbeard/webserve.py:948 msgid "Key verification successful" msgstr "Key verification successful" -#: sickbeard/webserve.py:951 +#: sickbeard/webserve.py:950 msgid "Unable to verify key" msgstr "Unable to verify key" -#: sickbeard/webserve.py:958 +#: sickbeard/webserve.py:957 msgid "Tweet successful, check your twitter to make sure it worked" msgstr "Tweet successful, check your twitter to make sure it worked" -#: sickbeard/webserve.py:960 +#: sickbeard/webserve.py:959 msgid "Error sending tweet" msgstr "Error sending tweet" -#: sickbeard/webserve.py:965 +#: sickbeard/webserve.py:964 msgid "Please enter a valid account sid" msgstr "Please enter a valid account sid" -#: sickbeard/webserve.py:968 +#: sickbeard/webserve.py:967 msgid "Please enter a valid auth token" msgstr "Please enter a valid auth token" -#: sickbeard/webserve.py:971 +#: sickbeard/webserve.py:970 msgid "Please enter a valid phone sid" msgstr "Please enter a valid phone sid" -#: sickbeard/webserve.py:974 +#: sickbeard/webserve.py:973 msgid "Please format the phone number as \"+1-###-###-####\"" msgstr "Please format the phone number as \"+1-###-###-####\"" -#: sickbeard/webserve.py:978 +#: sickbeard/webserve.py:977 msgid "Authorization successful and number ownership verified" msgstr "Authorisation successful and number ownership verified" -#: sickbeard/webserve.py:980 +#: sickbeard/webserve.py:979 msgid "Error sending sms" msgstr "Error sending sms" -#: sickbeard/webserve.py:986 +#: sickbeard/webserve.py:985 msgid "Slack message successful" msgstr "Slack message successful" -#: sickbeard/webserve.py:988 +#: sickbeard/webserve.py:987 msgid "Slack message failed" msgstr "Slack message failed" -#: sickbeard/webserve.py:994 +#: sickbeard/webserve.py:993 msgid "Discord message successful" msgstr "Discord message successful" -#: sickbeard/webserve.py:996 +#: sickbeard/webserve.py:995 msgid "Discord message failed" msgstr "Discord message failed" -#: sickbeard/webserve.py:1006 +#: sickbeard/webserve.py:1005 msgid "Test KODI notice sent successfully to {kodi_host}" msgstr "Test KODI notice sent successfully to {kodi_host}" -#: sickbeard/webserve.py:1008 +#: sickbeard/webserve.py:1007 msgid "Test KODI notice failed to {kodi_host}" msgstr "Test KODI notice failed to {kodi_host}" -#: sickbeard/webserve.py:1023 +#: sickbeard/webserve.py:1022 msgid "Successful test notice sent to Plex Home Theater ... {plex_clients}" msgstr "Successful test notice sent to Plex Home Theater ... {plex_clients}" -#: sickbeard/webserve.py:1025 +#: sickbeard/webserve.py:1024 msgid "Test failed for Plex Home Theater ... {plex_clients}" msgstr "Test failed for Plex Home Theater ... {plex_clients}" -#: sickbeard/webserve.py:1028 +#: sickbeard/webserve.py:1027 msgid "Tested Plex Home Theater(s)" msgstr "Tested Plex Home Theater(s)" -#: sickbeard/webserve.py:1042 +#: sickbeard/webserve.py:1041 msgid "Successful test of Plex Media Server(s) ... {plex_servers}" msgstr "Successful test of Plex Media Server(s) ... {plex_servers}" -#: sickbeard/webserve.py:1044 +#: sickbeard/webserve.py:1043 msgid "Test failed, No Plex Media Server host specified" msgstr "Test failed, No Plex Media Server host specified" -#: sickbeard/webserve.py:1046 +#: sickbeard/webserve.py:1045 msgid "Test failed for Plex Media Server(s) ... {plex_servers}" msgstr "Test failed for Plex Media Server(s) ... {plex_servers}" -#: sickbeard/webserve.py:1049 +#: sickbeard/webserve.py:1048 msgid "Tested Plex Media Server host(s)" msgstr "Tested Plex Media Server host(s)" -#: sickbeard/webserve.py:1057 +#: sickbeard/webserve.py:1056 msgid "Tried sending desktop notification via libnotify" msgstr "Tried sending desktop notification via libnotify" -#: sickbeard/webserve.py:1066 +#: sickbeard/webserve.py:1065 msgid "Test notice sent successfully to {emby_host}" msgstr "Test notice sent successfully to {emby_host}" -#: sickbeard/webserve.py:1068 +#: sickbeard/webserve.py:1067 msgid "Test notice failed to {emby_host}" msgstr "Test notice failed to {emby_host}" -#: sickbeard/webserve.py:1076 +#: sickbeard/webserve.py:1075 msgid "Successfully started the scan update" msgstr "Successfully started the scan update" -#: sickbeard/webserve.py:1078 +#: sickbeard/webserve.py:1077 msgid "Test failed to start the scan update" msgstr "Test failed to start the scan update" -#: sickbeard/webserve.py:1097 +#: sickbeard/webserve.py:1096 msgid "Test notice sent successfully to {nmj2_host}" msgstr "Test notice sent successfully to {nmj2_host}" -#: sickbeard/webserve.py:1099 +#: sickbeard/webserve.py:1098 msgid "Test notice failed to {nmj2_host}" msgstr "Test notice failed to {nmj2_host}" -#: sickbeard/webserve.py:1119 +#: sickbeard/webserve.py:1118 msgid "Trakt Authorized" msgstr "Trakt Authorised" -#: sickbeard/webserve.py:1120 +#: sickbeard/webserve.py:1119 msgid "Trakt Not Authorized!" msgstr "Trakt Not Authorised!" -#: sickbeard/webserve.py:1184 +#: sickbeard/webserve.py:1183 msgid "Test email sent successfully! Check inbox." msgstr "Test email sent successfully! Check inbox." -#: sickbeard/webserve.py:1186 +#: sickbeard/webserve.py:1185 msgid "ERROR: {last_error}" msgstr "ERROR: {last_error}" -#: sickbeard/webserve.py:1193 +#: sickbeard/webserve.py:1192 msgid "Test NMA notice sent successfully" msgstr "Test NMA notice sent successfully" -#: sickbeard/webserve.py:1195 +#: sickbeard/webserve.py:1194 msgid "Test NMA notice failed" msgstr "Test NMA notice failed" -#: sickbeard/webserve.py:1202 +#: sickbeard/webserve.py:1201 msgid "Pushalot notification succeeded. Check your Pushalot clients to make sure it worked" msgstr "Pushalot notification succeeded. Check your Pushalot clients to make sure it worked" -#: sickbeard/webserve.py:1204 +#: sickbeard/webserve.py:1203 msgid "Error sending Pushalot notification" msgstr "Error sending Pushalot notification" -#: sickbeard/webserve.py:1211 +#: sickbeard/webserve.py:1210 msgid "Pushbullet notification succeeded. Check your device to make sure it worked" msgstr "Pushbullet notification succeeded. Check your device to make sure it worked" -#: sickbeard/webserve.py:1213 sickbeard/webserve.py:1223 sickbeard/webserve.py:1232 +#: sickbeard/webserve.py:1212 sickbeard/webserve.py:1222 sickbeard/webserve.py:1231 msgid "Error sending Pushbullet notification" msgstr "Error sending Pushbullet notification" #: gui/slick/views/displayShow.mako:436 gui/slick/views/inc_home_showList.mako:174 -#: gui/slick/views/manage.mako:49 sickbeard/webserve.py:1249 +#: gui/slick/views/manage.mako:49 sickbeard/webserve.py:1248 msgid "Status" msgstr "Status" -#: sickbeard/webserve.py:1268 sickbeard/webserve.py:1297 +#: sickbeard/webserve.py:1267 sickbeard/webserve.py:1296 msgid "Restarting SickRage" msgstr "Restarting SickRage" -#: sickbeard/webserve.py:1300 +#: sickbeard/webserve.py:1299 msgid "Update Failed" msgstr "Update Failed" -#: sickbeard/webserve.py:1301 +#: sickbeard/webserve.py:1300 msgid "Update wasn't successful, not restarting. Check your log for more information." msgstr "Update wasn't successful, not restarting. Check your log for more information." -#: sickbeard/webserve.py:1308 +#: sickbeard/webserve.py:1307 msgid "Checking out branch" msgstr "Checking out branch" -#: sickbeard/webserve.py:1311 +#: sickbeard/webserve.py:1310 msgid "Already on branch" msgstr "Already on branch" -#: sickbeard/webserve.py:1339 +#: sickbeard/webserve.py:1338 msgid "Invalid show ID: {show}" msgstr "Invalid show ID: {show}" -#: sickbeard/webserve.py:1342 sickbeard/webserve.py:1871 sickbeard/webserve.py:2002 -#: sickbeard/webserve.py:2040 +#: sickbeard/webserve.py:1341 sickbeard/webserve.py:1870 sickbeard/webserve.py:2001 +#: sickbeard/webserve.py:2039 msgid "Show not in show list" msgstr "Show not in show list" #: gui/slick/views/inc_rootDirs.mako:31 gui/slick/views/manage.mako:38 -#: gui/slick/views/manage_massEdit.mako:74 sickbeard/webserve.py:1358 -#: sickbeard/webserve.py:2027 +#: gui/slick/views/manage_massEdit.mako:74 sickbeard/webserve.py:1357 +#: sickbeard/webserve.py:2026 msgid "Edit" msgstr "Edit" -#: sickbeard/webserve.py:1368 +#: sickbeard/webserve.py:1367 msgid "This show is in the process of being downloaded - the info below is incomplete." msgstr "This show is in the process of being downloaded - the info below is incomplete." -#: sickbeard/webserve.py:1371 +#: sickbeard/webserve.py:1370 msgid "The information on this page is in the process of being updated." msgstr "The information on this page is in the process of being updated." -#: sickbeard/webserve.py:1374 +#: sickbeard/webserve.py:1373 msgid "The episodes below are currently being refreshed from disk" msgstr "The episodes below are currently being refreshed from disk" -#: sickbeard/webserve.py:1377 +#: sickbeard/webserve.py:1376 msgid "Currently downloading subtitles for this show" msgstr "Currently downloading subtitles for this show" -#: sickbeard/webserve.py:1380 +#: sickbeard/webserve.py:1379 msgid "This show is queued to be refreshed." msgstr "This show is queued to be refreshed." -#: sickbeard/webserve.py:1383 +#: sickbeard/webserve.py:1382 msgid "This show is queued and awaiting an update." msgstr "This show is queued and awaiting an update." -#: sickbeard/webserve.py:1386 +#: sickbeard/webserve.py:1385 msgid "This show is queued and awaiting subtitles download." msgstr "This show is queued and awaiting subtitles download." -#: gui/slick/js/core.js:4081 sickbeard/webserve.py:1391 +#: gui/slick/js/core.js:4081 sickbeard/webserve.py:1390 msgid "Resume" msgstr "Resume" #: gui/slick/js/core.js:4081 gui/slick/views/viewlogs.mako:12 -#: sickbeard/webserve.py:1393 +#: sickbeard/webserve.py:1392 msgid "Pause" msgstr "Pause" #: gui/slick/views/editShow.mako:345 gui/slick/views/inc_blackwhitelist.mako:40 #: gui/slick/views/inc_blackwhitelist.mako:85 gui/slick/views/manage.mako:58 -#: gui/slick/views/manage_failedDownloads.mako:43 sickbeard/webserve.py:1395 +#: gui/slick/views/manage_failedDownloads.mako:43 sickbeard/webserve.py:1394 msgid "Remove" msgstr "Remove" -#: sickbeard/webserve.py:1396 +#: sickbeard/webserve.py:1395 msgid "Re-scan files" msgstr "Re-scan files" -#: sickbeard/webserve.py:1397 +#: sickbeard/webserve.py:1396 msgid "Force Full Update" msgstr "Force Full Update" -#: sickbeard/webserve.py:1398 +#: sickbeard/webserve.py:1397 msgid "Update show in KODI" msgstr "Update show in KODI" -#: sickbeard/webserve.py:1399 +#: sickbeard/webserve.py:1398 msgid "Update show in Emby" msgstr "Update show in Emby" -#: sickbeard/webserve.py:1402 +#: sickbeard/webserve.py:1401 msgid "Hide specials" msgstr "Hide specials" -#: sickbeard/webserve.py:1404 +#: sickbeard/webserve.py:1403 msgid "Show specials" msgstr "Show specials" -#: sickbeard/webserve.py:1406 sickbeard/webserve.py:2030 sickbeard/webserve.py:2031 +#: sickbeard/webserve.py:1405 sickbeard/webserve.py:2029 sickbeard/webserve.py:2030 msgid "Preview Rename" msgstr "Preview Rename" -#: sickbeard/webserve.py:1409 +#: sickbeard/webserve.py:1408 msgid "Download Subtitles" msgstr "Download Subtitles" -#: sickbeard/webserve.py:1498 +#: sickbeard/webserve.py:1497 msgid "No scene exceptions" msgstr "No scene exceptions" -#: sickbeard/webserve.py:1516 sickbeard/webserve.py:1764 sickbeard/webserve.py:1785 +#: sickbeard/webserve.py:1515 sickbeard/webserve.py:1763 sickbeard/webserve.py:1784 msgid "Invalid show ID" msgstr "Invalid show ID" -#: sickbeard/webserve.py:1525 sickbeard/webserve.py:1769 sickbeard/webserve.py:1790 +#: sickbeard/webserve.py:1524 sickbeard/webserve.py:1768 sickbeard/webserve.py:1789 msgid "Unable to find the specified show" msgstr "Unable to find the specified show" -#: sickbeard/webserve.py:1550 +#: sickbeard/webserve.py:1549 msgid "Unable to retreive Fansub Groups from AniDB." msgstr "Unable to retrieve Fansub Groups from AniDB." -#: sickbeard/webserve.py:1559 sickbeard/webserve.py:1561 +#: sickbeard/webserve.py:1558 sickbeard/webserve.py:1560 msgid "Edit Show" msgstr "Edit Show" -#: sickbeard/webserve.py:1637 sickbeard/webserve.py:1671 +#: sickbeard/webserve.py:1636 sickbeard/webserve.py:1670 msgid "Unable to refresh this show: {error}" msgstr "Unable to refresh this show: {error}" -#: sickbeard/webserve.py:1663 +#: sickbeard/webserve.py:1662 msgid "New location <tt>{location}</tt> does not exist" msgstr "New location <tt>{location}</tt> does not exist" -#: sickbeard/webserve.py:1688 +#: sickbeard/webserve.py:1687 msgid "Unable to update show: {error}" msgstr "Unable to update show: {error}" -#: sickbeard/webserve.py:1695 +#: sickbeard/webserve.py:1694 msgid "Unable to force an update on scene exceptions of the show." msgstr "Unable to force an update on scene exceptions of the show." -#: sickbeard/webserve.py:1702 +#: sickbeard/webserve.py:1701 msgid "Unable to force an update on scene numbering of the show." msgstr "Unable to force an update on scene numbering of the show." -#: sickbeard/webserve.py:1708 sickbeard/webserve.py:3540 +#: sickbeard/webserve.py:1707 sickbeard/webserve.py:3539 msgid "{num_errors:d} error{plural} while saving changes:" msgstr "{num_errors:d} error{plural} while saving changes:" -#: sickbeard/webserve.py:1719 +#: sickbeard/webserve.py:1718 msgid "{show_name} has been {paused_resumed}" msgstr "{show_name} has been {paused_resumed}" -#: sickbeard/webserve.py:1719 +#: sickbeard/webserve.py:1718 msgid "resumed" msgstr "resumed" -#: sickbeard/webserve.py:1719 +#: sickbeard/webserve.py:1718 msgid "paused" msgstr "paused" -#: sickbeard/webserve.py:1731 +#: sickbeard/webserve.py:1730 msgid "{show_name} has been {deleted_trashed} {was_deleted}" msgstr "{show_name} has been {deleted_trashed} {was_deleted}" -#: sickbeard/webserve.py:1733 +#: sickbeard/webserve.py:1732 msgid "deleted" msgstr "deleted" -#: sickbeard/webserve.py:1733 +#: sickbeard/webserve.py:1732 msgid "trashed" msgstr "trashed" -#: sickbeard/webserve.py:1734 +#: sickbeard/webserve.py:1733 msgid "(media untouched)" msgstr "(media untouched)" -#: sickbeard/webserve.py:1734 +#: sickbeard/webserve.py:1733 msgid "(with all related media)" msgstr "(with all related media)" -#: sickbeard/webserve.py:1755 +#: sickbeard/webserve.py:1754 msgid "Unable to refresh this show." msgstr "Unable to refresh this show." -#: sickbeard/webserve.py:1775 +#: sickbeard/webserve.py:1774 msgid "Unable to update this show." msgstr "Unable to update this show." -#: sickbeard/webserve.py:1814 +#: sickbeard/webserve.py:1813 msgid "Library update command sent to KODI host(s)): {kodi_hosts}" msgstr "Library update command sent to KODI host(s)): {kodi_hosts}" -#: sickbeard/webserve.py:1816 +#: sickbeard/webserve.py:1815 msgid "Unable to contact one or more KODI host(s)): {kodi_hosts}" msgstr "Unable to contact one or more KODI host(s)): {kodi_hosts}" -#: sickbeard/webserve.py:1825 +#: sickbeard/webserve.py:1824 msgid "Library update command sent to Plex Media Server host: {plex_server}" msgstr "Library update command sent to Plex Media Server host: {plex_server}" -#: sickbeard/webserve.py:1828 +#: sickbeard/webserve.py:1827 msgid "Unable to contact Plex Media Server host: {plex_server}" msgstr "Unable to contact Plex Media Server host: {plex_server}" -#: sickbeard/webserve.py:1840 +#: sickbeard/webserve.py:1839 msgid "Library update command sent to Emby host: {emby_host}" msgstr "Library update command sent to Emby host: {emby_host}" -#: sickbeard/webserve.py:1842 +#: sickbeard/webserve.py:1841 msgid "Unable to contact Emby host: {emby_host}" msgstr "Unable to contact Emby host: {emby_host}" -#: sickbeard/webserve.py:1852 sickbeard/webserve.py:2036 +#: sickbeard/webserve.py:1851 sickbeard/webserve.py:2035 msgid "You must specify a show and at least one episode" msgstr "You must specify a show and at least one episode" -#: sickbeard/webserve.py:1861 +#: sickbeard/webserve.py:1860 msgid "Invalid status" msgstr "Invalid status" -#: sickbeard/webserve.py:1954 +#: sickbeard/webserve.py:1953 msgid "Backlog was automatically started for the following seasons of <b>{show_name}</b>" msgstr "Backlog was automatically started for the following series of <b>{show_name}</b>" #: gui/slick/views/displayShow.mako:74 gui/slick/views/displayShow.mako:79 -#: gui/slick/views/displayShow.mako:404 sickbeard/webserve.py:1961 -#: sickbeard/webserve.py:1980 +#: gui/slick/views/displayShow.mako:404 sickbeard/webserve.py:1960 +#: sickbeard/webserve.py:1979 msgid "Season" msgstr "Series" -#: sickbeard/webserve.py:1968 +#: sickbeard/webserve.py:1967 msgid "Backlog started" msgstr "Backlog started" -#: sickbeard/webserve.py:1973 +#: sickbeard/webserve.py:1972 msgid "Retrying Search was automatically started for the following season of <b>{show_name}</b>" msgstr "Retrying Search was automatically started for the following series of <b>{show_name}</b>" -#: sickbeard/webserve.py:1987 +#: sickbeard/webserve.py:1986 msgid "Retry Search started" msgstr "Retry Search started" -#: sickbeard/webserve.py:1997 +#: sickbeard/webserve.py:1996 msgid "You must specify a show" msgstr "You must specify a show" -#: sickbeard/webserve.py:2007 sickbeard/webserve.py:2045 +#: sickbeard/webserve.py:2006 sickbeard/webserve.py:2044 msgid "Can't rename episodes when the show dir is missing." msgstr "Can't rename episodes when the show dir is missing." -#: sickbeard/webserve.py:2212 sickbeard/webserve.py:2233 +#: sickbeard/webserve.py:2211 sickbeard/webserve.py:2232 msgid "New subtitles downloaded: {new_subtitle_languages}" msgstr "New subtitles downloaded: {new_subtitle_languages}" -#: sickbeard/webserve.py:2215 sickbeard/webserve.py:2236 +#: sickbeard/webserve.py:2214 sickbeard/webserve.py:2235 msgid "No subtitles downloaded" msgstr "No subtitles downloaded" #: gui/slick/views/config_general.mako:80 gui/slick/views/layouts/main.mako:222 -#: sickbeard/webserve.py:2363 +#: sickbeard/webserve.py:2362 msgid "IRC" msgstr "IRC" -#: sickbeard/webserve.py:2376 +#: sickbeard/webserve.py:2375 msgid "Could not load news from the repo. [Click here for news.md])({news_url})" msgstr "Could not load news from the repo. [Click here for news.md]) ({news_url})" -#: sickbeard/webserve.py:2383 sickbeard/webserve.py:2401 +#: sickbeard/webserve.py:2382 sickbeard/webserve.py:2400 msgid "The was a problem connecting to github, please refresh and try again" msgstr "The was a problem connecting to github, please refresh and try again" -#: sickbeard/webserve.py:2398 +#: sickbeard/webserve.py:2397 msgid "Could not load changes from the repo. [Click here for CHANGES.md]({changes_url})" msgstr "Could not load changes from the repo. [Click here for CHANGES.md] ({changes_url})" -#: gui/slick/views/layouts/main.mako:223 sickbeard/webserve.py:2403 +#: gui/slick/views/layouts/main.mako:223 sickbeard/webserve.py:2402 msgid "Changelog" msgstr "Changelog" -#: gui/slick/views/layouts/main.mako:190 sickbeard/webserve.py:2413 -#: sickbeard/webserve.py:3855 sickbeard/webserve.py:4341 +#: gui/slick/views/layouts/main.mako:190 sickbeard/webserve.py:2412 +#: sickbeard/webserve.py:3826 sickbeard/webserve.py:4312 msgid "Post Processing" msgstr "Post Processing" -#: gui/slick/views/layouts/main.mako:128 sickbeard/webserve.py:2445 +#: gui/slick/views/layouts/main.mako:128 sickbeard/webserve.py:2444 msgid "Add Shows" msgstr "Add Shows" -#: sickbeard/webserve.py:2510 +#: sickbeard/webserve.py:2509 msgid "No folders selected." msgstr "No folders selected." -#: sickbeard/webserve.py:2632 +#: sickbeard/webserve.py:2631 msgid "New Show" msgstr "New Show" -#: sickbeard/webserve.py:2647 +#: sickbeard/webserve.py:2646 msgid "Trending Shows" msgstr "Trending Shows" -#: sickbeard/webserve.py:2649 sickbeard/webserve.py:2772 +#: sickbeard/webserve.py:2648 sickbeard/webserve.py:2771 msgid "Popular Shows" msgstr "Popular Shows" -#: sickbeard/webserve.py:2651 sickbeard/webserve.py:2665 +#: sickbeard/webserve.py:2650 sickbeard/webserve.py:2664 msgid "Most Anticipated Shows" msgstr "Most Anticipated Shows" -#: sickbeard/webserve.py:2653 +#: sickbeard/webserve.py:2652 msgid "Most Collected Shows" msgstr "Most Collected Shows" -#: sickbeard/webserve.py:2655 +#: sickbeard/webserve.py:2654 msgid "Most Watched Shows" msgstr "Most Watched Shows" -#: sickbeard/webserve.py:2657 +#: sickbeard/webserve.py:2656 msgid "Most Played Shows" msgstr "Most Played Shows" -#: sickbeard/webserve.py:2659 +#: sickbeard/webserve.py:2658 msgid "Recommended Shows" msgstr "Recommended Shows" -#: gui/slick/views/addShows_trendingShows.mako:60 sickbeard/webserve.py:2661 +#: gui/slick/views/addShows_trendingShows.mako:60 sickbeard/webserve.py:2660 msgid "New Shows" msgstr "New Shows" -#: gui/slick/views/addShows_trendingShows.mako:61 sickbeard/webserve.py:2663 +#: gui/slick/views/addShows_trendingShows.mako:61 sickbeard/webserve.py:2662 msgid "Season Premieres" msgstr "Series Premieres" -#: sickbeard/webserve.py:2792 sickbeard/webserve.py:2793 +#: sickbeard/webserve.py:2791 sickbeard/webserve.py:2792 msgid "Existing Show" msgstr "Existing Show" -#: sickbeard/webserve.py:2871 +#: sickbeard/webserve.py:2870 msgid "No root directories setup, please go back and add one." msgstr "No root directories setup, please go back and add one." -#: sickbeard/webserve.py:2883 sickbeard/webserve.py:3002 +#: sickbeard/webserve.py:2882 sickbeard/webserve.py:3001 msgid "Show added" msgstr "Show added" -#: sickbeard/webserve.py:2883 +#: sickbeard/webserve.py:2882 msgid "Adding the specified show {show_name}" msgstr "Adding the specified show {show_name}" -#: sickbeard/webserve.py:2924 +#: sickbeard/webserve.py:2923 msgid "Missing params, no Indexer ID or folder: {show_to_add} and {root_dir}/{show_path}" msgstr "Missing params, no Indexer ID or folder: {show_to_add} and {root_dir}/{show_path}" -#: sickbeard/webserve.py:2933 +#: sickbeard/webserve.py:2932 msgid "Unknown error. Unable to add show due to problem with show selection." msgstr "Unknown error. Unable to add show due to problem with show selection." -#: sickbeard/webserve.py:2957 sickbeard/webserve.py:2967 +#: sickbeard/webserve.py:2956 sickbeard/webserve.py:2966 msgid "Unable to add show" msgstr "Unable to add show" -#: sickbeard/webserve.py:2957 +#: sickbeard/webserve.py:2956 msgid "Folder {show_dir} exists already" msgstr "Folder {show_dir} exists already" -#: sickbeard/webserve.py:2968 +#: sickbeard/webserve.py:2967 msgid "Unable to create the folder {show_dir}, can't add the show" msgstr "Unable to create the folder {show_dir}, can't add the show" -#: sickbeard/webserve.py:3002 +#: sickbeard/webserve.py:3001 msgid "Adding the specified show into {show_dir}" msgstr "Adding the specified show into {show_dir}" -#: sickbeard/webserve.py:3078 +#: sickbeard/webserve.py:3077 msgid "Shows Added" msgstr "Shows Added" -#: sickbeard/webserve.py:3079 +#: sickbeard/webserve.py:3078 msgid "Automatically added {num_shows} from their existing metadata files" msgstr "Automatically added {num_shows} from their existing metadata files" -#: gui/slick/views/layouts/main.mako:153 sickbeard/webserve.py:3096 +#: gui/slick/views/layouts/main.mako:153 sickbeard/webserve.py:3095 msgid "Mass Update" msgstr "Mass Update" -#: sickbeard/webserve.py:3134 sickbeard/webserve.py:3161 sickbeard/webserve.py:3237 -#: sickbeard/webserve.py:3238 +#: sickbeard/webserve.py:3133 sickbeard/webserve.py:3160 sickbeard/webserve.py:3236 +#: sickbeard/webserve.py:3237 msgid "Episode Overview" msgstr "Episode Overview" -#: sickbeard/webserve.py:3270 +#: sickbeard/webserve.py:3269 msgid "Missing Subtitles" msgstr "Missing Subtitles" -#: gui/slick/views/layouts/main.mako:154 sickbeard/webserve.py:3356 -#: sickbeard/webserve.py:3357 +#: gui/slick/views/layouts/main.mako:154 sickbeard/webserve.py:3355 +#: sickbeard/webserve.py:3356 msgid "Backlog Overview" msgstr "Backlog Overview" -#: sickbeard/webserve.py:3481 +#: sickbeard/webserve.py:3480 msgid "Mass Edit" msgstr "Mass Edit" -#: sickbeard/webserve.py:3586 +#: sickbeard/webserve.py:3585 msgid "Unable to update show: {excption_format}" msgstr "Unable to update show: {excption_format}" -#: sickbeard/webserve.py:3594 +#: sickbeard/webserve.py:3593 msgid "Unable to refresh show {show_name}: {excption_format}" msgstr "Unable to refresh show {show_name}: {excption_format}" -#: sickbeard/webserve.py:3605 +#: sickbeard/webserve.py:3604 msgid "Errors encountered" msgstr "Errors encountered" -#: gui/slick/views/config_general.mako:261 sickbeard/webserve.py:3611 +#: gui/slick/views/config_general.mako:261 sickbeard/webserve.py:3610 msgid "Updates" msgstr "Updates" -#: sickbeard/webserve.py:3616 +#: sickbeard/webserve.py:3615 msgid "Refreshes" msgstr "Refreshes" -#: sickbeard/webserve.py:3621 +#: sickbeard/webserve.py:3620 msgid "Renames" msgstr "Renames" #: gui/slick/views/displayShow.mako:260 gui/slick/views/displayShow.mako:435 #: gui/slick/views/editShow.mako:119 gui/slick/views/inc_addShowOptions.mako:20 -#: gui/slick/views/manage_massEdit.mako:262 sickbeard/webserve.py:3626 -#: sickbeard/webserve.py:5244 +#: gui/slick/views/manage_massEdit.mako:262 sickbeard/webserve.py:3625 +#: sickbeard/webserve.py:5215 msgid "Subtitles" msgstr "Subtitles" -#: sickbeard/webserve.py:3631 +#: sickbeard/webserve.py:3630 msgid "The following actions were queued" msgstr "The following actions were queued" -#: sickbeard/webserve.py:3651 -msgid "For best results please set the Download Station alias as" -msgstr "For best results please set the Download Station alias as" - -#: sickbeard/webserve.py:3652 -msgid "You can check this setting in the Synology DSM" -msgstr "You can check this setting in the Synology DSM" - -#: sickbeard/webserve.py:3652 sickbeard/webserve.py:3654 -msgid "Control Panel" -msgstr "Control Panel" - -#: sickbeard/webserve.py:3652 -msgid "Application Portal" -msgstr "Application Portal" - -#: sickbeard/webserve.py:3653 -msgid "Make sure you allow DSM to be embedded with iFrames too in" -msgstr "Make sure you allow DSM to be embedded with iFrames too in" - -#: sickbeard/webserve.py:3654 -msgid "DSM Settings" -msgstr "DSM Settings" - -#: sickbeard/webserve.py:3654 -msgid "Security" -msgstr "Security" - -#: gui/slick/views/layouts/main.mako:167 sickbeard/webserve.py:3662 -msgid "Manage Torrents" -msgstr "Manage Torrents" - -#: gui/slick/views/layouts/main.mako:170 sickbeard/webserve.py:3683 +#: gui/slick/views/layouts/main.mako:170 sickbeard/webserve.py:3654 msgid "Failed Downloads" msgstr "Failed Downloads" -#: gui/slick/views/layouts/main.mako:155 sickbeard/webserve.py:3701 +#: gui/slick/views/layouts/main.mako:155 sickbeard/webserve.py:3672 msgid "Manage Searches" msgstr "Manage Searches" -#: sickbeard/webserve.py:3709 +#: sickbeard/webserve.py:3680 msgid "Backlog search started" msgstr "Backlog search started" -#: sickbeard/webserve.py:3719 +#: sickbeard/webserve.py:3690 msgid "Daily search started" msgstr "Daily search started" -#: sickbeard/webserve.py:3728 +#: sickbeard/webserve.py:3699 msgid "Find propers search started" msgstr "Find propers search started" -#: sickbeard/webserve.py:3737 +#: sickbeard/webserve.py:3708 msgid "Subtitle search started" msgstr "Subtitle search started" -#: sickbeard/webserve.py:3801 +#: sickbeard/webserve.py:3772 msgid "Remove Selected" msgstr "Remove Selected" -#: sickbeard/webserve.py:3802 +#: sickbeard/webserve.py:3773 msgid "Clear History" msgstr "Clear History" -#: sickbeard/webserve.py:3803 +#: sickbeard/webserve.py:3774 msgid "Trim History" msgstr "Trim History" -#: sickbeard/webserve.py:3823 +#: sickbeard/webserve.py:3794 msgid "Selected history entries removed" msgstr "Selected history entries removed" -#: sickbeard/webserve.py:3830 +#: sickbeard/webserve.py:3801 msgid "History cleared" msgstr "History cleared" -#: sickbeard/webserve.py:3837 +#: sickbeard/webserve.py:3808 msgid "Removed history entries older than 30 days" msgstr "Removed history entries older than 30 days" -#: gui/slick/views/layouts/main.mako:185 sickbeard/webserve.py:3850 +#: gui/slick/views/layouts/main.mako:185 sickbeard/webserve.py:3821 msgid "General" msgstr "General" -#: sickbeard/webserve.py:3851 sickbeard/webserve.py:4143 +#: sickbeard/webserve.py:3822 sickbeard/webserve.py:4114 msgid "Backup/Restore" msgstr "Backup/Restore" -#: gui/slick/views/layouts/main.mako:187 sickbeard/webserve.py:3852 -#: sickbeard/webserve.py:4206 +#: gui/slick/views/layouts/main.mako:187 sickbeard/webserve.py:3823 +#: sickbeard/webserve.py:4177 msgid "Search Settings" msgstr "Search Settings" -#: gui/slick/views/layouts/main.mako:188 sickbeard/webserve.py:3853 -#: sickbeard/webserve.py:4518 +#: gui/slick/views/layouts/main.mako:188 sickbeard/webserve.py:3824 +#: sickbeard/webserve.py:4489 msgid "Search Providers" msgstr "Search Providers" -#: gui/slick/views/layouts/main.mako:189 sickbeard/webserve.py:3854 +#: gui/slick/views/layouts/main.mako:189 sickbeard/webserve.py:3825 msgid "Subtitles Settings" msgstr "Subtitles Settings" -#: gui/slick/views/layouts/main.mako:191 sickbeard/webserve.py:3856 -#: sickbeard/webserve.py:4964 +#: gui/slick/views/layouts/main.mako:191 sickbeard/webserve.py:3827 +#: sickbeard/webserve.py:4935 msgid "Notifications" msgstr "Notifications" @@ -1240,142 +1237,142 @@ msgstr "Notifications" #: gui/slick/views/home.mako:35 gui/slick/views/inc_addShowOptions.mako:79 #: gui/slick/views/inc_home_showList.mako:179 gui/slick/views/layouts/main.mako:192 #: gui/slick/views/manage.mako:44 gui/slick/views/manage_massEdit.mako:202 -#: sickbeard/webserve.py:3857 sickbeard/webserve.py:5309 +#: sickbeard/webserve.py:3828 sickbeard/webserve.py:5280 msgid "Anime" msgstr "Anime" -#: sickbeard/webserve.py:3895 sickbeard/webserve.py:3896 +#: sickbeard/webserve.py:3866 sickbeard/webserve.py:3867 msgid "SickRage Configuration" msgstr "SickRage Configuration" -#: sickbeard/webserve.py:3910 +#: sickbeard/webserve.py:3881 msgid "Config - Shares" msgstr "" -#: sickbeard/webserve.py:3910 +#: sickbeard/webserve.py:3881 msgid "Windows Shares Configuration" msgstr "" -#: sickbeard/webserve.py:3937 +#: sickbeard/webserve.py:3908 msgid "Saved Shares" msgstr "" -#: sickbeard/webserve.py:3937 +#: sickbeard/webserve.py:3908 msgid "Your Windows share settings have been saved" msgstr "" -#: sickbeard/webserve.py:3948 +#: sickbeard/webserve.py:3919 msgid "Config - General" msgstr "Config - General" -#: sickbeard/webserve.py:3948 +#: sickbeard/webserve.py:3919 msgid "General Configuration" msgstr "General Configuration" -#: sickbeard/webserve.py:3988 +#: sickbeard/webserve.py:3959 msgid "Saved Defaults" msgstr "Saved Defaults" -#: sickbeard/webserve.py:3988 +#: sickbeard/webserve.py:3959 msgid "Your \"add show\" defaults have been set to your current selections." msgstr "Your \"add show\" defaults have been set to your current selections." -#: sickbeard/webserve.py:4095 +#: sickbeard/webserve.py:4066 msgid "Unable to create directory {directory}, log directory not changed." msgstr "Unable to create directory {directory}, log directory not changed." -#: sickbeard/webserve.py:4103 +#: sickbeard/webserve.py:4074 msgid "Unable to create directory {directory}, https cert directory not changed." msgstr "Unable to create directory {directory}, https cert directory not changed." -#: sickbeard/webserve.py:4107 +#: sickbeard/webserve.py:4078 msgid "Unable to create directory {directory}, https key directory not changed." msgstr "Unable to create directory {directory}, https key directory not changed." -#: sickbeard/webserve.py:4126 sickbeard/webserve.py:4324 sickbeard/webserve.py:4456 -#: sickbeard/webserve.py:5227 +#: sickbeard/webserve.py:4097 sickbeard/webserve.py:4295 sickbeard/webserve.py:4427 +#: sickbeard/webserve.py:5198 msgid "Error(s) Saving Configuration" msgstr "Error(s) Saving Configuration" -#: sickbeard/webserve.py:4129 sickbeard/webserve.py:4327 sickbeard/webserve.py:4458 -#: sickbeard/webserve.py:4950 sickbeard/webserve.py:5230 sickbeard/webserve.py:5294 -#: sickbeard/webserve.py:5323 +#: sickbeard/webserve.py:4100 sickbeard/webserve.py:4298 sickbeard/webserve.py:4429 +#: sickbeard/webserve.py:4921 sickbeard/webserve.py:5201 sickbeard/webserve.py:5265 +#: sickbeard/webserve.py:5294 msgid "Configuration Saved" msgstr "Configuration Saved" -#: sickbeard/webserve.py:4142 +#: sickbeard/webserve.py:4113 msgid "Config - Backup/Restore" msgstr "Config - Backup/Restore" -#: sickbeard/webserve.py:4205 +#: sickbeard/webserve.py:4176 msgid "Config - Episode Search" msgstr "Config - Episode Search" -#: sickbeard/webserve.py:4340 +#: sickbeard/webserve.py:4311 msgid "Config - Post Processing" msgstr "Config - Post Processing" -#: sickbeard/webserve.py:4380 +#: sickbeard/webserve.py:4351 msgid "Unpacking Not Supported, disabling unpack setting" msgstr "Unpacking Not Supported, disabling unpack setting" -#: sickbeard/webserve.py:4431 +#: sickbeard/webserve.py:4402 msgid "You tried saving an invalid normal naming config, not saving your naming settings" msgstr "You tried saving an invalid normal naming config, not saving your naming settings" -#: sickbeard/webserve.py:4439 +#: sickbeard/webserve.py:4410 msgid "You tried saving an invalid anime naming config, not saving your naming settings" msgstr "You tried saving an invalid anime naming config, not saving your naming settings" -#: sickbeard/webserve.py:4517 +#: sickbeard/webserve.py:4488 msgid "Config - Providers" msgstr "Config - Providers" -#: sickbeard/webserve.py:4547 +#: sickbeard/webserve.py:4518 msgid "No Provider Name specified" msgstr "No Provider Name specified" -#: sickbeard/webserve.py:4549 +#: sickbeard/webserve.py:4520 msgid "No Provider Url specified" msgstr "No Provider URL specified" -#: sickbeard/webserve.py:4551 +#: sickbeard/webserve.py:4522 msgid "No Provider Api key specified" msgstr "No Provider API key specified" -#: sickbeard/webserve.py:4963 +#: sickbeard/webserve.py:4934 msgid "Config - Notifications" msgstr "Config - Notifications" -#: sickbeard/webserve.py:5243 +#: sickbeard/webserve.py:5214 msgid "Config - Subtitles" msgstr "Config - Subtitles" -#: sickbeard/webserve.py:5308 +#: sickbeard/webserve.py:5279 msgid "Config - Anime" msgstr "Config - Anime" -#: sickbeard/webserve.py:5336 +#: sickbeard/webserve.py:5307 msgid "Clear Errors" msgstr "Clear Errors" -#: sickbeard/webserve.py:5342 +#: sickbeard/webserve.py:5313 msgid "Clear Warnings" msgstr "Clear Warnings" -#: sickbeard/webserve.py:5348 +#: sickbeard/webserve.py:5319 msgid "Submit Errors" msgstr "Submit Errors" -#: sickbeard/webserve.py:5363 +#: sickbeard/webserve.py:5334 msgid "Logs & Errors" msgstr "Logs & Errors" -#: sickbeard/webserve.py:5388 +#: sickbeard/webserve.py:5359 msgid "Log File" msgstr "Log File" -#: sickbeard/webserve.py:5388 +#: sickbeard/webserve.py:5359 msgid "Logs" msgstr "Logs" @@ -1383,30 +1380,166 @@ msgstr "Logs" msgid "This is a test notification from SickRage" msgstr "This is a test notification from SickRage" -#: gui/slick/js/core.js:481 gui/slick/js/core.js:502 gui/slick/js/core.js:524 -#: gui/slick/js/core.js:548 gui/slick/js/core.js:573 gui/slick/js/core.js:596 -#: gui/slick/js/core.js:625 gui/slick/js/core.js:645 gui/slick/js/core.js:690 -#: gui/slick/js/core.js:769 gui/slick/js/core.js:829 gui/slick/js/core.js:849 -#: gui/slick/js/core.js:879 gui/slick/js/core.js:909 gui/slick/js/core.js:969 -#: gui/slick/js/core.js:1046 gui/slick/js/core.js:1066 gui/slick/js/core.js:1085 +#: gui/slick/js/browser.js:6 +msgid "Choose Directory" +msgstr "" + +#: gui/slick/js/core.js:443 +msgid "Select log file folder location" +msgstr "" + +#: gui/slick/js/core.js:445 +msgid "Select CSS file" +msgstr "" + +#: gui/slick/js/core.js:469 +msgid "Select backup folder to save to" +msgstr "" + +#: gui/slick/js/core.js:470 +msgid "Select backup files to restore" +msgstr "" + +#: gui/slick/js/core.js:479 gui/slick/js/core.js:500 gui/slick/js/core.js:522 +#: gui/slick/js/core.js:546 gui/slick/js/core.js:571 gui/slick/js/core.js:594 +#: gui/slick/js/core.js:623 gui/slick/js/core.js:643 gui/slick/js/core.js:688 +#: gui/slick/js/core.js:767 gui/slick/js/core.js:827 gui/slick/js/core.js:847 +#: gui/slick/js/core.js:877 gui/slick/js/core.js:907 gui/slick/js/core.js:967 +#: gui/slick/js/core.js:1044 gui/slick/js/core.js:1064 gui/slick/js/core.js:1083 msgid "Please fill out the necessary fields above." msgstr "" -#: gui/slick/js/core.js:1328 gui/slick/js/core.js:1378 gui/slick/js/core.js:1427 -#: gui/slick/js/core.js:1493 +#: gui/slick/js/core.js:680 +msgid "<b>Step 1:</b> Confirm Authorization" +msgstr "" + +#: gui/slick/js/core.js:977 +msgid "Check blacklist name; the value needs to be a trakt slug" +msgstr "" + +#: gui/slick/js/core.js:1022 +msgid "You must provide a recipient email address!" +msgstr "" + +#: gui/slick/js/core.js:1107 +msgid "You didn't supply a Pushbullet api key" +msgstr "" + +#: gui/slick/js/core.js:1133 gui/slick/js/core.js:1162 +msgid "Don't forget to save your new pushbullet settings." +msgstr "" + +#: gui/slick/js/core.js:1262 +msgid "Select TV Download Directory" +msgstr "" + +#: gui/slick/js/core.js:1263 +msgid "Select Unpack Directory" +msgstr "" + +#: gui/slick/js/core.js:1326 gui/slick/js/core.js:1376 gui/slick/js/core.js:1425 +#: gui/slick/js/core.js:1491 msgid "This pattern is invalid." msgstr "This pattern is invalid." -#: gui/slick/js/core.js:1336 gui/slick/js/core.js:1386 gui/slick/js/core.js:1435 -#: gui/slick/js/core.js:1501 +#: gui/slick/js/core.js:1334 gui/slick/js/core.js:1384 gui/slick/js/core.js:1433 +#: gui/slick/js/core.js:1499 msgid "This pattern would be invalid without the folders, using it will force \"Season Folders\" on for all shows." msgstr "This pattern would be invalid without the folders, using it will force \"Season Folders\" on for all shows." -#: gui/slick/js/core.js:1344 gui/slick/js/core.js:1394 gui/slick/js/core.js:1443 -#: gui/slick/js/core.js:1509 +#: gui/slick/js/core.js:1342 gui/slick/js/core.js:1392 gui/slick/js/core.js:1441 +#: gui/slick/js/core.js:1507 msgid "This pattern is valid." msgstr "This pattern is valid." +#: gui/slick/js/core.js:1818 +msgid "Select .nzb black hole/watch location" +msgstr "" + +#: gui/slick/js/core.js:1819 +msgid "Select .torrent black hole/watch location" +msgstr "" + +#: gui/slick/js/core.js:1820 +msgid "Select .torrent download location" +msgstr "" + +#: gui/slick/js/core.js:1900 +msgid "Minimum seeding time is" +msgstr "" + +#: gui/slick/js/core.js:1902 +msgid "URL to your uTorrent client (e.g. http://localhost:8000)" +msgstr "" + +#: gui/slick/js/core.js:1905 +msgid "Stop seeding when inactive for" +msgstr "" + +#: gui/slick/js/core.js:1911 +msgid "URL to your Transmission client (e.g. http://localhost:9091)" +msgstr "" + +#: gui/slick/js/core.js:1921 +msgid "URL to your Deluge client (e.g. http://localhost:8112)" +msgstr "" + +#: gui/slick/js/core.js:1930 +msgid "IP or Hostname of your Deluge Daemon (e.g. scgi://localhost:58846)" +msgstr "" + +#: gui/slick/js/core.js:1937 +msgid "URL to your Synology DS client (e.g. http://localhost:5000)" +msgstr "" + +#: gui/slick/js/core.js:1941 +msgid "URL to your rTorrent client (e.g. scgi://localhost:5000 <br> or https://localhost/rutorrent/plugins/httprpc/action.php)" +msgstr "" + +#: gui/slick/js/core.js:1952 +msgid "URL to your qBittorrent client (e.g. http://localhost:8080)" +msgstr "" + +#: gui/slick/js/core.js:1962 +msgid "URL to your MLDonkey (e.g. http://localhost:4080)" +msgstr "" + +#: gui/slick/js/core.js:1974 +msgid "URL to your putio client (e.g. http://localhost:8080)" +msgstr "" + +#: gui/slick/js/core.js:1975 +msgid "<a herf=\"https://app.put.io/oauth/apps/new\" target=\"_blank\"> Create a new OAuth app for put.io</a>" +msgstr "" + +#: gui/slick/js/core.js:1977 +msgid "Put.io Parent Folder" +msgstr "" + +#: gui/slick/js/core.js:1978 +msgid "Put.io OAuth Token" +msgstr "" + +#: gui/slick/js/core.js:3383 gui/slick/views/displayShow.mako:410 +msgid "Show Episodes" +msgstr "Show Episodes" + +#: gui/slick/js/core.js:3388 gui/slick/views/displayShow.mako:408 +msgid "Hide Episodes" +msgstr "Hide Episodes" + +#: gui/slick/js/core.js:3396 +msgid "Select Show Location" +msgstr "" + +#: gui/slick/js/core.js:3460 +msgid "Select Unprocessed Episode Folder" +msgstr "" + +#: gui/slick/js/core.js:3790 +msgid "DELETED" +msgstr "" + #: gui/slick/js/core.js:4082 msgid "Resume updating the log on this page." msgstr "Resume updating the log on this page." @@ -1415,6 +1548,26 @@ msgstr "Resume updating the log on this page." msgid "Pause updating the log on this page." msgstr "Pause updating the log on this page." +#: gui/slick/js/core.js:4323 +msgid "searching {searchingFor}..." +msgstr "" + +#: gui/slick/js/core.js:4334 +msgid "search timed out, try again or try another indexer" +msgstr "" + +#: gui/slick/js/core.js:4503 +msgid "loading folders..." +msgstr "" + +#: gui/slick/js/parsers.js:7 gui/slick/js/parsers.js:8 +#: gui/slick/js/plotTooltip.js:6 gui/slick/js/sceneExceptionsTooltip.js:6 +#: gui/slick/views/inc_home_showList.mako:209 +#: gui/slick/views/inc_home_showList.mako:215 +#: gui/slick/views/inc_home_showList.mako:231 +msgid "Loading..." +msgstr "Loading..." + #: gui/slick/views/404.mako:5 msgid "You have reached this page by accident, please check the url." msgstr "You have reached this page by accident, please check the url." @@ -5717,14 +5870,6 @@ msgstr "Change selected episodes to" msgid "Select Columns" msgstr "Select Columns" -#: gui/slick/views/displayShow.mako:408 -msgid "Hide Episodes" -msgstr "Hide Episodes" - -#: gui/slick/views/displayShow.mako:410 -msgid "Show Episodes" -msgstr "Show Episodes" - #: gui/slick/views/displayShow.mako:424 msgid "NFO" msgstr "NFO" @@ -6243,12 +6388,6 @@ msgstr "Active" msgid "loading" msgstr "loading" -#: gui/slick/views/inc_home_showList.mako:209 -#: gui/slick/views/inc_home_showList.mako:215 -#: gui/slick/views/inc_home_showList.mako:231 -msgid "Loading..." -msgstr "Loading..." - #: gui/slick/views/inc_qualityChooser.mako:31 msgid "<p><b><u>Preferred</u></b> qualities will replace those in <b><u>allowed</u></b>, even if they are lower.</p>" msgstr "<p><b><u>Preferred</u></b> qualities will replace those in <b><u>allowed</u></b>, even if they are lower.</p>" @@ -6786,6 +6925,10 @@ msgstr "Update KODI" msgid "Update Emby" msgstr "Update Emby" +#: gui/slick/views/layouts/main.mako:167 +msgid "Manage Torrents" +msgstr "Manage Torrents" + #: gui/slick/views/layouts/main.mako:173 msgid "Missed Subtitle Management" msgstr "Missed Subtitle Management" diff --git a/locale/en_US/LC_MESSAGES/messages.json b/locale/en_US/LC_MESSAGES/messages.json index 22bfe0ddecf3dd19e040a39ccabd2de7ef87f78c..de55f0d47a20226d109fd50fc007384dddf4f1d0 100644 --- a/locale/en_US/LC_MESSAGES/messages.json +++ b/locale/en_US/LC_MESSAGES/messages.json @@ -1 +1 @@ -{"messages":{"domain":"messages","locale_data":{"messages":{"100":[null,"100"],"250":[null,"250"],"500":[null,"500"],"":{"domain":"messages","plural_forms":"nplurals=2; plural=(n != 1);","lang":"en_US"},"Drama":[null,"Drama"],"Mystery":[null,"Mystery"],"Science-Fiction":[null,"Science-Fiction"],"Crime":[null,"Crime"],"Action":[null,"Action"],"Comedy":[null,"Comedy"],"Thriller":[null,"Thriller"],"Animation":[null,"Animation"],"Family":[null,"Family"],"Fantasy":[null,"Fantasy"],"Adventure":[null,"Adventure"],"Horror":[null,"Horror"],"Film-Noir":[null,"Film-Noir"],"Sci-Fi":[null,"Sci-Fi"],"Romance":[null,"Romance"],"Sport":[null,"Sport"],"War":[null,"War"],"Biography":[null,"Biography"],"History":[null,"History"],"Music":[null,"Music"],"Western":[null,"Western"],"News":[null,"News"],"Sitcom":[null,"Sitcom"],"Reality-TV":[null,"Reality-TV"],"Documentary":[null,"Documentary"],"Game-Show":[null,"Game-Show"],"Musical":[null,"Musical"],"Talk-Show":[null,"Talk-Show"],"Started Download":[null,"Started Download"],"Download Finished":[null,"Download Finished"],"Subtitle Download Finished":[null,"Subtitle Download Finished"],"SickRage Updated":[null,"SickRage Updated"],"SickRage Updated To Commit#: ":[null,"SickRage Updated To Commit#: "],"SickRage new login":[null,"SickRage new login"],"New login from IP: {0}. http://geomaplookup.net/?ip={0}":[null,"New login from IP: {0}. http://geomaplookup.net/?ip={0}"],"Repeat":[null,"Repeat"],"Repeat (Separated)":[null,"Repeat (Separated)"],"Extend":[null,"Extend"],"Extend (Limited)":[null,"Extend (Limited)"],"Extend (Limited, E-prefixed)":[null,"Extend (Limited, E-prefixed)"],"Downloaded":[null,"Downloaded"],"Snatched":[null,"Snatched"],"Snatched (Proper)":[null,"Snatched (Proper)"],"Failed":[null,"Failed"],"Snatched (Best)":[null,"Snatched (Best)"],"Archived":[null,"Archived"],"Unknown":[null,"Unknown"],"Unaired":[null,"Unaired"],"Skipped":[null,"Skipped"],"Wanted":[null,"Wanted"],"Ignored":[null,"Ignore"],"Subtitled":[null,"Subtitled"],"<No Filter>":[null,"<No Filter>"],"Daily Searcher":[null,"Daily Searcher"],"Backlog":[null,"Backlog"],"Show Updater":[null,"Show Updater"],"Check Version":[null,"Check Version"],"Show Queue":[null,"Show Queue"],"Search Queue (All)":[null,"Search Queue (All)"],"Search Queue (Daily Searcher)":[null,"Search Queue (Daily Searcher)"],"Search Queue (Backlog)":[null,"Search Queue (Backlog)"],"Search Queue (Manual)":[null,"Search Queue (Manual)"],"Search Queue (Retry/Failed)":[null,"Search Queue (Retry/Failed)"],"Search Queue (RSS)":[null,"Search Queue (RSS)"],"Find Propers":[null,"Find Propers"],"Postprocessor":[null,"Postprocessor"],"Find Subtitles":[null,"Find Subtitles"],"Trakt Checker":[null,"Trakt Checker"],"Event":[null,"Event"],"Error":[null,"Error"],"Tornado":[null,"Tornado"],"Thread":[null,"Thread"],"Main":[null,"Main"],"Loading":[null,"Loading"],"New update found for SickRage, starting auto-updater":[null,"New update found for SickRage, starting auto-updater"],"Update was successful":[null,"Update was successful"],"Update failed!":[null,"Update failed!"],"Backup":[null,"Backup"],"Config backup in progress...":[null,"Config backup in progress..."],"Config backup successful, updating...":[null,"Config backup successful, updating..."],"Config backup failed, aborting update":[null,"Config backup failed, aborting update"],"No update needed":[null,"No update needed"],"Mako Error":[null,"Mako Error"],"Oops":[null,"Oops"],"Wrong API key used":[null,"Wrong API key used"],"Login":[null,"Login"],"API Key not generated":[null,"API Key not generated"],"API Builder":[null,"API Builder"],"Schedule":[null,"Schedule"],"Test 1":[null,"Test 1"],"This is test number 1":[null,"This is test number 1"],"Test 2":[null,"Test 2"],"This is test number 2":[null,"This is test number 2"],"You're using the {branch} branch. Please use 'master' unless specifically asked":[null,"You're using the {branch} branch. Please use 'master' unless specifically asked"],"Invalid show parameters":[null,"Invalid show parameters"],"Invalid parameters":[null,"Invalid parameters"],"Episode couldn't be retrieved":[null,"Episode couldn't be retrieved"],"Home":[null,"Home"],"Show List":[null,"Show List"],"Error: Unsupported Request. Send jsonp request with 'callback' variable in the query string.":[null,"Error: Unsupported Request. Send jsonp request with 'callback' variable in the query string."],"Success. Connected and authenticated":[null,"Success. Connected and authenticated"],"Authentication failed. SABnzbd expects":[null,"Authentication failed. SABnzbd expects"],"as authentication method":[null,"as authentication method"],"Unable to connect to host":[null,"Unable to connect to host"],"SMS sent successfully":[null,"SMS sent successfully"],"Problem sending SMS: {message}":[null,"Problem sending SMS: {message}"],"Telegram notification succeeded. Check your Telegram clients to make sure it worked":[null,"Telegram notification succeeded. Check your Telegram clients to make sure it worked"],"Error sending Telegram notification: {message}":[null,"Error sending Telegram notification: {message}"],"join notification succeeded. Check your join clients to make sure it worked":[null,"join notification succeeded. Check your join clients to make sure it worked"],"Error sending join notification: {message}":[null,"Error sending join notification: {message}"]," with password":[null," with password"],"Registered and Tested growl successfully {growl_host}":[null,"Registered and Tested growl successfully {growl_host}"],"Registration and Testing of growl failed {growl_host}":[null,"Registration and Testing of growl failed {growl_host}"],"Test prowl notice sent successfully":[null,"Test prowl notice sent successfully"],"Test prowl notice failed":[null,"Test prowl notice failed"],"Boxcar2 notification succeeded. Check your Boxcar2 clients to make sure it worked":[null,"Boxcar2 notification succeeded. Check your Boxcar2 clients to make sure it worked"],"Error sending Boxcar2 notification":[null,"Error sending Boxcar2 notification"],"Pushover notification succeeded. Check your Pushover clients to make sure it worked":[null,"Pushover notification succeeded. Check your Pushover clients to make sure it worked"],"Error sending Pushover notification":[null,"Error sending Pushover notification"],"Key verification successful":[null,"Key verification successful"],"Unable to verify key":[null,"Unable to verify key"],"Tweet successful, check your twitter to make sure it worked":[null,"Tweet successful, check your twitter to make sure it worked"],"Error sending tweet":[null,"Error sending tweet"],"Please enter a valid account sid":[null,"Please enter a valid account sid"],"Please enter a valid auth token":[null,"Please enter a valid auth token"],"Please enter a valid phone sid":[null,"Please enter a valid phone sid"],"Please format the phone number as \"+1-###-###-####\"":[null,"Please format the phone number as \"+1-###-###-####\""],"Authorization successful and number ownership verified":[null,"Authorization successful and number ownership verified"],"Error sending sms":[null,"Error sending sms"],"Slack message successful":[null,"Slack message successful"],"Slack message failed":[null,"Slack message failed"],"Discord message successful":[null,"Discord message successful"],"Discord message failed":[null,"Discord message failed"],"Test KODI notice sent successfully to {kodi_host}":[null,"Test KODI notice sent successfully to {kodi_host}"],"Test KODI notice failed to {kodi_host}":[null,"Test KODI notice failed to {kodi_host}"],"Successful test notice sent to Plex Home Theater ... {plex_clients}":[null,"Successful test notice sent to Plex Home Theater ... {plex_clients}"],"Test failed for Plex Home Theater ... {plex_clients}":[null,"Test failed for Plex Home Theater ... {plex_clients}"],"Tested Plex Home Theater(s)":[null,"Tested Plex Home Theater(s)"],"Successful test of Plex Media Server(s) ... {plex_servers}":[null,"Successful test of Plex Media Server(s) ... {plex_servers}"],"Test failed, No Plex Media Server host specified":[null,"Test failed, No Plex Media Server host specified"],"Test failed for Plex Media Server(s) ... {plex_servers}":[null,"Test failed for Plex Media Server(s) ... {plex_servers}"],"Tested Plex Media Server host(s)":[null,"Tested Plex Media Server host(s)"],"Tried sending desktop notification via libnotify":[null,"Tried sending desktop notification via libnotify"],"Test notice sent successfully to {emby_host}":[null,"Test notice sent successfully to {emby_host}"],"Test notice failed to {emby_host}":[null,"Test notice failed to {emby_host}"],"Successfully started the scan update":[null,"Successfully started the scan update"],"Test failed to start the scan update":[null,"Test failed to start the scan update"],"Test notice sent successfully to {nmj2_host}":[null,"Test notice sent successfully to {nmj2_host}"],"Test notice failed to {nmj2_host}":[null,"Test notice failed to {nmj2_host}"],"Trakt Authorized":[null,"Trakt Authorized"],"Trakt Not Authorized!":[null,"Trakt Not Authorized!"],"Test email sent successfully! Check inbox.":[null,"Test email sent successfully! Check inbox."],"ERROR: {last_error}":[null,"ERROR: {last_error}"],"Test NMA notice sent successfully":[null,"Test NMA notice sent successfully"],"Test NMA notice failed":[null,"Test NMA notice failed"],"Pushalot notification succeeded. Check your Pushalot clients to make sure it worked":[null,"Pushalot notification succeeded. Check your Pushalot clients to make sure it worked"],"Error sending Pushalot notification":[null,"Error sending Pushalot notification"],"Pushbullet notification succeeded. Check your device to make sure it worked":[null,"Pushbullet notification succeeded. Check your device to make sure it worked"],"Error sending Pushbullet notification":[null,"Error sending Pushbullet notification"],"Status":[null,"Status"],"Restarting SickRage":[null,"Restarting SickRage"],"Update Failed":[null,"Update Failed"],"Update wasn't successful, not restarting. Check your log for more information.":[null,"Update wasn't successful, not restarting. Check your log for more information."],"Checking out branch":[null,"Checking out branch"],"Already on branch":[null,"Already on branch"],"Invalid show ID: {show}":[null,"Invalid show ID: {show}"],"Show not in show list":[null,"Show not in show list"],"Edit":[null,"Edit"],"This show is in the process of being downloaded - the info below is incomplete.":[null,"This show is in the process of being downloaded - the info below is incomplete."],"The information on this page is in the process of being updated.":[null,"The information on this page is in the process of being updated."],"The episodes below are currently being refreshed from disk":[null,"The episodes below are currently being refreshed from disk"],"Currently downloading subtitles for this show":[null,"Currently downloading subtitles for this show"],"This show is queued to be refreshed.":[null,"This show is queued to be refreshed."],"This show is queued and awaiting an update.":[null,"This show is queued and awaiting an update."],"This show is queued and awaiting subtitles download.":[null,"This show is queued and awaiting subtitles download."],"Resume":[null,"Resume"],"Pause":[null,"Pause"],"Remove":[null,"Remove"],"Re-scan files":[null,"Re-scan files"],"Force Full Update":[null,"Force Full Update"],"Update show in KODI":[null,"Update show in KODI"],"Update show in Emby":[null,"Update show in Emby"],"Hide specials":[null,"Hide specials"],"Show specials":[null,"Show specials"],"Preview Rename":[null,"Preview Rename"],"Download Subtitles":[null,"Download Subtitles"],"No scene exceptions":[null,"No scene exceptions"],"Invalid show ID":[null,"Invalid show ID"],"Unable to find the specified show":[null,"Unable to find the specified show"],"Unable to retreive Fansub Groups from AniDB.":[null,"Unable to retreive Fansub Groups from AniDB."],"Edit Show":[null,"Edit Show"],"Unable to refresh this show: {error}":[null,"Unable to refresh this show: {error}"],"New location <tt>{location}</tt> does not exist":[null,"New location <tt>{location}</tt> does not exist"],"Unable to update show: {error}":[null,"Unable to update show: {error}"],"Unable to force an update on scene exceptions of the show.":[null,"Unable to force an update on scene exceptions of the show."],"Unable to force an update on scene numbering of the show.":[null,"Unable to force an update on scene numbering of the show."],"{num_errors:d} error{plural} while saving changes:":[null,"{num_errors:d} error{plural} while saving changes:"],"{show_name} has been {paused_resumed}":[null,"{show_name} has been {paused_resumed}"],"resumed":[null,"resumed"],"paused":[null,"paused"],"{show_name} has been {deleted_trashed} {was_deleted}":[null,"{show_name} has been {deleted_trashed} {was_deleted}"],"deleted":[null,"deleted"],"trashed":[null,"trashed"],"(media untouched)":[null,"(media untouched)"],"(with all related media)":[null,"(with all related media)"],"Unable to refresh this show.":[null,"Unable to refresh this show."],"Unable to update this show.":[null,"Unable to update this show."],"Library update command sent to KODI host(s)): {kodi_hosts}":[null,"Library update command sent to KODI host(s)): {kodi_hosts}"],"Unable to contact one or more KODI host(s)): {kodi_hosts}":[null,"Unable to contact one or more KODI host(s)): {kodi_hosts}"],"Library update command sent to Plex Media Server host: {plex_server}":[null,"Library update command sent to Plex Media Server host: {plex_server}"],"Unable to contact Plex Media Server host: {plex_server}":[null,"Unable to contact Plex Media Server host: {plex_server}"],"Library update command sent to Emby host: {emby_host}":[null,"Library update command sent to Emby host: {emby_host}"],"Unable to contact Emby host: {emby_host}":[null,"Unable to contact Emby host: {emby_host}"],"You must specify a show and at least one episode":[null,"You must specify a show and at least one episode"],"Invalid status":[null,"Invalid status"],"Backlog was automatically started for the following seasons of <b>{show_name}</b>":[null,"Backlog was automatically started for the following seasons of <b>{show_name}</b>"],"Season":[null,"Season"],"Backlog started":[null,"Backlog started"],"Retrying Search was automatically started for the following season of <b>{show_name}</b>":[null,"Retrying Search was automatically started for the following season of <b>{show_name}</b>"],"Retry Search started":[null,"Retry Search started"],"You must specify a show":[null,"You must specify a show"],"Can't rename episodes when the show dir is missing.":[null,"Can't rename episodes when the show dir is missing."],"New subtitles downloaded: {new_subtitle_languages}":[null,"New subtitles downloaded: {new_subtitle_languages}"],"No subtitles downloaded":[null,"No subtitles downloaded"],"IRC":[null,"IRC"],"Could not load news from the repo. [Click here for news.md])({news_url})":[null,"Could not load news from the repo. [Click here for news.md])({news_url})"],"The was a problem connecting to github, please refresh and try again":[null,"The was a problem connecting to github, please refresh and try again"],"Could not load changes from the repo. [Click here for CHANGES.md]({changes_url})":[null,"Could not load changes from the repo. [Click here for CHANGES.md]({changes_url})"],"Changelog":[null,"Changelog"],"Post Processing":[null,"Post Processing"],"Add Shows":[null,"Add Shows"],"No folders selected.":[null,"No folders selected."],"New Show":[null,"New Show"],"Trending Shows":[null,"Trending Shows"],"Popular Shows":[null,"Popular Shows"],"Most Anticipated Shows":[null,"Most Anticipated Shows"],"Most Collected Shows":[null,"Most Collected Shows"],"Most Watched Shows":[null,"Most Watched Shows"],"Most Played Shows":[null,"Most Played Shows"],"Recommended Shows":[null,"Recommended Shows"],"New Shows":[null,"New Shows"],"Season Premieres":[null,"Season Premieres"],"Existing Show":[null,"Existing Show"],"No root directories setup, please go back and add one.":[null,"No root directories setup, please go back and add one."],"Show added":[null,"Show added"],"Adding the specified show {show_name}":[null,"Adding the specified show {show_name}"],"Missing params, no Indexer ID or folder: {show_to_add} and {root_dir}/{show_path}":[null,"Missing params, no Indexer ID or folder: {show_to_add} and {root_dir}/{show_path}"],"Unknown error. Unable to add show due to problem with show selection.":[null,"Unknown error. Unable to add show due to problem with show selection."],"Unable to add show":[null,"Unable to add show"],"Folder {show_dir} exists already":[null,"Folder {show_dir} exists already"],"Unable to create the folder {show_dir}, can't add the show":[null,"Unable to create the folder {show_dir}, can't add the show"],"Adding the specified show into {show_dir}":[null,"Adding the specified show into {show_dir}"],"Shows Added":[null,"Shows Added"],"Automatically added {num_shows} from their existing metadata files":[null,"Automatically added {num_shows} from their existing metadata files"],"Mass Update":[null,"Mass Update"],"Episode Overview":[null,"Episode Overview"],"Missing Subtitles":[null,"Missing Subtitles"],"Backlog Overview":[null,"Backlog Overview"],"Mass Edit":[null,"Mass Edit"],"Unable to update show: {excption_format}":[null,"Unable to update show: {excption_format}"],"Unable to refresh show {show_name}: {excption_format}":[null,"Unable to refresh show {show_name}: {excption_format}"],"Errors encountered":[null,"Errors encountered"],"Updates":[null,"Updates"],"Refreshes":[null,"Refreshes"],"Renames":[null,"Renames"],"Subtitles":[null,"Subtitles"],"The following actions were queued":[null,"The following actions were queued"],"For best results please set the Download Station alias as":[null,"For best results please set the Download Station alias as"],"You can check this setting in the Synology DSM":[null,"You can check this setting in the Synology DSM"],"Control Panel":[null,"Control Panel"],"Application Portal":[null,"Application Portal"],"Make sure you allow DSM to be embedded with iFrames too in":[null,"Make sure you allow DSM to be embedded with iFrames too in"],"DSM Settings":[null,"DSM Settings"],"Security":[null,"Security"],"Manage Torrents":[null,"Manage Torrents"],"Failed Downloads":[null,"Failed Downloads"],"Manage Searches":[null,"Manage Searches"],"Backlog search started":[null,"Backlog search started"],"Daily search started":[null,"Daily search started"],"Find propers search started":[null,"Find propers search started"],"Subtitle search started":[null,"Subtitle search started"],"Remove Selected":[null,"Remove Selected"],"Clear History":[null,"Clear History"],"Trim History":[null,"Trim History"],"Selected history entries removed":[null,"Selected history entries removed"],"History cleared":[null,"History cleared"],"Removed history entries older than 30 days":[null,"Removed history entries older than 30 days"],"General":[null,"General"],"Backup/Restore":[null,"Backup/Restore"],"Search Settings":[null,"Search Settings"],"Search Providers":[null,"Search Providers"],"Subtitles Settings":[null,"Subtitles Settings"],"Notifications":[null,"Notifications"],"Anime":[null,"Anime"],"SickRage Configuration":[null,"SickRage Configuration"],"Config - Shares":[null,""],"Windows Shares Configuration":[null,""],"Saved Shares":[null,""],"Your Windows share settings have been saved":[null,""],"Config - General":[null,"Config - General"],"General Configuration":[null,"General Configuration"],"Saved Defaults":[null,"Saved Defaults"],"Your \"add show\" defaults have been set to your current selections.":[null,"Your \"add show\" defaults have been set to your current selections."],"Unable to create directory {directory}, log directory not changed.":[null,"Unable to create directory {directory}, log directory not changed."],"Unable to create directory {directory}, https cert directory not changed.":[null,"Unable to create directory {directory}, https cert directory not changed."],"Unable to create directory {directory}, https key directory not changed.":[null,"Unable to create directory {directory}, https key directory not changed."],"Error(s) Saving Configuration":[null,"Error(s) Saving Configuration"],"Configuration Saved":[null,"Configuration Saved"],"Config - Backup/Restore":[null,"Config - Backup/Restore"],"Config - Episode Search":[null,"Config - Episode Search"],"Config - Post Processing":[null,"Config - Post Processing"],"Unpacking Not Supported, disabling unpack setting":[null,"Unpacking Not Supported, disabling unpack setting"],"You tried saving an invalid normal naming config, not saving your naming settings":[null,"You tried saving an invalid normal naming config, not saving your naming settings"],"You tried saving an invalid anime naming config, not saving your naming settings":[null,"You tried saving an invalid anime naming config, not saving your naming settings"],"Config - Providers":[null,"Config - Providers"],"No Provider Name specified":[null,"No Provider Name specified"],"No Provider Url specified":[null,"No Provider Url specified"],"No Provider Api key specified":[null,"No Provider Api key specified"],"Config - Notifications":[null,"Config - Notifications"],"Config - Subtitles":[null,"Config - Subtitles"],"Config - Anime":[null,"Config - Anime"],"Clear Errors":[null,"Clear Errors"],"Clear Warnings":[null,"Clear Warnings"],"Submit Errors":[null,"Submit Errors"],"Logs & Errors":[null,"Logs & Errors"],"Log File":[null,"Log File"],"Logs":[null,"Logs"],"This is a test notification from SickRage":[null,"This is a test notification from SickRage"],"Please fill out the necessary fields above.":[null,""],"This pattern is invalid.":[null,"This pattern is invalid."],"This pattern would be invalid without the folders, using it will force \"Season Folders\" on for all shows.":[null,"This pattern would be invalid without the folders, using it will force \"Season Folders\" on for all shows."],"This pattern is valid.":[null,"This pattern is valid."],"Resume updating the log on this page.":[null,"Resume updating the log on this page."],"Pause updating the log on this page.":[null,"Pause updating the log on this page."],"You have reached this page by accident, please check the url.":[null,"You have reached this page by accident, please check the url."],"A mako error has occured.<br>\n If this happened during an update a simple page refresh may be the solution.<br>\n Mako errors that happen during updates may be a one time error if there were significant ui changes.":[null,"A mako error has occured. <br>\n If this happened during an update a simple page refresh may be the solution. <br>\n Mako errors that happen during updates may be a one time error if there were significant ui changes."],"Show/Hide Error":[null,"Show/Hide Error"],"Add New Show":[null,"Add New Show"],"For shows that you haven't downloaded yet, this option finds a show on theTVDB.com, creates a directory for it's episodes, and adds it to SickRage.":[null,"For shows that you haven't downloaded yet, this option finds a show on theTVDB.com, creates a directory for it's episodes, and adds it to SickRage."],"Add From Trakt Lists":[null,"Add From Trakt Lists"],"For shows that you haven't downloaded yet, this option lets you choose from a show from one of the Trakt lists to add to SickRage.":[null,"For shows that you haven't downloaded yet, this option lets you choose a show from one of the Trakt lists to add to SickRage."],"Add From IMDB's Popular Shows":[null,"Add From IMDB's Popular Shows"],"View IMDB's list of the most popular shows. This feature uses IMDB's MOVIEMeter algorithm to identify popular TV Series.":[null,"View IMDB's list of the most popular shows. This feature uses IMDB's MOVIEMeter algorithm to identify popular TV Series."],"Add Existing Shows":[null,"Add Existing Shows"],"Use this option to add shows that already have a folder created on your hard drive. SickRage will scan your existing metadata/episodes and add the show accordingly.":[null,"Use this option to add shows that already have a folder created on your hard drive. SickRage will scan your existing metadata/episodes and add the show accordingly."],"Add Existing Show":[null,"Add Existing Show"],"Manage Directories":[null,"Manage Directories"],"Customize Options":[null,"Customize Options"],"SickRage can add existing shows, using the current options, by using locally stored NFO/XML metadata to eliminate user interaction. If you would rather have SickRage prompt you to customize each show, then use the checkbox below.":[null,"SickRage can add existing shows, using the current options, by using locally stored NFO/XML metadata to eliminate user interaction. If you would rather have SickRage prompt you to customize each show, then use the checkbox below."],"Prompt me to set settings for each show":[null,"Prompt me to set settings for each show"],"Displaying folders within these directories which aren't already added to SickRage":[null,"Displaying folders within these directories which aren't already added to SickRage"],"Submit":[null,"Submit"],"Find a show on theTVDB":[null,"Find a show on theTVDB"],"Show retrieved from existing metadata":[null,"Show retrieved from existing metadata"],"All Indexers":[null,"All Indexers"],"Search":[null,"Search"],"This will only affect the language of the retrieved metadata file contents and episode filenames.":[null,"This will only affect the language of the retrieved metadata file contents and episode filenames."],"This <b>DOES NOT</b> allow SickRage to download non-english TV episodes!":[null,"This <b>DOES NOT</b> allow SickRage to download non-english TV episodes!"],"Pick the parent folder":[null,"Pick the parent folder"],"Pre-chosen Destination Folder":[null,"Pre-chosen Destination Folder"],"Customize options":[null,"Customize options"],"Add Show":[null,"Add Show"],"Skip Show":[null,"Skip Show"],"Sort By":[null,"Sort By"],"Name":[null,"Name"],"Original":[null,"Original"],"Votes":[null,"Votes"],"Rating":[null,"Rating"],"Rating > Votes":[null,"Rating > Votes"],"Sort Order":[null,"Sort Order"],"Asc":[null,"Asc"],"Desc":[null,"Desc"],"Fetching of IMDB Data failed. Are you online?":[null,"Fetching of IMDB Data failed. Are you online?"],"Exception":[null,"Exception"],"Select Trakt List":[null,"Select Trakt List"],"Most Anticipated":[null,"Most Anticipated"],"Trending":[null,"Trending"],"Popular":[null,"Popular"],"Most Watched":[null,"Most Watched"],"Most Played":[null,"Most Played"],"Most Collected":[null,"Most Collected"],"Recommended":[null,"Recommended"],"Toggle navigation":[null,"Toggle navigation"],"Profile":[null,"Profile"],"JSONP":[null,"JSONP"],"Back to SickRage":[null,"Back to SickRage"],"Parameters":[null,"Parameters"],"Required":[null,"Required"],"Description":[null,"Description"],"Type":[null,"Type"],"Default value":[null,"Default value"],"Allowed values":[null,"Allowed values"],"Playground":[null,"Playground"],"Clear":[null,"Clear"],"Yes":[null,"Yes"],"No":[null,"No"],"season":[null,"season"],"episode":[null,"episode"],"Python Version":[null,"Python Version"],"SSL Version":[null,"SSL Version"],"OS":[null,"OS"],"Locale":[null,"Locale"],"User":[null,"User"],"Program Folder":[null,"Program Folder"],"Config File":[null,"Config File"],"Database File":[null,"Database File"],"Cache Folder":[null,"Cache Folder"],"Log Folder":[null,"Log Folder"],"Arguments":[null,"Arguments"],"Web Root":[null,"Web Root"],"Website":[null,"Website"],"Wiki":[null,"Wiki"],"Source":[null,"Source"],"IRC Chat":[null,"IRC Chat"],"AnimeDB Settings":[null,"AnimeDB Settings"],"Look & Feel":[null,"Look & Feel"],"AniDB is non-profit database of anime information that is freely open to the public":[null,"AniDB is non-profit database of anime information that is freely open to the public"],"Enable":[null,"Enable"],"should SickRage use data from AniDB?":[null,"should SickRage use data from AniDB?"],"AniDB Username":[null,"AniDB Username"],"username of your AniDB account":[null,"username of your AniDB account"],"AniDB Password":[null,"AniDB Password"],"password of your AniDB account":[null,"password of your AniDB account"],"AniDB MyList":[null,"AniDB MyList"],"do you want to add the PostProcessed episodes to the MyList?":[null,"do you want to add the PostProcessed episodes to the MyList?"],"Look and Feel":[null,"Look and Feel"],"How should the anime functions show and behave.":[null,"How should the anime functions show and behave."],"Split show lists":[null,"Split show lists"],"separate anime and normal shows in groups":[null,"separate anime and normal shows in groups"],"Split in tabs":[null,"Split in tabs"],"use tabs for when splitting show lists":[null,"use tabs for when splitting show lists"],"Restore":[null,"Restore"],"Backup your main database file and config.":[null,"Backup your main database file and config."],"Select the folder you wish to save your backup file to":[null,"Select the folder you wish to save your backup file to"],"Restore your main database file and config.":[null,"Restore your main database file and config."],"Select the backup file you wish to restore":[null,"Select the backup file you wish to restore"],"Misc":[null,"Misc"],"Interface":[null,"Interface"],"Advanced Settings":[null,"Advanced Settings"],"Startup options. Indexer options. Log and show file locations.":[null,"Startup options. Indexer options. Log and show file locations."],"Some options may require a manual restart to take effect.":[null,"Some options may require a manual restart to take effect."],"Default Indexer Language":[null,"Default Indexer Language"],"for adding shows and metadata providers":[null,"for adding shows and metadata providers"],"Launch browser":[null,"Launch browser"],"open the SickRage home page on startup":[null,"open the SickRage home page on startup"],"Initial page":[null,"Initial page"],"Shows":[null,"Shows"],"when launching SickRage interface":[null,"when launching SickRage interface"],"Choose hour to update shows":[null,"Choose hour to update shows"],"with information such as next air dates, show ended, etc. Use 15 for 3pm, 4 for 4am etc.":[null,"with information such as next air dates, show ended, etc. Use 15 for 3pm, 4 for 4am etc."],"note":[null,"note"],"minutes are randomized each time SickRage is started":[null,"minutes are randomized each time SickRage is started"],"Send to trash for actions":[null,"Send to trash for actions"],"when using show \"Remove\" and delete files":[null,"when using show \"Remove\" and delete files"],"on scheduled deletes of the oldest log files":[null,"on scheduled deletes of the oldest log files"],"selected actions use trash (recycle bin) instead of the default permanent delete":[null,"selected actions use trash (recycle bin) instead of the default permanent delete"],"Log file folder location":[null,"Log file folder location"],"Number of Log files saved":[null,"Number of Log files saved"],"number of log files saved when rotating logs (default: 5) (REQUIRES RESTART)":[null,"number of log files saved when rotating logs (default: 5) (REQUIRES RESTART)"],"Size of Log files saved":[null,"Size of Log files saved"],"maximum size in MB of the log file (default: 1MB) (REQUIRES RESTART)":[null,"maximum size in MB of the log file (default: 1MB) (REQUIRES RESTART)"],"Use initial indexer set to":[null,"Use initial indexer set to"],"as the default selection when adding new shows":[null,"as the default selection when adding new shows"],"Timeout show indexer at":[null,"Timeout show indexer at"],"seconds of inactivity when finding new shows (default:20)":[null,"seconds of inactivity when finding new shows (default:20)"],"Show root directories":[null,"Show root directories"],"where the files of shows are located":[null,"where the files of shows are located"],"Save Changes":[null,"Save Changes"],"Options for software updates.":[null,"Options for software updates."],"Check software updates":[null,"Check software updates"],"and display notifications when updates are available. Checks are run on startup and at the frequency set below*":[null,"and display notifications when updates are available. Checks are run on startup and at the frequency set below*"],"Automatically update":[null,"Automatically update"],"fetch and install software updates. Updates are run on startup and in the background at the frequency set below*":[null,"fetch and install software updates. Updates are run on startup and in the background at the frequency set below*"],"Check the server every*":[null,"Check the server every*"],"hours for software updates (default:1)":[null,"hours for software updates (default:1)"],"Notify on software update":[null,"Notify on software update"],"send a message to all enabled notifiers when SickRage has been updated":[null,"send a message to all enabled notifiers when SickRage has been updated"],"User Interface":[null,"User Interface"],"Options for visual appearance.":[null,"Options for visual appearance."],"Interface Language":[null,"Interface Language"],"System Language":[null,"System Language"],"for appearance to take effect, save then refresh your browser":[null,"for appearance to take effect, save then refresh your browser"],"Display theme":[null,"Display theme"],"Dark":[null,"Dark"],"Light":[null,"Light"],"Use a background image":[null,"Use a background image"],"use a custom image as background for SickRage":[null,"use a custom image as background for SickRage"],"Background Path":[null,"Background Path"],"Path to the background image":[null,"Path to the background image"],"Show fanart in the background":[null,"Show fanart in the background"],"on the show summary page":[null,"on the show summary page"],"Fanart transparency":[null,"Fanart transparency"],"transparency of the fanart in the background":[null,"transparency of the fanart in the background"],"Use a custom stylesheet file":[null,""],"use a custom .css file to style SickRage (for advanced users)":[null,""],"Stylesheet File Path":[null,""],"Path to the stylesheet (.css) file":[null,""],"Show all seasons":[null,"Show all seasons"],"Sort with \"The\", \"A\", \"An\"":[null,"Sort with \"The\", \"A\", \"An\""],"include articles (\"The\", \"A\", \"An\") when sorting show lists":[null,"include articles (\"The\", \"A\", \"An\") when sorting show lists"],"Missed episodes range":[null,"Missed episodes range"],"set the range in days of the missed episodes in the Schedule page":[null,"set the range in days of the missed episodes in the Schedule page"],"Display fuzzy dates":[null,"Display fuzzy dates"],"move absolute dates into tooltips and display e.g. \"Last Thu\", \"On Tue\"":[null,"move absolute dates into tooltips and display e.g. \"Last Thu\", \"On Tue\""],"Trim zero padding":[null,"Trim zero padding"],"remove the leading number \"0\" shown on hour of day, and date of month":[null,"remove the leading number \"0\" shown on hour of day, and date of month"],"Date style":[null,"Date style"],"Use System Default":[null,"Use System Default"],"Time style":[null,"Time style"],"seconds are only shown on the History page":[null,"seconds are only shown on the History page"],"Timezone":[null,"Timezone"],"Local":[null,"Local"],"Network":[null,"Network"],"display dates and times in either your timezone or the shows network timezone":[null,"display dates and times in either your timezone or the shows network timezone"],"use local timezone to start searching for episodes minutes after show ends (depends on your dailysearch frequency)":[null,"use local timezone to start searching for episodes minutes after show ends (depends on your dailysearch frequency)"],"Download url":[null,"Download url"],"URL where the shows can be downloaded.":[null,"URL where the shows can be downloaded."],"Web Interface":[null,"Web Interface"],"it is recommended that you enable a username and password to secure SickRage from being tampered with remotely.":[null,"it is recommended that you enable a username and password to secure SickRage from being tampered with remotely."],"these options require a manual restart to take effect.":[null,"these options require a manual restart to take effect."],"API key":[null,"API key"],"used to give 3rd party programs limited access to SickRage":[null,"used to give 3rd party programs limited access to SickRage"],"you can try all the features of the API":[null,"you can try all the features of the API"],"here":[null,"here"],"HTTP logs":[null,"HTTP logs"],"enable logs from the internal Tornado web server":[null,"enable logs from the internal Tornado web server"],"HTTP username":[null,"HTTP username"],"set blank for no login":[null,"set blank for no login"],"HTTP password":[null,"HTTP password"],"blank = no authentication":[null,"blank = no authentication"],"HTTP port":[null,"HTTP port"],"web port to browse and access SickRage (default:8081)":[null,"web port to browse and access SickRage (default:8081)"],"Notify on login":[null,"Notify on login"],"enable to be notified when a new login happens in webserver":[null,"enable to be notified when a new login happens in webserver"],"Listen on IPv6":[null,"Listen on IPv6"],"attempt binding to any available IPv6 address":[null,"attempt binding to any available IPv6 address"],"Enable HTTPS":[null,"Enable HTTPS"],"enable access to the web interface using a HTTPS address":[null,"enable access to the web interface using a HTTPS address"],"HTTPS certificate":[null,"HTTPS certificate"],"file name or path to HTTPS certificate":[null,"file name or path to HTTPS certificate"],"HTTPS key":[null,"HTTPS key"],"file name or path to HTTPS key":[null,"file name or path to HTTPS key"],"Reverse proxy headers":[null,"Reverse proxy headers"],"accept the following reverse proxy headers (advanced)...":[null,"accept the following reverse proxy headers (advanced)..."],"(X-Forwarded-For, X-Forwarded-Host, and X-Forwarded-Proto)":[null,"(X-Forwarded-For, X-Forwarded-Host, and X-Forwarded-Proto)"],"CPU throttling":[null,"CPU throttling"],"Normal (default). High is lower and Low is higher CPU use":[null,"Normal (default). High is lower and Low is higher CPU use"],"Anonymous redirect":[null,"Anonymous redirect"],"backlink protection via anonymizer service, must end in \"?\"":[null,"backlink protection via anonymizer service, must end in \"?\""],"Enable debug":[null,"Enable debug"],"enable debug logs":[null,"enable debug logs"],"Verify SSL Certs":[null,"Verify SSL Certs"],"verify SSL Certificates (Disable this for broken SSL installs (Like QNAP))":[null,"verify SSL Certificates (Disable this for broken SSL installs (Like QNAP))"],"No Restart":[null,"No Restart"],"only shutdown when restarting SR":[null,"only shutdown when restarting SR"],"only select this when you have external software restarting SR automatically when it stops (like FireDaemon)":[null,"only select this when you have external software restarting SR automatically when it stops (like FireDaemon)"],"Encrypt passwords":[null,"Encrypt passwords"],"in the <code>config.ini</code> file":[null,"in the <code>config.ini</code> file"],"warning":[null,"warning"],"passwords must only contain":[null,"passwords must only contain"],"ASCII characters":[null,"ASCII characters"],"Unprotected calendar":[null,"Unprotected calendar"],"allow subscribing to the calendar without user and password":[null,"allow subscribing to the calendar without user and password"],"some services like Google Calendar only work this way":[null,"some services like Google Calendar only work this way"],"Google Calendar Icons":[null,"Google Calendar Icons"],"show an icon next to exported calendar events in Google Calendar":[null,"show an icon next to exported calendar events in Google Calendar"],"Proxy host":[null,"Proxy host"],"blank to disable or proxy to use when connecting to providers":[null,"blank to disable or proxy to use when connecting to providers"],"also use global proxy setting for indexers (tvdb, xem, anidb, etc.)":[null,"also use global proxy setting for indexers (tvdb, xem, anidb, etc.)"],"Skip Remove Detection":[null,"Skip Remove Detection"],"skip detection of removed files":[null,"skip detection of removed files"],"if disabled the episode will be set to the default deleted status":[null,"if disabled the episode will be set to the default deleted status"],"Default deleted episode status":[null,"Default deleted episode status"],"define the status to be set for media file that has been deleted.":[null,"define the status to be set for media file that has been deleted."],"Archived option will keep previous downloaded quality":[null,"Archived option will keep previous downloaded quality"],"example: Downloaded (1080p WEB-DL) ==> Archived (1080p WEB-DL)":[null,"example: Downloaded (1080p WEB-DL) ==> Archived (1080p WEB-DL)"],"Options for github related features.":[null,"Options for github related features."],"Branch version":[null,"Branch version"],"error: No branches found.":[null,"error: No branches found."],"select branch to use (restart required)":[null,"select branch to use (restart required)"],"Authorization Type":[null,"Authorization Type"],"Username and password":[null,"Username and password"],"Personal access token":[null,"Personal access token"],"You must use a personal access token if you're using \"two-factor authentication\" on GitHub.":[null,"You must use a personal access token if you're using \"two-factor authentication\" on GitHub."],"GitHub username":[null,"GitHub username"],"*** (REQUIRED FOR SUBMITTING ISSUES) ***":[null,"*** (REQUIRED FOR SUBMITTING ISSUES) ***"],"GitHub password":[null,"GitHub password"],"GitHub personal access token":[null,"GitHub personal access token"],"Generate Token":[null,"Generate Token"],"Manage Tokens":[null,"Manage Tokens"],"GitHub remote for branch":[null,"GitHub remote for branch"],"access repo configured remotes (save then refresh browser)":[null,"access repo configured remotes (save then refresh browser)"],"default":[null,"default"],"origin":[null,"origin"],"Git executable path":[null,"Git executable path"],"only needed if OS is unable to locate git from env":[null,"only needed if OS is unable to locate git from env"],"Git reset":[null,"Git reset"],"removes untracked files and performs a hard reset on git branch automatically to help resolve update issues":[null,"removes untracked files and performs a hard reset on git branch automatically to help resolve update issues"],"Home Theater / NAS":[null,"Home Theater / NAS"],"Devices":[null,"Devices"],"Social":[null,"Social"],"A free and open source cross-platform media center and home entertainment system software with a 10-foot user interface designed for the living-room TV.":[null,"A free and open source cross-platform media center and home entertainment system software with a 10-foot user interface designed for the living-room TV."],"send KODI commands?":[null,"send KODI commands?"],"Always on":[null,"Always on"],"log errors when unreachable?":[null,"log errors when unreachable?"],"Notify on snatch":[null,"Notify on snatch"],"send a notification when a download starts?":[null,"send a notification when a download starts?"],"Notify on download":[null,"Notify on download"],"send a notification when a download finishes?":[null,"send a notification when a download finishes?"],"Notify on subtitle download":[null,"Notify on subtitle download"],"send a notification when subtitles are downloaded?":[null,"send a notification when subtitles are downloaded?"],"Update library":[null,"Update library"],"update KODI library when a download finishes?":[null,"update KODI library when a download finishes?"],"Full library update":[null,"Full library update"],"perform a full library update if update per-show fails?":[null,"perform a full library update if update per-show fails?"],"Only update first host":[null,"Only update first host"],"only send library updates to the first active host?":[null,"only send library updates to the first active host?"],"KODI IP:Port":[null,"KODI IP:Port"],"host running KODI (eg. 192.168.1.100:8080)":[null,"host running KODI (eg. 192.168.1.100:8080)"],"(multiple host strings must be separated by commas)":[null,"(multiple host strings must be separated by commas)"],"Username":[null,"Username"],"username for your KODI server (blank for none)":[null,"username for your KODI server (blank for none)"],"Password":[null,"Password"],"password for your KODI server (blank for none)":[null,"password for your KODI server (blank for none)"],"Click below to test.":[null,"Click below to test."],"Experience your media on a visually stunning, easy to use interface on your Mac connected to your TV. Your media library has never looked this good!":[null,"Experience your media on a visually stunning, easy to use interface on your Mac connected to your TV. Your media library has never looked this good!"],"For sending notifications to Plex Home Theater (PHT) clients, use the KODI notifier with port <b>3005</b>.":[null,"For sending notifications to Plex Home Theater (PHT) clients, use the KODI notifier with port <b>3005</b>."],"send Plex Media Server library updates?":[null,"send Plex Media Server library updates?"],"Plex Media Server Auth Token":[null,"Plex Media Server Auth Token"],"auth token used by Plex":[null,"auth token used by Plex"],"Update Library":[null,"Update Library"],"update Plex Media Server library when a download finishes":[null,"update Plex Media Server library when a download finishes"],"Plex Media Server IP:Port":[null,"Plex Media Server IP:Port"],"one or more hosts running Plex Media Server<br/>(eg. 192.168.1.1:32400, 192.168.1.2:32400)":[null,"one or more hosts running Plex Media Server<br/>(eg. 192.168.1.1:32400, 192.168.1.2:32400)"],"HTTPS":[null,"HTTPS"],"use https for plex media server requests?":[null,"use https for plex media server requests?"],"Click below to test Plex Media Server(s)":[null,"Click below to test Plex Media Server(s)"],"Test Plex Media Server":[null,"Test Plex Media Server"],"Plex Home Theater":[null,"Plex Home Theater"],"send Plex Home Theater notifications?":[null,"send Plex Home Theater notifications?"],"Plex Home Theater IP:Port":[null,"Plex Home Theater IP:Port"],"one or more hosts running Plex Home Theater<br>(eg. 192.168.1.100:3000, 192.168.1.101:3000)":[null,"one or more hosts running Plex Home Theater<br>(eg. 192.168.1.100:3000, 192.168.1.101:3000)"],"Click below to test Plex Home Theater(s)":[null,"Click below to test Plex Home Theater(s)"],"Test Plex Home Theater":[null,"Test Plex Home Theater"],"some Plex Home Theaters <b class=\"boldest\">do not</b> support notifications e.g. Plexapp for Samsung TVs":[null,"some Plex Home Theaters <b class=\"boldest\">do not</b> support notifications e.g. Plexapp for Samsung TVs"],"Emby":[null,"Emby"],"A home media server built using other popular open source technologies.":[null,"A home media server built using other popular open source technologies."],"send update commands to Emby?":[null,"send update commands to Emby?"],"Emby IP:Port":[null,"Emby IP:Port"],"host running Emby (eg. 192.168.1.100:8096)":[null,"host running Emby (eg. 192.168.1.100:8096)"],"Emby API Key":[null,"Emby API Key"],"Networked Media Jukebox":[null,"Networked Media Jukebox"],"The Networked Media Jukebox, or NMJ, is the official media jukebox interface made available for the Popcorn Hour 200-series.":[null,"The Networked Media Jukebox, or NMJ, is the official media jukebox interface made available for the Popcorn Hour 200-series."],"send update commands to NMJ?":[null,"send update commands to NMJ?"],"Popcorn IP address":[null,"Popcorn IP address"],"IP address of Popcorn 200-series (eg. 192.168.1.100)":[null,"IP address of Popcorn 200-series (eg. 192.168.1.100)"],"Get settings":[null,"Get settings"],"Get Settings":[null,"Get Settings"],"the Popcorn Hour device must be powered on and NMJ running.":[null,"the Popcorn Hour device must be powered on and NMJ running."],"NMJ database":[null,"NMJ database"],"automatically filled via the 'Get Settings' button.":[null,"automatically filled via the 'Get Settings' button."],"NMJ mount url":[null,"NMJ mount url"],"Networked Media Jukebox v2":[null,"Networked Media Jukebox v2"],"The Networked Media Jukebox, or NMJv2, is the official media jukebox interface made available for the Popcorn Hour 300 & 400-series.":[null,"The Networked Media Jukebox, or NMJv2, is the official media jukebox interface made available for the Popcorn Hour 300 & 400-series."],"send update commands to NMJv2?":[null,"send update commands to NMJv2?"],"IP address of Popcorn 300/400-series (eg. 192.168.1.100)":[null,"IP address of Popcorn 300/400-series (eg. 192.168.1.100)"],"Database location":[null,"Database location"],"Database instance":[null,"Database instance"],"adjust this value if the wrong database is selected.":[null,"adjust this value if the wrong database is selected."],"Find database":[null,"Find database"],"Find Database":[null,"Find Database"],"the Popcorn Hour device must be powered on.":[null,"the Popcorn Hour device must be powered on."],"NMJv2 database":[null,"NMJv2 database"],"automatically filled via the 'Find Database' buttons.":[null,"automatically filled via the 'Find Database' buttons."],"Synology":[null,"Synology"],"The Synology DiskStation NAS.":[null,"The Synology DiskStation NAS."],"Synology Indexer is the daemon running on the Synology NAS to build its media database.":[null,"Synology Indexer is the daemon running on the Synology NAS to build its media database."],"send Synology notifications?":[null,"send Synology notifications?"],"requires SickRage to be running on your Synology NAS.":[null,"requires SickRage to be running on your Synology NAS."],"Synology Indexer":[null,"Synology Indexer"],"Synology Notifier is the notification system of Synology DSM":[null,"Synology Notifier is the notification system of Synology DSM"],"send notifications to the Synology Notifier?":[null,"send notifications to the Synology Notifier?"],"pyTivo":[null,"pyTivo"],"pyTivo is both an HMO and GoBack server. This notifier will load the completed downloads to your Tivo.":[null,"pyTivo is both an HMO and GoBack server. This notifier will load the completed downloads to your Tivo."],"send notifications to pyTivo?":[null,"send notifications to pyTivo?"],"requires the downloaded files to be accessible by pyTivo.":[null,"requires the downloaded files to be accessible by pyTivo."],"pyTivo IP:Port":[null,"pyTivo IP:Port"],"host running pyTivo (eg. 192.168.1.1:9032)":[null,"host running pyTivo (eg. 192.168.1.1:9032)"],"pyTivo share name":[null,"pyTivo share name"],"value used in pyTivo Web Configuration to name the share.":[null,"value used in pyTivo Web Configuration to name the share."],"Tivo name":[null,"Tivo name"],"(Messages & Settings > Account & System Information > System Information > DVR name)":[null,"(Messages & Settings > Account & System Information > System Information > DVR name)"],"Growl":[null,"Growl"],"A cross-platform unobtrusive global notification system.":[null,"A cross-platform unobtrusive global notification system."],"send Growl notifications?":[null,"send Growl notifications?"],"Growl IP:Port":[null,"Growl IP:Port"],"host running Growl (eg. 192.168.1.100:23053)":[null,"host running Growl (eg. 192.168.1.100:23053)"],"may leave blank if SickRage is on the same host.":[null,"may leave blank if SickRage is on the same host."],"otherwise Growl <b>requires</b> a password to be used.":[null,"otherwise Growl <b>requires</b> a password to be used."],"Click below to register and test Growl, this is required for Growl notifications to work.":[null,"Click below to register and test Growl, this is required for Growl notifications to work."],"Register Growl":[null,"Register Growl"],"Prowl":[null,"Prowl"],"A Growl client for iOS.":[null,"A Growl client for iOS."],"send Prowl notifications?":[null,"send Prowl notifications?"],"Prowl Message Title":[null,"Prowl Message Title"],"Global Prowl API key(s)":[null,"Global Prowl API key(s)"],"Prowl API(s) listed here, separated by commas if applicable, will<br> receive notifications for <b>all</b> shows. Your Prowl API key is available at:":[null,"Prowl API(s) listed here, separated by commas if applicable, will<br> receive notifications for <b>all</b> shows. Your Prowl API key is available at:"],"(this field may be blank except when testing.)":[null,"(this field may be blank except when testing.)"],"Show notification list":[null,"Show notification list"],"-- Select a Show --":[null,"-- Select a Show --"],"Configure per-show notifications here by entering Prowl API key(s), separated by commas, '\n 'after selecting a show in the drop-down box. Be sure to activate the 'Save for this show' '\n 'button below after each entry.":[null,"Configure per-show notifications here by entering Prowl API key(s), separated by commas, '\n 'after selecting a show in the drop-down box. Be sure to activate the 'Save for this show' '\n 'button below after each entry."],"Save for this show":[null,"Save for this show"],"Prowl priority":[null,"Prowl priority"],"Very Low":[null,"Very Low"],"Moderate":[null,"Moderate"],"Normal":[null,"Normal"],"High":[null,"High"],"Emergency":[null,"Emergency"],"priority of Prowl messages from SickRage.":[null,"priority of Prowl messages from SickRage."],"Libnotify":[null,"Libnotify"],"The standard desktop notification API for Linux/*nix systems. This notifier will only function if the pynotify module is installed (Ubuntu/Debian package <a href=\"apt:python-notify\">python-notify</a>).":[null,"The standard desktop notification API for Linux/*nix systems. This notifier will only function if the pynotify module is installed (Ubuntu/Debian package <a href=\"apt:python-notify\">python-notify</a>)."],"send Libnotify notifications?":[null,"send Libnotify notifications?"],"Pushover":[null,"Pushover"],"Pushover makes it easy to send real-time notifications to your Android and iOS devices.":[null,"Pushover makes it easy to send real-time notifications to your Android and iOS devices."],"send Pushover notifications?":[null,"send Pushover notifications?"],"Pushover key":[null,"Pushover key"],"user key of your Pushover account":[null,"user key of your Pushover account"],"Pushover API key":[null,"Pushover API key"],"click here":[null,""]," to create a Pushover API key":[null,""],"Pushover devices":[null,"Pushover devices"],"comma separated list of pushover devices you want to send notifications to":[null,"comma separated list of pushover devices you want to send notifications to"],"Pushover notification sound":[null,"Pushover notification sound"],"Bike":[null,"Bike"],"Bugle":[null,"Bugle"],"Cash Register":[null,"Cash Register"],"Classical":[null,"Classical"],"Cosmic":[null,"Cosmic"],"Falling":[null,"Falling"],"Gamelan":[null,"Gamelan"],"Incoming":[null,"Incoming"],"Intermission":[null,"Intermission"],"Magic":[null,"Magic"],"Mechanical":[null,"Mechanical"],"Piano Bar":[null,"Piano Bar"],"Siren":[null,"Siren"],"Space Alarm":[null,"Space Alarm"],"Tug Boat":[null,"Tug Boat"],"Alien Alarm (long)":[null,"Alien Alarm (long)"],"Climb (long)":[null,"Climb (long)"],"Persistent (long)":[null,"Persistent (long)"],"Pushover Echo (long)":[null,"Pushover Echo (long)"],"Up Down (long)":[null,"Up Down (long)"],"None (silent)":[null,"None (silent)"],"Device specific":[null,"Device specific"],"choose notification sound to use":[null,"choose notification sound to use"],"Pushover priority":[null,"Pushover priority"],"Choose priority to use":[null,"Choose priority to use"],"Boxcar 2":[null,"Boxcar 2"],"Read your messages where and when you want them!":[null,"Read your messages where and when you want them!"],"send Boxcar notifications?":[null,"send Boxcar notifications?"],"Boxcar2 access token":[null,"Boxcar2 access token"],"access token for your Boxcar account.":[null,"access token for your Boxcar account."],"NMA":[null,"NMA"],"Notify My Android":[null,"Notify My Android"],"Notify My Android is a Prowl-like Android App and API that offers an easy way to send notifications from your application directly to your Android device.":[null,"Notify My Android is a Prowl-like Android App and API that offers an easy way to send notifications from your application directly to your Android device."],"send NMA notifications?":[null,"send NMA notifications?"],"NMA API key":[null,"NMA API key"],"(multiple keys must be separated by commas, up to a maximum of 5)":[null,"(multiple keys must be separated by commas, up to a maximum of 5)"],"NMA priority":[null,"NMA priority"],"priority of NMA messages from SickRage.":[null,"priority of NMA messages from SickRage."],"Pushalot":[null,"Pushalot"],"Pushalot is a platform for receiving custom push notifications to connected devices running Windows Phone or Windows 8.":[null,"Pushalot is a platform for receiving custom push notifications to connected devices running Windows Phone or Windows 8."],"send Pushalot notifications ?":[null,"send Pushalot notifications ?"],"Pushalot authorization token":[null,"Pushalot authorization token"],"authorization token of your Pushalot account.":[null,"authorization token of your Pushalot account."],"Pushbullet":[null,"Pushbullet"],"Pushbullet is a platform for receiving custom push notifications to connected devices running Android/iOS and desktop browsers such as Chrome, Firefox or Opera.":[null,"Pushbullet is a platform for receiving custom push notifications to connected devices running Android/iOS and desktop browsers such as Chrome, Firefox or Opera."],"send Pushbullet notifications?":[null,"send Pushbullet notifications?"],"Pushbullet API key":[null,"Pushbullet API key"],"API key of your Pushbullet account":[null,"API key of your Pushbullet account"],"Pushbullet devices":[null,"Pushbullet devices"],"Update device list":[null,"Update device list"],"Pushbullet channels":[null,"Pushbullet channels"],"Free Mobile":[null,"Free Mobile"],"Free Mobile is a famous French cellular network provider.<br> It provides to their customer a free SMS API.":[null,"Free Mobile is a famous French cellular network provider. <br> It provides their customers with a free SMS API."],"send SMS notifications?":[null,"send SMS notifications?"],"send a SMS when a download starts?":[null,"send a SMS when a download starts?"],"send a SMS when a download finishes?":[null,"send a SMS when a download finishes?"],"send a SMS when subtitles are downloaded?":[null,"send a SMS when subtitles are downloaded?"],"Free Mobile customer ID":[null,"Free Mobile customer ID"],"it's your Free Mobile customer ID (8 digits)":[null,"it's your Free Mobile customer ID (8 digits)"],"Free Mobile API key":[null,"Free Mobile API key"],"find your API key in your customer portal.":[null,"find your API key in your customer portal."],"Click below to test your settings.":[null,"Click below to test your settings."],"Telegram":[null,"Telegram"],"Telegram is a cloud-based instant messaging service.":[null,"Telegram is a cloud-based instant messaging service."],"send Telegram notifications?":[null,"send Telegram notifications?"],"send a message when a download starts?":[null,"send a message when a download starts?"],"send a message when a download finishes?":[null,"send a message when a download finishes?"],"send a message when subtitles are downloaded?":[null,"send a message when subtitles are downloaded?"],"User/group ID":[null,"User/group ID"],"contact @myidbot on Telegram to get an ID":[null,"contact @myidbot on Telegram to get an ID"],"Bot API token":[null,"Bot API token"],"contact @BotFather on Telegram to set up one":[null,"contact @BotFather on Telegram to set up one"],"Join":[null,"Join"],"Join all of your devices together!":[null,"Join all of your devices together!"],"send Join notifications?":[null,"send Join notifications?"],"Device ID":[null,"Device ID"],"per device specific id":[null,"per device specific id"]," to create a Join API key":[null,""],"Twilio":[null,"Twilio"],"Twilio is a webservice API that allows you to communicate directly with a mobile number. This notifier will send a text directly to your mobile device.":[null,"Twilio is a webservice API that allows you to communicate directly with a mobile number. This notifier will send a text directly to your mobile device."],"should SickRage text your mobile device?":[null,"should SickRage text your mobile device?"],"Twilio Account SID":[null,"Twilio Account SID"],"account SID of your Twilio account.":[null,"account SID of your Twilio account."],"Twilio Auth Token":[null,"Twilio Auth Token"],"Twilio Phone SID":[null,"Twilio Phone SID"],"phone SID that you would like to send the sms from":[null,"phone SID that you would like to send the sms from"],"Your phone number":[null,"Your phone number"],"phone number that will receive the sms. Please use the format +1-###-###-####":[null,"phone number that will receive the sms. Please use the format +1-###-###-####"],"Twitter":[null,"Twitter"],"A social networking and microblogging service, enabling its users to send and read other users' messages called tweets.":[null,"A social networking and microblogging service, enabling its users to send and read other users' messages called tweets."],"should SickRage post tweets on Twitter?":[null,"should SickRage post tweets on Twitter?"],"you may want to use a secondary account.":[null,"you may want to use a secondary account."],"send direct message":[null,"send direct message"],"send a notification via Direct Message, not via status update":[null,"send a notification via Direct Message, not via status update"],"send DM to":[null,"send DM to"],"Twitter account to send Direct Messages to (must follow you)":[null,"Twitter account to send Direct Messages to (must follow you)"],"Step One":[null,"Step One"],"Request Authorization":[null,"Request Authorization"],"Click the \"Request Authorization\" button.<br> This will open a new page containing an auth key.<br> <b>note:</b> if nothing happens check your popup blocker.":[null,"Click the \"Request Authorization\" button.<br> This will open a new page containing an auth key.<br> <b>note:</b> if nothing happens check your popup blocker."],"Step Two":[null,"Step Two"],"Enter the key Twitter gave you below, and click \"Verify Key\".":[null,"Enter the key Twitter gave you below, and click \"Verify Key\"."],"Trakt":[null,"Trakt"],"Trakt helps keep a record of what TV shows and movies you are watching. Based on your favorites, Trakt recommends additional shows and movies you'll enjoy!":[null,"Trakt helps keep a record of what TV shows and movies you are watching. Based on your favorites, Trakt recommends additional shows and movies you'll enjoy!"],"send Trakt.tv notifications?":[null,"send Trakt.tv notifications?"],"username of your Trakt account.":[null,"username of your Trakt account."],"Trakt PIN":[null,"Trakt PIN"],"Get Trakt PIN":[null,"Get Trakt PIN"],"PIN code to authorize SickRage to access Trakt on your behalf.":[null,"PIN code to authorize SickRage to access Trakt on your behalf."],"API Timeout":[null,"API Timeout"],"seconds to wait for Trakt API to respond. (Use 0 to wait forever)":[null,"seconds to wait for Trakt API to respond. (Use 0 to wait forever)"],"Default indexer":[null,"Default indexer"],"Sync libraries":[null,"Sync libraries"],"sync your SickRage show library with your trakt show library.":[null,"sync your SickRage show library with your trakt show library."],"Remove Episodes From Collection":[null,"Remove Episodes From Collection"],"remove an episode from your Trakt Collection if it is not in your SickRage Library.":[null,"remove an episode from your Trakt Collection if it is not in your SickRage Library."],"Sync watchlist":[null,"Sync watchlist"],"sync your SickRage show watchlist with your trakt show watchlist (either Show and Episode).":[null,"sync your SickRage show watchlist with your trakt show watchlist (either Show and Episode)."],"episode will be added on watch list when wanted or snatched and will be removed when downloaded ":[null,"episode will be added on watch list when wanted or snatched and will be removed when downloaded "],"Watchlist add method":[null,"Watchlist add method"],"Skip All":[null,"Skip All"],"Download Pilot Only":[null,"Download Pilot Only"],"Get whole show":[null,"Get whole show"],"method in which to download episodes for new shows.":[null,"method in which to download episodes for new shows."],"Remove episode":[null,"Remove episode"],"remove an episode from your watchlist after it is downloaded.":[null,"remove an episode from your watchlist after it is downloaded."],"Remove series":[null,"Remove series"],"remove the whole series from your watchlist after any download.":[null,"remove the whole series from your watchlist after any download."],"Remove watched show":[null,"Remove watched show"],"remove the show from sickrage if it's ended and completely watched":[null,"remove the show from sickrage if it's ended and completely watched"],"Start paused":[null,"Start paused"],"shows grabbed from your trakt watchlist start paused.":[null,"shows grabbed from your trakt watchlist start paused."],"Trakt blackList name":[null,"Trakt blackList name"],"name (slug) of list on Trakt for blacklisting show on 'Add Trending Show' & 'Add Recommended Shows' pages":[null,"name (slug) of list on Trakt for blacklisting show on 'Add Trending Show' & 'Add Recommended Shows' pages"],"Email":[null,"Email"],"Allows configuration of email notifications on a per show basis.":[null,"Allows configuration of email notifications on a per show basis."],"send email notifications?":[null,"send email notifications?"],"SMTP host":[null,"SMTP host"],"hostname of your SMTP email server.":[null,"hostname of your SMTP email server."],"SMTP port":[null,"SMTP port"],"port number used to connect to your SMTP host.":[null,"port number used to connect to your SMTP host."],"SMTP from":[null,"SMTP from"],"sender email address, some hosts require a real address.":[null,"sender email address, some hosts require a real address."],"Use TLS":[null,"Use TLS"],"check to use TLS encryption.":[null,"check to use TLS encryption."],"SMTP user":[null,"SMTP user"],"(optional) your SMTP server username.":[null,"(optional) your SMTP server username."],"SMTP password":[null,"SMTP password"],"(optional) your SMTP server password.":[null,"(optional) your SMTP server password."],"Global email list":[null,"Global email list"],"email addresses listed here, separated by commas if applicable, will<br> receive notifications for <b>all</b> shows.":[null,"email addresses listed here, separated by commas if applicable, will<br> receive notifications for <b>all</b> shows."],"(This field may be blank except when testing.)":[null,"(This field may be blank except when testing.)"],"Email Subject":[null,"Email Subject"],"use a custom subject for some privacy protection?":[null,"use a custom subject for some privacy protection?"],"(leave blank for the default SickRage subject)":[null,"(leave blank for the default SickRage subject)"],"configure per-show notifications here by entering email address(es), separated by commas,":[null,"configure per-show notifications here by entering email address(es), separated by commas,"],"after selecting a show in the drop-down box. Be sure to activate the 'Save for this show'":[null,"after selecting a show in the drop-down box. Be sure to activate the 'Save for this show'"],"button below after each entry.":[null,"button below after each entry."],"Slack":[null,"Slack"],"Slack brings all your communication together in one place. It's real-time messaging, archiving and search for modern teams.":[null,"Slack brings all your communication together in one place. It's real-time messaging, archiving and search for modern teams."],"should SickRage post messages on Slack?":[null,"should SickRage post messages on Slack?"],"Slack Incoming Webhook":[null,"Slack Incoming Webhook"],"Discord":[null,"Discord"],"All-in-one voice and text chat for gamers that's free, secure, and works on both your desktop and phone.":[null,"All-in-one voice and text chat for gamers that's free, secure, and works on both your desktop and phone."],"Should SickRage post messages on Discord?":[null,"Should SickRage post messages on Discord?"],"Discord Incoming Webhook":[null,"Discord Incoming Webhook"],"Create webhook under channel settings.":[null,"Create webhook under channel settings."],"Discord Bot Name":[null,"Discord Bot Name"],"Blank will use webhook default Name.":[null,"Blank will use webhook default Name."],"Discord Avatar URL":[null,"Discord Avatar URL"],"Blank will use webhook default Avatar.":[null,"Blank will use webhook default Avatar."],"Discord TTS":[null,"Discord TTS"],"Send notifications using text-to-speech":[null,"Send notifications using text-to-speech"],"Post-Processing":[null,"Post-Processing"],"Episode Naming":[null,"Episode Naming"],"Metadata":[null,"Metadata"],"Settings that dictate how SickRage should process completed downloads.":[null,"Settings that dictate how SickRage should process completed downloads."],"enable the automatic post processor to scan and process any files in your Post Processing Dir":[null,"enable the automatic post processor to scan and process any files in your Post Processing Dir"],"do not use if you use an external Post Processing script":[null,"do not use if you use an external Post Processing script"],"Post Processing Dir":[null,"Post Processing Dir"],"the folder where your download client puts the completed TV downloads.":[null,"the folder where your download client puts the completed TV downloads."],"please use seperate downloading and completed folders in your download client if possible.":[null,"please use seperate downloading and completed folders in your download client if possible."],"Processing Method":[null,"Processing Method"],"what method should be used to put files into the library?":[null,"what method should be used to put files into the library?"],"if you keep seeding torrents after they finish, please avoid the 'move' processing method to prevent errors.":[null,"if you keep seeding torrents after they finish, please avoid the 'move' processing method to prevent errors."],"Auto Post-Processing Frequency":[null,"Auto Post-Processing Frequency"],"time in minutes to check for new files to auto post-process (min 10)":[null,"time in minutes to check for new files to auto post-process (min 10)"],"Postpone post processing":[null,"Postpone post processing"],"wait to process a folder if sync files are present.":[null,"wait to process a folder if sync files are present."],"Sync File Extensions":[null,"Sync File Extensions"],"comma seperated list of extensions or filename globs SickRage ignores when Post Processing":[null,"comma seperated list of extensions or filename globs SickRage ignores when Post Processing"],"Rename Episodes":[null,"Rename Episodes"],"rename episode using the Episode Naming settings?":[null,"rename episode using the Episode Naming settings?"],"Create missing show directories":[null,"Create missing show directories"],"create missing show directories when they get deleted":[null,"create missing show directories when they get deleted"],"Add shows without directory":[null,"Add shows without directory"],"add shows without creating a directory (not recommended)":[null,"add shows without creating a directory (not recommended)"],"Move associated files":[null,"Move associated files"],"move associated (srt/srr/sfv/etc) files while post processing?":[null,"move associated (srt/srr/sfv/etc) files while post processing?"],"Rename .nfo file":[null,"Rename .nfo file"],"rename the original .nfo file to .nfo-orig to avoid conflicts?":[null,"rename the original .nfo file to .nfo-orig to avoid conflicts?"],"Associated file extensions":[null,"Associated file extensions"],"comma separated list of associated file extensions SickRage should keep while post processing.":[null,"comma separated list of associated file extensions SickRage should keep while post processing."],"leaving it empty means no associated files will be post processed":[null,"leaving it empty means no associated files will be post processed"],"Delete non associated files":[null,"Delete non associated files"],"delete non associated files while post processing?":[null,"delete non associated files while post processing?"],"Change File Date":[null,"Change File Date"],"set last modified filedate to the date that the episode aired?":[null,"set last modified filedate to the date that the episode aired?"],"some systems may ignore this feature.":[null,"some systems may ignore this feature."],"Timezone for File Date":[null,"Timezone for File Date"],"local":[null,"local"],"network":[null,"network"],"what timezone should be used to change File Date?":[null,"what timezone should be used to change File Date?"],"Unpack":[null,"Unpack"],"What to do with archived releases found in your <i>TV Download Dir</i>?":[null,"What to do with archived releases found in your <i>TV Download Dir</i>?"],"Ignore (do not process contents)":[null,"Ignore (do not process contents)"],"Unpack (process contents)":[null,"Unpack (process contents)"],"Treat as video (process archive as-is)":[null,"Treat as video (process archive as-is)"],"'Unpack' only works with RAR archives":[null,"'Unpack' only works with RAR archives"],"Windows":[null,"Windows"],"WinRar is required on windows":[null,"WinRar is required on windows"],"Unpack Directory":[null,"Unpack Directory"],"Choose a path to unpack files, leave blank to unpack in download dir":[null,"Choose a path to unpack files, leave blank to unpack in download dir"],"Unrar Location":[null,"Unrar Location"],"add the path to unrar if it is not in the system path":[null,"add the path to unrar if it is not in the system path"],"Alternate Unrar Tool":[null,"Alternate Unrar Tool"],"add the path to an alternate unrar tool if it is not in the system path":[null,"add the path to an alternate unrar tool if it is not in the system path"],"Delete RAR contents":[null,"Delete RAR contents"],"delete content of RAR files, even if Process Method not set to move?":[null,"delete content of RAR files, even if Process Method not set to move?"],"only working with RAR archive":[null,"only working with RAR archive"],"Don't delete empty folders":[null,"Don't delete empty folders"],"leave empty folders when Post Processing?":[null,"leave empty folders when Post Processing?"],"can be overridden using manual Post Processing":[null,"can be overridden using manual Post Processing"],"Follow symbolic-links":[null,"Follow symbolic-links"],"follow down symbolic links in download directory?":[null,"follow down symbolic links in download directory?"],"<b>EXPERTS ONLY.</b><br>Enable only if you know what <b>circular symbolic links</b> are,<br>and can <b>verify that you have none</b>.":[null,"<b>EXPERTS ONLY.</b><br>Enable only if you know what <b>circular symbolic links</b> are,<br>and can <b>verify that you have none</b>."],"Use icacls":[null,"Use icacls"],"Windows only":[null,"Windows only"],"sets video permissions after using the move method in post processing":[null,"sets video permissions after using the move method in post processing"],"Extra Scripts":[null,"Extra Scripts"],"see":[null,"see"],"for script arguments description and usage.":[null,"for script arguments description and usage."],"How SickRage will name and sort your episodes.":[null,"How SickRage will name and sort your episodes."],"Name Pattern":[null,"Name Pattern"],"Toggle Naming Legend":[null,"Toggle Naming Legend"],"don't forget to add quality pattern. Otherwise after post-processing the episode will have UNKNOWN quality":[null,"don't forget to add quality pattern. Otherwise after post-processing the episode will have UNKNOWN quality"],"Meaning":[null,"Meaning"],"Pattern":[null,"Pattern"],"Result":[null,"Result"],"Use lower case if you want lower case names (eg. %sn, %e.n, %q_n etc)":[null,"Use lower case if you want lower case names (eg. %sn, %e.n, %q_n etc)"],"Show Name":[null,"Show Name"],"Show.Name":[null,"Show.Name"],"Show_Name":[null,"Show_Name"],"Season Number":[null,"Season Number"],"XEM Season Number":[null,"XEM Season Number"],"Episode Number":[null,"Episode Number"],"XEM Episode Number":[null,"XEM Episode Number"],"Episode Name":[null,"Episode Name"],"Episode.Name":[null,"Episode.Name"],"Episode_Name":[null,"Episode_Name"],"Air Date":[null,"Air Date"],"Post-Processing Date":[null,"Post-Processing Date"],"Quality":[null,"Quality"],"Scene Quality":[null,"Scene Quality"],"Release Name":[null,"Release Name"],"SickRage' is used in place of RLSGROUP if it could not be properly detected":[null,"SickRage' is used in place of RLSGROUP if it could not be properly detected"],"Release Group":[null,"Release Group"],"If episode is proper/repack add 'proper' to name.":[null,"If episode is proper/repack add 'proper' to name."],"Release Type":[null,"Release Type"],"Multi-Episode Style":[null,"Multi-Episode Style"],"Single-EP Sample":[null,"Single-EP Sample"],"Multi-EP sample":[null,"Multi-EP sample"],"Strip Show Year":[null,"Strip Show Year"],"remove the TV show's year when renaming the file?":[null,"remove the TV show's year when renaming the file?"],"only applies to shows that have year inside parentheses":[null,"only applies to shows that have year inside parentheses"],"Custom Air-By-Date":[null,"Custom Air-By-Date"],"name air-by-date shows differently than regular shows?":[null,"name air-by-date shows differently than regular shows?"],"Toggle ABD Naming Legend":[null,"Toggle ABD Naming Legend"],"Regular Air Date":[null,"Regular Air Date"],"Year":[null,"Year"],"Month":[null,"Month"],"Day":[null,"Day"],"Multi-EP style is ignored":[null,"Multi-EP style is ignored"],"Custom Sports":[null,"Custom Sports"],"name sports shows differently than regular shows?":[null,"name sports shows differently than regular shows?"],"Toggle Sports Naming Legend":[null,"Toggle Sports Naming Legend"],"Sports Air Date":[null,"Sports Air Date"],"Custom Anime":[null,"Custom Anime"],"name anime shows differently than regular shows?":[null,"name anime shows differently than regular shows?"],"Toggle Anime Naming Legend":[null,"Toggle Anime Naming Legend"],">XEM Season Number":[null,">XEM Season Number"],"Single-EP Anime Sample":[null,"Single-EP Anime Sample"],"Multi-EP Anime sample":[null,"Multi-EP Anime sample"],"Add Absolute Number":[null,"Add Absolute Number"],"add the absolute number to the season/episode format?":[null,"add the absolute number to the season/episode format?"],"only applies to anime. (eg. S15E45 - 310 vs S15E45)":[null,"only applies to anime. (eg. S15E45 - 310 vs S15E45)"],"Only Absolute Number":[null,"Only Absolute Number"],"replace season/episode format with absolute number":[null,"replace season/episode format with absolute number"],"only applies to anime.":[null,"only applies to anime."],"No Absolute Number":[null,"No Absolute Number"],"don't include the absolute number":[null,"don't include the absolute number"],"The data associated to the data. These are files associated to a TV show in the form of images and text that, when supported, will enhance the viewing experience.":[null,"The data associated to the data. These are files associated to a TV show in the form of images and text that, when supported, will enhance the viewing experience."],"Metadata Type":[null,"Metadata Type"],"toggle metadata options that you wish to be created":[null,"toggle metadata options that you wish to be created"],"multiple targets may be used":[null,"multiple targets may be used"],"Select Metadata":[null,"Select Metadata"],"Provider Priorities":[null,"Provider Priorities"],"Provider Options":[null,"Provider Options"],"Configure Custom Newznab Providers":[null,"Configure Custom Newznab Providers"],"Configure Custom Torrent Providers":[null,"Configure Custom Torrent Providers"],"Check off and drag the providers into the order you want them to be used.":[null,"Check off and drag the providers into the order you want them to be used."],"At least one provider is required but two are recommended.":[null,"At least one provider is required but two are recommended."],"Torrent providers can be toggled in ":[null,"Torrent providers can be toggled in "],"Provider does not support backlog searches at this time.":[null,"Provider does not support backlog searches at this time."],"Provider is <b>NOT WORKING</b>.":[null,"Provider is <b>NOT WORKING</b>."],"Configure individual provider settings here.":[null,"Configure individual provider settings here."],"Check with provider's website on how to obtain an API key if needed.":[null,"Check with provider's website on how to obtain an API key if needed."],"Configure provider":[null,"Configure provider"],"no providers available to configure.":[null,"no providers available to configure."],"URL":[null,"URL"],"Enable daily searches":[null,"Enable daily searches"],"enable provider to perform daily searches.":[null,"enable provider to perform daily searches."],"Enable backlog searches":[null,"Enable backlog searches"],"enable provider to perform backlog searches.":[null,"enable provider to perform backlog searches."],"Season search mode":[null,"Season search mode"],"when searching for complete seasons you can choose to have it look for season packs only, or choose to have it build a complete season from just single episodes.":[null,"when searching for complete seasons you can choose to have it look for season packs only, or choose to have it build a complete season from just single episodes."],"season packs only.":[null,"season packs only."],"episodes only.":[null,"episodes only."],"Enable fallback":[null,"Enable fallback"],"when searching for a complete season depending on search mode you may return no results, this helps by restarting the search using the opposite search mode.":[null,"when searching for a complete season depending on search mode you may return no results, this helps by restarting the search using the opposite search mode."],"Custom URL":[null,"Custom URL"],"the URL should include the protocol (and port if applicable). Examples: http://192.168.1.4/ or http://localhost:3000/":[null,"the URL should include the protocol (and port if applicable). Examples: http://192.168.1.4/ or http://localhost:3000/"],"Api key":[null,"Api key"],"Digest":[null,"Digest"],"Hash":[null,"Hash"],"Passkey":[null,"Passkey"],"Cookies":[null,"Cookies"],"example: uid=1234;pass=567845439634987<br>note: uid and pass are not your username/password.<br>use DevTools or Firebug to get these values after logging in on your browser.":[null,"example: uid=1234;pass=567845439634987<br>note: uid and pass are not your username/password.<br>use DevTools or Firebug to get these values after logging in on your browser."],"Pin":[null,"Pin"],"Seed ratio":[null,"Seed ratio"],"stop transfer when ratio is reached<br>(-1 SickRage default to seed forever, or leave blank for downloader default)":[null,"stop transfer when ratio is reached<br>(-1 SickRage default to seed forever, or leave blank for downloader default)"],"Minimum seeders":[null,"Minimum seeders"],"Minimum leechers":[null,"Minimum leechers"],"Confirmed download":[null,"Confirmed download"],"only download torrents from trusted or verified uploaders ?":[null,"only download torrents from trusted or verified uploaders ?"],"Ranked torrents":[null,"Ranked torrents"],"only download ranked torrents (trusted releases)":[null,"only download ranked torrents (trusted releases)"],"English torrents":[null,"English torrents"],"only download english torrents, or torrents containing english subtitles":[null,"only download english torrents, or torrents containing english subtitles"],"For Spanish torrents":[null,"For Spanish torrents"],"ONLY search on this provider if show info is defined as \"Spanish\" (avoid provider's use for VOS shows)":[null,"ONLY search on this provider if show info is defined as \"Spanish\" (avoid provider's use for VOS shows)"],"Sorting results by":[null,"Sorting results by"],"Freeleech":[null,"Freeleech"],"only download <b>\"FreeLeech\"</b> torrents.":[null,"only download <b>\"FreeLeech\"</b> torrents."],"Category":[null,"Category"],"select torrent with Italian subtitle":[null,"select torrent with Italian subtitle"],"Configure Custom<br>Newznab Providers":[null,"Configure Custom<br>Newznab Providers"],"Add and setup or remove custom Newznab providers.":[null,"Add and setup or remove custom Newznab providers."],"Select provider":[null,"Select provider"],"-- add new provider --":[null,"-- add new provider --"],"Provider name":[null,"Provider name"],"Site URL":[null,"Site URL"],"Newznab search categories":[null,"Newznab search categories"],"select your Newznab categories on the left, and click the \"update categories\" button to use them for searching.) <b>don't forget to to save the form!":[null,"select your Newznab categories on the left, and click the \"Update Categories\" button to use them for searching.) <b>don't forget to to save the form!"],"Update Categories":[null,"Update Categories"],"Add":[null,"Add"],"Delete":[null,"Delete"],"Add and setup or remove custom RSS providers.":[null,"Add and setup or remove custom RSS providers."],"RSS URL":[null,"RSS URL"],"Search element":[null,"Search element"],"eg: title":[null,"eg: title"],"Episode Search":[null,"Episode Search"],"NZB Search":[null,"NZB Search"],"Torrent Search":[null,"Torrent Search"],"How to manage searching with":[null,"How to manage searching with"],"Randomize Providers":[null,"Randomize Providers"],"randomize the provider search order instead of going in order of placement":[null,"randomize the provider search order instead of going in order of placement"],"Download propers":[null,"Download propers"],"replace original download with \"Proper\" or \"Repack\" if nuked":[null,"replace original download with \"Proper\" or \"Repack\" if nuked"],"Check propers every":[null,"Check propers every"],"24 hours":[null,"24 hours"],"4 hours":[null,"4 hours"],"90 mins":[null,"90 mins"],"45 mins":[null,"45 mins"],"15 mins":[null,"15 mins"],"Backlog search day(s)":[null,"Backlog search day(s)"],"number of day(s) that the \"Forced Backlog Search\" will cover (e.g. 7 Days)":[null,"number of day(s) that the \"Forced Backlog Search\" will cover (e.g. 7 Days)"],"Backlog search frequency":[null,"Backlog search frequency"],"time in minutes between searches (min.":[null,"time in minutes between searches (min."],"Daily search frequency":[null,"Daily search frequency"],"Usenet retention":[null,"Usenet retention"],"age limit in days for usenet articles to be used (e.g. 500)":[null,"age limit in days for usenet articles to be used (e.g. 500)"],"Ignore words":[null,"Ignore words"],"results with one or more word from this list will be ignored<br>separate words with a comma, e.g. \"word1,word2,word3\"":[null,"results with one or more word from this list will be ignored<br>separate words with a comma, e.g. \"word1,word2,word3\""],"Require words":[null,"Require words"],"results with no word from this list will be ignored<br>separate words with a comma, e.g. \"word1,word2,word3\"":[null,"results with no word from this list will be ignored<br>separate words with a comma, e.g. \"word1,word2,word3\""],"Trackers list":[null,"Trackers list"],"trackers that will be added to magnets without trackers<br>separate trackers with a comma, e.g. \"tracker1,tracker2,tracker3\"":[null,"trackers that will be added to magnets without trackers<br>separate trackers with a comma, e.g. \"tracker1,tracker2,tracker3\""],"Ignore language names in subbed results":[null,"Ignore language names in subbed results"],"ignore subbed releases based on language names <br>\n Example: \"dk\" will ignore words: dksub, dksubs, dksubbed, dksubed <br>\n separate languages with a comma, e.g. \"lang1,lang2,lang3":[null,"ignore subbed releases based on language names <br>\n Example: \"dk\" will ignore words: dksub, dksubs, dksubbed, dksubed <br>\n separate languages with a comma, e.g. \"lang1,lang2,lang3"],"Allow high priority":[null,"Allow high priority"],"set downloads of recently aired episodes to high priority":[null,"set downloads of recently aired episodes to high priority"],"Use Failed Downloads":[null,"Use Failed Downloads"],"use Failed Download Handling?":[null,"Use Failed Download Handling?"],"will only work with snatched/downloaded episodes after enabling this":[null,"will only work with snatched/downloaded episodes after enabling this"],"Delete Failed":[null,"Delete Failed"],"delete files left over from a failed download?":[null,"delete files left over from a failed download?"],"this only works if Use Failed Downloads is enabled.":[null,"this only works if Use Failed Downloads is enabled."],"How to handle NZB search results.":[null,"How to handle NZB search results."],"Search NZBs":[null,"Search NZBs"],"enable NZB search providers":[null,"enable NZB search providers"],"Send .nzb files to":[null,"Send .nzb files to"],"SABnzbd server URL":[null,"SABnzbd server URL"],"URL to your SABnzbd server (e.g. http://localhost:8080/)":[null,"URL to your SABnzbd server (e.g. http://localhost:8080/)"],"SABnzbd username":[null,"SABnzbd username"],"(blank for none)":[null,"(blank for none)"],"SABnzbd password":[null,"SABnzbd password"],"SABnzbd API key":[null,"SABnzbd API key"],"locate at... SABnzbd Config -> General -> API Key":[null,"locate at... SABnzbd Config -> General -> API Key"],"Use SABnzbd category":[null,"Use SABnzbd category"],"add downloads to this category (e.g. TV)":[null,"add downloads to this category (e.g. TV)"],"Use SABnzbd category (backlog episodes)":[null,"Use SABnzbd category (backlog episodes)"],"add downloads of old episodes to this category (e.g. TV)":[null,"add downloads of old episodes to this category (e.g. TV)"],"Use SABnzbd category for anime":[null,"Use SABnzbd category for anime"],"add anime downloads to this category (e.g. anime)":[null,"add anime downloads to this category (e.g. anime)"],"Use SABnzbd category for anime (backlog episodes)":[null,"Use SABnzbd category for anime (backlog episodes)"],"add anime downloads of old episodes to this category (e.g. anime)":[null,"add anime downloads of old episodes to this category (e.g. anime)"],"Use forced priority":[null,"Use forced priority"],"enable to change priority from HIGH to FORCED":[null,"enable to change priority from HIGH to FORCED"],"Black hole folder location":[null,"Black hole folder location"],"<b>.nzb</b> files are stored at this location for external software to find and use":[null,"<b>.nzb</b> files are stored at this location for external software to find and use"],"Connect using HTTPS":[null,"Connect using HTTPS"],"enable Secure control in NZBGet and set the correct Secure Port here":[null,"enable Secure control in NZBGet and set the correct Secure Port here"],"NZBget host:port":[null,"NZBget host:port"],"(e.g. localhost:6789)":[null,"(e.g. localhost:6789)"],"NZBget RPC host name and port number (not NZBgetweb!)":[null,"NZBget RPC host name and port number (not NZBgetweb!)"],"NZBget username":[null,"NZBget username"],"locate in nzbget.conf (default:nzbget)":[null,"locate in nzbget.conf (default:nzbget)"],"NZBget password":[null,"NZBget password"],"locate in nzbget.conf (default:tegbzn6789)":[null,"locate in nzbget.conf (default:tegbzn6789)"],"Use NZBget category":[null,"Use NZBget category"],"send downloads marked this category (e.g. TV)":[null,"send downloads marked this category (e.g. TV)"],"Use NZBget category (backlog episodes)":[null,"Use NZBget category (backlog episodes)"],"send downloads of old episodes marked this category (e.g. TV)":[null,"send downloads of old episodes marked this category (e.g. TV)"],"Use NZBget category for anime":[null,"Use NZBget category for anime"],"send anime downloads marked this category (e.g. anime)":[null,"send anime downloads marked this category (e.g. anime)"],"Use NZBget category for anime (backlog episodes)":[null,"Use NZBget category for anime (backlog episodes)"],"send anime downloads of old episodes marked this category (e.g. anime)":[null,"send anime downloads of old episodes marked this category (e.g. anime)"],"NZBget priority":[null,"NZBget priority"],"Very low":[null,"Very low"],"Low":[null,"Low"],"Very high":[null,"Very high"],"Force":[null,"Force"],"priority for daily snatches (no backlog)":[null,"priority for daily snatches (no backlog)"],"Torrent host:port":[null,"Torrent host:port"],"URL to your Synology DSM (e.g. http://localhost:5000/)":[null,"URL to your Synology DSM (e.g. http://localhost:5000/)"],"Client username":[null,"Client username"],"Client password":[null,"Client password"],"Downloaded files location":[null,"Downloaded files location"],"where Synology Download Station will save downloaded files (blank for client default)":[null,"where Synology Download Station will save downloaded files (blank for client default)"],"the destination has to be a shared folder for Synology DS":[null,"the destination has to be a shared folder for Synology DS"],"Click below to test":[null,"Click below to test"],"How to handle Torrent search results.":[null,"How to handle Torrent search results."],"Search torrents":[null,"Search torrents"],"enable torrent search providers":[null,"enable torrent search providers"],"Send .torrent files to":[null,"Send .torrent files to"],"<b>.torrent</b> files are stored at this location for external software to find and use":[null,"<b>.torrent</b> files are stored at this location for external software to find and use"],"URL to your torrent client (e.g. http://localhost:8000/)":[null,"URL to your torrent client (e.g. http://localhost:8000/)"],"Torrent RPC URL":[null,"Torrent RPC URL"],"the path without leading and trailing slashes (e.g. transmission)":[null,"the path without leading and trailing slashes (e.g. transmission)"],"Http Authentication":[null,"Http Authentication"],"Verify certificate":[null,"Verify certificate"],"disable if you get \"Deluge: Authentication Error\" in your log":[null,"disable if you get \"Deluge: Authentication Error\" in your log"],"verify SSL certificates for HTTPS requests":[null,"verify SSL certificates for HTTPS requests"],"Add label to torrent":[null,"Add label to torrent"],"(blank spaces are not allowed)":[null,"(blank spaces are not allowed)"],"label plugin must be enabled in Deluge clients":[null,"label plugin must be enabled in Deluge clients"],"for QBitTorrent 3.3.1 and up":[null,"for QBitTorrent 3.3.1 and up"],"Add label to torrent for anime":[null,"Add label to torrent for anime"],"for QBitTorrent 3.3.1 and up ":[null,"for QBitTorrent 3.3.1 and up "],"where <span id=\"torrent_client\">the torrent client</span> will save downloaded files (blank for client default)":[null,"where <span id=\"torrent_client\">the torrent client</span> will save downloaded files (blank for client default)"],"the destination has to be a shared folder for Synology DS</span>":[null,"the destination has to be a shared folder for Synology DS</span>"],"Minimum seeding time":[null,"Minimum seeding time"],"time in hours":[null,"time in hours"],"(default:'0' passes blank to client and '-1' passes nothing)":[null,"(default:'0' passes blank to client and '-1' passes nothing)"],"Start torrent paused":[null,"Start torrent paused"],"add .torrent to client but do <b style=\"font-weight:900\">not</b> start downloading":[null,"add .torrent to client but do <b style=\"font-weight:900\">not</b> start downloading"],"Allow high bandwidth":[null,"Allow high bandwidth"],"use high bandwidth allocation if priority is high":[null,"use high bandwidth allocation if priority is high"],"Test Connection":[null,"Test Connection"],"Windows Shares":[null,""],"Defines your existing windows shares so that we can add them to the browse dialog":[null,""],"Share #{number}":[null,""],"Share label":[null,""],"Hostname or IP":[null,""],"Share path":[null,""],"Subtitles Search":[null,"Subtitles Search"],"Subtitles Plugin":[null,"Subtitles Plugin"],"Plugin Settings":[null,"Plugin Settings"],"Settings that dictate how SickRage handles subtitles search results.":[null,"Settings that dictate how SickRage handles subtitles search results."],"Search Subtitles":[null,"Search Subtitles"],"Subtitle Languages":[null,"Subtitle Languages"],"Subtitle Directory":[null,"Subtitle Directory"],"the directory where SickRage should store your <i>Subtitles</i> files.":[null,"the directory where SickRage should store your <i>Subtitles</i> files."],"leave empty if you want store subtitle in episode path.":[null,"leave empty if you want store subtitle in episode path."],"Subtitle Find Frequency":[null,"Subtitle Find Frequency"],"time in hours between scans (default: 1)":[null,"time in hours between scans (default: 1)"],"Include Specials":[null,"Include Specials"],"include the show's specials when searching for subtitles?":[null,"include the show's specials when searching for subtitles?"],"Perfect matches":[null,"Perfect matches"],"only download subtitles that match: release group, video codec, audio codec and resolution":[null,"only download subtitles that match: release group, video codec, audio codec and resolution"],"if disabled you may get out of sync subtitles":[null,"if disabled you may get out of sync subtitles"],"Subtitles History":[null,"Subtitles History"],"log downloaded Subtitle on History page?":[null,"log downloaded Subtitle on History page?"],"Subtitles Multi-Language":[null,"Subtitles Multi-Language"],"append language codes to subtitle filenames?":[null,"append language codes to subtitle filenames?"],"this option is required if you use multiple subtitle languages":[null,"this option is required if you use multiple subtitle languages"],"Delete unwanted subtitles":[null,"Delete unwanted subtitles"],"enable to delete unwanted subtitle languages bundled with release":[null,"enable to delete unwanted subtitle languages bundled with release"],"Embedded Subtitles":[null,"Embedded Subtitles"],"ignore subtitles embedded inside video file?":[null,"ignore subtitles embedded inside video file?"],"this will ignore <u>all</u> embedded subtitles for every video file!":[null,"this will ignore <u>all</u> embedded subtitles for every video file!"],"Hearing Impaired Subtitles":[null,"Hearing Impaired Subtitles"],"download hearing impaired style subtitles?":[null,"download hearing impaired style subtitles?"],"See":[null,"See"],"for a script arguments description.":[null,"for a script arguments description."],"Additional scripts separated by <b>|</b>.":[null,"Additional scripts separated by <b>|</b>."],"Scripts are called after each episode has searched and downloaded subtitles.":[null,"Scripts are called after each episode has searched and downloaded subtitles."],"For any scripted languages, include the interpreter executable before the script. See the following example":[null,"For any scripted languages, include the interpreter executable before the script. See the following example"],"For Windows:":[null,"For Windows:"],"For Linux / OS X:":[null,"For Linux / OS X:"],"Subtitle Providers":[null,"Subtitle Providers"],"Check off and drag the plugins into the order you want them to be used.":[null,"Check off and drag the plugins into the order you want them to be used."],"At least one plugin is required.":[null,"At least one plugin is required."]," Web-scraping plugin":[null," Web-scraping plugin"],"Provider Settings":[null,"Provider Settings"],"Set user and password for each provider":[null,"Set user and password for each provider"],"User Name":[null,"User Name"],"Change Show":[null,"Change Show"],"Prev Show":[null,"Prev Show"],"Next Show":[null,"Next Show"],"Jump to Season":[null,"Jump to Season"],"Specials":[null,"Specials"],"Poster for":[null,"Poster for"],"Stars":[null,"Stars"],"minutes":[null,"minutes"],"View other popular {genre} shows on trakt.tv.":[null,"View other popular {genre} shows on trakt.tv."],"View other popular {imdbgenre} shows on IMDB.":[null,"View other popular {imdbgenre} shows on IMDB."],"Allowed":[null,"Allowed"],"Preferred":[null,"Preferred"],"Originally Airs":[null,"Originally Airs"],"Show Status":[null,"Show Status"],"Default EP Status":[null,"Default EP Status"],"Location":[null,"Location"],"Missing":[null,"Missing"],"Scene Name":[null,"Scene Name"],"Required Words":[null,"Required Words"],"Ignored Words":[null,"Ignored Words"],"Size":[null,"Size"],"Info Language":[null,"Info Language"],"Subtitles SR Metadata":[null,"Subtitles SR Metadata"],"Season Folders":[null,"Season Folders"],"Paused":[null,"Paused"],"Air-by-Date":[null,"Air-by-Date"],"Sports":[null,"Sports"],"DVD Order":[null,"DVD Order"],"Scene Numbering":[null,"Scene Numbering"],"Select Filtered Episodes":[null,"Select Filtered Episodes"],"Clear All":[null,"Clear All"],"Change selected episodes to":[null,"Change selected episodes to"],"Select Columns":[null,"Select Columns"],"Hide Episodes":[null,"Hide Episodes"],"Show Episodes":[null,"Show Episodes"],"NFO":[null,"NFO"],"TBN":[null,"TBN"],"Episode":[null,"Episode"],"Absolute":[null,"Absolute"],"Scene":[null,"Scene"],"Scene Absolute":[null,"Scene Absolute"],"File Name":[null,"File Name"],"Airdate":[null,"Airdate"],"Download":[null,"Download"],"Change the value here if scene numbering differs from the indexer episode numbering":[null,"Change the value here if scene numbering differs from the indexer episode numbering"],"Change the value here if scene absolute numbering differs from the indexer absolute numbering":[null,"Change the value here if scene absolute numbering differs from the indexer absolute numbering"],"Manual Search":[null,"Manual Search"],"Do you want to mark this episode as failed?":[null,"Do you want to mark this episode as failed?"],"The episode release name will be added to the failed history, preventing it to be downloaded again.":[null,"The episode release name will be added to the failed history, preventing it being downloaded again."],"Do you want to include the current episode quality in the search?":[null,"Do you want to include the current episode quality in the search?"],"Choosing No will ignore any releases with the same episode quality as the one currently downloaded/snatched.":[null,"Choosing No will ignore any releases with the same episode quality as the one currently downloaded/snatched."],"Download subtitle":[null,"Download subtitle"],"Do you want to re-download the subtitle for this language?":[null,"Do you want to re-download the subtitle for this language?"],"It will overwrite your current subtitle":[null,"It will overwrite your current subtitle"],"Format":[null,"Format"],"Advanced":[null,"Advanced"],"Main Settings":[null,"Main Settings"],"Show Location":[null,"Show Location"],"Preferred Quality":[null,"Preferred Quality"],"Default Episode Status":[null,"Default Episode Status"],"this will set the status for future episodes.":[null,"this will set the status for future episodes."],"this only applies to episode filenames and the contents of metadata files.":[null,"this only applies to episode filenames and the contents of metadata files."],"search for subtitles":[null,"search for subtitles"],"Use SR Metdata":[null,"Use SR Metadata"],"use SickRage metadata when searching for subtitle, this will override the autodiscovered metadata":[null,"use SickRage metadata when searching for subtitles, this will override the autodiscovered metadata"],"pause this show (SickRage will not download episodes)":[null,"pause this show (SickRage will not download episodes)"],"Format Settings":[null,"Format Settings"],"Air by date":[null,"Air by date"],"check if the show is released as Show.03.02.2010 rather than Show.S02E03.":[null,"check if the show is released as Show.03.02.2010 rather than Show.S02E03."],"in case of an air date conflict between regular and special episodes, the later will be ignored.":[null,"in case of an air date conflict between regular and special episodes, the later will be ignored."],"check if the show is Anime and episodes are released as Show.265 rather than Show.S02E03":[null,"check if the show is Anime and episodes are released as Show.265 rather than Show.S02E03"],"check if the show is a sporting or MMA event released as Show.03.02.2010 rather than Show.S02E03":[null,"check if the show is a sporting or MMA event released as Show.03.02.2010 rather than Show.S02E03"],"Season folders":[null,"Season folders"],"group episodes by season folder (uncheck to store in a single folder)":[null,"group episodes by season folder (uncheck to store in a single folder)"],"search by scene numbering (uncheck to search by indexer numbering)":[null,"search by scene numbering (uncheck to search by indexer numbering)"],"use the DVD order instead of the air order":[null,"use the DVD order instead of the air order"],"a \"Force Full Update\" is necessary, and if you have existing episodes you need to sort them manually.":[null,"a \"Force Full Update\" is necessary, and if you have existing episodes you need to sort them manually."],"comma-separated <i>e.g. \"word1,word2,word3</i>\"":[null,"comma-separated <i>e.g. \"word1,word2,word3</i>\""],"search results with one or more words from this list will be ignored.":[null,"search results with one or more words from this list will be ignored."],"e.g. \"word1,word2,word3\"":[null,"e.g. \"word1,word2,word3\""],"search results with no words from this list will be ignored.":[null,"search results with no words from this list will be ignored."],"Scene Exception":[null,"Scene Exception"],"this will affect episode search on NZB and torrent providers.":[null,"this will affect episode search on NZB and torrent providers."],"this list appends to the original show name.":[null,"this list appends to the original show name."],"WARNING logs":[null,"WARNING logs"],"ERROR logs":[null,"ERROR logs"],"There are no events to display.":[null,"There are no events to display."],"Limit":[null,"Limit"],"Layout":[null,"Layout"],"HistoryLayout":[null,"HistoryLayout"],"Compact":[null,"Compact"],"Detailed":[null,"Detailed"],"Time":[null,"Time"],"Provider":[null,"Provider"],"Missing Provider":[null,"Missing Provider"],"missing provider":[null,"missing provider"],"Directory":[null,"Directory"],"Show Name (tvshow.nfo)":[null,"Show Name (tvshow.nfo)"],"Indexer":[null,"Indexer"],"Enter the folder containing the episode":[null,"Enter the folder containing the episode"],"Process Method to be used":[null,"Process Method to be used"],"Copy":[null,"Copy"],"Move":[null,"Move"],"Hard Link":[null,"Hard Link"],"Symbolic Link":[null,"Symbolic Link"],"Symbolic Link Reversed":[null,"Symbolic Link Reversed"],"Force already Post Processed Dir/Files":[null,"Force already Post Processed Dir/Files"],"Mark Dir/Files as priority download":[null,"Mark Dir/Files as priority download"],"(Check it to replace the file even if it exists at higher quality)":[null,"(Check it to replace the file even if it exists at higher quality)"],"Delete files and folders":[null,"Delete files and folders"],"(Check it to delete files and folders like auto processing)":[null,"(Check it to delete files and folders like auto processing)"],"Don't use processing queue":[null,"Don't use processing queue"],"(If checked this will return the result of the process here, but may be slow!)":[null,"(If checked this will return the result of the process here, but may be slow!)"],"Mark download as failed":[null,"Mark download as failed"],"Process":[null,"Process"],"Download subtitles for this show?":[null,"Download subtitles for this show?"],"use SickRage metadata when searching for subtitle, <br />this will override the autodiscovered metadata":[null,"use SickRage metadata when searching for subtitles, <br />this will override the autodiscovered metadata"],"Status for previously aired episodes":[null,"Status for previously aired episodes"],"Status for all future episodes":[null,"Status for all future episodes"],"Group episodes by season folder?":[null,"Group episodes by season folder?"],"Is this show an Anime?":[null,"Is this show an Anime?"],"Is this show scene numbered?":[null,"Is this show scene numbered?"],"Save Defaults":[null,"Save Defaults"],"Use current values as the defaults":[null,"Use current values as the defaults"],"<p>Select your preferred fansub groups from the <b>Available Groups</b> and add them to the <b>Whitelist</b>. Add groups to the <b>Blacklist</b> to ignore them.</p>\n <p>The <b>Whitelist</b> is checked <i>before</i> the <b>Blacklist</b>.</p>\n <p>Groups are shown as <b>Name</b> | <b>Rating</b> | <b>Number of subbed episodes</b>.</p>\n <p>You may also add any fansub group not listed to either list manually.</p>\n <p>When doing this please note that you can only use groups listed on anidb for this anime.\n <br>If a group is not listed on anidb but subbed this anime, please correct anidb's data.</p>":[null,"<p>Select your preferred fansub groups from the <b>Available Groups</b> and add them to the <b>Whitelist</b>. Add groups to the <b>Blacklist</b> to ignore them.</p> \n <p>The <b>Whitelist</b> is checked <i>before</i> the <b>Blacklist</b>.</p> \n <p>Groups are shown as <b>Name</b> | <b>Rating</b> | <b>Number of subbed episodes</b>.</p> \n <p>You may also add any fansub group not listed to either list manually.</p> \n <p>When doing this please note that you can only use groups listed on anidb for this anime.\n <br>If a group is not listed on anidb but subbed this anime, please correct anidb's data.</p>"],"Whitelist":[null,"Whitelist"],"Available Groups":[null,"Available Groups"],"Add to Whitelist":[null,"Add to Whitelist"],"Add to Blacklist":[null,"Add to Blacklist"],"Blacklist":[null,"Blacklist"],"Custom Group":[null,"Custom Group"],"Allowed Quality:":[null,"Allowed Quality:"],"Preferred Quality:":[null,"Preferred Quality:"],"Filter Show Name":[null,"Filter Show Name"],"Root":[null,"Root"],"All":[null,"All"],"Clear Filter(s)":[null,"Clear Filter(s)"],"Poster":[null,"Poster"],"Small Poster":[null,"Small Poster"],"Banner":[null,"Banner"],"Simple":[null,"Simple"],"Next Episode":[null,"Next Episode"],"Progress":[null,"Progress"],"Direction":[null,"Direction"],"Ascending":[null,"Ascending"],"Descending":[null,"Descending"],"Poster Size":[null,"Poster Size"],"Continuing":[null,"Continuing"],"Ended":[null,"Ended"],"Total":[null,"Total"],"Invalid date":[null,"Invalid date"],"No Network":[null,"No Network"],"Next Ep":[null,"Next Ep"],"Prev Ep":[null,"Prev Ep"],"Show":[null,"Show"],"Downloads":[null,"Downloads"],"Active":[null,"Active"],"loading":[null,"loading"],"Loading...":[null,"Loading..."],"<p><b><u>Preferred</u></b> qualities will replace those in <b><u>allowed</u></b>, even if they are lower.</p>":[null,"<p><b><u>Preferred</u></b> qualities will replace those in <b><u>allowed</u></b>, even if they are lower.</p>"],"New":[null,"New"],"Set as Default":[null,"Set as Default"],"Remember me":[null,"Remember me"],"Edit Selected":[null,"Edit Selected"],"Subtitle":[null,"Subtitle"],"Default Ep Status":[null,"Default Ep Status"],"Update":[null,"Update"],"Rescan":[null,"Rescan"],"Rename":[null,"Rename"],"Search Subtitle":[null,"Search Subtitle"],"Force Metadata Regen":[null,"Force Metadata Regen"],"Snatched (Allowed)":[null,"Snatched (Allowed)"],"Jump to Show":[null,"Jump to Show"],"Force Backlog":[null,"Force Backlog"],"Manage episodes with status":[null,"Manage episodes with status"],"Manage":[null,"Manage"],"None of your episodes have status":[null,"None of your episodes have status"],"Shows containing":[null,"Shows containing"],"episodes":[null,"episodes"],"Set checked shows/episodes to":[null,"Set checked shows/episodes to"],"Go":[null,"Go"],"Select all":[null,"Select all"],"Clear all":[null,"Clear all"],"Release":[null,"Release"],"Backlog Search":[null,"Backlog Search"],"Not in progress":[null,"Not in progress"],"In Progress":[null,"In Progress"],"Daily Search":[null,"Daily Search"],"Find Propers Search":[null,"Find Propers Search"],"Propers search disabled":[null,"Propers search disabled"],"Subtitle Search":[null,"Subtitle Search"],"Subtitle search disabled":[null,"Subtitle search disabled"],"Search Queue":[null,"Search Queue"],"pending items":[null,"pending items"],"Daily":[null,"Daily"],"Manual":[null,"Manual"],"Changing any settings marked with (<span class=\"separator\">*</span>) will force a refresh of the selected shows.":[null,"Changing any settings marked with (<span class=\"separator\">*</span>) will force a refresh of the selected shows."],"Selected Shows":[null,"Selected Shows"],"Root Directories":[null,"Root Directories"],"Current":[null,"Current"],"Keep":[null,"Keep"],"Custom":[null,"Custom"],"Group episodes by season folder (set to \"No\" to store in a single folder).":[null,"Group episodes by season folder (set to \"No\" to store in a single folder)."],"Pause these shows (SickRage will not download episodes).":[null,"Pause these shows (SickRage will not download episodes)."],"This will set the status for future episodes.":[null,"This will set the status for future episodes."],"Search by scene numbering (set to \"No\" to search by indexer numbering).":[null,"Search by scene numbering (set to \"No\" to search by indexer numbering)."],"Set if these shows are Anime and episodes are released as Show.265 rather than Show.S02E03":[null,"Set if these shows are Anime and episodes are released as Show.265 rather than Show.S02E03"],"Set if these shows are sporting or MMA events released as Show.03.02.2010 rather than Show.S02E03.":[null,"Set if these shows are sporting or MMA events released as Show.03.02.2010 rather than Show.S02E03."],"In case of an air date conflict between regular and special episodes, the later will be ignored.":[null,"In case of an air date conflict between regular and special episodes, the latter will be ignored."],"Set if these shows are released as Show.03.02.2010 rather than Show.S02E03.":[null,"Set if these shows are released as Show.03.02.2010 rather than Show.S02E03."],"Search for subtitles.":[null,"Search for subtitles."],"All of your episodes have {subsLanguage} subtitles.":[null,"All of your episodes have {subsLanguage} subtitles."],"Manage episodes without":[null,"Manage episodes without"],"Episodes without {subsLanguage} subtitles.":[null,"Episodes without {subsLanguage} subtitles."],"Episodes without {subtitleLanguage} (undefined) subtitles.":[null,"Episodes without {subtitleLanguage} (undefined) subtitles."],"Download missed subtitles for selected episodes":[null,"Download missed subtitles for selected episodes"],"Performing Restart":[null,"Performing Restart"],"Waiting for SickRage to shut down":[null,"Waiting for SickRage to shut down"],"Waiting for SickRage to start again":[null,"Waiting for SickRage to start again"],"Loading the default page":[null,"Loading the default page"],"Error: The restart has timed out, perhaps something prevented SickRage from starting again?":[null,"Error: The restart has timed out, perhaps something prevented SickRage from starting again?"],"Key":[null,"Key"],"Missed":[null,"Missed"],"Today":[null,"Today"],"Soon":[null,"Soon"],"Later":[null,"Later"],"Subscribe":[null,"Subscribe"],"Date":[null,"Date"],"View Paused":[null,"View Paused"],"Hidden":[null,"Hidden"],"Shown":[null,"Shown"],"Calendar":[null,"Calendar"],"List":[null,"List"],"Ends":[null,"Ends"],"Next Ep Name":[null,"Next Ep Name"],"Run time":[null,"Run time"],"Indexers":[null,"Indexers"],"No shows for this day":[null,"No shows for this day"],"Airs":[null,"Airs"],"Plot":[null,"Plot"],"Show Update":[null,"Show Update"],"Version Check":[null,"Version Check"],"Proper Finder":[null,"Proper Finder"],"Post Process":[null,"Post Process"],"Subtitles Finder":[null,"Subtitles Finder"],"Scheduler":[null,"Scheduler"],"Alive":[null,"Alive"],"Start Time":[null,"Start Time"],"Cycle Time":[null,"Cycle Time"],"Next Run":[null,"Next Run"],"Last Run":[null,"Last Run"],"Silent":[null,"Silent"],"True":[null,"True"],"N/A":[null,"N/A"],"Show id":[null,"Show id"],"Show name":[null,"Show name"],"Priority":[null,"Priority"],"Added":[null,"Added"],"Queue type":[null,"Queue type"],"LOW":[null,"LOW"],"NORMAL":[null,"NORMAL"],"HIGH":[null,"HIGH"],"Disk Space":[null,"Disk Space"],"Free space":[null,"Free space"],"TV Download Directory":[null,"TV Download Directory"],"Media Root Directories":[null,"Media Root Directories"],"Preview of the proposed name changes":[null,"Preview of the proposed name changes"],"All Seasons":[null,"All Seasons"],"select all":[null,"select all"],"Rename Selected":[null,"Rename Selected"],"Cancel Rename":[null,"Cancel Rename"],"Old Location":[null,"Old Location"],"New Location":[null,"New Location"],"Trakt API did not return any results, please check your config.":[null,"Trakt API did not return any results, please check your config."],"votes":[null,"votes"],"Remove Show":[null,"Remove Show"],"Level":[null,"Level"],"Filter":[null,"Filter"],"All non-absolute folder locations are relative to ":[null,"All non-absolute folder locations are relative to "],"Manual Post-Processing":[null,"Manual Post-Processing"],"Episode Status Management":[null,"Episode Status Management"],"Update PLEX":[null,"Update PLEX"],"Update KODI":[null,"Update KODI"],"Update Emby":[null,"Update Emby"],"Missed Subtitle Management":[null,"Missed Subtitle Management"],"Help & Info":[null,"Help & Info"],"Backup & Restore":[null,"Backup & Restore"],"Tools":[null,"Tools"],"Support SickRage":[null,"Support SickRage"],"View Errors":[null,"View Errors"],"View Warnings":[null,"View Warnings"],"View Log":[null,"View Log"],"Check For Updates":[null,"Check For Updates"],"Restart":[null,"Restart"],"Shutdown":[null,"Shutdown"],"Logout":[null,"Logout"],"Server Status":[null,"Server Status"],"View overview of snatched episodes":[null,"View overview of snatched episodes"],"Episodes Downloaded":[null,"Episodes Downloaded"],"Memory used":[null,"Memory used"],"Load time":[null,"Load time"],"Branch":[null,"Branch"],"Now":[null,"Now"]}}}} \ No newline at end of file +{"messages":{"domain":"messages","locale_data":{"messages":{"100":[null,"100"],"250":[null,"250"],"500":[null,"500"],"":{"domain":"messages","plural_forms":"nplurals=2; plural=(n != 1);","lang":"en_US"},"Drama":[null,"Drama"],"Mystery":[null,"Mystery"],"Science-Fiction":[null,"Science-Fiction"],"Crime":[null,"Crime"],"Action":[null,"Action"],"Comedy":[null,"Comedy"],"Thriller":[null,"Thriller"],"Animation":[null,"Animation"],"Family":[null,"Family"],"Fantasy":[null,"Fantasy"],"Adventure":[null,"Adventure"],"Horror":[null,"Horror"],"Film-Noir":[null,"Film-Noir"],"Sci-Fi":[null,"Sci-Fi"],"Romance":[null,"Romance"],"Sport":[null,"Sport"],"War":[null,"War"],"Biography":[null,"Biography"],"History":[null,"History"],"Music":[null,"Music"],"Western":[null,"Western"],"News":[null,"News"],"Sitcom":[null,"Sitcom"],"Reality-TV":[null,"Reality-TV"],"Documentary":[null,"Documentary"],"Game-Show":[null,"Game-Show"],"Musical":[null,"Musical"],"Talk-Show":[null,"Talk-Show"],"Started Download":[null,"Started Download"],"Download Finished":[null,"Download Finished"],"Subtitle Download Finished":[null,"Subtitle Download Finished"],"SickRage Updated":[null,"SickRage Updated"],"SickRage Updated To Commit#: ":[null,"SickRage Updated To Commit#: "],"SickRage new login":[null,"SickRage new login"],"New login from IP: {0}. http://geomaplookup.net/?ip={0}":[null,"New login from IP: {0}. http://geomaplookup.net/?ip={0}"],"Repeat":[null,"Repeat"],"Repeat (Separated)":[null,"Repeat (Separated)"],"Extend":[null,"Extend"],"Extend (Limited)":[null,"Extend (Limited)"],"Extend (Limited, E-prefixed)":[null,"Extend (Limited, E-prefixed)"],"Downloaded":[null,"Downloaded"],"Snatched":[null,"Snatched"],"Snatched (Proper)":[null,"Snatched (Proper)"],"Failed":[null,"Failed"],"Snatched (Best)":[null,"Snatched (Best)"],"Archived":[null,"Archived"],"Unknown":[null,"Unknown"],"Unaired":[null,"Unaired"],"Skipped":[null,"Skipped"],"Wanted":[null,"Wanted"],"Ignored":[null,"Ignore"],"Subtitled":[null,"Subtitled"],"For best results please set the Download Station alias as":[null,"For best results please set the Download Station alias as"],"You can check this setting in the Synology DSM":[null,"You can check this setting in the Synology DSM"],"Control Panel":[null,"Control Panel"],"Application Portal":[null,"Application Portal"],"Make sure you allow DSM to be embedded with iFrames too in":[null,"Make sure you allow DSM to be embedded with iFrames too in"],"DSM Settings":[null,"DSM Settings"],"Security":[null,"Security"],"<No Filter>":[null,"<No Filter>"],"Daily Searcher":[null,"Daily Searcher"],"Backlog":[null,"Backlog"],"Show Updater":[null,"Show Updater"],"Check Version":[null,"Check Version"],"Show Queue":[null,"Show Queue"],"Search Queue (All)":[null,"Search Queue (All)"],"Search Queue (Daily Searcher)":[null,"Search Queue (Daily Searcher)"],"Search Queue (Backlog)":[null,"Search Queue (Backlog)"],"Search Queue (Manual)":[null,"Search Queue (Manual)"],"Search Queue (Retry/Failed)":[null,"Search Queue (Retry/Failed)"],"Search Queue (RSS)":[null,"Search Queue (RSS)"],"Find Propers":[null,"Find Propers"],"Postprocessor":[null,"Postprocessor"],"Find Subtitles":[null,"Find Subtitles"],"Trakt Checker":[null,"Trakt Checker"],"Event":[null,"Event"],"Error":[null,"Error"],"Tornado":[null,"Tornado"],"Thread":[null,"Thread"],"Main":[null,"Main"],"Loading":[null,"Loading"],"New update found for SickRage, starting auto-updater":[null,"New update found for SickRage, starting auto-updater"],"Update was successful":[null,"Update was successful"],"Update failed!":[null,"Update failed!"],"Backup":[null,"Backup"],"Config backup in progress...":[null,"Config backup in progress..."],"Config backup successful, updating...":[null,"Config backup successful, updating..."],"Config backup failed, aborting update":[null,"Config backup failed, aborting update"],"No update needed":[null,"No update needed"],"Mako Error":[null,"Mako Error"],"Oops":[null,"Oops"],"Wrong API key used":[null,"Wrong API key used"],"Login":[null,"Login"],"API Key not generated":[null,"API Key not generated"],"API Builder":[null,"API Builder"],"Schedule":[null,"Schedule"],"Test 1":[null,"Test 1"],"This is test number 1":[null,"This is test number 1"],"Test 2":[null,"Test 2"],"This is test number 2":[null,"This is test number 2"],"You're using the {branch} branch. Please use 'master' unless specifically asked":[null,"You're using the {branch} branch. Please use 'master' unless specifically asked"],"Invalid show parameters":[null,"Invalid show parameters"],"Invalid parameters":[null,"Invalid parameters"],"Episode couldn't be retrieved":[null,"Episode couldn't be retrieved"],"Home":[null,"Home"],"Show List":[null,"Show List"],"Error: Unsupported Request. Send jsonp request with 'callback' variable in the query string.":[null,"Error: Unsupported Request. Send jsonp request with 'callback' variable in the query string."],"Success. Connected and authenticated":[null,"Success. Connected and authenticated"],"Authentication failed. SABnzbd expects":[null,"Authentication failed. SABnzbd expects"],"as authentication method":[null,"as authentication method"],"Unable to connect to host":[null,"Unable to connect to host"],"SMS sent successfully":[null,"SMS sent successfully"],"Problem sending SMS: {message}":[null,"Problem sending SMS: {message}"],"Telegram notification succeeded. Check your Telegram clients to make sure it worked":[null,"Telegram notification succeeded. Check your Telegram clients to make sure it worked"],"Error sending Telegram notification: {message}":[null,"Error sending Telegram notification: {message}"],"join notification succeeded. Check your join clients to make sure it worked":[null,"join notification succeeded. Check your join clients to make sure it worked"],"Error sending join notification: {message}":[null,"Error sending join notification: {message}"]," with password":[null," with password"],"Registered and Tested growl successfully {growl_host}":[null,"Registered and Tested growl successfully {growl_host}"],"Registration and Testing of growl failed {growl_host}":[null,"Registration and Testing of growl failed {growl_host}"],"Test prowl notice sent successfully":[null,"Test prowl notice sent successfully"],"Test prowl notice failed":[null,"Test prowl notice failed"],"Boxcar2 notification succeeded. Check your Boxcar2 clients to make sure it worked":[null,"Boxcar2 notification succeeded. Check your Boxcar2 clients to make sure it worked"],"Error sending Boxcar2 notification":[null,"Error sending Boxcar2 notification"],"Pushover notification succeeded. Check your Pushover clients to make sure it worked":[null,"Pushover notification succeeded. Check your Pushover clients to make sure it worked"],"Error sending Pushover notification":[null,"Error sending Pushover notification"],"Key verification successful":[null,"Key verification successful"],"Unable to verify key":[null,"Unable to verify key"],"Tweet successful, check your twitter to make sure it worked":[null,"Tweet successful, check your twitter to make sure it worked"],"Error sending tweet":[null,"Error sending tweet"],"Please enter a valid account sid":[null,"Please enter a valid account sid"],"Please enter a valid auth token":[null,"Please enter a valid auth token"],"Please enter a valid phone sid":[null,"Please enter a valid phone sid"],"Please format the phone number as \"+1-###-###-####\"":[null,"Please format the phone number as \"+1-###-###-####\""],"Authorization successful and number ownership verified":[null,"Authorization successful and number ownership verified"],"Error sending sms":[null,"Error sending sms"],"Slack message successful":[null,"Slack message successful"],"Slack message failed":[null,"Slack message failed"],"Discord message successful":[null,"Discord message successful"],"Discord message failed":[null,"Discord message failed"],"Test KODI notice sent successfully to {kodi_host}":[null,"Test KODI notice sent successfully to {kodi_host}"],"Test KODI notice failed to {kodi_host}":[null,"Test KODI notice failed to {kodi_host}"],"Successful test notice sent to Plex Home Theater ... {plex_clients}":[null,"Successful test notice sent to Plex Home Theater ... {plex_clients}"],"Test failed for Plex Home Theater ... {plex_clients}":[null,"Test failed for Plex Home Theater ... {plex_clients}"],"Tested Plex Home Theater(s)":[null,"Tested Plex Home Theater(s)"],"Successful test of Plex Media Server(s) ... {plex_servers}":[null,"Successful test of Plex Media Server(s) ... {plex_servers}"],"Test failed, No Plex Media Server host specified":[null,"Test failed, No Plex Media Server host specified"],"Test failed for Plex Media Server(s) ... {plex_servers}":[null,"Test failed for Plex Media Server(s) ... {plex_servers}"],"Tested Plex Media Server host(s)":[null,"Tested Plex Media Server host(s)"],"Tried sending desktop notification via libnotify":[null,"Tried sending desktop notification via libnotify"],"Test notice sent successfully to {emby_host}":[null,"Test notice sent successfully to {emby_host}"],"Test notice failed to {emby_host}":[null,"Test notice failed to {emby_host}"],"Successfully started the scan update":[null,"Successfully started the scan update"],"Test failed to start the scan update":[null,"Test failed to start the scan update"],"Test notice sent successfully to {nmj2_host}":[null,"Test notice sent successfully to {nmj2_host}"],"Test notice failed to {nmj2_host}":[null,"Test notice failed to {nmj2_host}"],"Trakt Authorized":[null,"Trakt Authorized"],"Trakt Not Authorized!":[null,"Trakt Not Authorized!"],"Test email sent successfully! Check inbox.":[null,"Test email sent successfully! Check inbox."],"ERROR: {last_error}":[null,"ERROR: {last_error}"],"Test NMA notice sent successfully":[null,"Test NMA notice sent successfully"],"Test NMA notice failed":[null,"Test NMA notice failed"],"Pushalot notification succeeded. Check your Pushalot clients to make sure it worked":[null,"Pushalot notification succeeded. Check your Pushalot clients to make sure it worked"],"Error sending Pushalot notification":[null,"Error sending Pushalot notification"],"Pushbullet notification succeeded. Check your device to make sure it worked":[null,"Pushbullet notification succeeded. Check your device to make sure it worked"],"Error sending Pushbullet notification":[null,"Error sending Pushbullet notification"],"Status":[null,"Status"],"Restarting SickRage":[null,"Restarting SickRage"],"Update Failed":[null,"Update Failed"],"Update wasn't successful, not restarting. Check your log for more information.":[null,"Update wasn't successful, not restarting. Check your log for more information."],"Checking out branch":[null,"Checking out branch"],"Already on branch":[null,"Already on branch"],"Invalid show ID: {show}":[null,"Invalid show ID: {show}"],"Show not in show list":[null,"Show not in show list"],"Edit":[null,"Edit"],"This show is in the process of being downloaded - the info below is incomplete.":[null,"This show is in the process of being downloaded - the info below is incomplete."],"The information on this page is in the process of being updated.":[null,"The information on this page is in the process of being updated."],"The episodes below are currently being refreshed from disk":[null,"The episodes below are currently being refreshed from disk"],"Currently downloading subtitles for this show":[null,"Currently downloading subtitles for this show"],"This show is queued to be refreshed.":[null,"This show is queued to be refreshed."],"This show is queued and awaiting an update.":[null,"This show is queued and awaiting an update."],"This show is queued and awaiting subtitles download.":[null,"This show is queued and awaiting subtitles download."],"Resume":[null,"Resume"],"Pause":[null,"Pause"],"Remove":[null,"Remove"],"Re-scan files":[null,"Re-scan files"],"Force Full Update":[null,"Force Full Update"],"Update show in KODI":[null,"Update show in KODI"],"Update show in Emby":[null,"Update show in Emby"],"Hide specials":[null,"Hide specials"],"Show specials":[null,"Show specials"],"Preview Rename":[null,"Preview Rename"],"Download Subtitles":[null,"Download Subtitles"],"No scene exceptions":[null,"No scene exceptions"],"Invalid show ID":[null,"Invalid show ID"],"Unable to find the specified show":[null,"Unable to find the specified show"],"Unable to retreive Fansub Groups from AniDB.":[null,"Unable to retreive Fansub Groups from AniDB."],"Edit Show":[null,"Edit Show"],"Unable to refresh this show: {error}":[null,"Unable to refresh this show: {error}"],"New location <tt>{location}</tt> does not exist":[null,"New location <tt>{location}</tt> does not exist"],"Unable to update show: {error}":[null,"Unable to update show: {error}"],"Unable to force an update on scene exceptions of the show.":[null,"Unable to force an update on scene exceptions of the show."],"Unable to force an update on scene numbering of the show.":[null,"Unable to force an update on scene numbering of the show."],"{num_errors:d} error{plural} while saving changes:":[null,"{num_errors:d} error{plural} while saving changes:"],"{show_name} has been {paused_resumed}":[null,"{show_name} has been {paused_resumed}"],"resumed":[null,"resumed"],"paused":[null,"paused"],"{show_name} has been {deleted_trashed} {was_deleted}":[null,"{show_name} has been {deleted_trashed} {was_deleted}"],"deleted":[null,"deleted"],"trashed":[null,"trashed"],"(media untouched)":[null,"(media untouched)"],"(with all related media)":[null,"(with all related media)"],"Unable to refresh this show.":[null,"Unable to refresh this show."],"Unable to update this show.":[null,"Unable to update this show."],"Library update command sent to KODI host(s)): {kodi_hosts}":[null,"Library update command sent to KODI host(s)): {kodi_hosts}"],"Unable to contact one or more KODI host(s)): {kodi_hosts}":[null,"Unable to contact one or more KODI host(s)): {kodi_hosts}"],"Library update command sent to Plex Media Server host: {plex_server}":[null,"Library update command sent to Plex Media Server host: {plex_server}"],"Unable to contact Plex Media Server host: {plex_server}":[null,"Unable to contact Plex Media Server host: {plex_server}"],"Library update command sent to Emby host: {emby_host}":[null,"Library update command sent to Emby host: {emby_host}"],"Unable to contact Emby host: {emby_host}":[null,"Unable to contact Emby host: {emby_host}"],"You must specify a show and at least one episode":[null,"You must specify a show and at least one episode"],"Invalid status":[null,"Invalid status"],"Backlog was automatically started for the following seasons of <b>{show_name}</b>":[null,"Backlog was automatically started for the following seasons of <b>{show_name}</b>"],"Season":[null,"Season"],"Backlog started":[null,"Backlog started"],"Retrying Search was automatically started for the following season of <b>{show_name}</b>":[null,"Retrying Search was automatically started for the following season of <b>{show_name}</b>"],"Retry Search started":[null,"Retry Search started"],"You must specify a show":[null,"You must specify a show"],"Can't rename episodes when the show dir is missing.":[null,"Can't rename episodes when the show dir is missing."],"New subtitles downloaded: {new_subtitle_languages}":[null,"New subtitles downloaded: {new_subtitle_languages}"],"No subtitles downloaded":[null,"No subtitles downloaded"],"IRC":[null,"IRC"],"Could not load news from the repo. [Click here for news.md])({news_url})":[null,"Could not load news from the repo. [Click here for news.md])({news_url})"],"The was a problem connecting to github, please refresh and try again":[null,"The was a problem connecting to github, please refresh and try again"],"Could not load changes from the repo. [Click here for CHANGES.md]({changes_url})":[null,"Could not load changes from the repo. [Click here for CHANGES.md]({changes_url})"],"Changelog":[null,"Changelog"],"Post Processing":[null,"Post Processing"],"Add Shows":[null,"Add Shows"],"No folders selected.":[null,"No folders selected."],"New Show":[null,"New Show"],"Trending Shows":[null,"Trending Shows"],"Popular Shows":[null,"Popular Shows"],"Most Anticipated Shows":[null,"Most Anticipated Shows"],"Most Collected Shows":[null,"Most Collected Shows"],"Most Watched Shows":[null,"Most Watched Shows"],"Most Played Shows":[null,"Most Played Shows"],"Recommended Shows":[null,"Recommended Shows"],"New Shows":[null,"New Shows"],"Season Premieres":[null,"Season Premieres"],"Existing Show":[null,"Existing Show"],"No root directories setup, please go back and add one.":[null,"No root directories setup, please go back and add one."],"Show added":[null,"Show added"],"Adding the specified show {show_name}":[null,"Adding the specified show {show_name}"],"Missing params, no Indexer ID or folder: {show_to_add} and {root_dir}/{show_path}":[null,"Missing params, no Indexer ID or folder: {show_to_add} and {root_dir}/{show_path}"],"Unknown error. Unable to add show due to problem with show selection.":[null,"Unknown error. Unable to add show due to problem with show selection."],"Unable to add show":[null,"Unable to add show"],"Folder {show_dir} exists already":[null,"Folder {show_dir} exists already"],"Unable to create the folder {show_dir}, can't add the show":[null,"Unable to create the folder {show_dir}, can't add the show"],"Adding the specified show into {show_dir}":[null,"Adding the specified show into {show_dir}"],"Shows Added":[null,"Shows Added"],"Automatically added {num_shows} from their existing metadata files":[null,"Automatically added {num_shows} from their existing metadata files"],"Mass Update":[null,"Mass Update"],"Episode Overview":[null,"Episode Overview"],"Missing Subtitles":[null,"Missing Subtitles"],"Backlog Overview":[null,"Backlog Overview"],"Mass Edit":[null,"Mass Edit"],"Unable to update show: {excption_format}":[null,"Unable to update show: {excption_format}"],"Unable to refresh show {show_name}: {excption_format}":[null,"Unable to refresh show {show_name}: {excption_format}"],"Errors encountered":[null,"Errors encountered"],"Updates":[null,"Updates"],"Refreshes":[null,"Refreshes"],"Renames":[null,"Renames"],"Subtitles":[null,"Subtitles"],"The following actions were queued":[null,"The following actions were queued"],"Failed Downloads":[null,"Failed Downloads"],"Manage Searches":[null,"Manage Searches"],"Backlog search started":[null,"Backlog search started"],"Daily search started":[null,"Daily search started"],"Find propers search started":[null,"Find propers search started"],"Subtitle search started":[null,"Subtitle search started"],"Remove Selected":[null,"Remove Selected"],"Clear History":[null,"Clear History"],"Trim History":[null,"Trim History"],"Selected history entries removed":[null,"Selected history entries removed"],"History cleared":[null,"History cleared"],"Removed history entries older than 30 days":[null,"Removed history entries older than 30 days"],"General":[null,"General"],"Backup/Restore":[null,"Backup/Restore"],"Search Settings":[null,"Search Settings"],"Search Providers":[null,"Search Providers"],"Subtitles Settings":[null,"Subtitles Settings"],"Notifications":[null,"Notifications"],"Anime":[null,"Anime"],"SickRage Configuration":[null,"SickRage Configuration"],"Config - Shares":[null,""],"Windows Shares Configuration":[null,""],"Saved Shares":[null,""],"Your Windows share settings have been saved":[null,""],"Config - General":[null,"Config - General"],"General Configuration":[null,"General Configuration"],"Saved Defaults":[null,"Saved Defaults"],"Your \"add show\" defaults have been set to your current selections.":[null,"Your \"add show\" defaults have been set to your current selections."],"Unable to create directory {directory}, log directory not changed.":[null,"Unable to create directory {directory}, log directory not changed."],"Unable to create directory {directory}, https cert directory not changed.":[null,"Unable to create directory {directory}, https cert directory not changed."],"Unable to create directory {directory}, https key directory not changed.":[null,"Unable to create directory {directory}, https key directory not changed."],"Error(s) Saving Configuration":[null,"Error(s) Saving Configuration"],"Configuration Saved":[null,"Configuration Saved"],"Config - Backup/Restore":[null,"Config - Backup/Restore"],"Config - Episode Search":[null,"Config - Episode Search"],"Config - Post Processing":[null,"Config - Post Processing"],"Unpacking Not Supported, disabling unpack setting":[null,"Unpacking Not Supported, disabling unpack setting"],"You tried saving an invalid normal naming config, not saving your naming settings":[null,"You tried saving an invalid normal naming config, not saving your naming settings"],"You tried saving an invalid anime naming config, not saving your naming settings":[null,"You tried saving an invalid anime naming config, not saving your naming settings"],"Config - Providers":[null,"Config - Providers"],"No Provider Name specified":[null,"No Provider Name specified"],"No Provider Url specified":[null,"No Provider Url specified"],"No Provider Api key specified":[null,"No Provider Api key specified"],"Config - Notifications":[null,"Config - Notifications"],"Config - Subtitles":[null,"Config - Subtitles"],"Config - Anime":[null,"Config - Anime"],"Clear Errors":[null,"Clear Errors"],"Clear Warnings":[null,"Clear Warnings"],"Submit Errors":[null,"Submit Errors"],"Logs & Errors":[null,"Logs & Errors"],"Log File":[null,"Log File"],"Logs":[null,"Logs"],"This is a test notification from SickRage":[null,"This is a test notification from SickRage"],"Choose Directory":[null,""],"Select log file folder location":[null,""],"Select CSS file":[null,""],"Select backup folder to save to":[null,""],"Select backup files to restore":[null,""],"Please fill out the necessary fields above.":[null,""],"<b>Step 1:</b> Confirm Authorization":[null,""],"Check blacklist name; the value needs to be a trakt slug":[null,""],"You must provide a recipient email address!":[null,""],"You didn't supply a Pushbullet api key":[null,""],"Don't forget to save your new pushbullet settings.":[null,""],"Select TV Download Directory":[null,""],"Select Unpack Directory":[null,""],"This pattern is invalid.":[null,"This pattern is invalid."],"This pattern would be invalid without the folders, using it will force \"Season Folders\" on for all shows.":[null,"This pattern would be invalid without the folders, using it will force \"Season Folders\" on for all shows."],"This pattern is valid.":[null,"This pattern is valid."],"Select .nzb black hole/watch location":[null,""],"Select .torrent black hole/watch location":[null,""],"Select .torrent download location":[null,""],"Minimum seeding time is":[null,""],"URL to your uTorrent client (e.g. http://localhost:8000)":[null,""],"Stop seeding when inactive for":[null,""],"URL to your Transmission client (e.g. http://localhost:9091)":[null,""],"URL to your Deluge client (e.g. http://localhost:8112)":[null,""],"IP or Hostname of your Deluge Daemon (e.g. scgi://localhost:58846)":[null,""],"URL to your Synology DS client (e.g. http://localhost:5000)":[null,""],"URL to your rTorrent client (e.g. scgi://localhost:5000 <br> or https://localhost/rutorrent/plugins/httprpc/action.php)":[null,""],"URL to your qBittorrent client (e.g. http://localhost:8080)":[null,""],"URL to your MLDonkey (e.g. http://localhost:4080)":[null,""],"URL to your putio client (e.g. http://localhost:8080)":[null,""],"<a herf=\"https://app.put.io/oauth/apps/new\" target=\"_blank\"> Create a new OAuth app for put.io</a>":[null,""],"Put.io Parent Folder":[null,""],"Put.io OAuth Token":[null,""],"Show Episodes":[null,"Show Episodes"],"Hide Episodes":[null,"Hide Episodes"],"Select Show Location":[null,""],"Select Unprocessed Episode Folder":[null,""],"DELETED":[null,""],"Resume updating the log on this page.":[null,"Resume updating the log on this page."],"Pause updating the log on this page.":[null,"Pause updating the log on this page."],"searching {searchingFor}...":[null,""],"search timed out, try again or try another indexer":[null,""],"loading folders...":[null,""],"Loading...":[null,"Loading..."],"You have reached this page by accident, please check the url.":[null,"You have reached this page by accident, please check the url."],"A mako error has occured.<br>\n If this happened during an update a simple page refresh may be the solution.<br>\n Mako errors that happen during updates may be a one time error if there were significant ui changes.":[null,"A mako error has occured. <br>\n If this happened during an update a simple page refresh may be the solution. <br>\n Mako errors that happen during updates may be a one time error if there were significant ui changes."],"Show/Hide Error":[null,"Show/Hide Error"],"Add New Show":[null,"Add New Show"],"For shows that you haven't downloaded yet, this option finds a show on theTVDB.com, creates a directory for it's episodes, and adds it to SickRage.":[null,"For shows that you haven't downloaded yet, this option finds a show on theTVDB.com, creates a directory for it's episodes, and adds it to SickRage."],"Add From Trakt Lists":[null,"Add From Trakt Lists"],"For shows that you haven't downloaded yet, this option lets you choose from a show from one of the Trakt lists to add to SickRage.":[null,"For shows that you haven't downloaded yet, this option lets you choose a show from one of the Trakt lists to add to SickRage."],"Add From IMDB's Popular Shows":[null,"Add From IMDB's Popular Shows"],"View IMDB's list of the most popular shows. This feature uses IMDB's MOVIEMeter algorithm to identify popular TV Series.":[null,"View IMDB's list of the most popular shows. This feature uses IMDB's MOVIEMeter algorithm to identify popular TV Series."],"Add Existing Shows":[null,"Add Existing Shows"],"Use this option to add shows that already have a folder created on your hard drive. SickRage will scan your existing metadata/episodes and add the show accordingly.":[null,"Use this option to add shows that already have a folder created on your hard drive. SickRage will scan your existing metadata/episodes and add the show accordingly."],"Add Existing Show":[null,"Add Existing Show"],"Manage Directories":[null,"Manage Directories"],"Customize Options":[null,"Customize Options"],"SickRage can add existing shows, using the current options, by using locally stored NFO/XML metadata to eliminate user interaction. If you would rather have SickRage prompt you to customize each show, then use the checkbox below.":[null,"SickRage can add existing shows, using the current options, by using locally stored NFO/XML metadata to eliminate user interaction. If you would rather have SickRage prompt you to customize each show, then use the checkbox below."],"Prompt me to set settings for each show":[null,"Prompt me to set settings for each show"],"Displaying folders within these directories which aren't already added to SickRage":[null,"Displaying folders within these directories which aren't already added to SickRage"],"Submit":[null,"Submit"],"Find a show on theTVDB":[null,"Find a show on theTVDB"],"Show retrieved from existing metadata":[null,"Show retrieved from existing metadata"],"All Indexers":[null,"All Indexers"],"Search":[null,"Search"],"This will only affect the language of the retrieved metadata file contents and episode filenames.":[null,"This will only affect the language of the retrieved metadata file contents and episode filenames."],"This <b>DOES NOT</b> allow SickRage to download non-english TV episodes!":[null,"This <b>DOES NOT</b> allow SickRage to download non-english TV episodes!"],"Pick the parent folder":[null,"Pick the parent folder"],"Pre-chosen Destination Folder":[null,"Pre-chosen Destination Folder"],"Customize options":[null,"Customize options"],"Add Show":[null,"Add Show"],"Skip Show":[null,"Skip Show"],"Sort By":[null,"Sort By"],"Name":[null,"Name"],"Original":[null,"Original"],"Votes":[null,"Votes"],"Rating":[null,"Rating"],"Rating > Votes":[null,"Rating > Votes"],"Sort Order":[null,"Sort Order"],"Asc":[null,"Asc"],"Desc":[null,"Desc"],"Fetching of IMDB Data failed. Are you online?":[null,"Fetching of IMDB Data failed. Are you online?"],"Exception":[null,"Exception"],"Select Trakt List":[null,"Select Trakt List"],"Most Anticipated":[null,"Most Anticipated"],"Trending":[null,"Trending"],"Popular":[null,"Popular"],"Most Watched":[null,"Most Watched"],"Most Played":[null,"Most Played"],"Most Collected":[null,"Most Collected"],"Recommended":[null,"Recommended"],"Toggle navigation":[null,"Toggle navigation"],"Profile":[null,"Profile"],"JSONP":[null,"JSONP"],"Back to SickRage":[null,"Back to SickRage"],"Parameters":[null,"Parameters"],"Required":[null,"Required"],"Description":[null,"Description"],"Type":[null,"Type"],"Default value":[null,"Default value"],"Allowed values":[null,"Allowed values"],"Playground":[null,"Playground"],"Clear":[null,"Clear"],"Yes":[null,"Yes"],"No":[null,"No"],"season":[null,"season"],"episode":[null,"episode"],"Python Version":[null,"Python Version"],"SSL Version":[null,"SSL Version"],"OS":[null,"OS"],"Locale":[null,"Locale"],"User":[null,"User"],"Program Folder":[null,"Program Folder"],"Config File":[null,"Config File"],"Database File":[null,"Database File"],"Cache Folder":[null,"Cache Folder"],"Log Folder":[null,"Log Folder"],"Arguments":[null,"Arguments"],"Web Root":[null,"Web Root"],"Website":[null,"Website"],"Wiki":[null,"Wiki"],"Source":[null,"Source"],"IRC Chat":[null,"IRC Chat"],"AnimeDB Settings":[null,"AnimeDB Settings"],"Look & Feel":[null,"Look & Feel"],"AniDB is non-profit database of anime information that is freely open to the public":[null,"AniDB is non-profit database of anime information that is freely open to the public"],"Enable":[null,"Enable"],"should SickRage use data from AniDB?":[null,"should SickRage use data from AniDB?"],"AniDB Username":[null,"AniDB Username"],"username of your AniDB account":[null,"username of your AniDB account"],"AniDB Password":[null,"AniDB Password"],"password of your AniDB account":[null,"password of your AniDB account"],"AniDB MyList":[null,"AniDB MyList"],"do you want to add the PostProcessed episodes to the MyList?":[null,"do you want to add the PostProcessed episodes to the MyList?"],"Look and Feel":[null,"Look and Feel"],"How should the anime functions show and behave.":[null,"How should the anime functions show and behave."],"Split show lists":[null,"Split show lists"],"separate anime and normal shows in groups":[null,"separate anime and normal shows in groups"],"Split in tabs":[null,"Split in tabs"],"use tabs for when splitting show lists":[null,"use tabs for when splitting show lists"],"Restore":[null,"Restore"],"Backup your main database file and config.":[null,"Backup your main database file and config."],"Select the folder you wish to save your backup file to":[null,"Select the folder you wish to save your backup file to"],"Restore your main database file and config.":[null,"Restore your main database file and config."],"Select the backup file you wish to restore":[null,"Select the backup file you wish to restore"],"Misc":[null,"Misc"],"Interface":[null,"Interface"],"Advanced Settings":[null,"Advanced Settings"],"Startup options. Indexer options. Log and show file locations.":[null,"Startup options. Indexer options. Log and show file locations."],"Some options may require a manual restart to take effect.":[null,"Some options may require a manual restart to take effect."],"Default Indexer Language":[null,"Default Indexer Language"],"for adding shows and metadata providers":[null,"for adding shows and metadata providers"],"Launch browser":[null,"Launch browser"],"open the SickRage home page on startup":[null,"open the SickRage home page on startup"],"Initial page":[null,"Initial page"],"Shows":[null,"Shows"],"when launching SickRage interface":[null,"when launching SickRage interface"],"Choose hour to update shows":[null,"Choose hour to update shows"],"with information such as next air dates, show ended, etc. Use 15 for 3pm, 4 for 4am etc.":[null,"with information such as next air dates, show ended, etc. Use 15 for 3pm, 4 for 4am etc."],"note":[null,"note"],"minutes are randomized each time SickRage is started":[null,"minutes are randomized each time SickRage is started"],"Send to trash for actions":[null,"Send to trash for actions"],"when using show \"Remove\" and delete files":[null,"when using show \"Remove\" and delete files"],"on scheduled deletes of the oldest log files":[null,"on scheduled deletes of the oldest log files"],"selected actions use trash (recycle bin) instead of the default permanent delete":[null,"selected actions use trash (recycle bin) instead of the default permanent delete"],"Log file folder location":[null,"Log file folder location"],"Number of Log files saved":[null,"Number of Log files saved"],"number of log files saved when rotating logs (default: 5) (REQUIRES RESTART)":[null,"number of log files saved when rotating logs (default: 5) (REQUIRES RESTART)"],"Size of Log files saved":[null,"Size of Log files saved"],"maximum size in MB of the log file (default: 1MB) (REQUIRES RESTART)":[null,"maximum size in MB of the log file (default: 1MB) (REQUIRES RESTART)"],"Use initial indexer set to":[null,"Use initial indexer set to"],"as the default selection when adding new shows":[null,"as the default selection when adding new shows"],"Timeout show indexer at":[null,"Timeout show indexer at"],"seconds of inactivity when finding new shows (default:20)":[null,"seconds of inactivity when finding new shows (default:20)"],"Show root directories":[null,"Show root directories"],"where the files of shows are located":[null,"where the files of shows are located"],"Save Changes":[null,"Save Changes"],"Options for software updates.":[null,"Options for software updates."],"Check software updates":[null,"Check software updates"],"and display notifications when updates are available. Checks are run on startup and at the frequency set below*":[null,"and display notifications when updates are available. Checks are run on startup and at the frequency set below*"],"Automatically update":[null,"Automatically update"],"fetch and install software updates. Updates are run on startup and in the background at the frequency set below*":[null,"fetch and install software updates. Updates are run on startup and in the background at the frequency set below*"],"Check the server every*":[null,"Check the server every*"],"hours for software updates (default:1)":[null,"hours for software updates (default:1)"],"Notify on software update":[null,"Notify on software update"],"send a message to all enabled notifiers when SickRage has been updated":[null,"send a message to all enabled notifiers when SickRage has been updated"],"User Interface":[null,"User Interface"],"Options for visual appearance.":[null,"Options for visual appearance."],"Interface Language":[null,"Interface Language"],"System Language":[null,"System Language"],"for appearance to take effect, save then refresh your browser":[null,"for appearance to take effect, save then refresh your browser"],"Display theme":[null,"Display theme"],"Dark":[null,"Dark"],"Light":[null,"Light"],"Use a background image":[null,"Use a background image"],"use a custom image as background for SickRage":[null,"use a custom image as background for SickRage"],"Background Path":[null,"Background Path"],"Path to the background image":[null,"Path to the background image"],"Show fanart in the background":[null,"Show fanart in the background"],"on the show summary page":[null,"on the show summary page"],"Fanart transparency":[null,"Fanart transparency"],"transparency of the fanart in the background":[null,"transparency of the fanart in the background"],"Use a custom stylesheet file":[null,""],"use a custom .css file to style SickRage (for advanced users)":[null,""],"Stylesheet File Path":[null,""],"Path to the stylesheet (.css) file":[null,""],"Show all seasons":[null,"Show all seasons"],"Sort with \"The\", \"A\", \"An\"":[null,"Sort with \"The\", \"A\", \"An\""],"include articles (\"The\", \"A\", \"An\") when sorting show lists":[null,"include articles (\"The\", \"A\", \"An\") when sorting show lists"],"Missed episodes range":[null,"Missed episodes range"],"set the range in days of the missed episodes in the Schedule page":[null,"set the range in days of the missed episodes in the Schedule page"],"Display fuzzy dates":[null,"Display fuzzy dates"],"move absolute dates into tooltips and display e.g. \"Last Thu\", \"On Tue\"":[null,"move absolute dates into tooltips and display e.g. \"Last Thu\", \"On Tue\""],"Trim zero padding":[null,"Trim zero padding"],"remove the leading number \"0\" shown on hour of day, and date of month":[null,"remove the leading number \"0\" shown on hour of day, and date of month"],"Date style":[null,"Date style"],"Use System Default":[null,"Use System Default"],"Time style":[null,"Time style"],"seconds are only shown on the History page":[null,"seconds are only shown on the History page"],"Timezone":[null,"Timezone"],"Local":[null,"Local"],"Network":[null,"Network"],"display dates and times in either your timezone or the shows network timezone":[null,"display dates and times in either your timezone or the shows network timezone"],"use local timezone to start searching for episodes minutes after show ends (depends on your dailysearch frequency)":[null,"use local timezone to start searching for episodes minutes after show ends (depends on your dailysearch frequency)"],"Download url":[null,"Download url"],"URL where the shows can be downloaded.":[null,"URL where the shows can be downloaded."],"Web Interface":[null,"Web Interface"],"it is recommended that you enable a username and password to secure SickRage from being tampered with remotely.":[null,"it is recommended that you enable a username and password to secure SickRage from being tampered with remotely."],"these options require a manual restart to take effect.":[null,"these options require a manual restart to take effect."],"API key":[null,"API key"],"used to give 3rd party programs limited access to SickRage":[null,"used to give 3rd party programs limited access to SickRage"],"you can try all the features of the API":[null,"you can try all the features of the API"],"here":[null,"here"],"HTTP logs":[null,"HTTP logs"],"enable logs from the internal Tornado web server":[null,"enable logs from the internal Tornado web server"],"HTTP username":[null,"HTTP username"],"set blank for no login":[null,"set blank for no login"],"HTTP password":[null,"HTTP password"],"blank = no authentication":[null,"blank = no authentication"],"HTTP port":[null,"HTTP port"],"web port to browse and access SickRage (default:8081)":[null,"web port to browse and access SickRage (default:8081)"],"Notify on login":[null,"Notify on login"],"enable to be notified when a new login happens in webserver":[null,"enable to be notified when a new login happens in webserver"],"Listen on IPv6":[null,"Listen on IPv6"],"attempt binding to any available IPv6 address":[null,"attempt binding to any available IPv6 address"],"Enable HTTPS":[null,"Enable HTTPS"],"enable access to the web interface using a HTTPS address":[null,"enable access to the web interface using a HTTPS address"],"HTTPS certificate":[null,"HTTPS certificate"],"file name or path to HTTPS certificate":[null,"file name or path to HTTPS certificate"],"HTTPS key":[null,"HTTPS key"],"file name or path to HTTPS key":[null,"file name or path to HTTPS key"],"Reverse proxy headers":[null,"Reverse proxy headers"],"accept the following reverse proxy headers (advanced)...":[null,"accept the following reverse proxy headers (advanced)..."],"(X-Forwarded-For, X-Forwarded-Host, and X-Forwarded-Proto)":[null,"(X-Forwarded-For, X-Forwarded-Host, and X-Forwarded-Proto)"],"CPU throttling":[null,"CPU throttling"],"Normal (default). High is lower and Low is higher CPU use":[null,"Normal (default). High is lower and Low is higher CPU use"],"Anonymous redirect":[null,"Anonymous redirect"],"backlink protection via anonymizer service, must end in \"?\"":[null,"backlink protection via anonymizer service, must end in \"?\""],"Enable debug":[null,"Enable debug"],"enable debug logs":[null,"enable debug logs"],"Verify SSL Certs":[null,"Verify SSL Certs"],"verify SSL Certificates (Disable this for broken SSL installs (Like QNAP))":[null,"verify SSL Certificates (Disable this for broken SSL installs (Like QNAP))"],"No Restart":[null,"No Restart"],"only shutdown when restarting SR":[null,"only shutdown when restarting SR"],"only select this when you have external software restarting SR automatically when it stops (like FireDaemon)":[null,"only select this when you have external software restarting SR automatically when it stops (like FireDaemon)"],"Encrypt passwords":[null,"Encrypt passwords"],"in the <code>config.ini</code> file":[null,"in the <code>config.ini</code> file"],"warning":[null,"warning"],"passwords must only contain":[null,"passwords must only contain"],"ASCII characters":[null,"ASCII characters"],"Unprotected calendar":[null,"Unprotected calendar"],"allow subscribing to the calendar without user and password":[null,"allow subscribing to the calendar without user and password"],"some services like Google Calendar only work this way":[null,"some services like Google Calendar only work this way"],"Google Calendar Icons":[null,"Google Calendar Icons"],"show an icon next to exported calendar events in Google Calendar":[null,"show an icon next to exported calendar events in Google Calendar"],"Proxy host":[null,"Proxy host"],"blank to disable or proxy to use when connecting to providers":[null,"blank to disable or proxy to use when connecting to providers"],"also use global proxy setting for indexers (tvdb, xem, anidb, etc.)":[null,"also use global proxy setting for indexers (tvdb, xem, anidb, etc.)"],"Skip Remove Detection":[null,"Skip Remove Detection"],"skip detection of removed files":[null,"skip detection of removed files"],"if disabled the episode will be set to the default deleted status":[null,"if disabled the episode will be set to the default deleted status"],"Default deleted episode status":[null,"Default deleted episode status"],"define the status to be set for media file that has been deleted.":[null,"define the status to be set for media file that has been deleted."],"Archived option will keep previous downloaded quality":[null,"Archived option will keep previous downloaded quality"],"example: Downloaded (1080p WEB-DL) ==> Archived (1080p WEB-DL)":[null,"example: Downloaded (1080p WEB-DL) ==> Archived (1080p WEB-DL)"],"Options for github related features.":[null,"Options for github related features."],"Branch version":[null,"Branch version"],"error: No branches found.":[null,"error: No branches found."],"select branch to use (restart required)":[null,"select branch to use (restart required)"],"Authorization Type":[null,"Authorization Type"],"Username and password":[null,"Username and password"],"Personal access token":[null,"Personal access token"],"You must use a personal access token if you're using \"two-factor authentication\" on GitHub.":[null,"You must use a personal access token if you're using \"two-factor authentication\" on GitHub."],"GitHub username":[null,"GitHub username"],"*** (REQUIRED FOR SUBMITTING ISSUES) ***":[null,"*** (REQUIRED FOR SUBMITTING ISSUES) ***"],"GitHub password":[null,"GitHub password"],"GitHub personal access token":[null,"GitHub personal access token"],"Generate Token":[null,"Generate Token"],"Manage Tokens":[null,"Manage Tokens"],"GitHub remote for branch":[null,"GitHub remote for branch"],"access repo configured remotes (save then refresh browser)":[null,"access repo configured remotes (save then refresh browser)"],"default":[null,"default"],"origin":[null,"origin"],"Git executable path":[null,"Git executable path"],"only needed if OS is unable to locate git from env":[null,"only needed if OS is unable to locate git from env"],"Git reset":[null,"Git reset"],"removes untracked files and performs a hard reset on git branch automatically to help resolve update issues":[null,"removes untracked files and performs a hard reset on git branch automatically to help resolve update issues"],"Home Theater / NAS":[null,"Home Theater / NAS"],"Devices":[null,"Devices"],"Social":[null,"Social"],"A free and open source cross-platform media center and home entertainment system software with a 10-foot user interface designed for the living-room TV.":[null,"A free and open source cross-platform media center and home entertainment system software with a 10-foot user interface designed for the living-room TV."],"send KODI commands?":[null,"send KODI commands?"],"Always on":[null,"Always on"],"log errors when unreachable?":[null,"log errors when unreachable?"],"Notify on snatch":[null,"Notify on snatch"],"send a notification when a download starts?":[null,"send a notification when a download starts?"],"Notify on download":[null,"Notify on download"],"send a notification when a download finishes?":[null,"send a notification when a download finishes?"],"Notify on subtitle download":[null,"Notify on subtitle download"],"send a notification when subtitles are downloaded?":[null,"send a notification when subtitles are downloaded?"],"Update library":[null,"Update library"],"update KODI library when a download finishes?":[null,"update KODI library when a download finishes?"],"Full library update":[null,"Full library update"],"perform a full library update if update per-show fails?":[null,"perform a full library update if update per-show fails?"],"Only update first host":[null,"Only update first host"],"only send library updates to the first active host?":[null,"only send library updates to the first active host?"],"KODI IP:Port":[null,"KODI IP:Port"],"host running KODI (eg. 192.168.1.100:8080)":[null,"host running KODI (eg. 192.168.1.100:8080)"],"(multiple host strings must be separated by commas)":[null,"(multiple host strings must be separated by commas)"],"Username":[null,"Username"],"username for your KODI server (blank for none)":[null,"username for your KODI server (blank for none)"],"Password":[null,"Password"],"password for your KODI server (blank for none)":[null,"password for your KODI server (blank for none)"],"Click below to test.":[null,"Click below to test."],"Experience your media on a visually stunning, easy to use interface on your Mac connected to your TV. Your media library has never looked this good!":[null,"Experience your media on a visually stunning, easy to use interface on your Mac connected to your TV. Your media library has never looked this good!"],"For sending notifications to Plex Home Theater (PHT) clients, use the KODI notifier with port <b>3005</b>.":[null,"For sending notifications to Plex Home Theater (PHT) clients, use the KODI notifier with port <b>3005</b>."],"send Plex Media Server library updates?":[null,"send Plex Media Server library updates?"],"Plex Media Server Auth Token":[null,"Plex Media Server Auth Token"],"auth token used by Plex":[null,"auth token used by Plex"],"Update Library":[null,"Update Library"],"update Plex Media Server library when a download finishes":[null,"update Plex Media Server library when a download finishes"],"Plex Media Server IP:Port":[null,"Plex Media Server IP:Port"],"one or more hosts running Plex Media Server<br/>(eg. 192.168.1.1:32400, 192.168.1.2:32400)":[null,"one or more hosts running Plex Media Server<br/>(eg. 192.168.1.1:32400, 192.168.1.2:32400)"],"HTTPS":[null,"HTTPS"],"use https for plex media server requests?":[null,"use https for plex media server requests?"],"Click below to test Plex Media Server(s)":[null,"Click below to test Plex Media Server(s)"],"Test Plex Media Server":[null,"Test Plex Media Server"],"Plex Home Theater":[null,"Plex Home Theater"],"send Plex Home Theater notifications?":[null,"send Plex Home Theater notifications?"],"Plex Home Theater IP:Port":[null,"Plex Home Theater IP:Port"],"one or more hosts running Plex Home Theater<br>(eg. 192.168.1.100:3000, 192.168.1.101:3000)":[null,"one or more hosts running Plex Home Theater<br>(eg. 192.168.1.100:3000, 192.168.1.101:3000)"],"Click below to test Plex Home Theater(s)":[null,"Click below to test Plex Home Theater(s)"],"Test Plex Home Theater":[null,"Test Plex Home Theater"],"some Plex Home Theaters <b class=\"boldest\">do not</b> support notifications e.g. Plexapp for Samsung TVs":[null,"some Plex Home Theaters <b class=\"boldest\">do not</b> support notifications e.g. Plexapp for Samsung TVs"],"Emby":[null,"Emby"],"A home media server built using other popular open source technologies.":[null,"A home media server built using other popular open source technologies."],"send update commands to Emby?":[null,"send update commands to Emby?"],"Emby IP:Port":[null,"Emby IP:Port"],"host running Emby (eg. 192.168.1.100:8096)":[null,"host running Emby (eg. 192.168.1.100:8096)"],"Emby API Key":[null,"Emby API Key"],"Networked Media Jukebox":[null,"Networked Media Jukebox"],"The Networked Media Jukebox, or NMJ, is the official media jukebox interface made available for the Popcorn Hour 200-series.":[null,"The Networked Media Jukebox, or NMJ, is the official media jukebox interface made available for the Popcorn Hour 200-series."],"send update commands to NMJ?":[null,"send update commands to NMJ?"],"Popcorn IP address":[null,"Popcorn IP address"],"IP address of Popcorn 200-series (eg. 192.168.1.100)":[null,"IP address of Popcorn 200-series (eg. 192.168.1.100)"],"Get settings":[null,"Get settings"],"Get Settings":[null,"Get Settings"],"the Popcorn Hour device must be powered on and NMJ running.":[null,"the Popcorn Hour device must be powered on and NMJ running."],"NMJ database":[null,"NMJ database"],"automatically filled via the 'Get Settings' button.":[null,"automatically filled via the 'Get Settings' button."],"NMJ mount url":[null,"NMJ mount url"],"Networked Media Jukebox v2":[null,"Networked Media Jukebox v2"],"The Networked Media Jukebox, or NMJv2, is the official media jukebox interface made available for the Popcorn Hour 300 & 400-series.":[null,"The Networked Media Jukebox, or NMJv2, is the official media jukebox interface made available for the Popcorn Hour 300 & 400-series."],"send update commands to NMJv2?":[null,"send update commands to NMJv2?"],"IP address of Popcorn 300/400-series (eg. 192.168.1.100)":[null,"IP address of Popcorn 300/400-series (eg. 192.168.1.100)"],"Database location":[null,"Database location"],"Database instance":[null,"Database instance"],"adjust this value if the wrong database is selected.":[null,"adjust this value if the wrong database is selected."],"Find database":[null,"Find database"],"Find Database":[null,"Find Database"],"the Popcorn Hour device must be powered on.":[null,"the Popcorn Hour device must be powered on."],"NMJv2 database":[null,"NMJv2 database"],"automatically filled via the 'Find Database' buttons.":[null,"automatically filled via the 'Find Database' buttons."],"Synology":[null,"Synology"],"The Synology DiskStation NAS.":[null,"The Synology DiskStation NAS."],"Synology Indexer is the daemon running on the Synology NAS to build its media database.":[null,"Synology Indexer is the daemon running on the Synology NAS to build its media database."],"send Synology notifications?":[null,"send Synology notifications?"],"requires SickRage to be running on your Synology NAS.":[null,"requires SickRage to be running on your Synology NAS."],"Synology Indexer":[null,"Synology Indexer"],"Synology Notifier is the notification system of Synology DSM":[null,"Synology Notifier is the notification system of Synology DSM"],"send notifications to the Synology Notifier?":[null,"send notifications to the Synology Notifier?"],"pyTivo":[null,"pyTivo"],"pyTivo is both an HMO and GoBack server. This notifier will load the completed downloads to your Tivo.":[null,"pyTivo is both an HMO and GoBack server. This notifier will load the completed downloads to your Tivo."],"send notifications to pyTivo?":[null,"send notifications to pyTivo?"],"requires the downloaded files to be accessible by pyTivo.":[null,"requires the downloaded files to be accessible by pyTivo."],"pyTivo IP:Port":[null,"pyTivo IP:Port"],"host running pyTivo (eg. 192.168.1.1:9032)":[null,"host running pyTivo (eg. 192.168.1.1:9032)"],"pyTivo share name":[null,"pyTivo share name"],"value used in pyTivo Web Configuration to name the share.":[null,"value used in pyTivo Web Configuration to name the share."],"Tivo name":[null,"Tivo name"],"(Messages & Settings > Account & System Information > System Information > DVR name)":[null,"(Messages & Settings > Account & System Information > System Information > DVR name)"],"Growl":[null,"Growl"],"A cross-platform unobtrusive global notification system.":[null,"A cross-platform unobtrusive global notification system."],"send Growl notifications?":[null,"send Growl notifications?"],"Growl IP:Port":[null,"Growl IP:Port"],"host running Growl (eg. 192.168.1.100:23053)":[null,"host running Growl (eg. 192.168.1.100:23053)"],"may leave blank if SickRage is on the same host.":[null,"may leave blank if SickRage is on the same host."],"otherwise Growl <b>requires</b> a password to be used.":[null,"otherwise Growl <b>requires</b> a password to be used."],"Click below to register and test Growl, this is required for Growl notifications to work.":[null,"Click below to register and test Growl, this is required for Growl notifications to work."],"Register Growl":[null,"Register Growl"],"Prowl":[null,"Prowl"],"A Growl client for iOS.":[null,"A Growl client for iOS."],"send Prowl notifications?":[null,"send Prowl notifications?"],"Prowl Message Title":[null,"Prowl Message Title"],"Global Prowl API key(s)":[null,"Global Prowl API key(s)"],"Prowl API(s) listed here, separated by commas if applicable, will<br> receive notifications for <b>all</b> shows. Your Prowl API key is available at:":[null,"Prowl API(s) listed here, separated by commas if applicable, will<br> receive notifications for <b>all</b> shows. Your Prowl API key is available at:"],"(this field may be blank except when testing.)":[null,"(this field may be blank except when testing.)"],"Show notification list":[null,"Show notification list"],"-- Select a Show --":[null,"-- Select a Show --"],"Configure per-show notifications here by entering Prowl API key(s), separated by commas, '\n 'after selecting a show in the drop-down box. Be sure to activate the 'Save for this show' '\n 'button below after each entry.":[null,"Configure per-show notifications here by entering Prowl API key(s), separated by commas, '\n 'after selecting a show in the drop-down box. Be sure to activate the 'Save for this show' '\n 'button below after each entry."],"Save for this show":[null,"Save for this show"],"Prowl priority":[null,"Prowl priority"],"Very Low":[null,"Very Low"],"Moderate":[null,"Moderate"],"Normal":[null,"Normal"],"High":[null,"High"],"Emergency":[null,"Emergency"],"priority of Prowl messages from SickRage.":[null,"priority of Prowl messages from SickRage."],"Libnotify":[null,"Libnotify"],"The standard desktop notification API for Linux/*nix systems. This notifier will only function if the pynotify module is installed (Ubuntu/Debian package <a href=\"apt:python-notify\">python-notify</a>).":[null,"The standard desktop notification API for Linux/*nix systems. This notifier will only function if the pynotify module is installed (Ubuntu/Debian package <a href=\"apt:python-notify\">python-notify</a>)."],"send Libnotify notifications?":[null,"send Libnotify notifications?"],"Pushover":[null,"Pushover"],"Pushover makes it easy to send real-time notifications to your Android and iOS devices.":[null,"Pushover makes it easy to send real-time notifications to your Android and iOS devices."],"send Pushover notifications?":[null,"send Pushover notifications?"],"Pushover key":[null,"Pushover key"],"user key of your Pushover account":[null,"user key of your Pushover account"],"Pushover API key":[null,"Pushover API key"],"click here":[null,""]," to create a Pushover API key":[null,""],"Pushover devices":[null,"Pushover devices"],"comma separated list of pushover devices you want to send notifications to":[null,"comma separated list of pushover devices you want to send notifications to"],"Pushover notification sound":[null,"Pushover notification sound"],"Bike":[null,"Bike"],"Bugle":[null,"Bugle"],"Cash Register":[null,"Cash Register"],"Classical":[null,"Classical"],"Cosmic":[null,"Cosmic"],"Falling":[null,"Falling"],"Gamelan":[null,"Gamelan"],"Incoming":[null,"Incoming"],"Intermission":[null,"Intermission"],"Magic":[null,"Magic"],"Mechanical":[null,"Mechanical"],"Piano Bar":[null,"Piano Bar"],"Siren":[null,"Siren"],"Space Alarm":[null,"Space Alarm"],"Tug Boat":[null,"Tug Boat"],"Alien Alarm (long)":[null,"Alien Alarm (long)"],"Climb (long)":[null,"Climb (long)"],"Persistent (long)":[null,"Persistent (long)"],"Pushover Echo (long)":[null,"Pushover Echo (long)"],"Up Down (long)":[null,"Up Down (long)"],"None (silent)":[null,"None (silent)"],"Device specific":[null,"Device specific"],"choose notification sound to use":[null,"choose notification sound to use"],"Pushover priority":[null,"Pushover priority"],"Choose priority to use":[null,"Choose priority to use"],"Boxcar 2":[null,"Boxcar 2"],"Read your messages where and when you want them!":[null,"Read your messages where and when you want them!"],"send Boxcar notifications?":[null,"send Boxcar notifications?"],"Boxcar2 access token":[null,"Boxcar2 access token"],"access token for your Boxcar account.":[null,"access token for your Boxcar account."],"NMA":[null,"NMA"],"Notify My Android":[null,"Notify My Android"],"Notify My Android is a Prowl-like Android App and API that offers an easy way to send notifications from your application directly to your Android device.":[null,"Notify My Android is a Prowl-like Android App and API that offers an easy way to send notifications from your application directly to your Android device."],"send NMA notifications?":[null,"send NMA notifications?"],"NMA API key":[null,"NMA API key"],"(multiple keys must be separated by commas, up to a maximum of 5)":[null,"(multiple keys must be separated by commas, up to a maximum of 5)"],"NMA priority":[null,"NMA priority"],"priority of NMA messages from SickRage.":[null,"priority of NMA messages from SickRage."],"Pushalot":[null,"Pushalot"],"Pushalot is a platform for receiving custom push notifications to connected devices running Windows Phone or Windows 8.":[null,"Pushalot is a platform for receiving custom push notifications to connected devices running Windows Phone or Windows 8."],"send Pushalot notifications ?":[null,"send Pushalot notifications ?"],"Pushalot authorization token":[null,"Pushalot authorization token"],"authorization token of your Pushalot account.":[null,"authorization token of your Pushalot account."],"Pushbullet":[null,"Pushbullet"],"Pushbullet is a platform for receiving custom push notifications to connected devices running Android/iOS and desktop browsers such as Chrome, Firefox or Opera.":[null,"Pushbullet is a platform for receiving custom push notifications to connected devices running Android/iOS and desktop browsers such as Chrome, Firefox or Opera."],"send Pushbullet notifications?":[null,"send Pushbullet notifications?"],"Pushbullet API key":[null,"Pushbullet API key"],"API key of your Pushbullet account":[null,"API key of your Pushbullet account"],"Pushbullet devices":[null,"Pushbullet devices"],"Update device list":[null,"Update device list"],"Pushbullet channels":[null,"Pushbullet channels"],"Free Mobile":[null,"Free Mobile"],"Free Mobile is a famous French cellular network provider.<br> It provides to their customer a free SMS API.":[null,"Free Mobile is a famous French cellular network provider. <br> It provides their customers with a free SMS API."],"send SMS notifications?":[null,"send SMS notifications?"],"send a SMS when a download starts?":[null,"send a SMS when a download starts?"],"send a SMS when a download finishes?":[null,"send a SMS when a download finishes?"],"send a SMS when subtitles are downloaded?":[null,"send a SMS when subtitles are downloaded?"],"Free Mobile customer ID":[null,"Free Mobile customer ID"],"it's your Free Mobile customer ID (8 digits)":[null,"it's your Free Mobile customer ID (8 digits)"],"Free Mobile API key":[null,"Free Mobile API key"],"find your API key in your customer portal.":[null,"find your API key in your customer portal."],"Click below to test your settings.":[null,"Click below to test your settings."],"Telegram":[null,"Telegram"],"Telegram is a cloud-based instant messaging service.":[null,"Telegram is a cloud-based instant messaging service."],"send Telegram notifications?":[null,"send Telegram notifications?"],"send a message when a download starts?":[null,"send a message when a download starts?"],"send a message when a download finishes?":[null,"send a message when a download finishes?"],"send a message when subtitles are downloaded?":[null,"send a message when subtitles are downloaded?"],"User/group ID":[null,"User/group ID"],"contact @myidbot on Telegram to get an ID":[null,"contact @myidbot on Telegram to get an ID"],"Bot API token":[null,"Bot API token"],"contact @BotFather on Telegram to set up one":[null,"contact @BotFather on Telegram to set up one"],"Join":[null,"Join"],"Join all of your devices together!":[null,"Join all of your devices together!"],"send Join notifications?":[null,"send Join notifications?"],"Device ID":[null,"Device ID"],"per device specific id":[null,"per device specific id"]," to create a Join API key":[null,""],"Twilio":[null,"Twilio"],"Twilio is a webservice API that allows you to communicate directly with a mobile number. This notifier will send a text directly to your mobile device.":[null,"Twilio is a webservice API that allows you to communicate directly with a mobile number. This notifier will send a text directly to your mobile device."],"should SickRage text your mobile device?":[null,"should SickRage text your mobile device?"],"Twilio Account SID":[null,"Twilio Account SID"],"account SID of your Twilio account.":[null,"account SID of your Twilio account."],"Twilio Auth Token":[null,"Twilio Auth Token"],"Twilio Phone SID":[null,"Twilio Phone SID"],"phone SID that you would like to send the sms from":[null,"phone SID that you would like to send the sms from"],"Your phone number":[null,"Your phone number"],"phone number that will receive the sms. Please use the format +1-###-###-####":[null,"phone number that will receive the sms. Please use the format +1-###-###-####"],"Twitter":[null,"Twitter"],"A social networking and microblogging service, enabling its users to send and read other users' messages called tweets.":[null,"A social networking and microblogging service, enabling its users to send and read other users' messages called tweets."],"should SickRage post tweets on Twitter?":[null,"should SickRage post tweets on Twitter?"],"you may want to use a secondary account.":[null,"you may want to use a secondary account."],"send direct message":[null,"send direct message"],"send a notification via Direct Message, not via status update":[null,"send a notification via Direct Message, not via status update"],"send DM to":[null,"send DM to"],"Twitter account to send Direct Messages to (must follow you)":[null,"Twitter account to send Direct Messages to (must follow you)"],"Step One":[null,"Step One"],"Request Authorization":[null,"Request Authorization"],"Click the \"Request Authorization\" button.<br> This will open a new page containing an auth key.<br> <b>note:</b> if nothing happens check your popup blocker.":[null,"Click the \"Request Authorization\" button.<br> This will open a new page containing an auth key.<br> <b>note:</b> if nothing happens check your popup blocker."],"Step Two":[null,"Step Two"],"Enter the key Twitter gave you below, and click \"Verify Key\".":[null,"Enter the key Twitter gave you below, and click \"Verify Key\"."],"Trakt":[null,"Trakt"],"Trakt helps keep a record of what TV shows and movies you are watching. Based on your favorites, Trakt recommends additional shows and movies you'll enjoy!":[null,"Trakt helps keep a record of what TV shows and movies you are watching. Based on your favorites, Trakt recommends additional shows and movies you'll enjoy!"],"send Trakt.tv notifications?":[null,"send Trakt.tv notifications?"],"username of your Trakt account.":[null,"username of your Trakt account."],"Trakt PIN":[null,"Trakt PIN"],"Get Trakt PIN":[null,"Get Trakt PIN"],"PIN code to authorize SickRage to access Trakt on your behalf.":[null,"PIN code to authorize SickRage to access Trakt on your behalf."],"API Timeout":[null,"API Timeout"],"seconds to wait for Trakt API to respond. (Use 0 to wait forever)":[null,"seconds to wait for Trakt API to respond. (Use 0 to wait forever)"],"Default indexer":[null,"Default indexer"],"Sync libraries":[null,"Sync libraries"],"sync your SickRage show library with your trakt show library.":[null,"sync your SickRage show library with your trakt show library."],"Remove Episodes From Collection":[null,"Remove Episodes From Collection"],"remove an episode from your Trakt Collection if it is not in your SickRage Library.":[null,"remove an episode from your Trakt Collection if it is not in your SickRage Library."],"Sync watchlist":[null,"Sync watchlist"],"sync your SickRage show watchlist with your trakt show watchlist (either Show and Episode).":[null,"sync your SickRage show watchlist with your trakt show watchlist (either Show and Episode)."],"episode will be added on watch list when wanted or snatched and will be removed when downloaded ":[null,"episode will be added on watch list when wanted or snatched and will be removed when downloaded "],"Watchlist add method":[null,"Watchlist add method"],"Skip All":[null,"Skip All"],"Download Pilot Only":[null,"Download Pilot Only"],"Get whole show":[null,"Get whole show"],"method in which to download episodes for new shows.":[null,"method in which to download episodes for new shows."],"Remove episode":[null,"Remove episode"],"remove an episode from your watchlist after it is downloaded.":[null,"remove an episode from your watchlist after it is downloaded."],"Remove series":[null,"Remove series"],"remove the whole series from your watchlist after any download.":[null,"remove the whole series from your watchlist after any download."],"Remove watched show":[null,"Remove watched show"],"remove the show from sickrage if it's ended and completely watched":[null,"remove the show from sickrage if it's ended and completely watched"],"Start paused":[null,"Start paused"],"shows grabbed from your trakt watchlist start paused.":[null,"shows grabbed from your trakt watchlist start paused."],"Trakt blackList name":[null,"Trakt blackList name"],"name (slug) of list on Trakt for blacklisting show on 'Add Trending Show' & 'Add Recommended Shows' pages":[null,"name (slug) of list on Trakt for blacklisting show on 'Add Trending Show' & 'Add Recommended Shows' pages"],"Email":[null,"Email"],"Allows configuration of email notifications on a per show basis.":[null,"Allows configuration of email notifications on a per show basis."],"send email notifications?":[null,"send email notifications?"],"SMTP host":[null,"SMTP host"],"hostname of your SMTP email server.":[null,"hostname of your SMTP email server."],"SMTP port":[null,"SMTP port"],"port number used to connect to your SMTP host.":[null,"port number used to connect to your SMTP host."],"SMTP from":[null,"SMTP from"],"sender email address, some hosts require a real address.":[null,"sender email address, some hosts require a real address."],"Use TLS":[null,"Use TLS"],"check to use TLS encryption.":[null,"check to use TLS encryption."],"SMTP user":[null,"SMTP user"],"(optional) your SMTP server username.":[null,"(optional) your SMTP server username."],"SMTP password":[null,"SMTP password"],"(optional) your SMTP server password.":[null,"(optional) your SMTP server password."],"Global email list":[null,"Global email list"],"email addresses listed here, separated by commas if applicable, will<br> receive notifications for <b>all</b> shows.":[null,"email addresses listed here, separated by commas if applicable, will<br> receive notifications for <b>all</b> shows."],"(This field may be blank except when testing.)":[null,"(This field may be blank except when testing.)"],"Email Subject":[null,"Email Subject"],"use a custom subject for some privacy protection?":[null,"use a custom subject for some privacy protection?"],"(leave blank for the default SickRage subject)":[null,"(leave blank for the default SickRage subject)"],"configure per-show notifications here by entering email address(es), separated by commas,":[null,"configure per-show notifications here by entering email address(es), separated by commas,"],"after selecting a show in the drop-down box. Be sure to activate the 'Save for this show'":[null,"after selecting a show in the drop-down box. Be sure to activate the 'Save for this show'"],"button below after each entry.":[null,"button below after each entry."],"Slack":[null,"Slack"],"Slack brings all your communication together in one place. It's real-time messaging, archiving and search for modern teams.":[null,"Slack brings all your communication together in one place. It's real-time messaging, archiving and search for modern teams."],"should SickRage post messages on Slack?":[null,"should SickRage post messages on Slack?"],"Slack Incoming Webhook":[null,"Slack Incoming Webhook"],"Discord":[null,"Discord"],"All-in-one voice and text chat for gamers that's free, secure, and works on both your desktop and phone.":[null,"All-in-one voice and text chat for gamers that's free, secure, and works on both your desktop and phone."],"Should SickRage post messages on Discord?":[null,"Should SickRage post messages on Discord?"],"Discord Incoming Webhook":[null,"Discord Incoming Webhook"],"Create webhook under channel settings.":[null,"Create webhook under channel settings."],"Discord Bot Name":[null,"Discord Bot Name"],"Blank will use webhook default Name.":[null,"Blank will use webhook default Name."],"Discord Avatar URL":[null,"Discord Avatar URL"],"Blank will use webhook default Avatar.":[null,"Blank will use webhook default Avatar."],"Discord TTS":[null,"Discord TTS"],"Send notifications using text-to-speech":[null,"Send notifications using text-to-speech"],"Post-Processing":[null,"Post-Processing"],"Episode Naming":[null,"Episode Naming"],"Metadata":[null,"Metadata"],"Settings that dictate how SickRage should process completed downloads.":[null,"Settings that dictate how SickRage should process completed downloads."],"enable the automatic post processor to scan and process any files in your Post Processing Dir":[null,"enable the automatic post processor to scan and process any files in your Post Processing Dir"],"do not use if you use an external Post Processing script":[null,"do not use if you use an external Post Processing script"],"Post Processing Dir":[null,"Post Processing Dir"],"the folder where your download client puts the completed TV downloads.":[null,"the folder where your download client puts the completed TV downloads."],"please use seperate downloading and completed folders in your download client if possible.":[null,"please use seperate downloading and completed folders in your download client if possible."],"Processing Method":[null,"Processing Method"],"what method should be used to put files into the library?":[null,"what method should be used to put files into the library?"],"if you keep seeding torrents after they finish, please avoid the 'move' processing method to prevent errors.":[null,"if you keep seeding torrents after they finish, please avoid the 'move' processing method to prevent errors."],"Auto Post-Processing Frequency":[null,"Auto Post-Processing Frequency"],"time in minutes to check for new files to auto post-process (min 10)":[null,"time in minutes to check for new files to auto post-process (min 10)"],"Postpone post processing":[null,"Postpone post processing"],"wait to process a folder if sync files are present.":[null,"wait to process a folder if sync files are present."],"Sync File Extensions":[null,"Sync File Extensions"],"comma seperated list of extensions or filename globs SickRage ignores when Post Processing":[null,"comma seperated list of extensions or filename globs SickRage ignores when Post Processing"],"Rename Episodes":[null,"Rename Episodes"],"rename episode using the Episode Naming settings?":[null,"rename episode using the Episode Naming settings?"],"Create missing show directories":[null,"Create missing show directories"],"create missing show directories when they get deleted":[null,"create missing show directories when they get deleted"],"Add shows without directory":[null,"Add shows without directory"],"add shows without creating a directory (not recommended)":[null,"add shows without creating a directory (not recommended)"],"Move associated files":[null,"Move associated files"],"move associated (srt/srr/sfv/etc) files while post processing?":[null,"move associated (srt/srr/sfv/etc) files while post processing?"],"Rename .nfo file":[null,"Rename .nfo file"],"rename the original .nfo file to .nfo-orig to avoid conflicts?":[null,"rename the original .nfo file to .nfo-orig to avoid conflicts?"],"Associated file extensions":[null,"Associated file extensions"],"comma separated list of associated file extensions SickRage should keep while post processing.":[null,"comma separated list of associated file extensions SickRage should keep while post processing."],"leaving it empty means no associated files will be post processed":[null,"leaving it empty means no associated files will be post processed"],"Delete non associated files":[null,"Delete non associated files"],"delete non associated files while post processing?":[null,"delete non associated files while post processing?"],"Change File Date":[null,"Change File Date"],"set last modified filedate to the date that the episode aired?":[null,"set last modified filedate to the date that the episode aired?"],"some systems may ignore this feature.":[null,"some systems may ignore this feature."],"Timezone for File Date":[null,"Timezone for File Date"],"local":[null,"local"],"network":[null,"network"],"what timezone should be used to change File Date?":[null,"what timezone should be used to change File Date?"],"Unpack":[null,"Unpack"],"What to do with archived releases found in your <i>TV Download Dir</i>?":[null,"What to do with archived releases found in your <i>TV Download Dir</i>?"],"Ignore (do not process contents)":[null,"Ignore (do not process contents)"],"Unpack (process contents)":[null,"Unpack (process contents)"],"Treat as video (process archive as-is)":[null,"Treat as video (process archive as-is)"],"'Unpack' only works with RAR archives":[null,"'Unpack' only works with RAR archives"],"Windows":[null,"Windows"],"WinRar is required on windows":[null,"WinRar is required on windows"],"Unpack Directory":[null,"Unpack Directory"],"Choose a path to unpack files, leave blank to unpack in download dir":[null,"Choose a path to unpack files, leave blank to unpack in download dir"],"Unrar Location":[null,"Unrar Location"],"add the path to unrar if it is not in the system path":[null,"add the path to unrar if it is not in the system path"],"Alternate Unrar Tool":[null,"Alternate Unrar Tool"],"add the path to an alternate unrar tool if it is not in the system path":[null,"add the path to an alternate unrar tool if it is not in the system path"],"Delete RAR contents":[null,"Delete RAR contents"],"delete content of RAR files, even if Process Method not set to move?":[null,"delete content of RAR files, even if Process Method not set to move?"],"only working with RAR archive":[null,"only working with RAR archive"],"Don't delete empty folders":[null,"Don't delete empty folders"],"leave empty folders when Post Processing?":[null,"leave empty folders when Post Processing?"],"can be overridden using manual Post Processing":[null,"can be overridden using manual Post Processing"],"Follow symbolic-links":[null,"Follow symbolic-links"],"follow down symbolic links in download directory?":[null,"follow down symbolic links in download directory?"],"<b>EXPERTS ONLY.</b><br>Enable only if you know what <b>circular symbolic links</b> are,<br>and can <b>verify that you have none</b>.":[null,"<b>EXPERTS ONLY.</b><br>Enable only if you know what <b>circular symbolic links</b> are,<br>and can <b>verify that you have none</b>."],"Use icacls":[null,"Use icacls"],"Windows only":[null,"Windows only"],"sets video permissions after using the move method in post processing":[null,"sets video permissions after using the move method in post processing"],"Extra Scripts":[null,"Extra Scripts"],"see":[null,"see"],"for script arguments description and usage.":[null,"for script arguments description and usage."],"How SickRage will name and sort your episodes.":[null,"How SickRage will name and sort your episodes."],"Name Pattern":[null,"Name Pattern"],"Toggle Naming Legend":[null,"Toggle Naming Legend"],"don't forget to add quality pattern. Otherwise after post-processing the episode will have UNKNOWN quality":[null,"don't forget to add quality pattern. Otherwise after post-processing the episode will have UNKNOWN quality"],"Meaning":[null,"Meaning"],"Pattern":[null,"Pattern"],"Result":[null,"Result"],"Use lower case if you want lower case names (eg. %sn, %e.n, %q_n etc)":[null,"Use lower case if you want lower case names (eg. %sn, %e.n, %q_n etc)"],"Show Name":[null,"Show Name"],"Show.Name":[null,"Show.Name"],"Show_Name":[null,"Show_Name"],"Season Number":[null,"Season Number"],"XEM Season Number":[null,"XEM Season Number"],"Episode Number":[null,"Episode Number"],"XEM Episode Number":[null,"XEM Episode Number"],"Episode Name":[null,"Episode Name"],"Episode.Name":[null,"Episode.Name"],"Episode_Name":[null,"Episode_Name"],"Air Date":[null,"Air Date"],"Post-Processing Date":[null,"Post-Processing Date"],"Quality":[null,"Quality"],"Scene Quality":[null,"Scene Quality"],"Release Name":[null,"Release Name"],"SickRage' is used in place of RLSGROUP if it could not be properly detected":[null,"SickRage' is used in place of RLSGROUP if it could not be properly detected"],"Release Group":[null,"Release Group"],"If episode is proper/repack add 'proper' to name.":[null,"If episode is proper/repack add 'proper' to name."],"Release Type":[null,"Release Type"],"Multi-Episode Style":[null,"Multi-Episode Style"],"Single-EP Sample":[null,"Single-EP Sample"],"Multi-EP sample":[null,"Multi-EP sample"],"Strip Show Year":[null,"Strip Show Year"],"remove the TV show's year when renaming the file?":[null,"remove the TV show's year when renaming the file?"],"only applies to shows that have year inside parentheses":[null,"only applies to shows that have year inside parentheses"],"Custom Air-By-Date":[null,"Custom Air-By-Date"],"name air-by-date shows differently than regular shows?":[null,"name air-by-date shows differently than regular shows?"],"Toggle ABD Naming Legend":[null,"Toggle ABD Naming Legend"],"Regular Air Date":[null,"Regular Air Date"],"Year":[null,"Year"],"Month":[null,"Month"],"Day":[null,"Day"],"Multi-EP style is ignored":[null,"Multi-EP style is ignored"],"Custom Sports":[null,"Custom Sports"],"name sports shows differently than regular shows?":[null,"name sports shows differently than regular shows?"],"Toggle Sports Naming Legend":[null,"Toggle Sports Naming Legend"],"Sports Air Date":[null,"Sports Air Date"],"Custom Anime":[null,"Custom Anime"],"name anime shows differently than regular shows?":[null,"name anime shows differently than regular shows?"],"Toggle Anime Naming Legend":[null,"Toggle Anime Naming Legend"],">XEM Season Number":[null,">XEM Season Number"],"Single-EP Anime Sample":[null,"Single-EP Anime Sample"],"Multi-EP Anime sample":[null,"Multi-EP Anime sample"],"Add Absolute Number":[null,"Add Absolute Number"],"add the absolute number to the season/episode format?":[null,"add the absolute number to the season/episode format?"],"only applies to anime. (eg. S15E45 - 310 vs S15E45)":[null,"only applies to anime. (eg. S15E45 - 310 vs S15E45)"],"Only Absolute Number":[null,"Only Absolute Number"],"replace season/episode format with absolute number":[null,"replace season/episode format with absolute number"],"only applies to anime.":[null,"only applies to anime."],"No Absolute Number":[null,"No Absolute Number"],"don't include the absolute number":[null,"don't include the absolute number"],"The data associated to the data. These are files associated to a TV show in the form of images and text that, when supported, will enhance the viewing experience.":[null,"The data associated to the data. These are files associated to a TV show in the form of images and text that, when supported, will enhance the viewing experience."],"Metadata Type":[null,"Metadata Type"],"toggle metadata options that you wish to be created":[null,"toggle metadata options that you wish to be created"],"multiple targets may be used":[null,"multiple targets may be used"],"Select Metadata":[null,"Select Metadata"],"Provider Priorities":[null,"Provider Priorities"],"Provider Options":[null,"Provider Options"],"Configure Custom Newznab Providers":[null,"Configure Custom Newznab Providers"],"Configure Custom Torrent Providers":[null,"Configure Custom Torrent Providers"],"Check off and drag the providers into the order you want them to be used.":[null,"Check off and drag the providers into the order you want them to be used."],"At least one provider is required but two are recommended.":[null,"At least one provider is required but two are recommended."],"Torrent providers can be toggled in ":[null,"Torrent providers can be toggled in "],"Provider does not support backlog searches at this time.":[null,"Provider does not support backlog searches at this time."],"Provider is <b>NOT WORKING</b>.":[null,"Provider is <b>NOT WORKING</b>."],"Configure individual provider settings here.":[null,"Configure individual provider settings here."],"Check with provider's website on how to obtain an API key if needed.":[null,"Check with provider's website on how to obtain an API key if needed."],"Configure provider":[null,"Configure provider"],"no providers available to configure.":[null,"no providers available to configure."],"URL":[null,"URL"],"Enable daily searches":[null,"Enable daily searches"],"enable provider to perform daily searches.":[null,"enable provider to perform daily searches."],"Enable backlog searches":[null,"Enable backlog searches"],"enable provider to perform backlog searches.":[null,"enable provider to perform backlog searches."],"Season search mode":[null,"Season search mode"],"when searching for complete seasons you can choose to have it look for season packs only, or choose to have it build a complete season from just single episodes.":[null,"when searching for complete seasons you can choose to have it look for season packs only, or choose to have it build a complete season from just single episodes."],"season packs only.":[null,"season packs only."],"episodes only.":[null,"episodes only."],"Enable fallback":[null,"Enable fallback"],"when searching for a complete season depending on search mode you may return no results, this helps by restarting the search using the opposite search mode.":[null,"when searching for a complete season depending on search mode you may return no results, this helps by restarting the search using the opposite search mode."],"Custom URL":[null,"Custom URL"],"the URL should include the protocol (and port if applicable). Examples: http://192.168.1.4/ or http://localhost:3000/":[null,"the URL should include the protocol (and port if applicable). Examples: http://192.168.1.4/ or http://localhost:3000/"],"Api key":[null,"Api key"],"Digest":[null,"Digest"],"Hash":[null,"Hash"],"Passkey":[null,"Passkey"],"Cookies":[null,"Cookies"],"example: uid=1234;pass=567845439634987<br>note: uid and pass are not your username/password.<br>use DevTools or Firebug to get these values after logging in on your browser.":[null,"example: uid=1234;pass=567845439634987<br>note: uid and pass are not your username/password.<br>use DevTools or Firebug to get these values after logging in on your browser."],"Pin":[null,"Pin"],"Seed ratio":[null,"Seed ratio"],"stop transfer when ratio is reached<br>(-1 SickRage default to seed forever, or leave blank for downloader default)":[null,"stop transfer when ratio is reached<br>(-1 SickRage default to seed forever, or leave blank for downloader default)"],"Minimum seeders":[null,"Minimum seeders"],"Minimum leechers":[null,"Minimum leechers"],"Confirmed download":[null,"Confirmed download"],"only download torrents from trusted or verified uploaders ?":[null,"only download torrents from trusted or verified uploaders ?"],"Ranked torrents":[null,"Ranked torrents"],"only download ranked torrents (trusted releases)":[null,"only download ranked torrents (trusted releases)"],"English torrents":[null,"English torrents"],"only download english torrents, or torrents containing english subtitles":[null,"only download english torrents, or torrents containing english subtitles"],"For Spanish torrents":[null,"For Spanish torrents"],"ONLY search on this provider if show info is defined as \"Spanish\" (avoid provider's use for VOS shows)":[null,"ONLY search on this provider if show info is defined as \"Spanish\" (avoid provider's use for VOS shows)"],"Sorting results by":[null,"Sorting results by"],"Freeleech":[null,"Freeleech"],"only download <b>\"FreeLeech\"</b> torrents.":[null,"only download <b>\"FreeLeech\"</b> torrents."],"Category":[null,"Category"],"select torrent with Italian subtitle":[null,"select torrent with Italian subtitle"],"Configure Custom<br>Newznab Providers":[null,"Configure Custom<br>Newznab Providers"],"Add and setup or remove custom Newznab providers.":[null,"Add and setup or remove custom Newznab providers."],"Select provider":[null,"Select provider"],"-- add new provider --":[null,"-- add new provider --"],"Provider name":[null,"Provider name"],"Site URL":[null,"Site URL"],"Newznab search categories":[null,"Newznab search categories"],"select your Newznab categories on the left, and click the \"update categories\" button to use them for searching.) <b>don't forget to to save the form!":[null,"select your Newznab categories on the left, and click the \"Update Categories\" button to use them for searching.) <b>don't forget to to save the form!"],"Update Categories":[null,"Update Categories"],"Add":[null,"Add"],"Delete":[null,"Delete"],"Add and setup or remove custom RSS providers.":[null,"Add and setup or remove custom RSS providers."],"RSS URL":[null,"RSS URL"],"Search element":[null,"Search element"],"eg: title":[null,"eg: title"],"Episode Search":[null,"Episode Search"],"NZB Search":[null,"NZB Search"],"Torrent Search":[null,"Torrent Search"],"How to manage searching with":[null,"How to manage searching with"],"Randomize Providers":[null,"Randomize Providers"],"randomize the provider search order instead of going in order of placement":[null,"randomize the provider search order instead of going in order of placement"],"Download propers":[null,"Download propers"],"replace original download with \"Proper\" or \"Repack\" if nuked":[null,"replace original download with \"Proper\" or \"Repack\" if nuked"],"Check propers every":[null,"Check propers every"],"24 hours":[null,"24 hours"],"4 hours":[null,"4 hours"],"90 mins":[null,"90 mins"],"45 mins":[null,"45 mins"],"15 mins":[null,"15 mins"],"Backlog search day(s)":[null,"Backlog search day(s)"],"number of day(s) that the \"Forced Backlog Search\" will cover (e.g. 7 Days)":[null,"number of day(s) that the \"Forced Backlog Search\" will cover (e.g. 7 Days)"],"Backlog search frequency":[null,"Backlog search frequency"],"time in minutes between searches (min.":[null,"time in minutes between searches (min."],"Daily search frequency":[null,"Daily search frequency"],"Usenet retention":[null,"Usenet retention"],"age limit in days for usenet articles to be used (e.g. 500)":[null,"age limit in days for usenet articles to be used (e.g. 500)"],"Ignore words":[null,"Ignore words"],"results with one or more word from this list will be ignored<br>separate words with a comma, e.g. \"word1,word2,word3\"":[null,"results with one or more word from this list will be ignored<br>separate words with a comma, e.g. \"word1,word2,word3\""],"Require words":[null,"Require words"],"results with no word from this list will be ignored<br>separate words with a comma, e.g. \"word1,word2,word3\"":[null,"results with no word from this list will be ignored<br>separate words with a comma, e.g. \"word1,word2,word3\""],"Trackers list":[null,"Trackers list"],"trackers that will be added to magnets without trackers<br>separate trackers with a comma, e.g. \"tracker1,tracker2,tracker3\"":[null,"trackers that will be added to magnets without trackers<br>separate trackers with a comma, e.g. \"tracker1,tracker2,tracker3\""],"Ignore language names in subbed results":[null,"Ignore language names in subbed results"],"ignore subbed releases based on language names <br>\n Example: \"dk\" will ignore words: dksub, dksubs, dksubbed, dksubed <br>\n separate languages with a comma, e.g. \"lang1,lang2,lang3":[null,"ignore subbed releases based on language names <br>\n Example: \"dk\" will ignore words: dksub, dksubs, dksubbed, dksubed <br>\n separate languages with a comma, e.g. \"lang1,lang2,lang3"],"Allow high priority":[null,"Allow high priority"],"set downloads of recently aired episodes to high priority":[null,"set downloads of recently aired episodes to high priority"],"Use Failed Downloads":[null,"Use Failed Downloads"],"use Failed Download Handling?":[null,"Use Failed Download Handling?"],"will only work with snatched/downloaded episodes after enabling this":[null,"will only work with snatched/downloaded episodes after enabling this"],"Delete Failed":[null,"Delete Failed"],"delete files left over from a failed download?":[null,"delete files left over from a failed download?"],"this only works if Use Failed Downloads is enabled.":[null,"this only works if Use Failed Downloads is enabled."],"How to handle NZB search results.":[null,"How to handle NZB search results."],"Search NZBs":[null,"Search NZBs"],"enable NZB search providers":[null,"enable NZB search providers"],"Send .nzb files to":[null,"Send .nzb files to"],"SABnzbd server URL":[null,"SABnzbd server URL"],"URL to your SABnzbd server (e.g. http://localhost:8080/)":[null,"URL to your SABnzbd server (e.g. http://localhost:8080/)"],"SABnzbd username":[null,"SABnzbd username"],"(blank for none)":[null,"(blank for none)"],"SABnzbd password":[null,"SABnzbd password"],"SABnzbd API key":[null,"SABnzbd API key"],"locate at... SABnzbd Config -> General -> API Key":[null,"locate at... SABnzbd Config -> General -> API Key"],"Use SABnzbd category":[null,"Use SABnzbd category"],"add downloads to this category (e.g. TV)":[null,"add downloads to this category (e.g. TV)"],"Use SABnzbd category (backlog episodes)":[null,"Use SABnzbd category (backlog episodes)"],"add downloads of old episodes to this category (e.g. TV)":[null,"add downloads of old episodes to this category (e.g. TV)"],"Use SABnzbd category for anime":[null,"Use SABnzbd category for anime"],"add anime downloads to this category (e.g. anime)":[null,"add anime downloads to this category (e.g. anime)"],"Use SABnzbd category for anime (backlog episodes)":[null,"Use SABnzbd category for anime (backlog episodes)"],"add anime downloads of old episodes to this category (e.g. anime)":[null,"add anime downloads of old episodes to this category (e.g. anime)"],"Use forced priority":[null,"Use forced priority"],"enable to change priority from HIGH to FORCED":[null,"enable to change priority from HIGH to FORCED"],"Black hole folder location":[null,"Black hole folder location"],"<b>.nzb</b> files are stored at this location for external software to find and use":[null,"<b>.nzb</b> files are stored at this location for external software to find and use"],"Connect using HTTPS":[null,"Connect using HTTPS"],"enable Secure control in NZBGet and set the correct Secure Port here":[null,"enable Secure control in NZBGet and set the correct Secure Port here"],"NZBget host:port":[null,"NZBget host:port"],"(e.g. localhost:6789)":[null,"(e.g. localhost:6789)"],"NZBget RPC host name and port number (not NZBgetweb!)":[null,"NZBget RPC host name and port number (not NZBgetweb!)"],"NZBget username":[null,"NZBget username"],"locate in nzbget.conf (default:nzbget)":[null,"locate in nzbget.conf (default:nzbget)"],"NZBget password":[null,"NZBget password"],"locate in nzbget.conf (default:tegbzn6789)":[null,"locate in nzbget.conf (default:tegbzn6789)"],"Use NZBget category":[null,"Use NZBget category"],"send downloads marked this category (e.g. TV)":[null,"send downloads marked this category (e.g. TV)"],"Use NZBget category (backlog episodes)":[null,"Use NZBget category (backlog episodes)"],"send downloads of old episodes marked this category (e.g. TV)":[null,"send downloads of old episodes marked this category (e.g. TV)"],"Use NZBget category for anime":[null,"Use NZBget category for anime"],"send anime downloads marked this category (e.g. anime)":[null,"send anime downloads marked this category (e.g. anime)"],"Use NZBget category for anime (backlog episodes)":[null,"Use NZBget category for anime (backlog episodes)"],"send anime downloads of old episodes marked this category (e.g. anime)":[null,"send anime downloads of old episodes marked this category (e.g. anime)"],"NZBget priority":[null,"NZBget priority"],"Very low":[null,"Very low"],"Low":[null,"Low"],"Very high":[null,"Very high"],"Force":[null,"Force"],"priority for daily snatches (no backlog)":[null,"priority for daily snatches (no backlog)"],"Torrent host:port":[null,"Torrent host:port"],"URL to your Synology DSM (e.g. http://localhost:5000/)":[null,"URL to your Synology DSM (e.g. http://localhost:5000/)"],"Client username":[null,"Client username"],"Client password":[null,"Client password"],"Downloaded files location":[null,"Downloaded files location"],"where Synology Download Station will save downloaded files (blank for client default)":[null,"where Synology Download Station will save downloaded files (blank for client default)"],"the destination has to be a shared folder for Synology DS":[null,"the destination has to be a shared folder for Synology DS"],"Click below to test":[null,"Click below to test"],"How to handle Torrent search results.":[null,"How to handle Torrent search results."],"Search torrents":[null,"Search torrents"],"enable torrent search providers":[null,"enable torrent search providers"],"Send .torrent files to":[null,"Send .torrent files to"],"<b>.torrent</b> files are stored at this location for external software to find and use":[null,"<b>.torrent</b> files are stored at this location for external software to find and use"],"URL to your torrent client (e.g. http://localhost:8000/)":[null,"URL to your torrent client (e.g. http://localhost:8000/)"],"Torrent RPC URL":[null,"Torrent RPC URL"],"the path without leading and trailing slashes (e.g. transmission)":[null,"the path without leading and trailing slashes (e.g. transmission)"],"Http Authentication":[null,"Http Authentication"],"Verify certificate":[null,"Verify certificate"],"disable if you get \"Deluge: Authentication Error\" in your log":[null,"disable if you get \"Deluge: Authentication Error\" in your log"],"verify SSL certificates for HTTPS requests":[null,"verify SSL certificates for HTTPS requests"],"Add label to torrent":[null,"Add label to torrent"],"(blank spaces are not allowed)":[null,"(blank spaces are not allowed)"],"label plugin must be enabled in Deluge clients":[null,"label plugin must be enabled in Deluge clients"],"for QBitTorrent 3.3.1 and up":[null,"for QBitTorrent 3.3.1 and up"],"Add label to torrent for anime":[null,"Add label to torrent for anime"],"for QBitTorrent 3.3.1 and up ":[null,"for QBitTorrent 3.3.1 and up "],"where <span id=\"torrent_client\">the torrent client</span> will save downloaded files (blank for client default)":[null,"where <span id=\"torrent_client\">the torrent client</span> will save downloaded files (blank for client default)"],"the destination has to be a shared folder for Synology DS</span>":[null,"the destination has to be a shared folder for Synology DS</span>"],"Minimum seeding time":[null,"Minimum seeding time"],"time in hours":[null,"time in hours"],"(default:'0' passes blank to client and '-1' passes nothing)":[null,"(default:'0' passes blank to client and '-1' passes nothing)"],"Start torrent paused":[null,"Start torrent paused"],"add .torrent to client but do <b style=\"font-weight:900\">not</b> start downloading":[null,"add .torrent to client but do <b style=\"font-weight:900\">not</b> start downloading"],"Allow high bandwidth":[null,"Allow high bandwidth"],"use high bandwidth allocation if priority is high":[null,"use high bandwidth allocation if priority is high"],"Test Connection":[null,"Test Connection"],"Windows Shares":[null,""],"Defines your existing windows shares so that we can add them to the browse dialog":[null,""],"Share #{number}":[null,""],"Share label":[null,""],"Hostname or IP":[null,""],"Share path":[null,""],"Subtitles Search":[null,"Subtitles Search"],"Subtitles Plugin":[null,"Subtitles Plugin"],"Plugin Settings":[null,"Plugin Settings"],"Settings that dictate how SickRage handles subtitles search results.":[null,"Settings that dictate how SickRage handles subtitles search results."],"Search Subtitles":[null,"Search Subtitles"],"Subtitle Languages":[null,"Subtitle Languages"],"Subtitle Directory":[null,"Subtitle Directory"],"the directory where SickRage should store your <i>Subtitles</i> files.":[null,"the directory where SickRage should store your <i>Subtitles</i> files."],"leave empty if you want store subtitle in episode path.":[null,"leave empty if you want store subtitle in episode path."],"Subtitle Find Frequency":[null,"Subtitle Find Frequency"],"time in hours between scans (default: 1)":[null,"time in hours between scans (default: 1)"],"Include Specials":[null,"Include Specials"],"include the show's specials when searching for subtitles?":[null,"include the show's specials when searching for subtitles?"],"Perfect matches":[null,"Perfect matches"],"only download subtitles that match: release group, video codec, audio codec and resolution":[null,"only download subtitles that match: release group, video codec, audio codec and resolution"],"if disabled you may get out of sync subtitles":[null,"if disabled you may get out of sync subtitles"],"Subtitles History":[null,"Subtitles History"],"log downloaded Subtitle on History page?":[null,"log downloaded Subtitle on History page?"],"Subtitles Multi-Language":[null,"Subtitles Multi-Language"],"append language codes to subtitle filenames?":[null,"append language codes to subtitle filenames?"],"this option is required if you use multiple subtitle languages":[null,"this option is required if you use multiple subtitle languages"],"Delete unwanted subtitles":[null,"Delete unwanted subtitles"],"enable to delete unwanted subtitle languages bundled with release":[null,"enable to delete unwanted subtitle languages bundled with release"],"Embedded Subtitles":[null,"Embedded Subtitles"],"ignore subtitles embedded inside video file?":[null,"ignore subtitles embedded inside video file?"],"this will ignore <u>all</u> embedded subtitles for every video file!":[null,"this will ignore <u>all</u> embedded subtitles for every video file!"],"Hearing Impaired Subtitles":[null,"Hearing Impaired Subtitles"],"download hearing impaired style subtitles?":[null,"download hearing impaired style subtitles?"],"See":[null,"See"],"for a script arguments description.":[null,"for a script arguments description."],"Additional scripts separated by <b>|</b>.":[null,"Additional scripts separated by <b>|</b>."],"Scripts are called after each episode has searched and downloaded subtitles.":[null,"Scripts are called after each episode has searched and downloaded subtitles."],"For any scripted languages, include the interpreter executable before the script. See the following example":[null,"For any scripted languages, include the interpreter executable before the script. See the following example"],"For Windows:":[null,"For Windows:"],"For Linux / OS X:":[null,"For Linux / OS X:"],"Subtitle Providers":[null,"Subtitle Providers"],"Check off and drag the plugins into the order you want them to be used.":[null,"Check off and drag the plugins into the order you want them to be used."],"At least one plugin is required.":[null,"At least one plugin is required."]," Web-scraping plugin":[null," Web-scraping plugin"],"Provider Settings":[null,"Provider Settings"],"Set user and password for each provider":[null,"Set user and password for each provider"],"User Name":[null,"User Name"],"Change Show":[null,"Change Show"],"Prev Show":[null,"Prev Show"],"Next Show":[null,"Next Show"],"Jump to Season":[null,"Jump to Season"],"Specials":[null,"Specials"],"Poster for":[null,"Poster for"],"Stars":[null,"Stars"],"minutes":[null,"minutes"],"View other popular {genre} shows on trakt.tv.":[null,"View other popular {genre} shows on trakt.tv."],"View other popular {imdbgenre} shows on IMDB.":[null,"View other popular {imdbgenre} shows on IMDB."],"Allowed":[null,"Allowed"],"Preferred":[null,"Preferred"],"Originally Airs":[null,"Originally Airs"],"Show Status":[null,"Show Status"],"Default EP Status":[null,"Default EP Status"],"Location":[null,"Location"],"Missing":[null,"Missing"],"Scene Name":[null,"Scene Name"],"Required Words":[null,"Required Words"],"Ignored Words":[null,"Ignored Words"],"Size":[null,"Size"],"Info Language":[null,"Info Language"],"Subtitles SR Metadata":[null,"Subtitles SR Metadata"],"Season Folders":[null,"Season Folders"],"Paused":[null,"Paused"],"Air-by-Date":[null,"Air-by-Date"],"Sports":[null,"Sports"],"DVD Order":[null,"DVD Order"],"Scene Numbering":[null,"Scene Numbering"],"Select Filtered Episodes":[null,"Select Filtered Episodes"],"Clear All":[null,"Clear All"],"Change selected episodes to":[null,"Change selected episodes to"],"Select Columns":[null,"Select Columns"],"NFO":[null,"NFO"],"TBN":[null,"TBN"],"Episode":[null,"Episode"],"Absolute":[null,"Absolute"],"Scene":[null,"Scene"],"Scene Absolute":[null,"Scene Absolute"],"File Name":[null,"File Name"],"Airdate":[null,"Airdate"],"Download":[null,"Download"],"Change the value here if scene numbering differs from the indexer episode numbering":[null,"Change the value here if scene numbering differs from the indexer episode numbering"],"Change the value here if scene absolute numbering differs from the indexer absolute numbering":[null,"Change the value here if scene absolute numbering differs from the indexer absolute numbering"],"Manual Search":[null,"Manual Search"],"Do you want to mark this episode as failed?":[null,"Do you want to mark this episode as failed?"],"The episode release name will be added to the failed history, preventing it to be downloaded again.":[null,"The episode release name will be added to the failed history, preventing it being downloaded again."],"Do you want to include the current episode quality in the search?":[null,"Do you want to include the current episode quality in the search?"],"Choosing No will ignore any releases with the same episode quality as the one currently downloaded/snatched.":[null,"Choosing No will ignore any releases with the same episode quality as the one currently downloaded/snatched."],"Download subtitle":[null,"Download subtitle"],"Do you want to re-download the subtitle for this language?":[null,"Do you want to re-download the subtitle for this language?"],"It will overwrite your current subtitle":[null,"It will overwrite your current subtitle"],"Format":[null,"Format"],"Advanced":[null,"Advanced"],"Main Settings":[null,"Main Settings"],"Show Location":[null,"Show Location"],"Preferred Quality":[null,"Preferred Quality"],"Default Episode Status":[null,"Default Episode Status"],"this will set the status for future episodes.":[null,"this will set the status for future episodes."],"this only applies to episode filenames and the contents of metadata files.":[null,"this only applies to episode filenames and the contents of metadata files."],"search for subtitles":[null,"search for subtitles"],"Use SR Metdata":[null,"Use SR Metadata"],"use SickRage metadata when searching for subtitle, this will override the autodiscovered metadata":[null,"use SickRage metadata when searching for subtitles, this will override the autodiscovered metadata"],"pause this show (SickRage will not download episodes)":[null,"pause this show (SickRage will not download episodes)"],"Format Settings":[null,"Format Settings"],"Air by date":[null,"Air by date"],"check if the show is released as Show.03.02.2010 rather than Show.S02E03.":[null,"check if the show is released as Show.03.02.2010 rather than Show.S02E03."],"in case of an air date conflict between regular and special episodes, the later will be ignored.":[null,"in case of an air date conflict between regular and special episodes, the later will be ignored."],"check if the show is Anime and episodes are released as Show.265 rather than Show.S02E03":[null,"check if the show is Anime and episodes are released as Show.265 rather than Show.S02E03"],"check if the show is a sporting or MMA event released as Show.03.02.2010 rather than Show.S02E03":[null,"check if the show is a sporting or MMA event released as Show.03.02.2010 rather than Show.S02E03"],"Season folders":[null,"Season folders"],"group episodes by season folder (uncheck to store in a single folder)":[null,"group episodes by season folder (uncheck to store in a single folder)"],"search by scene numbering (uncheck to search by indexer numbering)":[null,"search by scene numbering (uncheck to search by indexer numbering)"],"use the DVD order instead of the air order":[null,"use the DVD order instead of the air order"],"a \"Force Full Update\" is necessary, and if you have existing episodes you need to sort them manually.":[null,"a \"Force Full Update\" is necessary, and if you have existing episodes you need to sort them manually."],"comma-separated <i>e.g. \"word1,word2,word3</i>\"":[null,"comma-separated <i>e.g. \"word1,word2,word3</i>\""],"search results with one or more words from this list will be ignored.":[null,"search results with one or more words from this list will be ignored."],"e.g. \"word1,word2,word3\"":[null,"e.g. \"word1,word2,word3\""],"search results with no words from this list will be ignored.":[null,"search results with no words from this list will be ignored."],"Scene Exception":[null,"Scene Exception"],"this will affect episode search on NZB and torrent providers.":[null,"this will affect episode search on NZB and torrent providers."],"this list appends to the original show name.":[null,"this list appends to the original show name."],"WARNING logs":[null,"WARNING logs"],"ERROR logs":[null,"ERROR logs"],"There are no events to display.":[null,"There are no events to display."],"Limit":[null,"Limit"],"Layout":[null,"Layout"],"HistoryLayout":[null,"HistoryLayout"],"Compact":[null,"Compact"],"Detailed":[null,"Detailed"],"Time":[null,"Time"],"Provider":[null,"Provider"],"Missing Provider":[null,"Missing Provider"],"missing provider":[null,"missing provider"],"Directory":[null,"Directory"],"Show Name (tvshow.nfo)":[null,"Show Name (tvshow.nfo)"],"Indexer":[null,"Indexer"],"Enter the folder containing the episode":[null,"Enter the folder containing the episode"],"Process Method to be used":[null,"Process Method to be used"],"Copy":[null,"Copy"],"Move":[null,"Move"],"Hard Link":[null,"Hard Link"],"Symbolic Link":[null,"Symbolic Link"],"Symbolic Link Reversed":[null,"Symbolic Link Reversed"],"Force already Post Processed Dir/Files":[null,"Force already Post Processed Dir/Files"],"Mark Dir/Files as priority download":[null,"Mark Dir/Files as priority download"],"(Check it to replace the file even if it exists at higher quality)":[null,"(Check it to replace the file even if it exists at higher quality)"],"Delete files and folders":[null,"Delete files and folders"],"(Check it to delete files and folders like auto processing)":[null,"(Check it to delete files and folders like auto processing)"],"Don't use processing queue":[null,"Don't use processing queue"],"(If checked this will return the result of the process here, but may be slow!)":[null,"(If checked this will return the result of the process here, but may be slow!)"],"Mark download as failed":[null,"Mark download as failed"],"Process":[null,"Process"],"Download subtitles for this show?":[null,"Download subtitles for this show?"],"use SickRage metadata when searching for subtitle, <br />this will override the autodiscovered metadata":[null,"use SickRage metadata when searching for subtitles, <br />this will override the autodiscovered metadata"],"Status for previously aired episodes":[null,"Status for previously aired episodes"],"Status for all future episodes":[null,"Status for all future episodes"],"Group episodes by season folder?":[null,"Group episodes by season folder?"],"Is this show an Anime?":[null,"Is this show an Anime?"],"Is this show scene numbered?":[null,"Is this show scene numbered?"],"Save Defaults":[null,"Save Defaults"],"Use current values as the defaults":[null,"Use current values as the defaults"],"<p>Select your preferred fansub groups from the <b>Available Groups</b> and add them to the <b>Whitelist</b>. Add groups to the <b>Blacklist</b> to ignore them.</p>\n <p>The <b>Whitelist</b> is checked <i>before</i> the <b>Blacklist</b>.</p>\n <p>Groups are shown as <b>Name</b> | <b>Rating</b> | <b>Number of subbed episodes</b>.</p>\n <p>You may also add any fansub group not listed to either list manually.</p>\n <p>When doing this please note that you can only use groups listed on anidb for this anime.\n <br>If a group is not listed on anidb but subbed this anime, please correct anidb's data.</p>":[null,"<p>Select your preferred fansub groups from the <b>Available Groups</b> and add them to the <b>Whitelist</b>. Add groups to the <b>Blacklist</b> to ignore them.</p> \n <p>The <b>Whitelist</b> is checked <i>before</i> the <b>Blacklist</b>.</p> \n <p>Groups are shown as <b>Name</b> | <b>Rating</b> | <b>Number of subbed episodes</b>.</p> \n <p>You may also add any fansub group not listed to either list manually.</p> \n <p>When doing this please note that you can only use groups listed on anidb for this anime.\n <br>If a group is not listed on anidb but subbed this anime, please correct anidb's data.</p>"],"Whitelist":[null,"Whitelist"],"Available Groups":[null,"Available Groups"],"Add to Whitelist":[null,"Add to Whitelist"],"Add to Blacklist":[null,"Add to Blacklist"],"Blacklist":[null,"Blacklist"],"Custom Group":[null,"Custom Group"],"Allowed Quality:":[null,"Allowed Quality:"],"Preferred Quality:":[null,"Preferred Quality:"],"Filter Show Name":[null,"Filter Show Name"],"Root":[null,"Root"],"All":[null,"All"],"Clear Filter(s)":[null,"Clear Filter(s)"],"Poster":[null,"Poster"],"Small Poster":[null,"Small Poster"],"Banner":[null,"Banner"],"Simple":[null,"Simple"],"Next Episode":[null,"Next Episode"],"Progress":[null,"Progress"],"Direction":[null,"Direction"],"Ascending":[null,"Ascending"],"Descending":[null,"Descending"],"Poster Size":[null,"Poster Size"],"Continuing":[null,"Continuing"],"Ended":[null,"Ended"],"Total":[null,"Total"],"Invalid date":[null,"Invalid date"],"No Network":[null,"No Network"],"Next Ep":[null,"Next Ep"],"Prev Ep":[null,"Prev Ep"],"Show":[null,"Show"],"Downloads":[null,"Downloads"],"Active":[null,"Active"],"loading":[null,"loading"],"<p><b><u>Preferred</u></b> qualities will replace those in <b><u>allowed</u></b>, even if they are lower.</p>":[null,"<p><b><u>Preferred</u></b> qualities will replace those in <b><u>allowed</u></b>, even if they are lower.</p>"],"New":[null,"New"],"Set as Default":[null,"Set as Default"],"Remember me":[null,"Remember me"],"Edit Selected":[null,"Edit Selected"],"Subtitle":[null,"Subtitle"],"Default Ep Status":[null,"Default Ep Status"],"Update":[null,"Update"],"Rescan":[null,"Rescan"],"Rename":[null,"Rename"],"Search Subtitle":[null,"Search Subtitle"],"Force Metadata Regen":[null,"Force Metadata Regen"],"Snatched (Allowed)":[null,"Snatched (Allowed)"],"Jump to Show":[null,"Jump to Show"],"Force Backlog":[null,"Force Backlog"],"Manage episodes with status":[null,"Manage episodes with status"],"Manage":[null,"Manage"],"None of your episodes have status":[null,"None of your episodes have status"],"Shows containing":[null,"Shows containing"],"episodes":[null,"episodes"],"Set checked shows/episodes to":[null,"Set checked shows/episodes to"],"Go":[null,"Go"],"Select all":[null,"Select all"],"Clear all":[null,"Clear all"],"Release":[null,"Release"],"Backlog Search":[null,"Backlog Search"],"Not in progress":[null,"Not in progress"],"In Progress":[null,"In Progress"],"Daily Search":[null,"Daily Search"],"Find Propers Search":[null,"Find Propers Search"],"Propers search disabled":[null,"Propers search disabled"],"Subtitle Search":[null,"Subtitle Search"],"Subtitle search disabled":[null,"Subtitle search disabled"],"Search Queue":[null,"Search Queue"],"pending items":[null,"pending items"],"Daily":[null,"Daily"],"Manual":[null,"Manual"],"Changing any settings marked with (<span class=\"separator\">*</span>) will force a refresh of the selected shows.":[null,"Changing any settings marked with (<span class=\"separator\">*</span>) will force a refresh of the selected shows."],"Selected Shows":[null,"Selected Shows"],"Root Directories":[null,"Root Directories"],"Current":[null,"Current"],"Keep":[null,"Keep"],"Custom":[null,"Custom"],"Group episodes by season folder (set to \"No\" to store in a single folder).":[null,"Group episodes by season folder (set to \"No\" to store in a single folder)."],"Pause these shows (SickRage will not download episodes).":[null,"Pause these shows (SickRage will not download episodes)."],"This will set the status for future episodes.":[null,"This will set the status for future episodes."],"Search by scene numbering (set to \"No\" to search by indexer numbering).":[null,"Search by scene numbering (set to \"No\" to search by indexer numbering)."],"Set if these shows are Anime and episodes are released as Show.265 rather than Show.S02E03":[null,"Set if these shows are Anime and episodes are released as Show.265 rather than Show.S02E03"],"Set if these shows are sporting or MMA events released as Show.03.02.2010 rather than Show.S02E03.":[null,"Set if these shows are sporting or MMA events released as Show.03.02.2010 rather than Show.S02E03."],"In case of an air date conflict between regular and special episodes, the later will be ignored.":[null,"In case of an air date conflict between regular and special episodes, the latter will be ignored."],"Set if these shows are released as Show.03.02.2010 rather than Show.S02E03.":[null,"Set if these shows are released as Show.03.02.2010 rather than Show.S02E03."],"Search for subtitles.":[null,"Search for subtitles."],"All of your episodes have {subsLanguage} subtitles.":[null,"All of your episodes have {subsLanguage} subtitles."],"Manage episodes without":[null,"Manage episodes without"],"Episodes without {subsLanguage} subtitles.":[null,"Episodes without {subsLanguage} subtitles."],"Episodes without {subtitleLanguage} (undefined) subtitles.":[null,"Episodes without {subtitleLanguage} (undefined) subtitles."],"Download missed subtitles for selected episodes":[null,"Download missed subtitles for selected episodes"],"Performing Restart":[null,"Performing Restart"],"Waiting for SickRage to shut down":[null,"Waiting for SickRage to shut down"],"Waiting for SickRage to start again":[null,"Waiting for SickRage to start again"],"Loading the default page":[null,"Loading the default page"],"Error: The restart has timed out, perhaps something prevented SickRage from starting again?":[null,"Error: The restart has timed out, perhaps something prevented SickRage from starting again?"],"Key":[null,"Key"],"Missed":[null,"Missed"],"Today":[null,"Today"],"Soon":[null,"Soon"],"Later":[null,"Later"],"Subscribe":[null,"Subscribe"],"Date":[null,"Date"],"View Paused":[null,"View Paused"],"Hidden":[null,"Hidden"],"Shown":[null,"Shown"],"Calendar":[null,"Calendar"],"List":[null,"List"],"Ends":[null,"Ends"],"Next Ep Name":[null,"Next Ep Name"],"Run time":[null,"Run time"],"Indexers":[null,"Indexers"],"No shows for this day":[null,"No shows for this day"],"Airs":[null,"Airs"],"Plot":[null,"Plot"],"Show Update":[null,"Show Update"],"Version Check":[null,"Version Check"],"Proper Finder":[null,"Proper Finder"],"Post Process":[null,"Post Process"],"Subtitles Finder":[null,"Subtitles Finder"],"Scheduler":[null,"Scheduler"],"Alive":[null,"Alive"],"Start Time":[null,"Start Time"],"Cycle Time":[null,"Cycle Time"],"Next Run":[null,"Next Run"],"Last Run":[null,"Last Run"],"Silent":[null,"Silent"],"True":[null,"True"],"N/A":[null,"N/A"],"Show id":[null,"Show id"],"Show name":[null,"Show name"],"Priority":[null,"Priority"],"Added":[null,"Added"],"Queue type":[null,"Queue type"],"LOW":[null,"LOW"],"NORMAL":[null,"NORMAL"],"HIGH":[null,"HIGH"],"Disk Space":[null,"Disk Space"],"Free space":[null,"Free space"],"TV Download Directory":[null,"TV Download Directory"],"Media Root Directories":[null,"Media Root Directories"],"Preview of the proposed name changes":[null,"Preview of the proposed name changes"],"All Seasons":[null,"All Seasons"],"select all":[null,"select all"],"Rename Selected":[null,"Rename Selected"],"Cancel Rename":[null,"Cancel Rename"],"Old Location":[null,"Old Location"],"New Location":[null,"New Location"],"Trakt API did not return any results, please check your config.":[null,"Trakt API did not return any results, please check your config."],"votes":[null,"votes"],"Remove Show":[null,"Remove Show"],"Level":[null,"Level"],"Filter":[null,"Filter"],"All non-absolute folder locations are relative to ":[null,"All non-absolute folder locations are relative to "],"Manual Post-Processing":[null,"Manual Post-Processing"],"Episode Status Management":[null,"Episode Status Management"],"Update PLEX":[null,"Update PLEX"],"Update KODI":[null,"Update KODI"],"Update Emby":[null,"Update Emby"],"Manage Torrents":[null,"Manage Torrents"],"Missed Subtitle Management":[null,"Missed Subtitle Management"],"Help & Info":[null,"Help & Info"],"Backup & Restore":[null,"Backup & Restore"],"Tools":[null,"Tools"],"Support SickRage":[null,"Support SickRage"],"View Errors":[null,"View Errors"],"View Warnings":[null,"View Warnings"],"View Log":[null,"View Log"],"Check For Updates":[null,"Check For Updates"],"Restart":[null,"Restart"],"Shutdown":[null,"Shutdown"],"Logout":[null,"Logout"],"Server Status":[null,"Server Status"],"View overview of snatched episodes":[null,"View overview of snatched episodes"],"Episodes Downloaded":[null,"Episodes Downloaded"],"Memory used":[null,"Memory used"],"Load time":[null,"Load time"],"Branch":[null,"Branch"],"Now":[null,"Now"]}}}} \ No newline at end of file diff --git a/locale/en_US/LC_MESSAGES/messages.mo b/locale/en_US/LC_MESSAGES/messages.mo index 6740f78e64a9bc917350c47694b4adff9a2d44eb..2d66bf7100e365b689a03d104f2a1c81e5b367dc 100644 Binary files a/locale/en_US/LC_MESSAGES/messages.mo and b/locale/en_US/LC_MESSAGES/messages.mo differ diff --git a/locale/en_US/LC_MESSAGES/messages.po b/locale/en_US/LC_MESSAGES/messages.po index d3fd87fe2ede09e9240f522e04421864e47310cb..18118897341f538f25df79f79f03fdd65b0c5038 100644 --- a/locale/en_US/LC_MESSAGES/messages.po +++ b/locale/en_US/LC_MESSAGES/messages.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: sickrage\n" "Report-Msgid-Bugs-To: miigotu@gmail.com\n" -"POT-Creation-Date: 2017-03-25 09:28-0700\n" -"PO-Revision-Date: 2017-03-25 12:29-0400\n" +"POT-Creation-Date: 2017-03-28 09:10-0700\n" +"PO-Revision-Date: 2017-03-28 12:11-0400\n" "Last-Translator: miigotu <miigotu@gmail.com>\n" "Language-Team: English\n" "MIME-Version: 1.0\n" @@ -90,7 +90,7 @@ msgid "Biography" msgstr "Biography" #: gui/slick/views/config_general.mako:78 gui/slick/views/layouts/main.mako:145 -#: sickbeard/__init__.py:79 sickbeard/webserve.py:3807 +#: sickbeard/__init__.py:79 sickbeard/webserve.py:3778 msgid "History" msgstr "History" @@ -103,7 +103,7 @@ msgid "Western" msgstr "Western" #: gui/slick/views/config_general.mako:79 gui/slick/views/layouts/main.mako:221 -#: sickbeard/__init__.py:80 sickbeard/webserve.py:2385 +#: sickbeard/__init__.py:80 sickbeard/webserve.py:2384 msgid "News" msgstr "News" @@ -238,6 +238,34 @@ msgstr "Ignore" msgid "Subtitled" msgstr "Subtitled" +#: sickbeard/helpers.py:1887 +msgid "For best results please set the Download Station alias as" +msgstr "For best results please set the Download Station alias as" + +#: sickbeard/helpers.py:1888 +msgid "You can check this setting in the Synology DSM" +msgstr "You can check this setting in the Synology DSM" + +#: sickbeard/helpers.py:1888 sickbeard/helpers.py:1890 +msgid "Control Panel" +msgstr "Control Panel" + +#: sickbeard/helpers.py:1888 +msgid "Application Portal" +msgstr "Application Portal" + +#: sickbeard/helpers.py:1889 +msgid "Make sure you allow DSM to be embedded with iFrames too in" +msgstr "Make sure you allow DSM to be embedded with iFrames too in" + +#: sickbeard/helpers.py:1890 +msgid "DSM Settings" +msgstr "DSM Settings" + +#: sickbeard/helpers.py:1890 +msgid "Security" +msgstr "Security" + #: sickbeard/logger.py:474 msgid "<No Filter>" msgstr "<No Filter>" @@ -308,15 +336,15 @@ msgstr "Trakt Checker" msgid "Event" msgstr "Event" -#: sickbeard/logger.py:491 sickbeard/webserve.py:1339 sickbeard/webserve.py:1342 -#: sickbeard/webserve.py:1520 sickbeard/webserve.py:1529 sickbeard/webserve.py:1717 -#: sickbeard/webserve.py:1728 sickbeard/webserve.py:1751 sickbeard/webserve.py:1764 -#: sickbeard/webserve.py:1769 sickbeard/webserve.py:1785 sickbeard/webserve.py:1790 -#: sickbeard/webserve.py:1854 sickbeard/webserve.py:1857 sickbeard/webserve.py:1863 -#: sickbeard/webserve.py:1866 sickbeard/webserve.py:1873 sickbeard/webserve.py:1876 -#: sickbeard/webserve.py:1899 sickbeard/webserve.py:1997 sickbeard/webserve.py:2002 -#: sickbeard/webserve.py:2007 sickbeard/webserve.py:2036 sickbeard/webserve.py:2040 -#: sickbeard/webserve.py:2045 +#: sickbeard/logger.py:491 sickbeard/webserve.py:1338 sickbeard/webserve.py:1341 +#: sickbeard/webserve.py:1519 sickbeard/webserve.py:1528 sickbeard/webserve.py:1716 +#: sickbeard/webserve.py:1727 sickbeard/webserve.py:1750 sickbeard/webserve.py:1763 +#: sickbeard/webserve.py:1768 sickbeard/webserve.py:1784 sickbeard/webserve.py:1789 +#: sickbeard/webserve.py:1853 sickbeard/webserve.py:1856 sickbeard/webserve.py:1862 +#: sickbeard/webserve.py:1865 sickbeard/webserve.py:1872 sickbeard/webserve.py:1875 +#: sickbeard/webserve.py:1898 sickbeard/webserve.py:1996 sickbeard/webserve.py:2001 +#: sickbeard/webserve.py:2006 sickbeard/webserve.py:2035 sickbeard/webserve.py:2039 +#: sickbeard/webserve.py:2044 msgid "Error" msgstr "Error" @@ -333,6 +361,7 @@ msgstr "Thread" msgid "Main" msgstr "Main" +#: gui/slick/js/ajaxEpSearch.js:146 gui/slick/js/ajaxEpSearch.js:147 #: gui/slick/views/inc_home_showList.mako:27 sickbeard/show_queue.py:298 msgid "Loading" msgstr "Loading" @@ -372,867 +401,835 @@ msgstr "Config backup failed, aborting update" msgid "No update needed" msgstr "No update needed" -#: sickbeard/webserve.py:170 +#: sickbeard/webserve.py:171 msgid "Mako Error" msgstr "Mako Error" -#: sickbeard/webserve.py:195 +#: sickbeard/webserve.py:196 msgid "Oops" msgstr "Oops" -#: sickbeard/webserve.py:197 +#: sickbeard/webserve.py:198 msgid "Wrong API key used" msgstr "Wrong API key used" -#: gui/slick/views/login.mako:34 sickbeard/webserve.py:302 +#: gui/slick/views/login.mako:34 sickbeard/webserve.py:303 msgid "Login" msgstr "Login" -#: sickbeard/webserve.py:406 +#: sickbeard/webserve.py:392 msgid "API Key not generated" msgstr "API Key not generated" -#: sickbeard/webserve.py:409 +#: sickbeard/webserve.py:395 msgid "API Builder" msgstr "API Builder" #: gui/slick/views/config_general.mako:77 gui/slick/views/layouts/main.mako:141 -#: sickbeard/webserve.py:512 +#: sickbeard/webserve.py:498 msgid "Schedule" msgstr "Schedule" -#: sickbeard/webserve.py:610 +#: sickbeard/webserve.py:609 msgid "Test 1" msgstr "Test 1" -#: sickbeard/webserve.py:610 +#: sickbeard/webserve.py:609 msgid "This is test number 1" msgstr "This is test number 1" -#: sickbeard/webserve.py:611 +#: sickbeard/webserve.py:610 msgid "Test 2" msgstr "Test 2" -#: sickbeard/webserve.py:611 +#: sickbeard/webserve.py:610 msgid "This is test number 2" msgstr "This is test number 2" -#: sickbeard/webserve.py:634 +#: sickbeard/webserve.py:633 msgid "You're using the {branch} branch. Please use 'master' unless specifically asked" msgstr "You're using the {branch} branch. Please use 'master' unless specifically asked" -#: sickbeard/webserve.py:698 sickbeard/webserve.py:703 +#: sickbeard/webserve.py:697 sickbeard/webserve.py:702 msgid "Invalid show parameters" msgstr "Invalid show parameters" -#: sickbeard/webserve.py:710 +#: sickbeard/webserve.py:709 msgid "Invalid parameters" msgstr "Invalid parameters" -#: sickbeard/webserve.py:713 sickbeard/webserve.py:1899 +#: sickbeard/webserve.py:712 sickbeard/webserve.py:1898 msgid "Episode couldn't be retrieved" msgstr "Episode couldn't be retrieved" -#: sickbeard/webserve.py:759 sickbeard/webserve.py:1268 sickbeard/webserve.py:1297 +#: sickbeard/webserve.py:758 sickbeard/webserve.py:1267 sickbeard/webserve.py:1296 msgid "Home" msgstr "Home" -#: gui/slick/views/layouts/main.mako:127 sickbeard/webserve.py:759 +#: gui/slick/views/layouts/main.mako:127 sickbeard/webserve.py:758 msgid "Show List" msgstr "Show List" -#: sickbeard/webserve.py:807 +#: sickbeard/webserve.py:806 msgid "Error: Unsupported Request. Send jsonp request with 'callback' variable in the query string." msgstr "Error: Unsupported Request. Send jsonp request with 'callback' variable in the query string." -#: sickbeard/webserve.py:851 +#: sickbeard/webserve.py:850 msgid "Success. Connected and authenticated" msgstr "Success. Connected and authenticated" -#: sickbeard/webserve.py:853 +#: sickbeard/webserve.py:852 msgid "Authentication failed. SABnzbd expects" msgstr "Authentication failed. SABnzbd expects" -#: sickbeard/webserve.py:853 +#: sickbeard/webserve.py:852 msgid "as authentication method" msgstr "as authentication method" -#: sickbeard/webserve.py:855 +#: sickbeard/webserve.py:854 msgid "Unable to connect to host" msgstr "Unable to connect to host" -#: sickbeard/webserve.py:876 +#: sickbeard/webserve.py:875 msgid "SMS sent successfully" msgstr "SMS sent successfully" -#: sickbeard/webserve.py:878 +#: sickbeard/webserve.py:877 msgid "Problem sending SMS: {message}" msgstr "Problem sending SMS: {message}" -#: sickbeard/webserve.py:885 +#: sickbeard/webserve.py:884 msgid "Telegram notification succeeded. Check your Telegram clients to make sure it worked" msgstr "Telegram notification succeeded. Check your Telegram clients to make sure it worked" -#: sickbeard/webserve.py:887 +#: sickbeard/webserve.py:886 msgid "Error sending Telegram notification: {message}" msgstr "Error sending Telegram notification: {message}" -#: sickbeard/webserve.py:894 +#: sickbeard/webserve.py:893 msgid "join notification succeeded. Check your join clients to make sure it worked" msgstr "join notification succeeded. Check your join clients to make sure it worked" -#: sickbeard/webserve.py:896 +#: sickbeard/webserve.py:895 msgid "Error sending join notification: {message}" msgstr "Error sending join notification: {message}" -#: sickbeard/webserve.py:906 +#: sickbeard/webserve.py:905 msgid " with password" msgstr " with password" -#: sickbeard/webserve.py:908 +#: sickbeard/webserve.py:907 msgid "Registered and Tested growl successfully {growl_host}" msgstr "Registered and Tested growl successfully {growl_host}" -#: sickbeard/webserve.py:910 +#: sickbeard/webserve.py:909 msgid "Registration and Testing of growl failed {growl_host}" msgstr "Registration and Testing of growl failed {growl_host}" -#: sickbeard/webserve.py:917 +#: sickbeard/webserve.py:916 msgid "Test prowl notice sent successfully" msgstr "Test prowl notice sent successfully" -#: sickbeard/webserve.py:919 +#: sickbeard/webserve.py:918 msgid "Test prowl notice failed" msgstr "Test prowl notice failed" -#: sickbeard/webserve.py:926 +#: sickbeard/webserve.py:925 msgid "Boxcar2 notification succeeded. Check your Boxcar2 clients to make sure it worked" msgstr "Boxcar2 notification succeeded. Check your Boxcar2 clients to make sure it worked" -#: sickbeard/webserve.py:928 +#: sickbeard/webserve.py:927 msgid "Error sending Boxcar2 notification" msgstr "Error sending Boxcar2 notification" -#: sickbeard/webserve.py:935 +#: sickbeard/webserve.py:934 msgid "Pushover notification succeeded. Check your Pushover clients to make sure it worked" msgstr "Pushover notification succeeded. Check your Pushover clients to make sure it worked" -#: sickbeard/webserve.py:937 +#: sickbeard/webserve.py:936 msgid "Error sending Pushover notification" msgstr "Error sending Pushover notification" -#: sickbeard/webserve.py:949 +#: sickbeard/webserve.py:948 msgid "Key verification successful" msgstr "Key verification successful" -#: sickbeard/webserve.py:951 +#: sickbeard/webserve.py:950 msgid "Unable to verify key" msgstr "Unable to verify key" -#: sickbeard/webserve.py:958 +#: sickbeard/webserve.py:957 msgid "Tweet successful, check your twitter to make sure it worked" msgstr "Tweet successful, check your twitter to make sure it worked" -#: sickbeard/webserve.py:960 +#: sickbeard/webserve.py:959 msgid "Error sending tweet" msgstr "Error sending tweet" -#: sickbeard/webserve.py:965 +#: sickbeard/webserve.py:964 msgid "Please enter a valid account sid" msgstr "Please enter a valid account sid" -#: sickbeard/webserve.py:968 +#: sickbeard/webserve.py:967 msgid "Please enter a valid auth token" msgstr "Please enter a valid auth token" -#: sickbeard/webserve.py:971 +#: sickbeard/webserve.py:970 msgid "Please enter a valid phone sid" msgstr "Please enter a valid phone sid" -#: sickbeard/webserve.py:974 +#: sickbeard/webserve.py:973 msgid "Please format the phone number as \"+1-###-###-####\"" msgstr "Please format the phone number as \"+1-###-###-####\"" -#: sickbeard/webserve.py:978 +#: sickbeard/webserve.py:977 msgid "Authorization successful and number ownership verified" msgstr "Authorization successful and number ownership verified" -#: sickbeard/webserve.py:980 +#: sickbeard/webserve.py:979 msgid "Error sending sms" msgstr "Error sending sms" -#: sickbeard/webserve.py:986 +#: sickbeard/webserve.py:985 msgid "Slack message successful" msgstr "Slack message successful" -#: sickbeard/webserve.py:988 +#: sickbeard/webserve.py:987 msgid "Slack message failed" msgstr "Slack message failed" -#: sickbeard/webserve.py:994 +#: sickbeard/webserve.py:993 msgid "Discord message successful" msgstr "Discord message successful" -#: sickbeard/webserve.py:996 +#: sickbeard/webserve.py:995 msgid "Discord message failed" msgstr "Discord message failed" -#: sickbeard/webserve.py:1006 +#: sickbeard/webserve.py:1005 msgid "Test KODI notice sent successfully to {kodi_host}" msgstr "Test KODI notice sent successfully to {kodi_host}" -#: sickbeard/webserve.py:1008 +#: sickbeard/webserve.py:1007 msgid "Test KODI notice failed to {kodi_host}" msgstr "Test KODI notice failed to {kodi_host}" -#: sickbeard/webserve.py:1023 +#: sickbeard/webserve.py:1022 msgid "Successful test notice sent to Plex Home Theater ... {plex_clients}" msgstr "Successful test notice sent to Plex Home Theater ... {plex_clients}" -#: sickbeard/webserve.py:1025 +#: sickbeard/webserve.py:1024 msgid "Test failed for Plex Home Theater ... {plex_clients}" msgstr "Test failed for Plex Home Theater ... {plex_clients}" -#: sickbeard/webserve.py:1028 +#: sickbeard/webserve.py:1027 msgid "Tested Plex Home Theater(s)" msgstr "Tested Plex Home Theater(s)" -#: sickbeard/webserve.py:1042 +#: sickbeard/webserve.py:1041 msgid "Successful test of Plex Media Server(s) ... {plex_servers}" msgstr "Successful test of Plex Media Server(s) ... {plex_servers}" -#: sickbeard/webserve.py:1044 +#: sickbeard/webserve.py:1043 msgid "Test failed, No Plex Media Server host specified" msgstr "Test failed, No Plex Media Server host specified" -#: sickbeard/webserve.py:1046 +#: sickbeard/webserve.py:1045 msgid "Test failed for Plex Media Server(s) ... {plex_servers}" msgstr "Test failed for Plex Media Server(s) ... {plex_servers}" -#: sickbeard/webserve.py:1049 +#: sickbeard/webserve.py:1048 msgid "Tested Plex Media Server host(s)" msgstr "Tested Plex Media Server host(s)" -#: sickbeard/webserve.py:1057 +#: sickbeard/webserve.py:1056 msgid "Tried sending desktop notification via libnotify" msgstr "Tried sending desktop notification via libnotify" -#: sickbeard/webserve.py:1066 +#: sickbeard/webserve.py:1065 msgid "Test notice sent successfully to {emby_host}" msgstr "Test notice sent successfully to {emby_host}" -#: sickbeard/webserve.py:1068 +#: sickbeard/webserve.py:1067 msgid "Test notice failed to {emby_host}" msgstr "Test notice failed to {emby_host}" -#: sickbeard/webserve.py:1076 +#: sickbeard/webserve.py:1075 msgid "Successfully started the scan update" msgstr "Successfully started the scan update" -#: sickbeard/webserve.py:1078 +#: sickbeard/webserve.py:1077 msgid "Test failed to start the scan update" msgstr "Test failed to start the scan update" -#: sickbeard/webserve.py:1097 +#: sickbeard/webserve.py:1096 msgid "Test notice sent successfully to {nmj2_host}" msgstr "Test notice sent successfully to {nmj2_host}" -#: sickbeard/webserve.py:1099 +#: sickbeard/webserve.py:1098 msgid "Test notice failed to {nmj2_host}" msgstr "Test notice failed to {nmj2_host}" -#: sickbeard/webserve.py:1119 +#: sickbeard/webserve.py:1118 msgid "Trakt Authorized" msgstr "Trakt Authorized" -#: sickbeard/webserve.py:1120 +#: sickbeard/webserve.py:1119 msgid "Trakt Not Authorized!" msgstr "Trakt Not Authorized!" -#: sickbeard/webserve.py:1184 +#: sickbeard/webserve.py:1183 msgid "Test email sent successfully! Check inbox." msgstr "Test email sent successfully! Check inbox." -#: sickbeard/webserve.py:1186 +#: sickbeard/webserve.py:1185 msgid "ERROR: {last_error}" msgstr "ERROR: {last_error}" -#: sickbeard/webserve.py:1193 +#: sickbeard/webserve.py:1192 msgid "Test NMA notice sent successfully" msgstr "Test NMA notice sent successfully" -#: sickbeard/webserve.py:1195 +#: sickbeard/webserve.py:1194 msgid "Test NMA notice failed" msgstr "Test NMA notice failed" -#: sickbeard/webserve.py:1202 +#: sickbeard/webserve.py:1201 msgid "Pushalot notification succeeded. Check your Pushalot clients to make sure it worked" msgstr "Pushalot notification succeeded. Check your Pushalot clients to make sure it worked" -#: sickbeard/webserve.py:1204 +#: sickbeard/webserve.py:1203 msgid "Error sending Pushalot notification" msgstr "Error sending Pushalot notification" -#: sickbeard/webserve.py:1211 +#: sickbeard/webserve.py:1210 msgid "Pushbullet notification succeeded. Check your device to make sure it worked" msgstr "Pushbullet notification succeeded. Check your device to make sure it worked" -#: sickbeard/webserve.py:1213 sickbeard/webserve.py:1223 sickbeard/webserve.py:1232 +#: sickbeard/webserve.py:1212 sickbeard/webserve.py:1222 sickbeard/webserve.py:1231 msgid "Error sending Pushbullet notification" msgstr "Error sending Pushbullet notification" #: gui/slick/views/displayShow.mako:436 gui/slick/views/inc_home_showList.mako:174 -#: gui/slick/views/manage.mako:49 sickbeard/webserve.py:1249 +#: gui/slick/views/manage.mako:49 sickbeard/webserve.py:1248 msgid "Status" msgstr "Status" -#: sickbeard/webserve.py:1268 sickbeard/webserve.py:1297 +#: sickbeard/webserve.py:1267 sickbeard/webserve.py:1296 msgid "Restarting SickRage" msgstr "Restarting SickRage" -#: sickbeard/webserve.py:1300 +#: sickbeard/webserve.py:1299 msgid "Update Failed" msgstr "Update Failed" -#: sickbeard/webserve.py:1301 +#: sickbeard/webserve.py:1300 msgid "Update wasn't successful, not restarting. Check your log for more information." msgstr "Update wasn't successful, not restarting. Check your log for more information." -#: sickbeard/webserve.py:1308 +#: sickbeard/webserve.py:1307 msgid "Checking out branch" msgstr "Checking out branch" -#: sickbeard/webserve.py:1311 +#: sickbeard/webserve.py:1310 msgid "Already on branch" msgstr "Already on branch" -#: sickbeard/webserve.py:1339 +#: sickbeard/webserve.py:1338 msgid "Invalid show ID: {show}" msgstr "Invalid show ID: {show}" -#: sickbeard/webserve.py:1342 sickbeard/webserve.py:1871 sickbeard/webserve.py:2002 -#: sickbeard/webserve.py:2040 +#: sickbeard/webserve.py:1341 sickbeard/webserve.py:1870 sickbeard/webserve.py:2001 +#: sickbeard/webserve.py:2039 msgid "Show not in show list" msgstr "Show not in show list" #: gui/slick/views/inc_rootDirs.mako:31 gui/slick/views/manage.mako:38 -#: gui/slick/views/manage_massEdit.mako:74 sickbeard/webserve.py:1358 -#: sickbeard/webserve.py:2027 +#: gui/slick/views/manage_massEdit.mako:74 sickbeard/webserve.py:1357 +#: sickbeard/webserve.py:2026 msgid "Edit" msgstr "Edit" -#: sickbeard/webserve.py:1368 +#: sickbeard/webserve.py:1367 msgid "This show is in the process of being downloaded - the info below is incomplete." msgstr "This show is in the process of being downloaded - the info below is incomplete." -#: sickbeard/webserve.py:1371 +#: sickbeard/webserve.py:1370 msgid "The information on this page is in the process of being updated." msgstr "The information on this page is in the process of being updated." -#: sickbeard/webserve.py:1374 +#: sickbeard/webserve.py:1373 msgid "The episodes below are currently being refreshed from disk" msgstr "The episodes below are currently being refreshed from disk" -#: sickbeard/webserve.py:1377 +#: sickbeard/webserve.py:1376 msgid "Currently downloading subtitles for this show" msgstr "Currently downloading subtitles for this show" -#: sickbeard/webserve.py:1380 +#: sickbeard/webserve.py:1379 msgid "This show is queued to be refreshed." msgstr "This show is queued to be refreshed." -#: sickbeard/webserve.py:1383 +#: sickbeard/webserve.py:1382 msgid "This show is queued and awaiting an update." msgstr "This show is queued and awaiting an update." -#: sickbeard/webserve.py:1386 +#: sickbeard/webserve.py:1385 msgid "This show is queued and awaiting subtitles download." msgstr "This show is queued and awaiting subtitles download." -#: gui/slick/js/core.js:4081 sickbeard/webserve.py:1391 +#: gui/slick/js/core.js:4081 sickbeard/webserve.py:1390 msgid "Resume" msgstr "Resume" #: gui/slick/js/core.js:4081 gui/slick/views/viewlogs.mako:12 -#: sickbeard/webserve.py:1393 +#: sickbeard/webserve.py:1392 msgid "Pause" msgstr "Pause" #: gui/slick/views/editShow.mako:345 gui/slick/views/inc_blackwhitelist.mako:40 #: gui/slick/views/inc_blackwhitelist.mako:85 gui/slick/views/manage.mako:58 -#: gui/slick/views/manage_failedDownloads.mako:43 sickbeard/webserve.py:1395 +#: gui/slick/views/manage_failedDownloads.mako:43 sickbeard/webserve.py:1394 msgid "Remove" msgstr "Remove" -#: sickbeard/webserve.py:1396 +#: sickbeard/webserve.py:1395 msgid "Re-scan files" msgstr "Re-scan files" -#: sickbeard/webserve.py:1397 +#: sickbeard/webserve.py:1396 msgid "Force Full Update" msgstr "Force Full Update" -#: sickbeard/webserve.py:1398 +#: sickbeard/webserve.py:1397 msgid "Update show in KODI" msgstr "Update show in KODI" -#: sickbeard/webserve.py:1399 +#: sickbeard/webserve.py:1398 msgid "Update show in Emby" msgstr "Update show in Emby" -#: sickbeard/webserve.py:1402 +#: sickbeard/webserve.py:1401 msgid "Hide specials" msgstr "Hide specials" -#: sickbeard/webserve.py:1404 +#: sickbeard/webserve.py:1403 msgid "Show specials" msgstr "Show specials" -#: sickbeard/webserve.py:1406 sickbeard/webserve.py:2030 sickbeard/webserve.py:2031 +#: sickbeard/webserve.py:1405 sickbeard/webserve.py:2029 sickbeard/webserve.py:2030 msgid "Preview Rename" msgstr "Preview Rename" -#: sickbeard/webserve.py:1409 +#: sickbeard/webserve.py:1408 msgid "Download Subtitles" msgstr "Download Subtitles" -#: sickbeard/webserve.py:1498 +#: sickbeard/webserve.py:1497 msgid "No scene exceptions" msgstr "No scene exceptions" -#: sickbeard/webserve.py:1516 sickbeard/webserve.py:1764 sickbeard/webserve.py:1785 +#: sickbeard/webserve.py:1515 sickbeard/webserve.py:1763 sickbeard/webserve.py:1784 msgid "Invalid show ID" msgstr "Invalid show ID" -#: sickbeard/webserve.py:1525 sickbeard/webserve.py:1769 sickbeard/webserve.py:1790 +#: sickbeard/webserve.py:1524 sickbeard/webserve.py:1768 sickbeard/webserve.py:1789 msgid "Unable to find the specified show" msgstr "Unable to find the specified show" -#: sickbeard/webserve.py:1550 +#: sickbeard/webserve.py:1549 msgid "Unable to retreive Fansub Groups from AniDB." msgstr "Unable to retreive Fansub Groups from AniDB." -#: sickbeard/webserve.py:1559 sickbeard/webserve.py:1561 +#: sickbeard/webserve.py:1558 sickbeard/webserve.py:1560 msgid "Edit Show" msgstr "Edit Show" -#: sickbeard/webserve.py:1637 sickbeard/webserve.py:1671 +#: sickbeard/webserve.py:1636 sickbeard/webserve.py:1670 msgid "Unable to refresh this show: {error}" msgstr "Unable to refresh this show: {error}" -#: sickbeard/webserve.py:1663 +#: sickbeard/webserve.py:1662 msgid "New location <tt>{location}</tt> does not exist" msgstr "New location <tt>{location}</tt> does not exist" -#: sickbeard/webserve.py:1688 +#: sickbeard/webserve.py:1687 msgid "Unable to update show: {error}" msgstr "Unable to update show: {error}" -#: sickbeard/webserve.py:1695 +#: sickbeard/webserve.py:1694 msgid "Unable to force an update on scene exceptions of the show." msgstr "Unable to force an update on scene exceptions of the show." -#: sickbeard/webserve.py:1702 +#: sickbeard/webserve.py:1701 msgid "Unable to force an update on scene numbering of the show." msgstr "Unable to force an update on scene numbering of the show." -#: sickbeard/webserve.py:1708 sickbeard/webserve.py:3540 +#: sickbeard/webserve.py:1707 sickbeard/webserve.py:3539 msgid "{num_errors:d} error{plural} while saving changes:" msgstr "{num_errors:d} error{plural} while saving changes:" -#: sickbeard/webserve.py:1719 +#: sickbeard/webserve.py:1718 msgid "{show_name} has been {paused_resumed}" msgstr "{show_name} has been {paused_resumed}" -#: sickbeard/webserve.py:1719 +#: sickbeard/webserve.py:1718 msgid "resumed" msgstr "resumed" -#: sickbeard/webserve.py:1719 +#: sickbeard/webserve.py:1718 msgid "paused" msgstr "paused" -#: sickbeard/webserve.py:1731 +#: sickbeard/webserve.py:1730 msgid "{show_name} has been {deleted_trashed} {was_deleted}" msgstr "{show_name} has been {deleted_trashed} {was_deleted}" -#: sickbeard/webserve.py:1733 +#: sickbeard/webserve.py:1732 msgid "deleted" msgstr "deleted" -#: sickbeard/webserve.py:1733 +#: sickbeard/webserve.py:1732 msgid "trashed" msgstr "trashed" -#: sickbeard/webserve.py:1734 +#: sickbeard/webserve.py:1733 msgid "(media untouched)" msgstr "(media untouched)" -#: sickbeard/webserve.py:1734 +#: sickbeard/webserve.py:1733 msgid "(with all related media)" msgstr "(with all related media)" -#: sickbeard/webserve.py:1755 +#: sickbeard/webserve.py:1754 msgid "Unable to refresh this show." msgstr "Unable to refresh this show." -#: sickbeard/webserve.py:1775 +#: sickbeard/webserve.py:1774 msgid "Unable to update this show." msgstr "Unable to update this show." -#: sickbeard/webserve.py:1814 +#: sickbeard/webserve.py:1813 msgid "Library update command sent to KODI host(s)): {kodi_hosts}" msgstr "Library update command sent to KODI host(s)): {kodi_hosts}" -#: sickbeard/webserve.py:1816 +#: sickbeard/webserve.py:1815 msgid "Unable to contact one or more KODI host(s)): {kodi_hosts}" msgstr "Unable to contact one or more KODI host(s)): {kodi_hosts}" -#: sickbeard/webserve.py:1825 +#: sickbeard/webserve.py:1824 msgid "Library update command sent to Plex Media Server host: {plex_server}" msgstr "Library update command sent to Plex Media Server host: {plex_server}" -#: sickbeard/webserve.py:1828 +#: sickbeard/webserve.py:1827 msgid "Unable to contact Plex Media Server host: {plex_server}" msgstr "Unable to contact Plex Media Server host: {plex_server}" -#: sickbeard/webserve.py:1840 +#: sickbeard/webserve.py:1839 msgid "Library update command sent to Emby host: {emby_host}" msgstr "Library update command sent to Emby host: {emby_host}" -#: sickbeard/webserve.py:1842 +#: sickbeard/webserve.py:1841 msgid "Unable to contact Emby host: {emby_host}" msgstr "Unable to contact Emby host: {emby_host}" -#: sickbeard/webserve.py:1852 sickbeard/webserve.py:2036 +#: sickbeard/webserve.py:1851 sickbeard/webserve.py:2035 msgid "You must specify a show and at least one episode" msgstr "You must specify a show and at least one episode" -#: sickbeard/webserve.py:1861 +#: sickbeard/webserve.py:1860 msgid "Invalid status" msgstr "Invalid status" -#: sickbeard/webserve.py:1954 +#: sickbeard/webserve.py:1953 msgid "Backlog was automatically started for the following seasons of <b>{show_name}</b>" msgstr "Backlog was automatically started for the following seasons of <b>{show_name}</b>" #: gui/slick/views/displayShow.mako:74 gui/slick/views/displayShow.mako:79 -#: gui/slick/views/displayShow.mako:404 sickbeard/webserve.py:1961 -#: sickbeard/webserve.py:1980 +#: gui/slick/views/displayShow.mako:404 sickbeard/webserve.py:1960 +#: sickbeard/webserve.py:1979 msgid "Season" msgstr "Season" -#: sickbeard/webserve.py:1968 +#: sickbeard/webserve.py:1967 msgid "Backlog started" msgstr "Backlog started" -#: sickbeard/webserve.py:1973 +#: sickbeard/webserve.py:1972 msgid "Retrying Search was automatically started for the following season of <b>{show_name}</b>" msgstr "Retrying Search was automatically started for the following season of <b>{show_name}</b>" -#: sickbeard/webserve.py:1987 +#: sickbeard/webserve.py:1986 msgid "Retry Search started" msgstr "Retry Search started" -#: sickbeard/webserve.py:1997 +#: sickbeard/webserve.py:1996 msgid "You must specify a show" msgstr "You must specify a show" -#: sickbeard/webserve.py:2007 sickbeard/webserve.py:2045 +#: sickbeard/webserve.py:2006 sickbeard/webserve.py:2044 msgid "Can't rename episodes when the show dir is missing." msgstr "Can't rename episodes when the show dir is missing." -#: sickbeard/webserve.py:2212 sickbeard/webserve.py:2233 +#: sickbeard/webserve.py:2211 sickbeard/webserve.py:2232 msgid "New subtitles downloaded: {new_subtitle_languages}" msgstr "New subtitles downloaded: {new_subtitle_languages}" -#: sickbeard/webserve.py:2215 sickbeard/webserve.py:2236 +#: sickbeard/webserve.py:2214 sickbeard/webserve.py:2235 msgid "No subtitles downloaded" msgstr "No subtitles downloaded" #: gui/slick/views/config_general.mako:80 gui/slick/views/layouts/main.mako:222 -#: sickbeard/webserve.py:2363 +#: sickbeard/webserve.py:2362 msgid "IRC" msgstr "IRC" -#: sickbeard/webserve.py:2376 +#: sickbeard/webserve.py:2375 msgid "Could not load news from the repo. [Click here for news.md])({news_url})" msgstr "Could not load news from the repo. [Click here for news.md])({news_url})" -#: sickbeard/webserve.py:2383 sickbeard/webserve.py:2401 +#: sickbeard/webserve.py:2382 sickbeard/webserve.py:2400 msgid "The was a problem connecting to github, please refresh and try again" msgstr "The was a problem connecting to github, please refresh and try again" -#: sickbeard/webserve.py:2398 +#: sickbeard/webserve.py:2397 msgid "Could not load changes from the repo. [Click here for CHANGES.md]({changes_url})" msgstr "Could not load changes from the repo. [Click here for CHANGES.md]({changes_url})" -#: gui/slick/views/layouts/main.mako:223 sickbeard/webserve.py:2403 +#: gui/slick/views/layouts/main.mako:223 sickbeard/webserve.py:2402 msgid "Changelog" msgstr "Changelog" -#: gui/slick/views/layouts/main.mako:190 sickbeard/webserve.py:2413 -#: sickbeard/webserve.py:3855 sickbeard/webserve.py:4341 +#: gui/slick/views/layouts/main.mako:190 sickbeard/webserve.py:2412 +#: sickbeard/webserve.py:3826 sickbeard/webserve.py:4312 msgid "Post Processing" msgstr "Post Processing" -#: gui/slick/views/layouts/main.mako:128 sickbeard/webserve.py:2445 +#: gui/slick/views/layouts/main.mako:128 sickbeard/webserve.py:2444 msgid "Add Shows" msgstr "Add Shows" -#: sickbeard/webserve.py:2510 +#: sickbeard/webserve.py:2509 msgid "No folders selected." msgstr "No folders selected." -#: sickbeard/webserve.py:2632 +#: sickbeard/webserve.py:2631 msgid "New Show" msgstr "New Show" -#: sickbeard/webserve.py:2647 +#: sickbeard/webserve.py:2646 msgid "Trending Shows" msgstr "Trending Shows" -#: sickbeard/webserve.py:2649 sickbeard/webserve.py:2772 +#: sickbeard/webserve.py:2648 sickbeard/webserve.py:2771 msgid "Popular Shows" msgstr "Popular Shows" -#: sickbeard/webserve.py:2651 sickbeard/webserve.py:2665 +#: sickbeard/webserve.py:2650 sickbeard/webserve.py:2664 msgid "Most Anticipated Shows" msgstr "Most Anticipated Shows" -#: sickbeard/webserve.py:2653 +#: sickbeard/webserve.py:2652 msgid "Most Collected Shows" msgstr "Most Collected Shows" -#: sickbeard/webserve.py:2655 +#: sickbeard/webserve.py:2654 msgid "Most Watched Shows" msgstr "Most Watched Shows" -#: sickbeard/webserve.py:2657 +#: sickbeard/webserve.py:2656 msgid "Most Played Shows" msgstr "Most Played Shows" -#: sickbeard/webserve.py:2659 +#: sickbeard/webserve.py:2658 msgid "Recommended Shows" msgstr "Recommended Shows" -#: gui/slick/views/addShows_trendingShows.mako:60 sickbeard/webserve.py:2661 +#: gui/slick/views/addShows_trendingShows.mako:60 sickbeard/webserve.py:2660 msgid "New Shows" msgstr "New Shows" -#: gui/slick/views/addShows_trendingShows.mako:61 sickbeard/webserve.py:2663 +#: gui/slick/views/addShows_trendingShows.mako:61 sickbeard/webserve.py:2662 msgid "Season Premieres" msgstr "Season Premieres" -#: sickbeard/webserve.py:2792 sickbeard/webserve.py:2793 +#: sickbeard/webserve.py:2791 sickbeard/webserve.py:2792 msgid "Existing Show" msgstr "Existing Show" -#: sickbeard/webserve.py:2871 +#: sickbeard/webserve.py:2870 msgid "No root directories setup, please go back and add one." msgstr "No root directories setup, please go back and add one." -#: sickbeard/webserve.py:2883 sickbeard/webserve.py:3002 +#: sickbeard/webserve.py:2882 sickbeard/webserve.py:3001 msgid "Show added" msgstr "Show added" -#: sickbeard/webserve.py:2883 +#: sickbeard/webserve.py:2882 msgid "Adding the specified show {show_name}" msgstr "Adding the specified show {show_name}" -#: sickbeard/webserve.py:2924 +#: sickbeard/webserve.py:2923 msgid "Missing params, no Indexer ID or folder: {show_to_add} and {root_dir}/{show_path}" msgstr "Missing params, no Indexer ID or folder: {show_to_add} and {root_dir}/{show_path}" -#: sickbeard/webserve.py:2933 +#: sickbeard/webserve.py:2932 msgid "Unknown error. Unable to add show due to problem with show selection." msgstr "Unknown error. Unable to add show due to problem with show selection." -#: sickbeard/webserve.py:2957 sickbeard/webserve.py:2967 +#: sickbeard/webserve.py:2956 sickbeard/webserve.py:2966 msgid "Unable to add show" msgstr "Unable to add show" -#: sickbeard/webserve.py:2957 +#: sickbeard/webserve.py:2956 msgid "Folder {show_dir} exists already" msgstr "Folder {show_dir} exists already" -#: sickbeard/webserve.py:2968 +#: sickbeard/webserve.py:2967 msgid "Unable to create the folder {show_dir}, can't add the show" msgstr "Unable to create the folder {show_dir}, can't add the show" -#: sickbeard/webserve.py:3002 +#: sickbeard/webserve.py:3001 msgid "Adding the specified show into {show_dir}" msgstr "Adding the specified show into {show_dir}" -#: sickbeard/webserve.py:3078 +#: sickbeard/webserve.py:3077 msgid "Shows Added" msgstr "Shows Added" -#: sickbeard/webserve.py:3079 +#: sickbeard/webserve.py:3078 msgid "Automatically added {num_shows} from their existing metadata files" msgstr "Automatically added {num_shows} from their existing metadata files" -#: gui/slick/views/layouts/main.mako:153 sickbeard/webserve.py:3096 +#: gui/slick/views/layouts/main.mako:153 sickbeard/webserve.py:3095 msgid "Mass Update" msgstr "Mass Update" -#: sickbeard/webserve.py:3134 sickbeard/webserve.py:3161 sickbeard/webserve.py:3237 -#: sickbeard/webserve.py:3238 +#: sickbeard/webserve.py:3133 sickbeard/webserve.py:3160 sickbeard/webserve.py:3236 +#: sickbeard/webserve.py:3237 msgid "Episode Overview" msgstr "Episode Overview" -#: sickbeard/webserve.py:3270 +#: sickbeard/webserve.py:3269 msgid "Missing Subtitles" msgstr "Missing Subtitles" -#: gui/slick/views/layouts/main.mako:154 sickbeard/webserve.py:3356 -#: sickbeard/webserve.py:3357 +#: gui/slick/views/layouts/main.mako:154 sickbeard/webserve.py:3355 +#: sickbeard/webserve.py:3356 msgid "Backlog Overview" msgstr "Backlog Overview" -#: sickbeard/webserve.py:3481 +#: sickbeard/webserve.py:3480 msgid "Mass Edit" msgstr "Mass Edit" -#: sickbeard/webserve.py:3586 +#: sickbeard/webserve.py:3585 msgid "Unable to update show: {excption_format}" msgstr "Unable to update show: {excption_format}" -#: sickbeard/webserve.py:3594 +#: sickbeard/webserve.py:3593 msgid "Unable to refresh show {show_name}: {excption_format}" msgstr "Unable to refresh show {show_name}: {excption_format}" -#: sickbeard/webserve.py:3605 +#: sickbeard/webserve.py:3604 msgid "Errors encountered" msgstr "Errors encountered" -#: gui/slick/views/config_general.mako:261 sickbeard/webserve.py:3611 +#: gui/slick/views/config_general.mako:261 sickbeard/webserve.py:3610 msgid "Updates" msgstr "Updates" -#: sickbeard/webserve.py:3616 +#: sickbeard/webserve.py:3615 msgid "Refreshes" msgstr "Refreshes" -#: sickbeard/webserve.py:3621 +#: sickbeard/webserve.py:3620 msgid "Renames" msgstr "Renames" #: gui/slick/views/displayShow.mako:260 gui/slick/views/displayShow.mako:435 #: gui/slick/views/editShow.mako:119 gui/slick/views/inc_addShowOptions.mako:20 -#: gui/slick/views/manage_massEdit.mako:262 sickbeard/webserve.py:3626 -#: sickbeard/webserve.py:5244 +#: gui/slick/views/manage_massEdit.mako:262 sickbeard/webserve.py:3625 +#: sickbeard/webserve.py:5215 msgid "Subtitles" msgstr "Subtitles" -#: sickbeard/webserve.py:3631 +#: sickbeard/webserve.py:3630 msgid "The following actions were queued" msgstr "The following actions were queued" -#: sickbeard/webserve.py:3651 -msgid "For best results please set the Download Station alias as" -msgstr "For best results please set the Download Station alias as" - -#: sickbeard/webserve.py:3652 -msgid "You can check this setting in the Synology DSM" -msgstr "You can check this setting in the Synology DSM" - -#: sickbeard/webserve.py:3652 sickbeard/webserve.py:3654 -msgid "Control Panel" -msgstr "Control Panel" - -#: sickbeard/webserve.py:3652 -msgid "Application Portal" -msgstr "Application Portal" - -#: sickbeard/webserve.py:3653 -msgid "Make sure you allow DSM to be embedded with iFrames too in" -msgstr "Make sure you allow DSM to be embedded with iFrames too in" - -#: sickbeard/webserve.py:3654 -msgid "DSM Settings" -msgstr "DSM Settings" - -#: sickbeard/webserve.py:3654 -msgid "Security" -msgstr "Security" - -#: gui/slick/views/layouts/main.mako:167 sickbeard/webserve.py:3662 -msgid "Manage Torrents" -msgstr "Manage Torrents" - -#: gui/slick/views/layouts/main.mako:170 sickbeard/webserve.py:3683 +#: gui/slick/views/layouts/main.mako:170 sickbeard/webserve.py:3654 msgid "Failed Downloads" msgstr "Failed Downloads" -#: gui/slick/views/layouts/main.mako:155 sickbeard/webserve.py:3701 +#: gui/slick/views/layouts/main.mako:155 sickbeard/webserve.py:3672 msgid "Manage Searches" msgstr "Manage Searches" -#: sickbeard/webserve.py:3709 +#: sickbeard/webserve.py:3680 msgid "Backlog search started" msgstr "Backlog search started" -#: sickbeard/webserve.py:3719 +#: sickbeard/webserve.py:3690 msgid "Daily search started" msgstr "Daily search started" -#: sickbeard/webserve.py:3728 +#: sickbeard/webserve.py:3699 msgid "Find propers search started" msgstr "Find propers search started" -#: sickbeard/webserve.py:3737 +#: sickbeard/webserve.py:3708 msgid "Subtitle search started" msgstr "Subtitle search started" -#: sickbeard/webserve.py:3801 +#: sickbeard/webserve.py:3772 msgid "Remove Selected" msgstr "Remove Selected" -#: sickbeard/webserve.py:3802 +#: sickbeard/webserve.py:3773 msgid "Clear History" msgstr "Clear History" -#: sickbeard/webserve.py:3803 +#: sickbeard/webserve.py:3774 msgid "Trim History" msgstr "Trim History" -#: sickbeard/webserve.py:3823 +#: sickbeard/webserve.py:3794 msgid "Selected history entries removed" msgstr "Selected history entries removed" -#: sickbeard/webserve.py:3830 +#: sickbeard/webserve.py:3801 msgid "History cleared" msgstr "History cleared" -#: sickbeard/webserve.py:3837 +#: sickbeard/webserve.py:3808 msgid "Removed history entries older than 30 days" msgstr "Removed history entries older than 30 days" -#: gui/slick/views/layouts/main.mako:185 sickbeard/webserve.py:3850 +#: gui/slick/views/layouts/main.mako:185 sickbeard/webserve.py:3821 msgid "General" msgstr "General" -#: sickbeard/webserve.py:3851 sickbeard/webserve.py:4143 +#: sickbeard/webserve.py:3822 sickbeard/webserve.py:4114 msgid "Backup/Restore" msgstr "Backup/Restore" -#: gui/slick/views/layouts/main.mako:187 sickbeard/webserve.py:3852 -#: sickbeard/webserve.py:4206 +#: gui/slick/views/layouts/main.mako:187 sickbeard/webserve.py:3823 +#: sickbeard/webserve.py:4177 msgid "Search Settings" msgstr "Search Settings" -#: gui/slick/views/layouts/main.mako:188 sickbeard/webserve.py:3853 -#: sickbeard/webserve.py:4518 +#: gui/slick/views/layouts/main.mako:188 sickbeard/webserve.py:3824 +#: sickbeard/webserve.py:4489 msgid "Search Providers" msgstr "Search Providers" -#: gui/slick/views/layouts/main.mako:189 sickbeard/webserve.py:3854 +#: gui/slick/views/layouts/main.mako:189 sickbeard/webserve.py:3825 msgid "Subtitles Settings" msgstr "Subtitles Settings" -#: gui/slick/views/layouts/main.mako:191 sickbeard/webserve.py:3856 -#: sickbeard/webserve.py:4964 +#: gui/slick/views/layouts/main.mako:191 sickbeard/webserve.py:3827 +#: sickbeard/webserve.py:4935 msgid "Notifications" msgstr "Notifications" @@ -1240,142 +1237,142 @@ msgstr "Notifications" #: gui/slick/views/home.mako:35 gui/slick/views/inc_addShowOptions.mako:79 #: gui/slick/views/inc_home_showList.mako:179 gui/slick/views/layouts/main.mako:192 #: gui/slick/views/manage.mako:44 gui/slick/views/manage_massEdit.mako:202 -#: sickbeard/webserve.py:3857 sickbeard/webserve.py:5309 +#: sickbeard/webserve.py:3828 sickbeard/webserve.py:5280 msgid "Anime" msgstr "Anime" -#: sickbeard/webserve.py:3895 sickbeard/webserve.py:3896 +#: sickbeard/webserve.py:3866 sickbeard/webserve.py:3867 msgid "SickRage Configuration" msgstr "SickRage Configuration" -#: sickbeard/webserve.py:3910 +#: sickbeard/webserve.py:3881 msgid "Config - Shares" msgstr "" -#: sickbeard/webserve.py:3910 +#: sickbeard/webserve.py:3881 msgid "Windows Shares Configuration" msgstr "" -#: sickbeard/webserve.py:3937 +#: sickbeard/webserve.py:3908 msgid "Saved Shares" msgstr "" -#: sickbeard/webserve.py:3937 +#: sickbeard/webserve.py:3908 msgid "Your Windows share settings have been saved" msgstr "" -#: sickbeard/webserve.py:3948 +#: sickbeard/webserve.py:3919 msgid "Config - General" msgstr "Config - General" -#: sickbeard/webserve.py:3948 +#: sickbeard/webserve.py:3919 msgid "General Configuration" msgstr "General Configuration" -#: sickbeard/webserve.py:3988 +#: sickbeard/webserve.py:3959 msgid "Saved Defaults" msgstr "Saved Defaults" -#: sickbeard/webserve.py:3988 +#: sickbeard/webserve.py:3959 msgid "Your \"add show\" defaults have been set to your current selections." msgstr "Your \"add show\" defaults have been set to your current selections." -#: sickbeard/webserve.py:4095 +#: sickbeard/webserve.py:4066 msgid "Unable to create directory {directory}, log directory not changed." msgstr "Unable to create directory {directory}, log directory not changed." -#: sickbeard/webserve.py:4103 +#: sickbeard/webserve.py:4074 msgid "Unable to create directory {directory}, https cert directory not changed." msgstr "Unable to create directory {directory}, https cert directory not changed." -#: sickbeard/webserve.py:4107 +#: sickbeard/webserve.py:4078 msgid "Unable to create directory {directory}, https key directory not changed." msgstr "Unable to create directory {directory}, https key directory not changed." -#: sickbeard/webserve.py:4126 sickbeard/webserve.py:4324 sickbeard/webserve.py:4456 -#: sickbeard/webserve.py:5227 +#: sickbeard/webserve.py:4097 sickbeard/webserve.py:4295 sickbeard/webserve.py:4427 +#: sickbeard/webserve.py:5198 msgid "Error(s) Saving Configuration" msgstr "Error(s) Saving Configuration" -#: sickbeard/webserve.py:4129 sickbeard/webserve.py:4327 sickbeard/webserve.py:4458 -#: sickbeard/webserve.py:4950 sickbeard/webserve.py:5230 sickbeard/webserve.py:5294 -#: sickbeard/webserve.py:5323 +#: sickbeard/webserve.py:4100 sickbeard/webserve.py:4298 sickbeard/webserve.py:4429 +#: sickbeard/webserve.py:4921 sickbeard/webserve.py:5201 sickbeard/webserve.py:5265 +#: sickbeard/webserve.py:5294 msgid "Configuration Saved" msgstr "Configuration Saved" -#: sickbeard/webserve.py:4142 +#: sickbeard/webserve.py:4113 msgid "Config - Backup/Restore" msgstr "Config - Backup/Restore" -#: sickbeard/webserve.py:4205 +#: sickbeard/webserve.py:4176 msgid "Config - Episode Search" msgstr "Config - Episode Search" -#: sickbeard/webserve.py:4340 +#: sickbeard/webserve.py:4311 msgid "Config - Post Processing" msgstr "Config - Post Processing" -#: sickbeard/webserve.py:4380 +#: sickbeard/webserve.py:4351 msgid "Unpacking Not Supported, disabling unpack setting" msgstr "Unpacking Not Supported, disabling unpack setting" -#: sickbeard/webserve.py:4431 +#: sickbeard/webserve.py:4402 msgid "You tried saving an invalid normal naming config, not saving your naming settings" msgstr "You tried saving an invalid normal naming config, not saving your naming settings" -#: sickbeard/webserve.py:4439 +#: sickbeard/webserve.py:4410 msgid "You tried saving an invalid anime naming config, not saving your naming settings" msgstr "You tried saving an invalid anime naming config, not saving your naming settings" -#: sickbeard/webserve.py:4517 +#: sickbeard/webserve.py:4488 msgid "Config - Providers" msgstr "Config - Providers" -#: sickbeard/webserve.py:4547 +#: sickbeard/webserve.py:4518 msgid "No Provider Name specified" msgstr "No Provider Name specified" -#: sickbeard/webserve.py:4549 +#: sickbeard/webserve.py:4520 msgid "No Provider Url specified" msgstr "No Provider Url specified" -#: sickbeard/webserve.py:4551 +#: sickbeard/webserve.py:4522 msgid "No Provider Api key specified" msgstr "No Provider Api key specified" -#: sickbeard/webserve.py:4963 +#: sickbeard/webserve.py:4934 msgid "Config - Notifications" msgstr "Config - Notifications" -#: sickbeard/webserve.py:5243 +#: sickbeard/webserve.py:5214 msgid "Config - Subtitles" msgstr "Config - Subtitles" -#: sickbeard/webserve.py:5308 +#: sickbeard/webserve.py:5279 msgid "Config - Anime" msgstr "Config - Anime" -#: sickbeard/webserve.py:5336 +#: sickbeard/webserve.py:5307 msgid "Clear Errors" msgstr "Clear Errors" -#: sickbeard/webserve.py:5342 +#: sickbeard/webserve.py:5313 msgid "Clear Warnings" msgstr "Clear Warnings" -#: sickbeard/webserve.py:5348 +#: sickbeard/webserve.py:5319 msgid "Submit Errors" msgstr "Submit Errors" -#: sickbeard/webserve.py:5363 +#: sickbeard/webserve.py:5334 msgid "Logs & Errors" msgstr "Logs & Errors" -#: sickbeard/webserve.py:5388 +#: sickbeard/webserve.py:5359 msgid "Log File" msgstr "Log File" -#: sickbeard/webserve.py:5388 +#: sickbeard/webserve.py:5359 msgid "Logs" msgstr "Logs" @@ -1383,30 +1380,166 @@ msgstr "Logs" msgid "This is a test notification from SickRage" msgstr "This is a test notification from SickRage" -#: gui/slick/js/core.js:481 gui/slick/js/core.js:502 gui/slick/js/core.js:524 -#: gui/slick/js/core.js:548 gui/slick/js/core.js:573 gui/slick/js/core.js:596 -#: gui/slick/js/core.js:625 gui/slick/js/core.js:645 gui/slick/js/core.js:690 -#: gui/slick/js/core.js:769 gui/slick/js/core.js:829 gui/slick/js/core.js:849 -#: gui/slick/js/core.js:879 gui/slick/js/core.js:909 gui/slick/js/core.js:969 -#: gui/slick/js/core.js:1046 gui/slick/js/core.js:1066 gui/slick/js/core.js:1085 +#: gui/slick/js/browser.js:6 +msgid "Choose Directory" +msgstr "" + +#: gui/slick/js/core.js:443 +msgid "Select log file folder location" +msgstr "" + +#: gui/slick/js/core.js:445 +msgid "Select CSS file" +msgstr "" + +#: gui/slick/js/core.js:469 +msgid "Select backup folder to save to" +msgstr "" + +#: gui/slick/js/core.js:470 +msgid "Select backup files to restore" +msgstr "" + +#: gui/slick/js/core.js:479 gui/slick/js/core.js:500 gui/slick/js/core.js:522 +#: gui/slick/js/core.js:546 gui/slick/js/core.js:571 gui/slick/js/core.js:594 +#: gui/slick/js/core.js:623 gui/slick/js/core.js:643 gui/slick/js/core.js:688 +#: gui/slick/js/core.js:767 gui/slick/js/core.js:827 gui/slick/js/core.js:847 +#: gui/slick/js/core.js:877 gui/slick/js/core.js:907 gui/slick/js/core.js:967 +#: gui/slick/js/core.js:1044 gui/slick/js/core.js:1064 gui/slick/js/core.js:1083 msgid "Please fill out the necessary fields above." msgstr "" -#: gui/slick/js/core.js:1328 gui/slick/js/core.js:1378 gui/slick/js/core.js:1427 -#: gui/slick/js/core.js:1493 +#: gui/slick/js/core.js:680 +msgid "<b>Step 1:</b> Confirm Authorization" +msgstr "" + +#: gui/slick/js/core.js:977 +msgid "Check blacklist name; the value needs to be a trakt slug" +msgstr "" + +#: gui/slick/js/core.js:1022 +msgid "You must provide a recipient email address!" +msgstr "" + +#: gui/slick/js/core.js:1107 +msgid "You didn't supply a Pushbullet api key" +msgstr "" + +#: gui/slick/js/core.js:1133 gui/slick/js/core.js:1162 +msgid "Don't forget to save your new pushbullet settings." +msgstr "" + +#: gui/slick/js/core.js:1262 +msgid "Select TV Download Directory" +msgstr "" + +#: gui/slick/js/core.js:1263 +msgid "Select Unpack Directory" +msgstr "" + +#: gui/slick/js/core.js:1326 gui/slick/js/core.js:1376 gui/slick/js/core.js:1425 +#: gui/slick/js/core.js:1491 msgid "This pattern is invalid." msgstr "This pattern is invalid." -#: gui/slick/js/core.js:1336 gui/slick/js/core.js:1386 gui/slick/js/core.js:1435 -#: gui/slick/js/core.js:1501 +#: gui/slick/js/core.js:1334 gui/slick/js/core.js:1384 gui/slick/js/core.js:1433 +#: gui/slick/js/core.js:1499 msgid "This pattern would be invalid without the folders, using it will force \"Season Folders\" on for all shows." msgstr "This pattern would be invalid without the folders, using it will force \"Season Folders\" on for all shows." -#: gui/slick/js/core.js:1344 gui/slick/js/core.js:1394 gui/slick/js/core.js:1443 -#: gui/slick/js/core.js:1509 +#: gui/slick/js/core.js:1342 gui/slick/js/core.js:1392 gui/slick/js/core.js:1441 +#: gui/slick/js/core.js:1507 msgid "This pattern is valid." msgstr "This pattern is valid." +#: gui/slick/js/core.js:1818 +msgid "Select .nzb black hole/watch location" +msgstr "" + +#: gui/slick/js/core.js:1819 +msgid "Select .torrent black hole/watch location" +msgstr "" + +#: gui/slick/js/core.js:1820 +msgid "Select .torrent download location" +msgstr "" + +#: gui/slick/js/core.js:1900 +msgid "Minimum seeding time is" +msgstr "" + +#: gui/slick/js/core.js:1902 +msgid "URL to your uTorrent client (e.g. http://localhost:8000)" +msgstr "" + +#: gui/slick/js/core.js:1905 +msgid "Stop seeding when inactive for" +msgstr "" + +#: gui/slick/js/core.js:1911 +msgid "URL to your Transmission client (e.g. http://localhost:9091)" +msgstr "" + +#: gui/slick/js/core.js:1921 +msgid "URL to your Deluge client (e.g. http://localhost:8112)" +msgstr "" + +#: gui/slick/js/core.js:1930 +msgid "IP or Hostname of your Deluge Daemon (e.g. scgi://localhost:58846)" +msgstr "" + +#: gui/slick/js/core.js:1937 +msgid "URL to your Synology DS client (e.g. http://localhost:5000)" +msgstr "" + +#: gui/slick/js/core.js:1941 +msgid "URL to your rTorrent client (e.g. scgi://localhost:5000 <br> or https://localhost/rutorrent/plugins/httprpc/action.php)" +msgstr "" + +#: gui/slick/js/core.js:1952 +msgid "URL to your qBittorrent client (e.g. http://localhost:8080)" +msgstr "" + +#: gui/slick/js/core.js:1962 +msgid "URL to your MLDonkey (e.g. http://localhost:4080)" +msgstr "" + +#: gui/slick/js/core.js:1974 +msgid "URL to your putio client (e.g. http://localhost:8080)" +msgstr "" + +#: gui/slick/js/core.js:1975 +msgid "<a herf=\"https://app.put.io/oauth/apps/new\" target=\"_blank\"> Create a new OAuth app for put.io</a>" +msgstr "" + +#: gui/slick/js/core.js:1977 +msgid "Put.io Parent Folder" +msgstr "" + +#: gui/slick/js/core.js:1978 +msgid "Put.io OAuth Token" +msgstr "" + +#: gui/slick/js/core.js:3383 gui/slick/views/displayShow.mako:410 +msgid "Show Episodes" +msgstr "Show Episodes" + +#: gui/slick/js/core.js:3388 gui/slick/views/displayShow.mako:408 +msgid "Hide Episodes" +msgstr "Hide Episodes" + +#: gui/slick/js/core.js:3396 +msgid "Select Show Location" +msgstr "" + +#: gui/slick/js/core.js:3460 +msgid "Select Unprocessed Episode Folder" +msgstr "" + +#: gui/slick/js/core.js:3790 +msgid "DELETED" +msgstr "" + #: gui/slick/js/core.js:4082 msgid "Resume updating the log on this page." msgstr "Resume updating the log on this page." @@ -1415,6 +1548,26 @@ msgstr "Resume updating the log on this page." msgid "Pause updating the log on this page." msgstr "Pause updating the log on this page." +#: gui/slick/js/core.js:4323 +msgid "searching {searchingFor}..." +msgstr "" + +#: gui/slick/js/core.js:4334 +msgid "search timed out, try again or try another indexer" +msgstr "" + +#: gui/slick/js/core.js:4503 +msgid "loading folders..." +msgstr "" + +#: gui/slick/js/parsers.js:7 gui/slick/js/parsers.js:8 +#: gui/slick/js/plotTooltip.js:6 gui/slick/js/sceneExceptionsTooltip.js:6 +#: gui/slick/views/inc_home_showList.mako:209 +#: gui/slick/views/inc_home_showList.mako:215 +#: gui/slick/views/inc_home_showList.mako:231 +msgid "Loading..." +msgstr "Loading..." + #: gui/slick/views/404.mako:5 msgid "You have reached this page by accident, please check the url." msgstr "You have reached this page by accident, please check the url." @@ -5717,14 +5870,6 @@ msgstr "Change selected episodes to" msgid "Select Columns" msgstr "Select Columns" -#: gui/slick/views/displayShow.mako:408 -msgid "Hide Episodes" -msgstr "Hide Episodes" - -#: gui/slick/views/displayShow.mako:410 -msgid "Show Episodes" -msgstr "Show Episodes" - #: gui/slick/views/displayShow.mako:424 msgid "NFO" msgstr "NFO" @@ -6243,12 +6388,6 @@ msgstr "Active" msgid "loading" msgstr "loading" -#: gui/slick/views/inc_home_showList.mako:209 -#: gui/slick/views/inc_home_showList.mako:215 -#: gui/slick/views/inc_home_showList.mako:231 -msgid "Loading..." -msgstr "Loading..." - #: gui/slick/views/inc_qualityChooser.mako:31 msgid "<p><b><u>Preferred</u></b> qualities will replace those in <b><u>allowed</u></b>, even if they are lower.</p>" msgstr "<p><b><u>Preferred</u></b> qualities will replace those in <b><u>allowed</u></b>, even if they are lower.</p>" @@ -6786,6 +6925,10 @@ msgstr "Update KODI" msgid "Update Emby" msgstr "Update Emby" +#: gui/slick/views/layouts/main.mako:167 +msgid "Manage Torrents" +msgstr "Manage Torrents" + #: gui/slick/views/layouts/main.mako:173 msgid "Missed Subtitle Management" msgstr "Missed Subtitle Management" diff --git a/locale/es_ES/LC_MESSAGES/messages.json b/locale/es_ES/LC_MESSAGES/messages.json index 3d933713f5fd19f7c9108e01c5da6da4441a1776..3a9cd7f39866eedbb9e37979247e6cb250e582ed 100644 --- a/locale/es_ES/LC_MESSAGES/messages.json +++ b/locale/es_ES/LC_MESSAGES/messages.json @@ -1 +1 @@ -{"messages":{"domain":"messages","locale_data":{"messages":{"100":[null,"100"],"250":[null,"250"],"500":[null,"500"],"":{"domain":"messages","plural_forms":"nplurals=2; plural=(n != 1);","lang":"es_ES"},"Drama":[null,"Drama"],"Mystery":[null,"Misterio"],"Science-Fiction":[null,"Ciencia-ficción"],"Crime":[null,"Crimen"],"Action":[null,"Acción"],"Comedy":[null,"Comedia"],"Thriller":[null,"Suspense"],"Animation":[null,"Animación"],"Family":[null,"Familia"],"Fantasy":[null,"Fantasía"],"Adventure":[null,"Aventuras"],"Horror":[null,"Terror"],"Film-Noir":[null,"Cine negro"],"Sci-Fi":[null,"Ciencia-ficción"],"Romance":[null,"Romance"],"Sport":[null,"Deportes"],"War":[null,"Guerra"],"Biography":[null,"Biografía"],"History":[null,"Historial"],"Music":[null,"Musical"],"Western":[null,"Oeste"],"News":[null,"Noticias"],"Sitcom":[null,"Sitcom"],"Reality-TV":[null,"Reality"],"Documentary":[null,"Documental"],"Game-Show":[null,"Juegos"],"Musical":[null,"Musical"],"Talk-Show":[null,"Tertulia"],"Started Download":[null,"Descarga iniciada"],"Download Finished":[null,"Descarga finalizada"],"Subtitle Download Finished":[null,"Descarga de subtítulos finalizada"],"SickRage Updated":[null,"SickRage actualizado"],"SickRage Updated To Commit#: ":[null,"SickRage actualizado a Commit#: "],"SickRage new login":[null,"Nuevo inicio de sesion en SickRage"],"New login from IP: {0}. http://geomaplookup.net/?ip={0}":[null,"Nuevo inicio de sesión desde IP: {0}. http://geomaplookup.net/?IP={0}"],"Repeat":[null,"Repetición"],"Repeat (Separated)":[null,"Repetición (separado)"],"Extend":[null,"Extendida"],"Extend (Limited)":[null,"Extendida (Limitada)"],"Extend (Limited, E-prefixed)":[null,"Extendida (Limitada, Prefijo Ep)"],"Downloaded":[null,"Descargado"],"Snatched":[null,"Añadido"],"Snatched (Proper)":[null,"Conseguido (Proper)"],"Failed":[null,"Erroneo"],"Snatched (Best)":[null,"Conseguido (Mejor)"],"Archived":[null,"Archivado"],"Unknown":[null,"Desconocido"],"Unaired":[null,"No emitido"],"Skipped":[null,"Omitido"],"Wanted":[null,"Deseado"],"Ignored":[null,"Ignorado"],"Subtitled":[null,"Subtitulado"],"<No Filter>":[null,"<Sin filtros>"],"Daily Searcher":[null,"Busqueda diaria"],"Backlog":[null,"Pendientes"],"Show Updater":[null,"Actualizar series"],"Check Version":[null,"Comprobar versión"],"Show Queue":[null,"Cola de series"],"Search Queue (All)":[null,"Cola de búsquedas (Todas)"],"Search Queue (Daily Searcher)":[null,"Cola de búsquedas (Búsqueda diaria)"],"Search Queue (Backlog)":[null,"Cola de búsquedas (Pendientes)"],"Search Queue (Manual)":[null,"Cola de búsquedas (Manual)"],"Search Queue (Retry/Failed)":[null,"Cola de búsquedas (Re-intentar/Fallidas)"],"Search Queue (RSS)":[null,"Cola de búsquedas (RSS)"],"Find Propers":[null,"Encontrar mejoradas"],"Postprocessor":[null,"Procesando envío"],"Find Subtitles":[null,"Buscar subtitulos"],"Trakt Checker":[null,"Comprobar Trakt"],"Event":[null,"Evento"],"Error":[null,"Error"],"Tornado":[null,"Tornado"],"Thread":[null,"Hilo"],"Main":[null,"Principal"],"Loading":[null,""],"New update found for SickRage, starting auto-updater":[null,"Se ha encontrado una nueva actualización de SickRage, iniciando actualizador automático"],"Update was successful":[null,"Actualización finalizada con éxito"],"Update failed!":[null,"¡Error en la actualización!"],"Backup":[null,"Copia de Seguridad"],"Config backup in progress...":[null,"Copia de seguridad de la configuración en curso..."],"Config backup successful, updating...":[null,"Copia de seguridad de la configuración correcta, actualizando..."],"Config backup failed, aborting update":[null,"Copia de seguridad de la configuración, fallida. Se cancela la actualización"],"No update needed":[null,"No es necesario actualizar"],"Mako Error":[null,"Error de Mako"],"Oops":[null,"Ups"],"Wrong API key used":[null,"Clave API usada incorrecta"],"Login":[null,"Iniciar Sesión"],"API Key not generated":[null,"Clave API no generada"],"API Builder":[null,"Constructor API"],"Schedule":[null,"Programación"],"Test 1":[null,"Prueba 1"],"This is test number 1":[null,"Esta es la prueba número 1"],"Test 2":[null,"Prueba 2"],"This is test number 2":[null,"Esta es la prueba número 2"],"You're using the {branch} branch. Please use 'master' unless specifically asked":[null,"Estás usando la rama {branch}. Por favor usa 'master' a menos que lo sobreescribas a propósito"],"Invalid show parameters":[null,"Datos de serie erróneos"],"Invalid parameters":[null,"Parámetros no válidos"],"Episode couldn't be retrieved":[null,"El episodio no se pudo conseguir"],"Home":[null,"Inicio"],"Show List":[null,"Lista de series"],"Error: Unsupported Request. Send jsonp request with 'callback' variable in the query string.":[null,"Error: Solicitud no soportada. Envíe la petición jsonp con la variable 'callback' en la secuencia de consulta."],"Success. Connected and authenticated":[null,"Éxito. Conectado y autenticado"],"Authentication failed. SABnzbd expects":[null,"La autenticación falló. SABnzbd espera"],"as authentication method":[null,"como método de autenticación"],"Unable to connect to host":[null,"No se puede conectar al host"],"SMS sent successfully":[null,"SMS enviado con éxito"],"Problem sending SMS: {message}":[null,"Problema al enviar SMS: {message}"],"Telegram notification succeeded. Check your Telegram clients to make sure it worked":[null,"Notificación de telegram tuvo éxito. Compruebe su telegram para asegurarse de que funcionó"],"Error sending Telegram notification: {message}":[null,"Error enviando notificación de Telegram: {message}"],"join notification succeeded. Check your join clients to make sure it worked":[null,"Notificación a Join correcta. Compruebe tus clientes Join para asegurarse de que ha funcionado"],"Error sending join notification: {message}":[null,"Error enviando notificación de unión: {message}"]," with password":[null," con contraseña"],"Registered and Tested growl successfully {growl_host}":[null,"Growl registrado y probado con éxito {growl_host}"],"Registration and Testing of growl failed {growl_host}":[null,"Fallo de registro y prueba de growl {growl_host}"],"Test prowl notice sent successfully":[null,"Notificación de prueba de prowl enviada correctamente"],"Test prowl notice failed":[null,"Fallo al enviar notificación de prueba de prowl"],"Boxcar2 notification succeeded. Check your Boxcar2 clients to make sure it worked":[null,"Notificación de Boxcar2 exitosa. Compruebe sus clientes Boxcar2 para asegurarse de que ha funcionado"],"Error sending Boxcar2 notification":[null,"Error al enviar la notificación de Boxcar2"],"Pushover notification succeeded. Check your Pushover clients to make sure it worked":[null,"Notificación de Pushover exitosa. Compruebe sus clientes Pushover para asegurarse de que ha funcionado"],"Error sending Pushover notification":[null,"Error al enviar la notificación de Pushover"],"Key verification successful":[null,"Verificación de la clave exitosa"],"Unable to verify key":[null,"No se pudo verificar la clave"],"Tweet successful, check your twitter to make sure it worked":[null,"Tweet exitoso, compruebe su twitter para asegurarse de que ha funcionado"],"Error sending tweet":[null,"Error al enviar tweet"],"Please enter a valid account sid":[null,"Por favor Sid introduce una cuenta válida"],"Please enter a valid auth token":[null,"Introduzca un token de autenticación válido"],"Please enter a valid phone sid":[null,"Por favor Sid inserte un teléfono valido"],"Please format the phone number as \"+1-###-###-####\"":[null,"Por favor el formato para el número de teléfono es \"+1-###-###-####\""],"Authorization successful and number ownership verified":[null,"Autorización correcta, eres el propietario verificado de este número."],"Error sending sms":[null,"Error al enviar el SMS"],"Slack message successful":[null,"Mensaje Slack satisfactorio"],"Slack message failed":[null,"Mensaje Slack fallido"],"Discord message successful":[null,"Mensaje Discord satisfactorio"],"Discord message failed":[null,"Mensaje Discord fallido"],"Test KODI notice sent successfully to {kodi_host}":[null,"Notificación de prueba de Kodi enviada correctamente a {kodi_host}"],"Test KODI notice failed to {kodi_host}":[null,"Fallo al enviar la notificación de prueba de Kodi a {kodi_host}"],"Successful test notice sent to Plex Home Theater ... {plex_clients}":[null,"Notificación de prueba enviada correctamente a Plex Home Theater ... {plex_clients}"],"Test failed for Plex Home Theater ... {plex_clients}":[null,"Prueba fallida para Plex Home Theater ... {plex_clients}"],"Tested Plex Home Theater(s)":[null,"Probado Plex Home Theater(s)"],"Successful test of Plex Media Server(s) ... {plex_servers}":[null,"Prueba exitosa de Plex Media Server(s)... {plex_servers}"],"Test failed, No Plex Media Server host specified":[null,"Prueba falló, no hay servidor Plex Media Server especificado"],"Test failed for Plex Media Server(s) ... {plex_servers}":[null,"Prueba fallo para Plex Media Server(s) ... {plex_servers}"],"Tested Plex Media Server host(s)":[null,"Probado servidor Plex Media Server(s)"],"Tried sending desktop notification via libnotify":[null,"Probado enviar una notificación de escritorio a través de libnotify"],"Test notice sent successfully to {emby_host}":[null,"Notificación de prueba enviada correctamente a {emby_host}"],"Test notice failed to {emby_host}":[null,"Fallo al enviar la notificación de prueba a {emby_host}"],"Successfully started the scan update":[null,"El escaneo de actualización comenzó con éxito"],"Test failed to start the scan update":[null,"Prueba no pudo iniciar la actualización"],"Test notice sent successfully to {nmj2_host}":[null,"Notificación de prueba enviada correctamente a {nmj2_host}"],"Test notice failed to {nmj2_host}":[null,"Fallo al enviar la notificación de prueba a {nmj2_host}"],"Trakt Authorized":[null,"Trakt autorizado"],"Trakt Not Authorized!":[null,"Trakt no autorizado!"],"Test email sent successfully! Check inbox.":[null,"Email de prueba enviado correctamente! Comprueba tu bandeja de entrada."],"ERROR: {last_error}":[null,"ERROR: {last_error}"],"Test NMA notice sent successfully":[null,"Aviso NMA de prueba enviado con éxito"],"Test NMA notice failed":[null,"El aviso NMA de prueba falló"],"Pushalot notification succeeded. Check your Pushalot clients to make sure it worked":[null,"Notificación Pushalot correcta. Comprueba tus clientes Pushalot para asegurarte de que ha funcionado"],"Error sending Pushalot notification":[null,"Error al enviar la notificación de Pushalot"],"Pushbullet notification succeeded. Check your device to make sure it worked":[null,"Notificación Pushbullet correcta. Comprueba tu dispositivo para asegurarte de que ha funcionado"],"Error sending Pushbullet notification":[null,"Error al enviar la notificación de Pushbullet"],"Status":[null,"Estado"],"Restarting SickRage":[null,"Reiniciar SickRage"],"Update Failed":[null,"La actualización falló"],"Update wasn't successful, not restarting. Check your log for more information.":[null,"La actualización no tuvo éxito, no se reiniciará. Comprueba tu registro para obtener más información."],"Checking out branch":[null,"Haciendo checkout de la rama"],"Already on branch":[null,"Ya en la rama"],"Invalid show ID: {show}":[null,"ID de show inválido: {show}"],"Show not in show list":[null,"El show no está en la lista de shows"],"Edit":[null,"Editar"],"This show is in the process of being downloaded - the info below is incomplete.":[null,"Esta serie está siendo descargada - la información de abajo es incompleta."],"The information on this page is in the process of being updated.":[null,"La información en esta página está en proceso de actualización."],"The episodes below are currently being refreshed from disk":[null,"Los episodios siguientes estan siendo actualmente refrescados del disco"],"Currently downloading subtitles for this show":[null,"Actualmente descargando subtítulos para esta serie"],"This show is queued to be refreshed.":[null,"Esta serie se pone en cola para actualizarse."],"This show is queued and awaiting an update.":[null,"Esta serie se pone en cola y en espera de una actualización."],"This show is queued and awaiting subtitles download.":[null,"Esta serie se pone en cola y esperando la descarga de subtítulos."],"Resume":[null,"Continuar"],"Pause":[null,"Pausar"],"Remove":[null,"Eliminar"],"Re-scan files":[null,"Volver a escanear archivos"],"Force Full Update":[null,"Forzar actualización completa"],"Update show in KODI":[null,"Actualizar show en KODI"],"Update show in Emby":[null,"Actualizar show en Emby"],"Hide specials":[null,"Ocultar especiales"],"Show specials":[null,"Mostrar especiales"],"Preview Rename":[null,"Pre-visualizar Renombrado"],"Download Subtitles":[null,"Descargar subtítulos"],"No scene exceptions":[null,"Sin excepciones de escena"],"Invalid show ID":[null,"ID de show inválido"],"Unable to find the specified show":[null,"No se puede encontrar el show especificado"],"Unable to retreive Fansub Groups from AniDB.":[null,"Imposible recuperar los Fansub Groups de AniDB."],"Edit Show":[null,"Editar serie"],"Unable to refresh this show: {error}":[null,"No se ha podido recargar el show: {error}"],"New location <tt>{location}</tt> does not exist":[null,"La nueva ubicación <tt>{location}</tt> no existe"],"Unable to update show: {error}":[null,"No se ha podido actualizar el show: {error}"],"Unable to force an update on scene exceptions of the show.":[null,"No se puede forzar una actualización sobre las excepciones de escena de esta serie."],"Unable to force an update on scene numbering of the show.":[null,"No se puede forzar una actualización sobre los números de escena de esta seria."],"{num_errors:d} error{plural} while saving changes:":[null,"{num_errors:d} error{plural} al guardar los cambios:"],"{show_name} has been {paused_resumed}":[null,"{show_name} ha sido {paused_resumed}"],"resumed":[null,"reanudado"],"paused":[null,"pausado"],"{show_name} has been {deleted_trashed} {was_deleted}":[null,"{show_name} ha sido {deleted_trashed} {was_deleted}"],"deleted":[null,"borrado"],"trashed":[null,"borrado"],"(media untouched)":[null,"(medias intactos)"],"(with all related media)":[null,"(con todos los medias relacionados)"],"Unable to refresh this show.":[null,"No se puede actualizar este programa."],"Unable to update this show.":[null,"Incapaz de actualizar esta serie."],"Library update command sent to KODI host(s)): {kodi_hosts}":[null,"Comando de actualización de la biblioteca enviado a KODI host(s)): {kodi_hosts}"],"Unable to contact one or more KODI host(s)): {kodi_hosts}":[null,"Incapaz de establecer conexión con uno o más clientes KODI: {kodi_hosts}"],"Library update command sent to Plex Media Server host: {plex_server}":[null,"Comando de actualización de la biblioteca enviado a Plex Media Server host: {plex_server}"],"Unable to contact Plex Media Server host: {plex_server}":[null,"Imposible contactarse con Plex Media Server host: {plex_server}"],"Library update command sent to Emby host: {emby_host}":[null,"Comando de actualización de la biblioteca enviado a Emby host: {emby_host}"],"Unable to contact Emby host: {emby_host}":[null,"Imposible contactar Emby host: {emby_host}"],"You must specify a show and at least one episode":[null,"Debe especificar un show y al menos un episodio"],"Invalid status":[null,"Estado no válido"],"Backlog was automatically started for the following seasons of <b>{show_name}</b>":[null,"Inicio automatico de la busqueda de episodios antiguios para la serie <b>{show_name}</b>"],"Season":[null,"Temporada"],"Backlog started":[null,"Inicio de la busqueda de episodios antiguios"],"Retrying Search was automatically started for the following season of <b>{show_name}</b>":[null,"Se ha iniciado automáticamente un reintento de búsqueda para próxima temporada de <b>{show_name}</b>"],"Retry Search started":[null,"Iniciado reintento de búsqueda"],"You must specify a show":[null,"Debe especificar una serie"],"Can't rename episodes when the show dir is missing.":[null,"No se puede renombrar los episodios si no se localiza el directorio de la serie."],"New subtitles downloaded: {new_subtitle_languages}":[null,"Nuevos subtítulos descargados: {new_subtitle_languages}"],"No subtitles downloaded":[null,"No se descargaron los subtítulos"],"IRC":[null,"IRC"],"Could not load news from the repo. [Click here for news.md])({news_url})":[null,"No se pudieron cargar noticias desde el repo. [Haga click aquí para news.md]) ({news_url})"],"The was a problem connecting to github, please refresh and try again":[null,"Hubo un problema conectando con github, porfavor recargue y pruebe de nuevo"],"Could not load changes from the repo. [Click here for CHANGES.md]({changes_url})":[null,"No se pudo cargar los cambios desde los repositorios. [Haga click aquí para CHANGES.md]({changes_url})"],"Changelog":[null,"Registro de cambios"],"Post Processing":[null,"Post-procesado"],"Add Shows":[null,"Añadir serie"],"No folders selected.":[null,"No se ha seleccionado ningún directorio."],"New Show":[null,"Nueva serie"],"Trending Shows":[null,"Series populares"],"Popular Shows":[null,"Series populares"],"Most Anticipated Shows":[null,"Series más anticipadas"],"Most Collected Shows":[null,""],"Most Watched Shows":[null,""],"Most Played Shows":[null,""],"Recommended Shows":[null,""],"New Shows":[null,"Nuevas series"],"Season Premieres":[null,"Estrenos de la temporada"],"Existing Show":[null,"Añadir serie existente"],"No root directories setup, please go back and add one.":[null,"No se ha configurado una carpeta raíz de instalación, por favor volver y agregar una."],"Show added":[null,"Serie añadida"],"Adding the specified show {show_name}":[null,"Añadiendo el show especificado {show_name}"],"Missing params, no Indexer ID or folder: {show_to_add} and {root_dir}/{show_path}":[null,"Faltan parametros, ningún ID de indexador o carpeta: {show_to_add} y {root_dir}/{show_path}"],"Unknown error. Unable to add show due to problem with show selection.":[null,"Error desconocido. No se puede añadir la serie debido a problema con la selección de serie."],"Unable to add show":[null,"No se pudo añadir la serie"],"Folder {show_dir} exists already":[null,"El directorio {show_dir} ya existe"],"Unable to create the folder {show_dir}, can't add the show":[null,"No se pudo crear el directorio {show_dir}, no se pudo añadir la serie"],"Adding the specified show into {show_dir}":[null,"Añadiendo la serie especificada a {show_dir}"],"Shows Added":[null,"Series añadidas"],"Automatically added {num_shows} from their existing metadata files":[null,"Se han añadido automáticamente {num_shows} desde los archivos de metadatos existentes"],"Mass Update":[null,"Actualización masiva"],"Episode Overview":[null,"Resumen del episodio"],"Missing Subtitles":[null,"Subtítulos faltantes"],"Backlog Overview":[null,"Resumen de Tareas Pendientes"],"Mass Edit":[null,"Edición masiva"],"Unable to update show: {excption_format}":[null,"No se ha podido actualizar la serie: {excption_format}"],"Unable to refresh show {show_name}: {excption_format}":[null,"Imposible actualizar serie {show_name}: {excption_format}"],"Errors encountered":[null,"Errores encontrados"],"Updates":[null,"Actualizaciones"],"Refreshes":[null,"Refresca"],"Renames":[null,"Renombra"],"Subtitles":[null,"Subtítulos"],"The following actions were queued":[null,"Las siguientes acciones fueron puestas en cola"],"For best results please set the Download Station alias as":[null,"Para obtener mejores resultados por favor configurar el alias de la Estación de Descarga como"],"You can check this setting in the Synology DSM":[null,"Puede comprobar este ajuste en el Synology DSM"],"Control Panel":[null,"Panel de Control"],"Application Portal":[null,"Portal de aplicaciones"],"Make sure you allow DSM to be embedded with iFrames too in":[null,"Asegúrese de permitir que DSM esté integrado en iFrames"],"DSM Settings":[null,"Ajustes DSM"],"Security":[null,"Seguridad"],"Manage Torrents":[null,"Gestionar Torrents"],"Failed Downloads":[null,"Descargas fallidas"],"Manage Searches":[null,"Gestionar búsquedas"],"Backlog search started":[null,"Búsqueda \"backlog\" comenzada"],"Daily search started":[null,"La búsqueda diaria comenzó"],"Find propers search started":[null,"La búsqueda de correciones (\"propers\") comenzó"],"Subtitle search started":[null,"Búsqueda de subtítulos comenzada"],"Remove Selected":[null,"Eliminar selección"],"Clear History":[null,"Limpiar historial"],"Trim History":[null,"Cortar historial"],"Selected history entries removed":[null,"Eliminadas entradas seleccionadas del historial"],"History cleared":[null,"Historial eliminado"],"Removed history entries older than 30 days":[null,"Eliminar elementos de la historia más antiguos de 30 días"],"General":[null,"General"],"Backup/Restore":[null,"Copia de seguridad/Restaurar"],"Search Settings":[null,"Ajustes de búsqueda"],"Search Providers":[null,"Proveedores de búsqueda"],"Subtitles Settings":[null,"Ajustes de los subtítulos"],"Notifications":[null,"Notificaciones"],"Anime":[null,"Anime"],"SickRage Configuration":[null,"Configuración de SickRage"],"Config - Shares":[null,""],"Windows Shares Configuration":[null,""],"Saved Shares":[null,""],"Your Windows share settings have been saved":[null,""],"Config - General":[null,"Config - General"],"General Configuration":[null,"Configuración General"],"Saved Defaults":[null,"Valores predeterminados guardados"],"Your \"add show\" defaults have been set to your current selections.":[null,"Tus valores por defectos para \"Añadir serie\" se han cambiado a tus opciones actuales."],"Unable to create directory {directory}, log directory not changed.":[null,"Imposible crear el directorio {directory}, directorio log no modificado."],"Unable to create directory {directory}, https cert directory not changed.":[null,"Imposible crear el directorio {directory}, directorio https cert no modificado."],"Unable to create directory {directory}, https key directory not changed.":[null,"Imposible crear el directorio {directory}, directorio https key no modificado."],"Error(s) Saving Configuration":[null,"Error(es) guardando la configuración"],"Configuration Saved":[null,"Configuración guardada"],"Config - Backup/Restore":[null,"Config - Copia de seguridad/Restaurar"],"Config - Episode Search":[null,"Config - Búsqueda de episodio"],"Config - Post Processing":[null,"Configuración de post-procesado"],"Unpacking Not Supported, disabling unpack setting":[null,"Desempaquetado no soportado, deshabilitando configuracion de desempaquetado"],"You tried saving an invalid normal naming config, not saving your naming settings":[null,""],"You tried saving an invalid anime naming config, not saving your naming settings":[null,"Ha tratado de guardar una configuración de nombrado de anime no válida, no se guardarán sus opciones de nombrado"],"Config - Providers":[null,"Configuración de proveedores"],"No Provider Name specified":[null,"Nombre de proveedor no especificado"],"No Provider Url specified":[null,"Url del proveedor no especificada"],"No Provider Api key specified":[null,"Llave Api del proveedor no especificada"],"Config - Notifications":[null,"Configuración de notificaciones"],"Config - Subtitles":[null,"Configuración de subtítulos"],"Config - Anime":[null,"Configuración - Anime"],"Clear Errors":[null,"Borrar errores"],"Clear Warnings":[null,"Borrar avisos"],"Submit Errors":[null,"Enviar errores"],"Logs & Errors":[null,"Logs & errores"],"Log File":[null,"Archivo de registro"],"Logs":[null,"Registros"],"This is a test notification from SickRage":[null,"Notificación de prueba desde SickRage"],"Please fill out the necessary fields above.":[null,""],"This pattern is invalid.":[null,"Valor de patrón inválido."],"This pattern would be invalid without the folders, using it will force \"Season Folders\" on for all shows.":[null,"El patrón puede no ser válido sin carpetas, usarlo forzará \"Carpetas por temporada\" en todas las series."],"This pattern is valid.":[null,"Valor de patrón válido."],"Resume updating the log on this page.":[null,""],"Pause updating the log on this page.":[null,""],"You have reached this page by accident, please check the url.":[null,"Has llegado a esta página por accidente, por favor compruebe la url."],"A mako error has occured.<br>\n If this happened during an update a simple page refresh may be the solution.<br>\n Mako errors that happen during updates may be a one time error if there were significant ui changes.":[null,"Un error mako ha ocurrido.<br>\n Si esto ha occurido durante una actualización, un simple refresco de la página puede ser la solución.<br>\n Los errores Mako que suceden durante las actualizaciones puedes ser errores puntuales si han habido cambios significativos en la interfaz."],"Show/Hide Error":[null,"Mostrar/Ocultar Error"],"Add New Show":[null,"Agregar nueva serie"],"For shows that you haven't downloaded yet, this option finds a show on theTVDB.com, creates a directory for it's episodes, and adds it to SickRage.":[null,"Para series que aún no has descargado, esta opción busca la serie en theTVB.com, crea un directorio para sus episodios, y lo agrega a SickRage."],"Add From Trakt Lists":[null,"Añadir desde las listas de Trakt"],"For shows that you haven't downloaded yet, this option lets you choose from a show from one of the Trakt lists to add to SickRage.":[null,"Para series que aún no ha descargado, esta opción le permite elegir una serie desde una de las listas de Trakt para ser añadida a SickRage."],"Add From IMDB's Popular Shows":[null,"Añadir desde Series Populares de IMBD"],"View IMDB's list of the most popular shows. This feature uses IMDB's MOVIEMeter algorithm to identify popular TV Series.":[null,"Ver lista de las series más populares de IMBD. Esta opción usa el algoritmo MOVIEMeter de IMBD para identificar series populares."],"Add Existing Shows":[null,"Añadir series existentes"],"Use this option to add shows that already have a folder created on your hard drive. SickRage will scan your existing metadata/episodes and add the show accordingly.":[null,"Use esta opción para añadir series que ya tienen un directorio creado en su disco duro. SickRage escaneará sus metadatos/episodios y los añadirá consequentemente."],"Add Existing Show":[null,"Añadir serie existente"],"Manage Directories":[null,"Gestión de directorios"],"Customize Options":[null,"Personalizar opciones"],"SickRage can add existing shows, using the current options, by using locally stored NFO/XML metadata to eliminate user interaction. If you would rather have SickRage prompt you to customize each show, then use the checkbox below.":[null,"SickRage puede agregar programas existentes, utilizando las opciones actuales, mediante metadatos NFO/XML almacenados localmente para eliminar la interacción del usuario. Si prefiere que SickRage pida personalizar cada serie, marque la casilla siguiente."],"Prompt me to set settings for each show":[null,"Preguntar específicamente para cada serie"],"Displaying folders within these directories which aren't already added to SickRage":[null,"Mostrando carpetas dentro de estos directorios que aún no se han añadido a SickRage"],"Submit":[null,"Enviar"],"Find a show on theTVDB":[null,"Encontrar una serie en theTVDB"],"Show retrieved from existing metadata":[null,"Serie extraída utilizando metadatos almacenados"],"All Indexers":[null,"Todos los Indexadores"],"Search":[null,"Buscar"],"This will only affect the language of the retrieved metadata file contents and episode filenames.":[null,"Esto solamente afectará al idioma de los metadatos extraídos y los nombres de los episodios."],"This <b>DOES NOT</b> allow SickRage to download non-english TV episodes!":[null,"Esto <b>NO</b> permite que SickRage descargue episodios en otro idioma!"],"Pick the parent folder":[null,"Escoja el directorio superior"],"Pre-chosen Destination Folder":[null,"Carpeta de destino Pre-Seleccionada"],"Customize options":[null,"Opciones de personalización"],"Add Show":[null,"Añadir serie"],"Skip Show":[null,"Omitir serie"],"Sort By":[null,"Ordenar por"],"Name":[null,"Nombre"],"Original":[null,"Original"],"Votes":[null,"Votos"],"Rating":[null,"Valoración"],"Rating > Votes":[null,"Puntuación > Votos"],"Sort Order":[null,"Ordenar por"],"Asc":[null,"Asc"],"Desc":[null,"Desc"],"Fetching of IMDB Data failed. Are you online?":[null,"Descarga de IMDB fallida. ¿Estás online?"],"Exception":[null,"Excepción"],"Select Trakt List":[null,"Seleccione lista de Trakt"],"Most Anticipated":[null,"Más esperados"],"Trending":[null,"Tendencias"],"Popular":[null,"Popular"],"Most Watched":[null,"Más visto"],"Most Played":[null,"Más reproducidas"],"Most Collected":[null,"Más veces recopilado"],"Recommended":[null,"Recomendado"],"Toggle navigation":[null,"Alternar navegación"],"Profile":[null,"Perfil"],"JSONP":[null,"JSONP"],"Back to SickRage":[null,"Volver a SickRage"],"Parameters":[null,"Parámetros"],"Required":[null,"Obligatorio"],"Description":[null,"Descripción"],"Type":[null,"Tipo"],"Default value":[null,"Valor por defecto"],"Allowed values":[null,"Valores permitidos"],"Playground":[null,"Zona de juegos"],"Clear":[null,"Limpiar"],"Yes":[null,"Sí"],"No":[null,"No"],"season":[null,"temporada"],"episode":[null,"episodio"],"Python Version":[null,"Versión de Python"],"SSL Version":[null,"Versión SSL"],"OS":[null,"OS"],"Locale":[null,"Configuración regional"],"User":[null,"Usuario"],"Program Folder":[null,"Carpeta del programa"],"Config File":[null,"Archivo de configuración"],"Database File":[null,"Archivo de base de datos"],"Cache Folder":[null,"Carpeta cache"],"Log Folder":[null,"Carpeta de registro"],"Arguments":[null,"Argumentos"],"Web Root":[null,"Web raíz"],"Website":[null,"Página web"],"Wiki":[null,"Wiki"],"Source":[null,"Origen"],"IRC Chat":[null,"Chat IRC"],"AnimeDB Settings":[null,"Configuración de AnimeDB"],"Look & Feel":[null,"Aspecto visual"],"AniDB is non-profit database of anime information that is freely open to the public":[null,"AniDB es una base de datos sin ánimo de lucro con información de animes abierta al público"],"Enable":[null,"Activado"],"should SickRage use data from AniDB?":[null,"¿debería SickRage usar datos procedentes de AniDB?"],"AniDB Username":[null,"Usuario AniDB"],"username of your AniDB account":[null,"usuario de su cuenta AniDB"],"AniDB Password":[null,"AniDB contraseña"],"password of your AniDB account":[null,"contraseña de tu cuenta de AniDB"],"AniDB MyList":[null,"AniDB MyList"],"do you want to add the PostProcessed episodes to the MyList?":[null,"le gustaría añadir los episodios post-procesados a su ListaPersonal?"],"Look and Feel":[null,"Apariencia"],"How should the anime functions show and behave.":[null,"Cómo deben mostrarse y comportarse las funciones de anime."],"Split show lists":[null,"Dividir listas de serie"],"separate anime and normal shows in groups":[null,"separar anime y series normales en grupos"],"Split in tabs":[null,"Separar en pestañas"],"use tabs for when splitting show lists":[null,"usar pestañas al dividir la lista de series"],"Restore":[null,"Restaurar"],"Backup your main database file and config.":[null,"Hacer una copia de seguridad de su archivo de base de datos principal y configuración."],"Select the folder you wish to save your backup file to":[null,"Seleccione la carpeta que desea usar para guardar su copia de seguridad"],"Restore your main database file and config.":[null,"Restaurar la base de datos principal y configuración."],"Select the backup file you wish to restore":[null,"Seleccione la copia de seguridad que desea restaurar"],"Misc":[null,"Miscelánea"],"Interface":[null,"Interfaz"],"Advanced Settings":[null,"Configuración avanzada"],"Startup options. Indexer options. Log and show file locations.":[null,"Opciones de inicio. Opciones de indizado. Ubicación de archivos de registro y de programas."],"Some options may require a manual restart to take effect.":[null,"Algunas de las opciones pueden requerir reiniciar el equipo antes de tener efecto."],"Default Indexer Language":[null,"Idioma de indizador predeterminado"],"for adding shows and metadata providers":[null,"para agregar series y proveedores de matadatos"],"Launch browser":[null,"Iniciar navegador"],"open the SickRage home page on startup":[null,"abrir la página de inicio de SickRage al iniciar"],"Initial page":[null,"Página inicial"],"Shows":[null,"Series"],"when launching SickRage interface":[null,"al abrir la interfaz de SickRage"],"Choose hour to update shows":[null,"Elija hora para actualizar las series"],"with information such as next air dates, show ended, etc. Use 15 for 3pm, 4 for 4am etc.":[null,"con información como siguiente fecha de emisión, programa concluido, etc. Use 15 para 3pm, 4 para 4am, etc."],"note":[null,"nota"],"minutes are randomized each time SickRage is started":[null,"cada vez que SickRage se inicia el valor de los minutos es elegido al azar"],"Send to trash for actions":[null,"Enviar a la papelera para acciones"],"when using show \"Remove\" and delete files":[null,"cuando use \"Borrar\" desde una serie y elimine archivos"],"on scheduled deletes of the oldest log files":[null,"en eliminación programada de los archivos de registro mas antiguos"],"selected actions use trash (recycle bin) instead of the default permanent delete":[null,"las acciones seleccionadas usan la papelera (de reciclaje) en lugar de la eliminación permanente por defecto"],"Log file folder location":[null,"Ruta para ficheros de log"],"Number of Log files saved":[null,"Número de archivos de registro guardados"],"number of log files saved when rotating logs (default: 5) (REQUIRES RESTART)":[null,"número de archivos de log guardados cuando se rotan los logs (por defecto: 5) (REQUIERE REINICIO)"],"Size of Log files saved":[null,"Tamaño de los archivos de log guardados"],"maximum size in MB of the log file (default: 1MB) (REQUIRES RESTART)":[null,"tamaño máximo en MB del archivo de log (por defecto: 1MB) (REQUIERE REINICIO)"],"Use initial indexer set to":[null,"Usa como indexador inicial"],"as the default selection when adding new shows":[null,"como la selección por defecto al añadir nuevas series"],"Timeout show indexer at":[null,"Tiempo de espera del indexador en"],"seconds of inactivity when finding new shows (default:20)":[null,"segundos de inactividad durante la búsqueda de nuevas series (por defecto: 20)"],"Show root directories":[null,"Mostrar directorios raíz"],"where the files of shows are located":[null,"donde se guardan los archivos de las series"],"Save Changes":[null,"Guardar los cambios"],"Options for software updates.":[null,"Opciones relacionadas con las actualizaciones del software."],"Check software updates":[null,"Comprobar actualizaciones"],"and display notifications when updates are available. Checks are run on startup and at the frequency set below*":[null,"y mostrar notificaciones cuando haya actualizaciones disponibles.\n Se comprueba al inicio y a la frecuencia fijada más abajo*"],"Automatically update":[null,"Actualizar automáticamente"],"fetch and install software updates. Updates are run on startup and in the background at the frequency set below*":[null,"descargar e instalar actualizaciones. \n Las actualizaciones se instalan en segundo plano, al inicio y con la frecuencia configurada más abajo*"],"Check the server every*":[null,"Comprobar servidor cada*"],"hours for software updates (default:1)":[null,"horas buscando actualizaciones de software (por defecto: 1)"],"Notify on software update":[null,"Notificar al actualizar el software"],"send a message to all enabled notifiers when SickRage has been updated":[null,"enviar mensaje a todos los sistemas de notificación cuando se actualice SickRage"],"User Interface":[null,"Interfaz de usuario"],"Options for visual appearance.":[null,"Opciones de apariencia visual."],"Interface Language":[null,"Lenguaje de la interfaz"],"System Language":[null,"Lenguaje del sistema"],"for appearance to take effect, save then refresh your browser":[null,"para que el aspecto surja efecto, guardar y después refrescar el navegador"],"Display theme":[null,"Mostrar tema"],"Dark":[null,"Oscuro"],"Light":[null,"Claro"],"Use a background image":[null,"Usar una imagen de fondo"],"use a custom image as background for SickRage":[null,"usar una imagen personalizada como fondo de SickRage"],"Background Path":[null,"Ruta de imagen de fondo"],"Path to the background image":[null,"Ruta a la imagen de fondo"],"Show fanart in the background":[null,"Fanart del programa en el fondo"],"on the show summary page":[null,"en la página resumen de la serie"],"Fanart transparency":[null,"Transparencia de fanart"],"transparency of the fanart in the background":[null,"transparencia de fanart en el fondo"],"Use a custom stylesheet file":[null,""],"use a custom .css file to style SickRage (for advanced users)":[null,""],"Stylesheet File Path":[null,""],"Path to the stylesheet (.css) file":[null,""],"Show all seasons":[null,"Mostrar todas las temporadas"],"Sort with \"The\", \"A\", \"An\"":[null,"Ordenar teniendo en cuenta \"The\", \"A\", \"An\""],"include articles (\"The\", \"A\", \"An\") when sorting show lists":[null,"incluir los artículos (\"The\", \"A\", \"An\") al ordenar las listas de las series"],"Missed episodes range":[null,"Rango para episodios no encontrados"],"set the range in days of the missed episodes in the Schedule page":[null,"fije el rango de días para los episodios no encontrados en la página de la Programación"],"Display fuzzy dates":[null,"Mostrar fechas imprecisas"],"move absolute dates into tooltips and display e.g. \"Last Thu\", \"On Tue\"":[null,"convierte las fechas absolutas en aproximadas y muestra p.e. \"Pasado Jueves\", \"El Martes\""],"Trim zero padding":[null,"Ajuste con cero relleno"],"remove the leading number \"0\" shown on hour of day, and date of month":[null,"quita el primer número \"0\" mostrado en la hora del día, y la fecha del mes"],"Date style":[null,"Estilo de fecha"],"Use System Default":[null,"Utilizar valores por defecto"],"Time style":[null,"Estilo de hora"],"seconds are only shown on the History page":[null,"los segundos solo se muestran en la página Historial"],"Timezone":[null,"Zona horaria"],"Local":[null,"Local"],"Network":[null,"Red"],"display dates and times in either your timezone or the shows network timezone":[null,"mostrar fechas y horas en su zona horaria o la zona horaria del canal de la serie"],"use local timezone to start searching for episodes minutes after show ends (depends on your dailysearch frequency)":[null,"usar la zona horaria local para empezar la búsqueda de episodios después de que se emita la serie (depende de la frecuencia de la búsqueda diaria)"],"Download url":[null,"Url de descarga"],"URL where the shows can be downloaded.":[null,"URL donde pueden descargarse las series."],"Web Interface":[null,"Interfaz Web"],"it is recommended that you enable a username and password to secure SickRage from being tampered with remotely.":[null,"es recomendable que habilites un usuario y contraseña para evitar que SickRage sea manipulado remotamente."],"these options require a manual restart to take effect.":[null,"estas opciones requieren un reinicio manual para tener efecto."],"API key":[null,"Clave de API"],"used to give 3rd party programs limited access to SickRage":[null,"usado para permitir acceso limitado a SickRage por programas de terceros"],"you can try all the features of the API":[null,"puede probar todas las funciones de la API"],"here":[null,"aquí"],"HTTP logs":[null,"Logs HTTP"],"enable logs from the internal Tornado web server":[null,"habilite los logs desde el servidor web interno Tornado"],"HTTP username":[null,"Nombre de usuario HTTP"],"set blank for no login":[null,"deje en blanco para no requerir usuario"],"HTTP password":[null,"Contraseña HTTP"],"blank = no authentication":[null,"en blanco = sin autenticación"],"HTTP port":[null,"Puerto HTTP"],"web port to browse and access SickRage (default:8081)":[null,"puerto web para navegar y acceder a SickRage (por defecto: 8081)"],"Notify on login":[null,"Notificar al inicio de sesión"],"enable to be notified when a new login happens in webserver":[null,"habilitar para ser notificado cuando ocurra un nuevo inicio de sesión en el servidor web"],"Listen on IPv6":[null,"Escuchar en IPv6"],"attempt binding to any available IPv6 address":[null,"intentar enlazar con cualquier dirección IPv6 disponible"],"Enable HTTPS":[null,"Habilitar HTTPS"],"enable access to the web interface using a HTTPS address":[null,"permitir el acceso a la interfaz web usando una dirección HTTPS"],"HTTPS certificate":[null,"Certificado HTTPS"],"file name or path to HTTPS certificate":[null,"nombre de archivo o ruta del certificado HTTPS"],"HTTPS key":[null,"Clave HTTPS"],"file name or path to HTTPS key":[null,"nombre de archivo o ruta de la clave HTTPS"],"Reverse proxy headers":[null,"Cabeceras de proxy reverso"],"accept the following reverse proxy headers (advanced)...":[null,"aceptar los siguientes encabezados de proxy inverso (avanzado)..."],"(X-Forwarded-For, X-Forwarded-Host, and X-Forwarded-Proto)":[null,"(X-Forwarded-For, X-Forwarded-Host, y X-Forwarded-Proto)"],"CPU throttling":[null,"Límite de CPU"],"Normal (default). High is lower and Low is higher CPU use":[null,"Normal (predeterminado). Alta es menor y Baja es el uso de CPU más alto"],"Anonymous redirect":[null,"Redirección anónima"],"backlink protection via anonymizer service, must end in \"?\"":[null,"protección de backlink a través de un servicio anonimizador, debe terminar en \"?\""],"Enable debug":[null,"Habilitar Debug"],"enable debug logs":[null,"habilitar logs de depuración"],"Verify SSL Certs":[null,"Verificar certificados SSL"],"verify SSL Certificates (Disable this for broken SSL installs (Like QNAP))":[null,"verificar certificados SSL (desactivar esto con SSL auto-firmadas (como QNAP))"],"No Restart":[null,"No reiniciar"],"only shutdown when restarting SR":[null,"apagar solamente cuando reinicie SR"],"only select this when you have external software restarting SR automatically when it stops (like FireDaemon)":[null,"únicamente seleccionar si dispones de software externo para reiniciar SR automáticamente cuando se detiene (como FireDaemon)"],"Encrypt passwords":[null,"Cifrar contraseñas"],"in the <code>config.ini</code> file":[null,"en el archivo <code>config.ini</code>"],"warning":[null,"advertencia"],"passwords must only contain":[null,"las contraseñas solo deben contener"],"ASCII characters":[null,"Caracteres ASCII"],"Unprotected calendar":[null,"Calendario desprotegido"],"allow subscribing to the calendar without user and password":[null,"permitir suscribirse al calendario sin usuario y contraseña"],"some services like Google Calendar only work this way":[null,"algunos servicios como Google Calendar sólo funcionan de esta manera"],"Google Calendar Icons":[null,"Iconos de Google Calendar"],"show an icon next to exported calendar events in Google Calendar":[null,"mostrar un icono junto al calendario de eventos exportados en Google Calendar"],"Proxy host":[null,"Host del proxy"],"blank to disable or proxy to use when connecting to providers":[null,"en blanco para desactivar o el proxy a utilizar para conectar a los proveedores"],"also use global proxy setting for indexers (tvdb, xem, anidb, etc.)":[null,"usar también opciones de proxy para indexadores (tvdb, xem, anidb, etc.)"],"Skip Remove Detection":[null,"Omitir Detección de Eliminación"],"skip detection of removed files":[null,"saltar detección de archivos eliminados"],"if disabled the episode will be set to the default deleted status":[null,"si deshabilitas el episodio se establecerá a la opción predeterminada para el estado de borrado"],"Default deleted episode status":[null,"Estado de episodio eliminado por defecto"],"define the status to be set for media file that has been deleted.":[null,"definir el estado que se fijará para el archivo multimedia eliminado."],"Archived option will keep previous downloaded quality":[null,"La opción archivado mantendrá la calidad de descarga anterior"],"example: Downloaded (1080p WEB-DL) ==> Archived (1080p WEB-DL)":[null,"ejemplo: Descargado (1080p WEB-DL) ==> Archivado (1080p WEB-DL)"],"Options for github related features.":[null,"Opciones relacionadas con GitHub."],"Branch version":[null,"Versión de la rama"],"error: No branches found.":[null,"error: Ramas no encontradas."],"select branch to use (restart required)":[null,"seleccione rama a usar (requiere reinicio)"],"Authorization Type":[null,"Tipo de Autenticación"],"Username and password":[null,""],"Personal access token":[null,""],"You must use a personal access token if you're using \"two-factor authentication\" on GitHub.":[null,""],"GitHub username":[null,"Usuario GitHub"],"*** (REQUIRED FOR SUBMITTING ISSUES) ***":[null,"*** (REQUERIDO PARA ENVIAR INCIDENCIAS) ***"],"GitHub password":[null,"Contraseña de GitHub"],"GitHub personal access token":[null,""],"Generate Token":[null,""],"Manage Tokens":[null,""],"GitHub remote for branch":[null,"Rama remota en GitHub"],"access repo configured remotes (save then refresh browser)":[null,""],"default":[null,""],"origin":[null,""],"Git executable path":[null,"Ruta del ejecutable Git"],"only needed if OS is unable to locate git from env":[null,"solo es necesario si el sistema operativo no encuentra git en tu entorno"],"Git reset":[null,"Git reset"],"removes untracked files and performs a hard reset on git branch automatically to help resolve update issues":[null,"elimina archivos sin seguimiento y realiza un hard reset en la rama de git automáticamente para ayudar a resolver problemas tras actualizar"],"Home Theater / NAS":[null,"Home Theater / NAS"],"Devices":[null,"Dispositivos"],"Social":[null,"Social"],"A free and open source cross-platform media center and home entertainment system software with a 10-foot user interface designed for the living-room TV.":[null,"Un Software de plataforma Libre de Medios y Sistema de Entretenimiento. diseñado para la TV de la Sala."],"send KODI commands?":[null,""],"Always on":[null,"Siempre encendido"],"log errors when unreachable?":[null,"¿registrar errores cuando sea inalcanzable?"],"Notify on snatch":[null,"Notificación al encontrar"],"send a notification when a download starts?":[null,"¿enviar notificación al iniciar una descarga?"],"Notify on download":[null,"Notificar en descarga"],"send a notification when a download finishes?":[null,"¿enviar notificación al finalizar una descarga?"],"Notify on subtitle download":[null,"Notificar al descargar subtitulos"],"send a notification when subtitles are downloaded?":[null,"¿enviar una notificación al descargar subtitulos?"],"Update library":[null,"Actualizar biblioteca"],"update KODI library when a download finishes?":[null,"¿Actualizar biblioteca KODI al terminar una descarga?"],"Full library update":[null,"Actualizar toda la biblioteca"],"perform a full library update if update per-show fails?":[null,"¿actualizar toda la biblioteca si la actualización de la serie falla?"],"Only update first host":[null,"Solo actualizar el primer host"],"only send library updates to the first active host?":[null,"¿solo enviar actualizaciones de biblioteca al primer host activo?"],"KODI IP:Port":[null,"KODI IP: Puerto"],"host running KODI (eg. 192.168.1.100:8080)":[null,"host en el que se ejecuta KODI (ej. 192.168.1.100:8080)"],"(multiple host strings must be separated by commas)":[null,"(múltiples hosts deben separarse con comas)"],"Username":[null,"Nombre de usuario"],"username for your KODI server (blank for none)":[null,"nombre de usuario para tu servidor KODI (en blanco para ninguno)"],"Password":[null,"Contraseña"],"password for your KODI server (blank for none)":[null,"contraseña para tu servidor KODI (en blanco para ninguna)"],"Click below to test.":[null,"Haga clic a continuación para probar."],"Experience your media on a visually stunning, easy to use interface on your Mac connected to your TV. Your media library has never looked this good!":[null,"Experimenta Tu Contenido visualmente asombroso, interfaz facíl de usar en tu Mac conectada a tu TV. Tu Contenido nunca se vió asi de Bien!"],"For sending notifications to Plex Home Theater (PHT) clients, use the KODI notifier with port <b>3005</b>.":[null,"Para el envío de notificaciones a clientes Plex Home Theater (PHT), usar el notificador KODI con puerto <b>3005</b>."],"send Plex Media Server library updates?":[null,""],"Plex Media Server Auth Token":[null,"Token de autenticación para Plex Media Server"],"auth token used by Plex":[null,""],"Update Library":[null,"Actualizar biblioteca"],"update Plex Media Server library when a download finishes":[null,"actualizar la biblioteca de Plex Media Server cuando termine una descarga"],"Plex Media Server IP:Port":[null,"Plex Media Server IP:Puerto"],"one or more hosts running Plex Media Server<br/>(eg. 192.168.1.1:32400, 192.168.1.2:32400)":[null,"uno o más hosts ejecutando Plex Media Server<br/>(ej. 192.168.1.1:32400, 192.168.1.2:32400)"],"HTTPS":[null,"HTTPS"],"use https for plex media server requests?":[null,"¿utilizar https para las solicitudes de Plex Media Server?"],"Click below to test Plex Media Server(s)":[null,"Haga clic a continuación para probar el Plex Media Server"],"Test Plex Media Server":[null,"Prueba Plex Media Server"],"Plex Home Theater":[null,"Plex Home Theater"],"send Plex Home Theater notifications?":[null,""],"Plex Home Theater IP:Port":[null,"Plex Home Theater IP:Puerto"],"one or more hosts running Plex Home Theater<br>(eg. 192.168.1.100:3000, 192.168.1.101:3000)":[null,"uno o más hosts ejecutando Plex Home Theater<br>(ej. 192.168.1.100:3000, 192.168.1.101:3000)"],"Click below to test Plex Home Theater(s)":[null,"Haga clic a continuación para probar el Plex Home Theater"],"Test Plex Home Theater":[null,"Probar Plex Home Theater"],"some Plex Home Theaters <b class=\"boldest\">do not</b> support notifications e.g. Plexapp for Samsung TVs":[null,""],"Emby":[null,"Emby"],"A home media server built using other popular open source technologies.":[null,"Un servidor multimedia construido sobre otras populares tecnologías open source."],"send update commands to Emby?":[null,""],"Emby IP:Port":[null,"Emby IP:Puerto"],"host running Emby (eg. 192.168.1.100:8096)":[null,"host en el que se ejecuta Emby (ej. 192.168.1.100:8096)"],"Emby API Key":[null,"Emby API Key"],"Networked Media Jukebox":[null,"Networked Media Jukebox"],"The Networked Media Jukebox, or NMJ, is the official media jukebox interface made available for the Popcorn Hour 200-series.":[null,"El Networked Media Jukebox, o NMJ, es la interfaz oficial para jukebox disponible para el Popcorn Hour serie 200."],"send update commands to NMJ?":[null,""],"Popcorn IP address":[null,"Dirección IP de Popcorn"],"IP address of Popcorn 200-series (eg. 192.168.1.100)":[null,"Dirección IP del Popcorn serie 200 (ej 192.168.1.100)"],"Get settings":[null,"Obtener la configuración"],"Get Settings":[null,"Obtener la configuración"],"the Popcorn Hour device must be powered on and NMJ running.":[null,"el dispositivo Popcorn Hour debe estar encendido y NMJ en ejecución."],"NMJ database":[null,"Base de datos NMJ"],"automatically filled via the 'Get Settings' button.":[null,"rellenado automáticamente a través del botón 'Obtener la Configuración'."],"NMJ mount url":[null,"URL de montaje NMJ"],"Networked Media Jukebox v2":[null,"Networked Media Jukebox v2"],"The Networked Media Jukebox, or NMJv2, is the official media jukebox interface made available for the Popcorn Hour 300 & 400-series.":[null,"El Networked Media Jukebox, o NMJv2, es la interfaz oficial para jukebox disponible para el Popcorn Hour 300 y serie 400."],"send update commands to NMJv2?":[null,""],"IP address of Popcorn 300/400-series (eg. 192.168.1.100)":[null,"Dirección IP del Popcorn serie 300/400 (eg. 192.168.1.100)"],"Database location":[null,"Ubicación de la base de datos"],"Database instance":[null,"Instancia de la base datos"],"adjust this value if the wrong database is selected.":[null,"ajuste este valor si se seleccionó una base de datos errónea."],"Find database":[null,"Buscar base de datos"],"Find Database":[null,"Buscar base de datos"],"the Popcorn Hour device must be powered on.":[null,"el dispositivo Popcorn Hour debe estar encendido."],"NMJv2 database":[null,"Base de datos NMJ"],"automatically filled via the 'Find Database' buttons.":[null,"rellenado automáticamente a través del botón 'Obtener la Configuración'."],"Synology":[null,"Synology"],"The Synology DiskStation NAS.":[null,"Los NAS Synology DiskStation."],"Synology Indexer is the daemon running on the Synology NAS to build its media database.":[null,"Servicio de indexación es el proceso en ejecución en la NAS Synology que construye su base de datos multimedia."],"send Synology notifications?":[null,""],"requires SickRage to be running on your Synology NAS.":[null,"requiere que SickRage esté ejecutándose en su NAS Synology."],"Synology Indexer":[null,"Indexación de Synology"],"Synology Notifier is the notification system of Synology DSM":[null,"Notificador de Synology es el sistema de notificaciones de Synology DSM"],"send notifications to the Synology Notifier?":[null,""],"pyTivo":[null,"pyTivo"],"pyTivo is both an HMO and GoBack server. This notifier will load the completed downloads to your Tivo.":[null,"pyTivo es a la vez un HMO y el servidor de GoBack. Este notificador carga las descargas completadas a su Tivo."],"send notifications to pyTivo?":[null,""],"requires the downloaded files to be accessible by pyTivo.":[null,"requiere que los archivos descargados sean accesibles por pyTivo."],"pyTivo IP:Port":[null,"pyTivo IP:Puerto"],"host running pyTivo (eg. 192.168.1.1:9032)":[null,"host que ejecuta pyTivo (ej. 192.168.1.1:9032)"],"pyTivo share name":[null,"nombre de recurso compartido pyTivo"],"value used in pyTivo Web Configuration to name the share.":[null,"valor utilizado en la configuración web de pyTivo para nombrar el recurso compartido."],"Tivo name":[null,"Nombre de Tivo"],"(Messages & Settings > Account & System Information > System Information > DVR name)":[null,"(Mensajes & Ajustes > Cuenta & Información del sistema > Información del sistema > Nombre de DVR)"],"Growl":[null,"Growl"],"A cross-platform unobtrusive global notification system.":[null,"Un discreto sistema de notificación mundial multiplataforma."],"send Growl notifications?":[null,""],"Growl IP:Port":[null,"Growl IP:Puerto"],"host running Growl (eg. 192.168.1.100:23053)":[null,"host que ejecuta Growl (ej. 192.168.1.100:23053)"],"may leave blank if SickRage is on the same host.":[null,"puede dejarlo en blanco si SickRage se ejecuta en el mismo host."],"otherwise Growl <b>requires</b> a password to be used.":[null,"de lo contrario Growl <b>requiere</b> una contraseña para funcionar."],"Click below to register and test Growl, this is required for Growl notifications to work.":[null,"Haga clic a continuación para registrarse y probar Growl, esto es necesario para que funcionen las notificaciones de Growl."],"Register Growl":[null,"Registrar Growl"],"Prowl":[null,"Prowl"],"A Growl client for iOS.":[null,"Un cliente de Growl para iOS."],"send Prowl notifications?":[null,""],"Prowl Message Title":[null,"Título del mensaje de Prowl"],"Global Prowl API key(s)":[null,"API key(s) globales de Prowl"],"Prowl API(s) listed here, separated by commas if applicable, will<br> receive notifications for <b>all</b> shows. Your Prowl API key is available at:":[null,""],"(this field may be blank except when testing.)":[null,""],"Show notification list":[null,"Mostrar lista de notificaciones"],"-- Select a Show --":[null,"-- Seleccione un programa --"],"Configure per-show notifications here by entering Prowl API key(s), separated by commas, '\n 'after selecting a show in the drop-down box. Be sure to activate the 'Save for this show' '\n 'button below after each entry.":[null,""],"Save for this show":[null,"Guardar para esta serie"],"Prowl priority":[null,"Prioridad de Prowl"],"Very Low":[null,"Muy baja"],"Moderate":[null,"Moderada"],"Normal":[null,"Normal"],"High":[null,"Alta"],"Emergency":[null,"Emergencia"],"priority of Prowl messages from SickRage.":[null,"prioridad de los mensajes de Prowl de SickRage."],"Libnotify":[null,"Libnotify"],"The standard desktop notification API for Linux/*nix systems. This notifier will only function if the pynotify module is installed (Ubuntu/Debian package <a href=\"apt:python-notify\">python-notify</a>).":[null,""],"send Libnotify notifications?":[null,""],"Pushover":[null,"Pushover"],"Pushover makes it easy to send real-time notifications to your Android and iOS devices.":[null,"Pushover hace fácil enviar notificaciones en tiempo real a dispositivos Android e iOS."],"send Pushover notifications?":[null,""],"Pushover key":[null,"Clave de Pushover"],"user key of your Pushover account":[null,"clave de usuario de su cuenta de Pushover"],"Pushover API key":[null,"clave de API de Pushover"],"click here":[null,""]," to create a Pushover API key":[null,""],"Pushover devices":[null,"dispositivos de Pushover"],"comma separated list of pushover devices you want to send notifications to":[null,"lista separada por comas de dispositivos de Pushover a los que se desea enviar notificaciones"],"Pushover notification sound":[null,"sonido de notificación de Pushover"],"Bike":[null,"Bicicleta"],"Bugle":[null,"Bugle"],"Cash Register":[null,"Caja registradora"],"Classical":[null,"Clásica"],"Cosmic":[null,"Cósmico"],"Falling":[null,""],"Gamelan":[null,""],"Incoming":[null,"Entrantes"],"Intermission":[null,""],"Magic":[null,"Magia"],"Mechanical":[null,""],"Piano Bar":[null,""],"Siren":[null,"Sirena"],"Space Alarm":[null,"Alarma de espacio"],"Tug Boat":[null,""],"Alien Alarm (long)":[null,""],"Climb (long)":[null,""],"Persistent (long)":[null,"Persistente (largo)"],"Pushover Echo (long)":[null,""],"Up Down (long)":[null,"Arriba abajo (largo)"],"None (silent)":[null,"Ninguno (silencioso)"],"Device specific":[null,"Dispositivo específico"],"choose notification sound to use":[null,""],"Pushover priority":[null,""],"Choose priority to use":[null,""],"Boxcar 2":[null,"Boxcar 2"],"Read your messages where and when you want them!":[null,"Lea sus mensajes donde y cuando quiera!"],"send Boxcar notifications?":[null,""],"Boxcar2 access token":[null,"Token de acceso a Boxcar2"],"access token for your Boxcar account.":[null,"token de acceso de su cuenta Boxcar."],"NMA":[null,"NMA"],"Notify My Android":[null,"Notify My Android"],"Notify My Android is a Prowl-like Android App and API that offers an easy way to send notifications from your application directly to your Android device.":[null,""],"send NMA notifications?":[null,""],"NMA API key":[null,"API key de NMA"],"(multiple keys must be separated by commas, up to a maximum of 5)":[null,"(múltiples keys deben estar separadas por comas, hasta un máximo de 5)"],"NMA priority":[null,"Prioridad NMA"],"priority of NMA messages from SickRage.":[null,"prioridad de los mensajes NMA de SickRage."],"Pushalot":[null,"Pushalot"],"Pushalot is a platform for receiving custom push notifications to connected devices running Windows Phone or Windows 8.":[null,""],"send Pushalot notifications ?":[null,""],"Pushalot authorization token":[null,"Token de autorización para Pushalot"],"authorization token of your Pushalot account.":[null,"token de autorización de tu cuenta de Pushalot."],"Pushbullet":[null,"Pushbullet"],"Pushbullet is a platform for receiving custom push notifications to connected devices running Android/iOS and desktop browsers such as Chrome, Firefox or Opera.":[null,"Pushbullet es una plataforma para recibir notificaciones push personalizadas en dispositivos ejecutando Android/iOS y navegadores de escritorio como Chrome, Firefox u Opera."],"send Pushbullet notifications?":[null,""],"Pushbullet API key":[null,"API key de Pushbullet"],"API key of your Pushbullet account":[null,"API key de su cuenta Pushover"],"Pushbullet devices":[null,"Dispositivos de Pushbullet"],"Update device list":[null,"Actualizar la lista de dispositivos"],"Pushbullet channels":[null,"Canales de Pushbullet"],"Free Mobile":[null,"Free Mobile"],"Free Mobile is a famous French cellular network provider.<br> It provides to their customer a free SMS API.":[null,"Free Mobile es un conocido proveedor móvil francés.<br> Proporciona a sus clientes una API para SMS gratuita."],"send SMS notifications?":[null,""],"send a SMS when a download starts?":[null,"¿Enviar un SMS cuando comienza una descarga?"],"send a SMS when a download finishes?":[null,"¿Enviar un SMS cuando una descarga termina?"],"send a SMS when subtitles are downloaded?":[null,"¿Enviar un SMS cuando se hayan descargado subtítulos?"],"Free Mobile customer ID":[null,"Identificación de cliente Free Mobile"],"it's your Free Mobile customer ID (8 digits)":[null,""],"Free Mobile API key":[null,""],"find your API key in your customer portal.":[null,""],"Click below to test your settings.":[null,"Haga clic a continuación para probar la configuración."],"Telegram":[null,"Telegram"],"Telegram is a cloud-based instant messaging service.":[null,"Telegram es un servicio de mensajería instantánea basado en la nube."],"send Telegram notifications?":[null,""],"send a message when a download starts?":[null,""],"send a message when a download finishes?":[null,""],"send a message when subtitles are downloaded?":[null,""],"User/group ID":[null,"ID de usuario o grupo"],"contact @myidbot on Telegram to get an ID":[null,""],"Bot API token":[null,"Token de la API de Bots"],"contact @BotFather on Telegram to set up one":[null,""],"Join":[null,"Join"],"Join all of your devices together!":[null,"Une (join) todos tus dispositivos juntos!"],"send Join notifications?":[null,""],"Device ID":[null,"ID de dispositivo"],"per device specific id":[null,""]," to create a Join API key":[null,""],"Twilio":[null,""],"Twilio is a webservice API that allows you to communicate directly with a mobile number. This notifier will send a text directly to your mobile device.":[null,""],"should SickRage text your mobile device?":[null,""],"Twilio Account SID":[null,""],"account SID of your Twilio account.":[null,""],"Twilio Auth Token":[null,""],"Twilio Phone SID":[null,""],"phone SID that you would like to send the sms from":[null,""],"Your phone number":[null,""],"phone number that will receive the sms. Please use the format +1-###-###-####":[null,""],"Twitter":[null,"Twitter"],"A social networking and microblogging service, enabling its users to send and read other users' messages called tweets.":[null,"Una red social y servicio de microblogging que permite a sus usuarios leer y enviar mensajes de otros usuarios llamados tweets."],"should SickRage post tweets on Twitter?":[null,""],"you may want to use a secondary account.":[null,"puede que desee utilizar una cuenta secundaria."],"send direct message":[null,""],"send a notification via Direct Message, not via status update":[null,"enviar una notificación vía mensaje directo, no a través de actualización de estado"],"send DM to":[null,""],"Twitter account to send Direct Messages to (must follow you)":[null,"Cuenta de Twitter a la que enviar mensajes directos (debe seguirte)"],"Step One":[null,"Paso Uno"],"Request Authorization":[null,"Solicitar autorización"],"Click the \"Request Authorization\" button.<br> This will open a new page containing an auth key.<br> <b>note:</b> if nothing happens check your popup blocker.":[null,""],"Step Two":[null,"Paso Dos"],"Enter the key Twitter gave you below, and click \"Verify Key\".":[null,"Introduzca la clave que Twitter le dio a continuación, y clique en \"verificar\"."],"Trakt":[null,"Trakt"],"Trakt helps keep a record of what TV shows and movies you are watching. Based on your favorites, Trakt recommends additional shows and movies you'll enjoy!":[null,""],"send Trakt.tv notifications?":[null,""],"username of your Trakt account.":[null,"usuario de su cuenta Trakt."],"Trakt PIN":[null,"PIN de Trakt"],"Get Trakt PIN":[null,"Obtener PIN de Trakt"],"PIN code to authorize SickRage to access Trakt on your behalf.":[null,"Código PIN para autorizar a SickRage en su cuenta de Trakt."],"API Timeout":[null,"Tiempo de espera de la API"],"seconds to wait for Trakt API to respond. (Use 0 to wait forever)":[null,""],"Default indexer":[null,"Indexador predeterminado"],"Sync libraries":[null,"Sincronización de bibliotecas"],"sync your SickRage show library with your trakt show library.":[null,""],"Remove Episodes From Collection":[null,"Eliminar episodios de la colección"],"remove an episode from your Trakt Collection if it is not in your SickRage Library.":[null,""],"Sync watchlist":[null,"Sincronizar Watchlist"],"sync your SickRage show watchlist with your trakt show watchlist (either Show and Episode).":[null,"sincronizar su watchlist de Series de SickRage con su watchlist de trakt (la Serie o el episodio)."],"episode will be added on watch list when wanted or snatched and will be removed when downloaded ":[null,""],"Watchlist add method":[null,""],"Skip All":[null,"Saltar Todos"],"Download Pilot Only":[null,"Descargar sólo el piloto"],"Get whole show":[null,"Descargar toda la serie"],"method in which to download episodes for new shows.":[null,"método de descarga de episodios de series nuevas."],"Remove episode":[null,"Quitar el episodio"],"remove an episode from your watchlist after it is downloaded.":[null,"quitar un episodio de tu lista de tu watchlist después de la descarga."],"Remove series":[null,"Quitar las series"],"remove the whole series from your watchlist after any download.":[null,"remover toda la serie de tu watchlist después de cualquier descarga."],"Remove watched show":[null,"Quitar Series Vistas"],"remove the show from sickrage if it's ended and completely watched":[null,"quitar el show de sickrage si ha terminado y esta completamente observado"],"Start paused":[null,"Iniciar Pausado"],"shows grabbed from your trakt watchlist start paused.":[null,""],"Trakt blackList name":[null,"Nombre de la lista negra de Trakt"],"name (slug) of list on Trakt for blacklisting show on 'Add Trending Show' & 'Add Recommended Shows' pages":[null,""],"Email":[null,"Correo"],"Allows configuration of email notifications on a per show basis.":[null,""],"send email notifications?":[null,""],"SMTP host":[null,"Servidor SMTP"],"hostname of your SMTP email server.":[null,"nombre de host de su servidor SMTP."],"SMTP port":[null,"Puerto SMTP"],"port number used to connect to your SMTP host.":[null,"número de puerto utilizado para conectar a su servidor SMTP."],"SMTP from":[null,"SMTP de"],"sender email address, some hosts require a real address.":[null,"dirección email del remitente, algunos servidores requieren una dirección real."],"Use TLS":[null,"Utilizar TLS"],"check to use TLS encryption.":[null,"activar para usar cifrado TLS."],"SMTP user":[null,"Usuario SMTP"],"(optional) your SMTP server username.":[null,"(opcional) el nombre de su usuario del servidor SMTP."],"SMTP password":[null,"Contraseña SMTP"],"(optional) your SMTP server password.":[null,"(opcional) su céntrasela del servidor SMTP."],"Global email list":[null,"Lista de email global"],"email addresses listed here, separated by commas if applicable, will<br> receive notifications for <b>all</b> shows.":[null,""],"(This field may be blank except when testing.)":[null,""],"Email Subject":[null,"Asunto del mensaje"],"use a custom subject for some privacy protection?":[null,""],"(leave blank for the default SickRage subject)":[null,""],"configure per-show notifications here by entering email address(es), separated by commas,":[null,""],"after selecting a show in the drop-down box. Be sure to activate the 'Save for this show'":[null,""],"button below after each entry.":[null,""],"Slack":[null,""],"Slack brings all your communication together in one place. It's real-time messaging, archiving and search for modern teams.":[null,""],"should SickRage post messages on Slack?":[null,""],"Slack Incoming Webhook":[null,""],"Discord":[null,""],"All-in-one voice and text chat for gamers that's free, secure, and works on both your desktop and phone.":[null,""],"Should SickRage post messages on Discord?":[null,""],"Discord Incoming Webhook":[null,""],"Create webhook under channel settings.":[null,""],"Discord Bot Name":[null,""],"Blank will use webhook default Name.":[null,""],"Discord Avatar URL":[null,""],"Blank will use webhook default Avatar.":[null,""],"Discord TTS":[null,""],"Send notifications using text-to-speech":[null,""],"Post-Processing":[null,"Post-procesado"],"Episode Naming":[null,"Nombre de episodio"],"Metadata":[null,"Metadatos"],"Settings that dictate how SickRage should process completed downloads.":[null,"Opciones para indicar a SickRage que hacer con las descargas finalizadas."],"enable the automatic post processor to scan and process any files in your Post Processing Dir":[null,""],"do not use if you use an external Post Processing script":[null,""],"Post Processing Dir":[null,"Carpeta de post-procesado"],"the folder where your download client puts the completed TV downloads.":[null,""],"please use seperate downloading and completed folders in your download client if possible.":[null,""],"Processing Method":[null,"Método de post-procesado"],"what method should be used to put files into the library?":[null,""],"if you keep seeding torrents after they finish, please avoid the 'move' processing method to prevent errors.":[null,""],"Auto Post-Processing Frequency":[null,"Frecuencia de post-procesado automático"],"time in minutes to check for new files to auto post-process (min 10)":[null,""],"Postpone post processing":[null,"Aplazar el post-proceso"],"wait to process a folder if sync files are present.":[null,""],"Sync File Extensions":[null,"Extensiones de archivo de sincronización"],"comma seperated list of extensions or filename globs SickRage ignores when Post Processing":[null,"lista de extensiones o nombres de archivo, separadas por comas, que SickRage ignorará al post-procesar"],"Rename Episodes":[null,"Renombrar episodios"],"rename episode using the Episode Naming settings?":[null,""],"Create missing show directories":[null,"Crear los directorios que faltan de la serie"],"create missing show directories when they get deleted":[null,""],"Add shows without directory":[null,"Añadir series sin directorio"],"add shows without creating a directory (not recommended)":[null,""],"Move associated files":[null,""],"move associated (srt/srr/sfv/etc) files while post processing?":[null,""],"Rename .nfo file":[null,"Renombrar archivo .nfo"],"rename the original .nfo file to .nfo-orig to avoid conflicts?":[null,""],"Associated file extensions":[null,""],"comma separated list of associated file extensions SickRage should keep while post processing.":[null,""],"leaving it empty means no associated files will be post processed":[null,""],"Delete non associated files":[null,""],"delete non associated files while post processing?":[null,""],"Change File Date":[null,"Cambiar fecha del fichero"],"set last modified filedate to the date that the episode aired?":[null,""],"some systems may ignore this feature.":[null,""],"Timezone for File Date":[null,"Zona horaria para la fecha de archivo"],"local":[null,"local"],"network":[null,"red"],"what timezone should be used to change File Date?":[null,""],"Unpack":[null,"Desempaquetar"],"What to do with archived releases found in your <i>TV Download Dir</i>?":[null,""],"Ignore (do not process contents)":[null,""],"Unpack (process contents)":[null,""],"Treat as video (process archive as-is)":[null,""],"'Unpack' only works with RAR archives":[null,""],"Windows":[null,""],"WinRar is required on windows":[null,""],"Unpack Directory":[null,""],"Choose a path to unpack files, leave blank to unpack in download dir":[null,""],"Unrar Location":[null,""],"add the path to unrar if it is not in the system path":[null,""],"Alternate Unrar Tool":[null,""],"add the path to an alternate unrar tool if it is not in the system path":[null,""],"Delete RAR contents":[null,"Borrar contenido de RAR"],"delete content of RAR files, even if Process Method not set to move?":[null,""],"only working with RAR archive":[null,""],"Don't delete empty folders":[null,"No borrar carpetas vacías"],"leave empty folders when Post Processing?":[null,""],"can be overridden using manual Post Processing":[null,""],"Follow symbolic-links":[null,""],"follow down symbolic links in download directory?":[null,""],"<b>EXPERTS ONLY.</b><br>Enable only if you know what <b>circular symbolic links</b> are,<br>and can <b>verify that you have none</b>.":[null,""],"Use icacls":[null,""],"Windows only":[null,""],"sets video permissions after using the move method in post processing":[null,""],"Extra Scripts":[null,"Scripts extra"],"see":[null,""],"for script arguments description and usage.":[null,"para una descripción de los argumentos del script y su uso."],"How SickRage will name and sort your episodes.":[null,"Como SickRage nombrará y ordenará tus episodios."],"Name Pattern":[null,"Patrón de nombre"],"Toggle Naming Legend":[null,""],"don't forget to add quality pattern. Otherwise after post-processing the episode will have UNKNOWN quality":[null,""],"Meaning":[null,"Significado"],"Pattern":[null,"Patrón"],"Result":[null,"Resultado"],"Use lower case if you want lower case names (eg. %sn, %e.n, %q_n etc)":[null,"Usar minúsculas si quiere nombres en minúsculas (ej. %sn, %e.n, %q_n etc)"],"Show Name":[null,"Mostrar nombre"],"Show.Name":[null,"Nombre.de.Serie"],"Show_Name":[null,"Nombre_de_Serie"],"Season Number":[null,"Número de Temporada"],"XEM Season Number":[null,"Número de Temporada XEM"],"Episode Number":[null,"Número de episodio"],"XEM Episode Number":[null,"Número de episodio XEM"],"Episode Name":[null,"Nombre del episodio"],"Episode.Name":[null,""],"Episode_Name":[null,""],"Air Date":[null,"Fecha de emisión"],"Post-Processing Date":[null,"Fecha del Postproceso"],"Quality":[null,"Calidad"],"Scene Quality":[null,""],"Release Name":[null,"Nombre de Lanzamiento"],"SickRage' is used in place of RLSGROUP if it could not be properly detected":[null,""],"Release Group":[null,"Grupo de Lanzamiento"],"If episode is proper/repack add 'proper' to name.":[null,"Si el episodio es proper/repack agregar 'proper' al nombre."],"Release Type":[null,"Tipo de Lanzamiento"],"Multi-Episode Style":[null,"Estilo de Multi-episodio"],"Single-EP Sample":[null,""],"Multi-EP sample":[null,""],"Strip Show Year":[null,""],"remove the TV show's year when renaming the file?":[null,""],"only applies to shows that have year inside parentheses":[null,""],"Custom Air-By-Date":[null,""],"name air-by-date shows differently than regular shows?":[null,""],"Toggle ABD Naming Legend":[null,""],"Regular Air Date":[null,""],"Year":[null,"Año"],"Month":[null,"Mes"],"Day":[null,"Día"],"Multi-EP style is ignored":[null,"Estilo de Multi-episodio es ignorado"],"Custom Sports":[null,""],"name sports shows differently than regular shows?":[null,""],"Toggle Sports Naming Legend":[null,""],"Sports Air Date":[null,""],"Custom Anime":[null,""],"name anime shows differently than regular shows?":[null,""],"Toggle Anime Naming Legend":[null,""],">XEM Season Number":[null,""],"Single-EP Anime Sample":[null,""],"Multi-EP Anime sample":[null,""],"Add Absolute Number":[null,""],"add the absolute number to the season/episode format?":[null,""],"only applies to anime. (eg. S15E45 - 310 vs S15E45)":[null,""],"Only Absolute Number":[null,""],"replace season/episode format with absolute number":[null,""],"only applies to anime.":[null,""],"No Absolute Number":[null,""],"don't include the absolute number":[null,""],"The data associated to the data. These are files associated to a TV show in the form of images and text that, when supported, will enhance the viewing experience.":[null,""],"Metadata Type":[null,""],"toggle metadata options that you wish to be created":[null,""],"multiple targets may be used":[null,""],"Select Metadata":[null,""],"Provider Priorities":[null,""],"Provider Options":[null,""],"Configure Custom Newznab Providers":[null,""],"Configure Custom Torrent Providers":[null,"Configurar proveedores de Torrent personalizados"],"Check off and drag the providers into the order you want them to be used.":[null,"Seleccione y arrastre los proveedores en el orden en el que los quiera utilizar."],"At least one provider is required but two are recommended.":[null,"Se requiere al menos un proveedor pero se recomiendan dos."],"Torrent providers can be toggled in ":[null,"Los proveedores de Torrent pueden ser intercambiados en "],"Provider does not support backlog searches at this time.":[null,"El proveedor todavía no soporta búsquedas pendientes (backlog)."],"Provider is <b>NOT WORKING</b>.":[null,"El proveedor <b>NO FUNCIONA</b>."],"Configure individual provider settings here.":[null,"Configure las opciones individuales del proveedor aquí."],"Check with provider's website on how to obtain an API key if needed.":[null,"Consulte la página web de su proveedor para obtener una API key si lo necesita."],"Configure provider":[null,"Configurar el proveedor"],"no providers available to configure.":[null,""],"URL":[null,"URL"],"Enable daily searches":[null,"Habilitar búsquedas diarias"],"enable provider to perform daily searches.":[null,""],"Enable backlog searches":[null,""],"enable provider to perform backlog searches.":[null,""],"Season search mode":[null,""],"when searching for complete seasons you can choose to have it look for season packs only, or choose to have it build a complete season from just single episodes.":[null,""],"season packs only.":[null,""],"episodes only.":[null,""],"Enable fallback":[null,""],"when searching for a complete season depending on search mode you may return no results, this helps by restarting the search using the opposite search mode.":[null,""],"Custom URL":[null,""],"the URL should include the protocol (and port if applicable). Examples: http://192.168.1.4/ or http://localhost:3000/":[null,""],"Api key":[null,"Api key"],"Digest":[null,""],"Hash":[null,"Hash"],"Passkey":[null,"Clave de acceso"],"Cookies":[null,"Cookie"],"example: uid=1234;pass=567845439634987<br>note: uid and pass are not your username/password.<br>use DevTools or Firebug to get these values after logging in on your browser.":[null,""],"Pin":[null,"Pin"],"Seed ratio":[null,""],"stop transfer when ratio is reached<br>(-1 SickRage default to seed forever, or leave blank for downloader default)":[null,""],"Minimum seeders":[null,""],"Minimum leechers":[null,""],"Confirmed download":[null,"Descarga confirmada"],"only download torrents from trusted or verified uploaders ?":[null,""],"Ranked torrents":[null,""],"only download ranked torrents (trusted releases)":[null,""],"English torrents":[null,""],"only download english torrents, or torrents containing english subtitles":[null,""],"For Spanish torrents":[null,""],"ONLY search on this provider if show info is defined as \"Spanish\" (avoid provider's use for VOS shows)":[null,""],"Sorting results by":[null,""],"Freeleech":[null,""],"only download <b>\"FreeLeech\"</b> torrents.":[null,""],"Category":[null,"Categoría"],"select torrent with Italian subtitle":[null,""],"Configure Custom<br>Newznab Providers":[null,""],"Add and setup or remove custom Newznab providers.":[null,""],"Select provider":[null,"Seleccione el proveedor"],"-- add new provider --":[null,"-- Agregar nuevo proveedor --"],"Provider name":[null,"Nombre del proveedor"],"Site URL":[null,""],"Newznab search categories":[null,""],"select your Newznab categories on the left, and click the \"update categories\" button to use them for searching.) <b>don't forget to to save the form!":[null,""],"Update Categories":[null,""],"Add":[null,"Añadir \t"],"Delete":[null,"Eliminar"],"Add and setup or remove custom RSS providers.":[null,""],"RSS URL":[null,"RSS URL"],"Search element":[null,"Elemento de búsqueda"],"eg: title":[null,"por ejemplo: título"],"Episode Search":[null,"Búsqueda de episodio"],"NZB Search":[null,"Búsqueda NZB"],"Torrent Search":[null,"Busqueda Torrent"],"How to manage searching with":[null,"Cómo gestionar la búsqueda con"],"Randomize Providers":[null,"Aleatorizar los proveedores"],"randomize the provider search order instead of going in order of placement":[null,"aleatorizar el orden de búsqueda de proveedor en lugar de ir en el orden de colocación"],"Download propers":[null,""],"replace original download with \"Proper\" or \"Repack\" if nuked":[null,""],"Check propers every":[null,""],"24 hours":[null,"24 horas"],"4 hours":[null,"4 horas"],"90 mins":[null,"90 min"],"45 mins":[null,"45 min"],"15 mins":[null,"15 min"],"Backlog search day(s)":[null,""],"number of day(s) that the \"Forced Backlog Search\" will cover (e.g. 7 Days)":[null,""],"Backlog search frequency":[null,"Frecuencia de búsqueda backlog"],"time in minutes between searches (min.":[null,"tiempo en minutos entre búsquedas (min."],"Daily search frequency":[null,"Frecuencia de búsqueda diaria"],"Usenet retention":[null,"Retención de Usenet"],"age limit in days for usenet articles to be used (e.g. 500)":[null,""],"Ignore words":[null,"Palabras ignoradas"],"results with one or more word from this list will be ignored<br>separate words with a comma, e.g. \"word1,word2,word3\"":[null,""],"Require words":[null,"Palabras requeridas"],"results with no word from this list will be ignored<br>separate words with a comma, e.g. \"word1,word2,word3\"":[null,""],"Trackers list":[null,"Lista de Trackers"],"trackers that will be added to magnets without trackers<br>separate trackers with a comma, e.g. \"tracker1,tracker2,tracker3\"":[null,""],"Ignore language names in subbed results":[null,""],"ignore subbed releases based on language names <br>\n Example: \"dk\" will ignore words: dksub, dksubs, dksubbed, dksubed <br>\n separate languages with a comma, e.g. \"lang1,lang2,lang3":[null,""],"Allow high priority":[null,"Permitir alta prioridad"],"set downloads of recently aired episodes to high priority":[null,""],"Use Failed Downloads":[null,"Usar descargas fallidas"],"use Failed Download Handling?":[null,""],"will only work with snatched/downloaded episodes after enabling this":[null,""],"Delete Failed":[null,"Error al eliminar"],"delete files left over from a failed download?":[null,""],"this only works if Use Failed Downloads is enabled.":[null,""],"How to handle NZB search results.":[null,""],"Search NZBs":[null,"Buscar NZBs"],"enable NZB search providers":[null,""],"Send .nzb files to":[null,"Enviar archivos .nzb a"],"SABnzbd server URL":[null,"URL del servidor SABnzbd"],"URL to your SABnzbd server (e.g. http://localhost:8080/)":[null,""],"SABnzbd username":[null,"SABnzbd username"],"(blank for none)":[null,"(en blanco para ninguno)"],"SABnzbd password":[null,"Contraseña de SABnzbd"],"SABnzbd API key":[null,"API key de SABnzbd"],"locate at... SABnzbd Config -> General -> API Key":[null,""],"Use SABnzbd category":[null,""],"add downloads to this category (e.g. TV)":[null,""],"Use SABnzbd category (backlog episodes)":[null,""],"add downloads of old episodes to this category (e.g. TV)":[null,""],"Use SABnzbd category for anime":[null,""],"add anime downloads to this category (e.g. anime)":[null,""],"Use SABnzbd category for anime (backlog episodes)":[null,""],"add anime downloads of old episodes to this category (e.g. anime)":[null,""],"Use forced priority":[null,""],"enable to change priority from HIGH to FORCED":[null,""],"Black hole folder location":[null,""],"<b>.nzb</b> files are stored at this location for external software to find and use":[null,""],"Connect using HTTPS":[null,""],"enable Secure control in NZBGet and set the correct Secure Port here":[null,""],"NZBget host:port":[null,""],"(e.g. localhost:6789)":[null,""],"NZBget RPC host name and port number (not NZBgetweb!)":[null,""],"NZBget username":[null,""],"locate in nzbget.conf (default:nzbget)":[null,""],"NZBget password":[null,""],"locate in nzbget.conf (default:tegbzn6789)":[null,""],"Use NZBget category":[null,""],"send downloads marked this category (e.g. TV)":[null,""],"Use NZBget category (backlog episodes)":[null,""],"send downloads of old episodes marked this category (e.g. TV)":[null,""],"Use NZBget category for anime":[null,""],"send anime downloads marked this category (e.g. anime)":[null,""],"Use NZBget category for anime (backlog episodes)":[null,""],"send anime downloads of old episodes marked this category (e.g. anime)":[null,""],"NZBget priority":[null,"NZBget prioridad"],"Very low":[null,"Muy bajo"],"Low":[null,"Bajo"],"Very high":[null,"Muy alto"],"Force":[null,"Forzar"],"priority for daily snatches (no backlog)":[null,""],"Torrent host:port":[null,"Host: port de torrent"],"URL to your Synology DSM (e.g. http://localhost:5000/)":[null,""],"Client username":[null,"Nombre de usuario"],"Client password":[null,"Contraseña de cliente"],"Downloaded files location":[null,"Ubicación de los archivos descargados"],"where Synology Download Station will save downloaded files (blank for client default)":[null,""],"the destination has to be a shared folder for Synology DS":[null,""],"Click below to test":[null,"Haga clic para probar"],"How to handle Torrent search results.":[null,"Cómo manejar los resultados de búsqueda de Torrent."],"Search torrents":[null,"Buscar torrents"],"enable torrent search providers":[null,""],"Send .torrent files to":[null,"Enviar archivos .torrent a"],"<b>.torrent</b> files are stored at this location for external software to find and use":[null,""],"URL to your torrent client (e.g. http://localhost:8000/)":[null,""],"Torrent RPC URL":[null,"Url de RPC de torrent"],"the path without leading and trailing slashes (e.g. transmission)":[null,""],"Http Authentication":[null,"Autenticación http"],"Verify certificate":[null,"Verificar certificado"],"disable if you get \"Deluge: Authentication Error\" in your log":[null,""],"verify SSL certificates for HTTPS requests":[null,""],"Add label to torrent":[null,"Añadir etiqueta a torrent"],"(blank spaces are not allowed)":[null,"(no se permiten espacios en blanco)"],"label plugin must be enabled in Deluge clients":[null,""],"for QBitTorrent 3.3.1 and up":[null,""],"Add label to torrent for anime":[null,""],"for QBitTorrent 3.3.1 and up ":[null,""],"where <span id=\"torrent_client\">the torrent client</span> will save downloaded files (blank for client default)":[null,""],"the destination has to be a shared folder for Synology DS</span>":[null,""],"Minimum seeding time":[null,""],"time in hours":[null,""],"(default:'0' passes blank to client and '-1' passes nothing)":[null,""],"Start torrent paused":[null,"Iniciar torrent pausado"],"add .torrent to client but do <b style=\"font-weight:900\">not</b> start downloading":[null,""],"Allow high bandwidth":[null,""],"use high bandwidth allocation if priority is high":[null,""],"Test Connection":[null,""],"Windows Shares":[null,""],"Defines your existing windows shares so that we can add them to the browse dialog":[null,""],"Share #{number}":[null,""],"Share label":[null,""],"Hostname or IP":[null,""],"Share path":[null,""],"Subtitles Search":[null,""],"Subtitles Plugin":[null,""],"Plugin Settings":[null,""],"Settings that dictate how SickRage handles subtitles search results.":[null,""],"Search Subtitles":[null,""],"Subtitle Languages":[null,""],"Subtitle Directory":[null,""],"the directory where SickRage should store your <i>Subtitles</i> files.":[null,""],"leave empty if you want store subtitle in episode path.":[null,""],"Subtitle Find Frequency":[null,""],"time in hours between scans (default: 1)":[null,""],"Include Specials":[null,""],"include the show's specials when searching for subtitles?":[null,""],"Perfect matches":[null,""],"only download subtitles that match: release group, video codec, audio codec and resolution":[null,""],"if disabled you may get out of sync subtitles":[null,""],"Subtitles History":[null,""],"log downloaded Subtitle on History page?":[null,""],"Subtitles Multi-Language":[null,""],"append language codes to subtitle filenames?":[null,""],"this option is required if you use multiple subtitle languages":[null,""],"Delete unwanted subtitles":[null,""],"enable to delete unwanted subtitle languages bundled with release":[null,""],"Embedded Subtitles":[null,""],"ignore subtitles embedded inside video file?":[null,""],"this will ignore <u>all</u> embedded subtitles for every video file!":[null,""],"Hearing Impaired Subtitles":[null,""],"download hearing impaired style subtitles?":[null,""],"See":[null,"Visita el"],"for a script arguments description.":[null,""],"Additional scripts separated by <b>|</b>.":[null,""],"Scripts are called after each episode has searched and downloaded subtitles.":[null,""],"For any scripted languages, include the interpreter executable before the script. See the following example":[null,""],"For Windows:":[null,""],"For Linux / OS X:":[null,""],"Subtitle Providers":[null,""],"Check off and drag the plugins into the order you want them to be used.":[null,""],"At least one plugin is required.":[null,""]," Web-scraping plugin":[null,""],"Provider Settings":[null,""],"Set user and password for each provider":[null,""],"User Name":[null,""],"Change Show":[null,""],"Prev Show":[null,""],"Next Show":[null,""],"Jump to Season":[null,""],"Specials":[null,""],"Poster for":[null,""],"Stars":[null,""],"minutes":[null,""],"View other popular {genre} shows on trakt.tv.":[null,""],"View other popular {imdbgenre} shows on IMDB.":[null,""],"Allowed":[null,"Permitido"],"Preferred":[null,"Preferido"],"Originally Airs":[null,"Emisión original"],"Show Status":[null,"Estado de la emisión"],"Default EP Status":[null,"Estado por defecto del EP"],"Location":[null,"Dirección"],"Missing":[null,""],"Scene Name":[null,""],"Required Words":[null,""],"Ignored Words":[null,""],"Size":[null,"Tamaño"],"Info Language":[null,""],"Subtitles SR Metadata":[null,""],"Season Folders":[null,""],"Paused":[null,""],"Air-by-Date":[null,""],"Sports":[null,""],"DVD Order":[null,""],"Scene Numbering":[null,""],"Select Filtered Episodes":[null,""],"Clear All":[null,""],"Change selected episodes to":[null,""],"Select Columns":[null,"Seleccione las columnas"],"Hide Episodes":[null,""],"Show Episodes":[null,""],"NFO":[null,""],"TBN":[null,""],"Episode":[null,"Episodio"],"Absolute":[null,""],"Scene":[null,"Escena"],"Scene Absolute":[null,""],"File Name":[null,""],"Airdate":[null,"Fecha de estreno"],"Download":[null,""],"Change the value here if scene numbering differs from the indexer episode numbering":[null,""],"Change the value here if scene absolute numbering differs from the indexer absolute numbering":[null,""],"Manual Search":[null,""],"Do you want to mark this episode as failed?":[null,""],"The episode release name will be added to the failed history, preventing it to be downloaded again.":[null,""],"Do you want to include the current episode quality in the search?":[null,""],"Choosing No will ignore any releases with the same episode quality as the one currently downloaded/snatched.":[null,""],"Download subtitle":[null,""],"Do you want to re-download the subtitle for this language?":[null,""],"It will overwrite your current subtitle":[null,""],"Format":[null,""],"Advanced":[null,""],"Main Settings":[null,""],"Show Location":[null,""],"Preferred Quality":[null,"Calidad preferida"],"Default Episode Status":[null,"Estado por defecto del episodio"],"this will set the status for future episodes.":[null,""],"this only applies to episode filenames and the contents of metadata files.":[null,""],"search for subtitles":[null,""],"Use SR Metdata":[null,""],"use SickRage metadata when searching for subtitle, this will override the autodiscovered metadata":[null,""],"pause this show (SickRage will not download episodes)":[null,""],"Format Settings":[null,""],"Air by date":[null,""],"check if the show is released as Show.03.02.2010 rather than Show.S02E03.":[null,""],"in case of an air date conflict between regular and special episodes, the later will be ignored.":[null,""],"check if the show is Anime and episodes are released as Show.265 rather than Show.S02E03":[null,""],"check if the show is a sporting or MMA event released as Show.03.02.2010 rather than Show.S02E03":[null,""],"Season folders":[null,""],"group episodes by season folder (uncheck to store in a single folder)":[null,""],"search by scene numbering (uncheck to search by indexer numbering)":[null,""],"use the DVD order instead of the air order":[null,""],"a \"Force Full Update\" is necessary, and if you have existing episodes you need to sort them manually.":[null,""],"comma-separated <i>e.g. \"word1,word2,word3</i>\"":[null,""],"search results with one or more words from this list will be ignored.":[null,""],"e.g. \"word1,word2,word3\"":[null,""],"search results with no words from this list will be ignored.":[null,""],"Scene Exception":[null,""],"this will affect episode search on NZB and torrent providers.":[null,""],"this list appends to the original show name.":[null,""],"WARNING logs":[null,""],"ERROR logs":[null,""],"There are no events to display.":[null,""],"Limit":[null,"Límite"],"Layout":[null,"Diseño"],"HistoryLayout":[null,""],"Compact":[null,""],"Detailed":[null,""],"Time":[null,""],"Provider":[null,""],"Missing Provider":[null,""],"missing provider":[null,""],"Directory":[null,""],"Show Name (tvshow.nfo)":[null,""],"Indexer":[null,""],"Enter the folder containing the episode":[null,""],"Process Method to be used":[null,""],"Copy":[null,""],"Move":[null,""],"Hard Link":[null,""],"Symbolic Link":[null,""],"Symbolic Link Reversed":[null,""],"Force already Post Processed Dir/Files":[null,""],"Mark Dir/Files as priority download":[null,""],"(Check it to replace the file even if it exists at higher quality)":[null,""],"Delete files and folders":[null,""],"(Check it to delete files and folders like auto processing)":[null,""],"Don't use processing queue":[null,""],"(If checked this will return the result of the process here, but may be slow!)":[null,""],"Mark download as failed":[null,""],"Process":[null,""],"Download subtitles for this show?":[null,""],"use SickRage metadata when searching for subtitle, <br />this will override the autodiscovered metadata":[null,""],"Status for previously aired episodes":[null,""],"Status for all future episodes":[null,""],"Group episodes by season folder?":[null,""],"Is this show an Anime?":[null,""],"Is this show scene numbered?":[null,""],"Save Defaults":[null,""],"Use current values as the defaults":[null,""],"<p>Select your preferred fansub groups from the <b>Available Groups</b> and add them to the <b>Whitelist</b>. Add groups to the <b>Blacklist</b> to ignore them.</p>\n <p>The <b>Whitelist</b> is checked <i>before</i> the <b>Blacklist</b>.</p>\n <p>Groups are shown as <b>Name</b> | <b>Rating</b> | <b>Number of subbed episodes</b>.</p>\n <p>You may also add any fansub group not listed to either list manually.</p>\n <p>When doing this please note that you can only use groups listed on anidb for this anime.\n <br>If a group is not listed on anidb but subbed this anime, please correct anidb's data.</p>":[null,""],"Whitelist":[null,"Lista blanca"],"Available Groups":[null,"Grupos disponibles"],"Add to Whitelist":[null,"Añadir a la lista blanca"],"Add to Blacklist":[null,"Añadir a la lista negra"],"Blacklist":[null,"Lista negra"],"Custom Group":[null,""],"Allowed Quality:":[null,"Calidad permitida:"],"Preferred Quality:":[null,"Calidad preferida:"],"Filter Show Name":[null,""],"Root":[null,""],"All":[null,"Todo"],"Clear Filter(s)":[null,""],"Poster":[null,"Poster"],"Small Poster":[null,"Póster pequeño"],"Banner":[null,"Cartel"],"Simple":[null,""],"Next Episode":[null,"Siguiente episodio"],"Progress":[null,""],"Direction":[null,""],"Ascending":[null,""],"Descending":[null,""],"Poster Size":[null,"Tamaño del póster"],"Continuing":[null,"Continúa"],"Ended":[null,""],"Total":[null,""],"Invalid date":[null,""],"No Network":[null,""],"Next Ep":[null,"Siguiente episodio"],"Prev Ep":[null,""],"Show":[null,"Series"],"Downloads":[null,""],"Active":[null,""],"loading":[null,""],"Loading...":[null,""],"<p><b><u>Preferred</u></b> qualities will replace those in <b><u>allowed</u></b>, even if they are lower.</p>":[null,""],"New":[null,"Nuevo"],"Set as Default":[null,"Definir por defecto"],"Remember me":[null,"Recuérdamelo"],"Edit Selected":[null,"Editar seleccionados"],"Subtitle":[null,"Subtítulo"],"Default Ep Status":[null,""],"Update":[null,"Actualiza"],"Rescan":[null,"Reescanea"],"Rename":[null,"Renombra"],"Search Subtitle":[null,"Busca subtítulo"],"Force Metadata Regen":[null,""],"Snatched (Allowed)":[null,""],"Jump to Show":[null,"Salta a la serie"],"Force Backlog":[null,"Fuerza backlog"],"Manage episodes with status":[null,"Gestionar episodios con estado"],"Manage":[null,"Gestión"],"None of your episodes have status":[null,"Ninguno de sus episodios tiene estado"],"Shows containing":[null,""],"episodes":[null,"capítulos"],"Set checked shows/episodes to":[null,"Define series/capítulos marcados como"],"Go":[null,"Ir"],"Select all":[null,"Seleccionar todo"],"Clear all":[null,"Limpia todo"],"Release":[null,""],"Backlog Search":[null,""],"Not in progress":[null,"No en progreso"],"In Progress":[null,"En progreso"],"Daily Search":[null,"Búsqueda diaria"],"Find Propers Search":[null,""],"Propers search disabled":[null,""],"Subtitle Search":[null,"Buscar subtítulo"],"Subtitle search disabled":[null,"Buscar subtítulos desactivado"],"Search Queue":[null,""],"pending items":[null,""],"Daily":[null,"Diario"],"Manual":[null,"Manual"],"Changing any settings marked with (<span class=\"separator\">*</span>) will force a refresh of the selected shows.":[null,""],"Selected Shows":[null,""],"Root Directories":[null,"Directorio principal"],"Current":[null,""],"Keep":[null,"Mantener"],"Custom":[null,""],"Group episodes by season folder (set to \"No\" to store in a single folder).":[null,"Agrupar capítulos por carpeta de temporada (elige \"No\" para almacenarlos en una carpeta única)."],"Pause these shows (SickRage will not download episodes).":[null,"Pausa esta serie (SickRage no descargará capítulos)."],"This will set the status for future episodes.":[null,""],"Search by scene numbering (set to \"No\" to search by indexer numbering).":[null,"Buscar por número de escena (marca \"No\" para buscar por número)."],"Set if these shows are Anime and episodes are released as Show.265 rather than Show.S02E03":[null,"Selecciona si esta series es Anime y los capítulos han sido publicados como Show.265 en vez de Show.S02E03"],"Set if these shows are sporting or MMA events released as Show.03.02.2010 rather than Show.S02E03.":[null,""],"In case of an air date conflict between regular and special episodes, the later will be ignored.":[null,""],"Set if these shows are released as Show.03.02.2010 rather than Show.S02E03.":[null,""],"Search for subtitles.":[null,"Buscar por subtítulos."],"All of your episodes have {subsLanguage} subtitles.":[null,"Todos tus capítulos tienen subtítulos en {subsLanguage}."],"Manage episodes without":[null,"Gestionar episodios sin"],"Episodes without {subsLanguage} subtitles.":[null,"Capítulos sin subtítulo en {subsLanguage}."],"Episodes without {subtitleLanguage} (undefined) subtitles.":[null,""],"Download missed subtitles for selected episodes":[null,""],"Performing Restart":[null,""],"Waiting for SickRage to shut down":[null,"Esperando a que SickRage se apague"],"Waiting for SickRage to start again":[null,"Esperando a que SickRage empieze de nuevo"],"Loading the default page":[null,"Cargando la página por defecto"],"Error: The restart has timed out, perhaps something prevented SickRage from starting again?":[null,"Error: El tiempo de reinicio a expirado, ¿puede que algo impide que SickRage empiece otra vez?"],"Key":[null,"Llave"],"Missed":[null,"No encontrados"],"Today":[null,"Hoy"],"Soon":[null,"Pronto"],"Later":[null,"Más tarde"],"Subscribe":[null,"Suscribirse"],"Date":[null,"Fecha"],"View Paused":[null,"Ver pausados"],"Hidden":[null,"Ocultos"],"Shown":[null,"Visibles"],"Calendar":[null,"Calendario"],"List":[null,"Lista"],"Ends":[null,"Finaliza"],"Next Ep Name":[null,"Nombre del siguiente episodio"],"Run time":[null,"Tiempo de ejecución"],"Indexers":[null,""],"No shows for this day":[null,"No hay series para esa fecha"],"Airs":[null,"Se estrena"],"Plot":[null,"Argumento"],"Show Update":[null,"Actualiza la serie"],"Version Check":[null,"Comprueba la versión"],"Proper Finder":[null,""],"Post Process":[null,""],"Subtitles Finder":[null,""],"Scheduler":[null,""],"Alive":[null,""],"Start Time":[null,""],"Cycle Time":[null,""],"Next Run":[null,""],"Last Run":[null,""],"Silent":[null,""],"True":[null,"Cierto"],"N/A":[null,"N/D"],"Show id":[null,"Id Serie"],"Show name":[null,"Nombre Serie"],"Priority":[null,"Prioridad"],"Added":[null,"Añadido"],"Queue type":[null,"Tipo de cola"],"LOW":[null,"BAJO"],"NORMAL":[null,"NORMAL"],"HIGH":[null,"ALTO"],"Disk Space":[null,"Espacio en disco"],"Free space":[null,"Espacio libre"],"TV Download Directory":[null,"Directorio de descarga de TV"],"Media Root Directories":[null,"Directorios raíz multimedia"],"Preview of the proposed name changes":[null,""],"All Seasons":[null,"Todas las temporadas"],"select all":[null,""],"Rename Selected":[null,"Renombra seleccionados"],"Cancel Rename":[null,"Cancelar renombrado"],"Old Location":[null,"Ubicación antigua"],"New Location":[null,"Ubicación nueva"],"Trakt API did not return any results, please check your config.":[null,"Trakt API no devolvió resultados, por favor comprueba tu configuración."],"votes":[null,"votos"],"Remove Show":[null,"Borrar Serie"],"Level":[null,""],"Filter":[null,""],"All non-absolute folder locations are relative to ":[null,"Todas las rutas No absolutas son relativas a "],"Manual Post-Processing":[null,"Post-Procesado manual"],"Episode Status Management":[null,"Gestionar estado de episodios"],"Update PLEX":[null,"Actualizar PLEX"],"Update KODI":[null,"Acualizar KODI"],"Update Emby":[null,"Actualizar Emby"],"Missed Subtitle Management":[null,"Gestionar subtítulos faltantes"],"Help & Info":[null,"Ayuda & Información"],"Backup & Restore":[null,"Backup & Restaurar"],"Tools":[null,"Herramientas"],"Support SickRage":[null,"Soporte SickRage"],"View Errors":[null,"Ver errores"],"View Warnings":[null,"Ver avisos"],"View Log":[null,"Ver registro"],"Check For Updates":[null,"Buscar actualizaciones"],"Restart":[null,"Reiniciar"],"Shutdown":[null,"Apagar"],"Logout":[null,"Cerrar Sesión"],"Server Status":[null,"Estado del servidor"],"View overview of snatched episodes":[null,"Ver resumen de los capítulos buscados"],"Episodes Downloaded":[null,"Capítulos descargados"],"Memory used":[null,"Memoria utilizada"],"Load time":[null,"Tiempo de carga"],"Branch":[null,"Rama"],"Now":[null,"Ahora"]}}}} \ No newline at end of file +{"messages":{"domain":"messages","locale_data":{"messages":{"100":[null,"100"],"250":[null,"250"],"500":[null,"500"],"":{"domain":"messages","plural_forms":"nplurals=2; plural=(n != 1);","lang":"es_ES"},"Drama":[null,"Drama"],"Mystery":[null,"Misterio"],"Science-Fiction":[null,"Ciencia-ficción"],"Crime":[null,"Crimen"],"Action":[null,"Acción"],"Comedy":[null,"Comedia"],"Thriller":[null,"Suspense"],"Animation":[null,"Animación"],"Family":[null,"Familia"],"Fantasy":[null,"Fantasía"],"Adventure":[null,"Aventuras"],"Horror":[null,"Terror"],"Film-Noir":[null,"Cine negro"],"Sci-Fi":[null,"Ciencia-ficción"],"Romance":[null,"Romance"],"Sport":[null,"Deportes"],"War":[null,"Guerra"],"Biography":[null,"Biografía"],"History":[null,"Historial"],"Music":[null,"Musical"],"Western":[null,"Oeste"],"News":[null,"Noticias"],"Sitcom":[null,"Sitcom"],"Reality-TV":[null,"Reality"],"Documentary":[null,"Documental"],"Game-Show":[null,"Juegos"],"Musical":[null,"Musical"],"Talk-Show":[null,"Tertulia"],"Started Download":[null,"Descarga iniciada"],"Download Finished":[null,"Descarga finalizada"],"Subtitle Download Finished":[null,"Descarga de subtítulos finalizada"],"SickRage Updated":[null,"SickRage actualizado"],"SickRage Updated To Commit#: ":[null,"SickRage actualizado a Commit#: "],"SickRage new login":[null,"Nuevo inicio de sesion en SickRage"],"New login from IP: {0}. http://geomaplookup.net/?ip={0}":[null,"Nuevo inicio de sesión desde IP: {0}. http://geomaplookup.net/?IP={0}"],"Repeat":[null,"Repetición"],"Repeat (Separated)":[null,"Repetición (separado)"],"Extend":[null,"Extendida"],"Extend (Limited)":[null,"Extendida (Limitada)"],"Extend (Limited, E-prefixed)":[null,"Extendida (Limitada, Prefijo Ep)"],"Downloaded":[null,"Descargado"],"Snatched":[null,"Añadido"],"Snatched (Proper)":[null,"Conseguido (Proper)"],"Failed":[null,"Erroneo"],"Snatched (Best)":[null,"Conseguido (Mejor)"],"Archived":[null,"Archivado"],"Unknown":[null,"Desconocido"],"Unaired":[null,"No emitido"],"Skipped":[null,"Omitido"],"Wanted":[null,"Deseado"],"Ignored":[null,"Ignorado"],"Subtitled":[null,"Subtitulado"],"For best results please set the Download Station alias as":[null,"Para obtener mejores resultados por favor configurar el alias de la Estación de Descarga como"],"You can check this setting in the Synology DSM":[null,"Puede comprobar este ajuste en el Synology DSM"],"Control Panel":[null,"Panel de Control"],"Application Portal":[null,"Portal de aplicaciones"],"Make sure you allow DSM to be embedded with iFrames too in":[null,"Asegúrese de permitir que DSM esté integrado en iFrames"],"DSM Settings":[null,"Ajustes DSM"],"Security":[null,"Seguridad"],"<No Filter>":[null,"<Sin filtros>"],"Daily Searcher":[null,"Busqueda diaria"],"Backlog":[null,"Pendientes"],"Show Updater":[null,"Actualizar series"],"Check Version":[null,"Comprobar versión"],"Show Queue":[null,"Cola de series"],"Search Queue (All)":[null,"Cola de búsquedas (Todas)"],"Search Queue (Daily Searcher)":[null,"Cola de búsquedas (Búsqueda diaria)"],"Search Queue (Backlog)":[null,"Cola de búsquedas (Pendientes)"],"Search Queue (Manual)":[null,"Cola de búsquedas (Manual)"],"Search Queue (Retry/Failed)":[null,"Cola de búsquedas (Re-intentar/Fallidas)"],"Search Queue (RSS)":[null,"Cola de búsquedas (RSS)"],"Find Propers":[null,"Encontrar mejoradas"],"Postprocessor":[null,"Procesando envío"],"Find Subtitles":[null,"Buscar subtitulos"],"Trakt Checker":[null,"Comprobar Trakt"],"Event":[null,"Evento"],"Error":[null,"Error"],"Tornado":[null,"Tornado"],"Thread":[null,"Hilo"],"Main":[null,"Principal"],"Loading":[null,""],"New update found for SickRage, starting auto-updater":[null,"Se ha encontrado una nueva actualización de SickRage, iniciando actualizador automático"],"Update was successful":[null,"Actualización finalizada con éxito"],"Update failed!":[null,"¡Error en la actualización!"],"Backup":[null,"Copia de Seguridad"],"Config backup in progress...":[null,"Copia de seguridad de la configuración en curso..."],"Config backup successful, updating...":[null,"Copia de seguridad de la configuración correcta, actualizando..."],"Config backup failed, aborting update":[null,"Copia de seguridad de la configuración, fallida. Se cancela la actualización"],"No update needed":[null,"No es necesario actualizar"],"Mako Error":[null,"Error de Mako"],"Oops":[null,"Ups"],"Wrong API key used":[null,"Clave API usada incorrecta"],"Login":[null,"Iniciar Sesión"],"API Key not generated":[null,"Clave API no generada"],"API Builder":[null,"Constructor API"],"Schedule":[null,"Programación"],"Test 1":[null,"Prueba 1"],"This is test number 1":[null,"Esta es la prueba número 1"],"Test 2":[null,"Prueba 2"],"This is test number 2":[null,"Esta es la prueba número 2"],"You're using the {branch} branch. Please use 'master' unless specifically asked":[null,"Estás usando la rama {branch}. Por favor usa 'master' a menos que lo sobreescribas a propósito"],"Invalid show parameters":[null,"Datos de serie erróneos"],"Invalid parameters":[null,"Parámetros no válidos"],"Episode couldn't be retrieved":[null,"El episodio no se pudo conseguir"],"Home":[null,"Inicio"],"Show List":[null,"Lista de series"],"Error: Unsupported Request. Send jsonp request with 'callback' variable in the query string.":[null,"Error: Solicitud no soportada. Envíe la petición jsonp con la variable 'callback' en la secuencia de consulta."],"Success. Connected and authenticated":[null,"Éxito. Conectado y autenticado"],"Authentication failed. SABnzbd expects":[null,"La autenticación falló. SABnzbd espera"],"as authentication method":[null,"como método de autenticación"],"Unable to connect to host":[null,"No se puede conectar al host"],"SMS sent successfully":[null,"SMS enviado con éxito"],"Problem sending SMS: {message}":[null,"Problema al enviar SMS: {message}"],"Telegram notification succeeded. Check your Telegram clients to make sure it worked":[null,"Notificación de telegram tuvo éxito. Compruebe su telegram para asegurarse de que funcionó"],"Error sending Telegram notification: {message}":[null,"Error enviando notificación de Telegram: {message}"],"join notification succeeded. Check your join clients to make sure it worked":[null,"Notificación a Join correcta. Compruebe tus clientes Join para asegurarse de que ha funcionado"],"Error sending join notification: {message}":[null,"Error enviando notificación de unión: {message}"]," with password":[null," con contraseña"],"Registered and Tested growl successfully {growl_host}":[null,"Growl registrado y probado con éxito {growl_host}"],"Registration and Testing of growl failed {growl_host}":[null,"Fallo de registro y prueba de growl {growl_host}"],"Test prowl notice sent successfully":[null,"Notificación de prueba de prowl enviada correctamente"],"Test prowl notice failed":[null,"Fallo al enviar notificación de prueba de prowl"],"Boxcar2 notification succeeded. Check your Boxcar2 clients to make sure it worked":[null,"Notificación de Boxcar2 exitosa. Compruebe sus clientes Boxcar2 para asegurarse de que ha funcionado"],"Error sending Boxcar2 notification":[null,"Error al enviar la notificación de Boxcar2"],"Pushover notification succeeded. Check your Pushover clients to make sure it worked":[null,"Notificación de Pushover exitosa. Compruebe sus clientes Pushover para asegurarse de que ha funcionado"],"Error sending Pushover notification":[null,"Error al enviar la notificación de Pushover"],"Key verification successful":[null,"Verificación de la clave exitosa"],"Unable to verify key":[null,"No se pudo verificar la clave"],"Tweet successful, check your twitter to make sure it worked":[null,"Tweet exitoso, compruebe su twitter para asegurarse de que ha funcionado"],"Error sending tweet":[null,"Error al enviar tweet"],"Please enter a valid account sid":[null,"Por favor Sid introduce una cuenta válida"],"Please enter a valid auth token":[null,"Introduzca un token de autenticación válido"],"Please enter a valid phone sid":[null,"Por favor Sid inserte un teléfono valido"],"Please format the phone number as \"+1-###-###-####\"":[null,"Por favor el formato para el número de teléfono es \"+1-###-###-####\""],"Authorization successful and number ownership verified":[null,"Autorización correcta, eres el propietario verificado de este número."],"Error sending sms":[null,"Error al enviar el SMS"],"Slack message successful":[null,"Mensaje Slack satisfactorio"],"Slack message failed":[null,"Mensaje Slack fallido"],"Discord message successful":[null,"Mensaje Discord satisfactorio"],"Discord message failed":[null,"Mensaje Discord fallido"],"Test KODI notice sent successfully to {kodi_host}":[null,"Notificación de prueba de Kodi enviada correctamente a {kodi_host}"],"Test KODI notice failed to {kodi_host}":[null,"Fallo al enviar la notificación de prueba de Kodi a {kodi_host}"],"Successful test notice sent to Plex Home Theater ... {plex_clients}":[null,"Notificación de prueba enviada correctamente a Plex Home Theater ... {plex_clients}"],"Test failed for Plex Home Theater ... {plex_clients}":[null,"Prueba fallida para Plex Home Theater ... {plex_clients}"],"Tested Plex Home Theater(s)":[null,"Probado Plex Home Theater(s)"],"Successful test of Plex Media Server(s) ... {plex_servers}":[null,"Prueba exitosa de Plex Media Server(s)... {plex_servers}"],"Test failed, No Plex Media Server host specified":[null,"Prueba falló, no hay servidor Plex Media Server especificado"],"Test failed for Plex Media Server(s) ... {plex_servers}":[null,"Prueba fallo para Plex Media Server(s) ... {plex_servers}"],"Tested Plex Media Server host(s)":[null,"Probado servidor Plex Media Server(s)"],"Tried sending desktop notification via libnotify":[null,"Probado enviar una notificación de escritorio a través de libnotify"],"Test notice sent successfully to {emby_host}":[null,"Notificación de prueba enviada correctamente a {emby_host}"],"Test notice failed to {emby_host}":[null,"Fallo al enviar la notificación de prueba a {emby_host}"],"Successfully started the scan update":[null,"El escaneo de actualización comenzó con éxito"],"Test failed to start the scan update":[null,"Prueba no pudo iniciar la actualización"],"Test notice sent successfully to {nmj2_host}":[null,"Notificación de prueba enviada correctamente a {nmj2_host}"],"Test notice failed to {nmj2_host}":[null,"Fallo al enviar la notificación de prueba a {nmj2_host}"],"Trakt Authorized":[null,"Trakt autorizado"],"Trakt Not Authorized!":[null,"Trakt no autorizado!"],"Test email sent successfully! Check inbox.":[null,"Email de prueba enviado correctamente! Comprueba tu bandeja de entrada."],"ERROR: {last_error}":[null,"ERROR: {last_error}"],"Test NMA notice sent successfully":[null,"Aviso NMA de prueba enviado con éxito"],"Test NMA notice failed":[null,"El aviso NMA de prueba falló"],"Pushalot notification succeeded. Check your Pushalot clients to make sure it worked":[null,"Notificación Pushalot correcta. Comprueba tus clientes Pushalot para asegurarte de que ha funcionado"],"Error sending Pushalot notification":[null,"Error al enviar la notificación de Pushalot"],"Pushbullet notification succeeded. Check your device to make sure it worked":[null,"Notificación Pushbullet correcta. Comprueba tu dispositivo para asegurarte de que ha funcionado"],"Error sending Pushbullet notification":[null,"Error al enviar la notificación de Pushbullet"],"Status":[null,"Estado"],"Restarting SickRage":[null,"Reiniciar SickRage"],"Update Failed":[null,"La actualización falló"],"Update wasn't successful, not restarting. Check your log for more information.":[null,"La actualización no tuvo éxito, no se reiniciará. Comprueba tu registro para obtener más información."],"Checking out branch":[null,"Haciendo checkout de la rama"],"Already on branch":[null,"Ya en la rama"],"Invalid show ID: {show}":[null,"ID de show inválido: {show}"],"Show not in show list":[null,"El show no está en la lista de shows"],"Edit":[null,"Editar"],"This show is in the process of being downloaded - the info below is incomplete.":[null,"Esta serie está siendo descargada - la información de abajo es incompleta."],"The information on this page is in the process of being updated.":[null,"La información en esta página está en proceso de actualización."],"The episodes below are currently being refreshed from disk":[null,"Los episodios siguientes estan siendo actualmente refrescados del disco"],"Currently downloading subtitles for this show":[null,"Actualmente descargando subtítulos para esta serie"],"This show is queued to be refreshed.":[null,"Esta serie se pone en cola para actualizarse."],"This show is queued and awaiting an update.":[null,"Esta serie se pone en cola y en espera de una actualización."],"This show is queued and awaiting subtitles download.":[null,"Esta serie se pone en cola y esperando la descarga de subtítulos."],"Resume":[null,"Continuar"],"Pause":[null,"Pausar"],"Remove":[null,"Eliminar"],"Re-scan files":[null,"Volver a escanear archivos"],"Force Full Update":[null,"Forzar actualización completa"],"Update show in KODI":[null,"Actualizar show en KODI"],"Update show in Emby":[null,"Actualizar show en Emby"],"Hide specials":[null,"Ocultar especiales"],"Show specials":[null,"Mostrar especiales"],"Preview Rename":[null,"Pre-visualizar Renombrado"],"Download Subtitles":[null,"Descargar subtítulos"],"No scene exceptions":[null,"Sin excepciones de escena"],"Invalid show ID":[null,"ID de show inválido"],"Unable to find the specified show":[null,"No se puede encontrar el show especificado"],"Unable to retreive Fansub Groups from AniDB.":[null,"Imposible recuperar los Fansub Groups de AniDB."],"Edit Show":[null,"Editar serie"],"Unable to refresh this show: {error}":[null,"No se ha podido recargar el show: {error}"],"New location <tt>{location}</tt> does not exist":[null,"La nueva ubicación <tt>{location}</tt> no existe"],"Unable to update show: {error}":[null,"No se ha podido actualizar el show: {error}"],"Unable to force an update on scene exceptions of the show.":[null,"No se puede forzar una actualización sobre las excepciones de escena de esta serie."],"Unable to force an update on scene numbering of the show.":[null,"No se puede forzar una actualización sobre los números de escena de esta seria."],"{num_errors:d} error{plural} while saving changes:":[null,"{num_errors:d} error{plural} al guardar los cambios:"],"{show_name} has been {paused_resumed}":[null,"{show_name} ha sido {paused_resumed}"],"resumed":[null,"reanudado"],"paused":[null,"pausado"],"{show_name} has been {deleted_trashed} {was_deleted}":[null,"{show_name} ha sido {deleted_trashed} {was_deleted}"],"deleted":[null,"borrado"],"trashed":[null,"borrado"],"(media untouched)":[null,"(medias intactos)"],"(with all related media)":[null,"(con todos los medias relacionados)"],"Unable to refresh this show.":[null,"No se puede actualizar este programa."],"Unable to update this show.":[null,"Incapaz de actualizar esta serie."],"Library update command sent to KODI host(s)): {kodi_hosts}":[null,"Comando de actualización de la biblioteca enviado a KODI host(s)): {kodi_hosts}"],"Unable to contact one or more KODI host(s)): {kodi_hosts}":[null,"Incapaz de establecer conexión con uno o más clientes KODI: {kodi_hosts}"],"Library update command sent to Plex Media Server host: {plex_server}":[null,"Comando de actualización de la biblioteca enviado a Plex Media Server host: {plex_server}"],"Unable to contact Plex Media Server host: {plex_server}":[null,"Imposible contactarse con Plex Media Server host: {plex_server}"],"Library update command sent to Emby host: {emby_host}":[null,"Comando de actualización de la biblioteca enviado a Emby host: {emby_host}"],"Unable to contact Emby host: {emby_host}":[null,"Imposible contactar Emby host: {emby_host}"],"You must specify a show and at least one episode":[null,"Debe especificar un show y al menos un episodio"],"Invalid status":[null,"Estado no válido"],"Backlog was automatically started for the following seasons of <b>{show_name}</b>":[null,"Inicio automatico de la busqueda de episodios antiguios para la serie <b>{show_name}</b>"],"Season":[null,"Temporada"],"Backlog started":[null,"Inicio de la busqueda de episodios antiguios"],"Retrying Search was automatically started for the following season of <b>{show_name}</b>":[null,"Se ha iniciado automáticamente un reintento de búsqueda para próxima temporada de <b>{show_name}</b>"],"Retry Search started":[null,"Iniciado reintento de búsqueda"],"You must specify a show":[null,"Debe especificar una serie"],"Can't rename episodes when the show dir is missing.":[null,"No se puede renombrar los episodios si no se localiza el directorio de la serie."],"New subtitles downloaded: {new_subtitle_languages}":[null,"Nuevos subtítulos descargados: {new_subtitle_languages}"],"No subtitles downloaded":[null,"No se descargaron los subtítulos"],"IRC":[null,"IRC"],"Could not load news from the repo. [Click here for news.md])({news_url})":[null,"No se pudieron cargar noticias desde el repo. [Haga click aquí para news.md]) ({news_url})"],"The was a problem connecting to github, please refresh and try again":[null,"Hubo un problema conectando con github, porfavor recargue y pruebe de nuevo"],"Could not load changes from the repo. [Click here for CHANGES.md]({changes_url})":[null,"No se pudo cargar los cambios desde los repositorios. [Haga click aquí para CHANGES.md]({changes_url})"],"Changelog":[null,"Registro de cambios"],"Post Processing":[null,"Post-procesado"],"Add Shows":[null,"Añadir serie"],"No folders selected.":[null,"No se ha seleccionado ningún directorio."],"New Show":[null,"Nueva serie"],"Trending Shows":[null,"Series populares"],"Popular Shows":[null,"Series populares"],"Most Anticipated Shows":[null,"Series más anticipadas"],"Most Collected Shows":[null,""],"Most Watched Shows":[null,""],"Most Played Shows":[null,""],"Recommended Shows":[null,""],"New Shows":[null,"Nuevas series"],"Season Premieres":[null,"Estrenos de la temporada"],"Existing Show":[null,"Añadir serie existente"],"No root directories setup, please go back and add one.":[null,"No se ha configurado una carpeta raíz de instalación, por favor volver y agregar una."],"Show added":[null,"Serie añadida"],"Adding the specified show {show_name}":[null,"Añadiendo el show especificado {show_name}"],"Missing params, no Indexer ID or folder: {show_to_add} and {root_dir}/{show_path}":[null,"Faltan parametros, ningún ID de indexador o carpeta: {show_to_add} y {root_dir}/{show_path}"],"Unknown error. Unable to add show due to problem with show selection.":[null,"Error desconocido. No se puede añadir la serie debido a problema con la selección de serie."],"Unable to add show":[null,"No se pudo añadir la serie"],"Folder {show_dir} exists already":[null,"El directorio {show_dir} ya existe"],"Unable to create the folder {show_dir}, can't add the show":[null,"No se pudo crear el directorio {show_dir}, no se pudo añadir la serie"],"Adding the specified show into {show_dir}":[null,"Añadiendo la serie especificada a {show_dir}"],"Shows Added":[null,"Series añadidas"],"Automatically added {num_shows} from their existing metadata files":[null,"Se han añadido automáticamente {num_shows} desde los archivos de metadatos existentes"],"Mass Update":[null,"Actualización masiva"],"Episode Overview":[null,"Resumen del episodio"],"Missing Subtitles":[null,"Subtítulos faltantes"],"Backlog Overview":[null,"Resumen de Tareas Pendientes"],"Mass Edit":[null,"Edición masiva"],"Unable to update show: {excption_format}":[null,"No se ha podido actualizar la serie: {excption_format}"],"Unable to refresh show {show_name}: {excption_format}":[null,"Imposible actualizar serie {show_name}: {excption_format}"],"Errors encountered":[null,"Errores encontrados"],"Updates":[null,"Actualizaciones"],"Refreshes":[null,"Refresca"],"Renames":[null,"Renombra"],"Subtitles":[null,"Subtítulos"],"The following actions were queued":[null,"Las siguientes acciones fueron puestas en cola"],"Failed Downloads":[null,"Descargas fallidas"],"Manage Searches":[null,"Gestionar búsquedas"],"Backlog search started":[null,"Búsqueda \"backlog\" comenzada"],"Daily search started":[null,"La búsqueda diaria comenzó"],"Find propers search started":[null,"La búsqueda de correciones (\"propers\") comenzó"],"Subtitle search started":[null,"Búsqueda de subtítulos comenzada"],"Remove Selected":[null,"Eliminar selección"],"Clear History":[null,"Limpiar historial"],"Trim History":[null,"Cortar historial"],"Selected history entries removed":[null,"Eliminadas entradas seleccionadas del historial"],"History cleared":[null,"Historial eliminado"],"Removed history entries older than 30 days":[null,"Eliminar elementos de la historia más antiguos de 30 días"],"General":[null,"General"],"Backup/Restore":[null,"Copia de seguridad/Restaurar"],"Search Settings":[null,"Ajustes de búsqueda"],"Search Providers":[null,"Proveedores de búsqueda"],"Subtitles Settings":[null,"Ajustes de los subtítulos"],"Notifications":[null,"Notificaciones"],"Anime":[null,"Anime"],"SickRage Configuration":[null,"Configuración de SickRage"],"Config - Shares":[null,""],"Windows Shares Configuration":[null,""],"Saved Shares":[null,""],"Your Windows share settings have been saved":[null,""],"Config - General":[null,"Config - General"],"General Configuration":[null,"Configuración General"],"Saved Defaults":[null,"Valores predeterminados guardados"],"Your \"add show\" defaults have been set to your current selections.":[null,"Tus valores por defectos para \"Añadir serie\" se han cambiado a tus opciones actuales."],"Unable to create directory {directory}, log directory not changed.":[null,"Imposible crear el directorio {directory}, directorio log no modificado."],"Unable to create directory {directory}, https cert directory not changed.":[null,"Imposible crear el directorio {directory}, directorio https cert no modificado."],"Unable to create directory {directory}, https key directory not changed.":[null,"Imposible crear el directorio {directory}, directorio https key no modificado."],"Error(s) Saving Configuration":[null,"Error(es) guardando la configuración"],"Configuration Saved":[null,"Configuración guardada"],"Config - Backup/Restore":[null,"Config - Copia de seguridad/Restaurar"],"Config - Episode Search":[null,"Config - Búsqueda de episodio"],"Config - Post Processing":[null,"Configuración de post-procesado"],"Unpacking Not Supported, disabling unpack setting":[null,"Desempaquetado no soportado, deshabilitando configuracion de desempaquetado"],"You tried saving an invalid normal naming config, not saving your naming settings":[null,""],"You tried saving an invalid anime naming config, not saving your naming settings":[null,"Ha tratado de guardar una configuración de nombrado de anime no válida, no se guardarán sus opciones de nombrado"],"Config - Providers":[null,"Configuración de proveedores"],"No Provider Name specified":[null,"Nombre de proveedor no especificado"],"No Provider Url specified":[null,"Url del proveedor no especificada"],"No Provider Api key specified":[null,"Llave Api del proveedor no especificada"],"Config - Notifications":[null,"Configuración de notificaciones"],"Config - Subtitles":[null,"Configuración de subtítulos"],"Config - Anime":[null,"Configuración - Anime"],"Clear Errors":[null,"Borrar errores"],"Clear Warnings":[null,"Borrar avisos"],"Submit Errors":[null,"Enviar errores"],"Logs & Errors":[null,"Logs & errores"],"Log File":[null,"Archivo de registro"],"Logs":[null,"Registros"],"This is a test notification from SickRage":[null,"Notificación de prueba desde SickRage"],"Choose Directory":[null,""],"Select log file folder location":[null,""],"Select CSS file":[null,""],"Select backup folder to save to":[null,""],"Select backup files to restore":[null,""],"Please fill out the necessary fields above.":[null,""],"<b>Step 1:</b> Confirm Authorization":[null,""],"Check blacklist name; the value needs to be a trakt slug":[null,""],"You must provide a recipient email address!":[null,""],"You didn't supply a Pushbullet api key":[null,""],"Don't forget to save your new pushbullet settings.":[null,""],"Select TV Download Directory":[null,""],"Select Unpack Directory":[null,""],"This pattern is invalid.":[null,"Valor de patrón inválido."],"This pattern would be invalid without the folders, using it will force \"Season Folders\" on for all shows.":[null,"El patrón puede no ser válido sin carpetas, usarlo forzará \"Carpetas por temporada\" en todas las series."],"This pattern is valid.":[null,"Valor de patrón válido."],"Select .nzb black hole/watch location":[null,""],"Select .torrent black hole/watch location":[null,""],"Select .torrent download location":[null,""],"Minimum seeding time is":[null,""],"URL to your uTorrent client (e.g. http://localhost:8000)":[null,""],"Stop seeding when inactive for":[null,""],"URL to your Transmission client (e.g. http://localhost:9091)":[null,""],"URL to your Deluge client (e.g. http://localhost:8112)":[null,""],"IP or Hostname of your Deluge Daemon (e.g. scgi://localhost:58846)":[null,""],"URL to your Synology DS client (e.g. http://localhost:5000)":[null,""],"URL to your rTorrent client (e.g. scgi://localhost:5000 <br> or https://localhost/rutorrent/plugins/httprpc/action.php)":[null,""],"URL to your qBittorrent client (e.g. http://localhost:8080)":[null,""],"URL to your MLDonkey (e.g. http://localhost:4080)":[null,""],"URL to your putio client (e.g. http://localhost:8080)":[null,""],"<a herf=\"https://app.put.io/oauth/apps/new\" target=\"_blank\"> Create a new OAuth app for put.io</a>":[null,""],"Put.io Parent Folder":[null,""],"Put.io OAuth Token":[null,""],"Show Episodes":[null,""],"Hide Episodes":[null,""],"Select Show Location":[null,""],"Select Unprocessed Episode Folder":[null,""],"DELETED":[null,""],"Resume updating the log on this page.":[null,""],"Pause updating the log on this page.":[null,""],"searching {searchingFor}...":[null,""],"search timed out, try again or try another indexer":[null,""],"loading folders...":[null,""],"Loading...":[null,""],"You have reached this page by accident, please check the url.":[null,"Has llegado a esta página por accidente, por favor compruebe la url."],"A mako error has occured.<br>\n If this happened during an update a simple page refresh may be the solution.<br>\n Mako errors that happen during updates may be a one time error if there were significant ui changes.":[null,"Un error mako ha ocurrido.<br>\n Si esto ha occurido durante una actualización, un simple refresco de la página puede ser la solución.<br>\n Los errores Mako que suceden durante las actualizaciones puedes ser errores puntuales si han habido cambios significativos en la interfaz."],"Show/Hide Error":[null,"Mostrar/Ocultar Error"],"Add New Show":[null,"Agregar nueva serie"],"For shows that you haven't downloaded yet, this option finds a show on theTVDB.com, creates a directory for it's episodes, and adds it to SickRage.":[null,"Para series que aún no has descargado, esta opción busca la serie en theTVB.com, crea un directorio para sus episodios, y lo agrega a SickRage."],"Add From Trakt Lists":[null,"Añadir desde las listas de Trakt"],"For shows that you haven't downloaded yet, this option lets you choose from a show from one of the Trakt lists to add to SickRage.":[null,"Para series que aún no ha descargado, esta opción le permite elegir una serie desde una de las listas de Trakt para ser añadida a SickRage."],"Add From IMDB's Popular Shows":[null,"Añadir desde Series Populares de IMBD"],"View IMDB's list of the most popular shows. This feature uses IMDB's MOVIEMeter algorithm to identify popular TV Series.":[null,"Ver lista de las series más populares de IMBD. Esta opción usa el algoritmo MOVIEMeter de IMBD para identificar series populares."],"Add Existing Shows":[null,"Añadir series existentes"],"Use this option to add shows that already have a folder created on your hard drive. SickRage will scan your existing metadata/episodes and add the show accordingly.":[null,"Use esta opción para añadir series que ya tienen un directorio creado en su disco duro. SickRage escaneará sus metadatos/episodios y los añadirá consequentemente."],"Add Existing Show":[null,"Añadir serie existente"],"Manage Directories":[null,"Gestión de directorios"],"Customize Options":[null,"Personalizar opciones"],"SickRage can add existing shows, using the current options, by using locally stored NFO/XML metadata to eliminate user interaction. If you would rather have SickRage prompt you to customize each show, then use the checkbox below.":[null,"SickRage puede agregar programas existentes, utilizando las opciones actuales, mediante metadatos NFO/XML almacenados localmente para eliminar la interacción del usuario. Si prefiere que SickRage pida personalizar cada serie, marque la casilla siguiente."],"Prompt me to set settings for each show":[null,"Preguntar específicamente para cada serie"],"Displaying folders within these directories which aren't already added to SickRage":[null,"Mostrando carpetas dentro de estos directorios que aún no se han añadido a SickRage"],"Submit":[null,"Enviar"],"Find a show on theTVDB":[null,"Encontrar una serie en theTVDB"],"Show retrieved from existing metadata":[null,"Serie extraída utilizando metadatos almacenados"],"All Indexers":[null,"Todos los Indexadores"],"Search":[null,"Buscar"],"This will only affect the language of the retrieved metadata file contents and episode filenames.":[null,"Esto solamente afectará al idioma de los metadatos extraídos y los nombres de los episodios."],"This <b>DOES NOT</b> allow SickRage to download non-english TV episodes!":[null,"Esto <b>NO</b> permite que SickRage descargue episodios en otro idioma!"],"Pick the parent folder":[null,"Escoja el directorio superior"],"Pre-chosen Destination Folder":[null,"Carpeta de destino Pre-Seleccionada"],"Customize options":[null,"Opciones de personalización"],"Add Show":[null,"Añadir serie"],"Skip Show":[null,"Omitir serie"],"Sort By":[null,"Ordenar por"],"Name":[null,"Nombre"],"Original":[null,"Original"],"Votes":[null,"Votos"],"Rating":[null,"Valoración"],"Rating > Votes":[null,"Puntuación > Votos"],"Sort Order":[null,"Ordenar por"],"Asc":[null,"Asc"],"Desc":[null,"Desc"],"Fetching of IMDB Data failed. Are you online?":[null,"Descarga de IMDB fallida. ¿Estás online?"],"Exception":[null,"Excepción"],"Select Trakt List":[null,"Seleccione lista de Trakt"],"Most Anticipated":[null,"Más esperados"],"Trending":[null,"Tendencias"],"Popular":[null,"Popular"],"Most Watched":[null,"Más visto"],"Most Played":[null,"Más reproducidas"],"Most Collected":[null,"Más veces recopilado"],"Recommended":[null,"Recomendado"],"Toggle navigation":[null,"Alternar navegación"],"Profile":[null,"Perfil"],"JSONP":[null,"JSONP"],"Back to SickRage":[null,"Volver a SickRage"],"Parameters":[null,"Parámetros"],"Required":[null,"Obligatorio"],"Description":[null,"Descripción"],"Type":[null,"Tipo"],"Default value":[null,"Valor por defecto"],"Allowed values":[null,"Valores permitidos"],"Playground":[null,"Zona de juegos"],"Clear":[null,"Limpiar"],"Yes":[null,"Sí"],"No":[null,"No"],"season":[null,"temporada"],"episode":[null,"episodio"],"Python Version":[null,"Versión de Python"],"SSL Version":[null,"Versión SSL"],"OS":[null,"OS"],"Locale":[null,"Configuración regional"],"User":[null,"Usuario"],"Program Folder":[null,"Carpeta del programa"],"Config File":[null,"Archivo de configuración"],"Database File":[null,"Archivo de base de datos"],"Cache Folder":[null,"Carpeta cache"],"Log Folder":[null,"Carpeta de registro"],"Arguments":[null,"Argumentos"],"Web Root":[null,"Web raíz"],"Website":[null,"Página web"],"Wiki":[null,"Wiki"],"Source":[null,"Origen"],"IRC Chat":[null,"Chat IRC"],"AnimeDB Settings":[null,"Configuración de AnimeDB"],"Look & Feel":[null,"Aspecto visual"],"AniDB is non-profit database of anime information that is freely open to the public":[null,"AniDB es una base de datos sin ánimo de lucro con información de animes abierta al público"],"Enable":[null,"Activado"],"should SickRage use data from AniDB?":[null,"¿debería SickRage usar datos procedentes de AniDB?"],"AniDB Username":[null,"Usuario AniDB"],"username of your AniDB account":[null,"usuario de su cuenta AniDB"],"AniDB Password":[null,"AniDB contraseña"],"password of your AniDB account":[null,"contraseña de tu cuenta de AniDB"],"AniDB MyList":[null,"AniDB MyList"],"do you want to add the PostProcessed episodes to the MyList?":[null,"le gustaría añadir los episodios post-procesados a su ListaPersonal?"],"Look and Feel":[null,"Apariencia"],"How should the anime functions show and behave.":[null,"Cómo deben mostrarse y comportarse las funciones de anime."],"Split show lists":[null,"Dividir listas de serie"],"separate anime and normal shows in groups":[null,"separar anime y series normales en grupos"],"Split in tabs":[null,"Separar en pestañas"],"use tabs for when splitting show lists":[null,"usar pestañas al dividir la lista de series"],"Restore":[null,"Restaurar"],"Backup your main database file and config.":[null,"Hacer una copia de seguridad de su archivo de base de datos principal y configuración."],"Select the folder you wish to save your backup file to":[null,"Seleccione la carpeta que desea usar para guardar su copia de seguridad"],"Restore your main database file and config.":[null,"Restaurar la base de datos principal y configuración."],"Select the backup file you wish to restore":[null,"Seleccione la copia de seguridad que desea restaurar"],"Misc":[null,"Miscelánea"],"Interface":[null,"Interfaz"],"Advanced Settings":[null,"Configuración avanzada"],"Startup options. Indexer options. Log and show file locations.":[null,"Opciones de inicio. Opciones de indizado. Ubicación de archivos de registro y de programas."],"Some options may require a manual restart to take effect.":[null,"Algunas de las opciones pueden requerir reiniciar el equipo antes de tener efecto."],"Default Indexer Language":[null,"Idioma de indizador predeterminado"],"for adding shows and metadata providers":[null,"para agregar series y proveedores de matadatos"],"Launch browser":[null,"Iniciar navegador"],"open the SickRage home page on startup":[null,"abrir la página de inicio de SickRage al iniciar"],"Initial page":[null,"Página inicial"],"Shows":[null,"Series"],"when launching SickRage interface":[null,"al abrir la interfaz de SickRage"],"Choose hour to update shows":[null,"Elija hora para actualizar las series"],"with information such as next air dates, show ended, etc. Use 15 for 3pm, 4 for 4am etc.":[null,"con información como siguiente fecha de emisión, programa concluido, etc. Use 15 para 3pm, 4 para 4am, etc."],"note":[null,"nota"],"minutes are randomized each time SickRage is started":[null,"cada vez que SickRage se inicia el valor de los minutos es elegido al azar"],"Send to trash for actions":[null,"Enviar a la papelera para acciones"],"when using show \"Remove\" and delete files":[null,"cuando use \"Borrar\" desde una serie y elimine archivos"],"on scheduled deletes of the oldest log files":[null,"en eliminación programada de los archivos de registro mas antiguos"],"selected actions use trash (recycle bin) instead of the default permanent delete":[null,"las acciones seleccionadas usan la papelera (de reciclaje) en lugar de la eliminación permanente por defecto"],"Log file folder location":[null,"Ruta para ficheros de log"],"Number of Log files saved":[null,"Número de archivos de registro guardados"],"number of log files saved when rotating logs (default: 5) (REQUIRES RESTART)":[null,"número de archivos de log guardados cuando se rotan los logs (por defecto: 5) (REQUIERE REINICIO)"],"Size of Log files saved":[null,"Tamaño de los archivos de log guardados"],"maximum size in MB of the log file (default: 1MB) (REQUIRES RESTART)":[null,"tamaño máximo en MB del archivo de log (por defecto: 1MB) (REQUIERE REINICIO)"],"Use initial indexer set to":[null,"Usa como indexador inicial"],"as the default selection when adding new shows":[null,"como la selección por defecto al añadir nuevas series"],"Timeout show indexer at":[null,"Tiempo de espera del indexador en"],"seconds of inactivity when finding new shows (default:20)":[null,"segundos de inactividad durante la búsqueda de nuevas series (por defecto: 20)"],"Show root directories":[null,"Mostrar directorios raíz"],"where the files of shows are located":[null,"donde se guardan los archivos de las series"],"Save Changes":[null,"Guardar los cambios"],"Options for software updates.":[null,"Opciones relacionadas con las actualizaciones del software."],"Check software updates":[null,"Comprobar actualizaciones"],"and display notifications when updates are available. Checks are run on startup and at the frequency set below*":[null,"y mostrar notificaciones cuando haya actualizaciones disponibles.\n Se comprueba al inicio y a la frecuencia fijada más abajo*"],"Automatically update":[null,"Actualizar automáticamente"],"fetch and install software updates. Updates are run on startup and in the background at the frequency set below*":[null,"descargar e instalar actualizaciones. \n Las actualizaciones se instalan en segundo plano, al inicio y con la frecuencia configurada más abajo*"],"Check the server every*":[null,"Comprobar servidor cada*"],"hours for software updates (default:1)":[null,"horas buscando actualizaciones de software (por defecto: 1)"],"Notify on software update":[null,"Notificar al actualizar el software"],"send a message to all enabled notifiers when SickRage has been updated":[null,"enviar mensaje a todos los sistemas de notificación cuando se actualice SickRage"],"User Interface":[null,"Interfaz de usuario"],"Options for visual appearance.":[null,"Opciones de apariencia visual."],"Interface Language":[null,"Lenguaje de la interfaz"],"System Language":[null,"Lenguaje del sistema"],"for appearance to take effect, save then refresh your browser":[null,"para que el aspecto surja efecto, guardar y después refrescar el navegador"],"Display theme":[null,"Mostrar tema"],"Dark":[null,"Oscuro"],"Light":[null,"Claro"],"Use a background image":[null,"Usar una imagen de fondo"],"use a custom image as background for SickRage":[null,"usar una imagen personalizada como fondo de SickRage"],"Background Path":[null,"Ruta de imagen de fondo"],"Path to the background image":[null,"Ruta a la imagen de fondo"],"Show fanart in the background":[null,"Fanart del programa en el fondo"],"on the show summary page":[null,"en la página resumen de la serie"],"Fanart transparency":[null,"Transparencia de fanart"],"transparency of the fanart in the background":[null,"transparencia de fanart en el fondo"],"Use a custom stylesheet file":[null,""],"use a custom .css file to style SickRage (for advanced users)":[null,""],"Stylesheet File Path":[null,""],"Path to the stylesheet (.css) file":[null,""],"Show all seasons":[null,"Mostrar todas las temporadas"],"Sort with \"The\", \"A\", \"An\"":[null,"Ordenar teniendo en cuenta \"The\", \"A\", \"An\""],"include articles (\"The\", \"A\", \"An\") when sorting show lists":[null,"incluir los artículos (\"The\", \"A\", \"An\") al ordenar las listas de las series"],"Missed episodes range":[null,"Rango para episodios no encontrados"],"set the range in days of the missed episodes in the Schedule page":[null,"fije el rango de días para los episodios no encontrados en la página de la Programación"],"Display fuzzy dates":[null,"Mostrar fechas imprecisas"],"move absolute dates into tooltips and display e.g. \"Last Thu\", \"On Tue\"":[null,"convierte las fechas absolutas en aproximadas y muestra p.e. \"Pasado Jueves\", \"El Martes\""],"Trim zero padding":[null,"Ajuste con cero relleno"],"remove the leading number \"0\" shown on hour of day, and date of month":[null,"quita el primer número \"0\" mostrado en la hora del día, y la fecha del mes"],"Date style":[null,"Estilo de fecha"],"Use System Default":[null,"Utilizar valores por defecto"],"Time style":[null,"Estilo de hora"],"seconds are only shown on the History page":[null,"los segundos solo se muestran en la página Historial"],"Timezone":[null,"Zona horaria"],"Local":[null,"Local"],"Network":[null,"Red"],"display dates and times in either your timezone or the shows network timezone":[null,"mostrar fechas y horas en su zona horaria o la zona horaria del canal de la serie"],"use local timezone to start searching for episodes minutes after show ends (depends on your dailysearch frequency)":[null,"usar la zona horaria local para empezar la búsqueda de episodios después de que se emita la serie (depende de la frecuencia de la búsqueda diaria)"],"Download url":[null,"Url de descarga"],"URL where the shows can be downloaded.":[null,"URL donde pueden descargarse las series."],"Web Interface":[null,"Interfaz Web"],"it is recommended that you enable a username and password to secure SickRage from being tampered with remotely.":[null,"es recomendable que habilites un usuario y contraseña para evitar que SickRage sea manipulado remotamente."],"these options require a manual restart to take effect.":[null,"estas opciones requieren un reinicio manual para tener efecto."],"API key":[null,"Clave de API"],"used to give 3rd party programs limited access to SickRage":[null,"usado para permitir acceso limitado a SickRage por programas de terceros"],"you can try all the features of the API":[null,"puede probar todas las funciones de la API"],"here":[null,"aquí"],"HTTP logs":[null,"Logs HTTP"],"enable logs from the internal Tornado web server":[null,"habilite los logs desde el servidor web interno Tornado"],"HTTP username":[null,"Nombre de usuario HTTP"],"set blank for no login":[null,"deje en blanco para no requerir usuario"],"HTTP password":[null,"Contraseña HTTP"],"blank = no authentication":[null,"en blanco = sin autenticación"],"HTTP port":[null,"Puerto HTTP"],"web port to browse and access SickRage (default:8081)":[null,"puerto web para navegar y acceder a SickRage (por defecto: 8081)"],"Notify on login":[null,"Notificar al inicio de sesión"],"enable to be notified when a new login happens in webserver":[null,"habilitar para ser notificado cuando ocurra un nuevo inicio de sesión en el servidor web"],"Listen on IPv6":[null,"Escuchar en IPv6"],"attempt binding to any available IPv6 address":[null,"intentar enlazar con cualquier dirección IPv6 disponible"],"Enable HTTPS":[null,"Habilitar HTTPS"],"enable access to the web interface using a HTTPS address":[null,"permitir el acceso a la interfaz web usando una dirección HTTPS"],"HTTPS certificate":[null,"Certificado HTTPS"],"file name or path to HTTPS certificate":[null,"nombre de archivo o ruta del certificado HTTPS"],"HTTPS key":[null,"Clave HTTPS"],"file name or path to HTTPS key":[null,"nombre de archivo o ruta de la clave HTTPS"],"Reverse proxy headers":[null,"Cabeceras de proxy reverso"],"accept the following reverse proxy headers (advanced)...":[null,"aceptar los siguientes encabezados de proxy inverso (avanzado)..."],"(X-Forwarded-For, X-Forwarded-Host, and X-Forwarded-Proto)":[null,"(X-Forwarded-For, X-Forwarded-Host, y X-Forwarded-Proto)"],"CPU throttling":[null,"Límite de CPU"],"Normal (default). High is lower and Low is higher CPU use":[null,"Normal (predeterminado). Alta es menor y Baja es el uso de CPU más alto"],"Anonymous redirect":[null,"Redirección anónima"],"backlink protection via anonymizer service, must end in \"?\"":[null,"protección de backlink a través de un servicio anonimizador, debe terminar en \"?\""],"Enable debug":[null,"Habilitar Debug"],"enable debug logs":[null,"habilitar logs de depuración"],"Verify SSL Certs":[null,"Verificar certificados SSL"],"verify SSL Certificates (Disable this for broken SSL installs (Like QNAP))":[null,"verificar certificados SSL (desactivar esto con SSL auto-firmadas (como QNAP))"],"No Restart":[null,"No reiniciar"],"only shutdown when restarting SR":[null,"apagar solamente cuando reinicie SR"],"only select this when you have external software restarting SR automatically when it stops (like FireDaemon)":[null,"únicamente seleccionar si dispones de software externo para reiniciar SR automáticamente cuando se detiene (como FireDaemon)"],"Encrypt passwords":[null,"Cifrar contraseñas"],"in the <code>config.ini</code> file":[null,"en el archivo <code>config.ini</code>"],"warning":[null,"advertencia"],"passwords must only contain":[null,"las contraseñas solo deben contener"],"ASCII characters":[null,"Caracteres ASCII"],"Unprotected calendar":[null,"Calendario desprotegido"],"allow subscribing to the calendar without user and password":[null,"permitir suscribirse al calendario sin usuario y contraseña"],"some services like Google Calendar only work this way":[null,"algunos servicios como Google Calendar sólo funcionan de esta manera"],"Google Calendar Icons":[null,"Iconos de Google Calendar"],"show an icon next to exported calendar events in Google Calendar":[null,"mostrar un icono junto al calendario de eventos exportados en Google Calendar"],"Proxy host":[null,"Host del proxy"],"blank to disable or proxy to use when connecting to providers":[null,"en blanco para desactivar o el proxy a utilizar para conectar a los proveedores"],"also use global proxy setting for indexers (tvdb, xem, anidb, etc.)":[null,"usar también opciones de proxy para indexadores (tvdb, xem, anidb, etc.)"],"Skip Remove Detection":[null,"Omitir Detección de Eliminación"],"skip detection of removed files":[null,"saltar detección de archivos eliminados"],"if disabled the episode will be set to the default deleted status":[null,"si deshabilitas el episodio se establecerá a la opción predeterminada para el estado de borrado"],"Default deleted episode status":[null,"Estado de episodio eliminado por defecto"],"define the status to be set for media file that has been deleted.":[null,"definir el estado que se fijará para el archivo multimedia eliminado."],"Archived option will keep previous downloaded quality":[null,"La opción archivado mantendrá la calidad de descarga anterior"],"example: Downloaded (1080p WEB-DL) ==> Archived (1080p WEB-DL)":[null,"ejemplo: Descargado (1080p WEB-DL) ==> Archivado (1080p WEB-DL)"],"Options for github related features.":[null,"Opciones relacionadas con GitHub."],"Branch version":[null,"Versión de la rama"],"error: No branches found.":[null,"error: Ramas no encontradas."],"select branch to use (restart required)":[null,"seleccione rama a usar (requiere reinicio)"],"Authorization Type":[null,"Tipo de Autenticación"],"Username and password":[null,""],"Personal access token":[null,""],"You must use a personal access token if you're using \"two-factor authentication\" on GitHub.":[null,""],"GitHub username":[null,"Usuario GitHub"],"*** (REQUIRED FOR SUBMITTING ISSUES) ***":[null,"*** (REQUERIDO PARA ENVIAR INCIDENCIAS) ***"],"GitHub password":[null,"Contraseña de GitHub"],"GitHub personal access token":[null,""],"Generate Token":[null,""],"Manage Tokens":[null,""],"GitHub remote for branch":[null,"Rama remota en GitHub"],"access repo configured remotes (save then refresh browser)":[null,""],"default":[null,""],"origin":[null,""],"Git executable path":[null,"Ruta del ejecutable Git"],"only needed if OS is unable to locate git from env":[null,"solo es necesario si el sistema operativo no encuentra git en tu entorno"],"Git reset":[null,"Git reset"],"removes untracked files and performs a hard reset on git branch automatically to help resolve update issues":[null,"elimina archivos sin seguimiento y realiza un hard reset en la rama de git automáticamente para ayudar a resolver problemas tras actualizar"],"Home Theater / NAS":[null,"Home Theater / NAS"],"Devices":[null,"Dispositivos"],"Social":[null,"Social"],"A free and open source cross-platform media center and home entertainment system software with a 10-foot user interface designed for the living-room TV.":[null,"Un Software de plataforma Libre de Medios y Sistema de Entretenimiento. diseñado para la TV de la Sala."],"send KODI commands?":[null,""],"Always on":[null,"Siempre encendido"],"log errors when unreachable?":[null,"¿registrar errores cuando sea inalcanzable?"],"Notify on snatch":[null,"Notificación al encontrar"],"send a notification when a download starts?":[null,"¿enviar notificación al iniciar una descarga?"],"Notify on download":[null,"Notificar en descarga"],"send a notification when a download finishes?":[null,"¿enviar notificación al finalizar una descarga?"],"Notify on subtitle download":[null,"Notificar al descargar subtitulos"],"send a notification when subtitles are downloaded?":[null,"¿enviar una notificación al descargar subtitulos?"],"Update library":[null,"Actualizar biblioteca"],"update KODI library when a download finishes?":[null,"¿Actualizar biblioteca KODI al terminar una descarga?"],"Full library update":[null,"Actualizar toda la biblioteca"],"perform a full library update if update per-show fails?":[null,"¿actualizar toda la biblioteca si la actualización de la serie falla?"],"Only update first host":[null,"Solo actualizar el primer host"],"only send library updates to the first active host?":[null,"¿solo enviar actualizaciones de biblioteca al primer host activo?"],"KODI IP:Port":[null,"KODI IP: Puerto"],"host running KODI (eg. 192.168.1.100:8080)":[null,"host en el que se ejecuta KODI (ej. 192.168.1.100:8080)"],"(multiple host strings must be separated by commas)":[null,"(múltiples hosts deben separarse con comas)"],"Username":[null,"Nombre de usuario"],"username for your KODI server (blank for none)":[null,"nombre de usuario para tu servidor KODI (en blanco para ninguno)"],"Password":[null,"Contraseña"],"password for your KODI server (blank for none)":[null,"contraseña para tu servidor KODI (en blanco para ninguna)"],"Click below to test.":[null,"Haga clic a continuación para probar."],"Experience your media on a visually stunning, easy to use interface on your Mac connected to your TV. Your media library has never looked this good!":[null,"Experimenta Tu Contenido visualmente asombroso, interfaz facíl de usar en tu Mac conectada a tu TV. Tu Contenido nunca se vió asi de Bien!"],"For sending notifications to Plex Home Theater (PHT) clients, use the KODI notifier with port <b>3005</b>.":[null,"Para el envío de notificaciones a clientes Plex Home Theater (PHT), usar el notificador KODI con puerto <b>3005</b>."],"send Plex Media Server library updates?":[null,""],"Plex Media Server Auth Token":[null,"Token de autenticación para Plex Media Server"],"auth token used by Plex":[null,""],"Update Library":[null,"Actualizar biblioteca"],"update Plex Media Server library when a download finishes":[null,"actualizar la biblioteca de Plex Media Server cuando termine una descarga"],"Plex Media Server IP:Port":[null,"Plex Media Server IP:Puerto"],"one or more hosts running Plex Media Server<br/>(eg. 192.168.1.1:32400, 192.168.1.2:32400)":[null,"uno o más hosts ejecutando Plex Media Server<br/>(ej. 192.168.1.1:32400, 192.168.1.2:32400)"],"HTTPS":[null,"HTTPS"],"use https for plex media server requests?":[null,"¿utilizar https para las solicitudes de Plex Media Server?"],"Click below to test Plex Media Server(s)":[null,"Haga clic a continuación para probar el Plex Media Server"],"Test Plex Media Server":[null,"Prueba Plex Media Server"],"Plex Home Theater":[null,"Plex Home Theater"],"send Plex Home Theater notifications?":[null,""],"Plex Home Theater IP:Port":[null,"Plex Home Theater IP:Puerto"],"one or more hosts running Plex Home Theater<br>(eg. 192.168.1.100:3000, 192.168.1.101:3000)":[null,"uno o más hosts ejecutando Plex Home Theater<br>(ej. 192.168.1.100:3000, 192.168.1.101:3000)"],"Click below to test Plex Home Theater(s)":[null,"Haga clic a continuación para probar el Plex Home Theater"],"Test Plex Home Theater":[null,"Probar Plex Home Theater"],"some Plex Home Theaters <b class=\"boldest\">do not</b> support notifications e.g. Plexapp for Samsung TVs":[null,""],"Emby":[null,"Emby"],"A home media server built using other popular open source technologies.":[null,"Un servidor multimedia construido sobre otras populares tecnologías open source."],"send update commands to Emby?":[null,""],"Emby IP:Port":[null,"Emby IP:Puerto"],"host running Emby (eg. 192.168.1.100:8096)":[null,"host en el que se ejecuta Emby (ej. 192.168.1.100:8096)"],"Emby API Key":[null,"Emby API Key"],"Networked Media Jukebox":[null,"Networked Media Jukebox"],"The Networked Media Jukebox, or NMJ, is the official media jukebox interface made available for the Popcorn Hour 200-series.":[null,"El Networked Media Jukebox, o NMJ, es la interfaz oficial para jukebox disponible para el Popcorn Hour serie 200."],"send update commands to NMJ?":[null,""],"Popcorn IP address":[null,"Dirección IP de Popcorn"],"IP address of Popcorn 200-series (eg. 192.168.1.100)":[null,"Dirección IP del Popcorn serie 200 (ej 192.168.1.100)"],"Get settings":[null,"Obtener la configuración"],"Get Settings":[null,"Obtener la configuración"],"the Popcorn Hour device must be powered on and NMJ running.":[null,"el dispositivo Popcorn Hour debe estar encendido y NMJ en ejecución."],"NMJ database":[null,"Base de datos NMJ"],"automatically filled via the 'Get Settings' button.":[null,"rellenado automáticamente a través del botón 'Obtener la Configuración'."],"NMJ mount url":[null,"URL de montaje NMJ"],"Networked Media Jukebox v2":[null,"Networked Media Jukebox v2"],"The Networked Media Jukebox, or NMJv2, is the official media jukebox interface made available for the Popcorn Hour 300 & 400-series.":[null,"El Networked Media Jukebox, o NMJv2, es la interfaz oficial para jukebox disponible para el Popcorn Hour 300 y serie 400."],"send update commands to NMJv2?":[null,""],"IP address of Popcorn 300/400-series (eg. 192.168.1.100)":[null,"Dirección IP del Popcorn serie 300/400 (eg. 192.168.1.100)"],"Database location":[null,"Ubicación de la base de datos"],"Database instance":[null,"Instancia de la base datos"],"adjust this value if the wrong database is selected.":[null,"ajuste este valor si se seleccionó una base de datos errónea."],"Find database":[null,"Buscar base de datos"],"Find Database":[null,"Buscar base de datos"],"the Popcorn Hour device must be powered on.":[null,"el dispositivo Popcorn Hour debe estar encendido."],"NMJv2 database":[null,"Base de datos NMJ"],"automatically filled via the 'Find Database' buttons.":[null,"rellenado automáticamente a través del botón 'Obtener la Configuración'."],"Synology":[null,"Synology"],"The Synology DiskStation NAS.":[null,"Los NAS Synology DiskStation."],"Synology Indexer is the daemon running on the Synology NAS to build its media database.":[null,"Servicio de indexación es el proceso en ejecución en la NAS Synology que construye su base de datos multimedia."],"send Synology notifications?":[null,""],"requires SickRage to be running on your Synology NAS.":[null,"requiere que SickRage esté ejecutándose en su NAS Synology."],"Synology Indexer":[null,"Indexación de Synology"],"Synology Notifier is the notification system of Synology DSM":[null,"Notificador de Synology es el sistema de notificaciones de Synology DSM"],"send notifications to the Synology Notifier?":[null,""],"pyTivo":[null,"pyTivo"],"pyTivo is both an HMO and GoBack server. This notifier will load the completed downloads to your Tivo.":[null,"pyTivo es a la vez un HMO y el servidor de GoBack. Este notificador carga las descargas completadas a su Tivo."],"send notifications to pyTivo?":[null,""],"requires the downloaded files to be accessible by pyTivo.":[null,"requiere que los archivos descargados sean accesibles por pyTivo."],"pyTivo IP:Port":[null,"pyTivo IP:Puerto"],"host running pyTivo (eg. 192.168.1.1:9032)":[null,"host que ejecuta pyTivo (ej. 192.168.1.1:9032)"],"pyTivo share name":[null,"nombre de recurso compartido pyTivo"],"value used in pyTivo Web Configuration to name the share.":[null,"valor utilizado en la configuración web de pyTivo para nombrar el recurso compartido."],"Tivo name":[null,"Nombre de Tivo"],"(Messages & Settings > Account & System Information > System Information > DVR name)":[null,"(Mensajes & Ajustes > Cuenta & Información del sistema > Información del sistema > Nombre de DVR)"],"Growl":[null,"Growl"],"A cross-platform unobtrusive global notification system.":[null,"Un discreto sistema de notificación mundial multiplataforma."],"send Growl notifications?":[null,""],"Growl IP:Port":[null,"Growl IP:Puerto"],"host running Growl (eg. 192.168.1.100:23053)":[null,"host que ejecuta Growl (ej. 192.168.1.100:23053)"],"may leave blank if SickRage is on the same host.":[null,"puede dejarlo en blanco si SickRage se ejecuta en el mismo host."],"otherwise Growl <b>requires</b> a password to be used.":[null,"de lo contrario Growl <b>requiere</b> una contraseña para funcionar."],"Click below to register and test Growl, this is required for Growl notifications to work.":[null,"Haga clic a continuación para registrarse y probar Growl, esto es necesario para que funcionen las notificaciones de Growl."],"Register Growl":[null,"Registrar Growl"],"Prowl":[null,"Prowl"],"A Growl client for iOS.":[null,"Un cliente de Growl para iOS."],"send Prowl notifications?":[null,""],"Prowl Message Title":[null,"Título del mensaje de Prowl"],"Global Prowl API key(s)":[null,"API key(s) globales de Prowl"],"Prowl API(s) listed here, separated by commas if applicable, will<br> receive notifications for <b>all</b> shows. Your Prowl API key is available at:":[null,""],"(this field may be blank except when testing.)":[null,""],"Show notification list":[null,"Mostrar lista de notificaciones"],"-- Select a Show --":[null,"-- Seleccione un programa --"],"Configure per-show notifications here by entering Prowl API key(s), separated by commas, '\n 'after selecting a show in the drop-down box. Be sure to activate the 'Save for this show' '\n 'button below after each entry.":[null,""],"Save for this show":[null,"Guardar para esta serie"],"Prowl priority":[null,"Prioridad de Prowl"],"Very Low":[null,"Muy baja"],"Moderate":[null,"Moderada"],"Normal":[null,"Normal"],"High":[null,"Alta"],"Emergency":[null,"Emergencia"],"priority of Prowl messages from SickRage.":[null,"prioridad de los mensajes de Prowl de SickRage."],"Libnotify":[null,"Libnotify"],"The standard desktop notification API for Linux/*nix systems. This notifier will only function if the pynotify module is installed (Ubuntu/Debian package <a href=\"apt:python-notify\">python-notify</a>).":[null,""],"send Libnotify notifications?":[null,""],"Pushover":[null,"Pushover"],"Pushover makes it easy to send real-time notifications to your Android and iOS devices.":[null,"Pushover hace fácil enviar notificaciones en tiempo real a dispositivos Android e iOS."],"send Pushover notifications?":[null,""],"Pushover key":[null,"Clave de Pushover"],"user key of your Pushover account":[null,"clave de usuario de su cuenta de Pushover"],"Pushover API key":[null,"clave de API de Pushover"],"click here":[null,""]," to create a Pushover API key":[null,""],"Pushover devices":[null,"dispositivos de Pushover"],"comma separated list of pushover devices you want to send notifications to":[null,"lista separada por comas de dispositivos de Pushover a los que se desea enviar notificaciones"],"Pushover notification sound":[null,"sonido de notificación de Pushover"],"Bike":[null,"Bicicleta"],"Bugle":[null,"Bugle"],"Cash Register":[null,"Caja registradora"],"Classical":[null,"Clásica"],"Cosmic":[null,"Cósmico"],"Falling":[null,""],"Gamelan":[null,""],"Incoming":[null,"Entrantes"],"Intermission":[null,""],"Magic":[null,"Magia"],"Mechanical":[null,""],"Piano Bar":[null,""],"Siren":[null,"Sirena"],"Space Alarm":[null,"Alarma de espacio"],"Tug Boat":[null,""],"Alien Alarm (long)":[null,""],"Climb (long)":[null,""],"Persistent (long)":[null,"Persistente (largo)"],"Pushover Echo (long)":[null,""],"Up Down (long)":[null,"Arriba abajo (largo)"],"None (silent)":[null,"Ninguno (silencioso)"],"Device specific":[null,"Dispositivo específico"],"choose notification sound to use":[null,""],"Pushover priority":[null,""],"Choose priority to use":[null,""],"Boxcar 2":[null,"Boxcar 2"],"Read your messages where and when you want them!":[null,"Lea sus mensajes donde y cuando quiera!"],"send Boxcar notifications?":[null,""],"Boxcar2 access token":[null,"Token de acceso a Boxcar2"],"access token for your Boxcar account.":[null,"token de acceso de su cuenta Boxcar."],"NMA":[null,"NMA"],"Notify My Android":[null,"Notify My Android"],"Notify My Android is a Prowl-like Android App and API that offers an easy way to send notifications from your application directly to your Android device.":[null,""],"send NMA notifications?":[null,""],"NMA API key":[null,"API key de NMA"],"(multiple keys must be separated by commas, up to a maximum of 5)":[null,"(múltiples keys deben estar separadas por comas, hasta un máximo de 5)"],"NMA priority":[null,"Prioridad NMA"],"priority of NMA messages from SickRage.":[null,"prioridad de los mensajes NMA de SickRage."],"Pushalot":[null,"Pushalot"],"Pushalot is a platform for receiving custom push notifications to connected devices running Windows Phone or Windows 8.":[null,""],"send Pushalot notifications ?":[null,""],"Pushalot authorization token":[null,"Token de autorización para Pushalot"],"authorization token of your Pushalot account.":[null,"token de autorización de tu cuenta de Pushalot."],"Pushbullet":[null,"Pushbullet"],"Pushbullet is a platform for receiving custom push notifications to connected devices running Android/iOS and desktop browsers such as Chrome, Firefox or Opera.":[null,"Pushbullet es una plataforma para recibir notificaciones push personalizadas en dispositivos ejecutando Android/iOS y navegadores de escritorio como Chrome, Firefox u Opera."],"send Pushbullet notifications?":[null,""],"Pushbullet API key":[null,"API key de Pushbullet"],"API key of your Pushbullet account":[null,"API key de su cuenta Pushover"],"Pushbullet devices":[null,"Dispositivos de Pushbullet"],"Update device list":[null,"Actualizar la lista de dispositivos"],"Pushbullet channels":[null,"Canales de Pushbullet"],"Free Mobile":[null,"Free Mobile"],"Free Mobile is a famous French cellular network provider.<br> It provides to their customer a free SMS API.":[null,"Free Mobile es un conocido proveedor móvil francés.<br> Proporciona a sus clientes una API para SMS gratuita."],"send SMS notifications?":[null,""],"send a SMS when a download starts?":[null,"¿Enviar un SMS cuando comienza una descarga?"],"send a SMS when a download finishes?":[null,"¿Enviar un SMS cuando una descarga termina?"],"send a SMS when subtitles are downloaded?":[null,"¿Enviar un SMS cuando se hayan descargado subtítulos?"],"Free Mobile customer ID":[null,"Identificación de cliente Free Mobile"],"it's your Free Mobile customer ID (8 digits)":[null,""],"Free Mobile API key":[null,""],"find your API key in your customer portal.":[null,""],"Click below to test your settings.":[null,"Haga clic a continuación para probar la configuración."],"Telegram":[null,"Telegram"],"Telegram is a cloud-based instant messaging service.":[null,"Telegram es un servicio de mensajería instantánea basado en la nube."],"send Telegram notifications?":[null,""],"send a message when a download starts?":[null,""],"send a message when a download finishes?":[null,""],"send a message when subtitles are downloaded?":[null,""],"User/group ID":[null,"ID de usuario o grupo"],"contact @myidbot on Telegram to get an ID":[null,""],"Bot API token":[null,"Token de la API de Bots"],"contact @BotFather on Telegram to set up one":[null,""],"Join":[null,"Join"],"Join all of your devices together!":[null,"Une (join) todos tus dispositivos juntos!"],"send Join notifications?":[null,""],"Device ID":[null,"ID de dispositivo"],"per device specific id":[null,""]," to create a Join API key":[null,""],"Twilio":[null,""],"Twilio is a webservice API that allows you to communicate directly with a mobile number. This notifier will send a text directly to your mobile device.":[null,""],"should SickRage text your mobile device?":[null,""],"Twilio Account SID":[null,""],"account SID of your Twilio account.":[null,""],"Twilio Auth Token":[null,""],"Twilio Phone SID":[null,""],"phone SID that you would like to send the sms from":[null,""],"Your phone number":[null,""],"phone number that will receive the sms. Please use the format +1-###-###-####":[null,""],"Twitter":[null,"Twitter"],"A social networking and microblogging service, enabling its users to send and read other users' messages called tweets.":[null,"Una red social y servicio de microblogging que permite a sus usuarios leer y enviar mensajes de otros usuarios llamados tweets."],"should SickRage post tweets on Twitter?":[null,""],"you may want to use a secondary account.":[null,"puede que desee utilizar una cuenta secundaria."],"send direct message":[null,""],"send a notification via Direct Message, not via status update":[null,"enviar una notificación vía mensaje directo, no a través de actualización de estado"],"send DM to":[null,""],"Twitter account to send Direct Messages to (must follow you)":[null,"Cuenta de Twitter a la que enviar mensajes directos (debe seguirte)"],"Step One":[null,"Paso Uno"],"Request Authorization":[null,"Solicitar autorización"],"Click the \"Request Authorization\" button.<br> This will open a new page containing an auth key.<br> <b>note:</b> if nothing happens check your popup blocker.":[null,""],"Step Two":[null,"Paso Dos"],"Enter the key Twitter gave you below, and click \"Verify Key\".":[null,"Introduzca la clave que Twitter le dio a continuación, y clique en \"verificar\"."],"Trakt":[null,"Trakt"],"Trakt helps keep a record of what TV shows and movies you are watching. Based on your favorites, Trakt recommends additional shows and movies you'll enjoy!":[null,""],"send Trakt.tv notifications?":[null,""],"username of your Trakt account.":[null,"usuario de su cuenta Trakt."],"Trakt PIN":[null,"PIN de Trakt"],"Get Trakt PIN":[null,"Obtener PIN de Trakt"],"PIN code to authorize SickRage to access Trakt on your behalf.":[null,"Código PIN para autorizar a SickRage en su cuenta de Trakt."],"API Timeout":[null,"Tiempo de espera de la API"],"seconds to wait for Trakt API to respond. (Use 0 to wait forever)":[null,""],"Default indexer":[null,"Indexador predeterminado"],"Sync libraries":[null,"Sincronización de bibliotecas"],"sync your SickRage show library with your trakt show library.":[null,""],"Remove Episodes From Collection":[null,"Eliminar episodios de la colección"],"remove an episode from your Trakt Collection if it is not in your SickRage Library.":[null,""],"Sync watchlist":[null,"Sincronizar Watchlist"],"sync your SickRage show watchlist with your trakt show watchlist (either Show and Episode).":[null,"sincronizar su watchlist de Series de SickRage con su watchlist de trakt (la Serie o el episodio)."],"episode will be added on watch list when wanted or snatched and will be removed when downloaded ":[null,""],"Watchlist add method":[null,""],"Skip All":[null,"Saltar Todos"],"Download Pilot Only":[null,"Descargar sólo el piloto"],"Get whole show":[null,"Descargar toda la serie"],"method in which to download episodes for new shows.":[null,"método de descarga de episodios de series nuevas."],"Remove episode":[null,"Quitar el episodio"],"remove an episode from your watchlist after it is downloaded.":[null,"quitar un episodio de tu lista de tu watchlist después de la descarga."],"Remove series":[null,"Quitar las series"],"remove the whole series from your watchlist after any download.":[null,"remover toda la serie de tu watchlist después de cualquier descarga."],"Remove watched show":[null,"Quitar Series Vistas"],"remove the show from sickrage if it's ended and completely watched":[null,"quitar el show de sickrage si ha terminado y esta completamente observado"],"Start paused":[null,"Iniciar Pausado"],"shows grabbed from your trakt watchlist start paused.":[null,""],"Trakt blackList name":[null,"Nombre de la lista negra de Trakt"],"name (slug) of list on Trakt for blacklisting show on 'Add Trending Show' & 'Add Recommended Shows' pages":[null,""],"Email":[null,"Correo"],"Allows configuration of email notifications on a per show basis.":[null,""],"send email notifications?":[null,""],"SMTP host":[null,"Servidor SMTP"],"hostname of your SMTP email server.":[null,"nombre de host de su servidor SMTP."],"SMTP port":[null,"Puerto SMTP"],"port number used to connect to your SMTP host.":[null,"número de puerto utilizado para conectar a su servidor SMTP."],"SMTP from":[null,"SMTP de"],"sender email address, some hosts require a real address.":[null,"dirección email del remitente, algunos servidores requieren una dirección real."],"Use TLS":[null,"Utilizar TLS"],"check to use TLS encryption.":[null,"activar para usar cifrado TLS."],"SMTP user":[null,"Usuario SMTP"],"(optional) your SMTP server username.":[null,"(opcional) el nombre de su usuario del servidor SMTP."],"SMTP password":[null,"Contraseña SMTP"],"(optional) your SMTP server password.":[null,"(opcional) su céntrasela del servidor SMTP."],"Global email list":[null,"Lista de email global"],"email addresses listed here, separated by commas if applicable, will<br> receive notifications for <b>all</b> shows.":[null,""],"(This field may be blank except when testing.)":[null,""],"Email Subject":[null,"Asunto del mensaje"],"use a custom subject for some privacy protection?":[null,""],"(leave blank for the default SickRage subject)":[null,""],"configure per-show notifications here by entering email address(es), separated by commas,":[null,""],"after selecting a show in the drop-down box. Be sure to activate the 'Save for this show'":[null,""],"button below after each entry.":[null,""],"Slack":[null,""],"Slack brings all your communication together in one place. It's real-time messaging, archiving and search for modern teams.":[null,""],"should SickRage post messages on Slack?":[null,""],"Slack Incoming Webhook":[null,""],"Discord":[null,""],"All-in-one voice and text chat for gamers that's free, secure, and works on both your desktop and phone.":[null,""],"Should SickRage post messages on Discord?":[null,""],"Discord Incoming Webhook":[null,""],"Create webhook under channel settings.":[null,""],"Discord Bot Name":[null,""],"Blank will use webhook default Name.":[null,""],"Discord Avatar URL":[null,""],"Blank will use webhook default Avatar.":[null,""],"Discord TTS":[null,""],"Send notifications using text-to-speech":[null,""],"Post-Processing":[null,"Post-procesado"],"Episode Naming":[null,"Nombre de episodio"],"Metadata":[null,"Metadatos"],"Settings that dictate how SickRage should process completed downloads.":[null,"Opciones para indicar a SickRage que hacer con las descargas finalizadas."],"enable the automatic post processor to scan and process any files in your Post Processing Dir":[null,""],"do not use if you use an external Post Processing script":[null,""],"Post Processing Dir":[null,"Carpeta de post-procesado"],"the folder where your download client puts the completed TV downloads.":[null,""],"please use seperate downloading and completed folders in your download client if possible.":[null,""],"Processing Method":[null,"Método de post-procesado"],"what method should be used to put files into the library?":[null,""],"if you keep seeding torrents after they finish, please avoid the 'move' processing method to prevent errors.":[null,""],"Auto Post-Processing Frequency":[null,"Frecuencia de post-procesado automático"],"time in minutes to check for new files to auto post-process (min 10)":[null,""],"Postpone post processing":[null,"Aplazar el post-proceso"],"wait to process a folder if sync files are present.":[null,""],"Sync File Extensions":[null,"Extensiones de archivo de sincronización"],"comma seperated list of extensions or filename globs SickRage ignores when Post Processing":[null,"lista de extensiones o nombres de archivo, separadas por comas, que SickRage ignorará al post-procesar"],"Rename Episodes":[null,"Renombrar episodios"],"rename episode using the Episode Naming settings?":[null,""],"Create missing show directories":[null,"Crear los directorios que faltan de la serie"],"create missing show directories when they get deleted":[null,""],"Add shows without directory":[null,"Añadir series sin directorio"],"add shows without creating a directory (not recommended)":[null,""],"Move associated files":[null,""],"move associated (srt/srr/sfv/etc) files while post processing?":[null,""],"Rename .nfo file":[null,"Renombrar archivo .nfo"],"rename the original .nfo file to .nfo-orig to avoid conflicts?":[null,""],"Associated file extensions":[null,""],"comma separated list of associated file extensions SickRage should keep while post processing.":[null,""],"leaving it empty means no associated files will be post processed":[null,""],"Delete non associated files":[null,""],"delete non associated files while post processing?":[null,""],"Change File Date":[null,"Cambiar fecha del fichero"],"set last modified filedate to the date that the episode aired?":[null,""],"some systems may ignore this feature.":[null,""],"Timezone for File Date":[null,"Zona horaria para la fecha de archivo"],"local":[null,"local"],"network":[null,"red"],"what timezone should be used to change File Date?":[null,""],"Unpack":[null,"Desempaquetar"],"What to do with archived releases found in your <i>TV Download Dir</i>?":[null,""],"Ignore (do not process contents)":[null,""],"Unpack (process contents)":[null,""],"Treat as video (process archive as-is)":[null,""],"'Unpack' only works with RAR archives":[null,""],"Windows":[null,""],"WinRar is required on windows":[null,""],"Unpack Directory":[null,""],"Choose a path to unpack files, leave blank to unpack in download dir":[null,""],"Unrar Location":[null,""],"add the path to unrar if it is not in the system path":[null,""],"Alternate Unrar Tool":[null,""],"add the path to an alternate unrar tool if it is not in the system path":[null,""],"Delete RAR contents":[null,"Borrar contenido de RAR"],"delete content of RAR files, even if Process Method not set to move?":[null,""],"only working with RAR archive":[null,""],"Don't delete empty folders":[null,"No borrar carpetas vacías"],"leave empty folders when Post Processing?":[null,""],"can be overridden using manual Post Processing":[null,""],"Follow symbolic-links":[null,""],"follow down symbolic links in download directory?":[null,""],"<b>EXPERTS ONLY.</b><br>Enable only if you know what <b>circular symbolic links</b> are,<br>and can <b>verify that you have none</b>.":[null,""],"Use icacls":[null,""],"Windows only":[null,""],"sets video permissions after using the move method in post processing":[null,""],"Extra Scripts":[null,"Scripts extra"],"see":[null,""],"for script arguments description and usage.":[null,"para una descripción de los argumentos del script y su uso."],"How SickRage will name and sort your episodes.":[null,"Como SickRage nombrará y ordenará tus episodios."],"Name Pattern":[null,"Patrón de nombre"],"Toggle Naming Legend":[null,""],"don't forget to add quality pattern. Otherwise after post-processing the episode will have UNKNOWN quality":[null,""],"Meaning":[null,"Significado"],"Pattern":[null,"Patrón"],"Result":[null,"Resultado"],"Use lower case if you want lower case names (eg. %sn, %e.n, %q_n etc)":[null,"Usar minúsculas si quiere nombres en minúsculas (ej. %sn, %e.n, %q_n etc)"],"Show Name":[null,"Mostrar nombre"],"Show.Name":[null,"Nombre.de.Serie"],"Show_Name":[null,"Nombre_de_Serie"],"Season Number":[null,"Número de Temporada"],"XEM Season Number":[null,"Número de Temporada XEM"],"Episode Number":[null,"Número de episodio"],"XEM Episode Number":[null,"Número de episodio XEM"],"Episode Name":[null,"Nombre del episodio"],"Episode.Name":[null,""],"Episode_Name":[null,""],"Air Date":[null,"Fecha de emisión"],"Post-Processing Date":[null,"Fecha del Postproceso"],"Quality":[null,"Calidad"],"Scene Quality":[null,""],"Release Name":[null,"Nombre de Lanzamiento"],"SickRage' is used in place of RLSGROUP if it could not be properly detected":[null,""],"Release Group":[null,"Grupo de Lanzamiento"],"If episode is proper/repack add 'proper' to name.":[null,"Si el episodio es proper/repack agregar 'proper' al nombre."],"Release Type":[null,"Tipo de Lanzamiento"],"Multi-Episode Style":[null,"Estilo de Multi-episodio"],"Single-EP Sample":[null,""],"Multi-EP sample":[null,""],"Strip Show Year":[null,""],"remove the TV show's year when renaming the file?":[null,""],"only applies to shows that have year inside parentheses":[null,""],"Custom Air-By-Date":[null,""],"name air-by-date shows differently than regular shows?":[null,""],"Toggle ABD Naming Legend":[null,""],"Regular Air Date":[null,""],"Year":[null,"Año"],"Month":[null,"Mes"],"Day":[null,"Día"],"Multi-EP style is ignored":[null,"Estilo de Multi-episodio es ignorado"],"Custom Sports":[null,""],"name sports shows differently than regular shows?":[null,""],"Toggle Sports Naming Legend":[null,""],"Sports Air Date":[null,""],"Custom Anime":[null,""],"name anime shows differently than regular shows?":[null,""],"Toggle Anime Naming Legend":[null,""],">XEM Season Number":[null,""],"Single-EP Anime Sample":[null,""],"Multi-EP Anime sample":[null,""],"Add Absolute Number":[null,""],"add the absolute number to the season/episode format?":[null,""],"only applies to anime. (eg. S15E45 - 310 vs S15E45)":[null,""],"Only Absolute Number":[null,""],"replace season/episode format with absolute number":[null,""],"only applies to anime.":[null,""],"No Absolute Number":[null,""],"don't include the absolute number":[null,""],"The data associated to the data. These are files associated to a TV show in the form of images and text that, when supported, will enhance the viewing experience.":[null,""],"Metadata Type":[null,""],"toggle metadata options that you wish to be created":[null,""],"multiple targets may be used":[null,""],"Select Metadata":[null,""],"Provider Priorities":[null,""],"Provider Options":[null,""],"Configure Custom Newznab Providers":[null,""],"Configure Custom Torrent Providers":[null,"Configurar proveedores de Torrent personalizados"],"Check off and drag the providers into the order you want them to be used.":[null,"Seleccione y arrastre los proveedores en el orden en el que los quiera utilizar."],"At least one provider is required but two are recommended.":[null,"Se requiere al menos un proveedor pero se recomiendan dos."],"Torrent providers can be toggled in ":[null,"Los proveedores de Torrent pueden ser intercambiados en "],"Provider does not support backlog searches at this time.":[null,"El proveedor todavía no soporta búsquedas pendientes (backlog)."],"Provider is <b>NOT WORKING</b>.":[null,"El proveedor <b>NO FUNCIONA</b>."],"Configure individual provider settings here.":[null,"Configure las opciones individuales del proveedor aquí."],"Check with provider's website on how to obtain an API key if needed.":[null,"Consulte la página web de su proveedor para obtener una API key si lo necesita."],"Configure provider":[null,"Configurar el proveedor"],"no providers available to configure.":[null,""],"URL":[null,"URL"],"Enable daily searches":[null,"Habilitar búsquedas diarias"],"enable provider to perform daily searches.":[null,""],"Enable backlog searches":[null,""],"enable provider to perform backlog searches.":[null,""],"Season search mode":[null,""],"when searching for complete seasons you can choose to have it look for season packs only, or choose to have it build a complete season from just single episodes.":[null,""],"season packs only.":[null,""],"episodes only.":[null,""],"Enable fallback":[null,""],"when searching for a complete season depending on search mode you may return no results, this helps by restarting the search using the opposite search mode.":[null,""],"Custom URL":[null,""],"the URL should include the protocol (and port if applicable). Examples: http://192.168.1.4/ or http://localhost:3000/":[null,""],"Api key":[null,"Api key"],"Digest":[null,""],"Hash":[null,"Hash"],"Passkey":[null,"Clave de acceso"],"Cookies":[null,"Cookie"],"example: uid=1234;pass=567845439634987<br>note: uid and pass are not your username/password.<br>use DevTools or Firebug to get these values after logging in on your browser.":[null,""],"Pin":[null,"Pin"],"Seed ratio":[null,""],"stop transfer when ratio is reached<br>(-1 SickRage default to seed forever, or leave blank for downloader default)":[null,""],"Minimum seeders":[null,""],"Minimum leechers":[null,""],"Confirmed download":[null,"Descarga confirmada"],"only download torrents from trusted or verified uploaders ?":[null,""],"Ranked torrents":[null,""],"only download ranked torrents (trusted releases)":[null,""],"English torrents":[null,""],"only download english torrents, or torrents containing english subtitles":[null,""],"For Spanish torrents":[null,""],"ONLY search on this provider if show info is defined as \"Spanish\" (avoid provider's use for VOS shows)":[null,""],"Sorting results by":[null,""],"Freeleech":[null,""],"only download <b>\"FreeLeech\"</b> torrents.":[null,""],"Category":[null,"Categoría"],"select torrent with Italian subtitle":[null,""],"Configure Custom<br>Newznab Providers":[null,""],"Add and setup or remove custom Newznab providers.":[null,""],"Select provider":[null,"Seleccione el proveedor"],"-- add new provider --":[null,"-- Agregar nuevo proveedor --"],"Provider name":[null,"Nombre del proveedor"],"Site URL":[null,""],"Newznab search categories":[null,""],"select your Newznab categories on the left, and click the \"update categories\" button to use them for searching.) <b>don't forget to to save the form!":[null,""],"Update Categories":[null,""],"Add":[null,"Añadir \t"],"Delete":[null,"Eliminar"],"Add and setup or remove custom RSS providers.":[null,""],"RSS URL":[null,"RSS URL"],"Search element":[null,"Elemento de búsqueda"],"eg: title":[null,"por ejemplo: título"],"Episode Search":[null,"Búsqueda de episodio"],"NZB Search":[null,"Búsqueda NZB"],"Torrent Search":[null,"Busqueda Torrent"],"How to manage searching with":[null,"Cómo gestionar la búsqueda con"],"Randomize Providers":[null,"Aleatorizar los proveedores"],"randomize the provider search order instead of going in order of placement":[null,"aleatorizar el orden de búsqueda de proveedor en lugar de ir en el orden de colocación"],"Download propers":[null,""],"replace original download with \"Proper\" or \"Repack\" if nuked":[null,""],"Check propers every":[null,""],"24 hours":[null,"24 horas"],"4 hours":[null,"4 horas"],"90 mins":[null,"90 min"],"45 mins":[null,"45 min"],"15 mins":[null,"15 min"],"Backlog search day(s)":[null,""],"number of day(s) that the \"Forced Backlog Search\" will cover (e.g. 7 Days)":[null,""],"Backlog search frequency":[null,"Frecuencia de búsqueda backlog"],"time in minutes between searches (min.":[null,"tiempo en minutos entre búsquedas (min."],"Daily search frequency":[null,"Frecuencia de búsqueda diaria"],"Usenet retention":[null,"Retención de Usenet"],"age limit in days for usenet articles to be used (e.g. 500)":[null,""],"Ignore words":[null,"Palabras ignoradas"],"results with one or more word from this list will be ignored<br>separate words with a comma, e.g. \"word1,word2,word3\"":[null,""],"Require words":[null,"Palabras requeridas"],"results with no word from this list will be ignored<br>separate words with a comma, e.g. \"word1,word2,word3\"":[null,""],"Trackers list":[null,"Lista de Trackers"],"trackers that will be added to magnets without trackers<br>separate trackers with a comma, e.g. \"tracker1,tracker2,tracker3\"":[null,""],"Ignore language names in subbed results":[null,""],"ignore subbed releases based on language names <br>\n Example: \"dk\" will ignore words: dksub, dksubs, dksubbed, dksubed <br>\n separate languages with a comma, e.g. \"lang1,lang2,lang3":[null,""],"Allow high priority":[null,"Permitir alta prioridad"],"set downloads of recently aired episodes to high priority":[null,""],"Use Failed Downloads":[null,"Usar descargas fallidas"],"use Failed Download Handling?":[null,""],"will only work with snatched/downloaded episodes after enabling this":[null,""],"Delete Failed":[null,"Error al eliminar"],"delete files left over from a failed download?":[null,""],"this only works if Use Failed Downloads is enabled.":[null,""],"How to handle NZB search results.":[null,""],"Search NZBs":[null,"Buscar NZBs"],"enable NZB search providers":[null,""],"Send .nzb files to":[null,"Enviar archivos .nzb a"],"SABnzbd server URL":[null,"URL del servidor SABnzbd"],"URL to your SABnzbd server (e.g. http://localhost:8080/)":[null,""],"SABnzbd username":[null,"SABnzbd username"],"(blank for none)":[null,"(en blanco para ninguno)"],"SABnzbd password":[null,"Contraseña de SABnzbd"],"SABnzbd API key":[null,"API key de SABnzbd"],"locate at... SABnzbd Config -> General -> API Key":[null,""],"Use SABnzbd category":[null,""],"add downloads to this category (e.g. TV)":[null,""],"Use SABnzbd category (backlog episodes)":[null,""],"add downloads of old episodes to this category (e.g. TV)":[null,""],"Use SABnzbd category for anime":[null,""],"add anime downloads to this category (e.g. anime)":[null,""],"Use SABnzbd category for anime (backlog episodes)":[null,""],"add anime downloads of old episodes to this category (e.g. anime)":[null,""],"Use forced priority":[null,""],"enable to change priority from HIGH to FORCED":[null,""],"Black hole folder location":[null,""],"<b>.nzb</b> files are stored at this location for external software to find and use":[null,""],"Connect using HTTPS":[null,""],"enable Secure control in NZBGet and set the correct Secure Port here":[null,""],"NZBget host:port":[null,""],"(e.g. localhost:6789)":[null,""],"NZBget RPC host name and port number (not NZBgetweb!)":[null,""],"NZBget username":[null,""],"locate in nzbget.conf (default:nzbget)":[null,""],"NZBget password":[null,""],"locate in nzbget.conf (default:tegbzn6789)":[null,""],"Use NZBget category":[null,""],"send downloads marked this category (e.g. TV)":[null,""],"Use NZBget category (backlog episodes)":[null,""],"send downloads of old episodes marked this category (e.g. TV)":[null,""],"Use NZBget category for anime":[null,""],"send anime downloads marked this category (e.g. anime)":[null,""],"Use NZBget category for anime (backlog episodes)":[null,""],"send anime downloads of old episodes marked this category (e.g. anime)":[null,""],"NZBget priority":[null,"NZBget prioridad"],"Very low":[null,"Muy bajo"],"Low":[null,"Bajo"],"Very high":[null,"Muy alto"],"Force":[null,"Forzar"],"priority for daily snatches (no backlog)":[null,""],"Torrent host:port":[null,"Host: port de torrent"],"URL to your Synology DSM (e.g. http://localhost:5000/)":[null,""],"Client username":[null,"Nombre de usuario"],"Client password":[null,"Contraseña de cliente"],"Downloaded files location":[null,"Ubicación de los archivos descargados"],"where Synology Download Station will save downloaded files (blank for client default)":[null,""],"the destination has to be a shared folder for Synology DS":[null,""],"Click below to test":[null,"Haga clic para probar"],"How to handle Torrent search results.":[null,"Cómo manejar los resultados de búsqueda de Torrent."],"Search torrents":[null,"Buscar torrents"],"enable torrent search providers":[null,""],"Send .torrent files to":[null,"Enviar archivos .torrent a"],"<b>.torrent</b> files are stored at this location for external software to find and use":[null,""],"URL to your torrent client (e.g. http://localhost:8000/)":[null,""],"Torrent RPC URL":[null,"Url de RPC de torrent"],"the path without leading and trailing slashes (e.g. transmission)":[null,""],"Http Authentication":[null,"Autenticación http"],"Verify certificate":[null,"Verificar certificado"],"disable if you get \"Deluge: Authentication Error\" in your log":[null,""],"verify SSL certificates for HTTPS requests":[null,""],"Add label to torrent":[null,"Añadir etiqueta a torrent"],"(blank spaces are not allowed)":[null,"(no se permiten espacios en blanco)"],"label plugin must be enabled in Deluge clients":[null,""],"for QBitTorrent 3.3.1 and up":[null,""],"Add label to torrent for anime":[null,""],"for QBitTorrent 3.3.1 and up ":[null,""],"where <span id=\"torrent_client\">the torrent client</span> will save downloaded files (blank for client default)":[null,""],"the destination has to be a shared folder for Synology DS</span>":[null,""],"Minimum seeding time":[null,""],"time in hours":[null,""],"(default:'0' passes blank to client and '-1' passes nothing)":[null,""],"Start torrent paused":[null,"Iniciar torrent pausado"],"add .torrent to client but do <b style=\"font-weight:900\">not</b> start downloading":[null,""],"Allow high bandwidth":[null,""],"use high bandwidth allocation if priority is high":[null,""],"Test Connection":[null,""],"Windows Shares":[null,""],"Defines your existing windows shares so that we can add them to the browse dialog":[null,""],"Share #{number}":[null,""],"Share label":[null,""],"Hostname or IP":[null,""],"Share path":[null,""],"Subtitles Search":[null,""],"Subtitles Plugin":[null,""],"Plugin Settings":[null,""],"Settings that dictate how SickRage handles subtitles search results.":[null,""],"Search Subtitles":[null,""],"Subtitle Languages":[null,""],"Subtitle Directory":[null,""],"the directory where SickRage should store your <i>Subtitles</i> files.":[null,""],"leave empty if you want store subtitle in episode path.":[null,""],"Subtitle Find Frequency":[null,""],"time in hours between scans (default: 1)":[null,""],"Include Specials":[null,""],"include the show's specials when searching for subtitles?":[null,""],"Perfect matches":[null,""],"only download subtitles that match: release group, video codec, audio codec and resolution":[null,""],"if disabled you may get out of sync subtitles":[null,""],"Subtitles History":[null,""],"log downloaded Subtitle on History page?":[null,""],"Subtitles Multi-Language":[null,""],"append language codes to subtitle filenames?":[null,""],"this option is required if you use multiple subtitle languages":[null,""],"Delete unwanted subtitles":[null,""],"enable to delete unwanted subtitle languages bundled with release":[null,""],"Embedded Subtitles":[null,""],"ignore subtitles embedded inside video file?":[null,""],"this will ignore <u>all</u> embedded subtitles for every video file!":[null,""],"Hearing Impaired Subtitles":[null,""],"download hearing impaired style subtitles?":[null,""],"See":[null,"Visita el"],"for a script arguments description.":[null,""],"Additional scripts separated by <b>|</b>.":[null,""],"Scripts are called after each episode has searched and downloaded subtitles.":[null,""],"For any scripted languages, include the interpreter executable before the script. See the following example":[null,""],"For Windows:":[null,""],"For Linux / OS X:":[null,""],"Subtitle Providers":[null,""],"Check off and drag the plugins into the order you want them to be used.":[null,""],"At least one plugin is required.":[null,""]," Web-scraping plugin":[null,""],"Provider Settings":[null,""],"Set user and password for each provider":[null,""],"User Name":[null,""],"Change Show":[null,""],"Prev Show":[null,""],"Next Show":[null,""],"Jump to Season":[null,""],"Specials":[null,""],"Poster for":[null,""],"Stars":[null,""],"minutes":[null,""],"View other popular {genre} shows on trakt.tv.":[null,""],"View other popular {imdbgenre} shows on IMDB.":[null,""],"Allowed":[null,"Permitido"],"Preferred":[null,"Preferido"],"Originally Airs":[null,"Emisión original"],"Show Status":[null,"Estado de la emisión"],"Default EP Status":[null,"Estado por defecto del EP"],"Location":[null,"Dirección"],"Missing":[null,""],"Scene Name":[null,""],"Required Words":[null,""],"Ignored Words":[null,""],"Size":[null,"Tamaño"],"Info Language":[null,""],"Subtitles SR Metadata":[null,""],"Season Folders":[null,""],"Paused":[null,""],"Air-by-Date":[null,""],"Sports":[null,""],"DVD Order":[null,""],"Scene Numbering":[null,""],"Select Filtered Episodes":[null,""],"Clear All":[null,""],"Change selected episodes to":[null,""],"Select Columns":[null,"Seleccione las columnas"],"NFO":[null,""],"TBN":[null,""],"Episode":[null,"Episodio"],"Absolute":[null,""],"Scene":[null,"Escena"],"Scene Absolute":[null,""],"File Name":[null,""],"Airdate":[null,"Fecha de estreno"],"Download":[null,""],"Change the value here if scene numbering differs from the indexer episode numbering":[null,""],"Change the value here if scene absolute numbering differs from the indexer absolute numbering":[null,""],"Manual Search":[null,""],"Do you want to mark this episode as failed?":[null,""],"The episode release name will be added to the failed history, preventing it to be downloaded again.":[null,""],"Do you want to include the current episode quality in the search?":[null,""],"Choosing No will ignore any releases with the same episode quality as the one currently downloaded/snatched.":[null,""],"Download subtitle":[null,""],"Do you want to re-download the subtitle for this language?":[null,""],"It will overwrite your current subtitle":[null,""],"Format":[null,""],"Advanced":[null,""],"Main Settings":[null,""],"Show Location":[null,""],"Preferred Quality":[null,"Calidad preferida"],"Default Episode Status":[null,"Estado por defecto del episodio"],"this will set the status for future episodes.":[null,""],"this only applies to episode filenames and the contents of metadata files.":[null,""],"search for subtitles":[null,""],"Use SR Metdata":[null,""],"use SickRage metadata when searching for subtitle, this will override the autodiscovered metadata":[null,""],"pause this show (SickRage will not download episodes)":[null,""],"Format Settings":[null,""],"Air by date":[null,""],"check if the show is released as Show.03.02.2010 rather than Show.S02E03.":[null,""],"in case of an air date conflict between regular and special episodes, the later will be ignored.":[null,""],"check if the show is Anime and episodes are released as Show.265 rather than Show.S02E03":[null,""],"check if the show is a sporting or MMA event released as Show.03.02.2010 rather than Show.S02E03":[null,""],"Season folders":[null,""],"group episodes by season folder (uncheck to store in a single folder)":[null,""],"search by scene numbering (uncheck to search by indexer numbering)":[null,""],"use the DVD order instead of the air order":[null,""],"a \"Force Full Update\" is necessary, and if you have existing episodes you need to sort them manually.":[null,""],"comma-separated <i>e.g. \"word1,word2,word3</i>\"":[null,""],"search results with one or more words from this list will be ignored.":[null,""],"e.g. \"word1,word2,word3\"":[null,""],"search results with no words from this list will be ignored.":[null,""],"Scene Exception":[null,""],"this will affect episode search on NZB and torrent providers.":[null,""],"this list appends to the original show name.":[null,""],"WARNING logs":[null,""],"ERROR logs":[null,""],"There are no events to display.":[null,""],"Limit":[null,"Límite"],"Layout":[null,"Diseño"],"HistoryLayout":[null,""],"Compact":[null,""],"Detailed":[null,""],"Time":[null,""],"Provider":[null,""],"Missing Provider":[null,""],"missing provider":[null,""],"Directory":[null,""],"Show Name (tvshow.nfo)":[null,""],"Indexer":[null,""],"Enter the folder containing the episode":[null,""],"Process Method to be used":[null,""],"Copy":[null,""],"Move":[null,""],"Hard Link":[null,""],"Symbolic Link":[null,""],"Symbolic Link Reversed":[null,""],"Force already Post Processed Dir/Files":[null,""],"Mark Dir/Files as priority download":[null,""],"(Check it to replace the file even if it exists at higher quality)":[null,""],"Delete files and folders":[null,""],"(Check it to delete files and folders like auto processing)":[null,""],"Don't use processing queue":[null,""],"(If checked this will return the result of the process here, but may be slow!)":[null,""],"Mark download as failed":[null,""],"Process":[null,""],"Download subtitles for this show?":[null,""],"use SickRage metadata when searching for subtitle, <br />this will override the autodiscovered metadata":[null,""],"Status for previously aired episodes":[null,""],"Status for all future episodes":[null,""],"Group episodes by season folder?":[null,""],"Is this show an Anime?":[null,""],"Is this show scene numbered?":[null,""],"Save Defaults":[null,""],"Use current values as the defaults":[null,""],"<p>Select your preferred fansub groups from the <b>Available Groups</b> and add them to the <b>Whitelist</b>. Add groups to the <b>Blacklist</b> to ignore them.</p>\n <p>The <b>Whitelist</b> is checked <i>before</i> the <b>Blacklist</b>.</p>\n <p>Groups are shown as <b>Name</b> | <b>Rating</b> | <b>Number of subbed episodes</b>.</p>\n <p>You may also add any fansub group not listed to either list manually.</p>\n <p>When doing this please note that you can only use groups listed on anidb for this anime.\n <br>If a group is not listed on anidb but subbed this anime, please correct anidb's data.</p>":[null,""],"Whitelist":[null,"Lista blanca"],"Available Groups":[null,"Grupos disponibles"],"Add to Whitelist":[null,"Añadir a la lista blanca"],"Add to Blacklist":[null,"Añadir a la lista negra"],"Blacklist":[null,"Lista negra"],"Custom Group":[null,""],"Allowed Quality:":[null,"Calidad permitida:"],"Preferred Quality:":[null,"Calidad preferida:"],"Filter Show Name":[null,""],"Root":[null,""],"All":[null,"Todo"],"Clear Filter(s)":[null,""],"Poster":[null,"Poster"],"Small Poster":[null,"Póster pequeño"],"Banner":[null,"Cartel"],"Simple":[null,""],"Next Episode":[null,"Siguiente episodio"],"Progress":[null,""],"Direction":[null,""],"Ascending":[null,""],"Descending":[null,""],"Poster Size":[null,"Tamaño del póster"],"Continuing":[null,"Continúa"],"Ended":[null,""],"Total":[null,""],"Invalid date":[null,""],"No Network":[null,""],"Next Ep":[null,"Siguiente episodio"],"Prev Ep":[null,""],"Show":[null,"Series"],"Downloads":[null,""],"Active":[null,""],"loading":[null,""],"<p><b><u>Preferred</u></b> qualities will replace those in <b><u>allowed</u></b>, even if they are lower.</p>":[null,""],"New":[null,"Nuevo"],"Set as Default":[null,"Definir por defecto"],"Remember me":[null,"Recuérdamelo"],"Edit Selected":[null,"Editar seleccionados"],"Subtitle":[null,"Subtítulo"],"Default Ep Status":[null,""],"Update":[null,"Actualiza"],"Rescan":[null,"Reescanea"],"Rename":[null,"Renombra"],"Search Subtitle":[null,"Busca subtítulo"],"Force Metadata Regen":[null,""],"Snatched (Allowed)":[null,""],"Jump to Show":[null,"Salta a la serie"],"Force Backlog":[null,"Fuerza backlog"],"Manage episodes with status":[null,"Gestionar episodios con estado"],"Manage":[null,"Gestión"],"None of your episodes have status":[null,"Ninguno de sus episodios tiene estado"],"Shows containing":[null,""],"episodes":[null,"capítulos"],"Set checked shows/episodes to":[null,"Define series/capítulos marcados como"],"Go":[null,"Ir"],"Select all":[null,"Seleccionar todo"],"Clear all":[null,"Limpia todo"],"Release":[null,""],"Backlog Search":[null,""],"Not in progress":[null,"No en progreso"],"In Progress":[null,"En progreso"],"Daily Search":[null,"Búsqueda diaria"],"Find Propers Search":[null,""],"Propers search disabled":[null,""],"Subtitle Search":[null,"Buscar subtítulo"],"Subtitle search disabled":[null,"Buscar subtítulos desactivado"],"Search Queue":[null,""],"pending items":[null,""],"Daily":[null,"Diario"],"Manual":[null,"Manual"],"Changing any settings marked with (<span class=\"separator\">*</span>) will force a refresh of the selected shows.":[null,""],"Selected Shows":[null,""],"Root Directories":[null,"Directorio principal"],"Current":[null,""],"Keep":[null,"Mantener"],"Custom":[null,""],"Group episodes by season folder (set to \"No\" to store in a single folder).":[null,"Agrupar capítulos por carpeta de temporada (elige \"No\" para almacenarlos en una carpeta única)."],"Pause these shows (SickRage will not download episodes).":[null,"Pausa esta serie (SickRage no descargará capítulos)."],"This will set the status for future episodes.":[null,""],"Search by scene numbering (set to \"No\" to search by indexer numbering).":[null,"Buscar por número de escena (marca \"No\" para buscar por número)."],"Set if these shows are Anime and episodes are released as Show.265 rather than Show.S02E03":[null,"Selecciona si esta series es Anime y los capítulos han sido publicados como Show.265 en vez de Show.S02E03"],"Set if these shows are sporting or MMA events released as Show.03.02.2010 rather than Show.S02E03.":[null,""],"In case of an air date conflict between regular and special episodes, the later will be ignored.":[null,""],"Set if these shows are released as Show.03.02.2010 rather than Show.S02E03.":[null,""],"Search for subtitles.":[null,"Buscar por subtítulos."],"All of your episodes have {subsLanguage} subtitles.":[null,"Todos tus capítulos tienen subtítulos en {subsLanguage}."],"Manage episodes without":[null,"Gestionar episodios sin"],"Episodes without {subsLanguage} subtitles.":[null,"Capítulos sin subtítulo en {subsLanguage}."],"Episodes without {subtitleLanguage} (undefined) subtitles.":[null,""],"Download missed subtitles for selected episodes":[null,""],"Performing Restart":[null,""],"Waiting for SickRage to shut down":[null,"Esperando a que SickRage se apague"],"Waiting for SickRage to start again":[null,"Esperando a que SickRage empieze de nuevo"],"Loading the default page":[null,"Cargando la página por defecto"],"Error: The restart has timed out, perhaps something prevented SickRage from starting again?":[null,"Error: El tiempo de reinicio a expirado, ¿puede que algo impide que SickRage empiece otra vez?"],"Key":[null,"Llave"],"Missed":[null,"No encontrados"],"Today":[null,"Hoy"],"Soon":[null,"Pronto"],"Later":[null,"Más tarde"],"Subscribe":[null,"Suscribirse"],"Date":[null,"Fecha"],"View Paused":[null,"Ver pausados"],"Hidden":[null,"Ocultos"],"Shown":[null,"Visibles"],"Calendar":[null,"Calendario"],"List":[null,"Lista"],"Ends":[null,"Finaliza"],"Next Ep Name":[null,"Nombre del siguiente episodio"],"Run time":[null,"Tiempo de ejecución"],"Indexers":[null,""],"No shows for this day":[null,"No hay series para esa fecha"],"Airs":[null,"Se estrena"],"Plot":[null,"Argumento"],"Show Update":[null,"Actualiza la serie"],"Version Check":[null,"Comprueba la versión"],"Proper Finder":[null,""],"Post Process":[null,""],"Subtitles Finder":[null,""],"Scheduler":[null,""],"Alive":[null,""],"Start Time":[null,""],"Cycle Time":[null,""],"Next Run":[null,""],"Last Run":[null,""],"Silent":[null,""],"True":[null,"Cierto"],"N/A":[null,"N/D"],"Show id":[null,"Id Serie"],"Show name":[null,"Nombre Serie"],"Priority":[null,"Prioridad"],"Added":[null,"Añadido"],"Queue type":[null,"Tipo de cola"],"LOW":[null,"BAJO"],"NORMAL":[null,"NORMAL"],"HIGH":[null,"ALTO"],"Disk Space":[null,"Espacio en disco"],"Free space":[null,"Espacio libre"],"TV Download Directory":[null,"Directorio de descarga de TV"],"Media Root Directories":[null,"Directorios raíz multimedia"],"Preview of the proposed name changes":[null,""],"All Seasons":[null,"Todas las temporadas"],"select all":[null,""],"Rename Selected":[null,"Renombra seleccionados"],"Cancel Rename":[null,"Cancelar renombrado"],"Old Location":[null,"Ubicación antigua"],"New Location":[null,"Ubicación nueva"],"Trakt API did not return any results, please check your config.":[null,"Trakt API no devolvió resultados, por favor comprueba tu configuración."],"votes":[null,"votos"],"Remove Show":[null,"Borrar Serie"],"Level":[null,""],"Filter":[null,""],"All non-absolute folder locations are relative to ":[null,"Todas las rutas No absolutas son relativas a "],"Manual Post-Processing":[null,"Post-Procesado manual"],"Episode Status Management":[null,"Gestionar estado de episodios"],"Update PLEX":[null,"Actualizar PLEX"],"Update KODI":[null,"Acualizar KODI"],"Update Emby":[null,"Actualizar Emby"],"Manage Torrents":[null,"Gestionar Torrents"],"Missed Subtitle Management":[null,"Gestionar subtítulos faltantes"],"Help & Info":[null,"Ayuda & Información"],"Backup & Restore":[null,"Backup & Restaurar"],"Tools":[null,"Herramientas"],"Support SickRage":[null,"Soporte SickRage"],"View Errors":[null,"Ver errores"],"View Warnings":[null,"Ver avisos"],"View Log":[null,"Ver registro"],"Check For Updates":[null,"Buscar actualizaciones"],"Restart":[null,"Reiniciar"],"Shutdown":[null,"Apagar"],"Logout":[null,"Cerrar Sesión"],"Server Status":[null,"Estado del servidor"],"View overview of snatched episodes":[null,"Ver resumen de los capítulos buscados"],"Episodes Downloaded":[null,"Capítulos descargados"],"Memory used":[null,"Memoria utilizada"],"Load time":[null,"Tiempo de carga"],"Branch":[null,"Rama"],"Now":[null,"Ahora"]}}}} \ No newline at end of file diff --git a/locale/es_ES/LC_MESSAGES/messages.mo b/locale/es_ES/LC_MESSAGES/messages.mo index 8665fc88dc1f5bcc0c9bb370aa2c9942e358685c..0cd1226cba58cf1a28461aae14f3fcc247c94a2c 100644 Binary files a/locale/es_ES/LC_MESSAGES/messages.mo and b/locale/es_ES/LC_MESSAGES/messages.mo differ diff --git a/locale/es_ES/LC_MESSAGES/messages.po b/locale/es_ES/LC_MESSAGES/messages.po index af57b7a29c71b7dda644340c43fac79deec3c3b4..ab4353f8ceb0e541d4a9da0ede70329e95ae782d 100644 --- a/locale/es_ES/LC_MESSAGES/messages.po +++ b/locale/es_ES/LC_MESSAGES/messages.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: sickrage\n" "Report-Msgid-Bugs-To: miigotu@gmail.com\n" -"POT-Creation-Date: 2017-03-25 09:28-0700\n" -"PO-Revision-Date: 2017-03-25 12:30-0400\n" +"POT-Creation-Date: 2017-03-28 09:10-0700\n" +"PO-Revision-Date: 2017-03-28 12:13-0400\n" "Last-Translator: miigotu <miigotu@gmail.com>\n" "Language-Team: Spanish\n" "MIME-Version: 1.0\n" @@ -90,7 +90,7 @@ msgid "Biography" msgstr "Biografía" #: gui/slick/views/config_general.mako:78 gui/slick/views/layouts/main.mako:145 -#: sickbeard/__init__.py:79 sickbeard/webserve.py:3807 +#: sickbeard/__init__.py:79 sickbeard/webserve.py:3778 msgid "History" msgstr "Historial" @@ -103,7 +103,7 @@ msgid "Western" msgstr "Oeste" #: gui/slick/views/config_general.mako:79 gui/slick/views/layouts/main.mako:221 -#: sickbeard/__init__.py:80 sickbeard/webserve.py:2385 +#: sickbeard/__init__.py:80 sickbeard/webserve.py:2384 msgid "News" msgstr "Noticias" @@ -238,6 +238,34 @@ msgstr "Ignorado" msgid "Subtitled" msgstr "Subtitulado" +#: sickbeard/helpers.py:1887 +msgid "For best results please set the Download Station alias as" +msgstr "Para obtener mejores resultados por favor configurar el alias de la Estación de Descarga como" + +#: sickbeard/helpers.py:1888 +msgid "You can check this setting in the Synology DSM" +msgstr "Puede comprobar este ajuste en el Synology DSM" + +#: sickbeard/helpers.py:1888 sickbeard/helpers.py:1890 +msgid "Control Panel" +msgstr "Panel de Control" + +#: sickbeard/helpers.py:1888 +msgid "Application Portal" +msgstr "Portal de aplicaciones" + +#: sickbeard/helpers.py:1889 +msgid "Make sure you allow DSM to be embedded with iFrames too in" +msgstr "Asegúrese de permitir que DSM esté integrado en iFrames" + +#: sickbeard/helpers.py:1890 +msgid "DSM Settings" +msgstr "Ajustes DSM" + +#: sickbeard/helpers.py:1890 +msgid "Security" +msgstr "Seguridad" + #: sickbeard/logger.py:474 msgid "<No Filter>" msgstr "<Sin filtros>" @@ -308,15 +336,15 @@ msgstr "Comprobar Trakt" msgid "Event" msgstr "Evento" -#: sickbeard/logger.py:491 sickbeard/webserve.py:1339 sickbeard/webserve.py:1342 -#: sickbeard/webserve.py:1520 sickbeard/webserve.py:1529 sickbeard/webserve.py:1717 -#: sickbeard/webserve.py:1728 sickbeard/webserve.py:1751 sickbeard/webserve.py:1764 -#: sickbeard/webserve.py:1769 sickbeard/webserve.py:1785 sickbeard/webserve.py:1790 -#: sickbeard/webserve.py:1854 sickbeard/webserve.py:1857 sickbeard/webserve.py:1863 -#: sickbeard/webserve.py:1866 sickbeard/webserve.py:1873 sickbeard/webserve.py:1876 -#: sickbeard/webserve.py:1899 sickbeard/webserve.py:1997 sickbeard/webserve.py:2002 -#: sickbeard/webserve.py:2007 sickbeard/webserve.py:2036 sickbeard/webserve.py:2040 -#: sickbeard/webserve.py:2045 +#: sickbeard/logger.py:491 sickbeard/webserve.py:1338 sickbeard/webserve.py:1341 +#: sickbeard/webserve.py:1519 sickbeard/webserve.py:1528 sickbeard/webserve.py:1716 +#: sickbeard/webserve.py:1727 sickbeard/webserve.py:1750 sickbeard/webserve.py:1763 +#: sickbeard/webserve.py:1768 sickbeard/webserve.py:1784 sickbeard/webserve.py:1789 +#: sickbeard/webserve.py:1853 sickbeard/webserve.py:1856 sickbeard/webserve.py:1862 +#: sickbeard/webserve.py:1865 sickbeard/webserve.py:1872 sickbeard/webserve.py:1875 +#: sickbeard/webserve.py:1898 sickbeard/webserve.py:1996 sickbeard/webserve.py:2001 +#: sickbeard/webserve.py:2006 sickbeard/webserve.py:2035 sickbeard/webserve.py:2039 +#: sickbeard/webserve.py:2044 msgid "Error" msgstr "Error" @@ -333,6 +361,7 @@ msgstr "Hilo" msgid "Main" msgstr "Principal" +#: gui/slick/js/ajaxEpSearch.js:146 gui/slick/js/ajaxEpSearch.js:147 #: gui/slick/views/inc_home_showList.mako:27 sickbeard/show_queue.py:298 msgid "Loading" msgstr "" @@ -372,867 +401,835 @@ msgstr "Copia de seguridad de la configuración, fallida. Se cancela la actualiz msgid "No update needed" msgstr "No es necesario actualizar" -#: sickbeard/webserve.py:170 +#: sickbeard/webserve.py:171 msgid "Mako Error" msgstr "Error de Mako" -#: sickbeard/webserve.py:195 +#: sickbeard/webserve.py:196 msgid "Oops" msgstr "Ups" -#: sickbeard/webserve.py:197 +#: sickbeard/webserve.py:198 msgid "Wrong API key used" msgstr "Clave API usada incorrecta" -#: gui/slick/views/login.mako:34 sickbeard/webserve.py:302 +#: gui/slick/views/login.mako:34 sickbeard/webserve.py:303 msgid "Login" msgstr "Iniciar Sesión" -#: sickbeard/webserve.py:406 +#: sickbeard/webserve.py:392 msgid "API Key not generated" msgstr "Clave API no generada" -#: sickbeard/webserve.py:409 +#: sickbeard/webserve.py:395 msgid "API Builder" msgstr "Constructor API" #: gui/slick/views/config_general.mako:77 gui/slick/views/layouts/main.mako:141 -#: sickbeard/webserve.py:512 +#: sickbeard/webserve.py:498 msgid "Schedule" msgstr "Programación" -#: sickbeard/webserve.py:610 +#: sickbeard/webserve.py:609 msgid "Test 1" msgstr "Prueba 1" -#: sickbeard/webserve.py:610 +#: sickbeard/webserve.py:609 msgid "This is test number 1" msgstr "Esta es la prueba número 1" -#: sickbeard/webserve.py:611 +#: sickbeard/webserve.py:610 msgid "Test 2" msgstr "Prueba 2" -#: sickbeard/webserve.py:611 +#: sickbeard/webserve.py:610 msgid "This is test number 2" msgstr "Esta es la prueba número 2" -#: sickbeard/webserve.py:634 +#: sickbeard/webserve.py:633 msgid "You're using the {branch} branch. Please use 'master' unless specifically asked" msgstr "Estás usando la rama {branch}. Por favor usa 'master' a menos que lo sobreescribas a propósito" -#: sickbeard/webserve.py:698 sickbeard/webserve.py:703 +#: sickbeard/webserve.py:697 sickbeard/webserve.py:702 msgid "Invalid show parameters" msgstr "Datos de serie erróneos" -#: sickbeard/webserve.py:710 +#: sickbeard/webserve.py:709 msgid "Invalid parameters" msgstr "Parámetros no válidos" -#: sickbeard/webserve.py:713 sickbeard/webserve.py:1899 +#: sickbeard/webserve.py:712 sickbeard/webserve.py:1898 msgid "Episode couldn't be retrieved" msgstr "El episodio no se pudo conseguir" -#: sickbeard/webserve.py:759 sickbeard/webserve.py:1268 sickbeard/webserve.py:1297 +#: sickbeard/webserve.py:758 sickbeard/webserve.py:1267 sickbeard/webserve.py:1296 msgid "Home" msgstr "Inicio" -#: gui/slick/views/layouts/main.mako:127 sickbeard/webserve.py:759 +#: gui/slick/views/layouts/main.mako:127 sickbeard/webserve.py:758 msgid "Show List" msgstr "Lista de series" -#: sickbeard/webserve.py:807 +#: sickbeard/webserve.py:806 msgid "Error: Unsupported Request. Send jsonp request with 'callback' variable in the query string." msgstr "Error: Solicitud no soportada. Envíe la petición jsonp con la variable 'callback' en la secuencia de consulta." -#: sickbeard/webserve.py:851 +#: sickbeard/webserve.py:850 msgid "Success. Connected and authenticated" msgstr "Éxito. Conectado y autenticado" -#: sickbeard/webserve.py:853 +#: sickbeard/webserve.py:852 msgid "Authentication failed. SABnzbd expects" msgstr "La autenticación falló. SABnzbd espera" -#: sickbeard/webserve.py:853 +#: sickbeard/webserve.py:852 msgid "as authentication method" msgstr "como método de autenticación" -#: sickbeard/webserve.py:855 +#: sickbeard/webserve.py:854 msgid "Unable to connect to host" msgstr "No se puede conectar al host" -#: sickbeard/webserve.py:876 +#: sickbeard/webserve.py:875 msgid "SMS sent successfully" msgstr "SMS enviado con éxito" -#: sickbeard/webserve.py:878 +#: sickbeard/webserve.py:877 msgid "Problem sending SMS: {message}" msgstr "Problema al enviar SMS: {message}" -#: sickbeard/webserve.py:885 +#: sickbeard/webserve.py:884 msgid "Telegram notification succeeded. Check your Telegram clients to make sure it worked" msgstr "Notificación de telegram tuvo éxito. Compruebe su telegram para asegurarse de que funcionó" -#: sickbeard/webserve.py:887 +#: sickbeard/webserve.py:886 msgid "Error sending Telegram notification: {message}" msgstr "Error enviando notificación de Telegram: {message}" -#: sickbeard/webserve.py:894 +#: sickbeard/webserve.py:893 msgid "join notification succeeded. Check your join clients to make sure it worked" msgstr "Notificación a Join correcta. Compruebe tus clientes Join para asegurarse de que ha funcionado" -#: sickbeard/webserve.py:896 +#: sickbeard/webserve.py:895 msgid "Error sending join notification: {message}" msgstr "Error enviando notificación de unión: {message}" -#: sickbeard/webserve.py:906 +#: sickbeard/webserve.py:905 msgid " with password" msgstr " con contraseña" -#: sickbeard/webserve.py:908 +#: sickbeard/webserve.py:907 msgid "Registered and Tested growl successfully {growl_host}" msgstr "Growl registrado y probado con éxito {growl_host}" -#: sickbeard/webserve.py:910 +#: sickbeard/webserve.py:909 msgid "Registration and Testing of growl failed {growl_host}" msgstr "Fallo de registro y prueba de growl {growl_host}" -#: sickbeard/webserve.py:917 +#: sickbeard/webserve.py:916 msgid "Test prowl notice sent successfully" msgstr "Notificación de prueba de prowl enviada correctamente" -#: sickbeard/webserve.py:919 +#: sickbeard/webserve.py:918 msgid "Test prowl notice failed" msgstr "Fallo al enviar notificación de prueba de prowl" -#: sickbeard/webserve.py:926 +#: sickbeard/webserve.py:925 msgid "Boxcar2 notification succeeded. Check your Boxcar2 clients to make sure it worked" msgstr "Notificación de Boxcar2 exitosa. Compruebe sus clientes Boxcar2 para asegurarse de que ha funcionado" -#: sickbeard/webserve.py:928 +#: sickbeard/webserve.py:927 msgid "Error sending Boxcar2 notification" msgstr "Error al enviar la notificación de Boxcar2" -#: sickbeard/webserve.py:935 +#: sickbeard/webserve.py:934 msgid "Pushover notification succeeded. Check your Pushover clients to make sure it worked" msgstr "Notificación de Pushover exitosa. Compruebe sus clientes Pushover para asegurarse de que ha funcionado" -#: sickbeard/webserve.py:937 +#: sickbeard/webserve.py:936 msgid "Error sending Pushover notification" msgstr "Error al enviar la notificación de Pushover" -#: sickbeard/webserve.py:949 +#: sickbeard/webserve.py:948 msgid "Key verification successful" msgstr "Verificación de la clave exitosa" -#: sickbeard/webserve.py:951 +#: sickbeard/webserve.py:950 msgid "Unable to verify key" msgstr "No se pudo verificar la clave" -#: sickbeard/webserve.py:958 +#: sickbeard/webserve.py:957 msgid "Tweet successful, check your twitter to make sure it worked" msgstr "Tweet exitoso, compruebe su twitter para asegurarse de que ha funcionado" -#: sickbeard/webserve.py:960 +#: sickbeard/webserve.py:959 msgid "Error sending tweet" msgstr "Error al enviar tweet" -#: sickbeard/webserve.py:965 +#: sickbeard/webserve.py:964 msgid "Please enter a valid account sid" msgstr "Por favor Sid introduce una cuenta válida" -#: sickbeard/webserve.py:968 +#: sickbeard/webserve.py:967 msgid "Please enter a valid auth token" msgstr "Introduzca un token de autenticación válido" -#: sickbeard/webserve.py:971 +#: sickbeard/webserve.py:970 msgid "Please enter a valid phone sid" msgstr "Por favor Sid inserte un teléfono valido" -#: sickbeard/webserve.py:974 +#: sickbeard/webserve.py:973 msgid "Please format the phone number as \"+1-###-###-####\"" msgstr "Por favor el formato para el número de teléfono es \"+1-###-###-####\"" -#: sickbeard/webserve.py:978 +#: sickbeard/webserve.py:977 msgid "Authorization successful and number ownership verified" msgstr "Autorización correcta, eres el propietario verificado de este número." -#: sickbeard/webserve.py:980 +#: sickbeard/webserve.py:979 msgid "Error sending sms" msgstr "Error al enviar el SMS" -#: sickbeard/webserve.py:986 +#: sickbeard/webserve.py:985 msgid "Slack message successful" msgstr "Mensaje Slack satisfactorio" -#: sickbeard/webserve.py:988 +#: sickbeard/webserve.py:987 msgid "Slack message failed" msgstr "Mensaje Slack fallido" -#: sickbeard/webserve.py:994 +#: sickbeard/webserve.py:993 msgid "Discord message successful" msgstr "Mensaje Discord satisfactorio" -#: sickbeard/webserve.py:996 +#: sickbeard/webserve.py:995 msgid "Discord message failed" msgstr "Mensaje Discord fallido" -#: sickbeard/webserve.py:1006 +#: sickbeard/webserve.py:1005 msgid "Test KODI notice sent successfully to {kodi_host}" msgstr "Notificación de prueba de Kodi enviada correctamente a {kodi_host}" -#: sickbeard/webserve.py:1008 +#: sickbeard/webserve.py:1007 msgid "Test KODI notice failed to {kodi_host}" msgstr "Fallo al enviar la notificación de prueba de Kodi a {kodi_host}" -#: sickbeard/webserve.py:1023 +#: sickbeard/webserve.py:1022 msgid "Successful test notice sent to Plex Home Theater ... {plex_clients}" msgstr "Notificación de prueba enviada correctamente a Plex Home Theater ... {plex_clients}" -#: sickbeard/webserve.py:1025 +#: sickbeard/webserve.py:1024 msgid "Test failed for Plex Home Theater ... {plex_clients}" msgstr "Prueba fallida para Plex Home Theater ... {plex_clients}" -#: sickbeard/webserve.py:1028 +#: sickbeard/webserve.py:1027 msgid "Tested Plex Home Theater(s)" msgstr "Probado Plex Home Theater(s)" -#: sickbeard/webserve.py:1042 +#: sickbeard/webserve.py:1041 msgid "Successful test of Plex Media Server(s) ... {plex_servers}" msgstr "Prueba exitosa de Plex Media Server(s)... {plex_servers}" -#: sickbeard/webserve.py:1044 +#: sickbeard/webserve.py:1043 msgid "Test failed, No Plex Media Server host specified" msgstr "Prueba falló, no hay servidor Plex Media Server especificado" -#: sickbeard/webserve.py:1046 +#: sickbeard/webserve.py:1045 msgid "Test failed for Plex Media Server(s) ... {plex_servers}" msgstr "Prueba fallo para Plex Media Server(s) ... {plex_servers}" -#: sickbeard/webserve.py:1049 +#: sickbeard/webserve.py:1048 msgid "Tested Plex Media Server host(s)" msgstr "Probado servidor Plex Media Server(s)" -#: sickbeard/webserve.py:1057 +#: sickbeard/webserve.py:1056 msgid "Tried sending desktop notification via libnotify" msgstr "Probado enviar una notificación de escritorio a través de libnotify" -#: sickbeard/webserve.py:1066 +#: sickbeard/webserve.py:1065 msgid "Test notice sent successfully to {emby_host}" msgstr "Notificación de prueba enviada correctamente a {emby_host}" -#: sickbeard/webserve.py:1068 +#: sickbeard/webserve.py:1067 msgid "Test notice failed to {emby_host}" msgstr "Fallo al enviar la notificación de prueba a {emby_host}" -#: sickbeard/webserve.py:1076 +#: sickbeard/webserve.py:1075 msgid "Successfully started the scan update" msgstr "El escaneo de actualización comenzó con éxito" -#: sickbeard/webserve.py:1078 +#: sickbeard/webserve.py:1077 msgid "Test failed to start the scan update" msgstr "Prueba no pudo iniciar la actualización" -#: sickbeard/webserve.py:1097 +#: sickbeard/webserve.py:1096 msgid "Test notice sent successfully to {nmj2_host}" msgstr "Notificación de prueba enviada correctamente a {nmj2_host}" -#: sickbeard/webserve.py:1099 +#: sickbeard/webserve.py:1098 msgid "Test notice failed to {nmj2_host}" msgstr "Fallo al enviar la notificación de prueba a {nmj2_host}" -#: sickbeard/webserve.py:1119 +#: sickbeard/webserve.py:1118 msgid "Trakt Authorized" msgstr "Trakt autorizado" -#: sickbeard/webserve.py:1120 +#: sickbeard/webserve.py:1119 msgid "Trakt Not Authorized!" msgstr "Trakt no autorizado!" -#: sickbeard/webserve.py:1184 +#: sickbeard/webserve.py:1183 msgid "Test email sent successfully! Check inbox." msgstr "Email de prueba enviado correctamente! Comprueba tu bandeja de entrada." -#: sickbeard/webserve.py:1186 +#: sickbeard/webserve.py:1185 msgid "ERROR: {last_error}" msgstr "ERROR: {last_error}" -#: sickbeard/webserve.py:1193 +#: sickbeard/webserve.py:1192 msgid "Test NMA notice sent successfully" msgstr "Aviso NMA de prueba enviado con éxito" -#: sickbeard/webserve.py:1195 +#: sickbeard/webserve.py:1194 msgid "Test NMA notice failed" msgstr "El aviso NMA de prueba falló" -#: sickbeard/webserve.py:1202 +#: sickbeard/webserve.py:1201 msgid "Pushalot notification succeeded. Check your Pushalot clients to make sure it worked" msgstr "Notificación Pushalot correcta. Comprueba tus clientes Pushalot para asegurarte de que ha funcionado" -#: sickbeard/webserve.py:1204 +#: sickbeard/webserve.py:1203 msgid "Error sending Pushalot notification" msgstr "Error al enviar la notificación de Pushalot" -#: sickbeard/webserve.py:1211 +#: sickbeard/webserve.py:1210 msgid "Pushbullet notification succeeded. Check your device to make sure it worked" msgstr "Notificación Pushbullet correcta. Comprueba tu dispositivo para asegurarte de que ha funcionado" -#: sickbeard/webserve.py:1213 sickbeard/webserve.py:1223 sickbeard/webserve.py:1232 +#: sickbeard/webserve.py:1212 sickbeard/webserve.py:1222 sickbeard/webserve.py:1231 msgid "Error sending Pushbullet notification" msgstr "Error al enviar la notificación de Pushbullet" #: gui/slick/views/displayShow.mako:436 gui/slick/views/inc_home_showList.mako:174 -#: gui/slick/views/manage.mako:49 sickbeard/webserve.py:1249 +#: gui/slick/views/manage.mako:49 sickbeard/webserve.py:1248 msgid "Status" msgstr "Estado" -#: sickbeard/webserve.py:1268 sickbeard/webserve.py:1297 +#: sickbeard/webserve.py:1267 sickbeard/webserve.py:1296 msgid "Restarting SickRage" msgstr "Reiniciar SickRage" -#: sickbeard/webserve.py:1300 +#: sickbeard/webserve.py:1299 msgid "Update Failed" msgstr "La actualización falló" -#: sickbeard/webserve.py:1301 +#: sickbeard/webserve.py:1300 msgid "Update wasn't successful, not restarting. Check your log for more information." msgstr "La actualización no tuvo éxito, no se reiniciará. Comprueba tu registro para obtener más información." -#: sickbeard/webserve.py:1308 +#: sickbeard/webserve.py:1307 msgid "Checking out branch" msgstr "Haciendo checkout de la rama" -#: sickbeard/webserve.py:1311 +#: sickbeard/webserve.py:1310 msgid "Already on branch" msgstr "Ya en la rama" -#: sickbeard/webserve.py:1339 +#: sickbeard/webserve.py:1338 msgid "Invalid show ID: {show}" msgstr "ID de show inválido: {show}" -#: sickbeard/webserve.py:1342 sickbeard/webserve.py:1871 sickbeard/webserve.py:2002 -#: sickbeard/webserve.py:2040 +#: sickbeard/webserve.py:1341 sickbeard/webserve.py:1870 sickbeard/webserve.py:2001 +#: sickbeard/webserve.py:2039 msgid "Show not in show list" msgstr "El show no está en la lista de shows" #: gui/slick/views/inc_rootDirs.mako:31 gui/slick/views/manage.mako:38 -#: gui/slick/views/manage_massEdit.mako:74 sickbeard/webserve.py:1358 -#: sickbeard/webserve.py:2027 +#: gui/slick/views/manage_massEdit.mako:74 sickbeard/webserve.py:1357 +#: sickbeard/webserve.py:2026 msgid "Edit" msgstr "Editar" -#: sickbeard/webserve.py:1368 +#: sickbeard/webserve.py:1367 msgid "This show is in the process of being downloaded - the info below is incomplete." msgstr "Esta serie está siendo descargada - la información de abajo es incompleta." -#: sickbeard/webserve.py:1371 +#: sickbeard/webserve.py:1370 msgid "The information on this page is in the process of being updated." msgstr "La información en esta página está en proceso de actualización." -#: sickbeard/webserve.py:1374 +#: sickbeard/webserve.py:1373 msgid "The episodes below are currently being refreshed from disk" msgstr "Los episodios siguientes estan siendo actualmente refrescados del disco" -#: sickbeard/webserve.py:1377 +#: sickbeard/webserve.py:1376 msgid "Currently downloading subtitles for this show" msgstr "Actualmente descargando subtítulos para esta serie" -#: sickbeard/webserve.py:1380 +#: sickbeard/webserve.py:1379 msgid "This show is queued to be refreshed." msgstr "Esta serie se pone en cola para actualizarse." -#: sickbeard/webserve.py:1383 +#: sickbeard/webserve.py:1382 msgid "This show is queued and awaiting an update." msgstr "Esta serie se pone en cola y en espera de una actualización." -#: sickbeard/webserve.py:1386 +#: sickbeard/webserve.py:1385 msgid "This show is queued and awaiting subtitles download." msgstr "Esta serie se pone en cola y esperando la descarga de subtítulos." -#: gui/slick/js/core.js:4081 sickbeard/webserve.py:1391 +#: gui/slick/js/core.js:4081 sickbeard/webserve.py:1390 msgid "Resume" msgstr "Continuar" #: gui/slick/js/core.js:4081 gui/slick/views/viewlogs.mako:12 -#: sickbeard/webserve.py:1393 +#: sickbeard/webserve.py:1392 msgid "Pause" msgstr "Pausar" #: gui/slick/views/editShow.mako:345 gui/slick/views/inc_blackwhitelist.mako:40 #: gui/slick/views/inc_blackwhitelist.mako:85 gui/slick/views/manage.mako:58 -#: gui/slick/views/manage_failedDownloads.mako:43 sickbeard/webserve.py:1395 +#: gui/slick/views/manage_failedDownloads.mako:43 sickbeard/webserve.py:1394 msgid "Remove" msgstr "Eliminar" -#: sickbeard/webserve.py:1396 +#: sickbeard/webserve.py:1395 msgid "Re-scan files" msgstr "Volver a escanear archivos" -#: sickbeard/webserve.py:1397 +#: sickbeard/webserve.py:1396 msgid "Force Full Update" msgstr "Forzar actualización completa" -#: sickbeard/webserve.py:1398 +#: sickbeard/webserve.py:1397 msgid "Update show in KODI" msgstr "Actualizar show en KODI" -#: sickbeard/webserve.py:1399 +#: sickbeard/webserve.py:1398 msgid "Update show in Emby" msgstr "Actualizar show en Emby" -#: sickbeard/webserve.py:1402 +#: sickbeard/webserve.py:1401 msgid "Hide specials" msgstr "Ocultar especiales" -#: sickbeard/webserve.py:1404 +#: sickbeard/webserve.py:1403 msgid "Show specials" msgstr "Mostrar especiales" -#: sickbeard/webserve.py:1406 sickbeard/webserve.py:2030 sickbeard/webserve.py:2031 +#: sickbeard/webserve.py:1405 sickbeard/webserve.py:2029 sickbeard/webserve.py:2030 msgid "Preview Rename" msgstr "Pre-visualizar Renombrado" -#: sickbeard/webserve.py:1409 +#: sickbeard/webserve.py:1408 msgid "Download Subtitles" msgstr "Descargar subtítulos" -#: sickbeard/webserve.py:1498 +#: sickbeard/webserve.py:1497 msgid "No scene exceptions" msgstr "Sin excepciones de escena" -#: sickbeard/webserve.py:1516 sickbeard/webserve.py:1764 sickbeard/webserve.py:1785 +#: sickbeard/webserve.py:1515 sickbeard/webserve.py:1763 sickbeard/webserve.py:1784 msgid "Invalid show ID" msgstr "ID de show inválido" -#: sickbeard/webserve.py:1525 sickbeard/webserve.py:1769 sickbeard/webserve.py:1790 +#: sickbeard/webserve.py:1524 sickbeard/webserve.py:1768 sickbeard/webserve.py:1789 msgid "Unable to find the specified show" msgstr "No se puede encontrar el show especificado" -#: sickbeard/webserve.py:1550 +#: sickbeard/webserve.py:1549 msgid "Unable to retreive Fansub Groups from AniDB." msgstr "Imposible recuperar los Fansub Groups de AniDB." -#: sickbeard/webserve.py:1559 sickbeard/webserve.py:1561 +#: sickbeard/webserve.py:1558 sickbeard/webserve.py:1560 msgid "Edit Show" msgstr "Editar serie" -#: sickbeard/webserve.py:1637 sickbeard/webserve.py:1671 +#: sickbeard/webserve.py:1636 sickbeard/webserve.py:1670 msgid "Unable to refresh this show: {error}" msgstr "No se ha podido recargar el show: {error}" -#: sickbeard/webserve.py:1663 +#: sickbeard/webserve.py:1662 msgid "New location <tt>{location}</tt> does not exist" msgstr "La nueva ubicación <tt>{location}</tt> no existe" -#: sickbeard/webserve.py:1688 +#: sickbeard/webserve.py:1687 msgid "Unable to update show: {error}" msgstr "No se ha podido actualizar el show: {error}" -#: sickbeard/webserve.py:1695 +#: sickbeard/webserve.py:1694 msgid "Unable to force an update on scene exceptions of the show." msgstr "No se puede forzar una actualización sobre las excepciones de escena de esta serie." -#: sickbeard/webserve.py:1702 +#: sickbeard/webserve.py:1701 msgid "Unable to force an update on scene numbering of the show." msgstr "No se puede forzar una actualización sobre los números de escena de esta seria." -#: sickbeard/webserve.py:1708 sickbeard/webserve.py:3540 +#: sickbeard/webserve.py:1707 sickbeard/webserve.py:3539 msgid "{num_errors:d} error{plural} while saving changes:" msgstr "{num_errors:d} error{plural} al guardar los cambios:" -#: sickbeard/webserve.py:1719 +#: sickbeard/webserve.py:1718 msgid "{show_name} has been {paused_resumed}" msgstr "{show_name} ha sido {paused_resumed}" -#: sickbeard/webserve.py:1719 +#: sickbeard/webserve.py:1718 msgid "resumed" msgstr "reanudado" -#: sickbeard/webserve.py:1719 +#: sickbeard/webserve.py:1718 msgid "paused" msgstr "pausado" -#: sickbeard/webserve.py:1731 +#: sickbeard/webserve.py:1730 msgid "{show_name} has been {deleted_trashed} {was_deleted}" msgstr "{show_name} ha sido {deleted_trashed} {was_deleted}" -#: sickbeard/webserve.py:1733 +#: sickbeard/webserve.py:1732 msgid "deleted" msgstr "borrado" -#: sickbeard/webserve.py:1733 +#: sickbeard/webserve.py:1732 msgid "trashed" msgstr "borrado" -#: sickbeard/webserve.py:1734 +#: sickbeard/webserve.py:1733 msgid "(media untouched)" msgstr "(medias intactos)" -#: sickbeard/webserve.py:1734 +#: sickbeard/webserve.py:1733 msgid "(with all related media)" msgstr "(con todos los medias relacionados)" -#: sickbeard/webserve.py:1755 +#: sickbeard/webserve.py:1754 msgid "Unable to refresh this show." msgstr "No se puede actualizar este programa." -#: sickbeard/webserve.py:1775 +#: sickbeard/webserve.py:1774 msgid "Unable to update this show." msgstr "Incapaz de actualizar esta serie." -#: sickbeard/webserve.py:1814 +#: sickbeard/webserve.py:1813 msgid "Library update command sent to KODI host(s)): {kodi_hosts}" msgstr "Comando de actualización de la biblioteca enviado a KODI host(s)): {kodi_hosts}" -#: sickbeard/webserve.py:1816 +#: sickbeard/webserve.py:1815 msgid "Unable to contact one or more KODI host(s)): {kodi_hosts}" msgstr "Incapaz de establecer conexión con uno o más clientes KODI: {kodi_hosts}" -#: sickbeard/webserve.py:1825 +#: sickbeard/webserve.py:1824 msgid "Library update command sent to Plex Media Server host: {plex_server}" msgstr "Comando de actualización de la biblioteca enviado a Plex Media Server host: {plex_server}" -#: sickbeard/webserve.py:1828 +#: sickbeard/webserve.py:1827 msgid "Unable to contact Plex Media Server host: {plex_server}" msgstr "Imposible contactarse con Plex Media Server host: {plex_server}" -#: sickbeard/webserve.py:1840 +#: sickbeard/webserve.py:1839 msgid "Library update command sent to Emby host: {emby_host}" msgstr "Comando de actualización de la biblioteca enviado a Emby host: {emby_host}" -#: sickbeard/webserve.py:1842 +#: sickbeard/webserve.py:1841 msgid "Unable to contact Emby host: {emby_host}" msgstr "Imposible contactar Emby host: {emby_host}" -#: sickbeard/webserve.py:1852 sickbeard/webserve.py:2036 +#: sickbeard/webserve.py:1851 sickbeard/webserve.py:2035 msgid "You must specify a show and at least one episode" msgstr "Debe especificar un show y al menos un episodio" -#: sickbeard/webserve.py:1861 +#: sickbeard/webserve.py:1860 msgid "Invalid status" msgstr "Estado no válido" -#: sickbeard/webserve.py:1954 +#: sickbeard/webserve.py:1953 msgid "Backlog was automatically started for the following seasons of <b>{show_name}</b>" msgstr "Inicio automatico de la busqueda de episodios antiguios para la serie <b>{show_name}</b>" #: gui/slick/views/displayShow.mako:74 gui/slick/views/displayShow.mako:79 -#: gui/slick/views/displayShow.mako:404 sickbeard/webserve.py:1961 -#: sickbeard/webserve.py:1980 +#: gui/slick/views/displayShow.mako:404 sickbeard/webserve.py:1960 +#: sickbeard/webserve.py:1979 msgid "Season" msgstr "Temporada" -#: sickbeard/webserve.py:1968 +#: sickbeard/webserve.py:1967 msgid "Backlog started" msgstr "Inicio de la busqueda de episodios antiguios" -#: sickbeard/webserve.py:1973 +#: sickbeard/webserve.py:1972 msgid "Retrying Search was automatically started for the following season of <b>{show_name}</b>" msgstr "Se ha iniciado automáticamente un reintento de búsqueda para próxima temporada de <b>{show_name}</b>" -#: sickbeard/webserve.py:1987 +#: sickbeard/webserve.py:1986 msgid "Retry Search started" msgstr "Iniciado reintento de búsqueda" -#: sickbeard/webserve.py:1997 +#: sickbeard/webserve.py:1996 msgid "You must specify a show" msgstr "Debe especificar una serie" -#: sickbeard/webserve.py:2007 sickbeard/webserve.py:2045 +#: sickbeard/webserve.py:2006 sickbeard/webserve.py:2044 msgid "Can't rename episodes when the show dir is missing." msgstr "No se puede renombrar los episodios si no se localiza el directorio de la serie." -#: sickbeard/webserve.py:2212 sickbeard/webserve.py:2233 +#: sickbeard/webserve.py:2211 sickbeard/webserve.py:2232 msgid "New subtitles downloaded: {new_subtitle_languages}" msgstr "Nuevos subtítulos descargados: {new_subtitle_languages}" -#: sickbeard/webserve.py:2215 sickbeard/webserve.py:2236 +#: sickbeard/webserve.py:2214 sickbeard/webserve.py:2235 msgid "No subtitles downloaded" msgstr "No se descargaron los subtítulos" #: gui/slick/views/config_general.mako:80 gui/slick/views/layouts/main.mako:222 -#: sickbeard/webserve.py:2363 +#: sickbeard/webserve.py:2362 msgid "IRC" msgstr "IRC" -#: sickbeard/webserve.py:2376 +#: sickbeard/webserve.py:2375 msgid "Could not load news from the repo. [Click here for news.md])({news_url})" msgstr "No se pudieron cargar noticias desde el repo. [Haga click aquí para news.md]) ({news_url})" -#: sickbeard/webserve.py:2383 sickbeard/webserve.py:2401 +#: sickbeard/webserve.py:2382 sickbeard/webserve.py:2400 msgid "The was a problem connecting to github, please refresh and try again" msgstr "Hubo un problema conectando con github, porfavor recargue y pruebe de nuevo" -#: sickbeard/webserve.py:2398 +#: sickbeard/webserve.py:2397 msgid "Could not load changes from the repo. [Click here for CHANGES.md]({changes_url})" msgstr "No se pudo cargar los cambios desde los repositorios. [Haga click aquí para CHANGES.md]({changes_url})" -#: gui/slick/views/layouts/main.mako:223 sickbeard/webserve.py:2403 +#: gui/slick/views/layouts/main.mako:223 sickbeard/webserve.py:2402 msgid "Changelog" msgstr "Registro de cambios" -#: gui/slick/views/layouts/main.mako:190 sickbeard/webserve.py:2413 -#: sickbeard/webserve.py:3855 sickbeard/webserve.py:4341 +#: gui/slick/views/layouts/main.mako:190 sickbeard/webserve.py:2412 +#: sickbeard/webserve.py:3826 sickbeard/webserve.py:4312 msgid "Post Processing" msgstr "Post-procesado" -#: gui/slick/views/layouts/main.mako:128 sickbeard/webserve.py:2445 +#: gui/slick/views/layouts/main.mako:128 sickbeard/webserve.py:2444 msgid "Add Shows" msgstr "Añadir serie" -#: sickbeard/webserve.py:2510 +#: sickbeard/webserve.py:2509 msgid "No folders selected." msgstr "No se ha seleccionado ningún directorio." -#: sickbeard/webserve.py:2632 +#: sickbeard/webserve.py:2631 msgid "New Show" msgstr "Nueva serie" -#: sickbeard/webserve.py:2647 +#: sickbeard/webserve.py:2646 msgid "Trending Shows" msgstr "Series populares" -#: sickbeard/webserve.py:2649 sickbeard/webserve.py:2772 +#: sickbeard/webserve.py:2648 sickbeard/webserve.py:2771 msgid "Popular Shows" msgstr "Series populares" -#: sickbeard/webserve.py:2651 sickbeard/webserve.py:2665 +#: sickbeard/webserve.py:2650 sickbeard/webserve.py:2664 msgid "Most Anticipated Shows" msgstr "Series más anticipadas" -#: sickbeard/webserve.py:2653 +#: sickbeard/webserve.py:2652 msgid "Most Collected Shows" msgstr "" -#: sickbeard/webserve.py:2655 +#: sickbeard/webserve.py:2654 msgid "Most Watched Shows" msgstr "" -#: sickbeard/webserve.py:2657 +#: sickbeard/webserve.py:2656 msgid "Most Played Shows" msgstr "" -#: sickbeard/webserve.py:2659 +#: sickbeard/webserve.py:2658 msgid "Recommended Shows" msgstr "" -#: gui/slick/views/addShows_trendingShows.mako:60 sickbeard/webserve.py:2661 +#: gui/slick/views/addShows_trendingShows.mako:60 sickbeard/webserve.py:2660 msgid "New Shows" msgstr "Nuevas series" -#: gui/slick/views/addShows_trendingShows.mako:61 sickbeard/webserve.py:2663 +#: gui/slick/views/addShows_trendingShows.mako:61 sickbeard/webserve.py:2662 msgid "Season Premieres" msgstr "Estrenos de la temporada" -#: sickbeard/webserve.py:2792 sickbeard/webserve.py:2793 +#: sickbeard/webserve.py:2791 sickbeard/webserve.py:2792 msgid "Existing Show" msgstr "Añadir serie existente" -#: sickbeard/webserve.py:2871 +#: sickbeard/webserve.py:2870 msgid "No root directories setup, please go back and add one." msgstr "No se ha configurado una carpeta raíz de instalación, por favor volver y agregar una." -#: sickbeard/webserve.py:2883 sickbeard/webserve.py:3002 +#: sickbeard/webserve.py:2882 sickbeard/webserve.py:3001 msgid "Show added" msgstr "Serie añadida" -#: sickbeard/webserve.py:2883 +#: sickbeard/webserve.py:2882 msgid "Adding the specified show {show_name}" msgstr "Añadiendo el show especificado {show_name}" -#: sickbeard/webserve.py:2924 +#: sickbeard/webserve.py:2923 msgid "Missing params, no Indexer ID or folder: {show_to_add} and {root_dir}/{show_path}" msgstr "Faltan parametros, ningún ID de indexador o carpeta: {show_to_add} y {root_dir}/{show_path}" -#: sickbeard/webserve.py:2933 +#: sickbeard/webserve.py:2932 msgid "Unknown error. Unable to add show due to problem with show selection." msgstr "Error desconocido. No se puede añadir la serie debido a problema con la selección de serie." -#: sickbeard/webserve.py:2957 sickbeard/webserve.py:2967 +#: sickbeard/webserve.py:2956 sickbeard/webserve.py:2966 msgid "Unable to add show" msgstr "No se pudo añadir la serie" -#: sickbeard/webserve.py:2957 +#: sickbeard/webserve.py:2956 msgid "Folder {show_dir} exists already" msgstr "El directorio {show_dir} ya existe" -#: sickbeard/webserve.py:2968 +#: sickbeard/webserve.py:2967 msgid "Unable to create the folder {show_dir}, can't add the show" msgstr "No se pudo crear el directorio {show_dir}, no se pudo añadir la serie" -#: sickbeard/webserve.py:3002 +#: sickbeard/webserve.py:3001 msgid "Adding the specified show into {show_dir}" msgstr "Añadiendo la serie especificada a {show_dir}" -#: sickbeard/webserve.py:3078 +#: sickbeard/webserve.py:3077 msgid "Shows Added" msgstr "Series añadidas" -#: sickbeard/webserve.py:3079 +#: sickbeard/webserve.py:3078 msgid "Automatically added {num_shows} from their existing metadata files" msgstr "Se han añadido automáticamente {num_shows} desde los archivos de metadatos existentes" -#: gui/slick/views/layouts/main.mako:153 sickbeard/webserve.py:3096 +#: gui/slick/views/layouts/main.mako:153 sickbeard/webserve.py:3095 msgid "Mass Update" msgstr "Actualización masiva" -#: sickbeard/webserve.py:3134 sickbeard/webserve.py:3161 sickbeard/webserve.py:3237 -#: sickbeard/webserve.py:3238 +#: sickbeard/webserve.py:3133 sickbeard/webserve.py:3160 sickbeard/webserve.py:3236 +#: sickbeard/webserve.py:3237 msgid "Episode Overview" msgstr "Resumen del episodio" -#: sickbeard/webserve.py:3270 +#: sickbeard/webserve.py:3269 msgid "Missing Subtitles" msgstr "Subtítulos faltantes" -#: gui/slick/views/layouts/main.mako:154 sickbeard/webserve.py:3356 -#: sickbeard/webserve.py:3357 +#: gui/slick/views/layouts/main.mako:154 sickbeard/webserve.py:3355 +#: sickbeard/webserve.py:3356 msgid "Backlog Overview" msgstr "Resumen de Tareas Pendientes" -#: sickbeard/webserve.py:3481 +#: sickbeard/webserve.py:3480 msgid "Mass Edit" msgstr "Edición masiva" -#: sickbeard/webserve.py:3586 +#: sickbeard/webserve.py:3585 msgid "Unable to update show: {excption_format}" msgstr "No se ha podido actualizar la serie: {excption_format}" -#: sickbeard/webserve.py:3594 +#: sickbeard/webserve.py:3593 msgid "Unable to refresh show {show_name}: {excption_format}" msgstr "Imposible actualizar serie {show_name}: {excption_format}" -#: sickbeard/webserve.py:3605 +#: sickbeard/webserve.py:3604 msgid "Errors encountered" msgstr "Errores encontrados" -#: gui/slick/views/config_general.mako:261 sickbeard/webserve.py:3611 +#: gui/slick/views/config_general.mako:261 sickbeard/webserve.py:3610 msgid "Updates" msgstr "Actualizaciones" -#: sickbeard/webserve.py:3616 +#: sickbeard/webserve.py:3615 msgid "Refreshes" msgstr "Refresca" -#: sickbeard/webserve.py:3621 +#: sickbeard/webserve.py:3620 msgid "Renames" msgstr "Renombra" #: gui/slick/views/displayShow.mako:260 gui/slick/views/displayShow.mako:435 #: gui/slick/views/editShow.mako:119 gui/slick/views/inc_addShowOptions.mako:20 -#: gui/slick/views/manage_massEdit.mako:262 sickbeard/webserve.py:3626 -#: sickbeard/webserve.py:5244 +#: gui/slick/views/manage_massEdit.mako:262 sickbeard/webserve.py:3625 +#: sickbeard/webserve.py:5215 msgid "Subtitles" msgstr "Subtítulos" -#: sickbeard/webserve.py:3631 +#: sickbeard/webserve.py:3630 msgid "The following actions were queued" msgstr "Las siguientes acciones fueron puestas en cola" -#: sickbeard/webserve.py:3651 -msgid "For best results please set the Download Station alias as" -msgstr "Para obtener mejores resultados por favor configurar el alias de la Estación de Descarga como" - -#: sickbeard/webserve.py:3652 -msgid "You can check this setting in the Synology DSM" -msgstr "Puede comprobar este ajuste en el Synology DSM" - -#: sickbeard/webserve.py:3652 sickbeard/webserve.py:3654 -msgid "Control Panel" -msgstr "Panel de Control" - -#: sickbeard/webserve.py:3652 -msgid "Application Portal" -msgstr "Portal de aplicaciones" - -#: sickbeard/webserve.py:3653 -msgid "Make sure you allow DSM to be embedded with iFrames too in" -msgstr "Asegúrese de permitir que DSM esté integrado en iFrames" - -#: sickbeard/webserve.py:3654 -msgid "DSM Settings" -msgstr "Ajustes DSM" - -#: sickbeard/webserve.py:3654 -msgid "Security" -msgstr "Seguridad" - -#: gui/slick/views/layouts/main.mako:167 sickbeard/webserve.py:3662 -msgid "Manage Torrents" -msgstr "Gestionar Torrents" - -#: gui/slick/views/layouts/main.mako:170 sickbeard/webserve.py:3683 +#: gui/slick/views/layouts/main.mako:170 sickbeard/webserve.py:3654 msgid "Failed Downloads" msgstr "Descargas fallidas" -#: gui/slick/views/layouts/main.mako:155 sickbeard/webserve.py:3701 +#: gui/slick/views/layouts/main.mako:155 sickbeard/webserve.py:3672 msgid "Manage Searches" msgstr "Gestionar búsquedas" -#: sickbeard/webserve.py:3709 +#: sickbeard/webserve.py:3680 msgid "Backlog search started" msgstr "Búsqueda \"backlog\" comenzada" -#: sickbeard/webserve.py:3719 +#: sickbeard/webserve.py:3690 msgid "Daily search started" msgstr "La búsqueda diaria comenzó" -#: sickbeard/webserve.py:3728 +#: sickbeard/webserve.py:3699 msgid "Find propers search started" msgstr "La búsqueda de correciones (\"propers\") comenzó" -#: sickbeard/webserve.py:3737 +#: sickbeard/webserve.py:3708 msgid "Subtitle search started" msgstr "Búsqueda de subtítulos comenzada" -#: sickbeard/webserve.py:3801 +#: sickbeard/webserve.py:3772 msgid "Remove Selected" msgstr "Eliminar selección" -#: sickbeard/webserve.py:3802 +#: sickbeard/webserve.py:3773 msgid "Clear History" msgstr "Limpiar historial" -#: sickbeard/webserve.py:3803 +#: sickbeard/webserve.py:3774 msgid "Trim History" msgstr "Cortar historial" -#: sickbeard/webserve.py:3823 +#: sickbeard/webserve.py:3794 msgid "Selected history entries removed" msgstr "Eliminadas entradas seleccionadas del historial" -#: sickbeard/webserve.py:3830 +#: sickbeard/webserve.py:3801 msgid "History cleared" msgstr "Historial eliminado" -#: sickbeard/webserve.py:3837 +#: sickbeard/webserve.py:3808 msgid "Removed history entries older than 30 days" msgstr "Eliminar elementos de la historia más antiguos de 30 días" -#: gui/slick/views/layouts/main.mako:185 sickbeard/webserve.py:3850 +#: gui/slick/views/layouts/main.mako:185 sickbeard/webserve.py:3821 msgid "General" msgstr "General" -#: sickbeard/webserve.py:3851 sickbeard/webserve.py:4143 +#: sickbeard/webserve.py:3822 sickbeard/webserve.py:4114 msgid "Backup/Restore" msgstr "Copia de seguridad/Restaurar" -#: gui/slick/views/layouts/main.mako:187 sickbeard/webserve.py:3852 -#: sickbeard/webserve.py:4206 +#: gui/slick/views/layouts/main.mako:187 sickbeard/webserve.py:3823 +#: sickbeard/webserve.py:4177 msgid "Search Settings" msgstr "Ajustes de búsqueda" -#: gui/slick/views/layouts/main.mako:188 sickbeard/webserve.py:3853 -#: sickbeard/webserve.py:4518 +#: gui/slick/views/layouts/main.mako:188 sickbeard/webserve.py:3824 +#: sickbeard/webserve.py:4489 msgid "Search Providers" msgstr "Proveedores de búsqueda" -#: gui/slick/views/layouts/main.mako:189 sickbeard/webserve.py:3854 +#: gui/slick/views/layouts/main.mako:189 sickbeard/webserve.py:3825 msgid "Subtitles Settings" msgstr "Ajustes de los subtítulos" -#: gui/slick/views/layouts/main.mako:191 sickbeard/webserve.py:3856 -#: sickbeard/webserve.py:4964 +#: gui/slick/views/layouts/main.mako:191 sickbeard/webserve.py:3827 +#: sickbeard/webserve.py:4935 msgid "Notifications" msgstr "Notificaciones" @@ -1240,142 +1237,142 @@ msgstr "Notificaciones" #: gui/slick/views/home.mako:35 gui/slick/views/inc_addShowOptions.mako:79 #: gui/slick/views/inc_home_showList.mako:179 gui/slick/views/layouts/main.mako:192 #: gui/slick/views/manage.mako:44 gui/slick/views/manage_massEdit.mako:202 -#: sickbeard/webserve.py:3857 sickbeard/webserve.py:5309 +#: sickbeard/webserve.py:3828 sickbeard/webserve.py:5280 msgid "Anime" msgstr "Anime" -#: sickbeard/webserve.py:3895 sickbeard/webserve.py:3896 +#: sickbeard/webserve.py:3866 sickbeard/webserve.py:3867 msgid "SickRage Configuration" msgstr "Configuración de SickRage" -#: sickbeard/webserve.py:3910 +#: sickbeard/webserve.py:3881 msgid "Config - Shares" msgstr "" -#: sickbeard/webserve.py:3910 +#: sickbeard/webserve.py:3881 msgid "Windows Shares Configuration" msgstr "" -#: sickbeard/webserve.py:3937 +#: sickbeard/webserve.py:3908 msgid "Saved Shares" msgstr "" -#: sickbeard/webserve.py:3937 +#: sickbeard/webserve.py:3908 msgid "Your Windows share settings have been saved" msgstr "" -#: sickbeard/webserve.py:3948 +#: sickbeard/webserve.py:3919 msgid "Config - General" msgstr "Config - General" -#: sickbeard/webserve.py:3948 +#: sickbeard/webserve.py:3919 msgid "General Configuration" msgstr "Configuración General" -#: sickbeard/webserve.py:3988 +#: sickbeard/webserve.py:3959 msgid "Saved Defaults" msgstr "Valores predeterminados guardados" -#: sickbeard/webserve.py:3988 +#: sickbeard/webserve.py:3959 msgid "Your \"add show\" defaults have been set to your current selections." msgstr "Tus valores por defectos para \"Añadir serie\" se han cambiado a tus opciones actuales." -#: sickbeard/webserve.py:4095 +#: sickbeard/webserve.py:4066 msgid "Unable to create directory {directory}, log directory not changed." msgstr "Imposible crear el directorio {directory}, directorio log no modificado." -#: sickbeard/webserve.py:4103 +#: sickbeard/webserve.py:4074 msgid "Unable to create directory {directory}, https cert directory not changed." msgstr "Imposible crear el directorio {directory}, directorio https cert no modificado." -#: sickbeard/webserve.py:4107 +#: sickbeard/webserve.py:4078 msgid "Unable to create directory {directory}, https key directory not changed." msgstr "Imposible crear el directorio {directory}, directorio https key no modificado." -#: sickbeard/webserve.py:4126 sickbeard/webserve.py:4324 sickbeard/webserve.py:4456 -#: sickbeard/webserve.py:5227 +#: sickbeard/webserve.py:4097 sickbeard/webserve.py:4295 sickbeard/webserve.py:4427 +#: sickbeard/webserve.py:5198 msgid "Error(s) Saving Configuration" msgstr "Error(es) guardando la configuración" -#: sickbeard/webserve.py:4129 sickbeard/webserve.py:4327 sickbeard/webserve.py:4458 -#: sickbeard/webserve.py:4950 sickbeard/webserve.py:5230 sickbeard/webserve.py:5294 -#: sickbeard/webserve.py:5323 +#: sickbeard/webserve.py:4100 sickbeard/webserve.py:4298 sickbeard/webserve.py:4429 +#: sickbeard/webserve.py:4921 sickbeard/webserve.py:5201 sickbeard/webserve.py:5265 +#: sickbeard/webserve.py:5294 msgid "Configuration Saved" msgstr "Configuración guardada" -#: sickbeard/webserve.py:4142 +#: sickbeard/webserve.py:4113 msgid "Config - Backup/Restore" msgstr "Config - Copia de seguridad/Restaurar" -#: sickbeard/webserve.py:4205 +#: sickbeard/webserve.py:4176 msgid "Config - Episode Search" msgstr "Config - Búsqueda de episodio" -#: sickbeard/webserve.py:4340 +#: sickbeard/webserve.py:4311 msgid "Config - Post Processing" msgstr "Configuración de post-procesado" -#: sickbeard/webserve.py:4380 +#: sickbeard/webserve.py:4351 msgid "Unpacking Not Supported, disabling unpack setting" msgstr "Desempaquetado no soportado, deshabilitando configuracion de desempaquetado" -#: sickbeard/webserve.py:4431 +#: sickbeard/webserve.py:4402 msgid "You tried saving an invalid normal naming config, not saving your naming settings" msgstr "" -#: sickbeard/webserve.py:4439 +#: sickbeard/webserve.py:4410 msgid "You tried saving an invalid anime naming config, not saving your naming settings" msgstr "Ha tratado de guardar una configuración de nombrado de anime no válida, no se guardarán sus opciones de nombrado" -#: sickbeard/webserve.py:4517 +#: sickbeard/webserve.py:4488 msgid "Config - Providers" msgstr "Configuración de proveedores" -#: sickbeard/webserve.py:4547 +#: sickbeard/webserve.py:4518 msgid "No Provider Name specified" msgstr "Nombre de proveedor no especificado" -#: sickbeard/webserve.py:4549 +#: sickbeard/webserve.py:4520 msgid "No Provider Url specified" msgstr "Url del proveedor no especificada" -#: sickbeard/webserve.py:4551 +#: sickbeard/webserve.py:4522 msgid "No Provider Api key specified" msgstr "Llave Api del proveedor no especificada" -#: sickbeard/webserve.py:4963 +#: sickbeard/webserve.py:4934 msgid "Config - Notifications" msgstr "Configuración de notificaciones" -#: sickbeard/webserve.py:5243 +#: sickbeard/webserve.py:5214 msgid "Config - Subtitles" msgstr "Configuración de subtítulos" -#: sickbeard/webserve.py:5308 +#: sickbeard/webserve.py:5279 msgid "Config - Anime" msgstr "Configuración - Anime" -#: sickbeard/webserve.py:5336 +#: sickbeard/webserve.py:5307 msgid "Clear Errors" msgstr "Borrar errores" -#: sickbeard/webserve.py:5342 +#: sickbeard/webserve.py:5313 msgid "Clear Warnings" msgstr "Borrar avisos" -#: sickbeard/webserve.py:5348 +#: sickbeard/webserve.py:5319 msgid "Submit Errors" msgstr "Enviar errores" -#: sickbeard/webserve.py:5363 +#: sickbeard/webserve.py:5334 msgid "Logs & Errors" msgstr "Logs & errores" -#: sickbeard/webserve.py:5388 +#: sickbeard/webserve.py:5359 msgid "Log File" msgstr "Archivo de registro" -#: sickbeard/webserve.py:5388 +#: sickbeard/webserve.py:5359 msgid "Logs" msgstr "Registros" @@ -1383,30 +1380,166 @@ msgstr "Registros" msgid "This is a test notification from SickRage" msgstr "Notificación de prueba desde SickRage" -#: gui/slick/js/core.js:481 gui/slick/js/core.js:502 gui/slick/js/core.js:524 -#: gui/slick/js/core.js:548 gui/slick/js/core.js:573 gui/slick/js/core.js:596 -#: gui/slick/js/core.js:625 gui/slick/js/core.js:645 gui/slick/js/core.js:690 -#: gui/slick/js/core.js:769 gui/slick/js/core.js:829 gui/slick/js/core.js:849 -#: gui/slick/js/core.js:879 gui/slick/js/core.js:909 gui/slick/js/core.js:969 -#: gui/slick/js/core.js:1046 gui/slick/js/core.js:1066 gui/slick/js/core.js:1085 +#: gui/slick/js/browser.js:6 +msgid "Choose Directory" +msgstr "" + +#: gui/slick/js/core.js:443 +msgid "Select log file folder location" +msgstr "" + +#: gui/slick/js/core.js:445 +msgid "Select CSS file" +msgstr "" + +#: gui/slick/js/core.js:469 +msgid "Select backup folder to save to" +msgstr "" + +#: gui/slick/js/core.js:470 +msgid "Select backup files to restore" +msgstr "" + +#: gui/slick/js/core.js:479 gui/slick/js/core.js:500 gui/slick/js/core.js:522 +#: gui/slick/js/core.js:546 gui/slick/js/core.js:571 gui/slick/js/core.js:594 +#: gui/slick/js/core.js:623 gui/slick/js/core.js:643 gui/slick/js/core.js:688 +#: gui/slick/js/core.js:767 gui/slick/js/core.js:827 gui/slick/js/core.js:847 +#: gui/slick/js/core.js:877 gui/slick/js/core.js:907 gui/slick/js/core.js:967 +#: gui/slick/js/core.js:1044 gui/slick/js/core.js:1064 gui/slick/js/core.js:1083 msgid "Please fill out the necessary fields above." msgstr "" -#: gui/slick/js/core.js:1328 gui/slick/js/core.js:1378 gui/slick/js/core.js:1427 -#: gui/slick/js/core.js:1493 +#: gui/slick/js/core.js:680 +msgid "<b>Step 1:</b> Confirm Authorization" +msgstr "" + +#: gui/slick/js/core.js:977 +msgid "Check blacklist name; the value needs to be a trakt slug" +msgstr "" + +#: gui/slick/js/core.js:1022 +msgid "You must provide a recipient email address!" +msgstr "" + +#: gui/slick/js/core.js:1107 +msgid "You didn't supply a Pushbullet api key" +msgstr "" + +#: gui/slick/js/core.js:1133 gui/slick/js/core.js:1162 +msgid "Don't forget to save your new pushbullet settings." +msgstr "" + +#: gui/slick/js/core.js:1262 +msgid "Select TV Download Directory" +msgstr "" + +#: gui/slick/js/core.js:1263 +msgid "Select Unpack Directory" +msgstr "" + +#: gui/slick/js/core.js:1326 gui/slick/js/core.js:1376 gui/slick/js/core.js:1425 +#: gui/slick/js/core.js:1491 msgid "This pattern is invalid." msgstr "Valor de patrón inválido." -#: gui/slick/js/core.js:1336 gui/slick/js/core.js:1386 gui/slick/js/core.js:1435 -#: gui/slick/js/core.js:1501 +#: gui/slick/js/core.js:1334 gui/slick/js/core.js:1384 gui/slick/js/core.js:1433 +#: gui/slick/js/core.js:1499 msgid "This pattern would be invalid without the folders, using it will force \"Season Folders\" on for all shows." msgstr "El patrón puede no ser válido sin carpetas, usarlo forzará \"Carpetas por temporada\" en todas las series." -#: gui/slick/js/core.js:1344 gui/slick/js/core.js:1394 gui/slick/js/core.js:1443 -#: gui/slick/js/core.js:1509 +#: gui/slick/js/core.js:1342 gui/slick/js/core.js:1392 gui/slick/js/core.js:1441 +#: gui/slick/js/core.js:1507 msgid "This pattern is valid." msgstr "Valor de patrón válido." +#: gui/slick/js/core.js:1818 +msgid "Select .nzb black hole/watch location" +msgstr "" + +#: gui/slick/js/core.js:1819 +msgid "Select .torrent black hole/watch location" +msgstr "" + +#: gui/slick/js/core.js:1820 +msgid "Select .torrent download location" +msgstr "" + +#: gui/slick/js/core.js:1900 +msgid "Minimum seeding time is" +msgstr "" + +#: gui/slick/js/core.js:1902 +msgid "URL to your uTorrent client (e.g. http://localhost:8000)" +msgstr "" + +#: gui/slick/js/core.js:1905 +msgid "Stop seeding when inactive for" +msgstr "" + +#: gui/slick/js/core.js:1911 +msgid "URL to your Transmission client (e.g. http://localhost:9091)" +msgstr "" + +#: gui/slick/js/core.js:1921 +msgid "URL to your Deluge client (e.g. http://localhost:8112)" +msgstr "" + +#: gui/slick/js/core.js:1930 +msgid "IP or Hostname of your Deluge Daemon (e.g. scgi://localhost:58846)" +msgstr "" + +#: gui/slick/js/core.js:1937 +msgid "URL to your Synology DS client (e.g. http://localhost:5000)" +msgstr "" + +#: gui/slick/js/core.js:1941 +msgid "URL to your rTorrent client (e.g. scgi://localhost:5000 <br> or https://localhost/rutorrent/plugins/httprpc/action.php)" +msgstr "" + +#: gui/slick/js/core.js:1952 +msgid "URL to your qBittorrent client (e.g. http://localhost:8080)" +msgstr "" + +#: gui/slick/js/core.js:1962 +msgid "URL to your MLDonkey (e.g. http://localhost:4080)" +msgstr "" + +#: gui/slick/js/core.js:1974 +msgid "URL to your putio client (e.g. http://localhost:8080)" +msgstr "" + +#: gui/slick/js/core.js:1975 +msgid "<a herf=\"https://app.put.io/oauth/apps/new\" target=\"_blank\"> Create a new OAuth app for put.io</a>" +msgstr "" + +#: gui/slick/js/core.js:1977 +msgid "Put.io Parent Folder" +msgstr "" + +#: gui/slick/js/core.js:1978 +msgid "Put.io OAuth Token" +msgstr "" + +#: gui/slick/js/core.js:3383 gui/slick/views/displayShow.mako:410 +msgid "Show Episodes" +msgstr "" + +#: gui/slick/js/core.js:3388 gui/slick/views/displayShow.mako:408 +msgid "Hide Episodes" +msgstr "" + +#: gui/slick/js/core.js:3396 +msgid "Select Show Location" +msgstr "" + +#: gui/slick/js/core.js:3460 +msgid "Select Unprocessed Episode Folder" +msgstr "" + +#: gui/slick/js/core.js:3790 +msgid "DELETED" +msgstr "" + #: gui/slick/js/core.js:4082 msgid "Resume updating the log on this page." msgstr "" @@ -1415,6 +1548,26 @@ msgstr "" msgid "Pause updating the log on this page." msgstr "" +#: gui/slick/js/core.js:4323 +msgid "searching {searchingFor}..." +msgstr "" + +#: gui/slick/js/core.js:4334 +msgid "search timed out, try again or try another indexer" +msgstr "" + +#: gui/slick/js/core.js:4503 +msgid "loading folders..." +msgstr "" + +#: gui/slick/js/parsers.js:7 gui/slick/js/parsers.js:8 +#: gui/slick/js/plotTooltip.js:6 gui/slick/js/sceneExceptionsTooltip.js:6 +#: gui/slick/views/inc_home_showList.mako:209 +#: gui/slick/views/inc_home_showList.mako:215 +#: gui/slick/views/inc_home_showList.mako:231 +msgid "Loading..." +msgstr "" + #: gui/slick/views/404.mako:5 msgid "You have reached this page by accident, please check the url." msgstr "Has llegado a esta página por accidente, por favor compruebe la url." @@ -5715,14 +5868,6 @@ msgstr "" msgid "Select Columns" msgstr "Seleccione las columnas" -#: gui/slick/views/displayShow.mako:408 -msgid "Hide Episodes" -msgstr "" - -#: gui/slick/views/displayShow.mako:410 -msgid "Show Episodes" -msgstr "" - #: gui/slick/views/displayShow.mako:424 msgid "NFO" msgstr "" @@ -6236,12 +6381,6 @@ msgstr "" msgid "loading" msgstr "" -#: gui/slick/views/inc_home_showList.mako:209 -#: gui/slick/views/inc_home_showList.mako:215 -#: gui/slick/views/inc_home_showList.mako:231 -msgid "Loading..." -msgstr "" - #: gui/slick/views/inc_qualityChooser.mako:31 msgid "<p><b><u>Preferred</u></b> qualities will replace those in <b><u>allowed</u></b>, even if they are lower.</p>" msgstr "" @@ -6779,6 +6918,10 @@ msgstr "Acualizar KODI" msgid "Update Emby" msgstr "Actualizar Emby" +#: gui/slick/views/layouts/main.mako:167 +msgid "Manage Torrents" +msgstr "Gestionar Torrents" + #: gui/slick/views/layouts/main.mako:173 msgid "Missed Subtitle Management" msgstr "Gestionar subtítulos faltantes" diff --git a/locale/et_EE/LC_MESSAGES/messages.json b/locale/et_EE/LC_MESSAGES/messages.json index 6a07442e73ee25d432dc3935337bf97ab46e3fd3..a1d8d7eb004008a2f5fd18b69226bc7a58df4e7c 100644 --- a/locale/et_EE/LC_MESSAGES/messages.json +++ b/locale/et_EE/LC_MESSAGES/messages.json @@ -1 +1 @@ -{"messages":{"domain":"messages","locale_data":{"messages":{"100":[null,"100"],"250":[null,"250"],"500":[null,""],"":{"domain":"messages","plural_forms":"nplurals=2; plural=(n != 1);","lang":"et_EE"},"Drama":[null,"Draama"],"Mystery":[null,"Müsteerium"],"Science-Fiction":[null,"Ulme"],"Crime":[null,"Krimi"],"Action":[null,""],"Comedy":[null,"Komöödia"],"Thriller":[null,"Thriller"],"Animation":[null,"Animatsioon"],"Family":[null,"Koguperefilm"],"Fantasy":[null,"Fantaasia"],"Adventure":[null,"Seiklus"],"Horror":[null,"Õudus"],"Film-Noir":[null,""],"Sci-Fi":[null,"Sci-Fi"],"Romance":[null,""],"Sport":[null,"Sport"],"War":[null,""],"Biography":[null,""],"History":[null,"Ajalugu"],"Music":[null,"Muusika"],"Western":[null,""],"News":[null,"Uudised"],"Sitcom":[null,""],"Reality-TV":[null,""],"Documentary":[null,"Dokumentaalfilm"],"Game-Show":[null,""],"Musical":[null,"Muusikal"],"Talk-Show":[null,""],"Started Download":[null,"Alustatud allalaadimine"],"Download Finished":[null,"Alla laaditud"],"Subtitle Download Finished":[null,"Subtiitri allalaadimine lõpetatud"],"SickRage Updated":[null,"SickRage Uuendatud"],"SickRage Updated To Commit#: ":[null,""],"SickRage new login":[null,"SickRage uus login"],"New login from IP: {0}. http://geomaplookup.net/?ip={0}":[null,"Uus login: IP: {0}. http://geomaplookup.net/?IP={0}"],"Repeat":[null,"Korda"],"Repeat (Separated)":[null,""],"Extend":[null,"Laiendatud"],"Extend (Limited)":[null,""],"Extend (Limited, E-prefixed)":[null,""],"Downloaded":[null,"Allalaaditud"],"Snatched":[null,"Takerdunud"],"Snatched (Proper)":[null,"Takerdunud (korralik)"],"Failed":[null,"Nurjus"],"Snatched (Best)":[null,"Takerdunud (parim)"],"Archived":[null,"Arhiveeritud"],"Unknown":[null,"Tundmatu"],"Unaired":[null,"Esitamata"],"Skipped":[null,"Vahele jäetud"],"Wanted":[null,"Soovin"],"Ignored":[null,"Ignoreeritud"],"Subtitled":[null,"Subtiitritega"],"<No Filter>":[null,""],"Daily Searcher":[null,""],"Backlog":[null,""],"Show Updater":[null,""],"Check Version":[null,""],"Show Queue":[null,""],"Search Queue (All)":[null,""],"Search Queue (Daily Searcher)":[null,""],"Search Queue (Backlog)":[null,""],"Search Queue (Manual)":[null,""],"Search Queue (Retry/Failed)":[null,""],"Search Queue (RSS)":[null,""],"Find Propers":[null,""],"Postprocessor":[null,""],"Find Subtitles":[null,""],"Trakt Checker":[null,""],"Event":[null,"Sündmus"],"Error":[null,"Viga"],"Tornado":[null,"Tornaado"],"Thread":[null,""],"Main":[null,""],"Loading":[null,""],"New update found for SickRage, starting auto-updater":[null,"Sickrage tarkvarauuendus on saadaval, käivitan automaatuuendaja"],"Update was successful":[null,"Värskendus õnnestus"],"Update failed!":[null,"Värskendamine nurjus!"],"Backup":[null,"Varunda"],"Config backup in progress...":[null,"Sätete varundamine on pooleli..."],"Config backup successful, updating...":[null,"Sätete varundamine oli edukas, uuendan..."],"Config backup failed, aborting update":[null,"Sätete varundamine ebaõnnestus, katkestan uuenduse"],"No update needed":[null,"Ole vaja uuendada"],"Mako Error":[null,"Mako tõrge"],"Oops":[null,"Uups"],"Wrong API key used":[null,"Vale API võti, mida kasutatakse"],"Login":[null,"Logi sisse"],"API Key not generated":[null,"API võti ei ole genereeritud"],"API Builder":[null,"API ehitaja"],"Schedule":[null,"Ajakava"],"Test 1":[null,"Test 1"],"This is test number 1":[null,"See on katse nr 1"],"Test 2":[null,"Test 2"],"This is test number 2":[null,"See on katse number 2"],"You're using the {branch} branch. Please use 'master' unless specifically asked":[null,""],"Invalid show parameters":[null,"Sobimatud parameetrid"],"Invalid parameters":[null,""],"Episode couldn't be retrieved":[null,"Episoodi ei saanud laadida"],"Home":[null,"Pealeht"],"Show List":[null,"Kuva loend"],"Error: Unsupported Request. Send jsonp request with 'callback' variable in the query string.":[null,""],"Success. Connected and authenticated":[null,"Edu. Ühendatud ja kinnitatud"],"Authentication failed. SABnzbd expects":[null,"Autentimine nurjus. SABnzbd ootab"],"as authentication method":[null,"nagu autentimismeetod"],"Unable to connect to host":[null,"Ei saanud serveriga ühendust"],"SMS sent successfully":[null,"SMS saatmine õnnestus"],"Problem sending SMS: {message}":[null,"SMS-i saatmise probleem: {message}"],"Telegram notification succeeded. Check your Telegram clients to make sure it worked":[null,"Telegram teate õnnestus. Kontrollige oma Telegram klienti, veendumaks, et see töötas"],"Error sending Telegram notification: {message}":[null,""],"join notification succeeded. Check your join clients to make sure it worked":[null,""],"Error sending join notification: {message}":[null,""]," with password":[null," parooliga"],"Registered and Tested growl successfully {growl_host}":[null,""],"Registration and Testing of growl failed {growl_host}":[null,""],"Test prowl notice sent successfully":[null,""],"Test prowl notice failed":[null,""],"Boxcar2 notification succeeded. Check your Boxcar2 clients to make sure it worked":[null,""],"Error sending Boxcar2 notification":[null,""],"Pushover notification succeeded. Check your Pushover clients to make sure it worked":[null,"Pushover teate õnnestus. Kontrollige oma Pushover klienti, veendumaks, et see töötas"],"Error sending Pushover notification":[null,"Viga Pushover teate saatmisel"],"Key verification successful":[null,"Võtme kinnitus õnnestus"],"Unable to verify key":[null,"Ei ole võimalik kontrollida võtit"],"Tweet successful, check your twitter to make sure it worked":[null,""],"Error sending tweet":[null,"Viga tweedi saatmisel"],"Please enter a valid account sid":[null,""],"Please enter a valid auth token":[null,""],"Please enter a valid phone sid":[null,""],"Please format the phone number as \"+1-###-###-####\"":[null,""],"Authorization successful and number ownership verified":[null,""],"Error sending sms":[null,""],"Slack message successful":[null,""],"Slack message failed":[null,""],"Discord message successful":[null,""],"Discord message failed":[null,""],"Test KODI notice sent successfully to {kodi_host}":[null,""],"Test KODI notice failed to {kodi_host}":[null,""],"Successful test notice sent to Plex Home Theater ... {plex_clients}":[null,""],"Test failed for Plex Home Theater ... {plex_clients}":[null,""],"Tested Plex Home Theater(s)":[null,""],"Successful test of Plex Media Server(s) ... {plex_servers}":[null,""],"Test failed, No Plex Media Server host specified":[null,""],"Test failed for Plex Media Server(s) ... {plex_servers}":[null,""],"Tested Plex Media Server host(s)":[null,""],"Tried sending desktop notification via libnotify":[null,""],"Test notice sent successfully to {emby_host}":[null,""],"Test notice failed to {emby_host}":[null,""],"Successfully started the scan update":[null,""],"Test failed to start the scan update":[null,""],"Test notice sent successfully to {nmj2_host}":[null,""],"Test notice failed to {nmj2_host}":[null,""],"Trakt Authorized":[null,""],"Trakt Not Authorized!":[null,""],"Test email sent successfully! Check inbox.":[null,""],"ERROR: {last_error}":[null,"VIGA: {last_error}"],"Test NMA notice sent successfully":[null,""],"Test NMA notice failed":[null,""],"Pushalot notification succeeded. Check your Pushalot clients to make sure it worked":[null,""],"Error sending Pushalot notification":[null,""],"Pushbullet notification succeeded. Check your device to make sure it worked":[null,""],"Error sending Pushbullet notification":[null,""],"Status":[null,"Staatus"],"Restarting SickRage":[null,"SickRage käivitub"],"Update Failed":[null,"Värskendamine nurjus"],"Update wasn't successful, not restarting. Check your log for more information.":[null,""],"Checking out branch":[null,""],"Already on branch":[null,""],"Invalid show ID: {show}":[null,""],"Show not in show list":[null,""],"Edit":[null,"Muuda"],"This show is in the process of being downloaded - the info below is incomplete.":[null,""],"The information on this page is in the process of being updated.":[null,""],"The episodes below are currently being refreshed from disk":[null,""],"Currently downloading subtitles for this show":[null,""],"This show is queued to be refreshed.":[null,""],"This show is queued and awaiting an update.":[null,""],"This show is queued and awaiting subtitles download.":[null,""],"Resume":[null,"Jätka"],"Pause":[null,"Paus"],"Remove":[null,"Eemalda"],"Re-scan files":[null,"Uuesti skaneerida faile"],"Force Full Update":[null,"Jõuline uuendamine"],"Update show in KODI":[null,"Uuenda saadeKODIs"],"Update show in Emby":[null,"Uuenda saade Embys"],"Hide specials":[null,""],"Show specials":[null,""],"Preview Rename":[null,"Eelvaate ümbernimetamine"],"Download Subtitles":[null,"Lae Subtiitrid"],"No scene exceptions":[null,"Ei ole stseeni erandeid"],"Invalid show ID":[null,"Sobimatu saate ID"],"Unable to find the specified show":[null,"Ei leia määratud saadet"],"Unable to retreive Fansub Groups from AniDB.":[null,""],"Edit Show":[null,""],"Unable to refresh this show: {error}":[null,""],"New location <tt>{location}</tt> does not exist":[null,""],"Unable to update show: {error}":[null,""],"Unable to force an update on scene exceptions of the show.":[null,""],"Unable to force an update on scene numbering of the show.":[null,""],"{num_errors:d} error{plural} while saving changes:":[null,"{num_errors:d} viga {plural} salvestamisel:"],"{show_name} has been {paused_resumed}":[null,"{show_name} on {paused_resumed}"],"resumed":[null,"jätkus"],"paused":[null,"peatatud"],"{show_name} has been {deleted_trashed} {was_deleted}":[null,"{show_name} on {deleted_trashed} {was_deleted}"],"deleted":[null,"kustutatud"],"trashed":[null,"prügikastis"],"(media untouched)":[null,"(meedia puutumata)"],"(with all related media)":[null,"(kõik seotud media)"],"Unable to refresh this show.":[null,"Ei saa värskendada seda saadet."],"Unable to update this show.":[null,"Ei saa uuendada seda saadet."],"Library update command sent to KODI host(s)): {kodi_hosts}":[null,"Kogumi uuendamise käsk saadeti KODI vastuvõtjasse: {kodi_hosts}"],"Unable to contact one or more KODI host(s)): {kodi_hosts}":[null,"Ei saanud ühendust ühe või mitme KODI seadmega: {kodi_hosts}"],"Library update command sent to Plex Media Server host: {plex_server}":[null,"Kogumi uuendamise käsk saadetud Plex Media Serverisse: {plex_server}"],"Unable to contact Plex Media Server host: {plex_server}":[null,"Ei saanud ühendust Plex Media Serveriga: {plex_server}"],"Library update command sent to Emby host: {emby_host}":[null,""],"Unable to contact Emby host: {emby_host}":[null,""],"You must specify a show and at least one episode":[null,""],"Invalid status":[null,"Kehtetu olek"],"Backlog was automatically started for the following seasons of <b>{show_name}</b>":[null,""],"Season":[null,"Hooaeg"],"Backlog started":[null,"Jälitamine algas"],"Retrying Search was automatically started for the following season of <b>{show_name}</b>":[null,""],"Retry Search started":[null,""],"You must specify a show":[null,""],"Can't rename episodes when the show dir is missing.":[null,""],"New subtitles downloaded: {new_subtitle_languages}":[null,""],"No subtitles downloaded":[null,"Subtiitreid ei laetud"],"IRC":[null,"IRC"],"Could not load news from the repo. [Click here for news.md])({news_url})":[null,""],"The was a problem connecting to github, please refresh and try again":[null,""],"Could not load changes from the repo. [Click here for CHANGES.md]({changes_url})":[null,""],"Changelog":[null,"Muudatuste logi"],"Post Processing":[null,""],"Add Shows":[null,"Lisa saateid"],"No folders selected.":[null,"Kaustu pole valitud."],"New Show":[null,"Uus saade"],"Trending Shows":[null,""],"Popular Shows":[null,"Populaarsed saated"],"Most Anticipated Shows":[null,""],"Most Collected Shows":[null,""],"Most Watched Shows":[null,""],"Most Played Shows":[null,""],"Recommended Shows":[null,""],"New Shows":[null,"Uued saated"],"Season Premieres":[null,""],"Existing Show":[null,""],"No root directories setup, please go back and add one.":[null,""],"Show added":[null,""],"Adding the specified show {show_name}":[null,""],"Missing params, no Indexer ID or folder: {show_to_add} and {root_dir}/{show_path}":[null,""],"Unknown error. Unable to add show due to problem with show selection.":[null,""],"Unable to add show":[null,""],"Folder {show_dir} exists already":[null,""],"Unable to create the folder {show_dir}, can't add the show":[null,""],"Adding the specified show into {show_dir}":[null,""],"Shows Added":[null,""],"Automatically added {num_shows} from their existing metadata files":[null,""],"Mass Update":[null,"Massuuendamine"],"Episode Overview":[null,""],"Missing Subtitles":[null,"Puuduvad subtiitrid"],"Backlog Overview":[null,""],"Mass Edit":[null,""],"Unable to update show: {excption_format}":[null,""],"Unable to refresh show {show_name}: {excption_format}":[null,"Ei saa värskendada saadet {show_name}: {excption_format}"],"Errors encountered":[null,"Ilmnes tõrkeid"],"Updates":[null,"Uuendused"],"Refreshes":[null,"Värskenda"],"Renames":[null,"Muuda nimi"],"Subtitles":[null,"Subtiitrid"],"The following actions were queued":[null,"Järgmised tegevused on ootel"],"For best results please set the Download Station alias as":[null,""],"You can check this setting in the Synology DSM":[null,""],"Control Panel":[null,"Juhtpaneel"],"Application Portal":[null,"Rakenduse portaal"],"Make sure you allow DSM to be embedded with iFrames too in":[null,""],"DSM Settings":[null,"DSM seaded"],"Security":[null,"Turvalisus"],"Manage Torrents":[null,"Halda torrenteid"],"Failed Downloads":[null,"Nurjunud allalaadimised"],"Manage Searches":[null,"Halda otsinguid"],"Backlog search started":[null,""],"Daily search started":[null,"Igapäevane otsing alustatud"],"Find propers search started":[null,""],"Subtitle search started":[null,"Subtiitri otsing alustatud"],"Remove Selected":[null,""],"Clear History":[null,"Tühjenda ajalugu"],"Trim History":[null,"Trimmi ajalugu"],"Selected history entries removed":[null,""],"History cleared":[null,"Ajalugu kustutatud"],"Removed history entries older than 30 days":[null,"Eemalda ajaloo kanded vanemad kui üle 30 päeva"],"General":[null,"Üldine"],"Backup/Restore":[null,"Varundamine/taastamine"],"Search Settings":[null,"Otsingusätted"],"Search Providers":[null,"Otsinguteenuse pakkujad"],"Subtitles Settings":[null,"Subtiitrite seaded"],"Notifications":[null,"Teated"],"Anime":[null,"Anime"],"SickRage Configuration":[null,"SickRage konfiguratsioon"],"Config - Shares":[null,""],"Windows Shares Configuration":[null,""],"Saved Shares":[null,""],"Your Windows share settings have been saved":[null,""],"Config - General":[null,"Seaded - üldine"],"General Configuration":[null,"Üldised seadistused"],"Saved Defaults":[null,""],"Your \"add show\" defaults have been set to your current selections.":[null,""],"Unable to create directory {directory}, log directory not changed.":[null,"Ei saa luua kataloogi {directory}, kataloog muutmata."],"Unable to create directory {directory}, https cert directory not changed.":[null,""],"Unable to create directory {directory}, https key directory not changed.":[null,""],"Error(s) Saving Configuration":[null,"Viga konfiguratsiooni salvestamisel"],"Configuration Saved":[null,"Konfiguratsioon salvestatud"],"Config - Backup/Restore":[null,"Seadista - varundamine/taastamine"],"Config - Episode Search":[null,"Seadista - Episoodi otsing"],"Config - Post Processing":[null,""],"Unpacking Not Supported, disabling unpack setting":[null,""],"You tried saving an invalid normal naming config, not saving your naming settings":[null,""],"You tried saving an invalid anime naming config, not saving your naming settings":[null,""],"Config - Providers":[null,"Seadistused - pakkujad"],"No Provider Name specified":[null,""],"No Provider Url specified":[null,""],"No Provider Api key specified":[null,""],"Config - Notifications":[null,""],"Config - Subtitles":[null,""],"Config - Anime":[null,""],"Clear Errors":[null,""],"Clear Warnings":[null,""],"Submit Errors":[null,""],"Logs & Errors":[null,""],"Log File":[null,"Logifail"],"Logs":[null,"Logid"],"This is a test notification from SickRage":[null,""],"Please fill out the necessary fields above.":[null,""],"This pattern is invalid.":[null,""],"This pattern would be invalid without the folders, using it will force \"Season Folders\" on for all shows.":[null,""],"This pattern is valid.":[null,""],"Resume updating the log on this page.":[null,""],"Pause updating the log on this page.":[null,""],"You have reached this page by accident, please check the url.":[null,""],"A mako error has occured.<br>\n If this happened during an update a simple page refresh may be the solution.<br>\n Mako errors that happen during updates may be a one time error if there were significant ui changes.":[null,""],"Show/Hide Error":[null,""],"Add New Show":[null,"Lisa uus saade"],"For shows that you haven't downloaded yet, this option finds a show on theTVDB.com, creates a directory for it's episodes, and adds it to SickRage.":[null,""],"Add From Trakt Lists":[null,""],"For shows that you haven't downloaded yet, this option lets you choose from a show from one of the Trakt lists to add to SickRage.":[null,""],"Add From IMDB's Popular Shows":[null,""],"View IMDB's list of the most popular shows. This feature uses IMDB's MOVIEMeter algorithm to identify popular TV Series.":[null,""],"Add Existing Shows":[null,""],"Use this option to add shows that already have a folder created on your hard drive. SickRage will scan your existing metadata/episodes and add the show accordingly.":[null,""],"Add Existing Show":[null,""],"Manage Directories":[null,"Halda katalooge"],"Customize Options":[null,""],"SickRage can add existing shows, using the current options, by using locally stored NFO/XML metadata to eliminate user interaction. If you would rather have SickRage prompt you to customize each show, then use the checkbox below.":[null,""],"Prompt me to set settings for each show":[null,""],"Displaying folders within these directories which aren't already added to SickRage":[null,""],"Submit":[null,"Saada"],"Find a show on theTVDB":[null,""],"Show retrieved from existing metadata":[null,""],"All Indexers":[null,""],"Search":[null,"Otsi"],"This will only affect the language of the retrieved metadata file contents and episode filenames.":[null,""],"This <b>DOES NOT</b> allow SickRage to download non-english TV episodes!":[null,""],"Pick the parent folder":[null,""],"Pre-chosen Destination Folder":[null,""],"Customize options":[null,""],"Add Show":[null,"Lisa saateid"],"Skip Show":[null,""],"Sort By":[null,"Sorteeri"],"Name":[null,"Nimi"],"Original":[null,"Originaal"],"Votes":[null,"Häält"],"Rating":[null,"Hinnang"],"Rating > Votes":[null,"Hinnang > häält"],"Sort Order":[null,"Sorteerimise järjekord"],"Asc":[null,"Asc"],"Desc":[null,"Desc"],"Fetching of IMDB Data failed. Are you online?":[null,"IMDB andmete toomine nurjus. Kas oled online?"],"Exception":[null,"Erand"],"Select Trakt List":[null,""],"Most Anticipated":[null,"Kõige oodatumad"],"Trending":[null,"Trendid"],"Popular":[null,"Populaarsed"],"Most Watched":[null,"Vaadatuimad"],"Most Played":[null,"Mängituimad"],"Most Collected":[null,"Enamik kogutud"],"Recommended":[null,"Soovitatav"],"Toggle navigation":[null,"Lülita navigeerimine"],"Profile":[null,"Profiil"],"JSONP":[null,"JSONP"],"Back to SickRage":[null,"Tagasi SickRage'sse"],"Parameters":[null,"Parameetrid"],"Required":[null,"Nõutav"],"Description":[null,"Kirjeldus"],"Type":[null,"Tüüp"],"Default value":[null,"Vaikeväärtus"],"Allowed values":[null,"Lubatud väärtused"],"Playground":[null,"Mänguväljak"],"Clear":[null,"Tühista"],"Yes":[null,"Jah"],"No":[null,"Ei"],"season":[null,"hooaeg"],"episode":[null,"episood"],"Python Version":[null,"Pythoni versioon"],"SSL Version":[null,"SSL-i versioon"],"OS":[null,"OS"],"Locale":[null,"Keel"],"User":[null,"Kasutaja"],"Program Folder":[null,"Programmikaust"],"Config File":[null,"Konfiguratsioonifail"],"Database File":[null,"Andmebaasifaili"],"Cache Folder":[null,"Vahemälu kaust"],"Log Folder":[null,"Logikaust"],"Arguments":[null,"Argumendid"],"Web Root":[null,"Veebi juur"],"Website":[null,"Veebisait"],"Wiki":[null,"Wiki"],"Source":[null,"Allikas"],"IRC Chat":[null,"IRC Chat"],"AnimeDB Settings":[null,"AnimeDB seaded"],"Look & Feel":[null,""],"AniDB is non-profit database of anime information that is freely open to the public":[null,""],"Enable":[null,"Luba"],"should SickRage use data from AniDB?":[null,""],"AniDB Username":[null,"AniDB kasutajanimi"],"username of your AniDB account":[null,""],"AniDB Password":[null,"AniDB parool"],"password of your AniDB account":[null,""],"AniDB MyList":[null,""],"do you want to add the PostProcessed episodes to the MyList?":[null,""],"Look and Feel":[null,"Välimus"],"How should the anime functions show and behave.":[null,""],"Split show lists":[null,""],"separate anime and normal shows in groups":[null,""],"Split in tabs":[null,""],"use tabs for when splitting show lists":[null,""],"Restore":[null,"Taasta"],"Backup your main database file and config.":[null,""],"Select the folder you wish to save your backup file to":[null,""],"Restore your main database file and config.":[null,""],"Select the backup file you wish to restore":[null,""],"Misc":[null,"Muud"],"Interface":[null,"Kasutajaliides"],"Advanced Settings":[null,"Täpsemad Seaded"],"Startup options. Indexer options. Log and show file locations.":[null,""],"Some options may require a manual restart to take effect.":[null,""],"Default Indexer Language":[null,""],"for adding shows and metadata providers":[null,""],"Launch browser":[null,"Käivita brauser"],"open the SickRage home page on startup":[null,""],"Initial page":[null,"Avaleht"],"Shows":[null,""],"when launching SickRage interface":[null,""],"Choose hour to update shows":[null,""],"with information such as next air dates, show ended, etc. Use 15 for 3pm, 4 for 4am etc.":[null,""],"note":[null,""],"minutes are randomized each time SickRage is started":[null,""],"Send to trash for actions":[null,""],"when using show \"Remove\" and delete files":[null,""],"on scheduled deletes of the oldest log files":[null,""],"selected actions use trash (recycle bin) instead of the default permanent delete":[null,""],"Log file folder location":[null,"Logifaili asukoht"],"Number of Log files saved":[null,""],"number of log files saved when rotating logs (default: 5) (REQUIRES RESTART)":[null,""],"Size of Log files saved":[null,""],"maximum size in MB of the log file (default: 1MB) (REQUIRES RESTART)":[null,""],"Use initial indexer set to":[null,""],"as the default selection when adding new shows":[null,""],"Timeout show indexer at":[null,""],"seconds of inactivity when finding new shows (default:20)":[null,""],"Show root directories":[null,"Näita juurkataloogi"],"where the files of shows are located":[null,"kus saadete failid asuvad"],"Save Changes":[null,"Salvesta muudatused"],"Options for software updates.":[null,"Tarkvarauuenduse suvandid."],"Check software updates":[null,"Kontrolli uuendusi"],"and display notifications when updates are available. Checks are run on startup and at the frequency set below*":[null,""],"Automatically update":[null,"Värskenda automaatselt"],"fetch and install software updates. Updates are run on startup and in the background at the frequency set below*":[null,""],"Check the server every*":[null,"Kontrollige serverit iga*"],"hours for software updates (default:1)":[null,""],"Notify on software update":[null,"Teavita kui uuendus saadaval"],"send a message to all enabled notifiers when SickRage has been updated":[null,""],"User Interface":[null,""],"Options for visual appearance.":[null,""],"Interface Language":[null,"Kasutajaliidese keel"],"System Language":[null,"Süsteemi keel"],"for appearance to take effect, save then refresh your browser":[null,""],"Display theme":[null,"Ekraani välimus"],"Dark":[null,"Tume"],"Light":[null,"Hele"],"Use a background image":[null,""],"use a custom image as background for SickRage":[null,""],"Background Path":[null,""],"Path to the background image":[null,""],"Show fanart in the background":[null,""],"on the show summary page":[null,""],"Fanart transparency":[null,""],"transparency of the fanart in the background":[null,""],"Use a custom stylesheet file":[null,""],"use a custom .css file to style SickRage (for advanced users)":[null,""],"Stylesheet File Path":[null,""],"Path to the stylesheet (.css) file":[null,""],"Show all seasons":[null,"Näita kõik hooajad"],"Sort with \"The\", \"A\", \"An\"":[null,""],"include articles (\"The\", \"A\", \"An\") when sorting show lists":[null,""],"Missed episodes range":[null,"Vastamata episoodide vahemik"],"set the range in days of the missed episodes in the Schedule page":[null,""],"Display fuzzy dates":[null,""],"move absolute dates into tooltips and display e.g. \"Last Thu\", \"On Tue\"":[null,""],"Trim zero padding":[null,""],"remove the leading number \"0\" shown on hour of day, and date of month":[null,""],"Date style":[null,"Kuupäeva laad"],"Use System Default":[null,"Kasuta süsteemi vaikeseadet"],"Time style":[null,"Kellaaja laad"],"seconds are only shown on the History page":[null,""],"Timezone":[null,"Ajatsoon"],"Local":[null,"Kohalik"],"Network":[null,"Võrk"],"display dates and times in either your timezone or the shows network timezone":[null,""],"use local timezone to start searching for episodes minutes after show ends (depends on your dailysearch frequency)":[null,""],"Download url":[null,"Laadimise url"],"URL where the shows can be downloaded.":[null,"URL kus saateid saab alla laadida."],"Web Interface":[null,"Veebi välimus"],"it is recommended that you enable a username and password to secure SickRage from being tampered with remotely.":[null,""],"these options require a manual restart to take effect.":[null,""],"API key":[null,"API võti"],"used to give 3rd party programs limited access to SickRage":[null,""],"you can try all the features of the API":[null,""],"here":[null,"siin"],"HTTP logs":[null,"HTTP logid"],"enable logs from the internal Tornado web server":[null,""],"HTTP username":[null,"HTTP kasutajanimi"],"set blank for no login":[null,""],"HTTP password":[null,"HTTP parool"],"blank = no authentication":[null,"tühi = autentimine puudub"],"HTTP port":[null,"HTTP port"],"web port to browse and access SickRage (default:8081)":[null,"veebi sirvimiseks ja juurdepääsuks SickRagele (vaikimisi: 8081) port"],"Notify on login":[null,""],"enable to be notified when a new login happens in webserver":[null,""],"Listen on IPv6":[null,""],"attempt binding to any available IPv6 address":[null,""],"Enable HTTPS":[null,"Luba HTTPS"],"enable access to the web interface using a HTTPS address":[null,""],"HTTPS certificate":[null,"HTTPS sertifikaat"],"file name or path to HTTPS certificate":[null,""],"HTTPS key":[null,"HTTPS võti"],"file name or path to HTTPS key":[null,""],"Reverse proxy headers":[null,""],"accept the following reverse proxy headers (advanced)...":[null,""],"(X-Forwarded-For, X-Forwarded-Host, and X-Forwarded-Proto)":[null,""],"CPU throttling":[null,"CPU ahendamine"],"Normal (default). High is lower and Low is higher CPU use":[null,""],"Anonymous redirect":[null,""],"backlink protection via anonymizer service, must end in \"?\"":[null,""],"Enable debug":[null,""],"enable debug logs":[null,""],"Verify SSL Certs":[null,""],"verify SSL Certificates (Disable this for broken SSL installs (Like QNAP))":[null,""],"No Restart":[null,""],"only shutdown when restarting SR":[null,""],"only select this when you have external software restarting SR automatically when it stops (like FireDaemon)":[null,""],"Encrypt passwords":[null,"Krüpti paroolid"],"in the <code>config.ini</code> file":[null,""],"warning":[null,""],"passwords must only contain":[null,""],"ASCII characters":[null,""],"Unprotected calendar":[null,""],"allow subscribing to the calendar without user and password":[null,""],"some services like Google Calendar only work this way":[null,""],"Google Calendar Icons":[null,"Google'i kalendri ikoonid"],"show an icon next to exported calendar events in Google Calendar":[null,""],"Proxy host":[null,"Proxy vastuvõtja"],"blank to disable or proxy to use when connecting to providers":[null,""],"also use global proxy setting for indexers (tvdb, xem, anidb, etc.)":[null,""],"Skip Remove Detection":[null,"Jäta vahele eemaldamise avastamine"],"skip detection of removed files":[null,""],"if disabled the episode will be set to the default deleted status":[null,""],"Default deleted episode status":[null,""],"define the status to be set for media file that has been deleted.":[null,""],"Archived option will keep previous downloaded quality":[null,""],"example: Downloaded (1080p WEB-DL) ==> Archived (1080p WEB-DL)":[null,""],"Options for github related features.":[null,""],"Branch version":[null,"Brändi versioon"],"error: No branches found.":[null,""],"select branch to use (restart required)":[null,""],"Authorization Type":[null,""],"Username and password":[null,""],"Personal access token":[null,""],"You must use a personal access token if you're using \"two-factor authentication\" on GitHub.":[null,""],"GitHub username":[null,"GitHub kasutajanimi"],"*** (REQUIRED FOR SUBMITTING ISSUES) ***":[null,""],"GitHub password":[null,"GitHub parooli"],"GitHub personal access token":[null,""],"Generate Token":[null,""],"Manage Tokens":[null,""],"GitHub remote for branch":[null,""],"access repo configured remotes (save then refresh browser)":[null,""],"default":[null,""],"origin":[null,""],"Git executable path":[null,""],"only needed if OS is unable to locate git from env":[null,""],"Git reset":[null,""],"removes untracked files and performs a hard reset on git branch automatically to help resolve update issues":[null,""],"Home Theater / NAS":[null,"Kodukino / NAS"],"Devices":[null,"Seadmed"],"Social":[null,"Sotsiaalne"],"A free and open source cross-platform media center and home entertainment system software with a 10-foot user interface designed for the living-room TV.":[null,""],"send KODI commands?":[null,""],"Always on":[null,"Alati peal"],"log errors when unreachable?":[null,"logi vigu kui kättesaamatu?"],"Notify on snatch":[null,"Teata tõrkest"],"send a notification when a download starts?":[null,""],"Notify on download":[null,"Teata allalaadimisel"],"send a notification when a download finishes?":[null,""],"Notify on subtitle download":[null,""],"send a notification when subtitles are downloaded?":[null,""],"Update library":[null,"Uuenda kogu"],"update KODI library when a download finishes?":[null,""],"Full library update":[null,"Täielik kogu uuendamine"],"perform a full library update if update per-show fails?":[null,""],"Only update first host":[null,""],"only send library updates to the first active host?":[null,""],"KODI IP:Port":[null,"KODI IP:Port"],"host running KODI (eg. 192.168.1.100:8080)":[null,""],"(multiple host strings must be separated by commas)":[null,""],"Username":[null,"Kasutajanimi"],"username for your KODI server (blank for none)":[null,""],"Password":[null,"Parool"],"password for your KODI server (blank for none)":[null,""],"Click below to test.":[null,"Klõpsake allpool, et testida."],"Experience your media on a visually stunning, easy to use interface on your Mac connected to your TV. Your media library has never looked this good!":[null,""],"For sending notifications to Plex Home Theater (PHT) clients, use the KODI notifier with port <b>3005</b>.":[null,""],"send Plex Media Server library updates?":[null,""],"Plex Media Server Auth Token":[null,""],"auth token used by Plex":[null,""],"Update Library":[null,"Uuenda kogu"],"update Plex Media Server library when a download finishes":[null,""],"Plex Media Server IP:Port":[null,"Plex Meedia Serveri IP:Port"],"one or more hosts running Plex Media Server<br/>(eg. 192.168.1.1:32400, 192.168.1.2:32400)":[null,""],"HTTPS":[null,"HTTPS"],"use https for plex media server requests?":[null,""],"Click below to test Plex Media Server(s)":[null,""],"Test Plex Media Server":[null,"Testi Plexi Meedia Serverit"],"Plex Home Theater":[null,"Plex kodukino"],"send Plex Home Theater notifications?":[null,""],"Plex Home Theater IP:Port":[null,"Plex kodukino IP:Port"],"one or more hosts running Plex Home Theater<br>(eg. 192.168.1.100:3000, 192.168.1.101:3000)":[null,""],"Click below to test Plex Home Theater(s)":[null,""],"Test Plex Home Theater":[null,""],"some Plex Home Theaters <b class=\"boldest\">do not</b> support notifications e.g. Plexapp for Samsung TVs":[null,""],"Emby":[null,"Emby"],"A home media server built using other popular open source technologies.":[null,""],"send update commands to Emby?":[null,""],"Emby IP:Port":[null,"Emby IP:Port"],"host running Emby (eg. 192.168.1.100:8096)":[null,"Emby server (nt. 192.168.1.100:8096)"],"Emby API Key":[null,"Emby API võti"],"Networked Media Jukebox":[null,"Võrgumeedia Jukebox"],"The Networked Media Jukebox, or NMJ, is the official media jukebox interface made available for the Popcorn Hour 200-series.":[null,""],"send update commands to NMJ?":[null,""],"Popcorn IP address":[null,"Popcorni IP aadress"],"IP address of Popcorn 200-series (eg. 192.168.1.100)":[null,""],"Get settings":[null,"Too sätted"],"Get Settings":[null,"Too sätted"],"the Popcorn Hour device must be powered on and NMJ running.":[null,""],"NMJ database":[null,"NMJ andmebaas"],"automatically filled via the 'Get Settings' button.":[null,"täidetakse automaatselt 'Too Seaded' nuppu kaudu."],"NMJ mount url":[null,""],"Networked Media Jukebox v2":[null,""],"The Networked Media Jukebox, or NMJv2, is the official media jukebox interface made available for the Popcorn Hour 300 & 400-series.":[null,""],"send update commands to NMJv2?":[null,""],"IP address of Popcorn 300/400-series (eg. 192.168.1.100)":[null,""],"Database location":[null,"Andmebaasi asukoht"],"Database instance":[null,""],"adjust this value if the wrong database is selected.":[null,""],"Find database":[null,"Leia andmebaasi"],"Find Database":[null,"Leia andmebaas"],"the Popcorn Hour device must be powered on.":[null,"Popcorni Hour seade peab olema sisse lülitatud."],"NMJv2 database":[null,"NMJv2 andmebaas"],"automatically filled via the 'Find Database' buttons.":[null,""],"Synology":[null,"Synology"],"The Synology DiskStation NAS.":[null,""],"Synology Indexer is the daemon running on the Synology NAS to build its media database.":[null,""],"send Synology notifications?":[null,""],"requires SickRage to be running on your Synology NAS.":[null,""],"Synology Indexer":[null,""],"Synology Notifier is the notification system of Synology DSM":[null,""],"send notifications to the Synology Notifier?":[null,""],"pyTivo":[null,"pyTivo"],"pyTivo is both an HMO and GoBack server. This notifier will load the completed downloads to your Tivo.":[null,""],"send notifications to pyTivo?":[null,""],"requires the downloaded files to be accessible by pyTivo.":[null,""],"pyTivo IP:Port":[null,"pyTivo IP:Port"],"host running pyTivo (eg. 192.168.1.1:9032)":[null,""],"pyTivo share name":[null,""],"value used in pyTivo Web Configuration to name the share.":[null,""],"Tivo name":[null,"TiVo nimi"],"(Messages & Settings > Account & System Information > System Information > DVR name)":[null,""],"Growl":[null,"Growl"],"A cross-platform unobtrusive global notification system.":[null,""],"send Growl notifications?":[null,""],"Growl IP:Port":[null,"Growl IP:Port"],"host running Growl (eg. 192.168.1.100:23053)":[null,""],"may leave blank if SickRage is on the same host.":[null,""],"otherwise Growl <b>requires</b> a password to be used.":[null,""],"Click below to register and test Growl, this is required for Growl notifications to work.":[null,""],"Register Growl":[null,"Registreeri Growl"],"Prowl":[null,"Prowl"],"A Growl client for iOS.":[null,""],"send Prowl notifications?":[null,""],"Prowl Message Title":[null,""],"Global Prowl API key(s)":[null,""],"Prowl API(s) listed here, separated by commas if applicable, will<br> receive notifications for <b>all</b> shows. Your Prowl API key is available at:":[null,""],"(this field may be blank except when testing.)":[null,""],"Show notification list":[null,""],"-- Select a Show --":[null,""],"Configure per-show notifications here by entering Prowl API key(s), separated by commas, '\n 'after selecting a show in the drop-down box. Be sure to activate the 'Save for this show' '\n 'button below after each entry.":[null,""],"Save for this show":[null,""],"Prowl priority":[null,""],"Very Low":[null,"Väga madal"],"Moderate":[null,"Mõõdukas"],"Normal":[null,"Tavaline"],"High":[null,"Kõrge"],"Emergency":[null,"Hädaabi"],"priority of Prowl messages from SickRage.":[null,""],"Libnotify":[null,"Libnotify"],"The standard desktop notification API for Linux/*nix systems. This notifier will only function if the pynotify module is installed (Ubuntu/Debian package <a href=\"apt:python-notify\">python-notify</a>).":[null,""],"send Libnotify notifications?":[null,""],"Pushover":[null,"Pushover"],"Pushover makes it easy to send real-time notifications to your Android and iOS devices.":[null,""],"send Pushover notifications?":[null,""],"Pushover key":[null,""],"user key of your Pushover account":[null,""],"Pushover API key":[null,"Pushover API võti"],"click here":[null,""]," to create a Pushover API key":[null,""],"Pushover devices":[null,"Pushover seadmed"],"comma separated list of pushover devices you want to send notifications to":[null,""],"Pushover notification sound":[null,""],"Bike":[null,""],"Bugle":[null,""],"Cash Register":[null,""],"Classical":[null,"Klassikaline"],"Cosmic":[null,"Kosmiline"],"Falling":[null,""],"Gamelan":[null,""],"Incoming":[null,"Sissetulev"],"Intermission":[null,""],"Magic":[null,"Magic"],"Mechanical":[null,"Mehaaniline"],"Piano Bar":[null,"Klaveribaar"],"Siren":[null,"Sireen"],"Space Alarm":[null,""],"Tug Boat":[null,"Puksiiri paat"],"Alien Alarm (long)":[null,""],"Climb (long)":[null,""],"Persistent (long)":[null,""],"Pushover Echo (long)":[null,""],"Up Down (long)":[null,""],"None (silent)":[null,""],"Device specific":[null,"Konkreetse seadme"],"choose notification sound to use":[null,""],"Pushover priority":[null,""],"Choose priority to use":[null,""],"Boxcar 2":[null,"Boxcar 2"],"Read your messages where and when you want them!":[null,""],"send Boxcar notifications?":[null,""],"Boxcar2 access token":[null,""],"access token for your Boxcar account.":[null,""],"NMA":[null,"NMA"],"Notify My Android":[null,"Notify My Android"],"Notify My Android is a Prowl-like Android App and API that offers an easy way to send notifications from your application directly to your Android device.":[null,""],"send NMA notifications?":[null,""],"NMA API key":[null,"NMA API võti"],"(multiple keys must be separated by commas, up to a maximum of 5)":[null,""],"NMA priority":[null,"NMA prioriteet"],"priority of NMA messages from SickRage.":[null,""],"Pushalot":[null,"Pushalot"],"Pushalot is a platform for receiving custom push notifications to connected devices running Windows Phone or Windows 8.":[null,""],"send Pushalot notifications ?":[null,""],"Pushalot authorization token":[null,""],"authorization token of your Pushalot account.":[null,""],"Pushbullet":[null,""],"Pushbullet is a platform for receiving custom push notifications to connected devices running Android/iOS and desktop browsers such as Chrome, Firefox or Opera.":[null,""],"send Pushbullet notifications?":[null,""],"Pushbullet API key":[null,"Pushbullet API võti"],"API key of your Pushbullet account":[null,""],"Pushbullet devices":[null,"Pushbullet seadmed"],"Update device list":[null,""],"Pushbullet channels":[null,"Pushbullet kanalid"],"Free Mobile":[null,""],"Free Mobile is a famous French cellular network provider.<br> It provides to their customer a free SMS API.":[null,""],"send SMS notifications?":[null,""],"send a SMS when a download starts?":[null,""],"send a SMS when a download finishes?":[null,""],"send a SMS when subtitles are downloaded?":[null,""],"Free Mobile customer ID":[null,""],"it's your Free Mobile customer ID (8 digits)":[null,""],"Free Mobile API key":[null,""],"find your API key in your customer portal.":[null,""],"Click below to test your settings.":[null,""],"Telegram":[null,"Telegramm"],"Telegram is a cloud-based instant messaging service.":[null,""],"send Telegram notifications?":[null,""],"send a message when a download starts?":[null,""],"send a message when a download finishes?":[null,""],"send a message when subtitles are downloaded?":[null,""],"User/group ID":[null,""],"contact @myidbot on Telegram to get an ID":[null,""],"Bot API token":[null,""],"contact @BotFather on Telegram to set up one":[null,""],"Join":[null,"Liitu"],"Join all of your devices together!":[null,""],"send Join notifications?":[null,""],"Device ID":[null,""],"per device specific id":[null,""]," to create a Join API key":[null,""],"Twilio":[null,""],"Twilio is a webservice API that allows you to communicate directly with a mobile number. This notifier will send a text directly to your mobile device.":[null,""],"should SickRage text your mobile device?":[null,""],"Twilio Account SID":[null,""],"account SID of your Twilio account.":[null,""],"Twilio Auth Token":[null,""],"Twilio Phone SID":[null,""],"phone SID that you would like to send the sms from":[null,""],"Your phone number":[null,""],"phone number that will receive the sms. Please use the format +1-###-###-####":[null,""],"Twitter":[null,"Twitter"],"A social networking and microblogging service, enabling its users to send and read other users' messages called tweets.":[null,""],"should SickRage post tweets on Twitter?":[null,""],"you may want to use a secondary account.":[null,""],"send direct message":[null,""],"send a notification via Direct Message, not via status update":[null,""],"send DM to":[null,""],"Twitter account to send Direct Messages to (must follow you)":[null,""],"Step One":[null,"Esimene samm"],"Request Authorization":[null,""],"Click the \"Request Authorization\" button.<br> This will open a new page containing an auth key.<br> <b>note:</b> if nothing happens check your popup blocker.":[null,""],"Step Two":[null,"Teine samm"],"Enter the key Twitter gave you below, and click \"Verify Key\".":[null,""],"Trakt":[null,"Trakt"],"Trakt helps keep a record of what TV shows and movies you are watching. Based on your favorites, Trakt recommends additional shows and movies you'll enjoy!":[null,""],"send Trakt.tv notifications?":[null,""],"username of your Trakt account.":[null,""],"Trakt PIN":[null,"Trakt PIN"],"Get Trakt PIN":[null,"Hangi Trakt PIN"],"PIN code to authorize SickRage to access Trakt on your behalf.":[null,""],"API Timeout":[null,""],"seconds to wait for Trakt API to respond. (Use 0 to wait forever)":[null,""],"Default indexer":[null,""],"Sync libraries":[null,""],"sync your SickRage show library with your trakt show library.":[null,""],"Remove Episodes From Collection":[null,""],"remove an episode from your Trakt Collection if it is not in your SickRage Library.":[null,""],"Sync watchlist":[null,""],"sync your SickRage show watchlist with your trakt show watchlist (either Show and Episode).":[null,""],"episode will be added on watch list when wanted or snatched and will be removed when downloaded ":[null,""],"Watchlist add method":[null,""],"Skip All":[null,"Jäta kõik vahele"],"Download Pilot Only":[null,""],"Get whole show":[null,"Lae kogu saade"],"method in which to download episodes for new shows.":[null,""],"Remove episode":[null,"Eemalda episood"],"remove an episode from your watchlist after it is downloaded.":[null,""],"Remove series":[null,"Eemalda sari"],"remove the whole series from your watchlist after any download.":[null,""],"Remove watched show":[null,""],"remove the show from sickrage if it's ended and completely watched":[null,""],"Start paused":[null,"Alustada pausilt"],"shows grabbed from your trakt watchlist start paused.":[null,""],"Trakt blackList name":[null,""],"name (slug) of list on Trakt for blacklisting show on 'Add Trending Show' & 'Add Recommended Shows' pages":[null,""],"Email":[null,"E-mail"],"Allows configuration of email notifications on a per show basis.":[null,""],"send email notifications?":[null,""],"SMTP host":[null,""],"hostname of your SMTP email server.":[null,""],"SMTP port":[null,""],"port number used to connect to your SMTP host.":[null,""],"SMTP from":[null,""],"sender email address, some hosts require a real address.":[null,""],"Use TLS":[null,"Kasuta TLSi"],"check to use TLS encryption.":[null,""],"SMTP user":[null,"SMTP kasutaja"],"(optional) your SMTP server username.":[null,""],"SMTP password":[null,"SMTP parool"],"(optional) your SMTP server password.":[null,""],"Global email list":[null,"Globaalne meililist"],"email addresses listed here, separated by commas if applicable, will<br> receive notifications for <b>all</b> shows.":[null,""],"(This field may be blank except when testing.)":[null,""],"Email Subject":[null,"E-kirja teema"],"use a custom subject for some privacy protection?":[null,""],"(leave blank for the default SickRage subject)":[null,""],"configure per-show notifications here by entering email address(es), separated by commas,":[null,""],"after selecting a show in the drop-down box. Be sure to activate the 'Save for this show'":[null,""],"button below after each entry.":[null,""],"Slack":[null,""],"Slack brings all your communication together in one place. It's real-time messaging, archiving and search for modern teams.":[null,""],"should SickRage post messages on Slack?":[null,""],"Slack Incoming Webhook":[null,""],"Discord":[null,""],"All-in-one voice and text chat for gamers that's free, secure, and works on both your desktop and phone.":[null,""],"Should SickRage post messages on Discord?":[null,""],"Discord Incoming Webhook":[null,""],"Create webhook under channel settings.":[null,""],"Discord Bot Name":[null,""],"Blank will use webhook default Name.":[null,""],"Discord Avatar URL":[null,""],"Blank will use webhook default Avatar.":[null,""],"Discord TTS":[null,""],"Send notifications using text-to-speech":[null,""],"Post-Processing":[null,""],"Episode Naming":[null,""],"Metadata":[null,"Metaandmed"],"Settings that dictate how SickRage should process completed downloads.":[null,""],"enable the automatic post processor to scan and process any files in your Post Processing Dir":[null,""],"do not use if you use an external Post Processing script":[null,""],"Post Processing Dir":[null,""],"the folder where your download client puts the completed TV downloads.":[null,""],"please use seperate downloading and completed folders in your download client if possible.":[null,""],"Processing Method":[null,""],"what method should be used to put files into the library?":[null,""],"if you keep seeding torrents after they finish, please avoid the 'move' processing method to prevent errors.":[null,""],"Auto Post-Processing Frequency":[null,""],"time in minutes to check for new files to auto post-process (min 10)":[null,""],"Postpone post processing":[null,""],"wait to process a folder if sync files are present.":[null,""],"Sync File Extensions":[null,""],"comma seperated list of extensions or filename globs SickRage ignores when Post Processing":[null,""],"Rename Episodes":[null,"Nimeta episoodid"],"rename episode using the Episode Naming settings?":[null,""],"Create missing show directories":[null,""],"create missing show directories when they get deleted":[null,""],"Add shows without directory":[null,""],"add shows without creating a directory (not recommended)":[null,""],"Move associated files":[null,""],"move associated (srt/srr/sfv/etc) files while post processing?":[null,""],"Rename .nfo file":[null,""],"rename the original .nfo file to .nfo-orig to avoid conflicts?":[null,""],"Associated file extensions":[null,""],"comma separated list of associated file extensions SickRage should keep while post processing.":[null,""],"leaving it empty means no associated files will be post processed":[null,""],"Delete non associated files":[null,""],"delete non associated files while post processing?":[null,""],"Change File Date":[null,"Muuda faili kuupäeva"],"set last modified filedate to the date that the episode aired?":[null,""],"some systems may ignore this feature.":[null,""],"Timezone for File Date":[null,""],"local":[null,"kohalik"],"network":[null,"võrk"],"what timezone should be used to change File Date?":[null,""],"Unpack":[null,"Paki lahti"],"What to do with archived releases found in your <i>TV Download Dir</i>?":[null,""],"Ignore (do not process contents)":[null,""],"Unpack (process contents)":[null,""],"Treat as video (process archive as-is)":[null,""],"'Unpack' only works with RAR archives":[null,""],"Windows":[null,""],"WinRar is required on windows":[null,""],"Unpack Directory":[null,""],"Choose a path to unpack files, leave blank to unpack in download dir":[null,""],"Unrar Location":[null,""],"add the path to unrar if it is not in the system path":[null,""],"Alternate Unrar Tool":[null,""],"add the path to an alternate unrar tool if it is not in the system path":[null,""],"Delete RAR contents":[null,"RAR sisu kustutamine"],"delete content of RAR files, even if Process Method not set to move?":[null,""],"only working with RAR archive":[null,""],"Don't delete empty folders":[null,""],"leave empty folders when Post Processing?":[null,""],"can be overridden using manual Post Processing":[null,""],"Follow symbolic-links":[null,""],"follow down symbolic links in download directory?":[null,""],"<b>EXPERTS ONLY.</b><br>Enable only if you know what <b>circular symbolic links</b> are,<br>and can <b>verify that you have none</b>.":[null,""],"Use icacls":[null,""],"Windows only":[null,""],"sets video permissions after using the move method in post processing":[null,""],"Extra Scripts":[null,""],"see":[null,""],"for script arguments description and usage.":[null,""],"How SickRage will name and sort your episodes.":[null,""],"Name Pattern":[null,""],"Toggle Naming Legend":[null,""],"don't forget to add quality pattern. Otherwise after post-processing the episode will have UNKNOWN quality":[null,""],"Meaning":[null,"Tähendus"],"Pattern":[null,"Muster"],"Result":[null,"Tulemus"],"Use lower case if you want lower case names (eg. %sn, %e.n, %q_n etc)":[null,""],"Show Name":[null,"Saate nimi"],"Show.Name":[null,""],"Show_Name":[null,""],"Season Number":[null,"Hooaja Number"],"XEM Season Number":[null,""],"Episode Number":[null,"Episoodi Number"],"XEM Episode Number":[null,""],"Episode Name":[null,""],"Episode.Name":[null,""],"Episode_Name":[null,""],"Air Date":[null,""],"Post-Processing Date":[null,""],"Quality":[null,"Kvaliteet"],"Scene Quality":[null,""],"Release Name":[null,"Väljalaske nimi"],"SickRage' is used in place of RLSGROUP if it could not be properly detected":[null,""],"Release Group":[null,""],"If episode is proper/repack add 'proper' to name.":[null,""],"Release Type":[null,""],"Multi-Episode Style":[null,""],"Single-EP Sample":[null,""],"Multi-EP sample":[null,""],"Strip Show Year":[null,""],"remove the TV show's year when renaming the file?":[null,""],"only applies to shows that have year inside parentheses":[null,""],"Custom Air-By-Date":[null,""],"name air-by-date shows differently than regular shows?":[null,""],"Toggle ABD Naming Legend":[null,""],"Regular Air Date":[null,""],"Year":[null,"Aasta"],"Month":[null,"Kuu"],"Day":[null,"Päev"],"Multi-EP style is ignored":[null,""],"Custom Sports":[null,""],"name sports shows differently than regular shows?":[null,""],"Toggle Sports Naming Legend":[null,""],"Sports Air Date":[null,""],"Custom Anime":[null,""],"name anime shows differently than regular shows?":[null,""],"Toggle Anime Naming Legend":[null,""],">XEM Season Number":[null,""],"Single-EP Anime Sample":[null,""],"Multi-EP Anime sample":[null,""],"Add Absolute Number":[null,""],"add the absolute number to the season/episode format?":[null,""],"only applies to anime. (eg. S15E45 - 310 vs S15E45)":[null,""],"Only Absolute Number":[null,""],"replace season/episode format with absolute number":[null,""],"only applies to anime.":[null,""],"No Absolute Number":[null,""],"don't include the absolute number":[null,""],"The data associated to the data. These are files associated to a TV show in the form of images and text that, when supported, will enhance the viewing experience.":[null,""],"Metadata Type":[null,""],"toggle metadata options that you wish to be created":[null,""],"multiple targets may be used":[null,""],"Select Metadata":[null,""],"Provider Priorities":[null,"Pakkuja prioriteedid"],"Provider Options":[null,"Pakkuja Valikud"],"Configure Custom Newznab Providers":[null,""],"Configure Custom Torrent Providers":[null,""],"Check off and drag the providers into the order you want them to be used.":[null,""],"At least one provider is required but two are recommended.":[null,""],"Torrent providers can be toggled in ":[null,""],"Provider does not support backlog searches at this time.":[null,""],"Provider is <b>NOT WORKING</b>.":[null,""],"Configure individual provider settings here.":[null,""],"Check with provider's website on how to obtain an API key if needed.":[null,""],"Configure provider":[null,"Seadista pakkuja"],"no providers available to configure.":[null,""],"URL":[null,"URL"],"Enable daily searches":[null,""],"enable provider to perform daily searches.":[null,""],"Enable backlog searches":[null,""],"enable provider to perform backlog searches.":[null,""],"Season search mode":[null,"Hooaja otsingu režiimis"],"when searching for complete seasons you can choose to have it look for season packs only, or choose to have it build a complete season from just single episodes.":[null,""],"season packs only.":[null,""],"episodes only.":[null,""],"Enable fallback":[null,""],"when searching for a complete season depending on search mode you may return no results, this helps by restarting the search using the opposite search mode.":[null,""],"Custom URL":[null,"Kohandatud URL"],"the URL should include the protocol (and port if applicable). Examples: http://192.168.1.4/ or http://localhost:3000/":[null,""],"Api key":[null,"Api võti"],"Digest":[null,""],"Hash":[null,"Räsi"],"Passkey":[null,"Pääsukood"],"Cookies":[null,"Küpsised"],"example: uid=1234;pass=567845439634987<br>note: uid and pass are not your username/password.<br>use DevTools or Firebug to get these values after logging in on your browser.":[null,""],"Pin":[null,"PIN-kood"],"Seed ratio":[null,""],"stop transfer when ratio is reached<br>(-1 SickRage default to seed forever, or leave blank for downloader default)":[null,""],"Minimum seeders":[null,""],"Minimum leechers":[null,""],"Confirmed download":[null,""],"only download torrents from trusted or verified uploaders ?":[null,""],"Ranked torrents":[null,""],"only download ranked torrents (trusted releases)":[null,""],"English torrents":[null,""],"only download english torrents, or torrents containing english subtitles":[null,""],"For Spanish torrents":[null,""],"ONLY search on this provider if show info is defined as \"Spanish\" (avoid provider's use for VOS shows)":[null,""],"Sorting results by":[null,""],"Freeleech":[null,"Freeleech"],"only download <b>\"FreeLeech\"</b> torrents.":[null,""],"Category":[null,"Kategooria"],"select torrent with Italian subtitle":[null,""],"Configure Custom<br>Newznab Providers":[null,""],"Add and setup or remove custom Newznab providers.":[null,""],"Select provider":[null,""],"-- add new provider --":[null,""],"Provider name":[null,"Pakkuja nimi"],"Site URL":[null,"Saidi URL"],"Newznab search categories":[null,""],"select your Newznab categories on the left, and click the \"update categories\" button to use them for searching.) <b>don't forget to to save the form!":[null,""],"Update Categories":[null,"Uuenda Kategooriad"],"Add":[null,"Lisa"],"Delete":[null,"Kustuta"],"Add and setup or remove custom RSS providers.":[null,""],"RSS URL":[null,"RSS URL"],"Search element":[null,""],"eg: title":[null,"nt: pealkiri"],"Episode Search":[null,""],"NZB Search":[null,"NZB otsing"],"Torrent Search":[null,"Torrenti Otsing"],"How to manage searching with":[null,""],"Randomize Providers":[null,""],"randomize the provider search order instead of going in order of placement":[null,""],"Download propers":[null,""],"replace original download with \"Proper\" or \"Repack\" if nuked":[null,""],"Check propers every":[null,""],"24 hours":[null,"24 tundi"],"4 hours":[null,"4 tundi"],"90 mins":[null,"90 min"],"45 mins":[null,"45 min"],"15 mins":[null,"15 min"],"Backlog search day(s)":[null,""],"number of day(s) that the \"Forced Backlog Search\" will cover (e.g. 7 Days)":[null,""],"Backlog search frequency":[null,""],"time in minutes between searches (min.":[null,""],"Daily search frequency":[null,""],"Usenet retention":[null,""],"age limit in days for usenet articles to be used (e.g. 500)":[null,""],"Ignore words":[null,""],"results with one or more word from this list will be ignored<br>separate words with a comma, e.g. \"word1,word2,word3\"":[null,""],"Require words":[null,""],"results with no word from this list will be ignored<br>separate words with a comma, e.g. \"word1,word2,word3\"":[null,""],"Trackers list":[null,""],"trackers that will be added to magnets without trackers<br>separate trackers with a comma, e.g. \"tracker1,tracker2,tracker3\"":[null,""],"Ignore language names in subbed results":[null,""],"ignore subbed releases based on language names <br>\n Example: \"dk\" will ignore words: dksub, dksubs, dksubbed, dksubed <br>\n separate languages with a comma, e.g. \"lang1,lang2,lang3":[null,""],"Allow high priority":[null,""],"set downloads of recently aired episodes to high priority":[null,""],"Use Failed Downloads":[null,""],"use Failed Download Handling?":[null,""],"will only work with snatched/downloaded episodes after enabling this":[null,""],"Delete Failed":[null,"Kustutamine ebaõnnestus"],"delete files left over from a failed download?":[null,""],"this only works if Use Failed Downloads is enabled.":[null,""],"How to handle NZB search results.":[null,""],"Search NZBs":[null,"Otsi NZBe"],"enable NZB search providers":[null,""],"Send .nzb files to":[null,""],"SABnzbd server URL":[null,""],"URL to your SABnzbd server (e.g. http://localhost:8080/)":[null,""],"SABnzbd username":[null,"SABnzbd kasutajanimi"],"(blank for none)":[null,""],"SABnzbd password":[null,"SABnzbd parool"],"SABnzbd API key":[null,"SABnzbd API võti"],"locate at... SABnzbd Config -> General -> API Key":[null,""],"Use SABnzbd category":[null,""],"add downloads to this category (e.g. TV)":[null,""],"Use SABnzbd category (backlog episodes)":[null,""],"add downloads of old episodes to this category (e.g. TV)":[null,""],"Use SABnzbd category for anime":[null,""],"add anime downloads to this category (e.g. anime)":[null,""],"Use SABnzbd category for anime (backlog episodes)":[null,""],"add anime downloads of old episodes to this category (e.g. anime)":[null,""],"Use forced priority":[null,""],"enable to change priority from HIGH to FORCED":[null,""],"Black hole folder location":[null,""],"<b>.nzb</b> files are stored at this location for external software to find and use":[null,""],"Connect using HTTPS":[null,"Kasuta HTTPS-i"],"enable Secure control in NZBGet and set the correct Secure Port here":[null,""],"NZBget host:port":[null,""],"(e.g. localhost:6789)":[null,"(nt. localhost:6789)"],"NZBget RPC host name and port number (not NZBgetweb!)":[null,""],"NZBget username":[null,"NZBget kasutajanimi"],"locate in nzbget.conf (default:nzbget)":[null,""],"NZBget password":[null,"NZBget parool"],"locate in nzbget.conf (default:tegbzn6789)":[null,""],"Use NZBget category":[null,""],"send downloads marked this category (e.g. TV)":[null,""],"Use NZBget category (backlog episodes)":[null,""],"send downloads of old episodes marked this category (e.g. TV)":[null,""],"Use NZBget category for anime":[null,""],"send anime downloads marked this category (e.g. anime)":[null,""],"Use NZBget category for anime (backlog episodes)":[null,""],"send anime downloads of old episodes marked this category (e.g. anime)":[null,""],"NZBget priority":[null,""],"Very low":[null,"Väga madal"],"Low":[null,"Madal"],"Very high":[null,"Väga kõrge"],"Force":[null,"Sunni"],"priority for daily snatches (no backlog)":[null,""],"Torrent host:port":[null,""],"URL to your Synology DSM (e.g. http://localhost:5000/)":[null,""],"Client username":[null,"Kliendi kasutajanimi"],"Client password":[null,"Kliendi parool"],"Downloaded files location":[null,""],"where Synology Download Station will save downloaded files (blank for client default)":[null,""],"the destination has to be a shared folder for Synology DS":[null,""],"Click below to test":[null,"Klõpsake allpool testimiseks"],"How to handle Torrent search results.":[null,""],"Search torrents":[null,"Otsi torrenteid"],"enable torrent search providers":[null,""],"Send .torrent files to":[null,""],"<b>.torrent</b> files are stored at this location for external software to find and use":[null,""],"URL to your torrent client (e.g. http://localhost:8000/)":[null,""],"Torrent RPC URL":[null,""],"the path without leading and trailing slashes (e.g. transmission)":[null,""],"Http Authentication":[null,"Http-autentimine"],"Verify certificate":[null,"Kontrolli sertifikaat"],"disable if you get \"Deluge: Authentication Error\" in your log":[null,""],"verify SSL certificates for HTTPS requests":[null,""],"Add label to torrent":[null,""],"(blank spaces are not allowed)":[null,""],"label plugin must be enabled in Deluge clients":[null,""],"for QBitTorrent 3.3.1 and up":[null,""],"Add label to torrent for anime":[null,""],"for QBitTorrent 3.3.1 and up ":[null,""],"where <span id=\"torrent_client\">the torrent client</span> will save downloaded files (blank for client default)":[null,""],"the destination has to be a shared folder for Synology DS</span>":[null,""],"Minimum seeding time":[null,""],"time in hours":[null,""],"(default:'0' passes blank to client and '-1' passes nothing)":[null,""],"Start torrent paused":[null,""],"add .torrent to client but do <b style=\"font-weight:900\">not</b> start downloading":[null,""],"Allow high bandwidth":[null,""],"use high bandwidth allocation if priority is high":[null,""],"Test Connection":[null,"Testi ühendust"],"Windows Shares":[null,""],"Defines your existing windows shares so that we can add them to the browse dialog":[null,""],"Share #{number}":[null,""],"Share label":[null,""],"Hostname or IP":[null,""],"Share path":[null,""],"Subtitles Search":[null,"Subtiitrid otsing"],"Subtitles Plugin":[null,"Subtiitrite Plugin"],"Plugin Settings":[null,"Plugina seaded"],"Settings that dictate how SickRage handles subtitles search results.":[null,""],"Search Subtitles":[null,"Otsi subtiitreid"],"Subtitle Languages":[null,"Subtiitrite keeled"],"Subtitle Directory":[null,"Subtiitrite kataloog"],"the directory where SickRage should store your <i>Subtitles</i> files.":[null,""],"leave empty if you want store subtitle in episode path.":[null,""],"Subtitle Find Frequency":[null,""],"time in hours between scans (default: 1)":[null,""],"Include Specials":[null,""],"include the show's specials when searching for subtitles?":[null,""],"Perfect matches":[null,""],"only download subtitles that match: release group, video codec, audio codec and resolution":[null,""],"if disabled you may get out of sync subtitles":[null,""],"Subtitles History":[null,"Subtiitrid ajalugu"],"log downloaded Subtitle on History page?":[null,""],"Subtitles Multi-Language":[null,""],"append language codes to subtitle filenames?":[null,""],"this option is required if you use multiple subtitle languages":[null,""],"Delete unwanted subtitles":[null,""],"enable to delete unwanted subtitle languages bundled with release":[null,""],"Embedded Subtitles":[null,""],"ignore subtitles embedded inside video file?":[null,""],"this will ignore <u>all</u> embedded subtitles for every video file!":[null,""],"Hearing Impaired Subtitles":[null,""],"download hearing impaired style subtitles?":[null,""],"See":[null,"Vaata"],"for a script arguments description.":[null,""],"Additional scripts separated by <b>|</b>.":[null,""],"Scripts are called after each episode has searched and downloaded subtitles.":[null,""],"For any scripted languages, include the interpreter executable before the script. See the following example":[null,""],"For Windows:":[null,""],"For Linux / OS X:":[null,"Linux / OS X:"],"Subtitle Providers":[null,""],"Check off and drag the plugins into the order you want them to be used.":[null,""],"At least one plugin is required.":[null,""]," Web-scraping plugin":[null,""],"Provider Settings":[null,""],"Set user and password for each provider":[null,""],"User Name":[null,"Kasutajanimi"],"Change Show":[null,""],"Prev Show":[null,""],"Next Show":[null,""],"Jump to Season":[null,"Hüppa hooaega"],"Specials":[null,"Eripakkumised"],"Poster for":[null,""],"Stars":[null,"Tähed"],"minutes":[null,"minutit"],"View other popular {genre} shows on trakt.tv.":[null,""],"View other popular {imdbgenre} shows on IMDB.":[null,""],"Allowed":[null,"Lubatud"],"Preferred":[null,"Eelistatud"],"Originally Airs":[null,""],"Show Status":[null,""],"Default EP Status":[null,""],"Location":[null,"Asukoht"],"Missing":[null,"Puudub"],"Scene Name":[null,"Stseeni nimi"],"Required Words":[null,""],"Ignored Words":[null,""],"Size":[null,"Suurus"],"Info Language":[null,"Info keel"],"Subtitles SR Metadata":[null,""],"Season Folders":[null,"Hooaja kaustad"],"Paused":[null,"Peatatud"],"Air-by-Date":[null,""],"Sports":[null,"Sport"],"DVD Order":[null,"DVD tellimus"],"Scene Numbering":[null,""],"Select Filtered Episodes":[null,""],"Clear All":[null,"Tühjenda kõik"],"Change selected episodes to":[null,""],"Select Columns":[null,""],"Hide Episodes":[null,""],"Show Episodes":[null,""],"NFO":[null,"NFO"],"TBN":[null,"TBN"],"Episode":[null,"Episood"],"Absolute":[null,""],"Scene":[null,""],"Scene Absolute":[null,""],"File Name":[null,""],"Airdate":[null,""],"Download":[null,"Lae alla"],"Change the value here if scene numbering differs from the indexer episode numbering":[null,""],"Change the value here if scene absolute numbering differs from the indexer absolute numbering":[null,""],"Manual Search":[null,""],"Do you want to mark this episode as failed?":[null,""],"The episode release name will be added to the failed history, preventing it to be downloaded again.":[null,""],"Do you want to include the current episode quality in the search?":[null,""],"Choosing No will ignore any releases with the same episode quality as the one currently downloaded/snatched.":[null,""],"Download subtitle":[null,""],"Do you want to re-download the subtitle for this language?":[null,""],"It will overwrite your current subtitle":[null,""],"Format":[null,"Formaat"],"Advanced":[null,"Edasijõudnud"],"Main Settings":[null,"Peamised sätted"],"Show Location":[null,"Näita asukohta"],"Preferred Quality":[null,"Eelistatud kvaliteet"],"Default Episode Status":[null,""],"this will set the status for future episodes.":[null,""],"this only applies to episode filenames and the contents of metadata files.":[null,""],"search for subtitles":[null,""],"Use SR Metdata":[null,""],"use SickRage metadata when searching for subtitle, this will override the autodiscovered metadata":[null,""],"pause this show (SickRage will not download episodes)":[null,""],"Format Settings":[null,"Formaadi seadete"],"Air by date":[null,""],"check if the show is released as Show.03.02.2010 rather than Show.S02E03.":[null,""],"in case of an air date conflict between regular and special episodes, the later will be ignored.":[null,""],"check if the show is Anime and episodes are released as Show.265 rather than Show.S02E03":[null,""],"check if the show is a sporting or MMA event released as Show.03.02.2010 rather than Show.S02E03":[null,""],"Season folders":[null,"Hooaja kaustad"],"group episodes by season folder (uncheck to store in a single folder)":[null,""],"search by scene numbering (uncheck to search by indexer numbering)":[null,""],"use the DVD order instead of the air order":[null,""],"a \"Force Full Update\" is necessary, and if you have existing episodes you need to sort them manually.":[null,""],"comma-separated <i>e.g. \"word1,word2,word3</i>\"":[null,""],"search results with one or more words from this list will be ignored.":[null,""],"e.g. \"word1,word2,word3\"":[null,""],"search results with no words from this list will be ignored.":[null,""],"Scene Exception":[null,""],"this will affect episode search on NZB and torrent providers.":[null,""],"this list appends to the original show name.":[null,""],"WARNING logs":[null,"Hoiatuse logid"],"ERROR logs":[null,"VEA logid"],"There are no events to display.":[null,""],"Limit":[null,"Limiit"],"Layout":[null,"Paigutus"],"HistoryLayout":[null,""],"Compact":[null,"Kompaktne"],"Detailed":[null,"Üksikasjalikud"],"Time":[null,"Aeg"],"Provider":[null,"Pakkuja"],"Missing Provider":[null,"Puuduv pakkuja"],"missing provider":[null,"puuduv pakkuja"],"Directory":[null,""],"Show Name (tvshow.nfo)":[null,""],"Indexer":[null,""],"Enter the folder containing the episode":[null,""],"Process Method to be used":[null,""],"Copy":[null,""],"Move":[null,""],"Hard Link":[null,""],"Symbolic Link":[null,""],"Symbolic Link Reversed":[null,""],"Force already Post Processed Dir/Files":[null,""],"Mark Dir/Files as priority download":[null,""],"(Check it to replace the file even if it exists at higher quality)":[null,""],"Delete files and folders":[null,"Kustuta failid ja kaustad"],"(Check it to delete files and folders like auto processing)":[null,""],"Don't use processing queue":[null,""],"(If checked this will return the result of the process here, but may be slow!)":[null,""],"Mark download as failed":[null,""],"Process":[null,"Protsess"],"Download subtitles for this show?":[null,""],"use SickRage metadata when searching for subtitle, <br />this will override the autodiscovered metadata":[null,""],"Status for previously aired episodes":[null,""],"Status for all future episodes":[null,""],"Group episodes by season folder?":[null,""],"Is this show an Anime?":[null,""],"Is this show scene numbered?":[null,""],"Save Defaults":[null,"Salvesta vaikesätted"],"Use current values as the defaults":[null,""],"<p>Select your preferred fansub groups from the <b>Available Groups</b> and add them to the <b>Whitelist</b>. Add groups to the <b>Blacklist</b> to ignore them.</p>\n <p>The <b>Whitelist</b> is checked <i>before</i> the <b>Blacklist</b>.</p>\n <p>Groups are shown as <b>Name</b> | <b>Rating</b> | <b>Number of subbed episodes</b>.</p>\n <p>You may also add any fansub group not listed to either list manually.</p>\n <p>When doing this please note that you can only use groups listed on anidb for this anime.\n <br>If a group is not listed on anidb but subbed this anime, please correct anidb's data.</p>":[null,""],"Whitelist":[null,""],"Available Groups":[null,""],"Add to Whitelist":[null,""],"Add to Blacklist":[null,""],"Blacklist":[null,"Must nimekiri"],"Custom Group":[null,""],"Allowed Quality:":[null,"Lubatud kvaliteet:"],"Preferred Quality:":[null,"Eelistatud kvaliteet:"],"Filter Show Name":[null,""],"Root":[null,""],"All":[null,"Kõik"],"Clear Filter(s)":[null,"Eemalda filtrid"],"Poster":[null,"Plakat"],"Small Poster":[null,"Väike plakat"],"Banner":[null,"Banner"],"Simple":[null,"Lihtne"],"Next Episode":[null,"Järgmine Episode"],"Progress":[null,"Progress"],"Direction":[null,"Suund"],"Ascending":[null,"Kasvav"],"Descending":[null,""],"Poster Size":[null,"Plakati suurus"],"Continuing":[null,"Jätkuv"],"Ended":[null,"Lõppenud"],"Total":[null,""],"Invalid date":[null,""],"No Network":[null,""],"Next Ep":[null,""],"Prev Ep":[null,""],"Show":[null,"Näita"],"Downloads":[null,""],"Active":[null,""],"loading":[null,""],"Loading...":[null,""],"<p><b><u>Preferred</u></b> qualities will replace those in <b><u>allowed</u></b>, even if they are lower.</p>":[null,""],"New":[null,"Uus"],"Set as Default":[null,"Määra vaikeseadeks"],"Remember me":[null,"Jäta mind meelde"],"Edit Selected":[null,"Redigeeri valitud"],"Subtitle":[null,"Subtiiter"],"Default Ep Status":[null,""],"Update":[null,"Uuendus"],"Rescan":[null,"Skänni uuesti"],"Rename":[null,"Muuda nimi"],"Search Subtitle":[null,"Otsi subtiitreid"],"Force Metadata Regen":[null,""],"Snatched (Allowed)":[null,""],"Jump to Show":[null,""],"Force Backlog":[null,""],"Manage episodes with status":[null,""],"Manage":[null,"Halda"],"None of your episodes have status":[null,""],"Shows containing":[null,""],"episodes":[null,"episoodid"],"Set checked shows/episodes to":[null,""],"Go":[null,"Mine"],"Select all":[null,"Vali kõik"],"Clear all":[null,"Tühjenda kõik"],"Release":[null,""],"Backlog Search":[null,""],"Not in progress":[null,""],"In Progress":[null,""],"Daily Search":[null,""],"Find Propers Search":[null,""],"Propers search disabled":[null,""],"Subtitle Search":[null,""],"Subtitle search disabled":[null,""],"Search Queue":[null,""],"pending items":[null,""],"Daily":[null,""],"Manual":[null,""],"Changing any settings marked with (<span class=\"separator\">*</span>) will force a refresh of the selected shows.":[null,""],"Selected Shows":[null,""],"Root Directories":[null,""],"Current":[null,""],"Keep":[null,"Hoia"],"Custom":[null,""],"Group episodes by season folder (set to \"No\" to store in a single folder).":[null,""],"Pause these shows (SickRage will not download episodes).":[null,""],"This will set the status for future episodes.":[null,""],"Search by scene numbering (set to \"No\" to search by indexer numbering).":[null,""],"Set if these shows are Anime and episodes are released as Show.265 rather than Show.S02E03":[null,""],"Set if these shows are sporting or MMA events released as Show.03.02.2010 rather than Show.S02E03.":[null,""],"In case of an air date conflict between regular and special episodes, the later will be ignored.":[null,""],"Set if these shows are released as Show.03.02.2010 rather than Show.S02E03.":[null,""],"Search for subtitles.":[null,"Otsi subtiitreid."],"All of your episodes have {subsLanguage} subtitles.":[null,""],"Manage episodes without":[null,""],"Episodes without {subsLanguage} subtitles.":[null,""],"Episodes without {subtitleLanguage} (undefined) subtitles.":[null,""],"Download missed subtitles for selected episodes":[null,""],"Performing Restart":[null,""],"Waiting for SickRage to shut down":[null,""],"Waiting for SickRage to start again":[null,""],"Loading the default page":[null,""],"Error: The restart has timed out, perhaps something prevented SickRage from starting again?":[null,""],"Key":[null,"Võti"],"Missed":[null,"Vastamata"],"Today":[null,"Täna"],"Soon":[null,"Varsti"],"Later":[null,"Hiljem"],"Subscribe":[null,"Telli"],"Date":[null,"Kuupäev"],"View Paused":[null,"Vaade pausil"],"Hidden":[null,"Peidetud"],"Shown":[null,""],"Calendar":[null,"Kalender"],"List":[null,"Nimekiri"],"Ends":[null,"Lõpeb"],"Next Ep Name":[null,""],"Run time":[null,"Käitusaeg"],"Indexers":[null,""],"No shows for this day":[null,""],"Airs":[null,""],"Plot":[null,""],"Show Update":[null,""],"Version Check":[null,""],"Proper Finder":[null,""],"Post Process":[null,""],"Subtitles Finder":[null,""],"Scheduler":[null,"Ajakava"],"Alive":[null,""],"Start Time":[null,"Algusaeg"],"Cycle Time":[null,""],"Next Run":[null,""],"Last Run":[null,"Viimane käivitus"],"Silent":[null,"Hääletu"],"True":[null,"Tõene"],"N/A":[null,""],"Show id":[null,""],"Show name":[null,"Saate nimi"],"Priority":[null,"Prioriteet"],"Added":[null,"Lisatud"],"Queue type":[null,""],"LOW":[null,"MADAL"],"NORMAL":[null,"NORMAALNE"],"HIGH":[null,"KÕRGE"],"Disk Space":[null,"Kettaruum"],"Free space":[null,"Vaba kettaruum"],"TV Download Directory":[null,""],"Media Root Directories":[null,""],"Preview of the proposed name changes":[null,""],"All Seasons":[null,""],"select all":[null,""],"Rename Selected":[null,""],"Cancel Rename":[null,""],"Old Location":[null,"Vana asukoht"],"New Location":[null,"Uus asukoht"],"Trakt API did not return any results, please check your config.":[null,""],"votes":[null,"häält"],"Remove Show":[null,""],"Level":[null,""],"Filter":[null,""],"All non-absolute folder locations are relative to ":[null,""],"Manual Post-Processing":[null,""],"Episode Status Management":[null,""],"Update PLEX":[null,""],"Update KODI":[null,""],"Update Emby":[null,""],"Missed Subtitle Management":[null,""],"Help & Info":[null,""],"Backup & Restore":[null,""],"Tools":[null,"Tööriistad"],"Support SickRage":[null,""],"View Errors":[null,"Kuva tõrked"],"View Warnings":[null,"Kuva hoiatusi"],"View Log":[null,"Vaata logi"],"Check For Updates":[null,"Kontrolli uuendusi"],"Restart":[null,"Taaskäivita"],"Shutdown":[null,"Pane kinni"],"Logout":[null,"Logi välja"],"Server Status":[null,"Serveri olek"],"View overview of snatched episodes":[null,""],"Episodes Downloaded":[null,""],"Memory used":[null,"Kasutatud mälu"],"Load time":[null,""],"Branch":[null,""],"Now":[null,"Nüüd"]}}}} \ No newline at end of file +{"messages":{"domain":"messages","locale_data":{"messages":{"100":[null,"100"],"250":[null,"250"],"500":[null,""],"":{"domain":"messages","plural_forms":"nplurals=2; plural=(n != 1);","lang":"et_EE"},"Drama":[null,"Draama"],"Mystery":[null,"Müsteerium"],"Science-Fiction":[null,"Ulme"],"Crime":[null,"Krimi"],"Action":[null,""],"Comedy":[null,"Komöödia"],"Thriller":[null,"Thriller"],"Animation":[null,"Animatsioon"],"Family":[null,"Koguperefilm"],"Fantasy":[null,"Fantaasia"],"Adventure":[null,"Seiklus"],"Horror":[null,"Õudus"],"Film-Noir":[null,""],"Sci-Fi":[null,"Sci-Fi"],"Romance":[null,""],"Sport":[null,"Sport"],"War":[null,""],"Biography":[null,""],"History":[null,"Ajalugu"],"Music":[null,"Muusika"],"Western":[null,""],"News":[null,"Uudised"],"Sitcom":[null,""],"Reality-TV":[null,""],"Documentary":[null,"Dokumentaalfilm"],"Game-Show":[null,""],"Musical":[null,"Muusikal"],"Talk-Show":[null,""],"Started Download":[null,"Alustatud allalaadimine"],"Download Finished":[null,"Alla laaditud"],"Subtitle Download Finished":[null,"Subtiitri allalaadimine lõpetatud"],"SickRage Updated":[null,"SickRage Uuendatud"],"SickRage Updated To Commit#: ":[null,""],"SickRage new login":[null,"SickRage uus login"],"New login from IP: {0}. http://geomaplookup.net/?ip={0}":[null,"Uus login: IP: {0}. http://geomaplookup.net/?IP={0}"],"Repeat":[null,"Korda"],"Repeat (Separated)":[null,""],"Extend":[null,"Laiendatud"],"Extend (Limited)":[null,""],"Extend (Limited, E-prefixed)":[null,""],"Downloaded":[null,"Allalaaditud"],"Snatched":[null,"Takerdunud"],"Snatched (Proper)":[null,"Takerdunud (korralik)"],"Failed":[null,"Nurjus"],"Snatched (Best)":[null,"Takerdunud (parim)"],"Archived":[null,"Arhiveeritud"],"Unknown":[null,"Tundmatu"],"Unaired":[null,"Esitamata"],"Skipped":[null,"Vahele jäetud"],"Wanted":[null,"Soovin"],"Ignored":[null,"Ignoreeritud"],"Subtitled":[null,"Subtiitritega"],"For best results please set the Download Station alias as":[null,""],"You can check this setting in the Synology DSM":[null,""],"Control Panel":[null,"Juhtpaneel"],"Application Portal":[null,"Rakenduse portaal"],"Make sure you allow DSM to be embedded with iFrames too in":[null,""],"DSM Settings":[null,"DSM seaded"],"Security":[null,"Turvalisus"],"<No Filter>":[null,""],"Daily Searcher":[null,""],"Backlog":[null,""],"Show Updater":[null,""],"Check Version":[null,""],"Show Queue":[null,""],"Search Queue (All)":[null,""],"Search Queue (Daily Searcher)":[null,""],"Search Queue (Backlog)":[null,""],"Search Queue (Manual)":[null,""],"Search Queue (Retry/Failed)":[null,""],"Search Queue (RSS)":[null,""],"Find Propers":[null,""],"Postprocessor":[null,""],"Find Subtitles":[null,""],"Trakt Checker":[null,""],"Event":[null,"Sündmus"],"Error":[null,"Viga"],"Tornado":[null,"Tornaado"],"Thread":[null,""],"Main":[null,""],"Loading":[null,""],"New update found for SickRage, starting auto-updater":[null,"Sickrage tarkvarauuendus on saadaval, käivitan automaatuuendaja"],"Update was successful":[null,"Värskendus õnnestus"],"Update failed!":[null,"Värskendamine nurjus!"],"Backup":[null,"Varunda"],"Config backup in progress...":[null,"Sätete varundamine on pooleli..."],"Config backup successful, updating...":[null,"Sätete varundamine oli edukas, uuendan..."],"Config backup failed, aborting update":[null,"Sätete varundamine ebaõnnestus, katkestan uuenduse"],"No update needed":[null,"Ole vaja uuendada"],"Mako Error":[null,"Mako tõrge"],"Oops":[null,"Uups"],"Wrong API key used":[null,"Vale API võti, mida kasutatakse"],"Login":[null,"Logi sisse"],"API Key not generated":[null,"API võti ei ole genereeritud"],"API Builder":[null,"API ehitaja"],"Schedule":[null,"Ajakava"],"Test 1":[null,"Test 1"],"This is test number 1":[null,"See on katse nr 1"],"Test 2":[null,"Test 2"],"This is test number 2":[null,"See on katse number 2"],"You're using the {branch} branch. Please use 'master' unless specifically asked":[null,""],"Invalid show parameters":[null,"Sobimatud parameetrid"],"Invalid parameters":[null,""],"Episode couldn't be retrieved":[null,"Episoodi ei saanud laadida"],"Home":[null,"Pealeht"],"Show List":[null,"Kuva loend"],"Error: Unsupported Request. Send jsonp request with 'callback' variable in the query string.":[null,""],"Success. Connected and authenticated":[null,"Edu. Ühendatud ja kinnitatud"],"Authentication failed. SABnzbd expects":[null,"Autentimine nurjus. SABnzbd ootab"],"as authentication method":[null,"nagu autentimismeetod"],"Unable to connect to host":[null,"Ei saanud serveriga ühendust"],"SMS sent successfully":[null,"SMS saatmine õnnestus"],"Problem sending SMS: {message}":[null,"SMS-i saatmise probleem: {message}"],"Telegram notification succeeded. Check your Telegram clients to make sure it worked":[null,"Telegram teate õnnestus. Kontrollige oma Telegram klienti, veendumaks, et see töötas"],"Error sending Telegram notification: {message}":[null,""],"join notification succeeded. Check your join clients to make sure it worked":[null,""],"Error sending join notification: {message}":[null,""]," with password":[null," parooliga"],"Registered and Tested growl successfully {growl_host}":[null,""],"Registration and Testing of growl failed {growl_host}":[null,""],"Test prowl notice sent successfully":[null,""],"Test prowl notice failed":[null,""],"Boxcar2 notification succeeded. Check your Boxcar2 clients to make sure it worked":[null,""],"Error sending Boxcar2 notification":[null,""],"Pushover notification succeeded. Check your Pushover clients to make sure it worked":[null,"Pushover teate õnnestus. Kontrollige oma Pushover klienti, veendumaks, et see töötas"],"Error sending Pushover notification":[null,"Viga Pushover teate saatmisel"],"Key verification successful":[null,"Võtme kinnitus õnnestus"],"Unable to verify key":[null,"Ei ole võimalik kontrollida võtit"],"Tweet successful, check your twitter to make sure it worked":[null,""],"Error sending tweet":[null,"Viga tweedi saatmisel"],"Please enter a valid account sid":[null,""],"Please enter a valid auth token":[null,""],"Please enter a valid phone sid":[null,""],"Please format the phone number as \"+1-###-###-####\"":[null,""],"Authorization successful and number ownership verified":[null,""],"Error sending sms":[null,""],"Slack message successful":[null,""],"Slack message failed":[null,""],"Discord message successful":[null,""],"Discord message failed":[null,""],"Test KODI notice sent successfully to {kodi_host}":[null,""],"Test KODI notice failed to {kodi_host}":[null,""],"Successful test notice sent to Plex Home Theater ... {plex_clients}":[null,""],"Test failed for Plex Home Theater ... {plex_clients}":[null,""],"Tested Plex Home Theater(s)":[null,""],"Successful test of Plex Media Server(s) ... {plex_servers}":[null,""],"Test failed, No Plex Media Server host specified":[null,""],"Test failed for Plex Media Server(s) ... {plex_servers}":[null,""],"Tested Plex Media Server host(s)":[null,""],"Tried sending desktop notification via libnotify":[null,""],"Test notice sent successfully to {emby_host}":[null,""],"Test notice failed to {emby_host}":[null,""],"Successfully started the scan update":[null,""],"Test failed to start the scan update":[null,""],"Test notice sent successfully to {nmj2_host}":[null,""],"Test notice failed to {nmj2_host}":[null,""],"Trakt Authorized":[null,""],"Trakt Not Authorized!":[null,""],"Test email sent successfully! Check inbox.":[null,""],"ERROR: {last_error}":[null,"VIGA: {last_error}"],"Test NMA notice sent successfully":[null,""],"Test NMA notice failed":[null,""],"Pushalot notification succeeded. Check your Pushalot clients to make sure it worked":[null,""],"Error sending Pushalot notification":[null,""],"Pushbullet notification succeeded. Check your device to make sure it worked":[null,""],"Error sending Pushbullet notification":[null,""],"Status":[null,"Staatus"],"Restarting SickRage":[null,"SickRage käivitub"],"Update Failed":[null,"Värskendamine nurjus"],"Update wasn't successful, not restarting. Check your log for more information.":[null,""],"Checking out branch":[null,""],"Already on branch":[null,""],"Invalid show ID: {show}":[null,""],"Show not in show list":[null,""],"Edit":[null,"Muuda"],"This show is in the process of being downloaded - the info below is incomplete.":[null,""],"The information on this page is in the process of being updated.":[null,""],"The episodes below are currently being refreshed from disk":[null,""],"Currently downloading subtitles for this show":[null,""],"This show is queued to be refreshed.":[null,""],"This show is queued and awaiting an update.":[null,""],"This show is queued and awaiting subtitles download.":[null,""],"Resume":[null,"Jätka"],"Pause":[null,"Paus"],"Remove":[null,"Eemalda"],"Re-scan files":[null,"Uuesti skaneerida faile"],"Force Full Update":[null,"Jõuline uuendamine"],"Update show in KODI":[null,"Uuenda saadeKODIs"],"Update show in Emby":[null,"Uuenda saade Embys"],"Hide specials":[null,""],"Show specials":[null,""],"Preview Rename":[null,"Eelvaate ümbernimetamine"],"Download Subtitles":[null,"Lae Subtiitrid"],"No scene exceptions":[null,"Ei ole stseeni erandeid"],"Invalid show ID":[null,"Sobimatu saate ID"],"Unable to find the specified show":[null,"Ei leia määratud saadet"],"Unable to retreive Fansub Groups from AniDB.":[null,""],"Edit Show":[null,""],"Unable to refresh this show: {error}":[null,""],"New location <tt>{location}</tt> does not exist":[null,""],"Unable to update show: {error}":[null,""],"Unable to force an update on scene exceptions of the show.":[null,""],"Unable to force an update on scene numbering of the show.":[null,""],"{num_errors:d} error{plural} while saving changes:":[null,"{num_errors:d} viga {plural} salvestamisel:"],"{show_name} has been {paused_resumed}":[null,"{show_name} on {paused_resumed}"],"resumed":[null,"jätkus"],"paused":[null,"peatatud"],"{show_name} has been {deleted_trashed} {was_deleted}":[null,"{show_name} on {deleted_trashed} {was_deleted}"],"deleted":[null,"kustutatud"],"trashed":[null,"prügikastis"],"(media untouched)":[null,"(meedia puutumata)"],"(with all related media)":[null,"(kõik seotud media)"],"Unable to refresh this show.":[null,"Ei saa värskendada seda saadet."],"Unable to update this show.":[null,"Ei saa uuendada seda saadet."],"Library update command sent to KODI host(s)): {kodi_hosts}":[null,"Kogumi uuendamise käsk saadeti KODI vastuvõtjasse: {kodi_hosts}"],"Unable to contact one or more KODI host(s)): {kodi_hosts}":[null,"Ei saanud ühendust ühe või mitme KODI seadmega: {kodi_hosts}"],"Library update command sent to Plex Media Server host: {plex_server}":[null,"Kogumi uuendamise käsk saadetud Plex Media Serverisse: {plex_server}"],"Unable to contact Plex Media Server host: {plex_server}":[null,"Ei saanud ühendust Plex Media Serveriga: {plex_server}"],"Library update command sent to Emby host: {emby_host}":[null,""],"Unable to contact Emby host: {emby_host}":[null,""],"You must specify a show and at least one episode":[null,""],"Invalid status":[null,"Kehtetu olek"],"Backlog was automatically started for the following seasons of <b>{show_name}</b>":[null,""],"Season":[null,"Hooaeg"],"Backlog started":[null,"Jälitamine algas"],"Retrying Search was automatically started for the following season of <b>{show_name}</b>":[null,""],"Retry Search started":[null,""],"You must specify a show":[null,""],"Can't rename episodes when the show dir is missing.":[null,""],"New subtitles downloaded: {new_subtitle_languages}":[null,""],"No subtitles downloaded":[null,"Subtiitreid ei laetud"],"IRC":[null,"IRC"],"Could not load news from the repo. [Click here for news.md])({news_url})":[null,""],"The was a problem connecting to github, please refresh and try again":[null,""],"Could not load changes from the repo. [Click here for CHANGES.md]({changes_url})":[null,""],"Changelog":[null,"Muudatuste logi"],"Post Processing":[null,""],"Add Shows":[null,"Lisa saateid"],"No folders selected.":[null,"Kaustu pole valitud."],"New Show":[null,"Uus saade"],"Trending Shows":[null,""],"Popular Shows":[null,"Populaarsed saated"],"Most Anticipated Shows":[null,""],"Most Collected Shows":[null,""],"Most Watched Shows":[null,""],"Most Played Shows":[null,""],"Recommended Shows":[null,""],"New Shows":[null,"Uued saated"],"Season Premieres":[null,""],"Existing Show":[null,""],"No root directories setup, please go back and add one.":[null,""],"Show added":[null,""],"Adding the specified show {show_name}":[null,""],"Missing params, no Indexer ID or folder: {show_to_add} and {root_dir}/{show_path}":[null,""],"Unknown error. Unable to add show due to problem with show selection.":[null,""],"Unable to add show":[null,""],"Folder {show_dir} exists already":[null,""],"Unable to create the folder {show_dir}, can't add the show":[null,""],"Adding the specified show into {show_dir}":[null,""],"Shows Added":[null,""],"Automatically added {num_shows} from their existing metadata files":[null,""],"Mass Update":[null,"Massuuendamine"],"Episode Overview":[null,""],"Missing Subtitles":[null,"Puuduvad subtiitrid"],"Backlog Overview":[null,""],"Mass Edit":[null,""],"Unable to update show: {excption_format}":[null,""],"Unable to refresh show {show_name}: {excption_format}":[null,"Ei saa värskendada saadet {show_name}: {excption_format}"],"Errors encountered":[null,"Ilmnes tõrkeid"],"Updates":[null,"Uuendused"],"Refreshes":[null,"Värskenda"],"Renames":[null,"Muuda nimi"],"Subtitles":[null,"Subtiitrid"],"The following actions were queued":[null,"Järgmised tegevused on ootel"],"Failed Downloads":[null,"Nurjunud allalaadimised"],"Manage Searches":[null,"Halda otsinguid"],"Backlog search started":[null,""],"Daily search started":[null,"Igapäevane otsing alustatud"],"Find propers search started":[null,""],"Subtitle search started":[null,"Subtiitri otsing alustatud"],"Remove Selected":[null,""],"Clear History":[null,"Tühjenda ajalugu"],"Trim History":[null,"Trimmi ajalugu"],"Selected history entries removed":[null,""],"History cleared":[null,"Ajalugu kustutatud"],"Removed history entries older than 30 days":[null,"Eemalda ajaloo kanded vanemad kui üle 30 päeva"],"General":[null,"Üldine"],"Backup/Restore":[null,"Varundamine/taastamine"],"Search Settings":[null,"Otsingusätted"],"Search Providers":[null,"Otsinguteenuse pakkujad"],"Subtitles Settings":[null,"Subtiitrite seaded"],"Notifications":[null,"Teated"],"Anime":[null,"Anime"],"SickRage Configuration":[null,"SickRage konfiguratsioon"],"Config - Shares":[null,""],"Windows Shares Configuration":[null,""],"Saved Shares":[null,""],"Your Windows share settings have been saved":[null,""],"Config - General":[null,"Seaded - üldine"],"General Configuration":[null,"Üldised seadistused"],"Saved Defaults":[null,""],"Your \"add show\" defaults have been set to your current selections.":[null,""],"Unable to create directory {directory}, log directory not changed.":[null,"Ei saa luua kataloogi {directory}, kataloog muutmata."],"Unable to create directory {directory}, https cert directory not changed.":[null,""],"Unable to create directory {directory}, https key directory not changed.":[null,""],"Error(s) Saving Configuration":[null,"Viga konfiguratsiooni salvestamisel"],"Configuration Saved":[null,"Konfiguratsioon salvestatud"],"Config - Backup/Restore":[null,"Seadista - varundamine/taastamine"],"Config - Episode Search":[null,"Seadista - Episoodi otsing"],"Config - Post Processing":[null,""],"Unpacking Not Supported, disabling unpack setting":[null,""],"You tried saving an invalid normal naming config, not saving your naming settings":[null,""],"You tried saving an invalid anime naming config, not saving your naming settings":[null,""],"Config - Providers":[null,"Seadistused - pakkujad"],"No Provider Name specified":[null,""],"No Provider Url specified":[null,""],"No Provider Api key specified":[null,""],"Config - Notifications":[null,""],"Config - Subtitles":[null,""],"Config - Anime":[null,""],"Clear Errors":[null,""],"Clear Warnings":[null,""],"Submit Errors":[null,""],"Logs & Errors":[null,""],"Log File":[null,"Logifail"],"Logs":[null,"Logid"],"This is a test notification from SickRage":[null,""],"Choose Directory":[null,""],"Select log file folder location":[null,""],"Select CSS file":[null,""],"Select backup folder to save to":[null,""],"Select backup files to restore":[null,""],"Please fill out the necessary fields above.":[null,""],"<b>Step 1:</b> Confirm Authorization":[null,""],"Check blacklist name; the value needs to be a trakt slug":[null,""],"You must provide a recipient email address!":[null,""],"You didn't supply a Pushbullet api key":[null,""],"Don't forget to save your new pushbullet settings.":[null,""],"Select TV Download Directory":[null,""],"Select Unpack Directory":[null,""],"This pattern is invalid.":[null,""],"This pattern would be invalid without the folders, using it will force \"Season Folders\" on for all shows.":[null,""],"This pattern is valid.":[null,""],"Select .nzb black hole/watch location":[null,""],"Select .torrent black hole/watch location":[null,""],"Select .torrent download location":[null,""],"Minimum seeding time is":[null,""],"URL to your uTorrent client (e.g. http://localhost:8000)":[null,""],"Stop seeding when inactive for":[null,""],"URL to your Transmission client (e.g. http://localhost:9091)":[null,""],"URL to your Deluge client (e.g. http://localhost:8112)":[null,""],"IP or Hostname of your Deluge Daemon (e.g. scgi://localhost:58846)":[null,""],"URL to your Synology DS client (e.g. http://localhost:5000)":[null,""],"URL to your rTorrent client (e.g. scgi://localhost:5000 <br> or https://localhost/rutorrent/plugins/httprpc/action.php)":[null,""],"URL to your qBittorrent client (e.g. http://localhost:8080)":[null,""],"URL to your MLDonkey (e.g. http://localhost:4080)":[null,""],"URL to your putio client (e.g. http://localhost:8080)":[null,""],"<a herf=\"https://app.put.io/oauth/apps/new\" target=\"_blank\"> Create a new OAuth app for put.io</a>":[null,""],"Put.io Parent Folder":[null,""],"Put.io OAuth Token":[null,""],"Show Episodes":[null,""],"Hide Episodes":[null,""],"Select Show Location":[null,""],"Select Unprocessed Episode Folder":[null,""],"DELETED":[null,""],"Resume updating the log on this page.":[null,""],"Pause updating the log on this page.":[null,""],"searching {searchingFor}...":[null,""],"search timed out, try again or try another indexer":[null,""],"loading folders...":[null,""],"Loading...":[null,""],"You have reached this page by accident, please check the url.":[null,""],"A mako error has occured.<br>\n If this happened during an update a simple page refresh may be the solution.<br>\n Mako errors that happen during updates may be a one time error if there were significant ui changes.":[null,""],"Show/Hide Error":[null,""],"Add New Show":[null,"Lisa uus saade"],"For shows that you haven't downloaded yet, this option finds a show on theTVDB.com, creates a directory for it's episodes, and adds it to SickRage.":[null,""],"Add From Trakt Lists":[null,""],"For shows that you haven't downloaded yet, this option lets you choose from a show from one of the Trakt lists to add to SickRage.":[null,""],"Add From IMDB's Popular Shows":[null,""],"View IMDB's list of the most popular shows. This feature uses IMDB's MOVIEMeter algorithm to identify popular TV Series.":[null,""],"Add Existing Shows":[null,""],"Use this option to add shows that already have a folder created on your hard drive. SickRage will scan your existing metadata/episodes and add the show accordingly.":[null,""],"Add Existing Show":[null,""],"Manage Directories":[null,"Halda katalooge"],"Customize Options":[null,""],"SickRage can add existing shows, using the current options, by using locally stored NFO/XML metadata to eliminate user interaction. If you would rather have SickRage prompt you to customize each show, then use the checkbox below.":[null,""],"Prompt me to set settings for each show":[null,""],"Displaying folders within these directories which aren't already added to SickRage":[null,""],"Submit":[null,"Saada"],"Find a show on theTVDB":[null,""],"Show retrieved from existing metadata":[null,""],"All Indexers":[null,""],"Search":[null,"Otsi"],"This will only affect the language of the retrieved metadata file contents and episode filenames.":[null,""],"This <b>DOES NOT</b> allow SickRage to download non-english TV episodes!":[null,""],"Pick the parent folder":[null,""],"Pre-chosen Destination Folder":[null,""],"Customize options":[null,""],"Add Show":[null,"Lisa saateid"],"Skip Show":[null,""],"Sort By":[null,"Sorteeri"],"Name":[null,"Nimi"],"Original":[null,"Originaal"],"Votes":[null,"Häält"],"Rating":[null,"Hinnang"],"Rating > Votes":[null,"Hinnang > häält"],"Sort Order":[null,"Sorteerimise järjekord"],"Asc":[null,"Asc"],"Desc":[null,"Desc"],"Fetching of IMDB Data failed. Are you online?":[null,"IMDB andmete toomine nurjus. Kas oled online?"],"Exception":[null,"Erand"],"Select Trakt List":[null,""],"Most Anticipated":[null,"Kõige oodatumad"],"Trending":[null,"Trendid"],"Popular":[null,"Populaarsed"],"Most Watched":[null,"Vaadatuimad"],"Most Played":[null,"Mängituimad"],"Most Collected":[null,"Enamik kogutud"],"Recommended":[null,"Soovitatav"],"Toggle navigation":[null,"Lülita navigeerimine"],"Profile":[null,"Profiil"],"JSONP":[null,"JSONP"],"Back to SickRage":[null,"Tagasi SickRage'sse"],"Parameters":[null,"Parameetrid"],"Required":[null,"Nõutav"],"Description":[null,"Kirjeldus"],"Type":[null,"Tüüp"],"Default value":[null,"Vaikeväärtus"],"Allowed values":[null,"Lubatud väärtused"],"Playground":[null,"Mänguväljak"],"Clear":[null,"Tühista"],"Yes":[null,"Jah"],"No":[null,"Ei"],"season":[null,"hooaeg"],"episode":[null,"episood"],"Python Version":[null,"Pythoni versioon"],"SSL Version":[null,"SSL-i versioon"],"OS":[null,"OS"],"Locale":[null,"Keel"],"User":[null,"Kasutaja"],"Program Folder":[null,"Programmikaust"],"Config File":[null,"Konfiguratsioonifail"],"Database File":[null,"Andmebaasifaili"],"Cache Folder":[null,"Vahemälu kaust"],"Log Folder":[null,"Logikaust"],"Arguments":[null,"Argumendid"],"Web Root":[null,"Veebi juur"],"Website":[null,"Veebisait"],"Wiki":[null,"Wiki"],"Source":[null,"Allikas"],"IRC Chat":[null,"IRC Chat"],"AnimeDB Settings":[null,"AnimeDB seaded"],"Look & Feel":[null,""],"AniDB is non-profit database of anime information that is freely open to the public":[null,""],"Enable":[null,"Luba"],"should SickRage use data from AniDB?":[null,""],"AniDB Username":[null,"AniDB kasutajanimi"],"username of your AniDB account":[null,""],"AniDB Password":[null,"AniDB parool"],"password of your AniDB account":[null,""],"AniDB MyList":[null,""],"do you want to add the PostProcessed episodes to the MyList?":[null,""],"Look and Feel":[null,"Välimus"],"How should the anime functions show and behave.":[null,""],"Split show lists":[null,""],"separate anime and normal shows in groups":[null,""],"Split in tabs":[null,""],"use tabs for when splitting show lists":[null,""],"Restore":[null,"Taasta"],"Backup your main database file and config.":[null,""],"Select the folder you wish to save your backup file to":[null,""],"Restore your main database file and config.":[null,""],"Select the backup file you wish to restore":[null,""],"Misc":[null,"Muud"],"Interface":[null,"Kasutajaliides"],"Advanced Settings":[null,"Täpsemad Seaded"],"Startup options. Indexer options. Log and show file locations.":[null,""],"Some options may require a manual restart to take effect.":[null,""],"Default Indexer Language":[null,""],"for adding shows and metadata providers":[null,""],"Launch browser":[null,"Käivita brauser"],"open the SickRage home page on startup":[null,""],"Initial page":[null,"Avaleht"],"Shows":[null,""],"when launching SickRage interface":[null,""],"Choose hour to update shows":[null,""],"with information such as next air dates, show ended, etc. Use 15 for 3pm, 4 for 4am etc.":[null,""],"note":[null,""],"minutes are randomized each time SickRage is started":[null,""],"Send to trash for actions":[null,""],"when using show \"Remove\" and delete files":[null,""],"on scheduled deletes of the oldest log files":[null,""],"selected actions use trash (recycle bin) instead of the default permanent delete":[null,""],"Log file folder location":[null,"Logifaili asukoht"],"Number of Log files saved":[null,""],"number of log files saved when rotating logs (default: 5) (REQUIRES RESTART)":[null,""],"Size of Log files saved":[null,""],"maximum size in MB of the log file (default: 1MB) (REQUIRES RESTART)":[null,""],"Use initial indexer set to":[null,""],"as the default selection when adding new shows":[null,""],"Timeout show indexer at":[null,""],"seconds of inactivity when finding new shows (default:20)":[null,""],"Show root directories":[null,"Näita juurkataloogi"],"where the files of shows are located":[null,"kus saadete failid asuvad"],"Save Changes":[null,"Salvesta muudatused"],"Options for software updates.":[null,"Tarkvarauuenduse suvandid."],"Check software updates":[null,"Kontrolli uuendusi"],"and display notifications when updates are available. Checks are run on startup and at the frequency set below*":[null,""],"Automatically update":[null,"Värskenda automaatselt"],"fetch and install software updates. Updates are run on startup and in the background at the frequency set below*":[null,""],"Check the server every*":[null,"Kontrollige serverit iga*"],"hours for software updates (default:1)":[null,""],"Notify on software update":[null,"Teavita kui uuendus saadaval"],"send a message to all enabled notifiers when SickRage has been updated":[null,""],"User Interface":[null,""],"Options for visual appearance.":[null,""],"Interface Language":[null,"Kasutajaliidese keel"],"System Language":[null,"Süsteemi keel"],"for appearance to take effect, save then refresh your browser":[null,""],"Display theme":[null,"Ekraani välimus"],"Dark":[null,"Tume"],"Light":[null,"Hele"],"Use a background image":[null,""],"use a custom image as background for SickRage":[null,""],"Background Path":[null,""],"Path to the background image":[null,""],"Show fanart in the background":[null,""],"on the show summary page":[null,""],"Fanart transparency":[null,""],"transparency of the fanart in the background":[null,""],"Use a custom stylesheet file":[null,""],"use a custom .css file to style SickRage (for advanced users)":[null,""],"Stylesheet File Path":[null,""],"Path to the stylesheet (.css) file":[null,""],"Show all seasons":[null,"Näita kõik hooajad"],"Sort with \"The\", \"A\", \"An\"":[null,""],"include articles (\"The\", \"A\", \"An\") when sorting show lists":[null,""],"Missed episodes range":[null,"Vastamata episoodide vahemik"],"set the range in days of the missed episodes in the Schedule page":[null,""],"Display fuzzy dates":[null,""],"move absolute dates into tooltips and display e.g. \"Last Thu\", \"On Tue\"":[null,""],"Trim zero padding":[null,""],"remove the leading number \"0\" shown on hour of day, and date of month":[null,""],"Date style":[null,"Kuupäeva laad"],"Use System Default":[null,"Kasuta süsteemi vaikeseadet"],"Time style":[null,"Kellaaja laad"],"seconds are only shown on the History page":[null,""],"Timezone":[null,"Ajatsoon"],"Local":[null,"Kohalik"],"Network":[null,"Võrk"],"display dates and times in either your timezone or the shows network timezone":[null,""],"use local timezone to start searching for episodes minutes after show ends (depends on your dailysearch frequency)":[null,""],"Download url":[null,"Laadimise url"],"URL where the shows can be downloaded.":[null,"URL kus saateid saab alla laadida."],"Web Interface":[null,"Veebi välimus"],"it is recommended that you enable a username and password to secure SickRage from being tampered with remotely.":[null,""],"these options require a manual restart to take effect.":[null,""],"API key":[null,"API võti"],"used to give 3rd party programs limited access to SickRage":[null,""],"you can try all the features of the API":[null,""],"here":[null,"siin"],"HTTP logs":[null,"HTTP logid"],"enable logs from the internal Tornado web server":[null,""],"HTTP username":[null,"HTTP kasutajanimi"],"set blank for no login":[null,""],"HTTP password":[null,"HTTP parool"],"blank = no authentication":[null,"tühi = autentimine puudub"],"HTTP port":[null,"HTTP port"],"web port to browse and access SickRage (default:8081)":[null,"veebi sirvimiseks ja juurdepääsuks SickRagele (vaikimisi: 8081) port"],"Notify on login":[null,""],"enable to be notified when a new login happens in webserver":[null,""],"Listen on IPv6":[null,""],"attempt binding to any available IPv6 address":[null,""],"Enable HTTPS":[null,"Luba HTTPS"],"enable access to the web interface using a HTTPS address":[null,""],"HTTPS certificate":[null,"HTTPS sertifikaat"],"file name or path to HTTPS certificate":[null,""],"HTTPS key":[null,"HTTPS võti"],"file name or path to HTTPS key":[null,""],"Reverse proxy headers":[null,""],"accept the following reverse proxy headers (advanced)...":[null,""],"(X-Forwarded-For, X-Forwarded-Host, and X-Forwarded-Proto)":[null,""],"CPU throttling":[null,"CPU ahendamine"],"Normal (default). High is lower and Low is higher CPU use":[null,""],"Anonymous redirect":[null,""],"backlink protection via anonymizer service, must end in \"?\"":[null,""],"Enable debug":[null,""],"enable debug logs":[null,""],"Verify SSL Certs":[null,""],"verify SSL Certificates (Disable this for broken SSL installs (Like QNAP))":[null,""],"No Restart":[null,""],"only shutdown when restarting SR":[null,""],"only select this when you have external software restarting SR automatically when it stops (like FireDaemon)":[null,""],"Encrypt passwords":[null,"Krüpti paroolid"],"in the <code>config.ini</code> file":[null,""],"warning":[null,""],"passwords must only contain":[null,""],"ASCII characters":[null,""],"Unprotected calendar":[null,""],"allow subscribing to the calendar without user and password":[null,""],"some services like Google Calendar only work this way":[null,""],"Google Calendar Icons":[null,"Google'i kalendri ikoonid"],"show an icon next to exported calendar events in Google Calendar":[null,""],"Proxy host":[null,"Proxy vastuvõtja"],"blank to disable or proxy to use when connecting to providers":[null,""],"also use global proxy setting for indexers (tvdb, xem, anidb, etc.)":[null,""],"Skip Remove Detection":[null,"Jäta vahele eemaldamise avastamine"],"skip detection of removed files":[null,""],"if disabled the episode will be set to the default deleted status":[null,""],"Default deleted episode status":[null,""],"define the status to be set for media file that has been deleted.":[null,""],"Archived option will keep previous downloaded quality":[null,""],"example: Downloaded (1080p WEB-DL) ==> Archived (1080p WEB-DL)":[null,""],"Options for github related features.":[null,""],"Branch version":[null,"Brändi versioon"],"error: No branches found.":[null,""],"select branch to use (restart required)":[null,""],"Authorization Type":[null,""],"Username and password":[null,""],"Personal access token":[null,""],"You must use a personal access token if you're using \"two-factor authentication\" on GitHub.":[null,""],"GitHub username":[null,"GitHub kasutajanimi"],"*** (REQUIRED FOR SUBMITTING ISSUES) ***":[null,""],"GitHub password":[null,"GitHub parooli"],"GitHub personal access token":[null,""],"Generate Token":[null,""],"Manage Tokens":[null,""],"GitHub remote for branch":[null,""],"access repo configured remotes (save then refresh browser)":[null,""],"default":[null,""],"origin":[null,""],"Git executable path":[null,""],"only needed if OS is unable to locate git from env":[null,""],"Git reset":[null,""],"removes untracked files and performs a hard reset on git branch automatically to help resolve update issues":[null,""],"Home Theater / NAS":[null,"Kodukino / NAS"],"Devices":[null,"Seadmed"],"Social":[null,"Sotsiaalne"],"A free and open source cross-platform media center and home entertainment system software with a 10-foot user interface designed for the living-room TV.":[null,""],"send KODI commands?":[null,""],"Always on":[null,"Alati peal"],"log errors when unreachable?":[null,"logi vigu kui kättesaamatu?"],"Notify on snatch":[null,"Teata tõrkest"],"send a notification when a download starts?":[null,""],"Notify on download":[null,"Teata allalaadimisel"],"send a notification when a download finishes?":[null,""],"Notify on subtitle download":[null,""],"send a notification when subtitles are downloaded?":[null,""],"Update library":[null,"Uuenda kogu"],"update KODI library when a download finishes?":[null,""],"Full library update":[null,"Täielik kogu uuendamine"],"perform a full library update if update per-show fails?":[null,""],"Only update first host":[null,""],"only send library updates to the first active host?":[null,""],"KODI IP:Port":[null,"KODI IP:Port"],"host running KODI (eg. 192.168.1.100:8080)":[null,""],"(multiple host strings must be separated by commas)":[null,""],"Username":[null,"Kasutajanimi"],"username for your KODI server (blank for none)":[null,""],"Password":[null,"Parool"],"password for your KODI server (blank for none)":[null,""],"Click below to test.":[null,"Klõpsake allpool, et testida."],"Experience your media on a visually stunning, easy to use interface on your Mac connected to your TV. Your media library has never looked this good!":[null,""],"For sending notifications to Plex Home Theater (PHT) clients, use the KODI notifier with port <b>3005</b>.":[null,""],"send Plex Media Server library updates?":[null,""],"Plex Media Server Auth Token":[null,""],"auth token used by Plex":[null,""],"Update Library":[null,"Uuenda kogu"],"update Plex Media Server library when a download finishes":[null,""],"Plex Media Server IP:Port":[null,"Plex Meedia Serveri IP:Port"],"one or more hosts running Plex Media Server<br/>(eg. 192.168.1.1:32400, 192.168.1.2:32400)":[null,""],"HTTPS":[null,"HTTPS"],"use https for plex media server requests?":[null,""],"Click below to test Plex Media Server(s)":[null,""],"Test Plex Media Server":[null,"Testi Plexi Meedia Serverit"],"Plex Home Theater":[null,"Plex kodukino"],"send Plex Home Theater notifications?":[null,""],"Plex Home Theater IP:Port":[null,"Plex kodukino IP:Port"],"one or more hosts running Plex Home Theater<br>(eg. 192.168.1.100:3000, 192.168.1.101:3000)":[null,""],"Click below to test Plex Home Theater(s)":[null,""],"Test Plex Home Theater":[null,""],"some Plex Home Theaters <b class=\"boldest\">do not</b> support notifications e.g. Plexapp for Samsung TVs":[null,""],"Emby":[null,"Emby"],"A home media server built using other popular open source technologies.":[null,""],"send update commands to Emby?":[null,""],"Emby IP:Port":[null,"Emby IP:Port"],"host running Emby (eg. 192.168.1.100:8096)":[null,"Emby server (nt. 192.168.1.100:8096)"],"Emby API Key":[null,"Emby API võti"],"Networked Media Jukebox":[null,"Võrgumeedia Jukebox"],"The Networked Media Jukebox, or NMJ, is the official media jukebox interface made available for the Popcorn Hour 200-series.":[null,""],"send update commands to NMJ?":[null,""],"Popcorn IP address":[null,"Popcorni IP aadress"],"IP address of Popcorn 200-series (eg. 192.168.1.100)":[null,""],"Get settings":[null,"Too sätted"],"Get Settings":[null,"Too sätted"],"the Popcorn Hour device must be powered on and NMJ running.":[null,""],"NMJ database":[null,"NMJ andmebaas"],"automatically filled via the 'Get Settings' button.":[null,"täidetakse automaatselt 'Too Seaded' nuppu kaudu."],"NMJ mount url":[null,""],"Networked Media Jukebox v2":[null,""],"The Networked Media Jukebox, or NMJv2, is the official media jukebox interface made available for the Popcorn Hour 300 & 400-series.":[null,""],"send update commands to NMJv2?":[null,""],"IP address of Popcorn 300/400-series (eg. 192.168.1.100)":[null,""],"Database location":[null,"Andmebaasi asukoht"],"Database instance":[null,""],"adjust this value if the wrong database is selected.":[null,""],"Find database":[null,"Leia andmebaasi"],"Find Database":[null,"Leia andmebaas"],"the Popcorn Hour device must be powered on.":[null,"Popcorni Hour seade peab olema sisse lülitatud."],"NMJv2 database":[null,"NMJv2 andmebaas"],"automatically filled via the 'Find Database' buttons.":[null,""],"Synology":[null,"Synology"],"The Synology DiskStation NAS.":[null,""],"Synology Indexer is the daemon running on the Synology NAS to build its media database.":[null,""],"send Synology notifications?":[null,""],"requires SickRage to be running on your Synology NAS.":[null,""],"Synology Indexer":[null,""],"Synology Notifier is the notification system of Synology DSM":[null,""],"send notifications to the Synology Notifier?":[null,""],"pyTivo":[null,"pyTivo"],"pyTivo is both an HMO and GoBack server. This notifier will load the completed downloads to your Tivo.":[null,""],"send notifications to pyTivo?":[null,""],"requires the downloaded files to be accessible by pyTivo.":[null,""],"pyTivo IP:Port":[null,"pyTivo IP:Port"],"host running pyTivo (eg. 192.168.1.1:9032)":[null,""],"pyTivo share name":[null,""],"value used in pyTivo Web Configuration to name the share.":[null,""],"Tivo name":[null,"TiVo nimi"],"(Messages & Settings > Account & System Information > System Information > DVR name)":[null,""],"Growl":[null,"Growl"],"A cross-platform unobtrusive global notification system.":[null,""],"send Growl notifications?":[null,""],"Growl IP:Port":[null,"Growl IP:Port"],"host running Growl (eg. 192.168.1.100:23053)":[null,""],"may leave blank if SickRage is on the same host.":[null,""],"otherwise Growl <b>requires</b> a password to be used.":[null,""],"Click below to register and test Growl, this is required for Growl notifications to work.":[null,""],"Register Growl":[null,"Registreeri Growl"],"Prowl":[null,"Prowl"],"A Growl client for iOS.":[null,""],"send Prowl notifications?":[null,""],"Prowl Message Title":[null,""],"Global Prowl API key(s)":[null,""],"Prowl API(s) listed here, separated by commas if applicable, will<br> receive notifications for <b>all</b> shows. Your Prowl API key is available at:":[null,""],"(this field may be blank except when testing.)":[null,""],"Show notification list":[null,""],"-- Select a Show --":[null,""],"Configure per-show notifications here by entering Prowl API key(s), separated by commas, '\n 'after selecting a show in the drop-down box. Be sure to activate the 'Save for this show' '\n 'button below after each entry.":[null,""],"Save for this show":[null,""],"Prowl priority":[null,""],"Very Low":[null,"Väga madal"],"Moderate":[null,"Mõõdukas"],"Normal":[null,"Tavaline"],"High":[null,"Kõrge"],"Emergency":[null,"Hädaabi"],"priority of Prowl messages from SickRage.":[null,""],"Libnotify":[null,"Libnotify"],"The standard desktop notification API for Linux/*nix systems. This notifier will only function if the pynotify module is installed (Ubuntu/Debian package <a href=\"apt:python-notify\">python-notify</a>).":[null,""],"send Libnotify notifications?":[null,""],"Pushover":[null,"Pushover"],"Pushover makes it easy to send real-time notifications to your Android and iOS devices.":[null,""],"send Pushover notifications?":[null,""],"Pushover key":[null,""],"user key of your Pushover account":[null,""],"Pushover API key":[null,"Pushover API võti"],"click here":[null,""]," to create a Pushover API key":[null,""],"Pushover devices":[null,"Pushover seadmed"],"comma separated list of pushover devices you want to send notifications to":[null,""],"Pushover notification sound":[null,""],"Bike":[null,""],"Bugle":[null,""],"Cash Register":[null,""],"Classical":[null,"Klassikaline"],"Cosmic":[null,"Kosmiline"],"Falling":[null,""],"Gamelan":[null,""],"Incoming":[null,"Sissetulev"],"Intermission":[null,""],"Magic":[null,"Magic"],"Mechanical":[null,"Mehaaniline"],"Piano Bar":[null,"Klaveribaar"],"Siren":[null,"Sireen"],"Space Alarm":[null,""],"Tug Boat":[null,"Puksiiri paat"],"Alien Alarm (long)":[null,""],"Climb (long)":[null,""],"Persistent (long)":[null,""],"Pushover Echo (long)":[null,""],"Up Down (long)":[null,""],"None (silent)":[null,""],"Device specific":[null,"Konkreetse seadme"],"choose notification sound to use":[null,""],"Pushover priority":[null,""],"Choose priority to use":[null,""],"Boxcar 2":[null,"Boxcar 2"],"Read your messages where and when you want them!":[null,""],"send Boxcar notifications?":[null,""],"Boxcar2 access token":[null,""],"access token for your Boxcar account.":[null,""],"NMA":[null,"NMA"],"Notify My Android":[null,"Notify My Android"],"Notify My Android is a Prowl-like Android App and API that offers an easy way to send notifications from your application directly to your Android device.":[null,""],"send NMA notifications?":[null,""],"NMA API key":[null,"NMA API võti"],"(multiple keys must be separated by commas, up to a maximum of 5)":[null,""],"NMA priority":[null,"NMA prioriteet"],"priority of NMA messages from SickRage.":[null,""],"Pushalot":[null,"Pushalot"],"Pushalot is a platform for receiving custom push notifications to connected devices running Windows Phone or Windows 8.":[null,""],"send Pushalot notifications ?":[null,""],"Pushalot authorization token":[null,""],"authorization token of your Pushalot account.":[null,""],"Pushbullet":[null,""],"Pushbullet is a platform for receiving custom push notifications to connected devices running Android/iOS and desktop browsers such as Chrome, Firefox or Opera.":[null,""],"send Pushbullet notifications?":[null,""],"Pushbullet API key":[null,"Pushbullet API võti"],"API key of your Pushbullet account":[null,""],"Pushbullet devices":[null,"Pushbullet seadmed"],"Update device list":[null,""],"Pushbullet channels":[null,"Pushbullet kanalid"],"Free Mobile":[null,""],"Free Mobile is a famous French cellular network provider.<br> It provides to their customer a free SMS API.":[null,""],"send SMS notifications?":[null,""],"send a SMS when a download starts?":[null,""],"send a SMS when a download finishes?":[null,""],"send a SMS when subtitles are downloaded?":[null,""],"Free Mobile customer ID":[null,""],"it's your Free Mobile customer ID (8 digits)":[null,""],"Free Mobile API key":[null,""],"find your API key in your customer portal.":[null,""],"Click below to test your settings.":[null,""],"Telegram":[null,"Telegramm"],"Telegram is a cloud-based instant messaging service.":[null,""],"send Telegram notifications?":[null,""],"send a message when a download starts?":[null,""],"send a message when a download finishes?":[null,""],"send a message when subtitles are downloaded?":[null,""],"User/group ID":[null,""],"contact @myidbot on Telegram to get an ID":[null,""],"Bot API token":[null,""],"contact @BotFather on Telegram to set up one":[null,""],"Join":[null,"Liitu"],"Join all of your devices together!":[null,""],"send Join notifications?":[null,""],"Device ID":[null,""],"per device specific id":[null,""]," to create a Join API key":[null,""],"Twilio":[null,""],"Twilio is a webservice API that allows you to communicate directly with a mobile number. This notifier will send a text directly to your mobile device.":[null,""],"should SickRage text your mobile device?":[null,""],"Twilio Account SID":[null,""],"account SID of your Twilio account.":[null,""],"Twilio Auth Token":[null,""],"Twilio Phone SID":[null,""],"phone SID that you would like to send the sms from":[null,""],"Your phone number":[null,""],"phone number that will receive the sms. Please use the format +1-###-###-####":[null,""],"Twitter":[null,"Twitter"],"A social networking and microblogging service, enabling its users to send and read other users' messages called tweets.":[null,""],"should SickRage post tweets on Twitter?":[null,""],"you may want to use a secondary account.":[null,""],"send direct message":[null,""],"send a notification via Direct Message, not via status update":[null,""],"send DM to":[null,""],"Twitter account to send Direct Messages to (must follow you)":[null,""],"Step One":[null,"Esimene samm"],"Request Authorization":[null,""],"Click the \"Request Authorization\" button.<br> This will open a new page containing an auth key.<br> <b>note:</b> if nothing happens check your popup blocker.":[null,""],"Step Two":[null,"Teine samm"],"Enter the key Twitter gave you below, and click \"Verify Key\".":[null,""],"Trakt":[null,"Trakt"],"Trakt helps keep a record of what TV shows and movies you are watching. Based on your favorites, Trakt recommends additional shows and movies you'll enjoy!":[null,""],"send Trakt.tv notifications?":[null,""],"username of your Trakt account.":[null,""],"Trakt PIN":[null,"Trakt PIN"],"Get Trakt PIN":[null,"Hangi Trakt PIN"],"PIN code to authorize SickRage to access Trakt on your behalf.":[null,""],"API Timeout":[null,""],"seconds to wait for Trakt API to respond. (Use 0 to wait forever)":[null,""],"Default indexer":[null,""],"Sync libraries":[null,""],"sync your SickRage show library with your trakt show library.":[null,""],"Remove Episodes From Collection":[null,""],"remove an episode from your Trakt Collection if it is not in your SickRage Library.":[null,""],"Sync watchlist":[null,""],"sync your SickRage show watchlist with your trakt show watchlist (either Show and Episode).":[null,""],"episode will be added on watch list when wanted or snatched and will be removed when downloaded ":[null,""],"Watchlist add method":[null,""],"Skip All":[null,"Jäta kõik vahele"],"Download Pilot Only":[null,""],"Get whole show":[null,"Lae kogu saade"],"method in which to download episodes for new shows.":[null,""],"Remove episode":[null,"Eemalda episood"],"remove an episode from your watchlist after it is downloaded.":[null,""],"Remove series":[null,"Eemalda sari"],"remove the whole series from your watchlist after any download.":[null,""],"Remove watched show":[null,""],"remove the show from sickrage if it's ended and completely watched":[null,""],"Start paused":[null,"Alustada pausilt"],"shows grabbed from your trakt watchlist start paused.":[null,""],"Trakt blackList name":[null,""],"name (slug) of list on Trakt for blacklisting show on 'Add Trending Show' & 'Add Recommended Shows' pages":[null,""],"Email":[null,"E-mail"],"Allows configuration of email notifications on a per show basis.":[null,""],"send email notifications?":[null,""],"SMTP host":[null,""],"hostname of your SMTP email server.":[null,""],"SMTP port":[null,""],"port number used to connect to your SMTP host.":[null,""],"SMTP from":[null,""],"sender email address, some hosts require a real address.":[null,""],"Use TLS":[null,"Kasuta TLSi"],"check to use TLS encryption.":[null,""],"SMTP user":[null,"SMTP kasutaja"],"(optional) your SMTP server username.":[null,""],"SMTP password":[null,"SMTP parool"],"(optional) your SMTP server password.":[null,""],"Global email list":[null,"Globaalne meililist"],"email addresses listed here, separated by commas if applicable, will<br> receive notifications for <b>all</b> shows.":[null,""],"(This field may be blank except when testing.)":[null,""],"Email Subject":[null,"E-kirja teema"],"use a custom subject for some privacy protection?":[null,""],"(leave blank for the default SickRage subject)":[null,""],"configure per-show notifications here by entering email address(es), separated by commas,":[null,""],"after selecting a show in the drop-down box. Be sure to activate the 'Save for this show'":[null,""],"button below after each entry.":[null,""],"Slack":[null,""],"Slack brings all your communication together in one place. It's real-time messaging, archiving and search for modern teams.":[null,""],"should SickRage post messages on Slack?":[null,""],"Slack Incoming Webhook":[null,""],"Discord":[null,""],"All-in-one voice and text chat for gamers that's free, secure, and works on both your desktop and phone.":[null,""],"Should SickRage post messages on Discord?":[null,""],"Discord Incoming Webhook":[null,""],"Create webhook under channel settings.":[null,""],"Discord Bot Name":[null,""],"Blank will use webhook default Name.":[null,""],"Discord Avatar URL":[null,""],"Blank will use webhook default Avatar.":[null,""],"Discord TTS":[null,""],"Send notifications using text-to-speech":[null,""],"Post-Processing":[null,""],"Episode Naming":[null,""],"Metadata":[null,"Metaandmed"],"Settings that dictate how SickRage should process completed downloads.":[null,""],"enable the automatic post processor to scan and process any files in your Post Processing Dir":[null,""],"do not use if you use an external Post Processing script":[null,""],"Post Processing Dir":[null,""],"the folder where your download client puts the completed TV downloads.":[null,""],"please use seperate downloading and completed folders in your download client if possible.":[null,""],"Processing Method":[null,""],"what method should be used to put files into the library?":[null,""],"if you keep seeding torrents after they finish, please avoid the 'move' processing method to prevent errors.":[null,""],"Auto Post-Processing Frequency":[null,""],"time in minutes to check for new files to auto post-process (min 10)":[null,""],"Postpone post processing":[null,""],"wait to process a folder if sync files are present.":[null,""],"Sync File Extensions":[null,""],"comma seperated list of extensions or filename globs SickRage ignores when Post Processing":[null,""],"Rename Episodes":[null,"Nimeta episoodid"],"rename episode using the Episode Naming settings?":[null,""],"Create missing show directories":[null,""],"create missing show directories when they get deleted":[null,""],"Add shows without directory":[null,""],"add shows without creating a directory (not recommended)":[null,""],"Move associated files":[null,""],"move associated (srt/srr/sfv/etc) files while post processing?":[null,""],"Rename .nfo file":[null,""],"rename the original .nfo file to .nfo-orig to avoid conflicts?":[null,""],"Associated file extensions":[null,""],"comma separated list of associated file extensions SickRage should keep while post processing.":[null,""],"leaving it empty means no associated files will be post processed":[null,""],"Delete non associated files":[null,""],"delete non associated files while post processing?":[null,""],"Change File Date":[null,"Muuda faili kuupäeva"],"set last modified filedate to the date that the episode aired?":[null,""],"some systems may ignore this feature.":[null,""],"Timezone for File Date":[null,""],"local":[null,"kohalik"],"network":[null,"võrk"],"what timezone should be used to change File Date?":[null,""],"Unpack":[null,"Paki lahti"],"What to do with archived releases found in your <i>TV Download Dir</i>?":[null,""],"Ignore (do not process contents)":[null,""],"Unpack (process contents)":[null,""],"Treat as video (process archive as-is)":[null,""],"'Unpack' only works with RAR archives":[null,""],"Windows":[null,""],"WinRar is required on windows":[null,""],"Unpack Directory":[null,""],"Choose a path to unpack files, leave blank to unpack in download dir":[null,""],"Unrar Location":[null,""],"add the path to unrar if it is not in the system path":[null,""],"Alternate Unrar Tool":[null,""],"add the path to an alternate unrar tool if it is not in the system path":[null,""],"Delete RAR contents":[null,"RAR sisu kustutamine"],"delete content of RAR files, even if Process Method not set to move?":[null,""],"only working with RAR archive":[null,""],"Don't delete empty folders":[null,""],"leave empty folders when Post Processing?":[null,""],"can be overridden using manual Post Processing":[null,""],"Follow symbolic-links":[null,""],"follow down symbolic links in download directory?":[null,""],"<b>EXPERTS ONLY.</b><br>Enable only if you know what <b>circular symbolic links</b> are,<br>and can <b>verify that you have none</b>.":[null,""],"Use icacls":[null,""],"Windows only":[null,""],"sets video permissions after using the move method in post processing":[null,""],"Extra Scripts":[null,""],"see":[null,""],"for script arguments description and usage.":[null,""],"How SickRage will name and sort your episodes.":[null,""],"Name Pattern":[null,""],"Toggle Naming Legend":[null,""],"don't forget to add quality pattern. Otherwise after post-processing the episode will have UNKNOWN quality":[null,""],"Meaning":[null,"Tähendus"],"Pattern":[null,"Muster"],"Result":[null,"Tulemus"],"Use lower case if you want lower case names (eg. %sn, %e.n, %q_n etc)":[null,""],"Show Name":[null,"Saate nimi"],"Show.Name":[null,""],"Show_Name":[null,""],"Season Number":[null,"Hooaja Number"],"XEM Season Number":[null,""],"Episode Number":[null,"Episoodi Number"],"XEM Episode Number":[null,""],"Episode Name":[null,""],"Episode.Name":[null,""],"Episode_Name":[null,""],"Air Date":[null,""],"Post-Processing Date":[null,""],"Quality":[null,"Kvaliteet"],"Scene Quality":[null,""],"Release Name":[null,"Väljalaske nimi"],"SickRage' is used in place of RLSGROUP if it could not be properly detected":[null,""],"Release Group":[null,""],"If episode is proper/repack add 'proper' to name.":[null,""],"Release Type":[null,""],"Multi-Episode Style":[null,""],"Single-EP Sample":[null,""],"Multi-EP sample":[null,""],"Strip Show Year":[null,""],"remove the TV show's year when renaming the file?":[null,""],"only applies to shows that have year inside parentheses":[null,""],"Custom Air-By-Date":[null,""],"name air-by-date shows differently than regular shows?":[null,""],"Toggle ABD Naming Legend":[null,""],"Regular Air Date":[null,""],"Year":[null,"Aasta"],"Month":[null,"Kuu"],"Day":[null,"Päev"],"Multi-EP style is ignored":[null,""],"Custom Sports":[null,""],"name sports shows differently than regular shows?":[null,""],"Toggle Sports Naming Legend":[null,""],"Sports Air Date":[null,""],"Custom Anime":[null,""],"name anime shows differently than regular shows?":[null,""],"Toggle Anime Naming Legend":[null,""],">XEM Season Number":[null,""],"Single-EP Anime Sample":[null,""],"Multi-EP Anime sample":[null,""],"Add Absolute Number":[null,""],"add the absolute number to the season/episode format?":[null,""],"only applies to anime. (eg. S15E45 - 310 vs S15E45)":[null,""],"Only Absolute Number":[null,""],"replace season/episode format with absolute number":[null,""],"only applies to anime.":[null,""],"No Absolute Number":[null,""],"don't include the absolute number":[null,""],"The data associated to the data. These are files associated to a TV show in the form of images and text that, when supported, will enhance the viewing experience.":[null,""],"Metadata Type":[null,""],"toggle metadata options that you wish to be created":[null,""],"multiple targets may be used":[null,""],"Select Metadata":[null,""],"Provider Priorities":[null,"Pakkuja prioriteedid"],"Provider Options":[null,"Pakkuja Valikud"],"Configure Custom Newznab Providers":[null,""],"Configure Custom Torrent Providers":[null,""],"Check off and drag the providers into the order you want them to be used.":[null,""],"At least one provider is required but two are recommended.":[null,""],"Torrent providers can be toggled in ":[null,""],"Provider does not support backlog searches at this time.":[null,""],"Provider is <b>NOT WORKING</b>.":[null,""],"Configure individual provider settings here.":[null,""],"Check with provider's website on how to obtain an API key if needed.":[null,""],"Configure provider":[null,"Seadista pakkuja"],"no providers available to configure.":[null,""],"URL":[null,"URL"],"Enable daily searches":[null,""],"enable provider to perform daily searches.":[null,""],"Enable backlog searches":[null,""],"enable provider to perform backlog searches.":[null,""],"Season search mode":[null,"Hooaja otsingu režiimis"],"when searching for complete seasons you can choose to have it look for season packs only, or choose to have it build a complete season from just single episodes.":[null,""],"season packs only.":[null,""],"episodes only.":[null,""],"Enable fallback":[null,""],"when searching for a complete season depending on search mode you may return no results, this helps by restarting the search using the opposite search mode.":[null,""],"Custom URL":[null,"Kohandatud URL"],"the URL should include the protocol (and port if applicable). Examples: http://192.168.1.4/ or http://localhost:3000/":[null,""],"Api key":[null,"Api võti"],"Digest":[null,""],"Hash":[null,"Räsi"],"Passkey":[null,"Pääsukood"],"Cookies":[null,"Küpsised"],"example: uid=1234;pass=567845439634987<br>note: uid and pass are not your username/password.<br>use DevTools or Firebug to get these values after logging in on your browser.":[null,""],"Pin":[null,"PIN-kood"],"Seed ratio":[null,""],"stop transfer when ratio is reached<br>(-1 SickRage default to seed forever, or leave blank for downloader default)":[null,""],"Minimum seeders":[null,""],"Minimum leechers":[null,""],"Confirmed download":[null,""],"only download torrents from trusted or verified uploaders ?":[null,""],"Ranked torrents":[null,""],"only download ranked torrents (trusted releases)":[null,""],"English torrents":[null,""],"only download english torrents, or torrents containing english subtitles":[null,""],"For Spanish torrents":[null,""],"ONLY search on this provider if show info is defined as \"Spanish\" (avoid provider's use for VOS shows)":[null,""],"Sorting results by":[null,""],"Freeleech":[null,"Freeleech"],"only download <b>\"FreeLeech\"</b> torrents.":[null,""],"Category":[null,"Kategooria"],"select torrent with Italian subtitle":[null,""],"Configure Custom<br>Newznab Providers":[null,""],"Add and setup or remove custom Newznab providers.":[null,""],"Select provider":[null,""],"-- add new provider --":[null,""],"Provider name":[null,"Pakkuja nimi"],"Site URL":[null,"Saidi URL"],"Newznab search categories":[null,""],"select your Newznab categories on the left, and click the \"update categories\" button to use them for searching.) <b>don't forget to to save the form!":[null,""],"Update Categories":[null,"Uuenda Kategooriad"],"Add":[null,"Lisa"],"Delete":[null,"Kustuta"],"Add and setup or remove custom RSS providers.":[null,""],"RSS URL":[null,"RSS URL"],"Search element":[null,""],"eg: title":[null,"nt: pealkiri"],"Episode Search":[null,""],"NZB Search":[null,"NZB otsing"],"Torrent Search":[null,"Torrenti Otsing"],"How to manage searching with":[null,""],"Randomize Providers":[null,""],"randomize the provider search order instead of going in order of placement":[null,""],"Download propers":[null,""],"replace original download with \"Proper\" or \"Repack\" if nuked":[null,""],"Check propers every":[null,""],"24 hours":[null,"24 tundi"],"4 hours":[null,"4 tundi"],"90 mins":[null,"90 min"],"45 mins":[null,"45 min"],"15 mins":[null,"15 min"],"Backlog search day(s)":[null,""],"number of day(s) that the \"Forced Backlog Search\" will cover (e.g. 7 Days)":[null,""],"Backlog search frequency":[null,""],"time in minutes between searches (min.":[null,""],"Daily search frequency":[null,""],"Usenet retention":[null,""],"age limit in days for usenet articles to be used (e.g. 500)":[null,""],"Ignore words":[null,""],"results with one or more word from this list will be ignored<br>separate words with a comma, e.g. \"word1,word2,word3\"":[null,""],"Require words":[null,""],"results with no word from this list will be ignored<br>separate words with a comma, e.g. \"word1,word2,word3\"":[null,""],"Trackers list":[null,""],"trackers that will be added to magnets without trackers<br>separate trackers with a comma, e.g. \"tracker1,tracker2,tracker3\"":[null,""],"Ignore language names in subbed results":[null,""],"ignore subbed releases based on language names <br>\n Example: \"dk\" will ignore words: dksub, dksubs, dksubbed, dksubed <br>\n separate languages with a comma, e.g. \"lang1,lang2,lang3":[null,""],"Allow high priority":[null,""],"set downloads of recently aired episodes to high priority":[null,""],"Use Failed Downloads":[null,""],"use Failed Download Handling?":[null,""],"will only work with snatched/downloaded episodes after enabling this":[null,""],"Delete Failed":[null,"Kustutamine ebaõnnestus"],"delete files left over from a failed download?":[null,""],"this only works if Use Failed Downloads is enabled.":[null,""],"How to handle NZB search results.":[null,""],"Search NZBs":[null,"Otsi NZBe"],"enable NZB search providers":[null,""],"Send .nzb files to":[null,""],"SABnzbd server URL":[null,""],"URL to your SABnzbd server (e.g. http://localhost:8080/)":[null,""],"SABnzbd username":[null,"SABnzbd kasutajanimi"],"(blank for none)":[null,""],"SABnzbd password":[null,"SABnzbd parool"],"SABnzbd API key":[null,"SABnzbd API võti"],"locate at... SABnzbd Config -> General -> API Key":[null,""],"Use SABnzbd category":[null,""],"add downloads to this category (e.g. TV)":[null,""],"Use SABnzbd category (backlog episodes)":[null,""],"add downloads of old episodes to this category (e.g. TV)":[null,""],"Use SABnzbd category for anime":[null,""],"add anime downloads to this category (e.g. anime)":[null,""],"Use SABnzbd category for anime (backlog episodes)":[null,""],"add anime downloads of old episodes to this category (e.g. anime)":[null,""],"Use forced priority":[null,""],"enable to change priority from HIGH to FORCED":[null,""],"Black hole folder location":[null,""],"<b>.nzb</b> files are stored at this location for external software to find and use":[null,""],"Connect using HTTPS":[null,"Kasuta HTTPS-i"],"enable Secure control in NZBGet and set the correct Secure Port here":[null,""],"NZBget host:port":[null,""],"(e.g. localhost:6789)":[null,"(nt. localhost:6789)"],"NZBget RPC host name and port number (not NZBgetweb!)":[null,""],"NZBget username":[null,"NZBget kasutajanimi"],"locate in nzbget.conf (default:nzbget)":[null,""],"NZBget password":[null,"NZBget parool"],"locate in nzbget.conf (default:tegbzn6789)":[null,""],"Use NZBget category":[null,""],"send downloads marked this category (e.g. TV)":[null,""],"Use NZBget category (backlog episodes)":[null,""],"send downloads of old episodes marked this category (e.g. TV)":[null,""],"Use NZBget category for anime":[null,""],"send anime downloads marked this category (e.g. anime)":[null,""],"Use NZBget category for anime (backlog episodes)":[null,""],"send anime downloads of old episodes marked this category (e.g. anime)":[null,""],"NZBget priority":[null,""],"Very low":[null,"Väga madal"],"Low":[null,"Madal"],"Very high":[null,"Väga kõrge"],"Force":[null,"Sunni"],"priority for daily snatches (no backlog)":[null,""],"Torrent host:port":[null,""],"URL to your Synology DSM (e.g. http://localhost:5000/)":[null,""],"Client username":[null,"Kliendi kasutajanimi"],"Client password":[null,"Kliendi parool"],"Downloaded files location":[null,""],"where Synology Download Station will save downloaded files (blank for client default)":[null,""],"the destination has to be a shared folder for Synology DS":[null,""],"Click below to test":[null,"Klõpsake allpool testimiseks"],"How to handle Torrent search results.":[null,""],"Search torrents":[null,"Otsi torrenteid"],"enable torrent search providers":[null,""],"Send .torrent files to":[null,""],"<b>.torrent</b> files are stored at this location for external software to find and use":[null,""],"URL to your torrent client (e.g. http://localhost:8000/)":[null,""],"Torrent RPC URL":[null,""],"the path without leading and trailing slashes (e.g. transmission)":[null,""],"Http Authentication":[null,"Http-autentimine"],"Verify certificate":[null,"Kontrolli sertifikaat"],"disable if you get \"Deluge: Authentication Error\" in your log":[null,""],"verify SSL certificates for HTTPS requests":[null,""],"Add label to torrent":[null,""],"(blank spaces are not allowed)":[null,""],"label plugin must be enabled in Deluge clients":[null,""],"for QBitTorrent 3.3.1 and up":[null,""],"Add label to torrent for anime":[null,""],"for QBitTorrent 3.3.1 and up ":[null,""],"where <span id=\"torrent_client\">the torrent client</span> will save downloaded files (blank for client default)":[null,""],"the destination has to be a shared folder for Synology DS</span>":[null,""],"Minimum seeding time":[null,""],"time in hours":[null,""],"(default:'0' passes blank to client and '-1' passes nothing)":[null,""],"Start torrent paused":[null,""],"add .torrent to client but do <b style=\"font-weight:900\">not</b> start downloading":[null,""],"Allow high bandwidth":[null,""],"use high bandwidth allocation if priority is high":[null,""],"Test Connection":[null,"Testi ühendust"],"Windows Shares":[null,""],"Defines your existing windows shares so that we can add them to the browse dialog":[null,""],"Share #{number}":[null,""],"Share label":[null,""],"Hostname or IP":[null,""],"Share path":[null,""],"Subtitles Search":[null,"Subtiitrid otsing"],"Subtitles Plugin":[null,"Subtiitrite Plugin"],"Plugin Settings":[null,"Plugina seaded"],"Settings that dictate how SickRage handles subtitles search results.":[null,""],"Search Subtitles":[null,"Otsi subtiitreid"],"Subtitle Languages":[null,"Subtiitrite keeled"],"Subtitle Directory":[null,"Subtiitrite kataloog"],"the directory where SickRage should store your <i>Subtitles</i> files.":[null,""],"leave empty if you want store subtitle in episode path.":[null,""],"Subtitle Find Frequency":[null,""],"time in hours between scans (default: 1)":[null,""],"Include Specials":[null,""],"include the show's specials when searching for subtitles?":[null,""],"Perfect matches":[null,""],"only download subtitles that match: release group, video codec, audio codec and resolution":[null,""],"if disabled you may get out of sync subtitles":[null,""],"Subtitles History":[null,"Subtiitrid ajalugu"],"log downloaded Subtitle on History page?":[null,""],"Subtitles Multi-Language":[null,""],"append language codes to subtitle filenames?":[null,""],"this option is required if you use multiple subtitle languages":[null,""],"Delete unwanted subtitles":[null,""],"enable to delete unwanted subtitle languages bundled with release":[null,""],"Embedded Subtitles":[null,""],"ignore subtitles embedded inside video file?":[null,""],"this will ignore <u>all</u> embedded subtitles for every video file!":[null,""],"Hearing Impaired Subtitles":[null,""],"download hearing impaired style subtitles?":[null,""],"See":[null,"Vaata"],"for a script arguments description.":[null,""],"Additional scripts separated by <b>|</b>.":[null,""],"Scripts are called after each episode has searched and downloaded subtitles.":[null,""],"For any scripted languages, include the interpreter executable before the script. See the following example":[null,""],"For Windows:":[null,""],"For Linux / OS X:":[null,"Linux / OS X:"],"Subtitle Providers":[null,""],"Check off and drag the plugins into the order you want them to be used.":[null,""],"At least one plugin is required.":[null,""]," Web-scraping plugin":[null,""],"Provider Settings":[null,""],"Set user and password for each provider":[null,""],"User Name":[null,"Kasutajanimi"],"Change Show":[null,""],"Prev Show":[null,""],"Next Show":[null,""],"Jump to Season":[null,"Hüppa hooaega"],"Specials":[null,"Eripakkumised"],"Poster for":[null,""],"Stars":[null,"Tähed"],"minutes":[null,"minutit"],"View other popular {genre} shows on trakt.tv.":[null,""],"View other popular {imdbgenre} shows on IMDB.":[null,""],"Allowed":[null,"Lubatud"],"Preferred":[null,"Eelistatud"],"Originally Airs":[null,""],"Show Status":[null,""],"Default EP Status":[null,""],"Location":[null,"Asukoht"],"Missing":[null,"Puudub"],"Scene Name":[null,"Stseeni nimi"],"Required Words":[null,""],"Ignored Words":[null,""],"Size":[null,"Suurus"],"Info Language":[null,"Info keel"],"Subtitles SR Metadata":[null,""],"Season Folders":[null,"Hooaja kaustad"],"Paused":[null,"Peatatud"],"Air-by-Date":[null,""],"Sports":[null,"Sport"],"DVD Order":[null,"DVD tellimus"],"Scene Numbering":[null,""],"Select Filtered Episodes":[null,""],"Clear All":[null,"Tühjenda kõik"],"Change selected episodes to":[null,""],"Select Columns":[null,""],"NFO":[null,"NFO"],"TBN":[null,"TBN"],"Episode":[null,"Episood"],"Absolute":[null,""],"Scene":[null,""],"Scene Absolute":[null,""],"File Name":[null,""],"Airdate":[null,""],"Download":[null,"Lae alla"],"Change the value here if scene numbering differs from the indexer episode numbering":[null,""],"Change the value here if scene absolute numbering differs from the indexer absolute numbering":[null,""],"Manual Search":[null,""],"Do you want to mark this episode as failed?":[null,""],"The episode release name will be added to the failed history, preventing it to be downloaded again.":[null,""],"Do you want to include the current episode quality in the search?":[null,""],"Choosing No will ignore any releases with the same episode quality as the one currently downloaded/snatched.":[null,""],"Download subtitle":[null,""],"Do you want to re-download the subtitle for this language?":[null,""],"It will overwrite your current subtitle":[null,""],"Format":[null,"Formaat"],"Advanced":[null,"Edasijõudnud"],"Main Settings":[null,"Peamised sätted"],"Show Location":[null,"Näita asukohta"],"Preferred Quality":[null,"Eelistatud kvaliteet"],"Default Episode Status":[null,""],"this will set the status for future episodes.":[null,""],"this only applies to episode filenames and the contents of metadata files.":[null,""],"search for subtitles":[null,""],"Use SR Metdata":[null,""],"use SickRage metadata when searching for subtitle, this will override the autodiscovered metadata":[null,""],"pause this show (SickRage will not download episodes)":[null,""],"Format Settings":[null,"Formaadi seadete"],"Air by date":[null,""],"check if the show is released as Show.03.02.2010 rather than Show.S02E03.":[null,""],"in case of an air date conflict between regular and special episodes, the later will be ignored.":[null,""],"check if the show is Anime and episodes are released as Show.265 rather than Show.S02E03":[null,""],"check if the show is a sporting or MMA event released as Show.03.02.2010 rather than Show.S02E03":[null,""],"Season folders":[null,"Hooaja kaustad"],"group episodes by season folder (uncheck to store in a single folder)":[null,""],"search by scene numbering (uncheck to search by indexer numbering)":[null,""],"use the DVD order instead of the air order":[null,""],"a \"Force Full Update\" is necessary, and if you have existing episodes you need to sort them manually.":[null,""],"comma-separated <i>e.g. \"word1,word2,word3</i>\"":[null,""],"search results with one or more words from this list will be ignored.":[null,""],"e.g. \"word1,word2,word3\"":[null,""],"search results with no words from this list will be ignored.":[null,""],"Scene Exception":[null,""],"this will affect episode search on NZB and torrent providers.":[null,""],"this list appends to the original show name.":[null,""],"WARNING logs":[null,"Hoiatuse logid"],"ERROR logs":[null,"VEA logid"],"There are no events to display.":[null,""],"Limit":[null,"Limiit"],"Layout":[null,"Paigutus"],"HistoryLayout":[null,""],"Compact":[null,"Kompaktne"],"Detailed":[null,"Üksikasjalikud"],"Time":[null,"Aeg"],"Provider":[null,"Pakkuja"],"Missing Provider":[null,"Puuduv pakkuja"],"missing provider":[null,"puuduv pakkuja"],"Directory":[null,""],"Show Name (tvshow.nfo)":[null,""],"Indexer":[null,""],"Enter the folder containing the episode":[null,""],"Process Method to be used":[null,""],"Copy":[null,""],"Move":[null,""],"Hard Link":[null,""],"Symbolic Link":[null,""],"Symbolic Link Reversed":[null,""],"Force already Post Processed Dir/Files":[null,""],"Mark Dir/Files as priority download":[null,""],"(Check it to replace the file even if it exists at higher quality)":[null,""],"Delete files and folders":[null,"Kustuta failid ja kaustad"],"(Check it to delete files and folders like auto processing)":[null,""],"Don't use processing queue":[null,""],"(If checked this will return the result of the process here, but may be slow!)":[null,""],"Mark download as failed":[null,""],"Process":[null,"Protsess"],"Download subtitles for this show?":[null,""],"use SickRage metadata when searching for subtitle, <br />this will override the autodiscovered metadata":[null,""],"Status for previously aired episodes":[null,""],"Status for all future episodes":[null,""],"Group episodes by season folder?":[null,""],"Is this show an Anime?":[null,""],"Is this show scene numbered?":[null,""],"Save Defaults":[null,"Salvesta vaikesätted"],"Use current values as the defaults":[null,""],"<p>Select your preferred fansub groups from the <b>Available Groups</b> and add them to the <b>Whitelist</b>. Add groups to the <b>Blacklist</b> to ignore them.</p>\n <p>The <b>Whitelist</b> is checked <i>before</i> the <b>Blacklist</b>.</p>\n <p>Groups are shown as <b>Name</b> | <b>Rating</b> | <b>Number of subbed episodes</b>.</p>\n <p>You may also add any fansub group not listed to either list manually.</p>\n <p>When doing this please note that you can only use groups listed on anidb for this anime.\n <br>If a group is not listed on anidb but subbed this anime, please correct anidb's data.</p>":[null,""],"Whitelist":[null,""],"Available Groups":[null,""],"Add to Whitelist":[null,""],"Add to Blacklist":[null,""],"Blacklist":[null,"Must nimekiri"],"Custom Group":[null,""],"Allowed Quality:":[null,"Lubatud kvaliteet:"],"Preferred Quality:":[null,"Eelistatud kvaliteet:"],"Filter Show Name":[null,""],"Root":[null,""],"All":[null,"Kõik"],"Clear Filter(s)":[null,"Eemalda filtrid"],"Poster":[null,"Plakat"],"Small Poster":[null,"Väike plakat"],"Banner":[null,"Banner"],"Simple":[null,"Lihtne"],"Next Episode":[null,"Järgmine Episode"],"Progress":[null,"Progress"],"Direction":[null,"Suund"],"Ascending":[null,"Kasvav"],"Descending":[null,""],"Poster Size":[null,"Plakati suurus"],"Continuing":[null,"Jätkuv"],"Ended":[null,"Lõppenud"],"Total":[null,""],"Invalid date":[null,""],"No Network":[null,""],"Next Ep":[null,""],"Prev Ep":[null,""],"Show":[null,"Näita"],"Downloads":[null,""],"Active":[null,""],"loading":[null,""],"<p><b><u>Preferred</u></b> qualities will replace those in <b><u>allowed</u></b>, even if they are lower.</p>":[null,""],"New":[null,"Uus"],"Set as Default":[null,"Määra vaikeseadeks"],"Remember me":[null,"Jäta mind meelde"],"Edit Selected":[null,"Redigeeri valitud"],"Subtitle":[null,"Subtiiter"],"Default Ep Status":[null,""],"Update":[null,"Uuendus"],"Rescan":[null,"Skänni uuesti"],"Rename":[null,"Muuda nimi"],"Search Subtitle":[null,"Otsi subtiitreid"],"Force Metadata Regen":[null,""],"Snatched (Allowed)":[null,""],"Jump to Show":[null,""],"Force Backlog":[null,""],"Manage episodes with status":[null,""],"Manage":[null,"Halda"],"None of your episodes have status":[null,""],"Shows containing":[null,""],"episodes":[null,"episoodid"],"Set checked shows/episodes to":[null,""],"Go":[null,"Mine"],"Select all":[null,"Vali kõik"],"Clear all":[null,"Tühjenda kõik"],"Release":[null,""],"Backlog Search":[null,""],"Not in progress":[null,""],"In Progress":[null,""],"Daily Search":[null,""],"Find Propers Search":[null,""],"Propers search disabled":[null,""],"Subtitle Search":[null,""],"Subtitle search disabled":[null,""],"Search Queue":[null,""],"pending items":[null,""],"Daily":[null,""],"Manual":[null,""],"Changing any settings marked with (<span class=\"separator\">*</span>) will force a refresh of the selected shows.":[null,""],"Selected Shows":[null,""],"Root Directories":[null,""],"Current":[null,""],"Keep":[null,"Hoia"],"Custom":[null,""],"Group episodes by season folder (set to \"No\" to store in a single folder).":[null,""],"Pause these shows (SickRage will not download episodes).":[null,""],"This will set the status for future episodes.":[null,""],"Search by scene numbering (set to \"No\" to search by indexer numbering).":[null,""],"Set if these shows are Anime and episodes are released as Show.265 rather than Show.S02E03":[null,""],"Set if these shows are sporting or MMA events released as Show.03.02.2010 rather than Show.S02E03.":[null,""],"In case of an air date conflict between regular and special episodes, the later will be ignored.":[null,""],"Set if these shows are released as Show.03.02.2010 rather than Show.S02E03.":[null,""],"Search for subtitles.":[null,"Otsi subtiitreid."],"All of your episodes have {subsLanguage} subtitles.":[null,""],"Manage episodes without":[null,""],"Episodes without {subsLanguage} subtitles.":[null,""],"Episodes without {subtitleLanguage} (undefined) subtitles.":[null,""],"Download missed subtitles for selected episodes":[null,""],"Performing Restart":[null,""],"Waiting for SickRage to shut down":[null,""],"Waiting for SickRage to start again":[null,""],"Loading the default page":[null,""],"Error: The restart has timed out, perhaps something prevented SickRage from starting again?":[null,""],"Key":[null,"Võti"],"Missed":[null,"Vastamata"],"Today":[null,"Täna"],"Soon":[null,"Varsti"],"Later":[null,"Hiljem"],"Subscribe":[null,"Telli"],"Date":[null,"Kuupäev"],"View Paused":[null,"Vaade pausil"],"Hidden":[null,"Peidetud"],"Shown":[null,""],"Calendar":[null,"Kalender"],"List":[null,"Nimekiri"],"Ends":[null,"Lõpeb"],"Next Ep Name":[null,""],"Run time":[null,"Käitusaeg"],"Indexers":[null,""],"No shows for this day":[null,""],"Airs":[null,""],"Plot":[null,""],"Show Update":[null,""],"Version Check":[null,""],"Proper Finder":[null,""],"Post Process":[null,""],"Subtitles Finder":[null,""],"Scheduler":[null,"Ajakava"],"Alive":[null,""],"Start Time":[null,"Algusaeg"],"Cycle Time":[null,""],"Next Run":[null,""],"Last Run":[null,"Viimane käivitus"],"Silent":[null,"Hääletu"],"True":[null,"Tõene"],"N/A":[null,""],"Show id":[null,""],"Show name":[null,"Saate nimi"],"Priority":[null,"Prioriteet"],"Added":[null,"Lisatud"],"Queue type":[null,""],"LOW":[null,"MADAL"],"NORMAL":[null,"NORMAALNE"],"HIGH":[null,"KÕRGE"],"Disk Space":[null,"Kettaruum"],"Free space":[null,"Vaba kettaruum"],"TV Download Directory":[null,""],"Media Root Directories":[null,""],"Preview of the proposed name changes":[null,""],"All Seasons":[null,""],"select all":[null,""],"Rename Selected":[null,""],"Cancel Rename":[null,""],"Old Location":[null,"Vana asukoht"],"New Location":[null,"Uus asukoht"],"Trakt API did not return any results, please check your config.":[null,""],"votes":[null,"häält"],"Remove Show":[null,""],"Level":[null,""],"Filter":[null,""],"All non-absolute folder locations are relative to ":[null,""],"Manual Post-Processing":[null,""],"Episode Status Management":[null,""],"Update PLEX":[null,""],"Update KODI":[null,""],"Update Emby":[null,""],"Manage Torrents":[null,"Halda torrenteid"],"Missed Subtitle Management":[null,""],"Help & Info":[null,""],"Backup & Restore":[null,""],"Tools":[null,"Tööriistad"],"Support SickRage":[null,""],"View Errors":[null,"Kuva tõrked"],"View Warnings":[null,"Kuva hoiatusi"],"View Log":[null,"Vaata logi"],"Check For Updates":[null,"Kontrolli uuendusi"],"Restart":[null,"Taaskäivita"],"Shutdown":[null,"Pane kinni"],"Logout":[null,"Logi välja"],"Server Status":[null,"Serveri olek"],"View overview of snatched episodes":[null,""],"Episodes Downloaded":[null,""],"Memory used":[null,"Kasutatud mälu"],"Load time":[null,""],"Branch":[null,""],"Now":[null,"Nüüd"]}}}} \ No newline at end of file diff --git a/locale/et_EE/LC_MESSAGES/messages.mo b/locale/et_EE/LC_MESSAGES/messages.mo index 4165ce211ee1d3dfeae21a9b4ca6f8381ffb0201..bf1dceb6fbdc24530b22252cad5f18f6adecbcd1 100644 Binary files a/locale/et_EE/LC_MESSAGES/messages.mo and b/locale/et_EE/LC_MESSAGES/messages.mo differ diff --git a/locale/et_EE/LC_MESSAGES/messages.po b/locale/et_EE/LC_MESSAGES/messages.po index bf6bdff8f917eb87b79149e60a8e3eb6024bcfbf..f0927ea725b3ba2a6dc9945ad51fbcea54c18d73 100644 --- a/locale/et_EE/LC_MESSAGES/messages.po +++ b/locale/et_EE/LC_MESSAGES/messages.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: sickrage\n" "Report-Msgid-Bugs-To: miigotu@gmail.com\n" -"POT-Creation-Date: 2017-03-25 09:28-0700\n" -"PO-Revision-Date: 2017-03-25 12:29-0400\n" +"POT-Creation-Date: 2017-03-28 09:10-0700\n" +"PO-Revision-Date: 2017-03-28 12:11-0400\n" "Last-Translator: miigotu <miigotu@gmail.com>\n" "Language-Team: Estonian\n" "MIME-Version: 1.0\n" @@ -90,7 +90,7 @@ msgid "Biography" msgstr "" #: gui/slick/views/config_general.mako:78 gui/slick/views/layouts/main.mako:145 -#: sickbeard/__init__.py:79 sickbeard/webserve.py:3807 +#: sickbeard/__init__.py:79 sickbeard/webserve.py:3778 msgid "History" msgstr "Ajalugu" @@ -103,7 +103,7 @@ msgid "Western" msgstr "" #: gui/slick/views/config_general.mako:79 gui/slick/views/layouts/main.mako:221 -#: sickbeard/__init__.py:80 sickbeard/webserve.py:2385 +#: sickbeard/__init__.py:80 sickbeard/webserve.py:2384 msgid "News" msgstr "Uudised" @@ -238,6 +238,34 @@ msgstr "Ignoreeritud" msgid "Subtitled" msgstr "Subtiitritega" +#: sickbeard/helpers.py:1887 +msgid "For best results please set the Download Station alias as" +msgstr "" + +#: sickbeard/helpers.py:1888 +msgid "You can check this setting in the Synology DSM" +msgstr "" + +#: sickbeard/helpers.py:1888 sickbeard/helpers.py:1890 +msgid "Control Panel" +msgstr "Juhtpaneel" + +#: sickbeard/helpers.py:1888 +msgid "Application Portal" +msgstr "Rakenduse portaal" + +#: sickbeard/helpers.py:1889 +msgid "Make sure you allow DSM to be embedded with iFrames too in" +msgstr "" + +#: sickbeard/helpers.py:1890 +msgid "DSM Settings" +msgstr "DSM seaded" + +#: sickbeard/helpers.py:1890 +msgid "Security" +msgstr "Turvalisus" + #: sickbeard/logger.py:474 msgid "<No Filter>" msgstr "" @@ -308,15 +336,15 @@ msgstr "" msgid "Event" msgstr "Sündmus" -#: sickbeard/logger.py:491 sickbeard/webserve.py:1339 sickbeard/webserve.py:1342 -#: sickbeard/webserve.py:1520 sickbeard/webserve.py:1529 sickbeard/webserve.py:1717 -#: sickbeard/webserve.py:1728 sickbeard/webserve.py:1751 sickbeard/webserve.py:1764 -#: sickbeard/webserve.py:1769 sickbeard/webserve.py:1785 sickbeard/webserve.py:1790 -#: sickbeard/webserve.py:1854 sickbeard/webserve.py:1857 sickbeard/webserve.py:1863 -#: sickbeard/webserve.py:1866 sickbeard/webserve.py:1873 sickbeard/webserve.py:1876 -#: sickbeard/webserve.py:1899 sickbeard/webserve.py:1997 sickbeard/webserve.py:2002 -#: sickbeard/webserve.py:2007 sickbeard/webserve.py:2036 sickbeard/webserve.py:2040 -#: sickbeard/webserve.py:2045 +#: sickbeard/logger.py:491 sickbeard/webserve.py:1338 sickbeard/webserve.py:1341 +#: sickbeard/webserve.py:1519 sickbeard/webserve.py:1528 sickbeard/webserve.py:1716 +#: sickbeard/webserve.py:1727 sickbeard/webserve.py:1750 sickbeard/webserve.py:1763 +#: sickbeard/webserve.py:1768 sickbeard/webserve.py:1784 sickbeard/webserve.py:1789 +#: sickbeard/webserve.py:1853 sickbeard/webserve.py:1856 sickbeard/webserve.py:1862 +#: sickbeard/webserve.py:1865 sickbeard/webserve.py:1872 sickbeard/webserve.py:1875 +#: sickbeard/webserve.py:1898 sickbeard/webserve.py:1996 sickbeard/webserve.py:2001 +#: sickbeard/webserve.py:2006 sickbeard/webserve.py:2035 sickbeard/webserve.py:2039 +#: sickbeard/webserve.py:2044 msgid "Error" msgstr "Viga" @@ -333,6 +361,7 @@ msgstr "" msgid "Main" msgstr "" +#: gui/slick/js/ajaxEpSearch.js:146 gui/slick/js/ajaxEpSearch.js:147 #: gui/slick/views/inc_home_showList.mako:27 sickbeard/show_queue.py:298 msgid "Loading" msgstr "" @@ -372,867 +401,835 @@ msgstr "Sätete varundamine ebaõnnestus, katkestan uuenduse" msgid "No update needed" msgstr "Ole vaja uuendada" -#: sickbeard/webserve.py:170 +#: sickbeard/webserve.py:171 msgid "Mako Error" msgstr "Mako tõrge" -#: sickbeard/webserve.py:195 +#: sickbeard/webserve.py:196 msgid "Oops" msgstr "Uups" -#: sickbeard/webserve.py:197 +#: sickbeard/webserve.py:198 msgid "Wrong API key used" msgstr "Vale API võti, mida kasutatakse" -#: gui/slick/views/login.mako:34 sickbeard/webserve.py:302 +#: gui/slick/views/login.mako:34 sickbeard/webserve.py:303 msgid "Login" msgstr "Logi sisse" -#: sickbeard/webserve.py:406 +#: sickbeard/webserve.py:392 msgid "API Key not generated" msgstr "API võti ei ole genereeritud" -#: sickbeard/webserve.py:409 +#: sickbeard/webserve.py:395 msgid "API Builder" msgstr "API ehitaja" #: gui/slick/views/config_general.mako:77 gui/slick/views/layouts/main.mako:141 -#: sickbeard/webserve.py:512 +#: sickbeard/webserve.py:498 msgid "Schedule" msgstr "Ajakava" -#: sickbeard/webserve.py:610 +#: sickbeard/webserve.py:609 msgid "Test 1" msgstr "Test 1" -#: sickbeard/webserve.py:610 +#: sickbeard/webserve.py:609 msgid "This is test number 1" msgstr "See on katse nr 1" -#: sickbeard/webserve.py:611 +#: sickbeard/webserve.py:610 msgid "Test 2" msgstr "Test 2" -#: sickbeard/webserve.py:611 +#: sickbeard/webserve.py:610 msgid "This is test number 2" msgstr "See on katse number 2" -#: sickbeard/webserve.py:634 +#: sickbeard/webserve.py:633 msgid "You're using the {branch} branch. Please use 'master' unless specifically asked" msgstr "" -#: sickbeard/webserve.py:698 sickbeard/webserve.py:703 +#: sickbeard/webserve.py:697 sickbeard/webserve.py:702 msgid "Invalid show parameters" msgstr "Sobimatud parameetrid" -#: sickbeard/webserve.py:710 +#: sickbeard/webserve.py:709 msgid "Invalid parameters" msgstr "" -#: sickbeard/webserve.py:713 sickbeard/webserve.py:1899 +#: sickbeard/webserve.py:712 sickbeard/webserve.py:1898 msgid "Episode couldn't be retrieved" msgstr "Episoodi ei saanud laadida" -#: sickbeard/webserve.py:759 sickbeard/webserve.py:1268 sickbeard/webserve.py:1297 +#: sickbeard/webserve.py:758 sickbeard/webserve.py:1267 sickbeard/webserve.py:1296 msgid "Home" msgstr "Pealeht" -#: gui/slick/views/layouts/main.mako:127 sickbeard/webserve.py:759 +#: gui/slick/views/layouts/main.mako:127 sickbeard/webserve.py:758 msgid "Show List" msgstr "Kuva loend" -#: sickbeard/webserve.py:807 +#: sickbeard/webserve.py:806 msgid "Error: Unsupported Request. Send jsonp request with 'callback' variable in the query string." msgstr "" -#: sickbeard/webserve.py:851 +#: sickbeard/webserve.py:850 msgid "Success. Connected and authenticated" msgstr "Edu. Ühendatud ja kinnitatud" -#: sickbeard/webserve.py:853 +#: sickbeard/webserve.py:852 msgid "Authentication failed. SABnzbd expects" msgstr "Autentimine nurjus. SABnzbd ootab" -#: sickbeard/webserve.py:853 +#: sickbeard/webserve.py:852 msgid "as authentication method" msgstr "nagu autentimismeetod" -#: sickbeard/webserve.py:855 +#: sickbeard/webserve.py:854 msgid "Unable to connect to host" msgstr "Ei saanud serveriga ühendust" -#: sickbeard/webserve.py:876 +#: sickbeard/webserve.py:875 msgid "SMS sent successfully" msgstr "SMS saatmine õnnestus" -#: sickbeard/webserve.py:878 +#: sickbeard/webserve.py:877 msgid "Problem sending SMS: {message}" msgstr "SMS-i saatmise probleem: {message}" -#: sickbeard/webserve.py:885 +#: sickbeard/webserve.py:884 msgid "Telegram notification succeeded. Check your Telegram clients to make sure it worked" msgstr "Telegram teate õnnestus. Kontrollige oma Telegram klienti, veendumaks, et see töötas" -#: sickbeard/webserve.py:887 +#: sickbeard/webserve.py:886 msgid "Error sending Telegram notification: {message}" msgstr "" -#: sickbeard/webserve.py:894 +#: sickbeard/webserve.py:893 msgid "join notification succeeded. Check your join clients to make sure it worked" msgstr "" -#: sickbeard/webserve.py:896 +#: sickbeard/webserve.py:895 msgid "Error sending join notification: {message}" msgstr "" -#: sickbeard/webserve.py:906 +#: sickbeard/webserve.py:905 msgid " with password" msgstr " parooliga" -#: sickbeard/webserve.py:908 +#: sickbeard/webserve.py:907 msgid "Registered and Tested growl successfully {growl_host}" msgstr "" -#: sickbeard/webserve.py:910 +#: sickbeard/webserve.py:909 msgid "Registration and Testing of growl failed {growl_host}" msgstr "" -#: sickbeard/webserve.py:917 +#: sickbeard/webserve.py:916 msgid "Test prowl notice sent successfully" msgstr "" -#: sickbeard/webserve.py:919 +#: sickbeard/webserve.py:918 msgid "Test prowl notice failed" msgstr "" -#: sickbeard/webserve.py:926 +#: sickbeard/webserve.py:925 msgid "Boxcar2 notification succeeded. Check your Boxcar2 clients to make sure it worked" msgstr "" -#: sickbeard/webserve.py:928 +#: sickbeard/webserve.py:927 msgid "Error sending Boxcar2 notification" msgstr "" -#: sickbeard/webserve.py:935 +#: sickbeard/webserve.py:934 msgid "Pushover notification succeeded. Check your Pushover clients to make sure it worked" msgstr "Pushover teate õnnestus. Kontrollige oma Pushover klienti, veendumaks, et see töötas" -#: sickbeard/webserve.py:937 +#: sickbeard/webserve.py:936 msgid "Error sending Pushover notification" msgstr "Viga Pushover teate saatmisel" -#: sickbeard/webserve.py:949 +#: sickbeard/webserve.py:948 msgid "Key verification successful" msgstr "Võtme kinnitus õnnestus" -#: sickbeard/webserve.py:951 +#: sickbeard/webserve.py:950 msgid "Unable to verify key" msgstr "Ei ole võimalik kontrollida võtit" -#: sickbeard/webserve.py:958 +#: sickbeard/webserve.py:957 msgid "Tweet successful, check your twitter to make sure it worked" msgstr "" -#: sickbeard/webserve.py:960 +#: sickbeard/webserve.py:959 msgid "Error sending tweet" msgstr "Viga tweedi saatmisel" -#: sickbeard/webserve.py:965 +#: sickbeard/webserve.py:964 msgid "Please enter a valid account sid" msgstr "" -#: sickbeard/webserve.py:968 +#: sickbeard/webserve.py:967 msgid "Please enter a valid auth token" msgstr "" -#: sickbeard/webserve.py:971 +#: sickbeard/webserve.py:970 msgid "Please enter a valid phone sid" msgstr "" -#: sickbeard/webserve.py:974 +#: sickbeard/webserve.py:973 msgid "Please format the phone number as \"+1-###-###-####\"" msgstr "" -#: sickbeard/webserve.py:978 +#: sickbeard/webserve.py:977 msgid "Authorization successful and number ownership verified" msgstr "" -#: sickbeard/webserve.py:980 +#: sickbeard/webserve.py:979 msgid "Error sending sms" msgstr "" -#: sickbeard/webserve.py:986 +#: sickbeard/webserve.py:985 msgid "Slack message successful" msgstr "" -#: sickbeard/webserve.py:988 +#: sickbeard/webserve.py:987 msgid "Slack message failed" msgstr "" -#: sickbeard/webserve.py:994 +#: sickbeard/webserve.py:993 msgid "Discord message successful" msgstr "" -#: sickbeard/webserve.py:996 +#: sickbeard/webserve.py:995 msgid "Discord message failed" msgstr "" -#: sickbeard/webserve.py:1006 +#: sickbeard/webserve.py:1005 msgid "Test KODI notice sent successfully to {kodi_host}" msgstr "" -#: sickbeard/webserve.py:1008 +#: sickbeard/webserve.py:1007 msgid "Test KODI notice failed to {kodi_host}" msgstr "" -#: sickbeard/webserve.py:1023 +#: sickbeard/webserve.py:1022 msgid "Successful test notice sent to Plex Home Theater ... {plex_clients}" msgstr "" -#: sickbeard/webserve.py:1025 +#: sickbeard/webserve.py:1024 msgid "Test failed for Plex Home Theater ... {plex_clients}" msgstr "" -#: sickbeard/webserve.py:1028 +#: sickbeard/webserve.py:1027 msgid "Tested Plex Home Theater(s)" msgstr "" -#: sickbeard/webserve.py:1042 +#: sickbeard/webserve.py:1041 msgid "Successful test of Plex Media Server(s) ... {plex_servers}" msgstr "" -#: sickbeard/webserve.py:1044 +#: sickbeard/webserve.py:1043 msgid "Test failed, No Plex Media Server host specified" msgstr "" -#: sickbeard/webserve.py:1046 +#: sickbeard/webserve.py:1045 msgid "Test failed for Plex Media Server(s) ... {plex_servers}" msgstr "" -#: sickbeard/webserve.py:1049 +#: sickbeard/webserve.py:1048 msgid "Tested Plex Media Server host(s)" msgstr "" -#: sickbeard/webserve.py:1057 +#: sickbeard/webserve.py:1056 msgid "Tried sending desktop notification via libnotify" msgstr "" -#: sickbeard/webserve.py:1066 +#: sickbeard/webserve.py:1065 msgid "Test notice sent successfully to {emby_host}" msgstr "" -#: sickbeard/webserve.py:1068 +#: sickbeard/webserve.py:1067 msgid "Test notice failed to {emby_host}" msgstr "" -#: sickbeard/webserve.py:1076 +#: sickbeard/webserve.py:1075 msgid "Successfully started the scan update" msgstr "" -#: sickbeard/webserve.py:1078 +#: sickbeard/webserve.py:1077 msgid "Test failed to start the scan update" msgstr "" -#: sickbeard/webserve.py:1097 +#: sickbeard/webserve.py:1096 msgid "Test notice sent successfully to {nmj2_host}" msgstr "" -#: sickbeard/webserve.py:1099 +#: sickbeard/webserve.py:1098 msgid "Test notice failed to {nmj2_host}" msgstr "" -#: sickbeard/webserve.py:1119 +#: sickbeard/webserve.py:1118 msgid "Trakt Authorized" msgstr "" -#: sickbeard/webserve.py:1120 +#: sickbeard/webserve.py:1119 msgid "Trakt Not Authorized!" msgstr "" -#: sickbeard/webserve.py:1184 +#: sickbeard/webserve.py:1183 msgid "Test email sent successfully! Check inbox." msgstr "" -#: sickbeard/webserve.py:1186 +#: sickbeard/webserve.py:1185 msgid "ERROR: {last_error}" msgstr "VIGA: {last_error}" -#: sickbeard/webserve.py:1193 +#: sickbeard/webserve.py:1192 msgid "Test NMA notice sent successfully" msgstr "" -#: sickbeard/webserve.py:1195 +#: sickbeard/webserve.py:1194 msgid "Test NMA notice failed" msgstr "" -#: sickbeard/webserve.py:1202 +#: sickbeard/webserve.py:1201 msgid "Pushalot notification succeeded. Check your Pushalot clients to make sure it worked" msgstr "" -#: sickbeard/webserve.py:1204 +#: sickbeard/webserve.py:1203 msgid "Error sending Pushalot notification" msgstr "" -#: sickbeard/webserve.py:1211 +#: sickbeard/webserve.py:1210 msgid "Pushbullet notification succeeded. Check your device to make sure it worked" msgstr "" -#: sickbeard/webserve.py:1213 sickbeard/webserve.py:1223 sickbeard/webserve.py:1232 +#: sickbeard/webserve.py:1212 sickbeard/webserve.py:1222 sickbeard/webserve.py:1231 msgid "Error sending Pushbullet notification" msgstr "" #: gui/slick/views/displayShow.mako:436 gui/slick/views/inc_home_showList.mako:174 -#: gui/slick/views/manage.mako:49 sickbeard/webserve.py:1249 +#: gui/slick/views/manage.mako:49 sickbeard/webserve.py:1248 msgid "Status" msgstr "Staatus" -#: sickbeard/webserve.py:1268 sickbeard/webserve.py:1297 +#: sickbeard/webserve.py:1267 sickbeard/webserve.py:1296 msgid "Restarting SickRage" msgstr "SickRage käivitub" -#: sickbeard/webserve.py:1300 +#: sickbeard/webserve.py:1299 msgid "Update Failed" msgstr "Värskendamine nurjus" -#: sickbeard/webserve.py:1301 +#: sickbeard/webserve.py:1300 msgid "Update wasn't successful, not restarting. Check your log for more information." msgstr "" -#: sickbeard/webserve.py:1308 +#: sickbeard/webserve.py:1307 msgid "Checking out branch" msgstr "" -#: sickbeard/webserve.py:1311 +#: sickbeard/webserve.py:1310 msgid "Already on branch" msgstr "" -#: sickbeard/webserve.py:1339 +#: sickbeard/webserve.py:1338 msgid "Invalid show ID: {show}" msgstr "" -#: sickbeard/webserve.py:1342 sickbeard/webserve.py:1871 sickbeard/webserve.py:2002 -#: sickbeard/webserve.py:2040 +#: sickbeard/webserve.py:1341 sickbeard/webserve.py:1870 sickbeard/webserve.py:2001 +#: sickbeard/webserve.py:2039 msgid "Show not in show list" msgstr "" #: gui/slick/views/inc_rootDirs.mako:31 gui/slick/views/manage.mako:38 -#: gui/slick/views/manage_massEdit.mako:74 sickbeard/webserve.py:1358 -#: sickbeard/webserve.py:2027 +#: gui/slick/views/manage_massEdit.mako:74 sickbeard/webserve.py:1357 +#: sickbeard/webserve.py:2026 msgid "Edit" msgstr "Muuda" -#: sickbeard/webserve.py:1368 +#: sickbeard/webserve.py:1367 msgid "This show is in the process of being downloaded - the info below is incomplete." msgstr "" -#: sickbeard/webserve.py:1371 +#: sickbeard/webserve.py:1370 msgid "The information on this page is in the process of being updated." msgstr "" -#: sickbeard/webserve.py:1374 +#: sickbeard/webserve.py:1373 msgid "The episodes below are currently being refreshed from disk" msgstr "" -#: sickbeard/webserve.py:1377 +#: sickbeard/webserve.py:1376 msgid "Currently downloading subtitles for this show" msgstr "" -#: sickbeard/webserve.py:1380 +#: sickbeard/webserve.py:1379 msgid "This show is queued to be refreshed." msgstr "" -#: sickbeard/webserve.py:1383 +#: sickbeard/webserve.py:1382 msgid "This show is queued and awaiting an update." msgstr "" -#: sickbeard/webserve.py:1386 +#: sickbeard/webserve.py:1385 msgid "This show is queued and awaiting subtitles download." msgstr "" -#: gui/slick/js/core.js:4081 sickbeard/webserve.py:1391 +#: gui/slick/js/core.js:4081 sickbeard/webserve.py:1390 msgid "Resume" msgstr "Jätka" #: gui/slick/js/core.js:4081 gui/slick/views/viewlogs.mako:12 -#: sickbeard/webserve.py:1393 +#: sickbeard/webserve.py:1392 msgid "Pause" msgstr "Paus" #: gui/slick/views/editShow.mako:345 gui/slick/views/inc_blackwhitelist.mako:40 #: gui/slick/views/inc_blackwhitelist.mako:85 gui/slick/views/manage.mako:58 -#: gui/slick/views/manage_failedDownloads.mako:43 sickbeard/webserve.py:1395 +#: gui/slick/views/manage_failedDownloads.mako:43 sickbeard/webserve.py:1394 msgid "Remove" msgstr "Eemalda" -#: sickbeard/webserve.py:1396 +#: sickbeard/webserve.py:1395 msgid "Re-scan files" msgstr "Uuesti skaneerida faile" -#: sickbeard/webserve.py:1397 +#: sickbeard/webserve.py:1396 msgid "Force Full Update" msgstr "Jõuline uuendamine" -#: sickbeard/webserve.py:1398 +#: sickbeard/webserve.py:1397 msgid "Update show in KODI" msgstr "Uuenda saadeKODIs" -#: sickbeard/webserve.py:1399 +#: sickbeard/webserve.py:1398 msgid "Update show in Emby" msgstr "Uuenda saade Embys" -#: sickbeard/webserve.py:1402 +#: sickbeard/webserve.py:1401 msgid "Hide specials" msgstr "" -#: sickbeard/webserve.py:1404 +#: sickbeard/webserve.py:1403 msgid "Show specials" msgstr "" -#: sickbeard/webserve.py:1406 sickbeard/webserve.py:2030 sickbeard/webserve.py:2031 +#: sickbeard/webserve.py:1405 sickbeard/webserve.py:2029 sickbeard/webserve.py:2030 msgid "Preview Rename" msgstr "Eelvaate ümbernimetamine" -#: sickbeard/webserve.py:1409 +#: sickbeard/webserve.py:1408 msgid "Download Subtitles" msgstr "Lae Subtiitrid" -#: sickbeard/webserve.py:1498 +#: sickbeard/webserve.py:1497 msgid "No scene exceptions" msgstr "Ei ole stseeni erandeid" -#: sickbeard/webserve.py:1516 sickbeard/webserve.py:1764 sickbeard/webserve.py:1785 +#: sickbeard/webserve.py:1515 sickbeard/webserve.py:1763 sickbeard/webserve.py:1784 msgid "Invalid show ID" msgstr "Sobimatu saate ID" -#: sickbeard/webserve.py:1525 sickbeard/webserve.py:1769 sickbeard/webserve.py:1790 +#: sickbeard/webserve.py:1524 sickbeard/webserve.py:1768 sickbeard/webserve.py:1789 msgid "Unable to find the specified show" msgstr "Ei leia määratud saadet" -#: sickbeard/webserve.py:1550 +#: sickbeard/webserve.py:1549 msgid "Unable to retreive Fansub Groups from AniDB." msgstr "" -#: sickbeard/webserve.py:1559 sickbeard/webserve.py:1561 +#: sickbeard/webserve.py:1558 sickbeard/webserve.py:1560 msgid "Edit Show" msgstr "" -#: sickbeard/webserve.py:1637 sickbeard/webserve.py:1671 +#: sickbeard/webserve.py:1636 sickbeard/webserve.py:1670 msgid "Unable to refresh this show: {error}" msgstr "" -#: sickbeard/webserve.py:1663 +#: sickbeard/webserve.py:1662 msgid "New location <tt>{location}</tt> does not exist" msgstr "" -#: sickbeard/webserve.py:1688 +#: sickbeard/webserve.py:1687 msgid "Unable to update show: {error}" msgstr "" -#: sickbeard/webserve.py:1695 +#: sickbeard/webserve.py:1694 msgid "Unable to force an update on scene exceptions of the show." msgstr "" -#: sickbeard/webserve.py:1702 +#: sickbeard/webserve.py:1701 msgid "Unable to force an update on scene numbering of the show." msgstr "" -#: sickbeard/webserve.py:1708 sickbeard/webserve.py:3540 +#: sickbeard/webserve.py:1707 sickbeard/webserve.py:3539 msgid "{num_errors:d} error{plural} while saving changes:" msgstr "{num_errors:d} viga {plural} salvestamisel:" -#: sickbeard/webserve.py:1719 +#: sickbeard/webserve.py:1718 msgid "{show_name} has been {paused_resumed}" msgstr "{show_name} on {paused_resumed}" -#: sickbeard/webserve.py:1719 +#: sickbeard/webserve.py:1718 msgid "resumed" msgstr "jätkus" -#: sickbeard/webserve.py:1719 +#: sickbeard/webserve.py:1718 msgid "paused" msgstr "peatatud" -#: sickbeard/webserve.py:1731 +#: sickbeard/webserve.py:1730 msgid "{show_name} has been {deleted_trashed} {was_deleted}" msgstr "{show_name} on {deleted_trashed} {was_deleted}" -#: sickbeard/webserve.py:1733 +#: sickbeard/webserve.py:1732 msgid "deleted" msgstr "kustutatud" -#: sickbeard/webserve.py:1733 +#: sickbeard/webserve.py:1732 msgid "trashed" msgstr "prügikastis" -#: sickbeard/webserve.py:1734 +#: sickbeard/webserve.py:1733 msgid "(media untouched)" msgstr "(meedia puutumata)" -#: sickbeard/webserve.py:1734 +#: sickbeard/webserve.py:1733 msgid "(with all related media)" msgstr "(kõik seotud media)" -#: sickbeard/webserve.py:1755 +#: sickbeard/webserve.py:1754 msgid "Unable to refresh this show." msgstr "Ei saa värskendada seda saadet." -#: sickbeard/webserve.py:1775 +#: sickbeard/webserve.py:1774 msgid "Unable to update this show." msgstr "Ei saa uuendada seda saadet." -#: sickbeard/webserve.py:1814 +#: sickbeard/webserve.py:1813 msgid "Library update command sent to KODI host(s)): {kodi_hosts}" msgstr "Kogumi uuendamise käsk saadeti KODI vastuvõtjasse: {kodi_hosts}" -#: sickbeard/webserve.py:1816 +#: sickbeard/webserve.py:1815 msgid "Unable to contact one or more KODI host(s)): {kodi_hosts}" msgstr "Ei saanud ühendust ühe või mitme KODI seadmega: {kodi_hosts}" -#: sickbeard/webserve.py:1825 +#: sickbeard/webserve.py:1824 msgid "Library update command sent to Plex Media Server host: {plex_server}" msgstr "Kogumi uuendamise käsk saadetud Plex Media Serverisse: {plex_server}" -#: sickbeard/webserve.py:1828 +#: sickbeard/webserve.py:1827 msgid "Unable to contact Plex Media Server host: {plex_server}" msgstr "Ei saanud ühendust Plex Media Serveriga: {plex_server}" -#: sickbeard/webserve.py:1840 +#: sickbeard/webserve.py:1839 msgid "Library update command sent to Emby host: {emby_host}" msgstr "" -#: sickbeard/webserve.py:1842 +#: sickbeard/webserve.py:1841 msgid "Unable to contact Emby host: {emby_host}" msgstr "" -#: sickbeard/webserve.py:1852 sickbeard/webserve.py:2036 +#: sickbeard/webserve.py:1851 sickbeard/webserve.py:2035 msgid "You must specify a show and at least one episode" msgstr "" -#: sickbeard/webserve.py:1861 +#: sickbeard/webserve.py:1860 msgid "Invalid status" msgstr "Kehtetu olek" -#: sickbeard/webserve.py:1954 +#: sickbeard/webserve.py:1953 msgid "Backlog was automatically started for the following seasons of <b>{show_name}</b>" msgstr "" #: gui/slick/views/displayShow.mako:74 gui/slick/views/displayShow.mako:79 -#: gui/slick/views/displayShow.mako:404 sickbeard/webserve.py:1961 -#: sickbeard/webserve.py:1980 +#: gui/slick/views/displayShow.mako:404 sickbeard/webserve.py:1960 +#: sickbeard/webserve.py:1979 msgid "Season" msgstr "Hooaeg" -#: sickbeard/webserve.py:1968 +#: sickbeard/webserve.py:1967 msgid "Backlog started" msgstr "Jälitamine algas" -#: sickbeard/webserve.py:1973 +#: sickbeard/webserve.py:1972 msgid "Retrying Search was automatically started for the following season of <b>{show_name}</b>" msgstr "" -#: sickbeard/webserve.py:1987 +#: sickbeard/webserve.py:1986 msgid "Retry Search started" msgstr "" -#: sickbeard/webserve.py:1997 +#: sickbeard/webserve.py:1996 msgid "You must specify a show" msgstr "" -#: sickbeard/webserve.py:2007 sickbeard/webserve.py:2045 +#: sickbeard/webserve.py:2006 sickbeard/webserve.py:2044 msgid "Can't rename episodes when the show dir is missing." msgstr "" -#: sickbeard/webserve.py:2212 sickbeard/webserve.py:2233 +#: sickbeard/webserve.py:2211 sickbeard/webserve.py:2232 msgid "New subtitles downloaded: {new_subtitle_languages}" msgstr "" -#: sickbeard/webserve.py:2215 sickbeard/webserve.py:2236 +#: sickbeard/webserve.py:2214 sickbeard/webserve.py:2235 msgid "No subtitles downloaded" msgstr "Subtiitreid ei laetud" #: gui/slick/views/config_general.mako:80 gui/slick/views/layouts/main.mako:222 -#: sickbeard/webserve.py:2363 +#: sickbeard/webserve.py:2362 msgid "IRC" msgstr "IRC" -#: sickbeard/webserve.py:2376 +#: sickbeard/webserve.py:2375 msgid "Could not load news from the repo. [Click here for news.md])({news_url})" msgstr "" -#: sickbeard/webserve.py:2383 sickbeard/webserve.py:2401 +#: sickbeard/webserve.py:2382 sickbeard/webserve.py:2400 msgid "The was a problem connecting to github, please refresh and try again" msgstr "" -#: sickbeard/webserve.py:2398 +#: sickbeard/webserve.py:2397 msgid "Could not load changes from the repo. [Click here for CHANGES.md]({changes_url})" msgstr "" -#: gui/slick/views/layouts/main.mako:223 sickbeard/webserve.py:2403 +#: gui/slick/views/layouts/main.mako:223 sickbeard/webserve.py:2402 msgid "Changelog" msgstr "Muudatuste logi" -#: gui/slick/views/layouts/main.mako:190 sickbeard/webserve.py:2413 -#: sickbeard/webserve.py:3855 sickbeard/webserve.py:4341 +#: gui/slick/views/layouts/main.mako:190 sickbeard/webserve.py:2412 +#: sickbeard/webserve.py:3826 sickbeard/webserve.py:4312 msgid "Post Processing" msgstr "" -#: gui/slick/views/layouts/main.mako:128 sickbeard/webserve.py:2445 +#: gui/slick/views/layouts/main.mako:128 sickbeard/webserve.py:2444 msgid "Add Shows" msgstr "Lisa saateid" -#: sickbeard/webserve.py:2510 +#: sickbeard/webserve.py:2509 msgid "No folders selected." msgstr "Kaustu pole valitud." -#: sickbeard/webserve.py:2632 +#: sickbeard/webserve.py:2631 msgid "New Show" msgstr "Uus saade" -#: sickbeard/webserve.py:2647 +#: sickbeard/webserve.py:2646 msgid "Trending Shows" msgstr "" -#: sickbeard/webserve.py:2649 sickbeard/webserve.py:2772 +#: sickbeard/webserve.py:2648 sickbeard/webserve.py:2771 msgid "Popular Shows" msgstr "Populaarsed saated" -#: sickbeard/webserve.py:2651 sickbeard/webserve.py:2665 +#: sickbeard/webserve.py:2650 sickbeard/webserve.py:2664 msgid "Most Anticipated Shows" msgstr "" -#: sickbeard/webserve.py:2653 +#: sickbeard/webserve.py:2652 msgid "Most Collected Shows" msgstr "" -#: sickbeard/webserve.py:2655 +#: sickbeard/webserve.py:2654 msgid "Most Watched Shows" msgstr "" -#: sickbeard/webserve.py:2657 +#: sickbeard/webserve.py:2656 msgid "Most Played Shows" msgstr "" -#: sickbeard/webserve.py:2659 +#: sickbeard/webserve.py:2658 msgid "Recommended Shows" msgstr "" -#: gui/slick/views/addShows_trendingShows.mako:60 sickbeard/webserve.py:2661 +#: gui/slick/views/addShows_trendingShows.mako:60 sickbeard/webserve.py:2660 msgid "New Shows" msgstr "Uued saated" -#: gui/slick/views/addShows_trendingShows.mako:61 sickbeard/webserve.py:2663 +#: gui/slick/views/addShows_trendingShows.mako:61 sickbeard/webserve.py:2662 msgid "Season Premieres" msgstr "" -#: sickbeard/webserve.py:2792 sickbeard/webserve.py:2793 +#: sickbeard/webserve.py:2791 sickbeard/webserve.py:2792 msgid "Existing Show" msgstr "" -#: sickbeard/webserve.py:2871 +#: sickbeard/webserve.py:2870 msgid "No root directories setup, please go back and add one." msgstr "" -#: sickbeard/webserve.py:2883 sickbeard/webserve.py:3002 +#: sickbeard/webserve.py:2882 sickbeard/webserve.py:3001 msgid "Show added" msgstr "" -#: sickbeard/webserve.py:2883 +#: sickbeard/webserve.py:2882 msgid "Adding the specified show {show_name}" msgstr "" -#: sickbeard/webserve.py:2924 +#: sickbeard/webserve.py:2923 msgid "Missing params, no Indexer ID or folder: {show_to_add} and {root_dir}/{show_path}" msgstr "" -#: sickbeard/webserve.py:2933 +#: sickbeard/webserve.py:2932 msgid "Unknown error. Unable to add show due to problem with show selection." msgstr "" -#: sickbeard/webserve.py:2957 sickbeard/webserve.py:2967 +#: sickbeard/webserve.py:2956 sickbeard/webserve.py:2966 msgid "Unable to add show" msgstr "" -#: sickbeard/webserve.py:2957 +#: sickbeard/webserve.py:2956 msgid "Folder {show_dir} exists already" msgstr "" -#: sickbeard/webserve.py:2968 +#: sickbeard/webserve.py:2967 msgid "Unable to create the folder {show_dir}, can't add the show" msgstr "" -#: sickbeard/webserve.py:3002 +#: sickbeard/webserve.py:3001 msgid "Adding the specified show into {show_dir}" msgstr "" -#: sickbeard/webserve.py:3078 +#: sickbeard/webserve.py:3077 msgid "Shows Added" msgstr "" -#: sickbeard/webserve.py:3079 +#: sickbeard/webserve.py:3078 msgid "Automatically added {num_shows} from their existing metadata files" msgstr "" -#: gui/slick/views/layouts/main.mako:153 sickbeard/webserve.py:3096 +#: gui/slick/views/layouts/main.mako:153 sickbeard/webserve.py:3095 msgid "Mass Update" msgstr "Massuuendamine" -#: sickbeard/webserve.py:3134 sickbeard/webserve.py:3161 sickbeard/webserve.py:3237 -#: sickbeard/webserve.py:3238 +#: sickbeard/webserve.py:3133 sickbeard/webserve.py:3160 sickbeard/webserve.py:3236 +#: sickbeard/webserve.py:3237 msgid "Episode Overview" msgstr "" -#: sickbeard/webserve.py:3270 +#: sickbeard/webserve.py:3269 msgid "Missing Subtitles" msgstr "Puuduvad subtiitrid" -#: gui/slick/views/layouts/main.mako:154 sickbeard/webserve.py:3356 -#: sickbeard/webserve.py:3357 +#: gui/slick/views/layouts/main.mako:154 sickbeard/webserve.py:3355 +#: sickbeard/webserve.py:3356 msgid "Backlog Overview" msgstr "" -#: sickbeard/webserve.py:3481 +#: sickbeard/webserve.py:3480 msgid "Mass Edit" msgstr "" -#: sickbeard/webserve.py:3586 +#: sickbeard/webserve.py:3585 msgid "Unable to update show: {excption_format}" msgstr "" -#: sickbeard/webserve.py:3594 +#: sickbeard/webserve.py:3593 msgid "Unable to refresh show {show_name}: {excption_format}" msgstr "Ei saa värskendada saadet {show_name}: {excption_format}" -#: sickbeard/webserve.py:3605 +#: sickbeard/webserve.py:3604 msgid "Errors encountered" msgstr "Ilmnes tõrkeid" -#: gui/slick/views/config_general.mako:261 sickbeard/webserve.py:3611 +#: gui/slick/views/config_general.mako:261 sickbeard/webserve.py:3610 msgid "Updates" msgstr "Uuendused" -#: sickbeard/webserve.py:3616 +#: sickbeard/webserve.py:3615 msgid "Refreshes" msgstr "Värskenda" -#: sickbeard/webserve.py:3621 +#: sickbeard/webserve.py:3620 msgid "Renames" msgstr "Muuda nimi" #: gui/slick/views/displayShow.mako:260 gui/slick/views/displayShow.mako:435 #: gui/slick/views/editShow.mako:119 gui/slick/views/inc_addShowOptions.mako:20 -#: gui/slick/views/manage_massEdit.mako:262 sickbeard/webserve.py:3626 -#: sickbeard/webserve.py:5244 +#: gui/slick/views/manage_massEdit.mako:262 sickbeard/webserve.py:3625 +#: sickbeard/webserve.py:5215 msgid "Subtitles" msgstr "Subtiitrid" -#: sickbeard/webserve.py:3631 +#: sickbeard/webserve.py:3630 msgid "The following actions were queued" msgstr "Järgmised tegevused on ootel" -#: sickbeard/webserve.py:3651 -msgid "For best results please set the Download Station alias as" -msgstr "" - -#: sickbeard/webserve.py:3652 -msgid "You can check this setting in the Synology DSM" -msgstr "" - -#: sickbeard/webserve.py:3652 sickbeard/webserve.py:3654 -msgid "Control Panel" -msgstr "Juhtpaneel" - -#: sickbeard/webserve.py:3652 -msgid "Application Portal" -msgstr "Rakenduse portaal" - -#: sickbeard/webserve.py:3653 -msgid "Make sure you allow DSM to be embedded with iFrames too in" -msgstr "" - -#: sickbeard/webserve.py:3654 -msgid "DSM Settings" -msgstr "DSM seaded" - -#: sickbeard/webserve.py:3654 -msgid "Security" -msgstr "Turvalisus" - -#: gui/slick/views/layouts/main.mako:167 sickbeard/webserve.py:3662 -msgid "Manage Torrents" -msgstr "Halda torrenteid" - -#: gui/slick/views/layouts/main.mako:170 sickbeard/webserve.py:3683 +#: gui/slick/views/layouts/main.mako:170 sickbeard/webserve.py:3654 msgid "Failed Downloads" msgstr "Nurjunud allalaadimised" -#: gui/slick/views/layouts/main.mako:155 sickbeard/webserve.py:3701 +#: gui/slick/views/layouts/main.mako:155 sickbeard/webserve.py:3672 msgid "Manage Searches" msgstr "Halda otsinguid" -#: sickbeard/webserve.py:3709 +#: sickbeard/webserve.py:3680 msgid "Backlog search started" msgstr "" -#: sickbeard/webserve.py:3719 +#: sickbeard/webserve.py:3690 msgid "Daily search started" msgstr "Igapäevane otsing alustatud" -#: sickbeard/webserve.py:3728 +#: sickbeard/webserve.py:3699 msgid "Find propers search started" msgstr "" -#: sickbeard/webserve.py:3737 +#: sickbeard/webserve.py:3708 msgid "Subtitle search started" msgstr "Subtiitri otsing alustatud" -#: sickbeard/webserve.py:3801 +#: sickbeard/webserve.py:3772 msgid "Remove Selected" msgstr "" -#: sickbeard/webserve.py:3802 +#: sickbeard/webserve.py:3773 msgid "Clear History" msgstr "Tühjenda ajalugu" -#: sickbeard/webserve.py:3803 +#: sickbeard/webserve.py:3774 msgid "Trim History" msgstr "Trimmi ajalugu" -#: sickbeard/webserve.py:3823 +#: sickbeard/webserve.py:3794 msgid "Selected history entries removed" msgstr "" -#: sickbeard/webserve.py:3830 +#: sickbeard/webserve.py:3801 msgid "History cleared" msgstr "Ajalugu kustutatud" -#: sickbeard/webserve.py:3837 +#: sickbeard/webserve.py:3808 msgid "Removed history entries older than 30 days" msgstr "Eemalda ajaloo kanded vanemad kui üle 30 päeva" -#: gui/slick/views/layouts/main.mako:185 sickbeard/webserve.py:3850 +#: gui/slick/views/layouts/main.mako:185 sickbeard/webserve.py:3821 msgid "General" msgstr "Üldine" -#: sickbeard/webserve.py:3851 sickbeard/webserve.py:4143 +#: sickbeard/webserve.py:3822 sickbeard/webserve.py:4114 msgid "Backup/Restore" msgstr "Varundamine/taastamine" -#: gui/slick/views/layouts/main.mako:187 sickbeard/webserve.py:3852 -#: sickbeard/webserve.py:4206 +#: gui/slick/views/layouts/main.mako:187 sickbeard/webserve.py:3823 +#: sickbeard/webserve.py:4177 msgid "Search Settings" msgstr "Otsingusätted" -#: gui/slick/views/layouts/main.mako:188 sickbeard/webserve.py:3853 -#: sickbeard/webserve.py:4518 +#: gui/slick/views/layouts/main.mako:188 sickbeard/webserve.py:3824 +#: sickbeard/webserve.py:4489 msgid "Search Providers" msgstr "Otsinguteenuse pakkujad" -#: gui/slick/views/layouts/main.mako:189 sickbeard/webserve.py:3854 +#: gui/slick/views/layouts/main.mako:189 sickbeard/webserve.py:3825 msgid "Subtitles Settings" msgstr "Subtiitrite seaded" -#: gui/slick/views/layouts/main.mako:191 sickbeard/webserve.py:3856 -#: sickbeard/webserve.py:4964 +#: gui/slick/views/layouts/main.mako:191 sickbeard/webserve.py:3827 +#: sickbeard/webserve.py:4935 msgid "Notifications" msgstr "Teated" @@ -1240,142 +1237,142 @@ msgstr "Teated" #: gui/slick/views/home.mako:35 gui/slick/views/inc_addShowOptions.mako:79 #: gui/slick/views/inc_home_showList.mako:179 gui/slick/views/layouts/main.mako:192 #: gui/slick/views/manage.mako:44 gui/slick/views/manage_massEdit.mako:202 -#: sickbeard/webserve.py:3857 sickbeard/webserve.py:5309 +#: sickbeard/webserve.py:3828 sickbeard/webserve.py:5280 msgid "Anime" msgstr "Anime" -#: sickbeard/webserve.py:3895 sickbeard/webserve.py:3896 +#: sickbeard/webserve.py:3866 sickbeard/webserve.py:3867 msgid "SickRage Configuration" msgstr "SickRage konfiguratsioon" -#: sickbeard/webserve.py:3910 +#: sickbeard/webserve.py:3881 msgid "Config - Shares" msgstr "" -#: sickbeard/webserve.py:3910 +#: sickbeard/webserve.py:3881 msgid "Windows Shares Configuration" msgstr "" -#: sickbeard/webserve.py:3937 +#: sickbeard/webserve.py:3908 msgid "Saved Shares" msgstr "" -#: sickbeard/webserve.py:3937 +#: sickbeard/webserve.py:3908 msgid "Your Windows share settings have been saved" msgstr "" -#: sickbeard/webserve.py:3948 +#: sickbeard/webserve.py:3919 msgid "Config - General" msgstr "Seaded - üldine" -#: sickbeard/webserve.py:3948 +#: sickbeard/webserve.py:3919 msgid "General Configuration" msgstr "Üldised seadistused" -#: sickbeard/webserve.py:3988 +#: sickbeard/webserve.py:3959 msgid "Saved Defaults" msgstr "" -#: sickbeard/webserve.py:3988 +#: sickbeard/webserve.py:3959 msgid "Your \"add show\" defaults have been set to your current selections." msgstr "" -#: sickbeard/webserve.py:4095 +#: sickbeard/webserve.py:4066 msgid "Unable to create directory {directory}, log directory not changed." msgstr "Ei saa luua kataloogi {directory}, kataloog muutmata." -#: sickbeard/webserve.py:4103 +#: sickbeard/webserve.py:4074 msgid "Unable to create directory {directory}, https cert directory not changed." msgstr "" -#: sickbeard/webserve.py:4107 +#: sickbeard/webserve.py:4078 msgid "Unable to create directory {directory}, https key directory not changed." msgstr "" -#: sickbeard/webserve.py:4126 sickbeard/webserve.py:4324 sickbeard/webserve.py:4456 -#: sickbeard/webserve.py:5227 +#: sickbeard/webserve.py:4097 sickbeard/webserve.py:4295 sickbeard/webserve.py:4427 +#: sickbeard/webserve.py:5198 msgid "Error(s) Saving Configuration" msgstr "Viga konfiguratsiooni salvestamisel" -#: sickbeard/webserve.py:4129 sickbeard/webserve.py:4327 sickbeard/webserve.py:4458 -#: sickbeard/webserve.py:4950 sickbeard/webserve.py:5230 sickbeard/webserve.py:5294 -#: sickbeard/webserve.py:5323 +#: sickbeard/webserve.py:4100 sickbeard/webserve.py:4298 sickbeard/webserve.py:4429 +#: sickbeard/webserve.py:4921 sickbeard/webserve.py:5201 sickbeard/webserve.py:5265 +#: sickbeard/webserve.py:5294 msgid "Configuration Saved" msgstr "Konfiguratsioon salvestatud" -#: sickbeard/webserve.py:4142 +#: sickbeard/webserve.py:4113 msgid "Config - Backup/Restore" msgstr "Seadista - varundamine/taastamine" -#: sickbeard/webserve.py:4205 +#: sickbeard/webserve.py:4176 msgid "Config - Episode Search" msgstr "Seadista - Episoodi otsing" -#: sickbeard/webserve.py:4340 +#: sickbeard/webserve.py:4311 msgid "Config - Post Processing" msgstr "" -#: sickbeard/webserve.py:4380 +#: sickbeard/webserve.py:4351 msgid "Unpacking Not Supported, disabling unpack setting" msgstr "" -#: sickbeard/webserve.py:4431 +#: sickbeard/webserve.py:4402 msgid "You tried saving an invalid normal naming config, not saving your naming settings" msgstr "" -#: sickbeard/webserve.py:4439 +#: sickbeard/webserve.py:4410 msgid "You tried saving an invalid anime naming config, not saving your naming settings" msgstr "" -#: sickbeard/webserve.py:4517 +#: sickbeard/webserve.py:4488 msgid "Config - Providers" msgstr "Seadistused - pakkujad" -#: sickbeard/webserve.py:4547 +#: sickbeard/webserve.py:4518 msgid "No Provider Name specified" msgstr "" -#: sickbeard/webserve.py:4549 +#: sickbeard/webserve.py:4520 msgid "No Provider Url specified" msgstr "" -#: sickbeard/webserve.py:4551 +#: sickbeard/webserve.py:4522 msgid "No Provider Api key specified" msgstr "" -#: sickbeard/webserve.py:4963 +#: sickbeard/webserve.py:4934 msgid "Config - Notifications" msgstr "" -#: sickbeard/webserve.py:5243 +#: sickbeard/webserve.py:5214 msgid "Config - Subtitles" msgstr "" -#: sickbeard/webserve.py:5308 +#: sickbeard/webserve.py:5279 msgid "Config - Anime" msgstr "" -#: sickbeard/webserve.py:5336 +#: sickbeard/webserve.py:5307 msgid "Clear Errors" msgstr "" -#: sickbeard/webserve.py:5342 +#: sickbeard/webserve.py:5313 msgid "Clear Warnings" msgstr "" -#: sickbeard/webserve.py:5348 +#: sickbeard/webserve.py:5319 msgid "Submit Errors" msgstr "" -#: sickbeard/webserve.py:5363 +#: sickbeard/webserve.py:5334 msgid "Logs & Errors" msgstr "" -#: sickbeard/webserve.py:5388 +#: sickbeard/webserve.py:5359 msgid "Log File" msgstr "Logifail" -#: sickbeard/webserve.py:5388 +#: sickbeard/webserve.py:5359 msgid "Logs" msgstr "Logid" @@ -1383,30 +1380,166 @@ msgstr "Logid" msgid "This is a test notification from SickRage" msgstr "" -#: gui/slick/js/core.js:481 gui/slick/js/core.js:502 gui/slick/js/core.js:524 -#: gui/slick/js/core.js:548 gui/slick/js/core.js:573 gui/slick/js/core.js:596 -#: gui/slick/js/core.js:625 gui/slick/js/core.js:645 gui/slick/js/core.js:690 -#: gui/slick/js/core.js:769 gui/slick/js/core.js:829 gui/slick/js/core.js:849 -#: gui/slick/js/core.js:879 gui/slick/js/core.js:909 gui/slick/js/core.js:969 -#: gui/slick/js/core.js:1046 gui/slick/js/core.js:1066 gui/slick/js/core.js:1085 +#: gui/slick/js/browser.js:6 +msgid "Choose Directory" +msgstr "" + +#: gui/slick/js/core.js:443 +msgid "Select log file folder location" +msgstr "" + +#: gui/slick/js/core.js:445 +msgid "Select CSS file" +msgstr "" + +#: gui/slick/js/core.js:469 +msgid "Select backup folder to save to" +msgstr "" + +#: gui/slick/js/core.js:470 +msgid "Select backup files to restore" +msgstr "" + +#: gui/slick/js/core.js:479 gui/slick/js/core.js:500 gui/slick/js/core.js:522 +#: gui/slick/js/core.js:546 gui/slick/js/core.js:571 gui/slick/js/core.js:594 +#: gui/slick/js/core.js:623 gui/slick/js/core.js:643 gui/slick/js/core.js:688 +#: gui/slick/js/core.js:767 gui/slick/js/core.js:827 gui/slick/js/core.js:847 +#: gui/slick/js/core.js:877 gui/slick/js/core.js:907 gui/slick/js/core.js:967 +#: gui/slick/js/core.js:1044 gui/slick/js/core.js:1064 gui/slick/js/core.js:1083 msgid "Please fill out the necessary fields above." msgstr "" -#: gui/slick/js/core.js:1328 gui/slick/js/core.js:1378 gui/slick/js/core.js:1427 -#: gui/slick/js/core.js:1493 +#: gui/slick/js/core.js:680 +msgid "<b>Step 1:</b> Confirm Authorization" +msgstr "" + +#: gui/slick/js/core.js:977 +msgid "Check blacklist name; the value needs to be a trakt slug" +msgstr "" + +#: gui/slick/js/core.js:1022 +msgid "You must provide a recipient email address!" +msgstr "" + +#: gui/slick/js/core.js:1107 +msgid "You didn't supply a Pushbullet api key" +msgstr "" + +#: gui/slick/js/core.js:1133 gui/slick/js/core.js:1162 +msgid "Don't forget to save your new pushbullet settings." +msgstr "" + +#: gui/slick/js/core.js:1262 +msgid "Select TV Download Directory" +msgstr "" + +#: gui/slick/js/core.js:1263 +msgid "Select Unpack Directory" +msgstr "" + +#: gui/slick/js/core.js:1326 gui/slick/js/core.js:1376 gui/slick/js/core.js:1425 +#: gui/slick/js/core.js:1491 msgid "This pattern is invalid." msgstr "" -#: gui/slick/js/core.js:1336 gui/slick/js/core.js:1386 gui/slick/js/core.js:1435 -#: gui/slick/js/core.js:1501 +#: gui/slick/js/core.js:1334 gui/slick/js/core.js:1384 gui/slick/js/core.js:1433 +#: gui/slick/js/core.js:1499 msgid "This pattern would be invalid without the folders, using it will force \"Season Folders\" on for all shows." msgstr "" -#: gui/slick/js/core.js:1344 gui/slick/js/core.js:1394 gui/slick/js/core.js:1443 -#: gui/slick/js/core.js:1509 +#: gui/slick/js/core.js:1342 gui/slick/js/core.js:1392 gui/slick/js/core.js:1441 +#: gui/slick/js/core.js:1507 msgid "This pattern is valid." msgstr "" +#: gui/slick/js/core.js:1818 +msgid "Select .nzb black hole/watch location" +msgstr "" + +#: gui/slick/js/core.js:1819 +msgid "Select .torrent black hole/watch location" +msgstr "" + +#: gui/slick/js/core.js:1820 +msgid "Select .torrent download location" +msgstr "" + +#: gui/slick/js/core.js:1900 +msgid "Minimum seeding time is" +msgstr "" + +#: gui/slick/js/core.js:1902 +msgid "URL to your uTorrent client (e.g. http://localhost:8000)" +msgstr "" + +#: gui/slick/js/core.js:1905 +msgid "Stop seeding when inactive for" +msgstr "" + +#: gui/slick/js/core.js:1911 +msgid "URL to your Transmission client (e.g. http://localhost:9091)" +msgstr "" + +#: gui/slick/js/core.js:1921 +msgid "URL to your Deluge client (e.g. http://localhost:8112)" +msgstr "" + +#: gui/slick/js/core.js:1930 +msgid "IP or Hostname of your Deluge Daemon (e.g. scgi://localhost:58846)" +msgstr "" + +#: gui/slick/js/core.js:1937 +msgid "URL to your Synology DS client (e.g. http://localhost:5000)" +msgstr "" + +#: gui/slick/js/core.js:1941 +msgid "URL to your rTorrent client (e.g. scgi://localhost:5000 <br> or https://localhost/rutorrent/plugins/httprpc/action.php)" +msgstr "" + +#: gui/slick/js/core.js:1952 +msgid "URL to your qBittorrent client (e.g. http://localhost:8080)" +msgstr "" + +#: gui/slick/js/core.js:1962 +msgid "URL to your MLDonkey (e.g. http://localhost:4080)" +msgstr "" + +#: gui/slick/js/core.js:1974 +msgid "URL to your putio client (e.g. http://localhost:8080)" +msgstr "" + +#: gui/slick/js/core.js:1975 +msgid "<a herf=\"https://app.put.io/oauth/apps/new\" target=\"_blank\"> Create a new OAuth app for put.io</a>" +msgstr "" + +#: gui/slick/js/core.js:1977 +msgid "Put.io Parent Folder" +msgstr "" + +#: gui/slick/js/core.js:1978 +msgid "Put.io OAuth Token" +msgstr "" + +#: gui/slick/js/core.js:3383 gui/slick/views/displayShow.mako:410 +msgid "Show Episodes" +msgstr "" + +#: gui/slick/js/core.js:3388 gui/slick/views/displayShow.mako:408 +msgid "Hide Episodes" +msgstr "" + +#: gui/slick/js/core.js:3396 +msgid "Select Show Location" +msgstr "" + +#: gui/slick/js/core.js:3460 +msgid "Select Unprocessed Episode Folder" +msgstr "" + +#: gui/slick/js/core.js:3790 +msgid "DELETED" +msgstr "" + #: gui/slick/js/core.js:4082 msgid "Resume updating the log on this page." msgstr "" @@ -1415,6 +1548,26 @@ msgstr "" msgid "Pause updating the log on this page." msgstr "" +#: gui/slick/js/core.js:4323 +msgid "searching {searchingFor}..." +msgstr "" + +#: gui/slick/js/core.js:4334 +msgid "search timed out, try again or try another indexer" +msgstr "" + +#: gui/slick/js/core.js:4503 +msgid "loading folders..." +msgstr "" + +#: gui/slick/js/parsers.js:7 gui/slick/js/parsers.js:8 +#: gui/slick/js/plotTooltip.js:6 gui/slick/js/sceneExceptionsTooltip.js:6 +#: gui/slick/views/inc_home_showList.mako:209 +#: gui/slick/views/inc_home_showList.mako:215 +#: gui/slick/views/inc_home_showList.mako:231 +msgid "Loading..." +msgstr "" + #: gui/slick/views/404.mako:5 msgid "You have reached this page by accident, please check the url." msgstr "" @@ -5711,14 +5864,6 @@ msgstr "" msgid "Select Columns" msgstr "" -#: gui/slick/views/displayShow.mako:408 -msgid "Hide Episodes" -msgstr "" - -#: gui/slick/views/displayShow.mako:410 -msgid "Show Episodes" -msgstr "" - #: gui/slick/views/displayShow.mako:424 msgid "NFO" msgstr "NFO" @@ -6232,12 +6377,6 @@ msgstr "" msgid "loading" msgstr "" -#: gui/slick/views/inc_home_showList.mako:209 -#: gui/slick/views/inc_home_showList.mako:215 -#: gui/slick/views/inc_home_showList.mako:231 -msgid "Loading..." -msgstr "" - #: gui/slick/views/inc_qualityChooser.mako:31 msgid "<p><b><u>Preferred</u></b> qualities will replace those in <b><u>allowed</u></b>, even if they are lower.</p>" msgstr "" @@ -6775,6 +6914,10 @@ msgstr "" msgid "Update Emby" msgstr "" +#: gui/slick/views/layouts/main.mako:167 +msgid "Manage Torrents" +msgstr "Halda torrenteid" + #: gui/slick/views/layouts/main.mako:173 msgid "Missed Subtitle Management" msgstr "" diff --git a/locale/fa_IR/LC_MESSAGES/messages.json b/locale/fa_IR/LC_MESSAGES/messages.json index f3ffc6fa4f1f97dc232d4dffb5939bdf9559ae1c..286119c69189a6121811eeff08a3f499541faa40 100644 --- a/locale/fa_IR/LC_MESSAGES/messages.json +++ b/locale/fa_IR/LC_MESSAGES/messages.json @@ -1 +1 @@ -{"messages":{"domain":"messages","locale_data":{"messages":{"100":[null,""],"250":[null,""],"500":[null,""],"":{"domain":"messages","plural_forms":"nplurals=2; plural=(n != 1);","lang":"fa_IR"},"Drama":[null,""],"Mystery":[null,""],"Science-Fiction":[null,""],"Crime":[null,""],"Action":[null,""],"Comedy":[null,""],"Thriller":[null,""],"Animation":[null,""],"Family":[null,""],"Fantasy":[null,""],"Adventure":[null,""],"Horror":[null,""],"Film-Noir":[null,""],"Sci-Fi":[null,""],"Romance":[null,""],"Sport":[null,""],"War":[null,""],"Biography":[null,""],"History":[null,""],"Music":[null,""],"Western":[null,""],"News":[null,""],"Sitcom":[null,""],"Reality-TV":[null,""],"Documentary":[null,""],"Game-Show":[null,""],"Musical":[null,""],"Talk-Show":[null,""],"Started Download":[null,""],"Download Finished":[null,""],"Subtitle Download Finished":[null,""],"SickRage Updated":[null,""],"SickRage Updated To Commit#: ":[null,""],"SickRage new login":[null,""],"New login from IP: {0}. http://geomaplookup.net/?ip={0}":[null,""],"Repeat":[null,""],"Repeat (Separated)":[null,""],"Extend":[null,""],"Extend (Limited)":[null,""],"Extend (Limited, E-prefixed)":[null,""],"Downloaded":[null,""],"Snatched":[null,""],"Snatched (Proper)":[null,""],"Failed":[null,""],"Snatched (Best)":[null,""],"Archived":[null,""],"Unknown":[null,""],"Unaired":[null,""],"Skipped":[null,""],"Wanted":[null,""],"Ignored":[null,""],"Subtitled":[null,""],"<No Filter>":[null,""],"Daily Searcher":[null,""],"Backlog":[null,""],"Show Updater":[null,""],"Check Version":[null,""],"Show Queue":[null,""],"Search Queue (All)":[null,""],"Search Queue (Daily Searcher)":[null,""],"Search Queue (Backlog)":[null,""],"Search Queue (Manual)":[null,""],"Search Queue (Retry/Failed)":[null,""],"Search Queue (RSS)":[null,""],"Find Propers":[null,""],"Postprocessor":[null,""],"Find Subtitles":[null,""],"Trakt Checker":[null,""],"Event":[null,""],"Error":[null,""],"Tornado":[null,""],"Thread":[null,""],"Main":[null,""],"Loading":[null,""],"New update found for SickRage, starting auto-updater":[null,""],"Update was successful":[null,""],"Update failed!":[null,""],"Backup":[null,""],"Config backup in progress...":[null,""],"Config backup successful, updating...":[null,""],"Config backup failed, aborting update":[null,""],"No update needed":[null,""],"Mako Error":[null,""],"Oops":[null,""],"Wrong API key used":[null,""],"Login":[null,""],"API Key not generated":[null,""],"API Builder":[null,""],"Schedule":[null,""],"Test 1":[null,""],"This is test number 1":[null,""],"Test 2":[null,""],"This is test number 2":[null,""],"You're using the {branch} branch. Please use 'master' unless specifically asked":[null,""],"Invalid show parameters":[null,""],"Invalid parameters":[null,""],"Episode couldn't be retrieved":[null,""],"Home":[null,""],"Show List":[null,""],"Error: Unsupported Request. Send jsonp request with 'callback' variable in the query string.":[null,""],"Success. Connected and authenticated":[null,""],"Authentication failed. SABnzbd expects":[null,""],"as authentication method":[null,""],"Unable to connect to host":[null,""],"SMS sent successfully":[null,""],"Problem sending SMS: {message}":[null,""],"Telegram notification succeeded. Check your Telegram clients to make sure it worked":[null,""],"Error sending Telegram notification: {message}":[null,""],"join notification succeeded. Check your join clients to make sure it worked":[null,""],"Error sending join notification: {message}":[null,""]," with password":[null,""],"Registered and Tested growl successfully {growl_host}":[null,""],"Registration and Testing of growl failed {growl_host}":[null,""],"Test prowl notice sent successfully":[null,""],"Test prowl notice failed":[null,""],"Boxcar2 notification succeeded. Check your Boxcar2 clients to make sure it worked":[null,""],"Error sending Boxcar2 notification":[null,""],"Pushover notification succeeded. Check your Pushover clients to make sure it worked":[null,""],"Error sending Pushover notification":[null,""],"Key verification successful":[null,""],"Unable to verify key":[null,""],"Tweet successful, check your twitter to make sure it worked":[null,""],"Error sending tweet":[null,""],"Please enter a valid account sid":[null,""],"Please enter a valid auth token":[null,""],"Please enter a valid phone sid":[null,""],"Please format the phone number as \"+1-###-###-####\"":[null,""],"Authorization successful and number ownership verified":[null,""],"Error sending sms":[null,""],"Slack message successful":[null,""],"Slack message failed":[null,""],"Discord message successful":[null,""],"Discord message failed":[null,""],"Test KODI notice sent successfully to {kodi_host}":[null,""],"Test KODI notice failed to {kodi_host}":[null,""],"Successful test notice sent to Plex Home Theater ... {plex_clients}":[null,""],"Test failed for Plex Home Theater ... {plex_clients}":[null,""],"Tested Plex Home Theater(s)":[null,""],"Successful test of Plex Media Server(s) ... {plex_servers}":[null,""],"Test failed, No Plex Media Server host specified":[null,""],"Test failed for Plex Media Server(s) ... {plex_servers}":[null,""],"Tested Plex Media Server host(s)":[null,""],"Tried sending desktop notification via libnotify":[null,""],"Test notice sent successfully to {emby_host}":[null,""],"Test notice failed to {emby_host}":[null,""],"Successfully started the scan update":[null,""],"Test failed to start the scan update":[null,""],"Test notice sent successfully to {nmj2_host}":[null,""],"Test notice failed to {nmj2_host}":[null,""],"Trakt Authorized":[null,""],"Trakt Not Authorized!":[null,""],"Test email sent successfully! Check inbox.":[null,""],"ERROR: {last_error}":[null,""],"Test NMA notice sent successfully":[null,""],"Test NMA notice failed":[null,""],"Pushalot notification succeeded. Check your Pushalot clients to make sure it worked":[null,""],"Error sending Pushalot notification":[null,""],"Pushbullet notification succeeded. Check your device to make sure it worked":[null,""],"Error sending Pushbullet notification":[null,""],"Status":[null,""],"Restarting SickRage":[null,""],"Update Failed":[null,""],"Update wasn't successful, not restarting. Check your log for more information.":[null,""],"Checking out branch":[null,""],"Already on branch":[null,""],"Invalid show ID: {show}":[null,""],"Show not in show list":[null,""],"Edit":[null,""],"This show is in the process of being downloaded - the info below is incomplete.":[null,""],"The information on this page is in the process of being updated.":[null,""],"The episodes below are currently being refreshed from disk":[null,""],"Currently downloading subtitles for this show":[null,""],"This show is queued to be refreshed.":[null,""],"This show is queued and awaiting an update.":[null,""],"This show is queued and awaiting subtitles download.":[null,""],"Resume":[null,""],"Pause":[null,""],"Remove":[null,""],"Re-scan files":[null,""],"Force Full Update":[null,""],"Update show in KODI":[null,""],"Update show in Emby":[null,""],"Hide specials":[null,""],"Show specials":[null,""],"Preview Rename":[null,""],"Download Subtitles":[null,""],"No scene exceptions":[null,""],"Invalid show ID":[null,""],"Unable to find the specified show":[null,""],"Unable to retreive Fansub Groups from AniDB.":[null,""],"Edit Show":[null,""],"Unable to refresh this show: {error}":[null,""],"New location <tt>{location}</tt> does not exist":[null,""],"Unable to update show: {error}":[null,""],"Unable to force an update on scene exceptions of the show.":[null,""],"Unable to force an update on scene numbering of the show.":[null,""],"{num_errors:d} error{plural} while saving changes:":[null,""],"{show_name} has been {paused_resumed}":[null,""],"resumed":[null,""],"paused":[null,""],"{show_name} has been {deleted_trashed} {was_deleted}":[null,""],"deleted":[null,""],"trashed":[null,""],"(media untouched)":[null,""],"(with all related media)":[null,""],"Unable to refresh this show.":[null,""],"Unable to update this show.":[null,""],"Library update command sent to KODI host(s)): {kodi_hosts}":[null,""],"Unable to contact one or more KODI host(s)): {kodi_hosts}":[null,""],"Library update command sent to Plex Media Server host: {plex_server}":[null,""],"Unable to contact Plex Media Server host: {plex_server}":[null,""],"Library update command sent to Emby host: {emby_host}":[null,""],"Unable to contact Emby host: {emby_host}":[null,""],"You must specify a show and at least one episode":[null,""],"Invalid status":[null,""],"Backlog was automatically started for the following seasons of <b>{show_name}</b>":[null,""],"Season":[null,""],"Backlog started":[null,""],"Retrying Search was automatically started for the following season of <b>{show_name}</b>":[null,""],"Retry Search started":[null,""],"You must specify a show":[null,""],"Can't rename episodes when the show dir is missing.":[null,""],"New subtitles downloaded: {new_subtitle_languages}":[null,""],"No subtitles downloaded":[null,""],"IRC":[null,""],"Could not load news from the repo. [Click here for news.md])({news_url})":[null,""],"The was a problem connecting to github, please refresh and try again":[null,""],"Could not load changes from the repo. [Click here for CHANGES.md]({changes_url})":[null,""],"Changelog":[null,""],"Post Processing":[null,""],"Add Shows":[null,""],"No folders selected.":[null,""],"New Show":[null,""],"Trending Shows":[null,""],"Popular Shows":[null,""],"Most Anticipated Shows":[null,""],"Most Collected Shows":[null,""],"Most Watched Shows":[null,""],"Most Played Shows":[null,""],"Recommended Shows":[null,""],"New Shows":[null,""],"Season Premieres":[null,""],"Existing Show":[null,""],"No root directories setup, please go back and add one.":[null,""],"Show added":[null,""],"Adding the specified show {show_name}":[null,""],"Missing params, no Indexer ID or folder: {show_to_add} and {root_dir}/{show_path}":[null,""],"Unknown error. Unable to add show due to problem with show selection.":[null,""],"Unable to add show":[null,""],"Folder {show_dir} exists already":[null,""],"Unable to create the folder {show_dir}, can't add the show":[null,""],"Adding the specified show into {show_dir}":[null,""],"Shows Added":[null,""],"Automatically added {num_shows} from their existing metadata files":[null,""],"Mass Update":[null,""],"Episode Overview":[null,""],"Missing Subtitles":[null,""],"Backlog Overview":[null,""],"Mass Edit":[null,""],"Unable to update show: {excption_format}":[null,""],"Unable to refresh show {show_name}: {excption_format}":[null,""],"Errors encountered":[null,""],"Updates":[null,""],"Refreshes":[null,""],"Renames":[null,""],"Subtitles":[null,""],"The following actions were queued":[null,""],"For best results please set the Download Station alias as":[null,""],"You can check this setting in the Synology DSM":[null,""],"Control Panel":[null,""],"Application Portal":[null,""],"Make sure you allow DSM to be embedded with iFrames too in":[null,""],"DSM Settings":[null,""],"Security":[null,""],"Manage Torrents":[null,""],"Failed Downloads":[null,""],"Manage Searches":[null,""],"Backlog search started":[null,""],"Daily search started":[null,""],"Find propers search started":[null,""],"Subtitle search started":[null,""],"Remove Selected":[null,""],"Clear History":[null,""],"Trim History":[null,""],"Selected history entries removed":[null,""],"History cleared":[null,""],"Removed history entries older than 30 days":[null,""],"General":[null,""],"Backup/Restore":[null,""],"Search Settings":[null,""],"Search Providers":[null,""],"Subtitles Settings":[null,""],"Notifications":[null,""],"Anime":[null,""],"SickRage Configuration":[null,""],"Config - Shares":[null,""],"Windows Shares Configuration":[null,""],"Saved Shares":[null,""],"Your Windows share settings have been saved":[null,""],"Config - General":[null,""],"General Configuration":[null,""],"Saved Defaults":[null,""],"Your \"add show\" defaults have been set to your current selections.":[null,""],"Unable to create directory {directory}, log directory not changed.":[null,""],"Unable to create directory {directory}, https cert directory not changed.":[null,""],"Unable to create directory {directory}, https key directory not changed.":[null,""],"Error(s) Saving Configuration":[null,""],"Configuration Saved":[null,""],"Config - Backup/Restore":[null,""],"Config - Episode Search":[null,""],"Config - Post Processing":[null,""],"Unpacking Not Supported, disabling unpack setting":[null,""],"You tried saving an invalid normal naming config, not saving your naming settings":[null,""],"You tried saving an invalid anime naming config, not saving your naming settings":[null,""],"Config - Providers":[null,""],"No Provider Name specified":[null,""],"No Provider Url specified":[null,""],"No Provider Api key specified":[null,""],"Config - Notifications":[null,""],"Config - Subtitles":[null,""],"Config - Anime":[null,""],"Clear Errors":[null,""],"Clear Warnings":[null,""],"Submit Errors":[null,""],"Logs & Errors":[null,""],"Log File":[null,""],"Logs":[null,""],"This is a test notification from SickRage":[null,""],"Please fill out the necessary fields above.":[null,""],"This pattern is invalid.":[null,""],"This pattern would be invalid without the folders, using it will force \"Season Folders\" on for all shows.":[null,""],"This pattern is valid.":[null,""],"Resume updating the log on this page.":[null,""],"Pause updating the log on this page.":[null,""],"You have reached this page by accident, please check the url.":[null,""],"A mako error has occured.<br>\n If this happened during an update a simple page refresh may be the solution.<br>\n Mako errors that happen during updates may be a one time error if there were significant ui changes.":[null,""],"Show/Hide Error":[null,""],"Add New Show":[null,""],"For shows that you haven't downloaded yet, this option finds a show on theTVDB.com, creates a directory for it's episodes, and adds it to SickRage.":[null,""],"Add From Trakt Lists":[null,""],"For shows that you haven't downloaded yet, this option lets you choose from a show from one of the Trakt lists to add to SickRage.":[null,""],"Add From IMDB's Popular Shows":[null,""],"View IMDB's list of the most popular shows. This feature uses IMDB's MOVIEMeter algorithm to identify popular TV Series.":[null,""],"Add Existing Shows":[null,""],"Use this option to add shows that already have a folder created on your hard drive. SickRage will scan your existing metadata/episodes and add the show accordingly.":[null,""],"Add Existing Show":[null,""],"Manage Directories":[null,""],"Customize Options":[null,""],"SickRage can add existing shows, using the current options, by using locally stored NFO/XML metadata to eliminate user interaction. If you would rather have SickRage prompt you to customize each show, then use the checkbox below.":[null,""],"Prompt me to set settings for each show":[null,""],"Displaying folders within these directories which aren't already added to SickRage":[null,""],"Submit":[null,""],"Find a show on theTVDB":[null,""],"Show retrieved from existing metadata":[null,""],"All Indexers":[null,""],"Search":[null,""],"This will only affect the language of the retrieved metadata file contents and episode filenames.":[null,""],"This <b>DOES NOT</b> allow SickRage to download non-english TV episodes!":[null,""],"Pick the parent folder":[null,""],"Pre-chosen Destination Folder":[null,""],"Customize options":[null,""],"Add Show":[null,""],"Skip Show":[null,""],"Sort By":[null,""],"Name":[null,""],"Original":[null,""],"Votes":[null,""],"Rating":[null,""],"Rating > Votes":[null,""],"Sort Order":[null,""],"Asc":[null,""],"Desc":[null,""],"Fetching of IMDB Data failed. Are you online?":[null,""],"Exception":[null,""],"Select Trakt List":[null,""],"Most Anticipated":[null,""],"Trending":[null,""],"Popular":[null,""],"Most Watched":[null,""],"Most Played":[null,""],"Most Collected":[null,""],"Recommended":[null,""],"Toggle navigation":[null,""],"Profile":[null,""],"JSONP":[null,""],"Back to SickRage":[null,""],"Parameters":[null,""],"Required":[null,""],"Description":[null,""],"Type":[null,""],"Default value":[null,""],"Allowed values":[null,""],"Playground":[null,""],"Clear":[null,""],"Yes":[null,""],"No":[null,""],"season":[null,""],"episode":[null,""],"Python Version":[null,""],"SSL Version":[null,""],"OS":[null,""],"Locale":[null,""],"User":[null,""],"Program Folder":[null,""],"Config File":[null,""],"Database File":[null,""],"Cache Folder":[null,""],"Log Folder":[null,""],"Arguments":[null,""],"Web Root":[null,""],"Website":[null,""],"Wiki":[null,""],"Source":[null,""],"IRC Chat":[null,""],"AnimeDB Settings":[null,""],"Look & Feel":[null,""],"AniDB is non-profit database of anime information that is freely open to the public":[null,""],"Enable":[null,""],"should SickRage use data from AniDB?":[null,""],"AniDB Username":[null,""],"username of your AniDB account":[null,""],"AniDB Password":[null,""],"password of your AniDB account":[null,""],"AniDB MyList":[null,""],"do you want to add the PostProcessed episodes to the MyList?":[null,""],"Look and Feel":[null,""],"How should the anime functions show and behave.":[null,""],"Split show lists":[null,""],"separate anime and normal shows in groups":[null,""],"Split in tabs":[null,""],"use tabs for when splitting show lists":[null,""],"Restore":[null,""],"Backup your main database file and config.":[null,""],"Select the folder you wish to save your backup file to":[null,""],"Restore your main database file and config.":[null,""],"Select the backup file you wish to restore":[null,""],"Misc":[null,""],"Interface":[null,""],"Advanced Settings":[null,""],"Startup options. Indexer options. Log and show file locations.":[null,""],"Some options may require a manual restart to take effect.":[null,""],"Default Indexer Language":[null,""],"for adding shows and metadata providers":[null,""],"Launch browser":[null,""],"open the SickRage home page on startup":[null,""],"Initial page":[null,""],"Shows":[null,""],"when launching SickRage interface":[null,""],"Choose hour to update shows":[null,""],"with information such as next air dates, show ended, etc. Use 15 for 3pm, 4 for 4am etc.":[null,""],"note":[null,""],"minutes are randomized each time SickRage is started":[null,""],"Send to trash for actions":[null,""],"when using show \"Remove\" and delete files":[null,""],"on scheduled deletes of the oldest log files":[null,""],"selected actions use trash (recycle bin) instead of the default permanent delete":[null,""],"Log file folder location":[null,""],"Number of Log files saved":[null,""],"number of log files saved when rotating logs (default: 5) (REQUIRES RESTART)":[null,""],"Size of Log files saved":[null,""],"maximum size in MB of the log file (default: 1MB) (REQUIRES RESTART)":[null,""],"Use initial indexer set to":[null,""],"as the default selection when adding new shows":[null,""],"Timeout show indexer at":[null,""],"seconds of inactivity when finding new shows (default:20)":[null,""],"Show root directories":[null,""],"where the files of shows are located":[null,""],"Save Changes":[null,""],"Options for software updates.":[null,""],"Check software updates":[null,""],"and display notifications when updates are available. Checks are run on startup and at the frequency set below*":[null,""],"Automatically update":[null,""],"fetch and install software updates. Updates are run on startup and in the background at the frequency set below*":[null,""],"Check the server every*":[null,""],"hours for software updates (default:1)":[null,""],"Notify on software update":[null,""],"send a message to all enabled notifiers when SickRage has been updated":[null,""],"User Interface":[null,""],"Options for visual appearance.":[null,""],"Interface Language":[null,""],"System Language":[null,""],"for appearance to take effect, save then refresh your browser":[null,""],"Display theme":[null,""],"Dark":[null,""],"Light":[null,""],"Use a background image":[null,""],"use a custom image as background for SickRage":[null,""],"Background Path":[null,""],"Path to the background image":[null,""],"Show fanart in the background":[null,""],"on the show summary page":[null,""],"Fanart transparency":[null,""],"transparency of the fanart in the background":[null,""],"Use a custom stylesheet file":[null,""],"use a custom .css file to style SickRage (for advanced users)":[null,""],"Stylesheet File Path":[null,""],"Path to the stylesheet (.css) file":[null,""],"Show all seasons":[null,""],"Sort with \"The\", \"A\", \"An\"":[null,""],"include articles (\"The\", \"A\", \"An\") when sorting show lists":[null,""],"Missed episodes range":[null,""],"set the range in days of the missed episodes in the Schedule page":[null,""],"Display fuzzy dates":[null,""],"move absolute dates into tooltips and display e.g. \"Last Thu\", \"On Tue\"":[null,""],"Trim zero padding":[null,""],"remove the leading number \"0\" shown on hour of day, and date of month":[null,""],"Date style":[null,""],"Use System Default":[null,""],"Time style":[null,""],"seconds are only shown on the History page":[null,""],"Timezone":[null,""],"Local":[null,""],"Network":[null,""],"display dates and times in either your timezone or the shows network timezone":[null,""],"use local timezone to start searching for episodes minutes after show ends (depends on your dailysearch frequency)":[null,""],"Download url":[null,""],"URL where the shows can be downloaded.":[null,""],"Web Interface":[null,""],"it is recommended that you enable a username and password to secure SickRage from being tampered with remotely.":[null,""],"these options require a manual restart to take effect.":[null,""],"API key":[null,""],"used to give 3rd party programs limited access to SickRage":[null,""],"you can try all the features of the API":[null,""],"here":[null,""],"HTTP logs":[null,""],"enable logs from the internal Tornado web server":[null,""],"HTTP username":[null,""],"set blank for no login":[null,""],"HTTP password":[null,""],"blank = no authentication":[null,""],"HTTP port":[null,""],"web port to browse and access SickRage (default:8081)":[null,""],"Notify on login":[null,""],"enable to be notified when a new login happens in webserver":[null,""],"Listen on IPv6":[null,""],"attempt binding to any available IPv6 address":[null,""],"Enable HTTPS":[null,""],"enable access to the web interface using a HTTPS address":[null,""],"HTTPS certificate":[null,""],"file name or path to HTTPS certificate":[null,""],"HTTPS key":[null,""],"file name or path to HTTPS key":[null,""],"Reverse proxy headers":[null,""],"accept the following reverse proxy headers (advanced)...":[null,""],"(X-Forwarded-For, X-Forwarded-Host, and X-Forwarded-Proto)":[null,""],"CPU throttling":[null,""],"Normal (default). High is lower and Low is higher CPU use":[null,""],"Anonymous redirect":[null,""],"backlink protection via anonymizer service, must end in \"?\"":[null,""],"Enable debug":[null,""],"enable debug logs":[null,""],"Verify SSL Certs":[null,""],"verify SSL Certificates (Disable this for broken SSL installs (Like QNAP))":[null,""],"No Restart":[null,""],"only shutdown when restarting SR":[null,""],"only select this when you have external software restarting SR automatically when it stops (like FireDaemon)":[null,""],"Encrypt passwords":[null,""],"in the <code>config.ini</code> file":[null,""],"warning":[null,""],"passwords must only contain":[null,""],"ASCII characters":[null,""],"Unprotected calendar":[null,""],"allow subscribing to the calendar without user and password":[null,""],"some services like Google Calendar only work this way":[null,""],"Google Calendar Icons":[null,""],"show an icon next to exported calendar events in Google Calendar":[null,""],"Proxy host":[null,""],"blank to disable or proxy to use when connecting to providers":[null,""],"also use global proxy setting for indexers (tvdb, xem, anidb, etc.)":[null,""],"Skip Remove Detection":[null,""],"skip detection of removed files":[null,""],"if disabled the episode will be set to the default deleted status":[null,""],"Default deleted episode status":[null,""],"define the status to be set for media file that has been deleted.":[null,""],"Archived option will keep previous downloaded quality":[null,""],"example: Downloaded (1080p WEB-DL) ==> Archived (1080p WEB-DL)":[null,""],"Options for github related features.":[null,""],"Branch version":[null,""],"error: No branches found.":[null,""],"select branch to use (restart required)":[null,""],"Authorization Type":[null,""],"Username and password":[null,""],"Personal access token":[null,""],"You must use a personal access token if you're using \"two-factor authentication\" on GitHub.":[null,""],"GitHub username":[null,""],"*** (REQUIRED FOR SUBMITTING ISSUES) ***":[null,""],"GitHub password":[null,""],"GitHub personal access token":[null,""],"Generate Token":[null,""],"Manage Tokens":[null,""],"GitHub remote for branch":[null,""],"access repo configured remotes (save then refresh browser)":[null,""],"default":[null,""],"origin":[null,""],"Git executable path":[null,""],"only needed if OS is unable to locate git from env":[null,""],"Git reset":[null,""],"removes untracked files and performs a hard reset on git branch automatically to help resolve update issues":[null,""],"Home Theater / NAS":[null,""],"Devices":[null,""],"Social":[null,""],"A free and open source cross-platform media center and home entertainment system software with a 10-foot user interface designed for the living-room TV.":[null,""],"send KODI commands?":[null,""],"Always on":[null,""],"log errors when unreachable?":[null,""],"Notify on snatch":[null,""],"send a notification when a download starts?":[null,""],"Notify on download":[null,""],"send a notification when a download finishes?":[null,""],"Notify on subtitle download":[null,""],"send a notification when subtitles are downloaded?":[null,""],"Update library":[null,""],"update KODI library when a download finishes?":[null,""],"Full library update":[null,""],"perform a full library update if update per-show fails?":[null,""],"Only update first host":[null,""],"only send library updates to the first active host?":[null,""],"KODI IP:Port":[null,""],"host running KODI (eg. 192.168.1.100:8080)":[null,""],"(multiple host strings must be separated by commas)":[null,""],"Username":[null,""],"username for your KODI server (blank for none)":[null,""],"Password":[null,""],"password for your KODI server (blank for none)":[null,""],"Click below to test.":[null,""],"Experience your media on a visually stunning, easy to use interface on your Mac connected to your TV. Your media library has never looked this good!":[null,""],"For sending notifications to Plex Home Theater (PHT) clients, use the KODI notifier with port <b>3005</b>.":[null,""],"send Plex Media Server library updates?":[null,""],"Plex Media Server Auth Token":[null,""],"auth token used by Plex":[null,""],"Update Library":[null,""],"update Plex Media Server library when a download finishes":[null,""],"Plex Media Server IP:Port":[null,""],"one or more hosts running Plex Media Server<br/>(eg. 192.168.1.1:32400, 192.168.1.2:32400)":[null,""],"HTTPS":[null,""],"use https for plex media server requests?":[null,""],"Click below to test Plex Media Server(s)":[null,""],"Test Plex Media Server":[null,""],"Plex Home Theater":[null,""],"send Plex Home Theater notifications?":[null,""],"Plex Home Theater IP:Port":[null,""],"one or more hosts running Plex Home Theater<br>(eg. 192.168.1.100:3000, 192.168.1.101:3000)":[null,""],"Click below to test Plex Home Theater(s)":[null,""],"Test Plex Home Theater":[null,""],"some Plex Home Theaters <b class=\"boldest\">do not</b> support notifications e.g. Plexapp for Samsung TVs":[null,""],"Emby":[null,""],"A home media server built using other popular open source technologies.":[null,""],"send update commands to Emby?":[null,""],"Emby IP:Port":[null,""],"host running Emby (eg. 192.168.1.100:8096)":[null,""],"Emby API Key":[null,""],"Networked Media Jukebox":[null,""],"The Networked Media Jukebox, or NMJ, is the official media jukebox interface made available for the Popcorn Hour 200-series.":[null,""],"send update commands to NMJ?":[null,""],"Popcorn IP address":[null,""],"IP address of Popcorn 200-series (eg. 192.168.1.100)":[null,""],"Get settings":[null,""],"Get Settings":[null,""],"the Popcorn Hour device must be powered on and NMJ running.":[null,""],"NMJ database":[null,""],"automatically filled via the 'Get Settings' button.":[null,""],"NMJ mount url":[null,""],"Networked Media Jukebox v2":[null,""],"The Networked Media Jukebox, or NMJv2, is the official media jukebox interface made available for the Popcorn Hour 300 & 400-series.":[null,""],"send update commands to NMJv2?":[null,""],"IP address of Popcorn 300/400-series (eg. 192.168.1.100)":[null,""],"Database location":[null,""],"Database instance":[null,""],"adjust this value if the wrong database is selected.":[null,""],"Find database":[null,""],"Find Database":[null,""],"the Popcorn Hour device must be powered on.":[null,""],"NMJv2 database":[null,""],"automatically filled via the 'Find Database' buttons.":[null,""],"Synology":[null,""],"The Synology DiskStation NAS.":[null,""],"Synology Indexer is the daemon running on the Synology NAS to build its media database.":[null,""],"send Synology notifications?":[null,""],"requires SickRage to be running on your Synology NAS.":[null,""],"Synology Indexer":[null,""],"Synology Notifier is the notification system of Synology DSM":[null,""],"send notifications to the Synology Notifier?":[null,""],"pyTivo":[null,""],"pyTivo is both an HMO and GoBack server. This notifier will load the completed downloads to your Tivo.":[null,""],"send notifications to pyTivo?":[null,""],"requires the downloaded files to be accessible by pyTivo.":[null,""],"pyTivo IP:Port":[null,""],"host running pyTivo (eg. 192.168.1.1:9032)":[null,""],"pyTivo share name":[null,""],"value used in pyTivo Web Configuration to name the share.":[null,""],"Tivo name":[null,""],"(Messages & Settings > Account & System Information > System Information > DVR name)":[null,""],"Growl":[null,""],"A cross-platform unobtrusive global notification system.":[null,""],"send Growl notifications?":[null,""],"Growl IP:Port":[null,""],"host running Growl (eg. 192.168.1.100:23053)":[null,""],"may leave blank if SickRage is on the same host.":[null,""],"otherwise Growl <b>requires</b> a password to be used.":[null,""],"Click below to register and test Growl, this is required for Growl notifications to work.":[null,""],"Register Growl":[null,""],"Prowl":[null,""],"A Growl client for iOS.":[null,""],"send Prowl notifications?":[null,""],"Prowl Message Title":[null,""],"Global Prowl API key(s)":[null,""],"Prowl API(s) listed here, separated by commas if applicable, will<br> receive notifications for <b>all</b> shows. Your Prowl API key is available at:":[null,""],"(this field may be blank except when testing.)":[null,""],"Show notification list":[null,""],"-- Select a Show --":[null,""],"Configure per-show notifications here by entering Prowl API key(s), separated by commas, '\n 'after selecting a show in the drop-down box. Be sure to activate the 'Save for this show' '\n 'button below after each entry.":[null,""],"Save for this show":[null,""],"Prowl priority":[null,""],"Very Low":[null,""],"Moderate":[null,""],"Normal":[null,""],"High":[null,""],"Emergency":[null,""],"priority of Prowl messages from SickRage.":[null,""],"Libnotify":[null,""],"The standard desktop notification API for Linux/*nix systems. This notifier will only function if the pynotify module is installed (Ubuntu/Debian package <a href=\"apt:python-notify\">python-notify</a>).":[null,""],"send Libnotify notifications?":[null,""],"Pushover":[null,""],"Pushover makes it easy to send real-time notifications to your Android and iOS devices.":[null,""],"send Pushover notifications?":[null,""],"Pushover key":[null,""],"user key of your Pushover account":[null,""],"Pushover API key":[null,""],"click here":[null,""]," to create a Pushover API key":[null,""],"Pushover devices":[null,""],"comma separated list of pushover devices you want to send notifications to":[null,""],"Pushover notification sound":[null,""],"Bike":[null,""],"Bugle":[null,""],"Cash Register":[null,""],"Classical":[null,""],"Cosmic":[null,""],"Falling":[null,""],"Gamelan":[null,""],"Incoming":[null,""],"Intermission":[null,""],"Magic":[null,""],"Mechanical":[null,""],"Piano Bar":[null,""],"Siren":[null,""],"Space Alarm":[null,""],"Tug Boat":[null,""],"Alien Alarm (long)":[null,""],"Climb (long)":[null,""],"Persistent (long)":[null,""],"Pushover Echo (long)":[null,""],"Up Down (long)":[null,""],"None (silent)":[null,""],"Device specific":[null,""],"choose notification sound to use":[null,""],"Pushover priority":[null,""],"Choose priority to use":[null,""],"Boxcar 2":[null,""],"Read your messages where and when you want them!":[null,""],"send Boxcar notifications?":[null,""],"Boxcar2 access token":[null,""],"access token for your Boxcar account.":[null,""],"NMA":[null,""],"Notify My Android":[null,""],"Notify My Android is a Prowl-like Android App and API that offers an easy way to send notifications from your application directly to your Android device.":[null,""],"send NMA notifications?":[null,""],"NMA API key":[null,""],"(multiple keys must be separated by commas, up to a maximum of 5)":[null,""],"NMA priority":[null,""],"priority of NMA messages from SickRage.":[null,""],"Pushalot":[null,""],"Pushalot is a platform for receiving custom push notifications to connected devices running Windows Phone or Windows 8.":[null,""],"send Pushalot notifications ?":[null,""],"Pushalot authorization token":[null,""],"authorization token of your Pushalot account.":[null,""],"Pushbullet":[null,""],"Pushbullet is a platform for receiving custom push notifications to connected devices running Android/iOS and desktop browsers such as Chrome, Firefox or Opera.":[null,""],"send Pushbullet notifications?":[null,""],"Pushbullet API key":[null,""],"API key of your Pushbullet account":[null,""],"Pushbullet devices":[null,""],"Update device list":[null,""],"Pushbullet channels":[null,""],"Free Mobile":[null,""],"Free Mobile is a famous French cellular network provider.<br> It provides to their customer a free SMS API.":[null,""],"send SMS notifications?":[null,""],"send a SMS when a download starts?":[null,""],"send a SMS when a download finishes?":[null,""],"send a SMS when subtitles are downloaded?":[null,""],"Free Mobile customer ID":[null,""],"it's your Free Mobile customer ID (8 digits)":[null,""],"Free Mobile API key":[null,""],"find your API key in your customer portal.":[null,""],"Click below to test your settings.":[null,""],"Telegram":[null,""],"Telegram is a cloud-based instant messaging service.":[null,""],"send Telegram notifications?":[null,""],"send a message when a download starts?":[null,""],"send a message when a download finishes?":[null,""],"send a message when subtitles are downloaded?":[null,""],"User/group ID":[null,""],"contact @myidbot on Telegram to get an ID":[null,""],"Bot API token":[null,""],"contact @BotFather on Telegram to set up one":[null,""],"Join":[null,""],"Join all of your devices together!":[null,""],"send Join notifications?":[null,""],"Device ID":[null,""],"per device specific id":[null,""]," to create a Join API key":[null,""],"Twilio":[null,""],"Twilio is a webservice API that allows you to communicate directly with a mobile number. This notifier will send a text directly to your mobile device.":[null,""],"should SickRage text your mobile device?":[null,""],"Twilio Account SID":[null,""],"account SID of your Twilio account.":[null,""],"Twilio Auth Token":[null,""],"Twilio Phone SID":[null,""],"phone SID that you would like to send the sms from":[null,""],"Your phone number":[null,""],"phone number that will receive the sms. Please use the format +1-###-###-####":[null,""],"Twitter":[null,""],"A social networking and microblogging service, enabling its users to send and read other users' messages called tweets.":[null,""],"should SickRage post tweets on Twitter?":[null,""],"you may want to use a secondary account.":[null,""],"send direct message":[null,""],"send a notification via Direct Message, not via status update":[null,""],"send DM to":[null,""],"Twitter account to send Direct Messages to (must follow you)":[null,""],"Step One":[null,""],"Request Authorization":[null,""],"Click the \"Request Authorization\" button.<br> This will open a new page containing an auth key.<br> <b>note:</b> if nothing happens check your popup blocker.":[null,""],"Step Two":[null,""],"Enter the key Twitter gave you below, and click \"Verify Key\".":[null,""],"Trakt":[null,""],"Trakt helps keep a record of what TV shows and movies you are watching. Based on your favorites, Trakt recommends additional shows and movies you'll enjoy!":[null,""],"send Trakt.tv notifications?":[null,""],"username of your Trakt account.":[null,""],"Trakt PIN":[null,""],"Get Trakt PIN":[null,""],"PIN code to authorize SickRage to access Trakt on your behalf.":[null,""],"API Timeout":[null,""],"seconds to wait for Trakt API to respond. (Use 0 to wait forever)":[null,""],"Default indexer":[null,""],"Sync libraries":[null,""],"sync your SickRage show library with your trakt show library.":[null,""],"Remove Episodes From Collection":[null,""],"remove an episode from your Trakt Collection if it is not in your SickRage Library.":[null,""],"Sync watchlist":[null,""],"sync your SickRage show watchlist with your trakt show watchlist (either Show and Episode).":[null,""],"episode will be added on watch list when wanted or snatched and will be removed when downloaded ":[null,""],"Watchlist add method":[null,""],"Skip All":[null,""],"Download Pilot Only":[null,""],"Get whole show":[null,""],"method in which to download episodes for new shows.":[null,""],"Remove episode":[null,""],"remove an episode from your watchlist after it is downloaded.":[null,""],"Remove series":[null,""],"remove the whole series from your watchlist after any download.":[null,""],"Remove watched show":[null,""],"remove the show from sickrage if it's ended and completely watched":[null,""],"Start paused":[null,""],"shows grabbed from your trakt watchlist start paused.":[null,""],"Trakt blackList name":[null,""],"name (slug) of list on Trakt for blacklisting show on 'Add Trending Show' & 'Add Recommended Shows' pages":[null,""],"Email":[null,""],"Allows configuration of email notifications on a per show basis.":[null,""],"send email notifications?":[null,""],"SMTP host":[null,""],"hostname of your SMTP email server.":[null,""],"SMTP port":[null,""],"port number used to connect to your SMTP host.":[null,""],"SMTP from":[null,""],"sender email address, some hosts require a real address.":[null,""],"Use TLS":[null,""],"check to use TLS encryption.":[null,""],"SMTP user":[null,""],"(optional) your SMTP server username.":[null,""],"SMTP password":[null,""],"(optional) your SMTP server password.":[null,""],"Global email list":[null,""],"email addresses listed here, separated by commas if applicable, will<br> receive notifications for <b>all</b> shows.":[null,""],"(This field may be blank except when testing.)":[null,""],"Email Subject":[null,""],"use a custom subject for some privacy protection?":[null,""],"(leave blank for the default SickRage subject)":[null,""],"configure per-show notifications here by entering email address(es), separated by commas,":[null,""],"after selecting a show in the drop-down box. Be sure to activate the 'Save for this show'":[null,""],"button below after each entry.":[null,""],"Slack":[null,""],"Slack brings all your communication together in one place. It's real-time messaging, archiving and search for modern teams.":[null,""],"should SickRage post messages on Slack?":[null,""],"Slack Incoming Webhook":[null,""],"Discord":[null,""],"All-in-one voice and text chat for gamers that's free, secure, and works on both your desktop and phone.":[null,""],"Should SickRage post messages on Discord?":[null,""],"Discord Incoming Webhook":[null,""],"Create webhook under channel settings.":[null,""],"Discord Bot Name":[null,""],"Blank will use webhook default Name.":[null,""],"Discord Avatar URL":[null,""],"Blank will use webhook default Avatar.":[null,""],"Discord TTS":[null,""],"Send notifications using text-to-speech":[null,""],"Post-Processing":[null,""],"Episode Naming":[null,""],"Metadata":[null,""],"Settings that dictate how SickRage should process completed downloads.":[null,""],"enable the automatic post processor to scan and process any files in your Post Processing Dir":[null,""],"do not use if you use an external Post Processing script":[null,""],"Post Processing Dir":[null,""],"the folder where your download client puts the completed TV downloads.":[null,""],"please use seperate downloading and completed folders in your download client if possible.":[null,""],"Processing Method":[null,""],"what method should be used to put files into the library?":[null,""],"if you keep seeding torrents after they finish, please avoid the 'move' processing method to prevent errors.":[null,""],"Auto Post-Processing Frequency":[null,""],"time in minutes to check for new files to auto post-process (min 10)":[null,""],"Postpone post processing":[null,""],"wait to process a folder if sync files are present.":[null,""],"Sync File Extensions":[null,""],"comma seperated list of extensions or filename globs SickRage ignores when Post Processing":[null,""],"Rename Episodes":[null,""],"rename episode using the Episode Naming settings?":[null,""],"Create missing show directories":[null,""],"create missing show directories when they get deleted":[null,""],"Add shows without directory":[null,""],"add shows without creating a directory (not recommended)":[null,""],"Move associated files":[null,""],"move associated (srt/srr/sfv/etc) files while post processing?":[null,""],"Rename .nfo file":[null,""],"rename the original .nfo file to .nfo-orig to avoid conflicts?":[null,""],"Associated file extensions":[null,""],"comma separated list of associated file extensions SickRage should keep while post processing.":[null,""],"leaving it empty means no associated files will be post processed":[null,""],"Delete non associated files":[null,""],"delete non associated files while post processing?":[null,""],"Change File Date":[null,""],"set last modified filedate to the date that the episode aired?":[null,""],"some systems may ignore this feature.":[null,""],"Timezone for File Date":[null,""],"local":[null,""],"network":[null,""],"what timezone should be used to change File Date?":[null,""],"Unpack":[null,""],"What to do with archived releases found in your <i>TV Download Dir</i>?":[null,""],"Ignore (do not process contents)":[null,""],"Unpack (process contents)":[null,""],"Treat as video (process archive as-is)":[null,""],"'Unpack' only works with RAR archives":[null,""],"Windows":[null,""],"WinRar is required on windows":[null,""],"Unpack Directory":[null,""],"Choose a path to unpack files, leave blank to unpack in download dir":[null,""],"Unrar Location":[null,""],"add the path to unrar if it is not in the system path":[null,""],"Alternate Unrar Tool":[null,""],"add the path to an alternate unrar tool if it is not in the system path":[null,""],"Delete RAR contents":[null,""],"delete content of RAR files, even if Process Method not set to move?":[null,""],"only working with RAR archive":[null,""],"Don't delete empty folders":[null,""],"leave empty folders when Post Processing?":[null,""],"can be overridden using manual Post Processing":[null,""],"Follow symbolic-links":[null,""],"follow down symbolic links in download directory?":[null,""],"<b>EXPERTS ONLY.</b><br>Enable only if you know what <b>circular symbolic links</b> are,<br>and can <b>verify that you have none</b>.":[null,""],"Use icacls":[null,""],"Windows only":[null,""],"sets video permissions after using the move method in post processing":[null,""],"Extra Scripts":[null,""],"see":[null,""],"for script arguments description and usage.":[null,""],"How SickRage will name and sort your episodes.":[null,""],"Name Pattern":[null,""],"Toggle Naming Legend":[null,""],"don't forget to add quality pattern. Otherwise after post-processing the episode will have UNKNOWN quality":[null,""],"Meaning":[null,""],"Pattern":[null,""],"Result":[null,""],"Use lower case if you want lower case names (eg. %sn, %e.n, %q_n etc)":[null,""],"Show Name":[null,""],"Show.Name":[null,""],"Show_Name":[null,""],"Season Number":[null,""],"XEM Season Number":[null,""],"Episode Number":[null,""],"XEM Episode Number":[null,""],"Episode Name":[null,""],"Episode.Name":[null,""],"Episode_Name":[null,""],"Air Date":[null,""],"Post-Processing Date":[null,""],"Quality":[null,""],"Scene Quality":[null,""],"Release Name":[null,""],"SickRage' is used in place of RLSGROUP if it could not be properly detected":[null,""],"Release Group":[null,""],"If episode is proper/repack add 'proper' to name.":[null,""],"Release Type":[null,""],"Multi-Episode Style":[null,""],"Single-EP Sample":[null,""],"Multi-EP sample":[null,""],"Strip Show Year":[null,""],"remove the TV show's year when renaming the file?":[null,""],"only applies to shows that have year inside parentheses":[null,""],"Custom Air-By-Date":[null,""],"name air-by-date shows differently than regular shows?":[null,""],"Toggle ABD Naming Legend":[null,""],"Regular Air Date":[null,""],"Year":[null,""],"Month":[null,""],"Day":[null,""],"Multi-EP style is ignored":[null,""],"Custom Sports":[null,""],"name sports shows differently than regular shows?":[null,""],"Toggle Sports Naming Legend":[null,""],"Sports Air Date":[null,""],"Custom Anime":[null,""],"name anime shows differently than regular shows?":[null,""],"Toggle Anime Naming Legend":[null,""],">XEM Season Number":[null,""],"Single-EP Anime Sample":[null,""],"Multi-EP Anime sample":[null,""],"Add Absolute Number":[null,""],"add the absolute number to the season/episode format?":[null,""],"only applies to anime. (eg. S15E45 - 310 vs S15E45)":[null,""],"Only Absolute Number":[null,""],"replace season/episode format with absolute number":[null,""],"only applies to anime.":[null,""],"No Absolute Number":[null,""],"don't include the absolute number":[null,""],"The data associated to the data. These are files associated to a TV show in the form of images and text that, when supported, will enhance the viewing experience.":[null,""],"Metadata Type":[null,""],"toggle metadata options that you wish to be created":[null,""],"multiple targets may be used":[null,""],"Select Metadata":[null,""],"Provider Priorities":[null,""],"Provider Options":[null,""],"Configure Custom Newznab Providers":[null,""],"Configure Custom Torrent Providers":[null,""],"Check off and drag the providers into the order you want them to be used.":[null,""],"At least one provider is required but two are recommended.":[null,""],"Torrent providers can be toggled in ":[null,""],"Provider does not support backlog searches at this time.":[null,""],"Provider is <b>NOT WORKING</b>.":[null,""],"Configure individual provider settings here.":[null,""],"Check with provider's website on how to obtain an API key if needed.":[null,""],"Configure provider":[null,""],"no providers available to configure.":[null,""],"URL":[null,""],"Enable daily searches":[null,""],"enable provider to perform daily searches.":[null,""],"Enable backlog searches":[null,""],"enable provider to perform backlog searches.":[null,""],"Season search mode":[null,""],"when searching for complete seasons you can choose to have it look for season packs only, or choose to have it build a complete season from just single episodes.":[null,""],"season packs only.":[null,""],"episodes only.":[null,""],"Enable fallback":[null,""],"when searching for a complete season depending on search mode you may return no results, this helps by restarting the search using the opposite search mode.":[null,""],"Custom URL":[null,""],"the URL should include the protocol (and port if applicable). Examples: http://192.168.1.4/ or http://localhost:3000/":[null,""],"Api key":[null,""],"Digest":[null,""],"Hash":[null,""],"Passkey":[null,""],"Cookies":[null,""],"example: uid=1234;pass=567845439634987<br>note: uid and pass are not your username/password.<br>use DevTools or Firebug to get these values after logging in on your browser.":[null,""],"Pin":[null,""],"Seed ratio":[null,""],"stop transfer when ratio is reached<br>(-1 SickRage default to seed forever, or leave blank for downloader default)":[null,""],"Minimum seeders":[null,""],"Minimum leechers":[null,""],"Confirmed download":[null,""],"only download torrents from trusted or verified uploaders ?":[null,""],"Ranked torrents":[null,""],"only download ranked torrents (trusted releases)":[null,""],"English torrents":[null,""],"only download english torrents, or torrents containing english subtitles":[null,""],"For Spanish torrents":[null,""],"ONLY search on this provider if show info is defined as \"Spanish\" (avoid provider's use for VOS shows)":[null,""],"Sorting results by":[null,""],"Freeleech":[null,""],"only download <b>\"FreeLeech\"</b> torrents.":[null,""],"Category":[null,""],"select torrent with Italian subtitle":[null,""],"Configure Custom<br>Newznab Providers":[null,""],"Add and setup or remove custom Newznab providers.":[null,""],"Select provider":[null,""],"-- add new provider --":[null,""],"Provider name":[null,""],"Site URL":[null,""],"Newznab search categories":[null,""],"select your Newznab categories on the left, and click the \"update categories\" button to use them for searching.) <b>don't forget to to save the form!":[null,""],"Update Categories":[null,""],"Add":[null,""],"Delete":[null,""],"Add and setup or remove custom RSS providers.":[null,""],"RSS URL":[null,""],"Search element":[null,""],"eg: title":[null,""],"Episode Search":[null,""],"NZB Search":[null,""],"Torrent Search":[null,""],"How to manage searching with":[null,""],"Randomize Providers":[null,""],"randomize the provider search order instead of going in order of placement":[null,""],"Download propers":[null,""],"replace original download with \"Proper\" or \"Repack\" if nuked":[null,""],"Check propers every":[null,""],"24 hours":[null,""],"4 hours":[null,""],"90 mins":[null,""],"45 mins":[null,""],"15 mins":[null,""],"Backlog search day(s)":[null,""],"number of day(s) that the \"Forced Backlog Search\" will cover (e.g. 7 Days)":[null,""],"Backlog search frequency":[null,""],"time in minutes between searches (min.":[null,""],"Daily search frequency":[null,""],"Usenet retention":[null,""],"age limit in days for usenet articles to be used (e.g. 500)":[null,""],"Ignore words":[null,""],"results with one or more word from this list will be ignored<br>separate words with a comma, e.g. \"word1,word2,word3\"":[null,""],"Require words":[null,""],"results with no word from this list will be ignored<br>separate words with a comma, e.g. \"word1,word2,word3\"":[null,""],"Trackers list":[null,""],"trackers that will be added to magnets without trackers<br>separate trackers with a comma, e.g. \"tracker1,tracker2,tracker3\"":[null,""],"Ignore language names in subbed results":[null,""],"ignore subbed releases based on language names <br>\n Example: \"dk\" will ignore words: dksub, dksubs, dksubbed, dksubed <br>\n separate languages with a comma, e.g. \"lang1,lang2,lang3":[null,""],"Allow high priority":[null,""],"set downloads of recently aired episodes to high priority":[null,""],"Use Failed Downloads":[null,""],"use Failed Download Handling?":[null,""],"will only work with snatched/downloaded episodes after enabling this":[null,""],"Delete Failed":[null,""],"delete files left over from a failed download?":[null,""],"this only works if Use Failed Downloads is enabled.":[null,""],"How to handle NZB search results.":[null,""],"Search NZBs":[null,""],"enable NZB search providers":[null,""],"Send .nzb files to":[null,""],"SABnzbd server URL":[null,""],"URL to your SABnzbd server (e.g. http://localhost:8080/)":[null,""],"SABnzbd username":[null,""],"(blank for none)":[null,""],"SABnzbd password":[null,""],"SABnzbd API key":[null,""],"locate at... SABnzbd Config -> General -> API Key":[null,""],"Use SABnzbd category":[null,""],"add downloads to this category (e.g. TV)":[null,""],"Use SABnzbd category (backlog episodes)":[null,""],"add downloads of old episodes to this category (e.g. TV)":[null,""],"Use SABnzbd category for anime":[null,""],"add anime downloads to this category (e.g. anime)":[null,""],"Use SABnzbd category for anime (backlog episodes)":[null,""],"add anime downloads of old episodes to this category (e.g. anime)":[null,""],"Use forced priority":[null,""],"enable to change priority from HIGH to FORCED":[null,""],"Black hole folder location":[null,""],"<b>.nzb</b> files are stored at this location for external software to find and use":[null,""],"Connect using HTTPS":[null,""],"enable Secure control in NZBGet and set the correct Secure Port here":[null,""],"NZBget host:port":[null,""],"(e.g. localhost:6789)":[null,""],"NZBget RPC host name and port number (not NZBgetweb!)":[null,""],"NZBget username":[null,""],"locate in nzbget.conf (default:nzbget)":[null,""],"NZBget password":[null,""],"locate in nzbget.conf (default:tegbzn6789)":[null,""],"Use NZBget category":[null,""],"send downloads marked this category (e.g. TV)":[null,""],"Use NZBget category (backlog episodes)":[null,""],"send downloads of old episodes marked this category (e.g. TV)":[null,""],"Use NZBget category for anime":[null,""],"send anime downloads marked this category (e.g. anime)":[null,""],"Use NZBget category for anime (backlog episodes)":[null,""],"send anime downloads of old episodes marked this category (e.g. anime)":[null,""],"NZBget priority":[null,""],"Very low":[null,""],"Low":[null,""],"Very high":[null,""],"Force":[null,""],"priority for daily snatches (no backlog)":[null,""],"Torrent host:port":[null,""],"URL to your Synology DSM (e.g. http://localhost:5000/)":[null,""],"Client username":[null,""],"Client password":[null,""],"Downloaded files location":[null,""],"where Synology Download Station will save downloaded files (blank for client default)":[null,""],"the destination has to be a shared folder for Synology DS":[null,""],"Click below to test":[null,""],"How to handle Torrent search results.":[null,""],"Search torrents":[null,""],"enable torrent search providers":[null,""],"Send .torrent files to":[null,""],"<b>.torrent</b> files are stored at this location for external software to find and use":[null,""],"URL to your torrent client (e.g. http://localhost:8000/)":[null,""],"Torrent RPC URL":[null,""],"the path without leading and trailing slashes (e.g. transmission)":[null,""],"Http Authentication":[null,""],"Verify certificate":[null,""],"disable if you get \"Deluge: Authentication Error\" in your log":[null,""],"verify SSL certificates for HTTPS requests":[null,""],"Add label to torrent":[null,""],"(blank spaces are not allowed)":[null,""],"label plugin must be enabled in Deluge clients":[null,""],"for QBitTorrent 3.3.1 and up":[null,""],"Add label to torrent for anime":[null,""],"for QBitTorrent 3.3.1 and up ":[null,""],"where <span id=\"torrent_client\">the torrent client</span> will save downloaded files (blank for client default)":[null,""],"the destination has to be a shared folder for Synology DS</span>":[null,""],"Minimum seeding time":[null,""],"time in hours":[null,""],"(default:'0' passes blank to client and '-1' passes nothing)":[null,""],"Start torrent paused":[null,""],"add .torrent to client but do <b style=\"font-weight:900\">not</b> start downloading":[null,""],"Allow high bandwidth":[null,""],"use high bandwidth allocation if priority is high":[null,""],"Test Connection":[null,""],"Windows Shares":[null,""],"Defines your existing windows shares so that we can add them to the browse dialog":[null,""],"Share #{number}":[null,""],"Share label":[null,""],"Hostname or IP":[null,""],"Share path":[null,""],"Subtitles Search":[null,""],"Subtitles Plugin":[null,""],"Plugin Settings":[null,""],"Settings that dictate how SickRage handles subtitles search results.":[null,""],"Search Subtitles":[null,""],"Subtitle Languages":[null,""],"Subtitle Directory":[null,""],"the directory where SickRage should store your <i>Subtitles</i> files.":[null,""],"leave empty if you want store subtitle in episode path.":[null,""],"Subtitle Find Frequency":[null,""],"time in hours between scans (default: 1)":[null,""],"Include Specials":[null,""],"include the show's specials when searching for subtitles?":[null,""],"Perfect matches":[null,""],"only download subtitles that match: release group, video codec, audio codec and resolution":[null,""],"if disabled you may get out of sync subtitles":[null,""],"Subtitles History":[null,""],"log downloaded Subtitle on History page?":[null,""],"Subtitles Multi-Language":[null,""],"append language codes to subtitle filenames?":[null,""],"this option is required if you use multiple subtitle languages":[null,""],"Delete unwanted subtitles":[null,""],"enable to delete unwanted subtitle languages bundled with release":[null,""],"Embedded Subtitles":[null,""],"ignore subtitles embedded inside video file?":[null,""],"this will ignore <u>all</u> embedded subtitles for every video file!":[null,""],"Hearing Impaired Subtitles":[null,""],"download hearing impaired style subtitles?":[null,""],"See":[null,""],"for a script arguments description.":[null,""],"Additional scripts separated by <b>|</b>.":[null,""],"Scripts are called after each episode has searched and downloaded subtitles.":[null,""],"For any scripted languages, include the interpreter executable before the script. See the following example":[null,""],"For Windows:":[null,""],"For Linux / OS X:":[null,""],"Subtitle Providers":[null,""],"Check off and drag the plugins into the order you want them to be used.":[null,""],"At least one plugin is required.":[null,""]," Web-scraping plugin":[null,""],"Provider Settings":[null,""],"Set user and password for each provider":[null,""],"User Name":[null,""],"Change Show":[null,""],"Prev Show":[null,""],"Next Show":[null,""],"Jump to Season":[null,""],"Specials":[null,""],"Poster for":[null,""],"Stars":[null,""],"minutes":[null,""],"View other popular {genre} shows on trakt.tv.":[null,""],"View other popular {imdbgenre} shows on IMDB.":[null,""],"Allowed":[null,""],"Preferred":[null,""],"Originally Airs":[null,""],"Show Status":[null,""],"Default EP Status":[null,""],"Location":[null,""],"Missing":[null,""],"Scene Name":[null,""],"Required Words":[null,""],"Ignored Words":[null,""],"Size":[null,""],"Info Language":[null,""],"Subtitles SR Metadata":[null,""],"Season Folders":[null,""],"Paused":[null,""],"Air-by-Date":[null,""],"Sports":[null,""],"DVD Order":[null,""],"Scene Numbering":[null,""],"Select Filtered Episodes":[null,""],"Clear All":[null,""],"Change selected episodes to":[null,""],"Select Columns":[null,""],"Hide Episodes":[null,""],"Show Episodes":[null,""],"NFO":[null,""],"TBN":[null,""],"Episode":[null,""],"Absolute":[null,""],"Scene":[null,""],"Scene Absolute":[null,""],"File Name":[null,""],"Airdate":[null,""],"Download":[null,""],"Change the value here if scene numbering differs from the indexer episode numbering":[null,""],"Change the value here if scene absolute numbering differs from the indexer absolute numbering":[null,""],"Manual Search":[null,""],"Do you want to mark this episode as failed?":[null,""],"The episode release name will be added to the failed history, preventing it to be downloaded again.":[null,""],"Do you want to include the current episode quality in the search?":[null,""],"Choosing No will ignore any releases with the same episode quality as the one currently downloaded/snatched.":[null,""],"Download subtitle":[null,""],"Do you want to re-download the subtitle for this language?":[null,""],"It will overwrite your current subtitle":[null,""],"Format":[null,""],"Advanced":[null,""],"Main Settings":[null,""],"Show Location":[null,""],"Preferred Quality":[null,""],"Default Episode Status":[null,""],"this will set the status for future episodes.":[null,""],"this only applies to episode filenames and the contents of metadata files.":[null,""],"search for subtitles":[null,""],"Use SR Metdata":[null,""],"use SickRage metadata when searching for subtitle, this will override the autodiscovered metadata":[null,""],"pause this show (SickRage will not download episodes)":[null,""],"Format Settings":[null,""],"Air by date":[null,""],"check if the show is released as Show.03.02.2010 rather than Show.S02E03.":[null,""],"in case of an air date conflict between regular and special episodes, the later will be ignored.":[null,""],"check if the show is Anime and episodes are released as Show.265 rather than Show.S02E03":[null,""],"check if the show is a sporting or MMA event released as Show.03.02.2010 rather than Show.S02E03":[null,""],"Season folders":[null,""],"group episodes by season folder (uncheck to store in a single folder)":[null,""],"search by scene numbering (uncheck to search by indexer numbering)":[null,""],"use the DVD order instead of the air order":[null,""],"a \"Force Full Update\" is necessary, and if you have existing episodes you need to sort them manually.":[null,""],"comma-separated <i>e.g. \"word1,word2,word3</i>\"":[null,""],"search results with one or more words from this list will be ignored.":[null,""],"e.g. \"word1,word2,word3\"":[null,""],"search results with no words from this list will be ignored.":[null,""],"Scene Exception":[null,""],"this will affect episode search on NZB and torrent providers.":[null,""],"this list appends to the original show name.":[null,""],"WARNING logs":[null,""],"ERROR logs":[null,""],"There are no events to display.":[null,""],"Limit":[null,""],"Layout":[null,""],"HistoryLayout":[null,""],"Compact":[null,""],"Detailed":[null,""],"Time":[null,""],"Provider":[null,""],"Missing Provider":[null,""],"missing provider":[null,""],"Directory":[null,""],"Show Name (tvshow.nfo)":[null,""],"Indexer":[null,""],"Enter the folder containing the episode":[null,""],"Process Method to be used":[null,""],"Copy":[null,""],"Move":[null,""],"Hard Link":[null,""],"Symbolic Link":[null,""],"Symbolic Link Reversed":[null,""],"Force already Post Processed Dir/Files":[null,""],"Mark Dir/Files as priority download":[null,""],"(Check it to replace the file even if it exists at higher quality)":[null,""],"Delete files and folders":[null,""],"(Check it to delete files and folders like auto processing)":[null,""],"Don't use processing queue":[null,""],"(If checked this will return the result of the process here, but may be slow!)":[null,""],"Mark download as failed":[null,""],"Process":[null,""],"Download subtitles for this show?":[null,""],"use SickRage metadata when searching for subtitle, <br />this will override the autodiscovered metadata":[null,""],"Status for previously aired episodes":[null,""],"Status for all future episodes":[null,""],"Group episodes by season folder?":[null,""],"Is this show an Anime?":[null,""],"Is this show scene numbered?":[null,""],"Save Defaults":[null,""],"Use current values as the defaults":[null,""],"<p>Select your preferred fansub groups from the <b>Available Groups</b> and add them to the <b>Whitelist</b>. Add groups to the <b>Blacklist</b> to ignore them.</p>\n <p>The <b>Whitelist</b> is checked <i>before</i> the <b>Blacklist</b>.</p>\n <p>Groups are shown as <b>Name</b> | <b>Rating</b> | <b>Number of subbed episodes</b>.</p>\n <p>You may also add any fansub group not listed to either list manually.</p>\n <p>When doing this please note that you can only use groups listed on anidb for this anime.\n <br>If a group is not listed on anidb but subbed this anime, please correct anidb's data.</p>":[null,""],"Whitelist":[null,""],"Available Groups":[null,""],"Add to Whitelist":[null,""],"Add to Blacklist":[null,""],"Blacklist":[null,""],"Custom Group":[null,""],"Allowed Quality:":[null,""],"Preferred Quality:":[null,""],"Filter Show Name":[null,""],"Root":[null,""],"All":[null,""],"Clear Filter(s)":[null,""],"Poster":[null,""],"Small Poster":[null,""],"Banner":[null,""],"Simple":[null,""],"Next Episode":[null,""],"Progress":[null,""],"Direction":[null,""],"Ascending":[null,""],"Descending":[null,""],"Poster Size":[null,""],"Continuing":[null,""],"Ended":[null,""],"Total":[null,""],"Invalid date":[null,""],"No Network":[null,""],"Next Ep":[null,""],"Prev Ep":[null,""],"Show":[null,""],"Downloads":[null,""],"Active":[null,""],"loading":[null,""],"Loading...":[null,""],"<p><b><u>Preferred</u></b> qualities will replace those in <b><u>allowed</u></b>, even if they are lower.</p>":[null,""],"New":[null,""],"Set as Default":[null,""],"Remember me":[null,""],"Edit Selected":[null,""],"Subtitle":[null,""],"Default Ep Status":[null,""],"Update":[null,""],"Rescan":[null,""],"Rename":[null,""],"Search Subtitle":[null,""],"Force Metadata Regen":[null,""],"Snatched (Allowed)":[null,""],"Jump to Show":[null,""],"Force Backlog":[null,""],"Manage episodes with status":[null,""],"Manage":[null,""],"None of your episodes have status":[null,""],"Shows containing":[null,""],"episodes":[null,""],"Set checked shows/episodes to":[null,""],"Go":[null,""],"Select all":[null,""],"Clear all":[null,""],"Release":[null,""],"Backlog Search":[null,""],"Not in progress":[null,""],"In Progress":[null,""],"Daily Search":[null,""],"Find Propers Search":[null,""],"Propers search disabled":[null,""],"Subtitle Search":[null,""],"Subtitle search disabled":[null,""],"Search Queue":[null,""],"pending items":[null,""],"Daily":[null,""],"Manual":[null,""],"Changing any settings marked with (<span class=\"separator\">*</span>) will force a refresh of the selected shows.":[null,""],"Selected Shows":[null,""],"Root Directories":[null,""],"Current":[null,""],"Keep":[null,""],"Custom":[null,""],"Group episodes by season folder (set to \"No\" to store in a single folder).":[null,""],"Pause these shows (SickRage will not download episodes).":[null,""],"This will set the status for future episodes.":[null,""],"Search by scene numbering (set to \"No\" to search by indexer numbering).":[null,""],"Set if these shows are Anime and episodes are released as Show.265 rather than Show.S02E03":[null,""],"Set if these shows are sporting or MMA events released as Show.03.02.2010 rather than Show.S02E03.":[null,""],"In case of an air date conflict between regular and special episodes, the later will be ignored.":[null,""],"Set if these shows are released as Show.03.02.2010 rather than Show.S02E03.":[null,""],"Search for subtitles.":[null,""],"All of your episodes have {subsLanguage} subtitles.":[null,""],"Manage episodes without":[null,""],"Episodes without {subsLanguage} subtitles.":[null,""],"Episodes without {subtitleLanguage} (undefined) subtitles.":[null,""],"Download missed subtitles for selected episodes":[null,""],"Performing Restart":[null,""],"Waiting for SickRage to shut down":[null,""],"Waiting for SickRage to start again":[null,""],"Loading the default page":[null,""],"Error: The restart has timed out, perhaps something prevented SickRage from starting again?":[null,""],"Key":[null,""],"Missed":[null,""],"Today":[null,""],"Soon":[null,""],"Later":[null,""],"Subscribe":[null,""],"Date":[null,""],"View Paused":[null,""],"Hidden":[null,""],"Shown":[null,""],"Calendar":[null,""],"List":[null,""],"Ends":[null,""],"Next Ep Name":[null,""],"Run time":[null,""],"Indexers":[null,""],"No shows for this day":[null,""],"Airs":[null,""],"Plot":[null,""],"Show Update":[null,""],"Version Check":[null,""],"Proper Finder":[null,""],"Post Process":[null,""],"Subtitles Finder":[null,""],"Scheduler":[null,""],"Alive":[null,""],"Start Time":[null,""],"Cycle Time":[null,""],"Next Run":[null,""],"Last Run":[null,""],"Silent":[null,""],"True":[null,""],"N/A":[null,""],"Show id":[null,""],"Show name":[null,""],"Priority":[null,""],"Added":[null,""],"Queue type":[null,""],"LOW":[null,""],"NORMAL":[null,""],"HIGH":[null,""],"Disk Space":[null,""],"Free space":[null,""],"TV Download Directory":[null,""],"Media Root Directories":[null,""],"Preview of the proposed name changes":[null,""],"All Seasons":[null,""],"select all":[null,""],"Rename Selected":[null,""],"Cancel Rename":[null,""],"Old Location":[null,""],"New Location":[null,""],"Trakt API did not return any results, please check your config.":[null,""],"votes":[null,""],"Remove Show":[null,""],"Level":[null,""],"Filter":[null,""],"All non-absolute folder locations are relative to ":[null,""],"Manual Post-Processing":[null,""],"Episode Status Management":[null,""],"Update PLEX":[null,""],"Update KODI":[null,""],"Update Emby":[null,""],"Missed Subtitle Management":[null,""],"Help & Info":[null,""],"Backup & Restore":[null,""],"Tools":[null,""],"Support SickRage":[null,""],"View Errors":[null,""],"View Warnings":[null,""],"View Log":[null,""],"Check For Updates":[null,""],"Restart":[null,""],"Shutdown":[null,""],"Logout":[null,""],"Server Status":[null,""],"View overview of snatched episodes":[null,""],"Episodes Downloaded":[null,""],"Memory used":[null,""],"Load time":[null,""],"Branch":[null,""],"Now":[null,""]}}}} \ No newline at end of file +{"messages":{"domain":"messages","locale_data":{"messages":{"100":[null,""],"250":[null,""],"500":[null,""],"":{"domain":"messages","plural_forms":"nplurals=2; plural=(n != 1);","lang":"fa_IR"},"Drama":[null,""],"Mystery":[null,""],"Science-Fiction":[null,""],"Crime":[null,""],"Action":[null,""],"Comedy":[null,""],"Thriller":[null,""],"Animation":[null,""],"Family":[null,""],"Fantasy":[null,""],"Adventure":[null,""],"Horror":[null,""],"Film-Noir":[null,""],"Sci-Fi":[null,""],"Romance":[null,""],"Sport":[null,""],"War":[null,""],"Biography":[null,""],"History":[null,""],"Music":[null,""],"Western":[null,""],"News":[null,""],"Sitcom":[null,""],"Reality-TV":[null,""],"Documentary":[null,""],"Game-Show":[null,""],"Musical":[null,""],"Talk-Show":[null,""],"Started Download":[null,""],"Download Finished":[null,""],"Subtitle Download Finished":[null,""],"SickRage Updated":[null,""],"SickRage Updated To Commit#: ":[null,""],"SickRage new login":[null,""],"New login from IP: {0}. http://geomaplookup.net/?ip={0}":[null,""],"Repeat":[null,""],"Repeat (Separated)":[null,""],"Extend":[null,""],"Extend (Limited)":[null,""],"Extend (Limited, E-prefixed)":[null,""],"Downloaded":[null,""],"Snatched":[null,""],"Snatched (Proper)":[null,""],"Failed":[null,""],"Snatched (Best)":[null,""],"Archived":[null,""],"Unknown":[null,""],"Unaired":[null,""],"Skipped":[null,""],"Wanted":[null,""],"Ignored":[null,""],"Subtitled":[null,""],"For best results please set the Download Station alias as":[null,""],"You can check this setting in the Synology DSM":[null,""],"Control Panel":[null,""],"Application Portal":[null,""],"Make sure you allow DSM to be embedded with iFrames too in":[null,""],"DSM Settings":[null,""],"Security":[null,""],"<No Filter>":[null,""],"Daily Searcher":[null,""],"Backlog":[null,""],"Show Updater":[null,""],"Check Version":[null,""],"Show Queue":[null,""],"Search Queue (All)":[null,""],"Search Queue (Daily Searcher)":[null,""],"Search Queue (Backlog)":[null,""],"Search Queue (Manual)":[null,""],"Search Queue (Retry/Failed)":[null,""],"Search Queue (RSS)":[null,""],"Find Propers":[null,""],"Postprocessor":[null,""],"Find Subtitles":[null,""],"Trakt Checker":[null,""],"Event":[null,""],"Error":[null,""],"Tornado":[null,""],"Thread":[null,""],"Main":[null,""],"Loading":[null,""],"New update found for SickRage, starting auto-updater":[null,""],"Update was successful":[null,""],"Update failed!":[null,""],"Backup":[null,""],"Config backup in progress...":[null,""],"Config backup successful, updating...":[null,""],"Config backup failed, aborting update":[null,""],"No update needed":[null,""],"Mako Error":[null,""],"Oops":[null,""],"Wrong API key used":[null,""],"Login":[null,""],"API Key not generated":[null,""],"API Builder":[null,""],"Schedule":[null,""],"Test 1":[null,""],"This is test number 1":[null,""],"Test 2":[null,""],"This is test number 2":[null,""],"You're using the {branch} branch. Please use 'master' unless specifically asked":[null,""],"Invalid show parameters":[null,""],"Invalid parameters":[null,""],"Episode couldn't be retrieved":[null,""],"Home":[null,""],"Show List":[null,""],"Error: Unsupported Request. Send jsonp request with 'callback' variable in the query string.":[null,""],"Success. Connected and authenticated":[null,""],"Authentication failed. SABnzbd expects":[null,""],"as authentication method":[null,""],"Unable to connect to host":[null,""],"SMS sent successfully":[null,""],"Problem sending SMS: {message}":[null,""],"Telegram notification succeeded. Check your Telegram clients to make sure it worked":[null,""],"Error sending Telegram notification: {message}":[null,""],"join notification succeeded. Check your join clients to make sure it worked":[null,""],"Error sending join notification: {message}":[null,""]," with password":[null,""],"Registered and Tested growl successfully {growl_host}":[null,""],"Registration and Testing of growl failed {growl_host}":[null,""],"Test prowl notice sent successfully":[null,""],"Test prowl notice failed":[null,""],"Boxcar2 notification succeeded. Check your Boxcar2 clients to make sure it worked":[null,""],"Error sending Boxcar2 notification":[null,""],"Pushover notification succeeded. Check your Pushover clients to make sure it worked":[null,""],"Error sending Pushover notification":[null,""],"Key verification successful":[null,""],"Unable to verify key":[null,""],"Tweet successful, check your twitter to make sure it worked":[null,""],"Error sending tweet":[null,""],"Please enter a valid account sid":[null,""],"Please enter a valid auth token":[null,""],"Please enter a valid phone sid":[null,""],"Please format the phone number as \"+1-###-###-####\"":[null,""],"Authorization successful and number ownership verified":[null,""],"Error sending sms":[null,""],"Slack message successful":[null,""],"Slack message failed":[null,""],"Discord message successful":[null,""],"Discord message failed":[null,""],"Test KODI notice sent successfully to {kodi_host}":[null,""],"Test KODI notice failed to {kodi_host}":[null,""],"Successful test notice sent to Plex Home Theater ... {plex_clients}":[null,""],"Test failed for Plex Home Theater ... {plex_clients}":[null,""],"Tested Plex Home Theater(s)":[null,""],"Successful test of Plex Media Server(s) ... {plex_servers}":[null,""],"Test failed, No Plex Media Server host specified":[null,""],"Test failed for Plex Media Server(s) ... {plex_servers}":[null,""],"Tested Plex Media Server host(s)":[null,""],"Tried sending desktop notification via libnotify":[null,""],"Test notice sent successfully to {emby_host}":[null,""],"Test notice failed to {emby_host}":[null,""],"Successfully started the scan update":[null,""],"Test failed to start the scan update":[null,""],"Test notice sent successfully to {nmj2_host}":[null,""],"Test notice failed to {nmj2_host}":[null,""],"Trakt Authorized":[null,""],"Trakt Not Authorized!":[null,""],"Test email sent successfully! Check inbox.":[null,""],"ERROR: {last_error}":[null,""],"Test NMA notice sent successfully":[null,""],"Test NMA notice failed":[null,""],"Pushalot notification succeeded. Check your Pushalot clients to make sure it worked":[null,""],"Error sending Pushalot notification":[null,""],"Pushbullet notification succeeded. Check your device to make sure it worked":[null,""],"Error sending Pushbullet notification":[null,""],"Status":[null,""],"Restarting SickRage":[null,""],"Update Failed":[null,""],"Update wasn't successful, not restarting. Check your log for more information.":[null,""],"Checking out branch":[null,""],"Already on branch":[null,""],"Invalid show ID: {show}":[null,""],"Show not in show list":[null,""],"Edit":[null,""],"This show is in the process of being downloaded - the info below is incomplete.":[null,""],"The information on this page is in the process of being updated.":[null,""],"The episodes below are currently being refreshed from disk":[null,""],"Currently downloading subtitles for this show":[null,""],"This show is queued to be refreshed.":[null,""],"This show is queued and awaiting an update.":[null,""],"This show is queued and awaiting subtitles download.":[null,""],"Resume":[null,""],"Pause":[null,""],"Remove":[null,""],"Re-scan files":[null,""],"Force Full Update":[null,""],"Update show in KODI":[null,""],"Update show in Emby":[null,""],"Hide specials":[null,""],"Show specials":[null,""],"Preview Rename":[null,""],"Download Subtitles":[null,""],"No scene exceptions":[null,""],"Invalid show ID":[null,""],"Unable to find the specified show":[null,""],"Unable to retreive Fansub Groups from AniDB.":[null,""],"Edit Show":[null,""],"Unable to refresh this show: {error}":[null,""],"New location <tt>{location}</tt> does not exist":[null,""],"Unable to update show: {error}":[null,""],"Unable to force an update on scene exceptions of the show.":[null,""],"Unable to force an update on scene numbering of the show.":[null,""],"{num_errors:d} error{plural} while saving changes:":[null,""],"{show_name} has been {paused_resumed}":[null,""],"resumed":[null,""],"paused":[null,""],"{show_name} has been {deleted_trashed} {was_deleted}":[null,""],"deleted":[null,""],"trashed":[null,""],"(media untouched)":[null,""],"(with all related media)":[null,""],"Unable to refresh this show.":[null,""],"Unable to update this show.":[null,""],"Library update command sent to KODI host(s)): {kodi_hosts}":[null,""],"Unable to contact one or more KODI host(s)): {kodi_hosts}":[null,""],"Library update command sent to Plex Media Server host: {plex_server}":[null,""],"Unable to contact Plex Media Server host: {plex_server}":[null,""],"Library update command sent to Emby host: {emby_host}":[null,""],"Unable to contact Emby host: {emby_host}":[null,""],"You must specify a show and at least one episode":[null,""],"Invalid status":[null,""],"Backlog was automatically started for the following seasons of <b>{show_name}</b>":[null,""],"Season":[null,""],"Backlog started":[null,""],"Retrying Search was automatically started for the following season of <b>{show_name}</b>":[null,""],"Retry Search started":[null,""],"You must specify a show":[null,""],"Can't rename episodes when the show dir is missing.":[null,""],"New subtitles downloaded: {new_subtitle_languages}":[null,""],"No subtitles downloaded":[null,""],"IRC":[null,""],"Could not load news from the repo. [Click here for news.md])({news_url})":[null,""],"The was a problem connecting to github, please refresh and try again":[null,""],"Could not load changes from the repo. [Click here for CHANGES.md]({changes_url})":[null,""],"Changelog":[null,""],"Post Processing":[null,""],"Add Shows":[null,""],"No folders selected.":[null,""],"New Show":[null,""],"Trending Shows":[null,""],"Popular Shows":[null,""],"Most Anticipated Shows":[null,""],"Most Collected Shows":[null,""],"Most Watched Shows":[null,""],"Most Played Shows":[null,""],"Recommended Shows":[null,""],"New Shows":[null,""],"Season Premieres":[null,""],"Existing Show":[null,""],"No root directories setup, please go back and add one.":[null,""],"Show added":[null,""],"Adding the specified show {show_name}":[null,""],"Missing params, no Indexer ID or folder: {show_to_add} and {root_dir}/{show_path}":[null,""],"Unknown error. Unable to add show due to problem with show selection.":[null,""],"Unable to add show":[null,""],"Folder {show_dir} exists already":[null,""],"Unable to create the folder {show_dir}, can't add the show":[null,""],"Adding the specified show into {show_dir}":[null,""],"Shows Added":[null,""],"Automatically added {num_shows} from their existing metadata files":[null,""],"Mass Update":[null,""],"Episode Overview":[null,""],"Missing Subtitles":[null,""],"Backlog Overview":[null,""],"Mass Edit":[null,""],"Unable to update show: {excption_format}":[null,""],"Unable to refresh show {show_name}: {excption_format}":[null,""],"Errors encountered":[null,""],"Updates":[null,""],"Refreshes":[null,""],"Renames":[null,""],"Subtitles":[null,""],"The following actions were queued":[null,""],"Failed Downloads":[null,""],"Manage Searches":[null,""],"Backlog search started":[null,""],"Daily search started":[null,""],"Find propers search started":[null,""],"Subtitle search started":[null,""],"Remove Selected":[null,""],"Clear History":[null,""],"Trim History":[null,""],"Selected history entries removed":[null,""],"History cleared":[null,""],"Removed history entries older than 30 days":[null,""],"General":[null,""],"Backup/Restore":[null,""],"Search Settings":[null,""],"Search Providers":[null,""],"Subtitles Settings":[null,""],"Notifications":[null,""],"Anime":[null,""],"SickRage Configuration":[null,""],"Config - Shares":[null,""],"Windows Shares Configuration":[null,""],"Saved Shares":[null,""],"Your Windows share settings have been saved":[null,""],"Config - General":[null,""],"General Configuration":[null,""],"Saved Defaults":[null,""],"Your \"add show\" defaults have been set to your current selections.":[null,""],"Unable to create directory {directory}, log directory not changed.":[null,""],"Unable to create directory {directory}, https cert directory not changed.":[null,""],"Unable to create directory {directory}, https key directory not changed.":[null,""],"Error(s) Saving Configuration":[null,""],"Configuration Saved":[null,""],"Config - Backup/Restore":[null,""],"Config - Episode Search":[null,""],"Config - Post Processing":[null,""],"Unpacking Not Supported, disabling unpack setting":[null,""],"You tried saving an invalid normal naming config, not saving your naming settings":[null,""],"You tried saving an invalid anime naming config, not saving your naming settings":[null,""],"Config - Providers":[null,""],"No Provider Name specified":[null,""],"No Provider Url specified":[null,""],"No Provider Api key specified":[null,""],"Config - Notifications":[null,""],"Config - Subtitles":[null,""],"Config - Anime":[null,""],"Clear Errors":[null,""],"Clear Warnings":[null,""],"Submit Errors":[null,""],"Logs & Errors":[null,""],"Log File":[null,""],"Logs":[null,""],"This is a test notification from SickRage":[null,""],"Choose Directory":[null,""],"Select log file folder location":[null,""],"Select CSS file":[null,""],"Select backup folder to save to":[null,""],"Select backup files to restore":[null,""],"Please fill out the necessary fields above.":[null,""],"<b>Step 1:</b> Confirm Authorization":[null,""],"Check blacklist name; the value needs to be a trakt slug":[null,""],"You must provide a recipient email address!":[null,""],"You didn't supply a Pushbullet api key":[null,""],"Don't forget to save your new pushbullet settings.":[null,""],"Select TV Download Directory":[null,""],"Select Unpack Directory":[null,""],"This pattern is invalid.":[null,""],"This pattern would be invalid without the folders, using it will force \"Season Folders\" on for all shows.":[null,""],"This pattern is valid.":[null,""],"Select .nzb black hole/watch location":[null,""],"Select .torrent black hole/watch location":[null,""],"Select .torrent download location":[null,""],"Minimum seeding time is":[null,""],"URL to your uTorrent client (e.g. http://localhost:8000)":[null,""],"Stop seeding when inactive for":[null,""],"URL to your Transmission client (e.g. http://localhost:9091)":[null,""],"URL to your Deluge client (e.g. http://localhost:8112)":[null,""],"IP or Hostname of your Deluge Daemon (e.g. scgi://localhost:58846)":[null,""],"URL to your Synology DS client (e.g. http://localhost:5000)":[null,""],"URL to your rTorrent client (e.g. scgi://localhost:5000 <br> or https://localhost/rutorrent/plugins/httprpc/action.php)":[null,""],"URL to your qBittorrent client (e.g. http://localhost:8080)":[null,""],"URL to your MLDonkey (e.g. http://localhost:4080)":[null,""],"URL to your putio client (e.g. http://localhost:8080)":[null,""],"<a herf=\"https://app.put.io/oauth/apps/new\" target=\"_blank\"> Create a new OAuth app for put.io</a>":[null,""],"Put.io Parent Folder":[null,""],"Put.io OAuth Token":[null,""],"Show Episodes":[null,""],"Hide Episodes":[null,""],"Select Show Location":[null,""],"Select Unprocessed Episode Folder":[null,""],"DELETED":[null,""],"Resume updating the log on this page.":[null,""],"Pause updating the log on this page.":[null,""],"searching {searchingFor}...":[null,""],"search timed out, try again or try another indexer":[null,""],"loading folders...":[null,""],"Loading...":[null,""],"You have reached this page by accident, please check the url.":[null,""],"A mako error has occured.<br>\n If this happened during an update a simple page refresh may be the solution.<br>\n Mako errors that happen during updates may be a one time error if there were significant ui changes.":[null,""],"Show/Hide Error":[null,""],"Add New Show":[null,""],"For shows that you haven't downloaded yet, this option finds a show on theTVDB.com, creates a directory for it's episodes, and adds it to SickRage.":[null,""],"Add From Trakt Lists":[null,""],"For shows that you haven't downloaded yet, this option lets you choose from a show from one of the Trakt lists to add to SickRage.":[null,""],"Add From IMDB's Popular Shows":[null,""],"View IMDB's list of the most popular shows. This feature uses IMDB's MOVIEMeter algorithm to identify popular TV Series.":[null,""],"Add Existing Shows":[null,""],"Use this option to add shows that already have a folder created on your hard drive. SickRage will scan your existing metadata/episodes and add the show accordingly.":[null,""],"Add Existing Show":[null,""],"Manage Directories":[null,""],"Customize Options":[null,""],"SickRage can add existing shows, using the current options, by using locally stored NFO/XML metadata to eliminate user interaction. If you would rather have SickRage prompt you to customize each show, then use the checkbox below.":[null,""],"Prompt me to set settings for each show":[null,""],"Displaying folders within these directories which aren't already added to SickRage":[null,""],"Submit":[null,""],"Find a show on theTVDB":[null,""],"Show retrieved from existing metadata":[null,""],"All Indexers":[null,""],"Search":[null,""],"This will only affect the language of the retrieved metadata file contents and episode filenames.":[null,""],"This <b>DOES NOT</b> allow SickRage to download non-english TV episodes!":[null,""],"Pick the parent folder":[null,""],"Pre-chosen Destination Folder":[null,""],"Customize options":[null,""],"Add Show":[null,""],"Skip Show":[null,""],"Sort By":[null,""],"Name":[null,""],"Original":[null,""],"Votes":[null,""],"Rating":[null,""],"Rating > Votes":[null,""],"Sort Order":[null,""],"Asc":[null,""],"Desc":[null,""],"Fetching of IMDB Data failed. Are you online?":[null,""],"Exception":[null,""],"Select Trakt List":[null,""],"Most Anticipated":[null,""],"Trending":[null,""],"Popular":[null,""],"Most Watched":[null,""],"Most Played":[null,""],"Most Collected":[null,""],"Recommended":[null,""],"Toggle navigation":[null,""],"Profile":[null,""],"JSONP":[null,""],"Back to SickRage":[null,""],"Parameters":[null,""],"Required":[null,""],"Description":[null,""],"Type":[null,""],"Default value":[null,""],"Allowed values":[null,""],"Playground":[null,""],"Clear":[null,""],"Yes":[null,""],"No":[null,""],"season":[null,""],"episode":[null,""],"Python Version":[null,""],"SSL Version":[null,""],"OS":[null,""],"Locale":[null,""],"User":[null,""],"Program Folder":[null,""],"Config File":[null,""],"Database File":[null,""],"Cache Folder":[null,""],"Log Folder":[null,""],"Arguments":[null,""],"Web Root":[null,""],"Website":[null,""],"Wiki":[null,""],"Source":[null,""],"IRC Chat":[null,""],"AnimeDB Settings":[null,""],"Look & Feel":[null,""],"AniDB is non-profit database of anime information that is freely open to the public":[null,""],"Enable":[null,""],"should SickRage use data from AniDB?":[null,""],"AniDB Username":[null,""],"username of your AniDB account":[null,""],"AniDB Password":[null,""],"password of your AniDB account":[null,""],"AniDB MyList":[null,""],"do you want to add the PostProcessed episodes to the MyList?":[null,""],"Look and Feel":[null,""],"How should the anime functions show and behave.":[null,""],"Split show lists":[null,""],"separate anime and normal shows in groups":[null,""],"Split in tabs":[null,""],"use tabs for when splitting show lists":[null,""],"Restore":[null,""],"Backup your main database file and config.":[null,""],"Select the folder you wish to save your backup file to":[null,""],"Restore your main database file and config.":[null,""],"Select the backup file you wish to restore":[null,""],"Misc":[null,""],"Interface":[null,""],"Advanced Settings":[null,""],"Startup options. Indexer options. Log and show file locations.":[null,""],"Some options may require a manual restart to take effect.":[null,""],"Default Indexer Language":[null,""],"for adding shows and metadata providers":[null,""],"Launch browser":[null,""],"open the SickRage home page on startup":[null,""],"Initial page":[null,""],"Shows":[null,""],"when launching SickRage interface":[null,""],"Choose hour to update shows":[null,""],"with information such as next air dates, show ended, etc. Use 15 for 3pm, 4 for 4am etc.":[null,""],"note":[null,""],"minutes are randomized each time SickRage is started":[null,""],"Send to trash for actions":[null,""],"when using show \"Remove\" and delete files":[null,""],"on scheduled deletes of the oldest log files":[null,""],"selected actions use trash (recycle bin) instead of the default permanent delete":[null,""],"Log file folder location":[null,""],"Number of Log files saved":[null,""],"number of log files saved when rotating logs (default: 5) (REQUIRES RESTART)":[null,""],"Size of Log files saved":[null,""],"maximum size in MB of the log file (default: 1MB) (REQUIRES RESTART)":[null,""],"Use initial indexer set to":[null,""],"as the default selection when adding new shows":[null,""],"Timeout show indexer at":[null,""],"seconds of inactivity when finding new shows (default:20)":[null,""],"Show root directories":[null,""],"where the files of shows are located":[null,""],"Save Changes":[null,""],"Options for software updates.":[null,""],"Check software updates":[null,""],"and display notifications when updates are available. Checks are run on startup and at the frequency set below*":[null,""],"Automatically update":[null,""],"fetch and install software updates. Updates are run on startup and in the background at the frequency set below*":[null,""],"Check the server every*":[null,""],"hours for software updates (default:1)":[null,""],"Notify on software update":[null,""],"send a message to all enabled notifiers when SickRage has been updated":[null,""],"User Interface":[null,""],"Options for visual appearance.":[null,""],"Interface Language":[null,""],"System Language":[null,""],"for appearance to take effect, save then refresh your browser":[null,""],"Display theme":[null,""],"Dark":[null,""],"Light":[null,""],"Use a background image":[null,""],"use a custom image as background for SickRage":[null,""],"Background Path":[null,""],"Path to the background image":[null,""],"Show fanart in the background":[null,""],"on the show summary page":[null,""],"Fanart transparency":[null,""],"transparency of the fanart in the background":[null,""],"Use a custom stylesheet file":[null,""],"use a custom .css file to style SickRage (for advanced users)":[null,""],"Stylesheet File Path":[null,""],"Path to the stylesheet (.css) file":[null,""],"Show all seasons":[null,""],"Sort with \"The\", \"A\", \"An\"":[null,""],"include articles (\"The\", \"A\", \"An\") when sorting show lists":[null,""],"Missed episodes range":[null,""],"set the range in days of the missed episodes in the Schedule page":[null,""],"Display fuzzy dates":[null,""],"move absolute dates into tooltips and display e.g. \"Last Thu\", \"On Tue\"":[null,""],"Trim zero padding":[null,""],"remove the leading number \"0\" shown on hour of day, and date of month":[null,""],"Date style":[null,""],"Use System Default":[null,""],"Time style":[null,""],"seconds are only shown on the History page":[null,""],"Timezone":[null,""],"Local":[null,""],"Network":[null,""],"display dates and times in either your timezone or the shows network timezone":[null,""],"use local timezone to start searching for episodes minutes after show ends (depends on your dailysearch frequency)":[null,""],"Download url":[null,""],"URL where the shows can be downloaded.":[null,""],"Web Interface":[null,""],"it is recommended that you enable a username and password to secure SickRage from being tampered with remotely.":[null,""],"these options require a manual restart to take effect.":[null,""],"API key":[null,""],"used to give 3rd party programs limited access to SickRage":[null,""],"you can try all the features of the API":[null,""],"here":[null,""],"HTTP logs":[null,""],"enable logs from the internal Tornado web server":[null,""],"HTTP username":[null,""],"set blank for no login":[null,""],"HTTP password":[null,""],"blank = no authentication":[null,""],"HTTP port":[null,""],"web port to browse and access SickRage (default:8081)":[null,""],"Notify on login":[null,""],"enable to be notified when a new login happens in webserver":[null,""],"Listen on IPv6":[null,""],"attempt binding to any available IPv6 address":[null,""],"Enable HTTPS":[null,""],"enable access to the web interface using a HTTPS address":[null,""],"HTTPS certificate":[null,""],"file name or path to HTTPS certificate":[null,""],"HTTPS key":[null,""],"file name or path to HTTPS key":[null,""],"Reverse proxy headers":[null,""],"accept the following reverse proxy headers (advanced)...":[null,""],"(X-Forwarded-For, X-Forwarded-Host, and X-Forwarded-Proto)":[null,""],"CPU throttling":[null,""],"Normal (default). High is lower and Low is higher CPU use":[null,""],"Anonymous redirect":[null,""],"backlink protection via anonymizer service, must end in \"?\"":[null,""],"Enable debug":[null,""],"enable debug logs":[null,""],"Verify SSL Certs":[null,""],"verify SSL Certificates (Disable this for broken SSL installs (Like QNAP))":[null,""],"No Restart":[null,""],"only shutdown when restarting SR":[null,""],"only select this when you have external software restarting SR automatically when it stops (like FireDaemon)":[null,""],"Encrypt passwords":[null,""],"in the <code>config.ini</code> file":[null,""],"warning":[null,""],"passwords must only contain":[null,""],"ASCII characters":[null,""],"Unprotected calendar":[null,""],"allow subscribing to the calendar without user and password":[null,""],"some services like Google Calendar only work this way":[null,""],"Google Calendar Icons":[null,""],"show an icon next to exported calendar events in Google Calendar":[null,""],"Proxy host":[null,""],"blank to disable or proxy to use when connecting to providers":[null,""],"also use global proxy setting for indexers (tvdb, xem, anidb, etc.)":[null,""],"Skip Remove Detection":[null,""],"skip detection of removed files":[null,""],"if disabled the episode will be set to the default deleted status":[null,""],"Default deleted episode status":[null,""],"define the status to be set for media file that has been deleted.":[null,""],"Archived option will keep previous downloaded quality":[null,""],"example: Downloaded (1080p WEB-DL) ==> Archived (1080p WEB-DL)":[null,""],"Options for github related features.":[null,""],"Branch version":[null,""],"error: No branches found.":[null,""],"select branch to use (restart required)":[null,""],"Authorization Type":[null,""],"Username and password":[null,""],"Personal access token":[null,""],"You must use a personal access token if you're using \"two-factor authentication\" on GitHub.":[null,""],"GitHub username":[null,""],"*** (REQUIRED FOR SUBMITTING ISSUES) ***":[null,""],"GitHub password":[null,""],"GitHub personal access token":[null,""],"Generate Token":[null,""],"Manage Tokens":[null,""],"GitHub remote for branch":[null,""],"access repo configured remotes (save then refresh browser)":[null,""],"default":[null,""],"origin":[null,""],"Git executable path":[null,""],"only needed if OS is unable to locate git from env":[null,""],"Git reset":[null,""],"removes untracked files and performs a hard reset on git branch automatically to help resolve update issues":[null,""],"Home Theater / NAS":[null,""],"Devices":[null,""],"Social":[null,""],"A free and open source cross-platform media center and home entertainment system software with a 10-foot user interface designed for the living-room TV.":[null,""],"send KODI commands?":[null,""],"Always on":[null,""],"log errors when unreachable?":[null,""],"Notify on snatch":[null,""],"send a notification when a download starts?":[null,""],"Notify on download":[null,""],"send a notification when a download finishes?":[null,""],"Notify on subtitle download":[null,""],"send a notification when subtitles are downloaded?":[null,""],"Update library":[null,""],"update KODI library when a download finishes?":[null,""],"Full library update":[null,""],"perform a full library update if update per-show fails?":[null,""],"Only update first host":[null,""],"only send library updates to the first active host?":[null,""],"KODI IP:Port":[null,""],"host running KODI (eg. 192.168.1.100:8080)":[null,""],"(multiple host strings must be separated by commas)":[null,""],"Username":[null,""],"username for your KODI server (blank for none)":[null,""],"Password":[null,""],"password for your KODI server (blank for none)":[null,""],"Click below to test.":[null,""],"Experience your media on a visually stunning, easy to use interface on your Mac connected to your TV. Your media library has never looked this good!":[null,""],"For sending notifications to Plex Home Theater (PHT) clients, use the KODI notifier with port <b>3005</b>.":[null,""],"send Plex Media Server library updates?":[null,""],"Plex Media Server Auth Token":[null,""],"auth token used by Plex":[null,""],"Update Library":[null,""],"update Plex Media Server library when a download finishes":[null,""],"Plex Media Server IP:Port":[null,""],"one or more hosts running Plex Media Server<br/>(eg. 192.168.1.1:32400, 192.168.1.2:32400)":[null,""],"HTTPS":[null,""],"use https for plex media server requests?":[null,""],"Click below to test Plex Media Server(s)":[null,""],"Test Plex Media Server":[null,""],"Plex Home Theater":[null,""],"send Plex Home Theater notifications?":[null,""],"Plex Home Theater IP:Port":[null,""],"one or more hosts running Plex Home Theater<br>(eg. 192.168.1.100:3000, 192.168.1.101:3000)":[null,""],"Click below to test Plex Home Theater(s)":[null,""],"Test Plex Home Theater":[null,""],"some Plex Home Theaters <b class=\"boldest\">do not</b> support notifications e.g. Plexapp for Samsung TVs":[null,""],"Emby":[null,""],"A home media server built using other popular open source technologies.":[null,""],"send update commands to Emby?":[null,""],"Emby IP:Port":[null,""],"host running Emby (eg. 192.168.1.100:8096)":[null,""],"Emby API Key":[null,""],"Networked Media Jukebox":[null,""],"The Networked Media Jukebox, or NMJ, is the official media jukebox interface made available for the Popcorn Hour 200-series.":[null,""],"send update commands to NMJ?":[null,""],"Popcorn IP address":[null,""],"IP address of Popcorn 200-series (eg. 192.168.1.100)":[null,""],"Get settings":[null,""],"Get Settings":[null,""],"the Popcorn Hour device must be powered on and NMJ running.":[null,""],"NMJ database":[null,""],"automatically filled via the 'Get Settings' button.":[null,""],"NMJ mount url":[null,""],"Networked Media Jukebox v2":[null,""],"The Networked Media Jukebox, or NMJv2, is the official media jukebox interface made available for the Popcorn Hour 300 & 400-series.":[null,""],"send update commands to NMJv2?":[null,""],"IP address of Popcorn 300/400-series (eg. 192.168.1.100)":[null,""],"Database location":[null,""],"Database instance":[null,""],"adjust this value if the wrong database is selected.":[null,""],"Find database":[null,""],"Find Database":[null,""],"the Popcorn Hour device must be powered on.":[null,""],"NMJv2 database":[null,""],"automatically filled via the 'Find Database' buttons.":[null,""],"Synology":[null,""],"The Synology DiskStation NAS.":[null,""],"Synology Indexer is the daemon running on the Synology NAS to build its media database.":[null,""],"send Synology notifications?":[null,""],"requires SickRage to be running on your Synology NAS.":[null,""],"Synology Indexer":[null,""],"Synology Notifier is the notification system of Synology DSM":[null,""],"send notifications to the Synology Notifier?":[null,""],"pyTivo":[null,""],"pyTivo is both an HMO and GoBack server. This notifier will load the completed downloads to your Tivo.":[null,""],"send notifications to pyTivo?":[null,""],"requires the downloaded files to be accessible by pyTivo.":[null,""],"pyTivo IP:Port":[null,""],"host running pyTivo (eg. 192.168.1.1:9032)":[null,""],"pyTivo share name":[null,""],"value used in pyTivo Web Configuration to name the share.":[null,""],"Tivo name":[null,""],"(Messages & Settings > Account & System Information > System Information > DVR name)":[null,""],"Growl":[null,""],"A cross-platform unobtrusive global notification system.":[null,""],"send Growl notifications?":[null,""],"Growl IP:Port":[null,""],"host running Growl (eg. 192.168.1.100:23053)":[null,""],"may leave blank if SickRage is on the same host.":[null,""],"otherwise Growl <b>requires</b> a password to be used.":[null,""],"Click below to register and test Growl, this is required for Growl notifications to work.":[null,""],"Register Growl":[null,""],"Prowl":[null,""],"A Growl client for iOS.":[null,""],"send Prowl notifications?":[null,""],"Prowl Message Title":[null,""],"Global Prowl API key(s)":[null,""],"Prowl API(s) listed here, separated by commas if applicable, will<br> receive notifications for <b>all</b> shows. Your Prowl API key is available at:":[null,""],"(this field may be blank except when testing.)":[null,""],"Show notification list":[null,""],"-- Select a Show --":[null,""],"Configure per-show notifications here by entering Prowl API key(s), separated by commas, '\n 'after selecting a show in the drop-down box. Be sure to activate the 'Save for this show' '\n 'button below after each entry.":[null,""],"Save for this show":[null,""],"Prowl priority":[null,""],"Very Low":[null,""],"Moderate":[null,""],"Normal":[null,""],"High":[null,""],"Emergency":[null,""],"priority of Prowl messages from SickRage.":[null,""],"Libnotify":[null,""],"The standard desktop notification API for Linux/*nix systems. This notifier will only function if the pynotify module is installed (Ubuntu/Debian package <a href=\"apt:python-notify\">python-notify</a>).":[null,""],"send Libnotify notifications?":[null,""],"Pushover":[null,""],"Pushover makes it easy to send real-time notifications to your Android and iOS devices.":[null,""],"send Pushover notifications?":[null,""],"Pushover key":[null,""],"user key of your Pushover account":[null,""],"Pushover API key":[null,""],"click here":[null,""]," to create a Pushover API key":[null,""],"Pushover devices":[null,""],"comma separated list of pushover devices you want to send notifications to":[null,""],"Pushover notification sound":[null,""],"Bike":[null,""],"Bugle":[null,""],"Cash Register":[null,""],"Classical":[null,""],"Cosmic":[null,""],"Falling":[null,""],"Gamelan":[null,""],"Incoming":[null,""],"Intermission":[null,""],"Magic":[null,""],"Mechanical":[null,""],"Piano Bar":[null,""],"Siren":[null,""],"Space Alarm":[null,""],"Tug Boat":[null,""],"Alien Alarm (long)":[null,""],"Climb (long)":[null,""],"Persistent (long)":[null,""],"Pushover Echo (long)":[null,""],"Up Down (long)":[null,""],"None (silent)":[null,""],"Device specific":[null,""],"choose notification sound to use":[null,""],"Pushover priority":[null,""],"Choose priority to use":[null,""],"Boxcar 2":[null,""],"Read your messages where and when you want them!":[null,""],"send Boxcar notifications?":[null,""],"Boxcar2 access token":[null,""],"access token for your Boxcar account.":[null,""],"NMA":[null,""],"Notify My Android":[null,""],"Notify My Android is a Prowl-like Android App and API that offers an easy way to send notifications from your application directly to your Android device.":[null,""],"send NMA notifications?":[null,""],"NMA API key":[null,""],"(multiple keys must be separated by commas, up to a maximum of 5)":[null,""],"NMA priority":[null,""],"priority of NMA messages from SickRage.":[null,""],"Pushalot":[null,""],"Pushalot is a platform for receiving custom push notifications to connected devices running Windows Phone or Windows 8.":[null,""],"send Pushalot notifications ?":[null,""],"Pushalot authorization token":[null,""],"authorization token of your Pushalot account.":[null,""],"Pushbullet":[null,""],"Pushbullet is a platform for receiving custom push notifications to connected devices running Android/iOS and desktop browsers such as Chrome, Firefox or Opera.":[null,""],"send Pushbullet notifications?":[null,""],"Pushbullet API key":[null,""],"API key of your Pushbullet account":[null,""],"Pushbullet devices":[null,""],"Update device list":[null,""],"Pushbullet channels":[null,""],"Free Mobile":[null,""],"Free Mobile is a famous French cellular network provider.<br> It provides to their customer a free SMS API.":[null,""],"send SMS notifications?":[null,""],"send a SMS when a download starts?":[null,""],"send a SMS when a download finishes?":[null,""],"send a SMS when subtitles are downloaded?":[null,""],"Free Mobile customer ID":[null,""],"it's your Free Mobile customer ID (8 digits)":[null,""],"Free Mobile API key":[null,""],"find your API key in your customer portal.":[null,""],"Click below to test your settings.":[null,""],"Telegram":[null,""],"Telegram is a cloud-based instant messaging service.":[null,""],"send Telegram notifications?":[null,""],"send a message when a download starts?":[null,""],"send a message when a download finishes?":[null,""],"send a message when subtitles are downloaded?":[null,""],"User/group ID":[null,""],"contact @myidbot on Telegram to get an ID":[null,""],"Bot API token":[null,""],"contact @BotFather on Telegram to set up one":[null,""],"Join":[null,""],"Join all of your devices together!":[null,""],"send Join notifications?":[null,""],"Device ID":[null,""],"per device specific id":[null,""]," to create a Join API key":[null,""],"Twilio":[null,""],"Twilio is a webservice API that allows you to communicate directly with a mobile number. This notifier will send a text directly to your mobile device.":[null,""],"should SickRage text your mobile device?":[null,""],"Twilio Account SID":[null,""],"account SID of your Twilio account.":[null,""],"Twilio Auth Token":[null,""],"Twilio Phone SID":[null,""],"phone SID that you would like to send the sms from":[null,""],"Your phone number":[null,""],"phone number that will receive the sms. Please use the format +1-###-###-####":[null,""],"Twitter":[null,""],"A social networking and microblogging service, enabling its users to send and read other users' messages called tweets.":[null,""],"should SickRage post tweets on Twitter?":[null,""],"you may want to use a secondary account.":[null,""],"send direct message":[null,""],"send a notification via Direct Message, not via status update":[null,""],"send DM to":[null,""],"Twitter account to send Direct Messages to (must follow you)":[null,""],"Step One":[null,""],"Request Authorization":[null,""],"Click the \"Request Authorization\" button.<br> This will open a new page containing an auth key.<br> <b>note:</b> if nothing happens check your popup blocker.":[null,""],"Step Two":[null,""],"Enter the key Twitter gave you below, and click \"Verify Key\".":[null,""],"Trakt":[null,""],"Trakt helps keep a record of what TV shows and movies you are watching. Based on your favorites, Trakt recommends additional shows and movies you'll enjoy!":[null,""],"send Trakt.tv notifications?":[null,""],"username of your Trakt account.":[null,""],"Trakt PIN":[null,""],"Get Trakt PIN":[null,""],"PIN code to authorize SickRage to access Trakt on your behalf.":[null,""],"API Timeout":[null,""],"seconds to wait for Trakt API to respond. (Use 0 to wait forever)":[null,""],"Default indexer":[null,""],"Sync libraries":[null,""],"sync your SickRage show library with your trakt show library.":[null,""],"Remove Episodes From Collection":[null,""],"remove an episode from your Trakt Collection if it is not in your SickRage Library.":[null,""],"Sync watchlist":[null,""],"sync your SickRage show watchlist with your trakt show watchlist (either Show and Episode).":[null,""],"episode will be added on watch list when wanted or snatched and will be removed when downloaded ":[null,""],"Watchlist add method":[null,""],"Skip All":[null,""],"Download Pilot Only":[null,""],"Get whole show":[null,""],"method in which to download episodes for new shows.":[null,""],"Remove episode":[null,""],"remove an episode from your watchlist after it is downloaded.":[null,""],"Remove series":[null,""],"remove the whole series from your watchlist after any download.":[null,""],"Remove watched show":[null,""],"remove the show from sickrage if it's ended and completely watched":[null,""],"Start paused":[null,""],"shows grabbed from your trakt watchlist start paused.":[null,""],"Trakt blackList name":[null,""],"name (slug) of list on Trakt for blacklisting show on 'Add Trending Show' & 'Add Recommended Shows' pages":[null,""],"Email":[null,""],"Allows configuration of email notifications on a per show basis.":[null,""],"send email notifications?":[null,""],"SMTP host":[null,""],"hostname of your SMTP email server.":[null,""],"SMTP port":[null,""],"port number used to connect to your SMTP host.":[null,""],"SMTP from":[null,""],"sender email address, some hosts require a real address.":[null,""],"Use TLS":[null,""],"check to use TLS encryption.":[null,""],"SMTP user":[null,""],"(optional) your SMTP server username.":[null,""],"SMTP password":[null,""],"(optional) your SMTP server password.":[null,""],"Global email list":[null,""],"email addresses listed here, separated by commas if applicable, will<br> receive notifications for <b>all</b> shows.":[null,""],"(This field may be blank except when testing.)":[null,""],"Email Subject":[null,""],"use a custom subject for some privacy protection?":[null,""],"(leave blank for the default SickRage subject)":[null,""],"configure per-show notifications here by entering email address(es), separated by commas,":[null,""],"after selecting a show in the drop-down box. Be sure to activate the 'Save for this show'":[null,""],"button below after each entry.":[null,""],"Slack":[null,""],"Slack brings all your communication together in one place. It's real-time messaging, archiving and search for modern teams.":[null,""],"should SickRage post messages on Slack?":[null,""],"Slack Incoming Webhook":[null,""],"Discord":[null,""],"All-in-one voice and text chat for gamers that's free, secure, and works on both your desktop and phone.":[null,""],"Should SickRage post messages on Discord?":[null,""],"Discord Incoming Webhook":[null,""],"Create webhook under channel settings.":[null,""],"Discord Bot Name":[null,""],"Blank will use webhook default Name.":[null,""],"Discord Avatar URL":[null,""],"Blank will use webhook default Avatar.":[null,""],"Discord TTS":[null,""],"Send notifications using text-to-speech":[null,""],"Post-Processing":[null,""],"Episode Naming":[null,""],"Metadata":[null,""],"Settings that dictate how SickRage should process completed downloads.":[null,""],"enable the automatic post processor to scan and process any files in your Post Processing Dir":[null,""],"do not use if you use an external Post Processing script":[null,""],"Post Processing Dir":[null,""],"the folder where your download client puts the completed TV downloads.":[null,""],"please use seperate downloading and completed folders in your download client if possible.":[null,""],"Processing Method":[null,""],"what method should be used to put files into the library?":[null,""],"if you keep seeding torrents after they finish, please avoid the 'move' processing method to prevent errors.":[null,""],"Auto Post-Processing Frequency":[null,""],"time in minutes to check for new files to auto post-process (min 10)":[null,""],"Postpone post processing":[null,""],"wait to process a folder if sync files are present.":[null,""],"Sync File Extensions":[null,""],"comma seperated list of extensions or filename globs SickRage ignores when Post Processing":[null,""],"Rename Episodes":[null,""],"rename episode using the Episode Naming settings?":[null,""],"Create missing show directories":[null,""],"create missing show directories when they get deleted":[null,""],"Add shows without directory":[null,""],"add shows without creating a directory (not recommended)":[null,""],"Move associated files":[null,""],"move associated (srt/srr/sfv/etc) files while post processing?":[null,""],"Rename .nfo file":[null,""],"rename the original .nfo file to .nfo-orig to avoid conflicts?":[null,""],"Associated file extensions":[null,""],"comma separated list of associated file extensions SickRage should keep while post processing.":[null,""],"leaving it empty means no associated files will be post processed":[null,""],"Delete non associated files":[null,""],"delete non associated files while post processing?":[null,""],"Change File Date":[null,""],"set last modified filedate to the date that the episode aired?":[null,""],"some systems may ignore this feature.":[null,""],"Timezone for File Date":[null,""],"local":[null,""],"network":[null,""],"what timezone should be used to change File Date?":[null,""],"Unpack":[null,""],"What to do with archived releases found in your <i>TV Download Dir</i>?":[null,""],"Ignore (do not process contents)":[null,""],"Unpack (process contents)":[null,""],"Treat as video (process archive as-is)":[null,""],"'Unpack' only works with RAR archives":[null,""],"Windows":[null,""],"WinRar is required on windows":[null,""],"Unpack Directory":[null,""],"Choose a path to unpack files, leave blank to unpack in download dir":[null,""],"Unrar Location":[null,""],"add the path to unrar if it is not in the system path":[null,""],"Alternate Unrar Tool":[null,""],"add the path to an alternate unrar tool if it is not in the system path":[null,""],"Delete RAR contents":[null,""],"delete content of RAR files, even if Process Method not set to move?":[null,""],"only working with RAR archive":[null,""],"Don't delete empty folders":[null,""],"leave empty folders when Post Processing?":[null,""],"can be overridden using manual Post Processing":[null,""],"Follow symbolic-links":[null,""],"follow down symbolic links in download directory?":[null,""],"<b>EXPERTS ONLY.</b><br>Enable only if you know what <b>circular symbolic links</b> are,<br>and can <b>verify that you have none</b>.":[null,""],"Use icacls":[null,""],"Windows only":[null,""],"sets video permissions after using the move method in post processing":[null,""],"Extra Scripts":[null,""],"see":[null,""],"for script arguments description and usage.":[null,""],"How SickRage will name and sort your episodes.":[null,""],"Name Pattern":[null,""],"Toggle Naming Legend":[null,""],"don't forget to add quality pattern. Otherwise after post-processing the episode will have UNKNOWN quality":[null,""],"Meaning":[null,""],"Pattern":[null,""],"Result":[null,""],"Use lower case if you want lower case names (eg. %sn, %e.n, %q_n etc)":[null,""],"Show Name":[null,""],"Show.Name":[null,""],"Show_Name":[null,""],"Season Number":[null,""],"XEM Season Number":[null,""],"Episode Number":[null,""],"XEM Episode Number":[null,""],"Episode Name":[null,""],"Episode.Name":[null,""],"Episode_Name":[null,""],"Air Date":[null,""],"Post-Processing Date":[null,""],"Quality":[null,""],"Scene Quality":[null,""],"Release Name":[null,""],"SickRage' is used in place of RLSGROUP if it could not be properly detected":[null,""],"Release Group":[null,""],"If episode is proper/repack add 'proper' to name.":[null,""],"Release Type":[null,""],"Multi-Episode Style":[null,""],"Single-EP Sample":[null,""],"Multi-EP sample":[null,""],"Strip Show Year":[null,""],"remove the TV show's year when renaming the file?":[null,""],"only applies to shows that have year inside parentheses":[null,""],"Custom Air-By-Date":[null,""],"name air-by-date shows differently than regular shows?":[null,""],"Toggle ABD Naming Legend":[null,""],"Regular Air Date":[null,""],"Year":[null,""],"Month":[null,""],"Day":[null,""],"Multi-EP style is ignored":[null,""],"Custom Sports":[null,""],"name sports shows differently than regular shows?":[null,""],"Toggle Sports Naming Legend":[null,""],"Sports Air Date":[null,""],"Custom Anime":[null,""],"name anime shows differently than regular shows?":[null,""],"Toggle Anime Naming Legend":[null,""],">XEM Season Number":[null,""],"Single-EP Anime Sample":[null,""],"Multi-EP Anime sample":[null,""],"Add Absolute Number":[null,""],"add the absolute number to the season/episode format?":[null,""],"only applies to anime. (eg. S15E45 - 310 vs S15E45)":[null,""],"Only Absolute Number":[null,""],"replace season/episode format with absolute number":[null,""],"only applies to anime.":[null,""],"No Absolute Number":[null,""],"don't include the absolute number":[null,""],"The data associated to the data. These are files associated to a TV show in the form of images and text that, when supported, will enhance the viewing experience.":[null,""],"Metadata Type":[null,""],"toggle metadata options that you wish to be created":[null,""],"multiple targets may be used":[null,""],"Select Metadata":[null,""],"Provider Priorities":[null,""],"Provider Options":[null,""],"Configure Custom Newznab Providers":[null,""],"Configure Custom Torrent Providers":[null,""],"Check off and drag the providers into the order you want them to be used.":[null,""],"At least one provider is required but two are recommended.":[null,""],"Torrent providers can be toggled in ":[null,""],"Provider does not support backlog searches at this time.":[null,""],"Provider is <b>NOT WORKING</b>.":[null,""],"Configure individual provider settings here.":[null,""],"Check with provider's website on how to obtain an API key if needed.":[null,""],"Configure provider":[null,""],"no providers available to configure.":[null,""],"URL":[null,""],"Enable daily searches":[null,""],"enable provider to perform daily searches.":[null,""],"Enable backlog searches":[null,""],"enable provider to perform backlog searches.":[null,""],"Season search mode":[null,""],"when searching for complete seasons you can choose to have it look for season packs only, or choose to have it build a complete season from just single episodes.":[null,""],"season packs only.":[null,""],"episodes only.":[null,""],"Enable fallback":[null,""],"when searching for a complete season depending on search mode you may return no results, this helps by restarting the search using the opposite search mode.":[null,""],"Custom URL":[null,""],"the URL should include the protocol (and port if applicable). Examples: http://192.168.1.4/ or http://localhost:3000/":[null,""],"Api key":[null,""],"Digest":[null,""],"Hash":[null,""],"Passkey":[null,""],"Cookies":[null,""],"example: uid=1234;pass=567845439634987<br>note: uid and pass are not your username/password.<br>use DevTools or Firebug to get these values after logging in on your browser.":[null,""],"Pin":[null,""],"Seed ratio":[null,""],"stop transfer when ratio is reached<br>(-1 SickRage default to seed forever, or leave blank for downloader default)":[null,""],"Minimum seeders":[null,""],"Minimum leechers":[null,""],"Confirmed download":[null,""],"only download torrents from trusted or verified uploaders ?":[null,""],"Ranked torrents":[null,""],"only download ranked torrents (trusted releases)":[null,""],"English torrents":[null,""],"only download english torrents, or torrents containing english subtitles":[null,""],"For Spanish torrents":[null,""],"ONLY search on this provider if show info is defined as \"Spanish\" (avoid provider's use for VOS shows)":[null,""],"Sorting results by":[null,""],"Freeleech":[null,""],"only download <b>\"FreeLeech\"</b> torrents.":[null,""],"Category":[null,""],"select torrent with Italian subtitle":[null,""],"Configure Custom<br>Newznab Providers":[null,""],"Add and setup or remove custom Newznab providers.":[null,""],"Select provider":[null,""],"-- add new provider --":[null,""],"Provider name":[null,""],"Site URL":[null,""],"Newznab search categories":[null,""],"select your Newznab categories on the left, and click the \"update categories\" button to use them for searching.) <b>don't forget to to save the form!":[null,""],"Update Categories":[null,""],"Add":[null,""],"Delete":[null,""],"Add and setup or remove custom RSS providers.":[null,""],"RSS URL":[null,""],"Search element":[null,""],"eg: title":[null,""],"Episode Search":[null,""],"NZB Search":[null,""],"Torrent Search":[null,""],"How to manage searching with":[null,""],"Randomize Providers":[null,""],"randomize the provider search order instead of going in order of placement":[null,""],"Download propers":[null,""],"replace original download with \"Proper\" or \"Repack\" if nuked":[null,""],"Check propers every":[null,""],"24 hours":[null,""],"4 hours":[null,""],"90 mins":[null,""],"45 mins":[null,""],"15 mins":[null,""],"Backlog search day(s)":[null,""],"number of day(s) that the \"Forced Backlog Search\" will cover (e.g. 7 Days)":[null,""],"Backlog search frequency":[null,""],"time in minutes between searches (min.":[null,""],"Daily search frequency":[null,""],"Usenet retention":[null,""],"age limit in days for usenet articles to be used (e.g. 500)":[null,""],"Ignore words":[null,""],"results with one or more word from this list will be ignored<br>separate words with a comma, e.g. \"word1,word2,word3\"":[null,""],"Require words":[null,""],"results with no word from this list will be ignored<br>separate words with a comma, e.g. \"word1,word2,word3\"":[null,""],"Trackers list":[null,""],"trackers that will be added to magnets without trackers<br>separate trackers with a comma, e.g. \"tracker1,tracker2,tracker3\"":[null,""],"Ignore language names in subbed results":[null,""],"ignore subbed releases based on language names <br>\n Example: \"dk\" will ignore words: dksub, dksubs, dksubbed, dksubed <br>\n separate languages with a comma, e.g. \"lang1,lang2,lang3":[null,""],"Allow high priority":[null,""],"set downloads of recently aired episodes to high priority":[null,""],"Use Failed Downloads":[null,""],"use Failed Download Handling?":[null,""],"will only work with snatched/downloaded episodes after enabling this":[null,""],"Delete Failed":[null,""],"delete files left over from a failed download?":[null,""],"this only works if Use Failed Downloads is enabled.":[null,""],"How to handle NZB search results.":[null,""],"Search NZBs":[null,""],"enable NZB search providers":[null,""],"Send .nzb files to":[null,""],"SABnzbd server URL":[null,""],"URL to your SABnzbd server (e.g. http://localhost:8080/)":[null,""],"SABnzbd username":[null,""],"(blank for none)":[null,""],"SABnzbd password":[null,""],"SABnzbd API key":[null,""],"locate at... SABnzbd Config -> General -> API Key":[null,""],"Use SABnzbd category":[null,""],"add downloads to this category (e.g. TV)":[null,""],"Use SABnzbd category (backlog episodes)":[null,""],"add downloads of old episodes to this category (e.g. TV)":[null,""],"Use SABnzbd category for anime":[null,""],"add anime downloads to this category (e.g. anime)":[null,""],"Use SABnzbd category for anime (backlog episodes)":[null,""],"add anime downloads of old episodes to this category (e.g. anime)":[null,""],"Use forced priority":[null,""],"enable to change priority from HIGH to FORCED":[null,""],"Black hole folder location":[null,""],"<b>.nzb</b> files are stored at this location for external software to find and use":[null,""],"Connect using HTTPS":[null,""],"enable Secure control in NZBGet and set the correct Secure Port here":[null,""],"NZBget host:port":[null,""],"(e.g. localhost:6789)":[null,""],"NZBget RPC host name and port number (not NZBgetweb!)":[null,""],"NZBget username":[null,""],"locate in nzbget.conf (default:nzbget)":[null,""],"NZBget password":[null,""],"locate in nzbget.conf (default:tegbzn6789)":[null,""],"Use NZBget category":[null,""],"send downloads marked this category (e.g. TV)":[null,""],"Use NZBget category (backlog episodes)":[null,""],"send downloads of old episodes marked this category (e.g. TV)":[null,""],"Use NZBget category for anime":[null,""],"send anime downloads marked this category (e.g. anime)":[null,""],"Use NZBget category for anime (backlog episodes)":[null,""],"send anime downloads of old episodes marked this category (e.g. anime)":[null,""],"NZBget priority":[null,""],"Very low":[null,""],"Low":[null,""],"Very high":[null,""],"Force":[null,""],"priority for daily snatches (no backlog)":[null,""],"Torrent host:port":[null,""],"URL to your Synology DSM (e.g. http://localhost:5000/)":[null,""],"Client username":[null,""],"Client password":[null,""],"Downloaded files location":[null,""],"where Synology Download Station will save downloaded files (blank for client default)":[null,""],"the destination has to be a shared folder for Synology DS":[null,""],"Click below to test":[null,""],"How to handle Torrent search results.":[null,""],"Search torrents":[null,""],"enable torrent search providers":[null,""],"Send .torrent files to":[null,""],"<b>.torrent</b> files are stored at this location for external software to find and use":[null,""],"URL to your torrent client (e.g. http://localhost:8000/)":[null,""],"Torrent RPC URL":[null,""],"the path without leading and trailing slashes (e.g. transmission)":[null,""],"Http Authentication":[null,""],"Verify certificate":[null,""],"disable if you get \"Deluge: Authentication Error\" in your log":[null,""],"verify SSL certificates for HTTPS requests":[null,""],"Add label to torrent":[null,""],"(blank spaces are not allowed)":[null,""],"label plugin must be enabled in Deluge clients":[null,""],"for QBitTorrent 3.3.1 and up":[null,""],"Add label to torrent for anime":[null,""],"for QBitTorrent 3.3.1 and up ":[null,""],"where <span id=\"torrent_client\">the torrent client</span> will save downloaded files (blank for client default)":[null,""],"the destination has to be a shared folder for Synology DS</span>":[null,""],"Minimum seeding time":[null,""],"time in hours":[null,""],"(default:'0' passes blank to client and '-1' passes nothing)":[null,""],"Start torrent paused":[null,""],"add .torrent to client but do <b style=\"font-weight:900\">not</b> start downloading":[null,""],"Allow high bandwidth":[null,""],"use high bandwidth allocation if priority is high":[null,""],"Test Connection":[null,""],"Windows Shares":[null,""],"Defines your existing windows shares so that we can add them to the browse dialog":[null,""],"Share #{number}":[null,""],"Share label":[null,""],"Hostname or IP":[null,""],"Share path":[null,""],"Subtitles Search":[null,""],"Subtitles Plugin":[null,""],"Plugin Settings":[null,""],"Settings that dictate how SickRage handles subtitles search results.":[null,""],"Search Subtitles":[null,""],"Subtitle Languages":[null,""],"Subtitle Directory":[null,""],"the directory where SickRage should store your <i>Subtitles</i> files.":[null,""],"leave empty if you want store subtitle in episode path.":[null,""],"Subtitle Find Frequency":[null,""],"time in hours between scans (default: 1)":[null,""],"Include Specials":[null,""],"include the show's specials when searching for subtitles?":[null,""],"Perfect matches":[null,""],"only download subtitles that match: release group, video codec, audio codec and resolution":[null,""],"if disabled you may get out of sync subtitles":[null,""],"Subtitles History":[null,""],"log downloaded Subtitle on History page?":[null,""],"Subtitles Multi-Language":[null,""],"append language codes to subtitle filenames?":[null,""],"this option is required if you use multiple subtitle languages":[null,""],"Delete unwanted subtitles":[null,""],"enable to delete unwanted subtitle languages bundled with release":[null,""],"Embedded Subtitles":[null,""],"ignore subtitles embedded inside video file?":[null,""],"this will ignore <u>all</u> embedded subtitles for every video file!":[null,""],"Hearing Impaired Subtitles":[null,""],"download hearing impaired style subtitles?":[null,""],"See":[null,""],"for a script arguments description.":[null,""],"Additional scripts separated by <b>|</b>.":[null,""],"Scripts are called after each episode has searched and downloaded subtitles.":[null,""],"For any scripted languages, include the interpreter executable before the script. See the following example":[null,""],"For Windows:":[null,""],"For Linux / OS X:":[null,""],"Subtitle Providers":[null,""],"Check off and drag the plugins into the order you want them to be used.":[null,""],"At least one plugin is required.":[null,""]," Web-scraping plugin":[null,""],"Provider Settings":[null,""],"Set user and password for each provider":[null,""],"User Name":[null,""],"Change Show":[null,""],"Prev Show":[null,""],"Next Show":[null,""],"Jump to Season":[null,""],"Specials":[null,""],"Poster for":[null,""],"Stars":[null,""],"minutes":[null,""],"View other popular {genre} shows on trakt.tv.":[null,""],"View other popular {imdbgenre} shows on IMDB.":[null,""],"Allowed":[null,""],"Preferred":[null,""],"Originally Airs":[null,""],"Show Status":[null,""],"Default EP Status":[null,""],"Location":[null,""],"Missing":[null,""],"Scene Name":[null,""],"Required Words":[null,""],"Ignored Words":[null,""],"Size":[null,""],"Info Language":[null,""],"Subtitles SR Metadata":[null,""],"Season Folders":[null,""],"Paused":[null,""],"Air-by-Date":[null,""],"Sports":[null,""],"DVD Order":[null,""],"Scene Numbering":[null,""],"Select Filtered Episodes":[null,""],"Clear All":[null,""],"Change selected episodes to":[null,""],"Select Columns":[null,""],"NFO":[null,""],"TBN":[null,""],"Episode":[null,""],"Absolute":[null,""],"Scene":[null,""],"Scene Absolute":[null,""],"File Name":[null,""],"Airdate":[null,""],"Download":[null,""],"Change the value here if scene numbering differs from the indexer episode numbering":[null,""],"Change the value here if scene absolute numbering differs from the indexer absolute numbering":[null,""],"Manual Search":[null,""],"Do you want to mark this episode as failed?":[null,""],"The episode release name will be added to the failed history, preventing it to be downloaded again.":[null,""],"Do you want to include the current episode quality in the search?":[null,""],"Choosing No will ignore any releases with the same episode quality as the one currently downloaded/snatched.":[null,""],"Download subtitle":[null,""],"Do you want to re-download the subtitle for this language?":[null,""],"It will overwrite your current subtitle":[null,""],"Format":[null,""],"Advanced":[null,""],"Main Settings":[null,""],"Show Location":[null,""],"Preferred Quality":[null,""],"Default Episode Status":[null,""],"this will set the status for future episodes.":[null,""],"this only applies to episode filenames and the contents of metadata files.":[null,""],"search for subtitles":[null,""],"Use SR Metdata":[null,""],"use SickRage metadata when searching for subtitle, this will override the autodiscovered metadata":[null,""],"pause this show (SickRage will not download episodes)":[null,""],"Format Settings":[null,""],"Air by date":[null,""],"check if the show is released as Show.03.02.2010 rather than Show.S02E03.":[null,""],"in case of an air date conflict between regular and special episodes, the later will be ignored.":[null,""],"check if the show is Anime and episodes are released as Show.265 rather than Show.S02E03":[null,""],"check if the show is a sporting or MMA event released as Show.03.02.2010 rather than Show.S02E03":[null,""],"Season folders":[null,""],"group episodes by season folder (uncheck to store in a single folder)":[null,""],"search by scene numbering (uncheck to search by indexer numbering)":[null,""],"use the DVD order instead of the air order":[null,""],"a \"Force Full Update\" is necessary, and if you have existing episodes you need to sort them manually.":[null,""],"comma-separated <i>e.g. \"word1,word2,word3</i>\"":[null,""],"search results with one or more words from this list will be ignored.":[null,""],"e.g. \"word1,word2,word3\"":[null,""],"search results with no words from this list will be ignored.":[null,""],"Scene Exception":[null,""],"this will affect episode search on NZB and torrent providers.":[null,""],"this list appends to the original show name.":[null,""],"WARNING logs":[null,""],"ERROR logs":[null,""],"There are no events to display.":[null,""],"Limit":[null,""],"Layout":[null,""],"HistoryLayout":[null,""],"Compact":[null,""],"Detailed":[null,""],"Time":[null,""],"Provider":[null,""],"Missing Provider":[null,""],"missing provider":[null,""],"Directory":[null,""],"Show Name (tvshow.nfo)":[null,""],"Indexer":[null,""],"Enter the folder containing the episode":[null,""],"Process Method to be used":[null,""],"Copy":[null,""],"Move":[null,""],"Hard Link":[null,""],"Symbolic Link":[null,""],"Symbolic Link Reversed":[null,""],"Force already Post Processed Dir/Files":[null,""],"Mark Dir/Files as priority download":[null,""],"(Check it to replace the file even if it exists at higher quality)":[null,""],"Delete files and folders":[null,""],"(Check it to delete files and folders like auto processing)":[null,""],"Don't use processing queue":[null,""],"(If checked this will return the result of the process here, but may be slow!)":[null,""],"Mark download as failed":[null,""],"Process":[null,""],"Download subtitles for this show?":[null,""],"use SickRage metadata when searching for subtitle, <br />this will override the autodiscovered metadata":[null,""],"Status for previously aired episodes":[null,""],"Status for all future episodes":[null,""],"Group episodes by season folder?":[null,""],"Is this show an Anime?":[null,""],"Is this show scene numbered?":[null,""],"Save Defaults":[null,""],"Use current values as the defaults":[null,""],"<p>Select your preferred fansub groups from the <b>Available Groups</b> and add them to the <b>Whitelist</b>. Add groups to the <b>Blacklist</b> to ignore them.</p>\n <p>The <b>Whitelist</b> is checked <i>before</i> the <b>Blacklist</b>.</p>\n <p>Groups are shown as <b>Name</b> | <b>Rating</b> | <b>Number of subbed episodes</b>.</p>\n <p>You may also add any fansub group not listed to either list manually.</p>\n <p>When doing this please note that you can only use groups listed on anidb for this anime.\n <br>If a group is not listed on anidb but subbed this anime, please correct anidb's data.</p>":[null,""],"Whitelist":[null,""],"Available Groups":[null,""],"Add to Whitelist":[null,""],"Add to Blacklist":[null,""],"Blacklist":[null,""],"Custom Group":[null,""],"Allowed Quality:":[null,""],"Preferred Quality:":[null,""],"Filter Show Name":[null,""],"Root":[null,""],"All":[null,""],"Clear Filter(s)":[null,""],"Poster":[null,""],"Small Poster":[null,""],"Banner":[null,""],"Simple":[null,""],"Next Episode":[null,""],"Progress":[null,""],"Direction":[null,""],"Ascending":[null,""],"Descending":[null,""],"Poster Size":[null,""],"Continuing":[null,""],"Ended":[null,""],"Total":[null,""],"Invalid date":[null,""],"No Network":[null,""],"Next Ep":[null,""],"Prev Ep":[null,""],"Show":[null,""],"Downloads":[null,""],"Active":[null,""],"loading":[null,""],"<p><b><u>Preferred</u></b> qualities will replace those in <b><u>allowed</u></b>, even if they are lower.</p>":[null,""],"New":[null,""],"Set as Default":[null,""],"Remember me":[null,""],"Edit Selected":[null,""],"Subtitle":[null,""],"Default Ep Status":[null,""],"Update":[null,""],"Rescan":[null,""],"Rename":[null,""],"Search Subtitle":[null,""],"Force Metadata Regen":[null,""],"Snatched (Allowed)":[null,""],"Jump to Show":[null,""],"Force Backlog":[null,""],"Manage episodes with status":[null,""],"Manage":[null,""],"None of your episodes have status":[null,""],"Shows containing":[null,""],"episodes":[null,""],"Set checked shows/episodes to":[null,""],"Go":[null,""],"Select all":[null,""],"Clear all":[null,""],"Release":[null,""],"Backlog Search":[null,""],"Not in progress":[null,""],"In Progress":[null,""],"Daily Search":[null,""],"Find Propers Search":[null,""],"Propers search disabled":[null,""],"Subtitle Search":[null,""],"Subtitle search disabled":[null,""],"Search Queue":[null,""],"pending items":[null,""],"Daily":[null,""],"Manual":[null,""],"Changing any settings marked with (<span class=\"separator\">*</span>) will force a refresh of the selected shows.":[null,""],"Selected Shows":[null,""],"Root Directories":[null,""],"Current":[null,""],"Keep":[null,""],"Custom":[null,""],"Group episodes by season folder (set to \"No\" to store in a single folder).":[null,""],"Pause these shows (SickRage will not download episodes).":[null,""],"This will set the status for future episodes.":[null,""],"Search by scene numbering (set to \"No\" to search by indexer numbering).":[null,""],"Set if these shows are Anime and episodes are released as Show.265 rather than Show.S02E03":[null,""],"Set if these shows are sporting or MMA events released as Show.03.02.2010 rather than Show.S02E03.":[null,""],"In case of an air date conflict between regular and special episodes, the later will be ignored.":[null,""],"Set if these shows are released as Show.03.02.2010 rather than Show.S02E03.":[null,""],"Search for subtitles.":[null,""],"All of your episodes have {subsLanguage} subtitles.":[null,""],"Manage episodes without":[null,""],"Episodes without {subsLanguage} subtitles.":[null,""],"Episodes without {subtitleLanguage} (undefined) subtitles.":[null,""],"Download missed subtitles for selected episodes":[null,""],"Performing Restart":[null,""],"Waiting for SickRage to shut down":[null,""],"Waiting for SickRage to start again":[null,""],"Loading the default page":[null,""],"Error: The restart has timed out, perhaps something prevented SickRage from starting again?":[null,""],"Key":[null,""],"Missed":[null,""],"Today":[null,""],"Soon":[null,""],"Later":[null,""],"Subscribe":[null,""],"Date":[null,""],"View Paused":[null,""],"Hidden":[null,""],"Shown":[null,""],"Calendar":[null,""],"List":[null,""],"Ends":[null,""],"Next Ep Name":[null,""],"Run time":[null,""],"Indexers":[null,""],"No shows for this day":[null,""],"Airs":[null,""],"Plot":[null,""],"Show Update":[null,""],"Version Check":[null,""],"Proper Finder":[null,""],"Post Process":[null,""],"Subtitles Finder":[null,""],"Scheduler":[null,""],"Alive":[null,""],"Start Time":[null,""],"Cycle Time":[null,""],"Next Run":[null,""],"Last Run":[null,""],"Silent":[null,""],"True":[null,""],"N/A":[null,""],"Show id":[null,""],"Show name":[null,""],"Priority":[null,""],"Added":[null,""],"Queue type":[null,""],"LOW":[null,""],"NORMAL":[null,""],"HIGH":[null,""],"Disk Space":[null,""],"Free space":[null,""],"TV Download Directory":[null,""],"Media Root Directories":[null,""],"Preview of the proposed name changes":[null,""],"All Seasons":[null,""],"select all":[null,""],"Rename Selected":[null,""],"Cancel Rename":[null,""],"Old Location":[null,""],"New Location":[null,""],"Trakt API did not return any results, please check your config.":[null,""],"votes":[null,""],"Remove Show":[null,""],"Level":[null,""],"Filter":[null,""],"All non-absolute folder locations are relative to ":[null,""],"Manual Post-Processing":[null,""],"Episode Status Management":[null,""],"Update PLEX":[null,""],"Update KODI":[null,""],"Update Emby":[null,""],"Manage Torrents":[null,""],"Missed Subtitle Management":[null,""],"Help & Info":[null,""],"Backup & Restore":[null,""],"Tools":[null,""],"Support SickRage":[null,""],"View Errors":[null,""],"View Warnings":[null,""],"View Log":[null,""],"Check For Updates":[null,""],"Restart":[null,""],"Shutdown":[null,""],"Logout":[null,""],"Server Status":[null,""],"View overview of snatched episodes":[null,""],"Episodes Downloaded":[null,""],"Memory used":[null,""],"Load time":[null,""],"Branch":[null,""],"Now":[null,""]}}}} \ No newline at end of file diff --git a/locale/fa_IR/LC_MESSAGES/messages.mo b/locale/fa_IR/LC_MESSAGES/messages.mo index 1e05154af52922deaf2cd66f3a20b1bde05aea80..dde3eb44bf3be45101dba5653e2d9238d00cbc2b 100644 Binary files a/locale/fa_IR/LC_MESSAGES/messages.mo and b/locale/fa_IR/LC_MESSAGES/messages.mo differ diff --git a/locale/fa_IR/LC_MESSAGES/messages.po b/locale/fa_IR/LC_MESSAGES/messages.po index 1a7966d4d16d7e2b233ba95b6015c4a440e771d3..af907dd6f2fa439565b68f088360cffe37db1587 100644 --- a/locale/fa_IR/LC_MESSAGES/messages.po +++ b/locale/fa_IR/LC_MESSAGES/messages.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: sickrage\n" "Report-Msgid-Bugs-To: miigotu@gmail.com\n" -"POT-Creation-Date: 2017-03-25 09:28-0700\n" -"PO-Revision-Date: 2017-03-25 12:30-0400\n" +"POT-Creation-Date: 2017-03-28 09:10-0700\n" +"PO-Revision-Date: 2017-03-28 12:12-0400\n" "Last-Translator: miigotu <miigotu@gmail.com>\n" "Language-Team: Persian\n" "MIME-Version: 1.0\n" @@ -90,7 +90,7 @@ msgid "Biography" msgstr "" #: gui/slick/views/config_general.mako:78 gui/slick/views/layouts/main.mako:145 -#: sickbeard/__init__.py:79 sickbeard/webserve.py:3807 +#: sickbeard/__init__.py:79 sickbeard/webserve.py:3778 msgid "History" msgstr "" @@ -103,7 +103,7 @@ msgid "Western" msgstr "" #: gui/slick/views/config_general.mako:79 gui/slick/views/layouts/main.mako:221 -#: sickbeard/__init__.py:80 sickbeard/webserve.py:2385 +#: sickbeard/__init__.py:80 sickbeard/webserve.py:2384 msgid "News" msgstr "" @@ -238,6 +238,34 @@ msgstr "" msgid "Subtitled" msgstr "" +#: sickbeard/helpers.py:1887 +msgid "For best results please set the Download Station alias as" +msgstr "" + +#: sickbeard/helpers.py:1888 +msgid "You can check this setting in the Synology DSM" +msgstr "" + +#: sickbeard/helpers.py:1888 sickbeard/helpers.py:1890 +msgid "Control Panel" +msgstr "" + +#: sickbeard/helpers.py:1888 +msgid "Application Portal" +msgstr "" + +#: sickbeard/helpers.py:1889 +msgid "Make sure you allow DSM to be embedded with iFrames too in" +msgstr "" + +#: sickbeard/helpers.py:1890 +msgid "DSM Settings" +msgstr "" + +#: sickbeard/helpers.py:1890 +msgid "Security" +msgstr "" + #: sickbeard/logger.py:474 msgid "<No Filter>" msgstr "" @@ -308,15 +336,15 @@ msgstr "" msgid "Event" msgstr "" -#: sickbeard/logger.py:491 sickbeard/webserve.py:1339 sickbeard/webserve.py:1342 -#: sickbeard/webserve.py:1520 sickbeard/webserve.py:1529 sickbeard/webserve.py:1717 -#: sickbeard/webserve.py:1728 sickbeard/webserve.py:1751 sickbeard/webserve.py:1764 -#: sickbeard/webserve.py:1769 sickbeard/webserve.py:1785 sickbeard/webserve.py:1790 -#: sickbeard/webserve.py:1854 sickbeard/webserve.py:1857 sickbeard/webserve.py:1863 -#: sickbeard/webserve.py:1866 sickbeard/webserve.py:1873 sickbeard/webserve.py:1876 -#: sickbeard/webserve.py:1899 sickbeard/webserve.py:1997 sickbeard/webserve.py:2002 -#: sickbeard/webserve.py:2007 sickbeard/webserve.py:2036 sickbeard/webserve.py:2040 -#: sickbeard/webserve.py:2045 +#: sickbeard/logger.py:491 sickbeard/webserve.py:1338 sickbeard/webserve.py:1341 +#: sickbeard/webserve.py:1519 sickbeard/webserve.py:1528 sickbeard/webserve.py:1716 +#: sickbeard/webserve.py:1727 sickbeard/webserve.py:1750 sickbeard/webserve.py:1763 +#: sickbeard/webserve.py:1768 sickbeard/webserve.py:1784 sickbeard/webserve.py:1789 +#: sickbeard/webserve.py:1853 sickbeard/webserve.py:1856 sickbeard/webserve.py:1862 +#: sickbeard/webserve.py:1865 sickbeard/webserve.py:1872 sickbeard/webserve.py:1875 +#: sickbeard/webserve.py:1898 sickbeard/webserve.py:1996 sickbeard/webserve.py:2001 +#: sickbeard/webserve.py:2006 sickbeard/webserve.py:2035 sickbeard/webserve.py:2039 +#: sickbeard/webserve.py:2044 msgid "Error" msgstr "" @@ -333,6 +361,7 @@ msgstr "" msgid "Main" msgstr "" +#: gui/slick/js/ajaxEpSearch.js:146 gui/slick/js/ajaxEpSearch.js:147 #: gui/slick/views/inc_home_showList.mako:27 sickbeard/show_queue.py:298 msgid "Loading" msgstr "" @@ -372,867 +401,835 @@ msgstr "" msgid "No update needed" msgstr "" -#: sickbeard/webserve.py:170 +#: sickbeard/webserve.py:171 msgid "Mako Error" msgstr "" -#: sickbeard/webserve.py:195 +#: sickbeard/webserve.py:196 msgid "Oops" msgstr "" -#: sickbeard/webserve.py:197 +#: sickbeard/webserve.py:198 msgid "Wrong API key used" msgstr "" -#: gui/slick/views/login.mako:34 sickbeard/webserve.py:302 +#: gui/slick/views/login.mako:34 sickbeard/webserve.py:303 msgid "Login" msgstr "" -#: sickbeard/webserve.py:406 +#: sickbeard/webserve.py:392 msgid "API Key not generated" msgstr "" -#: sickbeard/webserve.py:409 +#: sickbeard/webserve.py:395 msgid "API Builder" msgstr "" #: gui/slick/views/config_general.mako:77 gui/slick/views/layouts/main.mako:141 -#: sickbeard/webserve.py:512 +#: sickbeard/webserve.py:498 msgid "Schedule" msgstr "" -#: sickbeard/webserve.py:610 +#: sickbeard/webserve.py:609 msgid "Test 1" msgstr "" -#: sickbeard/webserve.py:610 +#: sickbeard/webserve.py:609 msgid "This is test number 1" msgstr "" -#: sickbeard/webserve.py:611 +#: sickbeard/webserve.py:610 msgid "Test 2" msgstr "" -#: sickbeard/webserve.py:611 +#: sickbeard/webserve.py:610 msgid "This is test number 2" msgstr "" -#: sickbeard/webserve.py:634 +#: sickbeard/webserve.py:633 msgid "You're using the {branch} branch. Please use 'master' unless specifically asked" msgstr "" -#: sickbeard/webserve.py:698 sickbeard/webserve.py:703 +#: sickbeard/webserve.py:697 sickbeard/webserve.py:702 msgid "Invalid show parameters" msgstr "" -#: sickbeard/webserve.py:710 +#: sickbeard/webserve.py:709 msgid "Invalid parameters" msgstr "" -#: sickbeard/webserve.py:713 sickbeard/webserve.py:1899 +#: sickbeard/webserve.py:712 sickbeard/webserve.py:1898 msgid "Episode couldn't be retrieved" msgstr "" -#: sickbeard/webserve.py:759 sickbeard/webserve.py:1268 sickbeard/webserve.py:1297 +#: sickbeard/webserve.py:758 sickbeard/webserve.py:1267 sickbeard/webserve.py:1296 msgid "Home" msgstr "" -#: gui/slick/views/layouts/main.mako:127 sickbeard/webserve.py:759 +#: gui/slick/views/layouts/main.mako:127 sickbeard/webserve.py:758 msgid "Show List" msgstr "" -#: sickbeard/webserve.py:807 +#: sickbeard/webserve.py:806 msgid "Error: Unsupported Request. Send jsonp request with 'callback' variable in the query string." msgstr "" -#: sickbeard/webserve.py:851 +#: sickbeard/webserve.py:850 msgid "Success. Connected and authenticated" msgstr "" -#: sickbeard/webserve.py:853 +#: sickbeard/webserve.py:852 msgid "Authentication failed. SABnzbd expects" msgstr "" -#: sickbeard/webserve.py:853 +#: sickbeard/webserve.py:852 msgid "as authentication method" msgstr "" -#: sickbeard/webserve.py:855 +#: sickbeard/webserve.py:854 msgid "Unable to connect to host" msgstr "" -#: sickbeard/webserve.py:876 +#: sickbeard/webserve.py:875 msgid "SMS sent successfully" msgstr "" -#: sickbeard/webserve.py:878 +#: sickbeard/webserve.py:877 msgid "Problem sending SMS: {message}" msgstr "" -#: sickbeard/webserve.py:885 +#: sickbeard/webserve.py:884 msgid "Telegram notification succeeded. Check your Telegram clients to make sure it worked" msgstr "" -#: sickbeard/webserve.py:887 +#: sickbeard/webserve.py:886 msgid "Error sending Telegram notification: {message}" msgstr "" -#: sickbeard/webserve.py:894 +#: sickbeard/webserve.py:893 msgid "join notification succeeded. Check your join clients to make sure it worked" msgstr "" -#: sickbeard/webserve.py:896 +#: sickbeard/webserve.py:895 msgid "Error sending join notification: {message}" msgstr "" -#: sickbeard/webserve.py:906 +#: sickbeard/webserve.py:905 msgid " with password" msgstr "" -#: sickbeard/webserve.py:908 +#: sickbeard/webserve.py:907 msgid "Registered and Tested growl successfully {growl_host}" msgstr "" -#: sickbeard/webserve.py:910 +#: sickbeard/webserve.py:909 msgid "Registration and Testing of growl failed {growl_host}" msgstr "" -#: sickbeard/webserve.py:917 +#: sickbeard/webserve.py:916 msgid "Test prowl notice sent successfully" msgstr "" -#: sickbeard/webserve.py:919 +#: sickbeard/webserve.py:918 msgid "Test prowl notice failed" msgstr "" -#: sickbeard/webserve.py:926 +#: sickbeard/webserve.py:925 msgid "Boxcar2 notification succeeded. Check your Boxcar2 clients to make sure it worked" msgstr "" -#: sickbeard/webserve.py:928 +#: sickbeard/webserve.py:927 msgid "Error sending Boxcar2 notification" msgstr "" -#: sickbeard/webserve.py:935 +#: sickbeard/webserve.py:934 msgid "Pushover notification succeeded. Check your Pushover clients to make sure it worked" msgstr "" -#: sickbeard/webserve.py:937 +#: sickbeard/webserve.py:936 msgid "Error sending Pushover notification" msgstr "" -#: sickbeard/webserve.py:949 +#: sickbeard/webserve.py:948 msgid "Key verification successful" msgstr "" -#: sickbeard/webserve.py:951 +#: sickbeard/webserve.py:950 msgid "Unable to verify key" msgstr "" -#: sickbeard/webserve.py:958 +#: sickbeard/webserve.py:957 msgid "Tweet successful, check your twitter to make sure it worked" msgstr "" -#: sickbeard/webserve.py:960 +#: sickbeard/webserve.py:959 msgid "Error sending tweet" msgstr "" -#: sickbeard/webserve.py:965 +#: sickbeard/webserve.py:964 msgid "Please enter a valid account sid" msgstr "" -#: sickbeard/webserve.py:968 +#: sickbeard/webserve.py:967 msgid "Please enter a valid auth token" msgstr "" -#: sickbeard/webserve.py:971 +#: sickbeard/webserve.py:970 msgid "Please enter a valid phone sid" msgstr "" -#: sickbeard/webserve.py:974 +#: sickbeard/webserve.py:973 msgid "Please format the phone number as \"+1-###-###-####\"" msgstr "" -#: sickbeard/webserve.py:978 +#: sickbeard/webserve.py:977 msgid "Authorization successful and number ownership verified" msgstr "" -#: sickbeard/webserve.py:980 +#: sickbeard/webserve.py:979 msgid "Error sending sms" msgstr "" -#: sickbeard/webserve.py:986 +#: sickbeard/webserve.py:985 msgid "Slack message successful" msgstr "" -#: sickbeard/webserve.py:988 +#: sickbeard/webserve.py:987 msgid "Slack message failed" msgstr "" -#: sickbeard/webserve.py:994 +#: sickbeard/webserve.py:993 msgid "Discord message successful" msgstr "" -#: sickbeard/webserve.py:996 +#: sickbeard/webserve.py:995 msgid "Discord message failed" msgstr "" -#: sickbeard/webserve.py:1006 +#: sickbeard/webserve.py:1005 msgid "Test KODI notice sent successfully to {kodi_host}" msgstr "" -#: sickbeard/webserve.py:1008 +#: sickbeard/webserve.py:1007 msgid "Test KODI notice failed to {kodi_host}" msgstr "" -#: sickbeard/webserve.py:1023 +#: sickbeard/webserve.py:1022 msgid "Successful test notice sent to Plex Home Theater ... {plex_clients}" msgstr "" -#: sickbeard/webserve.py:1025 +#: sickbeard/webserve.py:1024 msgid "Test failed for Plex Home Theater ... {plex_clients}" msgstr "" -#: sickbeard/webserve.py:1028 +#: sickbeard/webserve.py:1027 msgid "Tested Plex Home Theater(s)" msgstr "" -#: sickbeard/webserve.py:1042 +#: sickbeard/webserve.py:1041 msgid "Successful test of Plex Media Server(s) ... {plex_servers}" msgstr "" -#: sickbeard/webserve.py:1044 +#: sickbeard/webserve.py:1043 msgid "Test failed, No Plex Media Server host specified" msgstr "" -#: sickbeard/webserve.py:1046 +#: sickbeard/webserve.py:1045 msgid "Test failed for Plex Media Server(s) ... {plex_servers}" msgstr "" -#: sickbeard/webserve.py:1049 +#: sickbeard/webserve.py:1048 msgid "Tested Plex Media Server host(s)" msgstr "" -#: sickbeard/webserve.py:1057 +#: sickbeard/webserve.py:1056 msgid "Tried sending desktop notification via libnotify" msgstr "" -#: sickbeard/webserve.py:1066 +#: sickbeard/webserve.py:1065 msgid "Test notice sent successfully to {emby_host}" msgstr "" -#: sickbeard/webserve.py:1068 +#: sickbeard/webserve.py:1067 msgid "Test notice failed to {emby_host}" msgstr "" -#: sickbeard/webserve.py:1076 +#: sickbeard/webserve.py:1075 msgid "Successfully started the scan update" msgstr "" -#: sickbeard/webserve.py:1078 +#: sickbeard/webserve.py:1077 msgid "Test failed to start the scan update" msgstr "" -#: sickbeard/webserve.py:1097 +#: sickbeard/webserve.py:1096 msgid "Test notice sent successfully to {nmj2_host}" msgstr "" -#: sickbeard/webserve.py:1099 +#: sickbeard/webserve.py:1098 msgid "Test notice failed to {nmj2_host}" msgstr "" -#: sickbeard/webserve.py:1119 +#: sickbeard/webserve.py:1118 msgid "Trakt Authorized" msgstr "" -#: sickbeard/webserve.py:1120 +#: sickbeard/webserve.py:1119 msgid "Trakt Not Authorized!" msgstr "" -#: sickbeard/webserve.py:1184 +#: sickbeard/webserve.py:1183 msgid "Test email sent successfully! Check inbox." msgstr "" -#: sickbeard/webserve.py:1186 +#: sickbeard/webserve.py:1185 msgid "ERROR: {last_error}" msgstr "" -#: sickbeard/webserve.py:1193 +#: sickbeard/webserve.py:1192 msgid "Test NMA notice sent successfully" msgstr "" -#: sickbeard/webserve.py:1195 +#: sickbeard/webserve.py:1194 msgid "Test NMA notice failed" msgstr "" -#: sickbeard/webserve.py:1202 +#: sickbeard/webserve.py:1201 msgid "Pushalot notification succeeded. Check your Pushalot clients to make sure it worked" msgstr "" -#: sickbeard/webserve.py:1204 +#: sickbeard/webserve.py:1203 msgid "Error sending Pushalot notification" msgstr "" -#: sickbeard/webserve.py:1211 +#: sickbeard/webserve.py:1210 msgid "Pushbullet notification succeeded. Check your device to make sure it worked" msgstr "" -#: sickbeard/webserve.py:1213 sickbeard/webserve.py:1223 sickbeard/webserve.py:1232 +#: sickbeard/webserve.py:1212 sickbeard/webserve.py:1222 sickbeard/webserve.py:1231 msgid "Error sending Pushbullet notification" msgstr "" #: gui/slick/views/displayShow.mako:436 gui/slick/views/inc_home_showList.mako:174 -#: gui/slick/views/manage.mako:49 sickbeard/webserve.py:1249 +#: gui/slick/views/manage.mako:49 sickbeard/webserve.py:1248 msgid "Status" msgstr "" -#: sickbeard/webserve.py:1268 sickbeard/webserve.py:1297 +#: sickbeard/webserve.py:1267 sickbeard/webserve.py:1296 msgid "Restarting SickRage" msgstr "" -#: sickbeard/webserve.py:1300 +#: sickbeard/webserve.py:1299 msgid "Update Failed" msgstr "" -#: sickbeard/webserve.py:1301 +#: sickbeard/webserve.py:1300 msgid "Update wasn't successful, not restarting. Check your log for more information." msgstr "" -#: sickbeard/webserve.py:1308 +#: sickbeard/webserve.py:1307 msgid "Checking out branch" msgstr "" -#: sickbeard/webserve.py:1311 +#: sickbeard/webserve.py:1310 msgid "Already on branch" msgstr "" -#: sickbeard/webserve.py:1339 +#: sickbeard/webserve.py:1338 msgid "Invalid show ID: {show}" msgstr "" -#: sickbeard/webserve.py:1342 sickbeard/webserve.py:1871 sickbeard/webserve.py:2002 -#: sickbeard/webserve.py:2040 +#: sickbeard/webserve.py:1341 sickbeard/webserve.py:1870 sickbeard/webserve.py:2001 +#: sickbeard/webserve.py:2039 msgid "Show not in show list" msgstr "" #: gui/slick/views/inc_rootDirs.mako:31 gui/slick/views/manage.mako:38 -#: gui/slick/views/manage_massEdit.mako:74 sickbeard/webserve.py:1358 -#: sickbeard/webserve.py:2027 +#: gui/slick/views/manage_massEdit.mako:74 sickbeard/webserve.py:1357 +#: sickbeard/webserve.py:2026 msgid "Edit" msgstr "" -#: sickbeard/webserve.py:1368 +#: sickbeard/webserve.py:1367 msgid "This show is in the process of being downloaded - the info below is incomplete." msgstr "" -#: sickbeard/webserve.py:1371 +#: sickbeard/webserve.py:1370 msgid "The information on this page is in the process of being updated." msgstr "" -#: sickbeard/webserve.py:1374 +#: sickbeard/webserve.py:1373 msgid "The episodes below are currently being refreshed from disk" msgstr "" -#: sickbeard/webserve.py:1377 +#: sickbeard/webserve.py:1376 msgid "Currently downloading subtitles for this show" msgstr "" -#: sickbeard/webserve.py:1380 +#: sickbeard/webserve.py:1379 msgid "This show is queued to be refreshed." msgstr "" -#: sickbeard/webserve.py:1383 +#: sickbeard/webserve.py:1382 msgid "This show is queued and awaiting an update." msgstr "" -#: sickbeard/webserve.py:1386 +#: sickbeard/webserve.py:1385 msgid "This show is queued and awaiting subtitles download." msgstr "" -#: gui/slick/js/core.js:4081 sickbeard/webserve.py:1391 +#: gui/slick/js/core.js:4081 sickbeard/webserve.py:1390 msgid "Resume" msgstr "" #: gui/slick/js/core.js:4081 gui/slick/views/viewlogs.mako:12 -#: sickbeard/webserve.py:1393 +#: sickbeard/webserve.py:1392 msgid "Pause" msgstr "" #: gui/slick/views/editShow.mako:345 gui/slick/views/inc_blackwhitelist.mako:40 #: gui/slick/views/inc_blackwhitelist.mako:85 gui/slick/views/manage.mako:58 -#: gui/slick/views/manage_failedDownloads.mako:43 sickbeard/webserve.py:1395 +#: gui/slick/views/manage_failedDownloads.mako:43 sickbeard/webserve.py:1394 msgid "Remove" msgstr "" -#: sickbeard/webserve.py:1396 +#: sickbeard/webserve.py:1395 msgid "Re-scan files" msgstr "" -#: sickbeard/webserve.py:1397 +#: sickbeard/webserve.py:1396 msgid "Force Full Update" msgstr "" -#: sickbeard/webserve.py:1398 +#: sickbeard/webserve.py:1397 msgid "Update show in KODI" msgstr "" -#: sickbeard/webserve.py:1399 +#: sickbeard/webserve.py:1398 msgid "Update show in Emby" msgstr "" -#: sickbeard/webserve.py:1402 +#: sickbeard/webserve.py:1401 msgid "Hide specials" msgstr "" -#: sickbeard/webserve.py:1404 +#: sickbeard/webserve.py:1403 msgid "Show specials" msgstr "" -#: sickbeard/webserve.py:1406 sickbeard/webserve.py:2030 sickbeard/webserve.py:2031 +#: sickbeard/webserve.py:1405 sickbeard/webserve.py:2029 sickbeard/webserve.py:2030 msgid "Preview Rename" msgstr "" -#: sickbeard/webserve.py:1409 +#: sickbeard/webserve.py:1408 msgid "Download Subtitles" msgstr "" -#: sickbeard/webserve.py:1498 +#: sickbeard/webserve.py:1497 msgid "No scene exceptions" msgstr "" -#: sickbeard/webserve.py:1516 sickbeard/webserve.py:1764 sickbeard/webserve.py:1785 +#: sickbeard/webserve.py:1515 sickbeard/webserve.py:1763 sickbeard/webserve.py:1784 msgid "Invalid show ID" msgstr "" -#: sickbeard/webserve.py:1525 sickbeard/webserve.py:1769 sickbeard/webserve.py:1790 +#: sickbeard/webserve.py:1524 sickbeard/webserve.py:1768 sickbeard/webserve.py:1789 msgid "Unable to find the specified show" msgstr "" -#: sickbeard/webserve.py:1550 +#: sickbeard/webserve.py:1549 msgid "Unable to retreive Fansub Groups from AniDB." msgstr "" -#: sickbeard/webserve.py:1559 sickbeard/webserve.py:1561 +#: sickbeard/webserve.py:1558 sickbeard/webserve.py:1560 msgid "Edit Show" msgstr "" -#: sickbeard/webserve.py:1637 sickbeard/webserve.py:1671 +#: sickbeard/webserve.py:1636 sickbeard/webserve.py:1670 msgid "Unable to refresh this show: {error}" msgstr "" -#: sickbeard/webserve.py:1663 +#: sickbeard/webserve.py:1662 msgid "New location <tt>{location}</tt> does not exist" msgstr "" -#: sickbeard/webserve.py:1688 +#: sickbeard/webserve.py:1687 msgid "Unable to update show: {error}" msgstr "" -#: sickbeard/webserve.py:1695 +#: sickbeard/webserve.py:1694 msgid "Unable to force an update on scene exceptions of the show." msgstr "" -#: sickbeard/webserve.py:1702 +#: sickbeard/webserve.py:1701 msgid "Unable to force an update on scene numbering of the show." msgstr "" -#: sickbeard/webserve.py:1708 sickbeard/webserve.py:3540 +#: sickbeard/webserve.py:1707 sickbeard/webserve.py:3539 msgid "{num_errors:d} error{plural} while saving changes:" msgstr "" -#: sickbeard/webserve.py:1719 +#: sickbeard/webserve.py:1718 msgid "{show_name} has been {paused_resumed}" msgstr "" -#: sickbeard/webserve.py:1719 +#: sickbeard/webserve.py:1718 msgid "resumed" msgstr "" -#: sickbeard/webserve.py:1719 +#: sickbeard/webserve.py:1718 msgid "paused" msgstr "" -#: sickbeard/webserve.py:1731 +#: sickbeard/webserve.py:1730 msgid "{show_name} has been {deleted_trashed} {was_deleted}" msgstr "" -#: sickbeard/webserve.py:1733 +#: sickbeard/webserve.py:1732 msgid "deleted" msgstr "" -#: sickbeard/webserve.py:1733 +#: sickbeard/webserve.py:1732 msgid "trashed" msgstr "" -#: sickbeard/webserve.py:1734 +#: sickbeard/webserve.py:1733 msgid "(media untouched)" msgstr "" -#: sickbeard/webserve.py:1734 +#: sickbeard/webserve.py:1733 msgid "(with all related media)" msgstr "" -#: sickbeard/webserve.py:1755 +#: sickbeard/webserve.py:1754 msgid "Unable to refresh this show." msgstr "" -#: sickbeard/webserve.py:1775 +#: sickbeard/webserve.py:1774 msgid "Unable to update this show." msgstr "" -#: sickbeard/webserve.py:1814 +#: sickbeard/webserve.py:1813 msgid "Library update command sent to KODI host(s)): {kodi_hosts}" msgstr "" -#: sickbeard/webserve.py:1816 +#: sickbeard/webserve.py:1815 msgid "Unable to contact one or more KODI host(s)): {kodi_hosts}" msgstr "" -#: sickbeard/webserve.py:1825 +#: sickbeard/webserve.py:1824 msgid "Library update command sent to Plex Media Server host: {plex_server}" msgstr "" -#: sickbeard/webserve.py:1828 +#: sickbeard/webserve.py:1827 msgid "Unable to contact Plex Media Server host: {plex_server}" msgstr "" -#: sickbeard/webserve.py:1840 +#: sickbeard/webserve.py:1839 msgid "Library update command sent to Emby host: {emby_host}" msgstr "" -#: sickbeard/webserve.py:1842 +#: sickbeard/webserve.py:1841 msgid "Unable to contact Emby host: {emby_host}" msgstr "" -#: sickbeard/webserve.py:1852 sickbeard/webserve.py:2036 +#: sickbeard/webserve.py:1851 sickbeard/webserve.py:2035 msgid "You must specify a show and at least one episode" msgstr "" -#: sickbeard/webserve.py:1861 +#: sickbeard/webserve.py:1860 msgid "Invalid status" msgstr "" -#: sickbeard/webserve.py:1954 +#: sickbeard/webserve.py:1953 msgid "Backlog was automatically started for the following seasons of <b>{show_name}</b>" msgstr "" #: gui/slick/views/displayShow.mako:74 gui/slick/views/displayShow.mako:79 -#: gui/slick/views/displayShow.mako:404 sickbeard/webserve.py:1961 -#: sickbeard/webserve.py:1980 +#: gui/slick/views/displayShow.mako:404 sickbeard/webserve.py:1960 +#: sickbeard/webserve.py:1979 msgid "Season" msgstr "" -#: sickbeard/webserve.py:1968 +#: sickbeard/webserve.py:1967 msgid "Backlog started" msgstr "" -#: sickbeard/webserve.py:1973 +#: sickbeard/webserve.py:1972 msgid "Retrying Search was automatically started for the following season of <b>{show_name}</b>" msgstr "" -#: sickbeard/webserve.py:1987 +#: sickbeard/webserve.py:1986 msgid "Retry Search started" msgstr "" -#: sickbeard/webserve.py:1997 +#: sickbeard/webserve.py:1996 msgid "You must specify a show" msgstr "" -#: sickbeard/webserve.py:2007 sickbeard/webserve.py:2045 +#: sickbeard/webserve.py:2006 sickbeard/webserve.py:2044 msgid "Can't rename episodes when the show dir is missing." msgstr "" -#: sickbeard/webserve.py:2212 sickbeard/webserve.py:2233 +#: sickbeard/webserve.py:2211 sickbeard/webserve.py:2232 msgid "New subtitles downloaded: {new_subtitle_languages}" msgstr "" -#: sickbeard/webserve.py:2215 sickbeard/webserve.py:2236 +#: sickbeard/webserve.py:2214 sickbeard/webserve.py:2235 msgid "No subtitles downloaded" msgstr "" #: gui/slick/views/config_general.mako:80 gui/slick/views/layouts/main.mako:222 -#: sickbeard/webserve.py:2363 +#: sickbeard/webserve.py:2362 msgid "IRC" msgstr "" -#: sickbeard/webserve.py:2376 +#: sickbeard/webserve.py:2375 msgid "Could not load news from the repo. [Click here for news.md])({news_url})" msgstr "" -#: sickbeard/webserve.py:2383 sickbeard/webserve.py:2401 +#: sickbeard/webserve.py:2382 sickbeard/webserve.py:2400 msgid "The was a problem connecting to github, please refresh and try again" msgstr "" -#: sickbeard/webserve.py:2398 +#: sickbeard/webserve.py:2397 msgid "Could not load changes from the repo. [Click here for CHANGES.md]({changes_url})" msgstr "" -#: gui/slick/views/layouts/main.mako:223 sickbeard/webserve.py:2403 +#: gui/slick/views/layouts/main.mako:223 sickbeard/webserve.py:2402 msgid "Changelog" msgstr "" -#: gui/slick/views/layouts/main.mako:190 sickbeard/webserve.py:2413 -#: sickbeard/webserve.py:3855 sickbeard/webserve.py:4341 +#: gui/slick/views/layouts/main.mako:190 sickbeard/webserve.py:2412 +#: sickbeard/webserve.py:3826 sickbeard/webserve.py:4312 msgid "Post Processing" msgstr "" -#: gui/slick/views/layouts/main.mako:128 sickbeard/webserve.py:2445 +#: gui/slick/views/layouts/main.mako:128 sickbeard/webserve.py:2444 msgid "Add Shows" msgstr "" -#: sickbeard/webserve.py:2510 +#: sickbeard/webserve.py:2509 msgid "No folders selected." msgstr "" -#: sickbeard/webserve.py:2632 +#: sickbeard/webserve.py:2631 msgid "New Show" msgstr "" -#: sickbeard/webserve.py:2647 +#: sickbeard/webserve.py:2646 msgid "Trending Shows" msgstr "" -#: sickbeard/webserve.py:2649 sickbeard/webserve.py:2772 +#: sickbeard/webserve.py:2648 sickbeard/webserve.py:2771 msgid "Popular Shows" msgstr "" -#: sickbeard/webserve.py:2651 sickbeard/webserve.py:2665 +#: sickbeard/webserve.py:2650 sickbeard/webserve.py:2664 msgid "Most Anticipated Shows" msgstr "" -#: sickbeard/webserve.py:2653 +#: sickbeard/webserve.py:2652 msgid "Most Collected Shows" msgstr "" -#: sickbeard/webserve.py:2655 +#: sickbeard/webserve.py:2654 msgid "Most Watched Shows" msgstr "" -#: sickbeard/webserve.py:2657 +#: sickbeard/webserve.py:2656 msgid "Most Played Shows" msgstr "" -#: sickbeard/webserve.py:2659 +#: sickbeard/webserve.py:2658 msgid "Recommended Shows" msgstr "" -#: gui/slick/views/addShows_trendingShows.mako:60 sickbeard/webserve.py:2661 +#: gui/slick/views/addShows_trendingShows.mako:60 sickbeard/webserve.py:2660 msgid "New Shows" msgstr "" -#: gui/slick/views/addShows_trendingShows.mako:61 sickbeard/webserve.py:2663 +#: gui/slick/views/addShows_trendingShows.mako:61 sickbeard/webserve.py:2662 msgid "Season Premieres" msgstr "" -#: sickbeard/webserve.py:2792 sickbeard/webserve.py:2793 +#: sickbeard/webserve.py:2791 sickbeard/webserve.py:2792 msgid "Existing Show" msgstr "" -#: sickbeard/webserve.py:2871 +#: sickbeard/webserve.py:2870 msgid "No root directories setup, please go back and add one." msgstr "" -#: sickbeard/webserve.py:2883 sickbeard/webserve.py:3002 +#: sickbeard/webserve.py:2882 sickbeard/webserve.py:3001 msgid "Show added" msgstr "" -#: sickbeard/webserve.py:2883 +#: sickbeard/webserve.py:2882 msgid "Adding the specified show {show_name}" msgstr "" -#: sickbeard/webserve.py:2924 +#: sickbeard/webserve.py:2923 msgid "Missing params, no Indexer ID or folder: {show_to_add} and {root_dir}/{show_path}" msgstr "" -#: sickbeard/webserve.py:2933 +#: sickbeard/webserve.py:2932 msgid "Unknown error. Unable to add show due to problem with show selection." msgstr "" -#: sickbeard/webserve.py:2957 sickbeard/webserve.py:2967 +#: sickbeard/webserve.py:2956 sickbeard/webserve.py:2966 msgid "Unable to add show" msgstr "" -#: sickbeard/webserve.py:2957 +#: sickbeard/webserve.py:2956 msgid "Folder {show_dir} exists already" msgstr "" -#: sickbeard/webserve.py:2968 +#: sickbeard/webserve.py:2967 msgid "Unable to create the folder {show_dir}, can't add the show" msgstr "" -#: sickbeard/webserve.py:3002 +#: sickbeard/webserve.py:3001 msgid "Adding the specified show into {show_dir}" msgstr "" -#: sickbeard/webserve.py:3078 +#: sickbeard/webserve.py:3077 msgid "Shows Added" msgstr "" -#: sickbeard/webserve.py:3079 +#: sickbeard/webserve.py:3078 msgid "Automatically added {num_shows} from their existing metadata files" msgstr "" -#: gui/slick/views/layouts/main.mako:153 sickbeard/webserve.py:3096 +#: gui/slick/views/layouts/main.mako:153 sickbeard/webserve.py:3095 msgid "Mass Update" msgstr "" -#: sickbeard/webserve.py:3134 sickbeard/webserve.py:3161 sickbeard/webserve.py:3237 -#: sickbeard/webserve.py:3238 +#: sickbeard/webserve.py:3133 sickbeard/webserve.py:3160 sickbeard/webserve.py:3236 +#: sickbeard/webserve.py:3237 msgid "Episode Overview" msgstr "" -#: sickbeard/webserve.py:3270 +#: sickbeard/webserve.py:3269 msgid "Missing Subtitles" msgstr "" -#: gui/slick/views/layouts/main.mako:154 sickbeard/webserve.py:3356 -#: sickbeard/webserve.py:3357 +#: gui/slick/views/layouts/main.mako:154 sickbeard/webserve.py:3355 +#: sickbeard/webserve.py:3356 msgid "Backlog Overview" msgstr "" -#: sickbeard/webserve.py:3481 +#: sickbeard/webserve.py:3480 msgid "Mass Edit" msgstr "" -#: sickbeard/webserve.py:3586 +#: sickbeard/webserve.py:3585 msgid "Unable to update show: {excption_format}" msgstr "" -#: sickbeard/webserve.py:3594 +#: sickbeard/webserve.py:3593 msgid "Unable to refresh show {show_name}: {excption_format}" msgstr "" -#: sickbeard/webserve.py:3605 +#: sickbeard/webserve.py:3604 msgid "Errors encountered" msgstr "" -#: gui/slick/views/config_general.mako:261 sickbeard/webserve.py:3611 +#: gui/slick/views/config_general.mako:261 sickbeard/webserve.py:3610 msgid "Updates" msgstr "" -#: sickbeard/webserve.py:3616 +#: sickbeard/webserve.py:3615 msgid "Refreshes" msgstr "" -#: sickbeard/webserve.py:3621 +#: sickbeard/webserve.py:3620 msgid "Renames" msgstr "" #: gui/slick/views/displayShow.mako:260 gui/slick/views/displayShow.mako:435 #: gui/slick/views/editShow.mako:119 gui/slick/views/inc_addShowOptions.mako:20 -#: gui/slick/views/manage_massEdit.mako:262 sickbeard/webserve.py:3626 -#: sickbeard/webserve.py:5244 +#: gui/slick/views/manage_massEdit.mako:262 sickbeard/webserve.py:3625 +#: sickbeard/webserve.py:5215 msgid "Subtitles" msgstr "" -#: sickbeard/webserve.py:3631 +#: sickbeard/webserve.py:3630 msgid "The following actions were queued" msgstr "" -#: sickbeard/webserve.py:3651 -msgid "For best results please set the Download Station alias as" -msgstr "" - -#: sickbeard/webserve.py:3652 -msgid "You can check this setting in the Synology DSM" -msgstr "" - -#: sickbeard/webserve.py:3652 sickbeard/webserve.py:3654 -msgid "Control Panel" -msgstr "" - -#: sickbeard/webserve.py:3652 -msgid "Application Portal" -msgstr "" - -#: sickbeard/webserve.py:3653 -msgid "Make sure you allow DSM to be embedded with iFrames too in" -msgstr "" - -#: sickbeard/webserve.py:3654 -msgid "DSM Settings" -msgstr "" - -#: sickbeard/webserve.py:3654 -msgid "Security" -msgstr "" - -#: gui/slick/views/layouts/main.mako:167 sickbeard/webserve.py:3662 -msgid "Manage Torrents" -msgstr "" - -#: gui/slick/views/layouts/main.mako:170 sickbeard/webserve.py:3683 +#: gui/slick/views/layouts/main.mako:170 sickbeard/webserve.py:3654 msgid "Failed Downloads" msgstr "" -#: gui/slick/views/layouts/main.mako:155 sickbeard/webserve.py:3701 +#: gui/slick/views/layouts/main.mako:155 sickbeard/webserve.py:3672 msgid "Manage Searches" msgstr "" -#: sickbeard/webserve.py:3709 +#: sickbeard/webserve.py:3680 msgid "Backlog search started" msgstr "" -#: sickbeard/webserve.py:3719 +#: sickbeard/webserve.py:3690 msgid "Daily search started" msgstr "" -#: sickbeard/webserve.py:3728 +#: sickbeard/webserve.py:3699 msgid "Find propers search started" msgstr "" -#: sickbeard/webserve.py:3737 +#: sickbeard/webserve.py:3708 msgid "Subtitle search started" msgstr "" -#: sickbeard/webserve.py:3801 +#: sickbeard/webserve.py:3772 msgid "Remove Selected" msgstr "" -#: sickbeard/webserve.py:3802 +#: sickbeard/webserve.py:3773 msgid "Clear History" msgstr "" -#: sickbeard/webserve.py:3803 +#: sickbeard/webserve.py:3774 msgid "Trim History" msgstr "" -#: sickbeard/webserve.py:3823 +#: sickbeard/webserve.py:3794 msgid "Selected history entries removed" msgstr "" -#: sickbeard/webserve.py:3830 +#: sickbeard/webserve.py:3801 msgid "History cleared" msgstr "" -#: sickbeard/webserve.py:3837 +#: sickbeard/webserve.py:3808 msgid "Removed history entries older than 30 days" msgstr "" -#: gui/slick/views/layouts/main.mako:185 sickbeard/webserve.py:3850 +#: gui/slick/views/layouts/main.mako:185 sickbeard/webserve.py:3821 msgid "General" msgstr "" -#: sickbeard/webserve.py:3851 sickbeard/webserve.py:4143 +#: sickbeard/webserve.py:3822 sickbeard/webserve.py:4114 msgid "Backup/Restore" msgstr "" -#: gui/slick/views/layouts/main.mako:187 sickbeard/webserve.py:3852 -#: sickbeard/webserve.py:4206 +#: gui/slick/views/layouts/main.mako:187 sickbeard/webserve.py:3823 +#: sickbeard/webserve.py:4177 msgid "Search Settings" msgstr "" -#: gui/slick/views/layouts/main.mako:188 sickbeard/webserve.py:3853 -#: sickbeard/webserve.py:4518 +#: gui/slick/views/layouts/main.mako:188 sickbeard/webserve.py:3824 +#: sickbeard/webserve.py:4489 msgid "Search Providers" msgstr "" -#: gui/slick/views/layouts/main.mako:189 sickbeard/webserve.py:3854 +#: gui/slick/views/layouts/main.mako:189 sickbeard/webserve.py:3825 msgid "Subtitles Settings" msgstr "" -#: gui/slick/views/layouts/main.mako:191 sickbeard/webserve.py:3856 -#: sickbeard/webserve.py:4964 +#: gui/slick/views/layouts/main.mako:191 sickbeard/webserve.py:3827 +#: sickbeard/webserve.py:4935 msgid "Notifications" msgstr "" @@ -1240,142 +1237,142 @@ msgstr "" #: gui/slick/views/home.mako:35 gui/slick/views/inc_addShowOptions.mako:79 #: gui/slick/views/inc_home_showList.mako:179 gui/slick/views/layouts/main.mako:192 #: gui/slick/views/manage.mako:44 gui/slick/views/manage_massEdit.mako:202 -#: sickbeard/webserve.py:3857 sickbeard/webserve.py:5309 +#: sickbeard/webserve.py:3828 sickbeard/webserve.py:5280 msgid "Anime" msgstr "" -#: sickbeard/webserve.py:3895 sickbeard/webserve.py:3896 +#: sickbeard/webserve.py:3866 sickbeard/webserve.py:3867 msgid "SickRage Configuration" msgstr "" -#: sickbeard/webserve.py:3910 +#: sickbeard/webserve.py:3881 msgid "Config - Shares" msgstr "" -#: sickbeard/webserve.py:3910 +#: sickbeard/webserve.py:3881 msgid "Windows Shares Configuration" msgstr "" -#: sickbeard/webserve.py:3937 +#: sickbeard/webserve.py:3908 msgid "Saved Shares" msgstr "" -#: sickbeard/webserve.py:3937 +#: sickbeard/webserve.py:3908 msgid "Your Windows share settings have been saved" msgstr "" -#: sickbeard/webserve.py:3948 +#: sickbeard/webserve.py:3919 msgid "Config - General" msgstr "" -#: sickbeard/webserve.py:3948 +#: sickbeard/webserve.py:3919 msgid "General Configuration" msgstr "" -#: sickbeard/webserve.py:3988 +#: sickbeard/webserve.py:3959 msgid "Saved Defaults" msgstr "" -#: sickbeard/webserve.py:3988 +#: sickbeard/webserve.py:3959 msgid "Your \"add show\" defaults have been set to your current selections." msgstr "" -#: sickbeard/webserve.py:4095 +#: sickbeard/webserve.py:4066 msgid "Unable to create directory {directory}, log directory not changed." msgstr "" -#: sickbeard/webserve.py:4103 +#: sickbeard/webserve.py:4074 msgid "Unable to create directory {directory}, https cert directory not changed." msgstr "" -#: sickbeard/webserve.py:4107 +#: sickbeard/webserve.py:4078 msgid "Unable to create directory {directory}, https key directory not changed." msgstr "" -#: sickbeard/webserve.py:4126 sickbeard/webserve.py:4324 sickbeard/webserve.py:4456 -#: sickbeard/webserve.py:5227 +#: sickbeard/webserve.py:4097 sickbeard/webserve.py:4295 sickbeard/webserve.py:4427 +#: sickbeard/webserve.py:5198 msgid "Error(s) Saving Configuration" msgstr "" -#: sickbeard/webserve.py:4129 sickbeard/webserve.py:4327 sickbeard/webserve.py:4458 -#: sickbeard/webserve.py:4950 sickbeard/webserve.py:5230 sickbeard/webserve.py:5294 -#: sickbeard/webserve.py:5323 +#: sickbeard/webserve.py:4100 sickbeard/webserve.py:4298 sickbeard/webserve.py:4429 +#: sickbeard/webserve.py:4921 sickbeard/webserve.py:5201 sickbeard/webserve.py:5265 +#: sickbeard/webserve.py:5294 msgid "Configuration Saved" msgstr "" -#: sickbeard/webserve.py:4142 +#: sickbeard/webserve.py:4113 msgid "Config - Backup/Restore" msgstr "" -#: sickbeard/webserve.py:4205 +#: sickbeard/webserve.py:4176 msgid "Config - Episode Search" msgstr "" -#: sickbeard/webserve.py:4340 +#: sickbeard/webserve.py:4311 msgid "Config - Post Processing" msgstr "" -#: sickbeard/webserve.py:4380 +#: sickbeard/webserve.py:4351 msgid "Unpacking Not Supported, disabling unpack setting" msgstr "" -#: sickbeard/webserve.py:4431 +#: sickbeard/webserve.py:4402 msgid "You tried saving an invalid normal naming config, not saving your naming settings" msgstr "" -#: sickbeard/webserve.py:4439 +#: sickbeard/webserve.py:4410 msgid "You tried saving an invalid anime naming config, not saving your naming settings" msgstr "" -#: sickbeard/webserve.py:4517 +#: sickbeard/webserve.py:4488 msgid "Config - Providers" msgstr "" -#: sickbeard/webserve.py:4547 +#: sickbeard/webserve.py:4518 msgid "No Provider Name specified" msgstr "" -#: sickbeard/webserve.py:4549 +#: sickbeard/webserve.py:4520 msgid "No Provider Url specified" msgstr "" -#: sickbeard/webserve.py:4551 +#: sickbeard/webserve.py:4522 msgid "No Provider Api key specified" msgstr "" -#: sickbeard/webserve.py:4963 +#: sickbeard/webserve.py:4934 msgid "Config - Notifications" msgstr "" -#: sickbeard/webserve.py:5243 +#: sickbeard/webserve.py:5214 msgid "Config - Subtitles" msgstr "" -#: sickbeard/webserve.py:5308 +#: sickbeard/webserve.py:5279 msgid "Config - Anime" msgstr "" -#: sickbeard/webserve.py:5336 +#: sickbeard/webserve.py:5307 msgid "Clear Errors" msgstr "" -#: sickbeard/webserve.py:5342 +#: sickbeard/webserve.py:5313 msgid "Clear Warnings" msgstr "" -#: sickbeard/webserve.py:5348 +#: sickbeard/webserve.py:5319 msgid "Submit Errors" msgstr "" -#: sickbeard/webserve.py:5363 +#: sickbeard/webserve.py:5334 msgid "Logs & Errors" msgstr "" -#: sickbeard/webserve.py:5388 +#: sickbeard/webserve.py:5359 msgid "Log File" msgstr "" -#: sickbeard/webserve.py:5388 +#: sickbeard/webserve.py:5359 msgid "Logs" msgstr "" @@ -1383,30 +1380,166 @@ msgstr "" msgid "This is a test notification from SickRage" msgstr "" -#: gui/slick/js/core.js:481 gui/slick/js/core.js:502 gui/slick/js/core.js:524 -#: gui/slick/js/core.js:548 gui/slick/js/core.js:573 gui/slick/js/core.js:596 -#: gui/slick/js/core.js:625 gui/slick/js/core.js:645 gui/slick/js/core.js:690 -#: gui/slick/js/core.js:769 gui/slick/js/core.js:829 gui/slick/js/core.js:849 -#: gui/slick/js/core.js:879 gui/slick/js/core.js:909 gui/slick/js/core.js:969 -#: gui/slick/js/core.js:1046 gui/slick/js/core.js:1066 gui/slick/js/core.js:1085 +#: gui/slick/js/browser.js:6 +msgid "Choose Directory" +msgstr "" + +#: gui/slick/js/core.js:443 +msgid "Select log file folder location" +msgstr "" + +#: gui/slick/js/core.js:445 +msgid "Select CSS file" +msgstr "" + +#: gui/slick/js/core.js:469 +msgid "Select backup folder to save to" +msgstr "" + +#: gui/slick/js/core.js:470 +msgid "Select backup files to restore" +msgstr "" + +#: gui/slick/js/core.js:479 gui/slick/js/core.js:500 gui/slick/js/core.js:522 +#: gui/slick/js/core.js:546 gui/slick/js/core.js:571 gui/slick/js/core.js:594 +#: gui/slick/js/core.js:623 gui/slick/js/core.js:643 gui/slick/js/core.js:688 +#: gui/slick/js/core.js:767 gui/slick/js/core.js:827 gui/slick/js/core.js:847 +#: gui/slick/js/core.js:877 gui/slick/js/core.js:907 gui/slick/js/core.js:967 +#: gui/slick/js/core.js:1044 gui/slick/js/core.js:1064 gui/slick/js/core.js:1083 msgid "Please fill out the necessary fields above." msgstr "" -#: gui/slick/js/core.js:1328 gui/slick/js/core.js:1378 gui/slick/js/core.js:1427 -#: gui/slick/js/core.js:1493 +#: gui/slick/js/core.js:680 +msgid "<b>Step 1:</b> Confirm Authorization" +msgstr "" + +#: gui/slick/js/core.js:977 +msgid "Check blacklist name; the value needs to be a trakt slug" +msgstr "" + +#: gui/slick/js/core.js:1022 +msgid "You must provide a recipient email address!" +msgstr "" + +#: gui/slick/js/core.js:1107 +msgid "You didn't supply a Pushbullet api key" +msgstr "" + +#: gui/slick/js/core.js:1133 gui/slick/js/core.js:1162 +msgid "Don't forget to save your new pushbullet settings." +msgstr "" + +#: gui/slick/js/core.js:1262 +msgid "Select TV Download Directory" +msgstr "" + +#: gui/slick/js/core.js:1263 +msgid "Select Unpack Directory" +msgstr "" + +#: gui/slick/js/core.js:1326 gui/slick/js/core.js:1376 gui/slick/js/core.js:1425 +#: gui/slick/js/core.js:1491 msgid "This pattern is invalid." msgstr "" -#: gui/slick/js/core.js:1336 gui/slick/js/core.js:1386 gui/slick/js/core.js:1435 -#: gui/slick/js/core.js:1501 +#: gui/slick/js/core.js:1334 gui/slick/js/core.js:1384 gui/slick/js/core.js:1433 +#: gui/slick/js/core.js:1499 msgid "This pattern would be invalid without the folders, using it will force \"Season Folders\" on for all shows." msgstr "" -#: gui/slick/js/core.js:1344 gui/slick/js/core.js:1394 gui/slick/js/core.js:1443 -#: gui/slick/js/core.js:1509 +#: gui/slick/js/core.js:1342 gui/slick/js/core.js:1392 gui/slick/js/core.js:1441 +#: gui/slick/js/core.js:1507 msgid "This pattern is valid." msgstr "" +#: gui/slick/js/core.js:1818 +msgid "Select .nzb black hole/watch location" +msgstr "" + +#: gui/slick/js/core.js:1819 +msgid "Select .torrent black hole/watch location" +msgstr "" + +#: gui/slick/js/core.js:1820 +msgid "Select .torrent download location" +msgstr "" + +#: gui/slick/js/core.js:1900 +msgid "Minimum seeding time is" +msgstr "" + +#: gui/slick/js/core.js:1902 +msgid "URL to your uTorrent client (e.g. http://localhost:8000)" +msgstr "" + +#: gui/slick/js/core.js:1905 +msgid "Stop seeding when inactive for" +msgstr "" + +#: gui/slick/js/core.js:1911 +msgid "URL to your Transmission client (e.g. http://localhost:9091)" +msgstr "" + +#: gui/slick/js/core.js:1921 +msgid "URL to your Deluge client (e.g. http://localhost:8112)" +msgstr "" + +#: gui/slick/js/core.js:1930 +msgid "IP or Hostname of your Deluge Daemon (e.g. scgi://localhost:58846)" +msgstr "" + +#: gui/slick/js/core.js:1937 +msgid "URL to your Synology DS client (e.g. http://localhost:5000)" +msgstr "" + +#: gui/slick/js/core.js:1941 +msgid "URL to your rTorrent client (e.g. scgi://localhost:5000 <br> or https://localhost/rutorrent/plugins/httprpc/action.php)" +msgstr "" + +#: gui/slick/js/core.js:1952 +msgid "URL to your qBittorrent client (e.g. http://localhost:8080)" +msgstr "" + +#: gui/slick/js/core.js:1962 +msgid "URL to your MLDonkey (e.g. http://localhost:4080)" +msgstr "" + +#: gui/slick/js/core.js:1974 +msgid "URL to your putio client (e.g. http://localhost:8080)" +msgstr "" + +#: gui/slick/js/core.js:1975 +msgid "<a herf=\"https://app.put.io/oauth/apps/new\" target=\"_blank\"> Create a new OAuth app for put.io</a>" +msgstr "" + +#: gui/slick/js/core.js:1977 +msgid "Put.io Parent Folder" +msgstr "" + +#: gui/slick/js/core.js:1978 +msgid "Put.io OAuth Token" +msgstr "" + +#: gui/slick/js/core.js:3383 gui/slick/views/displayShow.mako:410 +msgid "Show Episodes" +msgstr "" + +#: gui/slick/js/core.js:3388 gui/slick/views/displayShow.mako:408 +msgid "Hide Episodes" +msgstr "" + +#: gui/slick/js/core.js:3396 +msgid "Select Show Location" +msgstr "" + +#: gui/slick/js/core.js:3460 +msgid "Select Unprocessed Episode Folder" +msgstr "" + +#: gui/slick/js/core.js:3790 +msgid "DELETED" +msgstr "" + #: gui/slick/js/core.js:4082 msgid "Resume updating the log on this page." msgstr "" @@ -1415,6 +1548,26 @@ msgstr "" msgid "Pause updating the log on this page." msgstr "" +#: gui/slick/js/core.js:4323 +msgid "searching {searchingFor}..." +msgstr "" + +#: gui/slick/js/core.js:4334 +msgid "search timed out, try again or try another indexer" +msgstr "" + +#: gui/slick/js/core.js:4503 +msgid "loading folders..." +msgstr "" + +#: gui/slick/js/parsers.js:7 gui/slick/js/parsers.js:8 +#: gui/slick/js/plotTooltip.js:6 gui/slick/js/sceneExceptionsTooltip.js:6 +#: gui/slick/views/inc_home_showList.mako:209 +#: gui/slick/views/inc_home_showList.mako:215 +#: gui/slick/views/inc_home_showList.mako:231 +msgid "Loading..." +msgstr "" + #: gui/slick/views/404.mako:5 msgid "You have reached this page by accident, please check the url." msgstr "" @@ -5711,14 +5864,6 @@ msgstr "" msgid "Select Columns" msgstr "" -#: gui/slick/views/displayShow.mako:408 -msgid "Hide Episodes" -msgstr "" - -#: gui/slick/views/displayShow.mako:410 -msgid "Show Episodes" -msgstr "" - #: gui/slick/views/displayShow.mako:424 msgid "NFO" msgstr "" @@ -6232,12 +6377,6 @@ msgstr "" msgid "loading" msgstr "" -#: gui/slick/views/inc_home_showList.mako:209 -#: gui/slick/views/inc_home_showList.mako:215 -#: gui/slick/views/inc_home_showList.mako:231 -msgid "Loading..." -msgstr "" - #: gui/slick/views/inc_qualityChooser.mako:31 msgid "<p><b><u>Preferred</u></b> qualities will replace those in <b><u>allowed</u></b>, even if they are lower.</p>" msgstr "" @@ -6775,6 +6914,10 @@ msgstr "" msgid "Update Emby" msgstr "" +#: gui/slick/views/layouts/main.mako:167 +msgid "Manage Torrents" +msgstr "" + #: gui/slick/views/layouts/main.mako:173 msgid "Missed Subtitle Management" msgstr "" diff --git a/locale/fi_FI/LC_MESSAGES/messages.json b/locale/fi_FI/LC_MESSAGES/messages.json index 0ef0f67eee04dfbd75465723562053a038dedf7c..4bd6ab640df335c37a9337b05dbe16f3291f9f64 100644 --- a/locale/fi_FI/LC_MESSAGES/messages.json +++ b/locale/fi_FI/LC_MESSAGES/messages.json @@ -1 +1 @@ -{"messages":{"domain":"messages","locale_data":{"messages":{"100":[null,"100"],"250":[null,"250"],"500":[null,"500"],"":{"domain":"messages","plural_forms":"nplurals=2; plural=(n != 1);","lang":"fi_FI"},"Drama":[null,"Draama"],"Mystery":[null,"Mysteeri"],"Science-Fiction":[null,"Science-Fiction"],"Crime":[null,"Rikos"],"Action":[null,"Toiminto"],"Comedy":[null,"Komedia"],"Thriller":[null,"Trilleri"],"Animation":[null,"Animaatio"],"Family":[null,"Perhe"],"Fantasy":[null,"Fantasia"],"Adventure":[null,"Seikkailu"],"Horror":[null,"Kauhu"],"Film-Noir":[null,"Film Noir"],"Sci-Fi":[null,"Sci-Fi"],"Romance":[null,"Romantiikka"],"Sport":[null,"Urheilu"],"War":[null,"Sota"],"Biography":[null,"Elämäkerta"],"History":[null,"Historia"],"Music":[null,"Musiikki"],"Western":[null,"Western"],"News":[null,"Uutiset"],"Sitcom":[null,"Tilannekomedia"],"Reality-TV":[null,"Tosi-TV"],"Documentary":[null,"Dokumentti"],"Game-Show":[null,""],"Musical":[null,"Musikaali"],"Talk-Show":[null,"Keskusteluohjelma"],"Started Download":[null,"Lataus aloitettu"],"Download Finished":[null,"Lataus valmis"],"Subtitle Download Finished":[null,"Tekstityksien lataus valmis"],"SickRage Updated":[null,"SickRage päivitetty"],"SickRage Updated To Commit#: ":[null,"SickRage päivitetty Commit #: "],"SickRage new login":[null,"Uusi kirjautuminen SickRageen"],"New login from IP: {0}. http://geomaplookup.net/?ip={0}":[null,"Uusi kirjautuminen IP:stä: {0}. http://geomaplookup.net/?ip={0}"],"Repeat":[null,""],"Repeat (Separated)":[null,""],"Extend":[null,""],"Extend (Limited)":[null,""],"Extend (Limited, E-prefixed)":[null,""],"Downloaded":[null,"Ladattu"],"Snatched":[null,"Napattu"],"Snatched (Proper)":[null,"Napattu (Proper)"],"Failed":[null,"Epäonnistunut"],"Snatched (Best)":[null,"Napattu (Paras)"],"Archived":[null,"Arkistoitu"],"Unknown":[null,"Tuntematon"],"Unaired":[null,"Esittämätön"],"Skipped":[null,"Ohitettu"],"Wanted":[null,"Haluttu"],"Ignored":[null,"Sivuutettu"],"Subtitled":[null,"Tekstitetty"],"<No Filter>":[null,""],"Daily Searcher":[null,""],"Backlog":[null,"Rästityöt"],"Show Updater":[null,""],"Check Version":[null,""],"Show Queue":[null,"Näytä jono"],"Search Queue (All)":[null,""],"Search Queue (Daily Searcher)":[null,""],"Search Queue (Backlog)":[null,""],"Search Queue (Manual)":[null,""],"Search Queue (Retry/Failed)":[null,""],"Search Queue (RSS)":[null,""],"Find Propers":[null,""],"Postprocessor":[null,""],"Find Subtitles":[null,""],"Trakt Checker":[null,""],"Event":[null,""],"Error":[null,"Virhe"],"Tornado":[null,""],"Thread":[null,""],"Main":[null,""],"Loading":[null,""],"New update found for SickRage, starting auto-updater":[null,"Uusi päivitys SickRagelle löytyi, aloitetaan päivitys"],"Update was successful":[null,"Päivitys onnistui"],"Update failed!":[null,"Päivitys epäonnistui!"],"Backup":[null,"Varmuuskopioi"],"Config backup in progress...":[null,"Asetusten varmuuskopiointi käynnissä..."],"Config backup successful, updating...":[null,""],"Config backup failed, aborting update":[null,""],"No update needed":[null,"Päivitystä ei tarvita"],"Mako Error":[null,"Mako virhe"],"Oops":[null,"Hups"],"Wrong API key used":[null,"Virheellinen API-avain kätetty"],"Login":[null,"Kirjaudu"],"API Key not generated":[null,"API-avainta ei luotu"],"API Builder":[null,"API-kääntäjä"],"Schedule":[null,"Aikataulu"],"Test 1":[null,"Testi 1"],"This is test number 1":[null,"Tämä on testi numero 1"],"Test 2":[null,"Testi 2"],"This is test number 2":[null,"Tämä on testi numero 2"],"You're using the {branch} branch. Please use 'master' unless specifically asked":[null,"Käytät {branch}-haaraa. Käytä \"master\"-haaraa, ellei erikseen pyydetä"],"Invalid show parameters":[null,"Virheelliset sarjan parametrit"],"Invalid parameters":[null,""],"Episode couldn't be retrieved":[null,"Jaksoa ei voitu hakea"],"Home":[null,"Koti"],"Show List":[null,"Näytä lista"],"Error: Unsupported Request. Send jsonp request with 'callback' variable in the query string.":[null,"Virhe: Pyyntöä ei tueta. Lähetä jsonp-pyyntö laittamalla \"callback\" muuttuja kysymysriville."],"Success. Connected and authenticated":[null,"Onnitui. Yhdistetty ja todennettu"],"Authentication failed. SABnzbd expects":[null,"Todennus epäonnistui. SABnzbd odottaa"],"as authentication method":[null,"todennustapana"],"Unable to connect to host":[null,"Yhteyttä ei voitu muodostaa isäntäpalvelimeen"],"SMS sent successfully":[null,"Viestin lähetys onnistui"],"Problem sending SMS: {message}":[null,"Ongelma lähetettäessä viestiä: {message}"],"Telegram notification succeeded. Check your Telegram clients to make sure it worked":[null,"Telegram-ilmoitus onnistui. Tarkista Telegrammisi varmistaaksesi toiminnan"],"Error sending Telegram notification: {message}":[null,"Virhe lähetettäessä Telegram-ilmoitusta: {message}"],"join notification succeeded. Check your join clients to make sure it worked":[null,""],"Error sending join notification: {message}":[null,""]," with password":[null," salasanalla"],"Registered and Tested growl successfully {growl_host}":[null,"Growl rekisteröity ja testattu onnistuneesti {growl_host}"],"Registration and Testing of growl failed {growl_host}":[null,"Growlin rekisteröinti ja testaus epäonnistui {growl_host}"],"Test prowl notice sent successfully":[null,"Prowl testi-ilmoitus lähetetty onnistuneesti"],"Test prowl notice failed":[null,"Prowl testi-ilmoituksen lähetys epäonnistui"],"Boxcar2 notification succeeded. Check your Boxcar2 clients to make sure it worked":[null,"Boxcar2-ilmoitus onnistui. Tarkista Boxcar2 ohjelmasi varmistaaksesi toiminnan"],"Error sending Boxcar2 notification":[null,"Virhe lähetettäessä Boxcar2-ilmoitusta"],"Pushover notification succeeded. Check your Pushover clients to make sure it worked":[null,""],"Error sending Pushover notification":[null,"Virhe lähetettäessä Pushover-ilmoitusta"],"Key verification successful":[null,"Avaimen tarkistaminen onnistui"],"Unable to verify key":[null,"Avaimen tarkistus ei onnistu"],"Tweet successful, check your twitter to make sure it worked":[null,"Tweettaus onnistui, mutta varmista asia vielä Twitteristä"],"Error sending tweet":[null,"Virhe tweetiä lähetettäessä"],"Please enter a valid account sid":[null,""],"Please enter a valid auth token":[null,""],"Please enter a valid phone sid":[null,""],"Please format the phone number as \"+1-###-###-####\"":[null,""],"Authorization successful and number ownership verified":[null,""],"Error sending sms":[null,""],"Slack message successful":[null,""],"Slack message failed":[null,""],"Discord message successful":[null,""],"Discord message failed":[null,""],"Test KODI notice sent successfully to {kodi_host}":[null,"Testi-ilmoitus lähetetty onnistuneesti KODI:in {kodi_host}"],"Test KODI notice failed to {kodi_host}":[null,"Testi-ilmoituksen lähetys epäonnistui KODI:in {kodi_host}"],"Successful test notice sent to Plex Home Theater ... {plex_clients}":[null,"Testi-ilmoitus lähetetty onnistuneesti Plex Home Theateriin... {plex_clients}"],"Test failed for Plex Home Theater ... {plex_clients}":[null,"Testi-ilmoituksen lähetys epäonnistui Plex Home Theateriin... {plex_clients}"],"Tested Plex Home Theater(s)":[null,"Testatut Plex Home Theaterit"],"Successful test of Plex Media Server(s) ... {plex_servers}":[null,"Testi-ilmoitus lähetetty onnistuneesti Plex Media Serveriin... {plex_servers}"],"Test failed, No Plex Media Server host specified":[null,"Testi epäonnistui. Plex Media Serverin isäntää ei ole määritetty"],"Test failed for Plex Media Server(s) ... {plex_servers}":[null,"Testi-ilmoituksen lähetys epäonnistui Plex Media Serveriin... {plex_servers}"],"Tested Plex Media Server host(s)":[null,"Testattu Plex Media Server isäntä"],"Tried sending desktop notification via libnotify":[null,"Yritetty lähettää työpöytäilmoitus sovelluksella libnotify"],"Test notice sent successfully to {emby_host}":[null,"Testi-ilmoitus lähetetty onnistuneesti {emby_host}"],"Test notice failed to {emby_host}":[null,"Testi-ilmoituksen lähetys epäonnistui {emby_host}"],"Successfully started the scan update":[null,"Skannauspäivitys käynnistetty onnistuneesti"],"Test failed to start the scan update":[null,"Skannauspäivityksen käynnistäminen epäonnistui"],"Test notice sent successfully to {nmj2_host}":[null,""],"Test notice failed to {nmj2_host}":[null,""],"Trakt Authorized":[null,""],"Trakt Not Authorized!":[null,""],"Test email sent successfully! Check inbox.":[null,""],"ERROR: {last_error}":[null,"VIRHE: {last_error}"],"Test NMA notice sent successfully":[null,"NMA-testi-ilmoitus lähetetty onnistuneesti"],"Test NMA notice failed":[null,""],"Pushalot notification succeeded. Check your Pushalot clients to make sure it worked":[null,""],"Error sending Pushalot notification":[null,"Virhe lähetettäessä Pushalot-ilmoitusta"],"Pushbullet notification succeeded. Check your device to make sure it worked":[null,""],"Error sending Pushbullet notification":[null,""],"Status":[null,"Tila"],"Restarting SickRage":[null,"SickRage uudelleenkäynnistyy"],"Update Failed":[null,"Päivitys epäonnistui"],"Update wasn't successful, not restarting. Check your log for more information.":[null,"Päivitys ei onnistunut, joten ei uudelleenkäynnistetä. Katso logeista lisätietoja."],"Checking out branch":[null,""],"Already on branch":[null,""],"Invalid show ID: {show}":[null,"Virheellinen sarjan tunnus: {show}"],"Show not in show list":[null,"Sarjaa ei ole sarjojen listauksessa"],"Edit":[null,"Muokkaa"],"This show is in the process of being downloaded - the info below is incomplete.":[null,""],"The information on this page is in the process of being updated.":[null,""],"The episodes below are currently being refreshed from disk":[null,""],"Currently downloading subtitles for this show":[null,""],"This show is queued to be refreshed.":[null,""],"This show is queued and awaiting an update.":[null,""],"This show is queued and awaiting subtitles download.":[null,""],"Resume":[null,"Jatka"],"Pause":[null,"Tauko"],"Remove":[null,"Poista"],"Re-scan files":[null,"Uudelleen tarkista tiedostot"],"Force Full Update":[null,"Pakota täydellinen päivitys"],"Update show in KODI":[null,"Päivitä ohjelma KODI:ssa"],"Update show in Emby":[null,"Päivitä ohjelma Emby:ssa"],"Hide specials":[null,""],"Show specials":[null,""],"Preview Rename":[null,"Esikatsele uudelleennimeäminen"],"Download Subtitles":[null,"Lataa tekstitykset"],"No scene exceptions":[null,""],"Invalid show ID":[null,"Virheellinen sarjan tunnus"],"Unable to find the specified show":[null,"Määriteltyä sarjaa ei löydy"],"Unable to retreive Fansub Groups from AniDB.":[null,""],"Edit Show":[null,"Muokkaa ohjelmaa"],"Unable to refresh this show: {error}":[null,"Ei voi päivittää tätä sarjaa: {error}"],"New location <tt>{location}</tt> does not exist":[null,""],"Unable to update show: {error}":[null,"Tätä sarjaa ei voitu päivittää: {error}"],"Unable to force an update on scene exceptions of the show.":[null,""],"Unable to force an update on scene numbering of the show.":[null,""],"{num_errors:d} error{plural} while saving changes:":[null,""],"{show_name} has been {paused_resumed}":[null,"{show_name} {paused_resumed}"],"resumed":[null,"jatketaan"],"paused":[null,"keskeytetty"],"{show_name} has been {deleted_trashed} {was_deleted}":[null,"{show_name} on {deleted_trashed} {was_deleted}"],"deleted":[null,"poistettu"],"trashed":[null,"poistettu"],"(media untouched)":[null,"(mediaan ei koskettu)"],"(with all related media)":[null,""],"Unable to refresh this show.":[null,"Ei voi päivittää tätä sarjaa."],"Unable to update this show.":[null,"Tätä sarjaa ei voitu päivittää."],"Library update command sent to KODI host(s)): {kodi_hosts}":[null,"Kirjaston päivitys komento lähetetty KODI:iin {kodi_hosts}"],"Unable to contact one or more KODI host(s)): {kodi_hosts}":[null,"Ei yhteyttä yhteen tai useampaan KODI:iin {kodi_hosts}"],"Library update command sent to Plex Media Server host: {plex_server}":[null,"Kirjaston päivitys komento lähetetty Plex Media Serveriin {plex_server}"],"Unable to contact Plex Media Server host: {plex_server}":[null,"Ei yhteyttä Plex Media Serveriin {plex_server}"],"Library update command sent to Emby host: {emby_host}":[null,""],"Unable to contact Emby host: {emby_host}":[null,""],"You must specify a show and at least one episode":[null,"Sinun täytyy määrittää sarja ja ainakin yksi sen jakso"],"Invalid status":[null,"Virheellinen tila"],"Backlog was automatically started for the following seasons of <b>{show_name}</b>":[null,"Rästissä olevien haku aloitettiin automaattisesti sarjan <b>{show_name}</b> kausille"],"Season":[null,"Kausi"],"Backlog started":[null,"Rästityöt aloitettu"],"Retrying Search was automatically started for the following season of <b>{show_name}</b>":[null,""],"Retry Search started":[null,""],"You must specify a show":[null,""],"Can't rename episodes when the show dir is missing.":[null,""],"New subtitles downloaded: {new_subtitle_languages}":[null,""],"No subtitles downloaded":[null,"Teksityksiä ei ladattu"],"IRC":[null,"IRC"],"Could not load news from the repo. [Click here for news.md])({news_url})":[null,""],"The was a problem connecting to github, please refresh and try again":[null,""],"Could not load changes from the repo. [Click here for CHANGES.md]({changes_url})":[null,""],"Changelog":[null,"Muutosloki"],"Post Processing":[null,"Jälkikäsittely"],"Add Shows":[null,"Lisää sarjoja"],"No folders selected.":[null,"Yhtään kansiota ei ole valittu."],"New Show":[null,"Uusi sarja"],"Trending Shows":[null,""],"Popular Shows":[null,"Suosittuja sarjoja"],"Most Anticipated Shows":[null,""],"Most Collected Shows":[null,""],"Most Watched Shows":[null,""],"Most Played Shows":[null,""],"Recommended Shows":[null,""],"New Shows":[null,"Uudet sarjat"],"Season Premieres":[null,"Kausi alkaa"],"Existing Show":[null,"Olemassa oleva sarja"],"No root directories setup, please go back and add one.":[null,""],"Show added":[null,"Sarja lisätty"],"Adding the specified show {show_name}":[null,""],"Missing params, no Indexer ID or folder: {show_to_add} and {root_dir}/{show_path}":[null,""],"Unknown error. Unable to add show due to problem with show selection.":[null,""],"Unable to add show":[null,""],"Folder {show_dir} exists already":[null,""],"Unable to create the folder {show_dir}, can't add the show":[null,""],"Adding the specified show into {show_dir}":[null,""],"Shows Added":[null,""],"Automatically added {num_shows} from their existing metadata files":[null,""],"Mass Update":[null,"Massapäivitys"],"Episode Overview":[null,"Jaksojen yleiskatsaus"],"Missing Subtitles":[null,"Puuttuvat tekstitykset"],"Backlog Overview":[null,"Rästitöiden yleiskatsaus"],"Mass Edit":[null,"Massamuokkaa"],"Unable to update show: {excption_format}":[null,""],"Unable to refresh show {show_name}: {excption_format}":[null,""],"Errors encountered":[null,"Kohdatut virheet"],"Updates":[null,"Päivitykset"],"Refreshes":[null,""],"Renames":[null,""],"Subtitles":[null,"Tekstitykset"],"The following actions were queued":[null,""],"For best results please set the Download Station alias as":[null,""],"You can check this setting in the Synology DSM":[null,""],"Control Panel":[null,"Ohjauspaneli"],"Application Portal":[null,""],"Make sure you allow DSM to be embedded with iFrames too in":[null,""],"DSM Settings":[null,"DSM-asetukset"],"Security":[null,"Turvallisuus"],"Manage Torrents":[null,"Hallitse torrenteja"],"Failed Downloads":[null,"Epäonnistuneet lataukset"],"Manage Searches":[null,"Hallitse hakuja"],"Backlog search started":[null,"Rästissä olevien haku aloitettu"],"Daily search started":[null,"Päivittäinen haku aloitettu"],"Find propers search started":[null,"Proper-versioiden haku haku alkoi"],"Subtitle search started":[null,"Tekstityste haku aloitettu"],"Remove Selected":[null,""],"Clear History":[null,"Tyhjennä historia"],"Trim History":[null,"Lyhennä historia"],"Selected history entries removed":[null,""],"History cleared":[null,"Historia tyhjennetty"],"Removed history entries older than 30 days":[null,""],"General":[null,"Yleiset"],"Backup/Restore":[null,"Varmuuskopioi/Palauta"],"Search Settings":[null,"Haun asetukset"],"Search Providers":[null,""],"Subtitles Settings":[null,"Tekstityksen asetukset"],"Notifications":[null,"Ilmoitukset"],"Anime":[null,"Anime"],"SickRage Configuration":[null,"SickRagen asetukset"],"Config - Shares":[null,""],"Windows Shares Configuration":[null,""],"Saved Shares":[null,""],"Your Windows share settings have been saved":[null,""],"Config - General":[null,"Asetukset - Yleiset"],"General Configuration":[null,"Yleiset asetukset"],"Saved Defaults":[null,""],"Your \"add show\" defaults have been set to your current selections.":[null,""],"Unable to create directory {directory}, log directory not changed.":[null,""],"Unable to create directory {directory}, https cert directory not changed.":[null,""],"Unable to create directory {directory}, https key directory not changed.":[null,""],"Error(s) Saving Configuration":[null,"Virhe(itä) asetuksia tallennettaessa"],"Configuration Saved":[null,"Asetukset tallennettu"],"Config - Backup/Restore":[null,"Asetukset - Varmuuskopiointi/Palautus"],"Config - Episode Search":[null,"Asetukset - Jaksojen haku"],"Config - Post Processing":[null,"Asetukset - Jälkikäsittely"],"Unpacking Not Supported, disabling unpack setting":[null,""],"You tried saving an invalid normal naming config, not saving your naming settings":[null,""],"You tried saving an invalid anime naming config, not saving your naming settings":[null,""],"Config - Providers":[null,"Asetukset - Tarjoajat"],"No Provider Name specified":[null,""],"No Provider Url specified":[null,""],"No Provider Api key specified":[null,""],"Config - Notifications":[null,"Asetukset - Ilmoitukset"],"Config - Subtitles":[null,"Asetukset - Tekstitykset"],"Config - Anime":[null,"Asetukset - Anime"],"Clear Errors":[null,"Tyhjennä virheet"],"Clear Warnings":[null,"Tyhjennä varoitukset"],"Submit Errors":[null,"Lähetä virheet"],"Logs & Errors":[null,"Lokit & Virheet"],"Log File":[null,"Lokitiedosto"],"Logs":[null,"Lokit"],"This is a test notification from SickRage":[null,""],"Please fill out the necessary fields above.":[null,""],"This pattern is invalid.":[null,""],"This pattern would be invalid without the folders, using it will force \"Season Folders\" on for all shows.":[null,""],"This pattern is valid.":[null,""],"Resume updating the log on this page.":[null,""],"Pause updating the log on this page.":[null,""],"You have reached this page by accident, please check the url.":[null,"Päädyist tälle sivulle vahingossa, tarkista URL-osoite."],"A mako error has occured.<br>\n If this happened during an update a simple page refresh may be the solution.<br>\n Mako errors that happen during updates may be a one time error if there were significant ui changes.":[null,""],"Show/Hide Error":[null,""],"Add New Show":[null,"Lisää uusi sarja"],"For shows that you haven't downloaded yet, this option finds a show on theTVDB.com, creates a directory for it's episodes, and adds it to SickRage.":[null,""],"Add From Trakt Lists":[null,"Lisää Trakt luetteloista"],"For shows that you haven't downloaded yet, this option lets you choose from a show from one of the Trakt lists to add to SickRage.":[null,""],"Add From IMDB's Popular Shows":[null,""],"View IMDB's list of the most popular shows. This feature uses IMDB's MOVIEMeter algorithm to identify popular TV Series.":[null,""],"Add Existing Shows":[null,"Lisää olemassa olevat sarjat"],"Use this option to add shows that already have a folder created on your hard drive. SickRage will scan your existing metadata/episodes and add the show accordingly.":[null,"Tämän vaihtoehdon avulla voit lisätä sarjoja, joilla on kansio kiintolevyllä. SickRage tarkistaa olemassa olevat metatiedot/jaksot ja lisää sarjan sen mukaisesti."],"Add Existing Show":[null,"Lisää olemassa olevat sarja"],"Manage Directories":[null,"Hallitse kansioita"],"Customize Options":[null,"Asetusten mukauttaminen"],"SickRage can add existing shows, using the current options, by using locally stored NFO/XML metadata to eliminate user interaction. If you would rather have SickRage prompt you to customize each show, then use the checkbox below.":[null,""],"Prompt me to set settings for each show":[null,"Kysy asetukset jokaiseen sarjaan"],"Displaying folders within these directories which aren't already added to SickRage":[null,""],"Submit":[null,"Lähetä"],"Find a show on theTVDB":[null,"Etsi sarja theTVDB:stä"],"Show retrieved from existing metadata":[null,""],"All Indexers":[null,""],"Search":[null,""],"This will only affect the language of the retrieved metadata file contents and episode filenames.":[null,""],"This <b>DOES NOT</b> allow SickRage to download non-english TV episodes!":[null,"Tämä <b>Ei</b> anna SickRagen ladata ei englanninkielisiä TV-jaksoja!"],"Pick the parent folder":[null,""],"Pre-chosen Destination Folder":[null,""],"Customize options":[null,"Asetusten mukauttaminen"],"Add Show":[null,"Lisää sarja"],"Skip Show":[null,""],"Sort By":[null,"Lajittele"],"Name":[null,"Nimi"],"Original":[null,"Alkuperäinen"],"Votes":[null,"Äänet"],"Rating":[null,"Arvostelu"],"Rating > Votes":[null,"Pisteet > Äänet"],"Sort Order":[null,"Lajittelujärjestys"],"Asc":[null,"Nouseva"],"Desc":[null,"Laskeva"],"Fetching of IMDB Data failed. Are you online?":[null,""],"Exception":[null,"Poikkeus"],"Select Trakt List":[null,""],"Most Anticipated":[null,"Odotetuimmat"],"Trending":[null,"Trendit"],"Popular":[null,"Suositut"],"Most Watched":[null,"Katsotuimmat"],"Most Played":[null,"Useimmin toistetut"],"Most Collected":[null,""],"Recommended":[null,"Suositellut"],"Toggle navigation":[null,""],"Profile":[null,"Profiili"],"JSONP":[null,"JSONP"],"Back to SickRage":[null,""],"Parameters":[null,"Parametrit"],"Required":[null,"Pakollinen"],"Description":[null,"Kuvaus"],"Type":[null,"Tyyppi"],"Default value":[null,"Oletusarvo"],"Allowed values":[null,"Sallitut arvot"],"Playground":[null,"Leikkikenttä"],"Clear":[null,"Tyhjennä"],"Yes":[null,"Kyllä"],"No":[null,"Ei"],"season":[null,"kausi"],"episode":[null,"jakso"],"Python Version":[null,"Python versio"],"SSL Version":[null,"SSL versio"],"OS":[null,"OS"],"Locale":[null,"Alueasetus"],"User":[null,"Käyttäjä"],"Program Folder":[null,"Ohjelman kansio"],"Config File":[null,"Asetustiedosto"],"Database File":[null,"Tietokantatiedosto"],"Cache Folder":[null,"Välimuistikansio"],"Log Folder":[null,"Lokikansio"],"Arguments":[null,"Muuttujat"],"Web Root":[null,""],"Website":[null,"Sivusto"],"Wiki":[null,"Wiki"],"Source":[null,"Lähde"],"IRC Chat":[null,"IRC Chat"],"AnimeDB Settings":[null,"AnimeDB asetukset"],"Look & Feel":[null,"Ulkoasu"],"AniDB is non-profit database of anime information that is freely open to the public":[null,""],"Enable":[null,"Käytä"],"should SickRage use data from AniDB?":[null,""],"AniDB Username":[null,"AniDB käyttäjänimi"],"username of your AniDB account":[null,""],"AniDB Password":[null,"AniDB salasana"],"password of your AniDB account":[null,""],"AniDB MyList":[null,"AniDB MyList"],"do you want to add the PostProcessed episodes to the MyList?":[null,""],"Look and Feel":[null,"Ulkoasu"],"How should the anime functions show and behave.":[null,""],"Split show lists":[null,""],"separate anime and normal shows in groups":[null,""],"Split in tabs":[null,""],"use tabs for when splitting show lists":[null,""],"Restore":[null,"Palauta"],"Backup your main database file and config.":[null,""],"Select the folder you wish to save your backup file to":[null,""],"Restore your main database file and config.":[null,""],"Select the backup file you wish to restore":[null,""],"Misc":[null,""],"Interface":[null,"Käyttöliittymä"],"Advanced Settings":[null,"Lisäasetukset"],"Startup options. Indexer options. Log and show file locations.":[null,""],"Some options may require a manual restart to take effect.":[null,""],"Default Indexer Language":[null,""],"for adding shows and metadata providers":[null,""],"Launch browser":[null,"Käynnistä selain"],"open the SickRage home page on startup":[null,""],"Initial page":[null,"Aloitussivu"],"Shows":[null,"Sarjat"],"when launching SickRage interface":[null,""],"Choose hour to update shows":[null,""],"with information such as next air dates, show ended, etc. Use 15 for 3pm, 4 for 4am etc.":[null,""],"note":[null,""],"minutes are randomized each time SickRage is started":[null,""],"Send to trash for actions":[null,""],"when using show \"Remove\" and delete files":[null,""],"on scheduled deletes of the oldest log files":[null,""],"selected actions use trash (recycle bin) instead of the default permanent delete":[null,""],"Log file folder location":[null,"Lokitiedoston kansion sijainti"],"Number of Log files saved":[null,""],"number of log files saved when rotating logs (default: 5) (REQUIRES RESTART)":[null,""],"Size of Log files saved":[null,""],"maximum size in MB of the log file (default: 1MB) (REQUIRES RESTART)":[null,""],"Use initial indexer set to":[null,""],"as the default selection when adding new shows":[null,""],"Timeout show indexer at":[null,""],"seconds of inactivity when finding new shows (default:20)":[null,""],"Show root directories":[null,""],"where the files of shows are located":[null,""],"Save Changes":[null,"Tallenna muutokset"],"Options for software updates.":[null,""],"Check software updates":[null,""],"and display notifications when updates are available. Checks are run on startup and at the frequency set below*":[null,""],"Automatically update":[null,"Päivitä automaattisesti"],"fetch and install software updates. Updates are run on startup and in the background at the frequency set below*":[null,""],"Check the server every*":[null,""],"hours for software updates (default:1)":[null,""],"Notify on software update":[null,"Ilmoita ohjelmistopäivityksistä"],"send a message to all enabled notifiers when SickRage has been updated":[null,""],"User Interface":[null,""],"Options for visual appearance.":[null,""],"Interface Language":[null,"Käyttöliittymän kieli"],"System Language":[null,"Järjestelmän kieli"],"for appearance to take effect, save then refresh your browser":[null,""],"Display theme":[null,""],"Dark":[null,""],"Light":[null,""],"Use a background image":[null,""],"use a custom image as background for SickRage":[null,""],"Background Path":[null,""],"Path to the background image":[null,""],"Show fanart in the background":[null,""],"on the show summary page":[null,""],"Fanart transparency":[null,""],"transparency of the fanart in the background":[null,""],"Use a custom stylesheet file":[null,""],"use a custom .css file to style SickRage (for advanced users)":[null,""],"Stylesheet File Path":[null,""],"Path to the stylesheet (.css) file":[null,""],"Show all seasons":[null,"Näytä kaikki kaudet"],"Sort with \"The\", \"A\", \"An\"":[null,""],"include articles (\"The\", \"A\", \"An\") when sorting show lists":[null,""],"Missed episodes range":[null,""],"set the range in days of the missed episodes in the Schedule page":[null,""],"Display fuzzy dates":[null,""],"move absolute dates into tooltips and display e.g. \"Last Thu\", \"On Tue\"":[null,""],"Trim zero padding":[null,""],"remove the leading number \"0\" shown on hour of day, and date of month":[null,""],"Date style":[null,""],"Use System Default":[null,""],"Time style":[null,""],"seconds are only shown on the History page":[null,""],"Timezone":[null,"Aikavyöhyke"],"Local":[null,""],"Network":[null,"Kanava"],"display dates and times in either your timezone or the shows network timezone":[null,""],"use local timezone to start searching for episodes minutes after show ends (depends on your dailysearch frequency)":[null,""],"Download url":[null,""],"URL where the shows can be downloaded.":[null,""],"Web Interface":[null,"Web-käyttöliittymä"],"it is recommended that you enable a username and password to secure SickRage from being tampered with remotely.":[null,""],"these options require a manual restart to take effect.":[null,""],"API key":[null,"API-avain"],"used to give 3rd party programs limited access to SickRage":[null,""],"you can try all the features of the API":[null,""],"here":[null,""],"HTTP logs":[null,""],"enable logs from the internal Tornado web server":[null,""],"HTTP username":[null,"HTTP-käyttäjätunnus"],"set blank for no login":[null,""],"HTTP password":[null,"HTTP-salasana"],"blank = no authentication":[null,"tyhjä = ei todennusta"],"HTTP port":[null,"HTTP-portti"],"web port to browse and access SickRage (default:8081)":[null,""],"Notify on login":[null,""],"enable to be notified when a new login happens in webserver":[null,""],"Listen on IPv6":[null,""],"attempt binding to any available IPv6 address":[null,""],"Enable HTTPS":[null,""],"enable access to the web interface using a HTTPS address":[null,""],"HTTPS certificate":[null,""],"file name or path to HTTPS certificate":[null,"tiedostonimi tai polku HTTPS-varmenteeseen"],"HTTPS key":[null,""],"file name or path to HTTPS key":[null,"tiedostonimi tai polku HTTPS-avaimeen"],"Reverse proxy headers":[null,""],"accept the following reverse proxy headers (advanced)...":[null,""],"(X-Forwarded-For, X-Forwarded-Host, and X-Forwarded-Proto)":[null,""],"CPU throttling":[null,""],"Normal (default). High is lower and Low is higher CPU use":[null,""],"Anonymous redirect":[null,""],"backlink protection via anonymizer service, must end in \"?\"":[null,""],"Enable debug":[null,""],"enable debug logs":[null,""],"Verify SSL Certs":[null,""],"verify SSL Certificates (Disable this for broken SSL installs (Like QNAP))":[null,""],"No Restart":[null,"Ei uudelleenkäynnistystä"],"only shutdown when restarting SR":[null,""],"only select this when you have external software restarting SR automatically when it stops (like FireDaemon)":[null,""],"Encrypt passwords":[null,"Kryptaa salasanat"],"in the <code>config.ini</code> file":[null,""],"warning":[null,""],"passwords must only contain":[null,""],"ASCII characters":[null,"ASCII-merkkejä"],"Unprotected calendar":[null,"Suojaamaton kalenteri"],"allow subscribing to the calendar without user and password":[null,""],"some services like Google Calendar only work this way":[null,""],"Google Calendar Icons":[null,""],"show an icon next to exported calendar events in Google Calendar":[null,""],"Proxy host":[null,""],"blank to disable or proxy to use when connecting to providers":[null,""],"also use global proxy setting for indexers (tvdb, xem, anidb, etc.)":[null,""],"Skip Remove Detection":[null,""],"skip detection of removed files":[null,""],"if disabled the episode will be set to the default deleted status":[null,""],"Default deleted episode status":[null,"Poistetun jakson oletustila"],"define the status to be set for media file that has been deleted.":[null,""],"Archived option will keep previous downloaded quality":[null,""],"example: Downloaded (1080p WEB-DL) ==> Archived (1080p WEB-DL)":[null,""],"Options for github related features.":[null,""],"Branch version":[null,"Haaran versio"],"error: No branches found.":[null,""],"select branch to use (restart required)":[null,"valitse käytettävä haara (vaatii uudelleenkäynnistyksen)"],"Authorization Type":[null,""],"Username and password":[null,""],"Personal access token":[null,""],"You must use a personal access token if you're using \"two-factor authentication\" on GitHub.":[null,""],"GitHub username":[null,"GitHub käyttäjätunnus"],"*** (REQUIRED FOR SUBMITTING ISSUES) ***":[null,""],"GitHub password":[null,"GitHub salasana"],"GitHub personal access token":[null,""],"Generate Token":[null,""],"Manage Tokens":[null,""],"GitHub remote for branch":[null,""],"access repo configured remotes (save then refresh browser)":[null,""],"default":[null,""],"origin":[null,""],"Git executable path":[null,""],"only needed if OS is unable to locate git from env":[null,""],"Git reset":[null,""],"removes untracked files and performs a hard reset on git branch automatically to help resolve update issues":[null,""],"Home Theater / NAS":[null,""],"Devices":[null,""],"Social":[null,""],"A free and open source cross-platform media center and home entertainment system software with a 10-foot user interface designed for the living-room TV.":[null,""],"send KODI commands?":[null,""],"Always on":[null,""],"log errors when unreachable?":[null,""],"Notify on snatch":[null,"Ilmoita napattaessa"],"send a notification when a download starts?":[null,""],"Notify on download":[null,""],"send a notification when a download finishes?":[null,""],"Notify on subtitle download":[null,""],"send a notification when subtitles are downloaded?":[null,""],"Update library":[null,""],"update KODI library when a download finishes?":[null,""],"Full library update":[null,""],"perform a full library update if update per-show fails?":[null,""],"Only update first host":[null,""],"only send library updates to the first active host?":[null,""],"KODI IP:Port":[null,""],"host running KODI (eg. 192.168.1.100:8080)":[null,""],"(multiple host strings must be separated by commas)":[null,""],"Username":[null,"Käyttäjätunnus"],"username for your KODI server (blank for none)":[null,""],"Password":[null,"Salasana"],"password for your KODI server (blank for none)":[null,""],"Click below to test.":[null,""],"Experience your media on a visually stunning, easy to use interface on your Mac connected to your TV. Your media library has never looked this good!":[null,""],"For sending notifications to Plex Home Theater (PHT) clients, use the KODI notifier with port <b>3005</b>.":[null,""],"send Plex Media Server library updates?":[null,""],"Plex Media Server Auth Token":[null,""],"auth token used by Plex":[null,""],"Update Library":[null,"Päivitä kirjasto"],"update Plex Media Server library when a download finishes":[null,""],"Plex Media Server IP:Port":[null,""],"one or more hosts running Plex Media Server<br/>(eg. 192.168.1.1:32400, 192.168.1.2:32400)":[null,""],"HTTPS":[null,"HTTPS"],"use https for plex media server requests?":[null,""],"Click below to test Plex Media Server(s)":[null,""],"Test Plex Media Server":[null,""],"Plex Home Theater":[null,""],"send Plex Home Theater notifications?":[null,""],"Plex Home Theater IP:Port":[null,""],"one or more hosts running Plex Home Theater<br>(eg. 192.168.1.100:3000, 192.168.1.101:3000)":[null,""],"Click below to test Plex Home Theater(s)":[null,""],"Test Plex Home Theater":[null,""],"some Plex Home Theaters <b class=\"boldest\">do not</b> support notifications e.g. Plexapp for Samsung TVs":[null,""],"Emby":[null,"Emby"],"A home media server built using other popular open source technologies.":[null,""],"send update commands to Emby?":[null,""],"Emby IP:Port":[null,"Emby IP:Portti"],"host running Emby (eg. 192.168.1.100:8096)":[null,""],"Emby API Key":[null,"Emby API-avain"],"Networked Media Jukebox":[null,""],"The Networked Media Jukebox, or NMJ, is the official media jukebox interface made available for the Popcorn Hour 200-series.":[null,""],"send update commands to NMJ?":[null,""],"Popcorn IP address":[null,""],"IP address of Popcorn 200-series (eg. 192.168.1.100)":[null,""],"Get settings":[null,""],"Get Settings":[null,""],"the Popcorn Hour device must be powered on and NMJ running.":[null,""],"NMJ database":[null,""],"automatically filled via the 'Get Settings' button.":[null,""],"NMJ mount url":[null,""],"Networked Media Jukebox v2":[null,""],"The Networked Media Jukebox, or NMJv2, is the official media jukebox interface made available for the Popcorn Hour 300 & 400-series.":[null,""],"send update commands to NMJv2?":[null,""],"IP address of Popcorn 300/400-series (eg. 192.168.1.100)":[null,"Popcorn 300/400-sarjan IP-osoite (esim. 192.168.1.100)"],"Database location":[null,"Tietokannan sijainti"],"Database instance":[null,""],"adjust this value if the wrong database is selected.":[null,""],"Find database":[null,""],"Find Database":[null,""],"the Popcorn Hour device must be powered on.":[null,""],"NMJv2 database":[null,""],"automatically filled via the 'Find Database' buttons.":[null,""],"Synology":[null,""],"The Synology DiskStation NAS.":[null,""],"Synology Indexer is the daemon running on the Synology NAS to build its media database.":[null,""],"send Synology notifications?":[null,""],"requires SickRage to be running on your Synology NAS.":[null,""],"Synology Indexer":[null,""],"Synology Notifier is the notification system of Synology DSM":[null,""],"send notifications to the Synology Notifier?":[null,""],"pyTivo":[null,"pyTivo"],"pyTivo is both an HMO and GoBack server. This notifier will load the completed downloads to your Tivo.":[null,""],"send notifications to pyTivo?":[null,""],"requires the downloaded files to be accessible by pyTivo.":[null,""],"pyTivo IP:Port":[null,"pyTivo IP:Portti"],"host running pyTivo (eg. 192.168.1.1:9032)":[null,""],"pyTivo share name":[null,""],"value used in pyTivo Web Configuration to name the share.":[null,""],"Tivo name":[null,""],"(Messages & Settings > Account & System Information > System Information > DVR name)":[null,""],"Growl":[null,"Growl"],"A cross-platform unobtrusive global notification system.":[null,""],"send Growl notifications?":[null,""],"Growl IP:Port":[null,"Growl IP:Portti"],"host running Growl (eg. 192.168.1.100:23053)":[null,""],"may leave blank if SickRage is on the same host.":[null,""],"otherwise Growl <b>requires</b> a password to be used.":[null,""],"Click below to register and test Growl, this is required for Growl notifications to work.":[null,""],"Register Growl":[null,""],"Prowl":[null,"Prowl"],"A Growl client for iOS.":[null,""],"send Prowl notifications?":[null,""],"Prowl Message Title":[null,""],"Global Prowl API key(s)":[null,""],"Prowl API(s) listed here, separated by commas if applicable, will<br> receive notifications for <b>all</b> shows. Your Prowl API key is available at:":[null,""],"(this field may be blank except when testing.)":[null,""],"Show notification list":[null,""],"-- Select a Show --":[null,""],"Configure per-show notifications here by entering Prowl API key(s), separated by commas, '\n 'after selecting a show in the drop-down box. Be sure to activate the 'Save for this show' '\n 'button below after each entry.":[null,""],"Save for this show":[null,""],"Prowl priority":[null,""],"Very Low":[null,""],"Moderate":[null,""],"Normal":[null,""],"High":[null,""],"Emergency":[null,""],"priority of Prowl messages from SickRage.":[null,""],"Libnotify":[null,"Libnotify"],"The standard desktop notification API for Linux/*nix systems. This notifier will only function if the pynotify module is installed (Ubuntu/Debian package <a href=\"apt:python-notify\">python-notify</a>).":[null,""],"send Libnotify notifications?":[null,""],"Pushover":[null,"Pushover"],"Pushover makes it easy to send real-time notifications to your Android and iOS devices.":[null,""],"send Pushover notifications?":[null,""],"Pushover key":[null,""],"user key of your Pushover account":[null,""],"Pushover API key":[null,""],"click here":[null,""]," to create a Pushover API key":[null,""],"Pushover devices":[null,""],"comma separated list of pushover devices you want to send notifications to":[null,""],"Pushover notification sound":[null,""],"Bike":[null,""],"Bugle":[null,""],"Cash Register":[null,""],"Classical":[null,""],"Cosmic":[null,""],"Falling":[null,""],"Gamelan":[null,""],"Incoming":[null,""],"Intermission":[null,""],"Magic":[null,""],"Mechanical":[null,""],"Piano Bar":[null,""],"Siren":[null,""],"Space Alarm":[null,""],"Tug Boat":[null,""],"Alien Alarm (long)":[null,""],"Climb (long)":[null,""],"Persistent (long)":[null,""],"Pushover Echo (long)":[null,""],"Up Down (long)":[null,""],"None (silent)":[null,""],"Device specific":[null,""],"choose notification sound to use":[null,""],"Pushover priority":[null,""],"Choose priority to use":[null,""],"Boxcar 2":[null,"Boxcar 2"],"Read your messages where and when you want them!":[null,""],"send Boxcar notifications?":[null,""],"Boxcar2 access token":[null,""],"access token for your Boxcar account.":[null,""],"NMA":[null,"NMA"],"Notify My Android":[null,"Notify My Android"],"Notify My Android is a Prowl-like Android App and API that offers an easy way to send notifications from your application directly to your Android device.":[null,""],"send NMA notifications?":[null,""],"NMA API key":[null,"NMA API-avain"],"(multiple keys must be separated by commas, up to a maximum of 5)":[null,""],"NMA priority":[null,""],"priority of NMA messages from SickRage.":[null,""],"Pushalot":[null,"Pushalot"],"Pushalot is a platform for receiving custom push notifications to connected devices running Windows Phone or Windows 8.":[null,""],"send Pushalot notifications ?":[null,""],"Pushalot authorization token":[null,""],"authorization token of your Pushalot account.":[null,""],"Pushbullet":[null,"Pushbullet"],"Pushbullet is a platform for receiving custom push notifications to connected devices running Android/iOS and desktop browsers such as Chrome, Firefox or Opera.":[null,""],"send Pushbullet notifications?":[null,""],"Pushbullet API key":[null,"Pushbullet API-avain"],"API key of your Pushbullet account":[null,""],"Pushbullet devices":[null,"Pushbullet laitteet"],"Update device list":[null,"Päivitä laiteluettelo"],"Pushbullet channels":[null,"Pushbullet kanavat"],"Free Mobile":[null,""],"Free Mobile is a famous French cellular network provider.<br> It provides to their customer a free SMS API.":[null,""],"send SMS notifications?":[null,""],"send a SMS when a download starts?":[null,""],"send a SMS when a download finishes?":[null,""],"send a SMS when subtitles are downloaded?":[null,""],"Free Mobile customer ID":[null,""],"it's your Free Mobile customer ID (8 digits)":[null,""],"Free Mobile API key":[null,""],"find your API key in your customer portal.":[null,""],"Click below to test your settings.":[null,""],"Telegram":[null,""],"Telegram is a cloud-based instant messaging service.":[null,""],"send Telegram notifications?":[null,""],"send a message when a download starts?":[null,""],"send a message when a download finishes?":[null,""],"send a message when subtitles are downloaded?":[null,""],"User/group ID":[null,""],"contact @myidbot on Telegram to get an ID":[null,""],"Bot API token":[null,""],"contact @BotFather on Telegram to set up one":[null,""],"Join":[null,""],"Join all of your devices together!":[null,""],"send Join notifications?":[null,""],"Device ID":[null,""],"per device specific id":[null,""]," to create a Join API key":[null,""],"Twilio":[null,""],"Twilio is a webservice API that allows you to communicate directly with a mobile number. This notifier will send a text directly to your mobile device.":[null,""],"should SickRage text your mobile device?":[null,""],"Twilio Account SID":[null,""],"account SID of your Twilio account.":[null,""],"Twilio Auth Token":[null,""],"Twilio Phone SID":[null,""],"phone SID that you would like to send the sms from":[null,""],"Your phone number":[null,""],"phone number that will receive the sms. Please use the format +1-###-###-####":[null,""],"Twitter":[null,"Twitter"],"A social networking and microblogging service, enabling its users to send and read other users' messages called tweets.":[null,""],"should SickRage post tweets on Twitter?":[null,""],"you may want to use a secondary account.":[null,""],"send direct message":[null,""],"send a notification via Direct Message, not via status update":[null,""],"send DM to":[null,""],"Twitter account to send Direct Messages to (must follow you)":[null,""],"Step One":[null,""],"Request Authorization":[null,""],"Click the \"Request Authorization\" button.<br> This will open a new page containing an auth key.<br> <b>note:</b> if nothing happens check your popup blocker.":[null,""],"Step Two":[null,""],"Enter the key Twitter gave you below, and click \"Verify Key\".":[null,""],"Trakt":[null,""],"Trakt helps keep a record of what TV shows and movies you are watching. Based on your favorites, Trakt recommends additional shows and movies you'll enjoy!":[null,""],"send Trakt.tv notifications?":[null,""],"username of your Trakt account.":[null,""],"Trakt PIN":[null,""],"Get Trakt PIN":[null,""],"PIN code to authorize SickRage to access Trakt on your behalf.":[null,""],"API Timeout":[null,""],"seconds to wait for Trakt API to respond. (Use 0 to wait forever)":[null,""],"Default indexer":[null,""],"Sync libraries":[null,""],"sync your SickRage show library with your trakt show library.":[null,""],"Remove Episodes From Collection":[null,""],"remove an episode from your Trakt Collection if it is not in your SickRage Library.":[null,""],"Sync watchlist":[null,""],"sync your SickRage show watchlist with your trakt show watchlist (either Show and Episode).":[null,""],"episode will be added on watch list when wanted or snatched and will be removed when downloaded ":[null,""],"Watchlist add method":[null,""],"Skip All":[null,""],"Download Pilot Only":[null,""],"Get whole show":[null,""],"method in which to download episodes for new shows.":[null,""],"Remove episode":[null,""],"remove an episode from your watchlist after it is downloaded.":[null,""],"Remove series":[null,""],"remove the whole series from your watchlist after any download.":[null,""],"Remove watched show":[null,""],"remove the show from sickrage if it's ended and completely watched":[null,""],"Start paused":[null,""],"shows grabbed from your trakt watchlist start paused.":[null,""],"Trakt blackList name":[null,""],"name (slug) of list on Trakt for blacklisting show on 'Add Trending Show' & 'Add Recommended Shows' pages":[null,""],"Email":[null,"Sähköposti"],"Allows configuration of email notifications on a per show basis.":[null,""],"send email notifications?":[null,""],"SMTP host":[null,"SMTP-palvelin"],"hostname of your SMTP email server.":[null,""],"SMTP port":[null,"SMTP-portti"],"port number used to connect to your SMTP host.":[null,""],"SMTP from":[null,""],"sender email address, some hosts require a real address.":[null,""],"Use TLS":[null,"Käytä TLS"],"check to use TLS encryption.":[null,"valitse käyttääksesi TLS-salausta."],"SMTP user":[null,"SMTP-käyttäjä"],"(optional) your SMTP server username.":[null,"(valinnainen) SMTP-palvelimen käyttäjätunnuksesi."],"SMTP password":[null,"SMTP-salasana"],"(optional) your SMTP server password.":[null,"(valinnainen) SMTP-palvelimen salasana."],"Global email list":[null,""],"email addresses listed here, separated by commas if applicable, will<br> receive notifications for <b>all</b> shows.":[null,""],"(This field may be blank except when testing.)":[null,""],"Email Subject":[null,"Sähköpostin aihe"],"use a custom subject for some privacy protection?":[null,""],"(leave blank for the default SickRage subject)":[null,""],"configure per-show notifications here by entering email address(es), separated by commas,":[null,""],"after selecting a show in the drop-down box. Be sure to activate the 'Save for this show'":[null,""],"button below after each entry.":[null,""],"Slack":[null,""],"Slack brings all your communication together in one place. It's real-time messaging, archiving and search for modern teams.":[null,""],"should SickRage post messages on Slack?":[null,""],"Slack Incoming Webhook":[null,""],"Discord":[null,""],"All-in-one voice and text chat for gamers that's free, secure, and works on both your desktop and phone.":[null,""],"Should SickRage post messages on Discord?":[null,""],"Discord Incoming Webhook":[null,""],"Create webhook under channel settings.":[null,""],"Discord Bot Name":[null,""],"Blank will use webhook default Name.":[null,""],"Discord Avatar URL":[null,""],"Blank will use webhook default Avatar.":[null,""],"Discord TTS":[null,""],"Send notifications using text-to-speech":[null,""],"Post-Processing":[null,"Jälkikäsittely"],"Episode Naming":[null,""],"Metadata":[null,"Metatiedot"],"Settings that dictate how SickRage should process completed downloads.":[null,""],"enable the automatic post processor to scan and process any files in your Post Processing Dir":[null,""],"do not use if you use an external Post Processing script":[null,""],"Post Processing Dir":[null,""],"the folder where your download client puts the completed TV downloads.":[null,""],"please use seperate downloading and completed folders in your download client if possible.":[null,""],"Processing Method":[null,""],"what method should be used to put files into the library?":[null,""],"if you keep seeding torrents after they finish, please avoid the 'move' processing method to prevent errors.":[null,""],"Auto Post-Processing Frequency":[null,""],"time in minutes to check for new files to auto post-process (min 10)":[null,""],"Postpone post processing":[null,""],"wait to process a folder if sync files are present.":[null,""],"Sync File Extensions":[null,""],"comma seperated list of extensions or filename globs SickRage ignores when Post Processing":[null,"pilkuilla erotettu luettelo tiedostopäätteistä tai tiedostomaskeista, jotka SickRage ohittaa jälkikäsittelyn aikana"],"Rename Episodes":[null,""],"rename episode using the Episode Naming settings?":[null,""],"Create missing show directories":[null,""],"create missing show directories when they get deleted":[null,""],"Add shows without directory":[null,""],"add shows without creating a directory (not recommended)":[null,""],"Move associated files":[null,""],"move associated (srt/srr/sfv/etc) files while post processing?":[null,""],"Rename .nfo file":[null,""],"rename the original .nfo file to .nfo-orig to avoid conflicts?":[null,""],"Associated file extensions":[null,""],"comma separated list of associated file extensions SickRage should keep while post processing.":[null,""],"leaving it empty means no associated files will be post processed":[null,""],"Delete non associated files":[null,""],"delete non associated files while post processing?":[null,""],"Change File Date":[null,""],"set last modified filedate to the date that the episode aired?":[null,""],"some systems may ignore this feature.":[null,""],"Timezone for File Date":[null,""],"local":[null,""],"network":[null,""],"what timezone should be used to change File Date?":[null,""],"Unpack":[null,""],"What to do with archived releases found in your <i>TV Download Dir</i>?":[null,""],"Ignore (do not process contents)":[null,""],"Unpack (process contents)":[null,""],"Treat as video (process archive as-is)":[null,""],"'Unpack' only works with RAR archives":[null,""],"Windows":[null,""],"WinRar is required on windows":[null,""],"Unpack Directory":[null,""],"Choose a path to unpack files, leave blank to unpack in download dir":[null,""],"Unrar Location":[null,""],"add the path to unrar if it is not in the system path":[null,""],"Alternate Unrar Tool":[null,""],"add the path to an alternate unrar tool if it is not in the system path":[null,""],"Delete RAR contents":[null,""],"delete content of RAR files, even if Process Method not set to move?":[null,""],"only working with RAR archive":[null,""],"Don't delete empty folders":[null,""],"leave empty folders when Post Processing?":[null,""],"can be overridden using manual Post Processing":[null,""],"Follow symbolic-links":[null,""],"follow down symbolic links in download directory?":[null,""],"<b>EXPERTS ONLY.</b><br>Enable only if you know what <b>circular symbolic links</b> are,<br>and can <b>verify that you have none</b>.":[null,""],"Use icacls":[null,""],"Windows only":[null,""],"sets video permissions after using the move method in post processing":[null,""],"Extra Scripts":[null,""],"see":[null,""],"for script arguments description and usage.":[null,""],"How SickRage will name and sort your episodes.":[null,""],"Name Pattern":[null,""],"Toggle Naming Legend":[null,""],"don't forget to add quality pattern. Otherwise after post-processing the episode will have UNKNOWN quality":[null,""],"Meaning":[null,""],"Pattern":[null,""],"Result":[null,""],"Use lower case if you want lower case names (eg. %sn, %e.n, %q_n etc)":[null,""],"Show Name":[null,"Sarjan nimi"],"Show.Name":[null,""],"Show_Name":[null,""],"Season Number":[null,"Kauden numero"],"XEM Season Number":[null,""],"Episode Number":[null,"Jakson numero"],"XEM Episode Number":[null,""],"Episode Name":[null,"Jakson Nimi"],"Episode.Name":[null,"Jakson.Nimi"],"Episode_Name":[null,"Jakson_Nimi"],"Air Date":[null,""],"Post-Processing Date":[null,""],"Quality":[null,"Laatu"],"Scene Quality":[null,"Scene-laatu"],"Release Name":[null,""],"SickRage' is used in place of RLSGROUP if it could not be properly detected":[null,""],"Release Group":[null,""],"If episode is proper/repack add 'proper' to name.":[null,"Jos jakso on proper/repack, lisää \"proper\" nimeen."],"Release Type":[null,""],"Multi-Episode Style":[null,""],"Single-EP Sample":[null,""],"Multi-EP sample":[null,""],"Strip Show Year":[null,""],"remove the TV show's year when renaming the file?":[null,""],"only applies to shows that have year inside parentheses":[null,""],"Custom Air-By-Date":[null,""],"name air-by-date shows differently than regular shows?":[null,""],"Toggle ABD Naming Legend":[null,""],"Regular Air Date":[null,""],"Year":[null,""],"Month":[null,""],"Day":[null,""],"Multi-EP style is ignored":[null,""],"Custom Sports":[null,""],"name sports shows differently than regular shows?":[null,""],"Toggle Sports Naming Legend":[null,""],"Sports Air Date":[null,""],"Custom Anime":[null,""],"name anime shows differently than regular shows?":[null,""],"Toggle Anime Naming Legend":[null,""],">XEM Season Number":[null,""],"Single-EP Anime Sample":[null,""],"Multi-EP Anime sample":[null,""],"Add Absolute Number":[null,""],"add the absolute number to the season/episode format?":[null,""],"only applies to anime. (eg. S15E45 - 310 vs S15E45)":[null,""],"Only Absolute Number":[null,""],"replace season/episode format with absolute number":[null,""],"only applies to anime.":[null,""],"No Absolute Number":[null,""],"don't include the absolute number":[null,""],"The data associated to the data. These are files associated to a TV show in the form of images and text that, when supported, will enhance the viewing experience.":[null,""],"Metadata Type":[null,"Metatietojen tyyppi"],"toggle metadata options that you wish to be created":[null,""],"multiple targets may be used":[null,""],"Select Metadata":[null,""],"Provider Priorities":[null,""],"Provider Options":[null,""],"Configure Custom Newznab Providers":[null,""],"Configure Custom Torrent Providers":[null,""],"Check off and drag the providers into the order you want them to be used.":[null,""],"At least one provider is required but two are recommended.":[null,""],"Torrent providers can be toggled in ":[null,""],"Provider does not support backlog searches at this time.":[null,"Tarjoaja ei tue rästissä olevien hakua tällä hetkellä."],"Provider is <b>NOT WORKING</b>.":[null,""],"Configure individual provider settings here.":[null,""],"Check with provider's website on how to obtain an API key if needed.":[null,""],"Configure provider":[null,""],"no providers available to configure.":[null,""],"URL":[null,"URL"],"Enable daily searches":[null,""],"enable provider to perform daily searches.":[null,""],"Enable backlog searches":[null,"Ota käyttöön rästissä olevien haku"],"enable provider to perform backlog searches.":[null,""],"Season search mode":[null,""],"when searching for complete seasons you can choose to have it look for season packs only, or choose to have it build a complete season from just single episodes.":[null,""],"season packs only.":[null,""],"episodes only.":[null,""],"Enable fallback":[null,""],"when searching for a complete season depending on search mode you may return no results, this helps by restarting the search using the opposite search mode.":[null,""],"Custom URL":[null,"Mukautettu URL"],"the URL should include the protocol (and port if applicable). Examples: http://192.168.1.4/ or http://localhost:3000/":[null,""],"Api key":[null,"API-avain"],"Digest":[null,""],"Hash":[null,""],"Passkey":[null,""],"Cookies":[null,""],"example: uid=1234;pass=567845439634987<br>note: uid and pass are not your username/password.<br>use DevTools or Firebug to get these values after logging in on your browser.":[null,""],"Pin":[null,"PIN"],"Seed ratio":[null,""],"stop transfer when ratio is reached<br>(-1 SickRage default to seed forever, or leave blank for downloader default)":[null,""],"Minimum seeders":[null,""],"Minimum leechers":[null,""],"Confirmed download":[null,""],"only download torrents from trusted or verified uploaders ?":[null,""],"Ranked torrents":[null,""],"only download ranked torrents (trusted releases)":[null,""],"English torrents":[null,""],"only download english torrents, or torrents containing english subtitles":[null,""],"For Spanish torrents":[null,""],"ONLY search on this provider if show info is defined as \"Spanish\" (avoid provider's use for VOS shows)":[null,""],"Sorting results by":[null,""],"Freeleech":[null,""],"only download <b>\"FreeLeech\"</b> torrents.":[null,""],"Category":[null,""],"select torrent with Italian subtitle":[null,""],"Configure Custom<br>Newznab Providers":[null,""],"Add and setup or remove custom Newznab providers.":[null,""],"Select provider":[null,""],"-- add new provider --":[null,""],"Provider name":[null,""],"Site URL":[null,""],"Newznab search categories":[null,""],"select your Newznab categories on the left, and click the \"update categories\" button to use them for searching.) <b>don't forget to to save the form!":[null,""],"Update Categories":[null,""],"Add":[null,"Lisää"],"Delete":[null,"Poista"],"Add and setup or remove custom RSS providers.":[null,""],"RSS URL":[null,"RSS URL"],"Search element":[null,""],"eg: title":[null,"esim: otsikko"],"Episode Search":[null,""],"NZB Search":[null,""],"Torrent Search":[null,""],"How to manage searching with":[null,""],"Randomize Providers":[null,""],"randomize the provider search order instead of going in order of placement":[null,""],"Download propers":[null,"Lataa Proper-versioita"],"replace original download with \"Proper\" or \"Repack\" if nuked":[null,"Korvaa lataus Proper- tai Repack-versiolla, jos alkuperäinen on \"Nuked\""],"Check propers every":[null,"Tarkista Proper-versioita joka"],"24 hours":[null,"24 tuntia"],"4 hours":[null,"4 tuntia"],"90 mins":[null,"90 minuuttia"],"45 mins":[null,"45 minuuttia"],"15 mins":[null,"15 minuuttia"],"Backlog search day(s)":[null,"Rästitöiden haku (päiviä)"],"number of day(s) that the \"Forced Backlog Search\" will cover (e.g. 7 Days)":[null,"päivien lukumäärä, jonka \"Pakota rästityöt\" haku kattaa (esim. 7 päivää)"],"Backlog search frequency":[null,"Rästitöiden hakujen aikaväli"],"time in minutes between searches (min.":[null,"aikaväli hakujen välillä (minuuttia)"],"Daily search frequency":[null,""],"Usenet retention":[null,""],"age limit in days for usenet articles to be used (e.g. 500)":[null,""],"Ignore words":[null,"Jätä huomiotta sanat"],"results with one or more word from this list will be ignored<br>separate words with a comma, e.g. \"word1,word2,word3\"":[null,""],"Require words":[null,""],"results with no word from this list will be ignored<br>separate words with a comma, e.g. \"word1,word2,word3\"":[null,""],"Trackers list":[null,""],"trackers that will be added to magnets without trackers<br>separate trackers with a comma, e.g. \"tracker1,tracker2,tracker3\"":[null,""],"Ignore language names in subbed results":[null,"Jätä huomiotta kielten nimet tekstitetyistä tuloksista"],"ignore subbed releases based on language names <br>\n Example: \"dk\" will ignore words: dksub, dksubs, dksubbed, dksubed <br>\n separate languages with a comma, e.g. \"lang1,lang2,lang3":[null,""],"Allow high priority":[null,"Salli korkea prioriteetti"],"set downloads of recently aired episodes to high priority":[null,""],"Use Failed Downloads":[null,""],"use Failed Download Handling?":[null,""],"will only work with snatched/downloaded episodes after enabling this":[null,""],"Delete Failed":[null,""],"delete files left over from a failed download?":[null,""],"this only works if Use Failed Downloads is enabled.":[null,""],"How to handle NZB search results.":[null,""],"Search NZBs":[null,""],"enable NZB search providers":[null,""],"Send .nzb files to":[null,""],"SABnzbd server URL":[null,""],"URL to your SABnzbd server (e.g. http://localhost:8080/)":[null,"SABnzbd-palvelimen URL (esim. http://localhost:8080/)"],"SABnzbd username":[null,""],"(blank for none)":[null,""],"SABnzbd password":[null,""],"SABnzbd API key":[null,"SABnzbd API-avain"],"locate at... SABnzbd Config -> General -> API Key":[null,""],"Use SABnzbd category":[null,""],"add downloads to this category (e.g. TV)":[null,""],"Use SABnzbd category (backlog episodes)":[null,""],"add downloads of old episodes to this category (e.g. TV)":[null,""],"Use SABnzbd category for anime":[null,""],"add anime downloads to this category (e.g. anime)":[null,""],"Use SABnzbd category for anime (backlog episodes)":[null,""],"add anime downloads of old episodes to this category (e.g. anime)":[null,""],"Use forced priority":[null,""],"enable to change priority from HIGH to FORCED":[null,""],"Black hole folder location":[null,""],"<b>.nzb</b> files are stored at this location for external software to find and use":[null,""],"Connect using HTTPS":[null,""],"enable Secure control in NZBGet and set the correct Secure Port here":[null,""],"NZBget host:port":[null,"NZBget isäntä:portti"],"(e.g. localhost:6789)":[null,"(esim. localhost:6789)"],"NZBget RPC host name and port number (not NZBgetweb!)":[null,""],"NZBget username":[null,"NZBget käyttäjätunnus"],"locate in nzbget.conf (default:nzbget)":[null,""],"NZBget password":[null,"NZBget salasana"],"locate in nzbget.conf (default:tegbzn6789)":[null,""],"Use NZBget category":[null,""],"send downloads marked this category (e.g. TV)":[null,""],"Use NZBget category (backlog episodes)":[null,""],"send downloads of old episodes marked this category (e.g. TV)":[null,""],"Use NZBget category for anime":[null,""],"send anime downloads marked this category (e.g. anime)":[null,""],"Use NZBget category for anime (backlog episodes)":[null,""],"send anime downloads of old episodes marked this category (e.g. anime)":[null,""],"NZBget priority":[null,"NZBget prioriteetti"],"Very low":[null,"Hyvin matala"],"Low":[null,"Matala"],"Very high":[null,"Hyvin korkea"],"Force":[null,"Pakota"],"priority for daily snatches (no backlog)":[null,"päivittäisten nappausten prioriteetti (ei rästitöiden)"],"Torrent host:port":[null,""],"URL to your Synology DSM (e.g. http://localhost:5000/)":[null,""],"Client username":[null,""],"Client password":[null,""],"Downloaded files location":[null,""],"where Synology Download Station will save downloaded files (blank for client default)":[null,""],"the destination has to be a shared folder for Synology DS":[null,""],"Click below to test":[null,""],"How to handle Torrent search results.":[null,""],"Search torrents":[null,""],"enable torrent search providers":[null,""],"Send .torrent files to":[null,""],"<b>.torrent</b> files are stored at this location for external software to find and use":[null,""],"URL to your torrent client (e.g. http://localhost:8000/)":[null,"Torrent-ohjelmasi URL (esim. http://localhost:8000/)"],"Torrent RPC URL":[null,""],"the path without leading and trailing slashes (e.g. transmission)":[null,""],"Http Authentication":[null,"Http-todennus"],"Verify certificate":[null,""],"disable if you get \"Deluge: Authentication Error\" in your log":[null,""],"verify SSL certificates for HTTPS requests":[null,""],"Add label to torrent":[null,""],"(blank spaces are not allowed)":[null,"(välilyönnit eivät ole sallittuja)"],"label plugin must be enabled in Deluge clients":[null,""],"for QBitTorrent 3.3.1 and up":[null,""],"Add label to torrent for anime":[null,""],"for QBitTorrent 3.3.1 and up ":[null,""],"where <span id=\"torrent_client\">the torrent client</span> will save downloaded files (blank for client default)":[null,""],"the destination has to be a shared folder for Synology DS</span>":[null,""],"Minimum seeding time":[null,""],"time in hours":[null,""],"(default:'0' passes blank to client and '-1' passes nothing)":[null,""],"Start torrent paused":[null,""],"add .torrent to client but do <b style=\"font-weight:900\">not</b> start downloading":[null,""],"Allow high bandwidth":[null,""],"use high bandwidth allocation if priority is high":[null,""],"Test Connection":[null,"Testaa yhteys"],"Windows Shares":[null,""],"Defines your existing windows shares so that we can add them to the browse dialog":[null,""],"Share #{number}":[null,""],"Share label":[null,""],"Hostname or IP":[null,""],"Share path":[null,""],"Subtitles Search":[null,""],"Subtitles Plugin":[null,""],"Plugin Settings":[null,""],"Settings that dictate how SickRage handles subtitles search results.":[null,""],"Search Subtitles":[null,""],"Subtitle Languages":[null,""],"Subtitle Directory":[null,""],"the directory where SickRage should store your <i>Subtitles</i> files.":[null,""],"leave empty if you want store subtitle in episode path.":[null,""],"Subtitle Find Frequency":[null,""],"time in hours between scans (default: 1)":[null,""],"Include Specials":[null,""],"include the show's specials when searching for subtitles?":[null,""],"Perfect matches":[null,""],"only download subtitles that match: release group, video codec, audio codec and resolution":[null,""],"if disabled you may get out of sync subtitles":[null,""],"Subtitles History":[null,""],"log downloaded Subtitle on History page?":[null,""],"Subtitles Multi-Language":[null,""],"append language codes to subtitle filenames?":[null,""],"this option is required if you use multiple subtitle languages":[null,""],"Delete unwanted subtitles":[null,""],"enable to delete unwanted subtitle languages bundled with release":[null,""],"Embedded Subtitles":[null,""],"ignore subtitles embedded inside video file?":[null,""],"this will ignore <u>all</u> embedded subtitles for every video file!":[null,""],"Hearing Impaired Subtitles":[null,""],"download hearing impaired style subtitles?":[null,""],"See":[null,""],"for a script arguments description.":[null,""],"Additional scripts separated by <b>|</b>.":[null,""],"Scripts are called after each episode has searched and downloaded subtitles.":[null,""],"For any scripted languages, include the interpreter executable before the script. See the following example":[null,""],"For Windows:":[null,""],"For Linux / OS X:":[null,""],"Subtitle Providers":[null,""],"Check off and drag the plugins into the order you want them to be used.":[null,""],"At least one plugin is required.":[null,""]," Web-scraping plugin":[null,""],"Provider Settings":[null,""],"Set user and password for each provider":[null,""],"User Name":[null,"Käyttäjänimi"],"Change Show":[null,"Vaihda sarjaa"],"Prev Show":[null,"Edellinen sarja"],"Next Show":[null,"Seuraava sarja"],"Jump to Season":[null,"Hyppää kauteen"],"Specials":[null,""],"Poster for":[null,""],"Stars":[null,""],"minutes":[null,"minuuttia"],"View other popular {genre} shows on trakt.tv.":[null,""],"View other popular {imdbgenre} shows on IMDB.":[null,""],"Allowed":[null,"Sallittu"],"Preferred":[null,"Ensisijainen"],"Originally Airs":[null,""],"Show Status":[null,"Sarjan tila"],"Default EP Status":[null,"Jakson oletustila"],"Location":[null,"Sijainti"],"Missing":[null,"Puuttuu"],"Scene Name":[null,"Scene-nimi"],"Required Words":[null,""],"Ignored Words":[null,"Jätä huomiotta -sanat"],"Size":[null,"Koko"],"Info Language":[null,""],"Subtitles SR Metadata":[null,""],"Season Folders":[null,""],"Paused":[null,"Keskeytetty"],"Air-by-Date":[null,""],"Sports":[null,""],"DVD Order":[null,"DVD-järjestys"],"Scene Numbering":[null,"Scene-numerointi"],"Select Filtered Episodes":[null,""],"Clear All":[null,""],"Change selected episodes to":[null,""],"Select Columns":[null,"Valitse sarakkeet"],"Hide Episodes":[null,""],"Show Episodes":[null,""],"NFO":[null,"NFO"],"TBN":[null,"TBN"],"Episode":[null,"Jakso"],"Absolute":[null,""],"Scene":[null,"Scene"],"Scene Absolute":[null,""],"File Name":[null,"Tiedostonimi"],"Airdate":[null,"Lähetysaika"],"Download":[null,""],"Change the value here if scene numbering differs from the indexer episode numbering":[null,""],"Change the value here if scene absolute numbering differs from the indexer absolute numbering":[null,""],"Manual Search":[null,""],"Do you want to mark this episode as failed?":[null,"Haluatko merkitä tämän jakson epäonnistuneeksi?"],"The episode release name will be added to the failed history, preventing it to be downloaded again.":[null,""],"Do you want to include the current episode quality in the search?":[null,"Haluatko sisällyttää nykyisen jakson laadun hakuun?"],"Choosing No will ignore any releases with the same episode quality as the one currently downloaded/snatched.":[null,""],"Download subtitle":[null,""],"Do you want to re-download the subtitle for this language?":[null,""],"It will overwrite your current subtitle":[null,""],"Format":[null,""],"Advanced":[null,""],"Main Settings":[null,""],"Show Location":[null,"Sarjan sijainti"],"Preferred Quality":[null,"Ensisijainen laatu"],"Default Episode Status":[null,"Jakson oletustila"],"this will set the status for future episodes.":[null,""],"this only applies to episode filenames and the contents of metadata files.":[null,""],"search for subtitles":[null,""],"Use SR Metdata":[null,""],"use SickRage metadata when searching for subtitle, this will override the autodiscovered metadata":[null,""],"pause this show (SickRage will not download episodes)":[null,""],"Format Settings":[null,""],"Air by date":[null,""],"check if the show is released as Show.03.02.2010 rather than Show.S02E03.":[null,""],"in case of an air date conflict between regular and special episodes, the later will be ignored.":[null,""],"check if the show is Anime and episodes are released as Show.265 rather than Show.S02E03":[null,""],"check if the show is a sporting or MMA event released as Show.03.02.2010 rather than Show.S02E03":[null,""],"Season folders":[null,""],"group episodes by season folder (uncheck to store in a single folder)":[null,""],"search by scene numbering (uncheck to search by indexer numbering)":[null,""],"use the DVD order instead of the air order":[null,"käytä DVD-järjestystä lähetysjärjestyksen sijaan"],"a \"Force Full Update\" is necessary, and if you have existing episodes you need to sort them manually.":[null,""],"comma-separated <i>e.g. \"word1,word2,word3</i>\"":[null,""],"search results with one or more words from this list will be ignored.":[null,""],"e.g. \"word1,word2,word3\"":[null,""],"search results with no words from this list will be ignored.":[null,""],"Scene Exception":[null,"Scene-poikkeus"],"this will affect episode search on NZB and torrent providers.":[null,""],"this list appends to the original show name.":[null,""],"WARNING logs":[null,""],"ERROR logs":[null,""],"There are no events to display.":[null,""],"Limit":[null,"Rajoita"],"Layout":[null,"Asettelu"],"HistoryLayout":[null,""],"Compact":[null,"Kompakti"],"Detailed":[null,"Yksityiskohtainen"],"Time":[null,"Aika"],"Provider":[null,"Tarjoaja"],"Missing Provider":[null,""],"missing provider":[null,""],"Directory":[null,""],"Show Name (tvshow.nfo)":[null,""],"Indexer":[null,""],"Enter the folder containing the episode":[null,""],"Process Method to be used":[null,""],"Copy":[null,"Kopioi"],"Move":[null,"Siirrä"],"Hard Link":[null,""],"Symbolic Link":[null,""],"Symbolic Link Reversed":[null,""],"Force already Post Processed Dir/Files":[null,""],"Mark Dir/Files as priority download":[null,""],"(Check it to replace the file even if it exists at higher quality)":[null,"(Valitse korvataksesi tiedoston, vaikka se olisi jo olemassa korkeammalla laadulla)"],"Delete files and folders":[null,""],"(Check it to delete files and folders like auto processing)":[null,""],"Don't use processing queue":[null,""],"(If checked this will return the result of the process here, but may be slow!)":[null,""],"Mark download as failed":[null,""],"Process":[null,""],"Download subtitles for this show?":[null,"Ladataanko tekstityksiä tähän sarjaan?"],"use SickRage metadata when searching for subtitle, <br />this will override the autodiscovered metadata":[null,""],"Status for previously aired episodes":[null,""],"Status for all future episodes":[null,""],"Group episodes by season folder?":[null,""],"Is this show an Anime?":[null,"Onko tämä sarja Animea?"],"Is this show scene numbered?":[null,"Käyttääkö tämä sarja scene-numerointia?"],"Save Defaults":[null,""],"Use current values as the defaults":[null,""],"<p>Select your preferred fansub groups from the <b>Available Groups</b> and add them to the <b>Whitelist</b>. Add groups to the <b>Blacklist</b> to ignore them.</p>\n <p>The <b>Whitelist</b> is checked <i>before</i> the <b>Blacklist</b>.</p>\n <p>Groups are shown as <b>Name</b> | <b>Rating</b> | <b>Number of subbed episodes</b>.</p>\n <p>You may also add any fansub group not listed to either list manually.</p>\n <p>When doing this please note that you can only use groups listed on anidb for this anime.\n <br>If a group is not listed on anidb but subbed this anime, please correct anidb's data.</p>":[null,""],"Whitelist":[null,""],"Available Groups":[null,""],"Add to Whitelist":[null,""],"Add to Blacklist":[null,"Lisää mustalle listalle"],"Blacklist":[null,"Musta lista"],"Custom Group":[null,""],"Allowed Quality:":[null,"Sallittu laatu:"],"Preferred Quality:":[null,"Ensisijainen laatu:"],"Filter Show Name":[null,""],"Root":[null,""],"All":[null,"Kaikki"],"Clear Filter(s)":[null,""],"Poster":[null,"Juliste"],"Small Poster":[null,""],"Banner":[null,"Banneri"],"Simple":[null,"Yksinkertainen"],"Next Episode":[null,"Seuraava jakso"],"Progress":[null,""],"Direction":[null,""],"Ascending":[null,"Nouseva"],"Descending":[null,"Laskeva"],"Poster Size":[null,""],"Continuing":[null,"Jatkuu"],"Ended":[null,"Päättynyt"],"Total":[null,"Yhteensä"],"Invalid date":[null,"Virheellinen päivämäärä"],"No Network":[null,""],"Next Ep":[null,"Seuraava jakso"],"Prev Ep":[null,"Edellinen jakso"],"Show":[null,"Näytä"],"Downloads":[null,""],"Active":[null,"Aktiivisena"],"loading":[null,""],"Loading...":[null,"Ladataan..."],"<p><b><u>Preferred</u></b> qualities will replace those in <b><u>allowed</u></b>, even if they are lower.</p>":[null,"<p><b><u>Ensisijaiset</u></b> laadut korvaavat <b><u>sallitut</u></b>, vaikka ne olisivat matalampia.</p>"],"New":[null,"Uusi"],"Set as Default":[null,"Aseta oletukseksi"],"Remember me":[null,"Muista minut"],"Edit Selected":[null,"Muokkaa valittuja"],"Subtitle":[null,"Tekstitys"],"Default Ep Status":[null,"Jakson oletustila"],"Update":[null,"Päivitä"],"Rescan":[null,""],"Rename":[null,"Nimeä uudelleen"],"Search Subtitle":[null,""],"Force Metadata Regen":[null,""],"Snatched (Allowed)":[null,"Napattu (sallittu)"],"Jump to Show":[null,"Hyppää sarjaan"],"Force Backlog":[null,"Pakota rästityöt"],"Manage episodes with status":[null,"Hallitse jaksoja, joiden tila on"],"Manage":[null,"Hallitse"],"None of your episodes have status":[null,""],"Shows containing":[null,""],"episodes":[null,""],"Set checked shows/episodes to":[null,"Aseta valitut sarjat"],"Go":[null,""],"Select all":[null,"Valitse kaikki"],"Clear all":[null,"Tyhjennä kaikki"],"Release":[null,""],"Backlog Search":[null,"Rästitöiden haku"],"Not in progress":[null,""],"In Progress":[null,"Käynnissä"],"Daily Search":[null,"Päivittäinen haku"],"Find Propers Search":[null,""],"Propers search disabled":[null,"Proper-versioiden haku on pois käytöstä"],"Subtitle Search":[null,""],"Subtitle search disabled":[null,""],"Search Queue":[null,""],"pending items":[null,""],"Daily":[null,"Päivittäinen"],"Manual":[null,"Manuaalinen"],"Changing any settings marked with (<span class=\"separator\">*</span>) will force a refresh of the selected shows.":[null,""],"Selected Shows":[null,"Valitut sarjat"],"Root Directories":[null,""],"Current":[null,"Nykyinen"],"Keep":[null,""],"Custom":[null,""],"Group episodes by season folder (set to \"No\" to store in a single folder).":[null,""],"Pause these shows (SickRage will not download episodes).":[null,""],"This will set the status for future episodes.":[null,""],"Search by scene numbering (set to \"No\" to search by indexer numbering).":[null,""],"Set if these shows are Anime and episodes are released as Show.265 rather than Show.S02E03":[null,""],"Set if these shows are sporting or MMA events released as Show.03.02.2010 rather than Show.S02E03.":[null,""],"In case of an air date conflict between regular and special episodes, the later will be ignored.":[null,""],"Set if these shows are released as Show.03.02.2010 rather than Show.S02E03.":[null,""],"Search for subtitles.":[null,"Hae tekstityksiä."],"All of your episodes have {subsLanguage} subtitles.":[null,""],"Manage episodes without":[null,"Hallitse jaksoja ilman"],"Episodes without {subsLanguage} subtitles.":[null,""],"Episodes without {subtitleLanguage} (undefined) subtitles.":[null,""],"Download missed subtitles for selected episodes":[null,""],"Performing Restart":[null,""],"Waiting for SickRage to shut down":[null,""],"Waiting for SickRage to start again":[null,""],"Loading the default page":[null,""],"Error: The restart has timed out, perhaps something prevented SickRage from starting again?":[null,""],"Key":[null,""],"Missed":[null,""],"Today":[null,"Tänään"],"Soon":[null,"Pian"],"Later":[null,"Myöhemmin"],"Subscribe":[null,"Tilaa"],"Date":[null,""],"View Paused":[null,""],"Hidden":[null,""],"Shown":[null,""],"Calendar":[null,"Kalenteri"],"List":[null,"Lista"],"Ends":[null,"Päättyy"],"Next Ep Name":[null,"Seuraavan jakson nimi"],"Run time":[null,"Kesto"],"Indexers":[null,""],"No shows for this day":[null,""],"Airs":[null,""],"Plot":[null,"Juoni"],"Show Update":[null,""],"Version Check":[null,"Versiotarkistus"],"Proper Finder":[null,""],"Post Process":[null,""],"Subtitles Finder":[null,""],"Scheduler":[null,""],"Alive":[null,""],"Start Time":[null,"Alkamisaika"],"Cycle Time":[null,""],"Next Run":[null,""],"Last Run":[null,""],"Silent":[null,""],"True":[null,""],"N/A":[null,"N/A"],"Show id":[null,""],"Show name":[null,""],"Priority":[null,"Prioriteetti"],"Added":[null,"Lisätty"],"Queue type":[null,"Jonon tyyppi"],"LOW":[null,"MATALA"],"NORMAL":[null,"NORMAALI"],"HIGH":[null,"KORKEA"],"Disk Space":[null,"Levytila"],"Free space":[null,"Vapaa tila"],"TV Download Directory":[null,""],"Media Root Directories":[null,""],"Preview of the proposed name changes":[null,"Esikatsele ehdotettua nimenmuutosta"],"All Seasons":[null,"Kaikki kaudet"],"select all":[null,""],"Rename Selected":[null,"Uudelleennimeä valittu"],"Cancel Rename":[null,"Peruuta uudelleennimeäminen"],"Old Location":[null,"Vanha sijainti"],"New Location":[null,"Uusi sijainti"],"Trakt API did not return any results, please check your config.":[null,""],"votes":[null,""],"Remove Show":[null,"Poista sarja"],"Level":[null,""],"Filter":[null,""],"All non-absolute folder locations are relative to ":[null,""],"Manual Post-Processing":[null,"Manuaalinen jälkikäsittely"],"Episode Status Management":[null,"Jaksojen tilan hallinta"],"Update PLEX":[null,"Päivitä PLEX"],"Update KODI":[null,"Päivitä KODI"],"Update Emby":[null,"Päivitä Emby"],"Missed Subtitle Management":[null,""],"Help & Info":[null,"Ohje & Tietoja"],"Backup & Restore":[null,"Varmuuskopiointi & Palautus"],"Tools":[null,"Työkalut"],"Support SickRage":[null,"Tue SickRagea"],"View Errors":[null,"Näytä virheet"],"View Warnings":[null,"Näytä varoitukset"],"View Log":[null,"Näytä loki"],"Check For Updates":[null,"Tarkista päivitykset"],"Restart":[null,"Käynnistä uudelleen"],"Shutdown":[null,"Sammuta"],"Logout":[null,"Kirjaudu ulos"],"Server Status":[null,"Palvelimen tila"],"View overview of snatched episodes":[null,"Näytä yhteenveto napatuista jaksoista"],"Episodes Downloaded":[null,"Jaksoja ladattu"],"Memory used":[null,"Muistia käytetty"],"Load time":[null,"Latausaika"],"Branch":[null,"Haara"],"Now":[null,"Nyt"]}}}} \ No newline at end of file +{"messages":{"domain":"messages","locale_data":{"messages":{"100":[null,"100"],"250":[null,"250"],"500":[null,"500"],"":{"domain":"messages","plural_forms":"nplurals=2; plural=(n != 1);","lang":"fi_FI"},"Drama":[null,"Draama"],"Mystery":[null,"Mysteeri"],"Science-Fiction":[null,"Science-Fiction"],"Crime":[null,"Rikos"],"Action":[null,"Toiminto"],"Comedy":[null,"Komedia"],"Thriller":[null,"Trilleri"],"Animation":[null,"Animaatio"],"Family":[null,"Perhe"],"Fantasy":[null,"Fantasia"],"Adventure":[null,"Seikkailu"],"Horror":[null,"Kauhu"],"Film-Noir":[null,"Film Noir"],"Sci-Fi":[null,"Sci-Fi"],"Romance":[null,"Romantiikka"],"Sport":[null,"Urheilu"],"War":[null,"Sota"],"Biography":[null,"Elämäkerta"],"History":[null,"Historia"],"Music":[null,"Musiikki"],"Western":[null,"Western"],"News":[null,"Uutiset"],"Sitcom":[null,"Tilannekomedia"],"Reality-TV":[null,"Tosi-TV"],"Documentary":[null,"Dokumentti"],"Game-Show":[null,""],"Musical":[null,"Musikaali"],"Talk-Show":[null,"Keskusteluohjelma"],"Started Download":[null,"Lataus aloitettu"],"Download Finished":[null,"Lataus valmis"],"Subtitle Download Finished":[null,"Tekstityksien lataus valmis"],"SickRage Updated":[null,"SickRage päivitetty"],"SickRage Updated To Commit#: ":[null,"SickRage päivitetty Commit #: "],"SickRage new login":[null,"Uusi kirjautuminen SickRageen"],"New login from IP: {0}. http://geomaplookup.net/?ip={0}":[null,"Uusi kirjautuminen IP:stä: {0}. http://geomaplookup.net/?ip={0}"],"Repeat":[null,""],"Repeat (Separated)":[null,""],"Extend":[null,""],"Extend (Limited)":[null,""],"Extend (Limited, E-prefixed)":[null,""],"Downloaded":[null,"Ladattu"],"Snatched":[null,"Napattu"],"Snatched (Proper)":[null,"Napattu (Proper)"],"Failed":[null,"Epäonnistunut"],"Snatched (Best)":[null,"Napattu (Paras)"],"Archived":[null,"Arkistoitu"],"Unknown":[null,"Tuntematon"],"Unaired":[null,"Esittämätön"],"Skipped":[null,"Ohitettu"],"Wanted":[null,"Haluttu"],"Ignored":[null,"Sivuutettu"],"Subtitled":[null,"Tekstitetty"],"For best results please set the Download Station alias as":[null,""],"You can check this setting in the Synology DSM":[null,""],"Control Panel":[null,"Ohjauspaneli"],"Application Portal":[null,""],"Make sure you allow DSM to be embedded with iFrames too in":[null,""],"DSM Settings":[null,"DSM-asetukset"],"Security":[null,"Turvallisuus"],"<No Filter>":[null,""],"Daily Searcher":[null,""],"Backlog":[null,"Rästityöt"],"Show Updater":[null,""],"Check Version":[null,""],"Show Queue":[null,"Näytä jono"],"Search Queue (All)":[null,""],"Search Queue (Daily Searcher)":[null,""],"Search Queue (Backlog)":[null,""],"Search Queue (Manual)":[null,""],"Search Queue (Retry/Failed)":[null,""],"Search Queue (RSS)":[null,""],"Find Propers":[null,""],"Postprocessor":[null,""],"Find Subtitles":[null,""],"Trakt Checker":[null,""],"Event":[null,""],"Error":[null,"Virhe"],"Tornado":[null,""],"Thread":[null,""],"Main":[null,""],"Loading":[null,""],"New update found for SickRage, starting auto-updater":[null,"Uusi päivitys SickRagelle löytyi, aloitetaan päivitys"],"Update was successful":[null,"Päivitys onnistui"],"Update failed!":[null,"Päivitys epäonnistui!"],"Backup":[null,"Varmuuskopioi"],"Config backup in progress...":[null,"Asetusten varmuuskopiointi käynnissä..."],"Config backup successful, updating...":[null,""],"Config backup failed, aborting update":[null,""],"No update needed":[null,"Päivitystä ei tarvita"],"Mako Error":[null,"Mako virhe"],"Oops":[null,"Hups"],"Wrong API key used":[null,"Virheellinen API-avain kätetty"],"Login":[null,"Kirjaudu"],"API Key not generated":[null,"API-avainta ei luotu"],"API Builder":[null,"API-kääntäjä"],"Schedule":[null,"Aikataulu"],"Test 1":[null,"Testi 1"],"This is test number 1":[null,"Tämä on testi numero 1"],"Test 2":[null,"Testi 2"],"This is test number 2":[null,"Tämä on testi numero 2"],"You're using the {branch} branch. Please use 'master' unless specifically asked":[null,"Käytät {branch}-haaraa. Käytä \"master\"-haaraa, ellei erikseen pyydetä"],"Invalid show parameters":[null,"Virheelliset sarjan parametrit"],"Invalid parameters":[null,""],"Episode couldn't be retrieved":[null,"Jaksoa ei voitu hakea"],"Home":[null,"Koti"],"Show List":[null,"Näytä lista"],"Error: Unsupported Request. Send jsonp request with 'callback' variable in the query string.":[null,"Virhe: Pyyntöä ei tueta. Lähetä jsonp-pyyntö laittamalla \"callback\" muuttuja kysymysriville."],"Success. Connected and authenticated":[null,"Onnitui. Yhdistetty ja todennettu"],"Authentication failed. SABnzbd expects":[null,"Todennus epäonnistui. SABnzbd odottaa"],"as authentication method":[null,"todennustapana"],"Unable to connect to host":[null,"Yhteyttä ei voitu muodostaa isäntäpalvelimeen"],"SMS sent successfully":[null,"Viestin lähetys onnistui"],"Problem sending SMS: {message}":[null,"Ongelma lähetettäessä viestiä: {message}"],"Telegram notification succeeded. Check your Telegram clients to make sure it worked":[null,"Telegram-ilmoitus onnistui. Tarkista Telegrammisi varmistaaksesi toiminnan"],"Error sending Telegram notification: {message}":[null,"Virhe lähetettäessä Telegram-ilmoitusta: {message}"],"join notification succeeded. Check your join clients to make sure it worked":[null,""],"Error sending join notification: {message}":[null,""]," with password":[null," salasanalla"],"Registered and Tested growl successfully {growl_host}":[null,"Growl rekisteröity ja testattu onnistuneesti {growl_host}"],"Registration and Testing of growl failed {growl_host}":[null,"Growlin rekisteröinti ja testaus epäonnistui {growl_host}"],"Test prowl notice sent successfully":[null,"Prowl testi-ilmoitus lähetetty onnistuneesti"],"Test prowl notice failed":[null,"Prowl testi-ilmoituksen lähetys epäonnistui"],"Boxcar2 notification succeeded. Check your Boxcar2 clients to make sure it worked":[null,"Boxcar2-ilmoitus onnistui. Tarkista Boxcar2 ohjelmasi varmistaaksesi toiminnan"],"Error sending Boxcar2 notification":[null,"Virhe lähetettäessä Boxcar2-ilmoitusta"],"Pushover notification succeeded. Check your Pushover clients to make sure it worked":[null,""],"Error sending Pushover notification":[null,"Virhe lähetettäessä Pushover-ilmoitusta"],"Key verification successful":[null,"Avaimen tarkistaminen onnistui"],"Unable to verify key":[null,"Avaimen tarkistus ei onnistu"],"Tweet successful, check your twitter to make sure it worked":[null,"Tweettaus onnistui, mutta varmista asia vielä Twitteristä"],"Error sending tweet":[null,"Virhe tweetiä lähetettäessä"],"Please enter a valid account sid":[null,""],"Please enter a valid auth token":[null,""],"Please enter a valid phone sid":[null,""],"Please format the phone number as \"+1-###-###-####\"":[null,""],"Authorization successful and number ownership verified":[null,""],"Error sending sms":[null,""],"Slack message successful":[null,""],"Slack message failed":[null,""],"Discord message successful":[null,""],"Discord message failed":[null,""],"Test KODI notice sent successfully to {kodi_host}":[null,"Testi-ilmoitus lähetetty onnistuneesti KODI:in {kodi_host}"],"Test KODI notice failed to {kodi_host}":[null,"Testi-ilmoituksen lähetys epäonnistui KODI:in {kodi_host}"],"Successful test notice sent to Plex Home Theater ... {plex_clients}":[null,"Testi-ilmoitus lähetetty onnistuneesti Plex Home Theateriin... {plex_clients}"],"Test failed for Plex Home Theater ... {plex_clients}":[null,"Testi-ilmoituksen lähetys epäonnistui Plex Home Theateriin... {plex_clients}"],"Tested Plex Home Theater(s)":[null,"Testatut Plex Home Theaterit"],"Successful test of Plex Media Server(s) ... {plex_servers}":[null,"Testi-ilmoitus lähetetty onnistuneesti Plex Media Serveriin... {plex_servers}"],"Test failed, No Plex Media Server host specified":[null,"Testi epäonnistui. Plex Media Serverin isäntää ei ole määritetty"],"Test failed for Plex Media Server(s) ... {plex_servers}":[null,"Testi-ilmoituksen lähetys epäonnistui Plex Media Serveriin... {plex_servers}"],"Tested Plex Media Server host(s)":[null,"Testattu Plex Media Server isäntä"],"Tried sending desktop notification via libnotify":[null,"Yritetty lähettää työpöytäilmoitus sovelluksella libnotify"],"Test notice sent successfully to {emby_host}":[null,"Testi-ilmoitus lähetetty onnistuneesti {emby_host}"],"Test notice failed to {emby_host}":[null,"Testi-ilmoituksen lähetys epäonnistui {emby_host}"],"Successfully started the scan update":[null,"Skannauspäivitys käynnistetty onnistuneesti"],"Test failed to start the scan update":[null,"Skannauspäivityksen käynnistäminen epäonnistui"],"Test notice sent successfully to {nmj2_host}":[null,""],"Test notice failed to {nmj2_host}":[null,""],"Trakt Authorized":[null,""],"Trakt Not Authorized!":[null,""],"Test email sent successfully! Check inbox.":[null,""],"ERROR: {last_error}":[null,"VIRHE: {last_error}"],"Test NMA notice sent successfully":[null,"NMA-testi-ilmoitus lähetetty onnistuneesti"],"Test NMA notice failed":[null,""],"Pushalot notification succeeded. Check your Pushalot clients to make sure it worked":[null,""],"Error sending Pushalot notification":[null,"Virhe lähetettäessä Pushalot-ilmoitusta"],"Pushbullet notification succeeded. Check your device to make sure it worked":[null,""],"Error sending Pushbullet notification":[null,""],"Status":[null,"Tila"],"Restarting SickRage":[null,"SickRage uudelleenkäynnistyy"],"Update Failed":[null,"Päivitys epäonnistui"],"Update wasn't successful, not restarting. Check your log for more information.":[null,"Päivitys ei onnistunut, joten ei uudelleenkäynnistetä. Katso logeista lisätietoja."],"Checking out branch":[null,""],"Already on branch":[null,""],"Invalid show ID: {show}":[null,"Virheellinen sarjan tunnus: {show}"],"Show not in show list":[null,"Sarjaa ei ole sarjojen listauksessa"],"Edit":[null,"Muokkaa"],"This show is in the process of being downloaded - the info below is incomplete.":[null,""],"The information on this page is in the process of being updated.":[null,""],"The episodes below are currently being refreshed from disk":[null,""],"Currently downloading subtitles for this show":[null,""],"This show is queued to be refreshed.":[null,""],"This show is queued and awaiting an update.":[null,""],"This show is queued and awaiting subtitles download.":[null,""],"Resume":[null,"Jatka"],"Pause":[null,"Tauko"],"Remove":[null,"Poista"],"Re-scan files":[null,"Uudelleen tarkista tiedostot"],"Force Full Update":[null,"Pakota täydellinen päivitys"],"Update show in KODI":[null,"Päivitä ohjelma KODI:ssa"],"Update show in Emby":[null,"Päivitä ohjelma Emby:ssa"],"Hide specials":[null,""],"Show specials":[null,""],"Preview Rename":[null,"Esikatsele uudelleennimeäminen"],"Download Subtitles":[null,"Lataa tekstitykset"],"No scene exceptions":[null,""],"Invalid show ID":[null,"Virheellinen sarjan tunnus"],"Unable to find the specified show":[null,"Määriteltyä sarjaa ei löydy"],"Unable to retreive Fansub Groups from AniDB.":[null,""],"Edit Show":[null,"Muokkaa ohjelmaa"],"Unable to refresh this show: {error}":[null,"Ei voi päivittää tätä sarjaa: {error}"],"New location <tt>{location}</tt> does not exist":[null,""],"Unable to update show: {error}":[null,"Tätä sarjaa ei voitu päivittää: {error}"],"Unable to force an update on scene exceptions of the show.":[null,""],"Unable to force an update on scene numbering of the show.":[null,""],"{num_errors:d} error{plural} while saving changes:":[null,""],"{show_name} has been {paused_resumed}":[null,"{show_name} {paused_resumed}"],"resumed":[null,"jatketaan"],"paused":[null,"keskeytetty"],"{show_name} has been {deleted_trashed} {was_deleted}":[null,"{show_name} on {deleted_trashed} {was_deleted}"],"deleted":[null,"poistettu"],"trashed":[null,"poistettu"],"(media untouched)":[null,"(mediaan ei koskettu)"],"(with all related media)":[null,""],"Unable to refresh this show.":[null,"Ei voi päivittää tätä sarjaa."],"Unable to update this show.":[null,"Tätä sarjaa ei voitu päivittää."],"Library update command sent to KODI host(s)): {kodi_hosts}":[null,"Kirjaston päivitys komento lähetetty KODI:iin {kodi_hosts}"],"Unable to contact one or more KODI host(s)): {kodi_hosts}":[null,"Ei yhteyttä yhteen tai useampaan KODI:iin {kodi_hosts}"],"Library update command sent to Plex Media Server host: {plex_server}":[null,"Kirjaston päivitys komento lähetetty Plex Media Serveriin {plex_server}"],"Unable to contact Plex Media Server host: {plex_server}":[null,"Ei yhteyttä Plex Media Serveriin {plex_server}"],"Library update command sent to Emby host: {emby_host}":[null,""],"Unable to contact Emby host: {emby_host}":[null,""],"You must specify a show and at least one episode":[null,"Sinun täytyy määrittää sarja ja ainakin yksi sen jakso"],"Invalid status":[null,"Virheellinen tila"],"Backlog was automatically started for the following seasons of <b>{show_name}</b>":[null,"Rästissä olevien haku aloitettiin automaattisesti sarjan <b>{show_name}</b> kausille"],"Season":[null,"Kausi"],"Backlog started":[null,"Rästityöt aloitettu"],"Retrying Search was automatically started for the following season of <b>{show_name}</b>":[null,""],"Retry Search started":[null,""],"You must specify a show":[null,""],"Can't rename episodes when the show dir is missing.":[null,""],"New subtitles downloaded: {new_subtitle_languages}":[null,""],"No subtitles downloaded":[null,"Teksityksiä ei ladattu"],"IRC":[null,"IRC"],"Could not load news from the repo. [Click here for news.md])({news_url})":[null,""],"The was a problem connecting to github, please refresh and try again":[null,""],"Could not load changes from the repo. [Click here for CHANGES.md]({changes_url})":[null,""],"Changelog":[null,"Muutosloki"],"Post Processing":[null,"Jälkikäsittely"],"Add Shows":[null,"Lisää sarjoja"],"No folders selected.":[null,"Yhtään kansiota ei ole valittu."],"New Show":[null,"Uusi sarja"],"Trending Shows":[null,""],"Popular Shows":[null,"Suosittuja sarjoja"],"Most Anticipated Shows":[null,""],"Most Collected Shows":[null,""],"Most Watched Shows":[null,""],"Most Played Shows":[null,""],"Recommended Shows":[null,""],"New Shows":[null,"Uudet sarjat"],"Season Premieres":[null,"Kausi alkaa"],"Existing Show":[null,"Olemassa oleva sarja"],"No root directories setup, please go back and add one.":[null,""],"Show added":[null,"Sarja lisätty"],"Adding the specified show {show_name}":[null,""],"Missing params, no Indexer ID or folder: {show_to_add} and {root_dir}/{show_path}":[null,""],"Unknown error. Unable to add show due to problem with show selection.":[null,""],"Unable to add show":[null,""],"Folder {show_dir} exists already":[null,""],"Unable to create the folder {show_dir}, can't add the show":[null,""],"Adding the specified show into {show_dir}":[null,""],"Shows Added":[null,""],"Automatically added {num_shows} from their existing metadata files":[null,""],"Mass Update":[null,"Massapäivitys"],"Episode Overview":[null,"Jaksojen yleiskatsaus"],"Missing Subtitles":[null,"Puuttuvat tekstitykset"],"Backlog Overview":[null,"Rästitöiden yleiskatsaus"],"Mass Edit":[null,"Massamuokkaa"],"Unable to update show: {excption_format}":[null,""],"Unable to refresh show {show_name}: {excption_format}":[null,""],"Errors encountered":[null,"Kohdatut virheet"],"Updates":[null,"Päivitykset"],"Refreshes":[null,""],"Renames":[null,""],"Subtitles":[null,"Tekstitykset"],"The following actions were queued":[null,""],"Failed Downloads":[null,"Epäonnistuneet lataukset"],"Manage Searches":[null,"Hallitse hakuja"],"Backlog search started":[null,"Rästissä olevien haku aloitettu"],"Daily search started":[null,"Päivittäinen haku aloitettu"],"Find propers search started":[null,"Proper-versioiden haku haku alkoi"],"Subtitle search started":[null,"Tekstityste haku aloitettu"],"Remove Selected":[null,""],"Clear History":[null,"Tyhjennä historia"],"Trim History":[null,"Lyhennä historia"],"Selected history entries removed":[null,""],"History cleared":[null,"Historia tyhjennetty"],"Removed history entries older than 30 days":[null,""],"General":[null,"Yleiset"],"Backup/Restore":[null,"Varmuuskopioi/Palauta"],"Search Settings":[null,"Haun asetukset"],"Search Providers":[null,""],"Subtitles Settings":[null,"Tekstityksen asetukset"],"Notifications":[null,"Ilmoitukset"],"Anime":[null,"Anime"],"SickRage Configuration":[null,"SickRagen asetukset"],"Config - Shares":[null,""],"Windows Shares Configuration":[null,""],"Saved Shares":[null,""],"Your Windows share settings have been saved":[null,""],"Config - General":[null,"Asetukset - Yleiset"],"General Configuration":[null,"Yleiset asetukset"],"Saved Defaults":[null,""],"Your \"add show\" defaults have been set to your current selections.":[null,""],"Unable to create directory {directory}, log directory not changed.":[null,""],"Unable to create directory {directory}, https cert directory not changed.":[null,""],"Unable to create directory {directory}, https key directory not changed.":[null,""],"Error(s) Saving Configuration":[null,"Virhe(itä) asetuksia tallennettaessa"],"Configuration Saved":[null,"Asetukset tallennettu"],"Config - Backup/Restore":[null,"Asetukset - Varmuuskopiointi/Palautus"],"Config - Episode Search":[null,"Asetukset - Jaksojen haku"],"Config - Post Processing":[null,"Asetukset - Jälkikäsittely"],"Unpacking Not Supported, disabling unpack setting":[null,""],"You tried saving an invalid normal naming config, not saving your naming settings":[null,""],"You tried saving an invalid anime naming config, not saving your naming settings":[null,""],"Config - Providers":[null,"Asetukset - Tarjoajat"],"No Provider Name specified":[null,""],"No Provider Url specified":[null,""],"No Provider Api key specified":[null,""],"Config - Notifications":[null,"Asetukset - Ilmoitukset"],"Config - Subtitles":[null,"Asetukset - Tekstitykset"],"Config - Anime":[null,"Asetukset - Anime"],"Clear Errors":[null,"Tyhjennä virheet"],"Clear Warnings":[null,"Tyhjennä varoitukset"],"Submit Errors":[null,"Lähetä virheet"],"Logs & Errors":[null,"Lokit & Virheet"],"Log File":[null,"Lokitiedosto"],"Logs":[null,"Lokit"],"This is a test notification from SickRage":[null,""],"Choose Directory":[null,""],"Select log file folder location":[null,""],"Select CSS file":[null,""],"Select backup folder to save to":[null,""],"Select backup files to restore":[null,""],"Please fill out the necessary fields above.":[null,""],"<b>Step 1:</b> Confirm Authorization":[null,""],"Check blacklist name; the value needs to be a trakt slug":[null,""],"You must provide a recipient email address!":[null,""],"You didn't supply a Pushbullet api key":[null,""],"Don't forget to save your new pushbullet settings.":[null,""],"Select TV Download Directory":[null,""],"Select Unpack Directory":[null,""],"This pattern is invalid.":[null,""],"This pattern would be invalid without the folders, using it will force \"Season Folders\" on for all shows.":[null,""],"This pattern is valid.":[null,""],"Select .nzb black hole/watch location":[null,""],"Select .torrent black hole/watch location":[null,""],"Select .torrent download location":[null,""],"Minimum seeding time is":[null,""],"URL to your uTorrent client (e.g. http://localhost:8000)":[null,""],"Stop seeding when inactive for":[null,""],"URL to your Transmission client (e.g. http://localhost:9091)":[null,""],"URL to your Deluge client (e.g. http://localhost:8112)":[null,""],"IP or Hostname of your Deluge Daemon (e.g. scgi://localhost:58846)":[null,""],"URL to your Synology DS client (e.g. http://localhost:5000)":[null,""],"URL to your rTorrent client (e.g. scgi://localhost:5000 <br> or https://localhost/rutorrent/plugins/httprpc/action.php)":[null,""],"URL to your qBittorrent client (e.g. http://localhost:8080)":[null,""],"URL to your MLDonkey (e.g. http://localhost:4080)":[null,""],"URL to your putio client (e.g. http://localhost:8080)":[null,""],"<a herf=\"https://app.put.io/oauth/apps/new\" target=\"_blank\"> Create a new OAuth app for put.io</a>":[null,""],"Put.io Parent Folder":[null,""],"Put.io OAuth Token":[null,""],"Show Episodes":[null,""],"Hide Episodes":[null,""],"Select Show Location":[null,""],"Select Unprocessed Episode Folder":[null,""],"DELETED":[null,""],"Resume updating the log on this page.":[null,""],"Pause updating the log on this page.":[null,""],"searching {searchingFor}...":[null,""],"search timed out, try again or try another indexer":[null,""],"loading folders...":[null,""],"Loading...":[null,"Ladataan..."],"You have reached this page by accident, please check the url.":[null,"Päädyist tälle sivulle vahingossa, tarkista URL-osoite."],"A mako error has occured.<br>\n If this happened during an update a simple page refresh may be the solution.<br>\n Mako errors that happen during updates may be a one time error if there were significant ui changes.":[null,""],"Show/Hide Error":[null,""],"Add New Show":[null,"Lisää uusi sarja"],"For shows that you haven't downloaded yet, this option finds a show on theTVDB.com, creates a directory for it's episodes, and adds it to SickRage.":[null,""],"Add From Trakt Lists":[null,"Lisää Trakt luetteloista"],"For shows that you haven't downloaded yet, this option lets you choose from a show from one of the Trakt lists to add to SickRage.":[null,""],"Add From IMDB's Popular Shows":[null,""],"View IMDB's list of the most popular shows. This feature uses IMDB's MOVIEMeter algorithm to identify popular TV Series.":[null,""],"Add Existing Shows":[null,"Lisää olemassa olevat sarjat"],"Use this option to add shows that already have a folder created on your hard drive. SickRage will scan your existing metadata/episodes and add the show accordingly.":[null,"Tämän vaihtoehdon avulla voit lisätä sarjoja, joilla on kansio kiintolevyllä. SickRage tarkistaa olemassa olevat metatiedot/jaksot ja lisää sarjan sen mukaisesti."],"Add Existing Show":[null,"Lisää olemassa olevat sarja"],"Manage Directories":[null,"Hallitse kansioita"],"Customize Options":[null,"Asetusten mukauttaminen"],"SickRage can add existing shows, using the current options, by using locally stored NFO/XML metadata to eliminate user interaction. If you would rather have SickRage prompt you to customize each show, then use the checkbox below.":[null,""],"Prompt me to set settings for each show":[null,"Kysy asetukset jokaiseen sarjaan"],"Displaying folders within these directories which aren't already added to SickRage":[null,""],"Submit":[null,"Lähetä"],"Find a show on theTVDB":[null,"Etsi sarja theTVDB:stä"],"Show retrieved from existing metadata":[null,""],"All Indexers":[null,""],"Search":[null,""],"This will only affect the language of the retrieved metadata file contents and episode filenames.":[null,""],"This <b>DOES NOT</b> allow SickRage to download non-english TV episodes!":[null,"Tämä <b>Ei</b> anna SickRagen ladata ei englanninkielisiä TV-jaksoja!"],"Pick the parent folder":[null,""],"Pre-chosen Destination Folder":[null,""],"Customize options":[null,"Asetusten mukauttaminen"],"Add Show":[null,"Lisää sarja"],"Skip Show":[null,""],"Sort By":[null,"Lajittele"],"Name":[null,"Nimi"],"Original":[null,"Alkuperäinen"],"Votes":[null,"Äänet"],"Rating":[null,"Arvostelu"],"Rating > Votes":[null,"Pisteet > Äänet"],"Sort Order":[null,"Lajittelujärjestys"],"Asc":[null,"Nouseva"],"Desc":[null,"Laskeva"],"Fetching of IMDB Data failed. Are you online?":[null,""],"Exception":[null,"Poikkeus"],"Select Trakt List":[null,""],"Most Anticipated":[null,"Odotetuimmat"],"Trending":[null,"Trendit"],"Popular":[null,"Suositut"],"Most Watched":[null,"Katsotuimmat"],"Most Played":[null,"Useimmin toistetut"],"Most Collected":[null,""],"Recommended":[null,"Suositellut"],"Toggle navigation":[null,""],"Profile":[null,"Profiili"],"JSONP":[null,"JSONP"],"Back to SickRage":[null,""],"Parameters":[null,"Parametrit"],"Required":[null,"Pakollinen"],"Description":[null,"Kuvaus"],"Type":[null,"Tyyppi"],"Default value":[null,"Oletusarvo"],"Allowed values":[null,"Sallitut arvot"],"Playground":[null,"Leikkikenttä"],"Clear":[null,"Tyhjennä"],"Yes":[null,"Kyllä"],"No":[null,"Ei"],"season":[null,"kausi"],"episode":[null,"jakso"],"Python Version":[null,"Python versio"],"SSL Version":[null,"SSL versio"],"OS":[null,"OS"],"Locale":[null,"Alueasetus"],"User":[null,"Käyttäjä"],"Program Folder":[null,"Ohjelman kansio"],"Config File":[null,"Asetustiedosto"],"Database File":[null,"Tietokantatiedosto"],"Cache Folder":[null,"Välimuistikansio"],"Log Folder":[null,"Lokikansio"],"Arguments":[null,"Muuttujat"],"Web Root":[null,""],"Website":[null,"Sivusto"],"Wiki":[null,"Wiki"],"Source":[null,"Lähde"],"IRC Chat":[null,"IRC Chat"],"AnimeDB Settings":[null,"AnimeDB asetukset"],"Look & Feel":[null,"Ulkoasu"],"AniDB is non-profit database of anime information that is freely open to the public":[null,""],"Enable":[null,"Käytä"],"should SickRage use data from AniDB?":[null,""],"AniDB Username":[null,"AniDB käyttäjänimi"],"username of your AniDB account":[null,""],"AniDB Password":[null,"AniDB salasana"],"password of your AniDB account":[null,""],"AniDB MyList":[null,"AniDB MyList"],"do you want to add the PostProcessed episodes to the MyList?":[null,""],"Look and Feel":[null,"Ulkoasu"],"How should the anime functions show and behave.":[null,""],"Split show lists":[null,""],"separate anime and normal shows in groups":[null,""],"Split in tabs":[null,""],"use tabs for when splitting show lists":[null,""],"Restore":[null,"Palauta"],"Backup your main database file and config.":[null,""],"Select the folder you wish to save your backup file to":[null,""],"Restore your main database file and config.":[null,""],"Select the backup file you wish to restore":[null,""],"Misc":[null,""],"Interface":[null,"Käyttöliittymä"],"Advanced Settings":[null,"Lisäasetukset"],"Startup options. Indexer options. Log and show file locations.":[null,""],"Some options may require a manual restart to take effect.":[null,""],"Default Indexer Language":[null,""],"for adding shows and metadata providers":[null,""],"Launch browser":[null,"Käynnistä selain"],"open the SickRage home page on startup":[null,""],"Initial page":[null,"Aloitussivu"],"Shows":[null,"Sarjat"],"when launching SickRage interface":[null,""],"Choose hour to update shows":[null,""],"with information such as next air dates, show ended, etc. Use 15 for 3pm, 4 for 4am etc.":[null,""],"note":[null,""],"minutes are randomized each time SickRage is started":[null,""],"Send to trash for actions":[null,""],"when using show \"Remove\" and delete files":[null,""],"on scheduled deletes of the oldest log files":[null,""],"selected actions use trash (recycle bin) instead of the default permanent delete":[null,""],"Log file folder location":[null,"Lokitiedoston kansion sijainti"],"Number of Log files saved":[null,""],"number of log files saved when rotating logs (default: 5) (REQUIRES RESTART)":[null,""],"Size of Log files saved":[null,""],"maximum size in MB of the log file (default: 1MB) (REQUIRES RESTART)":[null,""],"Use initial indexer set to":[null,""],"as the default selection when adding new shows":[null,""],"Timeout show indexer at":[null,""],"seconds of inactivity when finding new shows (default:20)":[null,""],"Show root directories":[null,""],"where the files of shows are located":[null,""],"Save Changes":[null,"Tallenna muutokset"],"Options for software updates.":[null,""],"Check software updates":[null,""],"and display notifications when updates are available. Checks are run on startup and at the frequency set below*":[null,""],"Automatically update":[null,"Päivitä automaattisesti"],"fetch and install software updates. Updates are run on startup and in the background at the frequency set below*":[null,""],"Check the server every*":[null,""],"hours for software updates (default:1)":[null,""],"Notify on software update":[null,"Ilmoita ohjelmistopäivityksistä"],"send a message to all enabled notifiers when SickRage has been updated":[null,""],"User Interface":[null,""],"Options for visual appearance.":[null,""],"Interface Language":[null,"Käyttöliittymän kieli"],"System Language":[null,"Järjestelmän kieli"],"for appearance to take effect, save then refresh your browser":[null,""],"Display theme":[null,""],"Dark":[null,""],"Light":[null,""],"Use a background image":[null,""],"use a custom image as background for SickRage":[null,""],"Background Path":[null,""],"Path to the background image":[null,""],"Show fanart in the background":[null,""],"on the show summary page":[null,""],"Fanart transparency":[null,""],"transparency of the fanart in the background":[null,""],"Use a custom stylesheet file":[null,""],"use a custom .css file to style SickRage (for advanced users)":[null,""],"Stylesheet File Path":[null,""],"Path to the stylesheet (.css) file":[null,""],"Show all seasons":[null,"Näytä kaikki kaudet"],"Sort with \"The\", \"A\", \"An\"":[null,""],"include articles (\"The\", \"A\", \"An\") when sorting show lists":[null,""],"Missed episodes range":[null,""],"set the range in days of the missed episodes in the Schedule page":[null,""],"Display fuzzy dates":[null,""],"move absolute dates into tooltips and display e.g. \"Last Thu\", \"On Tue\"":[null,""],"Trim zero padding":[null,""],"remove the leading number \"0\" shown on hour of day, and date of month":[null,""],"Date style":[null,""],"Use System Default":[null,""],"Time style":[null,""],"seconds are only shown on the History page":[null,""],"Timezone":[null,"Aikavyöhyke"],"Local":[null,""],"Network":[null,"Kanava"],"display dates and times in either your timezone or the shows network timezone":[null,""],"use local timezone to start searching for episodes minutes after show ends (depends on your dailysearch frequency)":[null,""],"Download url":[null,""],"URL where the shows can be downloaded.":[null,""],"Web Interface":[null,"Web-käyttöliittymä"],"it is recommended that you enable a username and password to secure SickRage from being tampered with remotely.":[null,""],"these options require a manual restart to take effect.":[null,""],"API key":[null,"API-avain"],"used to give 3rd party programs limited access to SickRage":[null,""],"you can try all the features of the API":[null,""],"here":[null,""],"HTTP logs":[null,""],"enable logs from the internal Tornado web server":[null,""],"HTTP username":[null,"HTTP-käyttäjätunnus"],"set blank for no login":[null,""],"HTTP password":[null,"HTTP-salasana"],"blank = no authentication":[null,"tyhjä = ei todennusta"],"HTTP port":[null,"HTTP-portti"],"web port to browse and access SickRage (default:8081)":[null,""],"Notify on login":[null,""],"enable to be notified when a new login happens in webserver":[null,""],"Listen on IPv6":[null,""],"attempt binding to any available IPv6 address":[null,""],"Enable HTTPS":[null,""],"enable access to the web interface using a HTTPS address":[null,""],"HTTPS certificate":[null,""],"file name or path to HTTPS certificate":[null,"tiedostonimi tai polku HTTPS-varmenteeseen"],"HTTPS key":[null,""],"file name or path to HTTPS key":[null,"tiedostonimi tai polku HTTPS-avaimeen"],"Reverse proxy headers":[null,""],"accept the following reverse proxy headers (advanced)...":[null,""],"(X-Forwarded-For, X-Forwarded-Host, and X-Forwarded-Proto)":[null,""],"CPU throttling":[null,""],"Normal (default). High is lower and Low is higher CPU use":[null,""],"Anonymous redirect":[null,""],"backlink protection via anonymizer service, must end in \"?\"":[null,""],"Enable debug":[null,""],"enable debug logs":[null,""],"Verify SSL Certs":[null,""],"verify SSL Certificates (Disable this for broken SSL installs (Like QNAP))":[null,""],"No Restart":[null,"Ei uudelleenkäynnistystä"],"only shutdown when restarting SR":[null,""],"only select this when you have external software restarting SR automatically when it stops (like FireDaemon)":[null,""],"Encrypt passwords":[null,"Kryptaa salasanat"],"in the <code>config.ini</code> file":[null,""],"warning":[null,""],"passwords must only contain":[null,""],"ASCII characters":[null,"ASCII-merkkejä"],"Unprotected calendar":[null,"Suojaamaton kalenteri"],"allow subscribing to the calendar without user and password":[null,""],"some services like Google Calendar only work this way":[null,""],"Google Calendar Icons":[null,""],"show an icon next to exported calendar events in Google Calendar":[null,""],"Proxy host":[null,""],"blank to disable or proxy to use when connecting to providers":[null,""],"also use global proxy setting for indexers (tvdb, xem, anidb, etc.)":[null,""],"Skip Remove Detection":[null,""],"skip detection of removed files":[null,""],"if disabled the episode will be set to the default deleted status":[null,""],"Default deleted episode status":[null,"Poistetun jakson oletustila"],"define the status to be set for media file that has been deleted.":[null,""],"Archived option will keep previous downloaded quality":[null,""],"example: Downloaded (1080p WEB-DL) ==> Archived (1080p WEB-DL)":[null,""],"Options for github related features.":[null,""],"Branch version":[null,"Haaran versio"],"error: No branches found.":[null,""],"select branch to use (restart required)":[null,"valitse käytettävä haara (vaatii uudelleenkäynnistyksen)"],"Authorization Type":[null,""],"Username and password":[null,""],"Personal access token":[null,""],"You must use a personal access token if you're using \"two-factor authentication\" on GitHub.":[null,""],"GitHub username":[null,"GitHub käyttäjätunnus"],"*** (REQUIRED FOR SUBMITTING ISSUES) ***":[null,""],"GitHub password":[null,"GitHub salasana"],"GitHub personal access token":[null,""],"Generate Token":[null,""],"Manage Tokens":[null,""],"GitHub remote for branch":[null,""],"access repo configured remotes (save then refresh browser)":[null,""],"default":[null,""],"origin":[null,""],"Git executable path":[null,""],"only needed if OS is unable to locate git from env":[null,""],"Git reset":[null,""],"removes untracked files and performs a hard reset on git branch automatically to help resolve update issues":[null,""],"Home Theater / NAS":[null,""],"Devices":[null,""],"Social":[null,""],"A free and open source cross-platform media center and home entertainment system software with a 10-foot user interface designed for the living-room TV.":[null,""],"send KODI commands?":[null,""],"Always on":[null,""],"log errors when unreachable?":[null,""],"Notify on snatch":[null,"Ilmoita napattaessa"],"send a notification when a download starts?":[null,""],"Notify on download":[null,""],"send a notification when a download finishes?":[null,""],"Notify on subtitle download":[null,""],"send a notification when subtitles are downloaded?":[null,""],"Update library":[null,""],"update KODI library when a download finishes?":[null,""],"Full library update":[null,""],"perform a full library update if update per-show fails?":[null,""],"Only update first host":[null,""],"only send library updates to the first active host?":[null,""],"KODI IP:Port":[null,""],"host running KODI (eg. 192.168.1.100:8080)":[null,""],"(multiple host strings must be separated by commas)":[null,""],"Username":[null,"Käyttäjätunnus"],"username for your KODI server (blank for none)":[null,""],"Password":[null,"Salasana"],"password for your KODI server (blank for none)":[null,""],"Click below to test.":[null,""],"Experience your media on a visually stunning, easy to use interface on your Mac connected to your TV. Your media library has never looked this good!":[null,""],"For sending notifications to Plex Home Theater (PHT) clients, use the KODI notifier with port <b>3005</b>.":[null,""],"send Plex Media Server library updates?":[null,""],"Plex Media Server Auth Token":[null,""],"auth token used by Plex":[null,""],"Update Library":[null,"Päivitä kirjasto"],"update Plex Media Server library when a download finishes":[null,""],"Plex Media Server IP:Port":[null,""],"one or more hosts running Plex Media Server<br/>(eg. 192.168.1.1:32400, 192.168.1.2:32400)":[null,""],"HTTPS":[null,"HTTPS"],"use https for plex media server requests?":[null,""],"Click below to test Plex Media Server(s)":[null,""],"Test Plex Media Server":[null,""],"Plex Home Theater":[null,""],"send Plex Home Theater notifications?":[null,""],"Plex Home Theater IP:Port":[null,""],"one or more hosts running Plex Home Theater<br>(eg. 192.168.1.100:3000, 192.168.1.101:3000)":[null,""],"Click below to test Plex Home Theater(s)":[null,""],"Test Plex Home Theater":[null,""],"some Plex Home Theaters <b class=\"boldest\">do not</b> support notifications e.g. Plexapp for Samsung TVs":[null,""],"Emby":[null,"Emby"],"A home media server built using other popular open source technologies.":[null,""],"send update commands to Emby?":[null,""],"Emby IP:Port":[null,"Emby IP:Portti"],"host running Emby (eg. 192.168.1.100:8096)":[null,""],"Emby API Key":[null,"Emby API-avain"],"Networked Media Jukebox":[null,""],"The Networked Media Jukebox, or NMJ, is the official media jukebox interface made available for the Popcorn Hour 200-series.":[null,""],"send update commands to NMJ?":[null,""],"Popcorn IP address":[null,""],"IP address of Popcorn 200-series (eg. 192.168.1.100)":[null,""],"Get settings":[null,""],"Get Settings":[null,""],"the Popcorn Hour device must be powered on and NMJ running.":[null,""],"NMJ database":[null,""],"automatically filled via the 'Get Settings' button.":[null,""],"NMJ mount url":[null,""],"Networked Media Jukebox v2":[null,""],"The Networked Media Jukebox, or NMJv2, is the official media jukebox interface made available for the Popcorn Hour 300 & 400-series.":[null,""],"send update commands to NMJv2?":[null,""],"IP address of Popcorn 300/400-series (eg. 192.168.1.100)":[null,"Popcorn 300/400-sarjan IP-osoite (esim. 192.168.1.100)"],"Database location":[null,"Tietokannan sijainti"],"Database instance":[null,""],"adjust this value if the wrong database is selected.":[null,""],"Find database":[null,""],"Find Database":[null,""],"the Popcorn Hour device must be powered on.":[null,""],"NMJv2 database":[null,""],"automatically filled via the 'Find Database' buttons.":[null,""],"Synology":[null,""],"The Synology DiskStation NAS.":[null,""],"Synology Indexer is the daemon running on the Synology NAS to build its media database.":[null,""],"send Synology notifications?":[null,""],"requires SickRage to be running on your Synology NAS.":[null,""],"Synology Indexer":[null,""],"Synology Notifier is the notification system of Synology DSM":[null,""],"send notifications to the Synology Notifier?":[null,""],"pyTivo":[null,"pyTivo"],"pyTivo is both an HMO and GoBack server. This notifier will load the completed downloads to your Tivo.":[null,""],"send notifications to pyTivo?":[null,""],"requires the downloaded files to be accessible by pyTivo.":[null,""],"pyTivo IP:Port":[null,"pyTivo IP:Portti"],"host running pyTivo (eg. 192.168.1.1:9032)":[null,""],"pyTivo share name":[null,""],"value used in pyTivo Web Configuration to name the share.":[null,""],"Tivo name":[null,""],"(Messages & Settings > Account & System Information > System Information > DVR name)":[null,""],"Growl":[null,"Growl"],"A cross-platform unobtrusive global notification system.":[null,""],"send Growl notifications?":[null,""],"Growl IP:Port":[null,"Growl IP:Portti"],"host running Growl (eg. 192.168.1.100:23053)":[null,""],"may leave blank if SickRage is on the same host.":[null,""],"otherwise Growl <b>requires</b> a password to be used.":[null,""],"Click below to register and test Growl, this is required for Growl notifications to work.":[null,""],"Register Growl":[null,""],"Prowl":[null,"Prowl"],"A Growl client for iOS.":[null,""],"send Prowl notifications?":[null,""],"Prowl Message Title":[null,""],"Global Prowl API key(s)":[null,""],"Prowl API(s) listed here, separated by commas if applicable, will<br> receive notifications for <b>all</b> shows. Your Prowl API key is available at:":[null,""],"(this field may be blank except when testing.)":[null,""],"Show notification list":[null,""],"-- Select a Show --":[null,""],"Configure per-show notifications here by entering Prowl API key(s), separated by commas, '\n 'after selecting a show in the drop-down box. Be sure to activate the 'Save for this show' '\n 'button below after each entry.":[null,""],"Save for this show":[null,""],"Prowl priority":[null,""],"Very Low":[null,""],"Moderate":[null,""],"Normal":[null,""],"High":[null,""],"Emergency":[null,""],"priority of Prowl messages from SickRage.":[null,""],"Libnotify":[null,"Libnotify"],"The standard desktop notification API for Linux/*nix systems. This notifier will only function if the pynotify module is installed (Ubuntu/Debian package <a href=\"apt:python-notify\">python-notify</a>).":[null,""],"send Libnotify notifications?":[null,""],"Pushover":[null,"Pushover"],"Pushover makes it easy to send real-time notifications to your Android and iOS devices.":[null,""],"send Pushover notifications?":[null,""],"Pushover key":[null,""],"user key of your Pushover account":[null,""],"Pushover API key":[null,""],"click here":[null,""]," to create a Pushover API key":[null,""],"Pushover devices":[null,""],"comma separated list of pushover devices you want to send notifications to":[null,""],"Pushover notification sound":[null,""],"Bike":[null,""],"Bugle":[null,""],"Cash Register":[null,""],"Classical":[null,""],"Cosmic":[null,""],"Falling":[null,""],"Gamelan":[null,""],"Incoming":[null,""],"Intermission":[null,""],"Magic":[null,""],"Mechanical":[null,""],"Piano Bar":[null,""],"Siren":[null,""],"Space Alarm":[null,""],"Tug Boat":[null,""],"Alien Alarm (long)":[null,""],"Climb (long)":[null,""],"Persistent (long)":[null,""],"Pushover Echo (long)":[null,""],"Up Down (long)":[null,""],"None (silent)":[null,""],"Device specific":[null,""],"choose notification sound to use":[null,""],"Pushover priority":[null,""],"Choose priority to use":[null,""],"Boxcar 2":[null,"Boxcar 2"],"Read your messages where and when you want them!":[null,""],"send Boxcar notifications?":[null,""],"Boxcar2 access token":[null,""],"access token for your Boxcar account.":[null,""],"NMA":[null,"NMA"],"Notify My Android":[null,"Notify My Android"],"Notify My Android is a Prowl-like Android App and API that offers an easy way to send notifications from your application directly to your Android device.":[null,""],"send NMA notifications?":[null,""],"NMA API key":[null,"NMA API-avain"],"(multiple keys must be separated by commas, up to a maximum of 5)":[null,""],"NMA priority":[null,""],"priority of NMA messages from SickRage.":[null,""],"Pushalot":[null,"Pushalot"],"Pushalot is a platform for receiving custom push notifications to connected devices running Windows Phone or Windows 8.":[null,""],"send Pushalot notifications ?":[null,""],"Pushalot authorization token":[null,""],"authorization token of your Pushalot account.":[null,""],"Pushbullet":[null,"Pushbullet"],"Pushbullet is a platform for receiving custom push notifications to connected devices running Android/iOS and desktop browsers such as Chrome, Firefox or Opera.":[null,""],"send Pushbullet notifications?":[null,""],"Pushbullet API key":[null,"Pushbullet API-avain"],"API key of your Pushbullet account":[null,""],"Pushbullet devices":[null,"Pushbullet laitteet"],"Update device list":[null,"Päivitä laiteluettelo"],"Pushbullet channels":[null,"Pushbullet kanavat"],"Free Mobile":[null,""],"Free Mobile is a famous French cellular network provider.<br> It provides to their customer a free SMS API.":[null,""],"send SMS notifications?":[null,""],"send a SMS when a download starts?":[null,""],"send a SMS when a download finishes?":[null,""],"send a SMS when subtitles are downloaded?":[null,""],"Free Mobile customer ID":[null,""],"it's your Free Mobile customer ID (8 digits)":[null,""],"Free Mobile API key":[null,""],"find your API key in your customer portal.":[null,""],"Click below to test your settings.":[null,""],"Telegram":[null,""],"Telegram is a cloud-based instant messaging service.":[null,""],"send Telegram notifications?":[null,""],"send a message when a download starts?":[null,""],"send a message when a download finishes?":[null,""],"send a message when subtitles are downloaded?":[null,""],"User/group ID":[null,""],"contact @myidbot on Telegram to get an ID":[null,""],"Bot API token":[null,""],"contact @BotFather on Telegram to set up one":[null,""],"Join":[null,""],"Join all of your devices together!":[null,""],"send Join notifications?":[null,""],"Device ID":[null,""],"per device specific id":[null,""]," to create a Join API key":[null,""],"Twilio":[null,""],"Twilio is a webservice API that allows you to communicate directly with a mobile number. This notifier will send a text directly to your mobile device.":[null,""],"should SickRage text your mobile device?":[null,""],"Twilio Account SID":[null,""],"account SID of your Twilio account.":[null,""],"Twilio Auth Token":[null,""],"Twilio Phone SID":[null,""],"phone SID that you would like to send the sms from":[null,""],"Your phone number":[null,""],"phone number that will receive the sms. Please use the format +1-###-###-####":[null,""],"Twitter":[null,"Twitter"],"A social networking and microblogging service, enabling its users to send and read other users' messages called tweets.":[null,""],"should SickRage post tweets on Twitter?":[null,""],"you may want to use a secondary account.":[null,""],"send direct message":[null,""],"send a notification via Direct Message, not via status update":[null,""],"send DM to":[null,""],"Twitter account to send Direct Messages to (must follow you)":[null,""],"Step One":[null,""],"Request Authorization":[null,""],"Click the \"Request Authorization\" button.<br> This will open a new page containing an auth key.<br> <b>note:</b> if nothing happens check your popup blocker.":[null,""],"Step Two":[null,""],"Enter the key Twitter gave you below, and click \"Verify Key\".":[null,""],"Trakt":[null,""],"Trakt helps keep a record of what TV shows and movies you are watching. Based on your favorites, Trakt recommends additional shows and movies you'll enjoy!":[null,""],"send Trakt.tv notifications?":[null,""],"username of your Trakt account.":[null,""],"Trakt PIN":[null,""],"Get Trakt PIN":[null,""],"PIN code to authorize SickRage to access Trakt on your behalf.":[null,""],"API Timeout":[null,""],"seconds to wait for Trakt API to respond. (Use 0 to wait forever)":[null,""],"Default indexer":[null,""],"Sync libraries":[null,""],"sync your SickRage show library with your trakt show library.":[null,""],"Remove Episodes From Collection":[null,""],"remove an episode from your Trakt Collection if it is not in your SickRage Library.":[null,""],"Sync watchlist":[null,""],"sync your SickRage show watchlist with your trakt show watchlist (either Show and Episode).":[null,""],"episode will be added on watch list when wanted or snatched and will be removed when downloaded ":[null,""],"Watchlist add method":[null,""],"Skip All":[null,""],"Download Pilot Only":[null,""],"Get whole show":[null,""],"method in which to download episodes for new shows.":[null,""],"Remove episode":[null,""],"remove an episode from your watchlist after it is downloaded.":[null,""],"Remove series":[null,""],"remove the whole series from your watchlist after any download.":[null,""],"Remove watched show":[null,""],"remove the show from sickrage if it's ended and completely watched":[null,""],"Start paused":[null,""],"shows grabbed from your trakt watchlist start paused.":[null,""],"Trakt blackList name":[null,""],"name (slug) of list on Trakt for blacklisting show on 'Add Trending Show' & 'Add Recommended Shows' pages":[null,""],"Email":[null,"Sähköposti"],"Allows configuration of email notifications on a per show basis.":[null,""],"send email notifications?":[null,""],"SMTP host":[null,"SMTP-palvelin"],"hostname of your SMTP email server.":[null,""],"SMTP port":[null,"SMTP-portti"],"port number used to connect to your SMTP host.":[null,""],"SMTP from":[null,""],"sender email address, some hosts require a real address.":[null,""],"Use TLS":[null,"Käytä TLS"],"check to use TLS encryption.":[null,"valitse käyttääksesi TLS-salausta."],"SMTP user":[null,"SMTP-käyttäjä"],"(optional) your SMTP server username.":[null,"(valinnainen) SMTP-palvelimen käyttäjätunnuksesi."],"SMTP password":[null,"SMTP-salasana"],"(optional) your SMTP server password.":[null,"(valinnainen) SMTP-palvelimen salasana."],"Global email list":[null,""],"email addresses listed here, separated by commas if applicable, will<br> receive notifications for <b>all</b> shows.":[null,""],"(This field may be blank except when testing.)":[null,""],"Email Subject":[null,"Sähköpostin aihe"],"use a custom subject for some privacy protection?":[null,""],"(leave blank for the default SickRage subject)":[null,""],"configure per-show notifications here by entering email address(es), separated by commas,":[null,""],"after selecting a show in the drop-down box. Be sure to activate the 'Save for this show'":[null,""],"button below after each entry.":[null,""],"Slack":[null,""],"Slack brings all your communication together in one place. It's real-time messaging, archiving and search for modern teams.":[null,""],"should SickRage post messages on Slack?":[null,""],"Slack Incoming Webhook":[null,""],"Discord":[null,""],"All-in-one voice and text chat for gamers that's free, secure, and works on both your desktop and phone.":[null,""],"Should SickRage post messages on Discord?":[null,""],"Discord Incoming Webhook":[null,""],"Create webhook under channel settings.":[null,""],"Discord Bot Name":[null,""],"Blank will use webhook default Name.":[null,""],"Discord Avatar URL":[null,""],"Blank will use webhook default Avatar.":[null,""],"Discord TTS":[null,""],"Send notifications using text-to-speech":[null,""],"Post-Processing":[null,"Jälkikäsittely"],"Episode Naming":[null,""],"Metadata":[null,"Metatiedot"],"Settings that dictate how SickRage should process completed downloads.":[null,""],"enable the automatic post processor to scan and process any files in your Post Processing Dir":[null,""],"do not use if you use an external Post Processing script":[null,""],"Post Processing Dir":[null,""],"the folder where your download client puts the completed TV downloads.":[null,""],"please use seperate downloading and completed folders in your download client if possible.":[null,""],"Processing Method":[null,""],"what method should be used to put files into the library?":[null,""],"if you keep seeding torrents after they finish, please avoid the 'move' processing method to prevent errors.":[null,""],"Auto Post-Processing Frequency":[null,""],"time in minutes to check for new files to auto post-process (min 10)":[null,""],"Postpone post processing":[null,""],"wait to process a folder if sync files are present.":[null,""],"Sync File Extensions":[null,""],"comma seperated list of extensions or filename globs SickRage ignores when Post Processing":[null,"pilkuilla erotettu luettelo tiedostopäätteistä tai tiedostomaskeista, jotka SickRage ohittaa jälkikäsittelyn aikana"],"Rename Episodes":[null,""],"rename episode using the Episode Naming settings?":[null,""],"Create missing show directories":[null,""],"create missing show directories when they get deleted":[null,""],"Add shows without directory":[null,""],"add shows without creating a directory (not recommended)":[null,""],"Move associated files":[null,""],"move associated (srt/srr/sfv/etc) files while post processing?":[null,""],"Rename .nfo file":[null,""],"rename the original .nfo file to .nfo-orig to avoid conflicts?":[null,""],"Associated file extensions":[null,""],"comma separated list of associated file extensions SickRage should keep while post processing.":[null,""],"leaving it empty means no associated files will be post processed":[null,""],"Delete non associated files":[null,""],"delete non associated files while post processing?":[null,""],"Change File Date":[null,""],"set last modified filedate to the date that the episode aired?":[null,""],"some systems may ignore this feature.":[null,""],"Timezone for File Date":[null,""],"local":[null,""],"network":[null,""],"what timezone should be used to change File Date?":[null,""],"Unpack":[null,""],"What to do with archived releases found in your <i>TV Download Dir</i>?":[null,""],"Ignore (do not process contents)":[null,""],"Unpack (process contents)":[null,""],"Treat as video (process archive as-is)":[null,""],"'Unpack' only works with RAR archives":[null,""],"Windows":[null,""],"WinRar is required on windows":[null,""],"Unpack Directory":[null,""],"Choose a path to unpack files, leave blank to unpack in download dir":[null,""],"Unrar Location":[null,""],"add the path to unrar if it is not in the system path":[null,""],"Alternate Unrar Tool":[null,""],"add the path to an alternate unrar tool if it is not in the system path":[null,""],"Delete RAR contents":[null,""],"delete content of RAR files, even if Process Method not set to move?":[null,""],"only working with RAR archive":[null,""],"Don't delete empty folders":[null,""],"leave empty folders when Post Processing?":[null,""],"can be overridden using manual Post Processing":[null,""],"Follow symbolic-links":[null,""],"follow down symbolic links in download directory?":[null,""],"<b>EXPERTS ONLY.</b><br>Enable only if you know what <b>circular symbolic links</b> are,<br>and can <b>verify that you have none</b>.":[null,""],"Use icacls":[null,""],"Windows only":[null,""],"sets video permissions after using the move method in post processing":[null,""],"Extra Scripts":[null,""],"see":[null,""],"for script arguments description and usage.":[null,""],"How SickRage will name and sort your episodes.":[null,""],"Name Pattern":[null,""],"Toggle Naming Legend":[null,""],"don't forget to add quality pattern. Otherwise after post-processing the episode will have UNKNOWN quality":[null,""],"Meaning":[null,""],"Pattern":[null,""],"Result":[null,""],"Use lower case if you want lower case names (eg. %sn, %e.n, %q_n etc)":[null,""],"Show Name":[null,"Sarjan nimi"],"Show.Name":[null,""],"Show_Name":[null,""],"Season Number":[null,"Kauden numero"],"XEM Season Number":[null,""],"Episode Number":[null,"Jakson numero"],"XEM Episode Number":[null,""],"Episode Name":[null,"Jakson Nimi"],"Episode.Name":[null,"Jakson.Nimi"],"Episode_Name":[null,"Jakson_Nimi"],"Air Date":[null,""],"Post-Processing Date":[null,""],"Quality":[null,"Laatu"],"Scene Quality":[null,"Scene-laatu"],"Release Name":[null,""],"SickRage' is used in place of RLSGROUP if it could not be properly detected":[null,""],"Release Group":[null,""],"If episode is proper/repack add 'proper' to name.":[null,"Jos jakso on proper/repack, lisää \"proper\" nimeen."],"Release Type":[null,""],"Multi-Episode Style":[null,""],"Single-EP Sample":[null,""],"Multi-EP sample":[null,""],"Strip Show Year":[null,""],"remove the TV show's year when renaming the file?":[null,""],"only applies to shows that have year inside parentheses":[null,""],"Custom Air-By-Date":[null,""],"name air-by-date shows differently than regular shows?":[null,""],"Toggle ABD Naming Legend":[null,""],"Regular Air Date":[null,""],"Year":[null,""],"Month":[null,""],"Day":[null,""],"Multi-EP style is ignored":[null,""],"Custom Sports":[null,""],"name sports shows differently than regular shows?":[null,""],"Toggle Sports Naming Legend":[null,""],"Sports Air Date":[null,""],"Custom Anime":[null,""],"name anime shows differently than regular shows?":[null,""],"Toggle Anime Naming Legend":[null,""],">XEM Season Number":[null,""],"Single-EP Anime Sample":[null,""],"Multi-EP Anime sample":[null,""],"Add Absolute Number":[null,""],"add the absolute number to the season/episode format?":[null,""],"only applies to anime. (eg. S15E45 - 310 vs S15E45)":[null,""],"Only Absolute Number":[null,""],"replace season/episode format with absolute number":[null,""],"only applies to anime.":[null,""],"No Absolute Number":[null,""],"don't include the absolute number":[null,""],"The data associated to the data. These are files associated to a TV show in the form of images and text that, when supported, will enhance the viewing experience.":[null,""],"Metadata Type":[null,"Metatietojen tyyppi"],"toggle metadata options that you wish to be created":[null,""],"multiple targets may be used":[null,""],"Select Metadata":[null,""],"Provider Priorities":[null,""],"Provider Options":[null,""],"Configure Custom Newznab Providers":[null,""],"Configure Custom Torrent Providers":[null,""],"Check off and drag the providers into the order you want them to be used.":[null,""],"At least one provider is required but two are recommended.":[null,""],"Torrent providers can be toggled in ":[null,""],"Provider does not support backlog searches at this time.":[null,"Tarjoaja ei tue rästissä olevien hakua tällä hetkellä."],"Provider is <b>NOT WORKING</b>.":[null,""],"Configure individual provider settings here.":[null,""],"Check with provider's website on how to obtain an API key if needed.":[null,""],"Configure provider":[null,""],"no providers available to configure.":[null,""],"URL":[null,"URL"],"Enable daily searches":[null,""],"enable provider to perform daily searches.":[null,""],"Enable backlog searches":[null,"Ota käyttöön rästissä olevien haku"],"enable provider to perform backlog searches.":[null,""],"Season search mode":[null,""],"when searching for complete seasons you can choose to have it look for season packs only, or choose to have it build a complete season from just single episodes.":[null,""],"season packs only.":[null,""],"episodes only.":[null,""],"Enable fallback":[null,""],"when searching for a complete season depending on search mode you may return no results, this helps by restarting the search using the opposite search mode.":[null,""],"Custom URL":[null,"Mukautettu URL"],"the URL should include the protocol (and port if applicable). Examples: http://192.168.1.4/ or http://localhost:3000/":[null,""],"Api key":[null,"API-avain"],"Digest":[null,""],"Hash":[null,""],"Passkey":[null,""],"Cookies":[null,""],"example: uid=1234;pass=567845439634987<br>note: uid and pass are not your username/password.<br>use DevTools or Firebug to get these values after logging in on your browser.":[null,""],"Pin":[null,"PIN"],"Seed ratio":[null,""],"stop transfer when ratio is reached<br>(-1 SickRage default to seed forever, or leave blank for downloader default)":[null,""],"Minimum seeders":[null,""],"Minimum leechers":[null,""],"Confirmed download":[null,""],"only download torrents from trusted or verified uploaders ?":[null,""],"Ranked torrents":[null,""],"only download ranked torrents (trusted releases)":[null,""],"English torrents":[null,""],"only download english torrents, or torrents containing english subtitles":[null,""],"For Spanish torrents":[null,""],"ONLY search on this provider if show info is defined as \"Spanish\" (avoid provider's use for VOS shows)":[null,""],"Sorting results by":[null,""],"Freeleech":[null,""],"only download <b>\"FreeLeech\"</b> torrents.":[null,""],"Category":[null,""],"select torrent with Italian subtitle":[null,""],"Configure Custom<br>Newznab Providers":[null,""],"Add and setup or remove custom Newznab providers.":[null,""],"Select provider":[null,""],"-- add new provider --":[null,""],"Provider name":[null,""],"Site URL":[null,""],"Newznab search categories":[null,""],"select your Newznab categories on the left, and click the \"update categories\" button to use them for searching.) <b>don't forget to to save the form!":[null,""],"Update Categories":[null,""],"Add":[null,"Lisää"],"Delete":[null,"Poista"],"Add and setup or remove custom RSS providers.":[null,""],"RSS URL":[null,"RSS URL"],"Search element":[null,""],"eg: title":[null,"esim: otsikko"],"Episode Search":[null,""],"NZB Search":[null,""],"Torrent Search":[null,""],"How to manage searching with":[null,""],"Randomize Providers":[null,""],"randomize the provider search order instead of going in order of placement":[null,""],"Download propers":[null,"Lataa Proper-versioita"],"replace original download with \"Proper\" or \"Repack\" if nuked":[null,"Korvaa lataus Proper- tai Repack-versiolla, jos alkuperäinen on \"Nuked\""],"Check propers every":[null,"Tarkista Proper-versioita joka"],"24 hours":[null,"24 tuntia"],"4 hours":[null,"4 tuntia"],"90 mins":[null,"90 minuuttia"],"45 mins":[null,"45 minuuttia"],"15 mins":[null,"15 minuuttia"],"Backlog search day(s)":[null,"Rästitöiden haku (päiviä)"],"number of day(s) that the \"Forced Backlog Search\" will cover (e.g. 7 Days)":[null,"päivien lukumäärä, jonka \"Pakota rästityöt\" haku kattaa (esim. 7 päivää)"],"Backlog search frequency":[null,"Rästitöiden hakujen aikaväli"],"time in minutes between searches (min.":[null,"aikaväli hakujen välillä (minuuttia)"],"Daily search frequency":[null,""],"Usenet retention":[null,""],"age limit in days for usenet articles to be used (e.g. 500)":[null,""],"Ignore words":[null,"Jätä huomiotta sanat"],"results with one or more word from this list will be ignored<br>separate words with a comma, e.g. \"word1,word2,word3\"":[null,""],"Require words":[null,""],"results with no word from this list will be ignored<br>separate words with a comma, e.g. \"word1,word2,word3\"":[null,""],"Trackers list":[null,""],"trackers that will be added to magnets without trackers<br>separate trackers with a comma, e.g. \"tracker1,tracker2,tracker3\"":[null,""],"Ignore language names in subbed results":[null,"Jätä huomiotta kielten nimet tekstitetyistä tuloksista"],"ignore subbed releases based on language names <br>\n Example: \"dk\" will ignore words: dksub, dksubs, dksubbed, dksubed <br>\n separate languages with a comma, e.g. \"lang1,lang2,lang3":[null,""],"Allow high priority":[null,"Salli korkea prioriteetti"],"set downloads of recently aired episodes to high priority":[null,""],"Use Failed Downloads":[null,""],"use Failed Download Handling?":[null,""],"will only work with snatched/downloaded episodes after enabling this":[null,""],"Delete Failed":[null,""],"delete files left over from a failed download?":[null,""],"this only works if Use Failed Downloads is enabled.":[null,""],"How to handle NZB search results.":[null,""],"Search NZBs":[null,""],"enable NZB search providers":[null,""],"Send .nzb files to":[null,""],"SABnzbd server URL":[null,""],"URL to your SABnzbd server (e.g. http://localhost:8080/)":[null,"SABnzbd-palvelimen URL (esim. http://localhost:8080/)"],"SABnzbd username":[null,""],"(blank for none)":[null,""],"SABnzbd password":[null,""],"SABnzbd API key":[null,"SABnzbd API-avain"],"locate at... SABnzbd Config -> General -> API Key":[null,""],"Use SABnzbd category":[null,""],"add downloads to this category (e.g. TV)":[null,""],"Use SABnzbd category (backlog episodes)":[null,""],"add downloads of old episodes to this category (e.g. TV)":[null,""],"Use SABnzbd category for anime":[null,""],"add anime downloads to this category (e.g. anime)":[null,""],"Use SABnzbd category for anime (backlog episodes)":[null,""],"add anime downloads of old episodes to this category (e.g. anime)":[null,""],"Use forced priority":[null,""],"enable to change priority from HIGH to FORCED":[null,""],"Black hole folder location":[null,""],"<b>.nzb</b> files are stored at this location for external software to find and use":[null,""],"Connect using HTTPS":[null,""],"enable Secure control in NZBGet and set the correct Secure Port here":[null,""],"NZBget host:port":[null,"NZBget isäntä:portti"],"(e.g. localhost:6789)":[null,"(esim. localhost:6789)"],"NZBget RPC host name and port number (not NZBgetweb!)":[null,""],"NZBget username":[null,"NZBget käyttäjätunnus"],"locate in nzbget.conf (default:nzbget)":[null,""],"NZBget password":[null,"NZBget salasana"],"locate in nzbget.conf (default:tegbzn6789)":[null,""],"Use NZBget category":[null,""],"send downloads marked this category (e.g. TV)":[null,""],"Use NZBget category (backlog episodes)":[null,""],"send downloads of old episodes marked this category (e.g. TV)":[null,""],"Use NZBget category for anime":[null,""],"send anime downloads marked this category (e.g. anime)":[null,""],"Use NZBget category for anime (backlog episodes)":[null,""],"send anime downloads of old episodes marked this category (e.g. anime)":[null,""],"NZBget priority":[null,"NZBget prioriteetti"],"Very low":[null,"Hyvin matala"],"Low":[null,"Matala"],"Very high":[null,"Hyvin korkea"],"Force":[null,"Pakota"],"priority for daily snatches (no backlog)":[null,"päivittäisten nappausten prioriteetti (ei rästitöiden)"],"Torrent host:port":[null,""],"URL to your Synology DSM (e.g. http://localhost:5000/)":[null,""],"Client username":[null,""],"Client password":[null,""],"Downloaded files location":[null,""],"where Synology Download Station will save downloaded files (blank for client default)":[null,""],"the destination has to be a shared folder for Synology DS":[null,""],"Click below to test":[null,""],"How to handle Torrent search results.":[null,""],"Search torrents":[null,""],"enable torrent search providers":[null,""],"Send .torrent files to":[null,""],"<b>.torrent</b> files are stored at this location for external software to find and use":[null,""],"URL to your torrent client (e.g. http://localhost:8000/)":[null,"Torrent-ohjelmasi URL (esim. http://localhost:8000/)"],"Torrent RPC URL":[null,""],"the path without leading and trailing slashes (e.g. transmission)":[null,""],"Http Authentication":[null,"Http-todennus"],"Verify certificate":[null,""],"disable if you get \"Deluge: Authentication Error\" in your log":[null,""],"verify SSL certificates for HTTPS requests":[null,""],"Add label to torrent":[null,""],"(blank spaces are not allowed)":[null,"(välilyönnit eivät ole sallittuja)"],"label plugin must be enabled in Deluge clients":[null,""],"for QBitTorrent 3.3.1 and up":[null,""],"Add label to torrent for anime":[null,""],"for QBitTorrent 3.3.1 and up ":[null,""],"where <span id=\"torrent_client\">the torrent client</span> will save downloaded files (blank for client default)":[null,""],"the destination has to be a shared folder for Synology DS</span>":[null,""],"Minimum seeding time":[null,""],"time in hours":[null,""],"(default:'0' passes blank to client and '-1' passes nothing)":[null,""],"Start torrent paused":[null,""],"add .torrent to client but do <b style=\"font-weight:900\">not</b> start downloading":[null,""],"Allow high bandwidth":[null,""],"use high bandwidth allocation if priority is high":[null,""],"Test Connection":[null,"Testaa yhteys"],"Windows Shares":[null,""],"Defines your existing windows shares so that we can add them to the browse dialog":[null,""],"Share #{number}":[null,""],"Share label":[null,""],"Hostname or IP":[null,""],"Share path":[null,""],"Subtitles Search":[null,""],"Subtitles Plugin":[null,""],"Plugin Settings":[null,""],"Settings that dictate how SickRage handles subtitles search results.":[null,""],"Search Subtitles":[null,""],"Subtitle Languages":[null,""],"Subtitle Directory":[null,""],"the directory where SickRage should store your <i>Subtitles</i> files.":[null,""],"leave empty if you want store subtitle in episode path.":[null,""],"Subtitle Find Frequency":[null,""],"time in hours between scans (default: 1)":[null,""],"Include Specials":[null,""],"include the show's specials when searching for subtitles?":[null,""],"Perfect matches":[null,""],"only download subtitles that match: release group, video codec, audio codec and resolution":[null,""],"if disabled you may get out of sync subtitles":[null,""],"Subtitles History":[null,""],"log downloaded Subtitle on History page?":[null,""],"Subtitles Multi-Language":[null,""],"append language codes to subtitle filenames?":[null,""],"this option is required if you use multiple subtitle languages":[null,""],"Delete unwanted subtitles":[null,""],"enable to delete unwanted subtitle languages bundled with release":[null,""],"Embedded Subtitles":[null,""],"ignore subtitles embedded inside video file?":[null,""],"this will ignore <u>all</u> embedded subtitles for every video file!":[null,""],"Hearing Impaired Subtitles":[null,""],"download hearing impaired style subtitles?":[null,""],"See":[null,""],"for a script arguments description.":[null,""],"Additional scripts separated by <b>|</b>.":[null,""],"Scripts are called after each episode has searched and downloaded subtitles.":[null,""],"For any scripted languages, include the interpreter executable before the script. See the following example":[null,""],"For Windows:":[null,""],"For Linux / OS X:":[null,""],"Subtitle Providers":[null,""],"Check off and drag the plugins into the order you want them to be used.":[null,""],"At least one plugin is required.":[null,""]," Web-scraping plugin":[null,""],"Provider Settings":[null,""],"Set user and password for each provider":[null,""],"User Name":[null,"Käyttäjänimi"],"Change Show":[null,"Vaihda sarjaa"],"Prev Show":[null,"Edellinen sarja"],"Next Show":[null,"Seuraava sarja"],"Jump to Season":[null,"Hyppää kauteen"],"Specials":[null,""],"Poster for":[null,""],"Stars":[null,""],"minutes":[null,"minuuttia"],"View other popular {genre} shows on trakt.tv.":[null,""],"View other popular {imdbgenre} shows on IMDB.":[null,""],"Allowed":[null,"Sallittu"],"Preferred":[null,"Ensisijainen"],"Originally Airs":[null,""],"Show Status":[null,"Sarjan tila"],"Default EP Status":[null,"Jakson oletustila"],"Location":[null,"Sijainti"],"Missing":[null,"Puuttuu"],"Scene Name":[null,"Scene-nimi"],"Required Words":[null,""],"Ignored Words":[null,"Jätä huomiotta -sanat"],"Size":[null,"Koko"],"Info Language":[null,""],"Subtitles SR Metadata":[null,""],"Season Folders":[null,""],"Paused":[null,"Keskeytetty"],"Air-by-Date":[null,""],"Sports":[null,""],"DVD Order":[null,"DVD-järjestys"],"Scene Numbering":[null,"Scene-numerointi"],"Select Filtered Episodes":[null,""],"Clear All":[null,""],"Change selected episodes to":[null,""],"Select Columns":[null,"Valitse sarakkeet"],"NFO":[null,"NFO"],"TBN":[null,"TBN"],"Episode":[null,"Jakso"],"Absolute":[null,""],"Scene":[null,"Scene"],"Scene Absolute":[null,""],"File Name":[null,"Tiedostonimi"],"Airdate":[null,"Lähetysaika"],"Download":[null,""],"Change the value here if scene numbering differs from the indexer episode numbering":[null,""],"Change the value here if scene absolute numbering differs from the indexer absolute numbering":[null,""],"Manual Search":[null,""],"Do you want to mark this episode as failed?":[null,"Haluatko merkitä tämän jakson epäonnistuneeksi?"],"The episode release name will be added to the failed history, preventing it to be downloaded again.":[null,""],"Do you want to include the current episode quality in the search?":[null,"Haluatko sisällyttää nykyisen jakson laadun hakuun?"],"Choosing No will ignore any releases with the same episode quality as the one currently downloaded/snatched.":[null,""],"Download subtitle":[null,""],"Do you want to re-download the subtitle for this language?":[null,""],"It will overwrite your current subtitle":[null,""],"Format":[null,""],"Advanced":[null,""],"Main Settings":[null,""],"Show Location":[null,"Sarjan sijainti"],"Preferred Quality":[null,"Ensisijainen laatu"],"Default Episode Status":[null,"Jakson oletustila"],"this will set the status for future episodes.":[null,""],"this only applies to episode filenames and the contents of metadata files.":[null,""],"search for subtitles":[null,""],"Use SR Metdata":[null,""],"use SickRage metadata when searching for subtitle, this will override the autodiscovered metadata":[null,""],"pause this show (SickRage will not download episodes)":[null,""],"Format Settings":[null,""],"Air by date":[null,""],"check if the show is released as Show.03.02.2010 rather than Show.S02E03.":[null,""],"in case of an air date conflict between regular and special episodes, the later will be ignored.":[null,""],"check if the show is Anime and episodes are released as Show.265 rather than Show.S02E03":[null,""],"check if the show is a sporting or MMA event released as Show.03.02.2010 rather than Show.S02E03":[null,""],"Season folders":[null,""],"group episodes by season folder (uncheck to store in a single folder)":[null,""],"search by scene numbering (uncheck to search by indexer numbering)":[null,""],"use the DVD order instead of the air order":[null,"käytä DVD-järjestystä lähetysjärjestyksen sijaan"],"a \"Force Full Update\" is necessary, and if you have existing episodes you need to sort them manually.":[null,""],"comma-separated <i>e.g. \"word1,word2,word3</i>\"":[null,""],"search results with one or more words from this list will be ignored.":[null,""],"e.g. \"word1,word2,word3\"":[null,""],"search results with no words from this list will be ignored.":[null,""],"Scene Exception":[null,"Scene-poikkeus"],"this will affect episode search on NZB and torrent providers.":[null,""],"this list appends to the original show name.":[null,""],"WARNING logs":[null,""],"ERROR logs":[null,""],"There are no events to display.":[null,""],"Limit":[null,"Rajoita"],"Layout":[null,"Asettelu"],"HistoryLayout":[null,""],"Compact":[null,"Kompakti"],"Detailed":[null,"Yksityiskohtainen"],"Time":[null,"Aika"],"Provider":[null,"Tarjoaja"],"Missing Provider":[null,""],"missing provider":[null,""],"Directory":[null,""],"Show Name (tvshow.nfo)":[null,""],"Indexer":[null,""],"Enter the folder containing the episode":[null,""],"Process Method to be used":[null,""],"Copy":[null,"Kopioi"],"Move":[null,"Siirrä"],"Hard Link":[null,""],"Symbolic Link":[null,""],"Symbolic Link Reversed":[null,""],"Force already Post Processed Dir/Files":[null,""],"Mark Dir/Files as priority download":[null,""],"(Check it to replace the file even if it exists at higher quality)":[null,"(Valitse korvataksesi tiedoston, vaikka se olisi jo olemassa korkeammalla laadulla)"],"Delete files and folders":[null,""],"(Check it to delete files and folders like auto processing)":[null,""],"Don't use processing queue":[null,""],"(If checked this will return the result of the process here, but may be slow!)":[null,""],"Mark download as failed":[null,""],"Process":[null,""],"Download subtitles for this show?":[null,"Ladataanko tekstityksiä tähän sarjaan?"],"use SickRage metadata when searching for subtitle, <br />this will override the autodiscovered metadata":[null,""],"Status for previously aired episodes":[null,""],"Status for all future episodes":[null,""],"Group episodes by season folder?":[null,""],"Is this show an Anime?":[null,"Onko tämä sarja Animea?"],"Is this show scene numbered?":[null,"Käyttääkö tämä sarja scene-numerointia?"],"Save Defaults":[null,""],"Use current values as the defaults":[null,""],"<p>Select your preferred fansub groups from the <b>Available Groups</b> and add them to the <b>Whitelist</b>. Add groups to the <b>Blacklist</b> to ignore them.</p>\n <p>The <b>Whitelist</b> is checked <i>before</i> the <b>Blacklist</b>.</p>\n <p>Groups are shown as <b>Name</b> | <b>Rating</b> | <b>Number of subbed episodes</b>.</p>\n <p>You may also add any fansub group not listed to either list manually.</p>\n <p>When doing this please note that you can only use groups listed on anidb for this anime.\n <br>If a group is not listed on anidb but subbed this anime, please correct anidb's data.</p>":[null,""],"Whitelist":[null,""],"Available Groups":[null,""],"Add to Whitelist":[null,""],"Add to Blacklist":[null,"Lisää mustalle listalle"],"Blacklist":[null,"Musta lista"],"Custom Group":[null,""],"Allowed Quality:":[null,"Sallittu laatu:"],"Preferred Quality:":[null,"Ensisijainen laatu:"],"Filter Show Name":[null,""],"Root":[null,""],"All":[null,"Kaikki"],"Clear Filter(s)":[null,""],"Poster":[null,"Juliste"],"Small Poster":[null,""],"Banner":[null,"Banneri"],"Simple":[null,"Yksinkertainen"],"Next Episode":[null,"Seuraava jakso"],"Progress":[null,""],"Direction":[null,""],"Ascending":[null,"Nouseva"],"Descending":[null,"Laskeva"],"Poster Size":[null,""],"Continuing":[null,"Jatkuu"],"Ended":[null,"Päättynyt"],"Total":[null,"Yhteensä"],"Invalid date":[null,"Virheellinen päivämäärä"],"No Network":[null,""],"Next Ep":[null,"Seuraava jakso"],"Prev Ep":[null,"Edellinen jakso"],"Show":[null,"Näytä"],"Downloads":[null,""],"Active":[null,"Aktiivisena"],"loading":[null,""],"<p><b><u>Preferred</u></b> qualities will replace those in <b><u>allowed</u></b>, even if they are lower.</p>":[null,"<p><b><u>Ensisijaiset</u></b> laadut korvaavat <b><u>sallitut</u></b>, vaikka ne olisivat matalampia.</p>"],"New":[null,"Uusi"],"Set as Default":[null,"Aseta oletukseksi"],"Remember me":[null,"Muista minut"],"Edit Selected":[null,"Muokkaa valittuja"],"Subtitle":[null,"Tekstitys"],"Default Ep Status":[null,"Jakson oletustila"],"Update":[null,"Päivitä"],"Rescan":[null,""],"Rename":[null,"Nimeä uudelleen"],"Search Subtitle":[null,""],"Force Metadata Regen":[null,""],"Snatched (Allowed)":[null,"Napattu (sallittu)"],"Jump to Show":[null,"Hyppää sarjaan"],"Force Backlog":[null,"Pakota rästityöt"],"Manage episodes with status":[null,"Hallitse jaksoja, joiden tila on"],"Manage":[null,"Hallitse"],"None of your episodes have status":[null,""],"Shows containing":[null,""],"episodes":[null,""],"Set checked shows/episodes to":[null,"Aseta valitut sarjat"],"Go":[null,""],"Select all":[null,"Valitse kaikki"],"Clear all":[null,"Tyhjennä kaikki"],"Release":[null,""],"Backlog Search":[null,"Rästitöiden haku"],"Not in progress":[null,""],"In Progress":[null,"Käynnissä"],"Daily Search":[null,"Päivittäinen haku"],"Find Propers Search":[null,""],"Propers search disabled":[null,"Proper-versioiden haku on pois käytöstä"],"Subtitle Search":[null,""],"Subtitle search disabled":[null,""],"Search Queue":[null,""],"pending items":[null,""],"Daily":[null,"Päivittäinen"],"Manual":[null,"Manuaalinen"],"Changing any settings marked with (<span class=\"separator\">*</span>) will force a refresh of the selected shows.":[null,""],"Selected Shows":[null,"Valitut sarjat"],"Root Directories":[null,""],"Current":[null,"Nykyinen"],"Keep":[null,""],"Custom":[null,""],"Group episodes by season folder (set to \"No\" to store in a single folder).":[null,""],"Pause these shows (SickRage will not download episodes).":[null,""],"This will set the status for future episodes.":[null,""],"Search by scene numbering (set to \"No\" to search by indexer numbering).":[null,""],"Set if these shows are Anime and episodes are released as Show.265 rather than Show.S02E03":[null,""],"Set if these shows are sporting or MMA events released as Show.03.02.2010 rather than Show.S02E03.":[null,""],"In case of an air date conflict between regular and special episodes, the later will be ignored.":[null,""],"Set if these shows are released as Show.03.02.2010 rather than Show.S02E03.":[null,""],"Search for subtitles.":[null,"Hae tekstityksiä."],"All of your episodes have {subsLanguage} subtitles.":[null,""],"Manage episodes without":[null,"Hallitse jaksoja ilman"],"Episodes without {subsLanguage} subtitles.":[null,""],"Episodes without {subtitleLanguage} (undefined) subtitles.":[null,""],"Download missed subtitles for selected episodes":[null,""],"Performing Restart":[null,""],"Waiting for SickRage to shut down":[null,""],"Waiting for SickRage to start again":[null,""],"Loading the default page":[null,""],"Error: The restart has timed out, perhaps something prevented SickRage from starting again?":[null,""],"Key":[null,""],"Missed":[null,""],"Today":[null,"Tänään"],"Soon":[null,"Pian"],"Later":[null,"Myöhemmin"],"Subscribe":[null,"Tilaa"],"Date":[null,""],"View Paused":[null,""],"Hidden":[null,""],"Shown":[null,""],"Calendar":[null,"Kalenteri"],"List":[null,"Lista"],"Ends":[null,"Päättyy"],"Next Ep Name":[null,"Seuraavan jakson nimi"],"Run time":[null,"Kesto"],"Indexers":[null,""],"No shows for this day":[null,""],"Airs":[null,""],"Plot":[null,"Juoni"],"Show Update":[null,""],"Version Check":[null,"Versiotarkistus"],"Proper Finder":[null,""],"Post Process":[null,""],"Subtitles Finder":[null,""],"Scheduler":[null,""],"Alive":[null,""],"Start Time":[null,"Alkamisaika"],"Cycle Time":[null,""],"Next Run":[null,""],"Last Run":[null,""],"Silent":[null,""],"True":[null,""],"N/A":[null,"N/A"],"Show id":[null,""],"Show name":[null,""],"Priority":[null,"Prioriteetti"],"Added":[null,"Lisätty"],"Queue type":[null,"Jonon tyyppi"],"LOW":[null,"MATALA"],"NORMAL":[null,"NORMAALI"],"HIGH":[null,"KORKEA"],"Disk Space":[null,"Levytila"],"Free space":[null,"Vapaa tila"],"TV Download Directory":[null,""],"Media Root Directories":[null,""],"Preview of the proposed name changes":[null,"Esikatsele ehdotettua nimenmuutosta"],"All Seasons":[null,"Kaikki kaudet"],"select all":[null,""],"Rename Selected":[null,"Uudelleennimeä valittu"],"Cancel Rename":[null,"Peruuta uudelleennimeäminen"],"Old Location":[null,"Vanha sijainti"],"New Location":[null,"Uusi sijainti"],"Trakt API did not return any results, please check your config.":[null,""],"votes":[null,""],"Remove Show":[null,"Poista sarja"],"Level":[null,""],"Filter":[null,""],"All non-absolute folder locations are relative to ":[null,""],"Manual Post-Processing":[null,"Manuaalinen jälkikäsittely"],"Episode Status Management":[null,"Jaksojen tilan hallinta"],"Update PLEX":[null,"Päivitä PLEX"],"Update KODI":[null,"Päivitä KODI"],"Update Emby":[null,"Päivitä Emby"],"Manage Torrents":[null,"Hallitse torrenteja"],"Missed Subtitle Management":[null,""],"Help & Info":[null,"Ohje & Tietoja"],"Backup & Restore":[null,"Varmuuskopiointi & Palautus"],"Tools":[null,"Työkalut"],"Support SickRage":[null,"Tue SickRagea"],"View Errors":[null,"Näytä virheet"],"View Warnings":[null,"Näytä varoitukset"],"View Log":[null,"Näytä loki"],"Check For Updates":[null,"Tarkista päivitykset"],"Restart":[null,"Käynnistä uudelleen"],"Shutdown":[null,"Sammuta"],"Logout":[null,"Kirjaudu ulos"],"Server Status":[null,"Palvelimen tila"],"View overview of snatched episodes":[null,"Näytä yhteenveto napatuista jaksoista"],"Episodes Downloaded":[null,"Jaksoja ladattu"],"Memory used":[null,"Muistia käytetty"],"Load time":[null,"Latausaika"],"Branch":[null,"Haara"],"Now":[null,"Nyt"]}}}} \ No newline at end of file diff --git a/locale/fi_FI/LC_MESSAGES/messages.mo b/locale/fi_FI/LC_MESSAGES/messages.mo index a10d606683f17de7486597208416453e5c7bc779..d005b2b7017216d57a50c769186080f9706bb6de 100644 Binary files a/locale/fi_FI/LC_MESSAGES/messages.mo and b/locale/fi_FI/LC_MESSAGES/messages.mo differ diff --git a/locale/fi_FI/LC_MESSAGES/messages.po b/locale/fi_FI/LC_MESSAGES/messages.po index eff8e50f7d4dc3278d9d025dc87ad060243b4fea..c91144c616e1730d49e25e4c105189b32ebc3e96 100644 --- a/locale/fi_FI/LC_MESSAGES/messages.po +++ b/locale/fi_FI/LC_MESSAGES/messages.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: sickrage\n" "Report-Msgid-Bugs-To: miigotu@gmail.com\n" -"POT-Creation-Date: 2017-03-25 09:28-0700\n" -"PO-Revision-Date: 2017-03-25 12:29-0400\n" +"POT-Creation-Date: 2017-03-28 09:10-0700\n" +"PO-Revision-Date: 2017-03-28 12:11-0400\n" "Last-Translator: miigotu <miigotu@gmail.com>\n" "Language-Team: Finnish\n" "MIME-Version: 1.0\n" @@ -90,7 +90,7 @@ msgid "Biography" msgstr "Elämäkerta" #: gui/slick/views/config_general.mako:78 gui/slick/views/layouts/main.mako:145 -#: sickbeard/__init__.py:79 sickbeard/webserve.py:3807 +#: sickbeard/__init__.py:79 sickbeard/webserve.py:3778 msgid "History" msgstr "Historia" @@ -103,7 +103,7 @@ msgid "Western" msgstr "Western" #: gui/slick/views/config_general.mako:79 gui/slick/views/layouts/main.mako:221 -#: sickbeard/__init__.py:80 sickbeard/webserve.py:2385 +#: sickbeard/__init__.py:80 sickbeard/webserve.py:2384 msgid "News" msgstr "Uutiset" @@ -238,6 +238,34 @@ msgstr "Sivuutettu" msgid "Subtitled" msgstr "Tekstitetty" +#: sickbeard/helpers.py:1887 +msgid "For best results please set the Download Station alias as" +msgstr "" + +#: sickbeard/helpers.py:1888 +msgid "You can check this setting in the Synology DSM" +msgstr "" + +#: sickbeard/helpers.py:1888 sickbeard/helpers.py:1890 +msgid "Control Panel" +msgstr "Ohjauspaneli" + +#: sickbeard/helpers.py:1888 +msgid "Application Portal" +msgstr "" + +#: sickbeard/helpers.py:1889 +msgid "Make sure you allow DSM to be embedded with iFrames too in" +msgstr "" + +#: sickbeard/helpers.py:1890 +msgid "DSM Settings" +msgstr "DSM-asetukset" + +#: sickbeard/helpers.py:1890 +msgid "Security" +msgstr "Turvallisuus" + #: sickbeard/logger.py:474 msgid "<No Filter>" msgstr "" @@ -308,15 +336,15 @@ msgstr "" msgid "Event" msgstr "" -#: sickbeard/logger.py:491 sickbeard/webserve.py:1339 sickbeard/webserve.py:1342 -#: sickbeard/webserve.py:1520 sickbeard/webserve.py:1529 sickbeard/webserve.py:1717 -#: sickbeard/webserve.py:1728 sickbeard/webserve.py:1751 sickbeard/webserve.py:1764 -#: sickbeard/webserve.py:1769 sickbeard/webserve.py:1785 sickbeard/webserve.py:1790 -#: sickbeard/webserve.py:1854 sickbeard/webserve.py:1857 sickbeard/webserve.py:1863 -#: sickbeard/webserve.py:1866 sickbeard/webserve.py:1873 sickbeard/webserve.py:1876 -#: sickbeard/webserve.py:1899 sickbeard/webserve.py:1997 sickbeard/webserve.py:2002 -#: sickbeard/webserve.py:2007 sickbeard/webserve.py:2036 sickbeard/webserve.py:2040 -#: sickbeard/webserve.py:2045 +#: sickbeard/logger.py:491 sickbeard/webserve.py:1338 sickbeard/webserve.py:1341 +#: sickbeard/webserve.py:1519 sickbeard/webserve.py:1528 sickbeard/webserve.py:1716 +#: sickbeard/webserve.py:1727 sickbeard/webserve.py:1750 sickbeard/webserve.py:1763 +#: sickbeard/webserve.py:1768 sickbeard/webserve.py:1784 sickbeard/webserve.py:1789 +#: sickbeard/webserve.py:1853 sickbeard/webserve.py:1856 sickbeard/webserve.py:1862 +#: sickbeard/webserve.py:1865 sickbeard/webserve.py:1872 sickbeard/webserve.py:1875 +#: sickbeard/webserve.py:1898 sickbeard/webserve.py:1996 sickbeard/webserve.py:2001 +#: sickbeard/webserve.py:2006 sickbeard/webserve.py:2035 sickbeard/webserve.py:2039 +#: sickbeard/webserve.py:2044 msgid "Error" msgstr "Virhe" @@ -333,6 +361,7 @@ msgstr "" msgid "Main" msgstr "" +#: gui/slick/js/ajaxEpSearch.js:146 gui/slick/js/ajaxEpSearch.js:147 #: gui/slick/views/inc_home_showList.mako:27 sickbeard/show_queue.py:298 msgid "Loading" msgstr "" @@ -372,867 +401,835 @@ msgstr "" msgid "No update needed" msgstr "Päivitystä ei tarvita" -#: sickbeard/webserve.py:170 +#: sickbeard/webserve.py:171 msgid "Mako Error" msgstr "Mako virhe" -#: sickbeard/webserve.py:195 +#: sickbeard/webserve.py:196 msgid "Oops" msgstr "Hups" -#: sickbeard/webserve.py:197 +#: sickbeard/webserve.py:198 msgid "Wrong API key used" msgstr "Virheellinen API-avain kätetty" -#: gui/slick/views/login.mako:34 sickbeard/webserve.py:302 +#: gui/slick/views/login.mako:34 sickbeard/webserve.py:303 msgid "Login" msgstr "Kirjaudu" -#: sickbeard/webserve.py:406 +#: sickbeard/webserve.py:392 msgid "API Key not generated" msgstr "API-avainta ei luotu" -#: sickbeard/webserve.py:409 +#: sickbeard/webserve.py:395 msgid "API Builder" msgstr "API-kääntäjä" #: gui/slick/views/config_general.mako:77 gui/slick/views/layouts/main.mako:141 -#: sickbeard/webserve.py:512 +#: sickbeard/webserve.py:498 msgid "Schedule" msgstr "Aikataulu" -#: sickbeard/webserve.py:610 +#: sickbeard/webserve.py:609 msgid "Test 1" msgstr "Testi 1" -#: sickbeard/webserve.py:610 +#: sickbeard/webserve.py:609 msgid "This is test number 1" msgstr "Tämä on testi numero 1" -#: sickbeard/webserve.py:611 +#: sickbeard/webserve.py:610 msgid "Test 2" msgstr "Testi 2" -#: sickbeard/webserve.py:611 +#: sickbeard/webserve.py:610 msgid "This is test number 2" msgstr "Tämä on testi numero 2" -#: sickbeard/webserve.py:634 +#: sickbeard/webserve.py:633 msgid "You're using the {branch} branch. Please use 'master' unless specifically asked" msgstr "Käytät {branch}-haaraa. Käytä \"master\"-haaraa, ellei erikseen pyydetä" -#: sickbeard/webserve.py:698 sickbeard/webserve.py:703 +#: sickbeard/webserve.py:697 sickbeard/webserve.py:702 msgid "Invalid show parameters" msgstr "Virheelliset sarjan parametrit" -#: sickbeard/webserve.py:710 +#: sickbeard/webserve.py:709 msgid "Invalid parameters" msgstr "" -#: sickbeard/webserve.py:713 sickbeard/webserve.py:1899 +#: sickbeard/webserve.py:712 sickbeard/webserve.py:1898 msgid "Episode couldn't be retrieved" msgstr "Jaksoa ei voitu hakea" -#: sickbeard/webserve.py:759 sickbeard/webserve.py:1268 sickbeard/webserve.py:1297 +#: sickbeard/webserve.py:758 sickbeard/webserve.py:1267 sickbeard/webserve.py:1296 msgid "Home" msgstr "Koti" -#: gui/slick/views/layouts/main.mako:127 sickbeard/webserve.py:759 +#: gui/slick/views/layouts/main.mako:127 sickbeard/webserve.py:758 msgid "Show List" msgstr "Näytä lista" -#: sickbeard/webserve.py:807 +#: sickbeard/webserve.py:806 msgid "Error: Unsupported Request. Send jsonp request with 'callback' variable in the query string." msgstr "Virhe: Pyyntöä ei tueta. Lähetä jsonp-pyyntö laittamalla \"callback\" muuttuja kysymysriville." -#: sickbeard/webserve.py:851 +#: sickbeard/webserve.py:850 msgid "Success. Connected and authenticated" msgstr "Onnitui. Yhdistetty ja todennettu" -#: sickbeard/webserve.py:853 +#: sickbeard/webserve.py:852 msgid "Authentication failed. SABnzbd expects" msgstr "Todennus epäonnistui. SABnzbd odottaa" -#: sickbeard/webserve.py:853 +#: sickbeard/webserve.py:852 msgid "as authentication method" msgstr "todennustapana" -#: sickbeard/webserve.py:855 +#: sickbeard/webserve.py:854 msgid "Unable to connect to host" msgstr "Yhteyttä ei voitu muodostaa isäntäpalvelimeen" -#: sickbeard/webserve.py:876 +#: sickbeard/webserve.py:875 msgid "SMS sent successfully" msgstr "Viestin lähetys onnistui" -#: sickbeard/webserve.py:878 +#: sickbeard/webserve.py:877 msgid "Problem sending SMS: {message}" msgstr "Ongelma lähetettäessä viestiä: {message}" -#: sickbeard/webserve.py:885 +#: sickbeard/webserve.py:884 msgid "Telegram notification succeeded. Check your Telegram clients to make sure it worked" msgstr "Telegram-ilmoitus onnistui. Tarkista Telegrammisi varmistaaksesi toiminnan" -#: sickbeard/webserve.py:887 +#: sickbeard/webserve.py:886 msgid "Error sending Telegram notification: {message}" msgstr "Virhe lähetettäessä Telegram-ilmoitusta: {message}" -#: sickbeard/webserve.py:894 +#: sickbeard/webserve.py:893 msgid "join notification succeeded. Check your join clients to make sure it worked" msgstr "" -#: sickbeard/webserve.py:896 +#: sickbeard/webserve.py:895 msgid "Error sending join notification: {message}" msgstr "" -#: sickbeard/webserve.py:906 +#: sickbeard/webserve.py:905 msgid " with password" msgstr " salasanalla" -#: sickbeard/webserve.py:908 +#: sickbeard/webserve.py:907 msgid "Registered and Tested growl successfully {growl_host}" msgstr "Growl rekisteröity ja testattu onnistuneesti {growl_host}" -#: sickbeard/webserve.py:910 +#: sickbeard/webserve.py:909 msgid "Registration and Testing of growl failed {growl_host}" msgstr "Growlin rekisteröinti ja testaus epäonnistui {growl_host}" -#: sickbeard/webserve.py:917 +#: sickbeard/webserve.py:916 msgid "Test prowl notice sent successfully" msgstr "Prowl testi-ilmoitus lähetetty onnistuneesti" -#: sickbeard/webserve.py:919 +#: sickbeard/webserve.py:918 msgid "Test prowl notice failed" msgstr "Prowl testi-ilmoituksen lähetys epäonnistui" -#: sickbeard/webserve.py:926 +#: sickbeard/webserve.py:925 msgid "Boxcar2 notification succeeded. Check your Boxcar2 clients to make sure it worked" msgstr "Boxcar2-ilmoitus onnistui. Tarkista Boxcar2 ohjelmasi varmistaaksesi toiminnan" -#: sickbeard/webserve.py:928 +#: sickbeard/webserve.py:927 msgid "Error sending Boxcar2 notification" msgstr "Virhe lähetettäessä Boxcar2-ilmoitusta" -#: sickbeard/webserve.py:935 +#: sickbeard/webserve.py:934 msgid "Pushover notification succeeded. Check your Pushover clients to make sure it worked" msgstr "" -#: sickbeard/webserve.py:937 +#: sickbeard/webserve.py:936 msgid "Error sending Pushover notification" msgstr "Virhe lähetettäessä Pushover-ilmoitusta" -#: sickbeard/webserve.py:949 +#: sickbeard/webserve.py:948 msgid "Key verification successful" msgstr "Avaimen tarkistaminen onnistui" -#: sickbeard/webserve.py:951 +#: sickbeard/webserve.py:950 msgid "Unable to verify key" msgstr "Avaimen tarkistus ei onnistu" -#: sickbeard/webserve.py:958 +#: sickbeard/webserve.py:957 msgid "Tweet successful, check your twitter to make sure it worked" msgstr "Tweettaus onnistui, mutta varmista asia vielä Twitteristä" -#: sickbeard/webserve.py:960 +#: sickbeard/webserve.py:959 msgid "Error sending tweet" msgstr "Virhe tweetiä lähetettäessä" -#: sickbeard/webserve.py:965 +#: sickbeard/webserve.py:964 msgid "Please enter a valid account sid" msgstr "" -#: sickbeard/webserve.py:968 +#: sickbeard/webserve.py:967 msgid "Please enter a valid auth token" msgstr "" -#: sickbeard/webserve.py:971 +#: sickbeard/webserve.py:970 msgid "Please enter a valid phone sid" msgstr "" -#: sickbeard/webserve.py:974 +#: sickbeard/webserve.py:973 msgid "Please format the phone number as \"+1-###-###-####\"" msgstr "" -#: sickbeard/webserve.py:978 +#: sickbeard/webserve.py:977 msgid "Authorization successful and number ownership verified" msgstr "" -#: sickbeard/webserve.py:980 +#: sickbeard/webserve.py:979 msgid "Error sending sms" msgstr "" -#: sickbeard/webserve.py:986 +#: sickbeard/webserve.py:985 msgid "Slack message successful" msgstr "" -#: sickbeard/webserve.py:988 +#: sickbeard/webserve.py:987 msgid "Slack message failed" msgstr "" -#: sickbeard/webserve.py:994 +#: sickbeard/webserve.py:993 msgid "Discord message successful" msgstr "" -#: sickbeard/webserve.py:996 +#: sickbeard/webserve.py:995 msgid "Discord message failed" msgstr "" -#: sickbeard/webserve.py:1006 +#: sickbeard/webserve.py:1005 msgid "Test KODI notice sent successfully to {kodi_host}" msgstr "Testi-ilmoitus lähetetty onnistuneesti KODI:in {kodi_host}" -#: sickbeard/webserve.py:1008 +#: sickbeard/webserve.py:1007 msgid "Test KODI notice failed to {kodi_host}" msgstr "Testi-ilmoituksen lähetys epäonnistui KODI:in {kodi_host}" -#: sickbeard/webserve.py:1023 +#: sickbeard/webserve.py:1022 msgid "Successful test notice sent to Plex Home Theater ... {plex_clients}" msgstr "Testi-ilmoitus lähetetty onnistuneesti Plex Home Theateriin... {plex_clients}" -#: sickbeard/webserve.py:1025 +#: sickbeard/webserve.py:1024 msgid "Test failed for Plex Home Theater ... {plex_clients}" msgstr "Testi-ilmoituksen lähetys epäonnistui Plex Home Theateriin... {plex_clients}" -#: sickbeard/webserve.py:1028 +#: sickbeard/webserve.py:1027 msgid "Tested Plex Home Theater(s)" msgstr "Testatut Plex Home Theaterit" -#: sickbeard/webserve.py:1042 +#: sickbeard/webserve.py:1041 msgid "Successful test of Plex Media Server(s) ... {plex_servers}" msgstr "Testi-ilmoitus lähetetty onnistuneesti Plex Media Serveriin... {plex_servers}" -#: sickbeard/webserve.py:1044 +#: sickbeard/webserve.py:1043 msgid "Test failed, No Plex Media Server host specified" msgstr "Testi epäonnistui. Plex Media Serverin isäntää ei ole määritetty" -#: sickbeard/webserve.py:1046 +#: sickbeard/webserve.py:1045 msgid "Test failed for Plex Media Server(s) ... {plex_servers}" msgstr "Testi-ilmoituksen lähetys epäonnistui Plex Media Serveriin... {plex_servers}" -#: sickbeard/webserve.py:1049 +#: sickbeard/webserve.py:1048 msgid "Tested Plex Media Server host(s)" msgstr "Testattu Plex Media Server isäntä" -#: sickbeard/webserve.py:1057 +#: sickbeard/webserve.py:1056 msgid "Tried sending desktop notification via libnotify" msgstr "Yritetty lähettää työpöytäilmoitus sovelluksella libnotify" -#: sickbeard/webserve.py:1066 +#: sickbeard/webserve.py:1065 msgid "Test notice sent successfully to {emby_host}" msgstr "Testi-ilmoitus lähetetty onnistuneesti {emby_host}" -#: sickbeard/webserve.py:1068 +#: sickbeard/webserve.py:1067 msgid "Test notice failed to {emby_host}" msgstr "Testi-ilmoituksen lähetys epäonnistui {emby_host}" -#: sickbeard/webserve.py:1076 +#: sickbeard/webserve.py:1075 msgid "Successfully started the scan update" msgstr "Skannauspäivitys käynnistetty onnistuneesti" -#: sickbeard/webserve.py:1078 +#: sickbeard/webserve.py:1077 msgid "Test failed to start the scan update" msgstr "Skannauspäivityksen käynnistäminen epäonnistui" -#: sickbeard/webserve.py:1097 +#: sickbeard/webserve.py:1096 msgid "Test notice sent successfully to {nmj2_host}" msgstr "" -#: sickbeard/webserve.py:1099 +#: sickbeard/webserve.py:1098 msgid "Test notice failed to {nmj2_host}" msgstr "" -#: sickbeard/webserve.py:1119 +#: sickbeard/webserve.py:1118 msgid "Trakt Authorized" msgstr "" -#: sickbeard/webserve.py:1120 +#: sickbeard/webserve.py:1119 msgid "Trakt Not Authorized!" msgstr "" -#: sickbeard/webserve.py:1184 +#: sickbeard/webserve.py:1183 msgid "Test email sent successfully! Check inbox." msgstr "" -#: sickbeard/webserve.py:1186 +#: sickbeard/webserve.py:1185 msgid "ERROR: {last_error}" msgstr "VIRHE: {last_error}" -#: sickbeard/webserve.py:1193 +#: sickbeard/webserve.py:1192 msgid "Test NMA notice sent successfully" msgstr "NMA-testi-ilmoitus lähetetty onnistuneesti" -#: sickbeard/webserve.py:1195 +#: sickbeard/webserve.py:1194 msgid "Test NMA notice failed" msgstr "" -#: sickbeard/webserve.py:1202 +#: sickbeard/webserve.py:1201 msgid "Pushalot notification succeeded. Check your Pushalot clients to make sure it worked" msgstr "" -#: sickbeard/webserve.py:1204 +#: sickbeard/webserve.py:1203 msgid "Error sending Pushalot notification" msgstr "Virhe lähetettäessä Pushalot-ilmoitusta" -#: sickbeard/webserve.py:1211 +#: sickbeard/webserve.py:1210 msgid "Pushbullet notification succeeded. Check your device to make sure it worked" msgstr "" -#: sickbeard/webserve.py:1213 sickbeard/webserve.py:1223 sickbeard/webserve.py:1232 +#: sickbeard/webserve.py:1212 sickbeard/webserve.py:1222 sickbeard/webserve.py:1231 msgid "Error sending Pushbullet notification" msgstr "" #: gui/slick/views/displayShow.mako:436 gui/slick/views/inc_home_showList.mako:174 -#: gui/slick/views/manage.mako:49 sickbeard/webserve.py:1249 +#: gui/slick/views/manage.mako:49 sickbeard/webserve.py:1248 msgid "Status" msgstr "Tila" -#: sickbeard/webserve.py:1268 sickbeard/webserve.py:1297 +#: sickbeard/webserve.py:1267 sickbeard/webserve.py:1296 msgid "Restarting SickRage" msgstr "SickRage uudelleenkäynnistyy" -#: sickbeard/webserve.py:1300 +#: sickbeard/webserve.py:1299 msgid "Update Failed" msgstr "Päivitys epäonnistui" -#: sickbeard/webserve.py:1301 +#: sickbeard/webserve.py:1300 msgid "Update wasn't successful, not restarting. Check your log for more information." msgstr "Päivitys ei onnistunut, joten ei uudelleenkäynnistetä. Katso logeista lisätietoja." -#: sickbeard/webserve.py:1308 +#: sickbeard/webserve.py:1307 msgid "Checking out branch" msgstr "" -#: sickbeard/webserve.py:1311 +#: sickbeard/webserve.py:1310 msgid "Already on branch" msgstr "" -#: sickbeard/webserve.py:1339 +#: sickbeard/webserve.py:1338 msgid "Invalid show ID: {show}" msgstr "Virheellinen sarjan tunnus: {show}" -#: sickbeard/webserve.py:1342 sickbeard/webserve.py:1871 sickbeard/webserve.py:2002 -#: sickbeard/webserve.py:2040 +#: sickbeard/webserve.py:1341 sickbeard/webserve.py:1870 sickbeard/webserve.py:2001 +#: sickbeard/webserve.py:2039 msgid "Show not in show list" msgstr "Sarjaa ei ole sarjojen listauksessa" #: gui/slick/views/inc_rootDirs.mako:31 gui/slick/views/manage.mako:38 -#: gui/slick/views/manage_massEdit.mako:74 sickbeard/webserve.py:1358 -#: sickbeard/webserve.py:2027 +#: gui/slick/views/manage_massEdit.mako:74 sickbeard/webserve.py:1357 +#: sickbeard/webserve.py:2026 msgid "Edit" msgstr "Muokkaa" -#: sickbeard/webserve.py:1368 +#: sickbeard/webserve.py:1367 msgid "This show is in the process of being downloaded - the info below is incomplete." msgstr "" -#: sickbeard/webserve.py:1371 +#: sickbeard/webserve.py:1370 msgid "The information on this page is in the process of being updated." msgstr "" -#: sickbeard/webserve.py:1374 +#: sickbeard/webserve.py:1373 msgid "The episodes below are currently being refreshed from disk" msgstr "" -#: sickbeard/webserve.py:1377 +#: sickbeard/webserve.py:1376 msgid "Currently downloading subtitles for this show" msgstr "" -#: sickbeard/webserve.py:1380 +#: sickbeard/webserve.py:1379 msgid "This show is queued to be refreshed." msgstr "" -#: sickbeard/webserve.py:1383 +#: sickbeard/webserve.py:1382 msgid "This show is queued and awaiting an update." msgstr "" -#: sickbeard/webserve.py:1386 +#: sickbeard/webserve.py:1385 msgid "This show is queued and awaiting subtitles download." msgstr "" -#: gui/slick/js/core.js:4081 sickbeard/webserve.py:1391 +#: gui/slick/js/core.js:4081 sickbeard/webserve.py:1390 msgid "Resume" msgstr "Jatka" #: gui/slick/js/core.js:4081 gui/slick/views/viewlogs.mako:12 -#: sickbeard/webserve.py:1393 +#: sickbeard/webserve.py:1392 msgid "Pause" msgstr "Tauko" #: gui/slick/views/editShow.mako:345 gui/slick/views/inc_blackwhitelist.mako:40 #: gui/slick/views/inc_blackwhitelist.mako:85 gui/slick/views/manage.mako:58 -#: gui/slick/views/manage_failedDownloads.mako:43 sickbeard/webserve.py:1395 +#: gui/slick/views/manage_failedDownloads.mako:43 sickbeard/webserve.py:1394 msgid "Remove" msgstr "Poista" -#: sickbeard/webserve.py:1396 +#: sickbeard/webserve.py:1395 msgid "Re-scan files" msgstr "Uudelleen tarkista tiedostot" -#: sickbeard/webserve.py:1397 +#: sickbeard/webserve.py:1396 msgid "Force Full Update" msgstr "Pakota täydellinen päivitys" -#: sickbeard/webserve.py:1398 +#: sickbeard/webserve.py:1397 msgid "Update show in KODI" msgstr "Päivitä ohjelma KODI:ssa" -#: sickbeard/webserve.py:1399 +#: sickbeard/webserve.py:1398 msgid "Update show in Emby" msgstr "Päivitä ohjelma Emby:ssa" -#: sickbeard/webserve.py:1402 +#: sickbeard/webserve.py:1401 msgid "Hide specials" msgstr "" -#: sickbeard/webserve.py:1404 +#: sickbeard/webserve.py:1403 msgid "Show specials" msgstr "" -#: sickbeard/webserve.py:1406 sickbeard/webserve.py:2030 sickbeard/webserve.py:2031 +#: sickbeard/webserve.py:1405 sickbeard/webserve.py:2029 sickbeard/webserve.py:2030 msgid "Preview Rename" msgstr "Esikatsele uudelleennimeäminen" -#: sickbeard/webserve.py:1409 +#: sickbeard/webserve.py:1408 msgid "Download Subtitles" msgstr "Lataa tekstitykset" -#: sickbeard/webserve.py:1498 +#: sickbeard/webserve.py:1497 msgid "No scene exceptions" msgstr "" -#: sickbeard/webserve.py:1516 sickbeard/webserve.py:1764 sickbeard/webserve.py:1785 +#: sickbeard/webserve.py:1515 sickbeard/webserve.py:1763 sickbeard/webserve.py:1784 msgid "Invalid show ID" msgstr "Virheellinen sarjan tunnus" -#: sickbeard/webserve.py:1525 sickbeard/webserve.py:1769 sickbeard/webserve.py:1790 +#: sickbeard/webserve.py:1524 sickbeard/webserve.py:1768 sickbeard/webserve.py:1789 msgid "Unable to find the specified show" msgstr "Määriteltyä sarjaa ei löydy" -#: sickbeard/webserve.py:1550 +#: sickbeard/webserve.py:1549 msgid "Unable to retreive Fansub Groups from AniDB." msgstr "" -#: sickbeard/webserve.py:1559 sickbeard/webserve.py:1561 +#: sickbeard/webserve.py:1558 sickbeard/webserve.py:1560 msgid "Edit Show" msgstr "Muokkaa ohjelmaa" -#: sickbeard/webserve.py:1637 sickbeard/webserve.py:1671 +#: sickbeard/webserve.py:1636 sickbeard/webserve.py:1670 msgid "Unable to refresh this show: {error}" msgstr "Ei voi päivittää tätä sarjaa: {error}" -#: sickbeard/webserve.py:1663 +#: sickbeard/webserve.py:1662 msgid "New location <tt>{location}</tt> does not exist" msgstr "" -#: sickbeard/webserve.py:1688 +#: sickbeard/webserve.py:1687 msgid "Unable to update show: {error}" msgstr "Tätä sarjaa ei voitu päivittää: {error}" -#: sickbeard/webserve.py:1695 +#: sickbeard/webserve.py:1694 msgid "Unable to force an update on scene exceptions of the show." msgstr "" -#: sickbeard/webserve.py:1702 +#: sickbeard/webserve.py:1701 msgid "Unable to force an update on scene numbering of the show." msgstr "" -#: sickbeard/webserve.py:1708 sickbeard/webserve.py:3540 +#: sickbeard/webserve.py:1707 sickbeard/webserve.py:3539 msgid "{num_errors:d} error{plural} while saving changes:" msgstr "" -#: sickbeard/webserve.py:1719 +#: sickbeard/webserve.py:1718 msgid "{show_name} has been {paused_resumed}" msgstr "{show_name} {paused_resumed}" -#: sickbeard/webserve.py:1719 +#: sickbeard/webserve.py:1718 msgid "resumed" msgstr "jatketaan" -#: sickbeard/webserve.py:1719 +#: sickbeard/webserve.py:1718 msgid "paused" msgstr "keskeytetty" -#: sickbeard/webserve.py:1731 +#: sickbeard/webserve.py:1730 msgid "{show_name} has been {deleted_trashed} {was_deleted}" msgstr "{show_name} on {deleted_trashed} {was_deleted}" -#: sickbeard/webserve.py:1733 +#: sickbeard/webserve.py:1732 msgid "deleted" msgstr "poistettu" -#: sickbeard/webserve.py:1733 +#: sickbeard/webserve.py:1732 msgid "trashed" msgstr "poistettu" -#: sickbeard/webserve.py:1734 +#: sickbeard/webserve.py:1733 msgid "(media untouched)" msgstr "(mediaan ei koskettu)" -#: sickbeard/webserve.py:1734 +#: sickbeard/webserve.py:1733 msgid "(with all related media)" msgstr "" -#: sickbeard/webserve.py:1755 +#: sickbeard/webserve.py:1754 msgid "Unable to refresh this show." msgstr "Ei voi päivittää tätä sarjaa." -#: sickbeard/webserve.py:1775 +#: sickbeard/webserve.py:1774 msgid "Unable to update this show." msgstr "Tätä sarjaa ei voitu päivittää." -#: sickbeard/webserve.py:1814 +#: sickbeard/webserve.py:1813 msgid "Library update command sent to KODI host(s)): {kodi_hosts}" msgstr "Kirjaston päivitys komento lähetetty KODI:iin {kodi_hosts}" -#: sickbeard/webserve.py:1816 +#: sickbeard/webserve.py:1815 msgid "Unable to contact one or more KODI host(s)): {kodi_hosts}" msgstr "Ei yhteyttä yhteen tai useampaan KODI:iin {kodi_hosts}" -#: sickbeard/webserve.py:1825 +#: sickbeard/webserve.py:1824 msgid "Library update command sent to Plex Media Server host: {plex_server}" msgstr "Kirjaston päivitys komento lähetetty Plex Media Serveriin {plex_server}" -#: sickbeard/webserve.py:1828 +#: sickbeard/webserve.py:1827 msgid "Unable to contact Plex Media Server host: {plex_server}" msgstr "Ei yhteyttä Plex Media Serveriin {plex_server}" -#: sickbeard/webserve.py:1840 +#: sickbeard/webserve.py:1839 msgid "Library update command sent to Emby host: {emby_host}" msgstr "" -#: sickbeard/webserve.py:1842 +#: sickbeard/webserve.py:1841 msgid "Unable to contact Emby host: {emby_host}" msgstr "" -#: sickbeard/webserve.py:1852 sickbeard/webserve.py:2036 +#: sickbeard/webserve.py:1851 sickbeard/webserve.py:2035 msgid "You must specify a show and at least one episode" msgstr "Sinun täytyy määrittää sarja ja ainakin yksi sen jakso" -#: sickbeard/webserve.py:1861 +#: sickbeard/webserve.py:1860 msgid "Invalid status" msgstr "Virheellinen tila" -#: sickbeard/webserve.py:1954 +#: sickbeard/webserve.py:1953 msgid "Backlog was automatically started for the following seasons of <b>{show_name}</b>" msgstr "Rästissä olevien haku aloitettiin automaattisesti sarjan <b>{show_name}</b> kausille" #: gui/slick/views/displayShow.mako:74 gui/slick/views/displayShow.mako:79 -#: gui/slick/views/displayShow.mako:404 sickbeard/webserve.py:1961 -#: sickbeard/webserve.py:1980 +#: gui/slick/views/displayShow.mako:404 sickbeard/webserve.py:1960 +#: sickbeard/webserve.py:1979 msgid "Season" msgstr "Kausi" -#: sickbeard/webserve.py:1968 +#: sickbeard/webserve.py:1967 msgid "Backlog started" msgstr "Rästityöt aloitettu" -#: sickbeard/webserve.py:1973 +#: sickbeard/webserve.py:1972 msgid "Retrying Search was automatically started for the following season of <b>{show_name}</b>" msgstr "" -#: sickbeard/webserve.py:1987 +#: sickbeard/webserve.py:1986 msgid "Retry Search started" msgstr "" -#: sickbeard/webserve.py:1997 +#: sickbeard/webserve.py:1996 msgid "You must specify a show" msgstr "" -#: sickbeard/webserve.py:2007 sickbeard/webserve.py:2045 +#: sickbeard/webserve.py:2006 sickbeard/webserve.py:2044 msgid "Can't rename episodes when the show dir is missing." msgstr "" -#: sickbeard/webserve.py:2212 sickbeard/webserve.py:2233 +#: sickbeard/webserve.py:2211 sickbeard/webserve.py:2232 msgid "New subtitles downloaded: {new_subtitle_languages}" msgstr "" -#: sickbeard/webserve.py:2215 sickbeard/webserve.py:2236 +#: sickbeard/webserve.py:2214 sickbeard/webserve.py:2235 msgid "No subtitles downloaded" msgstr "Teksityksiä ei ladattu" #: gui/slick/views/config_general.mako:80 gui/slick/views/layouts/main.mako:222 -#: sickbeard/webserve.py:2363 +#: sickbeard/webserve.py:2362 msgid "IRC" msgstr "IRC" -#: sickbeard/webserve.py:2376 +#: sickbeard/webserve.py:2375 msgid "Could not load news from the repo. [Click here for news.md])({news_url})" msgstr "" -#: sickbeard/webserve.py:2383 sickbeard/webserve.py:2401 +#: sickbeard/webserve.py:2382 sickbeard/webserve.py:2400 msgid "The was a problem connecting to github, please refresh and try again" msgstr "" -#: sickbeard/webserve.py:2398 +#: sickbeard/webserve.py:2397 msgid "Could not load changes from the repo. [Click here for CHANGES.md]({changes_url})" msgstr "" -#: gui/slick/views/layouts/main.mako:223 sickbeard/webserve.py:2403 +#: gui/slick/views/layouts/main.mako:223 sickbeard/webserve.py:2402 msgid "Changelog" msgstr "Muutosloki" -#: gui/slick/views/layouts/main.mako:190 sickbeard/webserve.py:2413 -#: sickbeard/webserve.py:3855 sickbeard/webserve.py:4341 +#: gui/slick/views/layouts/main.mako:190 sickbeard/webserve.py:2412 +#: sickbeard/webserve.py:3826 sickbeard/webserve.py:4312 msgid "Post Processing" msgstr "Jälkikäsittely" -#: gui/slick/views/layouts/main.mako:128 sickbeard/webserve.py:2445 +#: gui/slick/views/layouts/main.mako:128 sickbeard/webserve.py:2444 msgid "Add Shows" msgstr "Lisää sarjoja" -#: sickbeard/webserve.py:2510 +#: sickbeard/webserve.py:2509 msgid "No folders selected." msgstr "Yhtään kansiota ei ole valittu." -#: sickbeard/webserve.py:2632 +#: sickbeard/webserve.py:2631 msgid "New Show" msgstr "Uusi sarja" -#: sickbeard/webserve.py:2647 +#: sickbeard/webserve.py:2646 msgid "Trending Shows" msgstr "" -#: sickbeard/webserve.py:2649 sickbeard/webserve.py:2772 +#: sickbeard/webserve.py:2648 sickbeard/webserve.py:2771 msgid "Popular Shows" msgstr "Suosittuja sarjoja" -#: sickbeard/webserve.py:2651 sickbeard/webserve.py:2665 +#: sickbeard/webserve.py:2650 sickbeard/webserve.py:2664 msgid "Most Anticipated Shows" msgstr "" -#: sickbeard/webserve.py:2653 +#: sickbeard/webserve.py:2652 msgid "Most Collected Shows" msgstr "" -#: sickbeard/webserve.py:2655 +#: sickbeard/webserve.py:2654 msgid "Most Watched Shows" msgstr "" -#: sickbeard/webserve.py:2657 +#: sickbeard/webserve.py:2656 msgid "Most Played Shows" msgstr "" -#: sickbeard/webserve.py:2659 +#: sickbeard/webserve.py:2658 msgid "Recommended Shows" msgstr "" -#: gui/slick/views/addShows_trendingShows.mako:60 sickbeard/webserve.py:2661 +#: gui/slick/views/addShows_trendingShows.mako:60 sickbeard/webserve.py:2660 msgid "New Shows" msgstr "Uudet sarjat" -#: gui/slick/views/addShows_trendingShows.mako:61 sickbeard/webserve.py:2663 +#: gui/slick/views/addShows_trendingShows.mako:61 sickbeard/webserve.py:2662 msgid "Season Premieres" msgstr "Kausi alkaa" -#: sickbeard/webserve.py:2792 sickbeard/webserve.py:2793 +#: sickbeard/webserve.py:2791 sickbeard/webserve.py:2792 msgid "Existing Show" msgstr "Olemassa oleva sarja" -#: sickbeard/webserve.py:2871 +#: sickbeard/webserve.py:2870 msgid "No root directories setup, please go back and add one." msgstr "" -#: sickbeard/webserve.py:2883 sickbeard/webserve.py:3002 +#: sickbeard/webserve.py:2882 sickbeard/webserve.py:3001 msgid "Show added" msgstr "Sarja lisätty" -#: sickbeard/webserve.py:2883 +#: sickbeard/webserve.py:2882 msgid "Adding the specified show {show_name}" msgstr "" -#: sickbeard/webserve.py:2924 +#: sickbeard/webserve.py:2923 msgid "Missing params, no Indexer ID or folder: {show_to_add} and {root_dir}/{show_path}" msgstr "" -#: sickbeard/webserve.py:2933 +#: sickbeard/webserve.py:2932 msgid "Unknown error. Unable to add show due to problem with show selection." msgstr "" -#: sickbeard/webserve.py:2957 sickbeard/webserve.py:2967 +#: sickbeard/webserve.py:2956 sickbeard/webserve.py:2966 msgid "Unable to add show" msgstr "" -#: sickbeard/webserve.py:2957 +#: sickbeard/webserve.py:2956 msgid "Folder {show_dir} exists already" msgstr "" -#: sickbeard/webserve.py:2968 +#: sickbeard/webserve.py:2967 msgid "Unable to create the folder {show_dir}, can't add the show" msgstr "" -#: sickbeard/webserve.py:3002 +#: sickbeard/webserve.py:3001 msgid "Adding the specified show into {show_dir}" msgstr "" -#: sickbeard/webserve.py:3078 +#: sickbeard/webserve.py:3077 msgid "Shows Added" msgstr "" -#: sickbeard/webserve.py:3079 +#: sickbeard/webserve.py:3078 msgid "Automatically added {num_shows} from their existing metadata files" msgstr "" -#: gui/slick/views/layouts/main.mako:153 sickbeard/webserve.py:3096 +#: gui/slick/views/layouts/main.mako:153 sickbeard/webserve.py:3095 msgid "Mass Update" msgstr "Massapäivitys" -#: sickbeard/webserve.py:3134 sickbeard/webserve.py:3161 sickbeard/webserve.py:3237 -#: sickbeard/webserve.py:3238 +#: sickbeard/webserve.py:3133 sickbeard/webserve.py:3160 sickbeard/webserve.py:3236 +#: sickbeard/webserve.py:3237 msgid "Episode Overview" msgstr "Jaksojen yleiskatsaus" -#: sickbeard/webserve.py:3270 +#: sickbeard/webserve.py:3269 msgid "Missing Subtitles" msgstr "Puuttuvat tekstitykset" -#: gui/slick/views/layouts/main.mako:154 sickbeard/webserve.py:3356 -#: sickbeard/webserve.py:3357 +#: gui/slick/views/layouts/main.mako:154 sickbeard/webserve.py:3355 +#: sickbeard/webserve.py:3356 msgid "Backlog Overview" msgstr "Rästitöiden yleiskatsaus" -#: sickbeard/webserve.py:3481 +#: sickbeard/webserve.py:3480 msgid "Mass Edit" msgstr "Massamuokkaa" -#: sickbeard/webserve.py:3586 +#: sickbeard/webserve.py:3585 msgid "Unable to update show: {excption_format}" msgstr "" -#: sickbeard/webserve.py:3594 +#: sickbeard/webserve.py:3593 msgid "Unable to refresh show {show_name}: {excption_format}" msgstr "" -#: sickbeard/webserve.py:3605 +#: sickbeard/webserve.py:3604 msgid "Errors encountered" msgstr "Kohdatut virheet" -#: gui/slick/views/config_general.mako:261 sickbeard/webserve.py:3611 +#: gui/slick/views/config_general.mako:261 sickbeard/webserve.py:3610 msgid "Updates" msgstr "Päivitykset" -#: sickbeard/webserve.py:3616 +#: sickbeard/webserve.py:3615 msgid "Refreshes" msgstr "" -#: sickbeard/webserve.py:3621 +#: sickbeard/webserve.py:3620 msgid "Renames" msgstr "" #: gui/slick/views/displayShow.mako:260 gui/slick/views/displayShow.mako:435 #: gui/slick/views/editShow.mako:119 gui/slick/views/inc_addShowOptions.mako:20 -#: gui/slick/views/manage_massEdit.mako:262 sickbeard/webserve.py:3626 -#: sickbeard/webserve.py:5244 +#: gui/slick/views/manage_massEdit.mako:262 sickbeard/webserve.py:3625 +#: sickbeard/webserve.py:5215 msgid "Subtitles" msgstr "Tekstitykset" -#: sickbeard/webserve.py:3631 +#: sickbeard/webserve.py:3630 msgid "The following actions were queued" msgstr "" -#: sickbeard/webserve.py:3651 -msgid "For best results please set the Download Station alias as" -msgstr "" - -#: sickbeard/webserve.py:3652 -msgid "You can check this setting in the Synology DSM" -msgstr "" - -#: sickbeard/webserve.py:3652 sickbeard/webserve.py:3654 -msgid "Control Panel" -msgstr "Ohjauspaneli" - -#: sickbeard/webserve.py:3652 -msgid "Application Portal" -msgstr "" - -#: sickbeard/webserve.py:3653 -msgid "Make sure you allow DSM to be embedded with iFrames too in" -msgstr "" - -#: sickbeard/webserve.py:3654 -msgid "DSM Settings" -msgstr "DSM-asetukset" - -#: sickbeard/webserve.py:3654 -msgid "Security" -msgstr "Turvallisuus" - -#: gui/slick/views/layouts/main.mako:167 sickbeard/webserve.py:3662 -msgid "Manage Torrents" -msgstr "Hallitse torrenteja" - -#: gui/slick/views/layouts/main.mako:170 sickbeard/webserve.py:3683 +#: gui/slick/views/layouts/main.mako:170 sickbeard/webserve.py:3654 msgid "Failed Downloads" msgstr "Epäonnistuneet lataukset" -#: gui/slick/views/layouts/main.mako:155 sickbeard/webserve.py:3701 +#: gui/slick/views/layouts/main.mako:155 sickbeard/webserve.py:3672 msgid "Manage Searches" msgstr "Hallitse hakuja" -#: sickbeard/webserve.py:3709 +#: sickbeard/webserve.py:3680 msgid "Backlog search started" msgstr "Rästissä olevien haku aloitettu" -#: sickbeard/webserve.py:3719 +#: sickbeard/webserve.py:3690 msgid "Daily search started" msgstr "Päivittäinen haku aloitettu" -#: sickbeard/webserve.py:3728 +#: sickbeard/webserve.py:3699 msgid "Find propers search started" msgstr "Proper-versioiden haku haku alkoi" -#: sickbeard/webserve.py:3737 +#: sickbeard/webserve.py:3708 msgid "Subtitle search started" msgstr "Tekstityste haku aloitettu" -#: sickbeard/webserve.py:3801 +#: sickbeard/webserve.py:3772 msgid "Remove Selected" msgstr "" -#: sickbeard/webserve.py:3802 +#: sickbeard/webserve.py:3773 msgid "Clear History" msgstr "Tyhjennä historia" -#: sickbeard/webserve.py:3803 +#: sickbeard/webserve.py:3774 msgid "Trim History" msgstr "Lyhennä historia" -#: sickbeard/webserve.py:3823 +#: sickbeard/webserve.py:3794 msgid "Selected history entries removed" msgstr "" -#: sickbeard/webserve.py:3830 +#: sickbeard/webserve.py:3801 msgid "History cleared" msgstr "Historia tyhjennetty" -#: sickbeard/webserve.py:3837 +#: sickbeard/webserve.py:3808 msgid "Removed history entries older than 30 days" msgstr "" -#: gui/slick/views/layouts/main.mako:185 sickbeard/webserve.py:3850 +#: gui/slick/views/layouts/main.mako:185 sickbeard/webserve.py:3821 msgid "General" msgstr "Yleiset" -#: sickbeard/webserve.py:3851 sickbeard/webserve.py:4143 +#: sickbeard/webserve.py:3822 sickbeard/webserve.py:4114 msgid "Backup/Restore" msgstr "Varmuuskopioi/Palauta" -#: gui/slick/views/layouts/main.mako:187 sickbeard/webserve.py:3852 -#: sickbeard/webserve.py:4206 +#: gui/slick/views/layouts/main.mako:187 sickbeard/webserve.py:3823 +#: sickbeard/webserve.py:4177 msgid "Search Settings" msgstr "Haun asetukset" -#: gui/slick/views/layouts/main.mako:188 sickbeard/webserve.py:3853 -#: sickbeard/webserve.py:4518 +#: gui/slick/views/layouts/main.mako:188 sickbeard/webserve.py:3824 +#: sickbeard/webserve.py:4489 msgid "Search Providers" msgstr "" -#: gui/slick/views/layouts/main.mako:189 sickbeard/webserve.py:3854 +#: gui/slick/views/layouts/main.mako:189 sickbeard/webserve.py:3825 msgid "Subtitles Settings" msgstr "Tekstityksen asetukset" -#: gui/slick/views/layouts/main.mako:191 sickbeard/webserve.py:3856 -#: sickbeard/webserve.py:4964 +#: gui/slick/views/layouts/main.mako:191 sickbeard/webserve.py:3827 +#: sickbeard/webserve.py:4935 msgid "Notifications" msgstr "Ilmoitukset" @@ -1240,142 +1237,142 @@ msgstr "Ilmoitukset" #: gui/slick/views/home.mako:35 gui/slick/views/inc_addShowOptions.mako:79 #: gui/slick/views/inc_home_showList.mako:179 gui/slick/views/layouts/main.mako:192 #: gui/slick/views/manage.mako:44 gui/slick/views/manage_massEdit.mako:202 -#: sickbeard/webserve.py:3857 sickbeard/webserve.py:5309 +#: sickbeard/webserve.py:3828 sickbeard/webserve.py:5280 msgid "Anime" msgstr "Anime" -#: sickbeard/webserve.py:3895 sickbeard/webserve.py:3896 +#: sickbeard/webserve.py:3866 sickbeard/webserve.py:3867 msgid "SickRage Configuration" msgstr "SickRagen asetukset" -#: sickbeard/webserve.py:3910 +#: sickbeard/webserve.py:3881 msgid "Config - Shares" msgstr "" -#: sickbeard/webserve.py:3910 +#: sickbeard/webserve.py:3881 msgid "Windows Shares Configuration" msgstr "" -#: sickbeard/webserve.py:3937 +#: sickbeard/webserve.py:3908 msgid "Saved Shares" msgstr "" -#: sickbeard/webserve.py:3937 +#: sickbeard/webserve.py:3908 msgid "Your Windows share settings have been saved" msgstr "" -#: sickbeard/webserve.py:3948 +#: sickbeard/webserve.py:3919 msgid "Config - General" msgstr "Asetukset - Yleiset" -#: sickbeard/webserve.py:3948 +#: sickbeard/webserve.py:3919 msgid "General Configuration" msgstr "Yleiset asetukset" -#: sickbeard/webserve.py:3988 +#: sickbeard/webserve.py:3959 msgid "Saved Defaults" msgstr "" -#: sickbeard/webserve.py:3988 +#: sickbeard/webserve.py:3959 msgid "Your \"add show\" defaults have been set to your current selections." msgstr "" -#: sickbeard/webserve.py:4095 +#: sickbeard/webserve.py:4066 msgid "Unable to create directory {directory}, log directory not changed." msgstr "" -#: sickbeard/webserve.py:4103 +#: sickbeard/webserve.py:4074 msgid "Unable to create directory {directory}, https cert directory not changed." msgstr "" -#: sickbeard/webserve.py:4107 +#: sickbeard/webserve.py:4078 msgid "Unable to create directory {directory}, https key directory not changed." msgstr "" -#: sickbeard/webserve.py:4126 sickbeard/webserve.py:4324 sickbeard/webserve.py:4456 -#: sickbeard/webserve.py:5227 +#: sickbeard/webserve.py:4097 sickbeard/webserve.py:4295 sickbeard/webserve.py:4427 +#: sickbeard/webserve.py:5198 msgid "Error(s) Saving Configuration" msgstr "Virhe(itä) asetuksia tallennettaessa" -#: sickbeard/webserve.py:4129 sickbeard/webserve.py:4327 sickbeard/webserve.py:4458 -#: sickbeard/webserve.py:4950 sickbeard/webserve.py:5230 sickbeard/webserve.py:5294 -#: sickbeard/webserve.py:5323 +#: sickbeard/webserve.py:4100 sickbeard/webserve.py:4298 sickbeard/webserve.py:4429 +#: sickbeard/webserve.py:4921 sickbeard/webserve.py:5201 sickbeard/webserve.py:5265 +#: sickbeard/webserve.py:5294 msgid "Configuration Saved" msgstr "Asetukset tallennettu" -#: sickbeard/webserve.py:4142 +#: sickbeard/webserve.py:4113 msgid "Config - Backup/Restore" msgstr "Asetukset - Varmuuskopiointi/Palautus" -#: sickbeard/webserve.py:4205 +#: sickbeard/webserve.py:4176 msgid "Config - Episode Search" msgstr "Asetukset - Jaksojen haku" -#: sickbeard/webserve.py:4340 +#: sickbeard/webserve.py:4311 msgid "Config - Post Processing" msgstr "Asetukset - Jälkikäsittely" -#: sickbeard/webserve.py:4380 +#: sickbeard/webserve.py:4351 msgid "Unpacking Not Supported, disabling unpack setting" msgstr "" -#: sickbeard/webserve.py:4431 +#: sickbeard/webserve.py:4402 msgid "You tried saving an invalid normal naming config, not saving your naming settings" msgstr "" -#: sickbeard/webserve.py:4439 +#: sickbeard/webserve.py:4410 msgid "You tried saving an invalid anime naming config, not saving your naming settings" msgstr "" -#: sickbeard/webserve.py:4517 +#: sickbeard/webserve.py:4488 msgid "Config - Providers" msgstr "Asetukset - Tarjoajat" -#: sickbeard/webserve.py:4547 +#: sickbeard/webserve.py:4518 msgid "No Provider Name specified" msgstr "" -#: sickbeard/webserve.py:4549 +#: sickbeard/webserve.py:4520 msgid "No Provider Url specified" msgstr "" -#: sickbeard/webserve.py:4551 +#: sickbeard/webserve.py:4522 msgid "No Provider Api key specified" msgstr "" -#: sickbeard/webserve.py:4963 +#: sickbeard/webserve.py:4934 msgid "Config - Notifications" msgstr "Asetukset - Ilmoitukset" -#: sickbeard/webserve.py:5243 +#: sickbeard/webserve.py:5214 msgid "Config - Subtitles" msgstr "Asetukset - Tekstitykset" -#: sickbeard/webserve.py:5308 +#: sickbeard/webserve.py:5279 msgid "Config - Anime" msgstr "Asetukset - Anime" -#: sickbeard/webserve.py:5336 +#: sickbeard/webserve.py:5307 msgid "Clear Errors" msgstr "Tyhjennä virheet" -#: sickbeard/webserve.py:5342 +#: sickbeard/webserve.py:5313 msgid "Clear Warnings" msgstr "Tyhjennä varoitukset" -#: sickbeard/webserve.py:5348 +#: sickbeard/webserve.py:5319 msgid "Submit Errors" msgstr "Lähetä virheet" -#: sickbeard/webserve.py:5363 +#: sickbeard/webserve.py:5334 msgid "Logs & Errors" msgstr "Lokit & Virheet" -#: sickbeard/webserve.py:5388 +#: sickbeard/webserve.py:5359 msgid "Log File" msgstr "Lokitiedosto" -#: sickbeard/webserve.py:5388 +#: sickbeard/webserve.py:5359 msgid "Logs" msgstr "Lokit" @@ -1383,30 +1380,166 @@ msgstr "Lokit" msgid "This is a test notification from SickRage" msgstr "" -#: gui/slick/js/core.js:481 gui/slick/js/core.js:502 gui/slick/js/core.js:524 -#: gui/slick/js/core.js:548 gui/slick/js/core.js:573 gui/slick/js/core.js:596 -#: gui/slick/js/core.js:625 gui/slick/js/core.js:645 gui/slick/js/core.js:690 -#: gui/slick/js/core.js:769 gui/slick/js/core.js:829 gui/slick/js/core.js:849 -#: gui/slick/js/core.js:879 gui/slick/js/core.js:909 gui/slick/js/core.js:969 -#: gui/slick/js/core.js:1046 gui/slick/js/core.js:1066 gui/slick/js/core.js:1085 +#: gui/slick/js/browser.js:6 +msgid "Choose Directory" +msgstr "" + +#: gui/slick/js/core.js:443 +msgid "Select log file folder location" +msgstr "" + +#: gui/slick/js/core.js:445 +msgid "Select CSS file" +msgstr "" + +#: gui/slick/js/core.js:469 +msgid "Select backup folder to save to" +msgstr "" + +#: gui/slick/js/core.js:470 +msgid "Select backup files to restore" +msgstr "" + +#: gui/slick/js/core.js:479 gui/slick/js/core.js:500 gui/slick/js/core.js:522 +#: gui/slick/js/core.js:546 gui/slick/js/core.js:571 gui/slick/js/core.js:594 +#: gui/slick/js/core.js:623 gui/slick/js/core.js:643 gui/slick/js/core.js:688 +#: gui/slick/js/core.js:767 gui/slick/js/core.js:827 gui/slick/js/core.js:847 +#: gui/slick/js/core.js:877 gui/slick/js/core.js:907 gui/slick/js/core.js:967 +#: gui/slick/js/core.js:1044 gui/slick/js/core.js:1064 gui/slick/js/core.js:1083 msgid "Please fill out the necessary fields above." msgstr "" -#: gui/slick/js/core.js:1328 gui/slick/js/core.js:1378 gui/slick/js/core.js:1427 -#: gui/slick/js/core.js:1493 +#: gui/slick/js/core.js:680 +msgid "<b>Step 1:</b> Confirm Authorization" +msgstr "" + +#: gui/slick/js/core.js:977 +msgid "Check blacklist name; the value needs to be a trakt slug" +msgstr "" + +#: gui/slick/js/core.js:1022 +msgid "You must provide a recipient email address!" +msgstr "" + +#: gui/slick/js/core.js:1107 +msgid "You didn't supply a Pushbullet api key" +msgstr "" + +#: gui/slick/js/core.js:1133 gui/slick/js/core.js:1162 +msgid "Don't forget to save your new pushbullet settings." +msgstr "" + +#: gui/slick/js/core.js:1262 +msgid "Select TV Download Directory" +msgstr "" + +#: gui/slick/js/core.js:1263 +msgid "Select Unpack Directory" +msgstr "" + +#: gui/slick/js/core.js:1326 gui/slick/js/core.js:1376 gui/slick/js/core.js:1425 +#: gui/slick/js/core.js:1491 msgid "This pattern is invalid." msgstr "" -#: gui/slick/js/core.js:1336 gui/slick/js/core.js:1386 gui/slick/js/core.js:1435 -#: gui/slick/js/core.js:1501 +#: gui/slick/js/core.js:1334 gui/slick/js/core.js:1384 gui/slick/js/core.js:1433 +#: gui/slick/js/core.js:1499 msgid "This pattern would be invalid without the folders, using it will force \"Season Folders\" on for all shows." msgstr "" -#: gui/slick/js/core.js:1344 gui/slick/js/core.js:1394 gui/slick/js/core.js:1443 -#: gui/slick/js/core.js:1509 +#: gui/slick/js/core.js:1342 gui/slick/js/core.js:1392 gui/slick/js/core.js:1441 +#: gui/slick/js/core.js:1507 msgid "This pattern is valid." msgstr "" +#: gui/slick/js/core.js:1818 +msgid "Select .nzb black hole/watch location" +msgstr "" + +#: gui/slick/js/core.js:1819 +msgid "Select .torrent black hole/watch location" +msgstr "" + +#: gui/slick/js/core.js:1820 +msgid "Select .torrent download location" +msgstr "" + +#: gui/slick/js/core.js:1900 +msgid "Minimum seeding time is" +msgstr "" + +#: gui/slick/js/core.js:1902 +msgid "URL to your uTorrent client (e.g. http://localhost:8000)" +msgstr "" + +#: gui/slick/js/core.js:1905 +msgid "Stop seeding when inactive for" +msgstr "" + +#: gui/slick/js/core.js:1911 +msgid "URL to your Transmission client (e.g. http://localhost:9091)" +msgstr "" + +#: gui/slick/js/core.js:1921 +msgid "URL to your Deluge client (e.g. http://localhost:8112)" +msgstr "" + +#: gui/slick/js/core.js:1930 +msgid "IP or Hostname of your Deluge Daemon (e.g. scgi://localhost:58846)" +msgstr "" + +#: gui/slick/js/core.js:1937 +msgid "URL to your Synology DS client (e.g. http://localhost:5000)" +msgstr "" + +#: gui/slick/js/core.js:1941 +msgid "URL to your rTorrent client (e.g. scgi://localhost:5000 <br> or https://localhost/rutorrent/plugins/httprpc/action.php)" +msgstr "" + +#: gui/slick/js/core.js:1952 +msgid "URL to your qBittorrent client (e.g. http://localhost:8080)" +msgstr "" + +#: gui/slick/js/core.js:1962 +msgid "URL to your MLDonkey (e.g. http://localhost:4080)" +msgstr "" + +#: gui/slick/js/core.js:1974 +msgid "URL to your putio client (e.g. http://localhost:8080)" +msgstr "" + +#: gui/slick/js/core.js:1975 +msgid "<a herf=\"https://app.put.io/oauth/apps/new\" target=\"_blank\"> Create a new OAuth app for put.io</a>" +msgstr "" + +#: gui/slick/js/core.js:1977 +msgid "Put.io Parent Folder" +msgstr "" + +#: gui/slick/js/core.js:1978 +msgid "Put.io OAuth Token" +msgstr "" + +#: gui/slick/js/core.js:3383 gui/slick/views/displayShow.mako:410 +msgid "Show Episodes" +msgstr "" + +#: gui/slick/js/core.js:3388 gui/slick/views/displayShow.mako:408 +msgid "Hide Episodes" +msgstr "" + +#: gui/slick/js/core.js:3396 +msgid "Select Show Location" +msgstr "" + +#: gui/slick/js/core.js:3460 +msgid "Select Unprocessed Episode Folder" +msgstr "" + +#: gui/slick/js/core.js:3790 +msgid "DELETED" +msgstr "" + #: gui/slick/js/core.js:4082 msgid "Resume updating the log on this page." msgstr "" @@ -1415,6 +1548,26 @@ msgstr "" msgid "Pause updating the log on this page." msgstr "" +#: gui/slick/js/core.js:4323 +msgid "searching {searchingFor}..." +msgstr "" + +#: gui/slick/js/core.js:4334 +msgid "search timed out, try again or try another indexer" +msgstr "" + +#: gui/slick/js/core.js:4503 +msgid "loading folders..." +msgstr "" + +#: gui/slick/js/parsers.js:7 gui/slick/js/parsers.js:8 +#: gui/slick/js/plotTooltip.js:6 gui/slick/js/sceneExceptionsTooltip.js:6 +#: gui/slick/views/inc_home_showList.mako:209 +#: gui/slick/views/inc_home_showList.mako:215 +#: gui/slick/views/inc_home_showList.mako:231 +msgid "Loading..." +msgstr "Ladataan..." + #: gui/slick/views/404.mako:5 msgid "You have reached this page by accident, please check the url." msgstr "Päädyist tälle sivulle vahingossa, tarkista URL-osoite." @@ -5711,14 +5864,6 @@ msgstr "" msgid "Select Columns" msgstr "Valitse sarakkeet" -#: gui/slick/views/displayShow.mako:408 -msgid "Hide Episodes" -msgstr "" - -#: gui/slick/views/displayShow.mako:410 -msgid "Show Episodes" -msgstr "" - #: gui/slick/views/displayShow.mako:424 msgid "NFO" msgstr "NFO" @@ -6232,12 +6377,6 @@ msgstr "Aktiivisena" msgid "loading" msgstr "" -#: gui/slick/views/inc_home_showList.mako:209 -#: gui/slick/views/inc_home_showList.mako:215 -#: gui/slick/views/inc_home_showList.mako:231 -msgid "Loading..." -msgstr "Ladataan..." - #: gui/slick/views/inc_qualityChooser.mako:31 msgid "<p><b><u>Preferred</u></b> qualities will replace those in <b><u>allowed</u></b>, even if they are lower.</p>" msgstr "<p><b><u>Ensisijaiset</u></b> laadut korvaavat <b><u>sallitut</u></b>, vaikka ne olisivat matalampia.</p>" @@ -6775,6 +6914,10 @@ msgstr "Päivitä KODI" msgid "Update Emby" msgstr "Päivitä Emby" +#: gui/slick/views/layouts/main.mako:167 +msgid "Manage Torrents" +msgstr "Hallitse torrenteja" + #: gui/slick/views/layouts/main.mako:173 msgid "Missed Subtitle Management" msgstr "" diff --git a/locale/fr_FR/LC_MESSAGES/messages.json b/locale/fr_FR/LC_MESSAGES/messages.json index bdb6c34d8b36c0495bd28726981ac670554c7227..57ae4616f402a4d80919e4dde8c6fe08bf9b236b 100644 --- a/locale/fr_FR/LC_MESSAGES/messages.json +++ b/locale/fr_FR/LC_MESSAGES/messages.json @@ -1 +1 @@ -{"messages":{"domain":"messages","locale_data":{"messages":{"100":[null,"100"],"250":[null,"250"],"500":[null,"500"],"":{"domain":"messages","plural_forms":"nplurals=2; plural=(n > 1);","lang":"fr_FR"},"Drama":[null,"Drame"],"Mystery":[null,"Mystère"],"Science-Fiction":[null,"Science-Fiction"],"Crime":[null,"Crime"],"Action":[null,"Action"],"Comedy":[null,"Comédie"],"Thriller":[null,"Thriller"],"Animation":[null,"Animation"],"Family":[null,"Familial"],"Fantasy":[null,"Fantaisie"],"Adventure":[null,"Aventure"],"Horror":[null,"Horreur"],"Film-Noir":[null,"Film Noir"],"Sci-Fi":[null,"Sci-Fi"],"Romance":[null,"Romance"],"Sport":[null,"Sport"],"War":[null,"Guerre"],"Biography":[null,"Biographie"],"History":[null,"Historique"],"Music":[null,"Musique"],"Western":[null,"Western"],"News":[null,"Nouveautés"],"Sitcom":[null,"Sitcom"],"Reality-TV":[null,"Télé-Réalité"],"Documentary":[null,"Documentaire"],"Game-Show":[null,"Game-Show"],"Musical":[null,"Comédie musicale"],"Talk-Show":[null,"Talk-Show"],"Started Download":[null,"Téléchargement commencé"],"Download Finished":[null,"Téléchargement terminé"],"Subtitle Download Finished":[null,"Téléchargement de sous-titres terminé"],"SickRage Updated":[null,"SickRage mis à jour"],"SickRage Updated To Commit#: ":[null,"SickRage mis à jour sur le commit # : "],"SickRage new login":[null,"Nouvelle connexion sur SickRage"],"New login from IP: {0}. http://geomaplookup.net/?ip={0}":[null,"Nouvelle connexion de l'IP {0}. http://geomaplookup.net/?ip={0}"],"Repeat":[null,"Répéter"],"Repeat (Separated)":[null,"Répéter (Séparé)"],"Extend":[null,"Étendre"],"Extend (Limited)":[null,"Étendre (Limité)"],"Extend (Limited, E-prefixed)":[null,"Étendre (Limité, E-préfixe)"],"Downloaded":[null,"Téléchargé"],"Snatched":[null,"Récupéré(s)"],"Snatched (Proper)":[null,"Récupéré (Proper)"],"Failed":[null,"Échouée"],"Snatched (Best)":[null,"Récupéré (Meilleure qualité)"],"Archived":[null,"Archivé"],"Unknown":[null,"Inconnu"],"Unaired":[null,"Non diffusé"],"Skipped":[null,"Ignoré(s)"],"Wanted":[null,"Recherché(s)"],"Ignored":[null,"Ignoré(s)"],"Subtitled":[null,"Sous-titré"],"<No Filter>":[null,"< Aucun Filtre >"],"Daily Searcher":[null,"Recherche quotidienne"],"Backlog":[null,"Épisodes désirés"],"Show Updater":[null,"Mise à jour de la série"],"Check Version":[null,"Vérifiez la version"],"Show Queue":[null,"Voir la file d'attente"],"Search Queue (All)":[null,"File d'attente de la recherche (Tous)"],"Search Queue (Daily Searcher)":[null,"File d'attente de la recherche (Recherche quotidienne)"],"Search Queue (Backlog)":[null,"File d'attente de la recherche (Épisodes désirés)"],"Search Queue (Manual)":[null,"File d'attente de la recherche (Manuelle)"],"Search Queue (Retry/Failed)":[null,"File d'attente de la recherche (Réessayée/Échouée)"],"Search Queue (RSS)":[null,"File d'attente de la recherche (RSS)"],"Find Propers":[null,"Trouver des Propers"],"Postprocessor":[null,"Post-traitement"],"Find Subtitles":[null,"Trouver des sous-titres"],"Trakt Checker":[null,"Vérificateur Trakt"],"Event":[null,"Évènement"],"Error":[null,"Erreur"],"Tornado":[null,"Tornado"],"Thread":[null,"Sujet"],"Main":[null,"Général"],"Loading":[null,"Chargement"],"New update found for SickRage, starting auto-updater":[null,"Nouvelle mise à jour trouvée pour SickRage, démarrage de la mise à jour automatique"],"Update was successful":[null,"La mise à jour a réussi"],"Update failed!":[null,"Mise à jour échouée !"],"Backup":[null,"Sauvegarde"],"Config backup in progress...":[null,"Sauvegarde de la configuration en cours..."],"Config backup successful, updating...":[null,"Sauvegarde de la configuration réussie, mise à jour..."],"Config backup failed, aborting update":[null,"Sauvegarde de la configuration échouée, mise à jour abandonnée "],"No update needed":[null,"Aucune mise à jour nécessaire"],"Mako Error":[null,"Erreur Mako"],"Oops":[null,"Oups"],"Wrong API key used":[null,"Mauvaise clé API utilisée"],"Login":[null,"Se connecter"],"API Key not generated":[null,"Clé API non générée"],"API Builder":[null,"Constructeur d'API"],"Schedule":[null,"Planning"],"Test 1":[null,"Test 1"],"This is test number 1":[null,"Ceci est le test numéro 1"],"Test 2":[null,"Test 2"],"This is test number 2":[null,"Ceci est le test numéro 2"],"You're using the {branch} branch. Please use 'master' unless specifically asked":[null,"Vous utilisez la branche {branch}. Merci d'utiliser la branche «master» sauf si spécifiquement demandé"],"Invalid show parameters":[null,"Paramètres de série invalides"],"Invalid parameters":[null,"Paramètres incorrects"],"Episode couldn't be retrieved":[null,"L'épisode n'a pas pu être trouvé"],"Home":[null,"Accueil"],"Show List":[null,"Liste des séries"],"Error: Unsupported Request. Send jsonp request with 'callback' variable in the query string.":[null,"Erreur : Demande non prise en charge. Envoyer la requête jsonp avec la variable « callback » dans la chaîne de requête."],"Success. Connected and authenticated":[null,"Succès. Connecté et authentifié"],"Authentication failed. SABnzbd expects":[null,"L'authentification a échoué. SABnzbd attend"],"as authentication method":[null,"comme méthode d'authentification"],"Unable to connect to host":[null,"Impossible de se connecter à l'hôte"],"SMS sent successfully":[null,"Le SMS a été envoyé avec succès"],"Problem sending SMS: {message}":[null,"Problème lors de l'envoi du SMS : {message}"],"Telegram notification succeeded. Check your Telegram clients to make sure it worked":[null,"La notification de Telegram a réussi. Vérifiez vos clients Telegram pour vous assurer que cela a fonctionné"],"Error sending Telegram notification: {message}":[null,"Erreur lors de l'envoi de la notification telegram : {message}"],"join notification succeeded. Check your join clients to make sure it worked":[null,"La notification de Join a réussi. Vérifiez vos clients Join pour vous assurer que cela a fonctionné"],"Error sending join notification: {message}":[null,"Erreur lors de l'envoi de la notification Join : {message}"]," with password":[null," avec mot de passe"],"Registered and Tested growl successfully {growl_host}":[null,"Succès de l'enregistrement et du test growl sur {growl_host}"],"Registration and Testing of growl failed {growl_host}":[null,"Échec de l'enregistrement et du test growl sur {growl_host}"],"Test prowl notice sent successfully":[null,"Notification de test prowl envoyée avec succès"],"Test prowl notice failed":[null,"La notification de test prowl a échoué"],"Boxcar2 notification succeeded. Check your Boxcar2 clients to make sure it worked":[null,"La notification de Boxcar2 a réussi. Vérifiez votre client Boxcar2 pour vous assurer que cela a fonctionné"],"Error sending Boxcar2 notification":[null,"Erreur d'envoi de notification vers Boxcar2"],"Pushover notification succeeded. Check your Pushover clients to make sure it worked":[null,"La notification de Pushover a réussi. Vérifiez votre client Pushover pour vous assurer que cela a fonctionné"],"Error sending Pushover notification":[null,"Erreur lors de l'envoi de notification vers Pushover"],"Key verification successful":[null,"Vérification de la clé réussie"],"Unable to verify key":[null,"Impossible de vérifier la clé"],"Tweet successful, check your twitter to make sure it worked":[null,"Tweet bien envoyé, vérifier votre fil Twitter pour s'assurer que ça a fonctionné"],"Error sending tweet":[null,"Erreur lors de l'envoi du tweet"],"Please enter a valid account sid":[null,"Veuillez saisir un ID compte valide"],"Please enter a valid auth token":[null,"Veuillez saisir un jeton d'authentification valide"],"Please enter a valid phone sid":[null,"Veuillez saisir un ID téléphone valide"],"Please format the phone number as \"+1-###-###-####\"":[null,"Pour le numéro de téléphone, merci d'utiliser le format suivant \"+1-###-###-####\""],"Authorization successful and number ownership verified":[null,"Autorisation réussie et propriété du numéro vérifiée"],"Error sending sms":[null,"Erreur lors de l'envoi du SMS"],"Slack message successful":[null,"Message envoyé sur Slack"],"Slack message failed":[null,"Échec de l’envoi du message"],"Discord message successful":[null,"Message envoyé sur Discord"],"Discord message failed":[null,"Échec de l’envoi du message sur Discord"],"Test KODI notice sent successfully to {kodi_host}":[null,"La notification de test KODI a été envoyée avec succès vers {kodi_host}"],"Test KODI notice failed to {kodi_host}":[null,"La notification de test KODI a échoué vers {kodi_host}"],"Successful test notice sent to Plex Home Theater ... {plex_clients}":[null,"Test de notification a été envoyé avec succès à Plex Home Theater ... {plex_clients}"],"Test failed for Plex Home Theater ... {plex_clients}":[null,"Le teste de Plex Home Theater a échoué ... {plex_clients}"],"Tested Plex Home Theater(s)":[null,"Plex Home Theater(s) testé"],"Successful test of Plex Media Server(s) ... {plex_servers}":[null,"Test de Plex Media serveur (s) réussi ... {plex_servers}"],"Test failed, No Plex Media Server host specified":[null,"Test échoué, aucun hôte spécifié pour Plex Media serveur"],"Test failed for Plex Media Server(s) ... {plex_servers}":[null,"Test échoué pour Plex Media serveur(s)... {plex_servers}"],"Tested Plex Media Server host(s)":[null,"Hôte(s) Plex Media Server testé(s)"],"Tried sending desktop notification via libnotify":[null,"Tentative d'envoi de notification de bureau via libnotify"],"Test notice sent successfully to {emby_host}":[null,"Notification de test envoyée à {emby_host} avec succès"],"Test notice failed to {emby_host}":[null,"La notification de test vers {emby_host} a échoué"],"Successfully started the scan update":[null,"Scan de mise à jour démarré avec succès"],"Test failed to start the scan update":[null,"Le test pour démarrer le scan de mise à jour a échoué"],"Test notice sent successfully to {nmj2_host}":[null,"La notification de test a été envoyée avec succès a {nmj2_host}"],"Test notice failed to {nmj2_host}":[null,"La notification de test a échoué vers {nmj2_host}"],"Trakt Authorized":[null,"Trakt autorisé"],"Trakt Not Authorized!":[null,"Trakt non autorisé !"],"Test email sent successfully! Check inbox.":[null,"Mail de test envoyé avec succès ! Vérifiez votre boîte de réception."],"ERROR: {last_error}":[null,"ERREUR : {last_error}"],"Test NMA notice sent successfully":[null,"Notification de test NMA envoyée avec succès"],"Test NMA notice failed":[null,"Notification de test NMA a échoué"],"Pushalot notification succeeded. Check your Pushalot clients to make sure it worked":[null,"La notification de Pushalot a réussi. Vérifiez vos clients Pushalot pour vous assurer que cela a fonctionné"],"Error sending Pushalot notification":[null,"Erreur d'envoi de notification vers Pushalot"],"Pushbullet notification succeeded. Check your device to make sure it worked":[null,"Notification de Pushbullet a été envoyée. Vérifiez votre appareil pour s'assurer que cela a fonctionné"],"Error sending Pushbullet notification":[null,"Erreur d'envoi de notification sur Pushbullet"],"Status":[null,"Statut"],"Restarting SickRage":[null,"Redémarrage de SickRage en cours"],"Update Failed":[null,"La mise à jour a échoué"],"Update wasn't successful, not restarting. Check your log for more information.":[null,"La mise à jour n'a pas été appliquée, il n'y a pas eu de redémarrage. Consultez votre journal des événements pour plus d'informations."],"Checking out branch":[null,"Récupération de la branche"],"Already on branch":[null,"Déjà sur la branche"],"Invalid show ID: {show}":[null,"ID de la série non-valide : {show}"],"Show not in show list":[null,"Cette série n'est pas dans la liste des séries"],"Edit":[null,"Éditer"],"This show is in the process of being downloaded - the info below is incomplete.":[null,"Cette série est en cours de téléchargement - l’info ci-dessous est incomplète."],"The information on this page is in the process of being updated.":[null,"Les informations sur cette page sont en cours d’actualisation."],"The episodes below are currently being refreshed from disk":[null,"Les épisodes ci-dessous sont en cours d'actualisation depuis le disque"],"Currently downloading subtitles for this show":[null,"Les sous-titres sont en cours de téléchargement pour cette série"],"This show is queued to be refreshed.":[null,"Cette série est en attente d'être rafraîchie."],"This show is queued and awaiting an update.":[null,"Cette série est mise en attente car elle attend une mise à jour."],"This show is queued and awaiting subtitles download.":[null,"Cette série est mise en attente car elle attend le téléchargement des sous-titres."],"Resume":[null,"Reprendre"],"Pause":[null,"Suspendre"],"Remove":[null,"Retirer"],"Re-scan files":[null,"Re-scanner les fichiers"],"Force Full Update":[null,"Forcer la mise à jour"],"Update show in KODI":[null,"Mettre à jour la série dans KODI"],"Update show in Emby":[null,"Mettre à jour la série dans Emby"],"Hide specials":[null,"Cacher les épisodes spéciaux"],"Show specials":[null,"Afficher les épisodes spéciaux"],"Preview Rename":[null,"Aperçu du renommage"],"Download Subtitles":[null,"Télécharger les sous-titres"],"No scene exceptions":[null,"Pas d'exception scène"],"Invalid show ID":[null,"Identifiant de série invalide"],"Unable to find the specified show":[null,"Impossible de trouver la série spécifiée"],"Unable to retreive Fansub Groups from AniDB.":[null,"Impossible de récupérer les groupes de Fansub depuis AniDB."],"Edit Show":[null,"Éditer la série"],"Unable to refresh this show: {error}":[null,"Impossible d'actualiser cette série : {error}"],"New location <tt>{location}</tt> does not exist":[null,"Le nouvel emplacement <tt>{location}</tt> n'existe pas"],"Unable to update show: {error}":[null,"Impossible de mettre à jour la série : {error}"],"Unable to force an update on scene exceptions of the show.":[null,"Impossible de forcer la mise à jour sur les exceptions scène de cette série."],"Unable to force an update on scene numbering of the show.":[null,"Impossible de forcer une mise à jour sur la numérotation scène de cette série."],"{num_errors:d} error{plural} while saving changes:":[null,"{num_errors:d} erreur{plural} lors de l'enregistrement des modifications :"],"{show_name} has been {paused_resumed}":[null,"{show_name} a été {paused_resumed}"],"resumed":[null,"relancé"],"paused":[null,"suspendu"],"{show_name} has been {deleted_trashed} {was_deleted}":[null,"{show_name} a été {deleted_trashed} {was_deleted}"],"deleted":[null,"supprimé"],"trashed":[null,"dans la corbeille"],"(media untouched)":[null,"(médias intacts)"],"(with all related media)":[null,"(avec tous les médias associés)"],"Unable to refresh this show.":[null,"Impossible d'actualiser cette série."],"Unable to update this show.":[null,"Impossible de mettre à jour cette série."],"Library update command sent to KODI host(s)): {kodi_hosts}":[null,"La commande de mise à jour de la bibliothèque a été envoyée à l'hôte KODI : {kodi_hosts}"],"Unable to contact one or more KODI host(s)): {kodi_hosts}":[null,"Impossible de joindre un ou plusieurs hôte(s) KODI : {kodi_hosts}"],"Library update command sent to Plex Media Server host: {plex_server}":[null,"La commande de mise à jour de la bibliothèque a été envoyée à l'hôte Plex Media Server : {plex_server}"],"Unable to contact Plex Media Server host: {plex_server}":[null,"Impossible de joindre l'hôte de Plex Media Server : {plex_server}"],"Library update command sent to Emby host: {emby_host}":[null,"La commande de mise à jour de bibliothèque a été envoyée à l'hôte Emby : {emby_host}"],"Unable to contact Emby host: {emby_host}":[null,"Impossible de joindre l'hôte Emby : {emby_host}"],"You must specify a show and at least one episode":[null,"Vous devez spécifier une série et au moins un épisode"],"Invalid status":[null,"Statut invalide"],"Backlog was automatically started for the following seasons of <b>{show_name}</b>":[null,"La recherche des épisodes désirés concernant les saisons sélectionnées de <b>{show_name}</b> a automatiquement démarré"],"Season":[null,"Saison"],"Backlog started":[null,"La recherche des épisodes désirés a commencé"],"Retrying Search was automatically started for the following season of <b>{show_name}</b>":[null,"Le nouvel essai de recherche va démarrer automatiquement pour la saison suivante de <b>{show_name}</b>"],"Retry Search started":[null,"La nouvelle tentative de recherche a commencé"],"You must specify a show":[null,"Vous devez spécifier une série"],"Can't rename episodes when the show dir is missing.":[null,"Impossible de renommer les épisodes, le dossier de la série est introuvable."],"New subtitles downloaded: {new_subtitle_languages}":[null,"Nouveaux sous-titres téléchargés : {new_subtitle_languages}"],"No subtitles downloaded":[null,"Aucun sous-titres téléchargé"],"IRC":[null,"IRC"],"Could not load news from the repo. [Click here for news.md])({news_url})":[null,"Impossible de charger les nouveautés depuis ce dépôt. [Cliquer ici pour consulter news.md])({news_url})"],"The was a problem connecting to github, please refresh and try again":[null,"Problème de connexion à github, rafraîchissez et recommencez"],"Could not load changes from the repo. [Click here for CHANGES.md]({changes_url})":[null,"Impossible de charger les changements depuis le dépôt. [Cliquez ici pour consulter CHANGES.md] ({changes_url})"],"Changelog":[null,"Journal des modifications"],"Post Processing":[null,"Post-traitement"],"Add Shows":[null,"Ajouter des séries"],"No folders selected.":[null,"Aucun dossier sélectionné."],"New Show":[null,"Nouvelles séries"],"Trending Shows":[null,"Séries tendances"],"Popular Shows":[null,"Séries populaires"],"Most Anticipated Shows":[null,"Séries les plus attendues"],"Most Collected Shows":[null,"Séries les plus collectées"],"Most Watched Shows":[null,"Séries les plus visionnées"],"Most Played Shows":[null,"Séries les plus lues"],"Recommended Shows":[null,"Séries recommandées"],"New Shows":[null,"Nouvelles séries"],"Season Premieres":[null,"Début de saison"],"Existing Show":[null,"Série existante"],"No root directories setup, please go back and add one.":[null,"Pas de répertoire racine configuré, merci de revenir en arrière et d'en ajouter un."],"Show added":[null,"Série ajoutée"],"Adding the specified show {show_name}":[null,"Ajout de la série {show_name}"],"Missing params, no Indexer ID or folder: {show_to_add} and {root_dir}/{show_path}":[null,"Paramètres manquants, pas d'ID d'indexeur ou de dossier : {show_to_add} et {root_dir}/{show_path}"],"Unknown error. Unable to add show due to problem with show selection.":[null,"Erreur inconnue. Impossible d'ajouter la série en raison d'un problème avec la sélection de série."],"Unable to add show":[null,"Impossible d'ajouter la série"],"Folder {show_dir} exists already":[null,"Le dossier {show_dir} existe déjà"],"Unable to create the folder {show_dir}, can't add the show":[null,"Impossible de créer le dossier {show_dir}, impossible d'ajouter la série"],"Adding the specified show into {show_dir}":[null,"Ajout de la série dans {show_dir}"],"Shows Added":[null,"Séries ajoutées"],"Automatically added {num_shows} from their existing metadata files":[null,"Ajout automatique de {num_shows} depuis leurs fichiers métadonnées"],"Mass Update":[null,"Mettre à jour par lots"],"Episode Overview":[null,"Aperçu de l'épisode"],"Missing Subtitles":[null,"Sous-titres manquants"],"Backlog Overview":[null,"Vue d'ensemble des épisodes désirés"],"Mass Edit":[null,"Édition par lots"],"Unable to update show: {excption_format}":[null,"Impossible de mettre à jour la série : {excption_format}"],"Unable to refresh show {show_name}: {excption_format}":[null,"Impossible d'actualiser la série {show_name} : {excption_format}"],"Errors encountered":[null,"Des erreurs sont survenues"],"Updates":[null,"Mises à jour"],"Refreshes":[null,"Actualiser "],"Renames":[null,"Renommer"],"Subtitles":[null,"Sous-titres"],"The following actions were queued":[null,"Les actions suivantes ont été mises en attente"],"For best results please set the Download Station alias as":[null,"Pour de meilleurs résultats, veuillez configurer l'alias de Download Station comme"],"You can check this setting in the Synology DSM":[null,"Vous pouvez vérifier ce paramètre dans le DSM de Synology"],"Control Panel":[null,"Panneau de configuration"],"Application Portal":[null,"Portail d'application"],"Make sure you allow DSM to be embedded with iFrames too in":[null,"Assurez-vous que vous permettez à DSM d'être aussi incorporés avec iFrames"],"DSM Settings":[null,"Paramètres du DSM"],"Security":[null,"Sécurité"],"Manage Torrents":[null,"Gestion des Torrents"],"Failed Downloads":[null,"Téléchargements échoués"],"Manage Searches":[null,"Gérer les recherches"],"Backlog search started":[null,"La recherche des épisodes désirés a commencé"],"Daily search started":[null,"La recherche quotidienne a commencé"],"Find propers search started":[null,"La recherche pour trouver les Propers a commencé"],"Subtitle search started":[null,"Recherche de sous-titre a commencé"],"Remove Selected":[null,"Supprimer la sélection"],"Clear History":[null,"Effacer l'historique"],"Trim History":[null,"Réduire l'historique"],"Selected history entries removed":[null,"Supprimer l'historique sélectionné"],"History cleared":[null,"Historique effacé"],"Removed history entries older than 30 days":[null,"Supprimer les entrées datant de plus de 30 jours"],"General":[null,"Général"],"Backup/Restore":[null,"Sauvegarde / Restauration"],"Search Settings":[null,"Paramètres de recherche"],"Search Providers":[null,"Moteurs de recherche"],"Subtitles Settings":[null,"Paramètres des sous-titres"],"Notifications":[null,"Notifications"],"Anime":[null,"Animé"],"SickRage Configuration":[null,"Configuration de SickRage"],"Config - Shares":[null,""],"Windows Shares Configuration":[null,""],"Saved Shares":[null,""],"Your Windows share settings have been saved":[null,""],"Config - General":[null,"Config - Général"],"General Configuration":[null,"Configuration générale"],"Saved Defaults":[null,"Enregistrer par défaut"],"Your \"add show\" defaults have been set to your current selections.":[null,"Les options actuelles ont été sauvegardées comme options par défaut."],"Unable to create directory {directory}, log directory not changed.":[null,"Impossible de créer le répertoire {directory}, le répertoire du journal d'événement n'a pas changé."],"Unable to create directory {directory}, https cert directory not changed.":[null,"Impossible de créer le répertoire {directory}, le répertoire du certificat HTTPS n'a pas changé."],"Unable to create directory {directory}, https key directory not changed.":[null,"Impossible de créer le répertoire {directory}, le répertoire clé HTTPS n'a pas changé."],"Error(s) Saving Configuration":[null,"Erreur(s) lors de l'enregistrement de la configuration"],"Configuration Saved":[null,"Configuration enregistrée"],"Config - Backup/Restore":[null,"Config - Sauvegarde/Restauration"],"Config - Episode Search":[null,"Config - Recherche d'épisode"],"Config - Post Processing":[null,"Config - Post-traitement"],"Unpacking Not Supported, disabling unpack setting":[null,"Décompression non supportée, désactivation du réglage de décompression"],"You tried saving an invalid normal naming config, not saving your naming settings":[null,"Vous essayez de sauvegarder une configuration de nommage non valide, vos réglages de nommage ne seront pas sauvegardés"],"You tried saving an invalid anime naming config, not saving your naming settings":[null,"Vous essayez de sauvegarder une configuration non valide de nommage d'un Animé, vos réglages de nommage ne seront pas sauvegardés"],"Config - Providers":[null,"Config - Fournisseurs"],"No Provider Name specified":[null,"Pas de nom de Fournisseur spécifié"],"No Provider Url specified":[null,"Pas d'URL de Fournisseur spécifié"],"No Provider Api key specified":[null,"Pas de clé API Fournisseur spécifié"],"Config - Notifications":[null,"Config - Notifications"],"Config - Subtitles":[null,"Config - Sous-titres"],"Config - Anime":[null,"Config - Anime"],"Clear Errors":[null,"Effacer les erreurs"],"Clear Warnings":[null,"Effacer les avertissements"],"Submit Errors":[null,"Soumettre les erreurs"],"Logs & Errors":[null,"Journaux & Erreurs"],"Log File":[null,"Journal des événements"],"Logs":[null,"Journaux"],"This is a test notification from SickRage":[null,"Ceci est un message test de la part de SickRage"],"Please fill out the necessary fields above.":[null,""],"This pattern is invalid.":[null,"Ce modèle n'est pas valide."],"This pattern would be invalid without the folders, using it will force \"Season Folders\" on for all shows.":[null,"Ce modèle serait invalide sans les dossiers, en l'utilisant cela forcera la création \"Dossiers par Saison\" sur toutes les séries."],"This pattern is valid.":[null,"Ce modèle est valide."],"Resume updating the log on this page.":[null,"Reprendre la mise à jour du log sur cette page."],"Pause updating the log on this page.":[null,"Mettre en pause la mise à jour du log sur cette page."],"You have reached this page by accident, please check the url.":[null,"Vous avez atteint cette page par hasard, vérifiez l'url."],"A mako error has occured.<br>\n If this happened during an update a simple page refresh may be the solution.<br>\n Mako errors that happen during updates may be a one time error if there were significant ui changes.":[null,"Une erreur mako est survenue. <br>\n Si cela s'est passé pendant une mise à jour un simple rafraîchissement de la page devrait corriger le problème. <br>\n Les erreurs mako qui se produisent pendant les mises à jour peuvent être ponctuelles s'il y a eu un changement significatif dans l'interface utilisateur."],"Show/Hide Error":[null,"Afficher/Masquer les erreurs"],"Add New Show":[null,"Ajouter une nouvelle série"],"For shows that you haven't downloaded yet, this option finds a show on theTVDB.com, creates a directory for it's episodes, and adds it to SickRage.":[null,"Pour les séries que vous n'avez pas encore téléchargé, cette option trouve une série sur theTVDB.com, crée un répertoire pour ses épisodes et l'ajoute à SickRage."],"Add From Trakt Lists":[null,"Ajouter depuis les listes Trakt"],"For shows that you haven't downloaded yet, this option lets you choose from a show from one of the Trakt lists to add to SickRage.":[null,"Pour les séries que vous n'avez pas encore téléchargé, cette option vous laisse choisir une série dans une de vos listes Trakt pour l'ajouter à SickRage."],"Add From IMDB's Popular Shows":[null,"Ajouter à partir des séries populaires de IMDB"],"View IMDB's list of the most popular shows. This feature uses IMDB's MOVIEMeter algorithm to identify popular TV Series.":[null,"Voir la liste IMDB des séries les plus populaires. Cette fonctionnalité utilise l'algorithme MOVIEMeter d'IMDB pour identifier les séries populaires."],"Add Existing Shows":[null,"Ajouter des séries existantes"],"Use this option to add shows that already have a folder created on your hard drive. SickRage will scan your existing metadata/episodes and add the show accordingly.":[null,"Cette option permet d'ajouter des séries qui ont déjà un dossier créé sur votre disque dur. SickRage va scanner vos métadonnées/épisodes existants et ajouter la série en conséquence."],"Add Existing Show":[null,"Ajouter une série existante"],"Manage Directories":[null,"Gérer les répertoires"],"Customize Options":[null,"Personnaliser les Options"],"SickRage can add existing shows, using the current options, by using locally stored NFO/XML metadata to eliminate user interaction. If you would rather have SickRage prompt you to customize each show, then use the checkbox below.":[null,"SickRage peut ajouter des séries existantes, en utilisant les options actuelles, à l'aide des métadonnées NFO/XML stockées localement pour éviter à l’utilisateur d'intervenir. Si vous préférez que SickRage vous invite à personnaliser chaque série, utilisez la case ci-dessous."],"Prompt me to set settings for each show":[null,"M'inviter à définir des paramètres pour chaque série"],"Displaying folders within these directories which aren't already added to SickRage":[null,"Affiche les sous répertoires de ces répertoires qui n'ont pas encore été ajouté à SickRage"],"Submit":[null,"Valider"],"Find a show on theTVDB":[null,"Trouver une série sur theTVDB"],"Show retrieved from existing metadata":[null,"Série récupérée depuis les métadonnées existantes"],"All Indexers":[null,"Tous les indexeurs"],"Search":[null,"Chercher"],"This will only affect the language of the retrieved metadata file contents and episode filenames.":[null,"Ceci affectera seulement la langue du contenu du fichier de métadonnées récupérées et les noms de fichiers des épisodes."],"This <b>DOES NOT</b> allow SickRage to download non-english TV episodes!":[null,"Ceci <b>N'AUTORISE PAS</b> SickRage à télécharger les épisodes directement en français !"],"Pick the parent folder":[null,"Sélectionner le dossier de base"],"Pre-chosen Destination Folder":[null,"Dossier de destination pré-établie"],"Customize options":[null,"Personnaliser les options"],"Add Show":[null,"Ajouter la série"],"Skip Show":[null,"Ignorer la série"],"Sort By":[null,"Trier par"],"Name":[null,"Nom"],"Original":[null,"Original"],"Votes":[null,"Votes"],"Rating":[null,"Classement"],"Rating > Votes":[null,"Classement > Votes"],"Sort Order":[null,"Ordre de tri"],"Asc":[null,"Croissant"],"Desc":[null,"Décroissant"],"Fetching of IMDB Data failed. Are you online?":[null,"Échec de récupération des données IMDB. Êtes-vous en ligne ?"],"Exception":[null,"Exception"],"Select Trakt List":[null,"Sélectionnez la liste Trakt"],"Most Anticipated":[null,"Plus attendues"],"Trending":[null,"Tendances"],"Popular":[null,"Populaires"],"Most Watched":[null,"Plus visionnées"],"Most Played":[null,"Plus lues"],"Most Collected":[null,"Plus collectées"],"Recommended":[null,"Recommandées"],"Toggle navigation":[null,"Activer/Désactiver la navigation"],"Profile":[null,"Profil"],"JSONP":[null,"JSONP"],"Back to SickRage":[null,"Retour à SickRage"],"Parameters":[null,"Paramètres"],"Required":[null,"Obligatoire"],"Description":[null,"Description"],"Type":[null,"Type"],"Default value":[null,"Valeur par défaut"],"Allowed values":[null,"Valeurs autorisées"],"Playground":[null,"Aire de jeux"],"Clear":[null,"Vider"],"Yes":[null,"Oui"],"No":[null,"Non"],"season":[null,"saison"],"episode":[null,"épisode"],"Python Version":[null,"Version de Python"],"SSL Version":[null,"Version SSL"],"OS":[null,"OS"],"Locale":[null,"Local"],"User":[null,"Utilisateur"],"Program Folder":[null,"Dossier du programme"],"Config File":[null,"Fichier de configuration"],"Database File":[null,"Fichier de base de données"],"Cache Folder":[null,"Dossier du cache"],"Log Folder":[null,"Dossier du journal des événements"],"Arguments":[null,"Arguments"],"Web Root":[null,"Racine web"],"Website":[null,"Site internet"],"Wiki":[null,"Wiki"],"Source":[null,"Source"],"IRC Chat":[null,"Chat IRC"],"AnimeDB Settings":[null,"Paramètres d'AnimeDB"],"Look & Feel":[null,"Apparence"],"AniDB is non-profit database of anime information that is freely open to the public":[null,"AniDB est une base de données à but non lucratif spécialisée dans les animés, qui est librement ouverte au public"],"Enable":[null,"Activer"],"should SickRage use data from AniDB?":[null,"SickRage doit-il utiliser les données fournies par AniDB ?"],"AniDB Username":[null,"Nom d'utilisateur AniDB"],"username of your AniDB account":[null,"nom d'utilisateur de votre compte AniDB"],"AniDB Password":[null,"Mot de passe AniDB"],"password of your AniDB account":[null,"mot de passe de votre compte AniDB"],"AniDB MyList":[null,"Ma liste AniDB"],"do you want to add the PostProcessed episodes to the MyList?":[null,"Souhaitez-vous ajouter les épisodes post-traités à MyList ?"],"Look and Feel":[null,"Apparence"],"How should the anime functions show and behave.":[null,"Manière d'afficher les animés dans la liste des séries"],"Split show lists":[null,"Séparer la liste des séries"],"separate anime and normal shows in groups":[null,"Séparer la liste des animés de celle des séries"],"Split in tabs":[null,"Séparer en onglets"],"use tabs for when splitting show lists":[null,"Utiliser des onglets pour séparer la liste des séries"],"Restore":[null,"Restaurer"],"Backup your main database file and config.":[null,"Sauvegarder la base de données et la configuration."],"Select the folder you wish to save your backup file to":[null,"Sélectionner le dossier où enregistrer votre sauvegarde"],"Restore your main database file and config.":[null,"Restaurer la base de données et la configuration."],"Select the backup file you wish to restore":[null,"Sélectionner votre sauvegarde à restaurer"],"Misc":[null,"Divers"],"Interface":[null,"Interface"],"Advanced Settings":[null,"Paramètres avancés"],"Startup options. Indexer options. Log and show file locations.":[null,"Options de démarrage. Options de l'indexeur. Emplacements des fichiers du journal des événements et des séries."],"Some options may require a manual restart to take effect.":[null,"Certaines options peuvent exiger un redémarrage manuel pour être prises en compte."],"Default Indexer Language":[null,"Langue par défaut de l'Indexeur"],"for adding shows and metadata providers":[null,"pour l'ajout de série et les fournisseurs de metadonnées"],"Launch browser":[null,"Au lancement du navigateur"],"open the SickRage home page on startup":[null,"ouvrir la page d'accueil de SickRage au démarrage"],"Initial page":[null,"Page d'accueil"],"Shows":[null,"Séries"],"when launching SickRage interface":[null,"lors du lancement de l'interface SickRage"],"Choose hour to update shows":[null,"Choisir l'heure de mise à jour des séries"],"with information such as next air dates, show ended, etc. Use 15 for 3pm, 4 for 4am etc.":[null,"pour les informations comme les prochaines dates de sortie, la fin de la série, etc. Mettre 15 pour 15h00 et 4 pour 04h00 etc."],"note":[null,"remarque"],"minutes are randomized each time SickRage is started":[null,"Chaque fois que SickRage démarre, les minutes sont aléatoires"],"Send to trash for actions":[null,"Envoyer dans la corbeille :"],"when using show \"Remove\" and delete files":[null,"quand vous utilisez \"Retirer\" la série et supprimer les fichiers"],"on scheduled deletes of the oldest log files":[null,"supprimer les anciens fichiers du journal des événements via les tâches planifiées"],"selected actions use trash (recycle bin) instead of the default permanent delete":[null,"les actions sélectionnées mettent les fichiers dans la corbeille plutôt que de les supprimer définitivement"],"Log file folder location":[null,"Emplacement du dossier du journal des événements"],"Number of Log files saved":[null,"Nombre de fichiers du journal des événements sauvegardés"],"number of log files saved when rotating logs (default: 5) (REQUIRES RESTART)":[null,"nombre de fichiers du journal des événements sauvegardé pour la rotation (défaut: 5) (Redémarrage requis)"],"Size of Log files saved":[null,"Taille des fichiers du journal des événements sauvegardés"],"maximum size in MB of the log file (default: 1MB) (REQUIRES RESTART)":[null,"taille maximale en Mo du fichier du journal des événements (par défaut : 1MB) (nécessite le redémarrage)"],"Use initial indexer set to":[null,"L’indexeur initial choisi est"],"as the default selection when adding new shows":[null,"sélection par défaut lors de l'ajout de nouvelles séries"],"Timeout show indexer at":[null,"Timeout pour l'indexation des séries"],"seconds of inactivity when finding new shows (default:20)":[null,"secondes d'inactivité lors de la recherche de nouvelles séries (par défaut : 20)"],"Show root directories":[null,"Afficher les répertoires racines"],"where the files of shows are located":[null,"où sont situés les fichiers de la série"],"Save Changes":[null,"Sauvegarder les modifications"],"Options for software updates.":[null,"Options pour les mises à jour logicielles."],"Check software updates":[null,"Vérifier les mises à jour"],"and display notifications when updates are available. Checks are run on startup and at the frequency set below*":[null,"et afficher les notifications lorsque des mises à jour sont disponibles. Les vérifications sont exécutées au démarrage et à la fréquence définie ci-dessous *"],"Automatically update":[null,"Mettre à jour automatiquement"],"fetch and install software updates. Updates are run on startup and in the background at the frequency set below*":[null,"récupérer et installer les mises à jour. Les mises à jour sont exécutées au démarrage et en arrière-plan à la fréquence définie ci-dessous *"],"Check the server every*":[null,"Vérifier le serveur chaque*"],"hours for software updates (default:1)":[null,"intervalle de temps pour les mises à jour logiciel en heure (par défaut : 1)"],"Notify on software update":[null,"Notification lors des mises à jour de SickRage"],"send a message to all enabled notifiers when SickRage has been updated":[null,"envoyer un message à tous les services de notifications activés lorsque SickRage a été mis à jour"],"User Interface":[null,"Interface Utilisateur"],"Options for visual appearance.":[null,"Options pour l'aspect visuel."],"Interface Language":[null,"Langue de l'interface"],"System Language":[null,"Langue du système"],"for appearance to take effect, save then refresh your browser":[null,"pour que le changement soit pris en compte, sauvegardez et rafraîchissez votre navigateur"],"Display theme":[null,"Thème de l'affichage"],"Dark":[null,"Sombre"],"Light":[null,"Clair"],"Use a background image":[null,"Utiliser une image d'arrière-plan"],"use a custom image as background for SickRage":[null,"Utiliser une image d'arrière-plan personnalisée pour SickRage"],"Background Path":[null,"Chemin pour l'arrière-plan"],"Path to the background image":[null,"Chemin de l'image d'arrière-plan"],"Show fanart in the background":[null,"Voir le fanart en arrière-plan"],"on the show summary page":[null,"sur la page du résumé de la série"],"Fanart transparency":[null,"Transparence du fanart"],"transparency of the fanart in the background":[null,"Transparence du fanart en arrière-plan"],"Use a custom stylesheet file":[null,""],"use a custom .css file to style SickRage (for advanced users)":[null,""],"Stylesheet File Path":[null,""],"Path to the stylesheet (.css) file":[null,""],"Show all seasons":[null,"Afficher toutes les saisons"],"Sort with \"The\", \"A\", \"An\"":[null,"Trier en tenant compte de \"Le\", \"Un\", \"Une\", \"The\""],"include articles (\"The\", \"A\", \"An\") when sorting show lists":[null,"inclut les articles (\"Le\", \"Un\", \"Une\", \"The\") lors du tri de la liste des séries"],"Missed episodes range":[null,"Période de recherche des épisodes manquants"],"set the range in days of the missed episodes in the Schedule page":[null,"régler l’intervalle en jours des épisodes manqués dans le Planning"],"Display fuzzy dates":[null,"Afficher les dates non confirmées"],"move absolute dates into tooltips and display e.g. \"Last Thu\", \"On Tue\"":[null,"déplacer les dates absolues dans les info-bulles et afficher par exemple « Jeudi dernier\",\"Mardi\""],"Trim zero padding":[null,"Supprimer les zéros inutiles"],"remove the leading number \"0\" shown on hour of day, and date of month":[null,"supprimer le premier « 0 » sur l'heure de la journée et la date du mois"],"Date style":[null,"Format de date"],"Use System Default":[null,"Utiliser celui du système par défaut"],"Time style":[null,"Format de l'heure"],"seconds are only shown on the History page":[null,"les secondes ne s'affichent que sur la page d'historique"],"Timezone":[null,"Fuseau horaire"],"Local":[null,"Local"],"Network":[null,"Diffuseur"],"display dates and times in either your timezone or the shows network timezone":[null,"afficher les dates et les heures dans votre fuseau horaire ou dans le fuseau horaire de la chaîne diffusant la série"],"use local timezone to start searching for episodes minutes after show ends (depends on your dailysearch frequency)":[null,"utiliser le fuseau horaire local pour lancer la recherche d'épisodes quelques minutes après que l'épisode soit terminé (dépend de la fréquence de recherche journalière)"],"Download url":[null,"Url de téléchargement"],"URL where the shows can be downloaded.":[null,"URL où les séries peuvent être téléchargées."],"Web Interface":[null,"Interface Web"],"it is recommended that you enable a username and password to secure SickRage from being tampered with remotely.":[null,"il est recommandé de définir un nom d'utilisateur et mot de passe pour sécuriser l’accès à distance de SickRage."],"these options require a manual restart to take effect.":[null,"ces options nécessitent un redémarrage manuel pour être prises en compte."],"API key":[null,"Clé API"],"used to give 3rd party programs limited access to SickRage":[null,"utilisée pour donner un accès limité à SickRage à des logiciels tiers"],"you can try all the features of the API":[null,"vous pouvez essayer toutes les fonctionnalités de l'API"],"here":[null,"ici"],"HTTP logs":[null,"Journaux HTTP"],"enable logs from the internal Tornado web server":[null,"activer le journal des événements du serveur web Tornado"],"HTTP username":[null,"Utilisateur HTTP"],"set blank for no login":[null,"laisser vide pour désactiver la connexion"],"HTTP password":[null,"Mot de passe HTTP"],"blank = no authentication":[null,"vide = pas d'authentification"],"HTTP port":[null,"Port HTTP"],"web port to browse and access SickRage (default:8081)":[null,"port utilisé pour accéder à l'interface web de SickRage (par défaut : 8081)"],"Notify on login":[null,"Notification lors de la connexion"],"enable to be notified when a new login happens in webserver":[null,"activer pour être notifié lors d'une nouvelle connexion au serveur web"],"Listen on IPv6":[null,"Écouter sur IPv6"],"attempt binding to any available IPv6 address":[null,"essayer de se connecter à n'importe quelle adresse IPv6 disponible"],"Enable HTTPS":[null,"Activer HTTPS"],"enable access to the web interface using a HTTPS address":[null,"activer la connexion à l'interface web à partir d'une adresse HTTPS"],"HTTPS certificate":[null,"Certificat HTTPS"],"file name or path to HTTPS certificate":[null,"nom du fichier ou chemin vers le certificat HTTPS"],"HTTPS key":[null,"Clé HTTPS"],"file name or path to HTTPS key":[null,"nom du fichier ou chemin vers la clé HTTPS"],"Reverse proxy headers":[null,"En-têtes du reverse proxy"],"accept the following reverse proxy headers (advanced)...":[null,"accepter les en-têtes du reverse proxy suivantes (avancé)..."],"(X-Forwarded-For, X-Forwarded-Host, and X-Forwarded-Proto)":[null,"(X-Forwarded-For, X-Forwarded-Host, et X-Forwarded-Proto)"],"CPU throttling":[null,"Charge CPU"],"Normal (default). High is lower and Low is higher CPU use":[null,"Normal (par défaut). Haut utilise moins le CPU que Bas"],"Anonymous redirect":[null,"Redirection anonyme"],"backlink protection via anonymizer service, must end in \"?\"":[null,"lien d'anonymisation , doit se terminer par \"?\""],"Enable debug":[null,"Activer le débogage"],"enable debug logs":[null,"Activer les journaux de débogage"],"Verify SSL Certs":[null,"Vérifier les certificats SSL"],"verify SSL Certificates (Disable this for broken SSL installs (Like QNAP))":[null,"vérification des certificats SSL (désactiver ceci pour les installations avec SSL cassé (comme QNAP))"],"No Restart":[null,"Pas de redémarrage"],"only shutdown when restarting SR":[null,"arrêter seulement quand SR redémarre"],"only select this when you have external software restarting SR automatically when it stops (like FireDaemon)":[null,"Ne sélectionner cette option que si vous avez un service externe qui redémarre SickRage automatiquement quand il s'arrête (comme FireDaemon)"],"Encrypt passwords":[null,"Crypter les mots de passe"],"in the <code>config.ini</code> file":[null,"dans le fichier <code>config.ini</code>"],"warning":[null,"avertissement"],"passwords must only contain":[null,"Les mots de passe doivent contenir uniquement"],"ASCII characters":[null,"caractères ASCII"],"Unprotected calendar":[null,"Calendrier public"],"allow subscribing to the calendar without user and password":[null,"permettre de s’abonner au calendrier sans utilisateur et mot de passe"],"some services like Google Calendar only work this way":[null,"seulement certains services comme Google Agenda fonctionnent de cette façon"],"Google Calendar Icons":[null,"Icônes de Google Agenda"],"show an icon next to exported calendar events in Google Calendar":[null,"afficher une icône à côté des événements exportés dans Google Agenda"],"Proxy host":[null,"Hôte proxy"],"blank to disable or proxy to use when connecting to providers":[null,"proxy à utiliser pour se connecter aux fournisseurs, laisser vide pour désactiver"],"also use global proxy setting for indexers (tvdb, xem, anidb, etc.)":[null,"Utiliser également les paramètres généraux du proxy pour les indexeurs (tvdb, xem, anidb, etc.)"],"Skip Remove Detection":[null,"Ignorer la détection du déplacement"],"skip detection of removed files":[null,"ignorer la détection des fichiers supprimés"],"if disabled the episode will be set to the default deleted status":[null,"Si désactivé, l'épisode aura le statut \"supprimé\" par défaut"],"Default deleted episode status":[null,"Statut par défaut des épisodes supprimés"],"define the status to be set for media file that has been deleted.":[null,"définir le statut d'un fichier qui vient d'être supprimé."],"Archived option will keep previous downloaded quality":[null,"l'option \"Archivé\" conservera la qualité déjà téléchargée"],"example: Downloaded (1080p WEB-DL) ==> Archived (1080p WEB-DL)":[null,"exemple : Téléchargé (1080p WEB-DL) ==> Archivé (1080p WEB-DL)"],"Options for github related features.":[null,"Options pour les fonctions liées à github."],"Branch version":[null,"Version de la branche"],"error: No branches found.":[null,"erreur : Aucune branche trouvée."],"select branch to use (restart required)":[null,"sélectionnez la branche à utiliser (redémarrage requis)"],"Authorization Type":[null,"Type d'Autorisation"],"Username and password":[null,"Nom d'utilisateur et mot de passe"],"Personal access token":[null,"Jeton d'accès personnel"],"You must use a personal access token if you're using \"two-factor authentication\" on GitHub.":[null,"Vous devez utiliser un jeton d'accès personnel si vous avez activé \"l'authentification en deux étapes\" sur GitHub."],"GitHub username":[null,"Nom d'utilisateur GitHub"],"*** (REQUIRED FOR SUBMITTING ISSUES) ***":[null,"*** (REQUIS POUR SOUMETTRE DES FAITS TECHNIQUES) ***"],"GitHub password":[null,"Mot de passe GitHub"],"GitHub personal access token":[null,"Jeton d'accès personnel pour GitHub"],"Generate Token":[null,"Générer un jeton"],"Manage Tokens":[null,"Gestion des jetons"],"GitHub remote for branch":[null,"Github de la branche"],"access repo configured remotes (save then refresh browser)":[null,"accès au dépôt à distance configuré (enregistrez puis actualisez votre navigateur)"],"default":[null,"par défaut"],"origin":[null,"origine"],"Git executable path":[null,"Chemin de l'exécutable Git"],"only needed if OS is unable to locate git from env":[null,"à utiliser uniquement si le système d'exploitation n'arrive pas à localiser git depuis l'environnement"],"Git reset":[null,"Git reset"],"removes untracked files and performs a hard reset on git branch automatically to help resolve update issues":[null,"supprime les fichier sans suivi et effectue une remise à zéro à partir de la branche git automatiquement pour aider à résoudre les problème de mise à jour"],"Home Theater / NAS":[null,"Home Cinéma / NAS"],"Devices":[null,"Appareils"],"Social":[null,"Social"],"A free and open source cross-platform media center and home entertainment system software with a 10-foot user interface designed for the living-room TV.":[null,"Un système multimédia multiplateformes gratuit et libre avec une interface de 10 pouces conçue pour les téléviseurs de salon."],"send KODI commands?":[null,"Envoyer des commandes à KODI ?"],"Always on":[null,"Toujours activé"],"log errors when unreachable?":[null,"journaliser les erreurs lorsque la connexion est impossible ?"],"Notify on snatch":[null,"Notifier la récupération"],"send a notification when a download starts?":[null,"envoyer une notification quand un téléchargement démarre ?"],"Notify on download":[null,"Notifier les téléchargements"],"send a notification when a download finishes?":[null,"envoyer une notification quand un téléchargement se termine ?"],"Notify on subtitle download":[null,"Notifier le téléchargement de sous-titres"],"send a notification when subtitles are downloaded?":[null,"envoyer une notification quand un sous-titre est téléchargé ?"],"Update library":[null,"Mettre à jour la bibliothèque "],"update KODI library when a download finishes?":[null,"Mettre à jour la bibliothèque KODI lorsqu'un téléchargement est terminé ?"],"Full library update":[null,"Mise à jour de l'intégralité de la bibliothèque"],"perform a full library update if update per-show fails?":[null,"effectuer une mise à jour de l'intégralité de la bibliothèque en cas d'échec de la mise à jour par séries ?"],"Only update first host":[null,"Mettre à jour uniquement le premier hôte"],"only send library updates to the first active host?":[null,"envoyer uniquement la mise à jour de bibliothèque au premier hôte actif ?"],"KODI IP:Port":[null,"KODI IP: Port"],"host running KODI (eg. 192.168.1.100:8080)":[null,"Serveur KODI (ex. 192.168.1.100:8080)"],"(multiple host strings must be separated by commas)":[null,"(Séparer chaque nom de serveur par une virgule)"],"Username":[null,"Nom d’utilisateur"],"username for your KODI server (blank for none)":[null,"nom d'utilisateur du serveur KODI (vide si aucun)"],"Password":[null,"Mot de passe "],"password for your KODI server (blank for none)":[null,"mot de passe du serveur KODI (vide si aucun)"],"Click below to test.":[null,"Cliquez ci-dessous pour tester."],"Experience your media on a visually stunning, easy to use interface on your Mac connected to your TV. Your media library has never looked this good!":[null,"Vivez vos séries de manière éblouissante, grâce à une interface facile d’accès sur votre mac connecté à votre télé. Jamais votre médiathèque n'a autant été mise en valeur!"],"For sending notifications to Plex Home Theater (PHT) clients, use the KODI notifier with port <b>3005</b>.":[null,"Pour envoyer des notifications aux clients de Plex Home Theater (PHT), utilisez la notification KODI avec le port <b>3005</b>."],"send Plex Media Server library updates?":[null,"envoyer des mises à jour à la bibliothèque de Plex Media Server ?"],"Plex Media Server Auth Token":[null,"Jeton d'authentification de Plex Media Server"],"auth token used by Plex":[null,"jeton d'authentification utilisé par Plex"],"Update Library":[null,"Mettre à jour la bibliothèque"],"update Plex Media Server library when a download finishes":[null,"mettre à jour la bibliothèque de Plex Media Server quand un téléchargement se termine"],"Plex Media Server IP:Port":[null,"Plex Media Server IP: port"],"one or more hosts running Plex Media Server<br/>(eg. 192.168.1.1:32400, 192.168.1.2:32400)":[null,"un ou plusieurs hôtes exécute Plex Media Server<br/>(ex. 192.168.1.1:32400, 192.168.1.2:32400)"],"HTTPS":[null,"HTTPS"],"use https for plex media server requests?":[null,"utiliser le https pour les requêtes Plex Media Server ?"],"Click below to test Plex Media Server(s)":[null,"Cliquer ci-dessous pour tester Plex Media Server(s)"],"Test Plex Media Server":[null,"Test Plex Media Server"],"Plex Home Theater":[null,"Plex Home Theater"],"send Plex Home Theater notifications?":[null,"envoyer des notifications à Plex Home Theater ?"],"Plex Home Theater IP:Port":[null,"Plex Home Theater IP:Port"],"one or more hosts running Plex Home Theater<br>(eg. 192.168.1.100:3000, 192.168.1.101:3000)":[null,"un ou plusieurs serveurs Plex Home Theater<br>(eg. 192.168.1.100:3000, 192.168.1.101:3000)"],"Click below to test Plex Home Theater(s)":[null,"Cliquez ci-dessous pour tester Plex Home Theater(s)"],"Test Plex Home Theater":[null,"Test de Plex Home Theater"],"some Plex Home Theaters <b class=\"boldest\">do not</b> support notifications e.g. Plexapp for Samsung TVs":[null,"certains Plex Home Theater <b class=\"boldest\">ne supportent pas</b> la prise en charge des notifications ex. Plexapp pour TV Samsung"],"Emby":[null,"Emby"],"A home media server built using other popular open source technologies.":[null,"Un serveur multimédia créé à l'aide d'autres technologies open source populaires."],"send update commands to Emby?":[null,"envoyer des commandes de mise à jour à Emby ?"],"Emby IP:Port":[null,"Emby IP: port"],"host running Emby (eg. 192.168.1.100:8096)":[null,"Serveur Emby (ex. 192.168.1.100:8096)"],"Emby API Key":[null,"Clé API pour Emby"],"Networked Media Jukebox":[null,"Networked Media Jukebox"],"The Networked Media Jukebox, or NMJ, is the official media jukebox interface made available for the Popcorn Hour 200-series.":[null,"Le Networked Media Jukebox ou NMJ, est l'interface de juke-box officielle disponible sur le Popcorn Hour 200-series."],"send update commands to NMJ?":[null,"envoyer des commandes de mise à jour à NMJ ?"],"Popcorn IP address":[null,"Adresse IP de Popcorn"],"IP address of Popcorn 200-series (eg. 192.168.1.100)":[null,"Adresse IP de Popcorn 200-series (eg. 192.168.1.100)"],"Get settings":[null,"Obtention des paramètres"],"Get Settings":[null,"Obtenir les paramètres"],"the Popcorn Hour device must be powered on and NMJ running.":[null,"le périphérique Popcorn Hour doit être allumé et NMJ en fonctionnement."],"NMJ database":[null,"Base de données NMJ"],"automatically filled via the 'Get Settings' button.":[null,"remplir automatiquement via le bouton 'Obtenir les paramètres'."],"NMJ mount url":[null,"Url de NMJ"],"Networked Media Jukebox v2":[null,"Networked Media Jukebox v2"],"The Networked Media Jukebox, or NMJv2, is the official media jukebox interface made available for the Popcorn Hour 300 & 400-series.":[null,"Le Networked Media Jukebox ou NMJv2, est l'interface officielle de juke-box disponible sur les séries 300 & 400 des Popcorn Hour."],"send update commands to NMJv2?":[null,"envoyer des commandes de mise à jour à NMJv2?"],"IP address of Popcorn 300/400-series (eg. 192.168.1.100)":[null,"Adresse IP de Popcorn 300/400-series (ex. 192.168.1.100)"],"Database location":[null,"Emplacement de la base de données"],"Database instance":[null,"Instance de la base de données"],"adjust this value if the wrong database is selected.":[null,"régler cette valeur si la mauvaise base de données est sélectionnée."],"Find database":[null,"Trouver la base de données"],"Find Database":[null,"Trouver la base de données"],"the Popcorn Hour device must be powered on.":[null,"L'appareil Popcorn Hour doit être allumé."],"NMJv2 database":[null,"Base de données NMJv2"],"automatically filled via the 'Find Database' buttons.":[null,"Remplir automatiquement via le bouton 'Trouver la base de données'."],"Synology":[null,"Synology"],"The Synology DiskStation NAS.":[null,"Le Synology DiskStation NAS."],"Synology Indexer is the daemon running on the Synology NAS to build its media database.":[null,"Synology indexer, le deamon qui tourne sur le NAS Synology, permet la construction d'une base de données des médias."],"send Synology notifications?":[null,"envoyer des notifications à Synology ?"],"requires SickRage to be running on your Synology NAS.":[null,"nécessite que SickRage soit lancé sur votre NAS Synology."],"Synology Indexer":[null,"Indexeur Synology"],"Synology Notifier is the notification system of Synology DSM":[null,"Synology Notifier est le système de notification de Synology DSM"],"send notifications to the Synology Notifier?":[null,"envoyer des notifications à Synology Notifier ?"],"pyTivo":[null,"pyTivo"],"pyTivo is both an HMO and GoBack server. This notifier will load the completed downloads to your Tivo.":[null,"pyTivo est à la fois un HMO et un serveur GoBack. Ce service chargera le téléchargement complété vers votre Tivo."],"send notifications to pyTivo?":[null,"envoyer des notifications à pyTivo ?"],"requires the downloaded files to be accessible by pyTivo.":[null,"requiert les fichiers téléchargés pour être accessible par pyTivo."],"pyTivo IP:Port":[null,"pyTivo IP: port"],"host running pyTivo (eg. 192.168.1.1:9032)":[null,"hôte exécutant pyTivo (par exemple. 192.168.1.1:9032)"],"pyTivo share name":[null,"Nom de partage pyTivo"],"value used in pyTivo Web Configuration to name the share.":[null,"valeur utilisée dans la configuration web de pyTivo pour nommer le partage."],"Tivo name":[null,"Nom Tivo"],"(Messages & Settings > Account & System Information > System Information > DVR name)":[null,"(Messages & Réglages > Compte & Information Système > Information Système > Nom du DVR)"],"Growl":[null,"Growl"],"A cross-platform unobtrusive global notification system.":[null,"Un système de notification multi-plateformes non intrusif."],"send Growl notifications?":[null,"envoyer des notifications Growl?"],"Growl IP:Port":[null,"Growl IP:Port"],"host running Growl (eg. 192.168.1.100:23053)":[null,"hôte exécutant Growl (par exemple. 192.168.1.100:23053)"],"may leave blank if SickRage is on the same host.":[null,"ne pas remplir si Sickrage est en localhost."],"otherwise Growl <b>requires</b> a password to be used.":[null,"Dans le cas contraire, Growl <b>nécessite</b> un mot de passe pour être utilisé."],"Click below to register and test Growl, this is required for Growl notifications to work.":[null,"Cliquez ci-dessous pour vous inscrire et tester Growl, ceci est nécessaire pour que les notifications Growl fonctionnent."],"Register Growl":[null,"S'inscrire sur Growl"],"Prowl":[null,"Prowl"],"A Growl client for iOS.":[null,"Un client Growl pour iOS."],"send Prowl notifications?":[null,"envoyer des notifications Prowl ?"],"Prowl Message Title":[null,"Titre du message Prowl"],"Global Prowl API key(s)":[null,"Clé API Prowl"],"Prowl API(s) listed here, separated by commas if applicable, will<br> receive notifications for <b>all</b> shows. Your Prowl API key is available at:":[null,"Les clés API Prowl listées ici, séparées par des virgules, <br> recevront des notifications pour<b> toutes</b> les séries. Votre clé API Prowl est disponible à :"],"(this field may be blank except when testing.)":[null,"(ce champ doit rester vide sauf lors de tests.)"],"Show notification list":[null,"Voir la liste de notification"],"-- Select a Show --":[null,"-- Sélectionner une série --"],"Configure per-show notifications here by entering Prowl API key(s), separated by commas, '\n 'after selecting a show in the drop-down box. Be sure to activate the 'Save for this show' '\n 'button below after each entry.":[null,"Configurez les notifications par série en entrant la(les) clé(s) API Prowl séparée(s) par des virgules,'\n\n'en sélectionnant une série dans la liste déroulante. N'oubliez pas de cliquer sur \"Enregistrer pour cette série\" '\n 'pour chaque entrée."],"Save for this show":[null,"Enregistrer pour cette série"],"Prowl priority":[null,"Priorité Prowl"],"Very Low":[null,"Très bas"],"Moderate":[null,"Modéré"],"Normal":[null,"Normal"],"High":[null,"Élevé"],"Emergency":[null,"Urgence"],"priority of Prowl messages from SickRage.":[null,"priorité des messages Prowl depuis SickRage."],"Libnotify":[null,"Libnotify"],"The standard desktop notification API for Linux/*nix systems. This notifier will only function if the pynotify module is installed (Ubuntu/Debian package <a href=\"apt:python-notify\">python-notify</a>).":[null,"L'API de notification standard pour les systèmes Linux/*nix. Ce notificateur ne fonctionnera que si le module pynotify est installé (paquet Ubuntu/Debian <a href=\"apt:python-notify\">python-notify</a>)."],"send Libnotify notifications?":[null,"envoyer des notifications Libnotify?"],"Pushover":[null,"Pushover"],"Pushover makes it easy to send real-time notifications to your Android and iOS devices.":[null,"Pushover rend facile d'envoyer des notifications en temps réel à vos périphériques Android et iOS."],"send Pushover notifications?":[null,"envoyer des notifications Pushover?"],"Pushover key":[null,"Clé Pushover"],"user key of your Pushover account":[null,"clé d'utilisateur de votre compte Pushover"],"Pushover API key":[null,"Clé API Pushover"],"click here":[null,""]," to create a Pushover API key":[null,""],"Pushover devices":[null,"Périphériques Pushover"],"comma separated list of pushover devices you want to send notifications to":[null,"liste des appareils, séparée par une virgule, à laquelle vous souhaitez envoyer des notifications via Pushover"],"Pushover notification sound":[null,"Son de la notification Pushover"],"Bike":[null,"Vélo"],"Bugle":[null,"Clairon"],"Cash Register":[null,"Caisse enregistreuse"],"Classical":[null,"Classique"],"Cosmic":[null,"Cosmique"],"Falling":[null,"Chute"],"Gamelan":[null,"Jeu en réseau"],"Incoming":[null,"Entrant"],"Intermission":[null,"Entracte"],"Magic":[null,"Magique"],"Mechanical":[null,"Mécanique"],"Piano Bar":[null,"Piano-Bar"],"Siren":[null,"Sirène"],"Space Alarm":[null,"Sirène d'alarme"],"Tug Boat":[null,"Remorqueur"],"Alien Alarm (long)":[null,"Alarme Alien (long)"],"Climb (long)":[null,"Montée (long)"],"Persistent (long)":[null,"Persistant (long)"],"Pushover Echo (long)":[null,"Echo Pushover (long)"],"Up Down (long)":[null,"Dessus Dessous (long)"],"None (silent)":[null,"Aucun (silencieux)"],"Device specific":[null,"Spécifique au périphérique"],"choose notification sound to use":[null,"choisir le son de la notification à utiliser"],"Pushover priority":[null,"Priorité Pushover"],"Choose priority to use":[null,"Choisissez la priorité à utiliser"],"Boxcar 2":[null,"Boxcar 2"],"Read your messages where and when you want them!":[null,"Lisez vos messages où et quand vous le souhaitez !"],"send Boxcar notifications?":[null,"envoyer des notifications Boxcar ?"],"Boxcar2 access token":[null,"Jeton d'authentification Boxcar 2"],"access token for your Boxcar account.":[null,"jeton d'authentification de votre compte Boxcar."],"NMA":[null,"NMA"],"Notify My Android":[null,"Notifier Mon Android"],"Notify My Android is a Prowl-like Android App and API that offers an easy way to send notifications from your application directly to your Android device.":[null,"Notify My Android est une application android et une API qui permet d'envoyer facilement des notifications vers votre appareil android."],"send NMA notifications?":[null,"envoyer des notifications NMA ?"],"NMA API key":[null,"Clé de l'API NMA"],"(multiple keys must be separated by commas, up to a maximum of 5)":[null,"(plusieurs clés doivent être séparées par des virgules, 5 maximum)"],"NMA priority":[null,"Priorité de NMA"],"priority of NMA messages from SickRage.":[null,"priorité des messages NMA depuis SickRage."],"Pushalot":[null,"Pushalot"],"Pushalot is a platform for receiving custom push notifications to connected devices running Windows Phone or Windows 8.":[null,"Pushalot est une plateforme pour recevoir des notifications sur des périphériques connectés fonctionnant avec Windows Phone ou Windows 8."],"send Pushalot notifications ?":[null,"envoyer des notifications Pushalot ?"],"Pushalot authorization token":[null,"Jeton d'authentification Pushalot"],"authorization token of your Pushalot account.":[null,"Jeton d'authentification de votre compte Pushalot."],"Pushbullet":[null,"Pushbullet"],"Pushbullet is a platform for receiving custom push notifications to connected devices running Android/iOS and desktop browsers such as Chrome, Firefox or Opera.":[null,"Pushbullet est une plateforme de réception de notifications personnalisées sur les périphériques connectés Android/iOS ou les navigateurs internet comme Chrome, Firefox ou Opera."],"send Pushbullet notifications?":[null,"envoyer des notifications Pushbullet?"],"Pushbullet API key":[null,"Clé API Pushbullet"],"API key of your Pushbullet account":[null,"Clé API de votre compte Pushbullet"],"Pushbullet devices":[null,"Périphériques Pushbullet"],"Update device list":[null,"Mise à jour de la liste des périphériques"],"Pushbullet channels":[null,"Chaînes Pushbullet"],"Free Mobile":[null,"Free Mobile"],"Free Mobile is a famous French cellular network provider.<br> It provides to their customer a free SMS API.":[null,"Free Mobile est un opérateur de téléphonie mobile Français.<br> Il fourni a ses abonnés une API SMS gratuite."],"send SMS notifications?":[null,"envoyer des notifications par SMS ?"],"send a SMS when a download starts?":[null,"envoyer un SMS quand un téléchargement démarre ?"],"send a SMS when a download finishes?":[null,"envoyer un SMS quand un téléchargement se termine ?"],"send a SMS when subtitles are downloaded?":[null,"envoyer un SMS quand les sous-titres sont téléchargés ?"],"Free Mobile customer ID":[null,"Identifiant client Free Mobile"],"it's your Free Mobile customer ID (8 digits)":[null,"il s'agit de votre identifiant client Free Mobile (8 chiffres)"],"Free Mobile API key":[null,"Clé API Free Mobile"],"find your API key in your customer portal.":[null,"Récupérez votre clé API sur le portail client."],"Click below to test your settings.":[null,"Cliquez ici pour tester vos paramètres."],"Telegram":[null,"Telegram"],"Telegram is a cloud-based instant messaging service.":[null,"Telegram est un service de messagerie instantané sur le cloud."],"send Telegram notifications?":[null,"Envoyer des notifications Telegram ?"],"send a message when a download starts?":[null,"envoyer un message lorsqu'un téléchargement démarre ?"],"send a message when a download finishes?":[null,"envoyer un message lorsqu'un téléchargement se termine ?"],"send a message when subtitles are downloaded?":[null,"envoyer un message lorsque les sous-titres sont téléchargés ?"],"User/group ID":[null,"ID d'utilisateur/groupe"],"contact @myidbot on Telegram to get an ID":[null,"contactez @myidbot sur Telegram pour obtenir un ID"],"Bot API token":[null,"Jeton API Bot"],"contact @BotFather on Telegram to set up one":[null,"contactez @BotFather sur Telegram pour en mettre un en place"],"Join":[null,"Join"],"Join all of your devices together!":[null,"Unissez tous vos appareils ensemble !"],"send Join notifications?":[null,"envoyer des notifications Join ?"],"Device ID":[null,"ID de l'appareil"],"per device specific id":[null,"par l'id spécifique de l'appareil"]," to create a Join API key":[null,""],"Twilio":[null,"Twilio"],"Twilio is a webservice API that allows you to communicate directly with a mobile number. This notifier will send a text directly to your mobile device.":[null,"Twilio est une API qui vous permet de communiquer directement avec un numéro de téléphone. Cette notification se fera directement via un message sur votre téléphone."],"should SickRage text your mobile device?":[null,"Est-ce que Sickrage doit vous envoyer un message sur votre téléphone ?"],"Twilio Account SID":[null,"ID du compte Twilio"],"account SID of your Twilio account.":[null,"ID de votre compte Twilio"],"Twilio Auth Token":[null,"Jeton d'authentification Twilio"],"Twilio Phone SID":[null,"ID du téléphone utilisé sur Twilio"],"phone SID that you would like to send the sms from":[null,"ID du téléphone à partir duquel envoyer les sms"],"Your phone number":[null,"Votre numéro de téléphone"],"phone number that will receive the sms. Please use the format +1-###-###-####":[null,"numéro de téléphone qui recevra les SMS. Merci d'utiliser le format suivant +1-###-###-####"],"Twitter":[null,"Twitter"],"A social networking and microblogging service, enabling its users to send and read other users' messages called tweets.":[null,"Un réseau social et service de microblogging, permet aux utilisateurs d'envoyer et de lire les messages des autres utilisateurs appelés tweets."],"should SickRage post tweets on Twitter?":[null,"Est-ce que SickRage doit poster des tweets sur Twitter ?"],"you may want to use a secondary account.":[null,"vous pouvez utiliser un compte secondaire."],"send direct message":[null,"envoi de message privé"],"send a notification via Direct Message, not via status update":[null,"envoyer une notification par Message Direct (DM) et non par une mise à jour du statut"],"send DM to":[null,"envoyer un DM à"],"Twitter account to send Direct Messages to (must follow you)":[null,"Compte Twitter pour envoyer des Messages Directs (on doit vous suivre)"],"Step One":[null,"Première étape"],"Request Authorization":[null,"Demander l'autorisation"],"Click the \"Request Authorization\" button.<br> This will open a new page containing an auth key.<br> <b>note:</b> if nothing happens check your popup blocker.":[null,"Cliquer sur le bouton \"Demander l’autorisation\". <br>Ça ouvrira une nouvelle fenêtre qui contient la clé d'authentification.<br> <b>note:</b> si rien ne se passe, vérifiez votre bloqueur de popup."],"Step Two":[null,"Deuxième étape"],"Enter the key Twitter gave you below, and click \"Verify Key\".":[null,"Entrez ci-dessous la clé que Twitter vous a donné et cliquez sur \"Vérifier la clé\"."],"Trakt":[null,"Trakt"],"Trakt helps keep a record of what TV shows and movies you are watching. Based on your favorites, Trakt recommends additional shows and movies you'll enjoy!":[null,"Trakt permet de maintenir une base de données de séries TV et de films que vous regardez. En se basant sur vos favoris, Trakt vous recommandera d'autres séries ou films que vous apprécierez !"],"send Trakt.tv notifications?":[null,"envoyer des notifications à Trakt.tv ?"],"username of your Trakt account.":[null,"nom d'utilisateur de votre compte Trakt."],"Trakt PIN":[null,"Trakt PIN"],"Get Trakt PIN":[null,"Récupérer le PIN Trakt"],"PIN code to authorize SickRage to access Trakt on your behalf.":[null,"Code PIN pour autoriser SickRage d’accéder à Trakt en votre nom."],"API Timeout":[null,"API Timeout"],"seconds to wait for Trakt API to respond. (Use 0 to wait forever)":[null,"Nombre de seconde à attendre pour que l'API de Trakt réponde. (Saisir 0 pour attendre indéfiniment)"],"Default indexer":[null,"Indexeur par défaut"],"Sync libraries":[null,"Synchroniser les bibliothèques"],"sync your SickRage show library with your trakt show library.":[null,"synchroniser votre bibliothèque SickRage avec celle de Trakt."],"Remove Episodes From Collection":[null,"Supprimer les épisodes de la collection"],"remove an episode from your Trakt Collection if it is not in your SickRage Library.":[null,"Retirer un épisode de votre collection Trakt s'il n'est pas dans votre bibliothèque SickRage."],"Sync watchlist":[null,"Synchroniser votre liste à voir"],"sync your SickRage show watchlist with your trakt show watchlist (either Show and Episode).":[null,"synchroniser votre liste de séries à voir de SickRage avec celle de votre compte Trakt (séries et épisodes)."],"episode will be added on watch list when wanted or snatched and will be removed when downloaded ":[null,"L’épisode sera ajouté sur la liste \"à voir\" quand il sera recherché ou récupéré et sera retiré quand il sera téléchargé "],"Watchlist add method":[null,"Méthode d'ajout à la liste à voir"],"Skip All":[null,"Tout ignorer"],"Download Pilot Only":[null,"Télécharger l'épisode pilote uniquement"],"Get whole show":[null,"Récupérer toute la série"],"method in which to download episodes for new shows.":[null,"mode par défaut pour les épisodes des séries récemment ajoutée."],"Remove episode":[null,"Supprimer l'épisode"],"remove an episode from your watchlist after it is downloaded.":[null,"supprimer un épisode de votre liste de suivi une fois téléchargé."],"Remove series":[null,"Supprimer la série"],"remove the whole series from your watchlist after any download.":[null,"supprimer toute la série de votre liste de suivi après le téléchargement."],"Remove watched show":[null,"Supprimer les séries regardées"],"remove the show from sickrage if it's ended and completely watched":[null,"supprimer la série de Sickrage si elle est terminée et entièrement regardée"],"Start paused":[null,"Démarrer en suspend"],"shows grabbed from your trakt watchlist start paused.":[null,"les séries ajoutées depuis Trakt démarrent en suspend."],"Trakt blackList name":[null,"Liste noire pour Trakt"],"name (slug) of list on Trakt for blacklisting show on 'Add Trending Show' & 'Add Recommended Shows' pages":[null,"nom (slug) de liste sur Trakt qui sert de blacklist pour les séries qui se trouvent sur les pages 'Ajouter une série tendance' & 'Ajouter une série recommandée'"],"Email":[null,"Mail "],"Allows configuration of email notifications on a per show basis.":[null,"Permettre la configuration des notifications par mail pour chaque série."],"send email notifications?":[null,"Envoyer des notifications par mail ?"],"SMTP host":[null,"Hôte SMTP"],"hostname of your SMTP email server.":[null,"Nom d'hôte de votre serveur de messagerie SMTP."],"SMTP port":[null,"Port SMTP"],"port number used to connect to your SMTP host.":[null,"port utilisé pour se connecter au serveur SMTP."],"SMTP from":[null,"SMTP de"],"sender email address, some hosts require a real address.":[null,"adresse mail émettrice, certains serveurs requièrent une adresse réelle."],"Use TLS":[null,"Utiliser TLS"],"check to use TLS encryption.":[null,"cocher pour utiliser le cryptage TLS."],"SMTP user":[null,"Utilisateur SMTP"],"(optional) your SMTP server username.":[null,"(facultatif) votre nom d'utilisateur du serveur SMTP."],"SMTP password":[null,"Mot de passe SMTP"],"(optional) your SMTP server password.":[null,"(facultatif) votre mot de passe du serveur SMTP."],"Global email list":[null,"Liste mail générale"],"email addresses listed here, separated by commas if applicable, will<br> receive notifications for <b>all</b> shows.":[null,"Les adresses mail répertoriées ici, séparées par une virgule<br /> recevront des notifications pour <b>toutes</b> les séries."],"(This field may be blank except when testing.)":[null,"(Ce champ doit rester vide sauf lors de tests.)"],"Email Subject":[null,"Objet du mail"],"use a custom subject for some privacy protection?":[null,"Utiliser un sujet personnalisé pour la protection de la vie privée ?"],"(leave blank for the default SickRage subject)":[null,"(Laissez vide pour utiliser SickRage comme sujet par défaut)"],"configure per-show notifications here by entering email address(es), separated by commas,":[null,"Configurer ici les notifications par série en saisissant les adresses mail, séparées par des virgules,"],"after selecting a show in the drop-down box. Be sure to activate the 'Save for this show'":[null,"après avoir sélectionné une série dans la liste déroulante. N'oubliez pas de cliquer sur \"Enregistrer pour cette série\""],"button below after each entry.":[null,"(bouton ci-dessous) après chaque entrée."],"Slack":[null,"Slack"],"Slack brings all your communication together in one place. It's real-time messaging, archiving and search for modern teams.":[null,"Slack regroupe toutes vos communications en un seul endroit. C’est en temps réel, messagerie, archivage et recherche de nouvelles équipes."],"should SickRage post messages on Slack?":[null,"Est-ce que SickRage doit poster des messages sur Slack ?"],"Slack Incoming Webhook":[null,"Webhook Slack entrant"],"Discord":[null,"Discord"],"All-in-one voice and text chat for gamers that's free, secure, and works on both your desktop and phone.":[null,"Le service tout-en-un de communication vocale et textuelle pour les joueurs est gratuit, sécurisé, et fonctionne sur votre ordinateur et smartphone."],"Should SickRage post messages on Discord?":[null,"Est-ce que SickRage doit poster des messages sur Discord ?"],"Discord Incoming Webhook":[null,"Webhook Discord entrant"],"Create webhook under channel settings.":[null,"Créer un webhook sous les paramètres de chaînes."],"Discord Bot Name":[null,"Nom du bot de Discord"],"Blank will use webhook default Name.":[null,"Le nom d'utilisateur webhook par défaut sera vide."],"Discord Avatar URL":[null,"URL de l'avatar Discord"],"Blank will use webhook default Avatar.":[null,"L'avatar webhook par défaut sera vide."],"Discord TTS":[null,"TTS Discord"],"Send notifications using text-to-speech":[null,"Envoyer des notifications en utilisant la fonction de synthèse vocale"],"Post-Processing":[null,"Post-traitement"],"Episode Naming":[null,"Nommage de l'épisode"],"Metadata":[null,"Métadonnées"],"Settings that dictate how SickRage should process completed downloads.":[null,"Paramètres qui déterminent comment SickRage doit traiter les fichiers téléchargés."],"enable the automatic post processor to scan and process any files in your Post Processing Dir":[null,"Autorisez le post-traitement automatique à analyser et traiter tous les fichiers dans votre répertoire de post-traitement"],"do not use if you use an external Post Processing script":[null,"Ne pas utiliser si vous utilisez un script de post-traitement externe"],"Post Processing Dir":[null,"Répertoire de post-traitement"],"the folder where your download client puts the completed TV downloads.":[null,"Le dossier où votre logiciel de téléchargement enregistre les téléchargements terminés de vos séries."],"please use seperate downloading and completed folders in your download client if possible.":[null,"Si possible, dans votre logiciel de téléchargement, utilisez des dossiers différents pour les téléchargements en cours et terminés."],"Processing Method":[null,"Méthode de traitement"],"what method should be used to put files into the library?":[null,"Quelle méthode doit être utilisée pour mettre les fichiers dans la bibliothèque ?"],"if you keep seeding torrents after they finish, please avoid the 'move' processing method to prevent errors.":[null,"Si vous gardez les torrents en seed après qu'ils soient terminés, il faut éviter d'utiliser la méthode de traitement \"Déplacer\" pour prévenir d'éventuelles erreurs."],"Auto Post-Processing Frequency":[null,"Fréquence automatique de post-traitement"],"time in minutes to check for new files to auto post-process (min 10)":[null,"Temps en minutes pour vérifier s'il y a des nouveaux fichiers à post-traiter automatiquement (minimum 10 min)"],"Postpone post processing":[null,"Reporter le post-traitement"],"wait to process a folder if sync files are present.":[null,"Attendre pour traiter un dossier si des fichiers de synchronisation s'y trouvent."],"Sync File Extensions":[null,"Extension des fichiers déjà synchronisés"],"comma seperated list of extensions or filename globs SickRage ignores when Post Processing":[null,"Liste des extensions ou nom de fichier, séparée par des virgules, que SickRage ignore lors du post-traitement"],"Rename Episodes":[null,"Renommer les épisodes"],"rename episode using the Episode Naming settings?":[null,"Renommer les épisodes en suivant le paramétrage de nommage ?"],"Create missing show directories":[null,"Créer les répertoires des séries manquants"],"create missing show directories when they get deleted":[null,"Créer les répertoires des séries manquants lorsqu'ils sont supprimés"],"Add shows without directory":[null,"Ajouter une série sans répertoire"],"add shows without creating a directory (not recommended)":[null,"Ajouter une série sans créer de répertoire (pas recommandé)"],"Move associated files":[null,"Déplacer les fichiers associés"],"move associated (srt/srr/sfv/etc) files while post processing?":[null,"Déplacer les fichiers associés (srt/srr/sfv/etc) pendant le post-traitement ?"],"Rename .nfo file":[null,"Renommer le fichier .nfo"],"rename the original .nfo file to .nfo-orig to avoid conflicts?":[null,"Renommez le fichier .nfo original en .nfo-orig pour éviter les conflits ?"],"Associated file extensions":[null,"Extensions de fichier associées"],"comma separated list of associated file extensions SickRage should keep while post processing.":[null,"la liste des extensions de fichier associées à Sickrage, séparée par des virgules, doit être conservée pendant le post-traitement."],"leaving it empty means no associated files will be post processed":[null,"laisser vide signifie qu'aucun fichier associé ne sera post-traité"],"Delete non associated files":[null,"Supprimer les fichiers non-associés"],"delete non associated files while post processing?":[null,"Supprimer les fichiers non-associés pendant le post-traitement ?"],"Change File Date":[null,"Modifier la date du fichier"],"set last modified filedate to the date that the episode aired?":[null,"Remplacer la date de dernière modification du fichier par celle de diffusion ?"],"some systems may ignore this feature.":[null,"Certains systèmes risquent d'ignorer cette fonctionnalité."],"Timezone for File Date":[null,"Fuseau horaire pour la date du fichier"],"local":[null,"local"],"network":[null,"réseau"],"what timezone should be used to change File Date?":[null,"Quel fuseau horaire doit être utilisé pour changer la date du fichier ?"],"Unpack":[null,"Décompresser"],"What to do with archived releases found in your <i>TV Download Dir</i>?":[null,"Que faire des releases archivées présentes dans votre <i>Répertoire de téléchargement des séries</i> ?"],"Ignore (do not process contents)":[null,"Ignorer (ne pas traiter le contenu)"],"Unpack (process contents)":[null,"Décompresser (traiter le contenu)"],"Treat as video (process archive as-is)":[null,"Traiter comme vidéo (traiter l'archive telle quelle)"],"'Unpack' only works with RAR archives":[null,"'Décompresser' fonctionne uniquement avec les archives RAR"],"Windows":[null,"Windows"],"WinRar is required on windows":[null,"Winrar est nécessaire sur Windows"],"Unpack Directory":[null,"Répertoire de décompression"],"Choose a path to unpack files, leave blank to unpack in download dir":[null,"Choisir un chemin pour décompresser les fichiers, laisser vide pour décompresser dans le répertoire de téléchargement"],"Unrar Location":[null,"Emplacement de décompression"],"add the path to unrar if it is not in the system path":[null,"Ajouter le chemin de décompression si jamais il est différent du chemin système"],"Alternate Unrar Tool":[null,"Outil de décompression alternatif"],"add the path to an alternate unrar tool if it is not in the system path":[null,"Ajouter le chemin de décompression concernant l'outil alternatif si jamais il est différent du chemin système"],"Delete RAR contents":[null,"Supprimer le contenu du RAR"],"delete content of RAR files, even if Process Method not set to move?":[null,"Supprimer le contenu des fichiers RAR, même si la méthode de traitement n'est pas sur \"Déplacer\" ?"],"only working with RAR archive":[null,"Fonctionne uniquement avec les archives RAR"],"Don't delete empty folders":[null,"Ne pas supprimer les dossiers vides"],"leave empty folders when Post Processing?":[null,"Conserver les dossiers vides suite au post-traitement ?"],"can be overridden using manual Post Processing":[null,"Peut être substitué à l'aide du post-traitement manuel"],"Follow symbolic-links":[null,"Suivre les liens symboliques"],"follow down symbolic links in download directory?":[null,"Suivre les liens symboliques dans le répertoire de téléchargement ?\n"],"<b>EXPERTS ONLY.</b><br>Enable only if you know what <b>circular symbolic links</b> are,<br>and can <b>verify that you have none</b>.":[null,"<b> EXPERTS SEULEMENT. </b> <br> Activer uniquement si vous savez quels sont<b> les liens symboliques circulaires </b>, <br>et vous pouvez <b> vérifier que vous n'en avez pas </b>."],"Use icacls":[null,"Utiliser Icacls"],"Windows only":[null,"Windows seulement"],"sets video permissions after using the move method in post processing":[null,"définit les autorisations vidéo après avoir utilisé la méthode \"Déplacer\" lors du post-traitement"],"Extra Scripts":[null,"Scripts additionnels"],"see":[null,"voir"],"for script arguments description and usage.":[null,"pour les arguments de description et d'utilisation des scripts."],"How SickRage will name and sort your episodes.":[null,"Comment SickRage va nommer et trier vos épisodes."],"Name Pattern":[null,"Modèle du nom"],"Toggle Naming Legend":[null,"Activer/Désactiver la légende de nommage"],"don't forget to add quality pattern. Otherwise after post-processing the episode will have UNKNOWN quality":[null,"N'oubliez pas d'ajouter le type de qualité. Sinon l'épisode après post-traitement aura une qualité INCONNUE"],"Meaning":[null,"Signification"],"Pattern":[null,"Schéma"],"Result":[null,"Résultat"],"Use lower case if you want lower case names (eg. %sn, %e.n, %q_n etc)":[null,"Utilisez les minuscules si vous souhaitez que les noms soit en minuscules (par exemple. %sn, %e.n, % q_n etc.)"],"Show Name":[null,"Nom de la série"],"Show.Name":[null,"Nom.Serie"],"Show_Name":[null,"Nom_Série"],"Season Number":[null,"Numéro de saison"],"XEM Season Number":[null,"Numero de saison XEM"],"Episode Number":[null,"Numéro de l'épisode"],"XEM Episode Number":[null,"Numéro d'épisode XEM"],"Episode Name":[null,"Nom de l'épisode"],"Episode.Name":[null,"Épisode.Nom"],"Episode_Name":[null,"Épisode_Nom"],"Air Date":[null,"Date de diffusion"],"Post-Processing Date":[null,"Date de post-traitement"],"Quality":[null,"Qualité"],"Scene Quality":[null,"Qualité de la scène"],"Release Name":[null,"Nom de sortie"],"SickRage' is used in place of RLSGROUP if it could not be properly detected":[null,"SickRage' est utilisé à la place de RLSGROUP s'il n'a pas pu être détecté correctement"],"Release Group":[null,"Groupe de Release"],"If episode is proper/repack add 'proper' to name.":[null,"Si l'épisode est proper/repack ajouter « proper » au nom."],"Release Type":[null,"Type de Release"],"Multi-Episode Style":[null,"Type du multi-épisodes"],"Single-EP Sample":[null,"Exemple pour un épisode simple"],"Multi-EP sample":[null,"Exemple pour un épisode multiple"],"Strip Show Year":[null,"Effacer l'année de la série"],"remove the TV show's year when renaming the file?":[null,"Effacer l'année de la série de lors du renommage du fichier ?"],"only applies to shows that have year inside parentheses":[null,"S'applique uniquement aux séries contenant l'année entre parenthèses"],"Custom Air-By-Date":[null,"Date de diffusion personnalisée"],"name air-by-date shows differently than regular shows?":[null,"Nommer les épisode par date différemment des autres ?"],"Toggle ABD Naming Legend":[null,"Activer/Désactiver la légende de nommage pour les ABD"],"Regular Air Date":[null,"Date de diffusion réelle"],"Year":[null,"Année"],"Month":[null,"Mois"],"Day":[null,"Jour"],"Multi-EP style is ignored":[null,"Le style multi-épisodes est ignoré"],"Custom Sports":[null,"Différencier les événements sportifs"],"name sports shows differently than regular shows?":[null,"Nommer les événements sportifs différemment des séries ?"],"Toggle Sports Naming Legend":[null,"Activer/Désactiver la légende de nommage pour les événements sportifs"],"Sports Air Date":[null,"Date de diffusion du sport"],"Custom Anime":[null,"Différencier les animés"],"name anime shows differently than regular shows?":[null,"Nommer les séries animées différemment des autres séries ?"],"Toggle Anime Naming Legend":[null,"Activer/Désactiver la légende de nommage pour les animés"],">XEM Season Number":[null,">Numéro de saison XEM"],"Single-EP Anime Sample":[null,"Exemple d'un simple épisode d'animés"],"Multi-EP Anime sample":[null,"Exemple pour un épisode d'animés multiple"],"Add Absolute Number":[null,"Ajouter le nombre absolu"],"add the absolute number to the season/episode format?":[null,"Ajouter le nombre absolu pour le format de saison/épisode ?"],"only applies to anime. (eg. S15E45 - 310 vs S15E45)":[null,"S'applique uniquement aux animés. (par exemple. S15E45 - 310 vs S15E45)"],"Only Absolute Number":[null,"Seulement le nombre absolu"],"replace season/episode format with absolute number":[null,"Remplacer le format de saison/épisode par le nombre absolu"],"only applies to anime.":[null,"S'applique uniquement aux animés."],"No Absolute Number":[null,"Aucun nombre absolu"],"don't include the absolute number":[null,"Ne pas inclure le nombre absolu"],"The data associated to the data. These are files associated to a TV show in the form of images and text that, when supported, will enhance the viewing experience.":[null,"Les données liées aux données. Voici les fichiers associés à une série sous la forme d'images et de texte qui, lorsque pris en charge, permettront d'améliorer l'expérience de visionnage."],"Metadata Type":[null,"Type de métadonnées"],"toggle metadata options that you wish to be created":[null,"Activer/désactiver les options de métadonnées que vous souhaitez créer"],"multiple targets may be used":[null,"Des cibles multiples peuvent être utilisées"],"Select Metadata":[null,"Sélectionner les métadonnées"],"Provider Priorities":[null,"Priorités du/des fournisseur(s)"],"Provider Options":[null,"Options du fournisseur"],"Configure Custom Newznab Providers":[null,"Configurer un fournisseur Newznab personnalisé"],"Configure Custom Torrent Providers":[null,"Configurer un fournisseur de torrent personnalisé"],"Check off and drag the providers into the order you want them to be used.":[null,"Cochez et faites glisser les fournisseurs dans l'ordre dont vous souhaitez qu'ils soient utilisés."],"At least one provider is required but two are recommended.":[null,"Au moins un fournisseur est requis mais deux sont recommandés."],"Torrent providers can be toggled in ":[null,"Les fournisseurs de torrent peuvent être activés/désactivés"],"Provider does not support backlog searches at this time.":[null,"Le fournisseur ne supporte pas les recherches d'épisodes désirés en ce moment."],"Provider is <b>NOT WORKING</b>.":[null,"Ce fournisseur <b>NE FONCTIONNE PAS</b>."],"Configure individual provider settings here.":[null,"Configurer les paramètres de chaque fournisseur ici."],"Check with provider's website on how to obtain an API key if needed.":[null,"Vérifier avec le site Web du fournisseur pour obtenir une clé API si nécessaire."],"Configure provider":[null,"Configurer le fournisseur"],"no providers available to configure.":[null,"Aucun fournisseur n'est configurable."],"URL":[null,"URL"],"Enable daily searches":[null,"Activer les recherches quotidiennes"],"enable provider to perform daily searches.":[null,"autoriser les fournisseurs à effectuer des recherches quotidiennes."],"Enable backlog searches":[null,"Activer la recherche des épisodes désirés"],"enable provider to perform backlog searches.":[null,"activer la recherche d'épisodes désirés pour ce fournisseur."],"Season search mode":[null,"Mode de recherche par saison"],"when searching for complete seasons you can choose to have it look for season packs only, or choose to have it build a complete season from just single episodes.":[null,"lors de la recherche des saisons complètes, vous pouvez choisir de chercher la saison entière uniquement, ou de constituer la saison en prenant les épisodes individuellement."],"season packs only.":[null,"saison complète uniquement."],"episodes only.":[null,"épisodes uniquement."],"Enable fallback":[null,"Activer le choix par défaut si indisponible"],"when searching for a complete season depending on search mode you may return no results, this helps by restarting the search using the opposite search mode.":[null,"Lors de la recherche d'une saison complète, en fonction du mode de recherche, il peut ne pas y avoir de résultat. Cette option améliore le fonctionnement en basculant sur l'autre mode de recherche."],"Custom URL":[null,"URL personnalisée"],"the URL should include the protocol (and port if applicable). Examples: http://192.168.1.4/ or http://localhost:3000/":[null,"L'URL doit inclure le protocole (et le port si besoin). Exemples : http://192.168.1.4/ ou http://localhost:3000/"],"Api key":[null,"Clé d'Api"],"Digest":[null,"Résumé"],"Hash":[null,"Hash"],"Passkey":[null,"Code"],"Cookies":[null,"Cookies"],"example: uid=1234;pass=567845439634987<br>note: uid and pass are not your username/password.<br>use DevTools or Firebug to get these values after logging in on your browser.":[null,"Exemple : uid = 1234 ; pass = 567845439634987 <br>Remarque : les uid et pass ne correspondent pas à votre nom d’utilisateur/mot de passe. <br> Utilisez DevTools ou Firebug pour obtenir ces valeurs une fois connecté sur votre navigateur."],"Pin":[null,"Code pin"],"Seed ratio":[null,"Ratio d'envoi"],"stop transfer when ratio is reached<br>(-1 SickRage default to seed forever, or leave blank for downloader default)":[null,"arrêter le téléchargement quand le ratio est atteint<br>(-1 est la valeur par défaut pour envoyer indéfiniment, ou laisser vide afin que ce soit la valeur par défaut de votre logiciel de téléchargement qui soit prise en compte)"],"Minimum seeders":[null,"Minimum de seeders"],"Minimum leechers":[null,"Minimum de leechers"],"Confirmed download":[null,"Téléchargement confirmé"],"only download torrents from trusted or verified uploaders ?":[null,"télécharger uniquement les torrents depuis des sources de confiance ou vérifiées ?"],"Ranked torrents":[null,"Torrents classés"],"only download ranked torrents (trusted releases)":[null,"télécharger uniquement des torrents classés (sorties de confiance)"],"English torrents":[null,"Torrents anglais"],"only download english torrents, or torrents containing english subtitles":[null,"télécharger uniquement les torrents en anglais ou contenant des sous-titres en anglais"],"For Spanish torrents":[null,"Pour les torrents Espagnol"],"ONLY search on this provider if show info is defined as \"Spanish\" (avoid provider's use for VOS shows)":[null,"Rechercher uniquement sur ce fournisseur si les infos de la série sont défini comme \"Espagnol\" (évite l'utilisation du fournisseur pour les épisodes en VOS)"],"Sorting results by":[null,"Trier les résultats par"],"Freeleech":[null,"Freeleech"],"only download <b>\"FreeLeech\"</b> torrents.":[null,"télécharger uniquement des torrents <b>\"FreeLeech\"</b>."],"Category":[null,"Catégorie"],"select torrent with Italian subtitle":[null,"sélectionner un torrent avec des sous-titres italiens"],"Configure Custom<br>Newznab Providers":[null,"Configurer un fournisseur<br>Newznab personnalisé"],"Add and setup or remove custom Newznab providers.":[null,"Ajouter et configurer ou supprimer des fournisseurs Newznab personnalisés."],"Select provider":[null,"Sélectionnez un fournisseur"],"-- add new provider --":[null,"-- Ajouter un nouveau fournisseur --"],"Provider name":[null,"Nom du fournisseur"],"Site URL":[null,"URL du site"],"Newznab search categories":[null,"Catégories de recherche Newznab"],"select your Newznab categories on the left, and click the \"update categories\" button to use them for searching.) <b>don't forget to to save the form!":[null,"sélectionnez vos catégories Newznab sur la gauche et cliquez sur le bouton « mettre à jour les catégories » pour les utiliser pour la recherche. <b>N'oubliez pas de sauvegarder le formulaire !"],"Update Categories":[null,"Catégories de Mise à Jour"],"Add":[null,"Ajouter"],"Delete":[null,"Supprimer"],"Add and setup or remove custom RSS providers.":[null,"Ajouter et configurer ou supprimer des fournisseurs RSS personnalisés."],"RSS URL":[null,"URL du flux RSS"],"Search element":[null,"Élément de recherche"],"eg: title":[null,"ex: titre"],"Episode Search":[null,"Recherche d'épisode"],"NZB Search":[null,"Recherche de NZB"],"Torrent Search":[null,"Recherche de torrent"],"How to manage searching with":[null,"Comment gérer la recherche avec"],"Randomize Providers":[null,"Fournisseurs aléatoires"],"randomize the provider search order instead of going in order of placement":[null,"utiliser un fournisseur aléatoirement plutôt que de suivre l'ordre de la liste"],"Download propers":[null,"Télécharger les Propers"],"replace original download with \"Proper\" or \"Repack\" if nuked":[null,"remplacer le téléchargement d'origine avec « Proper » ou « Repack » si nuked"],"Check propers every":[null,"Vérifier les Propers chaque"],"24 hours":[null,"24 heures"],"4 hours":[null,"4 heures"],"90 mins":[null,"90 min."],"45 mins":[null,"45 min."],"15 mins":[null,"15 min."],"Backlog search day(s)":[null,"Jour(s) de recherche des épisodes désirés"],"number of day(s) that the \"Forced Backlog Search\" will cover (e.g. 7 Days)":[null,"nombre de jour(s) que la \"recherche forcée des épisodes désirés\" couvrira (ex: 7 jours)"],"Backlog search frequency":[null,"Fréquence de la recherche des épisodes désirés"],"time in minutes between searches (min.":[null,"temps en minutes entre les recherches (min."],"Daily search frequency":[null,"Fréquence des recherches quotidiennes"],"Usenet retention":[null,"Rétention de Usenet"],"age limit in days for usenet articles to be used (e.g. 500)":[null,"limite d'âge en jours pour utiliser les articles Usenet (par ex. 500)"],"Ignore words":[null,"Mots ignorés"],"results with one or more word from this list will be ignored<br>separate words with a comma, e.g. \"word1,word2,word3\"":[null,"les résultats contenant un ou plusieurs mots de cette liste seront ignorés<br>. Séparez les mots par une virgule, par exemple « mot1, mot2, mot3 »"],"Require words":[null,"Mots obligatoires"],"results with no word from this list will be ignored<br>separate words with a comma, e.g. \"word1,word2,word3\"":[null,"les résultats ne contenant aucun mot de cette liste seront ignorés.<br> Séparez les mots par une virgule, par exemple « mot1, mot2, mot3 »"],"Trackers list":[null,"Liste de trackers"],"trackers that will be added to magnets without trackers<br>separate trackers with a comma, e.g. \"tracker1,tracker2,tracker3\"":[null,"les trackers qui seront ajoutés aux magnets sans tracker, \nséparés par une virgule, par exemple « tracker1, tracker2, tracker3 »"],"Ignore language names in subbed results":[null,"Ignorer les noms de langue dans les résultats de sous-titrage"],"ignore subbed releases based on language names <br>\n Example: \"dk\" will ignore words: dksub, dksubs, dksubbed, dksubed <br>\n separate languages with a comma, e.g. \"lang1,lang2,lang3":[null,"Ignorer les releases sous-titrées selon les langues suivantes <br>\n Exemple : \"dk\" ce terme ignorera les termes suivants : dksub, dksubs, dksubbed, dksubed <br>\n Séparez les langues par une virgule par ex. \"lang1,lang2,lang3\""],"Allow high priority":[null,"Autoriser la priorité élevée"],"set downloads of recently aired episodes to high priority":[null,"définir les téléchargements d'épisodes récemment diffusés sur priorité élevée"],"Use Failed Downloads":[null,"Échecs de téléchargement"],"use Failed Download Handling?":[null,"Gérer le traitement des téléchargements échoués ?"],"will only work with snatched/downloaded episodes after enabling this":[null,"Ceci n'est pas rétroactif"],"Delete Failed":[null,"Supprimer les échecs"],"delete files left over from a failed download?":[null,"Supprimer les fichiers laissés lors d'un échec de téléchargement ?"],"this only works if Use Failed Downloads is enabled.":[null,"Cela ne fonctionnera que si la gestion des téléchargements échoués est activée."],"How to handle NZB search results.":[null,"Comment gérer les résultats de recherche NZB."],"Search NZBs":[null,"Recherche NZB"],"enable NZB search providers":[null,"activer la recherche sur les providers NZB"],"Send .nzb files to":[null,"Envoyer les fichiers .nzb vers"],"SABnzbd server URL":[null,"URL du server SABnzbd"],"URL to your SABnzbd server (e.g. http://localhost:8080/)":[null,"URL de votre serveur SABnzbd (ex. http://localhost:8080/)"],"SABnzbd username":[null,"Nom d'utilisateur SABnzbd"],"(blank for none)":[null,"(Laissez vide pour ne pas activer)"],"SABnzbd password":[null,"SABnzbd mot de passe"],"SABnzbd API key":[null,"Clé d'API SABnzbd"],"locate at... SABnzbd Config -> General -> API Key":[null,"ce situe à... Configuration de SABnzbd-> général-> clé API"],"Use SABnzbd category":[null,"Utiliser la catégorie de SABnzbd"],"add downloads to this category (e.g. TV)":[null,"ajouter des téléchargements à cette catégorie (ex. TV)"],"Use SABnzbd category (backlog episodes)":[null,"Utiliser la catégorie SABnzbd (épisodes désirés)"],"add downloads of old episodes to this category (e.g. TV)":[null,"ajouter les téléchargements d'anciens épisodes dans cette catégorie (ex: TV)"],"Use SABnzbd category for anime":[null,"Utiliser la catégorie SABnzbd pour les animes"],"add anime downloads to this category (e.g. anime)":[null,"ajouter les téléchargements d'animés dans cette catégorie (ex: anime)"],"Use SABnzbd category for anime (backlog episodes)":[null,"Utiliser la catégorie SABnzbd pour les animés (épisodes désirés)"],"add anime downloads of old episodes to this category (e.g. anime)":[null,"ajouter les vieux épisodes d'animes téléchargés à cette catégorie (ex : anime)"],"Use forced priority":[null,"Forcer la prioritée"],"enable to change priority from HIGH to FORCED":[null,"activer pour changer la priorité de haute à forcé"],"Black hole folder location":[null,"Emplacement du dossier du Black Hole"],"<b>.nzb</b> files are stored at this location for external software to find and use":[null,"Les fichiers <b>.Nzb</b> sont stockés à cet emplacement pour que les logiciels externes puissent les trouver et les utiliser"],"Connect using HTTPS":[null,"Connectez-vous en HTTPS"],"enable Secure control in NZBGet and set the correct Secure Port here":[null,"activez le contrôle de sécurité dans NZBGet et définissez le port de sécurité ici"],"NZBget host:port":[null,"NZBget hôte:port"],"(e.g. localhost:6789)":[null,"(ex. localhost:6789)"],"NZBget RPC host name and port number (not NZBgetweb!)":[null,"NZBget RPC \"nom de l'hôte\" et \"numéro de port\" (pas NZBgetweb!)"],"NZBget username":[null,"Nom d'utilisateur NZBget"],"locate in nzbget.conf (default:nzbget)":[null,"situé dans nzbget.conf (par défaut : nzbget)"],"NZBget password":[null,"NZBget mot de passe"],"locate in nzbget.conf (default:tegbzn6789)":[null,"situez dans nzbget.conf (par défaut : tegbzn6789)"],"Use NZBget category":[null,"Utilisez la catégorie NZBget"],"send downloads marked this category (e.g. TV)":[null,"ajouter les téléchargements à cette catégorie (ex. TV)"],"Use NZBget category (backlog episodes)":[null,"Utiliser la catégorie NZBget (épisodes désirés)"],"send downloads of old episodes marked this category (e.g. TV)":[null,"ajouter les téléchargements d'anciens épisodes dans cette catégorie (ex: TV)"],"Use NZBget category for anime":[null,"Utilisez la catégorie NZBget pour les Animés"],"send anime downloads marked this category (e.g. anime)":[null,"ajouter les téléchargements d'animés dans cette catégorie (ex: anime)"],"Use NZBget category for anime (backlog episodes)":[null,"Utiliser la catégorie NZBget pour les animés (épisodes désirés)"],"send anime downloads of old episodes marked this category (e.g. anime)":[null,"ajouter les vieux épisodes d'animes téléchargés à cette catégorie (ex : anime)"],"NZBget priority":[null,"Priorité NZBget"],"Very low":[null,"Très faible"],"Low":[null,"Faible"],"Very high":[null,"Très haute"],"Force":[null,"Forcer"],"priority for daily snatches (no backlog)":[null,"priorité pour les récupérations quotidiennes (pas d'épisode désiré)"],"Torrent host:port":[null,"Torrent hôte:port"],"URL to your Synology DSM (e.g. http://localhost:5000/)":[null,"URL vers votre Synology DSM (ex. http://localhost:5000/)"],"Client username":[null,"Nom d'utilisateur du client"],"Client password":[null,"Mot de passe client"],"Downloaded files location":[null,"Emplacement des fichiers téléchargés"],"where Synology Download Station will save downloaded files (blank for client default)":[null,"emplacement où Synology Download Station sauvegardera les fichiers téléchargés (laisser vide pour les réglage par défaut)"],"the destination has to be a shared folder for Synology DS":[null,"la destination doit être un dossier partagé sur Synology DS"],"Click below to test":[null,"Cliquez ci-dessous pour tester"],"How to handle Torrent search results.":[null,"Comment gérer les résultats de recherche des Torrents."],"Search torrents":[null,"Recherche de torrents"],"enable torrent search providers":[null,"Activer les fournisseurs de recherche de torrent"],"Send .torrent files to":[null,"Envoyer les fichiers .torrent vers"],"<b>.torrent</b> files are stored at this location for external software to find and use":[null,"Les fichiers <b>.torrent</b> sont stockés à cet emplacement pour que les logiciels externes puissent les trouver et les utiliser"],"URL to your torrent client (e.g. http://localhost:8000/)":[null,"URL de votre client torrent (ex: http://localhost:8080/)"],"Torrent RPC URL":[null,"URL RPC torrent"],"the path without leading and trailing slashes (e.g. transmission)":[null,"Le chemin sans slash au début ou à la fin (ex: transmission)"],"Http Authentication":[null,"Authentification http"],"Verify certificate":[null,"Vérifier le certificat"],"disable if you get \"Deluge: Authentication Error\" in your log":[null,"désactiver si vous obtenez « Deluge : erreur d'authentification » dans votre journal"],"verify SSL certificates for HTTPS requests":[null,"Vérification des certificats SSL pour les requêtes HTTPS"],"Add label to torrent":[null,"Ajouter une étiquette au torrent"],"(blank spaces are not allowed)":[null,"(les espaces ne sont pas autorisés)"],"label plugin must be enabled in Deluge clients":[null,"le plugin des étiquettes doit être activé dans le logiciel Deluge"],"for QBitTorrent 3.3.1 and up":[null,"pour QBitTorrent 3.3.1 et plus"],"Add label to torrent for anime":[null,"Ajouter une étiquette pour les torrents d'anime"],"for QBitTorrent 3.3.1 and up ":[null,"pour QBitTorrent 3.3.1 et plus "],"where <span id=\"torrent_client\">the torrent client</span> will save downloaded files (blank for client default)":[null,"où<span id=\"torrent_client\">le client de torrent</span> sauvegardera les fichiers téléchargés (vide pour garder les paramètres par défaut du client)"],"the destination has to be a shared folder for Synology DS</span>":[null,"la destination doit être un dossier partagé pour Synology DS</span>"],"Minimum seeding time":[null,"Temps minimum de seed"],"time in hours":[null,"Temps en heures"],"(default:'0' passes blank to client and '-1' passes nothing)":[null,"(défaut : '0' envoi vide au client et '-1' n'envoi rien)"],"Start torrent paused":[null,"Démarrer les torrents suspendus"],"add .torrent to client but do <b style=\"font-weight:900\">not</b> start downloading":[null,"ajoute le .torrent au client mais <b style=\"font-weight:900\">ne</b> démarre pas le téléchargement"],"Allow high bandwidth":[null,"Permettre une bande passante élevée"],"use high bandwidth allocation if priority is high":[null,"Utilisation élevée de la bande passante si la priorité est haute."],"Test Connection":[null,"Tester la connexion"],"Windows Shares":[null,""],"Defines your existing windows shares so that we can add them to the browse dialog":[null,""],"Share #{number}":[null,""],"Share label":[null,""],"Hostname or IP":[null,""],"Share path":[null,""],"Subtitles Search":[null,"Recherche de sous-titres"],"Subtitles Plugin":[null,"Plugin de sous-titres"],"Plugin Settings":[null,"Configuration du plugin"],"Settings that dictate how SickRage handles subtitles search results.":[null,"Ces paramètres déterminent comment SickRage gérera les résultats de la recherche de sous-titres"],"Search Subtitles":[null,"Recherche de sous-titres"],"Subtitle Languages":[null,"Langues des sous-titres"],"Subtitle Directory":[null,"Répertoire des sous-titres"],"the directory where SickRage should store your <i>Subtitles</i> files.":[null,"Le répertoire où SickRage doit stocker vos fichiers de <i>sous-titres</i>."],"leave empty if you want store subtitle in episode path.":[null,"Laisser vide si vous souhaitez stocker les sous-titres au même endroit que l'épisode"],"Subtitle Find Frequency":[null,"Fréquence de recherche des sous-titres"],"time in hours between scans (default: 1)":[null,"temps en heure entre les scans (défaut: 1)"],"Include Specials":[null,"Inclus les épisodes spéciaux"],"include the show's specials when searching for subtitles?":[null,"Inclure les séries spéciales lors de la recherche des sous-titres ?"],"Perfect matches":[null,"Associations parfaites"],"only download subtitles that match: release group, video codec, audio codec and resolution":[null,"Ne télécharger que les sous-titres qui s'associent parfaitement : groupe de releases, codec vidéo, codec audio et résolution"],"if disabled you may get out of sync subtitles":[null,"Si désactivé, vous pourriez télécharger des sous-titres mal synchronisés"],"Subtitles History":[null,"Historique des sous-titres"],"log downloaded Subtitle on History page?":[null,"Conserver l'historique de téléchargement des sous-titres sur la page Historique ?"],"Subtitles Multi-Language":[null,"Sous-titres multilingues"],"append language codes to subtitle filenames?":[null,"Ajouter le code de la langue aux noms des fichiers de sous-titres ?"],"this option is required if you use multiple subtitle languages":[null,"Cette option est nécessaire si vous utilisez plusieurs langues de sous-titres."],"Delete unwanted subtitles":[null,"Supprimer les sous-titres non désirés"],"enable to delete unwanted subtitle languages bundled with release":[null,"Activer pour supprimer les sous-titres d'une langue non désirée ajoutés à la release"],"Embedded Subtitles":[null,"Sous-titres intégrés"],"ignore subtitles embedded inside video file?":[null,"Ignorer les sous-titres intégrés au fichier vidéo ?"],"this will ignore <u>all</u> embedded subtitles for every video file!":[null,"cela ignorera <u>tous</u> les sous-titres intégrés pour chaque fichier vidéo !"],"Hearing Impaired Subtitles":[null,"Sous-titres pour les malentendants"],"download hearing impaired style subtitles?":[null,"Télécharger les sous-titres pour malentendants ?"],"See":[null,"Voir"],"for a script arguments description.":[null,"pour une description des arguments du script."],"Additional scripts separated by <b>|</b>.":[null,"Scripts supplémentaires, séparés par <b>|</b>."],"Scripts are called after each episode has searched and downloaded subtitles.":[null,"Les scripts sont appelés après que chaque épisode a cherché et téléchargé des sous-titres."],"For any scripted languages, include the interpreter executable before the script. See the following example":[null,"Pour tous les scripts de langues, inclure l’exécutable de l'interpréteur avant le script. Regardez l'exemple qui suit"],"For Windows:":[null,"Pour Windows:"],"For Linux / OS X:":[null,"Pour Linux / OS X:"],"Subtitle Providers":[null,"Fournisseurs de sous-titres"],"Check off and drag the plugins into the order you want them to be used.":[null,"Cochez et faites glisser les plugins dans l'ordre que vous voulez qu'ils soient utilisés."],"At least one plugin is required.":[null,"Il faut au moins un plugin."]," Web-scraping plugin":[null," Plugin de Web-scraping"],"Provider Settings":[null,"Paramètres du fournisseur"],"Set user and password for each provider":[null,"Définir l'utilisateur et le mot de passe pour chaque fournisseur"],"User Name":[null,": Nom d’utilisateur"],"Change Show":[null,"Changer de série"],"Prev Show":[null,"Série précédente"],"Next Show":[null,"Série suivante"],"Jump to Season":[null,"Aller à la saison"],"Specials":[null,"Spéciaux"],"Poster for":[null,"Affiche pour"],"Stars":[null,"Étoiles"],"minutes":[null,"minutes"],"View other popular {genre} shows on trakt.tv.":[null,"Découvrir les autres séries populaires de type {genre} sur trakt.tv."],"View other popular {imdbgenre} shows on IMDB.":[null,"Découvrir les autres séries populaires de type {imdbgenre} sur IMDB."],"Allowed":[null,"Disponible(s)"],"Preferred":[null,"Préféré(s)"],"Originally Airs":[null,"Date de diffusion originale"],"Show Status":[null,"Statut de la série"],"Default EP Status":[null,"Statut d'épisode par défaut"],"Location":[null,"Emplacement"],"Missing":[null,"Manquant(e)(s)"],"Scene Name":[null,"Nom scène"],"Required Words":[null,"Mots requis"],"Ignored Words":[null,"Mots ignorés"],"Size":[null,"Taille"],"Info Language":[null,"Information linguistique"],"Subtitles SR Metadata":[null,"Métadonnées des sous-titres de SR"],"Season Folders":[null,"Dossiers par saison"],"Paused":[null,"Suspendu"],"Air-by-Date":[null,"Par date de diffusion"],"Sports":[null,"Sports"],"DVD Order":[null,"Ordre du DVD"],"Scene Numbering":[null,"Numérotation scène"],"Select Filtered Episodes":[null,"Sélectionnez les épisodes filtrés"],"Clear All":[null,"Effacer tout"],"Change selected episodes to":[null,"Changer les épisodes séléctionnés en"],"Select Columns":[null,"Sélectionner les colonnes"],"Hide Episodes":[null,"Cacher les épisodes"],"Show Episodes":[null,"Afficher les épisodes"],"NFO":[null,"NFO"],"TBN":[null,"TBN"],"Episode":[null,"Épisode"],"Absolute":[null,"Absolu"],"Scene":[null,"Scène"],"Scene Absolute":[null,"Scène absolu"],"File Name":[null,"Nom du fichier"],"Airdate":[null,"Date de diffusion"],"Download":[null," Télécharger"],"Change the value here if scene numbering differs from the indexer episode numbering":[null,"Change la valeur seulement si la numérotation diffère de la numérotation de l'indexeur d'épisode"],"Change the value here if scene absolute numbering differs from the indexer absolute numbering":[null,"Changer la valeur ici si la numérotation absolue de la scène est différente de la numérotation absolue de l'indexer"],"Manual Search":[null,"Recherche manuelle"],"Do you want to mark this episode as failed?":[null,"Vous voulez marquer cet épisode comme ayant échoué ?"],"The episode release name will be added to the failed history, preventing it to be downloaded again.":[null,"Cette version de l'épisode s'ajoutera à l'historique des téléchargements ayant échoués, ceci l'empêchera d'être téléchargé à nouveau."],"Do you want to include the current episode quality in the search?":[null,"Vous voulez inclure la qualité actuelle de l'épisode dans la recherche ?"],"Choosing No will ignore any releases with the same episode quality as the one currently downloaded/snatched.":[null,"Choisir \"Non\" ignorera les versions avec la même qualité que l'épisode actuellement téléchargé/récupéré."],"Download subtitle":[null,"Télécharger les sous-titres"],"Do you want to re-download the subtitle for this language?":[null,"Voulez-vous re-télécharger les sous-titres pour cette langue ?"],"It will overwrite your current subtitle":[null,"Cela remplacera vos sous-titres actuels"],"Format":[null,"Format"],"Advanced":[null,"Paramètres avancés"],"Main Settings":[null,"Paramètres principaux"],"Show Location":[null,"Afficher l'emplacement"],"Preferred Quality":[null,"Qualité préférée"],"Default Episode Status":[null,"Statut d'épisode par défaut"],"this will set the status for future episodes.":[null,"Ceci définira le statut des futurs épisodes."],"this only applies to episode filenames and the contents of metadata files.":[null,"S'applique uniquement aux noms des fichiers d'épisode et aux contenus des fichiers de métadonnées."],"search for subtitles":[null,"rechercher des sous-titres"],"Use SR Metdata":[null,"Utiliser les métadonnées de SR"],"use SickRage metadata when searching for subtitle, this will override the autodiscovered metadata":[null,"Utiliser les métadonnées de SickRage lorsque vous recherchez des sous-titres, < br / > cela remplacera les métadonnées déjà présentes"],"pause this show (SickRage will not download episodes)":[null,"mettre cette série en suspend (SickRage ne téléchargera pas d'épisodes)"],"Format Settings":[null,"Paramètres du format"],"Air by date":[null,"Diffusion par date"],"check if the show is released as Show.03.02.2010 rather than Show.S02E03.":[null,"vérifier si ces séries apparaissent comme Show.03.02.2010 plutôt que comme Show.S02E03."],"in case of an air date conflict between regular and special episodes, the later will be ignored.":[null,"Dans le cas d'un conflit de dates entre les épisodes ordinaires et spéciaux, la dernière date sera ignorée."],"check if the show is Anime and episodes are released as Show.265 rather than Show.S02E03":[null,"vérifier si les séries de type animé apparaissent comme Show.03.02.2010 plutôt que Show.S02E03"],"check if the show is a sporting or MMA event released as Show.03.02.2010 rather than Show.S02E03":[null,"vérifier si les séries de type sportif ou événements de MMA apparaissent comme Show.03.02.2010 plutôt que Show.S02E03"],"Season folders":[null,"Dossiers par saison"],"group episodes by season folder (uncheck to store in a single folder)":[null,"grouper les épisodes par saison (décocher pour sauvegarder dans un dossier unique)"],"search by scene numbering (uncheck to search by indexer numbering)":[null,"recherche par numérotation scène (décocher la case pour effectuer une recherche par la numérotation de l'indexeur)"],"use the DVD order instead of the air order":[null,"utilisez l'ordre du DVD au lieu de l'ordre de diffusion"],"a \"Force Full Update\" is necessary, and if you have existing episodes you need to sort them manually.":[null,"\"Forcer la mise à jour\" est nécessaire, et si vous avez déjà des épisodes, vous devez les trier manuellement."],"comma-separated <i>e.g. \"word1,word2,word3</i>\"":[null,"Utilisez la virgule comme séparateur <i>par ex. \"mot1,mot2,mot3</i>\""],"search results with one or more words from this list will be ignored.":[null,"Résultat de la recherche avec un ou plusieurs mots ignoré(s)."],"e.g. \"word1,word2,word3\"":[null,"exemple \"mot1, mot2, mot3\""],"search results with no words from this list will be ignored.":[null,"Les résultats de recherche qui ne contiennent pas un des mots de cette liste seront ignorés."],"Scene Exception":[null,"Exception Scène"],"this will affect episode search on NZB and torrent providers.":[null,"Cela affectera la recherche d'épisode pour les fournisseurs NZB et torrent."],"this list appends to the original show name.":[null,"Cette liste s'ajoute au nom original de la série."],"WARNING logs":[null,"Journaux d'avertissements"],"ERROR logs":[null,"Journaux d'erreurs"],"There are no events to display.":[null,"Il n'y a aucun événement à afficher."],"Limit":[null,"Limite"],"Layout":[null,"Mise en page"],"HistoryLayout":[null,"Mise en page de l'historique"],"Compact":[null,"Compact"],"Detailed":[null,"Détaillé"],"Time":[null,"Heure"],"Provider":[null,"Fournisseur"],"Missing Provider":[null,"Fournisseur manquant"],"missing provider":[null,"fournisseur manquant"],"Directory":[null,"Dossier"],"Show Name (tvshow.nfo)":[null,"Nom de la série (tvshow.nfo)"],"Indexer":[null,"Indexeurs"],"Enter the folder containing the episode":[null,"Entrer le dossier contenant l'épisode"],"Process Method to be used":[null,"Méthode de traitement à utiliser"],"Copy":[null,"Copier"],"Move":[null,"Déplacer"],"Hard Link":[null,"Lien en dur"],"Symbolic Link":[null,"Lien symbolique"],"Symbolic Link Reversed":[null,"Lien symbolique inversé"],"Force already Post Processed Dir/Files":[null,"Forcer les dossiers/fichiers déjà post-traités"],"Mark Dir/Files as priority download":[null,"Marquer les dossiers/fichiers comme téléchargements prioritaires"],"(Check it to replace the file even if it exists at higher quality)":[null,"(Cochez pour remplacer le fichier, même s'il existe en qualité supérieure)"],"Delete files and folders":[null,"Supprimer les fichiers et dossiers"],"(Check it to delete files and folders like auto processing)":[null,"(Sélectionner pour supprimer les fichiers et dossiers du traitement automatique)"],"Don't use processing queue":[null,"Ne pas utiliser sur la file en attente de post-traitement"],"(If checked this will return the result of the process here, but may be slow!)":[null,"(Si cette option est cochée, cela retournera le résultat du traitement ici, mais ça peut être très lent !)"],"Mark download as failed":[null,"Marquer le téléchargement comme échoué"],"Process":[null,"Traiter"],"Download subtitles for this show?":[null,"Télécharger les sous-titres pour cette série ?"],"use SickRage metadata when searching for subtitle, <br />this will override the autodiscovered metadata":[null,"Utiliser les métadonnées de SickRage lorsque vous recherchez des sous-titres, < br / > cela remplacera les métadonnées déjà présentes"],"Status for previously aired episodes":[null,"Statut des épisodes déjà diffusés"],"Status for all future episodes":[null,"Statut pour tous les futurs épisodes"],"Group episodes by season folder?":[null,"Grouper les épisodes en suivant les dossiers par saison ?"],"Is this show an Anime?":[null,"Cette série est un animé ?"],"Is this show scene numbered?":[null,"Cette série utilise-t'elle la numérotation de la scène ?"],"Save Defaults":[null,"Enregistrer par défaut"],"Use current values as the defaults":[null,"Utilisez les valeurs actuelles comme valeurs par défaut"],"<p>Select your preferred fansub groups from the <b>Available Groups</b> and add them to the <b>Whitelist</b>. Add groups to the <b>Blacklist</b> to ignore them.</p>\n <p>The <b>Whitelist</b> is checked <i>before</i> the <b>Blacklist</b>.</p>\n <p>Groups are shown as <b>Name</b> | <b>Rating</b> | <b>Number of subbed episodes</b>.</p>\n <p>You may also add any fansub group not listed to either list manually.</p>\n <p>When doing this please note that you can only use groups listed on anidb for this anime.\n <br>If a group is not listed on anidb but subbed this anime, please correct anidb's data.</p>":[null,"<p>Sélectionnez vos groupes de fansub préférés dans les <b>Groupes disponibles</b> et ajoutez-les à la <b>Liste blanche</b>. Ajouter des groupes à la <b>Liste noire</b> pour les ignorer.</p> \n <p>La <b>Liste blanche</b> est vérifiée <i>avant</i> la <b>Liste noire</b>.</p> \n <p>Les groupes sont affichés sous forme de <b>Nom</b> | <b>Classement</b> | <b>Nombre d'épisodes sous-titrés</b>.</p> \n <p>Vous pouvez ajouter manuellement n'importe quel groupe de fansub qui ne figure dans aucune des listes.</p> \n <p>Lorsque vous effectuez ceci, veuillez prendre note que vous pouvez uniquement utiliser les groupes répertoriés sur Anidb pour cet animé.\n <br>Si un groupe n'est pas répertorié sur Anidb mais sous-titré, merci de corriger les données d'Anidb.</p>"],"Whitelist":[null,"Liste blanche"],"Available Groups":[null,"Groupes disponibles"],"Add to Whitelist":[null,"Ajouter à la liste blanche"],"Add to Blacklist":[null,"Ajouter à la liste noire"],"Blacklist":[null,"Liste noire"],"Custom Group":[null,"Groupe personnalisé"],"Allowed Quality:":[null,"Qualité Autorisée :"],"Preferred Quality:":[null,"Qualité Préférée :"],"Filter Show Name":[null,"Filtrer les séries par nom"],"Root":[null,"Racine"],"All":[null,"Tout"],"Clear Filter(s)":[null,"Effacer le(s) filtre(s)"],"Poster":[null,"Vignette"],"Small Poster":[null,"Petite vignette"],"Banner":[null,"Bannière"],"Simple":[null,"Simple"],"Next Episode":[null,"Prochain épisode"],"Progress":[null,"En cours"],"Direction":[null,"Sens du tri"],"Ascending":[null,"Croissant"],"Descending":[null,"Décroissant"],"Poster Size":[null,"Taille des vignettes"],"Continuing":[null,"En cours"],"Ended":[null,"Terminé"],"Total":[null,"Total"],"Invalid date":[null,"Date non valide"],"No Network":[null,"Pas de diffuseur"],"Next Ep":[null,"Épisode suivant"],"Prev Ep":[null,"Episode précédent"],"Show":[null,"Série"],"Downloads":[null,"Téléchargements"],"Active":[null,"Actif"],"loading":[null,"chargement en cours"],"Loading...":[null,"Chargement..."],"<p><b><u>Preferred</u></b> qualities will replace those in <b><u>allowed</u></b>, even if they are lower.</p>":[null,"<p>Les qualités <b><u>préférées</u></b> remplaceront les <b><u>disponibles</u></b>, même si elles sont de qualités inférieures.</p>"],"New":[null,"Nouveau"],"Set as Default":[null,"Définir par défaut"],"Remember me":[null,"Se souvenir de moi"],"Edit Selected":[null,"Éditer la sélection"],"Subtitle":[null,"Sous-titre"],"Default Ep Status":[null,"Statut d'épisode par défaut"],"Update":[null,"Mettre à jour"],"Rescan":[null,"Rescanner"],"Rename":[null,"Renommer"],"Search Subtitle":[null,"Recherche de sous-titre"],"Force Metadata Regen":[null,"Forcer les métadonnées Regen"],"Snatched (Allowed)":[null,"Récupéré (autorisé)"],"Jump to Show":[null,"Aller à la série"],"Force Backlog":[null,"Force la recherche des épisodes désirés"],"Manage episodes with status":[null,"Gérer les épisodes avec le statut"],"Manage":[null,"Gérer"],"None of your episodes have status":[null,"Aucun de vos épisodes n'a le statut"],"Shows containing":[null,"Séries contenant"],"episodes":[null,"épisodes"],"Set checked shows/episodes to":[null,"Changer les épisodes cochés en"],"Go":[null,"Lancer"],"Select all":[null,"Tout sélectionner"],"Clear all":[null,"Tout effacer"],"Release":[null,"Version"],"Backlog Search":[null,"Recherche des épisodes désirés"],"Not in progress":[null,"Pas en cours"],"In Progress":[null,"En cours"],"Daily Search":[null,"Recherche quotidienne"],"Find Propers Search":[null,"Recherche de \"Propers\""],"Propers search disabled":[null,"Recherche des Propers désactivée"],"Subtitle Search":[null,"Recherche de sous-titres"],"Subtitle search disabled":[null,"Recherche de sous-titres désactivée"],"Search Queue":[null,"File d'attente de la recherche"],"pending items":[null,"Eléments en attente"],"Daily":[null,"Quotidienne"],"Manual":[null,"Manuelle"],"Changing any settings marked with (<span class=\"separator\">*</span>) will force a refresh of the selected shows.":[null,"Changer les paramètres marqués comme (<span class=\"separator\"> *</span>) va forcer une actualisation des séries sélectionnées."],"Selected Shows":[null,"Séries Sélectionnées"],"Root Directories":[null,"Répertoires Racine"],"Current":[null,"Courant"],"Keep":[null,"Conserver"],"Custom":[null,"Personnaliser"],"Group episodes by season folder (set to \"No\" to store in a single folder).":[null,"Grouper les épisodes par saison (Définir a \"Non\" pour sauvegarder dans des dossiers uniques)."],"Pause these shows (SickRage will not download episodes).":[null,"Mettre ces séries en suspend (SickRage ne téléchargera pas d'épisodes)."],"This will set the status for future episodes.":[null,"Ceci définira le statut des futurs épisodes."],"Search by scene numbering (set to \"No\" to search by indexer numbering).":[null,"Recherche selon la numérotation de la scène (mettre \"Non\" à la recherche par numérotation d'index)."],"Set if these shows are Anime and episodes are released as Show.265 rather than Show.S02E03":[null,"Définir si ces séries sont de type Animés et doivent apparaître comme Show.03.02.2010 plutôt que Show.S02E03"],"Set if these shows are sporting or MMA events released as Show.03.02.2010 rather than Show.S02E03.":[null,"Définir si ces séries sont de type sportif ou événements de MMA et doivent apparaître comme Show.03.02.2010 plutôt que Show.S02E03."],"In case of an air date conflict between regular and special episodes, the later will be ignored.":[null,"Dans le cas d'un conflit de dates entre les épisodes ordinaires et spéciaux, la dernière date sera ignorée."],"Set if these shows are released as Show.03.02.2010 rather than Show.S02E03.":[null,"Défini si ces séries paraissent comme Show.03.02.2010 plutôt que Show.S02E03."],"Search for subtitles.":[null,"Rechercher des sous-titres."],"All of your episodes have {subsLanguage} subtitles.":[null,"Tous vos épisodes ont des sous-titres {subsLanguage}."],"Manage episodes without":[null,"Gérer les épisodes sans"],"Episodes without {subsLanguage} subtitles.":[null,"Épisodes sans sous-titres {subsLanguage}."],"Episodes without {subtitleLanguage} (undefined) subtitles.":[null,"Épisodes sans sous-titres {subtitleLanguage} (indéfini)."],"Download missed subtitles for selected episodes":[null,"Télécharger les sous-titres manqués pour les épisodes sélectionnés"],"Performing Restart":[null,"Effectuer le redémarrage"],"Waiting for SickRage to shut down":[null,"En attente de la fermeture de SickRage"],"Waiting for SickRage to start again":[null,"En attente du redémarrage de SickRage"],"Loading the default page":[null,"Chargement de la page par défaut"],"Error: The restart has timed out, perhaps something prevented SickRage from starting again?":[null,"Erreur : Le redémarrage a expiré, peut-être que quelque chose a empêché SickRage de redémarrer ?"],"Key":[null,"Clé"],"Missed":[null,"Manqué"],"Today":[null,"Aujourd'hui"],"Soon":[null,"Bientôt"],"Later":[null,"Plus tard"],"Subscribe":[null,"S'abonner"],"Date":[null,"Date"],"View Paused":[null,"Voir les suspendus"],"Hidden":[null,"Masqués"],"Shown":[null,"Affichés"],"Calendar":[null,"Calendrier"],"List":[null,"Liste"],"Ends":[null,"Se termine"],"Next Ep Name":[null,"Titre du prochain épisode"],"Run time":[null,"Durée"],"Indexers":[null,"Indexeurs"],"No shows for this day":[null,"Aucune série pour cette journée"],"Airs":[null,"Diffusions"],"Plot":[null,"Synopsis"],"Show Update":[null,"Mise à jour de la série"],"Version Check":[null,"Vérification de la version"],"Proper Finder":[null,"Trouver les Proprers"],"Post Process":[null,"Post-traitement"],"Subtitles Finder":[null,"Recherche de sous-titres"],"Scheduler":[null,"Programmes"],"Alive":[null,"En vie"],"Start Time":[null,"Heure de début"],"Cycle Time":[null,"Temps de cycle"],"Next Run":[null,"Prochaine Exécution"],"Last Run":[null,"Dernière Exécution"],"Silent":[null,"Muet"],"True":[null,"Vrai"],"N/A":[null,"Non Défini"],"Show id":[null,"Voir l'ID"],"Show name":[null,"Afficher le nom"],"Priority":[null,"Priorité"],"Added":[null,"Ajouté(e)"],"Queue type":[null,"Type de file d'attente"],"LOW":[null,"FAIBLE"],"NORMAL":[null,"NORMAL"],"HIGH":[null,"HAUTE"],"Disk Space":[null,"Espace disque"],"Free space":[null,"Espace libre"],"TV Download Directory":[null,"Répertoire de téléchargement des séries"],"Media Root Directories":[null,"Répertoire racine"],"Preview of the proposed name changes":[null,"Aperçu des propositions de renommage"],"All Seasons":[null,"Toutes les saisons"],"select all":[null,"tout sélectionner"],"Rename Selected":[null,"Renommer la sélection"],"Cancel Rename":[null,"Annuler Renommer"],"Old Location":[null,"Ancien emplacement"],"New Location":[null,"Nouvel emplacement"],"Trakt API did not return any results, please check your config.":[null,"Trakt API n'a pas renvoyé aucun résultat, veuillez vérifier votre config s'il vous plaît."],"votes":[null,"votes"],"Remove Show":[null,"Supprimer Séries"],"Level":[null,"Niveau"],"Filter":[null,"Filtre"],"All non-absolute folder locations are relative to ":[null,"Tous les chemins non-absolu des dossiers sont relatifs à "],"Manual Post-Processing":[null,"Post-traitement manuel"],"Episode Status Management":[null,"Gérer les statuts des épisodes"],"Update PLEX":[null,"Mise à jour PLEX"],"Update KODI":[null,"Mise à jour KODI"],"Update Emby":[null,"Mise à jour Emby"],"Missed Subtitle Management":[null,"Gestion des sous-titres manqués"],"Help & Info":[null,"Aide & Infos"],"Backup & Restore":[null,"Sauvegarde & Restauration"],"Tools":[null,"Outils"],"Support SickRage":[null,"Soutenir SickRage"],"View Errors":[null,"Voir les erreurs"],"View Warnings":[null,"Voir les avertissements"],"View Log":[null,"Voir le journal"],"Check For Updates":[null,"Vérifier s'il y a des mises à jour"],"Restart":[null,"Redémarrer"],"Shutdown":[null,"Éteindre"],"Logout":[null,"Se déconnecter"],"Server Status":[null,"Statut du serveur"],"View overview of snatched episodes":[null,"Aperçu des épisodes récupérés"],"Episodes Downloaded":[null,"Épisodes téléchargés"],"Memory used":[null,"Mémoire utilisée"],"Load time":[null,"Temps de chargement"],"Branch":[null,"Branche"],"Now":[null,"Actuellement"]}}}} \ No newline at end of file +{"messages":{"domain":"messages","locale_data":{"messages":{"100":[null,"100"],"250":[null,"250"],"500":[null,"500"],"":{"domain":"messages","plural_forms":"nplurals=2; plural=(n > 1);","lang":"fr_FR"},"Drama":[null,"Drame"],"Mystery":[null,"Mystère"],"Science-Fiction":[null,"Science-Fiction"],"Crime":[null,"Crime"],"Action":[null,"Action"],"Comedy":[null,"Comédie"],"Thriller":[null,"Thriller"],"Animation":[null,"Animation"],"Family":[null,"Familial"],"Fantasy":[null,"Fantaisie"],"Adventure":[null,"Aventure"],"Horror":[null,"Horreur"],"Film-Noir":[null,"Film Noir"],"Sci-Fi":[null,"Sci-Fi"],"Romance":[null,"Romance"],"Sport":[null,"Sport"],"War":[null,"Guerre"],"Biography":[null,"Biographie"],"History":[null,"Historique"],"Music":[null,"Musique"],"Western":[null,"Western"],"News":[null,"Nouveautés"],"Sitcom":[null,"Sitcom"],"Reality-TV":[null,"Télé-Réalité"],"Documentary":[null,"Documentaire"],"Game-Show":[null,"Game-Show"],"Musical":[null,"Comédie musicale"],"Talk-Show":[null,"Talk-Show"],"Started Download":[null,"Téléchargement commencé"],"Download Finished":[null,"Téléchargement terminé"],"Subtitle Download Finished":[null,"Téléchargement de sous-titres terminé"],"SickRage Updated":[null,"SickRage mis à jour"],"SickRage Updated To Commit#: ":[null,"SickRage mis à jour sur le commit # : "],"SickRage new login":[null,"Nouvelle connexion sur SickRage"],"New login from IP: {0}. http://geomaplookup.net/?ip={0}":[null,"Nouvelle connexion de l'IP {0}. http://geomaplookup.net/?ip={0}"],"Repeat":[null,"Répéter"],"Repeat (Separated)":[null,"Répéter (Séparé)"],"Extend":[null,"Étendre"],"Extend (Limited)":[null,"Étendre (Limité)"],"Extend (Limited, E-prefixed)":[null,"Étendre (Limité, E-préfixe)"],"Downloaded":[null,"Téléchargé"],"Snatched":[null,"Récupéré(s)"],"Snatched (Proper)":[null,"Récupéré (Proper)"],"Failed":[null,"Échouée"],"Snatched (Best)":[null,"Récupéré (Meilleure qualité)"],"Archived":[null,"Archivé"],"Unknown":[null,"Inconnu"],"Unaired":[null,"Non diffusé"],"Skipped":[null,"Ignoré(s)"],"Wanted":[null,"Recherché(s)"],"Ignored":[null,"Ignoré(s)"],"Subtitled":[null,"Sous-titré"],"For best results please set the Download Station alias as":[null,"Pour de meilleurs résultats, veuillez configurer l'alias de Download Station comme"],"You can check this setting in the Synology DSM":[null,"Vous pouvez vérifier ce paramètre dans le DSM de Synology"],"Control Panel":[null,"Panneau de configuration"],"Application Portal":[null,"Portail d'application"],"Make sure you allow DSM to be embedded with iFrames too in":[null,"Assurez-vous que vous permettez à DSM d'être aussi incorporés avec iFrames"],"DSM Settings":[null,"Paramètres du DSM"],"Security":[null,"Sécurité"],"<No Filter>":[null,"< Aucun Filtre >"],"Daily Searcher":[null,"Recherche quotidienne"],"Backlog":[null,"Épisodes désirés"],"Show Updater":[null,"Mise à jour de la série"],"Check Version":[null,"Vérifiez la version"],"Show Queue":[null,"Voir la file d'attente"],"Search Queue (All)":[null,"File d'attente de la recherche (Tous)"],"Search Queue (Daily Searcher)":[null,"File d'attente de la recherche (Recherche quotidienne)"],"Search Queue (Backlog)":[null,"File d'attente de la recherche (Épisodes désirés)"],"Search Queue (Manual)":[null,"File d'attente de la recherche (Manuelle)"],"Search Queue (Retry/Failed)":[null,"File d'attente de la recherche (Réessayée/Échouée)"],"Search Queue (RSS)":[null,"File d'attente de la recherche (RSS)"],"Find Propers":[null,"Trouver des Propers"],"Postprocessor":[null,"Post-traitement"],"Find Subtitles":[null,"Trouver des sous-titres"],"Trakt Checker":[null,"Vérificateur Trakt"],"Event":[null,"Évènement"],"Error":[null,"Erreur"],"Tornado":[null,"Tornado"],"Thread":[null,"Sujet"],"Main":[null,"Général"],"Loading":[null,"Chargement"],"New update found for SickRage, starting auto-updater":[null,"Nouvelle mise à jour trouvée pour SickRage, démarrage de la mise à jour automatique"],"Update was successful":[null,"La mise à jour a réussi"],"Update failed!":[null,"Mise à jour échouée !"],"Backup":[null,"Sauvegarde"],"Config backup in progress...":[null,"Sauvegarde de la configuration en cours..."],"Config backup successful, updating...":[null,"Sauvegarde de la configuration réussie, mise à jour..."],"Config backup failed, aborting update":[null,"Sauvegarde de la configuration échouée, mise à jour abandonnée "],"No update needed":[null,"Aucune mise à jour nécessaire"],"Mako Error":[null,"Erreur Mako"],"Oops":[null,"Oups"],"Wrong API key used":[null,"Mauvaise clé API utilisée"],"Login":[null,"Se connecter"],"API Key not generated":[null,"Clé API non générée"],"API Builder":[null,"Constructeur d'API"],"Schedule":[null,"Planning"],"Test 1":[null,"Test 1"],"This is test number 1":[null,"Ceci est le test numéro 1"],"Test 2":[null,"Test 2"],"This is test number 2":[null,"Ceci est le test numéro 2"],"You're using the {branch} branch. Please use 'master' unless specifically asked":[null,"Vous utilisez la branche {branch}. Merci d'utiliser la branche «master» sauf si spécifiquement demandé"],"Invalid show parameters":[null,"Paramètres de série invalides"],"Invalid parameters":[null,"Paramètres incorrects"],"Episode couldn't be retrieved":[null,"L'épisode n'a pas pu être trouvé"],"Home":[null,"Accueil"],"Show List":[null,"Liste des séries"],"Error: Unsupported Request. Send jsonp request with 'callback' variable in the query string.":[null,"Erreur : Demande non prise en charge. Envoyer la requête jsonp avec la variable « callback » dans la chaîne de requête."],"Success. Connected and authenticated":[null,"Succès. Connecté et authentifié"],"Authentication failed. SABnzbd expects":[null,"L'authentification a échoué. SABnzbd attend"],"as authentication method":[null,"comme méthode d'authentification"],"Unable to connect to host":[null,"Impossible de se connecter à l'hôte"],"SMS sent successfully":[null,"Le SMS a été envoyé avec succès"],"Problem sending SMS: {message}":[null,"Problème lors de l'envoi du SMS : {message}"],"Telegram notification succeeded. Check your Telegram clients to make sure it worked":[null,"La notification de Telegram a réussi. Vérifiez vos clients Telegram pour vous assurer que cela a fonctionné"],"Error sending Telegram notification: {message}":[null,"Erreur lors de l'envoi de la notification telegram : {message}"],"join notification succeeded. Check your join clients to make sure it worked":[null,"La notification de Join a réussi. Vérifiez vos clients Join pour vous assurer que cela a fonctionné"],"Error sending join notification: {message}":[null,"Erreur lors de l'envoi de la notification Join : {message}"]," with password":[null," avec mot de passe"],"Registered and Tested growl successfully {growl_host}":[null,"Succès de l'enregistrement et du test growl sur {growl_host}"],"Registration and Testing of growl failed {growl_host}":[null,"Échec de l'enregistrement et du test growl sur {growl_host}"],"Test prowl notice sent successfully":[null,"Notification de test prowl envoyée avec succès"],"Test prowl notice failed":[null,"La notification de test prowl a échoué"],"Boxcar2 notification succeeded. Check your Boxcar2 clients to make sure it worked":[null,"La notification de Boxcar2 a réussi. Vérifiez votre client Boxcar2 pour vous assurer que cela a fonctionné"],"Error sending Boxcar2 notification":[null,"Erreur d'envoi de notification vers Boxcar2"],"Pushover notification succeeded. Check your Pushover clients to make sure it worked":[null,"La notification de Pushover a réussi. Vérifiez votre client Pushover pour vous assurer que cela a fonctionné"],"Error sending Pushover notification":[null,"Erreur lors de l'envoi de notification vers Pushover"],"Key verification successful":[null,"Vérification de la clé réussie"],"Unable to verify key":[null,"Impossible de vérifier la clé"],"Tweet successful, check your twitter to make sure it worked":[null,"Tweet bien envoyé, vérifier votre fil Twitter pour s'assurer que ça a fonctionné"],"Error sending tweet":[null,"Erreur lors de l'envoi du tweet"],"Please enter a valid account sid":[null,"Veuillez saisir un ID compte valide"],"Please enter a valid auth token":[null,"Veuillez saisir un jeton d'authentification valide"],"Please enter a valid phone sid":[null,"Veuillez saisir un ID téléphone valide"],"Please format the phone number as \"+1-###-###-####\"":[null,"Pour le numéro de téléphone, merci d'utiliser le format suivant \"+1-###-###-####\""],"Authorization successful and number ownership verified":[null,"Autorisation réussie et propriété du numéro vérifiée"],"Error sending sms":[null,"Erreur lors de l'envoi du SMS"],"Slack message successful":[null,"Message envoyé sur Slack"],"Slack message failed":[null,"Échec de l’envoi du message"],"Discord message successful":[null,"Message envoyé sur Discord"],"Discord message failed":[null,"Échec de l’envoi du message sur Discord"],"Test KODI notice sent successfully to {kodi_host}":[null,"La notification de test KODI a été envoyée avec succès vers {kodi_host}"],"Test KODI notice failed to {kodi_host}":[null,"La notification de test KODI a échoué vers {kodi_host}"],"Successful test notice sent to Plex Home Theater ... {plex_clients}":[null,"Test de notification a été envoyé avec succès à Plex Home Theater ... {plex_clients}"],"Test failed for Plex Home Theater ... {plex_clients}":[null,"Le teste de Plex Home Theater a échoué ... {plex_clients}"],"Tested Plex Home Theater(s)":[null,"Plex Home Theater(s) testé"],"Successful test of Plex Media Server(s) ... {plex_servers}":[null,"Test de Plex Media serveur (s) réussi ... {plex_servers}"],"Test failed, No Plex Media Server host specified":[null,"Test échoué, aucun hôte spécifié pour Plex Media serveur"],"Test failed for Plex Media Server(s) ... {plex_servers}":[null,"Test échoué pour Plex Media serveur(s)... {plex_servers}"],"Tested Plex Media Server host(s)":[null,"Hôte(s) Plex Media Server testé(s)"],"Tried sending desktop notification via libnotify":[null,"Tentative d'envoi de notification de bureau via libnotify"],"Test notice sent successfully to {emby_host}":[null,"Notification de test envoyée à {emby_host} avec succès"],"Test notice failed to {emby_host}":[null,"La notification de test vers {emby_host} a échoué"],"Successfully started the scan update":[null,"Scan de mise à jour démarré avec succès"],"Test failed to start the scan update":[null,"Le test pour démarrer le scan de mise à jour a échoué"],"Test notice sent successfully to {nmj2_host}":[null,"La notification de test a été envoyée avec succès a {nmj2_host}"],"Test notice failed to {nmj2_host}":[null,"La notification de test a échoué vers {nmj2_host}"],"Trakt Authorized":[null,"Trakt autorisé"],"Trakt Not Authorized!":[null,"Trakt non autorisé !"],"Test email sent successfully! Check inbox.":[null,"Mail de test envoyé avec succès ! Vérifiez votre boîte de réception."],"ERROR: {last_error}":[null,"ERREUR : {last_error}"],"Test NMA notice sent successfully":[null,"Notification de test NMA envoyée avec succès"],"Test NMA notice failed":[null,"Notification de test NMA a échoué"],"Pushalot notification succeeded. Check your Pushalot clients to make sure it worked":[null,"La notification de Pushalot a réussi. Vérifiez vos clients Pushalot pour vous assurer que cela a fonctionné"],"Error sending Pushalot notification":[null,"Erreur d'envoi de notification vers Pushalot"],"Pushbullet notification succeeded. Check your device to make sure it worked":[null,"Notification de Pushbullet a été envoyée. Vérifiez votre appareil pour s'assurer que cela a fonctionné"],"Error sending Pushbullet notification":[null,"Erreur d'envoi de notification sur Pushbullet"],"Status":[null,"Statut"],"Restarting SickRage":[null,"Redémarrage de SickRage en cours"],"Update Failed":[null,"La mise à jour a échoué"],"Update wasn't successful, not restarting. Check your log for more information.":[null,"La mise à jour n'a pas été appliquée, il n'y a pas eu de redémarrage. Consultez votre journal des événements pour plus d'informations."],"Checking out branch":[null,"Récupération de la branche"],"Already on branch":[null,"Déjà sur la branche"],"Invalid show ID: {show}":[null,"ID de la série non-valide : {show}"],"Show not in show list":[null,"Cette série n'est pas dans la liste des séries"],"Edit":[null,"Éditer"],"This show is in the process of being downloaded - the info below is incomplete.":[null,"Cette série est en cours de téléchargement - l’info ci-dessous est incomplète."],"The information on this page is in the process of being updated.":[null,"Les informations sur cette page sont en cours d’actualisation."],"The episodes below are currently being refreshed from disk":[null,"Les épisodes ci-dessous sont en cours d'actualisation depuis le disque"],"Currently downloading subtitles for this show":[null,"Les sous-titres sont en cours de téléchargement pour cette série"],"This show is queued to be refreshed.":[null,"Cette série est en attente d'être rafraîchie."],"This show is queued and awaiting an update.":[null,"Cette série est mise en attente car elle attend une mise à jour."],"This show is queued and awaiting subtitles download.":[null,"Cette série est mise en attente car elle attend le téléchargement des sous-titres."],"Resume":[null,"Reprendre"],"Pause":[null,"Suspendre"],"Remove":[null,"Retirer"],"Re-scan files":[null,"Re-scanner les fichiers"],"Force Full Update":[null,"Forcer la mise à jour"],"Update show in KODI":[null,"Mettre à jour la série dans KODI"],"Update show in Emby":[null,"Mettre à jour la série dans Emby"],"Hide specials":[null,"Cacher les épisodes spéciaux"],"Show specials":[null,"Afficher les épisodes spéciaux"],"Preview Rename":[null,"Aperçu du renommage"],"Download Subtitles":[null,"Télécharger les sous-titres"],"No scene exceptions":[null,"Pas d'exception scène"],"Invalid show ID":[null,"Identifiant de série invalide"],"Unable to find the specified show":[null,"Impossible de trouver la série spécifiée"],"Unable to retreive Fansub Groups from AniDB.":[null,"Impossible de récupérer les groupes de Fansub depuis AniDB."],"Edit Show":[null,"Éditer la série"],"Unable to refresh this show: {error}":[null,"Impossible d'actualiser cette série : {error}"],"New location <tt>{location}</tt> does not exist":[null,"Le nouvel emplacement <tt>{location}</tt> n'existe pas"],"Unable to update show: {error}":[null,"Impossible de mettre à jour la série : {error}"],"Unable to force an update on scene exceptions of the show.":[null,"Impossible de forcer la mise à jour sur les exceptions scène de cette série."],"Unable to force an update on scene numbering of the show.":[null,"Impossible de forcer une mise à jour sur la numérotation scène de cette série."],"{num_errors:d} error{plural} while saving changes:":[null,"{num_errors:d} erreur{plural} lors de l'enregistrement des modifications :"],"{show_name} has been {paused_resumed}":[null,"{show_name} a été {paused_resumed}"],"resumed":[null,"relancé"],"paused":[null,"suspendu"],"{show_name} has been {deleted_trashed} {was_deleted}":[null,"{show_name} a été {deleted_trashed} {was_deleted}"],"deleted":[null,"supprimé"],"trashed":[null,"dans la corbeille"],"(media untouched)":[null,"(médias intacts)"],"(with all related media)":[null,"(avec tous les médias associés)"],"Unable to refresh this show.":[null,"Impossible d'actualiser cette série."],"Unable to update this show.":[null,"Impossible de mettre à jour cette série."],"Library update command sent to KODI host(s)): {kodi_hosts}":[null,"La commande de mise à jour de la bibliothèque a été envoyée à l'hôte KODI : {kodi_hosts}"],"Unable to contact one or more KODI host(s)): {kodi_hosts}":[null,"Impossible de joindre un ou plusieurs hôte(s) KODI : {kodi_hosts}"],"Library update command sent to Plex Media Server host: {plex_server}":[null,"La commande de mise à jour de la bibliothèque a été envoyée à l'hôte Plex Media Server : {plex_server}"],"Unable to contact Plex Media Server host: {plex_server}":[null,"Impossible de joindre l'hôte de Plex Media Server : {plex_server}"],"Library update command sent to Emby host: {emby_host}":[null,"La commande de mise à jour de bibliothèque a été envoyée à l'hôte Emby : {emby_host}"],"Unable to contact Emby host: {emby_host}":[null,"Impossible de joindre l'hôte Emby : {emby_host}"],"You must specify a show and at least one episode":[null,"Vous devez spécifier une série et au moins un épisode"],"Invalid status":[null,"Statut invalide"],"Backlog was automatically started for the following seasons of <b>{show_name}</b>":[null,"La recherche des épisodes désirés concernant les saisons sélectionnées de <b>{show_name}</b> a automatiquement démarré"],"Season":[null,"Saison"],"Backlog started":[null,"La recherche des épisodes désirés a commencé"],"Retrying Search was automatically started for the following season of <b>{show_name}</b>":[null,"Le nouvel essai de recherche va démarrer automatiquement pour la saison suivante de <b>{show_name}</b>"],"Retry Search started":[null,"La nouvelle tentative de recherche a commencé"],"You must specify a show":[null,"Vous devez spécifier une série"],"Can't rename episodes when the show dir is missing.":[null,"Impossible de renommer les épisodes, le dossier de la série est introuvable."],"New subtitles downloaded: {new_subtitle_languages}":[null,"Nouveaux sous-titres téléchargés : {new_subtitle_languages}"],"No subtitles downloaded":[null,"Aucun sous-titres téléchargé"],"IRC":[null,"IRC"],"Could not load news from the repo. [Click here for news.md])({news_url})":[null,"Impossible de charger les nouveautés depuis ce dépôt. [Cliquer ici pour consulter news.md])({news_url})"],"The was a problem connecting to github, please refresh and try again":[null,"Problème de connexion à github, rafraîchissez et recommencez"],"Could not load changes from the repo. [Click here for CHANGES.md]({changes_url})":[null,"Impossible de charger les changements depuis le dépôt. [Cliquez ici pour consulter CHANGES.md] ({changes_url})"],"Changelog":[null,"Journal des modifications"],"Post Processing":[null,"Post-traitement"],"Add Shows":[null,"Ajouter des séries"],"No folders selected.":[null,"Aucun dossier sélectionné."],"New Show":[null,"Nouvelles séries"],"Trending Shows":[null,"Séries tendances"],"Popular Shows":[null,"Séries populaires"],"Most Anticipated Shows":[null,"Séries les plus attendues"],"Most Collected Shows":[null,"Séries les plus collectées"],"Most Watched Shows":[null,"Séries les plus visionnées"],"Most Played Shows":[null,"Séries les plus lues"],"Recommended Shows":[null,"Séries recommandées"],"New Shows":[null,"Nouvelles séries"],"Season Premieres":[null,"Début de saison"],"Existing Show":[null,"Série existante"],"No root directories setup, please go back and add one.":[null,"Pas de répertoire racine configuré, merci de revenir en arrière et d'en ajouter un."],"Show added":[null,"Série ajoutée"],"Adding the specified show {show_name}":[null,"Ajout de la série {show_name}"],"Missing params, no Indexer ID or folder: {show_to_add} and {root_dir}/{show_path}":[null,"Paramètres manquants, pas d'ID d'indexeur ou de dossier : {show_to_add} et {root_dir}/{show_path}"],"Unknown error. Unable to add show due to problem with show selection.":[null,"Erreur inconnue. Impossible d'ajouter la série en raison d'un problème avec la sélection de série."],"Unable to add show":[null,"Impossible d'ajouter la série"],"Folder {show_dir} exists already":[null,"Le dossier {show_dir} existe déjà"],"Unable to create the folder {show_dir}, can't add the show":[null,"Impossible de créer le dossier {show_dir}, impossible d'ajouter la série"],"Adding the specified show into {show_dir}":[null,"Ajout de la série dans {show_dir}"],"Shows Added":[null,"Séries ajoutées"],"Automatically added {num_shows} from their existing metadata files":[null,"Ajout automatique de {num_shows} depuis leurs fichiers métadonnées"],"Mass Update":[null,"Mettre à jour par lots"],"Episode Overview":[null,"Aperçu de l'épisode"],"Missing Subtitles":[null,"Sous-titres manquants"],"Backlog Overview":[null,"Vue d'ensemble des épisodes désirés"],"Mass Edit":[null,"Édition par lots"],"Unable to update show: {excption_format}":[null,"Impossible de mettre à jour la série : {excption_format}"],"Unable to refresh show {show_name}: {excption_format}":[null,"Impossible d'actualiser la série {show_name} : {excption_format}"],"Errors encountered":[null,"Des erreurs sont survenues"],"Updates":[null,"Mises à jour"],"Refreshes":[null,"Actualiser "],"Renames":[null,"Renommer"],"Subtitles":[null,"Sous-titres"],"The following actions were queued":[null,"Les actions suivantes ont été mises en attente"],"Failed Downloads":[null,"Téléchargements échoués"],"Manage Searches":[null,"Gérer les recherches"],"Backlog search started":[null,"La recherche des épisodes désirés a commencé"],"Daily search started":[null,"La recherche quotidienne a commencé"],"Find propers search started":[null,"La recherche pour trouver les Propers a commencé"],"Subtitle search started":[null,"Recherche de sous-titre a commencé"],"Remove Selected":[null,"Supprimer la sélection"],"Clear History":[null,"Effacer l'historique"],"Trim History":[null,"Réduire l'historique"],"Selected history entries removed":[null,"Supprimer l'historique sélectionné"],"History cleared":[null,"Historique effacé"],"Removed history entries older than 30 days":[null,"Supprimer les entrées datant de plus de 30 jours"],"General":[null,"Général"],"Backup/Restore":[null,"Sauvegarde / Restauration"],"Search Settings":[null,"Paramètres de recherche"],"Search Providers":[null,"Moteurs de recherche"],"Subtitles Settings":[null,"Paramètres des sous-titres"],"Notifications":[null,"Notifications"],"Anime":[null,"Animé"],"SickRage Configuration":[null,"Configuration de SickRage"],"Config - Shares":[null,"Configuration - Partages"],"Windows Shares Configuration":[null,"Configuration des Partages Windows"],"Saved Shares":[null,"Partages enregistrés"],"Your Windows share settings have been saved":[null,"Vos paramètres de partage Windows ont été sauvegardés"],"Config - General":[null,"Config - Général"],"General Configuration":[null,"Configuration générale"],"Saved Defaults":[null,"Enregistrer par défaut"],"Your \"add show\" defaults have been set to your current selections.":[null,"Les options actuelles ont été sauvegardées comme options par défaut."],"Unable to create directory {directory}, log directory not changed.":[null,"Impossible de créer le répertoire {directory}, le répertoire du journal d'événement n'a pas changé."],"Unable to create directory {directory}, https cert directory not changed.":[null,"Impossible de créer le répertoire {directory}, le répertoire du certificat HTTPS n'a pas changé."],"Unable to create directory {directory}, https key directory not changed.":[null,"Impossible de créer le répertoire {directory}, le répertoire clé HTTPS n'a pas changé."],"Error(s) Saving Configuration":[null,"Erreur(s) lors de l'enregistrement de la configuration"],"Configuration Saved":[null,"Configuration enregistrée"],"Config - Backup/Restore":[null,"Config - Sauvegarde/Restauration"],"Config - Episode Search":[null,"Config - Recherche d'épisode"],"Config - Post Processing":[null,"Config - Post-traitement"],"Unpacking Not Supported, disabling unpack setting":[null,"Décompression non supportée, désactivation du réglage de décompression"],"You tried saving an invalid normal naming config, not saving your naming settings":[null,"Vous essayez de sauvegarder une configuration de nommage non valide, vos réglages de nommage ne seront pas sauvegardés"],"You tried saving an invalid anime naming config, not saving your naming settings":[null,"Vous essayez de sauvegarder une configuration non valide de nommage d'un Animé, vos réglages de nommage ne seront pas sauvegardés"],"Config - Providers":[null,"Config - Fournisseurs"],"No Provider Name specified":[null,"Pas de nom de Fournisseur spécifié"],"No Provider Url specified":[null,"Pas d'URL de Fournisseur spécifié"],"No Provider Api key specified":[null,"Pas de clé API Fournisseur spécifié"],"Config - Notifications":[null,"Config - Notifications"],"Config - Subtitles":[null,"Config - Sous-titres"],"Config - Anime":[null,"Config - Anime"],"Clear Errors":[null,"Effacer les erreurs"],"Clear Warnings":[null,"Effacer les avertissements"],"Submit Errors":[null,"Soumettre les erreurs"],"Logs & Errors":[null,"Journaux & Erreurs"],"Log File":[null,"Journal des événements"],"Logs":[null,"Journaux"],"This is a test notification from SickRage":[null,"Ceci est un message test de la part de SickRage"],"Choose Directory":[null,""],"Select log file folder location":[null,""],"Select CSS file":[null,""],"Select backup folder to save to":[null,""],"Select backup files to restore":[null,""],"Please fill out the necessary fields above.":[null,"Veuillez remplir les champs nécessaires ci-dessus."],"<b>Step 1:</b> Confirm Authorization":[null,""],"Check blacklist name; the value needs to be a trakt slug":[null,""],"You must provide a recipient email address!":[null,""],"You didn't supply a Pushbullet api key":[null,""],"Don't forget to save your new pushbullet settings.":[null,""],"Select TV Download Directory":[null,""],"Select Unpack Directory":[null,""],"This pattern is invalid.":[null,"Ce modèle n'est pas valide."],"This pattern would be invalid without the folders, using it will force \"Season Folders\" on for all shows.":[null,"Ce modèle serait invalide sans les dossiers, en l'utilisant cela forcera la création \"Dossiers par Saison\" sur toutes les séries."],"This pattern is valid.":[null,"Ce modèle est valide."],"Select .nzb black hole/watch location":[null,""],"Select .torrent black hole/watch location":[null,""],"Select .torrent download location":[null,""],"Minimum seeding time is":[null,""],"URL to your uTorrent client (e.g. http://localhost:8000)":[null,""],"Stop seeding when inactive for":[null,""],"URL to your Transmission client (e.g. http://localhost:9091)":[null,""],"URL to your Deluge client (e.g. http://localhost:8112)":[null,""],"IP or Hostname of your Deluge Daemon (e.g. scgi://localhost:58846)":[null,""],"URL to your Synology DS client (e.g. http://localhost:5000)":[null,""],"URL to your rTorrent client (e.g. scgi://localhost:5000 <br> or https://localhost/rutorrent/plugins/httprpc/action.php)":[null,""],"URL to your qBittorrent client (e.g. http://localhost:8080)":[null,""],"URL to your MLDonkey (e.g. http://localhost:4080)":[null,""],"URL to your putio client (e.g. http://localhost:8080)":[null,""],"<a herf=\"https://app.put.io/oauth/apps/new\" target=\"_blank\"> Create a new OAuth app for put.io</a>":[null,""],"Put.io Parent Folder":[null,""],"Put.io OAuth Token":[null,""],"Show Episodes":[null,"Afficher les épisodes"],"Hide Episodes":[null,"Cacher les épisodes"],"Select Show Location":[null,""],"Select Unprocessed Episode Folder":[null,""],"DELETED":[null,""],"Resume updating the log on this page.":[null,"Reprendre la mise à jour du log sur cette page."],"Pause updating the log on this page.":[null,"Mettre en pause la mise à jour du log sur cette page."],"searching {searchingFor}...":[null,""],"search timed out, try again or try another indexer":[null,""],"loading folders...":[null,""],"Loading...":[null,"Chargement..."],"You have reached this page by accident, please check the url.":[null,"Vous avez atteint cette page par hasard, vérifiez l'url."],"A mako error has occured.<br>\n If this happened during an update a simple page refresh may be the solution.<br>\n Mako errors that happen during updates may be a one time error if there were significant ui changes.":[null,"Une erreur mako est survenue. <br>\n Si cela s'est passé pendant une mise à jour un simple rafraîchissement de la page devrait corriger le problème. <br>\n Les erreurs mako qui se produisent pendant les mises à jour peuvent être ponctuelles s'il y a eu un changement significatif dans l'interface utilisateur."],"Show/Hide Error":[null,"Afficher/Masquer les erreurs"],"Add New Show":[null,"Ajouter une nouvelle série"],"For shows that you haven't downloaded yet, this option finds a show on theTVDB.com, creates a directory for it's episodes, and adds it to SickRage.":[null,"Pour les séries que vous n'avez pas encore téléchargé, cette option trouve une série sur theTVDB.com, crée un répertoire pour ses épisodes et l'ajoute à SickRage."],"Add From Trakt Lists":[null,"Ajouter depuis les listes Trakt"],"For shows that you haven't downloaded yet, this option lets you choose from a show from one of the Trakt lists to add to SickRage.":[null,"Pour les séries que vous n'avez pas encore téléchargé, cette option vous laisse choisir une série dans une de vos listes Trakt pour l'ajouter à SickRage."],"Add From IMDB's Popular Shows":[null,"Ajouter à partir des séries populaires de IMDB"],"View IMDB's list of the most popular shows. This feature uses IMDB's MOVIEMeter algorithm to identify popular TV Series.":[null,"Voir la liste IMDB des séries les plus populaires. Cette fonctionnalité utilise l'algorithme MOVIEMeter d'IMDB pour identifier les séries populaires."],"Add Existing Shows":[null,"Ajouter des séries existantes"],"Use this option to add shows that already have a folder created on your hard drive. SickRage will scan your existing metadata/episodes and add the show accordingly.":[null,"Cette option permet d'ajouter des séries qui ont déjà un dossier créé sur votre disque dur. SickRage va scanner vos métadonnées/épisodes existants et ajouter la série en conséquence."],"Add Existing Show":[null,"Ajouter une série existante"],"Manage Directories":[null,"Gérer les répertoires"],"Customize Options":[null,"Personnaliser les Options"],"SickRage can add existing shows, using the current options, by using locally stored NFO/XML metadata to eliminate user interaction. If you would rather have SickRage prompt you to customize each show, then use the checkbox below.":[null,"SickRage peut ajouter des séries existantes, en utilisant les options actuelles, à l'aide des métadonnées NFO/XML stockées localement pour éviter à l’utilisateur d'intervenir. Si vous préférez que SickRage vous invite à personnaliser chaque série, utilisez la case ci-dessous."],"Prompt me to set settings for each show":[null,"M'inviter à définir des paramètres pour chaque série"],"Displaying folders within these directories which aren't already added to SickRage":[null,"Affiche les sous répertoires de ces répertoires qui n'ont pas encore été ajouté à SickRage"],"Submit":[null,"Valider"],"Find a show on theTVDB":[null,"Trouver une série sur theTVDB"],"Show retrieved from existing metadata":[null,"Série récupérée depuis les métadonnées existantes"],"All Indexers":[null,"Tous les indexeurs"],"Search":[null,"Chercher"],"This will only affect the language of the retrieved metadata file contents and episode filenames.":[null,"Ceci affectera seulement la langue du contenu du fichier de métadonnées récupérées et les noms de fichiers des épisodes."],"This <b>DOES NOT</b> allow SickRage to download non-english TV episodes!":[null,"Ceci <b>N'AUTORISE PAS</b> SickRage à télécharger les épisodes directement en français !"],"Pick the parent folder":[null,"Sélectionner le dossier de base"],"Pre-chosen Destination Folder":[null,"Dossier de destination pré-établie"],"Customize options":[null,"Personnaliser les options"],"Add Show":[null,"Ajouter la série"],"Skip Show":[null,"Ignorer la série"],"Sort By":[null,"Trier par"],"Name":[null,"Nom"],"Original":[null,"Original"],"Votes":[null,"Votes"],"Rating":[null,"Classement"],"Rating > Votes":[null,"Classement > Votes"],"Sort Order":[null,"Ordre de tri"],"Asc":[null,"Croissant"],"Desc":[null,"Décroissant"],"Fetching of IMDB Data failed. Are you online?":[null,"Échec de récupération des données IMDB. Êtes-vous en ligne ?"],"Exception":[null,"Exception"],"Select Trakt List":[null,"Sélectionnez la liste Trakt"],"Most Anticipated":[null,"Plus attendues"],"Trending":[null,"Tendances"],"Popular":[null,"Populaires"],"Most Watched":[null,"Plus visionnées"],"Most Played":[null,"Plus lues"],"Most Collected":[null,"Plus collectées"],"Recommended":[null,"Recommandées"],"Toggle navigation":[null,"Activer/Désactiver la navigation"],"Profile":[null,"Profil"],"JSONP":[null,"JSONP"],"Back to SickRage":[null,"Retour à SickRage"],"Parameters":[null,"Paramètres"],"Required":[null,"Obligatoire"],"Description":[null,"Description"],"Type":[null,"Type"],"Default value":[null,"Valeur par défaut"],"Allowed values":[null,"Valeurs autorisées"],"Playground":[null,"Aire de jeux"],"Clear":[null,"Vider"],"Yes":[null,"Oui"],"No":[null,"Non"],"season":[null,"saison"],"episode":[null,"épisode"],"Python Version":[null,"Version de Python"],"SSL Version":[null,"Version SSL"],"OS":[null,"OS"],"Locale":[null,"Local"],"User":[null,"Utilisateur"],"Program Folder":[null,"Dossier du programme"],"Config File":[null,"Fichier de configuration"],"Database File":[null,"Fichier de base de données"],"Cache Folder":[null,"Dossier du cache"],"Log Folder":[null,"Dossier du journal des événements"],"Arguments":[null,"Arguments"],"Web Root":[null,"Racine web"],"Website":[null,"Site internet"],"Wiki":[null,"Wiki"],"Source":[null,"Source"],"IRC Chat":[null,"Chat IRC"],"AnimeDB Settings":[null,"Paramètres d'AnimeDB"],"Look & Feel":[null,"Apparence"],"AniDB is non-profit database of anime information that is freely open to the public":[null,"AniDB est une base de données à but non lucratif spécialisée dans les animés, qui est librement ouverte au public"],"Enable":[null,"Activer"],"should SickRage use data from AniDB?":[null,"SickRage doit-il utiliser les données fournies par AniDB ?"],"AniDB Username":[null,"Nom d'utilisateur AniDB"],"username of your AniDB account":[null,"nom d'utilisateur de votre compte AniDB"],"AniDB Password":[null,"Mot de passe AniDB"],"password of your AniDB account":[null,"mot de passe de votre compte AniDB"],"AniDB MyList":[null,"Ma liste AniDB"],"do you want to add the PostProcessed episodes to the MyList?":[null,"Souhaitez-vous ajouter les épisodes post-traités à MyList ?"],"Look and Feel":[null,"Apparence"],"How should the anime functions show and behave.":[null,"Manière d'afficher les animés dans la liste des séries"],"Split show lists":[null,"Séparer la liste des séries"],"separate anime and normal shows in groups":[null,"Séparer la liste des animés de celle des séries"],"Split in tabs":[null,"Séparer en onglets"],"use tabs for when splitting show lists":[null,"Utiliser des onglets pour séparer la liste des séries"],"Restore":[null,"Restaurer"],"Backup your main database file and config.":[null,"Sauvegarder la base de données et la configuration."],"Select the folder you wish to save your backup file to":[null,"Sélectionner le dossier où enregistrer votre sauvegarde"],"Restore your main database file and config.":[null,"Restaurer la base de données et la configuration."],"Select the backup file you wish to restore":[null,"Sélectionner votre sauvegarde à restaurer"],"Misc":[null,"Divers"],"Interface":[null,"Interface"],"Advanced Settings":[null,"Paramètres avancés"],"Startup options. Indexer options. Log and show file locations.":[null,"Options de démarrage. Options de l'indexeur. Emplacements des fichiers du journal des événements et des séries."],"Some options may require a manual restart to take effect.":[null,"Certaines options peuvent exiger un redémarrage manuel pour être prises en compte."],"Default Indexer Language":[null,"Langue par défaut de l'Indexeur"],"for adding shows and metadata providers":[null,"pour l'ajout de série et les fournisseurs de metadonnées"],"Launch browser":[null,"Au lancement du navigateur"],"open the SickRage home page on startup":[null,"ouvrir la page d'accueil de SickRage au démarrage"],"Initial page":[null,"Page d'accueil"],"Shows":[null,"Séries"],"when launching SickRage interface":[null,"lors du lancement de l'interface SickRage"],"Choose hour to update shows":[null,"Choisir l'heure de mise à jour des séries"],"with information such as next air dates, show ended, etc. Use 15 for 3pm, 4 for 4am etc.":[null,"pour les informations comme les prochaines dates de sortie, la fin de la série, etc. Mettre 15 pour 15h00 et 4 pour 04h00 etc."],"note":[null,"remarque"],"minutes are randomized each time SickRage is started":[null,"Chaque fois que SickRage démarre, les minutes sont aléatoires"],"Send to trash for actions":[null,"Envoyer dans la corbeille :"],"when using show \"Remove\" and delete files":[null,"quand vous utilisez \"Retirer\" la série et supprimer les fichiers"],"on scheduled deletes of the oldest log files":[null,"supprimer les anciens fichiers du journal des événements via les tâches planifiées"],"selected actions use trash (recycle bin) instead of the default permanent delete":[null,"les actions sélectionnées mettent les fichiers dans la corbeille plutôt que de les supprimer définitivement"],"Log file folder location":[null,"Emplacement du dossier du journal des événements"],"Number of Log files saved":[null,"Nombre de fichiers du journal des événements sauvegardés"],"number of log files saved when rotating logs (default: 5) (REQUIRES RESTART)":[null,"nombre de fichiers du journal des événements sauvegardé pour la rotation (défaut: 5) (Redémarrage requis)"],"Size of Log files saved":[null,"Taille des fichiers du journal des événements sauvegardés"],"maximum size in MB of the log file (default: 1MB) (REQUIRES RESTART)":[null,"taille maximale en Mo du fichier du journal des événements (par défaut : 1MB) (nécessite le redémarrage)"],"Use initial indexer set to":[null,"L’indexeur initial choisi est"],"as the default selection when adding new shows":[null,"sélection par défaut lors de l'ajout de nouvelles séries"],"Timeout show indexer at":[null,"Timeout pour l'indexation des séries"],"seconds of inactivity when finding new shows (default:20)":[null,"secondes d'inactivité lors de la recherche de nouvelles séries (par défaut : 20)"],"Show root directories":[null,"Afficher les répertoires racines"],"where the files of shows are located":[null,"où sont situés les fichiers de la série"],"Save Changes":[null,"Sauvegarder les modifications"],"Options for software updates.":[null,"Options pour les mises à jour logicielles."],"Check software updates":[null,"Vérifier les mises à jour"],"and display notifications when updates are available. Checks are run on startup and at the frequency set below*":[null,"et afficher les notifications lorsque des mises à jour sont disponibles. Les vérifications sont exécutées au démarrage et à la fréquence définie ci-dessous *"],"Automatically update":[null,"Mettre à jour automatiquement"],"fetch and install software updates. Updates are run on startup and in the background at the frequency set below*":[null,"récupérer et installer les mises à jour. Les mises à jour sont exécutées au démarrage et en arrière-plan à la fréquence définie ci-dessous *"],"Check the server every*":[null,"Vérifier le serveur chaque*"],"hours for software updates (default:1)":[null,"intervalle de temps pour les mises à jour logiciel en heure (par défaut : 1)"],"Notify on software update":[null,"Notification lors des mises à jour de SickRage"],"send a message to all enabled notifiers when SickRage has been updated":[null,"envoyer un message à tous les services de notifications activés lorsque SickRage a été mis à jour"],"User Interface":[null,"Interface Utilisateur"],"Options for visual appearance.":[null,"Options pour l'aspect visuel."],"Interface Language":[null,"Langue de l'interface"],"System Language":[null,"Langue du système"],"for appearance to take effect, save then refresh your browser":[null,"pour que le changement soit pris en compte, sauvegardez et rafraîchissez votre navigateur"],"Display theme":[null,"Thème de l'affichage"],"Dark":[null,"Sombre"],"Light":[null,"Clair"],"Use a background image":[null,"Utiliser une image d'arrière-plan"],"use a custom image as background for SickRage":[null,"Utiliser une image d'arrière-plan personnalisée pour SickRage"],"Background Path":[null,"Chemin pour l'arrière-plan"],"Path to the background image":[null,"Chemin de l'image d'arrière-plan"],"Show fanart in the background":[null,"Voir le fanart en arrière-plan"],"on the show summary page":[null,"sur la page du résumé de la série"],"Fanart transparency":[null,"Transparence du fanart"],"transparency of the fanart in the background":[null,"Transparence du fanart en arrière-plan"],"Use a custom stylesheet file":[null,"Utiliser une feuille de style personnalisée"],"use a custom .css file to style SickRage (for advanced users)":[null,"utiliser un fichier .css personnalisé pour configurer l'apparence de SickRage (pour les utilisateurs avancés)"],"Stylesheet File Path":[null,"Chemin vers la feuille de style"],"Path to the stylesheet (.css) file":[null,"Chemin vers le fichier (.css) de la feuille de style"],"Show all seasons":[null,"Afficher toutes les saisons"],"Sort with \"The\", \"A\", \"An\"":[null,"Trier en tenant compte de \"Le\", \"Un\", \"Une\", \"The\""],"include articles (\"The\", \"A\", \"An\") when sorting show lists":[null,"inclut les articles (\"Le\", \"Un\", \"Une\", \"The\") lors du tri de la liste des séries"],"Missed episodes range":[null,"Période de recherche des épisodes manquants"],"set the range in days of the missed episodes in the Schedule page":[null,"régler l’intervalle en jours des épisodes manqués dans le Planning"],"Display fuzzy dates":[null,"Afficher les dates non confirmées"],"move absolute dates into tooltips and display e.g. \"Last Thu\", \"On Tue\"":[null,"déplacer les dates absolues dans les info-bulles et afficher par exemple « Jeudi dernier\",\"Mardi\""],"Trim zero padding":[null,"Supprimer les zéros inutiles"],"remove the leading number \"0\" shown on hour of day, and date of month":[null,"supprimer le premier « 0 » sur l'heure de la journée et la date du mois"],"Date style":[null,"Format de date"],"Use System Default":[null,"Utiliser celui du système par défaut"],"Time style":[null,"Format de l'heure"],"seconds are only shown on the History page":[null,"les secondes ne s'affichent que sur la page d'historique"],"Timezone":[null,"Fuseau horaire"],"Local":[null,"Local"],"Network":[null,"Diffuseur"],"display dates and times in either your timezone or the shows network timezone":[null,"afficher les dates et les heures dans votre fuseau horaire ou dans le fuseau horaire de la chaîne diffusant la série"],"use local timezone to start searching for episodes minutes after show ends (depends on your dailysearch frequency)":[null,"utiliser le fuseau horaire local pour lancer la recherche d'épisodes quelques minutes après que l'épisode soit terminé (dépend de la fréquence de recherche journalière)"],"Download url":[null,"Url de téléchargement"],"URL where the shows can be downloaded.":[null,"URL où les séries peuvent être téléchargées."],"Web Interface":[null,"Interface Web"],"it is recommended that you enable a username and password to secure SickRage from being tampered with remotely.":[null,"il est recommandé de définir un nom d'utilisateur et mot de passe pour sécuriser l’accès à distance de SickRage."],"these options require a manual restart to take effect.":[null,"ces options nécessitent un redémarrage manuel pour être prises en compte."],"API key":[null,"Clé API"],"used to give 3rd party programs limited access to SickRage":[null,"utilisée pour donner un accès limité à SickRage à des logiciels tiers"],"you can try all the features of the API":[null,"vous pouvez essayer toutes les fonctionnalités de l'API"],"here":[null,"ici"],"HTTP logs":[null,"Journaux HTTP"],"enable logs from the internal Tornado web server":[null,"activer le journal des événements du serveur web Tornado"],"HTTP username":[null,"Utilisateur HTTP"],"set blank for no login":[null,"laisser vide pour désactiver la connexion"],"HTTP password":[null,"Mot de passe HTTP"],"blank = no authentication":[null,"vide = pas d'authentification"],"HTTP port":[null,"Port HTTP"],"web port to browse and access SickRage (default:8081)":[null,"port utilisé pour accéder à l'interface web de SickRage (par défaut : 8081)"],"Notify on login":[null,"Notification lors de la connexion"],"enable to be notified when a new login happens in webserver":[null,"activer pour être notifié lors d'une nouvelle connexion au serveur web"],"Listen on IPv6":[null,"Écouter sur IPv6"],"attempt binding to any available IPv6 address":[null,"essayer de se connecter à n'importe quelle adresse IPv6 disponible"],"Enable HTTPS":[null,"Activer HTTPS"],"enable access to the web interface using a HTTPS address":[null,"activer la connexion à l'interface web à partir d'une adresse HTTPS"],"HTTPS certificate":[null,"Certificat HTTPS"],"file name or path to HTTPS certificate":[null,"nom du fichier ou chemin vers le certificat HTTPS"],"HTTPS key":[null,"Clé HTTPS"],"file name or path to HTTPS key":[null,"nom du fichier ou chemin vers la clé HTTPS"],"Reverse proxy headers":[null,"En-têtes du reverse proxy"],"accept the following reverse proxy headers (advanced)...":[null,"accepter les en-têtes du reverse proxy suivantes (avancé)..."],"(X-Forwarded-For, X-Forwarded-Host, and X-Forwarded-Proto)":[null,"(X-Forwarded-For, X-Forwarded-Host, et X-Forwarded-Proto)"],"CPU throttling":[null,"Charge CPU"],"Normal (default). High is lower and Low is higher CPU use":[null,"Normal (par défaut). Haut utilise moins le CPU que Bas"],"Anonymous redirect":[null,"Redirection anonyme"],"backlink protection via anonymizer service, must end in \"?\"":[null,"lien d'anonymisation , doit se terminer par \"?\""],"Enable debug":[null,"Activer le débogage"],"enable debug logs":[null,"Activer les journaux de débogage"],"Verify SSL Certs":[null,"Vérifier les certificats SSL"],"verify SSL Certificates (Disable this for broken SSL installs (Like QNAP))":[null,"vérification des certificats SSL (désactiver ceci pour les installations avec SSL cassé (comme QNAP))"],"No Restart":[null,"Pas de redémarrage"],"only shutdown when restarting SR":[null,"arrêter seulement quand SR redémarre"],"only select this when you have external software restarting SR automatically when it stops (like FireDaemon)":[null,"Ne sélectionner cette option que si vous avez un service externe qui redémarre SickRage automatiquement quand il s'arrête (comme FireDaemon)"],"Encrypt passwords":[null,"Crypter les mots de passe"],"in the <code>config.ini</code> file":[null,"dans le fichier <code>config.ini</code>"],"warning":[null,"avertissement"],"passwords must only contain":[null,"Les mots de passe doivent contenir uniquement"],"ASCII characters":[null,"caractères ASCII"],"Unprotected calendar":[null,"Calendrier public"],"allow subscribing to the calendar without user and password":[null,"permettre de s’abonner au calendrier sans utilisateur et mot de passe"],"some services like Google Calendar only work this way":[null,"seulement certains services comme Google Agenda fonctionnent de cette façon"],"Google Calendar Icons":[null,"Icônes de Google Agenda"],"show an icon next to exported calendar events in Google Calendar":[null,"afficher une icône à côté des événements exportés dans Google Agenda"],"Proxy host":[null,"Hôte proxy"],"blank to disable or proxy to use when connecting to providers":[null,"proxy à utiliser pour se connecter aux fournisseurs, laisser vide pour désactiver"],"also use global proxy setting for indexers (tvdb, xem, anidb, etc.)":[null,"Utiliser également les paramètres généraux du proxy pour les indexeurs (tvdb, xem, anidb, etc.)"],"Skip Remove Detection":[null,"Ignorer la détection du déplacement"],"skip detection of removed files":[null,"ignorer la détection des fichiers supprimés"],"if disabled the episode will be set to the default deleted status":[null,"Si désactivé, l'épisode aura le statut \"supprimé\" par défaut"],"Default deleted episode status":[null,"Statut par défaut des épisodes supprimés"],"define the status to be set for media file that has been deleted.":[null,"définir le statut d'un fichier qui vient d'être supprimé."],"Archived option will keep previous downloaded quality":[null,"l'option \"Archivé\" conservera la qualité déjà téléchargée"],"example: Downloaded (1080p WEB-DL) ==> Archived (1080p WEB-DL)":[null,"exemple : Téléchargé (1080p WEB-DL) ==> Archivé (1080p WEB-DL)"],"Options for github related features.":[null,"Options pour les fonctions liées à github."],"Branch version":[null,"Version de la branche"],"error: No branches found.":[null,"erreur : Aucune branche trouvée."],"select branch to use (restart required)":[null,"sélectionnez la branche à utiliser (redémarrage requis)"],"Authorization Type":[null,"Type d'Autorisation"],"Username and password":[null,"Nom d'utilisateur et mot de passe"],"Personal access token":[null,"Jeton d'accès personnel"],"You must use a personal access token if you're using \"two-factor authentication\" on GitHub.":[null,"Vous devez utiliser un jeton d'accès personnel si vous avez activé \"l'authentification en deux étapes\" sur GitHub."],"GitHub username":[null,"Nom d'utilisateur GitHub"],"*** (REQUIRED FOR SUBMITTING ISSUES) ***":[null,"*** (REQUIS POUR SOUMETTRE DES FAITS TECHNIQUES) ***"],"GitHub password":[null,"Mot de passe GitHub"],"GitHub personal access token":[null,"Jeton d'accès personnel pour GitHub"],"Generate Token":[null,"Générer un jeton"],"Manage Tokens":[null,"Gestion des jetons"],"GitHub remote for branch":[null,"Github de la branche"],"access repo configured remotes (save then refresh browser)":[null,"accès au dépôt à distance configuré (enregistrez puis actualisez votre navigateur)"],"default":[null,"par défaut"],"origin":[null,"origine"],"Git executable path":[null,"Chemin de l'exécutable Git"],"only needed if OS is unable to locate git from env":[null,"à utiliser uniquement si le système d'exploitation n'arrive pas à localiser git depuis l'environnement"],"Git reset":[null,"Git reset"],"removes untracked files and performs a hard reset on git branch automatically to help resolve update issues":[null,"supprime les fichier sans suivi et effectue une remise à zéro à partir de la branche git automatiquement pour aider à résoudre les problème de mise à jour"],"Home Theater / NAS":[null,"Home Cinéma / NAS"],"Devices":[null,"Appareils"],"Social":[null,"Social"],"A free and open source cross-platform media center and home entertainment system software with a 10-foot user interface designed for the living-room TV.":[null,"Un système multimédia multiplateformes gratuit et libre avec une interface de 10 pouces conçue pour les téléviseurs de salon."],"send KODI commands?":[null,"Envoyer des commandes à KODI ?"],"Always on":[null,"Toujours activé"],"log errors when unreachable?":[null,"journaliser les erreurs lorsque la connexion est impossible ?"],"Notify on snatch":[null,"Notifier la récupération"],"send a notification when a download starts?":[null,"envoyer une notification quand un téléchargement démarre ?"],"Notify on download":[null,"Notifier les téléchargements"],"send a notification when a download finishes?":[null,"envoyer une notification quand un téléchargement se termine ?"],"Notify on subtitle download":[null,"Notifier le téléchargement de sous-titres"],"send a notification when subtitles are downloaded?":[null,"envoyer une notification quand un sous-titre est téléchargé ?"],"Update library":[null,"Mettre à jour la bibliothèque "],"update KODI library when a download finishes?":[null,"Mettre à jour la bibliothèque KODI lorsqu'un téléchargement est terminé ?"],"Full library update":[null,"Mise à jour de l'intégralité de la bibliothèque"],"perform a full library update if update per-show fails?":[null,"effectuer une mise à jour de l'intégralité de la bibliothèque en cas d'échec de la mise à jour par séries ?"],"Only update first host":[null,"Mettre à jour uniquement le premier hôte"],"only send library updates to the first active host?":[null,"envoyer uniquement la mise à jour de bibliothèque au premier hôte actif ?"],"KODI IP:Port":[null,"KODI IP: Port"],"host running KODI (eg. 192.168.1.100:8080)":[null,"Serveur KODI (ex. 192.168.1.100:8080)"],"(multiple host strings must be separated by commas)":[null,"(Séparer chaque nom de serveur par une virgule)"],"Username":[null,"Nom d’utilisateur"],"username for your KODI server (blank for none)":[null,"nom d'utilisateur du serveur KODI (vide si aucun)"],"Password":[null,"Mot de passe "],"password for your KODI server (blank for none)":[null,"mot de passe du serveur KODI (vide si aucun)"],"Click below to test.":[null,"Cliquez ci-dessous pour tester."],"Experience your media on a visually stunning, easy to use interface on your Mac connected to your TV. Your media library has never looked this good!":[null,"Vivez vos séries de manière éblouissante, grâce à une interface facile d’accès sur votre mac connecté à votre télé. Jamais votre médiathèque n'a autant été mise en valeur!"],"For sending notifications to Plex Home Theater (PHT) clients, use the KODI notifier with port <b>3005</b>.":[null,"Pour envoyer des notifications aux clients de Plex Home Theater (PHT), utilisez la notification KODI avec le port <b>3005</b>."],"send Plex Media Server library updates?":[null,"envoyer des mises à jour à la bibliothèque de Plex Media Server ?"],"Plex Media Server Auth Token":[null,"Jeton d'authentification de Plex Media Server"],"auth token used by Plex":[null,"jeton d'authentification utilisé par Plex"],"Update Library":[null,"Mettre à jour la bibliothèque"],"update Plex Media Server library when a download finishes":[null,"mettre à jour la bibliothèque de Plex Media Server quand un téléchargement se termine"],"Plex Media Server IP:Port":[null,"Plex Media Server IP: port"],"one or more hosts running Plex Media Server<br/>(eg. 192.168.1.1:32400, 192.168.1.2:32400)":[null,"un ou plusieurs hôtes exécute Plex Media Server<br/>(ex. 192.168.1.1:32400, 192.168.1.2:32400)"],"HTTPS":[null,"HTTPS"],"use https for plex media server requests?":[null,"utiliser le https pour les requêtes Plex Media Server ?"],"Click below to test Plex Media Server(s)":[null,"Cliquer ci-dessous pour tester Plex Media Server(s)"],"Test Plex Media Server":[null,"Test Plex Media Server"],"Plex Home Theater":[null,"Plex Home Theater"],"send Plex Home Theater notifications?":[null,"envoyer des notifications à Plex Home Theater ?"],"Plex Home Theater IP:Port":[null,"Plex Home Theater IP:Port"],"one or more hosts running Plex Home Theater<br>(eg. 192.168.1.100:3000, 192.168.1.101:3000)":[null,"un ou plusieurs serveurs Plex Home Theater<br>(eg. 192.168.1.100:3000, 192.168.1.101:3000)"],"Click below to test Plex Home Theater(s)":[null,"Cliquez ci-dessous pour tester Plex Home Theater(s)"],"Test Plex Home Theater":[null,"Test de Plex Home Theater"],"some Plex Home Theaters <b class=\"boldest\">do not</b> support notifications e.g. Plexapp for Samsung TVs":[null,"certains Plex Home Theater <b class=\"boldest\">ne supportent pas</b> la prise en charge des notifications ex. Plexapp pour TV Samsung"],"Emby":[null,"Emby"],"A home media server built using other popular open source technologies.":[null,"Un serveur multimédia créé à l'aide d'autres technologies open source populaires."],"send update commands to Emby?":[null,"envoyer des commandes de mise à jour à Emby ?"],"Emby IP:Port":[null,"Emby IP: port"],"host running Emby (eg. 192.168.1.100:8096)":[null,"Serveur Emby (ex. 192.168.1.100:8096)"],"Emby API Key":[null,"Clé API pour Emby"],"Networked Media Jukebox":[null,"Networked Media Jukebox"],"The Networked Media Jukebox, or NMJ, is the official media jukebox interface made available for the Popcorn Hour 200-series.":[null,"Le Networked Media Jukebox ou NMJ, est l'interface de juke-box officielle disponible sur le Popcorn Hour 200-series."],"send update commands to NMJ?":[null,"envoyer des commandes de mise à jour à NMJ ?"],"Popcorn IP address":[null,"Adresse IP de Popcorn"],"IP address of Popcorn 200-series (eg. 192.168.1.100)":[null,"Adresse IP de Popcorn 200-series (eg. 192.168.1.100)"],"Get settings":[null,"Obtention des paramètres"],"Get Settings":[null,"Obtenir les paramètres"],"the Popcorn Hour device must be powered on and NMJ running.":[null,"le périphérique Popcorn Hour doit être allumé et NMJ en fonctionnement."],"NMJ database":[null,"Base de données NMJ"],"automatically filled via the 'Get Settings' button.":[null,"remplir automatiquement via le bouton 'Obtenir les paramètres'."],"NMJ mount url":[null,"Url de NMJ"],"Networked Media Jukebox v2":[null,"Networked Media Jukebox v2"],"The Networked Media Jukebox, or NMJv2, is the official media jukebox interface made available for the Popcorn Hour 300 & 400-series.":[null,"Le Networked Media Jukebox ou NMJv2, est l'interface officielle de juke-box disponible sur les séries 300 & 400 des Popcorn Hour."],"send update commands to NMJv2?":[null,"envoyer des commandes de mise à jour à NMJv2?"],"IP address of Popcorn 300/400-series (eg. 192.168.1.100)":[null,"Adresse IP de Popcorn 300/400-series (ex. 192.168.1.100)"],"Database location":[null,"Emplacement de la base de données"],"Database instance":[null,"Instance de la base de données"],"adjust this value if the wrong database is selected.":[null,"régler cette valeur si la mauvaise base de données est sélectionnée."],"Find database":[null,"Trouver la base de données"],"Find Database":[null,"Trouver la base de données"],"the Popcorn Hour device must be powered on.":[null,"L'appareil Popcorn Hour doit être allumé."],"NMJv2 database":[null,"Base de données NMJv2"],"automatically filled via the 'Find Database' buttons.":[null,"Remplir automatiquement via le bouton 'Trouver la base de données'."],"Synology":[null,"Synology"],"The Synology DiskStation NAS.":[null,"Le Synology DiskStation NAS."],"Synology Indexer is the daemon running on the Synology NAS to build its media database.":[null,"Synology indexer, le deamon qui tourne sur le NAS Synology, permet la construction d'une base de données des médias."],"send Synology notifications?":[null,"envoyer des notifications à Synology ?"],"requires SickRage to be running on your Synology NAS.":[null,"nécessite que SickRage soit lancé sur votre NAS Synology."],"Synology Indexer":[null,"Indexeur Synology"],"Synology Notifier is the notification system of Synology DSM":[null,"Synology Notifier est le système de notification de Synology DSM"],"send notifications to the Synology Notifier?":[null,"envoyer des notifications à Synology Notifier ?"],"pyTivo":[null,"pyTivo"],"pyTivo is both an HMO and GoBack server. This notifier will load the completed downloads to your Tivo.":[null,"pyTivo est à la fois un HMO et un serveur GoBack. Ce service chargera le téléchargement complété vers votre Tivo."],"send notifications to pyTivo?":[null,"envoyer des notifications à pyTivo ?"],"requires the downloaded files to be accessible by pyTivo.":[null,"requiert les fichiers téléchargés pour être accessible par pyTivo."],"pyTivo IP:Port":[null,"pyTivo IP: port"],"host running pyTivo (eg. 192.168.1.1:9032)":[null,"hôte exécutant pyTivo (par exemple. 192.168.1.1:9032)"],"pyTivo share name":[null,"Nom de partage pyTivo"],"value used in pyTivo Web Configuration to name the share.":[null,"valeur utilisée dans la configuration web de pyTivo pour nommer le partage."],"Tivo name":[null,"Nom Tivo"],"(Messages & Settings > Account & System Information > System Information > DVR name)":[null,"(Messages & Réglages > Compte & Information Système > Information Système > Nom du DVR)"],"Growl":[null,"Growl"],"A cross-platform unobtrusive global notification system.":[null,"Un système de notification multi-plateformes non intrusif."],"send Growl notifications?":[null,"envoyer des notifications Growl?"],"Growl IP:Port":[null,"Growl IP:Port"],"host running Growl (eg. 192.168.1.100:23053)":[null,"hôte exécutant Growl (par exemple. 192.168.1.100:23053)"],"may leave blank if SickRage is on the same host.":[null,"ne pas remplir si Sickrage est en localhost."],"otherwise Growl <b>requires</b> a password to be used.":[null,"Dans le cas contraire, Growl <b>nécessite</b> un mot de passe pour être utilisé."],"Click below to register and test Growl, this is required for Growl notifications to work.":[null,"Cliquez ci-dessous pour vous inscrire et tester Growl, ceci est nécessaire pour que les notifications Growl fonctionnent."],"Register Growl":[null,"S'inscrire sur Growl"],"Prowl":[null,"Prowl"],"A Growl client for iOS.":[null,"Un client Growl pour iOS."],"send Prowl notifications?":[null,"envoyer des notifications Prowl ?"],"Prowl Message Title":[null,"Titre du message Prowl"],"Global Prowl API key(s)":[null,"Clé API Prowl"],"Prowl API(s) listed here, separated by commas if applicable, will<br> receive notifications for <b>all</b> shows. Your Prowl API key is available at:":[null,"Les clés API Prowl listées ici, séparées par des virgules, <br> recevront des notifications pour<b> toutes</b> les séries. Votre clé API Prowl est disponible à :"],"(this field may be blank except when testing.)":[null,"(ce champ doit rester vide sauf lors de tests.)"],"Show notification list":[null,"Voir la liste de notification"],"-- Select a Show --":[null,"-- Sélectionner une série --"],"Configure per-show notifications here by entering Prowl API key(s), separated by commas, '\n 'after selecting a show in the drop-down box. Be sure to activate the 'Save for this show' '\n 'button below after each entry.":[null,"Configurez les notifications par série en entrant la(les) clé(s) API Prowl séparée(s) par des virgules,'\n\n'en sélectionnant une série dans la liste déroulante. N'oubliez pas de cliquer sur \"Enregistrer pour cette série\" '\n 'pour chaque entrée."],"Save for this show":[null,"Enregistrer pour cette série"],"Prowl priority":[null,"Priorité Prowl"],"Very Low":[null,"Très bas"],"Moderate":[null,"Modéré"],"Normal":[null,"Normal"],"High":[null,"Élevé"],"Emergency":[null,"Urgence"],"priority of Prowl messages from SickRage.":[null,"priorité des messages Prowl depuis SickRage."],"Libnotify":[null,"Libnotify"],"The standard desktop notification API for Linux/*nix systems. This notifier will only function if the pynotify module is installed (Ubuntu/Debian package <a href=\"apt:python-notify\">python-notify</a>).":[null,"L'API de notification standard pour les systèmes Linux/*nix. Ce notificateur ne fonctionnera que si le module pynotify est installé (paquet Ubuntu/Debian <a href=\"apt:python-notify\">python-notify</a>)."],"send Libnotify notifications?":[null,"envoyer des notifications Libnotify?"],"Pushover":[null,"Pushover"],"Pushover makes it easy to send real-time notifications to your Android and iOS devices.":[null,"Pushover rend facile d'envoyer des notifications en temps réel à vos périphériques Android et iOS."],"send Pushover notifications?":[null,"envoyer des notifications Pushover?"],"Pushover key":[null,"Clé Pushover"],"user key of your Pushover account":[null,"clé d'utilisateur de votre compte Pushover"],"Pushover API key":[null,"Clé API Pushover"],"click here":[null,"cliquer ici"]," to create a Pushover API key":[null," pour créer une clé API Pushover"],"Pushover devices":[null,"Périphériques Pushover"],"comma separated list of pushover devices you want to send notifications to":[null,"liste des appareils, séparée par une virgule, à laquelle vous souhaitez envoyer des notifications via Pushover"],"Pushover notification sound":[null,"Son de la notification Pushover"],"Bike":[null,"Vélo"],"Bugle":[null,"Clairon"],"Cash Register":[null,"Caisse enregistreuse"],"Classical":[null,"Classique"],"Cosmic":[null,"Cosmique"],"Falling":[null,"Chute"],"Gamelan":[null,"Jeu en réseau"],"Incoming":[null,"Entrant"],"Intermission":[null,"Entracte"],"Magic":[null,"Magique"],"Mechanical":[null,"Mécanique"],"Piano Bar":[null,"Piano-Bar"],"Siren":[null,"Sirène"],"Space Alarm":[null,"Sirène d'alarme"],"Tug Boat":[null,"Remorqueur"],"Alien Alarm (long)":[null,"Alarme Alien (long)"],"Climb (long)":[null,"Montée (long)"],"Persistent (long)":[null,"Persistant (long)"],"Pushover Echo (long)":[null,"Echo Pushover (long)"],"Up Down (long)":[null,"Dessus Dessous (long)"],"None (silent)":[null,"Aucun (silencieux)"],"Device specific":[null,"Spécifique au périphérique"],"choose notification sound to use":[null,"choisir le son de la notification à utiliser"],"Pushover priority":[null,"Priorité Pushover"],"Choose priority to use":[null,"Choisissez la priorité à utiliser"],"Boxcar 2":[null,"Boxcar 2"],"Read your messages where and when you want them!":[null,"Lisez vos messages où et quand vous le souhaitez !"],"send Boxcar notifications?":[null,"envoyer des notifications Boxcar ?"],"Boxcar2 access token":[null,"Jeton d'authentification Boxcar 2"],"access token for your Boxcar account.":[null,"jeton d'authentification de votre compte Boxcar."],"NMA":[null,"NMA"],"Notify My Android":[null,"Notifier Mon Android"],"Notify My Android is a Prowl-like Android App and API that offers an easy way to send notifications from your application directly to your Android device.":[null,"Notify My Android est une application android et une API qui permet d'envoyer facilement des notifications vers votre appareil android."],"send NMA notifications?":[null,"envoyer des notifications NMA ?"],"NMA API key":[null,"Clé de l'API NMA"],"(multiple keys must be separated by commas, up to a maximum of 5)":[null,"(plusieurs clés doivent être séparées par des virgules, 5 maximum)"],"NMA priority":[null,"Priorité de NMA"],"priority of NMA messages from SickRage.":[null,"priorité des messages NMA depuis SickRage."],"Pushalot":[null,"Pushalot"],"Pushalot is a platform for receiving custom push notifications to connected devices running Windows Phone or Windows 8.":[null,"Pushalot est une plateforme pour recevoir des notifications sur des périphériques connectés fonctionnant avec Windows Phone ou Windows 8."],"send Pushalot notifications ?":[null,"envoyer des notifications Pushalot ?"],"Pushalot authorization token":[null,"Jeton d'authentification Pushalot"],"authorization token of your Pushalot account.":[null,"Jeton d'authentification de votre compte Pushalot."],"Pushbullet":[null,"Pushbullet"],"Pushbullet is a platform for receiving custom push notifications to connected devices running Android/iOS and desktop browsers such as Chrome, Firefox or Opera.":[null,"Pushbullet est une plateforme de réception de notifications personnalisées sur les périphériques connectés Android/iOS ou les navigateurs internet comme Chrome, Firefox ou Opera."],"send Pushbullet notifications?":[null,"envoyer des notifications Pushbullet?"],"Pushbullet API key":[null,"Clé API Pushbullet"],"API key of your Pushbullet account":[null,"Clé API de votre compte Pushbullet"],"Pushbullet devices":[null,"Périphériques Pushbullet"],"Update device list":[null,"Mise à jour de la liste des périphériques"],"Pushbullet channels":[null,"Chaînes Pushbullet"],"Free Mobile":[null,"Free Mobile"],"Free Mobile is a famous French cellular network provider.<br> It provides to their customer a free SMS API.":[null,"Free Mobile est un opérateur de téléphonie mobile Français.<br> Il fourni a ses abonnés une API SMS gratuite."],"send SMS notifications?":[null,"envoyer des notifications par SMS ?"],"send a SMS when a download starts?":[null,"envoyer un SMS quand un téléchargement démarre ?"],"send a SMS when a download finishes?":[null,"envoyer un SMS quand un téléchargement se termine ?"],"send a SMS when subtitles are downloaded?":[null,"envoyer un SMS quand les sous-titres sont téléchargés ?"],"Free Mobile customer ID":[null,"Identifiant client Free Mobile"],"it's your Free Mobile customer ID (8 digits)":[null,"il s'agit de votre identifiant client Free Mobile (8 chiffres)"],"Free Mobile API key":[null,"Clé API Free Mobile"],"find your API key in your customer portal.":[null,"Récupérez votre clé API sur le portail client."],"Click below to test your settings.":[null,"Cliquez ici pour tester vos paramètres."],"Telegram":[null,"Telegram"],"Telegram is a cloud-based instant messaging service.":[null,"Telegram est un service de messagerie instantané sur le cloud."],"send Telegram notifications?":[null,"Envoyer des notifications Telegram ?"],"send a message when a download starts?":[null,"envoyer un message lorsqu'un téléchargement démarre ?"],"send a message when a download finishes?":[null,"envoyer un message lorsqu'un téléchargement se termine ?"],"send a message when subtitles are downloaded?":[null,"envoyer un message lorsque les sous-titres sont téléchargés ?"],"User/group ID":[null,"ID d'utilisateur/groupe"],"contact @myidbot on Telegram to get an ID":[null,"contactez @myidbot sur Telegram pour obtenir un ID"],"Bot API token":[null,"Jeton API Bot"],"contact @BotFather on Telegram to set up one":[null,"contactez @BotFather sur Telegram pour en mettre un en place"],"Join":[null,"Join"],"Join all of your devices together!":[null,"Unissez tous vos appareils ensemble !"],"send Join notifications?":[null,"envoyer des notifications Join ?"],"Device ID":[null,"ID de l'appareil"],"per device specific id":[null,"par l'id spécifique de l'appareil"]," to create a Join API key":[null," pour créer une clé API Join"],"Twilio":[null,"Twilio"],"Twilio is a webservice API that allows you to communicate directly with a mobile number. This notifier will send a text directly to your mobile device.":[null,"Twilio est une API qui vous permet de communiquer directement avec un numéro de téléphone. Cette notification se fera directement via un message sur votre téléphone."],"should SickRage text your mobile device?":[null,"Est-ce que Sickrage doit vous envoyer un message sur votre téléphone ?"],"Twilio Account SID":[null,"ID du compte Twilio"],"account SID of your Twilio account.":[null,"ID de votre compte Twilio"],"Twilio Auth Token":[null,"Jeton d'authentification Twilio"],"Twilio Phone SID":[null,"ID du téléphone utilisé sur Twilio"],"phone SID that you would like to send the sms from":[null,"ID du téléphone à partir duquel envoyer les sms"],"Your phone number":[null,"Votre numéro de téléphone"],"phone number that will receive the sms. Please use the format +1-###-###-####":[null,"numéro de téléphone qui recevra les SMS. Merci d'utiliser le format suivant +1-###-###-####"],"Twitter":[null,"Twitter"],"A social networking and microblogging service, enabling its users to send and read other users' messages called tweets.":[null,"Un réseau social et service de microblogging, permet aux utilisateurs d'envoyer et de lire les messages des autres utilisateurs appelés tweets."],"should SickRage post tweets on Twitter?":[null,"Est-ce que SickRage doit poster des tweets sur Twitter ?"],"you may want to use a secondary account.":[null,"vous pouvez utiliser un compte secondaire."],"send direct message":[null,"envoi de message privé"],"send a notification via Direct Message, not via status update":[null,"envoyer une notification par Message Direct (DM) et non par une mise à jour du statut"],"send DM to":[null,"envoyer un DM à"],"Twitter account to send Direct Messages to (must follow you)":[null,"Compte Twitter pour envoyer des Messages Directs (on doit vous suivre)"],"Step One":[null,"Première étape"],"Request Authorization":[null,"Demander l'autorisation"],"Click the \"Request Authorization\" button.<br> This will open a new page containing an auth key.<br> <b>note:</b> if nothing happens check your popup blocker.":[null,"Cliquer sur le bouton \"Demander l’autorisation\". <br>Ça ouvrira une nouvelle fenêtre qui contient la clé d'authentification.<br> <b>note:</b> si rien ne se passe, vérifiez votre bloqueur de popup."],"Step Two":[null,"Deuxième étape"],"Enter the key Twitter gave you below, and click \"Verify Key\".":[null,"Entrez ci-dessous la clé que Twitter vous a donné et cliquez sur \"Vérifier la clé\"."],"Trakt":[null,"Trakt"],"Trakt helps keep a record of what TV shows and movies you are watching. Based on your favorites, Trakt recommends additional shows and movies you'll enjoy!":[null,"Trakt permet de maintenir une base de données de séries TV et de films que vous regardez. En se basant sur vos favoris, Trakt vous recommandera d'autres séries ou films que vous apprécierez !"],"send Trakt.tv notifications?":[null,"envoyer des notifications à Trakt.tv ?"],"username of your Trakt account.":[null,"nom d'utilisateur de votre compte Trakt."],"Trakt PIN":[null,"Trakt PIN"],"Get Trakt PIN":[null,"Récupérer le PIN Trakt"],"PIN code to authorize SickRage to access Trakt on your behalf.":[null,"Code PIN pour autoriser SickRage d’accéder à Trakt en votre nom."],"API Timeout":[null,"API Timeout"],"seconds to wait for Trakt API to respond. (Use 0 to wait forever)":[null,"Nombre de seconde à attendre pour que l'API de Trakt réponde. (Saisir 0 pour attendre indéfiniment)"],"Default indexer":[null,"Indexeur par défaut"],"Sync libraries":[null,"Synchroniser les bibliothèques"],"sync your SickRage show library with your trakt show library.":[null,"synchroniser votre bibliothèque SickRage avec celle de Trakt."],"Remove Episodes From Collection":[null,"Supprimer les épisodes de la collection"],"remove an episode from your Trakt Collection if it is not in your SickRage Library.":[null,"Retirer un épisode de votre collection Trakt s'il n'est pas dans votre bibliothèque SickRage."],"Sync watchlist":[null,"Synchroniser votre liste à voir"],"sync your SickRage show watchlist with your trakt show watchlist (either Show and Episode).":[null,"synchroniser votre liste de séries à voir de SickRage avec celle de votre compte Trakt (séries et épisodes)."],"episode will be added on watch list when wanted or snatched and will be removed when downloaded ":[null,"L’épisode sera ajouté sur la liste \"à voir\" quand il sera recherché ou récupéré et sera retiré quand il sera téléchargé "],"Watchlist add method":[null,"Méthode d'ajout à la liste à voir"],"Skip All":[null,"Tout ignorer"],"Download Pilot Only":[null,"Télécharger l'épisode pilote uniquement"],"Get whole show":[null,"Récupérer toute la série"],"method in which to download episodes for new shows.":[null,"mode par défaut pour les épisodes des séries récemment ajoutée."],"Remove episode":[null,"Supprimer l'épisode"],"remove an episode from your watchlist after it is downloaded.":[null,"supprimer un épisode de votre liste de suivi une fois téléchargé."],"Remove series":[null,"Supprimer la série"],"remove the whole series from your watchlist after any download.":[null,"supprimer toute la série de votre liste de suivi après le téléchargement."],"Remove watched show":[null,"Supprimer les séries regardées"],"remove the show from sickrage if it's ended and completely watched":[null,"supprimer la série de Sickrage si elle est terminée et entièrement regardée"],"Start paused":[null,"Démarrer en suspend"],"shows grabbed from your trakt watchlist start paused.":[null,"les séries ajoutées depuis Trakt démarrent en suspend."],"Trakt blackList name":[null,"Liste noire pour Trakt"],"name (slug) of list on Trakt for blacklisting show on 'Add Trending Show' & 'Add Recommended Shows' pages":[null,"nom (slug) de liste sur Trakt qui sert de blacklist pour les séries qui se trouvent sur les pages 'Ajouter une série tendance' & 'Ajouter une série recommandée'"],"Email":[null,"Mail "],"Allows configuration of email notifications on a per show basis.":[null,"Permettre la configuration des notifications par mail pour chaque série."],"send email notifications?":[null,"Envoyer des notifications par mail ?"],"SMTP host":[null,"Hôte SMTP"],"hostname of your SMTP email server.":[null,"Nom d'hôte de votre serveur de messagerie SMTP."],"SMTP port":[null,"Port SMTP"],"port number used to connect to your SMTP host.":[null,"port utilisé pour se connecter au serveur SMTP."],"SMTP from":[null,"SMTP de"],"sender email address, some hosts require a real address.":[null,"adresse mail émettrice, certains serveurs requièrent une adresse réelle."],"Use TLS":[null,"Utiliser TLS"],"check to use TLS encryption.":[null,"cocher pour utiliser le cryptage TLS."],"SMTP user":[null,"Utilisateur SMTP"],"(optional) your SMTP server username.":[null,"(facultatif) votre nom d'utilisateur du serveur SMTP."],"SMTP password":[null,"Mot de passe SMTP"],"(optional) your SMTP server password.":[null,"(facultatif) votre mot de passe du serveur SMTP."],"Global email list":[null,"Liste mail générale"],"email addresses listed here, separated by commas if applicable, will<br> receive notifications for <b>all</b> shows.":[null,"Les adresses mail répertoriées ici, séparées par une virgule<br /> recevront des notifications pour <b>toutes</b> les séries."],"(This field may be blank except when testing.)":[null,"(Ce champ doit rester vide sauf lors de tests.)"],"Email Subject":[null,"Objet du mail"],"use a custom subject for some privacy protection?":[null,"Utiliser un sujet personnalisé pour la protection de la vie privée ?"],"(leave blank for the default SickRage subject)":[null,"(Laissez vide pour utiliser SickRage comme sujet par défaut)"],"configure per-show notifications here by entering email address(es), separated by commas,":[null,"Configurer ici les notifications par série en saisissant les adresses mail, séparées par des virgules,"],"after selecting a show in the drop-down box. Be sure to activate the 'Save for this show'":[null,"après avoir sélectionné une série dans la liste déroulante. N'oubliez pas de cliquer sur \"Enregistrer pour cette série\""],"button below after each entry.":[null,"(bouton ci-dessous) après chaque entrée."],"Slack":[null,"Slack"],"Slack brings all your communication together in one place. It's real-time messaging, archiving and search for modern teams.":[null,"Slack regroupe toutes vos communications en un seul endroit. C’est en temps réel, messagerie, archivage et recherche de nouvelles équipes."],"should SickRage post messages on Slack?":[null,"Est-ce que SickRage doit poster des messages sur Slack ?"],"Slack Incoming Webhook":[null,"Webhook Slack entrant"],"Discord":[null,"Discord"],"All-in-one voice and text chat for gamers that's free, secure, and works on both your desktop and phone.":[null,"Le service tout-en-un de communication vocale et textuelle pour les joueurs est gratuit, sécurisé, et fonctionne sur votre ordinateur et smartphone."],"Should SickRage post messages on Discord?":[null,"Est-ce que SickRage doit poster des messages sur Discord ?"],"Discord Incoming Webhook":[null,"Webhook Discord entrant"],"Create webhook under channel settings.":[null,"Créer un webhook sous les paramètres de chaînes."],"Discord Bot Name":[null,"Nom du bot de Discord"],"Blank will use webhook default Name.":[null,"Le nom d'utilisateur webhook par défaut sera vide."],"Discord Avatar URL":[null,"URL de l'avatar Discord"],"Blank will use webhook default Avatar.":[null,"L'avatar webhook par défaut sera vide."],"Discord TTS":[null,"TTS Discord"],"Send notifications using text-to-speech":[null,"Envoyer des notifications en utilisant la fonction de synthèse vocale"],"Post-Processing":[null,"Post-traitement"],"Episode Naming":[null,"Nommage de l'épisode"],"Metadata":[null,"Métadonnées"],"Settings that dictate how SickRage should process completed downloads.":[null,"Paramètres qui déterminent comment SickRage doit traiter les fichiers téléchargés."],"enable the automatic post processor to scan and process any files in your Post Processing Dir":[null,"Autorisez le post-traitement automatique à analyser et traiter tous les fichiers dans votre répertoire de post-traitement"],"do not use if you use an external Post Processing script":[null,"Ne pas utiliser si vous utilisez un script de post-traitement externe"],"Post Processing Dir":[null,"Répertoire de post-traitement"],"the folder where your download client puts the completed TV downloads.":[null,"Le dossier où votre logiciel de téléchargement enregistre les téléchargements terminés de vos séries."],"please use seperate downloading and completed folders in your download client if possible.":[null,"Si possible, dans votre logiciel de téléchargement, utilisez des dossiers différents pour les téléchargements en cours et terminés."],"Processing Method":[null,"Méthode de traitement"],"what method should be used to put files into the library?":[null,"Quelle méthode doit être utilisée pour mettre les fichiers dans la bibliothèque ?"],"if you keep seeding torrents after they finish, please avoid the 'move' processing method to prevent errors.":[null,"Si vous gardez les torrents en seed après qu'ils soient terminés, il faut éviter d'utiliser la méthode de traitement \"Déplacer\" pour prévenir d'éventuelles erreurs."],"Auto Post-Processing Frequency":[null,"Fréquence automatique de post-traitement"],"time in minutes to check for new files to auto post-process (min 10)":[null,"Temps en minutes pour vérifier s'il y a des nouveaux fichiers à post-traiter automatiquement (minimum 10 min)"],"Postpone post processing":[null,"Reporter le post-traitement"],"wait to process a folder if sync files are present.":[null,"Attendre pour traiter un dossier si des fichiers de synchronisation s'y trouvent."],"Sync File Extensions":[null,"Extension des fichiers déjà synchronisés"],"comma seperated list of extensions or filename globs SickRage ignores when Post Processing":[null,"Liste des extensions ou nom de fichier, séparée par des virgules, que SickRage ignore lors du post-traitement"],"Rename Episodes":[null,"Renommer les épisodes"],"rename episode using the Episode Naming settings?":[null,"Renommer les épisodes en suivant le paramétrage de nommage ?"],"Create missing show directories":[null,"Créer les répertoires des séries manquants"],"create missing show directories when they get deleted":[null,"Créer les répertoires des séries manquants lorsqu'ils sont supprimés"],"Add shows without directory":[null,"Ajouter une série sans répertoire"],"add shows without creating a directory (not recommended)":[null,"Ajouter une série sans créer de répertoire (pas recommandé)"],"Move associated files":[null,"Déplacer les fichiers associés"],"move associated (srt/srr/sfv/etc) files while post processing?":[null,"Déplacer les fichiers associés (srt/srr/sfv/etc) pendant le post-traitement ?"],"Rename .nfo file":[null,"Renommer le fichier .nfo"],"rename the original .nfo file to .nfo-orig to avoid conflicts?":[null,"Renommez le fichier .nfo original en .nfo-orig pour éviter les conflits ?"],"Associated file extensions":[null,"Extensions de fichier associées"],"comma separated list of associated file extensions SickRage should keep while post processing.":[null,"la liste des extensions de fichier associées à Sickrage, séparée par des virgules, doit être conservée pendant le post-traitement."],"leaving it empty means no associated files will be post processed":[null,"laisser vide signifie qu'aucun fichier associé ne sera post-traité"],"Delete non associated files":[null,"Supprimer les fichiers non-associés"],"delete non associated files while post processing?":[null,"Supprimer les fichiers non-associés pendant le post-traitement ?"],"Change File Date":[null,"Modifier la date du fichier"],"set last modified filedate to the date that the episode aired?":[null,"Remplacer la date de dernière modification du fichier par celle de diffusion ?"],"some systems may ignore this feature.":[null,"Certains systèmes risquent d'ignorer cette fonctionnalité."],"Timezone for File Date":[null,"Fuseau horaire pour la date du fichier"],"local":[null,"local"],"network":[null,"réseau"],"what timezone should be used to change File Date?":[null,"Quel fuseau horaire doit être utilisé pour changer la date du fichier ?"],"Unpack":[null,"Décompresser"],"What to do with archived releases found in your <i>TV Download Dir</i>?":[null,"Que faire des releases archivées présentes dans votre <i>Répertoire de téléchargement des séries</i> ?"],"Ignore (do not process contents)":[null,"Ignorer (ne pas traiter le contenu)"],"Unpack (process contents)":[null,"Décompresser (traiter le contenu)"],"Treat as video (process archive as-is)":[null,"Traiter comme vidéo (traiter l'archive telle quelle)"],"'Unpack' only works with RAR archives":[null,"'Décompresser' fonctionne uniquement avec les archives RAR"],"Windows":[null,"Windows"],"WinRar is required on windows":[null,"Winrar est nécessaire sur Windows"],"Unpack Directory":[null,"Répertoire de décompression"],"Choose a path to unpack files, leave blank to unpack in download dir":[null,"Choisir un chemin pour décompresser les fichiers, laisser vide pour décompresser dans le répertoire de téléchargement"],"Unrar Location":[null,"Emplacement de décompression"],"add the path to unrar if it is not in the system path":[null,"Ajouter le chemin de décompression si jamais il est différent du chemin système"],"Alternate Unrar Tool":[null,"Outil de décompression alternatif"],"add the path to an alternate unrar tool if it is not in the system path":[null,"Ajouter le chemin de décompression concernant l'outil alternatif si jamais il est différent du chemin système"],"Delete RAR contents":[null,"Supprimer le contenu du RAR"],"delete content of RAR files, even if Process Method not set to move?":[null,"Supprimer le contenu des fichiers RAR, même si la méthode de traitement n'est pas sur \"Déplacer\" ?"],"only working with RAR archive":[null,"Fonctionne uniquement avec les archives RAR"],"Don't delete empty folders":[null,"Ne pas supprimer les dossiers vides"],"leave empty folders when Post Processing?":[null,"Conserver les dossiers vides suite au post-traitement ?"],"can be overridden using manual Post Processing":[null,"Peut être substitué à l'aide du post-traitement manuel"],"Follow symbolic-links":[null,"Suivre les liens symboliques"],"follow down symbolic links in download directory?":[null,"Suivre les liens symboliques dans le répertoire de téléchargement ?\n"],"<b>EXPERTS ONLY.</b><br>Enable only if you know what <b>circular symbolic links</b> are,<br>and can <b>verify that you have none</b>.":[null,"<b> EXPERTS SEULEMENT. </b> <br> Activer uniquement si vous savez quels sont<b> les liens symboliques circulaires </b>, <br>et vous pouvez <b> vérifier que vous n'en avez pas </b>."],"Use icacls":[null,"Utiliser Icacls"],"Windows only":[null,"Windows seulement"],"sets video permissions after using the move method in post processing":[null,"définit les autorisations vidéo après avoir utilisé la méthode \"Déplacer\" lors du post-traitement"],"Extra Scripts":[null,"Scripts additionnels"],"see":[null,"voir"],"for script arguments description and usage.":[null,"pour les arguments de description et d'utilisation des scripts."],"How SickRage will name and sort your episodes.":[null,"Comment SickRage va nommer et trier vos épisodes."],"Name Pattern":[null,"Modèle du nom"],"Toggle Naming Legend":[null,"Activer/Désactiver la légende de nommage"],"don't forget to add quality pattern. Otherwise after post-processing the episode will have UNKNOWN quality":[null,"N'oubliez pas d'ajouter le type de qualité. Sinon l'épisode après post-traitement aura une qualité INCONNUE"],"Meaning":[null,"Signification"],"Pattern":[null,"Schéma"],"Result":[null,"Résultat"],"Use lower case if you want lower case names (eg. %sn, %e.n, %q_n etc)":[null,"Utilisez les minuscules si vous souhaitez que les noms soit en minuscules (par exemple. %sn, %e.n, % q_n etc.)"],"Show Name":[null,"Nom de la série"],"Show.Name":[null,"Nom.Serie"],"Show_Name":[null,"Nom_Série"],"Season Number":[null,"Numéro de saison"],"XEM Season Number":[null,"Numero de saison XEM"],"Episode Number":[null,"Numéro de l'épisode"],"XEM Episode Number":[null,"Numéro d'épisode XEM"],"Episode Name":[null,"Nom de l'épisode"],"Episode.Name":[null,"Épisode.Nom"],"Episode_Name":[null,"Épisode_Nom"],"Air Date":[null,"Date de diffusion"],"Post-Processing Date":[null,"Date de post-traitement"],"Quality":[null,"Qualité"],"Scene Quality":[null,"Qualité de la scène"],"Release Name":[null,"Nom de sortie"],"SickRage' is used in place of RLSGROUP if it could not be properly detected":[null,"SickRage' est utilisé à la place de RLSGROUP s'il n'a pas pu être détecté correctement"],"Release Group":[null,"Groupe de Release"],"If episode is proper/repack add 'proper' to name.":[null,"Si l'épisode est proper/repack ajouter « proper » au nom."],"Release Type":[null,"Type de Release"],"Multi-Episode Style":[null,"Type du multi-épisodes"],"Single-EP Sample":[null,"Exemple pour un épisode simple"],"Multi-EP sample":[null,"Exemple pour un épisode multiple"],"Strip Show Year":[null,"Effacer l'année de la série"],"remove the TV show's year when renaming the file?":[null,"Effacer l'année de la série de lors du renommage du fichier ?"],"only applies to shows that have year inside parentheses":[null,"S'applique uniquement aux séries contenant l'année entre parenthèses"],"Custom Air-By-Date":[null,"Date de diffusion personnalisée"],"name air-by-date shows differently than regular shows?":[null,"Nommer les épisode par date différemment des autres ?"],"Toggle ABD Naming Legend":[null,"Activer/Désactiver la légende de nommage pour les ABD"],"Regular Air Date":[null,"Date de diffusion réelle"],"Year":[null,"Année"],"Month":[null,"Mois"],"Day":[null,"Jour"],"Multi-EP style is ignored":[null,"Le style multi-épisodes est ignoré"],"Custom Sports":[null,"Différencier les événements sportifs"],"name sports shows differently than regular shows?":[null,"Nommer les événements sportifs différemment des séries ?"],"Toggle Sports Naming Legend":[null,"Activer/Désactiver la légende de nommage pour les événements sportifs"],"Sports Air Date":[null,"Date de diffusion du sport"],"Custom Anime":[null,"Différencier les animés"],"name anime shows differently than regular shows?":[null,"Nommer les séries animées différemment des autres séries ?"],"Toggle Anime Naming Legend":[null,"Activer/Désactiver la légende de nommage pour les animés"],">XEM Season Number":[null,">Numéro de saison XEM"],"Single-EP Anime Sample":[null,"Exemple d'un simple épisode d'animés"],"Multi-EP Anime sample":[null,"Exemple pour un épisode d'animés multiple"],"Add Absolute Number":[null,"Ajouter le nombre absolu"],"add the absolute number to the season/episode format?":[null,"Ajouter le nombre absolu pour le format de saison/épisode ?"],"only applies to anime. (eg. S15E45 - 310 vs S15E45)":[null,"S'applique uniquement aux animés. (par exemple. S15E45 - 310 vs S15E45)"],"Only Absolute Number":[null,"Seulement le nombre absolu"],"replace season/episode format with absolute number":[null,"Remplacer le format de saison/épisode par le nombre absolu"],"only applies to anime.":[null,"S'applique uniquement aux animés."],"No Absolute Number":[null,"Aucun nombre absolu"],"don't include the absolute number":[null,"Ne pas inclure le nombre absolu"],"The data associated to the data. These are files associated to a TV show in the form of images and text that, when supported, will enhance the viewing experience.":[null,"Les données liées aux données. Voici les fichiers associés à une série sous la forme d'images et de texte qui, lorsque pris en charge, permettront d'améliorer l'expérience de visionnage."],"Metadata Type":[null,"Type de métadonnées"],"toggle metadata options that you wish to be created":[null,"Activer/désactiver les options de métadonnées que vous souhaitez créer"],"multiple targets may be used":[null,"Des cibles multiples peuvent être utilisées"],"Select Metadata":[null,"Sélectionner les métadonnées"],"Provider Priorities":[null,"Priorités du/des fournisseur(s)"],"Provider Options":[null,"Options du fournisseur"],"Configure Custom Newznab Providers":[null,"Configurer un fournisseur Newznab personnalisé"],"Configure Custom Torrent Providers":[null,"Configurer un fournisseur de torrent personnalisé"],"Check off and drag the providers into the order you want them to be used.":[null,"Cochez et faites glisser les fournisseurs dans l'ordre dont vous souhaitez qu'ils soient utilisés."],"At least one provider is required but two are recommended.":[null,"Au moins un fournisseur est requis mais deux sont recommandés."],"Torrent providers can be toggled in ":[null,"Les fournisseurs de torrent peuvent être activés/désactivés"],"Provider does not support backlog searches at this time.":[null,"Le fournisseur ne supporte pas les recherches d'épisodes désirés en ce moment."],"Provider is <b>NOT WORKING</b>.":[null,"Ce fournisseur <b>NE FONCTIONNE PAS</b>."],"Configure individual provider settings here.":[null,"Configurer les paramètres de chaque fournisseur ici."],"Check with provider's website on how to obtain an API key if needed.":[null,"Vérifier avec le site Web du fournisseur pour obtenir une clé API si nécessaire."],"Configure provider":[null,"Configurer le fournisseur"],"no providers available to configure.":[null,"Aucun fournisseur n'est configurable."],"URL":[null,"URL"],"Enable daily searches":[null,"Activer les recherches quotidiennes"],"enable provider to perform daily searches.":[null,"autoriser les fournisseurs à effectuer des recherches quotidiennes."],"Enable backlog searches":[null,"Activer la recherche des épisodes désirés"],"enable provider to perform backlog searches.":[null,"activer la recherche d'épisodes désirés pour ce fournisseur."],"Season search mode":[null,"Mode de recherche par saison"],"when searching for complete seasons you can choose to have it look for season packs only, or choose to have it build a complete season from just single episodes.":[null,"lors de la recherche des saisons complètes, vous pouvez choisir de chercher la saison entière uniquement, ou de constituer la saison en prenant les épisodes individuellement."],"season packs only.":[null,"saison complète uniquement."],"episodes only.":[null,"épisodes uniquement."],"Enable fallback":[null,"Activer le choix par défaut si indisponible"],"when searching for a complete season depending on search mode you may return no results, this helps by restarting the search using the opposite search mode.":[null,"Lors de la recherche d'une saison complète, en fonction du mode de recherche, il peut ne pas y avoir de résultat. Cette option améliore le fonctionnement en basculant sur l'autre mode de recherche."],"Custom URL":[null,"URL personnalisée"],"the URL should include the protocol (and port if applicable). Examples: http://192.168.1.4/ or http://localhost:3000/":[null,"L'URL doit inclure le protocole (et le port si besoin). Exemples : http://192.168.1.4/ ou http://localhost:3000/"],"Api key":[null,"Clé d'Api"],"Digest":[null,"Résumé"],"Hash":[null,"Hash"],"Passkey":[null,"Code"],"Cookies":[null,"Cookies"],"example: uid=1234;pass=567845439634987<br>note: uid and pass are not your username/password.<br>use DevTools or Firebug to get these values after logging in on your browser.":[null,"Exemple : uid = 1234 ; pass = 567845439634987 <br>Remarque : les uid et pass ne correspondent pas à votre nom d’utilisateur/mot de passe. <br> Utilisez DevTools ou Firebug pour obtenir ces valeurs une fois connecté sur votre navigateur."],"Pin":[null,"Code pin"],"Seed ratio":[null,"Ratio d'envoi"],"stop transfer when ratio is reached<br>(-1 SickRage default to seed forever, or leave blank for downloader default)":[null,"arrêter le téléchargement quand le ratio est atteint<br>(-1 est la valeur par défaut pour envoyer indéfiniment, ou laisser vide afin que ce soit la valeur par défaut de votre logiciel de téléchargement qui soit prise en compte)"],"Minimum seeders":[null,"Minimum de seeders"],"Minimum leechers":[null,"Minimum de leechers"],"Confirmed download":[null,"Téléchargement confirmé"],"only download torrents from trusted or verified uploaders ?":[null,"télécharger uniquement les torrents depuis des sources de confiance ou vérifiées ?"],"Ranked torrents":[null,"Torrents classés"],"only download ranked torrents (trusted releases)":[null,"télécharger uniquement des torrents classés (sorties de confiance)"],"English torrents":[null,"Torrents anglais"],"only download english torrents, or torrents containing english subtitles":[null,"télécharger uniquement les torrents en anglais ou contenant des sous-titres en anglais"],"For Spanish torrents":[null,"Pour les torrents Espagnol"],"ONLY search on this provider if show info is defined as \"Spanish\" (avoid provider's use for VOS shows)":[null,"Rechercher uniquement sur ce fournisseur si les infos de la série sont défini comme \"Espagnol\" (évite l'utilisation du fournisseur pour les épisodes en VOS)"],"Sorting results by":[null,"Trier les résultats par"],"Freeleech":[null,"Freeleech"],"only download <b>\"FreeLeech\"</b> torrents.":[null,"télécharger uniquement des torrents <b>\"FreeLeech\"</b>."],"Category":[null,"Catégorie"],"select torrent with Italian subtitle":[null,"sélectionner un torrent avec des sous-titres italiens"],"Configure Custom<br>Newznab Providers":[null,"Configurer un fournisseur<br>Newznab personnalisé"],"Add and setup or remove custom Newznab providers.":[null,"Ajouter et configurer ou supprimer des fournisseurs Newznab personnalisés."],"Select provider":[null,"Sélectionnez un fournisseur"],"-- add new provider --":[null,"-- Ajouter un nouveau fournisseur --"],"Provider name":[null,"Nom du fournisseur"],"Site URL":[null,"URL du site"],"Newznab search categories":[null,"Catégories de recherche Newznab"],"select your Newznab categories on the left, and click the \"update categories\" button to use them for searching.) <b>don't forget to to save the form!":[null,"sélectionnez vos catégories Newznab sur la gauche et cliquez sur le bouton « mettre à jour les catégories » pour les utiliser pour la recherche. <b>N'oubliez pas de sauvegarder le formulaire !"],"Update Categories":[null,"Catégories de Mise à Jour"],"Add":[null,"Ajouter"],"Delete":[null,"Supprimer"],"Add and setup or remove custom RSS providers.":[null,"Ajouter et configurer ou supprimer des fournisseurs RSS personnalisés."],"RSS URL":[null,"URL du flux RSS"],"Search element":[null,"Élément de recherche"],"eg: title":[null,"ex: titre"],"Episode Search":[null,"Recherche d'épisode"],"NZB Search":[null,"Recherche de NZB"],"Torrent Search":[null,"Recherche de torrent"],"How to manage searching with":[null,"Comment gérer la recherche avec"],"Randomize Providers":[null,"Fournisseurs aléatoires"],"randomize the provider search order instead of going in order of placement":[null,"utiliser un fournisseur aléatoirement plutôt que de suivre l'ordre de la liste"],"Download propers":[null,"Télécharger les Propers"],"replace original download with \"Proper\" or \"Repack\" if nuked":[null,"remplacer le téléchargement d'origine avec « Proper » ou « Repack » si nuked"],"Check propers every":[null,"Vérifier les Propers chaque"],"24 hours":[null,"24 heures"],"4 hours":[null,"4 heures"],"90 mins":[null,"90 min."],"45 mins":[null,"45 min."],"15 mins":[null,"15 min."],"Backlog search day(s)":[null,"Jour(s) de recherche des épisodes désirés"],"number of day(s) that the \"Forced Backlog Search\" will cover (e.g. 7 Days)":[null,"nombre de jour(s) que la \"recherche forcée des épisodes désirés\" couvrira (ex: 7 jours)"],"Backlog search frequency":[null,"Fréquence de la recherche des épisodes désirés"],"time in minutes between searches (min.":[null,"temps en minutes entre les recherches (min."],"Daily search frequency":[null,"Fréquence des recherches quotidiennes"],"Usenet retention":[null,"Rétention de Usenet"],"age limit in days for usenet articles to be used (e.g. 500)":[null,"limite d'âge en jours pour utiliser les articles Usenet (par ex. 500)"],"Ignore words":[null,"Mots ignorés"],"results with one or more word from this list will be ignored<br>separate words with a comma, e.g. \"word1,word2,word3\"":[null,"les résultats contenant un ou plusieurs mots de cette liste seront ignorés<br>. Séparez les mots par une virgule, par exemple « mot1, mot2, mot3 »"],"Require words":[null,"Mots obligatoires"],"results with no word from this list will be ignored<br>separate words with a comma, e.g. \"word1,word2,word3\"":[null,"les résultats ne contenant aucun mot de cette liste seront ignorés.<br> Séparez les mots par une virgule, par exemple « mot1, mot2, mot3 »"],"Trackers list":[null,"Liste de trackers"],"trackers that will be added to magnets without trackers<br>separate trackers with a comma, e.g. \"tracker1,tracker2,tracker3\"":[null,"les trackers qui seront ajoutés aux magnets sans tracker, \nséparés par une virgule, par exemple « tracker1, tracker2, tracker3 »"],"Ignore language names in subbed results":[null,"Ignorer les noms de langue dans les résultats de sous-titrage"],"ignore subbed releases based on language names <br>\n Example: \"dk\" will ignore words: dksub, dksubs, dksubbed, dksubed <br>\n separate languages with a comma, e.g. \"lang1,lang2,lang3":[null,"Ignorer les releases sous-titrées selon les langues suivantes <br>\n Exemple : \"dk\" ce terme ignorera les termes suivants : dksub, dksubs, dksubbed, dksubed <br>\n Séparez les langues par une virgule par ex. \"lang1,lang2,lang3\""],"Allow high priority":[null,"Autoriser la priorité élevée"],"set downloads of recently aired episodes to high priority":[null,"définir les téléchargements d'épisodes récemment diffusés sur priorité élevée"],"Use Failed Downloads":[null,"Échecs de téléchargement"],"use Failed Download Handling?":[null,"Gérer le traitement des téléchargements échoués ?"],"will only work with snatched/downloaded episodes after enabling this":[null,"Ceci n'est pas rétroactif"],"Delete Failed":[null,"Supprimer les échecs"],"delete files left over from a failed download?":[null,"Supprimer les fichiers laissés lors d'un échec de téléchargement ?"],"this only works if Use Failed Downloads is enabled.":[null,"Cela ne fonctionnera que si la gestion des téléchargements échoués est activée."],"How to handle NZB search results.":[null,"Comment gérer les résultats de recherche NZB."],"Search NZBs":[null,"Recherche NZB"],"enable NZB search providers":[null,"activer la recherche sur les providers NZB"],"Send .nzb files to":[null,"Envoyer les fichiers .nzb vers"],"SABnzbd server URL":[null,"URL du server SABnzbd"],"URL to your SABnzbd server (e.g. http://localhost:8080/)":[null,"URL de votre serveur SABnzbd (ex. http://localhost:8080/)"],"SABnzbd username":[null,"Nom d'utilisateur SABnzbd"],"(blank for none)":[null,"(Laissez vide pour ne pas activer)"],"SABnzbd password":[null,"SABnzbd mot de passe"],"SABnzbd API key":[null,"Clé d'API SABnzbd"],"locate at... SABnzbd Config -> General -> API Key":[null,"ce situe à... Configuration de SABnzbd-> général-> clé API"],"Use SABnzbd category":[null,"Utiliser la catégorie de SABnzbd"],"add downloads to this category (e.g. TV)":[null,"ajouter des téléchargements à cette catégorie (ex. TV)"],"Use SABnzbd category (backlog episodes)":[null,"Utiliser la catégorie SABnzbd (épisodes désirés)"],"add downloads of old episodes to this category (e.g. TV)":[null,"ajouter les téléchargements d'anciens épisodes dans cette catégorie (ex: TV)"],"Use SABnzbd category for anime":[null,"Utiliser la catégorie SABnzbd pour les animes"],"add anime downloads to this category (e.g. anime)":[null,"ajouter les téléchargements d'animés dans cette catégorie (ex: anime)"],"Use SABnzbd category for anime (backlog episodes)":[null,"Utiliser la catégorie SABnzbd pour les animés (épisodes désirés)"],"add anime downloads of old episodes to this category (e.g. anime)":[null,"ajouter les vieux épisodes d'animes téléchargés à cette catégorie (ex : anime)"],"Use forced priority":[null,"Forcer la prioritée"],"enable to change priority from HIGH to FORCED":[null,"activer pour changer la priorité de haute à forcé"],"Black hole folder location":[null,"Emplacement du dossier du Black Hole"],"<b>.nzb</b> files are stored at this location for external software to find and use":[null,"Les fichiers <b>.Nzb</b> sont stockés à cet emplacement pour que les logiciels externes puissent les trouver et les utiliser"],"Connect using HTTPS":[null,"Connectez-vous en HTTPS"],"enable Secure control in NZBGet and set the correct Secure Port here":[null,"activez le contrôle de sécurité dans NZBGet et définissez le port de sécurité ici"],"NZBget host:port":[null,"NZBget hôte:port"],"(e.g. localhost:6789)":[null,"(ex. localhost:6789)"],"NZBget RPC host name and port number (not NZBgetweb!)":[null,"NZBget RPC \"nom de l'hôte\" et \"numéro de port\" (pas NZBgetweb!)"],"NZBget username":[null,"Nom d'utilisateur NZBget"],"locate in nzbget.conf (default:nzbget)":[null,"situé dans nzbget.conf (par défaut : nzbget)"],"NZBget password":[null,"NZBget mot de passe"],"locate in nzbget.conf (default:tegbzn6789)":[null,"situez dans nzbget.conf (par défaut : tegbzn6789)"],"Use NZBget category":[null,"Utilisez la catégorie NZBget"],"send downloads marked this category (e.g. TV)":[null,"ajouter les téléchargements à cette catégorie (ex. TV)"],"Use NZBget category (backlog episodes)":[null,"Utiliser la catégorie NZBget (épisodes désirés)"],"send downloads of old episodes marked this category (e.g. TV)":[null,"ajouter les téléchargements d'anciens épisodes dans cette catégorie (ex: TV)"],"Use NZBget category for anime":[null,"Utilisez la catégorie NZBget pour les Animés"],"send anime downloads marked this category (e.g. anime)":[null,"ajouter les téléchargements d'animés dans cette catégorie (ex: anime)"],"Use NZBget category for anime (backlog episodes)":[null,"Utiliser la catégorie NZBget pour les animés (épisodes désirés)"],"send anime downloads of old episodes marked this category (e.g. anime)":[null,"ajouter les vieux épisodes d'animes téléchargés à cette catégorie (ex : anime)"],"NZBget priority":[null,"Priorité NZBget"],"Very low":[null,"Très faible"],"Low":[null,"Faible"],"Very high":[null,"Très haute"],"Force":[null,"Forcer"],"priority for daily snatches (no backlog)":[null,"priorité pour les récupérations quotidiennes (pas d'épisode désiré)"],"Torrent host:port":[null,"Torrent hôte:port"],"URL to your Synology DSM (e.g. http://localhost:5000/)":[null,"URL vers votre Synology DSM (ex. http://localhost:5000/)"],"Client username":[null,"Nom d'utilisateur du client"],"Client password":[null,"Mot de passe client"],"Downloaded files location":[null,"Emplacement des fichiers téléchargés"],"where Synology Download Station will save downloaded files (blank for client default)":[null,"emplacement où Synology Download Station sauvegardera les fichiers téléchargés (laisser vide pour les réglage par défaut)"],"the destination has to be a shared folder for Synology DS":[null,"la destination doit être un dossier partagé sur Synology DS"],"Click below to test":[null,"Cliquez ci-dessous pour tester"],"How to handle Torrent search results.":[null,"Comment gérer les résultats de recherche des Torrents."],"Search torrents":[null,"Recherche de torrents"],"enable torrent search providers":[null,"Activer les fournisseurs de recherche de torrent"],"Send .torrent files to":[null,"Envoyer les fichiers .torrent vers"],"<b>.torrent</b> files are stored at this location for external software to find and use":[null,"Les fichiers <b>.torrent</b> sont stockés à cet emplacement pour que les logiciels externes puissent les trouver et les utiliser"],"URL to your torrent client (e.g. http://localhost:8000/)":[null,"URL de votre client torrent (ex: http://localhost:8080/)"],"Torrent RPC URL":[null,"URL RPC torrent"],"the path without leading and trailing slashes (e.g. transmission)":[null,"Le chemin sans slash au début ou à la fin (ex: transmission)"],"Http Authentication":[null,"Authentification http"],"Verify certificate":[null,"Vérifier le certificat"],"disable if you get \"Deluge: Authentication Error\" in your log":[null,"désactiver si vous obtenez « Deluge : erreur d'authentification » dans votre journal"],"verify SSL certificates for HTTPS requests":[null,"Vérification des certificats SSL pour les requêtes HTTPS"],"Add label to torrent":[null,"Ajouter une étiquette au torrent"],"(blank spaces are not allowed)":[null,"(les espaces ne sont pas autorisés)"],"label plugin must be enabled in Deluge clients":[null,"le plugin des étiquettes doit être activé dans le logiciel Deluge"],"for QBitTorrent 3.3.1 and up":[null,"pour QBitTorrent 3.3.1 et plus"],"Add label to torrent for anime":[null,"Ajouter une étiquette pour les torrents d'anime"],"for QBitTorrent 3.3.1 and up ":[null,"pour QBitTorrent 3.3.1 et plus "],"where <span id=\"torrent_client\">the torrent client</span> will save downloaded files (blank for client default)":[null,"où<span id=\"torrent_client\">le client de torrent</span> sauvegardera les fichiers téléchargés (vide pour garder les paramètres par défaut du client)"],"the destination has to be a shared folder for Synology DS</span>":[null,"la destination doit être un dossier partagé pour Synology DS</span>"],"Minimum seeding time":[null,"Temps minimum de seed"],"time in hours":[null,"Temps en heures"],"(default:'0' passes blank to client and '-1' passes nothing)":[null,"(défaut : '0' envoi vide au client et '-1' n'envoi rien)"],"Start torrent paused":[null,"Démarrer les torrents suspendus"],"add .torrent to client but do <b style=\"font-weight:900\">not</b> start downloading":[null,"ajoute le .torrent au client mais <b style=\"font-weight:900\">ne</b> démarre pas le téléchargement"],"Allow high bandwidth":[null,"Permettre une bande passante élevée"],"use high bandwidth allocation if priority is high":[null,"Utilisation élevée de la bande passante si la priorité est haute."],"Test Connection":[null,"Tester la connexion"],"Windows Shares":[null,"Partages Windows"],"Defines your existing windows shares so that we can add them to the browse dialog":[null,"Définit vos partages windows existants afin de les ajouter dans la fenêtre de parcours des fichiers"],"Share #{number}":[null,"Partage #{number}"],"Share label":[null,"Nom du partage"],"Hostname or IP":[null,"Adresse ou IP"],"Share path":[null,"Adresse du partage"],"Subtitles Search":[null,"Recherche de sous-titres"],"Subtitles Plugin":[null,"Plugin de sous-titres"],"Plugin Settings":[null,"Configuration du plugin"],"Settings that dictate how SickRage handles subtitles search results.":[null,"Ces paramètres déterminent comment SickRage gérera les résultats de la recherche de sous-titres"],"Search Subtitles":[null,"Recherche de sous-titres"],"Subtitle Languages":[null,"Langues des sous-titres"],"Subtitle Directory":[null,"Répertoire des sous-titres"],"the directory where SickRage should store your <i>Subtitles</i> files.":[null,"Le répertoire où SickRage doit stocker vos fichiers de <i>sous-titres</i>."],"leave empty if you want store subtitle in episode path.":[null,"Laisser vide si vous souhaitez stocker les sous-titres au même endroit que l'épisode"],"Subtitle Find Frequency":[null,"Fréquence de recherche des sous-titres"],"time in hours between scans (default: 1)":[null,"temps en heure entre les scans (défaut: 1)"],"Include Specials":[null,"Inclus les épisodes spéciaux"],"include the show's specials when searching for subtitles?":[null,"Inclure les séries spéciales lors de la recherche des sous-titres ?"],"Perfect matches":[null,"Associations parfaites"],"only download subtitles that match: release group, video codec, audio codec and resolution":[null,"Ne télécharger que les sous-titres qui s'associent parfaitement : groupe de releases, codec vidéo, codec audio et résolution"],"if disabled you may get out of sync subtitles":[null,"Si désactivé, vous pourriez télécharger des sous-titres mal synchronisés"],"Subtitles History":[null,"Historique des sous-titres"],"log downloaded Subtitle on History page?":[null,"Conserver l'historique de téléchargement des sous-titres sur la page Historique ?"],"Subtitles Multi-Language":[null,"Sous-titres multilingues"],"append language codes to subtitle filenames?":[null,"Ajouter le code de la langue aux noms des fichiers de sous-titres ?"],"this option is required if you use multiple subtitle languages":[null,"Cette option est nécessaire si vous utilisez plusieurs langues de sous-titres."],"Delete unwanted subtitles":[null,"Supprimer les sous-titres non désirés"],"enable to delete unwanted subtitle languages bundled with release":[null,"Activer pour supprimer les sous-titres d'une langue non désirée ajoutés à la release"],"Embedded Subtitles":[null,"Sous-titres intégrés"],"ignore subtitles embedded inside video file?":[null,"Ignorer les sous-titres intégrés au fichier vidéo ?"],"this will ignore <u>all</u> embedded subtitles for every video file!":[null,"cela ignorera <u>tous</u> les sous-titres intégrés pour chaque fichier vidéo !"],"Hearing Impaired Subtitles":[null,"Sous-titres pour les malentendants"],"download hearing impaired style subtitles?":[null,"Télécharger les sous-titres pour malentendants ?"],"See":[null,"Voir"],"for a script arguments description.":[null,"pour une description des arguments du script."],"Additional scripts separated by <b>|</b>.":[null,"Scripts supplémentaires, séparés par <b>|</b>."],"Scripts are called after each episode has searched and downloaded subtitles.":[null,"Les scripts sont appelés après que chaque épisode a cherché et téléchargé des sous-titres."],"For any scripted languages, include the interpreter executable before the script. See the following example":[null,"Pour tous les scripts de langues, inclure l’exécutable de l'interpréteur avant le script. Regardez l'exemple qui suit"],"For Windows:":[null,"Pour Windows:"],"For Linux / OS X:":[null,"Pour Linux / OS X:"],"Subtitle Providers":[null,"Fournisseurs de sous-titres"],"Check off and drag the plugins into the order you want them to be used.":[null,"Cochez et faites glisser les plugins dans l'ordre que vous voulez qu'ils soient utilisés."],"At least one plugin is required.":[null,"Il faut au moins un plugin."]," Web-scraping plugin":[null," Plugin de Web-scraping"],"Provider Settings":[null,"Paramètres du fournisseur"],"Set user and password for each provider":[null,"Définir l'utilisateur et le mot de passe pour chaque fournisseur"],"User Name":[null,": Nom d’utilisateur"],"Change Show":[null,"Changer de série"],"Prev Show":[null,"Série précédente"],"Next Show":[null,"Série suivante"],"Jump to Season":[null,"Aller à la saison"],"Specials":[null,"Spéciaux"],"Poster for":[null,"Affiche pour"],"Stars":[null,"Étoiles"],"minutes":[null,"minutes"],"View other popular {genre} shows on trakt.tv.":[null,"Découvrir les autres séries populaires de type {genre} sur trakt.tv."],"View other popular {imdbgenre} shows on IMDB.":[null,"Découvrir les autres séries populaires de type {imdbgenre} sur IMDB."],"Allowed":[null,"Disponible(s)"],"Preferred":[null,"Préféré(s)"],"Originally Airs":[null,"Date de diffusion originale"],"Show Status":[null,"Statut de la série"],"Default EP Status":[null,"Statut d'épisode par défaut"],"Location":[null,"Emplacement"],"Missing":[null,"Manquant(e)(s)"],"Scene Name":[null,"Nom scène"],"Required Words":[null,"Mots requis"],"Ignored Words":[null,"Mots ignorés"],"Size":[null,"Taille"],"Info Language":[null,"Information linguistique"],"Subtitles SR Metadata":[null,"Métadonnées des sous-titres de SR"],"Season Folders":[null,"Dossiers par saison"],"Paused":[null,"Suspendu"],"Air-by-Date":[null,"Par date de diffusion"],"Sports":[null,"Sports"],"DVD Order":[null,"Ordre du DVD"],"Scene Numbering":[null,"Numérotation scène"],"Select Filtered Episodes":[null,"Sélectionnez les épisodes filtrés"],"Clear All":[null,"Effacer tout"],"Change selected episodes to":[null,"Changer les épisodes séléctionnés en"],"Select Columns":[null,"Sélectionner les colonnes"],"NFO":[null,"NFO"],"TBN":[null,"TBN"],"Episode":[null,"Épisode"],"Absolute":[null,"Absolu"],"Scene":[null,"Scène"],"Scene Absolute":[null,"Scène absolu"],"File Name":[null,"Nom du fichier"],"Airdate":[null,"Date de diffusion"],"Download":[null," Télécharger"],"Change the value here if scene numbering differs from the indexer episode numbering":[null,"Change la valeur seulement si la numérotation diffère de la numérotation de l'indexeur d'épisode"],"Change the value here if scene absolute numbering differs from the indexer absolute numbering":[null,"Changer la valeur ici si la numérotation absolue de la scène est différente de la numérotation absolue de l'indexer"],"Manual Search":[null,"Recherche manuelle"],"Do you want to mark this episode as failed?":[null,"Vous voulez marquer cet épisode comme ayant échoué ?"],"The episode release name will be added to the failed history, preventing it to be downloaded again.":[null,"Cette version de l'épisode s'ajoutera à l'historique des téléchargements ayant échoués, ceci l'empêchera d'être téléchargé à nouveau."],"Do you want to include the current episode quality in the search?":[null,"Vous voulez inclure la qualité actuelle de l'épisode dans la recherche ?"],"Choosing No will ignore any releases with the same episode quality as the one currently downloaded/snatched.":[null,"Choisir \"Non\" ignorera les versions avec la même qualité que l'épisode actuellement téléchargé/récupéré."],"Download subtitle":[null,"Télécharger les sous-titres"],"Do you want to re-download the subtitle for this language?":[null,"Voulez-vous re-télécharger les sous-titres pour cette langue ?"],"It will overwrite your current subtitle":[null,"Cela remplacera vos sous-titres actuels"],"Format":[null,"Format"],"Advanced":[null,"Paramètres avancés"],"Main Settings":[null,"Paramètres principaux"],"Show Location":[null,"Afficher l'emplacement"],"Preferred Quality":[null,"Qualité préférée"],"Default Episode Status":[null,"Statut d'épisode par défaut"],"this will set the status for future episodes.":[null,"Ceci définira le statut des futurs épisodes."],"this only applies to episode filenames and the contents of metadata files.":[null,"S'applique uniquement aux noms des fichiers d'épisode et aux contenus des fichiers de métadonnées."],"search for subtitles":[null,"rechercher des sous-titres"],"Use SR Metdata":[null,"Utiliser les métadonnées de SR"],"use SickRage metadata when searching for subtitle, this will override the autodiscovered metadata":[null,"Utiliser les métadonnées de SickRage lorsque vous recherchez des sous-titres, < br / > cela remplacera les métadonnées déjà présentes"],"pause this show (SickRage will not download episodes)":[null,"mettre cette série en suspend (SickRage ne téléchargera pas d'épisodes)"],"Format Settings":[null,"Paramètres du format"],"Air by date":[null,"Diffusion par date"],"check if the show is released as Show.03.02.2010 rather than Show.S02E03.":[null,"vérifier si ces séries apparaissent comme Show.03.02.2010 plutôt que comme Show.S02E03."],"in case of an air date conflict between regular and special episodes, the later will be ignored.":[null,"Dans le cas d'un conflit de dates entre les épisodes ordinaires et spéciaux, la dernière date sera ignorée."],"check if the show is Anime and episodes are released as Show.265 rather than Show.S02E03":[null,"vérifier si les séries de type animé apparaissent comme Show.03.02.2010 plutôt que Show.S02E03"],"check if the show is a sporting or MMA event released as Show.03.02.2010 rather than Show.S02E03":[null,"vérifier si les séries de type sportif ou événements de MMA apparaissent comme Show.03.02.2010 plutôt que Show.S02E03"],"Season folders":[null,"Dossiers par saison"],"group episodes by season folder (uncheck to store in a single folder)":[null,"grouper les épisodes par saison (décocher pour sauvegarder dans un dossier unique)"],"search by scene numbering (uncheck to search by indexer numbering)":[null,"recherche par numérotation scène (décocher la case pour effectuer une recherche par la numérotation de l'indexeur)"],"use the DVD order instead of the air order":[null,"utilisez l'ordre du DVD au lieu de l'ordre de diffusion"],"a \"Force Full Update\" is necessary, and if you have existing episodes you need to sort them manually.":[null,"\"Forcer la mise à jour\" est nécessaire, et si vous avez déjà des épisodes, vous devez les trier manuellement."],"comma-separated <i>e.g. \"word1,word2,word3</i>\"":[null,"Utilisez la virgule comme séparateur <i>par ex. \"mot1,mot2,mot3</i>\""],"search results with one or more words from this list will be ignored.":[null,"Résultat de la recherche avec un ou plusieurs mots ignoré(s)."],"e.g. \"word1,word2,word3\"":[null,"exemple \"mot1, mot2, mot3\""],"search results with no words from this list will be ignored.":[null,"Les résultats de recherche qui ne contiennent pas un des mots de cette liste seront ignorés."],"Scene Exception":[null,"Exception Scène"],"this will affect episode search on NZB and torrent providers.":[null,"Cela affectera la recherche d'épisode pour les fournisseurs NZB et torrent."],"this list appends to the original show name.":[null,"Cette liste s'ajoute au nom original de la série."],"WARNING logs":[null,"Journaux d'avertissements"],"ERROR logs":[null,"Journaux d'erreurs"],"There are no events to display.":[null,"Il n'y a aucun événement à afficher."],"Limit":[null,"Limite"],"Layout":[null,"Mise en page"],"HistoryLayout":[null,"Mise en page de l'historique"],"Compact":[null,"Compact"],"Detailed":[null,"Détaillé"],"Time":[null,"Heure"],"Provider":[null,"Fournisseur"],"Missing Provider":[null,"Fournisseur manquant"],"missing provider":[null,"fournisseur manquant"],"Directory":[null,"Dossier"],"Show Name (tvshow.nfo)":[null,"Nom de la série (tvshow.nfo)"],"Indexer":[null,"Indexeurs"],"Enter the folder containing the episode":[null,"Entrer le dossier contenant l'épisode"],"Process Method to be used":[null,"Méthode de traitement à utiliser"],"Copy":[null,"Copier"],"Move":[null,"Déplacer"],"Hard Link":[null,"Lien en dur"],"Symbolic Link":[null,"Lien symbolique"],"Symbolic Link Reversed":[null,"Lien symbolique inversé"],"Force already Post Processed Dir/Files":[null,"Forcer les dossiers/fichiers déjà post-traités"],"Mark Dir/Files as priority download":[null,"Marquer les dossiers/fichiers comme téléchargements prioritaires"],"(Check it to replace the file even if it exists at higher quality)":[null,"(Cochez pour remplacer le fichier, même s'il existe en qualité supérieure)"],"Delete files and folders":[null,"Supprimer les fichiers et dossiers"],"(Check it to delete files and folders like auto processing)":[null,"(Sélectionner pour supprimer les fichiers et dossiers du traitement automatique)"],"Don't use processing queue":[null,"Ne pas utiliser sur la file en attente de post-traitement"],"(If checked this will return the result of the process here, but may be slow!)":[null,"(Si cette option est cochée, cela retournera le résultat du traitement ici, mais ça peut être très lent !)"],"Mark download as failed":[null,"Marquer le téléchargement comme échoué"],"Process":[null,"Traiter"],"Download subtitles for this show?":[null,"Télécharger les sous-titres pour cette série ?"],"use SickRage metadata when searching for subtitle, <br />this will override the autodiscovered metadata":[null,"Utiliser les métadonnées de SickRage lorsque vous recherchez des sous-titres, < br / > cela remplacera les métadonnées déjà présentes"],"Status for previously aired episodes":[null,"Statut des épisodes déjà diffusés"],"Status for all future episodes":[null,"Statut pour tous les futurs épisodes"],"Group episodes by season folder?":[null,"Grouper les épisodes en suivant les dossiers par saison ?"],"Is this show an Anime?":[null,"Cette série est un animé ?"],"Is this show scene numbered?":[null,"Cette série utilise-t'elle la numérotation de la scène ?"],"Save Defaults":[null,"Enregistrer par défaut"],"Use current values as the defaults":[null,"Utilisez les valeurs actuelles comme valeurs par défaut"],"<p>Select your preferred fansub groups from the <b>Available Groups</b> and add them to the <b>Whitelist</b>. Add groups to the <b>Blacklist</b> to ignore them.</p>\n <p>The <b>Whitelist</b> is checked <i>before</i> the <b>Blacklist</b>.</p>\n <p>Groups are shown as <b>Name</b> | <b>Rating</b> | <b>Number of subbed episodes</b>.</p>\n <p>You may also add any fansub group not listed to either list manually.</p>\n <p>When doing this please note that you can only use groups listed on anidb for this anime.\n <br>If a group is not listed on anidb but subbed this anime, please correct anidb's data.</p>":[null,"<p>Sélectionnez vos groupes de fansub préférés dans les <b>Groupes disponibles</b> et ajoutez-les à la <b>Liste blanche</b>. Ajouter des groupes à la <b>Liste noire</b> pour les ignorer.</p> \n <p>La <b>Liste blanche</b> est vérifiée <i>avant</i> la <b>Liste noire</b>.</p> \n <p>Les groupes sont affichés sous forme de <b>Nom</b> | <b>Classement</b> | <b>Nombre d'épisodes sous-titrés</b>.</p> \n <p>Vous pouvez ajouter manuellement n'importe quel groupe de fansub qui ne figure dans aucune des listes.</p> \n <p>Lorsque vous effectuez ceci, veuillez prendre note que vous pouvez uniquement utiliser les groupes répertoriés sur Anidb pour cet animé.\n <br>Si un groupe n'est pas répertorié sur Anidb mais sous-titré, merci de corriger les données d'Anidb.</p>"],"Whitelist":[null,"Liste blanche"],"Available Groups":[null,"Groupes disponibles"],"Add to Whitelist":[null,"Ajouter à la liste blanche"],"Add to Blacklist":[null,"Ajouter à la liste noire"],"Blacklist":[null,"Liste noire"],"Custom Group":[null,"Groupe personnalisé"],"Allowed Quality:":[null,"Qualité Autorisée :"],"Preferred Quality:":[null,"Qualité Préférée :"],"Filter Show Name":[null,"Filtrer les séries par nom"],"Root":[null,"Racine"],"All":[null,"Tout"],"Clear Filter(s)":[null,"Effacer le(s) filtre(s)"],"Poster":[null,"Vignette"],"Small Poster":[null,"Petite vignette"],"Banner":[null,"Bannière"],"Simple":[null,"Simple"],"Next Episode":[null,"Prochain épisode"],"Progress":[null,"En cours"],"Direction":[null,"Sens du tri"],"Ascending":[null,"Croissant"],"Descending":[null,"Décroissant"],"Poster Size":[null,"Taille des vignettes"],"Continuing":[null,"En cours"],"Ended":[null,"Terminé"],"Total":[null,"Total"],"Invalid date":[null,"Date non valide"],"No Network":[null,"Pas de diffuseur"],"Next Ep":[null,"Épisode suivant"],"Prev Ep":[null,"Episode précédent"],"Show":[null,"Série"],"Downloads":[null,"Téléchargements"],"Active":[null,"Actif"],"loading":[null,"chargement en cours"],"<p><b><u>Preferred</u></b> qualities will replace those in <b><u>allowed</u></b>, even if they are lower.</p>":[null,"<p>Les qualités <b><u>préférées</u></b> remplaceront les <b><u>disponibles</u></b>, même si elles sont de qualités inférieures.</p>"],"New":[null,"Nouveau"],"Set as Default":[null,"Définir par défaut"],"Remember me":[null,"Se souvenir de moi"],"Edit Selected":[null,"Éditer la sélection"],"Subtitle":[null,"Sous-titre"],"Default Ep Status":[null,"Statut d'épisode par défaut"],"Update":[null,"Mettre à jour"],"Rescan":[null,"Rescanner"],"Rename":[null,"Renommer"],"Search Subtitle":[null,"Recherche de sous-titre"],"Force Metadata Regen":[null,"Forcer les métadonnées Regen"],"Snatched (Allowed)":[null,"Récupéré (autorisé)"],"Jump to Show":[null,"Aller à la série"],"Force Backlog":[null,"Force la recherche des épisodes désirés"],"Manage episodes with status":[null,"Gérer les épisodes avec le statut"],"Manage":[null,"Gérer"],"None of your episodes have status":[null,"Aucun de vos épisodes n'a le statut"],"Shows containing":[null,"Séries contenant"],"episodes":[null,"épisodes"],"Set checked shows/episodes to":[null,"Changer les épisodes cochés en"],"Go":[null,"Lancer"],"Select all":[null,"Tout sélectionner"],"Clear all":[null,"Tout effacer"],"Release":[null,"Version"],"Backlog Search":[null,"Recherche des épisodes désirés"],"Not in progress":[null,"Pas en cours"],"In Progress":[null,"En cours"],"Daily Search":[null,"Recherche quotidienne"],"Find Propers Search":[null,"Recherche de \"Propers\""],"Propers search disabled":[null,"Recherche des Propers désactivée"],"Subtitle Search":[null,"Recherche de sous-titres"],"Subtitle search disabled":[null,"Recherche de sous-titres désactivée"],"Search Queue":[null,"File d'attente de la recherche"],"pending items":[null,"Eléments en attente"],"Daily":[null,"Quotidienne"],"Manual":[null,"Manuelle"],"Changing any settings marked with (<span class=\"separator\">*</span>) will force a refresh of the selected shows.":[null,"Changer les paramètres marqués comme (<span class=\"separator\"> *</span>) va forcer une actualisation des séries sélectionnées."],"Selected Shows":[null,"Séries Sélectionnées"],"Root Directories":[null,"Répertoires Racine"],"Current":[null,"Courant"],"Keep":[null,"Conserver"],"Custom":[null,"Personnaliser"],"Group episodes by season folder (set to \"No\" to store in a single folder).":[null,"Grouper les épisodes par saison (Définir a \"Non\" pour sauvegarder dans des dossiers uniques)."],"Pause these shows (SickRage will not download episodes).":[null,"Mettre ces séries en suspend (SickRage ne téléchargera pas d'épisodes)."],"This will set the status for future episodes.":[null,"Ceci définira le statut des futurs épisodes."],"Search by scene numbering (set to \"No\" to search by indexer numbering).":[null,"Recherche selon la numérotation de la scène (mettre \"Non\" à la recherche par numérotation d'index)."],"Set if these shows are Anime and episodes are released as Show.265 rather than Show.S02E03":[null,"Définir si ces séries sont de type Animés et doivent apparaître comme Show.03.02.2010 plutôt que Show.S02E03"],"Set if these shows are sporting or MMA events released as Show.03.02.2010 rather than Show.S02E03.":[null,"Définir si ces séries sont de type sportif ou événements de MMA et doivent apparaître comme Show.03.02.2010 plutôt que Show.S02E03."],"In case of an air date conflict between regular and special episodes, the later will be ignored.":[null,"Dans le cas d'un conflit de dates entre les épisodes ordinaires et spéciaux, la dernière date sera ignorée."],"Set if these shows are released as Show.03.02.2010 rather than Show.S02E03.":[null,"Défini si ces séries paraissent comme Show.03.02.2010 plutôt que Show.S02E03."],"Search for subtitles.":[null,"Rechercher des sous-titres."],"All of your episodes have {subsLanguage} subtitles.":[null,"Tous vos épisodes ont des sous-titres {subsLanguage}."],"Manage episodes without":[null,"Gérer les épisodes sans"],"Episodes without {subsLanguage} subtitles.":[null,"Épisodes sans sous-titres {subsLanguage}."],"Episodes without {subtitleLanguage} (undefined) subtitles.":[null,"Épisodes sans sous-titres {subtitleLanguage} (indéfini)."],"Download missed subtitles for selected episodes":[null,"Télécharger les sous-titres manqués pour les épisodes sélectionnés"],"Performing Restart":[null,"Effectuer le redémarrage"],"Waiting for SickRage to shut down":[null,"En attente de la fermeture de SickRage"],"Waiting for SickRage to start again":[null,"En attente du redémarrage de SickRage"],"Loading the default page":[null,"Chargement de la page par défaut"],"Error: The restart has timed out, perhaps something prevented SickRage from starting again?":[null,"Erreur : Le redémarrage a expiré, peut-être que quelque chose a empêché SickRage de redémarrer ?"],"Key":[null,"Clé"],"Missed":[null,"Manqué"],"Today":[null,"Aujourd'hui"],"Soon":[null,"Bientôt"],"Later":[null,"Plus tard"],"Subscribe":[null,"S'abonner"],"Date":[null,"Date"],"View Paused":[null,"Voir les suspendus"],"Hidden":[null,"Masqués"],"Shown":[null,"Affichés"],"Calendar":[null,"Calendrier"],"List":[null,"Liste"],"Ends":[null,"Se termine"],"Next Ep Name":[null,"Titre du prochain épisode"],"Run time":[null,"Durée"],"Indexers":[null,"Indexeurs"],"No shows for this day":[null,"Aucune série pour cette journée"],"Airs":[null,"Diffusions"],"Plot":[null,"Synopsis"],"Show Update":[null,"Mise à jour de la série"],"Version Check":[null,"Vérification de la version"],"Proper Finder":[null,"Trouver les Proprers"],"Post Process":[null,"Post-traitement"],"Subtitles Finder":[null,"Recherche de sous-titres"],"Scheduler":[null,"Programmes"],"Alive":[null,"En vie"],"Start Time":[null,"Heure de début"],"Cycle Time":[null,"Temps de cycle"],"Next Run":[null,"Prochaine Exécution"],"Last Run":[null,"Dernière Exécution"],"Silent":[null,"Muet"],"True":[null,"Vrai"],"N/A":[null,"Non Défini"],"Show id":[null,"Voir l'ID"],"Show name":[null,"Afficher le nom"],"Priority":[null,"Priorité"],"Added":[null,"Ajouté(e)"],"Queue type":[null,"Type de file d'attente"],"LOW":[null,"FAIBLE"],"NORMAL":[null,"NORMAL"],"HIGH":[null,"HAUTE"],"Disk Space":[null,"Espace disque"],"Free space":[null,"Espace libre"],"TV Download Directory":[null,"Répertoire de téléchargement des séries"],"Media Root Directories":[null,"Répertoire racine"],"Preview of the proposed name changes":[null,"Aperçu des propositions de renommage"],"All Seasons":[null,"Toutes les saisons"],"select all":[null,"tout sélectionner"],"Rename Selected":[null,"Renommer la sélection"],"Cancel Rename":[null,"Annuler Renommer"],"Old Location":[null,"Ancien emplacement"],"New Location":[null,"Nouvel emplacement"],"Trakt API did not return any results, please check your config.":[null,"Trakt API n'a pas renvoyé aucun résultat, veuillez vérifier votre config s'il vous plaît."],"votes":[null,"votes"],"Remove Show":[null,"Supprimer Séries"],"Level":[null,"Niveau"],"Filter":[null,"Filtre"],"All non-absolute folder locations are relative to ":[null,"Tous les chemins non-absolu des dossiers sont relatifs à "],"Manual Post-Processing":[null,"Post-traitement manuel"],"Episode Status Management":[null,"Gérer les statuts des épisodes"],"Update PLEX":[null,"Mise à jour PLEX"],"Update KODI":[null,"Mise à jour KODI"],"Update Emby":[null,"Mise à jour Emby"],"Manage Torrents":[null,"Gestion des Torrents"],"Missed Subtitle Management":[null,"Gestion des sous-titres manqués"],"Help & Info":[null,"Aide & Infos"],"Backup & Restore":[null,"Sauvegarde & Restauration"],"Tools":[null,"Outils"],"Support SickRage":[null,"Soutenir SickRage"],"View Errors":[null,"Voir les erreurs"],"View Warnings":[null,"Voir les avertissements"],"View Log":[null,"Voir le journal"],"Check For Updates":[null,"Vérifier s'il y a des mises à jour"],"Restart":[null,"Redémarrer"],"Shutdown":[null,"Éteindre"],"Logout":[null,"Se déconnecter"],"Server Status":[null,"Statut du serveur"],"View overview of snatched episodes":[null,"Aperçu des épisodes récupérés"],"Episodes Downloaded":[null,"Épisodes téléchargés"],"Memory used":[null,"Mémoire utilisée"],"Load time":[null,"Temps de chargement"],"Branch":[null,"Branche"],"Now":[null,"Actuellement"]}}}} \ No newline at end of file diff --git a/locale/fr_FR/LC_MESSAGES/messages.mo b/locale/fr_FR/LC_MESSAGES/messages.mo index 83d9a9abec20f12751fa7a8ca947e446703926d6..a1ac03bef10c7c72a0e3d548593eac75cdec8045 100644 Binary files a/locale/fr_FR/LC_MESSAGES/messages.mo and b/locale/fr_FR/LC_MESSAGES/messages.mo differ diff --git a/locale/fr_FR/LC_MESSAGES/messages.po b/locale/fr_FR/LC_MESSAGES/messages.po index 34820bd3437277524fbc9f5a9121cfb1cb979a2a..4d5a635b7b4a9c74b0d8d9e8745fd4eab05b4e10 100644 --- a/locale/fr_FR/LC_MESSAGES/messages.po +++ b/locale/fr_FR/LC_MESSAGES/messages.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: sickrage\n" "Report-Msgid-Bugs-To: miigotu@gmail.com\n" -"POT-Creation-Date: 2017-03-25 09:28-0700\n" -"PO-Revision-Date: 2017-03-25 12:29-0400\n" +"POT-Creation-Date: 2017-03-28 09:10-0700\n" +"PO-Revision-Date: 2017-03-28 12:12-0400\n" "Last-Translator: miigotu <miigotu@gmail.com>\n" "Language-Team: French\n" "MIME-Version: 1.0\n" @@ -90,7 +90,7 @@ msgid "Biography" msgstr "Biographie" #: gui/slick/views/config_general.mako:78 gui/slick/views/layouts/main.mako:145 -#: sickbeard/__init__.py:79 sickbeard/webserve.py:3807 +#: sickbeard/__init__.py:79 sickbeard/webserve.py:3778 msgid "History" msgstr "Historique" @@ -103,7 +103,7 @@ msgid "Western" msgstr "Western" #: gui/slick/views/config_general.mako:79 gui/slick/views/layouts/main.mako:221 -#: sickbeard/__init__.py:80 sickbeard/webserve.py:2385 +#: sickbeard/__init__.py:80 sickbeard/webserve.py:2384 msgid "News" msgstr "Nouveautés" @@ -238,6 +238,34 @@ msgstr "Ignoré(s)" msgid "Subtitled" msgstr "Sous-titré" +#: sickbeard/helpers.py:1887 +msgid "For best results please set the Download Station alias as" +msgstr "Pour de meilleurs résultats, veuillez configurer l'alias de Download Station comme" + +#: sickbeard/helpers.py:1888 +msgid "You can check this setting in the Synology DSM" +msgstr "Vous pouvez vérifier ce paramètre dans le DSM de Synology" + +#: sickbeard/helpers.py:1888 sickbeard/helpers.py:1890 +msgid "Control Panel" +msgstr "Panneau de configuration" + +#: sickbeard/helpers.py:1888 +msgid "Application Portal" +msgstr "Portail d'application" + +#: sickbeard/helpers.py:1889 +msgid "Make sure you allow DSM to be embedded with iFrames too in" +msgstr "Assurez-vous que vous permettez à DSM d'être aussi incorporés avec iFrames" + +#: sickbeard/helpers.py:1890 +msgid "DSM Settings" +msgstr "Paramètres du DSM" + +#: sickbeard/helpers.py:1890 +msgid "Security" +msgstr "Sécurité" + #: sickbeard/logger.py:474 msgid "<No Filter>" msgstr "< Aucun Filtre >" @@ -308,15 +336,15 @@ msgstr "Vérificateur Trakt" msgid "Event" msgstr "Évènement" -#: sickbeard/logger.py:491 sickbeard/webserve.py:1339 sickbeard/webserve.py:1342 -#: sickbeard/webserve.py:1520 sickbeard/webserve.py:1529 sickbeard/webserve.py:1717 -#: sickbeard/webserve.py:1728 sickbeard/webserve.py:1751 sickbeard/webserve.py:1764 -#: sickbeard/webserve.py:1769 sickbeard/webserve.py:1785 sickbeard/webserve.py:1790 -#: sickbeard/webserve.py:1854 sickbeard/webserve.py:1857 sickbeard/webserve.py:1863 -#: sickbeard/webserve.py:1866 sickbeard/webserve.py:1873 sickbeard/webserve.py:1876 -#: sickbeard/webserve.py:1899 sickbeard/webserve.py:1997 sickbeard/webserve.py:2002 -#: sickbeard/webserve.py:2007 sickbeard/webserve.py:2036 sickbeard/webserve.py:2040 -#: sickbeard/webserve.py:2045 +#: sickbeard/logger.py:491 sickbeard/webserve.py:1338 sickbeard/webserve.py:1341 +#: sickbeard/webserve.py:1519 sickbeard/webserve.py:1528 sickbeard/webserve.py:1716 +#: sickbeard/webserve.py:1727 sickbeard/webserve.py:1750 sickbeard/webserve.py:1763 +#: sickbeard/webserve.py:1768 sickbeard/webserve.py:1784 sickbeard/webserve.py:1789 +#: sickbeard/webserve.py:1853 sickbeard/webserve.py:1856 sickbeard/webserve.py:1862 +#: sickbeard/webserve.py:1865 sickbeard/webserve.py:1872 sickbeard/webserve.py:1875 +#: sickbeard/webserve.py:1898 sickbeard/webserve.py:1996 sickbeard/webserve.py:2001 +#: sickbeard/webserve.py:2006 sickbeard/webserve.py:2035 sickbeard/webserve.py:2039 +#: sickbeard/webserve.py:2044 msgid "Error" msgstr "Erreur" @@ -333,6 +361,7 @@ msgstr "Sujet" msgid "Main" msgstr "Général" +#: gui/slick/js/ajaxEpSearch.js:146 gui/slick/js/ajaxEpSearch.js:147 #: gui/slick/views/inc_home_showList.mako:27 sickbeard/show_queue.py:298 msgid "Loading" msgstr "Chargement" @@ -372,867 +401,835 @@ msgstr "Sauvegarde de la configuration échouée, mise à jour abandonnée " msgid "No update needed" msgstr "Aucune mise à jour nécessaire" -#: sickbeard/webserve.py:170 +#: sickbeard/webserve.py:171 msgid "Mako Error" msgstr "Erreur Mako" -#: sickbeard/webserve.py:195 +#: sickbeard/webserve.py:196 msgid "Oops" msgstr "Oups" -#: sickbeard/webserve.py:197 +#: sickbeard/webserve.py:198 msgid "Wrong API key used" msgstr "Mauvaise clé API utilisée" -#: gui/slick/views/login.mako:34 sickbeard/webserve.py:302 +#: gui/slick/views/login.mako:34 sickbeard/webserve.py:303 msgid "Login" msgstr "Se connecter" -#: sickbeard/webserve.py:406 +#: sickbeard/webserve.py:392 msgid "API Key not generated" msgstr "Clé API non générée" -#: sickbeard/webserve.py:409 +#: sickbeard/webserve.py:395 msgid "API Builder" msgstr "Constructeur d'API" #: gui/slick/views/config_general.mako:77 gui/slick/views/layouts/main.mako:141 -#: sickbeard/webserve.py:512 +#: sickbeard/webserve.py:498 msgid "Schedule" msgstr "Planning" -#: sickbeard/webserve.py:610 +#: sickbeard/webserve.py:609 msgid "Test 1" msgstr "Test 1" -#: sickbeard/webserve.py:610 +#: sickbeard/webserve.py:609 msgid "This is test number 1" msgstr "Ceci est le test numéro 1" -#: sickbeard/webserve.py:611 +#: sickbeard/webserve.py:610 msgid "Test 2" msgstr "Test 2" -#: sickbeard/webserve.py:611 +#: sickbeard/webserve.py:610 msgid "This is test number 2" msgstr "Ceci est le test numéro 2" -#: sickbeard/webserve.py:634 +#: sickbeard/webserve.py:633 msgid "You're using the {branch} branch. Please use 'master' unless specifically asked" msgstr "Vous utilisez la branche {branch}. Merci d'utiliser la branche «master» sauf si spécifiquement demandé" -#: sickbeard/webserve.py:698 sickbeard/webserve.py:703 +#: sickbeard/webserve.py:697 sickbeard/webserve.py:702 msgid "Invalid show parameters" msgstr "Paramètres de série invalides" -#: sickbeard/webserve.py:710 +#: sickbeard/webserve.py:709 msgid "Invalid parameters" msgstr "Paramètres incorrects" -#: sickbeard/webserve.py:713 sickbeard/webserve.py:1899 +#: sickbeard/webserve.py:712 sickbeard/webserve.py:1898 msgid "Episode couldn't be retrieved" msgstr "L'épisode n'a pas pu être trouvé" -#: sickbeard/webserve.py:759 sickbeard/webserve.py:1268 sickbeard/webserve.py:1297 +#: sickbeard/webserve.py:758 sickbeard/webserve.py:1267 sickbeard/webserve.py:1296 msgid "Home" msgstr "Accueil" -#: gui/slick/views/layouts/main.mako:127 sickbeard/webserve.py:759 +#: gui/slick/views/layouts/main.mako:127 sickbeard/webserve.py:758 msgid "Show List" msgstr "Liste des séries" -#: sickbeard/webserve.py:807 +#: sickbeard/webserve.py:806 msgid "Error: Unsupported Request. Send jsonp request with 'callback' variable in the query string." msgstr "Erreur : Demande non prise en charge. Envoyer la requête jsonp avec la variable « callback » dans la chaîne de requête." -#: sickbeard/webserve.py:851 +#: sickbeard/webserve.py:850 msgid "Success. Connected and authenticated" msgstr "Succès. Connecté et authentifié" -#: sickbeard/webserve.py:853 +#: sickbeard/webserve.py:852 msgid "Authentication failed. SABnzbd expects" msgstr "L'authentification a échoué. SABnzbd attend" -#: sickbeard/webserve.py:853 +#: sickbeard/webserve.py:852 msgid "as authentication method" msgstr "comme méthode d'authentification" -#: sickbeard/webserve.py:855 +#: sickbeard/webserve.py:854 msgid "Unable to connect to host" msgstr "Impossible de se connecter à l'hôte" -#: sickbeard/webserve.py:876 +#: sickbeard/webserve.py:875 msgid "SMS sent successfully" msgstr "Le SMS a été envoyé avec succès" -#: sickbeard/webserve.py:878 +#: sickbeard/webserve.py:877 msgid "Problem sending SMS: {message}" msgstr "Problème lors de l'envoi du SMS : {message}" -#: sickbeard/webserve.py:885 +#: sickbeard/webserve.py:884 msgid "Telegram notification succeeded. Check your Telegram clients to make sure it worked" msgstr "La notification de Telegram a réussi. Vérifiez vos clients Telegram pour vous assurer que cela a fonctionné" -#: sickbeard/webserve.py:887 +#: sickbeard/webserve.py:886 msgid "Error sending Telegram notification: {message}" msgstr "Erreur lors de l'envoi de la notification telegram : {message}" -#: sickbeard/webserve.py:894 +#: sickbeard/webserve.py:893 msgid "join notification succeeded. Check your join clients to make sure it worked" msgstr "La notification de Join a réussi. Vérifiez vos clients Join pour vous assurer que cela a fonctionné" -#: sickbeard/webserve.py:896 +#: sickbeard/webserve.py:895 msgid "Error sending join notification: {message}" msgstr "Erreur lors de l'envoi de la notification Join : {message}" -#: sickbeard/webserve.py:906 +#: sickbeard/webserve.py:905 msgid " with password" msgstr " avec mot de passe" -#: sickbeard/webserve.py:908 +#: sickbeard/webserve.py:907 msgid "Registered and Tested growl successfully {growl_host}" msgstr "Succès de l'enregistrement et du test growl sur {growl_host}" -#: sickbeard/webserve.py:910 +#: sickbeard/webserve.py:909 msgid "Registration and Testing of growl failed {growl_host}" msgstr "Échec de l'enregistrement et du test growl sur {growl_host}" -#: sickbeard/webserve.py:917 +#: sickbeard/webserve.py:916 msgid "Test prowl notice sent successfully" msgstr "Notification de test prowl envoyée avec succès" -#: sickbeard/webserve.py:919 +#: sickbeard/webserve.py:918 msgid "Test prowl notice failed" msgstr "La notification de test prowl a échoué" -#: sickbeard/webserve.py:926 +#: sickbeard/webserve.py:925 msgid "Boxcar2 notification succeeded. Check your Boxcar2 clients to make sure it worked" msgstr "La notification de Boxcar2 a réussi. Vérifiez votre client Boxcar2 pour vous assurer que cela a fonctionné" -#: sickbeard/webserve.py:928 +#: sickbeard/webserve.py:927 msgid "Error sending Boxcar2 notification" msgstr "Erreur d'envoi de notification vers Boxcar2" -#: sickbeard/webserve.py:935 +#: sickbeard/webserve.py:934 msgid "Pushover notification succeeded. Check your Pushover clients to make sure it worked" msgstr "La notification de Pushover a réussi. Vérifiez votre client Pushover pour vous assurer que cela a fonctionné" -#: sickbeard/webserve.py:937 +#: sickbeard/webserve.py:936 msgid "Error sending Pushover notification" msgstr "Erreur lors de l'envoi de notification vers Pushover" -#: sickbeard/webserve.py:949 +#: sickbeard/webserve.py:948 msgid "Key verification successful" msgstr "Vérification de la clé réussie" -#: sickbeard/webserve.py:951 +#: sickbeard/webserve.py:950 msgid "Unable to verify key" msgstr "Impossible de vérifier la clé" -#: sickbeard/webserve.py:958 +#: sickbeard/webserve.py:957 msgid "Tweet successful, check your twitter to make sure it worked" msgstr "Tweet bien envoyé, vérifier votre fil Twitter pour s'assurer que ça a fonctionné" -#: sickbeard/webserve.py:960 +#: sickbeard/webserve.py:959 msgid "Error sending tweet" msgstr "Erreur lors de l'envoi du tweet" -#: sickbeard/webserve.py:965 +#: sickbeard/webserve.py:964 msgid "Please enter a valid account sid" msgstr "Veuillez saisir un ID compte valide" -#: sickbeard/webserve.py:968 +#: sickbeard/webserve.py:967 msgid "Please enter a valid auth token" msgstr "Veuillez saisir un jeton d'authentification valide" -#: sickbeard/webserve.py:971 +#: sickbeard/webserve.py:970 msgid "Please enter a valid phone sid" msgstr "Veuillez saisir un ID téléphone valide" -#: sickbeard/webserve.py:974 +#: sickbeard/webserve.py:973 msgid "Please format the phone number as \"+1-###-###-####\"" msgstr "Pour le numéro de téléphone, merci d'utiliser le format suivant \"+1-###-###-####\"" -#: sickbeard/webserve.py:978 +#: sickbeard/webserve.py:977 msgid "Authorization successful and number ownership verified" msgstr "Autorisation réussie et propriété du numéro vérifiée" -#: sickbeard/webserve.py:980 +#: sickbeard/webserve.py:979 msgid "Error sending sms" msgstr "Erreur lors de l'envoi du SMS" -#: sickbeard/webserve.py:986 +#: sickbeard/webserve.py:985 msgid "Slack message successful" msgstr "Message envoyé sur Slack" -#: sickbeard/webserve.py:988 +#: sickbeard/webserve.py:987 msgid "Slack message failed" msgstr "Échec de l’envoi du message" -#: sickbeard/webserve.py:994 +#: sickbeard/webserve.py:993 msgid "Discord message successful" msgstr "Message envoyé sur Discord" -#: sickbeard/webserve.py:996 +#: sickbeard/webserve.py:995 msgid "Discord message failed" msgstr "Échec de l’envoi du message sur Discord" -#: sickbeard/webserve.py:1006 +#: sickbeard/webserve.py:1005 msgid "Test KODI notice sent successfully to {kodi_host}" msgstr "La notification de test KODI a été envoyée avec succès vers {kodi_host}" -#: sickbeard/webserve.py:1008 +#: sickbeard/webserve.py:1007 msgid "Test KODI notice failed to {kodi_host}" msgstr "La notification de test KODI a échoué vers {kodi_host}" -#: sickbeard/webserve.py:1023 +#: sickbeard/webserve.py:1022 msgid "Successful test notice sent to Plex Home Theater ... {plex_clients}" msgstr "Test de notification a été envoyé avec succès à Plex Home Theater ... {plex_clients}" -#: sickbeard/webserve.py:1025 +#: sickbeard/webserve.py:1024 msgid "Test failed for Plex Home Theater ... {plex_clients}" msgstr "Le teste de Plex Home Theater a échoué ... {plex_clients}" -#: sickbeard/webserve.py:1028 +#: sickbeard/webserve.py:1027 msgid "Tested Plex Home Theater(s)" msgstr "Plex Home Theater(s) testé" -#: sickbeard/webserve.py:1042 +#: sickbeard/webserve.py:1041 msgid "Successful test of Plex Media Server(s) ... {plex_servers}" msgstr "Test de Plex Media serveur (s) réussi ... {plex_servers}" -#: sickbeard/webserve.py:1044 +#: sickbeard/webserve.py:1043 msgid "Test failed, No Plex Media Server host specified" msgstr "Test échoué, aucun hôte spécifié pour Plex Media serveur" -#: sickbeard/webserve.py:1046 +#: sickbeard/webserve.py:1045 msgid "Test failed for Plex Media Server(s) ... {plex_servers}" msgstr "Test échoué pour Plex Media serveur(s)... {plex_servers}" -#: sickbeard/webserve.py:1049 +#: sickbeard/webserve.py:1048 msgid "Tested Plex Media Server host(s)" msgstr "Hôte(s) Plex Media Server testé(s)" -#: sickbeard/webserve.py:1057 +#: sickbeard/webserve.py:1056 msgid "Tried sending desktop notification via libnotify" msgstr "Tentative d'envoi de notification de bureau via libnotify" -#: sickbeard/webserve.py:1066 +#: sickbeard/webserve.py:1065 msgid "Test notice sent successfully to {emby_host}" msgstr "Notification de test envoyée à {emby_host} avec succès" -#: sickbeard/webserve.py:1068 +#: sickbeard/webserve.py:1067 msgid "Test notice failed to {emby_host}" msgstr "La notification de test vers {emby_host} a échoué" -#: sickbeard/webserve.py:1076 +#: sickbeard/webserve.py:1075 msgid "Successfully started the scan update" msgstr "Scan de mise à jour démarré avec succès" -#: sickbeard/webserve.py:1078 +#: sickbeard/webserve.py:1077 msgid "Test failed to start the scan update" msgstr "Le test pour démarrer le scan de mise à jour a échoué" -#: sickbeard/webserve.py:1097 +#: sickbeard/webserve.py:1096 msgid "Test notice sent successfully to {nmj2_host}" msgstr "La notification de test a été envoyée avec succès a {nmj2_host}" -#: sickbeard/webserve.py:1099 +#: sickbeard/webserve.py:1098 msgid "Test notice failed to {nmj2_host}" msgstr "La notification de test a échoué vers {nmj2_host}" -#: sickbeard/webserve.py:1119 +#: sickbeard/webserve.py:1118 msgid "Trakt Authorized" msgstr "Trakt autorisé" -#: sickbeard/webserve.py:1120 +#: sickbeard/webserve.py:1119 msgid "Trakt Not Authorized!" msgstr "Trakt non autorisé !" -#: sickbeard/webserve.py:1184 +#: sickbeard/webserve.py:1183 msgid "Test email sent successfully! Check inbox." msgstr "Mail de test envoyé avec succès ! Vérifiez votre boîte de réception." -#: sickbeard/webserve.py:1186 +#: sickbeard/webserve.py:1185 msgid "ERROR: {last_error}" msgstr "ERREUR : {last_error}" -#: sickbeard/webserve.py:1193 +#: sickbeard/webserve.py:1192 msgid "Test NMA notice sent successfully" msgstr "Notification de test NMA envoyée avec succès" -#: sickbeard/webserve.py:1195 +#: sickbeard/webserve.py:1194 msgid "Test NMA notice failed" msgstr "Notification de test NMA a échoué" -#: sickbeard/webserve.py:1202 +#: sickbeard/webserve.py:1201 msgid "Pushalot notification succeeded. Check your Pushalot clients to make sure it worked" msgstr "La notification de Pushalot a réussi. Vérifiez vos clients Pushalot pour vous assurer que cela a fonctionné" -#: sickbeard/webserve.py:1204 +#: sickbeard/webserve.py:1203 msgid "Error sending Pushalot notification" msgstr "Erreur d'envoi de notification vers Pushalot" -#: sickbeard/webserve.py:1211 +#: sickbeard/webserve.py:1210 msgid "Pushbullet notification succeeded. Check your device to make sure it worked" msgstr "Notification de Pushbullet a été envoyée. Vérifiez votre appareil pour s'assurer que cela a fonctionné" -#: sickbeard/webserve.py:1213 sickbeard/webserve.py:1223 sickbeard/webserve.py:1232 +#: sickbeard/webserve.py:1212 sickbeard/webserve.py:1222 sickbeard/webserve.py:1231 msgid "Error sending Pushbullet notification" msgstr "Erreur d'envoi de notification sur Pushbullet" #: gui/slick/views/displayShow.mako:436 gui/slick/views/inc_home_showList.mako:174 -#: gui/slick/views/manage.mako:49 sickbeard/webserve.py:1249 +#: gui/slick/views/manage.mako:49 sickbeard/webserve.py:1248 msgid "Status" msgstr "Statut" -#: sickbeard/webserve.py:1268 sickbeard/webserve.py:1297 +#: sickbeard/webserve.py:1267 sickbeard/webserve.py:1296 msgid "Restarting SickRage" msgstr "Redémarrage de SickRage en cours" -#: sickbeard/webserve.py:1300 +#: sickbeard/webserve.py:1299 msgid "Update Failed" msgstr "La mise à jour a échoué" -#: sickbeard/webserve.py:1301 +#: sickbeard/webserve.py:1300 msgid "Update wasn't successful, not restarting. Check your log for more information." msgstr "La mise à jour n'a pas été appliquée, il n'y a pas eu de redémarrage. Consultez votre journal des événements pour plus d'informations." -#: sickbeard/webserve.py:1308 +#: sickbeard/webserve.py:1307 msgid "Checking out branch" msgstr "Récupération de la branche" -#: sickbeard/webserve.py:1311 +#: sickbeard/webserve.py:1310 msgid "Already on branch" msgstr "Déjà sur la branche" -#: sickbeard/webserve.py:1339 +#: sickbeard/webserve.py:1338 msgid "Invalid show ID: {show}" msgstr "ID de la série non-valide : {show}" -#: sickbeard/webserve.py:1342 sickbeard/webserve.py:1871 sickbeard/webserve.py:2002 -#: sickbeard/webserve.py:2040 +#: sickbeard/webserve.py:1341 sickbeard/webserve.py:1870 sickbeard/webserve.py:2001 +#: sickbeard/webserve.py:2039 msgid "Show not in show list" msgstr "Cette série n'est pas dans la liste des séries" #: gui/slick/views/inc_rootDirs.mako:31 gui/slick/views/manage.mako:38 -#: gui/slick/views/manage_massEdit.mako:74 sickbeard/webserve.py:1358 -#: sickbeard/webserve.py:2027 +#: gui/slick/views/manage_massEdit.mako:74 sickbeard/webserve.py:1357 +#: sickbeard/webserve.py:2026 msgid "Edit" msgstr "Éditer" -#: sickbeard/webserve.py:1368 +#: sickbeard/webserve.py:1367 msgid "This show is in the process of being downloaded - the info below is incomplete." msgstr "Cette série est en cours de téléchargement - l’info ci-dessous est incomplète." -#: sickbeard/webserve.py:1371 +#: sickbeard/webserve.py:1370 msgid "The information on this page is in the process of being updated." msgstr "Les informations sur cette page sont en cours d’actualisation." -#: sickbeard/webserve.py:1374 +#: sickbeard/webserve.py:1373 msgid "The episodes below are currently being refreshed from disk" msgstr "Les épisodes ci-dessous sont en cours d'actualisation depuis le disque" -#: sickbeard/webserve.py:1377 +#: sickbeard/webserve.py:1376 msgid "Currently downloading subtitles for this show" msgstr "Les sous-titres sont en cours de téléchargement pour cette série" -#: sickbeard/webserve.py:1380 +#: sickbeard/webserve.py:1379 msgid "This show is queued to be refreshed." msgstr "Cette série est en attente d'être rafraîchie." -#: sickbeard/webserve.py:1383 +#: sickbeard/webserve.py:1382 msgid "This show is queued and awaiting an update." msgstr "Cette série est mise en attente car elle attend une mise à jour." -#: sickbeard/webserve.py:1386 +#: sickbeard/webserve.py:1385 msgid "This show is queued and awaiting subtitles download." msgstr "Cette série est mise en attente car elle attend le téléchargement des sous-titres." -#: gui/slick/js/core.js:4081 sickbeard/webserve.py:1391 +#: gui/slick/js/core.js:4081 sickbeard/webserve.py:1390 msgid "Resume" msgstr "Reprendre" #: gui/slick/js/core.js:4081 gui/slick/views/viewlogs.mako:12 -#: sickbeard/webserve.py:1393 +#: sickbeard/webserve.py:1392 msgid "Pause" msgstr "Suspendre" #: gui/slick/views/editShow.mako:345 gui/slick/views/inc_blackwhitelist.mako:40 #: gui/slick/views/inc_blackwhitelist.mako:85 gui/slick/views/manage.mako:58 -#: gui/slick/views/manage_failedDownloads.mako:43 sickbeard/webserve.py:1395 +#: gui/slick/views/manage_failedDownloads.mako:43 sickbeard/webserve.py:1394 msgid "Remove" msgstr "Retirer" -#: sickbeard/webserve.py:1396 +#: sickbeard/webserve.py:1395 msgid "Re-scan files" msgstr "Re-scanner les fichiers" -#: sickbeard/webserve.py:1397 +#: sickbeard/webserve.py:1396 msgid "Force Full Update" msgstr "Forcer la mise à jour" -#: sickbeard/webserve.py:1398 +#: sickbeard/webserve.py:1397 msgid "Update show in KODI" msgstr "Mettre à jour la série dans KODI" -#: sickbeard/webserve.py:1399 +#: sickbeard/webserve.py:1398 msgid "Update show in Emby" msgstr "Mettre à jour la série dans Emby" -#: sickbeard/webserve.py:1402 +#: sickbeard/webserve.py:1401 msgid "Hide specials" msgstr "Cacher les épisodes spéciaux" -#: sickbeard/webserve.py:1404 +#: sickbeard/webserve.py:1403 msgid "Show specials" msgstr "Afficher les épisodes spéciaux" -#: sickbeard/webserve.py:1406 sickbeard/webserve.py:2030 sickbeard/webserve.py:2031 +#: sickbeard/webserve.py:1405 sickbeard/webserve.py:2029 sickbeard/webserve.py:2030 msgid "Preview Rename" msgstr "Aperçu du renommage" -#: sickbeard/webserve.py:1409 +#: sickbeard/webserve.py:1408 msgid "Download Subtitles" msgstr "Télécharger les sous-titres" -#: sickbeard/webserve.py:1498 +#: sickbeard/webserve.py:1497 msgid "No scene exceptions" msgstr "Pas d'exception scène" -#: sickbeard/webserve.py:1516 sickbeard/webserve.py:1764 sickbeard/webserve.py:1785 +#: sickbeard/webserve.py:1515 sickbeard/webserve.py:1763 sickbeard/webserve.py:1784 msgid "Invalid show ID" msgstr "Identifiant de série invalide" -#: sickbeard/webserve.py:1525 sickbeard/webserve.py:1769 sickbeard/webserve.py:1790 +#: sickbeard/webserve.py:1524 sickbeard/webserve.py:1768 sickbeard/webserve.py:1789 msgid "Unable to find the specified show" msgstr "Impossible de trouver la série spécifiée" -#: sickbeard/webserve.py:1550 +#: sickbeard/webserve.py:1549 msgid "Unable to retreive Fansub Groups from AniDB." msgstr "Impossible de récupérer les groupes de Fansub depuis AniDB." -#: sickbeard/webserve.py:1559 sickbeard/webserve.py:1561 +#: sickbeard/webserve.py:1558 sickbeard/webserve.py:1560 msgid "Edit Show" msgstr "Éditer la série" -#: sickbeard/webserve.py:1637 sickbeard/webserve.py:1671 +#: sickbeard/webserve.py:1636 sickbeard/webserve.py:1670 msgid "Unable to refresh this show: {error}" msgstr "Impossible d'actualiser cette série : {error}" -#: sickbeard/webserve.py:1663 +#: sickbeard/webserve.py:1662 msgid "New location <tt>{location}</tt> does not exist" msgstr "Le nouvel emplacement <tt>{location}</tt> n'existe pas" -#: sickbeard/webserve.py:1688 +#: sickbeard/webserve.py:1687 msgid "Unable to update show: {error}" msgstr "Impossible de mettre à jour la série : {error}" -#: sickbeard/webserve.py:1695 +#: sickbeard/webserve.py:1694 msgid "Unable to force an update on scene exceptions of the show." msgstr "Impossible de forcer la mise à jour sur les exceptions scène de cette série." -#: sickbeard/webserve.py:1702 +#: sickbeard/webserve.py:1701 msgid "Unable to force an update on scene numbering of the show." msgstr "Impossible de forcer une mise à jour sur la numérotation scène de cette série." -#: sickbeard/webserve.py:1708 sickbeard/webserve.py:3540 +#: sickbeard/webserve.py:1707 sickbeard/webserve.py:3539 msgid "{num_errors:d} error{plural} while saving changes:" msgstr "{num_errors:d} erreur{plural} lors de l'enregistrement des modifications :" -#: sickbeard/webserve.py:1719 +#: sickbeard/webserve.py:1718 msgid "{show_name} has been {paused_resumed}" msgstr "{show_name} a été {paused_resumed}" -#: sickbeard/webserve.py:1719 +#: sickbeard/webserve.py:1718 msgid "resumed" msgstr "relancé" -#: sickbeard/webserve.py:1719 +#: sickbeard/webserve.py:1718 msgid "paused" msgstr "suspendu" -#: sickbeard/webserve.py:1731 +#: sickbeard/webserve.py:1730 msgid "{show_name} has been {deleted_trashed} {was_deleted}" msgstr "{show_name} a été {deleted_trashed} {was_deleted}" -#: sickbeard/webserve.py:1733 +#: sickbeard/webserve.py:1732 msgid "deleted" msgstr "supprimé" -#: sickbeard/webserve.py:1733 +#: sickbeard/webserve.py:1732 msgid "trashed" msgstr "dans la corbeille" -#: sickbeard/webserve.py:1734 +#: sickbeard/webserve.py:1733 msgid "(media untouched)" msgstr "(médias intacts)" -#: sickbeard/webserve.py:1734 +#: sickbeard/webserve.py:1733 msgid "(with all related media)" msgstr "(avec tous les médias associés)" -#: sickbeard/webserve.py:1755 +#: sickbeard/webserve.py:1754 msgid "Unable to refresh this show." msgstr "Impossible d'actualiser cette série." -#: sickbeard/webserve.py:1775 +#: sickbeard/webserve.py:1774 msgid "Unable to update this show." msgstr "Impossible de mettre à jour cette série." -#: sickbeard/webserve.py:1814 +#: sickbeard/webserve.py:1813 msgid "Library update command sent to KODI host(s)): {kodi_hosts}" msgstr "La commande de mise à jour de la bibliothèque a été envoyée à l'hôte KODI : {kodi_hosts}" -#: sickbeard/webserve.py:1816 +#: sickbeard/webserve.py:1815 msgid "Unable to contact one or more KODI host(s)): {kodi_hosts}" msgstr "Impossible de joindre un ou plusieurs hôte(s) KODI : {kodi_hosts}" -#: sickbeard/webserve.py:1825 +#: sickbeard/webserve.py:1824 msgid "Library update command sent to Plex Media Server host: {plex_server}" msgstr "La commande de mise à jour de la bibliothèque a été envoyée à l'hôte Plex Media Server : {plex_server}" -#: sickbeard/webserve.py:1828 +#: sickbeard/webserve.py:1827 msgid "Unable to contact Plex Media Server host: {plex_server}" msgstr "Impossible de joindre l'hôte de Plex Media Server : {plex_server}" -#: sickbeard/webserve.py:1840 +#: sickbeard/webserve.py:1839 msgid "Library update command sent to Emby host: {emby_host}" msgstr "La commande de mise à jour de bibliothèque a été envoyée à l'hôte Emby : {emby_host}" -#: sickbeard/webserve.py:1842 +#: sickbeard/webserve.py:1841 msgid "Unable to contact Emby host: {emby_host}" msgstr "Impossible de joindre l'hôte Emby : {emby_host}" -#: sickbeard/webserve.py:1852 sickbeard/webserve.py:2036 +#: sickbeard/webserve.py:1851 sickbeard/webserve.py:2035 msgid "You must specify a show and at least one episode" msgstr "Vous devez spécifier une série et au moins un épisode" -#: sickbeard/webserve.py:1861 +#: sickbeard/webserve.py:1860 msgid "Invalid status" msgstr "Statut invalide" -#: sickbeard/webserve.py:1954 +#: sickbeard/webserve.py:1953 msgid "Backlog was automatically started for the following seasons of <b>{show_name}</b>" msgstr "La recherche des épisodes désirés concernant les saisons sélectionnées de <b>{show_name}</b> a automatiquement démarré" #: gui/slick/views/displayShow.mako:74 gui/slick/views/displayShow.mako:79 -#: gui/slick/views/displayShow.mako:404 sickbeard/webserve.py:1961 -#: sickbeard/webserve.py:1980 +#: gui/slick/views/displayShow.mako:404 sickbeard/webserve.py:1960 +#: sickbeard/webserve.py:1979 msgid "Season" msgstr "Saison" -#: sickbeard/webserve.py:1968 +#: sickbeard/webserve.py:1967 msgid "Backlog started" msgstr "La recherche des épisodes désirés a commencé" -#: sickbeard/webserve.py:1973 +#: sickbeard/webserve.py:1972 msgid "Retrying Search was automatically started for the following season of <b>{show_name}</b>" msgstr "Le nouvel essai de recherche va démarrer automatiquement pour la saison suivante de <b>{show_name}</b>" -#: sickbeard/webserve.py:1987 +#: sickbeard/webserve.py:1986 msgid "Retry Search started" msgstr "La nouvelle tentative de recherche a commencé" -#: sickbeard/webserve.py:1997 +#: sickbeard/webserve.py:1996 msgid "You must specify a show" msgstr "Vous devez spécifier une série" -#: sickbeard/webserve.py:2007 sickbeard/webserve.py:2045 +#: sickbeard/webserve.py:2006 sickbeard/webserve.py:2044 msgid "Can't rename episodes when the show dir is missing." msgstr "Impossible de renommer les épisodes, le dossier de la série est introuvable." -#: sickbeard/webserve.py:2212 sickbeard/webserve.py:2233 +#: sickbeard/webserve.py:2211 sickbeard/webserve.py:2232 msgid "New subtitles downloaded: {new_subtitle_languages}" msgstr "Nouveaux sous-titres téléchargés : {new_subtitle_languages}" -#: sickbeard/webserve.py:2215 sickbeard/webserve.py:2236 +#: sickbeard/webserve.py:2214 sickbeard/webserve.py:2235 msgid "No subtitles downloaded" msgstr "Aucun sous-titres téléchargé" #: gui/slick/views/config_general.mako:80 gui/slick/views/layouts/main.mako:222 -#: sickbeard/webserve.py:2363 +#: sickbeard/webserve.py:2362 msgid "IRC" msgstr "IRC" -#: sickbeard/webserve.py:2376 +#: sickbeard/webserve.py:2375 msgid "Could not load news from the repo. [Click here for news.md])({news_url})" msgstr "Impossible de charger les nouveautés depuis ce dépôt. [Cliquer ici pour consulter news.md])({news_url})" -#: sickbeard/webserve.py:2383 sickbeard/webserve.py:2401 +#: sickbeard/webserve.py:2382 sickbeard/webserve.py:2400 msgid "The was a problem connecting to github, please refresh and try again" msgstr "Problème de connexion à github, rafraîchissez et recommencez" -#: sickbeard/webserve.py:2398 +#: sickbeard/webserve.py:2397 msgid "Could not load changes from the repo. [Click here for CHANGES.md]({changes_url})" msgstr "Impossible de charger les changements depuis le dépôt. [Cliquez ici pour consulter CHANGES.md] ({changes_url})" -#: gui/slick/views/layouts/main.mako:223 sickbeard/webserve.py:2403 +#: gui/slick/views/layouts/main.mako:223 sickbeard/webserve.py:2402 msgid "Changelog" msgstr "Journal des modifications" -#: gui/slick/views/layouts/main.mako:190 sickbeard/webserve.py:2413 -#: sickbeard/webserve.py:3855 sickbeard/webserve.py:4341 +#: gui/slick/views/layouts/main.mako:190 sickbeard/webserve.py:2412 +#: sickbeard/webserve.py:3826 sickbeard/webserve.py:4312 msgid "Post Processing" msgstr "Post-traitement" -#: gui/slick/views/layouts/main.mako:128 sickbeard/webserve.py:2445 +#: gui/slick/views/layouts/main.mako:128 sickbeard/webserve.py:2444 msgid "Add Shows" msgstr "Ajouter des séries" -#: sickbeard/webserve.py:2510 +#: sickbeard/webserve.py:2509 msgid "No folders selected." msgstr "Aucun dossier sélectionné." -#: sickbeard/webserve.py:2632 +#: sickbeard/webserve.py:2631 msgid "New Show" msgstr "Nouvelles séries" -#: sickbeard/webserve.py:2647 +#: sickbeard/webserve.py:2646 msgid "Trending Shows" msgstr "Séries tendances" -#: sickbeard/webserve.py:2649 sickbeard/webserve.py:2772 +#: sickbeard/webserve.py:2648 sickbeard/webserve.py:2771 msgid "Popular Shows" msgstr "Séries populaires" -#: sickbeard/webserve.py:2651 sickbeard/webserve.py:2665 +#: sickbeard/webserve.py:2650 sickbeard/webserve.py:2664 msgid "Most Anticipated Shows" msgstr "Séries les plus attendues" -#: sickbeard/webserve.py:2653 +#: sickbeard/webserve.py:2652 msgid "Most Collected Shows" msgstr "Séries les plus collectées" -#: sickbeard/webserve.py:2655 +#: sickbeard/webserve.py:2654 msgid "Most Watched Shows" msgstr "Séries les plus visionnées" -#: sickbeard/webserve.py:2657 +#: sickbeard/webserve.py:2656 msgid "Most Played Shows" msgstr "Séries les plus lues" -#: sickbeard/webserve.py:2659 +#: sickbeard/webserve.py:2658 msgid "Recommended Shows" msgstr "Séries recommandées" -#: gui/slick/views/addShows_trendingShows.mako:60 sickbeard/webserve.py:2661 +#: gui/slick/views/addShows_trendingShows.mako:60 sickbeard/webserve.py:2660 msgid "New Shows" msgstr "Nouvelles séries" -#: gui/slick/views/addShows_trendingShows.mako:61 sickbeard/webserve.py:2663 +#: gui/slick/views/addShows_trendingShows.mako:61 sickbeard/webserve.py:2662 msgid "Season Premieres" msgstr "Début de saison" -#: sickbeard/webserve.py:2792 sickbeard/webserve.py:2793 +#: sickbeard/webserve.py:2791 sickbeard/webserve.py:2792 msgid "Existing Show" msgstr "Série existante" -#: sickbeard/webserve.py:2871 +#: sickbeard/webserve.py:2870 msgid "No root directories setup, please go back and add one." msgstr "Pas de répertoire racine configuré, merci de revenir en arrière et d'en ajouter un." -#: sickbeard/webserve.py:2883 sickbeard/webserve.py:3002 +#: sickbeard/webserve.py:2882 sickbeard/webserve.py:3001 msgid "Show added" msgstr "Série ajoutée" -#: sickbeard/webserve.py:2883 +#: sickbeard/webserve.py:2882 msgid "Adding the specified show {show_name}" msgstr "Ajout de la série {show_name}" -#: sickbeard/webserve.py:2924 +#: sickbeard/webserve.py:2923 msgid "Missing params, no Indexer ID or folder: {show_to_add} and {root_dir}/{show_path}" msgstr "Paramètres manquants, pas d'ID d'indexeur ou de dossier : {show_to_add} et {root_dir}/{show_path}" -#: sickbeard/webserve.py:2933 +#: sickbeard/webserve.py:2932 msgid "Unknown error. Unable to add show due to problem with show selection." msgstr "Erreur inconnue. Impossible d'ajouter la série en raison d'un problème avec la sélection de série." -#: sickbeard/webserve.py:2957 sickbeard/webserve.py:2967 +#: sickbeard/webserve.py:2956 sickbeard/webserve.py:2966 msgid "Unable to add show" msgstr "Impossible d'ajouter la série" -#: sickbeard/webserve.py:2957 +#: sickbeard/webserve.py:2956 msgid "Folder {show_dir} exists already" msgstr "Le dossier {show_dir} existe déjà" -#: sickbeard/webserve.py:2968 +#: sickbeard/webserve.py:2967 msgid "Unable to create the folder {show_dir}, can't add the show" msgstr "Impossible de créer le dossier {show_dir}, impossible d'ajouter la série" -#: sickbeard/webserve.py:3002 +#: sickbeard/webserve.py:3001 msgid "Adding the specified show into {show_dir}" msgstr "Ajout de la série dans {show_dir}" -#: sickbeard/webserve.py:3078 +#: sickbeard/webserve.py:3077 msgid "Shows Added" msgstr "Séries ajoutées" -#: sickbeard/webserve.py:3079 +#: sickbeard/webserve.py:3078 msgid "Automatically added {num_shows} from their existing metadata files" msgstr "Ajout automatique de {num_shows} depuis leurs fichiers métadonnées" -#: gui/slick/views/layouts/main.mako:153 sickbeard/webserve.py:3096 +#: gui/slick/views/layouts/main.mako:153 sickbeard/webserve.py:3095 msgid "Mass Update" msgstr "Mettre à jour par lots" -#: sickbeard/webserve.py:3134 sickbeard/webserve.py:3161 sickbeard/webserve.py:3237 -#: sickbeard/webserve.py:3238 +#: sickbeard/webserve.py:3133 sickbeard/webserve.py:3160 sickbeard/webserve.py:3236 +#: sickbeard/webserve.py:3237 msgid "Episode Overview" msgstr "Aperçu de l'épisode" -#: sickbeard/webserve.py:3270 +#: sickbeard/webserve.py:3269 msgid "Missing Subtitles" msgstr "Sous-titres manquants" -#: gui/slick/views/layouts/main.mako:154 sickbeard/webserve.py:3356 -#: sickbeard/webserve.py:3357 +#: gui/slick/views/layouts/main.mako:154 sickbeard/webserve.py:3355 +#: sickbeard/webserve.py:3356 msgid "Backlog Overview" msgstr "Vue d'ensemble des épisodes désirés" -#: sickbeard/webserve.py:3481 +#: sickbeard/webserve.py:3480 msgid "Mass Edit" msgstr "Édition par lots" -#: sickbeard/webserve.py:3586 +#: sickbeard/webserve.py:3585 msgid "Unable to update show: {excption_format}" msgstr "Impossible de mettre à jour la série : {excption_format}" -#: sickbeard/webserve.py:3594 +#: sickbeard/webserve.py:3593 msgid "Unable to refresh show {show_name}: {excption_format}" msgstr "Impossible d'actualiser la série {show_name} : {excption_format}" -#: sickbeard/webserve.py:3605 +#: sickbeard/webserve.py:3604 msgid "Errors encountered" msgstr "Des erreurs sont survenues" -#: gui/slick/views/config_general.mako:261 sickbeard/webserve.py:3611 +#: gui/slick/views/config_general.mako:261 sickbeard/webserve.py:3610 msgid "Updates" msgstr "Mises à jour" -#: sickbeard/webserve.py:3616 +#: sickbeard/webserve.py:3615 msgid "Refreshes" msgstr "Actualiser " -#: sickbeard/webserve.py:3621 +#: sickbeard/webserve.py:3620 msgid "Renames" msgstr "Renommer" #: gui/slick/views/displayShow.mako:260 gui/slick/views/displayShow.mako:435 #: gui/slick/views/editShow.mako:119 gui/slick/views/inc_addShowOptions.mako:20 -#: gui/slick/views/manage_massEdit.mako:262 sickbeard/webserve.py:3626 -#: sickbeard/webserve.py:5244 +#: gui/slick/views/manage_massEdit.mako:262 sickbeard/webserve.py:3625 +#: sickbeard/webserve.py:5215 msgid "Subtitles" msgstr "Sous-titres" -#: sickbeard/webserve.py:3631 +#: sickbeard/webserve.py:3630 msgid "The following actions were queued" msgstr "Les actions suivantes ont été mises en attente" -#: sickbeard/webserve.py:3651 -msgid "For best results please set the Download Station alias as" -msgstr "Pour de meilleurs résultats, veuillez configurer l'alias de Download Station comme" - -#: sickbeard/webserve.py:3652 -msgid "You can check this setting in the Synology DSM" -msgstr "Vous pouvez vérifier ce paramètre dans le DSM de Synology" - -#: sickbeard/webserve.py:3652 sickbeard/webserve.py:3654 -msgid "Control Panel" -msgstr "Panneau de configuration" - -#: sickbeard/webserve.py:3652 -msgid "Application Portal" -msgstr "Portail d'application" - -#: sickbeard/webserve.py:3653 -msgid "Make sure you allow DSM to be embedded with iFrames too in" -msgstr "Assurez-vous que vous permettez à DSM d'être aussi incorporés avec iFrames" - -#: sickbeard/webserve.py:3654 -msgid "DSM Settings" -msgstr "Paramètres du DSM" - -#: sickbeard/webserve.py:3654 -msgid "Security" -msgstr "Sécurité" - -#: gui/slick/views/layouts/main.mako:167 sickbeard/webserve.py:3662 -msgid "Manage Torrents" -msgstr "Gestion des Torrents" - -#: gui/slick/views/layouts/main.mako:170 sickbeard/webserve.py:3683 +#: gui/slick/views/layouts/main.mako:170 sickbeard/webserve.py:3654 msgid "Failed Downloads" msgstr "Téléchargements échoués" -#: gui/slick/views/layouts/main.mako:155 sickbeard/webserve.py:3701 +#: gui/slick/views/layouts/main.mako:155 sickbeard/webserve.py:3672 msgid "Manage Searches" msgstr "Gérer les recherches" -#: sickbeard/webserve.py:3709 +#: sickbeard/webserve.py:3680 msgid "Backlog search started" msgstr "La recherche des épisodes désirés a commencé" -#: sickbeard/webserve.py:3719 +#: sickbeard/webserve.py:3690 msgid "Daily search started" msgstr "La recherche quotidienne a commencé" -#: sickbeard/webserve.py:3728 +#: sickbeard/webserve.py:3699 msgid "Find propers search started" msgstr "La recherche pour trouver les Propers a commencé" -#: sickbeard/webserve.py:3737 +#: sickbeard/webserve.py:3708 msgid "Subtitle search started" msgstr "Recherche de sous-titre a commencé" -#: sickbeard/webserve.py:3801 +#: sickbeard/webserve.py:3772 msgid "Remove Selected" msgstr "Supprimer la sélection" -#: sickbeard/webserve.py:3802 +#: sickbeard/webserve.py:3773 msgid "Clear History" msgstr "Effacer l'historique" -#: sickbeard/webserve.py:3803 +#: sickbeard/webserve.py:3774 msgid "Trim History" msgstr "Réduire l'historique" -#: sickbeard/webserve.py:3823 +#: sickbeard/webserve.py:3794 msgid "Selected history entries removed" msgstr "Supprimer l'historique sélectionné" -#: sickbeard/webserve.py:3830 +#: sickbeard/webserve.py:3801 msgid "History cleared" msgstr "Historique effacé" -#: sickbeard/webserve.py:3837 +#: sickbeard/webserve.py:3808 msgid "Removed history entries older than 30 days" msgstr "Supprimer les entrées datant de plus de 30 jours" -#: gui/slick/views/layouts/main.mako:185 sickbeard/webserve.py:3850 +#: gui/slick/views/layouts/main.mako:185 sickbeard/webserve.py:3821 msgid "General" msgstr "Général" -#: sickbeard/webserve.py:3851 sickbeard/webserve.py:4143 +#: sickbeard/webserve.py:3822 sickbeard/webserve.py:4114 msgid "Backup/Restore" msgstr "Sauvegarde / Restauration" -#: gui/slick/views/layouts/main.mako:187 sickbeard/webserve.py:3852 -#: sickbeard/webserve.py:4206 +#: gui/slick/views/layouts/main.mako:187 sickbeard/webserve.py:3823 +#: sickbeard/webserve.py:4177 msgid "Search Settings" msgstr "Paramètres de recherche" -#: gui/slick/views/layouts/main.mako:188 sickbeard/webserve.py:3853 -#: sickbeard/webserve.py:4518 +#: gui/slick/views/layouts/main.mako:188 sickbeard/webserve.py:3824 +#: sickbeard/webserve.py:4489 msgid "Search Providers" msgstr "Moteurs de recherche" -#: gui/slick/views/layouts/main.mako:189 sickbeard/webserve.py:3854 +#: gui/slick/views/layouts/main.mako:189 sickbeard/webserve.py:3825 msgid "Subtitles Settings" msgstr "Paramètres des sous-titres" -#: gui/slick/views/layouts/main.mako:191 sickbeard/webserve.py:3856 -#: sickbeard/webserve.py:4964 +#: gui/slick/views/layouts/main.mako:191 sickbeard/webserve.py:3827 +#: sickbeard/webserve.py:4935 msgid "Notifications" msgstr "Notifications" @@ -1240,142 +1237,142 @@ msgstr "Notifications" #: gui/slick/views/home.mako:35 gui/slick/views/inc_addShowOptions.mako:79 #: gui/slick/views/inc_home_showList.mako:179 gui/slick/views/layouts/main.mako:192 #: gui/slick/views/manage.mako:44 gui/slick/views/manage_massEdit.mako:202 -#: sickbeard/webserve.py:3857 sickbeard/webserve.py:5309 +#: sickbeard/webserve.py:3828 sickbeard/webserve.py:5280 msgid "Anime" msgstr "Animé" -#: sickbeard/webserve.py:3895 sickbeard/webserve.py:3896 +#: sickbeard/webserve.py:3866 sickbeard/webserve.py:3867 msgid "SickRage Configuration" msgstr "Configuration de SickRage" -#: sickbeard/webserve.py:3910 +#: sickbeard/webserve.py:3881 msgid "Config - Shares" -msgstr "" +msgstr "Configuration - Partages" -#: sickbeard/webserve.py:3910 +#: sickbeard/webserve.py:3881 msgid "Windows Shares Configuration" -msgstr "" +msgstr "Configuration des Partages Windows" -#: sickbeard/webserve.py:3937 +#: sickbeard/webserve.py:3908 msgid "Saved Shares" -msgstr "" +msgstr "Partages enregistrés" -#: sickbeard/webserve.py:3937 +#: sickbeard/webserve.py:3908 msgid "Your Windows share settings have been saved" -msgstr "" +msgstr "Vos paramètres de partage Windows ont été sauvegardés" -#: sickbeard/webserve.py:3948 +#: sickbeard/webserve.py:3919 msgid "Config - General" msgstr "Config - Général" -#: sickbeard/webserve.py:3948 +#: sickbeard/webserve.py:3919 msgid "General Configuration" msgstr "Configuration générale" -#: sickbeard/webserve.py:3988 +#: sickbeard/webserve.py:3959 msgid "Saved Defaults" msgstr "Enregistrer par défaut" -#: sickbeard/webserve.py:3988 +#: sickbeard/webserve.py:3959 msgid "Your \"add show\" defaults have been set to your current selections." msgstr "Les options actuelles ont été sauvegardées comme options par défaut." -#: sickbeard/webserve.py:4095 +#: sickbeard/webserve.py:4066 msgid "Unable to create directory {directory}, log directory not changed." msgstr "Impossible de créer le répertoire {directory}, le répertoire du journal d'événement n'a pas changé." -#: sickbeard/webserve.py:4103 +#: sickbeard/webserve.py:4074 msgid "Unable to create directory {directory}, https cert directory not changed." msgstr "Impossible de créer le répertoire {directory}, le répertoire du certificat HTTPS n'a pas changé." -#: sickbeard/webserve.py:4107 +#: sickbeard/webserve.py:4078 msgid "Unable to create directory {directory}, https key directory not changed." msgstr "Impossible de créer le répertoire {directory}, le répertoire clé HTTPS n'a pas changé." -#: sickbeard/webserve.py:4126 sickbeard/webserve.py:4324 sickbeard/webserve.py:4456 -#: sickbeard/webserve.py:5227 +#: sickbeard/webserve.py:4097 sickbeard/webserve.py:4295 sickbeard/webserve.py:4427 +#: sickbeard/webserve.py:5198 msgid "Error(s) Saving Configuration" msgstr "Erreur(s) lors de l'enregistrement de la configuration" -#: sickbeard/webserve.py:4129 sickbeard/webserve.py:4327 sickbeard/webserve.py:4458 -#: sickbeard/webserve.py:4950 sickbeard/webserve.py:5230 sickbeard/webserve.py:5294 -#: sickbeard/webserve.py:5323 +#: sickbeard/webserve.py:4100 sickbeard/webserve.py:4298 sickbeard/webserve.py:4429 +#: sickbeard/webserve.py:4921 sickbeard/webserve.py:5201 sickbeard/webserve.py:5265 +#: sickbeard/webserve.py:5294 msgid "Configuration Saved" msgstr "Configuration enregistrée" -#: sickbeard/webserve.py:4142 +#: sickbeard/webserve.py:4113 msgid "Config - Backup/Restore" msgstr "Config - Sauvegarde/Restauration" -#: sickbeard/webserve.py:4205 +#: sickbeard/webserve.py:4176 msgid "Config - Episode Search" msgstr "Config - Recherche d'épisode" -#: sickbeard/webserve.py:4340 +#: sickbeard/webserve.py:4311 msgid "Config - Post Processing" msgstr "Config - Post-traitement" -#: sickbeard/webserve.py:4380 +#: sickbeard/webserve.py:4351 msgid "Unpacking Not Supported, disabling unpack setting" msgstr "Décompression non supportée, désactivation du réglage de décompression" -#: sickbeard/webserve.py:4431 +#: sickbeard/webserve.py:4402 msgid "You tried saving an invalid normal naming config, not saving your naming settings" msgstr "Vous essayez de sauvegarder une configuration de nommage non valide, vos réglages de nommage ne seront pas sauvegardés" -#: sickbeard/webserve.py:4439 +#: sickbeard/webserve.py:4410 msgid "You tried saving an invalid anime naming config, not saving your naming settings" msgstr "Vous essayez de sauvegarder une configuration non valide de nommage d'un Animé, vos réglages de nommage ne seront pas sauvegardés" -#: sickbeard/webserve.py:4517 +#: sickbeard/webserve.py:4488 msgid "Config - Providers" msgstr "Config - Fournisseurs" -#: sickbeard/webserve.py:4547 +#: sickbeard/webserve.py:4518 msgid "No Provider Name specified" msgstr "Pas de nom de Fournisseur spécifié" -#: sickbeard/webserve.py:4549 +#: sickbeard/webserve.py:4520 msgid "No Provider Url specified" msgstr "Pas d'URL de Fournisseur spécifié" -#: sickbeard/webserve.py:4551 +#: sickbeard/webserve.py:4522 msgid "No Provider Api key specified" msgstr "Pas de clé API Fournisseur spécifié" -#: sickbeard/webserve.py:4963 +#: sickbeard/webserve.py:4934 msgid "Config - Notifications" msgstr "Config - Notifications" -#: sickbeard/webserve.py:5243 +#: sickbeard/webserve.py:5214 msgid "Config - Subtitles" msgstr "Config - Sous-titres" -#: sickbeard/webserve.py:5308 +#: sickbeard/webserve.py:5279 msgid "Config - Anime" msgstr "Config - Anime" -#: sickbeard/webserve.py:5336 +#: sickbeard/webserve.py:5307 msgid "Clear Errors" msgstr "Effacer les erreurs" -#: sickbeard/webserve.py:5342 +#: sickbeard/webserve.py:5313 msgid "Clear Warnings" msgstr "Effacer les avertissements" -#: sickbeard/webserve.py:5348 +#: sickbeard/webserve.py:5319 msgid "Submit Errors" msgstr "Soumettre les erreurs" -#: sickbeard/webserve.py:5363 +#: sickbeard/webserve.py:5334 msgid "Logs & Errors" msgstr "Journaux & Erreurs" -#: sickbeard/webserve.py:5388 +#: sickbeard/webserve.py:5359 msgid "Log File" msgstr "Journal des événements" -#: sickbeard/webserve.py:5388 +#: sickbeard/webserve.py:5359 msgid "Logs" msgstr "Journaux" @@ -1383,30 +1380,166 @@ msgstr "Journaux" msgid "This is a test notification from SickRage" msgstr "Ceci est un message test de la part de SickRage" -#: gui/slick/js/core.js:481 gui/slick/js/core.js:502 gui/slick/js/core.js:524 -#: gui/slick/js/core.js:548 gui/slick/js/core.js:573 gui/slick/js/core.js:596 -#: gui/slick/js/core.js:625 gui/slick/js/core.js:645 gui/slick/js/core.js:690 -#: gui/slick/js/core.js:769 gui/slick/js/core.js:829 gui/slick/js/core.js:849 -#: gui/slick/js/core.js:879 gui/slick/js/core.js:909 gui/slick/js/core.js:969 -#: gui/slick/js/core.js:1046 gui/slick/js/core.js:1066 gui/slick/js/core.js:1085 +#: gui/slick/js/browser.js:6 +msgid "Choose Directory" +msgstr "" + +#: gui/slick/js/core.js:443 +msgid "Select log file folder location" +msgstr "" + +#: gui/slick/js/core.js:445 +msgid "Select CSS file" +msgstr "" + +#: gui/slick/js/core.js:469 +msgid "Select backup folder to save to" +msgstr "" + +#: gui/slick/js/core.js:470 +msgid "Select backup files to restore" +msgstr "" + +#: gui/slick/js/core.js:479 gui/slick/js/core.js:500 gui/slick/js/core.js:522 +#: gui/slick/js/core.js:546 gui/slick/js/core.js:571 gui/slick/js/core.js:594 +#: gui/slick/js/core.js:623 gui/slick/js/core.js:643 gui/slick/js/core.js:688 +#: gui/slick/js/core.js:767 gui/slick/js/core.js:827 gui/slick/js/core.js:847 +#: gui/slick/js/core.js:877 gui/slick/js/core.js:907 gui/slick/js/core.js:967 +#: gui/slick/js/core.js:1044 gui/slick/js/core.js:1064 gui/slick/js/core.js:1083 msgid "Please fill out the necessary fields above." +msgstr "Veuillez remplir les champs nécessaires ci-dessus." + +#: gui/slick/js/core.js:680 +msgid "<b>Step 1:</b> Confirm Authorization" +msgstr "" + +#: gui/slick/js/core.js:977 +msgid "Check blacklist name; the value needs to be a trakt slug" +msgstr "" + +#: gui/slick/js/core.js:1022 +msgid "You must provide a recipient email address!" +msgstr "" + +#: gui/slick/js/core.js:1107 +msgid "You didn't supply a Pushbullet api key" +msgstr "" + +#: gui/slick/js/core.js:1133 gui/slick/js/core.js:1162 +msgid "Don't forget to save your new pushbullet settings." +msgstr "" + +#: gui/slick/js/core.js:1262 +msgid "Select TV Download Directory" msgstr "" -#: gui/slick/js/core.js:1328 gui/slick/js/core.js:1378 gui/slick/js/core.js:1427 -#: gui/slick/js/core.js:1493 +#: gui/slick/js/core.js:1263 +msgid "Select Unpack Directory" +msgstr "" + +#: gui/slick/js/core.js:1326 gui/slick/js/core.js:1376 gui/slick/js/core.js:1425 +#: gui/slick/js/core.js:1491 msgid "This pattern is invalid." msgstr "Ce modèle n'est pas valide." -#: gui/slick/js/core.js:1336 gui/slick/js/core.js:1386 gui/slick/js/core.js:1435 -#: gui/slick/js/core.js:1501 +#: gui/slick/js/core.js:1334 gui/slick/js/core.js:1384 gui/slick/js/core.js:1433 +#: gui/slick/js/core.js:1499 msgid "This pattern would be invalid without the folders, using it will force \"Season Folders\" on for all shows." msgstr "Ce modèle serait invalide sans les dossiers, en l'utilisant cela forcera la création \"Dossiers par Saison\" sur toutes les séries." -#: gui/slick/js/core.js:1344 gui/slick/js/core.js:1394 gui/slick/js/core.js:1443 -#: gui/slick/js/core.js:1509 +#: gui/slick/js/core.js:1342 gui/slick/js/core.js:1392 gui/slick/js/core.js:1441 +#: gui/slick/js/core.js:1507 msgid "This pattern is valid." msgstr "Ce modèle est valide." +#: gui/slick/js/core.js:1818 +msgid "Select .nzb black hole/watch location" +msgstr "" + +#: gui/slick/js/core.js:1819 +msgid "Select .torrent black hole/watch location" +msgstr "" + +#: gui/slick/js/core.js:1820 +msgid "Select .torrent download location" +msgstr "" + +#: gui/slick/js/core.js:1900 +msgid "Minimum seeding time is" +msgstr "" + +#: gui/slick/js/core.js:1902 +msgid "URL to your uTorrent client (e.g. http://localhost:8000)" +msgstr "" + +#: gui/slick/js/core.js:1905 +msgid "Stop seeding when inactive for" +msgstr "" + +#: gui/slick/js/core.js:1911 +msgid "URL to your Transmission client (e.g. http://localhost:9091)" +msgstr "" + +#: gui/slick/js/core.js:1921 +msgid "URL to your Deluge client (e.g. http://localhost:8112)" +msgstr "" + +#: gui/slick/js/core.js:1930 +msgid "IP or Hostname of your Deluge Daemon (e.g. scgi://localhost:58846)" +msgstr "" + +#: gui/slick/js/core.js:1937 +msgid "URL to your Synology DS client (e.g. http://localhost:5000)" +msgstr "" + +#: gui/slick/js/core.js:1941 +msgid "URL to your rTorrent client (e.g. scgi://localhost:5000 <br> or https://localhost/rutorrent/plugins/httprpc/action.php)" +msgstr "" + +#: gui/slick/js/core.js:1952 +msgid "URL to your qBittorrent client (e.g. http://localhost:8080)" +msgstr "" + +#: gui/slick/js/core.js:1962 +msgid "URL to your MLDonkey (e.g. http://localhost:4080)" +msgstr "" + +#: gui/slick/js/core.js:1974 +msgid "URL to your putio client (e.g. http://localhost:8080)" +msgstr "" + +#: gui/slick/js/core.js:1975 +msgid "<a herf=\"https://app.put.io/oauth/apps/new\" target=\"_blank\"> Create a new OAuth app for put.io</a>" +msgstr "" + +#: gui/slick/js/core.js:1977 +msgid "Put.io Parent Folder" +msgstr "" + +#: gui/slick/js/core.js:1978 +msgid "Put.io OAuth Token" +msgstr "" + +#: gui/slick/js/core.js:3383 gui/slick/views/displayShow.mako:410 +msgid "Show Episodes" +msgstr "Afficher les épisodes" + +#: gui/slick/js/core.js:3388 gui/slick/views/displayShow.mako:408 +msgid "Hide Episodes" +msgstr "Cacher les épisodes" + +#: gui/slick/js/core.js:3396 +msgid "Select Show Location" +msgstr "" + +#: gui/slick/js/core.js:3460 +msgid "Select Unprocessed Episode Folder" +msgstr "" + +#: gui/slick/js/core.js:3790 +msgid "DELETED" +msgstr "" + #: gui/slick/js/core.js:4082 msgid "Resume updating the log on this page." msgstr "Reprendre la mise à jour du log sur cette page." @@ -1415,6 +1548,26 @@ msgstr "Reprendre la mise à jour du log sur cette page." msgid "Pause updating the log on this page." msgstr "Mettre en pause la mise à jour du log sur cette page." +#: gui/slick/js/core.js:4323 +msgid "searching {searchingFor}..." +msgstr "" + +#: gui/slick/js/core.js:4334 +msgid "search timed out, try again or try another indexer" +msgstr "" + +#: gui/slick/js/core.js:4503 +msgid "loading folders..." +msgstr "" + +#: gui/slick/js/parsers.js:7 gui/slick/js/parsers.js:8 +#: gui/slick/js/plotTooltip.js:6 gui/slick/js/sceneExceptionsTooltip.js:6 +#: gui/slick/views/inc_home_showList.mako:209 +#: gui/slick/views/inc_home_showList.mako:215 +#: gui/slick/views/inc_home_showList.mako:231 +msgid "Loading..." +msgstr "Chargement..." + #: gui/slick/views/404.mako:5 msgid "You have reached this page by accident, please check the url." msgstr "Vous avez atteint cette page par hasard, vérifiez l'url." @@ -2174,19 +2327,19 @@ msgstr "Transparence du fanart en arrière-plan" #: gui/slick/views/config_general.mako:446 msgid "Use a custom stylesheet file" -msgstr "" +msgstr "Utiliser une feuille de style personnalisée" #: gui/slick/views/config_general.mako:451 msgid "use a custom .css file to style SickRage (for advanced users)" -msgstr "" +msgstr "utiliser un fichier .css personnalisé pour configurer l'apparence de SickRage (pour les utilisateurs avancés)" #: gui/slick/views/config_general.mako:457 msgid "Stylesheet File Path" -msgstr "" +msgstr "Chemin vers la feuille de style" #: gui/slick/views/config_general.mako:468 msgid "Path to the stylesheet (.css) file" -msgstr "" +msgstr "Chemin vers le fichier (.css) de la feuille de style" #: gui/slick/views/config_general.mako:477 msgid "Show all seasons" @@ -3273,11 +3426,11 @@ msgstr "Clé API Pushover" #: gui/slick/views/config_notifications.mako:1444 #: gui/slick/views/config_notifications.mako:2297 msgid "click here" -msgstr "" +msgstr "cliquer ici" #: gui/slick/views/config_notifications.mako:1444 msgid " to create a Pushover API key" -msgstr "" +msgstr " pour créer une clé API Pushover" #: gui/slick/views/config_notifications.mako:1452 msgid "Pushover devices" @@ -3608,7 +3761,7 @@ msgstr "par l'id spécifique de l'appareil" #: gui/slick/views/config_notifications.mako:2297 msgid " to create a Join API key" -msgstr "" +msgstr " pour créer une clé API Join" #: gui/slick/views/config_notifications.mako:2328 msgid "Twilio" @@ -5379,27 +5532,27 @@ msgstr "Tester la connexion" #: gui/slick/views/config_shares.mako:11 msgid "Windows Shares" -msgstr "" +msgstr "Partages Windows" #: gui/slick/views/config_shares.mako:12 msgid "Defines your existing windows shares so that we can add them to the browse dialog" -msgstr "" +msgstr "Définit vos partages windows existants afin de les ajouter dans la fenêtre de parcours des fichiers" #: gui/slick/views/config_shares.mako:22 msgid "Share #{number}" -msgstr "" +msgstr "Partage #{number}" #: gui/slick/views/config_shares.mako:27 msgid "Share label" -msgstr "" +msgstr "Nom du partage" #: gui/slick/views/config_shares.mako:31 msgid "Hostname or IP" -msgstr "" +msgstr "Adresse ou IP" #: gui/slick/views/config_shares.mako:35 msgid "Share path" -msgstr "" +msgstr "Adresse du partage" #: gui/slick/views/config_subtitles.mako:30 #: gui/slick/views/config_subtitles.mako:43 @@ -5720,14 +5873,6 @@ msgstr "Changer les épisodes séléctionnés en" msgid "Select Columns" msgstr "Sélectionner les colonnes" -#: gui/slick/views/displayShow.mako:408 -msgid "Hide Episodes" -msgstr "Cacher les épisodes" - -#: gui/slick/views/displayShow.mako:410 -msgid "Show Episodes" -msgstr "Afficher les épisodes" - #: gui/slick/views/displayShow.mako:424 msgid "NFO" msgstr "NFO" @@ -6246,12 +6391,6 @@ msgstr "Actif" msgid "loading" msgstr "chargement en cours" -#: gui/slick/views/inc_home_showList.mako:209 -#: gui/slick/views/inc_home_showList.mako:215 -#: gui/slick/views/inc_home_showList.mako:231 -msgid "Loading..." -msgstr "Chargement..." - #: gui/slick/views/inc_qualityChooser.mako:31 msgid "<p><b><u>Preferred</u></b> qualities will replace those in <b><u>allowed</u></b>, even if they are lower.</p>" msgstr "<p>Les qualités <b><u>préférées</u></b> remplaceront les <b><u>disponibles</u></b>, même si elles sont de qualités inférieures.</p>" @@ -6789,6 +6928,10 @@ msgstr "Mise à jour KODI" msgid "Update Emby" msgstr "Mise à jour Emby" +#: gui/slick/views/layouts/main.mako:167 +msgid "Manage Torrents" +msgstr "Gestion des Torrents" + #: gui/slick/views/layouts/main.mako:173 msgid "Missed Subtitle Management" msgstr "Gestion des sous-titres manqués" diff --git a/locale/he_IL/LC_MESSAGES/messages.json b/locale/he_IL/LC_MESSAGES/messages.json index 909e67bc738be7702723ada5cb5cd07891039c24..ac1eace9c00b869fc3d40a376e237fe67ee50a38 100644 --- a/locale/he_IL/LC_MESSAGES/messages.json +++ b/locale/he_IL/LC_MESSAGES/messages.json @@ -1 +1 @@ -{"messages":{"domain":"messages","locale_data":{"messages":{"100":[null,""],"250":[null,""],"500":[null,""],"":{"domain":"messages","plural_forms":"nplurals=4; plural=n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3;","lang":"he_IL"},"Drama":[null,"דרמה"],"Mystery":[null,"מסתורין"],"Science-Fiction":[null,"מדע בדיוני"],"Crime":[null,"פשע"],"Action":[null,"פעולה"],"Comedy":[null,"קומדיה"],"Thriller":[null,"מותחן"],"Animation":[null,"הנפשה"],"Family":[null,"משפחה"],"Fantasy":[null,"פנטזיה"],"Adventure":[null,"הרפתקה"],"Horror":[null,"אימה"],"Film-Noir":[null,"פילם-נואר"],"Sci-Fi":[null,"מד\"ב"],"Romance":[null,"רומנטיקה"],"Sport":[null,"ספורט"],"War":[null,"מלחמה"],"Biography":[null,"ביוגרפיה"],"History":[null,"היסטוריה"],"Music":[null,"מוזיקה"],"Western":[null,"מערבי"],"News":[null,"חדשות"],"Sitcom":[null,"קומדיית מצבים"],"Reality-TV":[null,"ריאליטי"],"Documentary":[null,"תיעודי"],"Game-Show":[null,"שעשועון"],"Musical":[null,"מחזמר"],"Talk-Show":[null,"תוכנית אירוח"],"Started Download":[null,"החל הורדה"],"Download Finished":[null,"הורדה הסתיימה"],"Subtitle Download Finished":[null,"הורדת כתוביות הסתיימה"],"SickRage Updated":[null,"SickRage עודכן"],"SickRage Updated To Commit#: ":[null,"SickRage עודכן ל-Commit מספר: "],"SickRage new login":[null,"כניסה חדשה ל-SickRage"],"New login from IP: {0}. http://geomaplookup.net/?ip={0}":[null,"כניסה חדשה מכתובת הרשת: {0}. http://geomaplookup.net/?ip={0}"],"Repeat":[null,"חזרה"],"Repeat (Separated)":[null,"חזרה (מופרדים)"],"Extend":[null,"הרחב"],"Extend (Limited)":[null,"הרחב (מוגבל)"],"Extend (Limited, E-prefixed)":[null,"הרחב (מוגבל, עם הקידומת E)"],"Downloaded":[null,"הורד"],"Snatched":[null,"נמצא"],"Snatched (Proper)":[null,"נמצא (תיקון)"],"Failed":[null,"נכשל"],"Snatched (Best)":[null,"נמצא (הטוב ביותר)"],"Archived":[null,"בארכיון"],"Unknown":[null,"לא ידוע"],"Unaired":[null,"לא שודר"],"Skipped":[null,"דולג"],"Wanted":[null,"מעוניין"],"Ignored":[null,"התעלם"],"Subtitled":[null,"כולל כתוביות"],"<No Filter>":[null,"<ללא מסנן>"],"Daily Searcher":[null,"תוכנית חיפוש יומית"],"Backlog":[null,"רטרואקטיבי"],"Show Updater":[null,"מעדכן הסדרות"],"Check Version":[null,"בודק הגרסאות"],"Show Queue":[null,"תור סדרות"],"Search Queue (All)":[null,"תור חיפוש (הכל)"],"Search Queue (Daily Searcher)":[null,"תור חיפוש (תוכנית חיפוש יומית)"],"Search Queue (Backlog)":[null,"תור חיפוש (רטרואקטיבי)"],"Search Queue (Manual)":[null,"תור חיפוש (ידני)"],"Search Queue (Retry/Failed)":[null,"תור חיפוש (נסה שנית/נכשל)"],"Search Queue (RSS)":[null,"תור חיפוש (RSS)"],"Find Propers":[null,"חפש תיקונים"],"Postprocessor":[null,"מעבד הורדות"],"Find Subtitles":[null,"חפש כתוביות"],"Trakt Checker":[null,"בודק Trakt"],"Event":[null,"אירוע"],"Error":[null,"שגיאה"],"Tornado":[null,"טורנדו"],"Thread":[null,"תהליכון"],"Main":[null,"ראשי"],"Loading":[null,""],"New update found for SickRage, starting auto-updater":[null,"עדכון חדש נמצא עבור SickRage, מפעיל עדכון אוטומטי"],"Update was successful":[null,"העדכון בוצע בהצלחה"],"Update failed!":[null,"עדכון נכשל!"],"Backup":[null,"גיבוי"],"Config backup in progress...":[null,"גיבוי הגדרות בתהליך..."],"Config backup successful, updating...":[null,"גיבוי הגדרות מוצלח, מעדכן..."],"Config backup failed, aborting update":[null,"גיבוי הגדרות נכשל, מבטל עדכון"],"No update needed":[null,"לא נדרש עדכון"],"Mako Error":[null,"שגיאת Mako"],"Oops":[null,"אופס"],"Wrong API key used":[null,"בוצע שימוש במפתח API שגוי"],"Login":[null,"התחבר"],"API Key not generated":[null,"לא נוצר מפתח API"],"API Builder":[null,"בנאי API"],"Schedule":[null,"לוח שידורים"],"Test 1":[null,"בדיקה 1"],"This is test number 1":[null,"זוהי בדיקה מספר 1"],"Test 2":[null,"בדיקה 2"],"This is test number 2":[null,"זוהי בדיקה מספר 2"],"You're using the {branch} branch. Please use 'master' unless specifically asked":[null,"הנך נמצא על ענף {branch}. אנא השתמש בענף 'master', אלא אם כן התבקשת מפורשות"],"Invalid show parameters":[null,"הפרמטרים של הסדרה אינם תקינים"],"Invalid parameters":[null,"פרמטרים לא תקינים"],"Episode couldn't be retrieved":[null,"לא היתה אפשרות לאחזר את הפרק"],"Home":[null,"מסך הבית"],"Show List":[null,"רשימת סדרות"],"Error: Unsupported Request. Send jsonp request with 'callback' variable in the query string.":[null,"שגיאה: הבקשה אינה נתמכת. שלח בקשת jsonp עם משתנה 'callback' במחרוזת השאילתה."],"Success. Connected and authenticated":[null,"הצלחה. מחובר ומאומת"],"Authentication failed. SABnzbd expects":[null,"אימות נכשל. SABnzbd מצפה ל-"],"as authentication method":[null,"בתור שיטת אימות"],"Unable to connect to host":[null,"אינו מסוגל להתחבר לשרת המארח"],"SMS sent successfully":[null,"מסרון נשלח בהצלחה"],"Problem sending SMS: {message}":[null,"בעיה בשליחת מסרון: {message}"],"Telegram notification succeeded. Check your Telegram clients to make sure it worked":[null,"שליחת ההודעה ל-Telegram הצליחה. בדוק את לקוחות ה-Telegram שלך על מנת לוודא שהיא הגיעה"],"Error sending Telegram notification: {message}":[null,"שליחת ההודעה ל-Telegram נתקלה בשגיאה: {message}"],"join notification succeeded. Check your join clients to make sure it worked":[null,"שליחת ההודעה ל-Join הצליחה. בדוק את לקוחות ה-Join שלך על מנת לוודא שהיא הגיעה"],"Error sending join notification: {message}":[null,"שליחת ההודעה ל-Join נתקלה בשגיאה: {message}"]," with password":[null," עם הסיסמה"],"Registered and Tested growl successfully {growl_host}":[null,"רישום Growl ובדיקתו בוצעו בהצלחה {growl_host}"],"Registration and Testing of growl failed {growl_host}":[null,"רישום Growl ובדיקתו נכשלו {growl_host}"],"Test prowl notice sent successfully":[null,"הודעת בדיקה נשלחה ל-Prowl בהצלחה"],"Test prowl notice failed":[null,"שליחת הודעת בדיקה ל-Prowl נכשלה"],"Boxcar2 notification succeeded. Check your Boxcar2 clients to make sure it worked":[null,"שליחת ההודעה ל-Boxcar2 הצליחה. בדוק את לקוחות ה-Boxcar2 שלך על מנת לוודא שהיא הגיעה"],"Error sending Boxcar2 notification":[null,"שליחת ההודעה ל-Boxcar2 נתקלה בשגיאה"],"Pushover notification succeeded. Check your Pushover clients to make sure it worked":[null,"שליחת ההודעה ל-Pushover הצליחה. בדוק את לקוחות ה-Pushover שלך על מנת לוודא שהיא הגיעה"],"Error sending Pushover notification":[null,"שליחת ההודעה ל-Pushover נתקלה בשגיאה"],"Key verification successful":[null,"מפתח אומת בהצלחה"],"Unable to verify key":[null,"אינו מסוגל לאמת מפתח"],"Tweet successful, check your twitter to make sure it worked":[null,"ציוץ נשלח בהצלחה. בדוק את הטוויטר שלך על מנת לוודא כי עבד"],"Error sending tweet":[null,"שגיאה בשליחת ציוץ"],"Please enter a valid account sid":[null,""],"Please enter a valid auth token":[null,""],"Please enter a valid phone sid":[null,""],"Please format the phone number as \"+1-###-###-####\"":[null,""],"Authorization successful and number ownership verified":[null,""],"Error sending sms":[null,"שגיאה בשליחת מסרון"],"Slack message successful":[null,""],"Slack message failed":[null,""],"Discord message successful":[null,""],"Discord message failed":[null,""],"Test KODI notice sent successfully to {kodi_host}":[null,""],"Test KODI notice failed to {kodi_host}":[null,""],"Successful test notice sent to Plex Home Theater ... {plex_clients}":[null,""],"Test failed for Plex Home Theater ... {plex_clients}":[null,""],"Tested Plex Home Theater(s)":[null,""],"Successful test of Plex Media Server(s) ... {plex_servers}":[null,""],"Test failed, No Plex Media Server host specified":[null,""],"Test failed for Plex Media Server(s) ... {plex_servers}":[null,""],"Tested Plex Media Server host(s)":[null,""],"Tried sending desktop notification via libnotify":[null,""],"Test notice sent successfully to {emby_host}":[null,""],"Test notice failed to {emby_host}":[null,""],"Successfully started the scan update":[null,""],"Test failed to start the scan update":[null,""],"Test notice sent successfully to {nmj2_host}":[null,""],"Test notice failed to {nmj2_host}":[null,""],"Trakt Authorized":[null,"מאומת עם Trakt"],"Trakt Not Authorized!":[null,"לא מאומת עם Trakt!"],"Test email sent successfully! Check inbox.":[null,"דוא\"ל בדיקה נשלח בהצלחה! בדוק את תיבת הדואר הנכנס."],"ERROR: {last_error}":[null,"שגיאה: {last_error}"],"Test NMA notice sent successfully":[null,""],"Test NMA notice failed":[null,""],"Pushalot notification succeeded. Check your Pushalot clients to make sure it worked":[null,""],"Error sending Pushalot notification":[null,""],"Pushbullet notification succeeded. Check your device to make sure it worked":[null,""],"Error sending Pushbullet notification":[null,""],"Status":[null,"מצב"],"Restarting SickRage":[null,"מאתחל את SickRage"],"Update Failed":[null,"עדכון נכשל"],"Update wasn't successful, not restarting. Check your log for more information.":[null,""],"Checking out branch":[null,""],"Already on branch":[null,""],"Invalid show ID: {show}":[null,"מזהה סדרה אינו תקין: {show}"],"Show not in show list":[null,"הסדרה לא נמצאת ברשימת הסדרות"],"Edit":[null,"עריכה"],"This show is in the process of being downloaded - the info below is incomplete.":[null,"סדרה זו בתהליכי הורדה - המידע שלהלן אינו שלם."],"The information on this page is in the process of being updated.":[null,"המידע בדף זה נמצא בתהליכי עדכון."],"The episodes below are currently being refreshed from disk":[null,"הפרקים שלהלן נמצאים כרגע בתהליכי רענון מהדיסק"],"Currently downloading subtitles for this show":[null,"כרגע מוריד כתוביות עבור סדרה זו"],"This show is queued to be refreshed.":[null,"סדרה זו נמצאת בתור לרענון."],"This show is queued and awaiting an update.":[null,"סדרה זו נמצאת בתור וממתינה לעדכון."],"This show is queued and awaiting subtitles download.":[null,"סדרה זו נמצאת בתור וממתינה להורדת כתוביות."],"Resume":[null,"הפעל"],"Pause":[null,"השהה"],"Remove":[null,"הסר"],"Re-scan files":[null,"סרוק קבצים מחדש"],"Force Full Update":[null,"אלץ עדכון מלא"],"Update show in KODI":[null,"עדכון סדרה ב-KODI"],"Update show in Emby":[null,"עדכון סדרה ב-Emby"],"Hide specials":[null,"הסתר ספיישלים"],"Show specials":[null,"הצג ספיישלים"],"Preview Rename":[null,""],"Download Subtitles":[null,"הורד כתוביות"],"No scene exceptions":[null,""],"Invalid show ID":[null,"מזהה סדרה אינו תקין"],"Unable to find the specified show":[null,"אינו מסוגל למצוא את הסדרה שצוינה"],"Unable to retreive Fansub Groups from AniDB.":[null,""],"Edit Show":[null,"עריכת סדרה"],"Unable to refresh this show: {error}":[null,"אינו מסוגל לרענן את הסדרה: {error}"],"New location <tt>{location}</tt> does not exist":[null,""],"Unable to update show: {error}":[null,"אינו מסוגל לעדכן את הסדרה: {error}"],"Unable to force an update on scene exceptions of the show.":[null,"אינו מסוגל לאלץ עדכון שמות ה\"זירה\" של הסדרה."],"Unable to force an update on scene numbering of the show.":[null,"אינו מסוגל לאלץ עדכון מספור ה\"זירה\" של הסדרה."],"{num_errors:d} error{plural} while saving changes:":[null,""],"{show_name} has been {paused_resumed}":[null,"הסדרה {show_name} {paused_resumed}"],"resumed":[null,"הופעלה"],"paused":[null,"הופסקה"],"{show_name} has been {deleted_trashed} {was_deleted}":[null,"הסדרה {show_name} {deleted_trashed} {was_deleted}"],"deleted":[null,"הוסרה"],"trashed":[null,"נמחקה"],"(media untouched)":[null,"(ללא שינוי בקבצים)"],"(with all related media)":[null,"(עם כל הקבצים הקשורים)"],"Unable to refresh this show.":[null,"אינו מסוגל לרענן סדרה זו."],"Unable to update this show.":[null,"אינו מסוגל לעדכן סדרה זו."],"Library update command sent to KODI host(s)): {kodi_hosts}":[null,""],"Unable to contact one or more KODI host(s)): {kodi_hosts}":[null,""],"Library update command sent to Plex Media Server host: {plex_server}":[null,""],"Unable to contact Plex Media Server host: {plex_server}":[null,""],"Library update command sent to Emby host: {emby_host}":[null,""],"Unable to contact Emby host: {emby_host}":[null,""],"You must specify a show and at least one episode":[null,""],"Invalid status":[null,""],"Backlog was automatically started for the following seasons of <b>{show_name}</b>":[null,""],"Season":[null,"עונה"],"Backlog started":[null,""],"Retrying Search was automatically started for the following season of <b>{show_name}</b>":[null,""],"Retry Search started":[null,""],"You must specify a show":[null,""],"Can't rename episodes when the show dir is missing.":[null,"לא ניתן לשנות שמות פרקים כאשר ספריית הסדרה חסרה."],"New subtitles downloaded: {new_subtitle_languages}":[null,""],"No subtitles downloaded":[null,""],"IRC":[null,""],"Could not load news from the repo. [Click here for news.md])({news_url})":[null,""],"The was a problem connecting to github, please refresh and try again":[null,""],"Could not load changes from the repo. [Click here for CHANGES.md]({changes_url})":[null,""],"Changelog":[null,""],"Post Processing":[null,""],"Add Shows":[null,""],"No folders selected.":[null,""],"New Show":[null,""],"Trending Shows":[null,""],"Popular Shows":[null,""],"Most Anticipated Shows":[null,""],"Most Collected Shows":[null,""],"Most Watched Shows":[null,""],"Most Played Shows":[null,""],"Recommended Shows":[null,""],"New Shows":[null,"סדרות חדשות"],"Season Premieres":[null,""],"Existing Show":[null,""],"No root directories setup, please go back and add one.":[null,""],"Show added":[null,""],"Adding the specified show {show_name}":[null,""],"Missing params, no Indexer ID or folder: {show_to_add} and {root_dir}/{show_path}":[null,""],"Unknown error. Unable to add show due to problem with show selection.":[null,""],"Unable to add show":[null,""],"Folder {show_dir} exists already":[null,""],"Unable to create the folder {show_dir}, can't add the show":[null,""],"Adding the specified show into {show_dir}":[null,""],"Shows Added":[null,""],"Automatically added {num_shows} from their existing metadata files":[null,""],"Mass Update":[null,""],"Episode Overview":[null,""],"Missing Subtitles":[null,""],"Backlog Overview":[null,""],"Mass Edit":[null,""],"Unable to update show: {excption_format}":[null,""],"Unable to refresh show {show_name}: {excption_format}":[null,""],"Errors encountered":[null,""],"Updates":[null,""],"Refreshes":[null,""],"Renames":[null,""],"Subtitles":[null,"כתוביות"],"The following actions were queued":[null,""],"For best results please set the Download Station alias as":[null,""],"You can check this setting in the Synology DSM":[null,""],"Control Panel":[null,""],"Application Portal":[null,""],"Make sure you allow DSM to be embedded with iFrames too in":[null,""],"DSM Settings":[null,""],"Security":[null,""],"Manage Torrents":[null,""],"Failed Downloads":[null,""],"Manage Searches":[null,"ניהול חיפושים"],"Backlog search started":[null,""],"Daily search started":[null,"חיפוש יומי החל"],"Find propers search started":[null,""],"Subtitle search started":[null,""],"Remove Selected":[null,""],"Clear History":[null,""],"Trim History":[null,""],"Selected history entries removed":[null,""],"History cleared":[null,""],"Removed history entries older than 30 days":[null,""],"General":[null,""],"Backup/Restore":[null,""],"Search Settings":[null,""],"Search Providers":[null,""],"Subtitles Settings":[null,""],"Notifications":[null,""],"Anime":[null,"אנימה"],"SickRage Configuration":[null,""],"Config - Shares":[null,""],"Windows Shares Configuration":[null,""],"Saved Shares":[null,""],"Your Windows share settings have been saved":[null,""],"Config - General":[null,""],"General Configuration":[null,""],"Saved Defaults":[null,""],"Your \"add show\" defaults have been set to your current selections.":[null,""],"Unable to create directory {directory}, log directory not changed.":[null,""],"Unable to create directory {directory}, https cert directory not changed.":[null,""],"Unable to create directory {directory}, https key directory not changed.":[null,""],"Error(s) Saving Configuration":[null,""],"Configuration Saved":[null,""],"Config - Backup/Restore":[null,""],"Config - Episode Search":[null,""],"Config - Post Processing":[null,""],"Unpacking Not Supported, disabling unpack setting":[null,""],"You tried saving an invalid normal naming config, not saving your naming settings":[null,""],"You tried saving an invalid anime naming config, not saving your naming settings":[null,""],"Config - Providers":[null,""],"No Provider Name specified":[null,""],"No Provider Url specified":[null,""],"No Provider Api key specified":[null,""],"Config - Notifications":[null,""],"Config - Subtitles":[null,""],"Config - Anime":[null,""],"Clear Errors":[null,""],"Clear Warnings":[null,""],"Submit Errors":[null,""],"Logs & Errors":[null,""],"Log File":[null,""],"Logs":[null,""],"This is a test notification from SickRage":[null,""],"Please fill out the necessary fields above.":[null,""],"This pattern is invalid.":[null,""],"This pattern would be invalid without the folders, using it will force \"Season Folders\" on for all shows.":[null,""],"This pattern is valid.":[null,""],"Resume updating the log on this page.":[null,""],"Pause updating the log on this page.":[null,""],"You have reached this page by accident, please check the url.":[null,""],"A mako error has occured.<br>\n If this happened during an update a simple page refresh may be the solution.<br>\n Mako errors that happen during updates may be a one time error if there were significant ui changes.":[null,""],"Show/Hide Error":[null,""],"Add New Show":[null,"הוסף סדרה חדשה"],"For shows that you haven't downloaded yet, this option finds a show on theTVDB.com, creates a directory for it's episodes, and adds it to SickRage.":[null,"עבור סדרות שטרם הורדת, אפשרות זאת מוצאת סדרה באתר theTVDB.com, יוצרת ספרייה לפרקים שלה ומוסיפה אותה ל-SickRage."],"Add From Trakt Lists":[null,""],"For shows that you haven't downloaded yet, this option lets you choose from a show from one of the Trakt lists to add to SickRage.":[null,"עבור סדרות שטרם הורדת, אפשרות זאת נותנת לך לבחור באחת הסדרות ממבחר הרשימות של Trakt ולהוסיף אותה ל-SickRage."],"Add From IMDB's Popular Shows":[null,"הוסף מהסדרות הפופולריות של IMDB"],"View IMDB's list of the most popular shows. This feature uses IMDB's MOVIEMeter algorithm to identify popular TV Series.":[null,"צפה ברשימת הסדרות הכי פופולריות של IMDB. תכונה זו נעזרת באלגוריתם ה-MOVIEMeter של IMDB על מנת לזהות סדרות טלויזיה פופולריות."],"Add Existing Shows":[null,"הוסף סדרות קיימות"],"Use this option to add shows that already have a folder created on your hard drive. SickRage will scan your existing metadata/episodes and add the show accordingly.":[null,"השתמש באפשרות זו על מנת להוסיף סדרות אשר להן כבר קיימת תיקייה בכונן הקשיח שלך. SickRage יסרוק את הפרקים והמטא-נתונים הקיימים ויוסיף את התוכנית בהתאם."],"Add Existing Show":[null,"הוסף סדרה קיימת"],"Manage Directories":[null,"ניהול ספריות"],"Customize Options":[null,""],"SickRage can add existing shows, using the current options, by using locally stored NFO/XML metadata to eliminate user interaction. If you would rather have SickRage prompt you to customize each show, then use the checkbox below.":[null,"SickRage יכול להוסיף סדרות קיימות בעזרת האפשרויות הנוכחיות, או בעזרת מטא-נתונים מסוג NFO/XML השמורים באופן מקומי על מנת לבטל התערבות מצד המשתמש. אם אתה מעדיף ש-SickRage יבקש ממך להתאים אישית כל סדרה, השתמש בתיבת הסימון שלהלן."],"Prompt me to set settings for each show":[null,"בקש ממני לקבוע הגדרות לכל סדרה"],"Displaying folders within these directories which aren't already added to SickRage":[null,""],"Submit":[null,""],"Find a show on theTVDB":[null,"חפש סדרה ב-theTVDB"],"Show retrieved from existing metadata":[null,"סדרה אוחזרה ממטא-נתונים קיימים"],"All Indexers":[null,""],"Search":[null,""],"This will only affect the language of the retrieved metadata file contents and episode filenames.":[null,"זה ישפיע רק על השפה של המטא-נתונים אשר יאוחזרו מהקבצים ועל שמות קבצי הפרקים."],"This <b>DOES NOT</b> allow SickRage to download non-english TV episodes!":[null,""],"Pick the parent folder":[null,""],"Pre-chosen Destination Folder":[null,""],"Customize options":[null,""],"Add Show":[null,"הוסף סדרה"],"Skip Show":[null,"דלג על סדרה"],"Sort By":[null,""],"Name":[null,"שם"],"Original":[null,""],"Votes":[null,""],"Rating":[null,""],"Rating > Votes":[null,""],"Sort Order":[null,""],"Asc":[null,""],"Desc":[null,""],"Fetching of IMDB Data failed. Are you online?":[null,""],"Exception":[null,""],"Select Trakt List":[null,""],"Most Anticipated":[null,""],"Trending":[null,""],"Popular":[null,""],"Most Watched":[null,""],"Most Played":[null,""],"Most Collected":[null,""],"Recommended":[null,""],"Toggle navigation":[null,""],"Profile":[null,""],"JSONP":[null,""],"Back to SickRage":[null,""],"Parameters":[null,""],"Required":[null,""],"Description":[null,""],"Type":[null,""],"Default value":[null,""],"Allowed values":[null,""],"Playground":[null,""],"Clear":[null,""],"Yes":[null,"כן"],"No":[null,"לא"],"season":[null,""],"episode":[null,""],"Python Version":[null,""],"SSL Version":[null,""],"OS":[null,""],"Locale":[null,""],"User":[null,""],"Program Folder":[null,""],"Config File":[null,""],"Database File":[null,""],"Cache Folder":[null,""],"Log Folder":[null,""],"Arguments":[null,""],"Web Root":[null,""],"Website":[null,""],"Wiki":[null,""],"Source":[null,""],"IRC Chat":[null,""],"AnimeDB Settings":[null,""],"Look & Feel":[null,""],"AniDB is non-profit database of anime information that is freely open to the public":[null,""],"Enable":[null,"הפעל"],"should SickRage use data from AniDB?":[null,""],"AniDB Username":[null,""],"username of your AniDB account":[null,""],"AniDB Password":[null,""],"password of your AniDB account":[null,""],"AniDB MyList":[null,""],"do you want to add the PostProcessed episodes to the MyList?":[null,"האם ברצונך להוסיף את הפרקים להם בוצע עיבוד לאחר הורדה ל-MyList?"],"Look and Feel":[null,""],"How should the anime functions show and behave.":[null,""],"Split show lists":[null,""],"separate anime and normal shows in groups":[null,""],"Split in tabs":[null,""],"use tabs for when splitting show lists":[null,""],"Restore":[null,""],"Backup your main database file and config.":[null,""],"Select the folder you wish to save your backup file to":[null,""],"Restore your main database file and config.":[null,""],"Select the backup file you wish to restore":[null,""],"Misc":[null,""],"Interface":[null,""],"Advanced Settings":[null,""],"Startup options. Indexer options. Log and show file locations.":[null,""],"Some options may require a manual restart to take effect.":[null,""],"Default Indexer Language":[null,""],"for adding shows and metadata providers":[null,""],"Launch browser":[null,""],"open the SickRage home page on startup":[null,""],"Initial page":[null,""],"Shows":[null,""],"when launching SickRage interface":[null,""],"Choose hour to update shows":[null,""],"with information such as next air dates, show ended, etc. Use 15 for 3pm, 4 for 4am etc.":[null,""],"note":[null,"הערה"],"minutes are randomized each time SickRage is started":[null,""],"Send to trash for actions":[null,""],"when using show \"Remove\" and delete files":[null,""],"on scheduled deletes of the oldest log files":[null,""],"selected actions use trash (recycle bin) instead of the default permanent delete":[null,""],"Log file folder location":[null,""],"Number of Log files saved":[null,""],"number of log files saved when rotating logs (default: 5) (REQUIRES RESTART)":[null,""],"Size of Log files saved":[null,""],"maximum size in MB of the log file (default: 1MB) (REQUIRES RESTART)":[null,""],"Use initial indexer set to":[null,""],"as the default selection when adding new shows":[null,""],"Timeout show indexer at":[null,""],"seconds of inactivity when finding new shows (default:20)":[null,""],"Show root directories":[null,""],"where the files of shows are located":[null,""],"Save Changes":[null,""],"Options for software updates.":[null,""],"Check software updates":[null,""],"and display notifications when updates are available. Checks are run on startup and at the frequency set below*":[null,""],"Automatically update":[null,""],"fetch and install software updates. Updates are run on startup and in the background at the frequency set below*":[null,""],"Check the server every*":[null,""],"hours for software updates (default:1)":[null,""],"Notify on software update":[null,""],"send a message to all enabled notifiers when SickRage has been updated":[null,""],"User Interface":[null,""],"Options for visual appearance.":[null,""],"Interface Language":[null,""],"System Language":[null,""],"for appearance to take effect, save then refresh your browser":[null,""],"Display theme":[null,""],"Dark":[null,""],"Light":[null,""],"Use a background image":[null,""],"use a custom image as background for SickRage":[null,""],"Background Path":[null,""],"Path to the background image":[null,""],"Show fanart in the background":[null,""],"on the show summary page":[null,""],"Fanart transparency":[null,""],"transparency of the fanart in the background":[null,""],"Use a custom stylesheet file":[null,""],"use a custom .css file to style SickRage (for advanced users)":[null,""],"Stylesheet File Path":[null,""],"Path to the stylesheet (.css) file":[null,""],"Show all seasons":[null,""],"Sort with \"The\", \"A\", \"An\"":[null,""],"include articles (\"The\", \"A\", \"An\") when sorting show lists":[null,""],"Missed episodes range":[null,""],"set the range in days of the missed episodes in the Schedule page":[null,""],"Display fuzzy dates":[null,""],"move absolute dates into tooltips and display e.g. \"Last Thu\", \"On Tue\"":[null,""],"Trim zero padding":[null,""],"remove the leading number \"0\" shown on hour of day, and date of month":[null,""],"Date style":[null,""],"Use System Default":[null,""],"Time style":[null,""],"seconds are only shown on the History page":[null,""],"Timezone":[null,""],"Local":[null,""],"Network":[null,""],"display dates and times in either your timezone or the shows network timezone":[null,""],"use local timezone to start searching for episodes minutes after show ends (depends on your dailysearch frequency)":[null,""],"Download url":[null,""],"URL where the shows can be downloaded.":[null,""],"Web Interface":[null,""],"it is recommended that you enable a username and password to secure SickRage from being tampered with remotely.":[null,""],"these options require a manual restart to take effect.":[null,""],"API key":[null,""],"used to give 3rd party programs limited access to SickRage":[null,""],"you can try all the features of the API":[null,""],"here":[null,""],"HTTP logs":[null,""],"enable logs from the internal Tornado web server":[null,""],"HTTP username":[null,""],"set blank for no login":[null,""],"HTTP password":[null,""],"blank = no authentication":[null,""],"HTTP port":[null,""],"web port to browse and access SickRage (default:8081)":[null,""],"Notify on login":[null,""],"enable to be notified when a new login happens in webserver":[null,""],"Listen on IPv6":[null,""],"attempt binding to any available IPv6 address":[null,""],"Enable HTTPS":[null,""],"enable access to the web interface using a HTTPS address":[null,""],"HTTPS certificate":[null,""],"file name or path to HTTPS certificate":[null,""],"HTTPS key":[null,""],"file name or path to HTTPS key":[null,""],"Reverse proxy headers":[null,""],"accept the following reverse proxy headers (advanced)...":[null,""],"(X-Forwarded-For, X-Forwarded-Host, and X-Forwarded-Proto)":[null,""],"CPU throttling":[null,""],"Normal (default). High is lower and Low is higher CPU use":[null,""],"Anonymous redirect":[null,""],"backlink protection via anonymizer service, must end in \"?\"":[null,""],"Enable debug":[null,""],"enable debug logs":[null,""],"Verify SSL Certs":[null,""],"verify SSL Certificates (Disable this for broken SSL installs (Like QNAP))":[null,""],"No Restart":[null,""],"only shutdown when restarting SR":[null,""],"only select this when you have external software restarting SR automatically when it stops (like FireDaemon)":[null,""],"Encrypt passwords":[null,""],"in the <code>config.ini</code> file":[null,""],"warning":[null,""],"passwords must only contain":[null,""],"ASCII characters":[null,""],"Unprotected calendar":[null,""],"allow subscribing to the calendar without user and password":[null,""],"some services like Google Calendar only work this way":[null,""],"Google Calendar Icons":[null,""],"show an icon next to exported calendar events in Google Calendar":[null,""],"Proxy host":[null,""],"blank to disable or proxy to use when connecting to providers":[null,""],"also use global proxy setting for indexers (tvdb, xem, anidb, etc.)":[null,""],"Skip Remove Detection":[null,""],"skip detection of removed files":[null,""],"if disabled the episode will be set to the default deleted status":[null,""],"Default deleted episode status":[null,""],"define the status to be set for media file that has been deleted.":[null,""],"Archived option will keep previous downloaded quality":[null,""],"example: Downloaded (1080p WEB-DL) ==> Archived (1080p WEB-DL)":[null,""],"Options for github related features.":[null,""],"Branch version":[null,""],"error: No branches found.":[null,""],"select branch to use (restart required)":[null,""],"Authorization Type":[null,""],"Username and password":[null,""],"Personal access token":[null,""],"You must use a personal access token if you're using \"two-factor authentication\" on GitHub.":[null,""],"GitHub username":[null,""],"*** (REQUIRED FOR SUBMITTING ISSUES) ***":[null,""],"GitHub password":[null,""],"GitHub personal access token":[null,""],"Generate Token":[null,""],"Manage Tokens":[null,""],"GitHub remote for branch":[null,""],"access repo configured remotes (save then refresh browser)":[null,""],"default":[null,""],"origin":[null,""],"Git executable path":[null,""],"only needed if OS is unable to locate git from env":[null,""],"Git reset":[null,""],"removes untracked files and performs a hard reset on git branch automatically to help resolve update issues":[null,""],"Home Theater / NAS":[null,""],"Devices":[null,""],"Social":[null,""],"A free and open source cross-platform media center and home entertainment system software with a 10-foot user interface designed for the living-room TV.":[null,""],"send KODI commands?":[null,""],"Always on":[null,""],"log errors when unreachable?":[null,""],"Notify on snatch":[null,""],"send a notification when a download starts?":[null,""],"Notify on download":[null,""],"send a notification when a download finishes?":[null,""],"Notify on subtitle download":[null,""],"send a notification when subtitles are downloaded?":[null,""],"Update library":[null,""],"update KODI library when a download finishes?":[null,""],"Full library update":[null,""],"perform a full library update if update per-show fails?":[null,""],"Only update first host":[null,""],"only send library updates to the first active host?":[null,""],"KODI IP:Port":[null,""],"host running KODI (eg. 192.168.1.100:8080)":[null,""],"(multiple host strings must be separated by commas)":[null,""],"Username":[null,""],"username for your KODI server (blank for none)":[null,""],"Password":[null,""],"password for your KODI server (blank for none)":[null,""],"Click below to test.":[null,""],"Experience your media on a visually stunning, easy to use interface on your Mac connected to your TV. Your media library has never looked this good!":[null,""],"For sending notifications to Plex Home Theater (PHT) clients, use the KODI notifier with port <b>3005</b>.":[null,""],"send Plex Media Server library updates?":[null,""],"Plex Media Server Auth Token":[null,""],"auth token used by Plex":[null,""],"Update Library":[null,""],"update Plex Media Server library when a download finishes":[null,""],"Plex Media Server IP:Port":[null,""],"one or more hosts running Plex Media Server<br/>(eg. 192.168.1.1:32400, 192.168.1.2:32400)":[null,""],"HTTPS":[null,""],"use https for plex media server requests?":[null,""],"Click below to test Plex Media Server(s)":[null,""],"Test Plex Media Server":[null,""],"Plex Home Theater":[null,""],"send Plex Home Theater notifications?":[null,""],"Plex Home Theater IP:Port":[null,""],"one or more hosts running Plex Home Theater<br>(eg. 192.168.1.100:3000, 192.168.1.101:3000)":[null,""],"Click below to test Plex Home Theater(s)":[null,""],"Test Plex Home Theater":[null,""],"some Plex Home Theaters <b class=\"boldest\">do not</b> support notifications e.g. Plexapp for Samsung TVs":[null,""],"Emby":[null,""],"A home media server built using other popular open source technologies.":[null,""],"send update commands to Emby?":[null,""],"Emby IP:Port":[null,""],"host running Emby (eg. 192.168.1.100:8096)":[null,""],"Emby API Key":[null,""],"Networked Media Jukebox":[null,""],"The Networked Media Jukebox, or NMJ, is the official media jukebox interface made available for the Popcorn Hour 200-series.":[null,""],"send update commands to NMJ?":[null,""],"Popcorn IP address":[null,""],"IP address of Popcorn 200-series (eg. 192.168.1.100)":[null,""],"Get settings":[null,""],"Get Settings":[null,""],"the Popcorn Hour device must be powered on and NMJ running.":[null,""],"NMJ database":[null,""],"automatically filled via the 'Get Settings' button.":[null,""],"NMJ mount url":[null,""],"Networked Media Jukebox v2":[null,""],"The Networked Media Jukebox, or NMJv2, is the official media jukebox interface made available for the Popcorn Hour 300 & 400-series.":[null,""],"send update commands to NMJv2?":[null,""],"IP address of Popcorn 300/400-series (eg. 192.168.1.100)":[null,""],"Database location":[null,""],"Database instance":[null,""],"adjust this value if the wrong database is selected.":[null,""],"Find database":[null,""],"Find Database":[null,""],"the Popcorn Hour device must be powered on.":[null,""],"NMJv2 database":[null,""],"automatically filled via the 'Find Database' buttons.":[null,""],"Synology":[null,""],"The Synology DiskStation NAS.":[null,""],"Synology Indexer is the daemon running on the Synology NAS to build its media database.":[null,""],"send Synology notifications?":[null,""],"requires SickRage to be running on your Synology NAS.":[null,""],"Synology Indexer":[null,""],"Synology Notifier is the notification system of Synology DSM":[null,""],"send notifications to the Synology Notifier?":[null,""],"pyTivo":[null,""],"pyTivo is both an HMO and GoBack server. This notifier will load the completed downloads to your Tivo.":[null,""],"send notifications to pyTivo?":[null,""],"requires the downloaded files to be accessible by pyTivo.":[null,""],"pyTivo IP:Port":[null,""],"host running pyTivo (eg. 192.168.1.1:9032)":[null,""],"pyTivo share name":[null,""],"value used in pyTivo Web Configuration to name the share.":[null,""],"Tivo name":[null,""],"(Messages & Settings > Account & System Information > System Information > DVR name)":[null,""],"Growl":[null,""],"A cross-platform unobtrusive global notification system.":[null,""],"send Growl notifications?":[null,""],"Growl IP:Port":[null,""],"host running Growl (eg. 192.168.1.100:23053)":[null,""],"may leave blank if SickRage is on the same host.":[null,""],"otherwise Growl <b>requires</b> a password to be used.":[null,""],"Click below to register and test Growl, this is required for Growl notifications to work.":[null,""],"Register Growl":[null,""],"Prowl":[null,""],"A Growl client for iOS.":[null,""],"send Prowl notifications?":[null,""],"Prowl Message Title":[null,""],"Global Prowl API key(s)":[null,""],"Prowl API(s) listed here, separated by commas if applicable, will<br> receive notifications for <b>all</b> shows. Your Prowl API key is available at:":[null,""],"(this field may be blank except when testing.)":[null,""],"Show notification list":[null,""],"-- Select a Show --":[null,"-- בחר סדרה --"],"Configure per-show notifications here by entering Prowl API key(s), separated by commas, '\n 'after selecting a show in the drop-down box. Be sure to activate the 'Save for this show' '\n 'button below after each entry.":[null,""],"Save for this show":[null,""],"Prowl priority":[null,""],"Very Low":[null,""],"Moderate":[null,""],"Normal":[null,""],"High":[null,""],"Emergency":[null,""],"priority of Prowl messages from SickRage.":[null,""],"Libnotify":[null,""],"The standard desktop notification API for Linux/*nix systems. This notifier will only function if the pynotify module is installed (Ubuntu/Debian package <a href=\"apt:python-notify\">python-notify</a>).":[null,""],"send Libnotify notifications?":[null,""],"Pushover":[null,""],"Pushover makes it easy to send real-time notifications to your Android and iOS devices.":[null,""],"send Pushover notifications?":[null,""],"Pushover key":[null,""],"user key of your Pushover account":[null,""],"Pushover API key":[null,""],"click here":[null,""]," to create a Pushover API key":[null,""],"Pushover devices":[null,""],"comma separated list of pushover devices you want to send notifications to":[null,""],"Pushover notification sound":[null,""],"Bike":[null,""],"Bugle":[null,""],"Cash Register":[null,""],"Classical":[null,""],"Cosmic":[null,""],"Falling":[null,""],"Gamelan":[null,""],"Incoming":[null,""],"Intermission":[null,""],"Magic":[null,""],"Mechanical":[null,""],"Piano Bar":[null,""],"Siren":[null,""],"Space Alarm":[null,""],"Tug Boat":[null,""],"Alien Alarm (long)":[null,""],"Climb (long)":[null,""],"Persistent (long)":[null,""],"Pushover Echo (long)":[null,""],"Up Down (long)":[null,""],"None (silent)":[null,""],"Device specific":[null,""],"choose notification sound to use":[null,""],"Pushover priority":[null,""],"Choose priority to use":[null,""],"Boxcar 2":[null,""],"Read your messages where and when you want them!":[null,""],"send Boxcar notifications?":[null,""],"Boxcar2 access token":[null,""],"access token for your Boxcar account.":[null,""],"NMA":[null,""],"Notify My Android":[null,""],"Notify My Android is a Prowl-like Android App and API that offers an easy way to send notifications from your application directly to your Android device.":[null,""],"send NMA notifications?":[null,""],"NMA API key":[null,""],"(multiple keys must be separated by commas, up to a maximum of 5)":[null,""],"NMA priority":[null,""],"priority of NMA messages from SickRage.":[null,""],"Pushalot":[null,""],"Pushalot is a platform for receiving custom push notifications to connected devices running Windows Phone or Windows 8.":[null,""],"send Pushalot notifications ?":[null,""],"Pushalot authorization token":[null,""],"authorization token of your Pushalot account.":[null,""],"Pushbullet":[null,""],"Pushbullet is a platform for receiving custom push notifications to connected devices running Android/iOS and desktop browsers such as Chrome, Firefox or Opera.":[null,""],"send Pushbullet notifications?":[null,""],"Pushbullet API key":[null,""],"API key of your Pushbullet account":[null,""],"Pushbullet devices":[null,""],"Update device list":[null,""],"Pushbullet channels":[null,""],"Free Mobile":[null,""],"Free Mobile is a famous French cellular network provider.<br> It provides to their customer a free SMS API.":[null,""],"send SMS notifications?":[null,""],"send a SMS when a download starts?":[null,""],"send a SMS when a download finishes?":[null,""],"send a SMS when subtitles are downloaded?":[null,""],"Free Mobile customer ID":[null,""],"it's your Free Mobile customer ID (8 digits)":[null,""],"Free Mobile API key":[null,""],"find your API key in your customer portal.":[null,""],"Click below to test your settings.":[null,""],"Telegram":[null,""],"Telegram is a cloud-based instant messaging service.":[null,""],"send Telegram notifications?":[null,""],"send a message when a download starts?":[null,""],"send a message when a download finishes?":[null,""],"send a message when subtitles are downloaded?":[null,""],"User/group ID":[null,""],"contact @myidbot on Telegram to get an ID":[null,""],"Bot API token":[null,""],"contact @BotFather on Telegram to set up one":[null,""],"Join":[null,""],"Join all of your devices together!":[null,""],"send Join notifications?":[null,""],"Device ID":[null,""],"per device specific id":[null,""]," to create a Join API key":[null,""],"Twilio":[null,""],"Twilio is a webservice API that allows you to communicate directly with a mobile number. This notifier will send a text directly to your mobile device.":[null,""],"should SickRage text your mobile device?":[null,""],"Twilio Account SID":[null,""],"account SID of your Twilio account.":[null,""],"Twilio Auth Token":[null,""],"Twilio Phone SID":[null,""],"phone SID that you would like to send the sms from":[null,""],"Your phone number":[null,""],"phone number that will receive the sms. Please use the format +1-###-###-####":[null,""],"Twitter":[null,""],"A social networking and microblogging service, enabling its users to send and read other users' messages called tweets.":[null,""],"should SickRage post tweets on Twitter?":[null,""],"you may want to use a secondary account.":[null,""],"send direct message":[null,""],"send a notification via Direct Message, not via status update":[null,""],"send DM to":[null,""],"Twitter account to send Direct Messages to (must follow you)":[null,""],"Step One":[null,""],"Request Authorization":[null,""],"Click the \"Request Authorization\" button.<br> This will open a new page containing an auth key.<br> <b>note:</b> if nothing happens check your popup blocker.":[null,""],"Step Two":[null,""],"Enter the key Twitter gave you below, and click \"Verify Key\".":[null,""],"Trakt":[null,""],"Trakt helps keep a record of what TV shows and movies you are watching. Based on your favorites, Trakt recommends additional shows and movies you'll enjoy!":[null,""],"send Trakt.tv notifications?":[null,""],"username of your Trakt account.":[null,""],"Trakt PIN":[null,""],"Get Trakt PIN":[null,""],"PIN code to authorize SickRage to access Trakt on your behalf.":[null,""],"API Timeout":[null,""],"seconds to wait for Trakt API to respond. (Use 0 to wait forever)":[null,""],"Default indexer":[null,""],"Sync libraries":[null,""],"sync your SickRage show library with your trakt show library.":[null,""],"Remove Episodes From Collection":[null,""],"remove an episode from your Trakt Collection if it is not in your SickRage Library.":[null,""],"Sync watchlist":[null,""],"sync your SickRage show watchlist with your trakt show watchlist (either Show and Episode).":[null,""],"episode will be added on watch list when wanted or snatched and will be removed when downloaded ":[null,""],"Watchlist add method":[null,""],"Skip All":[null,""],"Download Pilot Only":[null,""],"Get whole show":[null,""],"method in which to download episodes for new shows.":[null,""],"Remove episode":[null,""],"remove an episode from your watchlist after it is downloaded.":[null,""],"Remove series":[null,""],"remove the whole series from your watchlist after any download.":[null,""],"Remove watched show":[null,""],"remove the show from sickrage if it's ended and completely watched":[null,""],"Start paused":[null,""],"shows grabbed from your trakt watchlist start paused.":[null,""],"Trakt blackList name":[null,""],"name (slug) of list on Trakt for blacklisting show on 'Add Trending Show' & 'Add Recommended Shows' pages":[null,""],"Email":[null,""],"Allows configuration of email notifications on a per show basis.":[null,""],"send email notifications?":[null,""],"SMTP host":[null,""],"hostname of your SMTP email server.":[null,""],"SMTP port":[null,""],"port number used to connect to your SMTP host.":[null,""],"SMTP from":[null,""],"sender email address, some hosts require a real address.":[null,""],"Use TLS":[null,""],"check to use TLS encryption.":[null,""],"SMTP user":[null,""],"(optional) your SMTP server username.":[null,""],"SMTP password":[null,""],"(optional) your SMTP server password.":[null,""],"Global email list":[null,""],"email addresses listed here, separated by commas if applicable, will<br> receive notifications for <b>all</b> shows.":[null,""],"(This field may be blank except when testing.)":[null,""],"Email Subject":[null,""],"use a custom subject for some privacy protection?":[null,""],"(leave blank for the default SickRage subject)":[null,""],"configure per-show notifications here by entering email address(es), separated by commas,":[null,""],"after selecting a show in the drop-down box. Be sure to activate the 'Save for this show'":[null,""],"button below after each entry.":[null,""],"Slack":[null,""],"Slack brings all your communication together in one place. It's real-time messaging, archiving and search for modern teams.":[null,""],"should SickRage post messages on Slack?":[null,""],"Slack Incoming Webhook":[null,""],"Discord":[null,""],"All-in-one voice and text chat for gamers that's free, secure, and works on both your desktop and phone.":[null,""],"Should SickRage post messages on Discord?":[null,""],"Discord Incoming Webhook":[null,""],"Create webhook under channel settings.":[null,""],"Discord Bot Name":[null,""],"Blank will use webhook default Name.":[null,""],"Discord Avatar URL":[null,""],"Blank will use webhook default Avatar.":[null,""],"Discord TTS":[null,""],"Send notifications using text-to-speech":[null,""],"Post-Processing":[null,"עיבוד לאחר הורדה"],"Episode Naming":[null,"שמות פרקים"],"Metadata":[null,"מטא-נתונים"],"Settings that dictate how SickRage should process completed downloads.":[null,"הגדרות המכתיבות כיצד SickRage צריך לעבד הורדות שהסתיימו."],"enable the automatic post processor to scan and process any files in your Post Processing Dir":[null,"הפעל את מעבד ההורדות האוטומטי שיסרוק ויעבד את כל הקבצים בספריית ההורדות לעיבוד שלך"],"do not use if you use an external Post Processing script":[null,"אל תשתמש במידה ואתה משתמש בקובץ פקודות חיצוני המבצע עיבוד לאחר הורדה"],"Post Processing Dir":[null,"ספריית ההורדות לעיבוד"],"the folder where your download client puts the completed TV downloads.":[null,"התיקייה שבה תוכנת ההורדות שלך שמה את הורדות הטלויזיה שהסתיימו."],"please use seperate downloading and completed folders in your download client if possible.":[null,"במידת האפשר, אנא השתמש בתוכנת ההורדה שלך בתיקיות נפרדות עבור הורדות בתהליך ואלה שהסתיימו."],"Processing Method":[null,"שיטת עיבוד"],"what method should be used to put files into the library?":[null,"באיזו שיטה יש להשתמש כדי להכניס קבצים לספריה?"],"if you keep seeding torrents after they finish, please avoid the 'move' processing method to prevent errors.":[null,"במידה ואתה ממשיך לזרוע טורנטים לאחר שהסתיימו, אנא הימנע משימוש בשיטת העיבוד 'העבר' על מנת למנוע שגיאות."],"Auto Post-Processing Frequency":[null,"תדירות הפעלת מעבד ההורדות האוטומטי"],"time in minutes to check for new files to auto post-process (min 10)":[null,"תדירות (בדקות) לסריקת תקיית ההורדות עבור קבצים חדשים להם יש לבצע עיבוד לאחר הורדה (מינימום 10)"],"Postpone post processing":[null,"דחיית עיבוד לאחר ההורדה"],"wait to process a folder if sync files are present.":[null,"דחה עיבוד תיקייה במידה וקיימים בה קבצי סנכרון."],"Sync File Extensions":[null,"סיומות קבצי סנכרון"],"comma seperated list of extensions or filename globs SickRage ignores when Post Processing":[null,"רשימה המופרדת בפסיקים וכוללת סיומות או שמות קבצים עם תווים חופשיים, מהם SickRage יתעלם בתהליך עיבוד ההורדות"],"Rename Episodes":[null,"שנה שמות פרקים"],"rename episode using the Episode Naming settings?":[null,"האם לשנות את שמות הפרקים בהתאם לערכי הגדרות שמות פרקים?"],"Create missing show directories":[null,"צור ספריות חסרות לסדרות"],"create missing show directories when they get deleted":[null,"צור ספריות חסרות לסדרות כאשר הן נמחקות"],"Add shows without directory":[null,"הוסף סדרות ללא ספרייה"],"add shows without creating a directory (not recommended)":[null,""],"Move associated files":[null,""],"move associated (srt/srr/sfv/etc) files while post processing?":[null,""],"Rename .nfo file":[null,""],"rename the original .nfo file to .nfo-orig to avoid conflicts?":[null,""],"Associated file extensions":[null,""],"comma separated list of associated file extensions SickRage should keep while post processing.":[null,""],"leaving it empty means no associated files will be post processed":[null,""],"Delete non associated files":[null,""],"delete non associated files while post processing?":[null,""],"Change File Date":[null,""],"set last modified filedate to the date that the episode aired?":[null,""],"some systems may ignore this feature.":[null,""],"Timezone for File Date":[null,""],"local":[null,""],"network":[null,""],"what timezone should be used to change File Date?":[null,""],"Unpack":[null,""],"What to do with archived releases found in your <i>TV Download Dir</i>?":[null,""],"Ignore (do not process contents)":[null,""],"Unpack (process contents)":[null,""],"Treat as video (process archive as-is)":[null,""],"'Unpack' only works with RAR archives":[null,""],"Windows":[null,""],"WinRar is required on windows":[null,""],"Unpack Directory":[null,""],"Choose a path to unpack files, leave blank to unpack in download dir":[null,""],"Unrar Location":[null,""],"add the path to unrar if it is not in the system path":[null,""],"Alternate Unrar Tool":[null,""],"add the path to an alternate unrar tool if it is not in the system path":[null,""],"Delete RAR contents":[null,""],"delete content of RAR files, even if Process Method not set to move?":[null,""],"only working with RAR archive":[null,""],"Don't delete empty folders":[null,""],"leave empty folders when Post Processing?":[null,""],"can be overridden using manual Post Processing":[null,""],"Follow symbolic-links":[null,""],"follow down symbolic links in download directory?":[null,""],"<b>EXPERTS ONLY.</b><br>Enable only if you know what <b>circular symbolic links</b> are,<br>and can <b>verify that you have none</b>.":[null,""],"Use icacls":[null,""],"Windows only":[null,""],"sets video permissions after using the move method in post processing":[null,""],"Extra Scripts":[null,""],"see":[null,""],"for script arguments description and usage.":[null,""],"How SickRage will name and sort your episodes.":[null,""],"Name Pattern":[null,""],"Toggle Naming Legend":[null,""],"don't forget to add quality pattern. Otherwise after post-processing the episode will have UNKNOWN quality":[null,"לא לשכוח להוסיף תבנית איכות. אחרת בסיום פעולת עיבוד ההורדה תשוייך לפרק איכות \"לא-ידועה\""],"Meaning":[null,""],"Pattern":[null,""],"Result":[null,""],"Use lower case if you want lower case names (eg. %sn, %e.n, %q_n etc)":[null,""],"Show Name":[null,"שם הסדרה"],"Show.Name":[null,""],"Show_Name":[null,""],"Season Number":[null,""],"XEM Season Number":[null,""],"Episode Number":[null,""],"XEM Episode Number":[null,""],"Episode Name":[null,""],"Episode.Name":[null,""],"Episode_Name":[null,""],"Air Date":[null,""],"Post-Processing Date":[null,"תאריך ביצוע עיבוד לאחר הורדה"],"Quality":[null,"איכות"],"Scene Quality":[null,""],"Release Name":[null,""],"SickRage' is used in place of RLSGROUP if it could not be properly detected":[null,""],"Release Group":[null,""],"If episode is proper/repack add 'proper' to name.":[null,""],"Release Type":[null,""],"Multi-Episode Style":[null,""],"Single-EP Sample":[null,""],"Multi-EP sample":[null,""],"Strip Show Year":[null,""],"remove the TV show's year when renaming the file?":[null,""],"only applies to shows that have year inside parentheses":[null,""],"Custom Air-By-Date":[null,""],"name air-by-date shows differently than regular shows?":[null,""],"Toggle ABD Naming Legend":[null,""],"Regular Air Date":[null,""],"Year":[null,""],"Month":[null,""],"Day":[null,""],"Multi-EP style is ignored":[null,""],"Custom Sports":[null,""],"name sports shows differently than regular shows?":[null,""],"Toggle Sports Naming Legend":[null,""],"Sports Air Date":[null,""],"Custom Anime":[null,""],"name anime shows differently than regular shows?":[null,""],"Toggle Anime Naming Legend":[null,""],">XEM Season Number":[null,""],"Single-EP Anime Sample":[null,""],"Multi-EP Anime sample":[null,""],"Add Absolute Number":[null,""],"add the absolute number to the season/episode format?":[null,""],"only applies to anime. (eg. S15E45 - 310 vs S15E45)":[null,""],"Only Absolute Number":[null,""],"replace season/episode format with absolute number":[null,""],"only applies to anime.":[null,""],"No Absolute Number":[null,""],"don't include the absolute number":[null,""],"The data associated to the data. These are files associated to a TV show in the form of images and text that, when supported, will enhance the viewing experience.":[null,""],"Metadata Type":[null,""],"toggle metadata options that you wish to be created":[null,""],"multiple targets may be used":[null,""],"Select Metadata":[null,""],"Provider Priorities":[null,""],"Provider Options":[null,""],"Configure Custom Newznab Providers":[null,""],"Configure Custom Torrent Providers":[null,""],"Check off and drag the providers into the order you want them to be used.":[null,""],"At least one provider is required but two are recommended.":[null,""],"Torrent providers can be toggled in ":[null,""],"Provider does not support backlog searches at this time.":[null,""],"Provider is <b>NOT WORKING</b>.":[null,""],"Configure individual provider settings here.":[null,""],"Check with provider's website on how to obtain an API key if needed.":[null,""],"Configure provider":[null,""],"no providers available to configure.":[null,""],"URL":[null,""],"Enable daily searches":[null,"הפעל חיפושים יומיים"],"enable provider to perform daily searches.":[null,"אפשר לספק לבצע חיפושים יומיים."],"Enable backlog searches":[null,""],"enable provider to perform backlog searches.":[null,""],"Season search mode":[null,""],"when searching for complete seasons you can choose to have it look for season packs only, or choose to have it build a complete season from just single episodes.":[null,""],"season packs only.":[null,""],"episodes only.":[null,""],"Enable fallback":[null,""],"when searching for a complete season depending on search mode you may return no results, this helps by restarting the search using the opposite search mode.":[null,""],"Custom URL":[null,""],"the URL should include the protocol (and port if applicable). Examples: http://192.168.1.4/ or http://localhost:3000/":[null,""],"Api key":[null,""],"Digest":[null,""],"Hash":[null,""],"Passkey":[null,""],"Cookies":[null,""],"example: uid=1234;pass=567845439634987<br>note: uid and pass are not your username/password.<br>use DevTools or Firebug to get these values after logging in on your browser.":[null,""],"Pin":[null,""],"Seed ratio":[null,""],"stop transfer when ratio is reached<br>(-1 SickRage default to seed forever, or leave blank for downloader default)":[null,""],"Minimum seeders":[null,""],"Minimum leechers":[null,""],"Confirmed download":[null,""],"only download torrents from trusted or verified uploaders ?":[null,""],"Ranked torrents":[null,""],"only download ranked torrents (trusted releases)":[null,""],"English torrents":[null,""],"only download english torrents, or torrents containing english subtitles":[null,""],"For Spanish torrents":[null,""],"ONLY search on this provider if show info is defined as \"Spanish\" (avoid provider's use for VOS shows)":[null,""],"Sorting results by":[null,""],"Freeleech":[null,""],"only download <b>\"FreeLeech\"</b> torrents.":[null,""],"Category":[null,""],"select torrent with Italian subtitle":[null,""],"Configure Custom<br>Newznab Providers":[null,""],"Add and setup or remove custom Newznab providers.":[null,""],"Select provider":[null,""],"-- add new provider --":[null,""],"Provider name":[null,""],"Site URL":[null,""],"Newznab search categories":[null,""],"select your Newznab categories on the left, and click the \"update categories\" button to use them for searching.) <b>don't forget to to save the form!":[null,""],"Update Categories":[null,""],"Add":[null,""],"Delete":[null,"הסר"],"Add and setup or remove custom RSS providers.":[null,""],"RSS URL":[null,""],"Search element":[null,""],"eg: title":[null,""],"Episode Search":[null,""],"NZB Search":[null,""],"Torrent Search":[null,""],"How to manage searching with":[null,""],"Randomize Providers":[null,""],"randomize the provider search order instead of going in order of placement":[null,""],"Download propers":[null,""],"replace original download with \"Proper\" or \"Repack\" if nuked":[null,""],"Check propers every":[null,""],"24 hours":[null,""],"4 hours":[null,""],"90 mins":[null,""],"45 mins":[null,""],"15 mins":[null,""],"Backlog search day(s)":[null,""],"number of day(s) that the \"Forced Backlog Search\" will cover (e.g. 7 Days)":[null,""],"Backlog search frequency":[null,"תדירות חיפוש רטרואקטיבי"],"time in minutes between searches (min.":[null,""],"Daily search frequency":[null,"תדירות חיפוש יומי"],"Usenet retention":[null,""],"age limit in days for usenet articles to be used (e.g. 500)":[null,""],"Ignore words":[null,""],"results with one or more word from this list will be ignored<br>separate words with a comma, e.g. \"word1,word2,word3\"":[null,""],"Require words":[null,""],"results with no word from this list will be ignored<br>separate words with a comma, e.g. \"word1,word2,word3\"":[null,""],"Trackers list":[null,""],"trackers that will be added to magnets without trackers<br>separate trackers with a comma, e.g. \"tracker1,tracker2,tracker3\"":[null,""],"Ignore language names in subbed results":[null,""],"ignore subbed releases based on language names <br>\n Example: \"dk\" will ignore words: dksub, dksubs, dksubbed, dksubed <br>\n separate languages with a comma, e.g. \"lang1,lang2,lang3":[null,""],"Allow high priority":[null,""],"set downloads of recently aired episodes to high priority":[null,""],"Use Failed Downloads":[null,""],"use Failed Download Handling?":[null,""],"will only work with snatched/downloaded episodes after enabling this":[null,""],"Delete Failed":[null,""],"delete files left over from a failed download?":[null,""],"this only works if Use Failed Downloads is enabled.":[null,""],"How to handle NZB search results.":[null,""],"Search NZBs":[null,""],"enable NZB search providers":[null,""],"Send .nzb files to":[null,""],"SABnzbd server URL":[null,""],"URL to your SABnzbd server (e.g. http://localhost:8080/)":[null,""],"SABnzbd username":[null,""],"(blank for none)":[null,""],"SABnzbd password":[null,""],"SABnzbd API key":[null,""],"locate at... SABnzbd Config -> General -> API Key":[null,""],"Use SABnzbd category":[null,""],"add downloads to this category (e.g. TV)":[null,""],"Use SABnzbd category (backlog episodes)":[null,""],"add downloads of old episodes to this category (e.g. TV)":[null,""],"Use SABnzbd category for anime":[null,""],"add anime downloads to this category (e.g. anime)":[null,""],"Use SABnzbd category for anime (backlog episodes)":[null,""],"add anime downloads of old episodes to this category (e.g. anime)":[null,""],"Use forced priority":[null,""],"enable to change priority from HIGH to FORCED":[null,""],"Black hole folder location":[null,""],"<b>.nzb</b> files are stored at this location for external software to find and use":[null,""],"Connect using HTTPS":[null,""],"enable Secure control in NZBGet and set the correct Secure Port here":[null,""],"NZBget host:port":[null,""],"(e.g. localhost:6789)":[null,""],"NZBget RPC host name and port number (not NZBgetweb!)":[null,""],"NZBget username":[null,""],"locate in nzbget.conf (default:nzbget)":[null,""],"NZBget password":[null,""],"locate in nzbget.conf (default:tegbzn6789)":[null,""],"Use NZBget category":[null,""],"send downloads marked this category (e.g. TV)":[null,""],"Use NZBget category (backlog episodes)":[null,""],"send downloads of old episodes marked this category (e.g. TV)":[null,""],"Use NZBget category for anime":[null,""],"send anime downloads marked this category (e.g. anime)":[null,""],"Use NZBget category for anime (backlog episodes)":[null,""],"send anime downloads of old episodes marked this category (e.g. anime)":[null,""],"NZBget priority":[null,""],"Very low":[null,""],"Low":[null,""],"Very high":[null,""],"Force":[null,""],"priority for daily snatches (no backlog)":[null,""],"Torrent host:port":[null,""],"URL to your Synology DSM (e.g. http://localhost:5000/)":[null,""],"Client username":[null,""],"Client password":[null,""],"Downloaded files location":[null,""],"where Synology Download Station will save downloaded files (blank for client default)":[null,""],"the destination has to be a shared folder for Synology DS":[null,""],"Click below to test":[null,""],"How to handle Torrent search results.":[null,""],"Search torrents":[null,""],"enable torrent search providers":[null,""],"Send .torrent files to":[null,""],"<b>.torrent</b> files are stored at this location for external software to find and use":[null,""],"URL to your torrent client (e.g. http://localhost:8000/)":[null,""],"Torrent RPC URL":[null,""],"the path without leading and trailing slashes (e.g. transmission)":[null,""],"Http Authentication":[null,""],"Verify certificate":[null,""],"disable if you get \"Deluge: Authentication Error\" in your log":[null,""],"verify SSL certificates for HTTPS requests":[null,""],"Add label to torrent":[null,""],"(blank spaces are not allowed)":[null,""],"label plugin must be enabled in Deluge clients":[null,""],"for QBitTorrent 3.3.1 and up":[null,""],"Add label to torrent for anime":[null,""],"for QBitTorrent 3.3.1 and up ":[null,""],"where <span id=\"torrent_client\">the torrent client</span> will save downloaded files (blank for client default)":[null,""],"the destination has to be a shared folder for Synology DS</span>":[null,""],"Minimum seeding time":[null,""],"time in hours":[null,""],"(default:'0' passes blank to client and '-1' passes nothing)":[null,""],"Start torrent paused":[null,""],"add .torrent to client but do <b style=\"font-weight:900\">not</b> start downloading":[null,""],"Allow high bandwidth":[null,""],"use high bandwidth allocation if priority is high":[null,""],"Test Connection":[null,""],"Windows Shares":[null,""],"Defines your existing windows shares so that we can add them to the browse dialog":[null,""],"Share #{number}":[null,""],"Share label":[null,""],"Hostname or IP":[null,""],"Share path":[null,""],"Subtitles Search":[null,""],"Subtitles Plugin":[null,""],"Plugin Settings":[null,""],"Settings that dictate how SickRage handles subtitles search results.":[null,""],"Search Subtitles":[null,""],"Subtitle Languages":[null,""],"Subtitle Directory":[null,""],"the directory where SickRage should store your <i>Subtitles</i> files.":[null,""],"leave empty if you want store subtitle in episode path.":[null,""],"Subtitle Find Frequency":[null,""],"time in hours between scans (default: 1)":[null,""],"Include Specials":[null,""],"include the show's specials when searching for subtitles?":[null,""],"Perfect matches":[null,""],"only download subtitles that match: release group, video codec, audio codec and resolution":[null,""],"if disabled you may get out of sync subtitles":[null,""],"Subtitles History":[null,""],"log downloaded Subtitle on History page?":[null,""],"Subtitles Multi-Language":[null,""],"append language codes to subtitle filenames?":[null,""],"this option is required if you use multiple subtitle languages":[null,""],"Delete unwanted subtitles":[null,""],"enable to delete unwanted subtitle languages bundled with release":[null,""],"Embedded Subtitles":[null,""],"ignore subtitles embedded inside video file?":[null,""],"this will ignore <u>all</u> embedded subtitles for every video file!":[null,""],"Hearing Impaired Subtitles":[null,""],"download hearing impaired style subtitles?":[null,""],"See":[null,""],"for a script arguments description.":[null,""],"Additional scripts separated by <b>|</b>.":[null,""],"Scripts are called after each episode has searched and downloaded subtitles.":[null,""],"For any scripted languages, include the interpreter executable before the script. See the following example":[null,""],"For Windows:":[null,""],"For Linux / OS X:":[null,""],"Subtitle Providers":[null,""],"Check off and drag the plugins into the order you want them to be used.":[null,""],"At least one plugin is required.":[null,""]," Web-scraping plugin":[null,""],"Provider Settings":[null,""],"Set user and password for each provider":[null,""],"User Name":[null,""],"Change Show":[null,"עבור לסדרה"],"Prev Show":[null,"סדרה קודמת"],"Next Show":[null,"סדרה הבאה"],"Jump to Season":[null,""],"Specials":[null,""],"Poster for":[null,""],"Stars":[null,""],"minutes":[null,""],"View other popular {genre} shows on trakt.tv.":[null,"צפה בסדרות פופלריות אחרות מסוגת {genre} באתר trakt.tv."],"View other popular {imdbgenre} shows on IMDB.":[null,"צפה בסדרות פופלריות אחרות מסוגת {imdbgenre} באתר IMDB."],"Allowed":[null,"מורשה"],"Preferred":[null,""],"Originally Airs":[null,""],"Show Status":[null,"מצב הסדרה"],"Default EP Status":[null,""],"Location":[null,""],"Missing":[null,""],"Scene Name":[null,""],"Required Words":[null,""],"Ignored Words":[null,""],"Size":[null,"גודל"],"Info Language":[null,""],"Subtitles SR Metadata":[null,""],"Season Folders":[null,""],"Paused":[null,""],"Air-by-Date":[null,""],"Sports":[null,""],"DVD Order":[null,""],"Scene Numbering":[null,""],"Select Filtered Episodes":[null,""],"Clear All":[null,""],"Change selected episodes to":[null,""],"Select Columns":[null,""],"Hide Episodes":[null,""],"Show Episodes":[null,"הצג פרקים"],"NFO":[null,""],"TBN":[null,""],"Episode":[null,"פרק"],"Absolute":[null,""],"Scene":[null,""],"Scene Absolute":[null,""],"File Name":[null,""],"Airdate":[null,"תאריך שידור"],"Download":[null,""],"Change the value here if scene numbering differs from the indexer episode numbering":[null,""],"Change the value here if scene absolute numbering differs from the indexer absolute numbering":[null,""],"Manual Search":[null,""],"Do you want to mark this episode as failed?":[null,""],"The episode release name will be added to the failed history, preventing it to be downloaded again.":[null,""],"Do you want to include the current episode quality in the search?":[null,""],"Choosing No will ignore any releases with the same episode quality as the one currently downloaded/snatched.":[null,""],"Download subtitle":[null,""],"Do you want to re-download the subtitle for this language?":[null,""],"It will overwrite your current subtitle":[null,""],"Format":[null,""],"Advanced":[null,""],"Main Settings":[null,""],"Show Location":[null,"מיקום הסדרה"],"Preferred Quality":[null,""],"Default Episode Status":[null,""],"this will set the status for future episodes.":[null,""],"this only applies to episode filenames and the contents of metadata files.":[null,""],"search for subtitles":[null,""],"Use SR Metdata":[null,""],"use SickRage metadata when searching for subtitle, this will override the autodiscovered metadata":[null,""],"pause this show (SickRage will not download episodes)":[null,"השהה סדרה זו (SickRage לא יוריד פרקים)"],"Format Settings":[null,""],"Air by date":[null,""],"check if the show is released as Show.03.02.2010 rather than Show.S02E03.":[null,"סמן במידה והסדרה מופצת בתור Show.03.02.2010 ולא Show.S02E03."],"in case of an air date conflict between regular and special episodes, the later will be ignored.":[null,""],"check if the show is Anime and episodes are released as Show.265 rather than Show.S02E03":[null,"סמן במידה והסדרה היא אנימה והפרקים מופצים בתור Show.265 ולא Show.S02E03"],"check if the show is a sporting or MMA event released as Show.03.02.2010 rather than Show.S02E03":[null,"סמן במידה והסדרה היא אירוע ספורט או אומנות לחימה ומופצת בתור Show.03.02.2010 ולא Show.S02E03"],"Season folders":[null,""],"group episodes by season folder (uncheck to store in a single folder)":[null,""],"search by scene numbering (uncheck to search by indexer numbering)":[null,""],"use the DVD order instead of the air order":[null,""],"a \"Force Full Update\" is necessary, and if you have existing episodes you need to sort them manually.":[null,""],"comma-separated <i>e.g. \"word1,word2,word3</i>\"":[null,""],"search results with one or more words from this list will be ignored.":[null,""],"e.g. \"word1,word2,word3\"":[null,""],"search results with no words from this list will be ignored.":[null,""],"Scene Exception":[null,""],"this will affect episode search on NZB and torrent providers.":[null,""],"this list appends to the original show name.":[null,"רשימה זו נספחת לשם הסדרה המקורי."],"WARNING logs":[null,""],"ERROR logs":[null,""],"There are no events to display.":[null,""],"Limit":[null,""],"Layout":[null,""],"HistoryLayout":[null,""],"Compact":[null,""],"Detailed":[null,""],"Time":[null,""],"Provider":[null,""],"Missing Provider":[null,""],"missing provider":[null,""],"Directory":[null,""],"Show Name (tvshow.nfo)":[null,""],"Indexer":[null,""],"Enter the folder containing the episode":[null,""],"Process Method to be used":[null,""],"Copy":[null,""],"Move":[null,""],"Hard Link":[null,""],"Symbolic Link":[null,""],"Symbolic Link Reversed":[null,""],"Force already Post Processed Dir/Files":[null,""],"Mark Dir/Files as priority download":[null,""],"(Check it to replace the file even if it exists at higher quality)":[null,""],"Delete files and folders":[null,""],"(Check it to delete files and folders like auto processing)":[null,""],"Don't use processing queue":[null,""],"(If checked this will return the result of the process here, but may be slow!)":[null,""],"Mark download as failed":[null,""],"Process":[null,""],"Download subtitles for this show?":[null,"הורד כתוביות לסדרה זו?"],"use SickRage metadata when searching for subtitle, <br />this will override the autodiscovered metadata":[null,""],"Status for previously aired episodes":[null,""],"Status for all future episodes":[null,""],"Group episodes by season folder?":[null,""],"Is this show an Anime?":[null,"האם סדרה זו היא אנימה?"],"Is this show scene numbered?":[null,"האם סדרה זו משתמשת במספור ה\"זירה\"?"],"Save Defaults":[null,""],"Use current values as the defaults":[null,""],"<p>Select your preferred fansub groups from the <b>Available Groups</b> and add them to the <b>Whitelist</b>. Add groups to the <b>Blacklist</b> to ignore them.</p>\n <p>The <b>Whitelist</b> is checked <i>before</i> the <b>Blacklist</b>.</p>\n <p>Groups are shown as <b>Name</b> | <b>Rating</b> | <b>Number of subbed episodes</b>.</p>\n <p>You may also add any fansub group not listed to either list manually.</p>\n <p>When doing this please note that you can only use groups listed on anidb for this anime.\n <br>If a group is not listed on anidb but subbed this anime, please correct anidb's data.</p>":[null,""],"Whitelist":[null,""],"Available Groups":[null,""],"Add to Whitelist":[null,""],"Add to Blacklist":[null,""],"Blacklist":[null,""],"Custom Group":[null,""],"Allowed Quality:":[null,""],"Preferred Quality:":[null,""],"Filter Show Name":[null,""],"Root":[null,""],"All":[null,""],"Clear Filter(s)":[null,""],"Poster":[null,""],"Small Poster":[null,""],"Banner":[null,""],"Simple":[null,""],"Next Episode":[null,""],"Progress":[null,""],"Direction":[null,""],"Ascending":[null,""],"Descending":[null,""],"Poster Size":[null,""],"Continuing":[null,""],"Ended":[null,""],"Total":[null,""],"Invalid date":[null,""],"No Network":[null,""],"Next Ep":[null,""],"Prev Ep":[null,""],"Show":[null,""],"Downloads":[null,""],"Active":[null,""],"loading":[null,""],"Loading...":[null,""],"<p><b><u>Preferred</u></b> qualities will replace those in <b><u>allowed</u></b>, even if they are lower.</p>":[null,""],"New":[null,""],"Set as Default":[null,""],"Remember me":[null,""],"Edit Selected":[null,""],"Subtitle":[null,""],"Default Ep Status":[null,""],"Update":[null,""],"Rescan":[null,""],"Rename":[null,""],"Search Subtitle":[null,""],"Force Metadata Regen":[null,""],"Snatched (Allowed)":[null,"נמצא (מורשה)"],"Jump to Show":[null,"קפוץ לסדרה"],"Force Backlog":[null,""],"Manage episodes with status":[null,""],"Manage":[null,""],"None of your episodes have status":[null,""],"Shows containing":[null,""],"episodes":[null,""],"Set checked shows/episodes to":[null,""],"Go":[null,""],"Select all":[null,""],"Clear all":[null,""],"Release":[null,""],"Backlog Search":[null,"חיפוש רטרואקטיבי"],"Not in progress":[null,""],"In Progress":[null,""],"Daily Search":[null,"חיפוש יומי"],"Find Propers Search":[null,""],"Propers search disabled":[null,""],"Subtitle Search":[null,""],"Subtitle search disabled":[null,""],"Search Queue":[null,""],"pending items":[null,""],"Daily":[null,"יומי"],"Manual":[null,""],"Changing any settings marked with (<span class=\"separator\">*</span>) will force a refresh of the selected shows.":[null,""],"Selected Shows":[null,""],"Root Directories":[null,""],"Current":[null,""],"Keep":[null,""],"Custom":[null,""],"Group episodes by season folder (set to \"No\" to store in a single folder).":[null,""],"Pause these shows (SickRage will not download episodes).":[null,""],"This will set the status for future episodes.":[null,""],"Search by scene numbering (set to \"No\" to search by indexer numbering).":[null,""],"Set if these shows are Anime and episodes are released as Show.265 rather than Show.S02E03":[null,""],"Set if these shows are sporting or MMA events released as Show.03.02.2010 rather than Show.S02E03.":[null,""],"In case of an air date conflict between regular and special episodes, the later will be ignored.":[null,""],"Set if these shows are released as Show.03.02.2010 rather than Show.S02E03.":[null,""],"Search for subtitles.":[null,""],"All of your episodes have {subsLanguage} subtitles.":[null,""],"Manage episodes without":[null,""],"Episodes without {subsLanguage} subtitles.":[null,""],"Episodes without {subtitleLanguage} (undefined) subtitles.":[null,""],"Download missed subtitles for selected episodes":[null,""],"Performing Restart":[null,""],"Waiting for SickRage to shut down":[null,""],"Waiting for SickRage to start again":[null,""],"Loading the default page":[null,""],"Error: The restart has timed out, perhaps something prevented SickRage from starting again?":[null,""],"Key":[null,""],"Missed":[null,""],"Today":[null,""],"Soon":[null,"בקרוב"],"Later":[null,""],"Subscribe":[null,""],"Date":[null,""],"View Paused":[null,""],"Hidden":[null,""],"Shown":[null,""],"Calendar":[null,""],"List":[null,""],"Ends":[null,""],"Next Ep Name":[null,""],"Run time":[null,""],"Indexers":[null,""],"No shows for this day":[null,""],"Airs":[null,""],"Plot":[null,""],"Show Update":[null,""],"Version Check":[null,""],"Proper Finder":[null,""],"Post Process":[null,""],"Subtitles Finder":[null,""],"Scheduler":[null,""],"Alive":[null,""],"Start Time":[null,""],"Cycle Time":[null,""],"Next Run":[null,""],"Last Run":[null,""],"Silent":[null,""],"True":[null,""],"N/A":[null,""],"Show id":[null,""],"Show name":[null,""],"Priority":[null,""],"Added":[null,""],"Queue type":[null,""],"LOW":[null,""],"NORMAL":[null,""],"HIGH":[null,""],"Disk Space":[null,""],"Free space":[null,""],"TV Download Directory":[null,""],"Media Root Directories":[null,""],"Preview of the proposed name changes":[null,""],"All Seasons":[null,""],"select all":[null,""],"Rename Selected":[null,""],"Cancel Rename":[null,""],"Old Location":[null,""],"New Location":[null,""],"Trakt API did not return any results, please check your config.":[null,""],"votes":[null,""],"Remove Show":[null,"הסר סדרה"],"Level":[null,""],"Filter":[null,""],"All non-absolute folder locations are relative to ":[null,""],"Manual Post-Processing":[null,"עיבוד לאחר הורדה ידני"],"Episode Status Management":[null,""],"Update PLEX":[null,""],"Update KODI":[null,""],"Update Emby":[null,""],"Missed Subtitle Management":[null,""],"Help & Info":[null,""],"Backup & Restore":[null,""],"Tools":[null,""],"Support SickRage":[null,""],"View Errors":[null,""],"View Warnings":[null,""],"View Log":[null,""],"Check For Updates":[null,""],"Restart":[null,""],"Shutdown":[null,""],"Logout":[null,""],"Server Status":[null,""],"View overview of snatched episodes":[null,""],"Episodes Downloaded":[null,""],"Memory used":[null,""],"Load time":[null,""],"Branch":[null,""],"Now":[null,""]}}}} \ No newline at end of file +{"messages":{"domain":"messages","locale_data":{"messages":{"100":[null,""],"250":[null,""],"500":[null,""],"":{"domain":"messages","plural_forms":"nplurals=4; plural=n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3;","lang":"he_IL"},"Drama":[null,"דרמה"],"Mystery":[null,"מסתורין"],"Science-Fiction":[null,"מדע בדיוני"],"Crime":[null,"פשע"],"Action":[null,"פעולה"],"Comedy":[null,"קומדיה"],"Thriller":[null,"מותחן"],"Animation":[null,"הנפשה"],"Family":[null,"משפחה"],"Fantasy":[null,"פנטזיה"],"Adventure":[null,"הרפתקה"],"Horror":[null,"אימה"],"Film-Noir":[null,"פילם-נואר"],"Sci-Fi":[null,"מד\"ב"],"Romance":[null,"רומנטיקה"],"Sport":[null,"ספורט"],"War":[null,"מלחמה"],"Biography":[null,"ביוגרפיה"],"History":[null,"היסטוריה"],"Music":[null,"מוזיקה"],"Western":[null,"מערבי"],"News":[null,"חדשות"],"Sitcom":[null,"קומדיית מצבים"],"Reality-TV":[null,"ריאליטי"],"Documentary":[null,"תיעודי"],"Game-Show":[null,"שעשועון"],"Musical":[null,"מחזמר"],"Talk-Show":[null,"תוכנית אירוח"],"Started Download":[null,"החל הורדה"],"Download Finished":[null,"הורדה הסתיימה"],"Subtitle Download Finished":[null,"הורדת כתוביות הסתיימה"],"SickRage Updated":[null,"SickRage עודכן"],"SickRage Updated To Commit#: ":[null,"SickRage עודכן ל-Commit מספר: "],"SickRage new login":[null,"כניסה חדשה ל-SickRage"],"New login from IP: {0}. http://geomaplookup.net/?ip={0}":[null,"כניסה חדשה מכתובת הרשת: {0}. http://geomaplookup.net/?ip={0}"],"Repeat":[null,"חזרה"],"Repeat (Separated)":[null,"חזרה (מופרדים)"],"Extend":[null,"הרחב"],"Extend (Limited)":[null,"הרחב (מוגבל)"],"Extend (Limited, E-prefixed)":[null,"הרחב (מוגבל, עם הקידומת E)"],"Downloaded":[null,"הורד"],"Snatched":[null,"נמצא"],"Snatched (Proper)":[null,"נמצא (תיקון)"],"Failed":[null,"נכשל"],"Snatched (Best)":[null,"נמצא (הטוב ביותר)"],"Archived":[null,"בארכיון"],"Unknown":[null,"לא ידוע"],"Unaired":[null,"לא שודר"],"Skipped":[null,"דולג"],"Wanted":[null,"מעוניין"],"Ignored":[null,"התעלם"],"Subtitled":[null,"כולל כתוביות"],"For best results please set the Download Station alias as":[null,""],"You can check this setting in the Synology DSM":[null,""],"Control Panel":[null,""],"Application Portal":[null,""],"Make sure you allow DSM to be embedded with iFrames too in":[null,""],"DSM Settings":[null,""],"Security":[null,""],"<No Filter>":[null,"<ללא מסנן>"],"Daily Searcher":[null,"תוכנית חיפוש יומית"],"Backlog":[null,"רטרואקטיבי"],"Show Updater":[null,"מעדכן הסדרות"],"Check Version":[null,"בודק הגרסאות"],"Show Queue":[null,"תור סדרות"],"Search Queue (All)":[null,"תור חיפוש (הכל)"],"Search Queue (Daily Searcher)":[null,"תור חיפוש (תוכנית חיפוש יומית)"],"Search Queue (Backlog)":[null,"תור חיפוש (רטרואקטיבי)"],"Search Queue (Manual)":[null,"תור חיפוש (ידני)"],"Search Queue (Retry/Failed)":[null,"תור חיפוש (נסה שנית/נכשל)"],"Search Queue (RSS)":[null,"תור חיפוש (RSS)"],"Find Propers":[null,"חפש תיקונים"],"Postprocessor":[null,"מעבד הורדות"],"Find Subtitles":[null,"חפש כתוביות"],"Trakt Checker":[null,"בודק Trakt"],"Event":[null,"אירוע"],"Error":[null,"שגיאה"],"Tornado":[null,"טורנדו"],"Thread":[null,"תהליכון"],"Main":[null,"ראשי"],"Loading":[null,""],"New update found for SickRage, starting auto-updater":[null,"עדכון חדש נמצא עבור SickRage, מפעיל עדכון אוטומטי"],"Update was successful":[null,"העדכון בוצע בהצלחה"],"Update failed!":[null,"עדכון נכשל!"],"Backup":[null,"גיבוי"],"Config backup in progress...":[null,"גיבוי הגדרות בתהליך..."],"Config backup successful, updating...":[null,"גיבוי הגדרות מוצלח, מעדכן..."],"Config backup failed, aborting update":[null,"גיבוי הגדרות נכשל, מבטל עדכון"],"No update needed":[null,"לא נדרש עדכון"],"Mako Error":[null,"שגיאת Mako"],"Oops":[null,"אופס"],"Wrong API key used":[null,"בוצע שימוש במפתח API שגוי"],"Login":[null,"התחבר"],"API Key not generated":[null,"לא נוצר מפתח API"],"API Builder":[null,"בנאי API"],"Schedule":[null,"לוח שידורים"],"Test 1":[null,"בדיקה 1"],"This is test number 1":[null,"זוהי בדיקה מספר 1"],"Test 2":[null,"בדיקה 2"],"This is test number 2":[null,"זוהי בדיקה מספר 2"],"You're using the {branch} branch. Please use 'master' unless specifically asked":[null,"הנך נמצא על ענף {branch}. אנא השתמש בענף 'master', אלא אם כן התבקשת מפורשות"],"Invalid show parameters":[null,"הפרמטרים של הסדרה אינם תקינים"],"Invalid parameters":[null,"פרמטרים לא תקינים"],"Episode couldn't be retrieved":[null,"לא היתה אפשרות לאחזר את הפרק"],"Home":[null,"מסך הבית"],"Show List":[null,"רשימת סדרות"],"Error: Unsupported Request. Send jsonp request with 'callback' variable in the query string.":[null,"שגיאה: הבקשה אינה נתמכת. שלח בקשת jsonp עם משתנה 'callback' במחרוזת השאילתה."],"Success. Connected and authenticated":[null,"הצלחה. מחובר ומאומת"],"Authentication failed. SABnzbd expects":[null,"אימות נכשל. SABnzbd מצפה ל-"],"as authentication method":[null,"בתור שיטת אימות"],"Unable to connect to host":[null,"אינו מסוגל להתחבר לשרת המארח"],"SMS sent successfully":[null,"מסרון נשלח בהצלחה"],"Problem sending SMS: {message}":[null,"בעיה בשליחת מסרון: {message}"],"Telegram notification succeeded. Check your Telegram clients to make sure it worked":[null,"שליחת ההודעה ל-Telegram הצליחה. בדוק את לקוחות ה-Telegram שלך על מנת לוודא שהיא הגיעה"],"Error sending Telegram notification: {message}":[null,"שליחת ההודעה ל-Telegram נתקלה בשגיאה: {message}"],"join notification succeeded. Check your join clients to make sure it worked":[null,"שליחת ההודעה ל-Join הצליחה. בדוק את לקוחות ה-Join שלך על מנת לוודא שהיא הגיעה"],"Error sending join notification: {message}":[null,"שליחת ההודעה ל-Join נתקלה בשגיאה: {message}"]," with password":[null," עם הסיסמה"],"Registered and Tested growl successfully {growl_host}":[null,"רישום Growl ובדיקתו בוצעו בהצלחה {growl_host}"],"Registration and Testing of growl failed {growl_host}":[null,"רישום Growl ובדיקתו נכשלו {growl_host}"],"Test prowl notice sent successfully":[null,"הודעת בדיקה נשלחה ל-Prowl בהצלחה"],"Test prowl notice failed":[null,"שליחת הודעת בדיקה ל-Prowl נכשלה"],"Boxcar2 notification succeeded. Check your Boxcar2 clients to make sure it worked":[null,"שליחת ההודעה ל-Boxcar2 הצליחה. בדוק את לקוחות ה-Boxcar2 שלך על מנת לוודא שהיא הגיעה"],"Error sending Boxcar2 notification":[null,"שליחת ההודעה ל-Boxcar2 נתקלה בשגיאה"],"Pushover notification succeeded. Check your Pushover clients to make sure it worked":[null,"שליחת ההודעה ל-Pushover הצליחה. בדוק את לקוחות ה-Pushover שלך על מנת לוודא שהיא הגיעה"],"Error sending Pushover notification":[null,"שליחת ההודעה ל-Pushover נתקלה בשגיאה"],"Key verification successful":[null,"מפתח אומת בהצלחה"],"Unable to verify key":[null,"אינו מסוגל לאמת מפתח"],"Tweet successful, check your twitter to make sure it worked":[null,"ציוץ נשלח בהצלחה. בדוק את הטוויטר שלך על מנת לוודא כי עבד"],"Error sending tweet":[null,"שגיאה בשליחת ציוץ"],"Please enter a valid account sid":[null,""],"Please enter a valid auth token":[null,""],"Please enter a valid phone sid":[null,""],"Please format the phone number as \"+1-###-###-####\"":[null,""],"Authorization successful and number ownership verified":[null,""],"Error sending sms":[null,"שגיאה בשליחת מסרון"],"Slack message successful":[null,""],"Slack message failed":[null,""],"Discord message successful":[null,""],"Discord message failed":[null,""],"Test KODI notice sent successfully to {kodi_host}":[null,""],"Test KODI notice failed to {kodi_host}":[null,""],"Successful test notice sent to Plex Home Theater ... {plex_clients}":[null,""],"Test failed for Plex Home Theater ... {plex_clients}":[null,""],"Tested Plex Home Theater(s)":[null,""],"Successful test of Plex Media Server(s) ... {plex_servers}":[null,""],"Test failed, No Plex Media Server host specified":[null,""],"Test failed for Plex Media Server(s) ... {plex_servers}":[null,""],"Tested Plex Media Server host(s)":[null,""],"Tried sending desktop notification via libnotify":[null,""],"Test notice sent successfully to {emby_host}":[null,""],"Test notice failed to {emby_host}":[null,""],"Successfully started the scan update":[null,""],"Test failed to start the scan update":[null,""],"Test notice sent successfully to {nmj2_host}":[null,""],"Test notice failed to {nmj2_host}":[null,""],"Trakt Authorized":[null,"מאומת עם Trakt"],"Trakt Not Authorized!":[null,"לא מאומת עם Trakt!"],"Test email sent successfully! Check inbox.":[null,"דוא\"ל בדיקה נשלח בהצלחה! בדוק את תיבת הדואר הנכנס."],"ERROR: {last_error}":[null,"שגיאה: {last_error}"],"Test NMA notice sent successfully":[null,""],"Test NMA notice failed":[null,""],"Pushalot notification succeeded. Check your Pushalot clients to make sure it worked":[null,""],"Error sending Pushalot notification":[null,""],"Pushbullet notification succeeded. Check your device to make sure it worked":[null,""],"Error sending Pushbullet notification":[null,""],"Status":[null,"מצב"],"Restarting SickRage":[null,"מאתחל את SickRage"],"Update Failed":[null,"עדכון נכשל"],"Update wasn't successful, not restarting. Check your log for more information.":[null,""],"Checking out branch":[null,""],"Already on branch":[null,""],"Invalid show ID: {show}":[null,"מזהה סדרה אינו תקין: {show}"],"Show not in show list":[null,"הסדרה לא נמצאת ברשימת הסדרות"],"Edit":[null,"עריכה"],"This show is in the process of being downloaded - the info below is incomplete.":[null,"סדרה זו בתהליכי הורדה - המידע שלהלן אינו שלם."],"The information on this page is in the process of being updated.":[null,"המידע בדף זה נמצא בתהליכי עדכון."],"The episodes below are currently being refreshed from disk":[null,"הפרקים שלהלן נמצאים כרגע בתהליכי רענון מהדיסק"],"Currently downloading subtitles for this show":[null,"כרגע מוריד כתוביות עבור סדרה זו"],"This show is queued to be refreshed.":[null,"סדרה זו נמצאת בתור לרענון."],"This show is queued and awaiting an update.":[null,"סדרה זו נמצאת בתור וממתינה לעדכון."],"This show is queued and awaiting subtitles download.":[null,"סדרה זו נמצאת בתור וממתינה להורדת כתוביות."],"Resume":[null,"הפעל"],"Pause":[null,"השהה"],"Remove":[null,"הסר"],"Re-scan files":[null,"סרוק קבצים מחדש"],"Force Full Update":[null,"אלץ עדכון מלא"],"Update show in KODI":[null,"עדכון סדרה ב-KODI"],"Update show in Emby":[null,"עדכון סדרה ב-Emby"],"Hide specials":[null,"הסתר ספיישלים"],"Show specials":[null,"הצג ספיישלים"],"Preview Rename":[null,""],"Download Subtitles":[null,"הורד כתוביות"],"No scene exceptions":[null,""],"Invalid show ID":[null,"מזהה סדרה אינו תקין"],"Unable to find the specified show":[null,"אינו מסוגל למצוא את הסדרה שצוינה"],"Unable to retreive Fansub Groups from AniDB.":[null,""],"Edit Show":[null,"עריכת סדרה"],"Unable to refresh this show: {error}":[null,"אינו מסוגל לרענן את הסדרה: {error}"],"New location <tt>{location}</tt> does not exist":[null,""],"Unable to update show: {error}":[null,"אינו מסוגל לעדכן את הסדרה: {error}"],"Unable to force an update on scene exceptions of the show.":[null,"אינו מסוגל לאלץ עדכון שמות ה\"זירה\" של הסדרה."],"Unable to force an update on scene numbering of the show.":[null,"אינו מסוגל לאלץ עדכון מספור ה\"זירה\" של הסדרה."],"{num_errors:d} error{plural} while saving changes:":[null,""],"{show_name} has been {paused_resumed}":[null,"הסדרה {show_name} {paused_resumed}"],"resumed":[null,"הופעלה"],"paused":[null,"הופסקה"],"{show_name} has been {deleted_trashed} {was_deleted}":[null,"הסדרה {show_name} {deleted_trashed} {was_deleted}"],"deleted":[null,"הוסרה"],"trashed":[null,"נמחקה"],"(media untouched)":[null,"(ללא שינוי בקבצים)"],"(with all related media)":[null,"(עם כל הקבצים הקשורים)"],"Unable to refresh this show.":[null,"אינו מסוגל לרענן סדרה זו."],"Unable to update this show.":[null,"אינו מסוגל לעדכן סדרה זו."],"Library update command sent to KODI host(s)): {kodi_hosts}":[null,""],"Unable to contact one or more KODI host(s)): {kodi_hosts}":[null,""],"Library update command sent to Plex Media Server host: {plex_server}":[null,""],"Unable to contact Plex Media Server host: {plex_server}":[null,""],"Library update command sent to Emby host: {emby_host}":[null,""],"Unable to contact Emby host: {emby_host}":[null,""],"You must specify a show and at least one episode":[null,""],"Invalid status":[null,""],"Backlog was automatically started for the following seasons of <b>{show_name}</b>":[null,""],"Season":[null,"עונה"],"Backlog started":[null,""],"Retrying Search was automatically started for the following season of <b>{show_name}</b>":[null,""],"Retry Search started":[null,""],"You must specify a show":[null,""],"Can't rename episodes when the show dir is missing.":[null,"לא ניתן לשנות שמות פרקים כאשר ספריית הסדרה חסרה."],"New subtitles downloaded: {new_subtitle_languages}":[null,""],"No subtitles downloaded":[null,""],"IRC":[null,""],"Could not load news from the repo. [Click here for news.md])({news_url})":[null,""],"The was a problem connecting to github, please refresh and try again":[null,""],"Could not load changes from the repo. [Click here for CHANGES.md]({changes_url})":[null,""],"Changelog":[null,""],"Post Processing":[null,""],"Add Shows":[null,""],"No folders selected.":[null,""],"New Show":[null,""],"Trending Shows":[null,""],"Popular Shows":[null,""],"Most Anticipated Shows":[null,""],"Most Collected Shows":[null,""],"Most Watched Shows":[null,""],"Most Played Shows":[null,""],"Recommended Shows":[null,""],"New Shows":[null,"סדרות חדשות"],"Season Premieres":[null,""],"Existing Show":[null,""],"No root directories setup, please go back and add one.":[null,""],"Show added":[null,""],"Adding the specified show {show_name}":[null,""],"Missing params, no Indexer ID or folder: {show_to_add} and {root_dir}/{show_path}":[null,""],"Unknown error. Unable to add show due to problem with show selection.":[null,""],"Unable to add show":[null,""],"Folder {show_dir} exists already":[null,""],"Unable to create the folder {show_dir}, can't add the show":[null,""],"Adding the specified show into {show_dir}":[null,""],"Shows Added":[null,""],"Automatically added {num_shows} from their existing metadata files":[null,""],"Mass Update":[null,""],"Episode Overview":[null,""],"Missing Subtitles":[null,""],"Backlog Overview":[null,""],"Mass Edit":[null,""],"Unable to update show: {excption_format}":[null,""],"Unable to refresh show {show_name}: {excption_format}":[null,""],"Errors encountered":[null,""],"Updates":[null,""],"Refreshes":[null,""],"Renames":[null,""],"Subtitles":[null,"כתוביות"],"The following actions were queued":[null,""],"Failed Downloads":[null,""],"Manage Searches":[null,"ניהול חיפושים"],"Backlog search started":[null,""],"Daily search started":[null,"חיפוש יומי החל"],"Find propers search started":[null,""],"Subtitle search started":[null,""],"Remove Selected":[null,""],"Clear History":[null,""],"Trim History":[null,""],"Selected history entries removed":[null,""],"History cleared":[null,""],"Removed history entries older than 30 days":[null,""],"General":[null,""],"Backup/Restore":[null,""],"Search Settings":[null,""],"Search Providers":[null,""],"Subtitles Settings":[null,""],"Notifications":[null,""],"Anime":[null,"אנימה"],"SickRage Configuration":[null,""],"Config - Shares":[null,""],"Windows Shares Configuration":[null,""],"Saved Shares":[null,""],"Your Windows share settings have been saved":[null,""],"Config - General":[null,""],"General Configuration":[null,""],"Saved Defaults":[null,""],"Your \"add show\" defaults have been set to your current selections.":[null,""],"Unable to create directory {directory}, log directory not changed.":[null,""],"Unable to create directory {directory}, https cert directory not changed.":[null,""],"Unable to create directory {directory}, https key directory not changed.":[null,""],"Error(s) Saving Configuration":[null,""],"Configuration Saved":[null,""],"Config - Backup/Restore":[null,""],"Config - Episode Search":[null,""],"Config - Post Processing":[null,""],"Unpacking Not Supported, disabling unpack setting":[null,""],"You tried saving an invalid normal naming config, not saving your naming settings":[null,""],"You tried saving an invalid anime naming config, not saving your naming settings":[null,""],"Config - Providers":[null,""],"No Provider Name specified":[null,""],"No Provider Url specified":[null,""],"No Provider Api key specified":[null,""],"Config - Notifications":[null,""],"Config - Subtitles":[null,""],"Config - Anime":[null,""],"Clear Errors":[null,""],"Clear Warnings":[null,""],"Submit Errors":[null,""],"Logs & Errors":[null,""],"Log File":[null,""],"Logs":[null,""],"This is a test notification from SickRage":[null,""],"Choose Directory":[null,""],"Select log file folder location":[null,""],"Select CSS file":[null,""],"Select backup folder to save to":[null,""],"Select backup files to restore":[null,""],"Please fill out the necessary fields above.":[null,""],"<b>Step 1:</b> Confirm Authorization":[null,""],"Check blacklist name; the value needs to be a trakt slug":[null,""],"You must provide a recipient email address!":[null,""],"You didn't supply a Pushbullet api key":[null,""],"Don't forget to save your new pushbullet settings.":[null,""],"Select TV Download Directory":[null,""],"Select Unpack Directory":[null,""],"This pattern is invalid.":[null,""],"This pattern would be invalid without the folders, using it will force \"Season Folders\" on for all shows.":[null,""],"This pattern is valid.":[null,""],"Select .nzb black hole/watch location":[null,""],"Select .torrent black hole/watch location":[null,""],"Select .torrent download location":[null,""],"Minimum seeding time is":[null,""],"URL to your uTorrent client (e.g. http://localhost:8000)":[null,""],"Stop seeding when inactive for":[null,""],"URL to your Transmission client (e.g. http://localhost:9091)":[null,""],"URL to your Deluge client (e.g. http://localhost:8112)":[null,""],"IP or Hostname of your Deluge Daemon (e.g. scgi://localhost:58846)":[null,""],"URL to your Synology DS client (e.g. http://localhost:5000)":[null,""],"URL to your rTorrent client (e.g. scgi://localhost:5000 <br> or https://localhost/rutorrent/plugins/httprpc/action.php)":[null,""],"URL to your qBittorrent client (e.g. http://localhost:8080)":[null,""],"URL to your MLDonkey (e.g. http://localhost:4080)":[null,""],"URL to your putio client (e.g. http://localhost:8080)":[null,""],"<a herf=\"https://app.put.io/oauth/apps/new\" target=\"_blank\"> Create a new OAuth app for put.io</a>":[null,""],"Put.io Parent Folder":[null,""],"Put.io OAuth Token":[null,""],"Show Episodes":[null,"הצג פרקים"],"Hide Episodes":[null,""],"Select Show Location":[null,""],"Select Unprocessed Episode Folder":[null,""],"DELETED":[null,""],"Resume updating the log on this page.":[null,""],"Pause updating the log on this page.":[null,""],"searching {searchingFor}...":[null,""],"search timed out, try again or try another indexer":[null,""],"loading folders...":[null,""],"Loading...":[null,""],"You have reached this page by accident, please check the url.":[null,""],"A mako error has occured.<br>\n If this happened during an update a simple page refresh may be the solution.<br>\n Mako errors that happen during updates may be a one time error if there were significant ui changes.":[null,""],"Show/Hide Error":[null,""],"Add New Show":[null,"הוסף סדרה חדשה"],"For shows that you haven't downloaded yet, this option finds a show on theTVDB.com, creates a directory for it's episodes, and adds it to SickRage.":[null,"עבור סדרות שטרם הורדת, אפשרות זאת מוצאת סדרה באתר theTVDB.com, יוצרת ספרייה לפרקים שלה ומוסיפה אותה ל-SickRage."],"Add From Trakt Lists":[null,""],"For shows that you haven't downloaded yet, this option lets you choose from a show from one of the Trakt lists to add to SickRage.":[null,"עבור סדרות שטרם הורדת, אפשרות זאת נותנת לך לבחור באחת הסדרות ממבחר הרשימות של Trakt ולהוסיף אותה ל-SickRage."],"Add From IMDB's Popular Shows":[null,"הוסף מהסדרות הפופולריות של IMDB"],"View IMDB's list of the most popular shows. This feature uses IMDB's MOVIEMeter algorithm to identify popular TV Series.":[null,"צפה ברשימת הסדרות הכי פופולריות של IMDB. תכונה זו נעזרת באלגוריתם ה-MOVIEMeter של IMDB על מנת לזהות סדרות טלויזיה פופולריות."],"Add Existing Shows":[null,"הוסף סדרות קיימות"],"Use this option to add shows that already have a folder created on your hard drive. SickRage will scan your existing metadata/episodes and add the show accordingly.":[null,"השתמש באפשרות זו על מנת להוסיף סדרות אשר להן כבר קיימת תיקייה בכונן הקשיח שלך. SickRage יסרוק את הפרקים והמטא-נתונים הקיימים ויוסיף את התוכנית בהתאם."],"Add Existing Show":[null,"הוסף סדרה קיימת"],"Manage Directories":[null,"ניהול ספריות"],"Customize Options":[null,""],"SickRage can add existing shows, using the current options, by using locally stored NFO/XML metadata to eliminate user interaction. If you would rather have SickRage prompt you to customize each show, then use the checkbox below.":[null,"SickRage יכול להוסיף סדרות קיימות בעזרת האפשרויות הנוכחיות, או בעזרת מטא-נתונים מסוג NFO/XML השמורים באופן מקומי על מנת לבטל התערבות מצד המשתמש. אם אתה מעדיף ש-SickRage יבקש ממך להתאים אישית כל סדרה, השתמש בתיבת הסימון שלהלן."],"Prompt me to set settings for each show":[null,"בקש ממני לקבוע הגדרות לכל סדרה"],"Displaying folders within these directories which aren't already added to SickRage":[null,""],"Submit":[null,""],"Find a show on theTVDB":[null,"חפש סדרה ב-theTVDB"],"Show retrieved from existing metadata":[null,"סדרה אוחזרה ממטא-נתונים קיימים"],"All Indexers":[null,""],"Search":[null,""],"This will only affect the language of the retrieved metadata file contents and episode filenames.":[null,"זה ישפיע רק על השפה של המטא-נתונים אשר יאוחזרו מהקבצים ועל שמות קבצי הפרקים."],"This <b>DOES NOT</b> allow SickRage to download non-english TV episodes!":[null,""],"Pick the parent folder":[null,""],"Pre-chosen Destination Folder":[null,""],"Customize options":[null,""],"Add Show":[null,"הוסף סדרה"],"Skip Show":[null,"דלג על סדרה"],"Sort By":[null,""],"Name":[null,"שם"],"Original":[null,""],"Votes":[null,""],"Rating":[null,""],"Rating > Votes":[null,""],"Sort Order":[null,""],"Asc":[null,""],"Desc":[null,""],"Fetching of IMDB Data failed. Are you online?":[null,""],"Exception":[null,""],"Select Trakt List":[null,""],"Most Anticipated":[null,""],"Trending":[null,""],"Popular":[null,""],"Most Watched":[null,""],"Most Played":[null,""],"Most Collected":[null,""],"Recommended":[null,""],"Toggle navigation":[null,""],"Profile":[null,""],"JSONP":[null,""],"Back to SickRage":[null,""],"Parameters":[null,""],"Required":[null,""],"Description":[null,""],"Type":[null,""],"Default value":[null,""],"Allowed values":[null,""],"Playground":[null,""],"Clear":[null,""],"Yes":[null,"כן"],"No":[null,"לא"],"season":[null,""],"episode":[null,""],"Python Version":[null,""],"SSL Version":[null,""],"OS":[null,""],"Locale":[null,""],"User":[null,""],"Program Folder":[null,""],"Config File":[null,""],"Database File":[null,""],"Cache Folder":[null,""],"Log Folder":[null,""],"Arguments":[null,""],"Web Root":[null,""],"Website":[null,""],"Wiki":[null,""],"Source":[null,""],"IRC Chat":[null,""],"AnimeDB Settings":[null,""],"Look & Feel":[null,""],"AniDB is non-profit database of anime information that is freely open to the public":[null,""],"Enable":[null,"הפעל"],"should SickRage use data from AniDB?":[null,""],"AniDB Username":[null,""],"username of your AniDB account":[null,""],"AniDB Password":[null,""],"password of your AniDB account":[null,""],"AniDB MyList":[null,""],"do you want to add the PostProcessed episodes to the MyList?":[null,"האם ברצונך להוסיף את הפרקים להם בוצע עיבוד לאחר הורדה ל-MyList?"],"Look and Feel":[null,""],"How should the anime functions show and behave.":[null,""],"Split show lists":[null,""],"separate anime and normal shows in groups":[null,""],"Split in tabs":[null,""],"use tabs for when splitting show lists":[null,""],"Restore":[null,""],"Backup your main database file and config.":[null,""],"Select the folder you wish to save your backup file to":[null,""],"Restore your main database file and config.":[null,""],"Select the backup file you wish to restore":[null,""],"Misc":[null,""],"Interface":[null,""],"Advanced Settings":[null,""],"Startup options. Indexer options. Log and show file locations.":[null,""],"Some options may require a manual restart to take effect.":[null,""],"Default Indexer Language":[null,""],"for adding shows and metadata providers":[null,""],"Launch browser":[null,""],"open the SickRage home page on startup":[null,""],"Initial page":[null,""],"Shows":[null,""],"when launching SickRage interface":[null,""],"Choose hour to update shows":[null,""],"with information such as next air dates, show ended, etc. Use 15 for 3pm, 4 for 4am etc.":[null,""],"note":[null,"הערה"],"minutes are randomized each time SickRage is started":[null,""],"Send to trash for actions":[null,""],"when using show \"Remove\" and delete files":[null,""],"on scheduled deletes of the oldest log files":[null,""],"selected actions use trash (recycle bin) instead of the default permanent delete":[null,""],"Log file folder location":[null,""],"Number of Log files saved":[null,""],"number of log files saved when rotating logs (default: 5) (REQUIRES RESTART)":[null,""],"Size of Log files saved":[null,""],"maximum size in MB of the log file (default: 1MB) (REQUIRES RESTART)":[null,""],"Use initial indexer set to":[null,""],"as the default selection when adding new shows":[null,""],"Timeout show indexer at":[null,""],"seconds of inactivity when finding new shows (default:20)":[null,""],"Show root directories":[null,""],"where the files of shows are located":[null,""],"Save Changes":[null,""],"Options for software updates.":[null,""],"Check software updates":[null,""],"and display notifications when updates are available. Checks are run on startup and at the frequency set below*":[null,""],"Automatically update":[null,""],"fetch and install software updates. Updates are run on startup and in the background at the frequency set below*":[null,""],"Check the server every*":[null,""],"hours for software updates (default:1)":[null,""],"Notify on software update":[null,""],"send a message to all enabled notifiers when SickRage has been updated":[null,""],"User Interface":[null,""],"Options for visual appearance.":[null,""],"Interface Language":[null,""],"System Language":[null,""],"for appearance to take effect, save then refresh your browser":[null,""],"Display theme":[null,""],"Dark":[null,""],"Light":[null,""],"Use a background image":[null,""],"use a custom image as background for SickRage":[null,""],"Background Path":[null,""],"Path to the background image":[null,""],"Show fanart in the background":[null,""],"on the show summary page":[null,""],"Fanart transparency":[null,""],"transparency of the fanart in the background":[null,""],"Use a custom stylesheet file":[null,""],"use a custom .css file to style SickRage (for advanced users)":[null,""],"Stylesheet File Path":[null,""],"Path to the stylesheet (.css) file":[null,""],"Show all seasons":[null,""],"Sort with \"The\", \"A\", \"An\"":[null,""],"include articles (\"The\", \"A\", \"An\") when sorting show lists":[null,""],"Missed episodes range":[null,""],"set the range in days of the missed episodes in the Schedule page":[null,""],"Display fuzzy dates":[null,""],"move absolute dates into tooltips and display e.g. \"Last Thu\", \"On Tue\"":[null,""],"Trim zero padding":[null,""],"remove the leading number \"0\" shown on hour of day, and date of month":[null,""],"Date style":[null,""],"Use System Default":[null,""],"Time style":[null,""],"seconds are only shown on the History page":[null,""],"Timezone":[null,""],"Local":[null,""],"Network":[null,""],"display dates and times in either your timezone or the shows network timezone":[null,""],"use local timezone to start searching for episodes minutes after show ends (depends on your dailysearch frequency)":[null,""],"Download url":[null,""],"URL where the shows can be downloaded.":[null,""],"Web Interface":[null,""],"it is recommended that you enable a username and password to secure SickRage from being tampered with remotely.":[null,""],"these options require a manual restart to take effect.":[null,""],"API key":[null,""],"used to give 3rd party programs limited access to SickRage":[null,""],"you can try all the features of the API":[null,""],"here":[null,""],"HTTP logs":[null,""],"enable logs from the internal Tornado web server":[null,""],"HTTP username":[null,""],"set blank for no login":[null,""],"HTTP password":[null,""],"blank = no authentication":[null,""],"HTTP port":[null,""],"web port to browse and access SickRage (default:8081)":[null,""],"Notify on login":[null,""],"enable to be notified when a new login happens in webserver":[null,""],"Listen on IPv6":[null,""],"attempt binding to any available IPv6 address":[null,""],"Enable HTTPS":[null,""],"enable access to the web interface using a HTTPS address":[null,""],"HTTPS certificate":[null,""],"file name or path to HTTPS certificate":[null,""],"HTTPS key":[null,""],"file name or path to HTTPS key":[null,""],"Reverse proxy headers":[null,""],"accept the following reverse proxy headers (advanced)...":[null,""],"(X-Forwarded-For, X-Forwarded-Host, and X-Forwarded-Proto)":[null,""],"CPU throttling":[null,""],"Normal (default). High is lower and Low is higher CPU use":[null,""],"Anonymous redirect":[null,""],"backlink protection via anonymizer service, must end in \"?\"":[null,""],"Enable debug":[null,""],"enable debug logs":[null,""],"Verify SSL Certs":[null,""],"verify SSL Certificates (Disable this for broken SSL installs (Like QNAP))":[null,""],"No Restart":[null,""],"only shutdown when restarting SR":[null,""],"only select this when you have external software restarting SR automatically when it stops (like FireDaemon)":[null,""],"Encrypt passwords":[null,""],"in the <code>config.ini</code> file":[null,""],"warning":[null,""],"passwords must only contain":[null,""],"ASCII characters":[null,""],"Unprotected calendar":[null,""],"allow subscribing to the calendar without user and password":[null,""],"some services like Google Calendar only work this way":[null,""],"Google Calendar Icons":[null,""],"show an icon next to exported calendar events in Google Calendar":[null,""],"Proxy host":[null,""],"blank to disable or proxy to use when connecting to providers":[null,""],"also use global proxy setting for indexers (tvdb, xem, anidb, etc.)":[null,""],"Skip Remove Detection":[null,""],"skip detection of removed files":[null,""],"if disabled the episode will be set to the default deleted status":[null,""],"Default deleted episode status":[null,""],"define the status to be set for media file that has been deleted.":[null,""],"Archived option will keep previous downloaded quality":[null,""],"example: Downloaded (1080p WEB-DL) ==> Archived (1080p WEB-DL)":[null,""],"Options for github related features.":[null,""],"Branch version":[null,""],"error: No branches found.":[null,""],"select branch to use (restart required)":[null,""],"Authorization Type":[null,""],"Username and password":[null,""],"Personal access token":[null,""],"You must use a personal access token if you're using \"two-factor authentication\" on GitHub.":[null,""],"GitHub username":[null,""],"*** (REQUIRED FOR SUBMITTING ISSUES) ***":[null,""],"GitHub password":[null,""],"GitHub personal access token":[null,""],"Generate Token":[null,""],"Manage Tokens":[null,""],"GitHub remote for branch":[null,""],"access repo configured remotes (save then refresh browser)":[null,""],"default":[null,""],"origin":[null,""],"Git executable path":[null,""],"only needed if OS is unable to locate git from env":[null,""],"Git reset":[null,""],"removes untracked files and performs a hard reset on git branch automatically to help resolve update issues":[null,""],"Home Theater / NAS":[null,""],"Devices":[null,""],"Social":[null,""],"A free and open source cross-platform media center and home entertainment system software with a 10-foot user interface designed for the living-room TV.":[null,""],"send KODI commands?":[null,""],"Always on":[null,""],"log errors when unreachable?":[null,""],"Notify on snatch":[null,""],"send a notification when a download starts?":[null,""],"Notify on download":[null,""],"send a notification when a download finishes?":[null,""],"Notify on subtitle download":[null,""],"send a notification when subtitles are downloaded?":[null,""],"Update library":[null,""],"update KODI library when a download finishes?":[null,""],"Full library update":[null,""],"perform a full library update if update per-show fails?":[null,""],"Only update first host":[null,""],"only send library updates to the first active host?":[null,""],"KODI IP:Port":[null,""],"host running KODI (eg. 192.168.1.100:8080)":[null,""],"(multiple host strings must be separated by commas)":[null,""],"Username":[null,""],"username for your KODI server (blank for none)":[null,""],"Password":[null,""],"password for your KODI server (blank for none)":[null,""],"Click below to test.":[null,""],"Experience your media on a visually stunning, easy to use interface on your Mac connected to your TV. Your media library has never looked this good!":[null,""],"For sending notifications to Plex Home Theater (PHT) clients, use the KODI notifier with port <b>3005</b>.":[null,""],"send Plex Media Server library updates?":[null,""],"Plex Media Server Auth Token":[null,""],"auth token used by Plex":[null,""],"Update Library":[null,""],"update Plex Media Server library when a download finishes":[null,""],"Plex Media Server IP:Port":[null,""],"one or more hosts running Plex Media Server<br/>(eg. 192.168.1.1:32400, 192.168.1.2:32400)":[null,""],"HTTPS":[null,""],"use https for plex media server requests?":[null,""],"Click below to test Plex Media Server(s)":[null,""],"Test Plex Media Server":[null,""],"Plex Home Theater":[null,""],"send Plex Home Theater notifications?":[null,""],"Plex Home Theater IP:Port":[null,""],"one or more hosts running Plex Home Theater<br>(eg. 192.168.1.100:3000, 192.168.1.101:3000)":[null,""],"Click below to test Plex Home Theater(s)":[null,""],"Test Plex Home Theater":[null,""],"some Plex Home Theaters <b class=\"boldest\">do not</b> support notifications e.g. Plexapp for Samsung TVs":[null,""],"Emby":[null,""],"A home media server built using other popular open source technologies.":[null,""],"send update commands to Emby?":[null,""],"Emby IP:Port":[null,""],"host running Emby (eg. 192.168.1.100:8096)":[null,""],"Emby API Key":[null,""],"Networked Media Jukebox":[null,""],"The Networked Media Jukebox, or NMJ, is the official media jukebox interface made available for the Popcorn Hour 200-series.":[null,""],"send update commands to NMJ?":[null,""],"Popcorn IP address":[null,""],"IP address of Popcorn 200-series (eg. 192.168.1.100)":[null,""],"Get settings":[null,""],"Get Settings":[null,""],"the Popcorn Hour device must be powered on and NMJ running.":[null,""],"NMJ database":[null,""],"automatically filled via the 'Get Settings' button.":[null,""],"NMJ mount url":[null,""],"Networked Media Jukebox v2":[null,""],"The Networked Media Jukebox, or NMJv2, is the official media jukebox interface made available for the Popcorn Hour 300 & 400-series.":[null,""],"send update commands to NMJv2?":[null,""],"IP address of Popcorn 300/400-series (eg. 192.168.1.100)":[null,""],"Database location":[null,""],"Database instance":[null,""],"adjust this value if the wrong database is selected.":[null,""],"Find database":[null,""],"Find Database":[null,""],"the Popcorn Hour device must be powered on.":[null,""],"NMJv2 database":[null,""],"automatically filled via the 'Find Database' buttons.":[null,""],"Synology":[null,""],"The Synology DiskStation NAS.":[null,""],"Synology Indexer is the daemon running on the Synology NAS to build its media database.":[null,""],"send Synology notifications?":[null,""],"requires SickRage to be running on your Synology NAS.":[null,""],"Synology Indexer":[null,""],"Synology Notifier is the notification system of Synology DSM":[null,""],"send notifications to the Synology Notifier?":[null,""],"pyTivo":[null,""],"pyTivo is both an HMO and GoBack server. This notifier will load the completed downloads to your Tivo.":[null,""],"send notifications to pyTivo?":[null,""],"requires the downloaded files to be accessible by pyTivo.":[null,""],"pyTivo IP:Port":[null,""],"host running pyTivo (eg. 192.168.1.1:9032)":[null,""],"pyTivo share name":[null,""],"value used in pyTivo Web Configuration to name the share.":[null,""],"Tivo name":[null,""],"(Messages & Settings > Account & System Information > System Information > DVR name)":[null,""],"Growl":[null,""],"A cross-platform unobtrusive global notification system.":[null,""],"send Growl notifications?":[null,""],"Growl IP:Port":[null,""],"host running Growl (eg. 192.168.1.100:23053)":[null,""],"may leave blank if SickRage is on the same host.":[null,""],"otherwise Growl <b>requires</b> a password to be used.":[null,""],"Click below to register and test Growl, this is required for Growl notifications to work.":[null,""],"Register Growl":[null,""],"Prowl":[null,""],"A Growl client for iOS.":[null,""],"send Prowl notifications?":[null,""],"Prowl Message Title":[null,""],"Global Prowl API key(s)":[null,""],"Prowl API(s) listed here, separated by commas if applicable, will<br> receive notifications for <b>all</b> shows. Your Prowl API key is available at:":[null,""],"(this field may be blank except when testing.)":[null,""],"Show notification list":[null,""],"-- Select a Show --":[null,"-- בחר סדרה --"],"Configure per-show notifications here by entering Prowl API key(s), separated by commas, '\n 'after selecting a show in the drop-down box. Be sure to activate the 'Save for this show' '\n 'button below after each entry.":[null,""],"Save for this show":[null,""],"Prowl priority":[null,""],"Very Low":[null,""],"Moderate":[null,""],"Normal":[null,""],"High":[null,""],"Emergency":[null,""],"priority of Prowl messages from SickRage.":[null,""],"Libnotify":[null,""],"The standard desktop notification API for Linux/*nix systems. This notifier will only function if the pynotify module is installed (Ubuntu/Debian package <a href=\"apt:python-notify\">python-notify</a>).":[null,""],"send Libnotify notifications?":[null,""],"Pushover":[null,""],"Pushover makes it easy to send real-time notifications to your Android and iOS devices.":[null,""],"send Pushover notifications?":[null,""],"Pushover key":[null,""],"user key of your Pushover account":[null,""],"Pushover API key":[null,""],"click here":[null,""]," to create a Pushover API key":[null,""],"Pushover devices":[null,""],"comma separated list of pushover devices you want to send notifications to":[null,""],"Pushover notification sound":[null,""],"Bike":[null,""],"Bugle":[null,""],"Cash Register":[null,""],"Classical":[null,""],"Cosmic":[null,""],"Falling":[null,""],"Gamelan":[null,""],"Incoming":[null,""],"Intermission":[null,""],"Magic":[null,""],"Mechanical":[null,""],"Piano Bar":[null,""],"Siren":[null,""],"Space Alarm":[null,""],"Tug Boat":[null,""],"Alien Alarm (long)":[null,""],"Climb (long)":[null,""],"Persistent (long)":[null,""],"Pushover Echo (long)":[null,""],"Up Down (long)":[null,""],"None (silent)":[null,""],"Device specific":[null,""],"choose notification sound to use":[null,""],"Pushover priority":[null,""],"Choose priority to use":[null,""],"Boxcar 2":[null,""],"Read your messages where and when you want them!":[null,""],"send Boxcar notifications?":[null,""],"Boxcar2 access token":[null,""],"access token for your Boxcar account.":[null,""],"NMA":[null,""],"Notify My Android":[null,""],"Notify My Android is a Prowl-like Android App and API that offers an easy way to send notifications from your application directly to your Android device.":[null,""],"send NMA notifications?":[null,""],"NMA API key":[null,""],"(multiple keys must be separated by commas, up to a maximum of 5)":[null,""],"NMA priority":[null,""],"priority of NMA messages from SickRage.":[null,""],"Pushalot":[null,""],"Pushalot is a platform for receiving custom push notifications to connected devices running Windows Phone or Windows 8.":[null,""],"send Pushalot notifications ?":[null,""],"Pushalot authorization token":[null,""],"authorization token of your Pushalot account.":[null,""],"Pushbullet":[null,""],"Pushbullet is a platform for receiving custom push notifications to connected devices running Android/iOS and desktop browsers such as Chrome, Firefox or Opera.":[null,""],"send Pushbullet notifications?":[null,""],"Pushbullet API key":[null,""],"API key of your Pushbullet account":[null,""],"Pushbullet devices":[null,""],"Update device list":[null,""],"Pushbullet channels":[null,""],"Free Mobile":[null,""],"Free Mobile is a famous French cellular network provider.<br> It provides to their customer a free SMS API.":[null,""],"send SMS notifications?":[null,""],"send a SMS when a download starts?":[null,""],"send a SMS when a download finishes?":[null,""],"send a SMS when subtitles are downloaded?":[null,""],"Free Mobile customer ID":[null,""],"it's your Free Mobile customer ID (8 digits)":[null,""],"Free Mobile API key":[null,""],"find your API key in your customer portal.":[null,""],"Click below to test your settings.":[null,""],"Telegram":[null,""],"Telegram is a cloud-based instant messaging service.":[null,""],"send Telegram notifications?":[null,""],"send a message when a download starts?":[null,""],"send a message when a download finishes?":[null,""],"send a message when subtitles are downloaded?":[null,""],"User/group ID":[null,""],"contact @myidbot on Telegram to get an ID":[null,""],"Bot API token":[null,""],"contact @BotFather on Telegram to set up one":[null,""],"Join":[null,""],"Join all of your devices together!":[null,""],"send Join notifications?":[null,""],"Device ID":[null,""],"per device specific id":[null,""]," to create a Join API key":[null,""],"Twilio":[null,""],"Twilio is a webservice API that allows you to communicate directly with a mobile number. This notifier will send a text directly to your mobile device.":[null,""],"should SickRage text your mobile device?":[null,""],"Twilio Account SID":[null,""],"account SID of your Twilio account.":[null,""],"Twilio Auth Token":[null,""],"Twilio Phone SID":[null,""],"phone SID that you would like to send the sms from":[null,""],"Your phone number":[null,""],"phone number that will receive the sms. Please use the format +1-###-###-####":[null,""],"Twitter":[null,""],"A social networking and microblogging service, enabling its users to send and read other users' messages called tweets.":[null,""],"should SickRage post tweets on Twitter?":[null,""],"you may want to use a secondary account.":[null,""],"send direct message":[null,""],"send a notification via Direct Message, not via status update":[null,""],"send DM to":[null,""],"Twitter account to send Direct Messages to (must follow you)":[null,""],"Step One":[null,""],"Request Authorization":[null,""],"Click the \"Request Authorization\" button.<br> This will open a new page containing an auth key.<br> <b>note:</b> if nothing happens check your popup blocker.":[null,""],"Step Two":[null,""],"Enter the key Twitter gave you below, and click \"Verify Key\".":[null,""],"Trakt":[null,""],"Trakt helps keep a record of what TV shows and movies you are watching. Based on your favorites, Trakt recommends additional shows and movies you'll enjoy!":[null,""],"send Trakt.tv notifications?":[null,""],"username of your Trakt account.":[null,""],"Trakt PIN":[null,""],"Get Trakt PIN":[null,""],"PIN code to authorize SickRage to access Trakt on your behalf.":[null,""],"API Timeout":[null,""],"seconds to wait for Trakt API to respond. (Use 0 to wait forever)":[null,""],"Default indexer":[null,""],"Sync libraries":[null,""],"sync your SickRage show library with your trakt show library.":[null,""],"Remove Episodes From Collection":[null,""],"remove an episode from your Trakt Collection if it is not in your SickRage Library.":[null,""],"Sync watchlist":[null,""],"sync your SickRage show watchlist with your trakt show watchlist (either Show and Episode).":[null,""],"episode will be added on watch list when wanted or snatched and will be removed when downloaded ":[null,""],"Watchlist add method":[null,""],"Skip All":[null,""],"Download Pilot Only":[null,""],"Get whole show":[null,""],"method in which to download episodes for new shows.":[null,""],"Remove episode":[null,""],"remove an episode from your watchlist after it is downloaded.":[null,""],"Remove series":[null,""],"remove the whole series from your watchlist after any download.":[null,""],"Remove watched show":[null,""],"remove the show from sickrage if it's ended and completely watched":[null,""],"Start paused":[null,""],"shows grabbed from your trakt watchlist start paused.":[null,""],"Trakt blackList name":[null,""],"name (slug) of list on Trakt for blacklisting show on 'Add Trending Show' & 'Add Recommended Shows' pages":[null,""],"Email":[null,""],"Allows configuration of email notifications on a per show basis.":[null,""],"send email notifications?":[null,""],"SMTP host":[null,""],"hostname of your SMTP email server.":[null,""],"SMTP port":[null,""],"port number used to connect to your SMTP host.":[null,""],"SMTP from":[null,""],"sender email address, some hosts require a real address.":[null,""],"Use TLS":[null,""],"check to use TLS encryption.":[null,""],"SMTP user":[null,""],"(optional) your SMTP server username.":[null,""],"SMTP password":[null,""],"(optional) your SMTP server password.":[null,""],"Global email list":[null,""],"email addresses listed here, separated by commas if applicable, will<br> receive notifications for <b>all</b> shows.":[null,""],"(This field may be blank except when testing.)":[null,""],"Email Subject":[null,""],"use a custom subject for some privacy protection?":[null,""],"(leave blank for the default SickRage subject)":[null,""],"configure per-show notifications here by entering email address(es), separated by commas,":[null,""],"after selecting a show in the drop-down box. Be sure to activate the 'Save for this show'":[null,""],"button below after each entry.":[null,""],"Slack":[null,""],"Slack brings all your communication together in one place. It's real-time messaging, archiving and search for modern teams.":[null,""],"should SickRage post messages on Slack?":[null,""],"Slack Incoming Webhook":[null,""],"Discord":[null,""],"All-in-one voice and text chat for gamers that's free, secure, and works on both your desktop and phone.":[null,""],"Should SickRage post messages on Discord?":[null,""],"Discord Incoming Webhook":[null,""],"Create webhook under channel settings.":[null,""],"Discord Bot Name":[null,""],"Blank will use webhook default Name.":[null,""],"Discord Avatar URL":[null,""],"Blank will use webhook default Avatar.":[null,""],"Discord TTS":[null,""],"Send notifications using text-to-speech":[null,""],"Post-Processing":[null,"עיבוד לאחר הורדה"],"Episode Naming":[null,"שמות פרקים"],"Metadata":[null,"מטא-נתונים"],"Settings that dictate how SickRage should process completed downloads.":[null,"הגדרות המכתיבות כיצד SickRage צריך לעבד הורדות שהסתיימו."],"enable the automatic post processor to scan and process any files in your Post Processing Dir":[null,"הפעל את מעבד ההורדות האוטומטי שיסרוק ויעבד את כל הקבצים בספריית ההורדות לעיבוד שלך"],"do not use if you use an external Post Processing script":[null,"אל תשתמש במידה ואתה משתמש בקובץ פקודות חיצוני המבצע עיבוד לאחר הורדה"],"Post Processing Dir":[null,"ספריית ההורדות לעיבוד"],"the folder where your download client puts the completed TV downloads.":[null,"התיקייה שבה תוכנת ההורדות שלך שמה את הורדות הטלויזיה שהסתיימו."],"please use seperate downloading and completed folders in your download client if possible.":[null,"במידת האפשר, אנא השתמש בתוכנת ההורדה שלך בתיקיות נפרדות עבור הורדות בתהליך ואלה שהסתיימו."],"Processing Method":[null,"שיטת עיבוד"],"what method should be used to put files into the library?":[null,"באיזו שיטה יש להשתמש כדי להכניס קבצים לספריה?"],"if you keep seeding torrents after they finish, please avoid the 'move' processing method to prevent errors.":[null,"במידה ואתה ממשיך לזרוע טורנטים לאחר שהסתיימו, אנא הימנע משימוש בשיטת העיבוד 'העבר' על מנת למנוע שגיאות."],"Auto Post-Processing Frequency":[null,"תדירות הפעלת מעבד ההורדות האוטומטי"],"time in minutes to check for new files to auto post-process (min 10)":[null,"תדירות (בדקות) לסריקת תקיית ההורדות עבור קבצים חדשים להם יש לבצע עיבוד לאחר הורדה (מינימום 10)"],"Postpone post processing":[null,"דחיית עיבוד לאחר ההורדה"],"wait to process a folder if sync files are present.":[null,"דחה עיבוד תיקייה במידה וקיימים בה קבצי סנכרון."],"Sync File Extensions":[null,"סיומות קבצי סנכרון"],"comma seperated list of extensions or filename globs SickRage ignores when Post Processing":[null,"רשימה המופרדת בפסיקים וכוללת סיומות או שמות קבצים עם תווים חופשיים, מהם SickRage יתעלם בתהליך עיבוד ההורדות"],"Rename Episodes":[null,"שנה שמות פרקים"],"rename episode using the Episode Naming settings?":[null,"האם לשנות את שמות הפרקים בהתאם לערכי הגדרות שמות פרקים?"],"Create missing show directories":[null,"צור ספריות חסרות לסדרות"],"create missing show directories when they get deleted":[null,"צור ספריות חסרות לסדרות כאשר הן נמחקות"],"Add shows without directory":[null,"הוסף סדרות ללא ספרייה"],"add shows without creating a directory (not recommended)":[null,""],"Move associated files":[null,""],"move associated (srt/srr/sfv/etc) files while post processing?":[null,""],"Rename .nfo file":[null,""],"rename the original .nfo file to .nfo-orig to avoid conflicts?":[null,""],"Associated file extensions":[null,""],"comma separated list of associated file extensions SickRage should keep while post processing.":[null,""],"leaving it empty means no associated files will be post processed":[null,""],"Delete non associated files":[null,""],"delete non associated files while post processing?":[null,""],"Change File Date":[null,""],"set last modified filedate to the date that the episode aired?":[null,""],"some systems may ignore this feature.":[null,""],"Timezone for File Date":[null,""],"local":[null,""],"network":[null,""],"what timezone should be used to change File Date?":[null,""],"Unpack":[null,""],"What to do with archived releases found in your <i>TV Download Dir</i>?":[null,""],"Ignore (do not process contents)":[null,""],"Unpack (process contents)":[null,""],"Treat as video (process archive as-is)":[null,""],"'Unpack' only works with RAR archives":[null,""],"Windows":[null,""],"WinRar is required on windows":[null,""],"Unpack Directory":[null,""],"Choose a path to unpack files, leave blank to unpack in download dir":[null,""],"Unrar Location":[null,""],"add the path to unrar if it is not in the system path":[null,""],"Alternate Unrar Tool":[null,""],"add the path to an alternate unrar tool if it is not in the system path":[null,""],"Delete RAR contents":[null,""],"delete content of RAR files, even if Process Method not set to move?":[null,""],"only working with RAR archive":[null,""],"Don't delete empty folders":[null,""],"leave empty folders when Post Processing?":[null,""],"can be overridden using manual Post Processing":[null,""],"Follow symbolic-links":[null,""],"follow down symbolic links in download directory?":[null,""],"<b>EXPERTS ONLY.</b><br>Enable only if you know what <b>circular symbolic links</b> are,<br>and can <b>verify that you have none</b>.":[null,""],"Use icacls":[null,""],"Windows only":[null,""],"sets video permissions after using the move method in post processing":[null,""],"Extra Scripts":[null,""],"see":[null,""],"for script arguments description and usage.":[null,""],"How SickRage will name and sort your episodes.":[null,""],"Name Pattern":[null,""],"Toggle Naming Legend":[null,""],"don't forget to add quality pattern. Otherwise after post-processing the episode will have UNKNOWN quality":[null,"לא לשכוח להוסיף תבנית איכות. אחרת בסיום פעולת עיבוד ההורדה תשוייך לפרק איכות \"לא-ידועה\""],"Meaning":[null,""],"Pattern":[null,""],"Result":[null,""],"Use lower case if you want lower case names (eg. %sn, %e.n, %q_n etc)":[null,""],"Show Name":[null,"שם הסדרה"],"Show.Name":[null,""],"Show_Name":[null,""],"Season Number":[null,""],"XEM Season Number":[null,""],"Episode Number":[null,""],"XEM Episode Number":[null,""],"Episode Name":[null,""],"Episode.Name":[null,""],"Episode_Name":[null,""],"Air Date":[null,""],"Post-Processing Date":[null,"תאריך ביצוע עיבוד לאחר הורדה"],"Quality":[null,"איכות"],"Scene Quality":[null,""],"Release Name":[null,""],"SickRage' is used in place of RLSGROUP if it could not be properly detected":[null,""],"Release Group":[null,""],"If episode is proper/repack add 'proper' to name.":[null,""],"Release Type":[null,""],"Multi-Episode Style":[null,""],"Single-EP Sample":[null,""],"Multi-EP sample":[null,""],"Strip Show Year":[null,""],"remove the TV show's year when renaming the file?":[null,""],"only applies to shows that have year inside parentheses":[null,""],"Custom Air-By-Date":[null,""],"name air-by-date shows differently than regular shows?":[null,""],"Toggle ABD Naming Legend":[null,""],"Regular Air Date":[null,""],"Year":[null,""],"Month":[null,""],"Day":[null,""],"Multi-EP style is ignored":[null,""],"Custom Sports":[null,""],"name sports shows differently than regular shows?":[null,""],"Toggle Sports Naming Legend":[null,""],"Sports Air Date":[null,""],"Custom Anime":[null,""],"name anime shows differently than regular shows?":[null,""],"Toggle Anime Naming Legend":[null,""],">XEM Season Number":[null,""],"Single-EP Anime Sample":[null,""],"Multi-EP Anime sample":[null,""],"Add Absolute Number":[null,""],"add the absolute number to the season/episode format?":[null,""],"only applies to anime. (eg. S15E45 - 310 vs S15E45)":[null,""],"Only Absolute Number":[null,""],"replace season/episode format with absolute number":[null,""],"only applies to anime.":[null,""],"No Absolute Number":[null,""],"don't include the absolute number":[null,""],"The data associated to the data. These are files associated to a TV show in the form of images and text that, when supported, will enhance the viewing experience.":[null,""],"Metadata Type":[null,""],"toggle metadata options that you wish to be created":[null,""],"multiple targets may be used":[null,""],"Select Metadata":[null,""],"Provider Priorities":[null,""],"Provider Options":[null,""],"Configure Custom Newznab Providers":[null,""],"Configure Custom Torrent Providers":[null,""],"Check off and drag the providers into the order you want them to be used.":[null,""],"At least one provider is required but two are recommended.":[null,""],"Torrent providers can be toggled in ":[null,""],"Provider does not support backlog searches at this time.":[null,""],"Provider is <b>NOT WORKING</b>.":[null,""],"Configure individual provider settings here.":[null,""],"Check with provider's website on how to obtain an API key if needed.":[null,""],"Configure provider":[null,""],"no providers available to configure.":[null,""],"URL":[null,""],"Enable daily searches":[null,"הפעל חיפושים יומיים"],"enable provider to perform daily searches.":[null,"אפשר לספק לבצע חיפושים יומיים."],"Enable backlog searches":[null,""],"enable provider to perform backlog searches.":[null,""],"Season search mode":[null,""],"when searching for complete seasons you can choose to have it look for season packs only, or choose to have it build a complete season from just single episodes.":[null,""],"season packs only.":[null,""],"episodes only.":[null,""],"Enable fallback":[null,""],"when searching for a complete season depending on search mode you may return no results, this helps by restarting the search using the opposite search mode.":[null,""],"Custom URL":[null,""],"the URL should include the protocol (and port if applicable). Examples: http://192.168.1.4/ or http://localhost:3000/":[null,""],"Api key":[null,""],"Digest":[null,""],"Hash":[null,""],"Passkey":[null,""],"Cookies":[null,""],"example: uid=1234;pass=567845439634987<br>note: uid and pass are not your username/password.<br>use DevTools or Firebug to get these values after logging in on your browser.":[null,""],"Pin":[null,""],"Seed ratio":[null,""],"stop transfer when ratio is reached<br>(-1 SickRage default to seed forever, or leave blank for downloader default)":[null,""],"Minimum seeders":[null,""],"Minimum leechers":[null,""],"Confirmed download":[null,""],"only download torrents from trusted or verified uploaders ?":[null,""],"Ranked torrents":[null,""],"only download ranked torrents (trusted releases)":[null,""],"English torrents":[null,""],"only download english torrents, or torrents containing english subtitles":[null,""],"For Spanish torrents":[null,""],"ONLY search on this provider if show info is defined as \"Spanish\" (avoid provider's use for VOS shows)":[null,""],"Sorting results by":[null,""],"Freeleech":[null,""],"only download <b>\"FreeLeech\"</b> torrents.":[null,""],"Category":[null,""],"select torrent with Italian subtitle":[null,""],"Configure Custom<br>Newznab Providers":[null,""],"Add and setup or remove custom Newznab providers.":[null,""],"Select provider":[null,""],"-- add new provider --":[null,""],"Provider name":[null,""],"Site URL":[null,""],"Newznab search categories":[null,""],"select your Newznab categories on the left, and click the \"update categories\" button to use them for searching.) <b>don't forget to to save the form!":[null,""],"Update Categories":[null,""],"Add":[null,""],"Delete":[null,"הסר"],"Add and setup or remove custom RSS providers.":[null,""],"RSS URL":[null,""],"Search element":[null,""],"eg: title":[null,""],"Episode Search":[null,""],"NZB Search":[null,""],"Torrent Search":[null,""],"How to manage searching with":[null,""],"Randomize Providers":[null,""],"randomize the provider search order instead of going in order of placement":[null,""],"Download propers":[null,""],"replace original download with \"Proper\" or \"Repack\" if nuked":[null,""],"Check propers every":[null,""],"24 hours":[null,""],"4 hours":[null,""],"90 mins":[null,""],"45 mins":[null,""],"15 mins":[null,""],"Backlog search day(s)":[null,""],"number of day(s) that the \"Forced Backlog Search\" will cover (e.g. 7 Days)":[null,""],"Backlog search frequency":[null,"תדירות חיפוש רטרואקטיבי"],"time in minutes between searches (min.":[null,""],"Daily search frequency":[null,"תדירות חיפוש יומי"],"Usenet retention":[null,""],"age limit in days for usenet articles to be used (e.g. 500)":[null,""],"Ignore words":[null,""],"results with one or more word from this list will be ignored<br>separate words with a comma, e.g. \"word1,word2,word3\"":[null,""],"Require words":[null,""],"results with no word from this list will be ignored<br>separate words with a comma, e.g. \"word1,word2,word3\"":[null,""],"Trackers list":[null,""],"trackers that will be added to magnets without trackers<br>separate trackers with a comma, e.g. \"tracker1,tracker2,tracker3\"":[null,""],"Ignore language names in subbed results":[null,""],"ignore subbed releases based on language names <br>\n Example: \"dk\" will ignore words: dksub, dksubs, dksubbed, dksubed <br>\n separate languages with a comma, e.g. \"lang1,lang2,lang3":[null,""],"Allow high priority":[null,""],"set downloads of recently aired episodes to high priority":[null,""],"Use Failed Downloads":[null,""],"use Failed Download Handling?":[null,""],"will only work with snatched/downloaded episodes after enabling this":[null,""],"Delete Failed":[null,""],"delete files left over from a failed download?":[null,""],"this only works if Use Failed Downloads is enabled.":[null,""],"How to handle NZB search results.":[null,""],"Search NZBs":[null,""],"enable NZB search providers":[null,""],"Send .nzb files to":[null,""],"SABnzbd server URL":[null,""],"URL to your SABnzbd server (e.g. http://localhost:8080/)":[null,""],"SABnzbd username":[null,""],"(blank for none)":[null,""],"SABnzbd password":[null,""],"SABnzbd API key":[null,""],"locate at... SABnzbd Config -> General -> API Key":[null,""],"Use SABnzbd category":[null,""],"add downloads to this category (e.g. TV)":[null,""],"Use SABnzbd category (backlog episodes)":[null,""],"add downloads of old episodes to this category (e.g. TV)":[null,""],"Use SABnzbd category for anime":[null,""],"add anime downloads to this category (e.g. anime)":[null,""],"Use SABnzbd category for anime (backlog episodes)":[null,""],"add anime downloads of old episodes to this category (e.g. anime)":[null,""],"Use forced priority":[null,""],"enable to change priority from HIGH to FORCED":[null,""],"Black hole folder location":[null,""],"<b>.nzb</b> files are stored at this location for external software to find and use":[null,""],"Connect using HTTPS":[null,""],"enable Secure control in NZBGet and set the correct Secure Port here":[null,""],"NZBget host:port":[null,""],"(e.g. localhost:6789)":[null,""],"NZBget RPC host name and port number (not NZBgetweb!)":[null,""],"NZBget username":[null,""],"locate in nzbget.conf (default:nzbget)":[null,""],"NZBget password":[null,""],"locate in nzbget.conf (default:tegbzn6789)":[null,""],"Use NZBget category":[null,""],"send downloads marked this category (e.g. TV)":[null,""],"Use NZBget category (backlog episodes)":[null,""],"send downloads of old episodes marked this category (e.g. TV)":[null,""],"Use NZBget category for anime":[null,""],"send anime downloads marked this category (e.g. anime)":[null,""],"Use NZBget category for anime (backlog episodes)":[null,""],"send anime downloads of old episodes marked this category (e.g. anime)":[null,""],"NZBget priority":[null,""],"Very low":[null,""],"Low":[null,""],"Very high":[null,""],"Force":[null,""],"priority for daily snatches (no backlog)":[null,""],"Torrent host:port":[null,""],"URL to your Synology DSM (e.g. http://localhost:5000/)":[null,""],"Client username":[null,""],"Client password":[null,""],"Downloaded files location":[null,""],"where Synology Download Station will save downloaded files (blank for client default)":[null,""],"the destination has to be a shared folder for Synology DS":[null,""],"Click below to test":[null,""],"How to handle Torrent search results.":[null,""],"Search torrents":[null,""],"enable torrent search providers":[null,""],"Send .torrent files to":[null,""],"<b>.torrent</b> files are stored at this location for external software to find and use":[null,""],"URL to your torrent client (e.g. http://localhost:8000/)":[null,""],"Torrent RPC URL":[null,""],"the path without leading and trailing slashes (e.g. transmission)":[null,""],"Http Authentication":[null,""],"Verify certificate":[null,""],"disable if you get \"Deluge: Authentication Error\" in your log":[null,""],"verify SSL certificates for HTTPS requests":[null,""],"Add label to torrent":[null,""],"(blank spaces are not allowed)":[null,""],"label plugin must be enabled in Deluge clients":[null,""],"for QBitTorrent 3.3.1 and up":[null,""],"Add label to torrent for anime":[null,""],"for QBitTorrent 3.3.1 and up ":[null,""],"where <span id=\"torrent_client\">the torrent client</span> will save downloaded files (blank for client default)":[null,""],"the destination has to be a shared folder for Synology DS</span>":[null,""],"Minimum seeding time":[null,""],"time in hours":[null,""],"(default:'0' passes blank to client and '-1' passes nothing)":[null,""],"Start torrent paused":[null,""],"add .torrent to client but do <b style=\"font-weight:900\">not</b> start downloading":[null,""],"Allow high bandwidth":[null,""],"use high bandwidth allocation if priority is high":[null,""],"Test Connection":[null,""],"Windows Shares":[null,""],"Defines your existing windows shares so that we can add them to the browse dialog":[null,""],"Share #{number}":[null,""],"Share label":[null,""],"Hostname or IP":[null,""],"Share path":[null,""],"Subtitles Search":[null,""],"Subtitles Plugin":[null,""],"Plugin Settings":[null,""],"Settings that dictate how SickRage handles subtitles search results.":[null,""],"Search Subtitles":[null,""],"Subtitle Languages":[null,""],"Subtitle Directory":[null,""],"the directory where SickRage should store your <i>Subtitles</i> files.":[null,""],"leave empty if you want store subtitle in episode path.":[null,""],"Subtitle Find Frequency":[null,""],"time in hours between scans (default: 1)":[null,""],"Include Specials":[null,""],"include the show's specials when searching for subtitles?":[null,""],"Perfect matches":[null,""],"only download subtitles that match: release group, video codec, audio codec and resolution":[null,""],"if disabled you may get out of sync subtitles":[null,""],"Subtitles History":[null,""],"log downloaded Subtitle on History page?":[null,""],"Subtitles Multi-Language":[null,""],"append language codes to subtitle filenames?":[null,""],"this option is required if you use multiple subtitle languages":[null,""],"Delete unwanted subtitles":[null,""],"enable to delete unwanted subtitle languages bundled with release":[null,""],"Embedded Subtitles":[null,""],"ignore subtitles embedded inside video file?":[null,""],"this will ignore <u>all</u> embedded subtitles for every video file!":[null,""],"Hearing Impaired Subtitles":[null,""],"download hearing impaired style subtitles?":[null,""],"See":[null,""],"for a script arguments description.":[null,""],"Additional scripts separated by <b>|</b>.":[null,""],"Scripts are called after each episode has searched and downloaded subtitles.":[null,""],"For any scripted languages, include the interpreter executable before the script. See the following example":[null,""],"For Windows:":[null,""],"For Linux / OS X:":[null,""],"Subtitle Providers":[null,""],"Check off and drag the plugins into the order you want them to be used.":[null,""],"At least one plugin is required.":[null,""]," Web-scraping plugin":[null,""],"Provider Settings":[null,""],"Set user and password for each provider":[null,""],"User Name":[null,""],"Change Show":[null,"עבור לסדרה"],"Prev Show":[null,"סדרה קודמת"],"Next Show":[null,"סדרה הבאה"],"Jump to Season":[null,""],"Specials":[null,""],"Poster for":[null,""],"Stars":[null,""],"minutes":[null,""],"View other popular {genre} shows on trakt.tv.":[null,"צפה בסדרות פופלריות אחרות מסוגת {genre} באתר trakt.tv."],"View other popular {imdbgenre} shows on IMDB.":[null,"צפה בסדרות פופלריות אחרות מסוגת {imdbgenre} באתר IMDB."],"Allowed":[null,"מורשה"],"Preferred":[null,""],"Originally Airs":[null,""],"Show Status":[null,"מצב הסדרה"],"Default EP Status":[null,""],"Location":[null,""],"Missing":[null,""],"Scene Name":[null,""],"Required Words":[null,""],"Ignored Words":[null,""],"Size":[null,"גודל"],"Info Language":[null,""],"Subtitles SR Metadata":[null,""],"Season Folders":[null,""],"Paused":[null,""],"Air-by-Date":[null,""],"Sports":[null,""],"DVD Order":[null,""],"Scene Numbering":[null,""],"Select Filtered Episodes":[null,""],"Clear All":[null,""],"Change selected episodes to":[null,""],"Select Columns":[null,""],"NFO":[null,""],"TBN":[null,""],"Episode":[null,"פרק"],"Absolute":[null,""],"Scene":[null,""],"Scene Absolute":[null,""],"File Name":[null,""],"Airdate":[null,"תאריך שידור"],"Download":[null,""],"Change the value here if scene numbering differs from the indexer episode numbering":[null,""],"Change the value here if scene absolute numbering differs from the indexer absolute numbering":[null,""],"Manual Search":[null,""],"Do you want to mark this episode as failed?":[null,""],"The episode release name will be added to the failed history, preventing it to be downloaded again.":[null,""],"Do you want to include the current episode quality in the search?":[null,""],"Choosing No will ignore any releases with the same episode quality as the one currently downloaded/snatched.":[null,""],"Download subtitle":[null,""],"Do you want to re-download the subtitle for this language?":[null,""],"It will overwrite your current subtitle":[null,""],"Format":[null,""],"Advanced":[null,""],"Main Settings":[null,""],"Show Location":[null,"מיקום הסדרה"],"Preferred Quality":[null,""],"Default Episode Status":[null,""],"this will set the status for future episodes.":[null,""],"this only applies to episode filenames and the contents of metadata files.":[null,""],"search for subtitles":[null,""],"Use SR Metdata":[null,""],"use SickRage metadata when searching for subtitle, this will override the autodiscovered metadata":[null,""],"pause this show (SickRage will not download episodes)":[null,"השהה סדרה זו (SickRage לא יוריד פרקים)"],"Format Settings":[null,""],"Air by date":[null,""],"check if the show is released as Show.03.02.2010 rather than Show.S02E03.":[null,"סמן במידה והסדרה מופצת בתור Show.03.02.2010 ולא Show.S02E03."],"in case of an air date conflict between regular and special episodes, the later will be ignored.":[null,""],"check if the show is Anime and episodes are released as Show.265 rather than Show.S02E03":[null,"סמן במידה והסדרה היא אנימה והפרקים מופצים בתור Show.265 ולא Show.S02E03"],"check if the show is a sporting or MMA event released as Show.03.02.2010 rather than Show.S02E03":[null,"סמן במידה והסדרה היא אירוע ספורט או אומנות לחימה ומופצת בתור Show.03.02.2010 ולא Show.S02E03"],"Season folders":[null,""],"group episodes by season folder (uncheck to store in a single folder)":[null,""],"search by scene numbering (uncheck to search by indexer numbering)":[null,""],"use the DVD order instead of the air order":[null,""],"a \"Force Full Update\" is necessary, and if you have existing episodes you need to sort them manually.":[null,""],"comma-separated <i>e.g. \"word1,word2,word3</i>\"":[null,""],"search results with one or more words from this list will be ignored.":[null,""],"e.g. \"word1,word2,word3\"":[null,""],"search results with no words from this list will be ignored.":[null,""],"Scene Exception":[null,""],"this will affect episode search on NZB and torrent providers.":[null,""],"this list appends to the original show name.":[null,"רשימה זו נספחת לשם הסדרה המקורי."],"WARNING logs":[null,""],"ERROR logs":[null,""],"There are no events to display.":[null,""],"Limit":[null,""],"Layout":[null,""],"HistoryLayout":[null,""],"Compact":[null,""],"Detailed":[null,""],"Time":[null,""],"Provider":[null,""],"Missing Provider":[null,""],"missing provider":[null,""],"Directory":[null,""],"Show Name (tvshow.nfo)":[null,""],"Indexer":[null,""],"Enter the folder containing the episode":[null,""],"Process Method to be used":[null,""],"Copy":[null,""],"Move":[null,""],"Hard Link":[null,""],"Symbolic Link":[null,""],"Symbolic Link Reversed":[null,""],"Force already Post Processed Dir/Files":[null,""],"Mark Dir/Files as priority download":[null,""],"(Check it to replace the file even if it exists at higher quality)":[null,""],"Delete files and folders":[null,""],"(Check it to delete files and folders like auto processing)":[null,""],"Don't use processing queue":[null,""],"(If checked this will return the result of the process here, but may be slow!)":[null,""],"Mark download as failed":[null,""],"Process":[null,""],"Download subtitles for this show?":[null,"הורד כתוביות לסדרה זו?"],"use SickRage metadata when searching for subtitle, <br />this will override the autodiscovered metadata":[null,""],"Status for previously aired episodes":[null,""],"Status for all future episodes":[null,""],"Group episodes by season folder?":[null,""],"Is this show an Anime?":[null,"האם סדרה זו היא אנימה?"],"Is this show scene numbered?":[null,"האם סדרה זו משתמשת במספור ה\"זירה\"?"],"Save Defaults":[null,""],"Use current values as the defaults":[null,""],"<p>Select your preferred fansub groups from the <b>Available Groups</b> and add them to the <b>Whitelist</b>. Add groups to the <b>Blacklist</b> to ignore them.</p>\n <p>The <b>Whitelist</b> is checked <i>before</i> the <b>Blacklist</b>.</p>\n <p>Groups are shown as <b>Name</b> | <b>Rating</b> | <b>Number of subbed episodes</b>.</p>\n <p>You may also add any fansub group not listed to either list manually.</p>\n <p>When doing this please note that you can only use groups listed on anidb for this anime.\n <br>If a group is not listed on anidb but subbed this anime, please correct anidb's data.</p>":[null,""],"Whitelist":[null,""],"Available Groups":[null,""],"Add to Whitelist":[null,""],"Add to Blacklist":[null,""],"Blacklist":[null,""],"Custom Group":[null,""],"Allowed Quality:":[null,""],"Preferred Quality:":[null,""],"Filter Show Name":[null,""],"Root":[null,""],"All":[null,""],"Clear Filter(s)":[null,""],"Poster":[null,""],"Small Poster":[null,""],"Banner":[null,""],"Simple":[null,""],"Next Episode":[null,""],"Progress":[null,""],"Direction":[null,""],"Ascending":[null,""],"Descending":[null,""],"Poster Size":[null,""],"Continuing":[null,""],"Ended":[null,""],"Total":[null,""],"Invalid date":[null,""],"No Network":[null,""],"Next Ep":[null,""],"Prev Ep":[null,""],"Show":[null,""],"Downloads":[null,""],"Active":[null,""],"loading":[null,""],"<p><b><u>Preferred</u></b> qualities will replace those in <b><u>allowed</u></b>, even if they are lower.</p>":[null,""],"New":[null,""],"Set as Default":[null,""],"Remember me":[null,""],"Edit Selected":[null,""],"Subtitle":[null,""],"Default Ep Status":[null,""],"Update":[null,""],"Rescan":[null,""],"Rename":[null,""],"Search Subtitle":[null,""],"Force Metadata Regen":[null,""],"Snatched (Allowed)":[null,"נמצא (מורשה)"],"Jump to Show":[null,"קפוץ לסדרה"],"Force Backlog":[null,""],"Manage episodes with status":[null,""],"Manage":[null,""],"None of your episodes have status":[null,""],"Shows containing":[null,""],"episodes":[null,""],"Set checked shows/episodes to":[null,""],"Go":[null,""],"Select all":[null,""],"Clear all":[null,""],"Release":[null,""],"Backlog Search":[null,"חיפוש רטרואקטיבי"],"Not in progress":[null,""],"In Progress":[null,""],"Daily Search":[null,"חיפוש יומי"],"Find Propers Search":[null,""],"Propers search disabled":[null,""],"Subtitle Search":[null,""],"Subtitle search disabled":[null,""],"Search Queue":[null,""],"pending items":[null,""],"Daily":[null,"יומי"],"Manual":[null,""],"Changing any settings marked with (<span class=\"separator\">*</span>) will force a refresh of the selected shows.":[null,""],"Selected Shows":[null,""],"Root Directories":[null,""],"Current":[null,""],"Keep":[null,""],"Custom":[null,""],"Group episodes by season folder (set to \"No\" to store in a single folder).":[null,""],"Pause these shows (SickRage will not download episodes).":[null,""],"This will set the status for future episodes.":[null,""],"Search by scene numbering (set to \"No\" to search by indexer numbering).":[null,""],"Set if these shows are Anime and episodes are released as Show.265 rather than Show.S02E03":[null,""],"Set if these shows are sporting or MMA events released as Show.03.02.2010 rather than Show.S02E03.":[null,""],"In case of an air date conflict between regular and special episodes, the later will be ignored.":[null,""],"Set if these shows are released as Show.03.02.2010 rather than Show.S02E03.":[null,""],"Search for subtitles.":[null,""],"All of your episodes have {subsLanguage} subtitles.":[null,""],"Manage episodes without":[null,""],"Episodes without {subsLanguage} subtitles.":[null,""],"Episodes without {subtitleLanguage} (undefined) subtitles.":[null,""],"Download missed subtitles for selected episodes":[null,""],"Performing Restart":[null,""],"Waiting for SickRage to shut down":[null,""],"Waiting for SickRage to start again":[null,""],"Loading the default page":[null,""],"Error: The restart has timed out, perhaps something prevented SickRage from starting again?":[null,""],"Key":[null,""],"Missed":[null,""],"Today":[null,""],"Soon":[null,"בקרוב"],"Later":[null,""],"Subscribe":[null,""],"Date":[null,""],"View Paused":[null,""],"Hidden":[null,""],"Shown":[null,""],"Calendar":[null,""],"List":[null,""],"Ends":[null,""],"Next Ep Name":[null,""],"Run time":[null,""],"Indexers":[null,""],"No shows for this day":[null,""],"Airs":[null,""],"Plot":[null,""],"Show Update":[null,""],"Version Check":[null,""],"Proper Finder":[null,""],"Post Process":[null,""],"Subtitles Finder":[null,""],"Scheduler":[null,""],"Alive":[null,""],"Start Time":[null,""],"Cycle Time":[null,""],"Next Run":[null,""],"Last Run":[null,""],"Silent":[null,""],"True":[null,""],"N/A":[null,""],"Show id":[null,""],"Show name":[null,""],"Priority":[null,""],"Added":[null,""],"Queue type":[null,""],"LOW":[null,""],"NORMAL":[null,""],"HIGH":[null,""],"Disk Space":[null,""],"Free space":[null,""],"TV Download Directory":[null,""],"Media Root Directories":[null,""],"Preview of the proposed name changes":[null,""],"All Seasons":[null,""],"select all":[null,""],"Rename Selected":[null,""],"Cancel Rename":[null,""],"Old Location":[null,""],"New Location":[null,""],"Trakt API did not return any results, please check your config.":[null,""],"votes":[null,""],"Remove Show":[null,"הסר סדרה"],"Level":[null,""],"Filter":[null,""],"All non-absolute folder locations are relative to ":[null,""],"Manual Post-Processing":[null,"עיבוד לאחר הורדה ידני"],"Episode Status Management":[null,""],"Update PLEX":[null,""],"Update KODI":[null,""],"Update Emby":[null,""],"Manage Torrents":[null,""],"Missed Subtitle Management":[null,""],"Help & Info":[null,""],"Backup & Restore":[null,""],"Tools":[null,""],"Support SickRage":[null,""],"View Errors":[null,""],"View Warnings":[null,""],"View Log":[null,""],"Check For Updates":[null,""],"Restart":[null,""],"Shutdown":[null,""],"Logout":[null,""],"Server Status":[null,""],"View overview of snatched episodes":[null,""],"Episodes Downloaded":[null,""],"Memory used":[null,""],"Load time":[null,""],"Branch":[null,""],"Now":[null,""]}}}} \ No newline at end of file diff --git a/locale/he_IL/LC_MESSAGES/messages.mo b/locale/he_IL/LC_MESSAGES/messages.mo index 4701bb0548a1348d2c473df4458a10a086702f01..dee7d8319763b52546924f1a4355da47ec52a4c5 100644 Binary files a/locale/he_IL/LC_MESSAGES/messages.mo and b/locale/he_IL/LC_MESSAGES/messages.mo differ diff --git a/locale/he_IL/LC_MESSAGES/messages.po b/locale/he_IL/LC_MESSAGES/messages.po index 672d26d82862e5369540cba38b77360e339853a4..af12e2727c68a4224adf155454707fc6be7bb526 100644 --- a/locale/he_IL/LC_MESSAGES/messages.po +++ b/locale/he_IL/LC_MESSAGES/messages.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: sickrage\n" "Report-Msgid-Bugs-To: miigotu@gmail.com\n" -"POT-Creation-Date: 2017-03-25 09:28-0700\n" -"PO-Revision-Date: 2017-03-25 12:29-0400\n" +"POT-Creation-Date: 2017-03-28 09:10-0700\n" +"PO-Revision-Date: 2017-03-28 12:12-0400\n" "Last-Translator: miigotu <miigotu@gmail.com>\n" "Language-Team: Hebrew\n" "MIME-Version: 1.0\n" @@ -90,7 +90,7 @@ msgid "Biography" msgstr "ביוגרפיה" #: gui/slick/views/config_general.mako:78 gui/slick/views/layouts/main.mako:145 -#: sickbeard/__init__.py:79 sickbeard/webserve.py:3807 +#: sickbeard/__init__.py:79 sickbeard/webserve.py:3778 msgid "History" msgstr "היסטוריה" @@ -103,7 +103,7 @@ msgid "Western" msgstr "מערבי" #: gui/slick/views/config_general.mako:79 gui/slick/views/layouts/main.mako:221 -#: sickbeard/__init__.py:80 sickbeard/webserve.py:2385 +#: sickbeard/__init__.py:80 sickbeard/webserve.py:2384 msgid "News" msgstr "חדשות" @@ -238,6 +238,34 @@ msgstr "התעלם" msgid "Subtitled" msgstr "כולל כתוביות" +#: sickbeard/helpers.py:1887 +msgid "For best results please set the Download Station alias as" +msgstr "" + +#: sickbeard/helpers.py:1888 +msgid "You can check this setting in the Synology DSM" +msgstr "" + +#: sickbeard/helpers.py:1888 sickbeard/helpers.py:1890 +msgid "Control Panel" +msgstr "" + +#: sickbeard/helpers.py:1888 +msgid "Application Portal" +msgstr "" + +#: sickbeard/helpers.py:1889 +msgid "Make sure you allow DSM to be embedded with iFrames too in" +msgstr "" + +#: sickbeard/helpers.py:1890 +msgid "DSM Settings" +msgstr "" + +#: sickbeard/helpers.py:1890 +msgid "Security" +msgstr "" + #: sickbeard/logger.py:474 msgid "<No Filter>" msgstr "<ללא מסנן>" @@ -308,15 +336,15 @@ msgstr "בודק Trakt" msgid "Event" msgstr "אירוע" -#: sickbeard/logger.py:491 sickbeard/webserve.py:1339 sickbeard/webserve.py:1342 -#: sickbeard/webserve.py:1520 sickbeard/webserve.py:1529 sickbeard/webserve.py:1717 -#: sickbeard/webserve.py:1728 sickbeard/webserve.py:1751 sickbeard/webserve.py:1764 -#: sickbeard/webserve.py:1769 sickbeard/webserve.py:1785 sickbeard/webserve.py:1790 -#: sickbeard/webserve.py:1854 sickbeard/webserve.py:1857 sickbeard/webserve.py:1863 -#: sickbeard/webserve.py:1866 sickbeard/webserve.py:1873 sickbeard/webserve.py:1876 -#: sickbeard/webserve.py:1899 sickbeard/webserve.py:1997 sickbeard/webserve.py:2002 -#: sickbeard/webserve.py:2007 sickbeard/webserve.py:2036 sickbeard/webserve.py:2040 -#: sickbeard/webserve.py:2045 +#: sickbeard/logger.py:491 sickbeard/webserve.py:1338 sickbeard/webserve.py:1341 +#: sickbeard/webserve.py:1519 sickbeard/webserve.py:1528 sickbeard/webserve.py:1716 +#: sickbeard/webserve.py:1727 sickbeard/webserve.py:1750 sickbeard/webserve.py:1763 +#: sickbeard/webserve.py:1768 sickbeard/webserve.py:1784 sickbeard/webserve.py:1789 +#: sickbeard/webserve.py:1853 sickbeard/webserve.py:1856 sickbeard/webserve.py:1862 +#: sickbeard/webserve.py:1865 sickbeard/webserve.py:1872 sickbeard/webserve.py:1875 +#: sickbeard/webserve.py:1898 sickbeard/webserve.py:1996 sickbeard/webserve.py:2001 +#: sickbeard/webserve.py:2006 sickbeard/webserve.py:2035 sickbeard/webserve.py:2039 +#: sickbeard/webserve.py:2044 msgid "Error" msgstr "שגיאה" @@ -333,6 +361,7 @@ msgstr "תהליכון" msgid "Main" msgstr "ראשי" +#: gui/slick/js/ajaxEpSearch.js:146 gui/slick/js/ajaxEpSearch.js:147 #: gui/slick/views/inc_home_showList.mako:27 sickbeard/show_queue.py:298 msgid "Loading" msgstr "" @@ -372,867 +401,835 @@ msgstr "גיבוי הגדרות נכשל, מבטל עדכון" msgid "No update needed" msgstr "לא נדרש עדכון" -#: sickbeard/webserve.py:170 +#: sickbeard/webserve.py:171 msgid "Mako Error" msgstr "שגיאת Mako" -#: sickbeard/webserve.py:195 +#: sickbeard/webserve.py:196 msgid "Oops" msgstr "אופס" -#: sickbeard/webserve.py:197 +#: sickbeard/webserve.py:198 msgid "Wrong API key used" msgstr "בוצע שימוש במפתח API שגוי" -#: gui/slick/views/login.mako:34 sickbeard/webserve.py:302 +#: gui/slick/views/login.mako:34 sickbeard/webserve.py:303 msgid "Login" msgstr "התחבר" -#: sickbeard/webserve.py:406 +#: sickbeard/webserve.py:392 msgid "API Key not generated" msgstr "לא נוצר מפתח API" -#: sickbeard/webserve.py:409 +#: sickbeard/webserve.py:395 msgid "API Builder" msgstr "בנאי API" #: gui/slick/views/config_general.mako:77 gui/slick/views/layouts/main.mako:141 -#: sickbeard/webserve.py:512 +#: sickbeard/webserve.py:498 msgid "Schedule" msgstr "לוח שידורים" -#: sickbeard/webserve.py:610 +#: sickbeard/webserve.py:609 msgid "Test 1" msgstr "בדיקה 1" -#: sickbeard/webserve.py:610 +#: sickbeard/webserve.py:609 msgid "This is test number 1" msgstr "זוהי בדיקה מספר 1" -#: sickbeard/webserve.py:611 +#: sickbeard/webserve.py:610 msgid "Test 2" msgstr "בדיקה 2" -#: sickbeard/webserve.py:611 +#: sickbeard/webserve.py:610 msgid "This is test number 2" msgstr "זוהי בדיקה מספר 2" -#: sickbeard/webserve.py:634 +#: sickbeard/webserve.py:633 msgid "You're using the {branch} branch. Please use 'master' unless specifically asked" msgstr "הנך נמצא על ענף {branch}. אנא השתמש בענף 'master', אלא אם כן התבקשת מפורשות" -#: sickbeard/webserve.py:698 sickbeard/webserve.py:703 +#: sickbeard/webserve.py:697 sickbeard/webserve.py:702 msgid "Invalid show parameters" msgstr "הפרמטרים של הסדרה אינם תקינים" -#: sickbeard/webserve.py:710 +#: sickbeard/webserve.py:709 msgid "Invalid parameters" msgstr "פרמטרים לא תקינים" -#: sickbeard/webserve.py:713 sickbeard/webserve.py:1899 +#: sickbeard/webserve.py:712 sickbeard/webserve.py:1898 msgid "Episode couldn't be retrieved" msgstr "לא היתה אפשרות לאחזר את הפרק" -#: sickbeard/webserve.py:759 sickbeard/webserve.py:1268 sickbeard/webserve.py:1297 +#: sickbeard/webserve.py:758 sickbeard/webserve.py:1267 sickbeard/webserve.py:1296 msgid "Home" msgstr "מסך הבית" -#: gui/slick/views/layouts/main.mako:127 sickbeard/webserve.py:759 +#: gui/slick/views/layouts/main.mako:127 sickbeard/webserve.py:758 msgid "Show List" msgstr "רשימת סדרות" -#: sickbeard/webserve.py:807 +#: sickbeard/webserve.py:806 msgid "Error: Unsupported Request. Send jsonp request with 'callback' variable in the query string." msgstr "שגיאה: הבקשה אינה נתמכת. שלח בקשת jsonp עם משתנה 'callback' במחרוזת השאילתה." -#: sickbeard/webserve.py:851 +#: sickbeard/webserve.py:850 msgid "Success. Connected and authenticated" msgstr "הצלחה. מחובר ומאומת" -#: sickbeard/webserve.py:853 +#: sickbeard/webserve.py:852 msgid "Authentication failed. SABnzbd expects" msgstr "אימות נכשל. SABnzbd מצפה ל-" -#: sickbeard/webserve.py:853 +#: sickbeard/webserve.py:852 msgid "as authentication method" msgstr "בתור שיטת אימות" -#: sickbeard/webserve.py:855 +#: sickbeard/webserve.py:854 msgid "Unable to connect to host" msgstr "אינו מסוגל להתחבר לשרת המארח" -#: sickbeard/webserve.py:876 +#: sickbeard/webserve.py:875 msgid "SMS sent successfully" msgstr "מסרון נשלח בהצלחה" -#: sickbeard/webserve.py:878 +#: sickbeard/webserve.py:877 msgid "Problem sending SMS: {message}" msgstr "בעיה בשליחת מסרון: {message}" -#: sickbeard/webserve.py:885 +#: sickbeard/webserve.py:884 msgid "Telegram notification succeeded. Check your Telegram clients to make sure it worked" msgstr "שליחת ההודעה ל-Telegram הצליחה. בדוק את לקוחות ה-Telegram שלך על מנת לוודא שהיא הגיעה" -#: sickbeard/webserve.py:887 +#: sickbeard/webserve.py:886 msgid "Error sending Telegram notification: {message}" msgstr "שליחת ההודעה ל-Telegram נתקלה בשגיאה: {message}" -#: sickbeard/webserve.py:894 +#: sickbeard/webserve.py:893 msgid "join notification succeeded. Check your join clients to make sure it worked" msgstr "שליחת ההודעה ל-Join הצליחה. בדוק את לקוחות ה-Join שלך על מנת לוודא שהיא הגיעה" -#: sickbeard/webserve.py:896 +#: sickbeard/webserve.py:895 msgid "Error sending join notification: {message}" msgstr "שליחת ההודעה ל-Join נתקלה בשגיאה: {message}" -#: sickbeard/webserve.py:906 +#: sickbeard/webserve.py:905 msgid " with password" msgstr " עם הסיסמה" -#: sickbeard/webserve.py:908 +#: sickbeard/webserve.py:907 msgid "Registered and Tested growl successfully {growl_host}" msgstr "רישום Growl ובדיקתו בוצעו בהצלחה {growl_host}" -#: sickbeard/webserve.py:910 +#: sickbeard/webserve.py:909 msgid "Registration and Testing of growl failed {growl_host}" msgstr "רישום Growl ובדיקתו נכשלו {growl_host}" -#: sickbeard/webserve.py:917 +#: sickbeard/webserve.py:916 msgid "Test prowl notice sent successfully" msgstr "הודעת בדיקה נשלחה ל-Prowl בהצלחה" -#: sickbeard/webserve.py:919 +#: sickbeard/webserve.py:918 msgid "Test prowl notice failed" msgstr "שליחת הודעת בדיקה ל-Prowl נכשלה" -#: sickbeard/webserve.py:926 +#: sickbeard/webserve.py:925 msgid "Boxcar2 notification succeeded. Check your Boxcar2 clients to make sure it worked" msgstr "שליחת ההודעה ל-Boxcar2 הצליחה. בדוק את לקוחות ה-Boxcar2 שלך על מנת לוודא שהיא הגיעה" -#: sickbeard/webserve.py:928 +#: sickbeard/webserve.py:927 msgid "Error sending Boxcar2 notification" msgstr "שליחת ההודעה ל-Boxcar2 נתקלה בשגיאה" -#: sickbeard/webserve.py:935 +#: sickbeard/webserve.py:934 msgid "Pushover notification succeeded. Check your Pushover clients to make sure it worked" msgstr "שליחת ההודעה ל-Pushover הצליחה. בדוק את לקוחות ה-Pushover שלך על מנת לוודא שהיא הגיעה" -#: sickbeard/webserve.py:937 +#: sickbeard/webserve.py:936 msgid "Error sending Pushover notification" msgstr "שליחת ההודעה ל-Pushover נתקלה בשגיאה" -#: sickbeard/webserve.py:949 +#: sickbeard/webserve.py:948 msgid "Key verification successful" msgstr "מפתח אומת בהצלחה" -#: sickbeard/webserve.py:951 +#: sickbeard/webserve.py:950 msgid "Unable to verify key" msgstr "אינו מסוגל לאמת מפתח" -#: sickbeard/webserve.py:958 +#: sickbeard/webserve.py:957 msgid "Tweet successful, check your twitter to make sure it worked" msgstr "ציוץ נשלח בהצלחה. בדוק את הטוויטר שלך על מנת לוודא כי עבד" -#: sickbeard/webserve.py:960 +#: sickbeard/webserve.py:959 msgid "Error sending tweet" msgstr "שגיאה בשליחת ציוץ" -#: sickbeard/webserve.py:965 +#: sickbeard/webserve.py:964 msgid "Please enter a valid account sid" msgstr "" -#: sickbeard/webserve.py:968 +#: sickbeard/webserve.py:967 msgid "Please enter a valid auth token" msgstr "" -#: sickbeard/webserve.py:971 +#: sickbeard/webserve.py:970 msgid "Please enter a valid phone sid" msgstr "" -#: sickbeard/webserve.py:974 +#: sickbeard/webserve.py:973 msgid "Please format the phone number as \"+1-###-###-####\"" msgstr "" -#: sickbeard/webserve.py:978 +#: sickbeard/webserve.py:977 msgid "Authorization successful and number ownership verified" msgstr "" -#: sickbeard/webserve.py:980 +#: sickbeard/webserve.py:979 msgid "Error sending sms" msgstr "שגיאה בשליחת מסרון" -#: sickbeard/webserve.py:986 +#: sickbeard/webserve.py:985 msgid "Slack message successful" msgstr "" -#: sickbeard/webserve.py:988 +#: sickbeard/webserve.py:987 msgid "Slack message failed" msgstr "" -#: sickbeard/webserve.py:994 +#: sickbeard/webserve.py:993 msgid "Discord message successful" msgstr "" -#: sickbeard/webserve.py:996 +#: sickbeard/webserve.py:995 msgid "Discord message failed" msgstr "" -#: sickbeard/webserve.py:1006 +#: sickbeard/webserve.py:1005 msgid "Test KODI notice sent successfully to {kodi_host}" msgstr "" -#: sickbeard/webserve.py:1008 +#: sickbeard/webserve.py:1007 msgid "Test KODI notice failed to {kodi_host}" msgstr "" -#: sickbeard/webserve.py:1023 +#: sickbeard/webserve.py:1022 msgid "Successful test notice sent to Plex Home Theater ... {plex_clients}" msgstr "" -#: sickbeard/webserve.py:1025 +#: sickbeard/webserve.py:1024 msgid "Test failed for Plex Home Theater ... {plex_clients}" msgstr "" -#: sickbeard/webserve.py:1028 +#: sickbeard/webserve.py:1027 msgid "Tested Plex Home Theater(s)" msgstr "" -#: sickbeard/webserve.py:1042 +#: sickbeard/webserve.py:1041 msgid "Successful test of Plex Media Server(s) ... {plex_servers}" msgstr "" -#: sickbeard/webserve.py:1044 +#: sickbeard/webserve.py:1043 msgid "Test failed, No Plex Media Server host specified" msgstr "" -#: sickbeard/webserve.py:1046 +#: sickbeard/webserve.py:1045 msgid "Test failed for Plex Media Server(s) ... {plex_servers}" msgstr "" -#: sickbeard/webserve.py:1049 +#: sickbeard/webserve.py:1048 msgid "Tested Plex Media Server host(s)" msgstr "" -#: sickbeard/webserve.py:1057 +#: sickbeard/webserve.py:1056 msgid "Tried sending desktop notification via libnotify" msgstr "" -#: sickbeard/webserve.py:1066 +#: sickbeard/webserve.py:1065 msgid "Test notice sent successfully to {emby_host}" msgstr "" -#: sickbeard/webserve.py:1068 +#: sickbeard/webserve.py:1067 msgid "Test notice failed to {emby_host}" msgstr "" -#: sickbeard/webserve.py:1076 +#: sickbeard/webserve.py:1075 msgid "Successfully started the scan update" msgstr "" -#: sickbeard/webserve.py:1078 +#: sickbeard/webserve.py:1077 msgid "Test failed to start the scan update" msgstr "" -#: sickbeard/webserve.py:1097 +#: sickbeard/webserve.py:1096 msgid "Test notice sent successfully to {nmj2_host}" msgstr "" -#: sickbeard/webserve.py:1099 +#: sickbeard/webserve.py:1098 msgid "Test notice failed to {nmj2_host}" msgstr "" -#: sickbeard/webserve.py:1119 +#: sickbeard/webserve.py:1118 msgid "Trakt Authorized" msgstr "מאומת עם Trakt" -#: sickbeard/webserve.py:1120 +#: sickbeard/webserve.py:1119 msgid "Trakt Not Authorized!" msgstr "לא מאומת עם Trakt!" -#: sickbeard/webserve.py:1184 +#: sickbeard/webserve.py:1183 msgid "Test email sent successfully! Check inbox." msgstr "דוא\"ל בדיקה נשלח בהצלחה! בדוק את תיבת הדואר הנכנס." -#: sickbeard/webserve.py:1186 +#: sickbeard/webserve.py:1185 msgid "ERROR: {last_error}" msgstr "שגיאה: {last_error}" -#: sickbeard/webserve.py:1193 +#: sickbeard/webserve.py:1192 msgid "Test NMA notice sent successfully" msgstr "" -#: sickbeard/webserve.py:1195 +#: sickbeard/webserve.py:1194 msgid "Test NMA notice failed" msgstr "" -#: sickbeard/webserve.py:1202 +#: sickbeard/webserve.py:1201 msgid "Pushalot notification succeeded. Check your Pushalot clients to make sure it worked" msgstr "" -#: sickbeard/webserve.py:1204 +#: sickbeard/webserve.py:1203 msgid "Error sending Pushalot notification" msgstr "" -#: sickbeard/webserve.py:1211 +#: sickbeard/webserve.py:1210 msgid "Pushbullet notification succeeded. Check your device to make sure it worked" msgstr "" -#: sickbeard/webserve.py:1213 sickbeard/webserve.py:1223 sickbeard/webserve.py:1232 +#: sickbeard/webserve.py:1212 sickbeard/webserve.py:1222 sickbeard/webserve.py:1231 msgid "Error sending Pushbullet notification" msgstr "" #: gui/slick/views/displayShow.mako:436 gui/slick/views/inc_home_showList.mako:174 -#: gui/slick/views/manage.mako:49 sickbeard/webserve.py:1249 +#: gui/slick/views/manage.mako:49 sickbeard/webserve.py:1248 msgid "Status" msgstr "מצב" -#: sickbeard/webserve.py:1268 sickbeard/webserve.py:1297 +#: sickbeard/webserve.py:1267 sickbeard/webserve.py:1296 msgid "Restarting SickRage" msgstr "מאתחל את SickRage" -#: sickbeard/webserve.py:1300 +#: sickbeard/webserve.py:1299 msgid "Update Failed" msgstr "עדכון נכשל" -#: sickbeard/webserve.py:1301 +#: sickbeard/webserve.py:1300 msgid "Update wasn't successful, not restarting. Check your log for more information." msgstr "" -#: sickbeard/webserve.py:1308 +#: sickbeard/webserve.py:1307 msgid "Checking out branch" msgstr "" -#: sickbeard/webserve.py:1311 +#: sickbeard/webserve.py:1310 msgid "Already on branch" msgstr "" -#: sickbeard/webserve.py:1339 +#: sickbeard/webserve.py:1338 msgid "Invalid show ID: {show}" msgstr "מזהה סדרה אינו תקין: {show}" -#: sickbeard/webserve.py:1342 sickbeard/webserve.py:1871 sickbeard/webserve.py:2002 -#: sickbeard/webserve.py:2040 +#: sickbeard/webserve.py:1341 sickbeard/webserve.py:1870 sickbeard/webserve.py:2001 +#: sickbeard/webserve.py:2039 msgid "Show not in show list" msgstr "הסדרה לא נמצאת ברשימת הסדרות" #: gui/slick/views/inc_rootDirs.mako:31 gui/slick/views/manage.mako:38 -#: gui/slick/views/manage_massEdit.mako:74 sickbeard/webserve.py:1358 -#: sickbeard/webserve.py:2027 +#: gui/slick/views/manage_massEdit.mako:74 sickbeard/webserve.py:1357 +#: sickbeard/webserve.py:2026 msgid "Edit" msgstr "עריכה" -#: sickbeard/webserve.py:1368 +#: sickbeard/webserve.py:1367 msgid "This show is in the process of being downloaded - the info below is incomplete." msgstr "סדרה זו בתהליכי הורדה - המידע שלהלן אינו שלם." -#: sickbeard/webserve.py:1371 +#: sickbeard/webserve.py:1370 msgid "The information on this page is in the process of being updated." msgstr "המידע בדף זה נמצא בתהליכי עדכון." -#: sickbeard/webserve.py:1374 +#: sickbeard/webserve.py:1373 msgid "The episodes below are currently being refreshed from disk" msgstr "הפרקים שלהלן נמצאים כרגע בתהליכי רענון מהדיסק" -#: sickbeard/webserve.py:1377 +#: sickbeard/webserve.py:1376 msgid "Currently downloading subtitles for this show" msgstr "כרגע מוריד כתוביות עבור סדרה זו" -#: sickbeard/webserve.py:1380 +#: sickbeard/webserve.py:1379 msgid "This show is queued to be refreshed." msgstr "סדרה זו נמצאת בתור לרענון." -#: sickbeard/webserve.py:1383 +#: sickbeard/webserve.py:1382 msgid "This show is queued and awaiting an update." msgstr "סדרה זו נמצאת בתור וממתינה לעדכון." -#: sickbeard/webserve.py:1386 +#: sickbeard/webserve.py:1385 msgid "This show is queued and awaiting subtitles download." msgstr "סדרה זו נמצאת בתור וממתינה להורדת כתוביות." -#: gui/slick/js/core.js:4081 sickbeard/webserve.py:1391 +#: gui/slick/js/core.js:4081 sickbeard/webserve.py:1390 msgid "Resume" msgstr "הפעל" #: gui/slick/js/core.js:4081 gui/slick/views/viewlogs.mako:12 -#: sickbeard/webserve.py:1393 +#: sickbeard/webserve.py:1392 msgid "Pause" msgstr "השהה" #: gui/slick/views/editShow.mako:345 gui/slick/views/inc_blackwhitelist.mako:40 #: gui/slick/views/inc_blackwhitelist.mako:85 gui/slick/views/manage.mako:58 -#: gui/slick/views/manage_failedDownloads.mako:43 sickbeard/webserve.py:1395 +#: gui/slick/views/manage_failedDownloads.mako:43 sickbeard/webserve.py:1394 msgid "Remove" msgstr "הסר" -#: sickbeard/webserve.py:1396 +#: sickbeard/webserve.py:1395 msgid "Re-scan files" msgstr "סרוק קבצים מחדש" -#: sickbeard/webserve.py:1397 +#: sickbeard/webserve.py:1396 msgid "Force Full Update" msgstr "אלץ עדכון מלא" -#: sickbeard/webserve.py:1398 +#: sickbeard/webserve.py:1397 msgid "Update show in KODI" msgstr "עדכון סדרה ב-KODI" -#: sickbeard/webserve.py:1399 +#: sickbeard/webserve.py:1398 msgid "Update show in Emby" msgstr "עדכון סדרה ב-Emby" -#: sickbeard/webserve.py:1402 +#: sickbeard/webserve.py:1401 msgid "Hide specials" msgstr "הסתר ספיישלים" -#: sickbeard/webserve.py:1404 +#: sickbeard/webserve.py:1403 msgid "Show specials" msgstr "הצג ספיישלים" -#: sickbeard/webserve.py:1406 sickbeard/webserve.py:2030 sickbeard/webserve.py:2031 +#: sickbeard/webserve.py:1405 sickbeard/webserve.py:2029 sickbeard/webserve.py:2030 msgid "Preview Rename" msgstr "" -#: sickbeard/webserve.py:1409 +#: sickbeard/webserve.py:1408 msgid "Download Subtitles" msgstr "הורד כתוביות" -#: sickbeard/webserve.py:1498 +#: sickbeard/webserve.py:1497 msgid "No scene exceptions" msgstr "" -#: sickbeard/webserve.py:1516 sickbeard/webserve.py:1764 sickbeard/webserve.py:1785 +#: sickbeard/webserve.py:1515 sickbeard/webserve.py:1763 sickbeard/webserve.py:1784 msgid "Invalid show ID" msgstr "מזהה סדרה אינו תקין" -#: sickbeard/webserve.py:1525 sickbeard/webserve.py:1769 sickbeard/webserve.py:1790 +#: sickbeard/webserve.py:1524 sickbeard/webserve.py:1768 sickbeard/webserve.py:1789 msgid "Unable to find the specified show" msgstr "אינו מסוגל למצוא את הסדרה שצוינה" -#: sickbeard/webserve.py:1550 +#: sickbeard/webserve.py:1549 msgid "Unable to retreive Fansub Groups from AniDB." msgstr "" -#: sickbeard/webserve.py:1559 sickbeard/webserve.py:1561 +#: sickbeard/webserve.py:1558 sickbeard/webserve.py:1560 msgid "Edit Show" msgstr "עריכת סדרה" -#: sickbeard/webserve.py:1637 sickbeard/webserve.py:1671 +#: sickbeard/webserve.py:1636 sickbeard/webserve.py:1670 msgid "Unable to refresh this show: {error}" msgstr "אינו מסוגל לרענן את הסדרה: {error}" -#: sickbeard/webserve.py:1663 +#: sickbeard/webserve.py:1662 msgid "New location <tt>{location}</tt> does not exist" msgstr "" -#: sickbeard/webserve.py:1688 +#: sickbeard/webserve.py:1687 msgid "Unable to update show: {error}" msgstr "אינו מסוגל לעדכן את הסדרה: {error}" -#: sickbeard/webserve.py:1695 +#: sickbeard/webserve.py:1694 msgid "Unable to force an update on scene exceptions of the show." msgstr "אינו מסוגל לאלץ עדכון שמות ה\"זירה\" של הסדרה." -#: sickbeard/webserve.py:1702 +#: sickbeard/webserve.py:1701 msgid "Unable to force an update on scene numbering of the show." msgstr "אינו מסוגל לאלץ עדכון מספור ה\"זירה\" של הסדרה." -#: sickbeard/webserve.py:1708 sickbeard/webserve.py:3540 +#: sickbeard/webserve.py:1707 sickbeard/webserve.py:3539 msgid "{num_errors:d} error{plural} while saving changes:" msgstr "" -#: sickbeard/webserve.py:1719 +#: sickbeard/webserve.py:1718 msgid "{show_name} has been {paused_resumed}" msgstr "הסדרה {show_name} {paused_resumed}" -#: sickbeard/webserve.py:1719 +#: sickbeard/webserve.py:1718 msgid "resumed" msgstr "הופעלה" -#: sickbeard/webserve.py:1719 +#: sickbeard/webserve.py:1718 msgid "paused" msgstr "הופסקה" -#: sickbeard/webserve.py:1731 +#: sickbeard/webserve.py:1730 msgid "{show_name} has been {deleted_trashed} {was_deleted}" msgstr "הסדרה {show_name} {deleted_trashed} {was_deleted}" -#: sickbeard/webserve.py:1733 +#: sickbeard/webserve.py:1732 msgid "deleted" msgstr "הוסרה" -#: sickbeard/webserve.py:1733 +#: sickbeard/webserve.py:1732 msgid "trashed" msgstr "נמחקה" -#: sickbeard/webserve.py:1734 +#: sickbeard/webserve.py:1733 msgid "(media untouched)" msgstr "(ללא שינוי בקבצים)" -#: sickbeard/webserve.py:1734 +#: sickbeard/webserve.py:1733 msgid "(with all related media)" msgstr "(עם כל הקבצים הקשורים)" -#: sickbeard/webserve.py:1755 +#: sickbeard/webserve.py:1754 msgid "Unable to refresh this show." msgstr "אינו מסוגל לרענן סדרה זו." -#: sickbeard/webserve.py:1775 +#: sickbeard/webserve.py:1774 msgid "Unable to update this show." msgstr "אינו מסוגל לעדכן סדרה זו." -#: sickbeard/webserve.py:1814 +#: sickbeard/webserve.py:1813 msgid "Library update command sent to KODI host(s)): {kodi_hosts}" msgstr "" -#: sickbeard/webserve.py:1816 +#: sickbeard/webserve.py:1815 msgid "Unable to contact one or more KODI host(s)): {kodi_hosts}" msgstr "" -#: sickbeard/webserve.py:1825 +#: sickbeard/webserve.py:1824 msgid "Library update command sent to Plex Media Server host: {plex_server}" msgstr "" -#: sickbeard/webserve.py:1828 +#: sickbeard/webserve.py:1827 msgid "Unable to contact Plex Media Server host: {plex_server}" msgstr "" -#: sickbeard/webserve.py:1840 +#: sickbeard/webserve.py:1839 msgid "Library update command sent to Emby host: {emby_host}" msgstr "" -#: sickbeard/webserve.py:1842 +#: sickbeard/webserve.py:1841 msgid "Unable to contact Emby host: {emby_host}" msgstr "" -#: sickbeard/webserve.py:1852 sickbeard/webserve.py:2036 +#: sickbeard/webserve.py:1851 sickbeard/webserve.py:2035 msgid "You must specify a show and at least one episode" msgstr "" -#: sickbeard/webserve.py:1861 +#: sickbeard/webserve.py:1860 msgid "Invalid status" msgstr "" -#: sickbeard/webserve.py:1954 +#: sickbeard/webserve.py:1953 msgid "Backlog was automatically started for the following seasons of <b>{show_name}</b>" msgstr "" #: gui/slick/views/displayShow.mako:74 gui/slick/views/displayShow.mako:79 -#: gui/slick/views/displayShow.mako:404 sickbeard/webserve.py:1961 -#: sickbeard/webserve.py:1980 +#: gui/slick/views/displayShow.mako:404 sickbeard/webserve.py:1960 +#: sickbeard/webserve.py:1979 msgid "Season" msgstr "עונה" -#: sickbeard/webserve.py:1968 +#: sickbeard/webserve.py:1967 msgid "Backlog started" msgstr "" -#: sickbeard/webserve.py:1973 +#: sickbeard/webserve.py:1972 msgid "Retrying Search was automatically started for the following season of <b>{show_name}</b>" msgstr "" -#: sickbeard/webserve.py:1987 +#: sickbeard/webserve.py:1986 msgid "Retry Search started" msgstr "" -#: sickbeard/webserve.py:1997 +#: sickbeard/webserve.py:1996 msgid "You must specify a show" msgstr "" -#: sickbeard/webserve.py:2007 sickbeard/webserve.py:2045 +#: sickbeard/webserve.py:2006 sickbeard/webserve.py:2044 msgid "Can't rename episodes when the show dir is missing." msgstr "לא ניתן לשנות שמות פרקים כאשר ספריית הסדרה חסרה." -#: sickbeard/webserve.py:2212 sickbeard/webserve.py:2233 +#: sickbeard/webserve.py:2211 sickbeard/webserve.py:2232 msgid "New subtitles downloaded: {new_subtitle_languages}" msgstr "" -#: sickbeard/webserve.py:2215 sickbeard/webserve.py:2236 +#: sickbeard/webserve.py:2214 sickbeard/webserve.py:2235 msgid "No subtitles downloaded" msgstr "" #: gui/slick/views/config_general.mako:80 gui/slick/views/layouts/main.mako:222 -#: sickbeard/webserve.py:2363 +#: sickbeard/webserve.py:2362 msgid "IRC" msgstr "" -#: sickbeard/webserve.py:2376 +#: sickbeard/webserve.py:2375 msgid "Could not load news from the repo. [Click here for news.md])({news_url})" msgstr "" -#: sickbeard/webserve.py:2383 sickbeard/webserve.py:2401 +#: sickbeard/webserve.py:2382 sickbeard/webserve.py:2400 msgid "The was a problem connecting to github, please refresh and try again" msgstr "" -#: sickbeard/webserve.py:2398 +#: sickbeard/webserve.py:2397 msgid "Could not load changes from the repo. [Click here for CHANGES.md]({changes_url})" msgstr "" -#: gui/slick/views/layouts/main.mako:223 sickbeard/webserve.py:2403 +#: gui/slick/views/layouts/main.mako:223 sickbeard/webserve.py:2402 msgid "Changelog" msgstr "" -#: gui/slick/views/layouts/main.mako:190 sickbeard/webserve.py:2413 -#: sickbeard/webserve.py:3855 sickbeard/webserve.py:4341 +#: gui/slick/views/layouts/main.mako:190 sickbeard/webserve.py:2412 +#: sickbeard/webserve.py:3826 sickbeard/webserve.py:4312 msgid "Post Processing" msgstr "" -#: gui/slick/views/layouts/main.mako:128 sickbeard/webserve.py:2445 +#: gui/slick/views/layouts/main.mako:128 sickbeard/webserve.py:2444 msgid "Add Shows" msgstr "" -#: sickbeard/webserve.py:2510 +#: sickbeard/webserve.py:2509 msgid "No folders selected." msgstr "" -#: sickbeard/webserve.py:2632 +#: sickbeard/webserve.py:2631 msgid "New Show" msgstr "" -#: sickbeard/webserve.py:2647 +#: sickbeard/webserve.py:2646 msgid "Trending Shows" msgstr "" -#: sickbeard/webserve.py:2649 sickbeard/webserve.py:2772 +#: sickbeard/webserve.py:2648 sickbeard/webserve.py:2771 msgid "Popular Shows" msgstr "" -#: sickbeard/webserve.py:2651 sickbeard/webserve.py:2665 +#: sickbeard/webserve.py:2650 sickbeard/webserve.py:2664 msgid "Most Anticipated Shows" msgstr "" -#: sickbeard/webserve.py:2653 +#: sickbeard/webserve.py:2652 msgid "Most Collected Shows" msgstr "" -#: sickbeard/webserve.py:2655 +#: sickbeard/webserve.py:2654 msgid "Most Watched Shows" msgstr "" -#: sickbeard/webserve.py:2657 +#: sickbeard/webserve.py:2656 msgid "Most Played Shows" msgstr "" -#: sickbeard/webserve.py:2659 +#: sickbeard/webserve.py:2658 msgid "Recommended Shows" msgstr "" -#: gui/slick/views/addShows_trendingShows.mako:60 sickbeard/webserve.py:2661 +#: gui/slick/views/addShows_trendingShows.mako:60 sickbeard/webserve.py:2660 msgid "New Shows" msgstr "סדרות חדשות" -#: gui/slick/views/addShows_trendingShows.mako:61 sickbeard/webserve.py:2663 +#: gui/slick/views/addShows_trendingShows.mako:61 sickbeard/webserve.py:2662 msgid "Season Premieres" msgstr "" -#: sickbeard/webserve.py:2792 sickbeard/webserve.py:2793 +#: sickbeard/webserve.py:2791 sickbeard/webserve.py:2792 msgid "Existing Show" msgstr "" -#: sickbeard/webserve.py:2871 +#: sickbeard/webserve.py:2870 msgid "No root directories setup, please go back and add one." msgstr "" -#: sickbeard/webserve.py:2883 sickbeard/webserve.py:3002 +#: sickbeard/webserve.py:2882 sickbeard/webserve.py:3001 msgid "Show added" msgstr "" -#: sickbeard/webserve.py:2883 +#: sickbeard/webserve.py:2882 msgid "Adding the specified show {show_name}" msgstr "" -#: sickbeard/webserve.py:2924 +#: sickbeard/webserve.py:2923 msgid "Missing params, no Indexer ID or folder: {show_to_add} and {root_dir}/{show_path}" msgstr "" -#: sickbeard/webserve.py:2933 +#: sickbeard/webserve.py:2932 msgid "Unknown error. Unable to add show due to problem with show selection." msgstr "" -#: sickbeard/webserve.py:2957 sickbeard/webserve.py:2967 +#: sickbeard/webserve.py:2956 sickbeard/webserve.py:2966 msgid "Unable to add show" msgstr "" -#: sickbeard/webserve.py:2957 +#: sickbeard/webserve.py:2956 msgid "Folder {show_dir} exists already" msgstr "" -#: sickbeard/webserve.py:2968 +#: sickbeard/webserve.py:2967 msgid "Unable to create the folder {show_dir}, can't add the show" msgstr "" -#: sickbeard/webserve.py:3002 +#: sickbeard/webserve.py:3001 msgid "Adding the specified show into {show_dir}" msgstr "" -#: sickbeard/webserve.py:3078 +#: sickbeard/webserve.py:3077 msgid "Shows Added" msgstr "" -#: sickbeard/webserve.py:3079 +#: sickbeard/webserve.py:3078 msgid "Automatically added {num_shows} from their existing metadata files" msgstr "" -#: gui/slick/views/layouts/main.mako:153 sickbeard/webserve.py:3096 +#: gui/slick/views/layouts/main.mako:153 sickbeard/webserve.py:3095 msgid "Mass Update" msgstr "" -#: sickbeard/webserve.py:3134 sickbeard/webserve.py:3161 sickbeard/webserve.py:3237 -#: sickbeard/webserve.py:3238 +#: sickbeard/webserve.py:3133 sickbeard/webserve.py:3160 sickbeard/webserve.py:3236 +#: sickbeard/webserve.py:3237 msgid "Episode Overview" msgstr "" -#: sickbeard/webserve.py:3270 +#: sickbeard/webserve.py:3269 msgid "Missing Subtitles" msgstr "" -#: gui/slick/views/layouts/main.mako:154 sickbeard/webserve.py:3356 -#: sickbeard/webserve.py:3357 +#: gui/slick/views/layouts/main.mako:154 sickbeard/webserve.py:3355 +#: sickbeard/webserve.py:3356 msgid "Backlog Overview" msgstr "" -#: sickbeard/webserve.py:3481 +#: sickbeard/webserve.py:3480 msgid "Mass Edit" msgstr "" -#: sickbeard/webserve.py:3586 +#: sickbeard/webserve.py:3585 msgid "Unable to update show: {excption_format}" msgstr "" -#: sickbeard/webserve.py:3594 +#: sickbeard/webserve.py:3593 msgid "Unable to refresh show {show_name}: {excption_format}" msgstr "" -#: sickbeard/webserve.py:3605 +#: sickbeard/webserve.py:3604 msgid "Errors encountered" msgstr "" -#: gui/slick/views/config_general.mako:261 sickbeard/webserve.py:3611 +#: gui/slick/views/config_general.mako:261 sickbeard/webserve.py:3610 msgid "Updates" msgstr "" -#: sickbeard/webserve.py:3616 +#: sickbeard/webserve.py:3615 msgid "Refreshes" msgstr "" -#: sickbeard/webserve.py:3621 +#: sickbeard/webserve.py:3620 msgid "Renames" msgstr "" #: gui/slick/views/displayShow.mako:260 gui/slick/views/displayShow.mako:435 #: gui/slick/views/editShow.mako:119 gui/slick/views/inc_addShowOptions.mako:20 -#: gui/slick/views/manage_massEdit.mako:262 sickbeard/webserve.py:3626 -#: sickbeard/webserve.py:5244 +#: gui/slick/views/manage_massEdit.mako:262 sickbeard/webserve.py:3625 +#: sickbeard/webserve.py:5215 msgid "Subtitles" msgstr "כתוביות" -#: sickbeard/webserve.py:3631 +#: sickbeard/webserve.py:3630 msgid "The following actions were queued" msgstr "" -#: sickbeard/webserve.py:3651 -msgid "For best results please set the Download Station alias as" -msgstr "" - -#: sickbeard/webserve.py:3652 -msgid "You can check this setting in the Synology DSM" -msgstr "" - -#: sickbeard/webserve.py:3652 sickbeard/webserve.py:3654 -msgid "Control Panel" -msgstr "" - -#: sickbeard/webserve.py:3652 -msgid "Application Portal" -msgstr "" - -#: sickbeard/webserve.py:3653 -msgid "Make sure you allow DSM to be embedded with iFrames too in" -msgstr "" - -#: sickbeard/webserve.py:3654 -msgid "DSM Settings" -msgstr "" - -#: sickbeard/webserve.py:3654 -msgid "Security" -msgstr "" - -#: gui/slick/views/layouts/main.mako:167 sickbeard/webserve.py:3662 -msgid "Manage Torrents" -msgstr "" - -#: gui/slick/views/layouts/main.mako:170 sickbeard/webserve.py:3683 +#: gui/slick/views/layouts/main.mako:170 sickbeard/webserve.py:3654 msgid "Failed Downloads" msgstr "" -#: gui/slick/views/layouts/main.mako:155 sickbeard/webserve.py:3701 +#: gui/slick/views/layouts/main.mako:155 sickbeard/webserve.py:3672 msgid "Manage Searches" msgstr "ניהול חיפושים" -#: sickbeard/webserve.py:3709 +#: sickbeard/webserve.py:3680 msgid "Backlog search started" msgstr "" -#: sickbeard/webserve.py:3719 +#: sickbeard/webserve.py:3690 msgid "Daily search started" msgstr "חיפוש יומי החל" -#: sickbeard/webserve.py:3728 +#: sickbeard/webserve.py:3699 msgid "Find propers search started" msgstr "" -#: sickbeard/webserve.py:3737 +#: sickbeard/webserve.py:3708 msgid "Subtitle search started" msgstr "" -#: sickbeard/webserve.py:3801 +#: sickbeard/webserve.py:3772 msgid "Remove Selected" msgstr "" -#: sickbeard/webserve.py:3802 +#: sickbeard/webserve.py:3773 msgid "Clear History" msgstr "" -#: sickbeard/webserve.py:3803 +#: sickbeard/webserve.py:3774 msgid "Trim History" msgstr "" -#: sickbeard/webserve.py:3823 +#: sickbeard/webserve.py:3794 msgid "Selected history entries removed" msgstr "" -#: sickbeard/webserve.py:3830 +#: sickbeard/webserve.py:3801 msgid "History cleared" msgstr "" -#: sickbeard/webserve.py:3837 +#: sickbeard/webserve.py:3808 msgid "Removed history entries older than 30 days" msgstr "" -#: gui/slick/views/layouts/main.mako:185 sickbeard/webserve.py:3850 +#: gui/slick/views/layouts/main.mako:185 sickbeard/webserve.py:3821 msgid "General" msgstr "" -#: sickbeard/webserve.py:3851 sickbeard/webserve.py:4143 +#: sickbeard/webserve.py:3822 sickbeard/webserve.py:4114 msgid "Backup/Restore" msgstr "" -#: gui/slick/views/layouts/main.mako:187 sickbeard/webserve.py:3852 -#: sickbeard/webserve.py:4206 +#: gui/slick/views/layouts/main.mako:187 sickbeard/webserve.py:3823 +#: sickbeard/webserve.py:4177 msgid "Search Settings" msgstr "" -#: gui/slick/views/layouts/main.mako:188 sickbeard/webserve.py:3853 -#: sickbeard/webserve.py:4518 +#: gui/slick/views/layouts/main.mako:188 sickbeard/webserve.py:3824 +#: sickbeard/webserve.py:4489 msgid "Search Providers" msgstr "" -#: gui/slick/views/layouts/main.mako:189 sickbeard/webserve.py:3854 +#: gui/slick/views/layouts/main.mako:189 sickbeard/webserve.py:3825 msgid "Subtitles Settings" msgstr "" -#: gui/slick/views/layouts/main.mako:191 sickbeard/webserve.py:3856 -#: sickbeard/webserve.py:4964 +#: gui/slick/views/layouts/main.mako:191 sickbeard/webserve.py:3827 +#: sickbeard/webserve.py:4935 msgid "Notifications" msgstr "" @@ -1240,142 +1237,142 @@ msgstr "" #: gui/slick/views/home.mako:35 gui/slick/views/inc_addShowOptions.mako:79 #: gui/slick/views/inc_home_showList.mako:179 gui/slick/views/layouts/main.mako:192 #: gui/slick/views/manage.mako:44 gui/slick/views/manage_massEdit.mako:202 -#: sickbeard/webserve.py:3857 sickbeard/webserve.py:5309 +#: sickbeard/webserve.py:3828 sickbeard/webserve.py:5280 msgid "Anime" msgstr "אנימה" -#: sickbeard/webserve.py:3895 sickbeard/webserve.py:3896 +#: sickbeard/webserve.py:3866 sickbeard/webserve.py:3867 msgid "SickRage Configuration" msgstr "" -#: sickbeard/webserve.py:3910 +#: sickbeard/webserve.py:3881 msgid "Config - Shares" msgstr "" -#: sickbeard/webserve.py:3910 +#: sickbeard/webserve.py:3881 msgid "Windows Shares Configuration" msgstr "" -#: sickbeard/webserve.py:3937 +#: sickbeard/webserve.py:3908 msgid "Saved Shares" msgstr "" -#: sickbeard/webserve.py:3937 +#: sickbeard/webserve.py:3908 msgid "Your Windows share settings have been saved" msgstr "" -#: sickbeard/webserve.py:3948 +#: sickbeard/webserve.py:3919 msgid "Config - General" msgstr "" -#: sickbeard/webserve.py:3948 +#: sickbeard/webserve.py:3919 msgid "General Configuration" msgstr "" -#: sickbeard/webserve.py:3988 +#: sickbeard/webserve.py:3959 msgid "Saved Defaults" msgstr "" -#: sickbeard/webserve.py:3988 +#: sickbeard/webserve.py:3959 msgid "Your \"add show\" defaults have been set to your current selections." msgstr "" -#: sickbeard/webserve.py:4095 +#: sickbeard/webserve.py:4066 msgid "Unable to create directory {directory}, log directory not changed." msgstr "" -#: sickbeard/webserve.py:4103 +#: sickbeard/webserve.py:4074 msgid "Unable to create directory {directory}, https cert directory not changed." msgstr "" -#: sickbeard/webserve.py:4107 +#: sickbeard/webserve.py:4078 msgid "Unable to create directory {directory}, https key directory not changed." msgstr "" -#: sickbeard/webserve.py:4126 sickbeard/webserve.py:4324 sickbeard/webserve.py:4456 -#: sickbeard/webserve.py:5227 +#: sickbeard/webserve.py:4097 sickbeard/webserve.py:4295 sickbeard/webserve.py:4427 +#: sickbeard/webserve.py:5198 msgid "Error(s) Saving Configuration" msgstr "" -#: sickbeard/webserve.py:4129 sickbeard/webserve.py:4327 sickbeard/webserve.py:4458 -#: sickbeard/webserve.py:4950 sickbeard/webserve.py:5230 sickbeard/webserve.py:5294 -#: sickbeard/webserve.py:5323 +#: sickbeard/webserve.py:4100 sickbeard/webserve.py:4298 sickbeard/webserve.py:4429 +#: sickbeard/webserve.py:4921 sickbeard/webserve.py:5201 sickbeard/webserve.py:5265 +#: sickbeard/webserve.py:5294 msgid "Configuration Saved" msgstr "" -#: sickbeard/webserve.py:4142 +#: sickbeard/webserve.py:4113 msgid "Config - Backup/Restore" msgstr "" -#: sickbeard/webserve.py:4205 +#: sickbeard/webserve.py:4176 msgid "Config - Episode Search" msgstr "" -#: sickbeard/webserve.py:4340 +#: sickbeard/webserve.py:4311 msgid "Config - Post Processing" msgstr "" -#: sickbeard/webserve.py:4380 +#: sickbeard/webserve.py:4351 msgid "Unpacking Not Supported, disabling unpack setting" msgstr "" -#: sickbeard/webserve.py:4431 +#: sickbeard/webserve.py:4402 msgid "You tried saving an invalid normal naming config, not saving your naming settings" msgstr "" -#: sickbeard/webserve.py:4439 +#: sickbeard/webserve.py:4410 msgid "You tried saving an invalid anime naming config, not saving your naming settings" msgstr "" -#: sickbeard/webserve.py:4517 +#: sickbeard/webserve.py:4488 msgid "Config - Providers" msgstr "" -#: sickbeard/webserve.py:4547 +#: sickbeard/webserve.py:4518 msgid "No Provider Name specified" msgstr "" -#: sickbeard/webserve.py:4549 +#: sickbeard/webserve.py:4520 msgid "No Provider Url specified" msgstr "" -#: sickbeard/webserve.py:4551 +#: sickbeard/webserve.py:4522 msgid "No Provider Api key specified" msgstr "" -#: sickbeard/webserve.py:4963 +#: sickbeard/webserve.py:4934 msgid "Config - Notifications" msgstr "" -#: sickbeard/webserve.py:5243 +#: sickbeard/webserve.py:5214 msgid "Config - Subtitles" msgstr "" -#: sickbeard/webserve.py:5308 +#: sickbeard/webserve.py:5279 msgid "Config - Anime" msgstr "" -#: sickbeard/webserve.py:5336 +#: sickbeard/webserve.py:5307 msgid "Clear Errors" msgstr "" -#: sickbeard/webserve.py:5342 +#: sickbeard/webserve.py:5313 msgid "Clear Warnings" msgstr "" -#: sickbeard/webserve.py:5348 +#: sickbeard/webserve.py:5319 msgid "Submit Errors" msgstr "" -#: sickbeard/webserve.py:5363 +#: sickbeard/webserve.py:5334 msgid "Logs & Errors" msgstr "" -#: sickbeard/webserve.py:5388 +#: sickbeard/webserve.py:5359 msgid "Log File" msgstr "" -#: sickbeard/webserve.py:5388 +#: sickbeard/webserve.py:5359 msgid "Logs" msgstr "" @@ -1383,30 +1380,166 @@ msgstr "" msgid "This is a test notification from SickRage" msgstr "" -#: gui/slick/js/core.js:481 gui/slick/js/core.js:502 gui/slick/js/core.js:524 -#: gui/slick/js/core.js:548 gui/slick/js/core.js:573 gui/slick/js/core.js:596 -#: gui/slick/js/core.js:625 gui/slick/js/core.js:645 gui/slick/js/core.js:690 -#: gui/slick/js/core.js:769 gui/slick/js/core.js:829 gui/slick/js/core.js:849 -#: gui/slick/js/core.js:879 gui/slick/js/core.js:909 gui/slick/js/core.js:969 -#: gui/slick/js/core.js:1046 gui/slick/js/core.js:1066 gui/slick/js/core.js:1085 +#: gui/slick/js/browser.js:6 +msgid "Choose Directory" +msgstr "" + +#: gui/slick/js/core.js:443 +msgid "Select log file folder location" +msgstr "" + +#: gui/slick/js/core.js:445 +msgid "Select CSS file" +msgstr "" + +#: gui/slick/js/core.js:469 +msgid "Select backup folder to save to" +msgstr "" + +#: gui/slick/js/core.js:470 +msgid "Select backup files to restore" +msgstr "" + +#: gui/slick/js/core.js:479 gui/slick/js/core.js:500 gui/slick/js/core.js:522 +#: gui/slick/js/core.js:546 gui/slick/js/core.js:571 gui/slick/js/core.js:594 +#: gui/slick/js/core.js:623 gui/slick/js/core.js:643 gui/slick/js/core.js:688 +#: gui/slick/js/core.js:767 gui/slick/js/core.js:827 gui/slick/js/core.js:847 +#: gui/slick/js/core.js:877 gui/slick/js/core.js:907 gui/slick/js/core.js:967 +#: gui/slick/js/core.js:1044 gui/slick/js/core.js:1064 gui/slick/js/core.js:1083 msgid "Please fill out the necessary fields above." msgstr "" -#: gui/slick/js/core.js:1328 gui/slick/js/core.js:1378 gui/slick/js/core.js:1427 -#: gui/slick/js/core.js:1493 +#: gui/slick/js/core.js:680 +msgid "<b>Step 1:</b> Confirm Authorization" +msgstr "" + +#: gui/slick/js/core.js:977 +msgid "Check blacklist name; the value needs to be a trakt slug" +msgstr "" + +#: gui/slick/js/core.js:1022 +msgid "You must provide a recipient email address!" +msgstr "" + +#: gui/slick/js/core.js:1107 +msgid "You didn't supply a Pushbullet api key" +msgstr "" + +#: gui/slick/js/core.js:1133 gui/slick/js/core.js:1162 +msgid "Don't forget to save your new pushbullet settings." +msgstr "" + +#: gui/slick/js/core.js:1262 +msgid "Select TV Download Directory" +msgstr "" + +#: gui/slick/js/core.js:1263 +msgid "Select Unpack Directory" +msgstr "" + +#: gui/slick/js/core.js:1326 gui/slick/js/core.js:1376 gui/slick/js/core.js:1425 +#: gui/slick/js/core.js:1491 msgid "This pattern is invalid." msgstr "" -#: gui/slick/js/core.js:1336 gui/slick/js/core.js:1386 gui/slick/js/core.js:1435 -#: gui/slick/js/core.js:1501 +#: gui/slick/js/core.js:1334 gui/slick/js/core.js:1384 gui/slick/js/core.js:1433 +#: gui/slick/js/core.js:1499 msgid "This pattern would be invalid without the folders, using it will force \"Season Folders\" on for all shows." msgstr "" -#: gui/slick/js/core.js:1344 gui/slick/js/core.js:1394 gui/slick/js/core.js:1443 -#: gui/slick/js/core.js:1509 +#: gui/slick/js/core.js:1342 gui/slick/js/core.js:1392 gui/slick/js/core.js:1441 +#: gui/slick/js/core.js:1507 msgid "This pattern is valid." msgstr "" +#: gui/slick/js/core.js:1818 +msgid "Select .nzb black hole/watch location" +msgstr "" + +#: gui/slick/js/core.js:1819 +msgid "Select .torrent black hole/watch location" +msgstr "" + +#: gui/slick/js/core.js:1820 +msgid "Select .torrent download location" +msgstr "" + +#: gui/slick/js/core.js:1900 +msgid "Minimum seeding time is" +msgstr "" + +#: gui/slick/js/core.js:1902 +msgid "URL to your uTorrent client (e.g. http://localhost:8000)" +msgstr "" + +#: gui/slick/js/core.js:1905 +msgid "Stop seeding when inactive for" +msgstr "" + +#: gui/slick/js/core.js:1911 +msgid "URL to your Transmission client (e.g. http://localhost:9091)" +msgstr "" + +#: gui/slick/js/core.js:1921 +msgid "URL to your Deluge client (e.g. http://localhost:8112)" +msgstr "" + +#: gui/slick/js/core.js:1930 +msgid "IP or Hostname of your Deluge Daemon (e.g. scgi://localhost:58846)" +msgstr "" + +#: gui/slick/js/core.js:1937 +msgid "URL to your Synology DS client (e.g. http://localhost:5000)" +msgstr "" + +#: gui/slick/js/core.js:1941 +msgid "URL to your rTorrent client (e.g. scgi://localhost:5000 <br> or https://localhost/rutorrent/plugins/httprpc/action.php)" +msgstr "" + +#: gui/slick/js/core.js:1952 +msgid "URL to your qBittorrent client (e.g. http://localhost:8080)" +msgstr "" + +#: gui/slick/js/core.js:1962 +msgid "URL to your MLDonkey (e.g. http://localhost:4080)" +msgstr "" + +#: gui/slick/js/core.js:1974 +msgid "URL to your putio client (e.g. http://localhost:8080)" +msgstr "" + +#: gui/slick/js/core.js:1975 +msgid "<a herf=\"https://app.put.io/oauth/apps/new\" target=\"_blank\"> Create a new OAuth app for put.io</a>" +msgstr "" + +#: gui/slick/js/core.js:1977 +msgid "Put.io Parent Folder" +msgstr "" + +#: gui/slick/js/core.js:1978 +msgid "Put.io OAuth Token" +msgstr "" + +#: gui/slick/js/core.js:3383 gui/slick/views/displayShow.mako:410 +msgid "Show Episodes" +msgstr "הצג פרקים" + +#: gui/slick/js/core.js:3388 gui/slick/views/displayShow.mako:408 +msgid "Hide Episodes" +msgstr "" + +#: gui/slick/js/core.js:3396 +msgid "Select Show Location" +msgstr "" + +#: gui/slick/js/core.js:3460 +msgid "Select Unprocessed Episode Folder" +msgstr "" + +#: gui/slick/js/core.js:3790 +msgid "DELETED" +msgstr "" + #: gui/slick/js/core.js:4082 msgid "Resume updating the log on this page." msgstr "" @@ -1415,6 +1548,26 @@ msgstr "" msgid "Pause updating the log on this page." msgstr "" +#: gui/slick/js/core.js:4323 +msgid "searching {searchingFor}..." +msgstr "" + +#: gui/slick/js/core.js:4334 +msgid "search timed out, try again or try another indexer" +msgstr "" + +#: gui/slick/js/core.js:4503 +msgid "loading folders..." +msgstr "" + +#: gui/slick/js/parsers.js:7 gui/slick/js/parsers.js:8 +#: gui/slick/js/plotTooltip.js:6 gui/slick/js/sceneExceptionsTooltip.js:6 +#: gui/slick/views/inc_home_showList.mako:209 +#: gui/slick/views/inc_home_showList.mako:215 +#: gui/slick/views/inc_home_showList.mako:231 +msgid "Loading..." +msgstr "" + #: gui/slick/views/404.mako:5 msgid "You have reached this page by accident, please check the url." msgstr "" @@ -5711,14 +5864,6 @@ msgstr "" msgid "Select Columns" msgstr "" -#: gui/slick/views/displayShow.mako:408 -msgid "Hide Episodes" -msgstr "" - -#: gui/slick/views/displayShow.mako:410 -msgid "Show Episodes" -msgstr "הצג פרקים" - #: gui/slick/views/displayShow.mako:424 msgid "NFO" msgstr "" @@ -6232,12 +6377,6 @@ msgstr "" msgid "loading" msgstr "" -#: gui/slick/views/inc_home_showList.mako:209 -#: gui/slick/views/inc_home_showList.mako:215 -#: gui/slick/views/inc_home_showList.mako:231 -msgid "Loading..." -msgstr "" - #: gui/slick/views/inc_qualityChooser.mako:31 msgid "<p><b><u>Preferred</u></b> qualities will replace those in <b><u>allowed</u></b>, even if they are lower.</p>" msgstr "" @@ -6775,6 +6914,10 @@ msgstr "" msgid "Update Emby" msgstr "" +#: gui/slick/views/layouts/main.mako:167 +msgid "Manage Torrents" +msgstr "" + #: gui/slick/views/layouts/main.mako:173 msgid "Missed Subtitle Management" msgstr "" diff --git a/locale/hr_HR/LC_MESSAGES/messages.json b/locale/hr_HR/LC_MESSAGES/messages.json index 5400055df94bf204ae6b2e7508a47e60b81a7171..bdf3923b7774e6b1a1fd326361effcd7d8f70a44 100644 --- a/locale/hr_HR/LC_MESSAGES/messages.json +++ b/locale/hr_HR/LC_MESSAGES/messages.json @@ -1 +1 @@ -{"messages":{"domain":"messages","locale_data":{"messages":{"100":[null,""],"250":[null,""],"500":[null,""],"":{"domain":"messages","plural_forms":"nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);","lang":"hr_HR"},"Drama":[null,""],"Mystery":[null,""],"Science-Fiction":[null,""],"Crime":[null,""],"Action":[null,""],"Comedy":[null,""],"Thriller":[null,""],"Animation":[null,""],"Family":[null,""],"Fantasy":[null,""],"Adventure":[null,""],"Horror":[null,""],"Film-Noir":[null,""],"Sci-Fi":[null,""],"Romance":[null,""],"Sport":[null,""],"War":[null,""],"Biography":[null,""],"History":[null,""],"Music":[null,""],"Western":[null,""],"News":[null,""],"Sitcom":[null,""],"Reality-TV":[null,""],"Documentary":[null,""],"Game-Show":[null,""],"Musical":[null,""],"Talk-Show":[null,""],"Started Download":[null,""],"Download Finished":[null,""],"Subtitle Download Finished":[null,""],"SickRage Updated":[null,""],"SickRage Updated To Commit#: ":[null,""],"SickRage new login":[null,""],"New login from IP: {0}. http://geomaplookup.net/?ip={0}":[null,""],"Repeat":[null,""],"Repeat (Separated)":[null,""],"Extend":[null,""],"Extend (Limited)":[null,""],"Extend (Limited, E-prefixed)":[null,""],"Downloaded":[null,""],"Snatched":[null,""],"Snatched (Proper)":[null,""],"Failed":[null,""],"Snatched (Best)":[null,""],"Archived":[null,""],"Unknown":[null,""],"Unaired":[null,""],"Skipped":[null,""],"Wanted":[null,""],"Ignored":[null,""],"Subtitled":[null,""],"<No Filter>":[null,""],"Daily Searcher":[null,""],"Backlog":[null,""],"Show Updater":[null,""],"Check Version":[null,""],"Show Queue":[null,""],"Search Queue (All)":[null,""],"Search Queue (Daily Searcher)":[null,""],"Search Queue (Backlog)":[null,""],"Search Queue (Manual)":[null,""],"Search Queue (Retry/Failed)":[null,""],"Search Queue (RSS)":[null,""],"Find Propers":[null,""],"Postprocessor":[null,""],"Find Subtitles":[null,""],"Trakt Checker":[null,""],"Event":[null,""],"Error":[null,""],"Tornado":[null,""],"Thread":[null,""],"Main":[null,""],"Loading":[null,""],"New update found for SickRage, starting auto-updater":[null,""],"Update was successful":[null,""],"Update failed!":[null,""],"Backup":[null,""],"Config backup in progress...":[null,""],"Config backup successful, updating...":[null,""],"Config backup failed, aborting update":[null,""],"No update needed":[null,""],"Mako Error":[null,""],"Oops":[null,""],"Wrong API key used":[null,""],"Login":[null,""],"API Key not generated":[null,""],"API Builder":[null,""],"Schedule":[null,""],"Test 1":[null,""],"This is test number 1":[null,""],"Test 2":[null,""],"This is test number 2":[null,""],"You're using the {branch} branch. Please use 'master' unless specifically asked":[null,""],"Invalid show parameters":[null,""],"Invalid parameters":[null,""],"Episode couldn't be retrieved":[null,""],"Home":[null,""],"Show List":[null,""],"Error: Unsupported Request. Send jsonp request with 'callback' variable in the query string.":[null,""],"Success. Connected and authenticated":[null,""],"Authentication failed. SABnzbd expects":[null,""],"as authentication method":[null,""],"Unable to connect to host":[null,""],"SMS sent successfully":[null,""],"Problem sending SMS: {message}":[null,""],"Telegram notification succeeded. Check your Telegram clients to make sure it worked":[null,""],"Error sending Telegram notification: {message}":[null,""],"join notification succeeded. Check your join clients to make sure it worked":[null,""],"Error sending join notification: {message}":[null,""]," with password":[null,""],"Registered and Tested growl successfully {growl_host}":[null,""],"Registration and Testing of growl failed {growl_host}":[null,""],"Test prowl notice sent successfully":[null,""],"Test prowl notice failed":[null,""],"Boxcar2 notification succeeded. Check your Boxcar2 clients to make sure it worked":[null,""],"Error sending Boxcar2 notification":[null,""],"Pushover notification succeeded. Check your Pushover clients to make sure it worked":[null,""],"Error sending Pushover notification":[null,""],"Key verification successful":[null,""],"Unable to verify key":[null,""],"Tweet successful, check your twitter to make sure it worked":[null,""],"Error sending tweet":[null,""],"Please enter a valid account sid":[null,""],"Please enter a valid auth token":[null,""],"Please enter a valid phone sid":[null,""],"Please format the phone number as \"+1-###-###-####\"":[null,""],"Authorization successful and number ownership verified":[null,""],"Error sending sms":[null,""],"Slack message successful":[null,""],"Slack message failed":[null,""],"Discord message successful":[null,""],"Discord message failed":[null,""],"Test KODI notice sent successfully to {kodi_host}":[null,""],"Test KODI notice failed to {kodi_host}":[null,""],"Successful test notice sent to Plex Home Theater ... {plex_clients}":[null,""],"Test failed for Plex Home Theater ... {plex_clients}":[null,""],"Tested Plex Home Theater(s)":[null,""],"Successful test of Plex Media Server(s) ... {plex_servers}":[null,""],"Test failed, No Plex Media Server host specified":[null,""],"Test failed for Plex Media Server(s) ... {plex_servers}":[null,""],"Tested Plex Media Server host(s)":[null,""],"Tried sending desktop notification via libnotify":[null,""],"Test notice sent successfully to {emby_host}":[null,""],"Test notice failed to {emby_host}":[null,""],"Successfully started the scan update":[null,""],"Test failed to start the scan update":[null,""],"Test notice sent successfully to {nmj2_host}":[null,""],"Test notice failed to {nmj2_host}":[null,""],"Trakt Authorized":[null,""],"Trakt Not Authorized!":[null,""],"Test email sent successfully! Check inbox.":[null,""],"ERROR: {last_error}":[null,""],"Test NMA notice sent successfully":[null,""],"Test NMA notice failed":[null,""],"Pushalot notification succeeded. Check your Pushalot clients to make sure it worked":[null,""],"Error sending Pushalot notification":[null,""],"Pushbullet notification succeeded. Check your device to make sure it worked":[null,""],"Error sending Pushbullet notification":[null,""],"Status":[null,""],"Restarting SickRage":[null,""],"Update Failed":[null,""],"Update wasn't successful, not restarting. Check your log for more information.":[null,""],"Checking out branch":[null,""],"Already on branch":[null,""],"Invalid show ID: {show}":[null,""],"Show not in show list":[null,""],"Edit":[null,""],"This show is in the process of being downloaded - the info below is incomplete.":[null,""],"The information on this page is in the process of being updated.":[null,""],"The episodes below are currently being refreshed from disk":[null,""],"Currently downloading subtitles for this show":[null,""],"This show is queued to be refreshed.":[null,""],"This show is queued and awaiting an update.":[null,""],"This show is queued and awaiting subtitles download.":[null,""],"Resume":[null,""],"Pause":[null,""],"Remove":[null,""],"Re-scan files":[null,""],"Force Full Update":[null,""],"Update show in KODI":[null,""],"Update show in Emby":[null,""],"Hide specials":[null,""],"Show specials":[null,""],"Preview Rename":[null,""],"Download Subtitles":[null,""],"No scene exceptions":[null,""],"Invalid show ID":[null,""],"Unable to find the specified show":[null,""],"Unable to retreive Fansub Groups from AniDB.":[null,""],"Edit Show":[null,""],"Unable to refresh this show: {error}":[null,""],"New location <tt>{location}</tt> does not exist":[null,""],"Unable to update show: {error}":[null,""],"Unable to force an update on scene exceptions of the show.":[null,""],"Unable to force an update on scene numbering of the show.":[null,""],"{num_errors:d} error{plural} while saving changes:":[null,""],"{show_name} has been {paused_resumed}":[null,""],"resumed":[null,""],"paused":[null,""],"{show_name} has been {deleted_trashed} {was_deleted}":[null,""],"deleted":[null,""],"trashed":[null,""],"(media untouched)":[null,""],"(with all related media)":[null,""],"Unable to refresh this show.":[null,""],"Unable to update this show.":[null,""],"Library update command sent to KODI host(s)): {kodi_hosts}":[null,""],"Unable to contact one or more KODI host(s)): {kodi_hosts}":[null,""],"Library update command sent to Plex Media Server host: {plex_server}":[null,""],"Unable to contact Plex Media Server host: {plex_server}":[null,""],"Library update command sent to Emby host: {emby_host}":[null,""],"Unable to contact Emby host: {emby_host}":[null,""],"You must specify a show and at least one episode":[null,""],"Invalid status":[null,""],"Backlog was automatically started for the following seasons of <b>{show_name}</b>":[null,""],"Season":[null,""],"Backlog started":[null,""],"Retrying Search was automatically started for the following season of <b>{show_name}</b>":[null,""],"Retry Search started":[null,""],"You must specify a show":[null,""],"Can't rename episodes when the show dir is missing.":[null,""],"New subtitles downloaded: {new_subtitle_languages}":[null,""],"No subtitles downloaded":[null,""],"IRC":[null,""],"Could not load news from the repo. [Click here for news.md])({news_url})":[null,""],"The was a problem connecting to github, please refresh and try again":[null,""],"Could not load changes from the repo. [Click here for CHANGES.md]({changes_url})":[null,""],"Changelog":[null,""],"Post Processing":[null,""],"Add Shows":[null,""],"No folders selected.":[null,""],"New Show":[null,""],"Trending Shows":[null,""],"Popular Shows":[null,""],"Most Anticipated Shows":[null,""],"Most Collected Shows":[null,""],"Most Watched Shows":[null,""],"Most Played Shows":[null,""],"Recommended Shows":[null,""],"New Shows":[null,""],"Season Premieres":[null,""],"Existing Show":[null,""],"No root directories setup, please go back and add one.":[null,""],"Show added":[null,""],"Adding the specified show {show_name}":[null,""],"Missing params, no Indexer ID or folder: {show_to_add} and {root_dir}/{show_path}":[null,""],"Unknown error. Unable to add show due to problem with show selection.":[null,""],"Unable to add show":[null,""],"Folder {show_dir} exists already":[null,""],"Unable to create the folder {show_dir}, can't add the show":[null,""],"Adding the specified show into {show_dir}":[null,""],"Shows Added":[null,""],"Automatically added {num_shows} from their existing metadata files":[null,""],"Mass Update":[null,""],"Episode Overview":[null,""],"Missing Subtitles":[null,""],"Backlog Overview":[null,""],"Mass Edit":[null,""],"Unable to update show: {excption_format}":[null,""],"Unable to refresh show {show_name}: {excption_format}":[null,""],"Errors encountered":[null,""],"Updates":[null,""],"Refreshes":[null,""],"Renames":[null,""],"Subtitles":[null,""],"The following actions were queued":[null,""],"For best results please set the Download Station alias as":[null,""],"You can check this setting in the Synology DSM":[null,""],"Control Panel":[null,""],"Application Portal":[null,""],"Make sure you allow DSM to be embedded with iFrames too in":[null,""],"DSM Settings":[null,""],"Security":[null,""],"Manage Torrents":[null,""],"Failed Downloads":[null,""],"Manage Searches":[null,""],"Backlog search started":[null,""],"Daily search started":[null,""],"Find propers search started":[null,""],"Subtitle search started":[null,""],"Remove Selected":[null,""],"Clear History":[null,""],"Trim History":[null,""],"Selected history entries removed":[null,""],"History cleared":[null,""],"Removed history entries older than 30 days":[null,""],"General":[null,""],"Backup/Restore":[null,""],"Search Settings":[null,""],"Search Providers":[null,""],"Subtitles Settings":[null,""],"Notifications":[null,""],"Anime":[null,""],"SickRage Configuration":[null,""],"Config - Shares":[null,""],"Windows Shares Configuration":[null,""],"Saved Shares":[null,""],"Your Windows share settings have been saved":[null,""],"Config - General":[null,""],"General Configuration":[null,""],"Saved Defaults":[null,""],"Your \"add show\" defaults have been set to your current selections.":[null,""],"Unable to create directory {directory}, log directory not changed.":[null,""],"Unable to create directory {directory}, https cert directory not changed.":[null,""],"Unable to create directory {directory}, https key directory not changed.":[null,""],"Error(s) Saving Configuration":[null,""],"Configuration Saved":[null,""],"Config - Backup/Restore":[null,""],"Config - Episode Search":[null,""],"Config - Post Processing":[null,""],"Unpacking Not Supported, disabling unpack setting":[null,""],"You tried saving an invalid normal naming config, not saving your naming settings":[null,""],"You tried saving an invalid anime naming config, not saving your naming settings":[null,""],"Config - Providers":[null,""],"No Provider Name specified":[null,""],"No Provider Url specified":[null,""],"No Provider Api key specified":[null,""],"Config - Notifications":[null,""],"Config - Subtitles":[null,""],"Config - Anime":[null,""],"Clear Errors":[null,""],"Clear Warnings":[null,""],"Submit Errors":[null,""],"Logs & Errors":[null,""],"Log File":[null,""],"Logs":[null,""],"This is a test notification from SickRage":[null,""],"Please fill out the necessary fields above.":[null,""],"This pattern is invalid.":[null,""],"This pattern would be invalid without the folders, using it will force \"Season Folders\" on for all shows.":[null,""],"This pattern is valid.":[null,""],"Resume updating the log on this page.":[null,""],"Pause updating the log on this page.":[null,""],"You have reached this page by accident, please check the url.":[null,""],"A mako error has occured.<br>\n If this happened during an update a simple page refresh may be the solution.<br>\n Mako errors that happen during updates may be a one time error if there were significant ui changes.":[null,""],"Show/Hide Error":[null,""],"Add New Show":[null,""],"For shows that you haven't downloaded yet, this option finds a show on theTVDB.com, creates a directory for it's episodes, and adds it to SickRage.":[null,""],"Add From Trakt Lists":[null,""],"For shows that you haven't downloaded yet, this option lets you choose from a show from one of the Trakt lists to add to SickRage.":[null,""],"Add From IMDB's Popular Shows":[null,""],"View IMDB's list of the most popular shows. This feature uses IMDB's MOVIEMeter algorithm to identify popular TV Series.":[null,""],"Add Existing Shows":[null,""],"Use this option to add shows that already have a folder created on your hard drive. SickRage will scan your existing metadata/episodes and add the show accordingly.":[null,""],"Add Existing Show":[null,""],"Manage Directories":[null,""],"Customize Options":[null,""],"SickRage can add existing shows, using the current options, by using locally stored NFO/XML metadata to eliminate user interaction. If you would rather have SickRage prompt you to customize each show, then use the checkbox below.":[null,""],"Prompt me to set settings for each show":[null,""],"Displaying folders within these directories which aren't already added to SickRage":[null,""],"Submit":[null,""],"Find a show on theTVDB":[null,""],"Show retrieved from existing metadata":[null,""],"All Indexers":[null,""],"Search":[null,""],"This will only affect the language of the retrieved metadata file contents and episode filenames.":[null,""],"This <b>DOES NOT</b> allow SickRage to download non-english TV episodes!":[null,""],"Pick the parent folder":[null,""],"Pre-chosen Destination Folder":[null,""],"Customize options":[null,""],"Add Show":[null,""],"Skip Show":[null,""],"Sort By":[null,""],"Name":[null,""],"Original":[null,""],"Votes":[null,""],"Rating":[null,""],"Rating > Votes":[null,""],"Sort Order":[null,""],"Asc":[null,""],"Desc":[null,""],"Fetching of IMDB Data failed. Are you online?":[null,""],"Exception":[null,""],"Select Trakt List":[null,""],"Most Anticipated":[null,""],"Trending":[null,""],"Popular":[null,""],"Most Watched":[null,""],"Most Played":[null,""],"Most Collected":[null,""],"Recommended":[null,""],"Toggle navigation":[null,""],"Profile":[null,""],"JSONP":[null,""],"Back to SickRage":[null,""],"Parameters":[null,""],"Required":[null,""],"Description":[null,""],"Type":[null,""],"Default value":[null,""],"Allowed values":[null,""],"Playground":[null,""],"Clear":[null,""],"Yes":[null,""],"No":[null,""],"season":[null,""],"episode":[null,""],"Python Version":[null,""],"SSL Version":[null,""],"OS":[null,""],"Locale":[null,""],"User":[null,""],"Program Folder":[null,""],"Config File":[null,""],"Database File":[null,""],"Cache Folder":[null,""],"Log Folder":[null,""],"Arguments":[null,""],"Web Root":[null,""],"Website":[null,""],"Wiki":[null,""],"Source":[null,""],"IRC Chat":[null,""],"AnimeDB Settings":[null,""],"Look & Feel":[null,""],"AniDB is non-profit database of anime information that is freely open to the public":[null,""],"Enable":[null,""],"should SickRage use data from AniDB?":[null,""],"AniDB Username":[null,""],"username of your AniDB account":[null,""],"AniDB Password":[null,""],"password of your AniDB account":[null,""],"AniDB MyList":[null,""],"do you want to add the PostProcessed episodes to the MyList?":[null,""],"Look and Feel":[null,""],"How should the anime functions show and behave.":[null,""],"Split show lists":[null,""],"separate anime and normal shows in groups":[null,""],"Split in tabs":[null,""],"use tabs for when splitting show lists":[null,""],"Restore":[null,""],"Backup your main database file and config.":[null,""],"Select the folder you wish to save your backup file to":[null,""],"Restore your main database file and config.":[null,""],"Select the backup file you wish to restore":[null,""],"Misc":[null,""],"Interface":[null,""],"Advanced Settings":[null,""],"Startup options. Indexer options. Log and show file locations.":[null,""],"Some options may require a manual restart to take effect.":[null,""],"Default Indexer Language":[null,""],"for adding shows and metadata providers":[null,""],"Launch browser":[null,""],"open the SickRage home page on startup":[null,""],"Initial page":[null,""],"Shows":[null,""],"when launching SickRage interface":[null,""],"Choose hour to update shows":[null,""],"with information such as next air dates, show ended, etc. Use 15 for 3pm, 4 for 4am etc.":[null,""],"note":[null,""],"minutes are randomized each time SickRage is started":[null,""],"Send to trash for actions":[null,""],"when using show \"Remove\" and delete files":[null,""],"on scheduled deletes of the oldest log files":[null,""],"selected actions use trash (recycle bin) instead of the default permanent delete":[null,""],"Log file folder location":[null,""],"Number of Log files saved":[null,""],"number of log files saved when rotating logs (default: 5) (REQUIRES RESTART)":[null,""],"Size of Log files saved":[null,""],"maximum size in MB of the log file (default: 1MB) (REQUIRES RESTART)":[null,""],"Use initial indexer set to":[null,""],"as the default selection when adding new shows":[null,""],"Timeout show indexer at":[null,""],"seconds of inactivity when finding new shows (default:20)":[null,""],"Show root directories":[null,""],"where the files of shows are located":[null,""],"Save Changes":[null,""],"Options for software updates.":[null,""],"Check software updates":[null,""],"and display notifications when updates are available. Checks are run on startup and at the frequency set below*":[null,""],"Automatically update":[null,""],"fetch and install software updates. Updates are run on startup and in the background at the frequency set below*":[null,""],"Check the server every*":[null,""],"hours for software updates (default:1)":[null,""],"Notify on software update":[null,""],"send a message to all enabled notifiers when SickRage has been updated":[null,""],"User Interface":[null,""],"Options for visual appearance.":[null,""],"Interface Language":[null,""],"System Language":[null,""],"for appearance to take effect, save then refresh your browser":[null,""],"Display theme":[null,""],"Dark":[null,""],"Light":[null,""],"Use a background image":[null,""],"use a custom image as background for SickRage":[null,""],"Background Path":[null,""],"Path to the background image":[null,""],"Show fanart in the background":[null,""],"on the show summary page":[null,""],"Fanart transparency":[null,""],"transparency of the fanart in the background":[null,""],"Use a custom stylesheet file":[null,""],"use a custom .css file to style SickRage (for advanced users)":[null,""],"Stylesheet File Path":[null,""],"Path to the stylesheet (.css) file":[null,""],"Show all seasons":[null,""],"Sort with \"The\", \"A\", \"An\"":[null,""],"include articles (\"The\", \"A\", \"An\") when sorting show lists":[null,""],"Missed episodes range":[null,""],"set the range in days of the missed episodes in the Schedule page":[null,""],"Display fuzzy dates":[null,""],"move absolute dates into tooltips and display e.g. \"Last Thu\", \"On Tue\"":[null,""],"Trim zero padding":[null,""],"remove the leading number \"0\" shown on hour of day, and date of month":[null,""],"Date style":[null,""],"Use System Default":[null,""],"Time style":[null,""],"seconds are only shown on the History page":[null,""],"Timezone":[null,""],"Local":[null,""],"Network":[null,""],"display dates and times in either your timezone or the shows network timezone":[null,""],"use local timezone to start searching for episodes minutes after show ends (depends on your dailysearch frequency)":[null,""],"Download url":[null,""],"URL where the shows can be downloaded.":[null,""],"Web Interface":[null,""],"it is recommended that you enable a username and password to secure SickRage from being tampered with remotely.":[null,""],"these options require a manual restart to take effect.":[null,""],"API key":[null,""],"used to give 3rd party programs limited access to SickRage":[null,""],"you can try all the features of the API":[null,""],"here":[null,""],"HTTP logs":[null,""],"enable logs from the internal Tornado web server":[null,""],"HTTP username":[null,""],"set blank for no login":[null,""],"HTTP password":[null,""],"blank = no authentication":[null,""],"HTTP port":[null,""],"web port to browse and access SickRage (default:8081)":[null,""],"Notify on login":[null,""],"enable to be notified when a new login happens in webserver":[null,""],"Listen on IPv6":[null,""],"attempt binding to any available IPv6 address":[null,""],"Enable HTTPS":[null,""],"enable access to the web interface using a HTTPS address":[null,""],"HTTPS certificate":[null,""],"file name or path to HTTPS certificate":[null,""],"HTTPS key":[null,""],"file name or path to HTTPS key":[null,""],"Reverse proxy headers":[null,""],"accept the following reverse proxy headers (advanced)...":[null,""],"(X-Forwarded-For, X-Forwarded-Host, and X-Forwarded-Proto)":[null,""],"CPU throttling":[null,""],"Normal (default). High is lower and Low is higher CPU use":[null,""],"Anonymous redirect":[null,""],"backlink protection via anonymizer service, must end in \"?\"":[null,""],"Enable debug":[null,""],"enable debug logs":[null,""],"Verify SSL Certs":[null,""],"verify SSL Certificates (Disable this for broken SSL installs (Like QNAP))":[null,""],"No Restart":[null,""],"only shutdown when restarting SR":[null,""],"only select this when you have external software restarting SR automatically when it stops (like FireDaemon)":[null,""],"Encrypt passwords":[null,""],"in the <code>config.ini</code> file":[null,""],"warning":[null,""],"passwords must only contain":[null,""],"ASCII characters":[null,""],"Unprotected calendar":[null,""],"allow subscribing to the calendar without user and password":[null,""],"some services like Google Calendar only work this way":[null,""],"Google Calendar Icons":[null,""],"show an icon next to exported calendar events in Google Calendar":[null,""],"Proxy host":[null,""],"blank to disable or proxy to use when connecting to providers":[null,""],"also use global proxy setting for indexers (tvdb, xem, anidb, etc.)":[null,""],"Skip Remove Detection":[null,""],"skip detection of removed files":[null,""],"if disabled the episode will be set to the default deleted status":[null,""],"Default deleted episode status":[null,""],"define the status to be set for media file that has been deleted.":[null,""],"Archived option will keep previous downloaded quality":[null,""],"example: Downloaded (1080p WEB-DL) ==> Archived (1080p WEB-DL)":[null,""],"Options for github related features.":[null,""],"Branch version":[null,""],"error: No branches found.":[null,""],"select branch to use (restart required)":[null,""],"Authorization Type":[null,""],"Username and password":[null,""],"Personal access token":[null,""],"You must use a personal access token if you're using \"two-factor authentication\" on GitHub.":[null,""],"GitHub username":[null,""],"*** (REQUIRED FOR SUBMITTING ISSUES) ***":[null,""],"GitHub password":[null,""],"GitHub personal access token":[null,""],"Generate Token":[null,""],"Manage Tokens":[null,""],"GitHub remote for branch":[null,""],"access repo configured remotes (save then refresh browser)":[null,""],"default":[null,""],"origin":[null,""],"Git executable path":[null,""],"only needed if OS is unable to locate git from env":[null,""],"Git reset":[null,""],"removes untracked files and performs a hard reset on git branch automatically to help resolve update issues":[null,""],"Home Theater / NAS":[null,""],"Devices":[null,""],"Social":[null,""],"A free and open source cross-platform media center and home entertainment system software with a 10-foot user interface designed for the living-room TV.":[null,""],"send KODI commands?":[null,""],"Always on":[null,""],"log errors when unreachable?":[null,""],"Notify on snatch":[null,""],"send a notification when a download starts?":[null,""],"Notify on download":[null,""],"send a notification when a download finishes?":[null,""],"Notify on subtitle download":[null,""],"send a notification when subtitles are downloaded?":[null,""],"Update library":[null,""],"update KODI library when a download finishes?":[null,""],"Full library update":[null,""],"perform a full library update if update per-show fails?":[null,""],"Only update first host":[null,""],"only send library updates to the first active host?":[null,""],"KODI IP:Port":[null,""],"host running KODI (eg. 192.168.1.100:8080)":[null,""],"(multiple host strings must be separated by commas)":[null,""],"Username":[null,""],"username for your KODI server (blank for none)":[null,""],"Password":[null,""],"password for your KODI server (blank for none)":[null,""],"Click below to test.":[null,""],"Experience your media on a visually stunning, easy to use interface on your Mac connected to your TV. Your media library has never looked this good!":[null,""],"For sending notifications to Plex Home Theater (PHT) clients, use the KODI notifier with port <b>3005</b>.":[null,""],"send Plex Media Server library updates?":[null,""],"Plex Media Server Auth Token":[null,""],"auth token used by Plex":[null,""],"Update Library":[null,""],"update Plex Media Server library when a download finishes":[null,""],"Plex Media Server IP:Port":[null,""],"one or more hosts running Plex Media Server<br/>(eg. 192.168.1.1:32400, 192.168.1.2:32400)":[null,""],"HTTPS":[null,""],"use https for plex media server requests?":[null,""],"Click below to test Plex Media Server(s)":[null,""],"Test Plex Media Server":[null,""],"Plex Home Theater":[null,""],"send Plex Home Theater notifications?":[null,""],"Plex Home Theater IP:Port":[null,""],"one or more hosts running Plex Home Theater<br>(eg. 192.168.1.100:3000, 192.168.1.101:3000)":[null,""],"Click below to test Plex Home Theater(s)":[null,""],"Test Plex Home Theater":[null,""],"some Plex Home Theaters <b class=\"boldest\">do not</b> support notifications e.g. Plexapp for Samsung TVs":[null,""],"Emby":[null,""],"A home media server built using other popular open source technologies.":[null,""],"send update commands to Emby?":[null,""],"Emby IP:Port":[null,""],"host running Emby (eg. 192.168.1.100:8096)":[null,""],"Emby API Key":[null,""],"Networked Media Jukebox":[null,""],"The Networked Media Jukebox, or NMJ, is the official media jukebox interface made available for the Popcorn Hour 200-series.":[null,""],"send update commands to NMJ?":[null,""],"Popcorn IP address":[null,""],"IP address of Popcorn 200-series (eg. 192.168.1.100)":[null,""],"Get settings":[null,""],"Get Settings":[null,""],"the Popcorn Hour device must be powered on and NMJ running.":[null,""],"NMJ database":[null,""],"automatically filled via the 'Get Settings' button.":[null,""],"NMJ mount url":[null,""],"Networked Media Jukebox v2":[null,""],"The Networked Media Jukebox, or NMJv2, is the official media jukebox interface made available for the Popcorn Hour 300 & 400-series.":[null,""],"send update commands to NMJv2?":[null,""],"IP address of Popcorn 300/400-series (eg. 192.168.1.100)":[null,""],"Database location":[null,""],"Database instance":[null,""],"adjust this value if the wrong database is selected.":[null,""],"Find database":[null,""],"Find Database":[null,""],"the Popcorn Hour device must be powered on.":[null,""],"NMJv2 database":[null,""],"automatically filled via the 'Find Database' buttons.":[null,""],"Synology":[null,""],"The Synology DiskStation NAS.":[null,""],"Synology Indexer is the daemon running on the Synology NAS to build its media database.":[null,""],"send Synology notifications?":[null,""],"requires SickRage to be running on your Synology NAS.":[null,""],"Synology Indexer":[null,""],"Synology Notifier is the notification system of Synology DSM":[null,""],"send notifications to the Synology Notifier?":[null,""],"pyTivo":[null,""],"pyTivo is both an HMO and GoBack server. This notifier will load the completed downloads to your Tivo.":[null,""],"send notifications to pyTivo?":[null,""],"requires the downloaded files to be accessible by pyTivo.":[null,""],"pyTivo IP:Port":[null,""],"host running pyTivo (eg. 192.168.1.1:9032)":[null,""],"pyTivo share name":[null,""],"value used in pyTivo Web Configuration to name the share.":[null,""],"Tivo name":[null,""],"(Messages & Settings > Account & System Information > System Information > DVR name)":[null,""],"Growl":[null,""],"A cross-platform unobtrusive global notification system.":[null,""],"send Growl notifications?":[null,""],"Growl IP:Port":[null,""],"host running Growl (eg. 192.168.1.100:23053)":[null,""],"may leave blank if SickRage is on the same host.":[null,""],"otherwise Growl <b>requires</b> a password to be used.":[null,""],"Click below to register and test Growl, this is required for Growl notifications to work.":[null,""],"Register Growl":[null,""],"Prowl":[null,""],"A Growl client for iOS.":[null,""],"send Prowl notifications?":[null,""],"Prowl Message Title":[null,""],"Global Prowl API key(s)":[null,""],"Prowl API(s) listed here, separated by commas if applicable, will<br> receive notifications for <b>all</b> shows. Your Prowl API key is available at:":[null,""],"(this field may be blank except when testing.)":[null,""],"Show notification list":[null,""],"-- Select a Show --":[null,""],"Configure per-show notifications here by entering Prowl API key(s), separated by commas, '\n 'after selecting a show in the drop-down box. Be sure to activate the 'Save for this show' '\n 'button below after each entry.":[null,""],"Save for this show":[null,""],"Prowl priority":[null,""],"Very Low":[null,""],"Moderate":[null,""],"Normal":[null,""],"High":[null,""],"Emergency":[null,""],"priority of Prowl messages from SickRage.":[null,""],"Libnotify":[null,""],"The standard desktop notification API for Linux/*nix systems. This notifier will only function if the pynotify module is installed (Ubuntu/Debian package <a href=\"apt:python-notify\">python-notify</a>).":[null,""],"send Libnotify notifications?":[null,""],"Pushover":[null,""],"Pushover makes it easy to send real-time notifications to your Android and iOS devices.":[null,""],"send Pushover notifications?":[null,""],"Pushover key":[null,""],"user key of your Pushover account":[null,""],"Pushover API key":[null,""],"click here":[null,""]," to create a Pushover API key":[null,""],"Pushover devices":[null,""],"comma separated list of pushover devices you want to send notifications to":[null,""],"Pushover notification sound":[null,""],"Bike":[null,""],"Bugle":[null,""],"Cash Register":[null,""],"Classical":[null,""],"Cosmic":[null,""],"Falling":[null,""],"Gamelan":[null,""],"Incoming":[null,""],"Intermission":[null,""],"Magic":[null,""],"Mechanical":[null,""],"Piano Bar":[null,""],"Siren":[null,""],"Space Alarm":[null,""],"Tug Boat":[null,""],"Alien Alarm (long)":[null,""],"Climb (long)":[null,""],"Persistent (long)":[null,""],"Pushover Echo (long)":[null,""],"Up Down (long)":[null,""],"None (silent)":[null,""],"Device specific":[null,""],"choose notification sound to use":[null,""],"Pushover priority":[null,""],"Choose priority to use":[null,""],"Boxcar 2":[null,""],"Read your messages where and when you want them!":[null,""],"send Boxcar notifications?":[null,""],"Boxcar2 access token":[null,""],"access token for your Boxcar account.":[null,""],"NMA":[null,""],"Notify My Android":[null,""],"Notify My Android is a Prowl-like Android App and API that offers an easy way to send notifications from your application directly to your Android device.":[null,""],"send NMA notifications?":[null,""],"NMA API key":[null,""],"(multiple keys must be separated by commas, up to a maximum of 5)":[null,""],"NMA priority":[null,""],"priority of NMA messages from SickRage.":[null,""],"Pushalot":[null,""],"Pushalot is a platform for receiving custom push notifications to connected devices running Windows Phone or Windows 8.":[null,""],"send Pushalot notifications ?":[null,""],"Pushalot authorization token":[null,""],"authorization token of your Pushalot account.":[null,""],"Pushbullet":[null,""],"Pushbullet is a platform for receiving custom push notifications to connected devices running Android/iOS and desktop browsers such as Chrome, Firefox or Opera.":[null,""],"send Pushbullet notifications?":[null,""],"Pushbullet API key":[null,""],"API key of your Pushbullet account":[null,""],"Pushbullet devices":[null,""],"Update device list":[null,""],"Pushbullet channels":[null,""],"Free Mobile":[null,""],"Free Mobile is a famous French cellular network provider.<br> It provides to their customer a free SMS API.":[null,""],"send SMS notifications?":[null,""],"send a SMS when a download starts?":[null,""],"send a SMS when a download finishes?":[null,""],"send a SMS when subtitles are downloaded?":[null,""],"Free Mobile customer ID":[null,""],"it's your Free Mobile customer ID (8 digits)":[null,""],"Free Mobile API key":[null,""],"find your API key in your customer portal.":[null,""],"Click below to test your settings.":[null,""],"Telegram":[null,""],"Telegram is a cloud-based instant messaging service.":[null,""],"send Telegram notifications?":[null,""],"send a message when a download starts?":[null,""],"send a message when a download finishes?":[null,""],"send a message when subtitles are downloaded?":[null,""],"User/group ID":[null,""],"contact @myidbot on Telegram to get an ID":[null,""],"Bot API token":[null,""],"contact @BotFather on Telegram to set up one":[null,""],"Join":[null,""],"Join all of your devices together!":[null,""],"send Join notifications?":[null,""],"Device ID":[null,""],"per device specific id":[null,""]," to create a Join API key":[null,""],"Twilio":[null,""],"Twilio is a webservice API that allows you to communicate directly with a mobile number. This notifier will send a text directly to your mobile device.":[null,""],"should SickRage text your mobile device?":[null,""],"Twilio Account SID":[null,""],"account SID of your Twilio account.":[null,""],"Twilio Auth Token":[null,""],"Twilio Phone SID":[null,""],"phone SID that you would like to send the sms from":[null,""],"Your phone number":[null,""],"phone number that will receive the sms. Please use the format +1-###-###-####":[null,""],"Twitter":[null,""],"A social networking and microblogging service, enabling its users to send and read other users' messages called tweets.":[null,""],"should SickRage post tweets on Twitter?":[null,""],"you may want to use a secondary account.":[null,""],"send direct message":[null,""],"send a notification via Direct Message, not via status update":[null,""],"send DM to":[null,""],"Twitter account to send Direct Messages to (must follow you)":[null,""],"Step One":[null,""],"Request Authorization":[null,""],"Click the \"Request Authorization\" button.<br> This will open a new page containing an auth key.<br> <b>note:</b> if nothing happens check your popup blocker.":[null,""],"Step Two":[null,""],"Enter the key Twitter gave you below, and click \"Verify Key\".":[null,""],"Trakt":[null,""],"Trakt helps keep a record of what TV shows and movies you are watching. Based on your favorites, Trakt recommends additional shows and movies you'll enjoy!":[null,""],"send Trakt.tv notifications?":[null,""],"username of your Trakt account.":[null,""],"Trakt PIN":[null,""],"Get Trakt PIN":[null,""],"PIN code to authorize SickRage to access Trakt on your behalf.":[null,""],"API Timeout":[null,""],"seconds to wait for Trakt API to respond. (Use 0 to wait forever)":[null,""],"Default indexer":[null,""],"Sync libraries":[null,""],"sync your SickRage show library with your trakt show library.":[null,""],"Remove Episodes From Collection":[null,""],"remove an episode from your Trakt Collection if it is not in your SickRage Library.":[null,""],"Sync watchlist":[null,""],"sync your SickRage show watchlist with your trakt show watchlist (either Show and Episode).":[null,""],"episode will be added on watch list when wanted or snatched and will be removed when downloaded ":[null,""],"Watchlist add method":[null,""],"Skip All":[null,""],"Download Pilot Only":[null,""],"Get whole show":[null,""],"method in which to download episodes for new shows.":[null,""],"Remove episode":[null,""],"remove an episode from your watchlist after it is downloaded.":[null,""],"Remove series":[null,""],"remove the whole series from your watchlist after any download.":[null,""],"Remove watched show":[null,""],"remove the show from sickrage if it's ended and completely watched":[null,""],"Start paused":[null,""],"shows grabbed from your trakt watchlist start paused.":[null,""],"Trakt blackList name":[null,""],"name (slug) of list on Trakt for blacklisting show on 'Add Trending Show' & 'Add Recommended Shows' pages":[null,""],"Email":[null,""],"Allows configuration of email notifications on a per show basis.":[null,""],"send email notifications?":[null,""],"SMTP host":[null,""],"hostname of your SMTP email server.":[null,""],"SMTP port":[null,""],"port number used to connect to your SMTP host.":[null,""],"SMTP from":[null,""],"sender email address, some hosts require a real address.":[null,""],"Use TLS":[null,""],"check to use TLS encryption.":[null,""],"SMTP user":[null,""],"(optional) your SMTP server username.":[null,""],"SMTP password":[null,""],"(optional) your SMTP server password.":[null,""],"Global email list":[null,""],"email addresses listed here, separated by commas if applicable, will<br> receive notifications for <b>all</b> shows.":[null,""],"(This field may be blank except when testing.)":[null,""],"Email Subject":[null,""],"use a custom subject for some privacy protection?":[null,""],"(leave blank for the default SickRage subject)":[null,""],"configure per-show notifications here by entering email address(es), separated by commas,":[null,""],"after selecting a show in the drop-down box. Be sure to activate the 'Save for this show'":[null,""],"button below after each entry.":[null,""],"Slack":[null,""],"Slack brings all your communication together in one place. It's real-time messaging, archiving and search for modern teams.":[null,""],"should SickRage post messages on Slack?":[null,""],"Slack Incoming Webhook":[null,""],"Discord":[null,""],"All-in-one voice and text chat for gamers that's free, secure, and works on both your desktop and phone.":[null,""],"Should SickRage post messages on Discord?":[null,""],"Discord Incoming Webhook":[null,""],"Create webhook under channel settings.":[null,""],"Discord Bot Name":[null,""],"Blank will use webhook default Name.":[null,""],"Discord Avatar URL":[null,""],"Blank will use webhook default Avatar.":[null,""],"Discord TTS":[null,""],"Send notifications using text-to-speech":[null,""],"Post-Processing":[null,""],"Episode Naming":[null,""],"Metadata":[null,""],"Settings that dictate how SickRage should process completed downloads.":[null,""],"enable the automatic post processor to scan and process any files in your Post Processing Dir":[null,""],"do not use if you use an external Post Processing script":[null,""],"Post Processing Dir":[null,""],"the folder where your download client puts the completed TV downloads.":[null,""],"please use seperate downloading and completed folders in your download client if possible.":[null,""],"Processing Method":[null,""],"what method should be used to put files into the library?":[null,""],"if you keep seeding torrents after they finish, please avoid the 'move' processing method to prevent errors.":[null,""],"Auto Post-Processing Frequency":[null,""],"time in minutes to check for new files to auto post-process (min 10)":[null,""],"Postpone post processing":[null,""],"wait to process a folder if sync files are present.":[null,""],"Sync File Extensions":[null,""],"comma seperated list of extensions or filename globs SickRage ignores when Post Processing":[null,""],"Rename Episodes":[null,""],"rename episode using the Episode Naming settings?":[null,""],"Create missing show directories":[null,""],"create missing show directories when they get deleted":[null,""],"Add shows without directory":[null,""],"add shows without creating a directory (not recommended)":[null,""],"Move associated files":[null,""],"move associated (srt/srr/sfv/etc) files while post processing?":[null,""],"Rename .nfo file":[null,""],"rename the original .nfo file to .nfo-orig to avoid conflicts?":[null,""],"Associated file extensions":[null,""],"comma separated list of associated file extensions SickRage should keep while post processing.":[null,""],"leaving it empty means no associated files will be post processed":[null,""],"Delete non associated files":[null,""],"delete non associated files while post processing?":[null,""],"Change File Date":[null,""],"set last modified filedate to the date that the episode aired?":[null,""],"some systems may ignore this feature.":[null,""],"Timezone for File Date":[null,""],"local":[null,""],"network":[null,""],"what timezone should be used to change File Date?":[null,""],"Unpack":[null,""],"What to do with archived releases found in your <i>TV Download Dir</i>?":[null,""],"Ignore (do not process contents)":[null,""],"Unpack (process contents)":[null,""],"Treat as video (process archive as-is)":[null,""],"'Unpack' only works with RAR archives":[null,""],"Windows":[null,""],"WinRar is required on windows":[null,""],"Unpack Directory":[null,""],"Choose a path to unpack files, leave blank to unpack in download dir":[null,""],"Unrar Location":[null,""],"add the path to unrar if it is not in the system path":[null,""],"Alternate Unrar Tool":[null,""],"add the path to an alternate unrar tool if it is not in the system path":[null,""],"Delete RAR contents":[null,""],"delete content of RAR files, even if Process Method not set to move?":[null,""],"only working with RAR archive":[null,""],"Don't delete empty folders":[null,""],"leave empty folders when Post Processing?":[null,""],"can be overridden using manual Post Processing":[null,""],"Follow symbolic-links":[null,""],"follow down symbolic links in download directory?":[null,""],"<b>EXPERTS ONLY.</b><br>Enable only if you know what <b>circular symbolic links</b> are,<br>and can <b>verify that you have none</b>.":[null,""],"Use icacls":[null,""],"Windows only":[null,""],"sets video permissions after using the move method in post processing":[null,""],"Extra Scripts":[null,""],"see":[null,""],"for script arguments description and usage.":[null,""],"How SickRage will name and sort your episodes.":[null,""],"Name Pattern":[null,""],"Toggle Naming Legend":[null,""],"don't forget to add quality pattern. Otherwise after post-processing the episode will have UNKNOWN quality":[null,""],"Meaning":[null,""],"Pattern":[null,""],"Result":[null,""],"Use lower case if you want lower case names (eg. %sn, %e.n, %q_n etc)":[null,""],"Show Name":[null,""],"Show.Name":[null,""],"Show_Name":[null,""],"Season Number":[null,""],"XEM Season Number":[null,""],"Episode Number":[null,""],"XEM Episode Number":[null,""],"Episode Name":[null,""],"Episode.Name":[null,""],"Episode_Name":[null,""],"Air Date":[null,""],"Post-Processing Date":[null,""],"Quality":[null,""],"Scene Quality":[null,""],"Release Name":[null,""],"SickRage' is used in place of RLSGROUP if it could not be properly detected":[null,""],"Release Group":[null,""],"If episode is proper/repack add 'proper' to name.":[null,""],"Release Type":[null,""],"Multi-Episode Style":[null,""],"Single-EP Sample":[null,""],"Multi-EP sample":[null,""],"Strip Show Year":[null,""],"remove the TV show's year when renaming the file?":[null,""],"only applies to shows that have year inside parentheses":[null,""],"Custom Air-By-Date":[null,""],"name air-by-date shows differently than regular shows?":[null,""],"Toggle ABD Naming Legend":[null,""],"Regular Air Date":[null,""],"Year":[null,""],"Month":[null,""],"Day":[null,""],"Multi-EP style is ignored":[null,""],"Custom Sports":[null,""],"name sports shows differently than regular shows?":[null,""],"Toggle Sports Naming Legend":[null,""],"Sports Air Date":[null,""],"Custom Anime":[null,""],"name anime shows differently than regular shows?":[null,""],"Toggle Anime Naming Legend":[null,""],">XEM Season Number":[null,""],"Single-EP Anime Sample":[null,""],"Multi-EP Anime sample":[null,""],"Add Absolute Number":[null,""],"add the absolute number to the season/episode format?":[null,""],"only applies to anime. (eg. S15E45 - 310 vs S15E45)":[null,""],"Only Absolute Number":[null,""],"replace season/episode format with absolute number":[null,""],"only applies to anime.":[null,""],"No Absolute Number":[null,""],"don't include the absolute number":[null,""],"The data associated to the data. These are files associated to a TV show in the form of images and text that, when supported, will enhance the viewing experience.":[null,""],"Metadata Type":[null,""],"toggle metadata options that you wish to be created":[null,""],"multiple targets may be used":[null,""],"Select Metadata":[null,""],"Provider Priorities":[null,""],"Provider Options":[null,""],"Configure Custom Newznab Providers":[null,""],"Configure Custom Torrent Providers":[null,""],"Check off and drag the providers into the order you want them to be used.":[null,""],"At least one provider is required but two are recommended.":[null,""],"Torrent providers can be toggled in ":[null,""],"Provider does not support backlog searches at this time.":[null,""],"Provider is <b>NOT WORKING</b>.":[null,""],"Configure individual provider settings here.":[null,""],"Check with provider's website on how to obtain an API key if needed.":[null,""],"Configure provider":[null,""],"no providers available to configure.":[null,""],"URL":[null,""],"Enable daily searches":[null,""],"enable provider to perform daily searches.":[null,""],"Enable backlog searches":[null,""],"enable provider to perform backlog searches.":[null,""],"Season search mode":[null,""],"when searching for complete seasons you can choose to have it look for season packs only, or choose to have it build a complete season from just single episodes.":[null,""],"season packs only.":[null,""],"episodes only.":[null,""],"Enable fallback":[null,""],"when searching for a complete season depending on search mode you may return no results, this helps by restarting the search using the opposite search mode.":[null,""],"Custom URL":[null,""],"the URL should include the protocol (and port if applicable). Examples: http://192.168.1.4/ or http://localhost:3000/":[null,""],"Api key":[null,""],"Digest":[null,""],"Hash":[null,""],"Passkey":[null,""],"Cookies":[null,""],"example: uid=1234;pass=567845439634987<br>note: uid and pass are not your username/password.<br>use DevTools or Firebug to get these values after logging in on your browser.":[null,""],"Pin":[null,""],"Seed ratio":[null,""],"stop transfer when ratio is reached<br>(-1 SickRage default to seed forever, or leave blank for downloader default)":[null,""],"Minimum seeders":[null,""],"Minimum leechers":[null,""],"Confirmed download":[null,""],"only download torrents from trusted or verified uploaders ?":[null,""],"Ranked torrents":[null,""],"only download ranked torrents (trusted releases)":[null,""],"English torrents":[null,""],"only download english torrents, or torrents containing english subtitles":[null,""],"For Spanish torrents":[null,""],"ONLY search on this provider if show info is defined as \"Spanish\" (avoid provider's use for VOS shows)":[null,""],"Sorting results by":[null,""],"Freeleech":[null,""],"only download <b>\"FreeLeech\"</b> torrents.":[null,""],"Category":[null,""],"select torrent with Italian subtitle":[null,""],"Configure Custom<br>Newznab Providers":[null,""],"Add and setup or remove custom Newznab providers.":[null,""],"Select provider":[null,""],"-- add new provider --":[null,""],"Provider name":[null,""],"Site URL":[null,""],"Newznab search categories":[null,""],"select your Newznab categories on the left, and click the \"update categories\" button to use them for searching.) <b>don't forget to to save the form!":[null,""],"Update Categories":[null,""],"Add":[null,""],"Delete":[null,""],"Add and setup or remove custom RSS providers.":[null,""],"RSS URL":[null,""],"Search element":[null,""],"eg: title":[null,""],"Episode Search":[null,""],"NZB Search":[null,""],"Torrent Search":[null,""],"How to manage searching with":[null,""],"Randomize Providers":[null,""],"randomize the provider search order instead of going in order of placement":[null,""],"Download propers":[null,""],"replace original download with \"Proper\" or \"Repack\" if nuked":[null,""],"Check propers every":[null,""],"24 hours":[null,""],"4 hours":[null,""],"90 mins":[null,""],"45 mins":[null,""],"15 mins":[null,""],"Backlog search day(s)":[null,""],"number of day(s) that the \"Forced Backlog Search\" will cover (e.g. 7 Days)":[null,""],"Backlog search frequency":[null,""],"time in minutes between searches (min.":[null,""],"Daily search frequency":[null,""],"Usenet retention":[null,""],"age limit in days for usenet articles to be used (e.g. 500)":[null,""],"Ignore words":[null,""],"results with one or more word from this list will be ignored<br>separate words with a comma, e.g. \"word1,word2,word3\"":[null,""],"Require words":[null,""],"results with no word from this list will be ignored<br>separate words with a comma, e.g. \"word1,word2,word3\"":[null,""],"Trackers list":[null,""],"trackers that will be added to magnets without trackers<br>separate trackers with a comma, e.g. \"tracker1,tracker2,tracker3\"":[null,""],"Ignore language names in subbed results":[null,""],"ignore subbed releases based on language names <br>\n Example: \"dk\" will ignore words: dksub, dksubs, dksubbed, dksubed <br>\n separate languages with a comma, e.g. \"lang1,lang2,lang3":[null,""],"Allow high priority":[null,""],"set downloads of recently aired episodes to high priority":[null,""],"Use Failed Downloads":[null,""],"use Failed Download Handling?":[null,""],"will only work with snatched/downloaded episodes after enabling this":[null,""],"Delete Failed":[null,""],"delete files left over from a failed download?":[null,""],"this only works if Use Failed Downloads is enabled.":[null,""],"How to handle NZB search results.":[null,""],"Search NZBs":[null,""],"enable NZB search providers":[null,""],"Send .nzb files to":[null,""],"SABnzbd server URL":[null,""],"URL to your SABnzbd server (e.g. http://localhost:8080/)":[null,""],"SABnzbd username":[null,""],"(blank for none)":[null,""],"SABnzbd password":[null,""],"SABnzbd API key":[null,""],"locate at... SABnzbd Config -> General -> API Key":[null,""],"Use SABnzbd category":[null,""],"add downloads to this category (e.g. TV)":[null,""],"Use SABnzbd category (backlog episodes)":[null,""],"add downloads of old episodes to this category (e.g. TV)":[null,""],"Use SABnzbd category for anime":[null,""],"add anime downloads to this category (e.g. anime)":[null,""],"Use SABnzbd category for anime (backlog episodes)":[null,""],"add anime downloads of old episodes to this category (e.g. anime)":[null,""],"Use forced priority":[null,""],"enable to change priority from HIGH to FORCED":[null,""],"Black hole folder location":[null,""],"<b>.nzb</b> files are stored at this location for external software to find and use":[null,""],"Connect using HTTPS":[null,""],"enable Secure control in NZBGet and set the correct Secure Port here":[null,""],"NZBget host:port":[null,""],"(e.g. localhost:6789)":[null,""],"NZBget RPC host name and port number (not NZBgetweb!)":[null,""],"NZBget username":[null,""],"locate in nzbget.conf (default:nzbget)":[null,""],"NZBget password":[null,""],"locate in nzbget.conf (default:tegbzn6789)":[null,""],"Use NZBget category":[null,""],"send downloads marked this category (e.g. TV)":[null,""],"Use NZBget category (backlog episodes)":[null,""],"send downloads of old episodes marked this category (e.g. TV)":[null,""],"Use NZBget category for anime":[null,""],"send anime downloads marked this category (e.g. anime)":[null,""],"Use NZBget category for anime (backlog episodes)":[null,""],"send anime downloads of old episodes marked this category (e.g. anime)":[null,""],"NZBget priority":[null,""],"Very low":[null,""],"Low":[null,""],"Very high":[null,""],"Force":[null,""],"priority for daily snatches (no backlog)":[null,""],"Torrent host:port":[null,""],"URL to your Synology DSM (e.g. http://localhost:5000/)":[null,""],"Client username":[null,""],"Client password":[null,""],"Downloaded files location":[null,""],"where Synology Download Station will save downloaded files (blank for client default)":[null,""],"the destination has to be a shared folder for Synology DS":[null,""],"Click below to test":[null,""],"How to handle Torrent search results.":[null,""],"Search torrents":[null,""],"enable torrent search providers":[null,""],"Send .torrent files to":[null,""],"<b>.torrent</b> files are stored at this location for external software to find and use":[null,""],"URL to your torrent client (e.g. http://localhost:8000/)":[null,""],"Torrent RPC URL":[null,""],"the path without leading and trailing slashes (e.g. transmission)":[null,""],"Http Authentication":[null,""],"Verify certificate":[null,""],"disable if you get \"Deluge: Authentication Error\" in your log":[null,""],"verify SSL certificates for HTTPS requests":[null,""],"Add label to torrent":[null,""],"(blank spaces are not allowed)":[null,""],"label plugin must be enabled in Deluge clients":[null,""],"for QBitTorrent 3.3.1 and up":[null,""],"Add label to torrent for anime":[null,""],"for QBitTorrent 3.3.1 and up ":[null,""],"where <span id=\"torrent_client\">the torrent client</span> will save downloaded files (blank for client default)":[null,""],"the destination has to be a shared folder for Synology DS</span>":[null,""],"Minimum seeding time":[null,""],"time in hours":[null,""],"(default:'0' passes blank to client and '-1' passes nothing)":[null,""],"Start torrent paused":[null,""],"add .torrent to client but do <b style=\"font-weight:900\">not</b> start downloading":[null,""],"Allow high bandwidth":[null,""],"use high bandwidth allocation if priority is high":[null,""],"Test Connection":[null,""],"Windows Shares":[null,""],"Defines your existing windows shares so that we can add them to the browse dialog":[null,""],"Share #{number}":[null,""],"Share label":[null,""],"Hostname or IP":[null,""],"Share path":[null,""],"Subtitles Search":[null,""],"Subtitles Plugin":[null,""],"Plugin Settings":[null,""],"Settings that dictate how SickRage handles subtitles search results.":[null,""],"Search Subtitles":[null,""],"Subtitle Languages":[null,""],"Subtitle Directory":[null,""],"the directory where SickRage should store your <i>Subtitles</i> files.":[null,""],"leave empty if you want store subtitle in episode path.":[null,""],"Subtitle Find Frequency":[null,""],"time in hours between scans (default: 1)":[null,""],"Include Specials":[null,""],"include the show's specials when searching for subtitles?":[null,""],"Perfect matches":[null,""],"only download subtitles that match: release group, video codec, audio codec and resolution":[null,""],"if disabled you may get out of sync subtitles":[null,""],"Subtitles History":[null,""],"log downloaded Subtitle on History page?":[null,""],"Subtitles Multi-Language":[null,""],"append language codes to subtitle filenames?":[null,""],"this option is required if you use multiple subtitle languages":[null,""],"Delete unwanted subtitles":[null,""],"enable to delete unwanted subtitle languages bundled with release":[null,""],"Embedded Subtitles":[null,""],"ignore subtitles embedded inside video file?":[null,""],"this will ignore <u>all</u> embedded subtitles for every video file!":[null,""],"Hearing Impaired Subtitles":[null,""],"download hearing impaired style subtitles?":[null,""],"See":[null,""],"for a script arguments description.":[null,""],"Additional scripts separated by <b>|</b>.":[null,""],"Scripts are called after each episode has searched and downloaded subtitles.":[null,""],"For any scripted languages, include the interpreter executable before the script. See the following example":[null,""],"For Windows:":[null,""],"For Linux / OS X:":[null,""],"Subtitle Providers":[null,""],"Check off and drag the plugins into the order you want them to be used.":[null,""],"At least one plugin is required.":[null,""]," Web-scraping plugin":[null,""],"Provider Settings":[null,""],"Set user and password for each provider":[null,""],"User Name":[null,""],"Change Show":[null,""],"Prev Show":[null,""],"Next Show":[null,""],"Jump to Season":[null,""],"Specials":[null,""],"Poster for":[null,""],"Stars":[null,""],"minutes":[null,""],"View other popular {genre} shows on trakt.tv.":[null,""],"View other popular {imdbgenre} shows on IMDB.":[null,""],"Allowed":[null,""],"Preferred":[null,""],"Originally Airs":[null,""],"Show Status":[null,""],"Default EP Status":[null,""],"Location":[null,""],"Missing":[null,""],"Scene Name":[null,""],"Required Words":[null,""],"Ignored Words":[null,""],"Size":[null,""],"Info Language":[null,""],"Subtitles SR Metadata":[null,""],"Season Folders":[null,""],"Paused":[null,""],"Air-by-Date":[null,""],"Sports":[null,""],"DVD Order":[null,""],"Scene Numbering":[null,""],"Select Filtered Episodes":[null,""],"Clear All":[null,""],"Change selected episodes to":[null,""],"Select Columns":[null,""],"Hide Episodes":[null,""],"Show Episodes":[null,""],"NFO":[null,""],"TBN":[null,""],"Episode":[null,""],"Absolute":[null,""],"Scene":[null,""],"Scene Absolute":[null,""],"File Name":[null,""],"Airdate":[null,""],"Download":[null,""],"Change the value here if scene numbering differs from the indexer episode numbering":[null,""],"Change the value here if scene absolute numbering differs from the indexer absolute numbering":[null,""],"Manual Search":[null,""],"Do you want to mark this episode as failed?":[null,""],"The episode release name will be added to the failed history, preventing it to be downloaded again.":[null,""],"Do you want to include the current episode quality in the search?":[null,""],"Choosing No will ignore any releases with the same episode quality as the one currently downloaded/snatched.":[null,""],"Download subtitle":[null,""],"Do you want to re-download the subtitle for this language?":[null,""],"It will overwrite your current subtitle":[null,""],"Format":[null,""],"Advanced":[null,""],"Main Settings":[null,""],"Show Location":[null,""],"Preferred Quality":[null,""],"Default Episode Status":[null,""],"this will set the status for future episodes.":[null,""],"this only applies to episode filenames and the contents of metadata files.":[null,""],"search for subtitles":[null,""],"Use SR Metdata":[null,""],"use SickRage metadata when searching for subtitle, this will override the autodiscovered metadata":[null,""],"pause this show (SickRage will not download episodes)":[null,""],"Format Settings":[null,""],"Air by date":[null,""],"check if the show is released as Show.03.02.2010 rather than Show.S02E03.":[null,""],"in case of an air date conflict between regular and special episodes, the later will be ignored.":[null,""],"check if the show is Anime and episodes are released as Show.265 rather than Show.S02E03":[null,""],"check if the show is a sporting or MMA event released as Show.03.02.2010 rather than Show.S02E03":[null,""],"Season folders":[null,""],"group episodes by season folder (uncheck to store in a single folder)":[null,""],"search by scene numbering (uncheck to search by indexer numbering)":[null,""],"use the DVD order instead of the air order":[null,""],"a \"Force Full Update\" is necessary, and if you have existing episodes you need to sort them manually.":[null,""],"comma-separated <i>e.g. \"word1,word2,word3</i>\"":[null,""],"search results with one or more words from this list will be ignored.":[null,""],"e.g. \"word1,word2,word3\"":[null,""],"search results with no words from this list will be ignored.":[null,""],"Scene Exception":[null,""],"this will affect episode search on NZB and torrent providers.":[null,""],"this list appends to the original show name.":[null,""],"WARNING logs":[null,""],"ERROR logs":[null,""],"There are no events to display.":[null,""],"Limit":[null,""],"Layout":[null,""],"HistoryLayout":[null,""],"Compact":[null,""],"Detailed":[null,""],"Time":[null,""],"Provider":[null,""],"Missing Provider":[null,""],"missing provider":[null,""],"Directory":[null,""],"Show Name (tvshow.nfo)":[null,""],"Indexer":[null,""],"Enter the folder containing the episode":[null,""],"Process Method to be used":[null,""],"Copy":[null,""],"Move":[null,""],"Hard Link":[null,""],"Symbolic Link":[null,""],"Symbolic Link Reversed":[null,""],"Force already Post Processed Dir/Files":[null,""],"Mark Dir/Files as priority download":[null,""],"(Check it to replace the file even if it exists at higher quality)":[null,""],"Delete files and folders":[null,""],"(Check it to delete files and folders like auto processing)":[null,""],"Don't use processing queue":[null,""],"(If checked this will return the result of the process here, but may be slow!)":[null,""],"Mark download as failed":[null,""],"Process":[null,""],"Download subtitles for this show?":[null,""],"use SickRage metadata when searching for subtitle, <br />this will override the autodiscovered metadata":[null,""],"Status for previously aired episodes":[null,""],"Status for all future episodes":[null,""],"Group episodes by season folder?":[null,""],"Is this show an Anime?":[null,""],"Is this show scene numbered?":[null,""],"Save Defaults":[null,""],"Use current values as the defaults":[null,""],"<p>Select your preferred fansub groups from the <b>Available Groups</b> and add them to the <b>Whitelist</b>. Add groups to the <b>Blacklist</b> to ignore them.</p>\n <p>The <b>Whitelist</b> is checked <i>before</i> the <b>Blacklist</b>.</p>\n <p>Groups are shown as <b>Name</b> | <b>Rating</b> | <b>Number of subbed episodes</b>.</p>\n <p>You may also add any fansub group not listed to either list manually.</p>\n <p>When doing this please note that you can only use groups listed on anidb for this anime.\n <br>If a group is not listed on anidb but subbed this anime, please correct anidb's data.</p>":[null,""],"Whitelist":[null,""],"Available Groups":[null,""],"Add to Whitelist":[null,""],"Add to Blacklist":[null,""],"Blacklist":[null,""],"Custom Group":[null,""],"Allowed Quality:":[null,""],"Preferred Quality:":[null,""],"Filter Show Name":[null,""],"Root":[null,""],"All":[null,""],"Clear Filter(s)":[null,""],"Poster":[null,""],"Small Poster":[null,""],"Banner":[null,""],"Simple":[null,""],"Next Episode":[null,""],"Progress":[null,""],"Direction":[null,""],"Ascending":[null,""],"Descending":[null,""],"Poster Size":[null,""],"Continuing":[null,""],"Ended":[null,""],"Total":[null,""],"Invalid date":[null,""],"No Network":[null,""],"Next Ep":[null,""],"Prev Ep":[null,""],"Show":[null,""],"Downloads":[null,""],"Active":[null,""],"loading":[null,""],"Loading...":[null,""],"<p><b><u>Preferred</u></b> qualities will replace those in <b><u>allowed</u></b>, even if they are lower.</p>":[null,""],"New":[null,""],"Set as Default":[null,""],"Remember me":[null,""],"Edit Selected":[null,""],"Subtitle":[null,""],"Default Ep Status":[null,""],"Update":[null,""],"Rescan":[null,""],"Rename":[null,""],"Search Subtitle":[null,""],"Force Metadata Regen":[null,""],"Snatched (Allowed)":[null,""],"Jump to Show":[null,""],"Force Backlog":[null,""],"Manage episodes with status":[null,""],"Manage":[null,""],"None of your episodes have status":[null,""],"Shows containing":[null,""],"episodes":[null,""],"Set checked shows/episodes to":[null,""],"Go":[null,""],"Select all":[null,""],"Clear all":[null,""],"Release":[null,""],"Backlog Search":[null,""],"Not in progress":[null,""],"In Progress":[null,""],"Daily Search":[null,""],"Find Propers Search":[null,""],"Propers search disabled":[null,""],"Subtitle Search":[null,""],"Subtitle search disabled":[null,""],"Search Queue":[null,""],"pending items":[null,""],"Daily":[null,""],"Manual":[null,""],"Changing any settings marked with (<span class=\"separator\">*</span>) will force a refresh of the selected shows.":[null,""],"Selected Shows":[null,""],"Root Directories":[null,""],"Current":[null,""],"Keep":[null,""],"Custom":[null,""],"Group episodes by season folder (set to \"No\" to store in a single folder).":[null,""],"Pause these shows (SickRage will not download episodes).":[null,""],"This will set the status for future episodes.":[null,""],"Search by scene numbering (set to \"No\" to search by indexer numbering).":[null,""],"Set if these shows are Anime and episodes are released as Show.265 rather than Show.S02E03":[null,""],"Set if these shows are sporting or MMA events released as Show.03.02.2010 rather than Show.S02E03.":[null,""],"In case of an air date conflict between regular and special episodes, the later will be ignored.":[null,""],"Set if these shows are released as Show.03.02.2010 rather than Show.S02E03.":[null,""],"Search for subtitles.":[null,""],"All of your episodes have {subsLanguage} subtitles.":[null,""],"Manage episodes without":[null,""],"Episodes without {subsLanguage} subtitles.":[null,""],"Episodes without {subtitleLanguage} (undefined) subtitles.":[null,""],"Download missed subtitles for selected episodes":[null,""],"Performing Restart":[null,""],"Waiting for SickRage to shut down":[null,""],"Waiting for SickRage to start again":[null,""],"Loading the default page":[null,""],"Error: The restart has timed out, perhaps something prevented SickRage from starting again?":[null,""],"Key":[null,""],"Missed":[null,""],"Today":[null,""],"Soon":[null,""],"Later":[null,""],"Subscribe":[null,""],"Date":[null,""],"View Paused":[null,""],"Hidden":[null,""],"Shown":[null,""],"Calendar":[null,""],"List":[null,""],"Ends":[null,""],"Next Ep Name":[null,""],"Run time":[null,""],"Indexers":[null,""],"No shows for this day":[null,""],"Airs":[null,""],"Plot":[null,""],"Show Update":[null,""],"Version Check":[null,""],"Proper Finder":[null,""],"Post Process":[null,""],"Subtitles Finder":[null,""],"Scheduler":[null,""],"Alive":[null,""],"Start Time":[null,""],"Cycle Time":[null,""],"Next Run":[null,""],"Last Run":[null,""],"Silent":[null,""],"True":[null,""],"N/A":[null,""],"Show id":[null,""],"Show name":[null,""],"Priority":[null,""],"Added":[null,""],"Queue type":[null,""],"LOW":[null,""],"NORMAL":[null,""],"HIGH":[null,""],"Disk Space":[null,""],"Free space":[null,""],"TV Download Directory":[null,""],"Media Root Directories":[null,""],"Preview of the proposed name changes":[null,""],"All Seasons":[null,""],"select all":[null,""],"Rename Selected":[null,""],"Cancel Rename":[null,""],"Old Location":[null,""],"New Location":[null,""],"Trakt API did not return any results, please check your config.":[null,""],"votes":[null,""],"Remove Show":[null,""],"Level":[null,""],"Filter":[null,""],"All non-absolute folder locations are relative to ":[null,""],"Manual Post-Processing":[null,""],"Episode Status Management":[null,""],"Update PLEX":[null,""],"Update KODI":[null,""],"Update Emby":[null,""],"Missed Subtitle Management":[null,""],"Help & Info":[null,""],"Backup & Restore":[null,""],"Tools":[null,""],"Support SickRage":[null,""],"View Errors":[null,""],"View Warnings":[null,""],"View Log":[null,""],"Check For Updates":[null,""],"Restart":[null,""],"Shutdown":[null,""],"Logout":[null,""],"Server Status":[null,""],"View overview of snatched episodes":[null,""],"Episodes Downloaded":[null,""],"Memory used":[null,""],"Load time":[null,""],"Branch":[null,""],"Now":[null,""]}}}} \ No newline at end of file +{"messages":{"domain":"messages","locale_data":{"messages":{"100":[null,""],"250":[null,""],"500":[null,""],"":{"domain":"messages","plural_forms":"nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);","lang":"hr_HR"},"Drama":[null,""],"Mystery":[null,""],"Science-Fiction":[null,""],"Crime":[null,""],"Action":[null,""],"Comedy":[null,""],"Thriller":[null,""],"Animation":[null,""],"Family":[null,""],"Fantasy":[null,""],"Adventure":[null,""],"Horror":[null,""],"Film-Noir":[null,""],"Sci-Fi":[null,""],"Romance":[null,""],"Sport":[null,""],"War":[null,""],"Biography":[null,""],"History":[null,""],"Music":[null,""],"Western":[null,""],"News":[null,""],"Sitcom":[null,""],"Reality-TV":[null,""],"Documentary":[null,""],"Game-Show":[null,""],"Musical":[null,""],"Talk-Show":[null,""],"Started Download":[null,""],"Download Finished":[null,""],"Subtitle Download Finished":[null,""],"SickRage Updated":[null,""],"SickRage Updated To Commit#: ":[null,""],"SickRage new login":[null,""],"New login from IP: {0}. http://geomaplookup.net/?ip={0}":[null,""],"Repeat":[null,""],"Repeat (Separated)":[null,""],"Extend":[null,""],"Extend (Limited)":[null,""],"Extend (Limited, E-prefixed)":[null,""],"Downloaded":[null,""],"Snatched":[null,""],"Snatched (Proper)":[null,""],"Failed":[null,""],"Snatched (Best)":[null,""],"Archived":[null,""],"Unknown":[null,""],"Unaired":[null,""],"Skipped":[null,""],"Wanted":[null,""],"Ignored":[null,""],"Subtitled":[null,""],"For best results please set the Download Station alias as":[null,""],"You can check this setting in the Synology DSM":[null,""],"Control Panel":[null,""],"Application Portal":[null,""],"Make sure you allow DSM to be embedded with iFrames too in":[null,""],"DSM Settings":[null,""],"Security":[null,""],"<No Filter>":[null,""],"Daily Searcher":[null,""],"Backlog":[null,""],"Show Updater":[null,""],"Check Version":[null,""],"Show Queue":[null,""],"Search Queue (All)":[null,""],"Search Queue (Daily Searcher)":[null,""],"Search Queue (Backlog)":[null,""],"Search Queue (Manual)":[null,""],"Search Queue (Retry/Failed)":[null,""],"Search Queue (RSS)":[null,""],"Find Propers":[null,""],"Postprocessor":[null,""],"Find Subtitles":[null,""],"Trakt Checker":[null,""],"Event":[null,""],"Error":[null,""],"Tornado":[null,""],"Thread":[null,""],"Main":[null,""],"Loading":[null,""],"New update found for SickRage, starting auto-updater":[null,""],"Update was successful":[null,""],"Update failed!":[null,""],"Backup":[null,""],"Config backup in progress...":[null,""],"Config backup successful, updating...":[null,""],"Config backup failed, aborting update":[null,""],"No update needed":[null,""],"Mako Error":[null,""],"Oops":[null,""],"Wrong API key used":[null,""],"Login":[null,""],"API Key not generated":[null,""],"API Builder":[null,""],"Schedule":[null,""],"Test 1":[null,""],"This is test number 1":[null,""],"Test 2":[null,""],"This is test number 2":[null,""],"You're using the {branch} branch. Please use 'master' unless specifically asked":[null,""],"Invalid show parameters":[null,""],"Invalid parameters":[null,""],"Episode couldn't be retrieved":[null,""],"Home":[null,""],"Show List":[null,""],"Error: Unsupported Request. Send jsonp request with 'callback' variable in the query string.":[null,""],"Success. Connected and authenticated":[null,""],"Authentication failed. SABnzbd expects":[null,""],"as authentication method":[null,""],"Unable to connect to host":[null,""],"SMS sent successfully":[null,""],"Problem sending SMS: {message}":[null,""],"Telegram notification succeeded. Check your Telegram clients to make sure it worked":[null,""],"Error sending Telegram notification: {message}":[null,""],"join notification succeeded. Check your join clients to make sure it worked":[null,""],"Error sending join notification: {message}":[null,""]," with password":[null,""],"Registered and Tested growl successfully {growl_host}":[null,""],"Registration and Testing of growl failed {growl_host}":[null,""],"Test prowl notice sent successfully":[null,""],"Test prowl notice failed":[null,""],"Boxcar2 notification succeeded. Check your Boxcar2 clients to make sure it worked":[null,""],"Error sending Boxcar2 notification":[null,""],"Pushover notification succeeded. Check your Pushover clients to make sure it worked":[null,""],"Error sending Pushover notification":[null,""],"Key verification successful":[null,""],"Unable to verify key":[null,""],"Tweet successful, check your twitter to make sure it worked":[null,""],"Error sending tweet":[null,""],"Please enter a valid account sid":[null,""],"Please enter a valid auth token":[null,""],"Please enter a valid phone sid":[null,""],"Please format the phone number as \"+1-###-###-####\"":[null,""],"Authorization successful and number ownership verified":[null,""],"Error sending sms":[null,""],"Slack message successful":[null,""],"Slack message failed":[null,""],"Discord message successful":[null,""],"Discord message failed":[null,""],"Test KODI notice sent successfully to {kodi_host}":[null,""],"Test KODI notice failed to {kodi_host}":[null,""],"Successful test notice sent to Plex Home Theater ... {plex_clients}":[null,""],"Test failed for Plex Home Theater ... {plex_clients}":[null,""],"Tested Plex Home Theater(s)":[null,""],"Successful test of Plex Media Server(s) ... {plex_servers}":[null,""],"Test failed, No Plex Media Server host specified":[null,""],"Test failed for Plex Media Server(s) ... {plex_servers}":[null,""],"Tested Plex Media Server host(s)":[null,""],"Tried sending desktop notification via libnotify":[null,""],"Test notice sent successfully to {emby_host}":[null,""],"Test notice failed to {emby_host}":[null,""],"Successfully started the scan update":[null,""],"Test failed to start the scan update":[null,""],"Test notice sent successfully to {nmj2_host}":[null,""],"Test notice failed to {nmj2_host}":[null,""],"Trakt Authorized":[null,""],"Trakt Not Authorized!":[null,""],"Test email sent successfully! Check inbox.":[null,""],"ERROR: {last_error}":[null,""],"Test NMA notice sent successfully":[null,""],"Test NMA notice failed":[null,""],"Pushalot notification succeeded. Check your Pushalot clients to make sure it worked":[null,""],"Error sending Pushalot notification":[null,""],"Pushbullet notification succeeded. Check your device to make sure it worked":[null,""],"Error sending Pushbullet notification":[null,""],"Status":[null,""],"Restarting SickRage":[null,""],"Update Failed":[null,""],"Update wasn't successful, not restarting. Check your log for more information.":[null,""],"Checking out branch":[null,""],"Already on branch":[null,""],"Invalid show ID: {show}":[null,""],"Show not in show list":[null,""],"Edit":[null,""],"This show is in the process of being downloaded - the info below is incomplete.":[null,""],"The information on this page is in the process of being updated.":[null,""],"The episodes below are currently being refreshed from disk":[null,""],"Currently downloading subtitles for this show":[null,""],"This show is queued to be refreshed.":[null,""],"This show is queued and awaiting an update.":[null,""],"This show is queued and awaiting subtitles download.":[null,""],"Resume":[null,""],"Pause":[null,""],"Remove":[null,""],"Re-scan files":[null,""],"Force Full Update":[null,""],"Update show in KODI":[null,""],"Update show in Emby":[null,""],"Hide specials":[null,""],"Show specials":[null,""],"Preview Rename":[null,""],"Download Subtitles":[null,""],"No scene exceptions":[null,""],"Invalid show ID":[null,""],"Unable to find the specified show":[null,""],"Unable to retreive Fansub Groups from AniDB.":[null,""],"Edit Show":[null,""],"Unable to refresh this show: {error}":[null,""],"New location <tt>{location}</tt> does not exist":[null,""],"Unable to update show: {error}":[null,""],"Unable to force an update on scene exceptions of the show.":[null,""],"Unable to force an update on scene numbering of the show.":[null,""],"{num_errors:d} error{plural} while saving changes:":[null,""],"{show_name} has been {paused_resumed}":[null,""],"resumed":[null,""],"paused":[null,""],"{show_name} has been {deleted_trashed} {was_deleted}":[null,""],"deleted":[null,""],"trashed":[null,""],"(media untouched)":[null,""],"(with all related media)":[null,""],"Unable to refresh this show.":[null,""],"Unable to update this show.":[null,""],"Library update command sent to KODI host(s)): {kodi_hosts}":[null,""],"Unable to contact one or more KODI host(s)): {kodi_hosts}":[null,""],"Library update command sent to Plex Media Server host: {plex_server}":[null,""],"Unable to contact Plex Media Server host: {plex_server}":[null,""],"Library update command sent to Emby host: {emby_host}":[null,""],"Unable to contact Emby host: {emby_host}":[null,""],"You must specify a show and at least one episode":[null,""],"Invalid status":[null,""],"Backlog was automatically started for the following seasons of <b>{show_name}</b>":[null,""],"Season":[null,""],"Backlog started":[null,""],"Retrying Search was automatically started for the following season of <b>{show_name}</b>":[null,""],"Retry Search started":[null,""],"You must specify a show":[null,""],"Can't rename episodes when the show dir is missing.":[null,""],"New subtitles downloaded: {new_subtitle_languages}":[null,""],"No subtitles downloaded":[null,""],"IRC":[null,""],"Could not load news from the repo. [Click here for news.md])({news_url})":[null,""],"The was a problem connecting to github, please refresh and try again":[null,""],"Could not load changes from the repo. [Click here for CHANGES.md]({changes_url})":[null,""],"Changelog":[null,""],"Post Processing":[null,""],"Add Shows":[null,""],"No folders selected.":[null,""],"New Show":[null,""],"Trending Shows":[null,""],"Popular Shows":[null,""],"Most Anticipated Shows":[null,""],"Most Collected Shows":[null,""],"Most Watched Shows":[null,""],"Most Played Shows":[null,""],"Recommended Shows":[null,""],"New Shows":[null,""],"Season Premieres":[null,""],"Existing Show":[null,""],"No root directories setup, please go back and add one.":[null,""],"Show added":[null,""],"Adding the specified show {show_name}":[null,""],"Missing params, no Indexer ID or folder: {show_to_add} and {root_dir}/{show_path}":[null,""],"Unknown error. Unable to add show due to problem with show selection.":[null,""],"Unable to add show":[null,""],"Folder {show_dir} exists already":[null,""],"Unable to create the folder {show_dir}, can't add the show":[null,""],"Adding the specified show into {show_dir}":[null,""],"Shows Added":[null,""],"Automatically added {num_shows} from their existing metadata files":[null,""],"Mass Update":[null,""],"Episode Overview":[null,""],"Missing Subtitles":[null,""],"Backlog Overview":[null,""],"Mass Edit":[null,""],"Unable to update show: {excption_format}":[null,""],"Unable to refresh show {show_name}: {excption_format}":[null,""],"Errors encountered":[null,""],"Updates":[null,""],"Refreshes":[null,""],"Renames":[null,""],"Subtitles":[null,""],"The following actions were queued":[null,""],"Failed Downloads":[null,""],"Manage Searches":[null,""],"Backlog search started":[null,""],"Daily search started":[null,""],"Find propers search started":[null,""],"Subtitle search started":[null,""],"Remove Selected":[null,""],"Clear History":[null,""],"Trim History":[null,""],"Selected history entries removed":[null,""],"History cleared":[null,""],"Removed history entries older than 30 days":[null,""],"General":[null,""],"Backup/Restore":[null,""],"Search Settings":[null,""],"Search Providers":[null,""],"Subtitles Settings":[null,""],"Notifications":[null,""],"Anime":[null,""],"SickRage Configuration":[null,""],"Config - Shares":[null,""],"Windows Shares Configuration":[null,""],"Saved Shares":[null,""],"Your Windows share settings have been saved":[null,""],"Config - General":[null,""],"General Configuration":[null,""],"Saved Defaults":[null,""],"Your \"add show\" defaults have been set to your current selections.":[null,""],"Unable to create directory {directory}, log directory not changed.":[null,""],"Unable to create directory {directory}, https cert directory not changed.":[null,""],"Unable to create directory {directory}, https key directory not changed.":[null,""],"Error(s) Saving Configuration":[null,""],"Configuration Saved":[null,""],"Config - Backup/Restore":[null,""],"Config - Episode Search":[null,""],"Config - Post Processing":[null,""],"Unpacking Not Supported, disabling unpack setting":[null,""],"You tried saving an invalid normal naming config, not saving your naming settings":[null,""],"You tried saving an invalid anime naming config, not saving your naming settings":[null,""],"Config - Providers":[null,""],"No Provider Name specified":[null,""],"No Provider Url specified":[null,""],"No Provider Api key specified":[null,""],"Config - Notifications":[null,""],"Config - Subtitles":[null,""],"Config - Anime":[null,""],"Clear Errors":[null,""],"Clear Warnings":[null,""],"Submit Errors":[null,""],"Logs & Errors":[null,""],"Log File":[null,""],"Logs":[null,""],"This is a test notification from SickRage":[null,""],"Choose Directory":[null,""],"Select log file folder location":[null,""],"Select CSS file":[null,""],"Select backup folder to save to":[null,""],"Select backup files to restore":[null,""],"Please fill out the necessary fields above.":[null,""],"<b>Step 1:</b> Confirm Authorization":[null,""],"Check blacklist name; the value needs to be a trakt slug":[null,""],"You must provide a recipient email address!":[null,""],"You didn't supply a Pushbullet api key":[null,""],"Don't forget to save your new pushbullet settings.":[null,""],"Select TV Download Directory":[null,""],"Select Unpack Directory":[null,""],"This pattern is invalid.":[null,""],"This pattern would be invalid without the folders, using it will force \"Season Folders\" on for all shows.":[null,""],"This pattern is valid.":[null,""],"Select .nzb black hole/watch location":[null,""],"Select .torrent black hole/watch location":[null,""],"Select .torrent download location":[null,""],"Minimum seeding time is":[null,""],"URL to your uTorrent client (e.g. http://localhost:8000)":[null,""],"Stop seeding when inactive for":[null,""],"URL to your Transmission client (e.g. http://localhost:9091)":[null,""],"URL to your Deluge client (e.g. http://localhost:8112)":[null,""],"IP or Hostname of your Deluge Daemon (e.g. scgi://localhost:58846)":[null,""],"URL to your Synology DS client (e.g. http://localhost:5000)":[null,""],"URL to your rTorrent client (e.g. scgi://localhost:5000 <br> or https://localhost/rutorrent/plugins/httprpc/action.php)":[null,""],"URL to your qBittorrent client (e.g. http://localhost:8080)":[null,""],"URL to your MLDonkey (e.g. http://localhost:4080)":[null,""],"URL to your putio client (e.g. http://localhost:8080)":[null,""],"<a herf=\"https://app.put.io/oauth/apps/new\" target=\"_blank\"> Create a new OAuth app for put.io</a>":[null,""],"Put.io Parent Folder":[null,""],"Put.io OAuth Token":[null,""],"Show Episodes":[null,""],"Hide Episodes":[null,""],"Select Show Location":[null,""],"Select Unprocessed Episode Folder":[null,""],"DELETED":[null,""],"Resume updating the log on this page.":[null,""],"Pause updating the log on this page.":[null,""],"searching {searchingFor}...":[null,""],"search timed out, try again or try another indexer":[null,""],"loading folders...":[null,""],"Loading...":[null,""],"You have reached this page by accident, please check the url.":[null,""],"A mako error has occured.<br>\n If this happened during an update a simple page refresh may be the solution.<br>\n Mako errors that happen during updates may be a one time error if there were significant ui changes.":[null,""],"Show/Hide Error":[null,""],"Add New Show":[null,""],"For shows that you haven't downloaded yet, this option finds a show on theTVDB.com, creates a directory for it's episodes, and adds it to SickRage.":[null,""],"Add From Trakt Lists":[null,""],"For shows that you haven't downloaded yet, this option lets you choose from a show from one of the Trakt lists to add to SickRage.":[null,""],"Add From IMDB's Popular Shows":[null,""],"View IMDB's list of the most popular shows. This feature uses IMDB's MOVIEMeter algorithm to identify popular TV Series.":[null,""],"Add Existing Shows":[null,""],"Use this option to add shows that already have a folder created on your hard drive. SickRage will scan your existing metadata/episodes and add the show accordingly.":[null,""],"Add Existing Show":[null,""],"Manage Directories":[null,""],"Customize Options":[null,""],"SickRage can add existing shows, using the current options, by using locally stored NFO/XML metadata to eliminate user interaction. If you would rather have SickRage prompt you to customize each show, then use the checkbox below.":[null,""],"Prompt me to set settings for each show":[null,""],"Displaying folders within these directories which aren't already added to SickRage":[null,""],"Submit":[null,""],"Find a show on theTVDB":[null,""],"Show retrieved from existing metadata":[null,""],"All Indexers":[null,""],"Search":[null,""],"This will only affect the language of the retrieved metadata file contents and episode filenames.":[null,""],"This <b>DOES NOT</b> allow SickRage to download non-english TV episodes!":[null,""],"Pick the parent folder":[null,""],"Pre-chosen Destination Folder":[null,""],"Customize options":[null,""],"Add Show":[null,""],"Skip Show":[null,""],"Sort By":[null,""],"Name":[null,""],"Original":[null,""],"Votes":[null,""],"Rating":[null,""],"Rating > Votes":[null,""],"Sort Order":[null,""],"Asc":[null,""],"Desc":[null,""],"Fetching of IMDB Data failed. Are you online?":[null,""],"Exception":[null,""],"Select Trakt List":[null,""],"Most Anticipated":[null,""],"Trending":[null,""],"Popular":[null,""],"Most Watched":[null,""],"Most Played":[null,""],"Most Collected":[null,""],"Recommended":[null,""],"Toggle navigation":[null,""],"Profile":[null,""],"JSONP":[null,""],"Back to SickRage":[null,""],"Parameters":[null,""],"Required":[null,""],"Description":[null,""],"Type":[null,""],"Default value":[null,""],"Allowed values":[null,""],"Playground":[null,""],"Clear":[null,""],"Yes":[null,""],"No":[null,""],"season":[null,""],"episode":[null,""],"Python Version":[null,""],"SSL Version":[null,""],"OS":[null,""],"Locale":[null,""],"User":[null,""],"Program Folder":[null,""],"Config File":[null,""],"Database File":[null,""],"Cache Folder":[null,""],"Log Folder":[null,""],"Arguments":[null,""],"Web Root":[null,""],"Website":[null,""],"Wiki":[null,""],"Source":[null,""],"IRC Chat":[null,""],"AnimeDB Settings":[null,""],"Look & Feel":[null,""],"AniDB is non-profit database of anime information that is freely open to the public":[null,""],"Enable":[null,""],"should SickRage use data from AniDB?":[null,""],"AniDB Username":[null,""],"username of your AniDB account":[null,""],"AniDB Password":[null,""],"password of your AniDB account":[null,""],"AniDB MyList":[null,""],"do you want to add the PostProcessed episodes to the MyList?":[null,""],"Look and Feel":[null,""],"How should the anime functions show and behave.":[null,""],"Split show lists":[null,""],"separate anime and normal shows in groups":[null,""],"Split in tabs":[null,""],"use tabs for when splitting show lists":[null,""],"Restore":[null,""],"Backup your main database file and config.":[null,""],"Select the folder you wish to save your backup file to":[null,""],"Restore your main database file and config.":[null,""],"Select the backup file you wish to restore":[null,""],"Misc":[null,""],"Interface":[null,""],"Advanced Settings":[null,""],"Startup options. Indexer options. Log and show file locations.":[null,""],"Some options may require a manual restart to take effect.":[null,""],"Default Indexer Language":[null,""],"for adding shows and metadata providers":[null,""],"Launch browser":[null,""],"open the SickRage home page on startup":[null,""],"Initial page":[null,""],"Shows":[null,""],"when launching SickRage interface":[null,""],"Choose hour to update shows":[null,""],"with information such as next air dates, show ended, etc. Use 15 for 3pm, 4 for 4am etc.":[null,""],"note":[null,""],"minutes are randomized each time SickRage is started":[null,""],"Send to trash for actions":[null,""],"when using show \"Remove\" and delete files":[null,""],"on scheduled deletes of the oldest log files":[null,""],"selected actions use trash (recycle bin) instead of the default permanent delete":[null,""],"Log file folder location":[null,""],"Number of Log files saved":[null,""],"number of log files saved when rotating logs (default: 5) (REQUIRES RESTART)":[null,""],"Size of Log files saved":[null,""],"maximum size in MB of the log file (default: 1MB) (REQUIRES RESTART)":[null,""],"Use initial indexer set to":[null,""],"as the default selection when adding new shows":[null,""],"Timeout show indexer at":[null,""],"seconds of inactivity when finding new shows (default:20)":[null,""],"Show root directories":[null,""],"where the files of shows are located":[null,""],"Save Changes":[null,""],"Options for software updates.":[null,""],"Check software updates":[null,""],"and display notifications when updates are available. Checks are run on startup and at the frequency set below*":[null,""],"Automatically update":[null,""],"fetch and install software updates. Updates are run on startup and in the background at the frequency set below*":[null,""],"Check the server every*":[null,""],"hours for software updates (default:1)":[null,""],"Notify on software update":[null,""],"send a message to all enabled notifiers when SickRage has been updated":[null,""],"User Interface":[null,""],"Options for visual appearance.":[null,""],"Interface Language":[null,""],"System Language":[null,""],"for appearance to take effect, save then refresh your browser":[null,""],"Display theme":[null,""],"Dark":[null,""],"Light":[null,""],"Use a background image":[null,""],"use a custom image as background for SickRage":[null,""],"Background Path":[null,""],"Path to the background image":[null,""],"Show fanart in the background":[null,""],"on the show summary page":[null,""],"Fanart transparency":[null,""],"transparency of the fanart in the background":[null,""],"Use a custom stylesheet file":[null,""],"use a custom .css file to style SickRage (for advanced users)":[null,""],"Stylesheet File Path":[null,""],"Path to the stylesheet (.css) file":[null,""],"Show all seasons":[null,""],"Sort with \"The\", \"A\", \"An\"":[null,""],"include articles (\"The\", \"A\", \"An\") when sorting show lists":[null,""],"Missed episodes range":[null,""],"set the range in days of the missed episodes in the Schedule page":[null,""],"Display fuzzy dates":[null,""],"move absolute dates into tooltips and display e.g. \"Last Thu\", \"On Tue\"":[null,""],"Trim zero padding":[null,""],"remove the leading number \"0\" shown on hour of day, and date of month":[null,""],"Date style":[null,""],"Use System Default":[null,""],"Time style":[null,""],"seconds are only shown on the History page":[null,""],"Timezone":[null,""],"Local":[null,""],"Network":[null,""],"display dates and times in either your timezone or the shows network timezone":[null,""],"use local timezone to start searching for episodes minutes after show ends (depends on your dailysearch frequency)":[null,""],"Download url":[null,""],"URL where the shows can be downloaded.":[null,""],"Web Interface":[null,""],"it is recommended that you enable a username and password to secure SickRage from being tampered with remotely.":[null,""],"these options require a manual restart to take effect.":[null,""],"API key":[null,""],"used to give 3rd party programs limited access to SickRage":[null,""],"you can try all the features of the API":[null,""],"here":[null,""],"HTTP logs":[null,""],"enable logs from the internal Tornado web server":[null,""],"HTTP username":[null,""],"set blank for no login":[null,""],"HTTP password":[null,""],"blank = no authentication":[null,""],"HTTP port":[null,""],"web port to browse and access SickRage (default:8081)":[null,""],"Notify on login":[null,""],"enable to be notified when a new login happens in webserver":[null,""],"Listen on IPv6":[null,""],"attempt binding to any available IPv6 address":[null,""],"Enable HTTPS":[null,""],"enable access to the web interface using a HTTPS address":[null,""],"HTTPS certificate":[null,""],"file name or path to HTTPS certificate":[null,""],"HTTPS key":[null,""],"file name or path to HTTPS key":[null,""],"Reverse proxy headers":[null,""],"accept the following reverse proxy headers (advanced)...":[null,""],"(X-Forwarded-For, X-Forwarded-Host, and X-Forwarded-Proto)":[null,""],"CPU throttling":[null,""],"Normal (default). High is lower and Low is higher CPU use":[null,""],"Anonymous redirect":[null,""],"backlink protection via anonymizer service, must end in \"?\"":[null,""],"Enable debug":[null,""],"enable debug logs":[null,""],"Verify SSL Certs":[null,""],"verify SSL Certificates (Disable this for broken SSL installs (Like QNAP))":[null,""],"No Restart":[null,""],"only shutdown when restarting SR":[null,""],"only select this when you have external software restarting SR automatically when it stops (like FireDaemon)":[null,""],"Encrypt passwords":[null,""],"in the <code>config.ini</code> file":[null,""],"warning":[null,""],"passwords must only contain":[null,""],"ASCII characters":[null,""],"Unprotected calendar":[null,""],"allow subscribing to the calendar without user and password":[null,""],"some services like Google Calendar only work this way":[null,""],"Google Calendar Icons":[null,""],"show an icon next to exported calendar events in Google Calendar":[null,""],"Proxy host":[null,""],"blank to disable or proxy to use when connecting to providers":[null,""],"also use global proxy setting for indexers (tvdb, xem, anidb, etc.)":[null,""],"Skip Remove Detection":[null,""],"skip detection of removed files":[null,""],"if disabled the episode will be set to the default deleted status":[null,""],"Default deleted episode status":[null,""],"define the status to be set for media file that has been deleted.":[null,""],"Archived option will keep previous downloaded quality":[null,""],"example: Downloaded (1080p WEB-DL) ==> Archived (1080p WEB-DL)":[null,""],"Options for github related features.":[null,""],"Branch version":[null,""],"error: No branches found.":[null,""],"select branch to use (restart required)":[null,""],"Authorization Type":[null,""],"Username and password":[null,""],"Personal access token":[null,""],"You must use a personal access token if you're using \"two-factor authentication\" on GitHub.":[null,""],"GitHub username":[null,""],"*** (REQUIRED FOR SUBMITTING ISSUES) ***":[null,""],"GitHub password":[null,""],"GitHub personal access token":[null,""],"Generate Token":[null,""],"Manage Tokens":[null,""],"GitHub remote for branch":[null,""],"access repo configured remotes (save then refresh browser)":[null,""],"default":[null,""],"origin":[null,""],"Git executable path":[null,""],"only needed if OS is unable to locate git from env":[null,""],"Git reset":[null,""],"removes untracked files and performs a hard reset on git branch automatically to help resolve update issues":[null,""],"Home Theater / NAS":[null,""],"Devices":[null,""],"Social":[null,""],"A free and open source cross-platform media center and home entertainment system software with a 10-foot user interface designed for the living-room TV.":[null,""],"send KODI commands?":[null,""],"Always on":[null,""],"log errors when unreachable?":[null,""],"Notify on snatch":[null,""],"send a notification when a download starts?":[null,""],"Notify on download":[null,""],"send a notification when a download finishes?":[null,""],"Notify on subtitle download":[null,""],"send a notification when subtitles are downloaded?":[null,""],"Update library":[null,""],"update KODI library when a download finishes?":[null,""],"Full library update":[null,""],"perform a full library update if update per-show fails?":[null,""],"Only update first host":[null,""],"only send library updates to the first active host?":[null,""],"KODI IP:Port":[null,""],"host running KODI (eg. 192.168.1.100:8080)":[null,""],"(multiple host strings must be separated by commas)":[null,""],"Username":[null,""],"username for your KODI server (blank for none)":[null,""],"Password":[null,""],"password for your KODI server (blank for none)":[null,""],"Click below to test.":[null,""],"Experience your media on a visually stunning, easy to use interface on your Mac connected to your TV. Your media library has never looked this good!":[null,""],"For sending notifications to Plex Home Theater (PHT) clients, use the KODI notifier with port <b>3005</b>.":[null,""],"send Plex Media Server library updates?":[null,""],"Plex Media Server Auth Token":[null,""],"auth token used by Plex":[null,""],"Update Library":[null,""],"update Plex Media Server library when a download finishes":[null,""],"Plex Media Server IP:Port":[null,""],"one or more hosts running Plex Media Server<br/>(eg. 192.168.1.1:32400, 192.168.1.2:32400)":[null,""],"HTTPS":[null,""],"use https for plex media server requests?":[null,""],"Click below to test Plex Media Server(s)":[null,""],"Test Plex Media Server":[null,""],"Plex Home Theater":[null,""],"send Plex Home Theater notifications?":[null,""],"Plex Home Theater IP:Port":[null,""],"one or more hosts running Plex Home Theater<br>(eg. 192.168.1.100:3000, 192.168.1.101:3000)":[null,""],"Click below to test Plex Home Theater(s)":[null,""],"Test Plex Home Theater":[null,""],"some Plex Home Theaters <b class=\"boldest\">do not</b> support notifications e.g. Plexapp for Samsung TVs":[null,""],"Emby":[null,""],"A home media server built using other popular open source technologies.":[null,""],"send update commands to Emby?":[null,""],"Emby IP:Port":[null,""],"host running Emby (eg. 192.168.1.100:8096)":[null,""],"Emby API Key":[null,""],"Networked Media Jukebox":[null,""],"The Networked Media Jukebox, or NMJ, is the official media jukebox interface made available for the Popcorn Hour 200-series.":[null,""],"send update commands to NMJ?":[null,""],"Popcorn IP address":[null,""],"IP address of Popcorn 200-series (eg. 192.168.1.100)":[null,""],"Get settings":[null,""],"Get Settings":[null,""],"the Popcorn Hour device must be powered on and NMJ running.":[null,""],"NMJ database":[null,""],"automatically filled via the 'Get Settings' button.":[null,""],"NMJ mount url":[null,""],"Networked Media Jukebox v2":[null,""],"The Networked Media Jukebox, or NMJv2, is the official media jukebox interface made available for the Popcorn Hour 300 & 400-series.":[null,""],"send update commands to NMJv2?":[null,""],"IP address of Popcorn 300/400-series (eg. 192.168.1.100)":[null,""],"Database location":[null,""],"Database instance":[null,""],"adjust this value if the wrong database is selected.":[null,""],"Find database":[null,""],"Find Database":[null,""],"the Popcorn Hour device must be powered on.":[null,""],"NMJv2 database":[null,""],"automatically filled via the 'Find Database' buttons.":[null,""],"Synology":[null,""],"The Synology DiskStation NAS.":[null,""],"Synology Indexer is the daemon running on the Synology NAS to build its media database.":[null,""],"send Synology notifications?":[null,""],"requires SickRage to be running on your Synology NAS.":[null,""],"Synology Indexer":[null,""],"Synology Notifier is the notification system of Synology DSM":[null,""],"send notifications to the Synology Notifier?":[null,""],"pyTivo":[null,""],"pyTivo is both an HMO and GoBack server. This notifier will load the completed downloads to your Tivo.":[null,""],"send notifications to pyTivo?":[null,""],"requires the downloaded files to be accessible by pyTivo.":[null,""],"pyTivo IP:Port":[null,""],"host running pyTivo (eg. 192.168.1.1:9032)":[null,""],"pyTivo share name":[null,""],"value used in pyTivo Web Configuration to name the share.":[null,""],"Tivo name":[null,""],"(Messages & Settings > Account & System Information > System Information > DVR name)":[null,""],"Growl":[null,""],"A cross-platform unobtrusive global notification system.":[null,""],"send Growl notifications?":[null,""],"Growl IP:Port":[null,""],"host running Growl (eg. 192.168.1.100:23053)":[null,""],"may leave blank if SickRage is on the same host.":[null,""],"otherwise Growl <b>requires</b> a password to be used.":[null,""],"Click below to register and test Growl, this is required for Growl notifications to work.":[null,""],"Register Growl":[null,""],"Prowl":[null,""],"A Growl client for iOS.":[null,""],"send Prowl notifications?":[null,""],"Prowl Message Title":[null,""],"Global Prowl API key(s)":[null,""],"Prowl API(s) listed here, separated by commas if applicable, will<br> receive notifications for <b>all</b> shows. Your Prowl API key is available at:":[null,""],"(this field may be blank except when testing.)":[null,""],"Show notification list":[null,""],"-- Select a Show --":[null,""],"Configure per-show notifications here by entering Prowl API key(s), separated by commas, '\n 'after selecting a show in the drop-down box. Be sure to activate the 'Save for this show' '\n 'button below after each entry.":[null,""],"Save for this show":[null,""],"Prowl priority":[null,""],"Very Low":[null,""],"Moderate":[null,""],"Normal":[null,""],"High":[null,""],"Emergency":[null,""],"priority of Prowl messages from SickRage.":[null,""],"Libnotify":[null,""],"The standard desktop notification API for Linux/*nix systems. This notifier will only function if the pynotify module is installed (Ubuntu/Debian package <a href=\"apt:python-notify\">python-notify</a>).":[null,""],"send Libnotify notifications?":[null,""],"Pushover":[null,""],"Pushover makes it easy to send real-time notifications to your Android and iOS devices.":[null,""],"send Pushover notifications?":[null,""],"Pushover key":[null,""],"user key of your Pushover account":[null,""],"Pushover API key":[null,""],"click here":[null,""]," to create a Pushover API key":[null,""],"Pushover devices":[null,""],"comma separated list of pushover devices you want to send notifications to":[null,""],"Pushover notification sound":[null,""],"Bike":[null,""],"Bugle":[null,""],"Cash Register":[null,""],"Classical":[null,""],"Cosmic":[null,""],"Falling":[null,""],"Gamelan":[null,""],"Incoming":[null,""],"Intermission":[null,""],"Magic":[null,""],"Mechanical":[null,""],"Piano Bar":[null,""],"Siren":[null,""],"Space Alarm":[null,""],"Tug Boat":[null,""],"Alien Alarm (long)":[null,""],"Climb (long)":[null,""],"Persistent (long)":[null,""],"Pushover Echo (long)":[null,""],"Up Down (long)":[null,""],"None (silent)":[null,""],"Device specific":[null,""],"choose notification sound to use":[null,""],"Pushover priority":[null,""],"Choose priority to use":[null,""],"Boxcar 2":[null,""],"Read your messages where and when you want them!":[null,""],"send Boxcar notifications?":[null,""],"Boxcar2 access token":[null,""],"access token for your Boxcar account.":[null,""],"NMA":[null,""],"Notify My Android":[null,""],"Notify My Android is a Prowl-like Android App and API that offers an easy way to send notifications from your application directly to your Android device.":[null,""],"send NMA notifications?":[null,""],"NMA API key":[null,""],"(multiple keys must be separated by commas, up to a maximum of 5)":[null,""],"NMA priority":[null,""],"priority of NMA messages from SickRage.":[null,""],"Pushalot":[null,""],"Pushalot is a platform for receiving custom push notifications to connected devices running Windows Phone or Windows 8.":[null,""],"send Pushalot notifications ?":[null,""],"Pushalot authorization token":[null,""],"authorization token of your Pushalot account.":[null,""],"Pushbullet":[null,""],"Pushbullet is a platform for receiving custom push notifications to connected devices running Android/iOS and desktop browsers such as Chrome, Firefox or Opera.":[null,""],"send Pushbullet notifications?":[null,""],"Pushbullet API key":[null,""],"API key of your Pushbullet account":[null,""],"Pushbullet devices":[null,""],"Update device list":[null,""],"Pushbullet channels":[null,""],"Free Mobile":[null,""],"Free Mobile is a famous French cellular network provider.<br> It provides to their customer a free SMS API.":[null,""],"send SMS notifications?":[null,""],"send a SMS when a download starts?":[null,""],"send a SMS when a download finishes?":[null,""],"send a SMS when subtitles are downloaded?":[null,""],"Free Mobile customer ID":[null,""],"it's your Free Mobile customer ID (8 digits)":[null,""],"Free Mobile API key":[null,""],"find your API key in your customer portal.":[null,""],"Click below to test your settings.":[null,""],"Telegram":[null,""],"Telegram is a cloud-based instant messaging service.":[null,""],"send Telegram notifications?":[null,""],"send a message when a download starts?":[null,""],"send a message when a download finishes?":[null,""],"send a message when subtitles are downloaded?":[null,""],"User/group ID":[null,""],"contact @myidbot on Telegram to get an ID":[null,""],"Bot API token":[null,""],"contact @BotFather on Telegram to set up one":[null,""],"Join":[null,""],"Join all of your devices together!":[null,""],"send Join notifications?":[null,""],"Device ID":[null,""],"per device specific id":[null,""]," to create a Join API key":[null,""],"Twilio":[null,""],"Twilio is a webservice API that allows you to communicate directly with a mobile number. This notifier will send a text directly to your mobile device.":[null,""],"should SickRage text your mobile device?":[null,""],"Twilio Account SID":[null,""],"account SID of your Twilio account.":[null,""],"Twilio Auth Token":[null,""],"Twilio Phone SID":[null,""],"phone SID that you would like to send the sms from":[null,""],"Your phone number":[null,""],"phone number that will receive the sms. Please use the format +1-###-###-####":[null,""],"Twitter":[null,""],"A social networking and microblogging service, enabling its users to send and read other users' messages called tweets.":[null,""],"should SickRage post tweets on Twitter?":[null,""],"you may want to use a secondary account.":[null,""],"send direct message":[null,""],"send a notification via Direct Message, not via status update":[null,""],"send DM to":[null,""],"Twitter account to send Direct Messages to (must follow you)":[null,""],"Step One":[null,""],"Request Authorization":[null,""],"Click the \"Request Authorization\" button.<br> This will open a new page containing an auth key.<br> <b>note:</b> if nothing happens check your popup blocker.":[null,""],"Step Two":[null,""],"Enter the key Twitter gave you below, and click \"Verify Key\".":[null,""],"Trakt":[null,""],"Trakt helps keep a record of what TV shows and movies you are watching. Based on your favorites, Trakt recommends additional shows and movies you'll enjoy!":[null,""],"send Trakt.tv notifications?":[null,""],"username of your Trakt account.":[null,""],"Trakt PIN":[null,""],"Get Trakt PIN":[null,""],"PIN code to authorize SickRage to access Trakt on your behalf.":[null,""],"API Timeout":[null,""],"seconds to wait for Trakt API to respond. (Use 0 to wait forever)":[null,""],"Default indexer":[null,""],"Sync libraries":[null,""],"sync your SickRage show library with your trakt show library.":[null,""],"Remove Episodes From Collection":[null,""],"remove an episode from your Trakt Collection if it is not in your SickRage Library.":[null,""],"Sync watchlist":[null,""],"sync your SickRage show watchlist with your trakt show watchlist (either Show and Episode).":[null,""],"episode will be added on watch list when wanted or snatched and will be removed when downloaded ":[null,""],"Watchlist add method":[null,""],"Skip All":[null,""],"Download Pilot Only":[null,""],"Get whole show":[null,""],"method in which to download episodes for new shows.":[null,""],"Remove episode":[null,""],"remove an episode from your watchlist after it is downloaded.":[null,""],"Remove series":[null,""],"remove the whole series from your watchlist after any download.":[null,""],"Remove watched show":[null,""],"remove the show from sickrage if it's ended and completely watched":[null,""],"Start paused":[null,""],"shows grabbed from your trakt watchlist start paused.":[null,""],"Trakt blackList name":[null,""],"name (slug) of list on Trakt for blacklisting show on 'Add Trending Show' & 'Add Recommended Shows' pages":[null,""],"Email":[null,""],"Allows configuration of email notifications on a per show basis.":[null,""],"send email notifications?":[null,""],"SMTP host":[null,""],"hostname of your SMTP email server.":[null,""],"SMTP port":[null,""],"port number used to connect to your SMTP host.":[null,""],"SMTP from":[null,""],"sender email address, some hosts require a real address.":[null,""],"Use TLS":[null,""],"check to use TLS encryption.":[null,""],"SMTP user":[null,""],"(optional) your SMTP server username.":[null,""],"SMTP password":[null,""],"(optional) your SMTP server password.":[null,""],"Global email list":[null,""],"email addresses listed here, separated by commas if applicable, will<br> receive notifications for <b>all</b> shows.":[null,""],"(This field may be blank except when testing.)":[null,""],"Email Subject":[null,""],"use a custom subject for some privacy protection?":[null,""],"(leave blank for the default SickRage subject)":[null,""],"configure per-show notifications here by entering email address(es), separated by commas,":[null,""],"after selecting a show in the drop-down box. Be sure to activate the 'Save for this show'":[null,""],"button below after each entry.":[null,""],"Slack":[null,""],"Slack brings all your communication together in one place. It's real-time messaging, archiving and search for modern teams.":[null,""],"should SickRage post messages on Slack?":[null,""],"Slack Incoming Webhook":[null,""],"Discord":[null,""],"All-in-one voice and text chat for gamers that's free, secure, and works on both your desktop and phone.":[null,""],"Should SickRage post messages on Discord?":[null,""],"Discord Incoming Webhook":[null,""],"Create webhook under channel settings.":[null,""],"Discord Bot Name":[null,""],"Blank will use webhook default Name.":[null,""],"Discord Avatar URL":[null,""],"Blank will use webhook default Avatar.":[null,""],"Discord TTS":[null,""],"Send notifications using text-to-speech":[null,""],"Post-Processing":[null,""],"Episode Naming":[null,""],"Metadata":[null,""],"Settings that dictate how SickRage should process completed downloads.":[null,""],"enable the automatic post processor to scan and process any files in your Post Processing Dir":[null,""],"do not use if you use an external Post Processing script":[null,""],"Post Processing Dir":[null,""],"the folder where your download client puts the completed TV downloads.":[null,""],"please use seperate downloading and completed folders in your download client if possible.":[null,""],"Processing Method":[null,""],"what method should be used to put files into the library?":[null,""],"if you keep seeding torrents after they finish, please avoid the 'move' processing method to prevent errors.":[null,""],"Auto Post-Processing Frequency":[null,""],"time in minutes to check for new files to auto post-process (min 10)":[null,""],"Postpone post processing":[null,""],"wait to process a folder if sync files are present.":[null,""],"Sync File Extensions":[null,""],"comma seperated list of extensions or filename globs SickRage ignores when Post Processing":[null,""],"Rename Episodes":[null,""],"rename episode using the Episode Naming settings?":[null,""],"Create missing show directories":[null,""],"create missing show directories when they get deleted":[null,""],"Add shows without directory":[null,""],"add shows without creating a directory (not recommended)":[null,""],"Move associated files":[null,""],"move associated (srt/srr/sfv/etc) files while post processing?":[null,""],"Rename .nfo file":[null,""],"rename the original .nfo file to .nfo-orig to avoid conflicts?":[null,""],"Associated file extensions":[null,""],"comma separated list of associated file extensions SickRage should keep while post processing.":[null,""],"leaving it empty means no associated files will be post processed":[null,""],"Delete non associated files":[null,""],"delete non associated files while post processing?":[null,""],"Change File Date":[null,""],"set last modified filedate to the date that the episode aired?":[null,""],"some systems may ignore this feature.":[null,""],"Timezone for File Date":[null,""],"local":[null,""],"network":[null,""],"what timezone should be used to change File Date?":[null,""],"Unpack":[null,""],"What to do with archived releases found in your <i>TV Download Dir</i>?":[null,""],"Ignore (do not process contents)":[null,""],"Unpack (process contents)":[null,""],"Treat as video (process archive as-is)":[null,""],"'Unpack' only works with RAR archives":[null,""],"Windows":[null,""],"WinRar is required on windows":[null,""],"Unpack Directory":[null,""],"Choose a path to unpack files, leave blank to unpack in download dir":[null,""],"Unrar Location":[null,""],"add the path to unrar if it is not in the system path":[null,""],"Alternate Unrar Tool":[null,""],"add the path to an alternate unrar tool if it is not in the system path":[null,""],"Delete RAR contents":[null,""],"delete content of RAR files, even if Process Method not set to move?":[null,""],"only working with RAR archive":[null,""],"Don't delete empty folders":[null,""],"leave empty folders when Post Processing?":[null,""],"can be overridden using manual Post Processing":[null,""],"Follow symbolic-links":[null,""],"follow down symbolic links in download directory?":[null,""],"<b>EXPERTS ONLY.</b><br>Enable only if you know what <b>circular symbolic links</b> are,<br>and can <b>verify that you have none</b>.":[null,""],"Use icacls":[null,""],"Windows only":[null,""],"sets video permissions after using the move method in post processing":[null,""],"Extra Scripts":[null,""],"see":[null,""],"for script arguments description and usage.":[null,""],"How SickRage will name and sort your episodes.":[null,""],"Name Pattern":[null,""],"Toggle Naming Legend":[null,""],"don't forget to add quality pattern. Otherwise after post-processing the episode will have UNKNOWN quality":[null,""],"Meaning":[null,""],"Pattern":[null,""],"Result":[null,""],"Use lower case if you want lower case names (eg. %sn, %e.n, %q_n etc)":[null,""],"Show Name":[null,""],"Show.Name":[null,""],"Show_Name":[null,""],"Season Number":[null,""],"XEM Season Number":[null,""],"Episode Number":[null,""],"XEM Episode Number":[null,""],"Episode Name":[null,""],"Episode.Name":[null,""],"Episode_Name":[null,""],"Air Date":[null,""],"Post-Processing Date":[null,""],"Quality":[null,""],"Scene Quality":[null,""],"Release Name":[null,""],"SickRage' is used in place of RLSGROUP if it could not be properly detected":[null,""],"Release Group":[null,""],"If episode is proper/repack add 'proper' to name.":[null,""],"Release Type":[null,""],"Multi-Episode Style":[null,""],"Single-EP Sample":[null,""],"Multi-EP sample":[null,""],"Strip Show Year":[null,""],"remove the TV show's year when renaming the file?":[null,""],"only applies to shows that have year inside parentheses":[null,""],"Custom Air-By-Date":[null,""],"name air-by-date shows differently than regular shows?":[null,""],"Toggle ABD Naming Legend":[null,""],"Regular Air Date":[null,""],"Year":[null,""],"Month":[null,""],"Day":[null,""],"Multi-EP style is ignored":[null,""],"Custom Sports":[null,""],"name sports shows differently than regular shows?":[null,""],"Toggle Sports Naming Legend":[null,""],"Sports Air Date":[null,""],"Custom Anime":[null,""],"name anime shows differently than regular shows?":[null,""],"Toggle Anime Naming Legend":[null,""],">XEM Season Number":[null,""],"Single-EP Anime Sample":[null,""],"Multi-EP Anime sample":[null,""],"Add Absolute Number":[null,""],"add the absolute number to the season/episode format?":[null,""],"only applies to anime. (eg. S15E45 - 310 vs S15E45)":[null,""],"Only Absolute Number":[null,""],"replace season/episode format with absolute number":[null,""],"only applies to anime.":[null,""],"No Absolute Number":[null,""],"don't include the absolute number":[null,""],"The data associated to the data. These are files associated to a TV show in the form of images and text that, when supported, will enhance the viewing experience.":[null,""],"Metadata Type":[null,""],"toggle metadata options that you wish to be created":[null,""],"multiple targets may be used":[null,""],"Select Metadata":[null,""],"Provider Priorities":[null,""],"Provider Options":[null,""],"Configure Custom Newznab Providers":[null,""],"Configure Custom Torrent Providers":[null,""],"Check off and drag the providers into the order you want them to be used.":[null,""],"At least one provider is required but two are recommended.":[null,""],"Torrent providers can be toggled in ":[null,""],"Provider does not support backlog searches at this time.":[null,""],"Provider is <b>NOT WORKING</b>.":[null,""],"Configure individual provider settings here.":[null,""],"Check with provider's website on how to obtain an API key if needed.":[null,""],"Configure provider":[null,""],"no providers available to configure.":[null,""],"URL":[null,""],"Enable daily searches":[null,""],"enable provider to perform daily searches.":[null,""],"Enable backlog searches":[null,""],"enable provider to perform backlog searches.":[null,""],"Season search mode":[null,""],"when searching for complete seasons you can choose to have it look for season packs only, or choose to have it build a complete season from just single episodes.":[null,""],"season packs only.":[null,""],"episodes only.":[null,""],"Enable fallback":[null,""],"when searching for a complete season depending on search mode you may return no results, this helps by restarting the search using the opposite search mode.":[null,""],"Custom URL":[null,""],"the URL should include the protocol (and port if applicable). Examples: http://192.168.1.4/ or http://localhost:3000/":[null,""],"Api key":[null,""],"Digest":[null,""],"Hash":[null,""],"Passkey":[null,""],"Cookies":[null,""],"example: uid=1234;pass=567845439634987<br>note: uid and pass are not your username/password.<br>use DevTools or Firebug to get these values after logging in on your browser.":[null,""],"Pin":[null,""],"Seed ratio":[null,""],"stop transfer when ratio is reached<br>(-1 SickRage default to seed forever, or leave blank for downloader default)":[null,""],"Minimum seeders":[null,""],"Minimum leechers":[null,""],"Confirmed download":[null,""],"only download torrents from trusted or verified uploaders ?":[null,""],"Ranked torrents":[null,""],"only download ranked torrents (trusted releases)":[null,""],"English torrents":[null,""],"only download english torrents, or torrents containing english subtitles":[null,""],"For Spanish torrents":[null,""],"ONLY search on this provider if show info is defined as \"Spanish\" (avoid provider's use for VOS shows)":[null,""],"Sorting results by":[null,""],"Freeleech":[null,""],"only download <b>\"FreeLeech\"</b> torrents.":[null,""],"Category":[null,""],"select torrent with Italian subtitle":[null,""],"Configure Custom<br>Newznab Providers":[null,""],"Add and setup or remove custom Newznab providers.":[null,""],"Select provider":[null,""],"-- add new provider --":[null,""],"Provider name":[null,""],"Site URL":[null,""],"Newznab search categories":[null,""],"select your Newznab categories on the left, and click the \"update categories\" button to use them for searching.) <b>don't forget to to save the form!":[null,""],"Update Categories":[null,""],"Add":[null,""],"Delete":[null,""],"Add and setup or remove custom RSS providers.":[null,""],"RSS URL":[null,""],"Search element":[null,""],"eg: title":[null,""],"Episode Search":[null,""],"NZB Search":[null,""],"Torrent Search":[null,""],"How to manage searching with":[null,""],"Randomize Providers":[null,""],"randomize the provider search order instead of going in order of placement":[null,""],"Download propers":[null,""],"replace original download with \"Proper\" or \"Repack\" if nuked":[null,""],"Check propers every":[null,""],"24 hours":[null,""],"4 hours":[null,""],"90 mins":[null,""],"45 mins":[null,""],"15 mins":[null,""],"Backlog search day(s)":[null,""],"number of day(s) that the \"Forced Backlog Search\" will cover (e.g. 7 Days)":[null,""],"Backlog search frequency":[null,""],"time in minutes between searches (min.":[null,""],"Daily search frequency":[null,""],"Usenet retention":[null,""],"age limit in days for usenet articles to be used (e.g. 500)":[null,""],"Ignore words":[null,""],"results with one or more word from this list will be ignored<br>separate words with a comma, e.g. \"word1,word2,word3\"":[null,""],"Require words":[null,""],"results with no word from this list will be ignored<br>separate words with a comma, e.g. \"word1,word2,word3\"":[null,""],"Trackers list":[null,""],"trackers that will be added to magnets without trackers<br>separate trackers with a comma, e.g. \"tracker1,tracker2,tracker3\"":[null,""],"Ignore language names in subbed results":[null,""],"ignore subbed releases based on language names <br>\n Example: \"dk\" will ignore words: dksub, dksubs, dksubbed, dksubed <br>\n separate languages with a comma, e.g. \"lang1,lang2,lang3":[null,""],"Allow high priority":[null,""],"set downloads of recently aired episodes to high priority":[null,""],"Use Failed Downloads":[null,""],"use Failed Download Handling?":[null,""],"will only work with snatched/downloaded episodes after enabling this":[null,""],"Delete Failed":[null,""],"delete files left over from a failed download?":[null,""],"this only works if Use Failed Downloads is enabled.":[null,""],"How to handle NZB search results.":[null,""],"Search NZBs":[null,""],"enable NZB search providers":[null,""],"Send .nzb files to":[null,""],"SABnzbd server URL":[null,""],"URL to your SABnzbd server (e.g. http://localhost:8080/)":[null,""],"SABnzbd username":[null,""],"(blank for none)":[null,""],"SABnzbd password":[null,""],"SABnzbd API key":[null,""],"locate at... SABnzbd Config -> General -> API Key":[null,""],"Use SABnzbd category":[null,""],"add downloads to this category (e.g. TV)":[null,""],"Use SABnzbd category (backlog episodes)":[null,""],"add downloads of old episodes to this category (e.g. TV)":[null,""],"Use SABnzbd category for anime":[null,""],"add anime downloads to this category (e.g. anime)":[null,""],"Use SABnzbd category for anime (backlog episodes)":[null,""],"add anime downloads of old episodes to this category (e.g. anime)":[null,""],"Use forced priority":[null,""],"enable to change priority from HIGH to FORCED":[null,""],"Black hole folder location":[null,""],"<b>.nzb</b> files are stored at this location for external software to find and use":[null,""],"Connect using HTTPS":[null,""],"enable Secure control in NZBGet and set the correct Secure Port here":[null,""],"NZBget host:port":[null,""],"(e.g. localhost:6789)":[null,""],"NZBget RPC host name and port number (not NZBgetweb!)":[null,""],"NZBget username":[null,""],"locate in nzbget.conf (default:nzbget)":[null,""],"NZBget password":[null,""],"locate in nzbget.conf (default:tegbzn6789)":[null,""],"Use NZBget category":[null,""],"send downloads marked this category (e.g. TV)":[null,""],"Use NZBget category (backlog episodes)":[null,""],"send downloads of old episodes marked this category (e.g. TV)":[null,""],"Use NZBget category for anime":[null,""],"send anime downloads marked this category (e.g. anime)":[null,""],"Use NZBget category for anime (backlog episodes)":[null,""],"send anime downloads of old episodes marked this category (e.g. anime)":[null,""],"NZBget priority":[null,""],"Very low":[null,""],"Low":[null,""],"Very high":[null,""],"Force":[null,""],"priority for daily snatches (no backlog)":[null,""],"Torrent host:port":[null,""],"URL to your Synology DSM (e.g. http://localhost:5000/)":[null,""],"Client username":[null,""],"Client password":[null,""],"Downloaded files location":[null,""],"where Synology Download Station will save downloaded files (blank for client default)":[null,""],"the destination has to be a shared folder for Synology DS":[null,""],"Click below to test":[null,""],"How to handle Torrent search results.":[null,""],"Search torrents":[null,""],"enable torrent search providers":[null,""],"Send .torrent files to":[null,""],"<b>.torrent</b> files are stored at this location for external software to find and use":[null,""],"URL to your torrent client (e.g. http://localhost:8000/)":[null,""],"Torrent RPC URL":[null,""],"the path without leading and trailing slashes (e.g. transmission)":[null,""],"Http Authentication":[null,""],"Verify certificate":[null,""],"disable if you get \"Deluge: Authentication Error\" in your log":[null,""],"verify SSL certificates for HTTPS requests":[null,""],"Add label to torrent":[null,""],"(blank spaces are not allowed)":[null,""],"label plugin must be enabled in Deluge clients":[null,""],"for QBitTorrent 3.3.1 and up":[null,""],"Add label to torrent for anime":[null,""],"for QBitTorrent 3.3.1 and up ":[null,""],"where <span id=\"torrent_client\">the torrent client</span> will save downloaded files (blank for client default)":[null,""],"the destination has to be a shared folder for Synology DS</span>":[null,""],"Minimum seeding time":[null,""],"time in hours":[null,""],"(default:'0' passes blank to client and '-1' passes nothing)":[null,""],"Start torrent paused":[null,""],"add .torrent to client but do <b style=\"font-weight:900\">not</b> start downloading":[null,""],"Allow high bandwidth":[null,""],"use high bandwidth allocation if priority is high":[null,""],"Test Connection":[null,""],"Windows Shares":[null,""],"Defines your existing windows shares so that we can add them to the browse dialog":[null,""],"Share #{number}":[null,""],"Share label":[null,""],"Hostname or IP":[null,""],"Share path":[null,""],"Subtitles Search":[null,""],"Subtitles Plugin":[null,""],"Plugin Settings":[null,""],"Settings that dictate how SickRage handles subtitles search results.":[null,""],"Search Subtitles":[null,""],"Subtitle Languages":[null,""],"Subtitle Directory":[null,""],"the directory where SickRage should store your <i>Subtitles</i> files.":[null,""],"leave empty if you want store subtitle in episode path.":[null,""],"Subtitle Find Frequency":[null,""],"time in hours between scans (default: 1)":[null,""],"Include Specials":[null,""],"include the show's specials when searching for subtitles?":[null,""],"Perfect matches":[null,""],"only download subtitles that match: release group, video codec, audio codec and resolution":[null,""],"if disabled you may get out of sync subtitles":[null,""],"Subtitles History":[null,""],"log downloaded Subtitle on History page?":[null,""],"Subtitles Multi-Language":[null,""],"append language codes to subtitle filenames?":[null,""],"this option is required if you use multiple subtitle languages":[null,""],"Delete unwanted subtitles":[null,""],"enable to delete unwanted subtitle languages bundled with release":[null,""],"Embedded Subtitles":[null,""],"ignore subtitles embedded inside video file?":[null,""],"this will ignore <u>all</u> embedded subtitles for every video file!":[null,""],"Hearing Impaired Subtitles":[null,""],"download hearing impaired style subtitles?":[null,""],"See":[null,""],"for a script arguments description.":[null,""],"Additional scripts separated by <b>|</b>.":[null,""],"Scripts are called after each episode has searched and downloaded subtitles.":[null,""],"For any scripted languages, include the interpreter executable before the script. See the following example":[null,""],"For Windows:":[null,""],"For Linux / OS X:":[null,""],"Subtitle Providers":[null,""],"Check off and drag the plugins into the order you want them to be used.":[null,""],"At least one plugin is required.":[null,""]," Web-scraping plugin":[null,""],"Provider Settings":[null,""],"Set user and password for each provider":[null,""],"User Name":[null,""],"Change Show":[null,""],"Prev Show":[null,""],"Next Show":[null,""],"Jump to Season":[null,""],"Specials":[null,""],"Poster for":[null,""],"Stars":[null,""],"minutes":[null,""],"View other popular {genre} shows on trakt.tv.":[null,""],"View other popular {imdbgenre} shows on IMDB.":[null,""],"Allowed":[null,""],"Preferred":[null,""],"Originally Airs":[null,""],"Show Status":[null,""],"Default EP Status":[null,""],"Location":[null,""],"Missing":[null,""],"Scene Name":[null,""],"Required Words":[null,""],"Ignored Words":[null,""],"Size":[null,""],"Info Language":[null,""],"Subtitles SR Metadata":[null,""],"Season Folders":[null,""],"Paused":[null,""],"Air-by-Date":[null,""],"Sports":[null,""],"DVD Order":[null,""],"Scene Numbering":[null,""],"Select Filtered Episodes":[null,""],"Clear All":[null,""],"Change selected episodes to":[null,""],"Select Columns":[null,""],"NFO":[null,""],"TBN":[null,""],"Episode":[null,""],"Absolute":[null,""],"Scene":[null,""],"Scene Absolute":[null,""],"File Name":[null,""],"Airdate":[null,""],"Download":[null,""],"Change the value here if scene numbering differs from the indexer episode numbering":[null,""],"Change the value here if scene absolute numbering differs from the indexer absolute numbering":[null,""],"Manual Search":[null,""],"Do you want to mark this episode as failed?":[null,""],"The episode release name will be added to the failed history, preventing it to be downloaded again.":[null,""],"Do you want to include the current episode quality in the search?":[null,""],"Choosing No will ignore any releases with the same episode quality as the one currently downloaded/snatched.":[null,""],"Download subtitle":[null,""],"Do you want to re-download the subtitle for this language?":[null,""],"It will overwrite your current subtitle":[null,""],"Format":[null,""],"Advanced":[null,""],"Main Settings":[null,""],"Show Location":[null,""],"Preferred Quality":[null,""],"Default Episode Status":[null,""],"this will set the status for future episodes.":[null,""],"this only applies to episode filenames and the contents of metadata files.":[null,""],"search for subtitles":[null,""],"Use SR Metdata":[null,""],"use SickRage metadata when searching for subtitle, this will override the autodiscovered metadata":[null,""],"pause this show (SickRage will not download episodes)":[null,""],"Format Settings":[null,""],"Air by date":[null,""],"check if the show is released as Show.03.02.2010 rather than Show.S02E03.":[null,""],"in case of an air date conflict between regular and special episodes, the later will be ignored.":[null,""],"check if the show is Anime and episodes are released as Show.265 rather than Show.S02E03":[null,""],"check if the show is a sporting or MMA event released as Show.03.02.2010 rather than Show.S02E03":[null,""],"Season folders":[null,""],"group episodes by season folder (uncheck to store in a single folder)":[null,""],"search by scene numbering (uncheck to search by indexer numbering)":[null,""],"use the DVD order instead of the air order":[null,""],"a \"Force Full Update\" is necessary, and if you have existing episodes you need to sort them manually.":[null,""],"comma-separated <i>e.g. \"word1,word2,word3</i>\"":[null,""],"search results with one or more words from this list will be ignored.":[null,""],"e.g. \"word1,word2,word3\"":[null,""],"search results with no words from this list will be ignored.":[null,""],"Scene Exception":[null,""],"this will affect episode search on NZB and torrent providers.":[null,""],"this list appends to the original show name.":[null,""],"WARNING logs":[null,""],"ERROR logs":[null,""],"There are no events to display.":[null,""],"Limit":[null,""],"Layout":[null,""],"HistoryLayout":[null,""],"Compact":[null,""],"Detailed":[null,""],"Time":[null,""],"Provider":[null,""],"Missing Provider":[null,""],"missing provider":[null,""],"Directory":[null,""],"Show Name (tvshow.nfo)":[null,""],"Indexer":[null,""],"Enter the folder containing the episode":[null,""],"Process Method to be used":[null,""],"Copy":[null,""],"Move":[null,""],"Hard Link":[null,""],"Symbolic Link":[null,""],"Symbolic Link Reversed":[null,""],"Force already Post Processed Dir/Files":[null,""],"Mark Dir/Files as priority download":[null,""],"(Check it to replace the file even if it exists at higher quality)":[null,""],"Delete files and folders":[null,""],"(Check it to delete files and folders like auto processing)":[null,""],"Don't use processing queue":[null,""],"(If checked this will return the result of the process here, but may be slow!)":[null,""],"Mark download as failed":[null,""],"Process":[null,""],"Download subtitles for this show?":[null,""],"use SickRage metadata when searching for subtitle, <br />this will override the autodiscovered metadata":[null,""],"Status for previously aired episodes":[null,""],"Status for all future episodes":[null,""],"Group episodes by season folder?":[null,""],"Is this show an Anime?":[null,""],"Is this show scene numbered?":[null,""],"Save Defaults":[null,""],"Use current values as the defaults":[null,""],"<p>Select your preferred fansub groups from the <b>Available Groups</b> and add them to the <b>Whitelist</b>. Add groups to the <b>Blacklist</b> to ignore them.</p>\n <p>The <b>Whitelist</b> is checked <i>before</i> the <b>Blacklist</b>.</p>\n <p>Groups are shown as <b>Name</b> | <b>Rating</b> | <b>Number of subbed episodes</b>.</p>\n <p>You may also add any fansub group not listed to either list manually.</p>\n <p>When doing this please note that you can only use groups listed on anidb for this anime.\n <br>If a group is not listed on anidb but subbed this anime, please correct anidb's data.</p>":[null,""],"Whitelist":[null,""],"Available Groups":[null,""],"Add to Whitelist":[null,""],"Add to Blacklist":[null,""],"Blacklist":[null,""],"Custom Group":[null,""],"Allowed Quality:":[null,""],"Preferred Quality:":[null,""],"Filter Show Name":[null,""],"Root":[null,""],"All":[null,""],"Clear Filter(s)":[null,""],"Poster":[null,""],"Small Poster":[null,""],"Banner":[null,""],"Simple":[null,""],"Next Episode":[null,""],"Progress":[null,""],"Direction":[null,""],"Ascending":[null,""],"Descending":[null,""],"Poster Size":[null,""],"Continuing":[null,""],"Ended":[null,""],"Total":[null,""],"Invalid date":[null,""],"No Network":[null,""],"Next Ep":[null,""],"Prev Ep":[null,""],"Show":[null,""],"Downloads":[null,""],"Active":[null,""],"loading":[null,""],"<p><b><u>Preferred</u></b> qualities will replace those in <b><u>allowed</u></b>, even if they are lower.</p>":[null,""],"New":[null,""],"Set as Default":[null,""],"Remember me":[null,""],"Edit Selected":[null,""],"Subtitle":[null,""],"Default Ep Status":[null,""],"Update":[null,""],"Rescan":[null,""],"Rename":[null,""],"Search Subtitle":[null,""],"Force Metadata Regen":[null,""],"Snatched (Allowed)":[null,""],"Jump to Show":[null,""],"Force Backlog":[null,""],"Manage episodes with status":[null,""],"Manage":[null,""],"None of your episodes have status":[null,""],"Shows containing":[null,""],"episodes":[null,""],"Set checked shows/episodes to":[null,""],"Go":[null,""],"Select all":[null,""],"Clear all":[null,""],"Release":[null,""],"Backlog Search":[null,""],"Not in progress":[null,""],"In Progress":[null,""],"Daily Search":[null,""],"Find Propers Search":[null,""],"Propers search disabled":[null,""],"Subtitle Search":[null,""],"Subtitle search disabled":[null,""],"Search Queue":[null,""],"pending items":[null,""],"Daily":[null,""],"Manual":[null,""],"Changing any settings marked with (<span class=\"separator\">*</span>) will force a refresh of the selected shows.":[null,""],"Selected Shows":[null,""],"Root Directories":[null,""],"Current":[null,""],"Keep":[null,""],"Custom":[null,""],"Group episodes by season folder (set to \"No\" to store in a single folder).":[null,""],"Pause these shows (SickRage will not download episodes).":[null,""],"This will set the status for future episodes.":[null,""],"Search by scene numbering (set to \"No\" to search by indexer numbering).":[null,""],"Set if these shows are Anime and episodes are released as Show.265 rather than Show.S02E03":[null,""],"Set if these shows are sporting or MMA events released as Show.03.02.2010 rather than Show.S02E03.":[null,""],"In case of an air date conflict between regular and special episodes, the later will be ignored.":[null,""],"Set if these shows are released as Show.03.02.2010 rather than Show.S02E03.":[null,""],"Search for subtitles.":[null,""],"All of your episodes have {subsLanguage} subtitles.":[null,""],"Manage episodes without":[null,""],"Episodes without {subsLanguage} subtitles.":[null,""],"Episodes without {subtitleLanguage} (undefined) subtitles.":[null,""],"Download missed subtitles for selected episodes":[null,""],"Performing Restart":[null,""],"Waiting for SickRage to shut down":[null,""],"Waiting for SickRage to start again":[null,""],"Loading the default page":[null,""],"Error: The restart has timed out, perhaps something prevented SickRage from starting again?":[null,""],"Key":[null,""],"Missed":[null,""],"Today":[null,""],"Soon":[null,""],"Later":[null,""],"Subscribe":[null,""],"Date":[null,""],"View Paused":[null,""],"Hidden":[null,""],"Shown":[null,""],"Calendar":[null,""],"List":[null,""],"Ends":[null,""],"Next Ep Name":[null,""],"Run time":[null,""],"Indexers":[null,""],"No shows for this day":[null,""],"Airs":[null,""],"Plot":[null,""],"Show Update":[null,""],"Version Check":[null,""],"Proper Finder":[null,""],"Post Process":[null,""],"Subtitles Finder":[null,""],"Scheduler":[null,""],"Alive":[null,""],"Start Time":[null,""],"Cycle Time":[null,""],"Next Run":[null,""],"Last Run":[null,""],"Silent":[null,""],"True":[null,""],"N/A":[null,""],"Show id":[null,""],"Show name":[null,""],"Priority":[null,""],"Added":[null,""],"Queue type":[null,""],"LOW":[null,""],"NORMAL":[null,""],"HIGH":[null,""],"Disk Space":[null,""],"Free space":[null,""],"TV Download Directory":[null,""],"Media Root Directories":[null,""],"Preview of the proposed name changes":[null,""],"All Seasons":[null,""],"select all":[null,""],"Rename Selected":[null,""],"Cancel Rename":[null,""],"Old Location":[null,""],"New Location":[null,""],"Trakt API did not return any results, please check your config.":[null,""],"votes":[null,""],"Remove Show":[null,""],"Level":[null,""],"Filter":[null,""],"All non-absolute folder locations are relative to ":[null,""],"Manual Post-Processing":[null,""],"Episode Status Management":[null,""],"Update PLEX":[null,""],"Update KODI":[null,""],"Update Emby":[null,""],"Manage Torrents":[null,""],"Missed Subtitle Management":[null,""],"Help & Info":[null,""],"Backup & Restore":[null,""],"Tools":[null,""],"Support SickRage":[null,""],"View Errors":[null,""],"View Warnings":[null,""],"View Log":[null,""],"Check For Updates":[null,""],"Restart":[null,""],"Shutdown":[null,""],"Logout":[null,""],"Server Status":[null,""],"View overview of snatched episodes":[null,""],"Episodes Downloaded":[null,""],"Memory used":[null,""],"Load time":[null,""],"Branch":[null,""],"Now":[null,""]}}}} \ No newline at end of file diff --git a/locale/hr_HR/LC_MESSAGES/messages.mo b/locale/hr_HR/LC_MESSAGES/messages.mo index d01af6e1fc39be15a4366882dc775d966fc0c321..4eb6e26b0775105d5d8ecce3b55ba47d0e345241 100644 Binary files a/locale/hr_HR/LC_MESSAGES/messages.mo and b/locale/hr_HR/LC_MESSAGES/messages.mo differ diff --git a/locale/hr_HR/LC_MESSAGES/messages.po b/locale/hr_HR/LC_MESSAGES/messages.po index 4e52e905e94a1d45d702b16d8785b573f299ca38..96aedad448e884c20e257d622bd215e44b42313c 100644 --- a/locale/hr_HR/LC_MESSAGES/messages.po +++ b/locale/hr_HR/LC_MESSAGES/messages.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: sickrage\n" "Report-Msgid-Bugs-To: miigotu@gmail.com\n" -"POT-Creation-Date: 2017-03-25 09:28-0700\n" -"PO-Revision-Date: 2017-03-25 12:29-0400\n" +"POT-Creation-Date: 2017-03-28 09:10-0700\n" +"PO-Revision-Date: 2017-03-28 12:11-0400\n" "Last-Translator: miigotu <miigotu@gmail.com>\n" "Language-Team: Croatian\n" "MIME-Version: 1.0\n" @@ -90,7 +90,7 @@ msgid "Biography" msgstr "" #: gui/slick/views/config_general.mako:78 gui/slick/views/layouts/main.mako:145 -#: sickbeard/__init__.py:79 sickbeard/webserve.py:3807 +#: sickbeard/__init__.py:79 sickbeard/webserve.py:3778 msgid "History" msgstr "" @@ -103,7 +103,7 @@ msgid "Western" msgstr "" #: gui/slick/views/config_general.mako:79 gui/slick/views/layouts/main.mako:221 -#: sickbeard/__init__.py:80 sickbeard/webserve.py:2385 +#: sickbeard/__init__.py:80 sickbeard/webserve.py:2384 msgid "News" msgstr "" @@ -238,6 +238,34 @@ msgstr "" msgid "Subtitled" msgstr "" +#: sickbeard/helpers.py:1887 +msgid "For best results please set the Download Station alias as" +msgstr "" + +#: sickbeard/helpers.py:1888 +msgid "You can check this setting in the Synology DSM" +msgstr "" + +#: sickbeard/helpers.py:1888 sickbeard/helpers.py:1890 +msgid "Control Panel" +msgstr "" + +#: sickbeard/helpers.py:1888 +msgid "Application Portal" +msgstr "" + +#: sickbeard/helpers.py:1889 +msgid "Make sure you allow DSM to be embedded with iFrames too in" +msgstr "" + +#: sickbeard/helpers.py:1890 +msgid "DSM Settings" +msgstr "" + +#: sickbeard/helpers.py:1890 +msgid "Security" +msgstr "" + #: sickbeard/logger.py:474 msgid "<No Filter>" msgstr "" @@ -308,15 +336,15 @@ msgstr "" msgid "Event" msgstr "" -#: sickbeard/logger.py:491 sickbeard/webserve.py:1339 sickbeard/webserve.py:1342 -#: sickbeard/webserve.py:1520 sickbeard/webserve.py:1529 sickbeard/webserve.py:1717 -#: sickbeard/webserve.py:1728 sickbeard/webserve.py:1751 sickbeard/webserve.py:1764 -#: sickbeard/webserve.py:1769 sickbeard/webserve.py:1785 sickbeard/webserve.py:1790 -#: sickbeard/webserve.py:1854 sickbeard/webserve.py:1857 sickbeard/webserve.py:1863 -#: sickbeard/webserve.py:1866 sickbeard/webserve.py:1873 sickbeard/webserve.py:1876 -#: sickbeard/webserve.py:1899 sickbeard/webserve.py:1997 sickbeard/webserve.py:2002 -#: sickbeard/webserve.py:2007 sickbeard/webserve.py:2036 sickbeard/webserve.py:2040 -#: sickbeard/webserve.py:2045 +#: sickbeard/logger.py:491 sickbeard/webserve.py:1338 sickbeard/webserve.py:1341 +#: sickbeard/webserve.py:1519 sickbeard/webserve.py:1528 sickbeard/webserve.py:1716 +#: sickbeard/webserve.py:1727 sickbeard/webserve.py:1750 sickbeard/webserve.py:1763 +#: sickbeard/webserve.py:1768 sickbeard/webserve.py:1784 sickbeard/webserve.py:1789 +#: sickbeard/webserve.py:1853 sickbeard/webserve.py:1856 sickbeard/webserve.py:1862 +#: sickbeard/webserve.py:1865 sickbeard/webserve.py:1872 sickbeard/webserve.py:1875 +#: sickbeard/webserve.py:1898 sickbeard/webserve.py:1996 sickbeard/webserve.py:2001 +#: sickbeard/webserve.py:2006 sickbeard/webserve.py:2035 sickbeard/webserve.py:2039 +#: sickbeard/webserve.py:2044 msgid "Error" msgstr "" @@ -333,6 +361,7 @@ msgstr "" msgid "Main" msgstr "" +#: gui/slick/js/ajaxEpSearch.js:146 gui/slick/js/ajaxEpSearch.js:147 #: gui/slick/views/inc_home_showList.mako:27 sickbeard/show_queue.py:298 msgid "Loading" msgstr "" @@ -372,867 +401,835 @@ msgstr "" msgid "No update needed" msgstr "" -#: sickbeard/webserve.py:170 +#: sickbeard/webserve.py:171 msgid "Mako Error" msgstr "" -#: sickbeard/webserve.py:195 +#: sickbeard/webserve.py:196 msgid "Oops" msgstr "" -#: sickbeard/webserve.py:197 +#: sickbeard/webserve.py:198 msgid "Wrong API key used" msgstr "" -#: gui/slick/views/login.mako:34 sickbeard/webserve.py:302 +#: gui/slick/views/login.mako:34 sickbeard/webserve.py:303 msgid "Login" msgstr "" -#: sickbeard/webserve.py:406 +#: sickbeard/webserve.py:392 msgid "API Key not generated" msgstr "" -#: sickbeard/webserve.py:409 +#: sickbeard/webserve.py:395 msgid "API Builder" msgstr "" #: gui/slick/views/config_general.mako:77 gui/slick/views/layouts/main.mako:141 -#: sickbeard/webserve.py:512 +#: sickbeard/webserve.py:498 msgid "Schedule" msgstr "" -#: sickbeard/webserve.py:610 +#: sickbeard/webserve.py:609 msgid "Test 1" msgstr "" -#: sickbeard/webserve.py:610 +#: sickbeard/webserve.py:609 msgid "This is test number 1" msgstr "" -#: sickbeard/webserve.py:611 +#: sickbeard/webserve.py:610 msgid "Test 2" msgstr "" -#: sickbeard/webserve.py:611 +#: sickbeard/webserve.py:610 msgid "This is test number 2" msgstr "" -#: sickbeard/webserve.py:634 +#: sickbeard/webserve.py:633 msgid "You're using the {branch} branch. Please use 'master' unless specifically asked" msgstr "" -#: sickbeard/webserve.py:698 sickbeard/webserve.py:703 +#: sickbeard/webserve.py:697 sickbeard/webserve.py:702 msgid "Invalid show parameters" msgstr "" -#: sickbeard/webserve.py:710 +#: sickbeard/webserve.py:709 msgid "Invalid parameters" msgstr "" -#: sickbeard/webserve.py:713 sickbeard/webserve.py:1899 +#: sickbeard/webserve.py:712 sickbeard/webserve.py:1898 msgid "Episode couldn't be retrieved" msgstr "" -#: sickbeard/webserve.py:759 sickbeard/webserve.py:1268 sickbeard/webserve.py:1297 +#: sickbeard/webserve.py:758 sickbeard/webserve.py:1267 sickbeard/webserve.py:1296 msgid "Home" msgstr "" -#: gui/slick/views/layouts/main.mako:127 sickbeard/webserve.py:759 +#: gui/slick/views/layouts/main.mako:127 sickbeard/webserve.py:758 msgid "Show List" msgstr "" -#: sickbeard/webserve.py:807 +#: sickbeard/webserve.py:806 msgid "Error: Unsupported Request. Send jsonp request with 'callback' variable in the query string." msgstr "" -#: sickbeard/webserve.py:851 +#: sickbeard/webserve.py:850 msgid "Success. Connected and authenticated" msgstr "" -#: sickbeard/webserve.py:853 +#: sickbeard/webserve.py:852 msgid "Authentication failed. SABnzbd expects" msgstr "" -#: sickbeard/webserve.py:853 +#: sickbeard/webserve.py:852 msgid "as authentication method" msgstr "" -#: sickbeard/webserve.py:855 +#: sickbeard/webserve.py:854 msgid "Unable to connect to host" msgstr "" -#: sickbeard/webserve.py:876 +#: sickbeard/webserve.py:875 msgid "SMS sent successfully" msgstr "" -#: sickbeard/webserve.py:878 +#: sickbeard/webserve.py:877 msgid "Problem sending SMS: {message}" msgstr "" -#: sickbeard/webserve.py:885 +#: sickbeard/webserve.py:884 msgid "Telegram notification succeeded. Check your Telegram clients to make sure it worked" msgstr "" -#: sickbeard/webserve.py:887 +#: sickbeard/webserve.py:886 msgid "Error sending Telegram notification: {message}" msgstr "" -#: sickbeard/webserve.py:894 +#: sickbeard/webserve.py:893 msgid "join notification succeeded. Check your join clients to make sure it worked" msgstr "" -#: sickbeard/webserve.py:896 +#: sickbeard/webserve.py:895 msgid "Error sending join notification: {message}" msgstr "" -#: sickbeard/webserve.py:906 +#: sickbeard/webserve.py:905 msgid " with password" msgstr "" -#: sickbeard/webserve.py:908 +#: sickbeard/webserve.py:907 msgid "Registered and Tested growl successfully {growl_host}" msgstr "" -#: sickbeard/webserve.py:910 +#: sickbeard/webserve.py:909 msgid "Registration and Testing of growl failed {growl_host}" msgstr "" -#: sickbeard/webserve.py:917 +#: sickbeard/webserve.py:916 msgid "Test prowl notice sent successfully" msgstr "" -#: sickbeard/webserve.py:919 +#: sickbeard/webserve.py:918 msgid "Test prowl notice failed" msgstr "" -#: sickbeard/webserve.py:926 +#: sickbeard/webserve.py:925 msgid "Boxcar2 notification succeeded. Check your Boxcar2 clients to make sure it worked" msgstr "" -#: sickbeard/webserve.py:928 +#: sickbeard/webserve.py:927 msgid "Error sending Boxcar2 notification" msgstr "" -#: sickbeard/webserve.py:935 +#: sickbeard/webserve.py:934 msgid "Pushover notification succeeded. Check your Pushover clients to make sure it worked" msgstr "" -#: sickbeard/webserve.py:937 +#: sickbeard/webserve.py:936 msgid "Error sending Pushover notification" msgstr "" -#: sickbeard/webserve.py:949 +#: sickbeard/webserve.py:948 msgid "Key verification successful" msgstr "" -#: sickbeard/webserve.py:951 +#: sickbeard/webserve.py:950 msgid "Unable to verify key" msgstr "" -#: sickbeard/webserve.py:958 +#: sickbeard/webserve.py:957 msgid "Tweet successful, check your twitter to make sure it worked" msgstr "" -#: sickbeard/webserve.py:960 +#: sickbeard/webserve.py:959 msgid "Error sending tweet" msgstr "" -#: sickbeard/webserve.py:965 +#: sickbeard/webserve.py:964 msgid "Please enter a valid account sid" msgstr "" -#: sickbeard/webserve.py:968 +#: sickbeard/webserve.py:967 msgid "Please enter a valid auth token" msgstr "" -#: sickbeard/webserve.py:971 +#: sickbeard/webserve.py:970 msgid "Please enter a valid phone sid" msgstr "" -#: sickbeard/webserve.py:974 +#: sickbeard/webserve.py:973 msgid "Please format the phone number as \"+1-###-###-####\"" msgstr "" -#: sickbeard/webserve.py:978 +#: sickbeard/webserve.py:977 msgid "Authorization successful and number ownership verified" msgstr "" -#: sickbeard/webserve.py:980 +#: sickbeard/webserve.py:979 msgid "Error sending sms" msgstr "" -#: sickbeard/webserve.py:986 +#: sickbeard/webserve.py:985 msgid "Slack message successful" msgstr "" -#: sickbeard/webserve.py:988 +#: sickbeard/webserve.py:987 msgid "Slack message failed" msgstr "" -#: sickbeard/webserve.py:994 +#: sickbeard/webserve.py:993 msgid "Discord message successful" msgstr "" -#: sickbeard/webserve.py:996 +#: sickbeard/webserve.py:995 msgid "Discord message failed" msgstr "" -#: sickbeard/webserve.py:1006 +#: sickbeard/webserve.py:1005 msgid "Test KODI notice sent successfully to {kodi_host}" msgstr "" -#: sickbeard/webserve.py:1008 +#: sickbeard/webserve.py:1007 msgid "Test KODI notice failed to {kodi_host}" msgstr "" -#: sickbeard/webserve.py:1023 +#: sickbeard/webserve.py:1022 msgid "Successful test notice sent to Plex Home Theater ... {plex_clients}" msgstr "" -#: sickbeard/webserve.py:1025 +#: sickbeard/webserve.py:1024 msgid "Test failed for Plex Home Theater ... {plex_clients}" msgstr "" -#: sickbeard/webserve.py:1028 +#: sickbeard/webserve.py:1027 msgid "Tested Plex Home Theater(s)" msgstr "" -#: sickbeard/webserve.py:1042 +#: sickbeard/webserve.py:1041 msgid "Successful test of Plex Media Server(s) ... {plex_servers}" msgstr "" -#: sickbeard/webserve.py:1044 +#: sickbeard/webserve.py:1043 msgid "Test failed, No Plex Media Server host specified" msgstr "" -#: sickbeard/webserve.py:1046 +#: sickbeard/webserve.py:1045 msgid "Test failed for Plex Media Server(s) ... {plex_servers}" msgstr "" -#: sickbeard/webserve.py:1049 +#: sickbeard/webserve.py:1048 msgid "Tested Plex Media Server host(s)" msgstr "" -#: sickbeard/webserve.py:1057 +#: sickbeard/webserve.py:1056 msgid "Tried sending desktop notification via libnotify" msgstr "" -#: sickbeard/webserve.py:1066 +#: sickbeard/webserve.py:1065 msgid "Test notice sent successfully to {emby_host}" msgstr "" -#: sickbeard/webserve.py:1068 +#: sickbeard/webserve.py:1067 msgid "Test notice failed to {emby_host}" msgstr "" -#: sickbeard/webserve.py:1076 +#: sickbeard/webserve.py:1075 msgid "Successfully started the scan update" msgstr "" -#: sickbeard/webserve.py:1078 +#: sickbeard/webserve.py:1077 msgid "Test failed to start the scan update" msgstr "" -#: sickbeard/webserve.py:1097 +#: sickbeard/webserve.py:1096 msgid "Test notice sent successfully to {nmj2_host}" msgstr "" -#: sickbeard/webserve.py:1099 +#: sickbeard/webserve.py:1098 msgid "Test notice failed to {nmj2_host}" msgstr "" -#: sickbeard/webserve.py:1119 +#: sickbeard/webserve.py:1118 msgid "Trakt Authorized" msgstr "" -#: sickbeard/webserve.py:1120 +#: sickbeard/webserve.py:1119 msgid "Trakt Not Authorized!" msgstr "" -#: sickbeard/webserve.py:1184 +#: sickbeard/webserve.py:1183 msgid "Test email sent successfully! Check inbox." msgstr "" -#: sickbeard/webserve.py:1186 +#: sickbeard/webserve.py:1185 msgid "ERROR: {last_error}" msgstr "" -#: sickbeard/webserve.py:1193 +#: sickbeard/webserve.py:1192 msgid "Test NMA notice sent successfully" msgstr "" -#: sickbeard/webserve.py:1195 +#: sickbeard/webserve.py:1194 msgid "Test NMA notice failed" msgstr "" -#: sickbeard/webserve.py:1202 +#: sickbeard/webserve.py:1201 msgid "Pushalot notification succeeded. Check your Pushalot clients to make sure it worked" msgstr "" -#: sickbeard/webserve.py:1204 +#: sickbeard/webserve.py:1203 msgid "Error sending Pushalot notification" msgstr "" -#: sickbeard/webserve.py:1211 +#: sickbeard/webserve.py:1210 msgid "Pushbullet notification succeeded. Check your device to make sure it worked" msgstr "" -#: sickbeard/webserve.py:1213 sickbeard/webserve.py:1223 sickbeard/webserve.py:1232 +#: sickbeard/webserve.py:1212 sickbeard/webserve.py:1222 sickbeard/webserve.py:1231 msgid "Error sending Pushbullet notification" msgstr "" #: gui/slick/views/displayShow.mako:436 gui/slick/views/inc_home_showList.mako:174 -#: gui/slick/views/manage.mako:49 sickbeard/webserve.py:1249 +#: gui/slick/views/manage.mako:49 sickbeard/webserve.py:1248 msgid "Status" msgstr "" -#: sickbeard/webserve.py:1268 sickbeard/webserve.py:1297 +#: sickbeard/webserve.py:1267 sickbeard/webserve.py:1296 msgid "Restarting SickRage" msgstr "" -#: sickbeard/webserve.py:1300 +#: sickbeard/webserve.py:1299 msgid "Update Failed" msgstr "" -#: sickbeard/webserve.py:1301 +#: sickbeard/webserve.py:1300 msgid "Update wasn't successful, not restarting. Check your log for more information." msgstr "" -#: sickbeard/webserve.py:1308 +#: sickbeard/webserve.py:1307 msgid "Checking out branch" msgstr "" -#: sickbeard/webserve.py:1311 +#: sickbeard/webserve.py:1310 msgid "Already on branch" msgstr "" -#: sickbeard/webserve.py:1339 +#: sickbeard/webserve.py:1338 msgid "Invalid show ID: {show}" msgstr "" -#: sickbeard/webserve.py:1342 sickbeard/webserve.py:1871 sickbeard/webserve.py:2002 -#: sickbeard/webserve.py:2040 +#: sickbeard/webserve.py:1341 sickbeard/webserve.py:1870 sickbeard/webserve.py:2001 +#: sickbeard/webserve.py:2039 msgid "Show not in show list" msgstr "" #: gui/slick/views/inc_rootDirs.mako:31 gui/slick/views/manage.mako:38 -#: gui/slick/views/manage_massEdit.mako:74 sickbeard/webserve.py:1358 -#: sickbeard/webserve.py:2027 +#: gui/slick/views/manage_massEdit.mako:74 sickbeard/webserve.py:1357 +#: sickbeard/webserve.py:2026 msgid "Edit" msgstr "" -#: sickbeard/webserve.py:1368 +#: sickbeard/webserve.py:1367 msgid "This show is in the process of being downloaded - the info below is incomplete." msgstr "" -#: sickbeard/webserve.py:1371 +#: sickbeard/webserve.py:1370 msgid "The information on this page is in the process of being updated." msgstr "" -#: sickbeard/webserve.py:1374 +#: sickbeard/webserve.py:1373 msgid "The episodes below are currently being refreshed from disk" msgstr "" -#: sickbeard/webserve.py:1377 +#: sickbeard/webserve.py:1376 msgid "Currently downloading subtitles for this show" msgstr "" -#: sickbeard/webserve.py:1380 +#: sickbeard/webserve.py:1379 msgid "This show is queued to be refreshed." msgstr "" -#: sickbeard/webserve.py:1383 +#: sickbeard/webserve.py:1382 msgid "This show is queued and awaiting an update." msgstr "" -#: sickbeard/webserve.py:1386 +#: sickbeard/webserve.py:1385 msgid "This show is queued and awaiting subtitles download." msgstr "" -#: gui/slick/js/core.js:4081 sickbeard/webserve.py:1391 +#: gui/slick/js/core.js:4081 sickbeard/webserve.py:1390 msgid "Resume" msgstr "" #: gui/slick/js/core.js:4081 gui/slick/views/viewlogs.mako:12 -#: sickbeard/webserve.py:1393 +#: sickbeard/webserve.py:1392 msgid "Pause" msgstr "" #: gui/slick/views/editShow.mako:345 gui/slick/views/inc_blackwhitelist.mako:40 #: gui/slick/views/inc_blackwhitelist.mako:85 gui/slick/views/manage.mako:58 -#: gui/slick/views/manage_failedDownloads.mako:43 sickbeard/webserve.py:1395 +#: gui/slick/views/manage_failedDownloads.mako:43 sickbeard/webserve.py:1394 msgid "Remove" msgstr "" -#: sickbeard/webserve.py:1396 +#: sickbeard/webserve.py:1395 msgid "Re-scan files" msgstr "" -#: sickbeard/webserve.py:1397 +#: sickbeard/webserve.py:1396 msgid "Force Full Update" msgstr "" -#: sickbeard/webserve.py:1398 +#: sickbeard/webserve.py:1397 msgid "Update show in KODI" msgstr "" -#: sickbeard/webserve.py:1399 +#: sickbeard/webserve.py:1398 msgid "Update show in Emby" msgstr "" -#: sickbeard/webserve.py:1402 +#: sickbeard/webserve.py:1401 msgid "Hide specials" msgstr "" -#: sickbeard/webserve.py:1404 +#: sickbeard/webserve.py:1403 msgid "Show specials" msgstr "" -#: sickbeard/webserve.py:1406 sickbeard/webserve.py:2030 sickbeard/webserve.py:2031 +#: sickbeard/webserve.py:1405 sickbeard/webserve.py:2029 sickbeard/webserve.py:2030 msgid "Preview Rename" msgstr "" -#: sickbeard/webserve.py:1409 +#: sickbeard/webserve.py:1408 msgid "Download Subtitles" msgstr "" -#: sickbeard/webserve.py:1498 +#: sickbeard/webserve.py:1497 msgid "No scene exceptions" msgstr "" -#: sickbeard/webserve.py:1516 sickbeard/webserve.py:1764 sickbeard/webserve.py:1785 +#: sickbeard/webserve.py:1515 sickbeard/webserve.py:1763 sickbeard/webserve.py:1784 msgid "Invalid show ID" msgstr "" -#: sickbeard/webserve.py:1525 sickbeard/webserve.py:1769 sickbeard/webserve.py:1790 +#: sickbeard/webserve.py:1524 sickbeard/webserve.py:1768 sickbeard/webserve.py:1789 msgid "Unable to find the specified show" msgstr "" -#: sickbeard/webserve.py:1550 +#: sickbeard/webserve.py:1549 msgid "Unable to retreive Fansub Groups from AniDB." msgstr "" -#: sickbeard/webserve.py:1559 sickbeard/webserve.py:1561 +#: sickbeard/webserve.py:1558 sickbeard/webserve.py:1560 msgid "Edit Show" msgstr "" -#: sickbeard/webserve.py:1637 sickbeard/webserve.py:1671 +#: sickbeard/webserve.py:1636 sickbeard/webserve.py:1670 msgid "Unable to refresh this show: {error}" msgstr "" -#: sickbeard/webserve.py:1663 +#: sickbeard/webserve.py:1662 msgid "New location <tt>{location}</tt> does not exist" msgstr "" -#: sickbeard/webserve.py:1688 +#: sickbeard/webserve.py:1687 msgid "Unable to update show: {error}" msgstr "" -#: sickbeard/webserve.py:1695 +#: sickbeard/webserve.py:1694 msgid "Unable to force an update on scene exceptions of the show." msgstr "" -#: sickbeard/webserve.py:1702 +#: sickbeard/webserve.py:1701 msgid "Unable to force an update on scene numbering of the show." msgstr "" -#: sickbeard/webserve.py:1708 sickbeard/webserve.py:3540 +#: sickbeard/webserve.py:1707 sickbeard/webserve.py:3539 msgid "{num_errors:d} error{plural} while saving changes:" msgstr "" -#: sickbeard/webserve.py:1719 +#: sickbeard/webserve.py:1718 msgid "{show_name} has been {paused_resumed}" msgstr "" -#: sickbeard/webserve.py:1719 +#: sickbeard/webserve.py:1718 msgid "resumed" msgstr "" -#: sickbeard/webserve.py:1719 +#: sickbeard/webserve.py:1718 msgid "paused" msgstr "" -#: sickbeard/webserve.py:1731 +#: sickbeard/webserve.py:1730 msgid "{show_name} has been {deleted_trashed} {was_deleted}" msgstr "" -#: sickbeard/webserve.py:1733 +#: sickbeard/webserve.py:1732 msgid "deleted" msgstr "" -#: sickbeard/webserve.py:1733 +#: sickbeard/webserve.py:1732 msgid "trashed" msgstr "" -#: sickbeard/webserve.py:1734 +#: sickbeard/webserve.py:1733 msgid "(media untouched)" msgstr "" -#: sickbeard/webserve.py:1734 +#: sickbeard/webserve.py:1733 msgid "(with all related media)" msgstr "" -#: sickbeard/webserve.py:1755 +#: sickbeard/webserve.py:1754 msgid "Unable to refresh this show." msgstr "" -#: sickbeard/webserve.py:1775 +#: sickbeard/webserve.py:1774 msgid "Unable to update this show." msgstr "" -#: sickbeard/webserve.py:1814 +#: sickbeard/webserve.py:1813 msgid "Library update command sent to KODI host(s)): {kodi_hosts}" msgstr "" -#: sickbeard/webserve.py:1816 +#: sickbeard/webserve.py:1815 msgid "Unable to contact one or more KODI host(s)): {kodi_hosts}" msgstr "" -#: sickbeard/webserve.py:1825 +#: sickbeard/webserve.py:1824 msgid "Library update command sent to Plex Media Server host: {plex_server}" msgstr "" -#: sickbeard/webserve.py:1828 +#: sickbeard/webserve.py:1827 msgid "Unable to contact Plex Media Server host: {plex_server}" msgstr "" -#: sickbeard/webserve.py:1840 +#: sickbeard/webserve.py:1839 msgid "Library update command sent to Emby host: {emby_host}" msgstr "" -#: sickbeard/webserve.py:1842 +#: sickbeard/webserve.py:1841 msgid "Unable to contact Emby host: {emby_host}" msgstr "" -#: sickbeard/webserve.py:1852 sickbeard/webserve.py:2036 +#: sickbeard/webserve.py:1851 sickbeard/webserve.py:2035 msgid "You must specify a show and at least one episode" msgstr "" -#: sickbeard/webserve.py:1861 +#: sickbeard/webserve.py:1860 msgid "Invalid status" msgstr "" -#: sickbeard/webserve.py:1954 +#: sickbeard/webserve.py:1953 msgid "Backlog was automatically started for the following seasons of <b>{show_name}</b>" msgstr "" #: gui/slick/views/displayShow.mako:74 gui/slick/views/displayShow.mako:79 -#: gui/slick/views/displayShow.mako:404 sickbeard/webserve.py:1961 -#: sickbeard/webserve.py:1980 +#: gui/slick/views/displayShow.mako:404 sickbeard/webserve.py:1960 +#: sickbeard/webserve.py:1979 msgid "Season" msgstr "" -#: sickbeard/webserve.py:1968 +#: sickbeard/webserve.py:1967 msgid "Backlog started" msgstr "" -#: sickbeard/webserve.py:1973 +#: sickbeard/webserve.py:1972 msgid "Retrying Search was automatically started for the following season of <b>{show_name}</b>" msgstr "" -#: sickbeard/webserve.py:1987 +#: sickbeard/webserve.py:1986 msgid "Retry Search started" msgstr "" -#: sickbeard/webserve.py:1997 +#: sickbeard/webserve.py:1996 msgid "You must specify a show" msgstr "" -#: sickbeard/webserve.py:2007 sickbeard/webserve.py:2045 +#: sickbeard/webserve.py:2006 sickbeard/webserve.py:2044 msgid "Can't rename episodes when the show dir is missing." msgstr "" -#: sickbeard/webserve.py:2212 sickbeard/webserve.py:2233 +#: sickbeard/webserve.py:2211 sickbeard/webserve.py:2232 msgid "New subtitles downloaded: {new_subtitle_languages}" msgstr "" -#: sickbeard/webserve.py:2215 sickbeard/webserve.py:2236 +#: sickbeard/webserve.py:2214 sickbeard/webserve.py:2235 msgid "No subtitles downloaded" msgstr "" #: gui/slick/views/config_general.mako:80 gui/slick/views/layouts/main.mako:222 -#: sickbeard/webserve.py:2363 +#: sickbeard/webserve.py:2362 msgid "IRC" msgstr "" -#: sickbeard/webserve.py:2376 +#: sickbeard/webserve.py:2375 msgid "Could not load news from the repo. [Click here for news.md])({news_url})" msgstr "" -#: sickbeard/webserve.py:2383 sickbeard/webserve.py:2401 +#: sickbeard/webserve.py:2382 sickbeard/webserve.py:2400 msgid "The was a problem connecting to github, please refresh and try again" msgstr "" -#: sickbeard/webserve.py:2398 +#: sickbeard/webserve.py:2397 msgid "Could not load changes from the repo. [Click here for CHANGES.md]({changes_url})" msgstr "" -#: gui/slick/views/layouts/main.mako:223 sickbeard/webserve.py:2403 +#: gui/slick/views/layouts/main.mako:223 sickbeard/webserve.py:2402 msgid "Changelog" msgstr "" -#: gui/slick/views/layouts/main.mako:190 sickbeard/webserve.py:2413 -#: sickbeard/webserve.py:3855 sickbeard/webserve.py:4341 +#: gui/slick/views/layouts/main.mako:190 sickbeard/webserve.py:2412 +#: sickbeard/webserve.py:3826 sickbeard/webserve.py:4312 msgid "Post Processing" msgstr "" -#: gui/slick/views/layouts/main.mako:128 sickbeard/webserve.py:2445 +#: gui/slick/views/layouts/main.mako:128 sickbeard/webserve.py:2444 msgid "Add Shows" msgstr "" -#: sickbeard/webserve.py:2510 +#: sickbeard/webserve.py:2509 msgid "No folders selected." msgstr "" -#: sickbeard/webserve.py:2632 +#: sickbeard/webserve.py:2631 msgid "New Show" msgstr "" -#: sickbeard/webserve.py:2647 +#: sickbeard/webserve.py:2646 msgid "Trending Shows" msgstr "" -#: sickbeard/webserve.py:2649 sickbeard/webserve.py:2772 +#: sickbeard/webserve.py:2648 sickbeard/webserve.py:2771 msgid "Popular Shows" msgstr "" -#: sickbeard/webserve.py:2651 sickbeard/webserve.py:2665 +#: sickbeard/webserve.py:2650 sickbeard/webserve.py:2664 msgid "Most Anticipated Shows" msgstr "" -#: sickbeard/webserve.py:2653 +#: sickbeard/webserve.py:2652 msgid "Most Collected Shows" msgstr "" -#: sickbeard/webserve.py:2655 +#: sickbeard/webserve.py:2654 msgid "Most Watched Shows" msgstr "" -#: sickbeard/webserve.py:2657 +#: sickbeard/webserve.py:2656 msgid "Most Played Shows" msgstr "" -#: sickbeard/webserve.py:2659 +#: sickbeard/webserve.py:2658 msgid "Recommended Shows" msgstr "" -#: gui/slick/views/addShows_trendingShows.mako:60 sickbeard/webserve.py:2661 +#: gui/slick/views/addShows_trendingShows.mako:60 sickbeard/webserve.py:2660 msgid "New Shows" msgstr "" -#: gui/slick/views/addShows_trendingShows.mako:61 sickbeard/webserve.py:2663 +#: gui/slick/views/addShows_trendingShows.mako:61 sickbeard/webserve.py:2662 msgid "Season Premieres" msgstr "" -#: sickbeard/webserve.py:2792 sickbeard/webserve.py:2793 +#: sickbeard/webserve.py:2791 sickbeard/webserve.py:2792 msgid "Existing Show" msgstr "" -#: sickbeard/webserve.py:2871 +#: sickbeard/webserve.py:2870 msgid "No root directories setup, please go back and add one." msgstr "" -#: sickbeard/webserve.py:2883 sickbeard/webserve.py:3002 +#: sickbeard/webserve.py:2882 sickbeard/webserve.py:3001 msgid "Show added" msgstr "" -#: sickbeard/webserve.py:2883 +#: sickbeard/webserve.py:2882 msgid "Adding the specified show {show_name}" msgstr "" -#: sickbeard/webserve.py:2924 +#: sickbeard/webserve.py:2923 msgid "Missing params, no Indexer ID or folder: {show_to_add} and {root_dir}/{show_path}" msgstr "" -#: sickbeard/webserve.py:2933 +#: sickbeard/webserve.py:2932 msgid "Unknown error. Unable to add show due to problem with show selection." msgstr "" -#: sickbeard/webserve.py:2957 sickbeard/webserve.py:2967 +#: sickbeard/webserve.py:2956 sickbeard/webserve.py:2966 msgid "Unable to add show" msgstr "" -#: sickbeard/webserve.py:2957 +#: sickbeard/webserve.py:2956 msgid "Folder {show_dir} exists already" msgstr "" -#: sickbeard/webserve.py:2968 +#: sickbeard/webserve.py:2967 msgid "Unable to create the folder {show_dir}, can't add the show" msgstr "" -#: sickbeard/webserve.py:3002 +#: sickbeard/webserve.py:3001 msgid "Adding the specified show into {show_dir}" msgstr "" -#: sickbeard/webserve.py:3078 +#: sickbeard/webserve.py:3077 msgid "Shows Added" msgstr "" -#: sickbeard/webserve.py:3079 +#: sickbeard/webserve.py:3078 msgid "Automatically added {num_shows} from their existing metadata files" msgstr "" -#: gui/slick/views/layouts/main.mako:153 sickbeard/webserve.py:3096 +#: gui/slick/views/layouts/main.mako:153 sickbeard/webserve.py:3095 msgid "Mass Update" msgstr "" -#: sickbeard/webserve.py:3134 sickbeard/webserve.py:3161 sickbeard/webserve.py:3237 -#: sickbeard/webserve.py:3238 +#: sickbeard/webserve.py:3133 sickbeard/webserve.py:3160 sickbeard/webserve.py:3236 +#: sickbeard/webserve.py:3237 msgid "Episode Overview" msgstr "" -#: sickbeard/webserve.py:3270 +#: sickbeard/webserve.py:3269 msgid "Missing Subtitles" msgstr "" -#: gui/slick/views/layouts/main.mako:154 sickbeard/webserve.py:3356 -#: sickbeard/webserve.py:3357 +#: gui/slick/views/layouts/main.mako:154 sickbeard/webserve.py:3355 +#: sickbeard/webserve.py:3356 msgid "Backlog Overview" msgstr "" -#: sickbeard/webserve.py:3481 +#: sickbeard/webserve.py:3480 msgid "Mass Edit" msgstr "" -#: sickbeard/webserve.py:3586 +#: sickbeard/webserve.py:3585 msgid "Unable to update show: {excption_format}" msgstr "" -#: sickbeard/webserve.py:3594 +#: sickbeard/webserve.py:3593 msgid "Unable to refresh show {show_name}: {excption_format}" msgstr "" -#: sickbeard/webserve.py:3605 +#: sickbeard/webserve.py:3604 msgid "Errors encountered" msgstr "" -#: gui/slick/views/config_general.mako:261 sickbeard/webserve.py:3611 +#: gui/slick/views/config_general.mako:261 sickbeard/webserve.py:3610 msgid "Updates" msgstr "" -#: sickbeard/webserve.py:3616 +#: sickbeard/webserve.py:3615 msgid "Refreshes" msgstr "" -#: sickbeard/webserve.py:3621 +#: sickbeard/webserve.py:3620 msgid "Renames" msgstr "" #: gui/slick/views/displayShow.mako:260 gui/slick/views/displayShow.mako:435 #: gui/slick/views/editShow.mako:119 gui/slick/views/inc_addShowOptions.mako:20 -#: gui/slick/views/manage_massEdit.mako:262 sickbeard/webserve.py:3626 -#: sickbeard/webserve.py:5244 +#: gui/slick/views/manage_massEdit.mako:262 sickbeard/webserve.py:3625 +#: sickbeard/webserve.py:5215 msgid "Subtitles" msgstr "" -#: sickbeard/webserve.py:3631 +#: sickbeard/webserve.py:3630 msgid "The following actions were queued" msgstr "" -#: sickbeard/webserve.py:3651 -msgid "For best results please set the Download Station alias as" -msgstr "" - -#: sickbeard/webserve.py:3652 -msgid "You can check this setting in the Synology DSM" -msgstr "" - -#: sickbeard/webserve.py:3652 sickbeard/webserve.py:3654 -msgid "Control Panel" -msgstr "" - -#: sickbeard/webserve.py:3652 -msgid "Application Portal" -msgstr "" - -#: sickbeard/webserve.py:3653 -msgid "Make sure you allow DSM to be embedded with iFrames too in" -msgstr "" - -#: sickbeard/webserve.py:3654 -msgid "DSM Settings" -msgstr "" - -#: sickbeard/webserve.py:3654 -msgid "Security" -msgstr "" - -#: gui/slick/views/layouts/main.mako:167 sickbeard/webserve.py:3662 -msgid "Manage Torrents" -msgstr "" - -#: gui/slick/views/layouts/main.mako:170 sickbeard/webserve.py:3683 +#: gui/slick/views/layouts/main.mako:170 sickbeard/webserve.py:3654 msgid "Failed Downloads" msgstr "" -#: gui/slick/views/layouts/main.mako:155 sickbeard/webserve.py:3701 +#: gui/slick/views/layouts/main.mako:155 sickbeard/webserve.py:3672 msgid "Manage Searches" msgstr "" -#: sickbeard/webserve.py:3709 +#: sickbeard/webserve.py:3680 msgid "Backlog search started" msgstr "" -#: sickbeard/webserve.py:3719 +#: sickbeard/webserve.py:3690 msgid "Daily search started" msgstr "" -#: sickbeard/webserve.py:3728 +#: sickbeard/webserve.py:3699 msgid "Find propers search started" msgstr "" -#: sickbeard/webserve.py:3737 +#: sickbeard/webserve.py:3708 msgid "Subtitle search started" msgstr "" -#: sickbeard/webserve.py:3801 +#: sickbeard/webserve.py:3772 msgid "Remove Selected" msgstr "" -#: sickbeard/webserve.py:3802 +#: sickbeard/webserve.py:3773 msgid "Clear History" msgstr "" -#: sickbeard/webserve.py:3803 +#: sickbeard/webserve.py:3774 msgid "Trim History" msgstr "" -#: sickbeard/webserve.py:3823 +#: sickbeard/webserve.py:3794 msgid "Selected history entries removed" msgstr "" -#: sickbeard/webserve.py:3830 +#: sickbeard/webserve.py:3801 msgid "History cleared" msgstr "" -#: sickbeard/webserve.py:3837 +#: sickbeard/webserve.py:3808 msgid "Removed history entries older than 30 days" msgstr "" -#: gui/slick/views/layouts/main.mako:185 sickbeard/webserve.py:3850 +#: gui/slick/views/layouts/main.mako:185 sickbeard/webserve.py:3821 msgid "General" msgstr "" -#: sickbeard/webserve.py:3851 sickbeard/webserve.py:4143 +#: sickbeard/webserve.py:3822 sickbeard/webserve.py:4114 msgid "Backup/Restore" msgstr "" -#: gui/slick/views/layouts/main.mako:187 sickbeard/webserve.py:3852 -#: sickbeard/webserve.py:4206 +#: gui/slick/views/layouts/main.mako:187 sickbeard/webserve.py:3823 +#: sickbeard/webserve.py:4177 msgid "Search Settings" msgstr "" -#: gui/slick/views/layouts/main.mako:188 sickbeard/webserve.py:3853 -#: sickbeard/webserve.py:4518 +#: gui/slick/views/layouts/main.mako:188 sickbeard/webserve.py:3824 +#: sickbeard/webserve.py:4489 msgid "Search Providers" msgstr "" -#: gui/slick/views/layouts/main.mako:189 sickbeard/webserve.py:3854 +#: gui/slick/views/layouts/main.mako:189 sickbeard/webserve.py:3825 msgid "Subtitles Settings" msgstr "" -#: gui/slick/views/layouts/main.mako:191 sickbeard/webserve.py:3856 -#: sickbeard/webserve.py:4964 +#: gui/slick/views/layouts/main.mako:191 sickbeard/webserve.py:3827 +#: sickbeard/webserve.py:4935 msgid "Notifications" msgstr "" @@ -1240,142 +1237,142 @@ msgstr "" #: gui/slick/views/home.mako:35 gui/slick/views/inc_addShowOptions.mako:79 #: gui/slick/views/inc_home_showList.mako:179 gui/slick/views/layouts/main.mako:192 #: gui/slick/views/manage.mako:44 gui/slick/views/manage_massEdit.mako:202 -#: sickbeard/webserve.py:3857 sickbeard/webserve.py:5309 +#: sickbeard/webserve.py:3828 sickbeard/webserve.py:5280 msgid "Anime" msgstr "" -#: sickbeard/webserve.py:3895 sickbeard/webserve.py:3896 +#: sickbeard/webserve.py:3866 sickbeard/webserve.py:3867 msgid "SickRage Configuration" msgstr "" -#: sickbeard/webserve.py:3910 +#: sickbeard/webserve.py:3881 msgid "Config - Shares" msgstr "" -#: sickbeard/webserve.py:3910 +#: sickbeard/webserve.py:3881 msgid "Windows Shares Configuration" msgstr "" -#: sickbeard/webserve.py:3937 +#: sickbeard/webserve.py:3908 msgid "Saved Shares" msgstr "" -#: sickbeard/webserve.py:3937 +#: sickbeard/webserve.py:3908 msgid "Your Windows share settings have been saved" msgstr "" -#: sickbeard/webserve.py:3948 +#: sickbeard/webserve.py:3919 msgid "Config - General" msgstr "" -#: sickbeard/webserve.py:3948 +#: sickbeard/webserve.py:3919 msgid "General Configuration" msgstr "" -#: sickbeard/webserve.py:3988 +#: sickbeard/webserve.py:3959 msgid "Saved Defaults" msgstr "" -#: sickbeard/webserve.py:3988 +#: sickbeard/webserve.py:3959 msgid "Your \"add show\" defaults have been set to your current selections." msgstr "" -#: sickbeard/webserve.py:4095 +#: sickbeard/webserve.py:4066 msgid "Unable to create directory {directory}, log directory not changed." msgstr "" -#: sickbeard/webserve.py:4103 +#: sickbeard/webserve.py:4074 msgid "Unable to create directory {directory}, https cert directory not changed." msgstr "" -#: sickbeard/webserve.py:4107 +#: sickbeard/webserve.py:4078 msgid "Unable to create directory {directory}, https key directory not changed." msgstr "" -#: sickbeard/webserve.py:4126 sickbeard/webserve.py:4324 sickbeard/webserve.py:4456 -#: sickbeard/webserve.py:5227 +#: sickbeard/webserve.py:4097 sickbeard/webserve.py:4295 sickbeard/webserve.py:4427 +#: sickbeard/webserve.py:5198 msgid "Error(s) Saving Configuration" msgstr "" -#: sickbeard/webserve.py:4129 sickbeard/webserve.py:4327 sickbeard/webserve.py:4458 -#: sickbeard/webserve.py:4950 sickbeard/webserve.py:5230 sickbeard/webserve.py:5294 -#: sickbeard/webserve.py:5323 +#: sickbeard/webserve.py:4100 sickbeard/webserve.py:4298 sickbeard/webserve.py:4429 +#: sickbeard/webserve.py:4921 sickbeard/webserve.py:5201 sickbeard/webserve.py:5265 +#: sickbeard/webserve.py:5294 msgid "Configuration Saved" msgstr "" -#: sickbeard/webserve.py:4142 +#: sickbeard/webserve.py:4113 msgid "Config - Backup/Restore" msgstr "" -#: sickbeard/webserve.py:4205 +#: sickbeard/webserve.py:4176 msgid "Config - Episode Search" msgstr "" -#: sickbeard/webserve.py:4340 +#: sickbeard/webserve.py:4311 msgid "Config - Post Processing" msgstr "" -#: sickbeard/webserve.py:4380 +#: sickbeard/webserve.py:4351 msgid "Unpacking Not Supported, disabling unpack setting" msgstr "" -#: sickbeard/webserve.py:4431 +#: sickbeard/webserve.py:4402 msgid "You tried saving an invalid normal naming config, not saving your naming settings" msgstr "" -#: sickbeard/webserve.py:4439 +#: sickbeard/webserve.py:4410 msgid "You tried saving an invalid anime naming config, not saving your naming settings" msgstr "" -#: sickbeard/webserve.py:4517 +#: sickbeard/webserve.py:4488 msgid "Config - Providers" msgstr "" -#: sickbeard/webserve.py:4547 +#: sickbeard/webserve.py:4518 msgid "No Provider Name specified" msgstr "" -#: sickbeard/webserve.py:4549 +#: sickbeard/webserve.py:4520 msgid "No Provider Url specified" msgstr "" -#: sickbeard/webserve.py:4551 +#: sickbeard/webserve.py:4522 msgid "No Provider Api key specified" msgstr "" -#: sickbeard/webserve.py:4963 +#: sickbeard/webserve.py:4934 msgid "Config - Notifications" msgstr "" -#: sickbeard/webserve.py:5243 +#: sickbeard/webserve.py:5214 msgid "Config - Subtitles" msgstr "" -#: sickbeard/webserve.py:5308 +#: sickbeard/webserve.py:5279 msgid "Config - Anime" msgstr "" -#: sickbeard/webserve.py:5336 +#: sickbeard/webserve.py:5307 msgid "Clear Errors" msgstr "" -#: sickbeard/webserve.py:5342 +#: sickbeard/webserve.py:5313 msgid "Clear Warnings" msgstr "" -#: sickbeard/webserve.py:5348 +#: sickbeard/webserve.py:5319 msgid "Submit Errors" msgstr "" -#: sickbeard/webserve.py:5363 +#: sickbeard/webserve.py:5334 msgid "Logs & Errors" msgstr "" -#: sickbeard/webserve.py:5388 +#: sickbeard/webserve.py:5359 msgid "Log File" msgstr "" -#: sickbeard/webserve.py:5388 +#: sickbeard/webserve.py:5359 msgid "Logs" msgstr "" @@ -1383,30 +1380,166 @@ msgstr "" msgid "This is a test notification from SickRage" msgstr "" -#: gui/slick/js/core.js:481 gui/slick/js/core.js:502 gui/slick/js/core.js:524 -#: gui/slick/js/core.js:548 gui/slick/js/core.js:573 gui/slick/js/core.js:596 -#: gui/slick/js/core.js:625 gui/slick/js/core.js:645 gui/slick/js/core.js:690 -#: gui/slick/js/core.js:769 gui/slick/js/core.js:829 gui/slick/js/core.js:849 -#: gui/slick/js/core.js:879 gui/slick/js/core.js:909 gui/slick/js/core.js:969 -#: gui/slick/js/core.js:1046 gui/slick/js/core.js:1066 gui/slick/js/core.js:1085 +#: gui/slick/js/browser.js:6 +msgid "Choose Directory" +msgstr "" + +#: gui/slick/js/core.js:443 +msgid "Select log file folder location" +msgstr "" + +#: gui/slick/js/core.js:445 +msgid "Select CSS file" +msgstr "" + +#: gui/slick/js/core.js:469 +msgid "Select backup folder to save to" +msgstr "" + +#: gui/slick/js/core.js:470 +msgid "Select backup files to restore" +msgstr "" + +#: gui/slick/js/core.js:479 gui/slick/js/core.js:500 gui/slick/js/core.js:522 +#: gui/slick/js/core.js:546 gui/slick/js/core.js:571 gui/slick/js/core.js:594 +#: gui/slick/js/core.js:623 gui/slick/js/core.js:643 gui/slick/js/core.js:688 +#: gui/slick/js/core.js:767 gui/slick/js/core.js:827 gui/slick/js/core.js:847 +#: gui/slick/js/core.js:877 gui/slick/js/core.js:907 gui/slick/js/core.js:967 +#: gui/slick/js/core.js:1044 gui/slick/js/core.js:1064 gui/slick/js/core.js:1083 msgid "Please fill out the necessary fields above." msgstr "" -#: gui/slick/js/core.js:1328 gui/slick/js/core.js:1378 gui/slick/js/core.js:1427 -#: gui/slick/js/core.js:1493 +#: gui/slick/js/core.js:680 +msgid "<b>Step 1:</b> Confirm Authorization" +msgstr "" + +#: gui/slick/js/core.js:977 +msgid "Check blacklist name; the value needs to be a trakt slug" +msgstr "" + +#: gui/slick/js/core.js:1022 +msgid "You must provide a recipient email address!" +msgstr "" + +#: gui/slick/js/core.js:1107 +msgid "You didn't supply a Pushbullet api key" +msgstr "" + +#: gui/slick/js/core.js:1133 gui/slick/js/core.js:1162 +msgid "Don't forget to save your new pushbullet settings." +msgstr "" + +#: gui/slick/js/core.js:1262 +msgid "Select TV Download Directory" +msgstr "" + +#: gui/slick/js/core.js:1263 +msgid "Select Unpack Directory" +msgstr "" + +#: gui/slick/js/core.js:1326 gui/slick/js/core.js:1376 gui/slick/js/core.js:1425 +#: gui/slick/js/core.js:1491 msgid "This pattern is invalid." msgstr "" -#: gui/slick/js/core.js:1336 gui/slick/js/core.js:1386 gui/slick/js/core.js:1435 -#: gui/slick/js/core.js:1501 +#: gui/slick/js/core.js:1334 gui/slick/js/core.js:1384 gui/slick/js/core.js:1433 +#: gui/slick/js/core.js:1499 msgid "This pattern would be invalid without the folders, using it will force \"Season Folders\" on for all shows." msgstr "" -#: gui/slick/js/core.js:1344 gui/slick/js/core.js:1394 gui/slick/js/core.js:1443 -#: gui/slick/js/core.js:1509 +#: gui/slick/js/core.js:1342 gui/slick/js/core.js:1392 gui/slick/js/core.js:1441 +#: gui/slick/js/core.js:1507 msgid "This pattern is valid." msgstr "" +#: gui/slick/js/core.js:1818 +msgid "Select .nzb black hole/watch location" +msgstr "" + +#: gui/slick/js/core.js:1819 +msgid "Select .torrent black hole/watch location" +msgstr "" + +#: gui/slick/js/core.js:1820 +msgid "Select .torrent download location" +msgstr "" + +#: gui/slick/js/core.js:1900 +msgid "Minimum seeding time is" +msgstr "" + +#: gui/slick/js/core.js:1902 +msgid "URL to your uTorrent client (e.g. http://localhost:8000)" +msgstr "" + +#: gui/slick/js/core.js:1905 +msgid "Stop seeding when inactive for" +msgstr "" + +#: gui/slick/js/core.js:1911 +msgid "URL to your Transmission client (e.g. http://localhost:9091)" +msgstr "" + +#: gui/slick/js/core.js:1921 +msgid "URL to your Deluge client (e.g. http://localhost:8112)" +msgstr "" + +#: gui/slick/js/core.js:1930 +msgid "IP or Hostname of your Deluge Daemon (e.g. scgi://localhost:58846)" +msgstr "" + +#: gui/slick/js/core.js:1937 +msgid "URL to your Synology DS client (e.g. http://localhost:5000)" +msgstr "" + +#: gui/slick/js/core.js:1941 +msgid "URL to your rTorrent client (e.g. scgi://localhost:5000 <br> or https://localhost/rutorrent/plugins/httprpc/action.php)" +msgstr "" + +#: gui/slick/js/core.js:1952 +msgid "URL to your qBittorrent client (e.g. http://localhost:8080)" +msgstr "" + +#: gui/slick/js/core.js:1962 +msgid "URL to your MLDonkey (e.g. http://localhost:4080)" +msgstr "" + +#: gui/slick/js/core.js:1974 +msgid "URL to your putio client (e.g. http://localhost:8080)" +msgstr "" + +#: gui/slick/js/core.js:1975 +msgid "<a herf=\"https://app.put.io/oauth/apps/new\" target=\"_blank\"> Create a new OAuth app for put.io</a>" +msgstr "" + +#: gui/slick/js/core.js:1977 +msgid "Put.io Parent Folder" +msgstr "" + +#: gui/slick/js/core.js:1978 +msgid "Put.io OAuth Token" +msgstr "" + +#: gui/slick/js/core.js:3383 gui/slick/views/displayShow.mako:410 +msgid "Show Episodes" +msgstr "" + +#: gui/slick/js/core.js:3388 gui/slick/views/displayShow.mako:408 +msgid "Hide Episodes" +msgstr "" + +#: gui/slick/js/core.js:3396 +msgid "Select Show Location" +msgstr "" + +#: gui/slick/js/core.js:3460 +msgid "Select Unprocessed Episode Folder" +msgstr "" + +#: gui/slick/js/core.js:3790 +msgid "DELETED" +msgstr "" + #: gui/slick/js/core.js:4082 msgid "Resume updating the log on this page." msgstr "" @@ -1415,6 +1548,26 @@ msgstr "" msgid "Pause updating the log on this page." msgstr "" +#: gui/slick/js/core.js:4323 +msgid "searching {searchingFor}..." +msgstr "" + +#: gui/slick/js/core.js:4334 +msgid "search timed out, try again or try another indexer" +msgstr "" + +#: gui/slick/js/core.js:4503 +msgid "loading folders..." +msgstr "" + +#: gui/slick/js/parsers.js:7 gui/slick/js/parsers.js:8 +#: gui/slick/js/plotTooltip.js:6 gui/slick/js/sceneExceptionsTooltip.js:6 +#: gui/slick/views/inc_home_showList.mako:209 +#: gui/slick/views/inc_home_showList.mako:215 +#: gui/slick/views/inc_home_showList.mako:231 +msgid "Loading..." +msgstr "" + #: gui/slick/views/404.mako:5 msgid "You have reached this page by accident, please check the url." msgstr "" @@ -5711,14 +5864,6 @@ msgstr "" msgid "Select Columns" msgstr "" -#: gui/slick/views/displayShow.mako:408 -msgid "Hide Episodes" -msgstr "" - -#: gui/slick/views/displayShow.mako:410 -msgid "Show Episodes" -msgstr "" - #: gui/slick/views/displayShow.mako:424 msgid "NFO" msgstr "" @@ -6232,12 +6377,6 @@ msgstr "" msgid "loading" msgstr "" -#: gui/slick/views/inc_home_showList.mako:209 -#: gui/slick/views/inc_home_showList.mako:215 -#: gui/slick/views/inc_home_showList.mako:231 -msgid "Loading..." -msgstr "" - #: gui/slick/views/inc_qualityChooser.mako:31 msgid "<p><b><u>Preferred</u></b> qualities will replace those in <b><u>allowed</u></b>, even if they are lower.</p>" msgstr "" @@ -6775,6 +6914,10 @@ msgstr "" msgid "Update Emby" msgstr "" +#: gui/slick/views/layouts/main.mako:167 +msgid "Manage Torrents" +msgstr "" + #: gui/slick/views/layouts/main.mako:173 msgid "Missed Subtitle Management" msgstr "" diff --git a/locale/hu_HU/LC_MESSAGES/messages.json b/locale/hu_HU/LC_MESSAGES/messages.json index f83dc328f139d1fe339b5a05e5f986cade313686..acfe00b10fcc3aa2546ea3258887828ef54471bc 100644 --- a/locale/hu_HU/LC_MESSAGES/messages.json +++ b/locale/hu_HU/LC_MESSAGES/messages.json @@ -1 +1 @@ -{"messages":{"domain":"messages","locale_data":{"messages":{"100":[null,"100"],"250":[null,"250"],"500":[null,"500"],"":{"domain":"messages","plural_forms":"nplurals=2; plural=(n != 1);","lang":"hu_HU"},"Drama":[null,"Dráma"],"Mystery":[null,"Rejtély"],"Science-Fiction":[null,"Science-Fiction"],"Crime":[null,"Bűnögyi"],"Action":[null,"Művelet"],"Comedy":[null,"Vígjáték"],"Thriller":[null,"Thriller"],"Animation":[null,"Animáció"],"Family":[null,"Családi"],"Fantasy":[null,"Fantasy"],"Adventure":[null,"Kaland"],"Horror":[null,"Horror"],"Film-Noir":[null,"Film-Noir"],"Sci-Fi":[null,"Sci-Fi"],"Romance":[null,"Romantikus"],"Sport":[null,"Sport"],"War":[null,"Háborús"],"Biography":[null,"Életrajzi"],"History":[null,"Előzmények"],"Music":[null,"Zene"],"Western":[null,"Western"],"News":[null,"Hírek"],"Sitcom":[null,"Szitkom"],"Reality-TV":[null,"Reality-TV"],"Documentary":[null,"Dokumentumfilm"],"Game-Show":[null,"Vetélkedő"],"Musical":[null,"Zenei"],"Talk-Show":[null,"Talk-Show"],"Started Download":[null,"Letöltés elkezdődött"],"Download Finished":[null,"Letöltés befejeződött"],"Subtitle Download Finished":[null,"Felirat letöltése befejeződött"],"SickRage Updated":[null,"SickRage frissítette magát"],"SickRage Updated To Commit#: ":[null,"Sickrage frissítette magát a Commit#: "],"SickRage new login":[null,"Sickrage új bejelentkezés"],"New login from IP: {0}. http://geomaplookup.net/?ip={0}":[null,"Új bejelentkezés a következő IP számról: {0}. http://geomaplookup.net/?IP={0}"],"Repeat":[null,"Ismétlés"],"Repeat (Separated)":[null,"Ismétlés (elkülönített)"],"Extend":[null,"Kiterjeszt"],"Extend (Limited)":[null,"Kiterjeszt (korlátozott)"],"Extend (Limited, E-prefixed)":[null,"Kiterjeszt (korlátozott, E-előtaggal)"],"Downloaded":[null,"Letöltve"],"Snatched":[null,"Elkapva"],"Snatched (Proper)":[null,"Elkapva (Proper verzió)"],"Failed":[null,"Sikertelen"],"Snatched (Best)":[null,"Elkapva (legjobb változat)"],"Archived":[null,"Archivált"],"Unknown":[null,"Ismeretlen"],"Unaired":[null,"Vetítés előtt"],"Skipped":[null,"Kihagyva"],"Wanted":[null,"Kívánt"],"Ignored":[null,"Mellőzött"],"Subtitled":[null,"Felirat hozzátéve"],"<No Filter>":[null,"< Nincs Szűrő >"],"Daily Searcher":[null,"Napi kereső"],"Backlog":[null,""],"Show Updater":[null,""],"Check Version":[null,"Verzió ellenőrzése"],"Show Queue":[null,""],"Search Queue (All)":[null,""],"Search Queue (Daily Searcher)":[null," Várólista Keresés (Napi Kereső)"],"Search Queue (Backlog)":[null,""],"Search Queue (Manual)":[null,""],"Search Queue (Retry/Failed)":[null,""],"Search Queue (RSS)":[null,""],"Find Propers":[null,"Megfelelő verzió keresése"],"Postprocessor":[null,""],"Find Subtitles":[null,"Feliratok keresése"],"Trakt Checker":[null,"Trakt ellenőrző"],"Event":[null,"Esemény"],"Error":[null,"Hiba"],"Tornado":[null,"Tornado"],"Thread":[null,"Szál"],"Main":[null,"Elsődleges"],"Loading":[null,""],"New update found for SickRage, starting auto-updater":[null,"Új frissítés érhető el, auto-frissítő indítása"],"Update was successful":[null,"A frissítés sikeres volt"],"Update failed!":[null,"Frissítés sikertelen!"],"Backup":[null,"Biztonsági mentés"],"Config backup in progress...":[null,"Beállítások mentése folyamatban..."],"Config backup successful, updating...":[null,"Biztonsági mentés sikerült, frissítés..."],"Config backup failed, aborting update":[null,"Biztonsági mentés sikertelen, frissítés megszakítva"],"No update needed":[null,"Nem szükséges frissíteni"],"Mako Error":[null,"Makó-hiba"],"Oops":[null,"Oops"],"Wrong API key used":[null,"Rossz API kulcs"],"Login":[null,"Bejelentkezés"],"API Key not generated":[null,"Nem sikerült API-kulcsot generálni"],"API Builder":[null,"API-Builder"],"Schedule":[null,"Ütemezés"],"Test 1":[null,"Teszt 1"],"This is test number 1":[null,"Ez az 1-es tesztszám"],"Test 2":[null,"Teszt 2"],"This is test number 2":[null,"Ez a 2-es tesztszám"],"You're using the {branch} branch. Please use 'master' unless specifically asked":[null,""],"Invalid show parameters":[null,"Érvénytelen Tv-műsor paraméterek"],"Invalid parameters":[null,""],"Episode couldn't be retrieved":[null,"Az epizódot nem sikerült megszerezni"],"Home":[null,"Kezdőnézet"],"Show List":[null,"Műsor lista"],"Error: Unsupported Request. Send jsonp request with 'callback' variable in the query string.":[null,"Hiba: Nem támogatott kérés. Jsonp kérés küldése a \"callback\" változóval a karakterláncban."],"Success. Connected and authenticated":[null,"Sikeres kapcsolódás és hitelesítés"],"Authentication failed. SABnzbd expects":[null,"A hitelesítés sikertelen. SABnzbd szükséges"],"as authentication method":[null,"hitelesítési módszerként"],"Unable to connect to host":[null,"Nem tud csatlakozni a Host-hoz"],"SMS sent successfully":[null,"SMS sikeresen elküldve"],"Problem sending SMS: {message}":[null,"Probléma merült fel az SMS küldése közben: {message}"],"Telegram notification succeeded. Check your Telegram clients to make sure it worked":[null,"Telegram értesítés elküldve. Lépj be a Telegram kliensbe, hogy ellenőrizd, minden jól működött-e"],"Error sending Telegram notification: {message}":[null,"Hiba a Telegram értesítés elküldése közben: {message}"],"join notification succeeded. Check your join clients to make sure it worked":[null,"join értesítés elküldve. Lépj be a join kliensbe, hogy ellenőrizd, minden jól működött-e"],"Error sending join notification: {message}":[null,"Hiba a join értesítés elküldése közben: {message}"]," with password":[null," jelszóval"],"Registered and Tested growl successfully {growl_host}":[null,"Growl sikeresen regisztrálva és tesztelve {growl_host}"],"Registration and Testing of growl failed {growl_host}":[null,"Growl regisztrálása és tesztelése sikertelen {growl_host}"],"Test prowl notice sent successfully":[null,"Prowl teszértesítés elküldve"],"Test prowl notice failed":[null,"Prowl tesztértesítés elküldése sikertelen"],"Boxcar2 notification succeeded. Check your Boxcar2 clients to make sure it worked":[null,"Boxcar2 értesítés elküldve. Lépj be a Boxcar2 kliensbe, hogy ellenőrizd, minden jól működött-e"],"Error sending Boxcar2 notification":[null,"Hiba a Boxcar2 értesítés elküldése közben"],"Pushover notification succeeded. Check your Pushover clients to make sure it worked":[null,"Pushover értesítés elküldve. Lépj be a Pushover kliensbe, hogy ellenőrizd, minden jól működött-e"],"Error sending Pushover notification":[null,"Hiba a Pushover értesítés elküldése közben"],"Key verification successful":[null,"A kulcs igazolása sikerrel járt"],"Unable to verify key":[null,"Nem sikerült a kulcs igazolása"],"Tweet successful, check your twitter to make sure it worked":[null,"Tweet elküldve, ellenőrizd a Twittered, hogy minden jól működött-e"],"Error sending tweet":[null,"Hiba a tweet küldése közben"],"Please enter a valid account sid":[null,""],"Please enter a valid auth token":[null,""],"Please enter a valid phone sid":[null,""],"Please format the phone number as \"+1-###-###-####\"":[null,""],"Authorization successful and number ownership verified":[null,""],"Error sending sms":[null,""],"Slack message successful":[null,"Slack üzenet sikeresen elküldve"],"Slack message failed":[null,"Slack üzenet küldése sikertelen"],"Discord message successful":[null,""],"Discord message failed":[null,""],"Test KODI notice sent successfully to {kodi_host}":[null,"KODI tesztértesítés sikeresen elküldve a(z) {kodi_host} helyre"],"Test KODI notice failed to {kodi_host}":[null,"KODI tesztértesítés {kodi_host} helyre küldése sikertelen"],"Successful test notice sent to Plex Home Theater ... {plex_clients}":[null,"Tesztértesítés elküldve a Plex Home Theater számára ... {plex_clients}"],"Test failed for Plex Home Theater ... {plex_clients}":[null,"A teszt elküldése a Plex Home Theater számára sikertelen ... {plex_clients}"],"Tested Plex Home Theater(s)":[null,"Tesztelt Plex Home Theater kliens(ek)"],"Successful test of Plex Media Server(s) ... {plex_servers}":[null,"Tesztértesítés elküldve a Plex Media Server(ek) számára ... {plex_servers}"],"Test failed, No Plex Media Server host specified":[null,"A teszt sikertelen, nincs megadva Plex Media Server hoszt"],"Test failed for Plex Media Server(s) ... {plex_servers}":[null,"A teszt elküldése a Plex Media Server(ek) számára sikertelen ... {plex_servers}"],"Tested Plex Media Server host(s)":[null,"Tesztelt Plex Media Server hoszt(ok)"],"Tried sending desktop notification via libnotify":[null,"Asztali értesítés küldése libnotify által"],"Test notice sent successfully to {emby_host}":[null,"Tesztértesítés sikeresen elküldve ide: {emby_host}"],"Test notice failed to {emby_host}":[null,"Tesztértesítés {emby_host} helyre küldése sikertelen"],"Successfully started the scan update":[null,"Frissítés-ellenőrzés sikeresen elindítva"],"Test failed to start the scan update":[null,"Frissítés-ellenőrzés elindítása sikertelen"],"Test notice sent successfully to {nmj2_host}":[null,"Tesztértesítés sikeresen elküldve ide: {nmj2_host}"],"Test notice failed to {nmj2_host}":[null,"Tesztértesítés {nmj2_host} helyre küldése sikertelen"],"Trakt Authorized":[null,"Trakt engedélyezve"],"Trakt Not Authorized!":[null,"Trakt nincs engedélyezve!"],"Test email sent successfully! Check inbox.":[null,"Teszt e-mail sikeresen elküldve. Ellenőrizd a bejövő levelidet."],"ERROR: {last_error}":[null,"HIBA: {last_error}"],"Test NMA notice sent successfully":[null,"NMA tesztértesítés elküldve"],"Test NMA notice failed":[null,"NMA tesztértesítés elküldése sikertelen"],"Pushalot notification succeeded. Check your Pushalot clients to make sure it worked":[null,"Pushalot értesítés elküldve. Lépj be a Pushalot kliensbe, hogy ellenőrizd, minden jól működött-e"],"Error sending Pushalot notification":[null,"Hiba a Pushalot értesítés elküldése közben"],"Pushbullet notification succeeded. Check your device to make sure it worked":[null,"Pushbullet értesítés elküldve. Ellenőrizd a készüléked, hogy minden jól működött-e"],"Error sending Pushbullet notification":[null,"Hiba a Pushbullet értesítés elküldése közben"],"Status":[null,"Állapot"],"Restarting SickRage":[null,"SickRage újraindítás"],"Update Failed":[null,"Frissítés sikertelen"],"Update wasn't successful, not restarting. Check your log for more information.":[null,"A frissítés nem sikerült, így nincs újraindítás. Tekintsd meg a naplófájlt a részletekért."],"Checking out branch":[null,"Ágazat ellenőrzése"],"Already on branch":[null,"Legfrissebb ágazat telepítve"],"Invalid show ID: {show}":[null,"Érvénytelen műsor azonosító: {show}"],"Show not in show list":[null,"A műsor nincs a listán"],"Edit":[null,"Szerkesztés"],"This show is in the process of being downloaded - the info below is incomplete.":[null,"Ez a sorozat letöltés alatt van - a lenti információ nem teljes."],"The information on this page is in the process of being updated.":[null,"Az oldalon található információk frissítés alatt vannak."],"The episodes below are currently being refreshed from disk":[null,"A lenti epizódok frissítés alatt vannak a lemezről"],"Currently downloading subtitles for this show":[null,"Ehhez a sorozathoz feliratot töltünk le"],"This show is queued to be refreshed.":[null,"A sorozat frissítése ütemezve."],"This show is queued and awaiting an update.":[null,""],"This show is queued and awaiting subtitles download.":[null,""],"Resume":[null,"Visszaállítás"],"Pause":[null,"Szünet"],"Remove":[null,"Eltávolít"],"Re-scan files":[null,"Fájlok újraolvasása"],"Force Full Update":[null,"Teljes frissítés kényszerítése"],"Update show in KODI":[null,"Sorozat frissítése a KODI-ban."],"Update show in Emby":[null,"Sorozat frissítése az Emby-ben."],"Hide specials":[null,"Extrák elrejtése"],"Show specials":[null,"Extrák mutatása"],"Preview Rename":[null,""],"Download Subtitles":[null,"Felirat letöltése"],"No scene exceptions":[null,""],"Invalid show ID":[null,"Érvénytelen műsor azonosító"],"Unable to find the specified show":[null,"Nem sikerült megtalálni a műsort"],"Unable to retreive Fansub Groups from AniDB.":[null,""],"Edit Show":[null,"Műsor szerkesztése"],"Unable to refresh this show: {error}":[null,""],"New location <tt>{location}</tt> does not exist":[null,""],"Unable to update show: {error}":[null,"Nem lehet frissíteni a sorozatot: {error}"],"Unable to force an update on scene exceptions of the show.":[null,""],"Unable to force an update on scene numbering of the show.":[null,""],"{num_errors:d} error{plural} while saving changes:":[null,""],"{show_name} has been {paused_resumed}":[null,""],"resumed":[null,"folytatódik"],"paused":[null,"szünetel"],"{show_name} has been {deleted_trashed} {was_deleted}":[null,"{show_name} volt {deleted_trashed} {was_deleted}"],"deleted":[null,"törölve"],"trashed":[null,"kidobott"],"(media untouched)":[null,"(média érintetlen)"],"(with all related media)":[null,""],"Unable to refresh this show.":[null,""],"Unable to update this show.":[null,"Nem sikerült frissíteni ezen a sorozatot."],"Library update command sent to KODI host(s)): {kodi_hosts}":[null,""],"Unable to contact one or more KODI host(s)): {kodi_hosts}":[null,""],"Library update command sent to Plex Media Server host: {plex_server}":[null,""],"Unable to contact Plex Media Server host: {plex_server}":[null,""],"Library update command sent to Emby host: {emby_host}":[null,""],"Unable to contact Emby host: {emby_host}":[null,""],"You must specify a show and at least one episode":[null,""],"Invalid status":[null,"Érvénytelen állapot"],"Backlog was automatically started for the following seasons of <b>{show_name}</b>":[null,""],"Season":[null,"Évad"],"Backlog started":[null,""],"Retrying Search was automatically started for the following season of <b>{show_name}</b>":[null,""],"Retry Search started":[null,""],"You must specify a show":[null,""],"Can't rename episodes when the show dir is missing.":[null,""],"New subtitles downloaded: {new_subtitle_languages}":[null,""],"No subtitles downloaded":[null,""],"IRC":[null,"IRC"],"Could not load news from the repo. [Click here for news.md])({news_url})":[null,""],"The was a problem connecting to github, please refresh and try again":[null,""],"Could not load changes from the repo. [Click here for CHANGES.md]({changes_url})":[null,"Nem tölthetők be a változások a repóból. [Kattints ide a CHANGES.md fájl megtekintéséhez]({changes_url})"],"Changelog":[null,"Újdonságok"],"Post Processing":[null,"Utófeldolgozás"],"Add Shows":[null,"Műsorok hozzáadása"],"No folders selected.":[null,"Nincsenek kiválasztott mappák."],"New Show":[null,"Új műsor"],"Trending Shows":[null,"Felkapott műsorok"],"Popular Shows":[null,"Népszerű műsorok"],"Most Anticipated Shows":[null,"Leginkább várt műsorok"],"Most Collected Shows":[null,""],"Most Watched Shows":[null,""],"Most Played Shows":[null,""],"Recommended Shows":[null,""],"New Shows":[null,"Új műsorok"],"Season Premieres":[null,"Évad-premierek"],"Existing Show":[null,"Meglévő műsor"],"No root directories setup, please go back and add one.":[null,"Nincs megadva gyökérmappa, kérlek lépj vissza és adj meg egyet."],"Show added":[null,"Műsor hozzáadva"],"Adding the specified show {show_name}":[null,"{show_name} hozzáadása"],"Missing params, no Indexer ID or folder: {show_to_add} and {root_dir}/{show_path}":[null,"Hiányzó paraméterek, nincs Indexer ID vagy mappa: {show_to_add} és {root_dir}/{show_path}"],"Unknown error. Unable to add show due to problem with show selection.":[null,"Ismeretlen hiba történt. Sikertelen a műsor hozzáadása egy műsorválasztási hiba miatt."],"Unable to add show":[null,"Nem sikerült a műsort hozzáadni"],"Folder {show_dir} exists already":[null,"A(z) {show_dir} mappa már létezik"],"Unable to create the folder {show_dir}, can't add the show":[null,"Nem sikerült létrehozni a(z) {show_dir} mappát, ezért a műsor hozzáadása sem lehetséges"],"Adding the specified show into {show_dir}":[null,"Egy megadott műsor hozzáadása a(z) {show_dir} mappába"],"Shows Added":[null,"Műsorok hozzáadva"],"Automatically added {num_shows} from their existing metadata files":[null,"Automatikusan hozzáadja a {num_shows} a meglévő metaadat-fájlokból"],"Mass Update":[null,"Tömeges frissítés"],"Episode Overview":[null,"Epizód áttekintés"],"Missing Subtitles":[null,"Hiányzó feliratok"],"Backlog Overview":[null,"Elmaradások áttekintése"],"Mass Edit":[null,"Tömeges szerkesztés"],"Unable to update show: {excption_format}":[null,"A műsor frissítése sikertelen: {excption_format}"],"Unable to refresh show {show_name}: {excption_format}":[null,"A(z) {show_name} frissítése sikertelen: {excption_format}"],"Errors encountered":[null,"Hiba történt"],"Updates":[null,"Frissítések"],"Refreshes":[null,"Frissít"],"Renames":[null,"Átnevezése"],"Subtitles":[null,"Feliratok"],"The following actions were queued":[null,"A következő műveletek lettek sorba állítva"],"For best results please set the Download Station alias as":[null,"A legjobb eredmény érdekében állítsa be a Download Station aliasnevét a következőre:"],"You can check this setting in the Synology DSM":[null,"Ellenőrizheted ezt a beállítást a Synology DSM-ben"],"Control Panel":[null,"Vezérlőpult"],"Application Portal":[null,"Applikáció-portál"],"Make sure you allow DSM to be embedded with iFrames too in":[null,"Ne felejtsd el engedélyezni a DSM-et, hogy iFrame-be is be lehessen ágyazni"],"DSM Settings":[null,"DSM beállítások"],"Security":[null,"Biztonság"],"Manage Torrents":[null,"Torrentek kezelése"],"Failed Downloads":[null,"Sikertelen letöltések"],"Manage Searches":[null,"Keresések kezelése"],"Backlog search started":[null,"Elmaradások keresése elindult"],"Daily search started":[null,"Napi keresés elindult"],"Find propers search started":[null,""],"Subtitle search started":[null,"Feliratok keresése elindult"],"Remove Selected":[null,""],"Clear History":[null,"Előzmények törlése"],"Trim History":[null,"Előzmények csökkentése"],"Selected history entries removed":[null,""],"History cleared":[null,"Előzmények törölve"],"Removed history entries older than 30 days":[null,"30 napnál régebbi bejegyzések eltávolítva"],"General":[null,"Általános"],"Backup/Restore":[null,"Mentés/Visszaállítás"],"Search Settings":[null,"Keresési beállítások"],"Search Providers":[null,"Keresőmotorok"],"Subtitles Settings":[null,"Feliratok Beállításai"],"Notifications":[null,"Értesítések"],"Anime":[null,"Anime"],"SickRage Configuration":[null,"SickRage beállítás"],"Config - Shares":[null,""],"Windows Shares Configuration":[null,""],"Saved Shares":[null,""],"Your Windows share settings have been saved":[null,""],"Config - General":[null,"Beállítások - Általános"],"General Configuration":[null,"Általános Beállítások"],"Saved Defaults":[null,""],"Your \"add show\" defaults have been set to your current selections.":[null,""],"Unable to create directory {directory}, log directory not changed.":[null,""],"Unable to create directory {directory}, https cert directory not changed.":[null,""],"Unable to create directory {directory}, https key directory not changed.":[null,""],"Error(s) Saving Configuration":[null,""],"Configuration Saved":[null,"Beállítás mentve"],"Config - Backup/Restore":[null,"Beállítások - biztonsági mentés és visszaállítás"],"Config - Episode Search":[null,"Beállítások - Epizód Keresés"],"Config - Post Processing":[null,"Beállítások - Utófeldolgozás"],"Unpacking Not Supported, disabling unpack setting":[null,""],"You tried saving an invalid normal naming config, not saving your naming settings":[null,""],"You tried saving an invalid anime naming config, not saving your naming settings":[null,""],"Config - Providers":[null,"Beállítás - Szolgáltatók"],"No Provider Name specified":[null,""],"No Provider Url specified":[null,""],"No Provider Api key specified":[null,""],"Config - Notifications":[null,"Beállítások - Értesítések"],"Config - Subtitles":[null,"Beállítások - Feliratok"],"Config - Anime":[null,"Beállítások - Anime"],"Clear Errors":[null,"Hibák törlése"],"Clear Warnings":[null,"Figyelmeztetések törlése"],"Submit Errors":[null,""],"Logs & Errors":[null,"Naplók & Hibák"],"Log File":[null,"Naplófájl"],"Logs":[null,"Naplók"],"This is a test notification from SickRage":[null,""],"Please fill out the necessary fields above.":[null,""],"This pattern is invalid.":[null,""],"This pattern would be invalid without the folders, using it will force \"Season Folders\" on for all shows.":[null,""],"This pattern is valid.":[null,""],"Resume updating the log on this page.":[null,""],"Pause updating the log on this page.":[null,""],"You have reached this page by accident, please check the url.":[null,"Véletlenül juthatott erre az oldalra, kérem ellenőrizze az url-t."],"A mako error has occured.<br>\n If this happened during an update a simple page refresh may be the solution.<br>\n Mako errors that happen during updates may be a one time error if there were significant ui changes.":[null,"Egy mako hiba történt.<br>\n Ha ez a hiba frissítés során történt, egyszerűen csak frissítse az oldalt.<br>\n Mako hibák a frissítés során akkor fordulhatnak elő, ha jelentős ui változások történnek."],"Show/Hide Error":[null,"Hiba megjelenítése/elrejtése"],"Add New Show":[null,"Új Sorozat Hozzáadása"],"For shows that you haven't downloaded yet, this option finds a show on theTVDB.com, creates a directory for it's episodes, and adds it to SickRage.":[null,""],"Add From Trakt Lists":[null,"Hozzáadás Trakt listákból"],"For shows that you haven't downloaded yet, this option lets you choose from a show from one of the Trakt lists to add to SickRage.":[null,""],"Add From IMDB's Popular Shows":[null,""],"View IMDB's list of the most popular shows. This feature uses IMDB's MOVIEMeter algorithm to identify popular TV Series.":[null,""],"Add Existing Shows":[null,"Meglévő Sorozat Hozzáadása"],"Use this option to add shows that already have a folder created on your hard drive. SickRage will scan your existing metadata/episodes and add the show accordingly.":[null,""],"Add Existing Show":[null,"Meglévő Sorozat Hozzáadása"],"Manage Directories":[null,"Könyvtárak kezelése"],"Customize Options":[null,"Beállítások testreszabása"],"SickRage can add existing shows, using the current options, by using locally stored NFO/XML metadata to eliminate user interaction. If you would rather have SickRage prompt you to customize each show, then use the checkbox below.":[null,""],"Prompt me to set settings for each show":[null,""],"Displaying folders within these directories which aren't already added to SickRage":[null,""],"Submit":[null,"Elküld"],"Find a show on theTVDB":[null,"Sorozat keresése a theTVDB-n"],"Show retrieved from existing metadata":[null,"A műsor lekérve a meglévő metadatából"],"All Indexers":[null,"Összes indexerek"],"Search":[null,"Keresés"],"This will only affect the language of the retrieved metadata file contents and episode filenames.":[null,"Ez csak a lekért metadata fájl és az epizódok fájlainak nyelvét érinti."],"This <b>DOES NOT</b> allow SickRage to download non-english TV episodes!":[null,"Ez <b>NEM</b> hatalmazza fel a SickRage-et, hogy más nyelvű epizódokat töltsön le!"],"Pick the parent folder":[null,"Szülő mappa kiválasztása"],"Pre-chosen Destination Folder":[null,"Előre kiválasztott célmappa"],"Customize options":[null,"Beállítások testreszabása"],"Add Show":[null,"Műsor hozzáadása"],"Skip Show":[null,"Műsor átugrása"],"Sort By":[null,"Rendezés"],"Name":[null,"Név"],"Original":[null,"Eredeti"],"Votes":[null,"Szavazatok"],"Rating":[null,"Értékelés"],"Rating > Votes":[null,"Értékelés > Szavazatok"],"Sort Order":[null,"Rendezési sorrend"],"Asc":[null,"Növ"],"Desc":[null,"Csök"],"Fetching of IMDB Data failed. Are you online?":[null,"IMDB adatok beillesztése sikertelen. Online vagy?"],"Exception":[null,"Kivétel"],"Select Trakt List":[null,"Trakt lista kijelölése"],"Most Anticipated":[null,"Leginkább várt"],"Trending":[null,"Felkapott"],"Popular":[null,"Népszerű"],"Most Watched":[null,"Legnézettebb"],"Most Played":[null,"Legtöbbet játszott"],"Most Collected":[null,"Legtöbbet begyűjtott"],"Recommended":[null,"Ajánlott"],"Toggle navigation":[null,"Navigáció váltása"],"Profile":[null,"Profil"],"JSONP":[null,"JSONP"],"Back to SickRage":[null,"Visszatérés a SickRage-hez"],"Parameters":[null,"Paraméterek"],"Required":[null,"Kitöltendő"],"Description":[null,"Leírás"],"Type":[null,"Típus"],"Default value":[null,"Alapértelmezett érték"],"Allowed values":[null,"Megengedett értékek"],"Playground":[null,"Játszótér"],"Clear":[null,"Mező törlése"],"Yes":[null,"Igen"],"No":[null,"Nem"],"season":[null,"Évad"],"episode":[null,"epizód"],"Python Version":[null,"Python verzió"],"SSL Version":[null,"SSL-verzió"],"OS":[null,"Operációs Rendszer"],"Locale":[null,"Helyszín"],"User":[null,"Felhasználó"],"Program Folder":[null,"Program mappa"],"Config File":[null,"Beállítási Fájl"],"Database File":[null,"Adatbázis fájl"],"Cache Folder":[null,"Gyorsítótár-mappa"],"Log Folder":[null,"Napló mappa"],"Arguments":[null,"Argumentumok"],"Web Root":[null,"Web gyökérkönyvtára"],"Website":[null,"Honlap"],"Wiki":[null,"Wiki"],"Source":[null,"Forrás"],"IRC Chat":[null,"IRC Chat"],"AnimeDB Settings":[null,"AnimeDB beállítások"],"Look & Feel":[null,"Megjelenés és hangulat"],"AniDB is non-profit database of anime information that is freely open to the public":[null,"Az AniDB egy non-profit adatbázis, amely animékkel kapcsolatos információkat oszt meg nyilvánosan"],"Enable":[null,"Engedélyez"],"should SickRage use data from AniDB?":[null,""],"AniDB Username":[null,"AniDB felhasználónév"],"username of your AniDB account":[null,""],"AniDB Password":[null,"AniDB jelszó"],"password of your AniDB account":[null,""],"AniDB MyList":[null,"AniDB MyList"],"do you want to add the PostProcessed episodes to the MyList?":[null,""],"Look and Feel":[null,"Kinézet"],"How should the anime functions show and behave.":[null,""],"Split show lists":[null,""],"separate anime and normal shows in groups":[null,""],"Split in tabs":[null,""],"use tabs for when splitting show lists":[null,""],"Restore":[null,"Visszaállítás"],"Backup your main database file and config.":[null,""],"Select the folder you wish to save your backup file to":[null,""],"Restore your main database file and config.":[null,""],"Select the backup file you wish to restore":[null,""],"Misc":[null,"Egyéb"],"Interface":[null,"Kezelőfelület"],"Advanced Settings":[null,"Részletes Beállítások"],"Startup options. Indexer options. Log and show file locations.":[null,""],"Some options may require a manual restart to take effect.":[null,""],"Default Indexer Language":[null,"Alapértelmezett indexelő nyelv"],"for adding shows and metadata providers":[null,""],"Launch browser":[null,"Böngésző indítása"],"open the SickRage home page on startup":[null,""],"Initial page":[null,"Kezdő oldal"],"Shows":[null,"Műsorok"],"when launching SickRage interface":[null,""],"Choose hour to update shows":[null,""],"with information such as next air dates, show ended, etc. Use 15 for 3pm, 4 for 4am etc.":[null,""],"note":[null,""],"minutes are randomized each time SickRage is started":[null,""],"Send to trash for actions":[null,""],"when using show \"Remove\" and delete files":[null,""],"on scheduled deletes of the oldest log files":[null,""],"selected actions use trash (recycle bin) instead of the default permanent delete":[null,""],"Log file folder location":[null,""],"Number of Log files saved":[null,""],"number of log files saved when rotating logs (default: 5) (REQUIRES RESTART)":[null,""],"Size of Log files saved":[null,""],"maximum size in MB of the log file (default: 1MB) (REQUIRES RESTART)":[null,""],"Use initial indexer set to":[null,""],"as the default selection when adding new shows":[null,""],"Timeout show indexer at":[null,""],"seconds of inactivity when finding new shows (default:20)":[null,""],"Show root directories":[null,""],"where the files of shows are located":[null,""],"Save Changes":[null,"Változtatások mentése"],"Options for software updates.":[null,""],"Check software updates":[null,"Szoftverfrissítések ellenőrzése"],"and display notifications when updates are available. Checks are run on startup and at the frequency set below*":[null,""],"Automatically update":[null,"Automatikus frissítése"],"fetch and install software updates. Updates are run on startup and in the background at the frequency set below*":[null,""],"Check the server every*":[null,"Ellenőrizze a szervert minden *"],"hours for software updates (default:1)":[null,""],"Notify on software update":[null,"Értesítés a szoftverfrissítésről"],"send a message to all enabled notifiers when SickRage has been updated":[null,""],"User Interface":[null,"Felhasználói felület"],"Options for visual appearance.":[null,""],"Interface Language":[null,"Kezelőfelület nyelve"],"System Language":[null,"Rendszer nyelv"],"for appearance to take effect, save then refresh your browser":[null,""],"Display theme":[null,"Megjelenítési téma"],"Dark":[null,"Sötét"],"Light":[null,"Fényes"],"Use a background image":[null,""],"use a custom image as background for SickRage":[null,""],"Background Path":[null,""],"Path to the background image":[null,""],"Show fanart in the background":[null,"Fan-art megjelenítése a háttérben"],"on the show summary page":[null,"a műsor összefoglaló lapján"],"Fanart transparency":[null,"Fan-art átlátszósága"],"transparency of the fanart in the background":[null,""],"Use a custom stylesheet file":[null,""],"use a custom .css file to style SickRage (for advanced users)":[null,""],"Stylesheet File Path":[null,""],"Path to the stylesheet (.css) file":[null,""],"Show all seasons":[null,"Összes évad megtekintése"],"Sort with \"The\", \"A\", \"An\"":[null,"Rendezés \"The\", \"A\" és \"An\" előtagokkal"],"include articles (\"The\", \"A\", \"An\") when sorting show lists":[null,"előtagok (\"The\", \"A\", \"An\") engedélyezése a műsorok rendezésekor"],"Missed episodes range":[null,""],"set the range in days of the missed episodes in the Schedule page":[null,""],"Display fuzzy dates":[null,""],"move absolute dates into tooltips and display e.g. \"Last Thu\", \"On Tue\"":[null,""],"Trim zero padding":[null,""],"remove the leading number \"0\" shown on hour of day, and date of month":[null,""],"Date style":[null,"Dátum stílus"],"Use System Default":[null,""],"Time style":[null,""],"seconds are only shown on the History page":[null,""],"Timezone":[null,"Időzóna"],"Local":[null,"Helyi"],"Network":[null,"Tv csatorna"],"display dates and times in either your timezone or the shows network timezone":[null,""],"use local timezone to start searching for episodes minutes after show ends (depends on your dailysearch frequency)":[null,""],"Download url":[null,"Letöltés url"],"URL where the shows can be downloaded.":[null,""],"Web Interface":[null,"Webes felület"],"it is recommended that you enable a username and password to secure SickRage from being tampered with remotely.":[null,""],"these options require a manual restart to take effect.":[null,""],"API key":[null,"API-kulcs"],"used to give 3rd party programs limited access to SickRage":[null,""],"you can try all the features of the API":[null,""],"here":[null,"itt"],"HTTP logs":[null,"HTTP naplók"],"enable logs from the internal Tornado web server":[null,""],"HTTP username":[null,"HTTP felhasználónév"],"set blank for no login":[null,""],"HTTP password":[null,"HTTP jelszó"],"blank = no authentication":[null,"üres = nincs hitelesítés"],"HTTP port":[null,"HTTP-port"],"web port to browse and access SickRage (default:8081)":[null,""],"Notify on login":[null,""],"enable to be notified when a new login happens in webserver":[null,""],"Listen on IPv6":[null,""],"attempt binding to any available IPv6 address":[null,""],"Enable HTTPS":[null,"Engedélyezi a HTTPS"],"enable access to the web interface using a HTTPS address":[null,""],"HTTPS certificate":[null,"HTTPS tanúsítvány"],"file name or path to HTTPS certificate":[null,""],"HTTPS key":[null,"HTTPS kulcs"],"file name or path to HTTPS key":[null,""],"Reverse proxy headers":[null,""],"accept the following reverse proxy headers (advanced)...":[null,""],"(X-Forwarded-For, X-Forwarded-Host, and X-Forwarded-Proto)":[null,""],"CPU throttling":[null,"CPU korlátozás"],"Normal (default). High is lower and Low is higher CPU use":[null,""],"Anonymous redirect":[null,"Névtelen átirányítás"],"backlink protection via anonymizer service, must end in \"?\"":[null,""],"Enable debug":[null,"Hibakeresés engedélyezése"],"enable debug logs":[null,""],"Verify SSL Certs":[null,"SSL tanúsítványok ellenőrzése"],"verify SSL Certificates (Disable this for broken SSL installs (Like QNAP))":[null,""],"No Restart":[null,"Nincs Újraindítás"],"only shutdown when restarting SR":[null,""],"only select this when you have external software restarting SR automatically when it stops (like FireDaemon)":[null,""],"Encrypt passwords":[null,"Jelszavak titkosítása"],"in the <code>config.ini</code> file":[null,""],"warning":[null,""],"passwords must only contain":[null,""],"ASCII characters":[null,"ASCII karakterek"],"Unprotected calendar":[null,""],"allow subscribing to the calendar without user and password":[null,""],"some services like Google Calendar only work this way":[null,""],"Google Calendar Icons":[null,""],"show an icon next to exported calendar events in Google Calendar":[null,""],"Proxy host":[null,"Proxyállomás"],"blank to disable or proxy to use when connecting to providers":[null,""],"also use global proxy setting for indexers (tvdb, xem, anidb, etc.)":[null,""],"Skip Remove Detection":[null,""],"skip detection of removed files":[null,""],"if disabled the episode will be set to the default deleted status":[null,""],"Default deleted episode status":[null,"Alapértelmezett törölt epizód állapota"],"define the status to be set for media file that has been deleted.":[null,""],"Archived option will keep previous downloaded quality":[null,""],"example: Downloaded (1080p WEB-DL) ==> Archived (1080p WEB-DL)":[null,""],"Options for github related features.":[null,""],"Branch version":[null,"Ágazat verziója"],"error: No branches found.":[null,""],"select branch to use (restart required)":[null,""],"Authorization Type":[null,""],"Username and password":[null,""],"Personal access token":[null,""],"You must use a personal access token if you're using \"two-factor authentication\" on GitHub.":[null,""],"GitHub username":[null,"GitHub felhasználónév"],"*** (REQUIRED FOR SUBMITTING ISSUES) ***":[null,""],"GitHub password":[null,"GitHub jelszó"],"GitHub personal access token":[null,""],"Generate Token":[null,""],"Manage Tokens":[null,""],"GitHub remote for branch":[null,""],"access repo configured remotes (save then refresh browser)":[null,""],"default":[null,""],"origin":[null,""],"Git executable path":[null,""],"only needed if OS is unable to locate git from env":[null,""],"Git reset":[null,"Git visszaállítása"],"removes untracked files and performs a hard reset on git branch automatically to help resolve update issues":[null,""],"Home Theater / NAS":[null,"Házimozi / NAS"],"Devices":[null,"Eszközök"],"Social":[null,"Közösségi"],"A free and open source cross-platform media center and home entertainment system software with a 10-foot user interface designed for the living-room TV.":[null,""],"send KODI commands?":[null,""],"Always on":[null,"Mindig bekapcsolva"],"log errors when unreachable?":[null,""],"Notify on snatch":[null,""],"send a notification when a download starts?":[null,""],"Notify on download":[null,""],"send a notification when a download finishes?":[null,""],"Notify on subtitle download":[null,""],"send a notification when subtitles are downloaded?":[null,""],"Update library":[null,"Könyvtár frissítés"],"update KODI library when a download finishes?":[null,""],"Full library update":[null,"Teljes könyvtár frissítése"],"perform a full library update if update per-show fails?":[null,""],"Only update first host":[null,""],"only send library updates to the first active host?":[null,""],"KODI IP:Port":[null,"KODI IP:Port"],"host running KODI (eg. 192.168.1.100:8080)":[null,""],"(multiple host strings must be separated by commas)":[null,""],"Username":[null,"Felhasználónév"],"username for your KODI server (blank for none)":[null,""],"Password":[null,"Jelszó"],"password for your KODI server (blank for none)":[null,""],"Click below to test.":[null,""],"Experience your media on a visually stunning, easy to use interface on your Mac connected to your TV. Your media library has never looked this good!":[null,""],"For sending notifications to Plex Home Theater (PHT) clients, use the KODI notifier with port <b>3005</b>.":[null,""],"send Plex Media Server library updates?":[null,""],"Plex Media Server Auth Token":[null,""],"auth token used by Plex":[null,""],"Update Library":[null,"Könyvtár frissítés"],"update Plex Media Server library when a download finishes":[null,""],"Plex Media Server IP:Port":[null,"Plex Media Server IP:Port"],"one or more hosts running Plex Media Server<br/>(eg. 192.168.1.1:32400, 192.168.1.2:32400)":[null,""],"HTTPS":[null,"HTTPS"],"use https for plex media server requests?":[null,""],"Click below to test Plex Media Server(s)":[null,""],"Test Plex Media Server":[null,"Plex Media Server teszt"],"Plex Home Theater":[null,"Plex Home Theater"],"send Plex Home Theater notifications?":[null,""],"Plex Home Theater IP:Port":[null,"Plex Home Theater IP:Port"],"one or more hosts running Plex Home Theater<br>(eg. 192.168.1.100:3000, 192.168.1.101:3000)":[null,""],"Click below to test Plex Home Theater(s)":[null,""],"Test Plex Home Theater":[null,"Plex Home Theater teszt"],"some Plex Home Theaters <b class=\"boldest\">do not</b> support notifications e.g. Plexapp for Samsung TVs":[null,""],"Emby":[null,"Emby"],"A home media server built using other popular open source technologies.":[null,""],"send update commands to Emby?":[null,""],"Emby IP:Port":[null,"Emby IP:Port"],"host running Emby (eg. 192.168.1.100:8096)":[null,""],"Emby API Key":[null,"Emby API-kulcs"],"Networked Media Jukebox":[null,""],"The Networked Media Jukebox, or NMJ, is the official media jukebox interface made available for the Popcorn Hour 200-series.":[null,""],"send update commands to NMJ?":[null,""],"Popcorn IP address":[null,"Popcorn IP cím"],"IP address of Popcorn 200-series (eg. 192.168.1.100)":[null,""],"Get settings":[null,""],"Get Settings":[null,""],"the Popcorn Hour device must be powered on and NMJ running.":[null,""],"NMJ database":[null,"NMJ adatbázis"],"automatically filled via the 'Get Settings' button.":[null,""],"NMJ mount url":[null,""],"Networked Media Jukebox v2":[null,""],"The Networked Media Jukebox, or NMJv2, is the official media jukebox interface made available for the Popcorn Hour 300 & 400-series.":[null,""],"send update commands to NMJv2?":[null,""],"IP address of Popcorn 300/400-series (eg. 192.168.1.100)":[null,""],"Database location":[null,"Adatbázis helye"],"Database instance":[null,""],"adjust this value if the wrong database is selected.":[null,""],"Find database":[null,"Adatbázis keresése"],"Find Database":[null,"Adatbázis keresése"],"the Popcorn Hour device must be powered on.":[null,""],"NMJv2 database":[null,"NMJv2 adatbázis"],"automatically filled via the 'Find Database' buttons.":[null,""],"Synology":[null,"Synology"],"The Synology DiskStation NAS.":[null,""],"Synology Indexer is the daemon running on the Synology NAS to build its media database.":[null,""],"send Synology notifications?":[null,""],"requires SickRage to be running on your Synology NAS.":[null,""],"Synology Indexer":[null,"Synology indexelő"],"Synology Notifier is the notification system of Synology DSM":[null,""],"send notifications to the Synology Notifier?":[null,""],"pyTivo":[null,"pyTivo"],"pyTivo is both an HMO and GoBack server. This notifier will load the completed downloads to your Tivo.":[null,""],"send notifications to pyTivo?":[null,""],"requires the downloaded files to be accessible by pyTivo.":[null,""],"pyTivo IP:Port":[null,"pyTivo IP:Port"],"host running pyTivo (eg. 192.168.1.1:9032)":[null,""],"pyTivo share name":[null,""],"value used in pyTivo Web Configuration to name the share.":[null,""],"Tivo name":[null,"TiVo neve"],"(Messages & Settings > Account & System Information > System Information > DVR name)":[null,""],"Growl":[null,"Growl"],"A cross-platform unobtrusive global notification system.":[null,""],"send Growl notifications?":[null,""],"Growl IP:Port":[null,"Growl IP:Port"],"host running Growl (eg. 192.168.1.100:23053)":[null,""],"may leave blank if SickRage is on the same host.":[null,""],"otherwise Growl <b>requires</b> a password to be used.":[null,""],"Click below to register and test Growl, this is required for Growl notifications to work.":[null,""],"Register Growl":[null,""],"Prowl":[null,"Prowl"],"A Growl client for iOS.":[null,""],"send Prowl notifications?":[null,""],"Prowl Message Title":[null,""],"Global Prowl API key(s)":[null,""],"Prowl API(s) listed here, separated by commas if applicable, will<br> receive notifications for <b>all</b> shows. Your Prowl API key is available at:":[null,""],"(this field may be blank except when testing.)":[null,""],"Show notification list":[null,""],"-- Select a Show --":[null,"--Válassza ki a műsort--"],"Configure per-show notifications here by entering Prowl API key(s), separated by commas, '\n 'after selecting a show in the drop-down box. Be sure to activate the 'Save for this show' '\n 'button below after each entry.":[null,""],"Save for this show":[null,""],"Prowl priority":[null,"Prowl prioritás"],"Very Low":[null,"Nagyon alacsony"],"Moderate":[null,"Mérsékelt"],"Normal":[null,"Normál"],"High":[null,"Magas"],"Emergency":[null,"Sürgősségi"],"priority of Prowl messages from SickRage.":[null,""],"Libnotify":[null,"Libnotify"],"The standard desktop notification API for Linux/*nix systems. This notifier will only function if the pynotify module is installed (Ubuntu/Debian package <a href=\"apt:python-notify\">python-notify</a>).":[null,""],"send Libnotify notifications?":[null,""],"Pushover":[null,"Pushover"],"Pushover makes it easy to send real-time notifications to your Android and iOS devices.":[null,""],"send Pushover notifications?":[null,""],"Pushover key":[null,""],"user key of your Pushover account":[null,""],"Pushover API key":[null,""],"click here":[null,""]," to create a Pushover API key":[null,""],"Pushover devices":[null,""],"comma separated list of pushover devices you want to send notifications to":[null,""],"Pushover notification sound":[null,""],"Bike":[null,"Kerékpár"],"Bugle":[null,""],"Cash Register":[null,""],"Classical":[null,"Klasszikus"],"Cosmic":[null,"Kozmikus"],"Falling":[null,""],"Gamelan":[null,""],"Incoming":[null,"Bejövő"],"Intermission":[null,""],"Magic":[null,""],"Mechanical":[null,"Mechanikus"],"Piano Bar":[null,""],"Siren":[null,"Sziréna"],"Space Alarm":[null,""],"Tug Boat":[null,""],"Alien Alarm (long)":[null,""],"Climb (long)":[null,""],"Persistent (long)":[null,""],"Pushover Echo (long)":[null,""],"Up Down (long)":[null,"Fel le (hosszú)"],"None (silent)":[null,"Egyik sem (csendes)"],"Device specific":[null,"Készülék specifikus"],"choose notification sound to use":[null,""],"Pushover priority":[null,""],"Choose priority to use":[null,""],"Boxcar 2":[null,"Boxcar 2"],"Read your messages where and when you want them!":[null,""],"send Boxcar notifications?":[null,""],"Boxcar2 access token":[null,"Boxcar2 hozzáférési token"],"access token for your Boxcar account.":[null,""],"NMA":[null,"NMA"],"Notify My Android":[null,""],"Notify My Android is a Prowl-like Android App and API that offers an easy way to send notifications from your application directly to your Android device.":[null,""],"send NMA notifications?":[null,""],"NMA API key":[null,"NMA API kulcs"],"(multiple keys must be separated by commas, up to a maximum of 5)":[null,""],"NMA priority":[null,"NMA prioritás"],"priority of NMA messages from SickRage.":[null,""],"Pushalot":[null,"Pushalot"],"Pushalot is a platform for receiving custom push notifications to connected devices running Windows Phone or Windows 8.":[null,""],"send Pushalot notifications ?":[null,""],"Pushalot authorization token":[null,""],"authorization token of your Pushalot account.":[null,""],"Pushbullet":[null,"Pushbullet"],"Pushbullet is a platform for receiving custom push notifications to connected devices running Android/iOS and desktop browsers such as Chrome, Firefox or Opera.":[null,""],"send Pushbullet notifications?":[null,""],"Pushbullet API key":[null,""],"API key of your Pushbullet account":[null,""],"Pushbullet devices":[null,""],"Update device list":[null,"Eszközök listájának frissítése"],"Pushbullet channels":[null,""],"Free Mobile":[null,"Free Mobile"],"Free Mobile is a famous French cellular network provider.<br> It provides to their customer a free SMS API.":[null,""],"send SMS notifications?":[null,""],"send a SMS when a download starts?":[null,""],"send a SMS when a download finishes?":[null,""],"send a SMS when subtitles are downloaded?":[null,""],"Free Mobile customer ID":[null,"Free Mobile ügyfél-azonosító"],"it's your Free Mobile customer ID (8 digits)":[null,""],"Free Mobile API key":[null,""],"find your API key in your customer portal.":[null,""],"Click below to test your settings.":[null,""],"Telegram":[null,"Telegram"],"Telegram is a cloud-based instant messaging service.":[null,""],"send Telegram notifications?":[null,""],"send a message when a download starts?":[null,""],"send a message when a download finishes?":[null,""],"send a message when subtitles are downloaded?":[null,""],"User/group ID":[null,"Felhasználó/csoport azonosító"],"contact @myidbot on Telegram to get an ID":[null,""],"Bot API token":[null,""],"contact @BotFather on Telegram to set up one":[null,""],"Join":[null,"Join"],"Join all of your devices together!":[null,""],"send Join notifications?":[null,""],"Device ID":[null,"Eszköz azonosítója"],"per device specific id":[null,""]," to create a Join API key":[null,""],"Twilio":[null,""],"Twilio is a webservice API that allows you to communicate directly with a mobile number. This notifier will send a text directly to your mobile device.":[null,""],"should SickRage text your mobile device?":[null,""],"Twilio Account SID":[null,""],"account SID of your Twilio account.":[null,""],"Twilio Auth Token":[null,""],"Twilio Phone SID":[null,""],"phone SID that you would like to send the sms from":[null,""],"Your phone number":[null,""],"phone number that will receive the sms. Please use the format +1-###-###-####":[null,""],"Twitter":[null,"Twitter"],"A social networking and microblogging service, enabling its users to send and read other users' messages called tweets.":[null,""],"should SickRage post tweets on Twitter?":[null,""],"you may want to use a secondary account.":[null,""],"send direct message":[null,""],"send a notification via Direct Message, not via status update":[null,""],"send DM to":[null,""],"Twitter account to send Direct Messages to (must follow you)":[null,""],"Step One":[null,"Első lépés"],"Request Authorization":[null,""],"Click the \"Request Authorization\" button.<br> This will open a new page containing an auth key.<br> <b>note:</b> if nothing happens check your popup blocker.":[null,""],"Step Two":[null,"Második lépés"],"Enter the key Twitter gave you below, and click \"Verify Key\".":[null,""],"Trakt":[null,"Trakt"],"Trakt helps keep a record of what TV shows and movies you are watching. Based on your favorites, Trakt recommends additional shows and movies you'll enjoy!":[null,""],"send Trakt.tv notifications?":[null,""],"username of your Trakt account.":[null,""],"Trakt PIN":[null,"Trakt PIN"],"Get Trakt PIN":[null,""],"PIN code to authorize SickRage to access Trakt on your behalf.":[null,""],"API Timeout":[null,"API időtúllépés"],"seconds to wait for Trakt API to respond. (Use 0 to wait forever)":[null,""],"Default indexer":[null,"Alapértelmezett indexelő"],"Sync libraries":[null,"Könyvtárak szinkronizálása"],"sync your SickRage show library with your trakt show library.":[null,""],"Remove Episodes From Collection":[null,""],"remove an episode from your Trakt Collection if it is not in your SickRage Library.":[null,""],"Sync watchlist":[null,""],"sync your SickRage show watchlist with your trakt show watchlist (either Show and Episode).":[null,""],"episode will be added on watch list when wanted or snatched and will be removed when downloaded ":[null,""],"Watchlist add method":[null,""],"Skip All":[null,"Összes kihagyása"],"Download Pilot Only":[null,""],"Get whole show":[null,""],"method in which to download episodes for new shows.":[null,""],"Remove episode":[null,"Epizód eltávolítása"],"remove an episode from your watchlist after it is downloaded.":[null,""],"Remove series":[null,"Sorozat eltávolítása"],"remove the whole series from your watchlist after any download.":[null,""],"Remove watched show":[null,""],"remove the show from sickrage if it's ended and completely watched":[null,""],"Start paused":[null,""],"shows grabbed from your trakt watchlist start paused.":[null,""],"Trakt blackList name":[null,""],"name (slug) of list on Trakt for blacklisting show on 'Add Trending Show' & 'Add Recommended Shows' pages":[null,""],"Email":[null,"E-mail"],"Allows configuration of email notifications on a per show basis.":[null,""],"send email notifications?":[null,""],"SMTP host":[null,"SMTP hoszt"],"hostname of your SMTP email server.":[null,""],"SMTP port":[null,"SMTP port"],"port number used to connect to your SMTP host.":[null,""],"SMTP from":[null,""],"sender email address, some hosts require a real address.":[null,""],"Use TLS":[null,"TLS használata"],"check to use TLS encryption.":[null,""],"SMTP user":[null,"SMTP felhasználó"],"(optional) your SMTP server username.":[null,"(választható) SMTP kiszolgáló felhasználónév."],"SMTP password":[null,"SMTP jelszó"],"(optional) your SMTP server password.":[null,"(választható) SMTP kiszolgáló jelszó."],"Global email list":[null,"Globális e-mail lista"],"email addresses listed here, separated by commas if applicable, will<br> receive notifications for <b>all</b> shows.":[null,""],"(This field may be blank except when testing.)":[null,""],"Email Subject":[null,"E-mail Tárgya"],"use a custom subject for some privacy protection?":[null,""],"(leave blank for the default SickRage subject)":[null,""],"configure per-show notifications here by entering email address(es), separated by commas,":[null,""],"after selecting a show in the drop-down box. Be sure to activate the 'Save for this show'":[null,""],"button below after each entry.":[null,""],"Slack":[null,""],"Slack brings all your communication together in one place. It's real-time messaging, archiving and search for modern teams.":[null,""],"should SickRage post messages on Slack?":[null,""],"Slack Incoming Webhook":[null,""],"Discord":[null,""],"All-in-one voice and text chat for gamers that's free, secure, and works on both your desktop and phone.":[null,""],"Should SickRage post messages on Discord?":[null,""],"Discord Incoming Webhook":[null,""],"Create webhook under channel settings.":[null,""],"Discord Bot Name":[null,""],"Blank will use webhook default Name.":[null,""],"Discord Avatar URL":[null,""],"Blank will use webhook default Avatar.":[null,""],"Discord TTS":[null,""],"Send notifications using text-to-speech":[null,""],"Post-Processing":[null,"Utófeldolgozás"],"Episode Naming":[null,"Epizód elnevezése"],"Metadata":[null,"Metaadat"],"Settings that dictate how SickRage should process completed downloads.":[null,""],"enable the automatic post processor to scan and process any files in your Post Processing Dir":[null,""],"do not use if you use an external Post Processing script":[null,""],"Post Processing Dir":[null,"Utófeldolgozás helye"],"the folder where your download client puts the completed TV downloads.":[null,""],"please use seperate downloading and completed folders in your download client if possible.":[null,""],"Processing Method":[null,"Feldolgozási módszer"],"what method should be used to put files into the library?":[null,""],"if you keep seeding torrents after they finish, please avoid the 'move' processing method to prevent errors.":[null,""],"Auto Post-Processing Frequency":[null,"Automatikus utófeldolgozás gyakorisága"],"time in minutes to check for new files to auto post-process (min 10)":[null,""],"Postpone post processing":[null,"Utófeldolgozás elhalasztása"],"wait to process a folder if sync files are present.":[null,""],"Sync File Extensions":[null,""],"comma seperated list of extensions or filename globs SickRage ignores when Post Processing":[null,""],"Rename Episodes":[null,"Epizódok Átnevezése"],"rename episode using the Episode Naming settings?":[null,""],"Create missing show directories":[null,""],"create missing show directories when they get deleted":[null,""],"Add shows without directory":[null,""],"add shows without creating a directory (not recommended)":[null,""],"Move associated files":[null,""],"move associated (srt/srr/sfv/etc) files while post processing?":[null,""],"Rename .nfo file":[null,".nfo fájl átnevezése"],"rename the original .nfo file to .nfo-orig to avoid conflicts?":[null,""],"Associated file extensions":[null,""],"comma separated list of associated file extensions SickRage should keep while post processing.":[null,""],"leaving it empty means no associated files will be post processed":[null,""],"Delete non associated files":[null,""],"delete non associated files while post processing?":[null,""],"Change File Date":[null,"Fájl dátum módosítása"],"set last modified filedate to the date that the episode aired?":[null,""],"some systems may ignore this feature.":[null,""],"Timezone for File Date":[null,""],"local":[null,"helyi"],"network":[null,""],"what timezone should be used to change File Date?":[null,""],"Unpack":[null,"Kicsomagol"],"What to do with archived releases found in your <i>TV Download Dir</i>?":[null,""],"Ignore (do not process contents)":[null,""],"Unpack (process contents)":[null,""],"Treat as video (process archive as-is)":[null,""],"'Unpack' only works with RAR archives":[null,""],"Windows":[null,""],"WinRar is required on windows":[null,""],"Unpack Directory":[null,""],"Choose a path to unpack files, leave blank to unpack in download dir":[null,""],"Unrar Location":[null,""],"add the path to unrar if it is not in the system path":[null,""],"Alternate Unrar Tool":[null,""],"add the path to an alternate unrar tool if it is not in the system path":[null,""],"Delete RAR contents":[null,""],"delete content of RAR files, even if Process Method not set to move?":[null,""],"only working with RAR archive":[null,""],"Don't delete empty folders":[null,""],"leave empty folders when Post Processing?":[null,""],"can be overridden using manual Post Processing":[null,""],"Follow symbolic-links":[null,""],"follow down symbolic links in download directory?":[null,""],"<b>EXPERTS ONLY.</b><br>Enable only if you know what <b>circular symbolic links</b> are,<br>and can <b>verify that you have none</b>.":[null,""],"Use icacls":[null,""],"Windows only":[null,""],"sets video permissions after using the move method in post processing":[null,""],"Extra Scripts":[null,"Extra szkriptek"],"see":[null,""],"for script arguments description and usage.":[null,""],"How SickRage will name and sort your episodes.":[null,""],"Name Pattern":[null,""],"Toggle Naming Legend":[null,""],"don't forget to add quality pattern. Otherwise after post-processing the episode will have UNKNOWN quality":[null,""],"Meaning":[null,""],"Pattern":[null,""],"Result":[null,"Eredmény"],"Use lower case if you want lower case names (eg. %sn, %e.n, %q_n etc)":[null,""],"Show Name":[null,"Műsor Neve"],"Show.Name":[null,"Műsor.Neve"],"Show_Name":[null,"Műsor_Neve"],"Season Number":[null,"Évadszám"],"XEM Season Number":[null,"XEM évadszáma"],"Episode Number":[null,"Epizódszám"],"XEM Episode Number":[null,"XEM epizódszám"],"Episode Name":[null,"Epizód Neve"],"Episode.Name":[null,"Epizód.Neve"],"Episode_Name":[null,"Epizód_Neve"],"Air Date":[null,""],"Post-Processing Date":[null,"Utófeldolgozás dátuma"],"Quality":[null,"Minőség"],"Scene Quality":[null,""],"Release Name":[null,"Release név"],"SickRage' is used in place of RLSGROUP if it could not be properly detected":[null,""],"Release Group":[null,"Release csoport"],"If episode is proper/repack add 'proper' to name.":[null,""],"Release Type":[null,"Release típusa"],"Multi-Episode Style":[null,""],"Single-EP Sample":[null,""],"Multi-EP sample":[null,""],"Strip Show Year":[null,""],"remove the TV show's year when renaming the file?":[null,""],"only applies to shows that have year inside parentheses":[null,""],"Custom Air-By-Date":[null,""],"name air-by-date shows differently than regular shows?":[null,""],"Toggle ABD Naming Legend":[null,""],"Regular Air Date":[null,""],"Year":[null,"Év"],"Month":[null,"Hónap"],"Day":[null,"Nap"],"Multi-EP style is ignored":[null,""],"Custom Sports":[null,""],"name sports shows differently than regular shows?":[null,""],"Toggle Sports Naming Legend":[null,""],"Sports Air Date":[null,""],"Custom Anime":[null,"Egyéni Anime"],"name anime shows differently than regular shows?":[null,""],"Toggle Anime Naming Legend":[null,""],">XEM Season Number":[null,">XEM évadszám"],"Single-EP Anime Sample":[null,""],"Multi-EP Anime sample":[null,""],"Add Absolute Number":[null,""],"add the absolute number to the season/episode format?":[null,""],"only applies to anime. (eg. S15E45 - 310 vs S15E45)":[null,""],"Only Absolute Number":[null,""],"replace season/episode format with absolute number":[null,""],"only applies to anime.":[null,""],"No Absolute Number":[null,""],"don't include the absolute number":[null,""],"The data associated to the data. These are files associated to a TV show in the form of images and text that, when supported, will enhance the viewing experience.":[null,""],"Metadata Type":[null,"Metaadat Típus"],"toggle metadata options that you wish to be created":[null,""],"multiple targets may be used":[null,""],"Select Metadata":[null,""],"Provider Priorities":[null,""],"Provider Options":[null,""],"Configure Custom Newznab Providers":[null,""],"Configure Custom Torrent Providers":[null,""],"Check off and drag the providers into the order you want them to be used.":[null,""],"At least one provider is required but two are recommended.":[null,""],"Torrent providers can be toggled in ":[null,""],"Provider does not support backlog searches at this time.":[null,""],"Provider is <b>NOT WORKING</b>.":[null,""],"Configure individual provider settings here.":[null,""],"Check with provider's website on how to obtain an API key if needed.":[null,""],"Configure provider":[null,""],"no providers available to configure.":[null,""],"URL":[null,"URL"],"Enable daily searches":[null,"Napi keresések engedélyezése"],"enable provider to perform daily searches.":[null,""],"Enable backlog searches":[null,""],"enable provider to perform backlog searches.":[null,""],"Season search mode":[null,""],"when searching for complete seasons you can choose to have it look for season packs only, or choose to have it build a complete season from just single episodes.":[null,""],"season packs only.":[null,""],"episodes only.":[null,"epizódok csak."],"Enable fallback":[null,""],"when searching for a complete season depending on search mode you may return no results, this helps by restarting the search using the opposite search mode.":[null,""],"Custom URL":[null,"Egyéni URL-cím"],"the URL should include the protocol (and port if applicable). Examples: http://192.168.1.4/ or http://localhost:3000/":[null,""],"Api key":[null,"Api kulcs"],"Digest":[null,""],"Hash":[null,""],"Passkey":[null,""],"Cookies":[null,"Cookie-k"],"example: uid=1234;pass=567845439634987<br>note: uid and pass are not your username/password.<br>use DevTools or Firebug to get these values after logging in on your browser.":[null,""],"Pin":[null,""],"Seed ratio":[null,""],"stop transfer when ratio is reached<br>(-1 SickRage default to seed forever, or leave blank for downloader default)":[null,""],"Minimum seeders":[null,""],"Minimum leechers":[null,""],"Confirmed download":[null,""],"only download torrents from trusted or verified uploaders ?":[null,""],"Ranked torrents":[null,""],"only download ranked torrents (trusted releases)":[null,""],"English torrents":[null,""],"only download english torrents, or torrents containing english subtitles":[null,""],"For Spanish torrents":[null,""],"ONLY search on this provider if show info is defined as \"Spanish\" (avoid provider's use for VOS shows)":[null,""],"Sorting results by":[null,""],"Freeleech":[null,""],"only download <b>\"FreeLeech\"</b> torrents.":[null,""],"Category":[null,"Kategória"],"select torrent with Italian subtitle":[null,""],"Configure Custom<br>Newznab Providers":[null,""],"Add and setup or remove custom Newznab providers.":[null,""],"Select provider":[null,""],"-- add new provider --":[null,""],"Provider name":[null,""],"Site URL":[null,"Weblap URL"],"Newznab search categories":[null,""],"select your Newznab categories on the left, and click the \"update categories\" button to use them for searching.) <b>don't forget to to save the form!":[null,""],"Update Categories":[null,"Kategóriák Frissítése"],"Add":[null,"Hozzáad"],"Delete":[null,"Töröl"],"Add and setup or remove custom RSS providers.":[null,""],"RSS URL":[null,"RSS URL"],"Search element":[null,""],"eg: title":[null,"pl: cím"],"Episode Search":[null,"Epizód keresés"],"NZB Search":[null,"NZB keresés"],"Torrent Search":[null,"Torrent keresés"],"How to manage searching with":[null,""],"Randomize Providers":[null,""],"randomize the provider search order instead of going in order of placement":[null,""],"Download propers":[null,""],"replace original download with \"Proper\" or \"Repack\" if nuked":[null,""],"Check propers every":[null,""],"24 hours":[null,"24 óra"],"4 hours":[null,"4 óra"],"90 mins":[null,"90 perc"],"45 mins":[null,"45 perc"],"15 mins":[null,"15 perc"],"Backlog search day(s)":[null,""],"number of day(s) that the \"Forced Backlog Search\" will cover (e.g. 7 Days)":[null,""],"Backlog search frequency":[null,""],"time in minutes between searches (min.":[null,""],"Daily search frequency":[null,"Napi keresés gyakorisága"],"Usenet retention":[null,"Usenet késleltetés"],"age limit in days for usenet articles to be used (e.g. 500)":[null,""],"Ignore words":[null,"Szavak figyelmen kívül hagyása"],"results with one or more word from this list will be ignored<br>separate words with a comma, e.g. \"word1,word2,word3\"":[null,""],"Require words":[null,"Szavak figyelembe vétele"],"results with no word from this list will be ignored<br>separate words with a comma, e.g. \"word1,word2,word3\"":[null,""],"Trackers list":[null,""],"trackers that will be added to magnets without trackers<br>separate trackers with a comma, e.g. \"tracker1,tracker2,tracker3\"":[null,""],"Ignore language names in subbed results":[null,""],"ignore subbed releases based on language names <br>\n Example: \"dk\" will ignore words: dksub, dksubs, dksubbed, dksubed <br>\n separate languages with a comma, e.g. \"lang1,lang2,lang3":[null,""],"Allow high priority":[null,""],"set downloads of recently aired episodes to high priority":[null,""],"Use Failed Downloads":[null,""],"use Failed Download Handling?":[null,""],"will only work with snatched/downloaded episodes after enabling this":[null,""],"Delete Failed":[null,"Törlés sikertelen"],"delete files left over from a failed download?":[null,""],"this only works if Use Failed Downloads is enabled.":[null,""],"How to handle NZB search results.":[null,""],"Search NZBs":[null,"Keresés NZBs"],"enable NZB search providers":[null,""],"Send .nzb files to":[null,""],"SABnzbd server URL":[null,""],"URL to your SABnzbd server (e.g. http://localhost:8080/)":[null,""],"SABnzbd username":[null,"SABnzbd felhasználónév"],"(blank for none)":[null,"(üresen hagy)"],"SABnzbd password":[null,"SABnzbd jelszó"],"SABnzbd API key":[null,"SABnzbd API kulcs"],"locate at... SABnzbd Config -> General -> API Key":[null,""],"Use SABnzbd category":[null,"SABnzbd kategória használata"],"add downloads to this category (e.g. TV)":[null,""],"Use SABnzbd category (backlog episodes)":[null,""],"add downloads of old episodes to this category (e.g. TV)":[null,""],"Use SABnzbd category for anime":[null,""],"add anime downloads to this category (e.g. anime)":[null,""],"Use SABnzbd category for anime (backlog episodes)":[null,""],"add anime downloads of old episodes to this category (e.g. anime)":[null,""],"Use forced priority":[null,""],"enable to change priority from HIGH to FORCED":[null,""],"Black hole folder location":[null,""],"<b>.nzb</b> files are stored at this location for external software to find and use":[null,""],"Connect using HTTPS":[null,""],"enable Secure control in NZBGet and set the correct Secure Port here":[null,""],"NZBget host:port":[null,"NZBget hoszt: port"],"(e.g. localhost:6789)":[null,"(pl. localhost:6789)"],"NZBget RPC host name and port number (not NZBgetweb!)":[null,""],"NZBget username":[null,"NZBget felhasználónév"],"locate in nzbget.conf (default:nzbget)":[null,""],"NZBget password":[null,"NZBget jelszó"],"locate in nzbget.conf (default:tegbzn6789)":[null,""],"Use NZBget category":[null,""],"send downloads marked this category (e.g. TV)":[null,""],"Use NZBget category (backlog episodes)":[null,""],"send downloads of old episodes marked this category (e.g. TV)":[null,""],"Use NZBget category for anime":[null,""],"send anime downloads marked this category (e.g. anime)":[null,""],"Use NZBget category for anime (backlog episodes)":[null,""],"send anime downloads of old episodes marked this category (e.g. anime)":[null,""],"NZBget priority":[null,""],"Very low":[null,"Nagyon alacsony"],"Low":[null,"Alacsony"],"Very high":[null,"Nagyon magas"],"Force":[null,"Eröltetett"],"priority for daily snatches (no backlog)":[null,""],"Torrent host:port":[null,"Torrent hoszt:port"],"URL to your Synology DSM (e.g. http://localhost:5000/)":[null,""],"Client username":[null,"Ügyfél felhasználónév"],"Client password":[null,"Ügyfél jelszó"],"Downloaded files location":[null,""],"where Synology Download Station will save downloaded files (blank for client default)":[null,""],"the destination has to be a shared folder for Synology DS":[null,""],"Click below to test":[null,""],"How to handle Torrent search results.":[null,""],"Search torrents":[null,""],"enable torrent search providers":[null,""],"Send .torrent files to":[null,""],"<b>.torrent</b> files are stored at this location for external software to find and use":[null,""],"URL to your torrent client (e.g. http://localhost:8000/)":[null,""],"Torrent RPC URL":[null,""],"the path without leading and trailing slashes (e.g. transmission)":[null,""],"Http Authentication":[null,"Http Hitelesítés"],"Verify certificate":[null,"Tanúsítvány ellenőrzése"],"disable if you get \"Deluge: Authentication Error\" in your log":[null,""],"verify SSL certificates for HTTPS requests":[null,""],"Add label to torrent":[null,"Címke hozzáadása a torrenthez"],"(blank spaces are not allowed)":[null,""],"label plugin must be enabled in Deluge clients":[null,""],"for QBitTorrent 3.3.1 and up":[null,""],"Add label to torrent for anime":[null,""],"for QBitTorrent 3.3.1 and up ":[null,""],"where <span id=\"torrent_client\">the torrent client</span> will save downloaded files (blank for client default)":[null,""],"the destination has to be a shared folder for Synology DS</span>":[null,""],"Minimum seeding time":[null,""],"time in hours":[null,""],"(default:'0' passes blank to client and '-1' passes nothing)":[null,""],"Start torrent paused":[null,""],"add .torrent to client but do <b style=\"font-weight:900\">not</b> start downloading":[null,""],"Allow high bandwidth":[null,""],"use high bandwidth allocation if priority is high":[null,""],"Test Connection":[null,"Kapcsolat tesztelése"],"Windows Shares":[null,""],"Defines your existing windows shares so that we can add them to the browse dialog":[null,""],"Share #{number}":[null,""],"Share label":[null,""],"Hostname or IP":[null,""],"Share path":[null,""],"Subtitles Search":[null,"Feliratok keresése"],"Subtitles Plugin":[null,""],"Plugin Settings":[null,""],"Settings that dictate how SickRage handles subtitles search results.":[null,""],"Search Subtitles":[null,"Feliratok Keresés"],"Subtitle Languages":[null,""],"Subtitle Directory":[null,"Feliratok Könyvtár"],"the directory where SickRage should store your <i>Subtitles</i> files.":[null,""],"leave empty if you want store subtitle in episode path.":[null,""],"Subtitle Find Frequency":[null,""],"time in hours between scans (default: 1)":[null,""],"Include Specials":[null,""],"include the show's specials when searching for subtitles?":[null,""],"Perfect matches":[null,"Tökéletes egyezés"],"only download subtitles that match: release group, video codec, audio codec and resolution":[null,""],"if disabled you may get out of sync subtitles":[null,""],"Subtitles History":[null,""],"log downloaded Subtitle on History page?":[null,""],"Subtitles Multi-Language":[null,""],"append language codes to subtitle filenames?":[null,""],"this option is required if you use multiple subtitle languages":[null,""],"Delete unwanted subtitles":[null,""],"enable to delete unwanted subtitle languages bundled with release":[null,""],"Embedded Subtitles":[null,""],"ignore subtitles embedded inside video file?":[null,""],"this will ignore <u>all</u> embedded subtitles for every video file!":[null,""],"Hearing Impaired Subtitles":[null,""],"download hearing impaired style subtitles?":[null,""],"See":[null,""],"for a script arguments description.":[null,""],"Additional scripts separated by <b>|</b>.":[null,""],"Scripts are called after each episode has searched and downloaded subtitles.":[null,""],"For any scripted languages, include the interpreter executable before the script. See the following example":[null,""],"For Windows:":[null,""],"For Linux / OS X:":[null,""],"Subtitle Providers":[null,""],"Check off and drag the plugins into the order you want them to be used.":[null,""],"At least one plugin is required.":[null,""]," Web-scraping plugin":[null,""],"Provider Settings":[null,""],"Set user and password for each provider":[null,""],"User Name":[null,"Felhasználónév"],"Change Show":[null,""],"Prev Show":[null,"Előző Műsor"],"Next Show":[null,"Következő Műsor"],"Jump to Season":[null,"Ugrás az Évadra"],"Specials":[null,""],"Poster for":[null,""],"Stars":[null,""],"minutes":[null,"perces"],"View other popular {genre} shows on trakt.tv.":[null,""],"View other popular {imdbgenre} shows on IMDB.":[null,""],"Allowed":[null,"Engedélyezett"],"Preferred":[null,"Preferált"],"Originally Airs":[null,"Eredetileg sugárzott"],"Show Status":[null,"Műsor Állapota"],"Default EP Status":[null,"Alapértelmezett EP állapota"],"Location":[null,"Hely"],"Missing":[null,"Hiányzó"],"Scene Name":[null,""],"Required Words":[null,""],"Ignored Words":[null,""],"Size":[null,"Méret"],"Info Language":[null,"Információ nyelve"],"Subtitles SR Metadata":[null,""],"Season Folders":[null,"Évad Mappák"],"Paused":[null,"Szünetel"],"Air-by-Date":[null,""],"Sports":[null,"Sport"],"DVD Order":[null,""],"Scene Numbering":[null,"Jelenet számozás"],"Select Filtered Episodes":[null,""],"Clear All":[null,""],"Change selected episodes to":[null,""],"Select Columns":[null,""],"Hide Episodes":[null,""],"Show Episodes":[null,""],"NFO":[null,"NFO"],"TBN":[null,"TBN"],"Episode":[null,"Epizód"],"Absolute":[null,"Abszolút"],"Scene":[null,""],"Scene Absolute":[null,""],"File Name":[null,"Fájlnév"],"Airdate":[null,""],"Download":[null,"Letöltés"],"Change the value here if scene numbering differs from the indexer episode numbering":[null,""],"Change the value here if scene absolute numbering differs from the indexer absolute numbering":[null,""],"Manual Search":[null,"Kézi Keresés"],"Do you want to mark this episode as failed?":[null,""],"The episode release name will be added to the failed history, preventing it to be downloaded again.":[null,""],"Do you want to include the current episode quality in the search?":[null,""],"Choosing No will ignore any releases with the same episode quality as the one currently downloaded/snatched.":[null,""],"Download subtitle":[null,""],"Do you want to re-download the subtitle for this language?":[null,""],"It will overwrite your current subtitle":[null,""],"Format":[null,""],"Advanced":[null,""],"Main Settings":[null,"Fő beállítások"],"Show Location":[null,"Hely mutatása"],"Preferred Quality":[null,"Preferált minőség"],"Default Episode Status":[null,"Alapértelmezett epizód állapota"],"this will set the status for future episodes.":[null,""],"this only applies to episode filenames and the contents of metadata files.":[null,""],"search for subtitles":[null,""],"Use SR Metdata":[null,""],"use SickRage metadata when searching for subtitle, this will override the autodiscovered metadata":[null,""],"pause this show (SickRage will not download episodes)":[null,""],"Format Settings":[null,""],"Air by date":[null,""],"check if the show is released as Show.03.02.2010 rather than Show.S02E03.":[null,""],"in case of an air date conflict between regular and special episodes, the later will be ignored.":[null,""],"check if the show is Anime and episodes are released as Show.265 rather than Show.S02E03":[null,""],"check if the show is a sporting or MMA event released as Show.03.02.2010 rather than Show.S02E03":[null,""],"Season folders":[null,"Évad mappák"],"group episodes by season folder (uncheck to store in a single folder)":[null,""],"search by scene numbering (uncheck to search by indexer numbering)":[null,""],"use the DVD order instead of the air order":[null,""],"a \"Force Full Update\" is necessary, and if you have existing episodes you need to sort them manually.":[null,""],"comma-separated <i>e.g. \"word1,word2,word3</i>\"":[null,""],"search results with one or more words from this list will be ignored.":[null,""],"e.g. \"word1,word2,word3\"":[null,"pl. \"szó1, szó2, szó3\""],"search results with no words from this list will be ignored.":[null,""],"Scene Exception":[null,""],"this will affect episode search on NZB and torrent providers.":[null,""],"this list appends to the original show name.":[null,""],"WARNING logs":[null,""],"ERROR logs":[null,"HIBA naplók"],"There are no events to display.":[null,""],"Limit":[null,"Korlát"],"Layout":[null,"Elrendezés"],"HistoryLayout":[null,""],"Compact":[null,"Kompakt"],"Detailed":[null,"Részletes"],"Time":[null,"Időpont"],"Provider":[null,"Szolgáltató"],"Missing Provider":[null,""],"missing provider":[null,""],"Directory":[null,"Könyvtár"],"Show Name (tvshow.nfo)":[null,"Műsor Neve (tvshow.nfo)"],"Indexer":[null,"Indexelő"],"Enter the folder containing the episode":[null,""],"Process Method to be used":[null,""],"Copy":[null,"Másol"],"Move":[null,"Áthelyezés"],"Hard Link":[null,""],"Symbolic Link":[null,""],"Symbolic Link Reversed":[null,""],"Force already Post Processed Dir/Files":[null,""],"Mark Dir/Files as priority download":[null,""],"(Check it to replace the file even if it exists at higher quality)":[null,""],"Delete files and folders":[null,""],"(Check it to delete files and folders like auto processing)":[null,""],"Don't use processing queue":[null,""],"(If checked this will return the result of the process here, but may be slow!)":[null,""],"Mark download as failed":[null,""],"Process":[null,"Folyamat"],"Download subtitles for this show?":[null,""],"use SickRage metadata when searching for subtitle, <br />this will override the autodiscovered metadata":[null,""],"Status for previously aired episodes":[null,""],"Status for all future episodes":[null,""],"Group episodes by season folder?":[null,""],"Is this show an Anime?":[null,""],"Is this show scene numbered?":[null,""],"Save Defaults":[null,"Alapértékek mentése"],"Use current values as the defaults":[null,""],"<p>Select your preferred fansub groups from the <b>Available Groups</b> and add them to the <b>Whitelist</b>. Add groups to the <b>Blacklist</b> to ignore them.</p>\n <p>The <b>Whitelist</b> is checked <i>before</i> the <b>Blacklist</b>.</p>\n <p>Groups are shown as <b>Name</b> | <b>Rating</b> | <b>Number of subbed episodes</b>.</p>\n <p>You may also add any fansub group not listed to either list manually.</p>\n <p>When doing this please note that you can only use groups listed on anidb for this anime.\n <br>If a group is not listed on anidb but subbed this anime, please correct anidb's data.</p>":[null,""],"Whitelist":[null,""],"Available Groups":[null,""],"Add to Whitelist":[null,""],"Add to Blacklist":[null,""],"Blacklist":[null,""],"Custom Group":[null,""],"Allowed Quality:":[null,""],"Preferred Quality:":[null,"Preferált minőség:"],"Filter Show Name":[null,""],"Root":[null,""],"All":[null,"Összes"],"Clear Filter(s)":[null,""],"Poster":[null,"Poszter"],"Small Poster":[null,"Kis Poszter"],"Banner":[null,"Banner"],"Simple":[null,"Egyszerű"],"Next Episode":[null,"Következő Epizód"],"Progress":[null,""],"Direction":[null,"Irány"],"Ascending":[null,"Növekvő"],"Descending":[null,"Csökkenő"],"Poster Size":[null,"Poszter méret"],"Continuing":[null,"Folytatódik"],"Ended":[null,"Véget ért"],"Total":[null,"Összes"],"Invalid date":[null,"Érvénytelen dátum"],"No Network":[null,"Nincs hálózat"],"Next Ep":[null,"Következő Ep"],"Prev Ep":[null,"Előző Ep"],"Show":[null,"Sorozat"],"Downloads":[null,"Letöltések"],"Active":[null,"Aktív"],"loading":[null,""],"Loading...":[null,"Betöltés..."],"<p><b><u>Preferred</u></b> qualities will replace those in <b><u>allowed</u></b>, even if they are lower.</p>":[null,""],"New":[null,"Új"],"Set as Default":[null,"Beállítás alapértelmezettként"],"Remember me":[null,"Emlékezz rám"],"Edit Selected":[null,""],"Subtitle":[null,"Felirat"],"Default Ep Status":[null,"Alapértelmezett Ep állapota"],"Update":[null,"Frissítés"],"Rescan":[null,"Újraellenőrzés"],"Rename":[null,"Átnevezés"],"Search Subtitle":[null,"Felirat Keresés"],"Force Metadata Regen":[null,""],"Snatched (Allowed)":[null,"Elkapva (engedélyezett)"],"Jump to Show":[null,"Ugrás a Műsorra"],"Force Backlog":[null,""],"Manage episodes with status":[null,""],"Manage":[null,"Kezelés"],"None of your episodes have status":[null,""],"Shows containing":[null,""],"episodes":[null,"epizódok"],"Set checked shows/episodes to":[null,""],"Go":[null,""],"Select all":[null,"Mind kiválaszt"],"Clear all":[null,"Az összes törlése"],"Release":[null,""],"Backlog Search":[null,""],"Not in progress":[null,""],"In Progress":[null,"Folyamatban"],"Daily Search":[null,"Napi Keresés"],"Find Propers Search":[null,""],"Propers search disabled":[null,""],"Subtitle Search":[null,"Felirat Keresés"],"Subtitle search disabled":[null,"Felirat keresés letiltva"],"Search Queue":[null,""],"pending items":[null,""],"Daily":[null,"Napi"],"Manual":[null,"Kézi"],"Changing any settings marked with (<span class=\"separator\">*</span>) will force a refresh of the selected shows.":[null,""],"Selected Shows":[null,"Kiválasztott Műsor"],"Root Directories":[null,""],"Current":[null,"Jelenlegi"],"Keep":[null,"Megtart"],"Custom":[null,"Egyéni"],"Group episodes by season folder (set to \"No\" to store in a single folder).":[null,""],"Pause these shows (SickRage will not download episodes).":[null,""],"This will set the status for future episodes.":[null,""],"Search by scene numbering (set to \"No\" to search by indexer numbering).":[null,""],"Set if these shows are Anime and episodes are released as Show.265 rather than Show.S02E03":[null,""],"Set if these shows are sporting or MMA events released as Show.03.02.2010 rather than Show.S02E03.":[null,""],"In case of an air date conflict between regular and special episodes, the later will be ignored.":[null,""],"Set if these shows are released as Show.03.02.2010 rather than Show.S02E03.":[null,""],"Search for subtitles.":[null,""],"All of your episodes have {subsLanguage} subtitles.":[null,""],"Manage episodes without":[null,""],"Episodes without {subsLanguage} subtitles.":[null,""],"Episodes without {subtitleLanguage} (undefined) subtitles.":[null,""],"Download missed subtitles for selected episodes":[null,""],"Performing Restart":[null,""],"Waiting for SickRage to shut down":[null,""],"Waiting for SickRage to start again":[null,""],"Loading the default page":[null,""],"Error: The restart has timed out, perhaps something prevented SickRage from starting again?":[null,""],"Key":[null,"Kulcs"],"Missed":[null,"Kimaradt"],"Today":[null,"Ma"],"Soon":[null,"Hamarosan"],"Later":[null,"Később"],"Subscribe":[null,"Feliratkozás"],"Date":[null,"Dátum"],"View Paused":[null,""],"Hidden":[null,"Rejtett"],"Shown":[null,"Látható"],"Calendar":[null,"Naptár"],"List":[null,"Lista"],"Ends":[null,""],"Next Ep Name":[null,"Következő Ep neve"],"Run time":[null,""],"Indexers":[null,""],"No shows for this day":[null,""],"Airs":[null,""],"Plot":[null,""],"Show Update":[null,"Műsor frissítés"],"Version Check":[null,"Verzió Ellenőrzése"],"Proper Finder":[null,""],"Post Process":[null,""],"Subtitles Finder":[null,""],"Scheduler":[null,"Ütemező"],"Alive":[null,""],"Start Time":[null,""],"Cycle Time":[null,"Ciklusidő"],"Next Run":[null,"Következő Futtatás"],"Last Run":[null,""],"Silent":[null,""],"True":[null,"Igaz"],"N/A":[null,"N/A"],"Show id":[null,"Műsor azonosító"],"Show name":[null,"Műsor neve"],"Priority":[null,""],"Added":[null,"Hozzáadva"],"Queue type":[null,""],"LOW":[null,"ALACSONY"],"NORMAL":[null,"NORMÁL"],"HIGH":[null,"MAGAS"],"Disk Space":[null,"Lemezterület"],"Free space":[null,"Szabad hely"],"TV Download Directory":[null,""],"Media Root Directories":[null,""],"Preview of the proposed name changes":[null,""],"All Seasons":[null,"Összes Évad"],"select all":[null,""],"Rename Selected":[null,""],"Cancel Rename":[null,""],"Old Location":[null,"Régi hely"],"New Location":[null,"Új hely"],"Trakt API did not return any results, please check your config.":[null,""],"votes":[null,"szavazat"],"Remove Show":[null,"Műsor eltávolítása"],"Level":[null,""],"Filter":[null,""],"All non-absolute folder locations are relative to ":[null,""],"Manual Post-Processing":[null,"Kézi Utófeldolgozás"],"Episode Status Management":[null,""],"Update PLEX":[null,"PLEX frissítés"],"Update KODI":[null,"KODI frissítés"],"Update Emby":[null,"Emby frissítés"],"Missed Subtitle Management":[null,""],"Help & Info":[null,"Súgó & Info"],"Backup & Restore":[null,"Mentés & visszaállítás"],"Tools":[null,"Eszközök"],"Support SickRage":[null,"SickRage Támogatás"],"View Errors":[null,"Hibák megtekintése"],"View Warnings":[null,"Figyelmeztetések megtekintése"],"View Log":[null,"Napló megtekintése"],"Check For Updates":[null,"Frissítések keresése"],"Restart":[null,"Újraindítás"],"Shutdown":[null,"Leállítás"],"Logout":[null,"Kijelentkezés"],"Server Status":[null,"Szerver állapot"],"View overview of snatched episodes":[null,""],"Episodes Downloaded":[null,"Letöltött epizód"],"Memory used":[null,"Használt memória"],"Load time":[null,"Betöltési idő"],"Branch":[null,"Ágazat"],"Now":[null,"Most"]}}}} \ No newline at end of file +{"messages":{"domain":"messages","locale_data":{"messages":{"100":[null,"100"],"250":[null,"250"],"500":[null,"500"],"":{"domain":"messages","plural_forms":"nplurals=2; plural=(n != 1);","lang":"hu_HU"},"Drama":[null,"Dráma"],"Mystery":[null,"Rejtély"],"Science-Fiction":[null,"Science-Fiction"],"Crime":[null,"Bűnögyi"],"Action":[null,"Művelet"],"Comedy":[null,"Vígjáték"],"Thriller":[null,"Thriller"],"Animation":[null,"Animáció"],"Family":[null,"Családi"],"Fantasy":[null,"Fantasy"],"Adventure":[null,"Kaland"],"Horror":[null,"Horror"],"Film-Noir":[null,"Film-Noir"],"Sci-Fi":[null,"Sci-Fi"],"Romance":[null,"Romantikus"],"Sport":[null,"Sport"],"War":[null,"Háborús"],"Biography":[null,"Életrajzi"],"History":[null,"Előzmények"],"Music":[null,"Zene"],"Western":[null,"Western"],"News":[null,"Hírek"],"Sitcom":[null,"Szitkom"],"Reality-TV":[null,"Reality-TV"],"Documentary":[null,"Dokumentumfilm"],"Game-Show":[null,"Vetélkedő"],"Musical":[null,"Zenei"],"Talk-Show":[null,"Talk-Show"],"Started Download":[null,"Letöltés elkezdődött"],"Download Finished":[null,"Letöltés befejeződött"],"Subtitle Download Finished":[null,"Felirat letöltése befejeződött"],"SickRage Updated":[null,"SickRage frissítette magát"],"SickRage Updated To Commit#: ":[null,"Sickrage frissítette magát a Commit#: "],"SickRage new login":[null,"Sickrage új bejelentkezés"],"New login from IP: {0}. http://geomaplookup.net/?ip={0}":[null,"Új bejelentkezés a következő IP számról: {0}. http://geomaplookup.net/?IP={0}"],"Repeat":[null,"Ismétlés"],"Repeat (Separated)":[null,"Ismétlés (elkülönített)"],"Extend":[null,"Kiterjeszt"],"Extend (Limited)":[null,"Kiterjeszt (korlátozott)"],"Extend (Limited, E-prefixed)":[null,"Kiterjeszt (korlátozott, E-előtaggal)"],"Downloaded":[null,"Letöltve"],"Snatched":[null,"Elkapva"],"Snatched (Proper)":[null,"Elkapva (Proper verzió)"],"Failed":[null,"Sikertelen"],"Snatched (Best)":[null,"Elkapva (legjobb változat)"],"Archived":[null,"Archivált"],"Unknown":[null,"Ismeretlen"],"Unaired":[null,"Vetítés előtt"],"Skipped":[null,"Kihagyva"],"Wanted":[null,"Kívánt"],"Ignored":[null,"Mellőzött"],"Subtitled":[null,"Felirat hozzátéve"],"For best results please set the Download Station alias as":[null,"A legjobb eredmény érdekében állítsa be a Download Station aliasnevét a következőre:"],"You can check this setting in the Synology DSM":[null,"Ellenőrizheted ezt a beállítást a Synology DSM-ben"],"Control Panel":[null,"Vezérlőpult"],"Application Portal":[null,"Applikáció-portál"],"Make sure you allow DSM to be embedded with iFrames too in":[null,"Ne felejtsd el engedélyezni a DSM-et, hogy iFrame-be is be lehessen ágyazni"],"DSM Settings":[null,"DSM beállítások"],"Security":[null,"Biztonság"],"<No Filter>":[null,"< Nincs Szűrő >"],"Daily Searcher":[null,"Napi kereső"],"Backlog":[null,""],"Show Updater":[null,""],"Check Version":[null,"Verzió ellenőrzése"],"Show Queue":[null,""],"Search Queue (All)":[null,""],"Search Queue (Daily Searcher)":[null," Várólista Keresés (Napi Kereső)"],"Search Queue (Backlog)":[null,""],"Search Queue (Manual)":[null,""],"Search Queue (Retry/Failed)":[null,""],"Search Queue (RSS)":[null,""],"Find Propers":[null,"Megfelelő verzió keresése"],"Postprocessor":[null,""],"Find Subtitles":[null,"Feliratok keresése"],"Trakt Checker":[null,"Trakt ellenőrző"],"Event":[null,"Esemény"],"Error":[null,"Hiba"],"Tornado":[null,"Tornado"],"Thread":[null,"Szál"],"Main":[null,"Elsődleges"],"Loading":[null,""],"New update found for SickRage, starting auto-updater":[null,"Új frissítés érhető el, auto-frissítő indítása"],"Update was successful":[null,"A frissítés sikeres volt"],"Update failed!":[null,"Frissítés sikertelen!"],"Backup":[null,"Biztonsági mentés"],"Config backup in progress...":[null,"Beállítások mentése folyamatban..."],"Config backup successful, updating...":[null,"Biztonsági mentés sikerült, frissítés..."],"Config backup failed, aborting update":[null,"Biztonsági mentés sikertelen, frissítés megszakítva"],"No update needed":[null,"Nem szükséges frissíteni"],"Mako Error":[null,"Makó-hiba"],"Oops":[null,"Oops"],"Wrong API key used":[null,"Rossz API kulcs"],"Login":[null,"Bejelentkezés"],"API Key not generated":[null,"Nem sikerült API-kulcsot generálni"],"API Builder":[null,"API-Builder"],"Schedule":[null,"Ütemezés"],"Test 1":[null,"Teszt 1"],"This is test number 1":[null,"Ez az 1-es tesztszám"],"Test 2":[null,"Teszt 2"],"This is test number 2":[null,"Ez a 2-es tesztszám"],"You're using the {branch} branch. Please use 'master' unless specifically asked":[null,""],"Invalid show parameters":[null,"Érvénytelen Tv-műsor paraméterek"],"Invalid parameters":[null,""],"Episode couldn't be retrieved":[null,"Az epizódot nem sikerült megszerezni"],"Home":[null,"Kezdőnézet"],"Show List":[null,"Műsor lista"],"Error: Unsupported Request. Send jsonp request with 'callback' variable in the query string.":[null,"Hiba: Nem támogatott kérés. Jsonp kérés küldése a \"callback\" változóval a karakterláncban."],"Success. Connected and authenticated":[null,"Sikeres kapcsolódás és hitelesítés"],"Authentication failed. SABnzbd expects":[null,"A hitelesítés sikertelen. SABnzbd szükséges"],"as authentication method":[null,"hitelesítési módszerként"],"Unable to connect to host":[null,"Nem tud csatlakozni a Host-hoz"],"SMS sent successfully":[null,"SMS sikeresen elküldve"],"Problem sending SMS: {message}":[null,"Probléma merült fel az SMS küldése közben: {message}"],"Telegram notification succeeded. Check your Telegram clients to make sure it worked":[null,"Telegram értesítés elküldve. Lépj be a Telegram kliensbe, hogy ellenőrizd, minden jól működött-e"],"Error sending Telegram notification: {message}":[null,"Hiba a Telegram értesítés elküldése közben: {message}"],"join notification succeeded. Check your join clients to make sure it worked":[null,"join értesítés elküldve. Lépj be a join kliensbe, hogy ellenőrizd, minden jól működött-e"],"Error sending join notification: {message}":[null,"Hiba a join értesítés elküldése közben: {message}"]," with password":[null," jelszóval"],"Registered and Tested growl successfully {growl_host}":[null,"Growl sikeresen regisztrálva és tesztelve {growl_host}"],"Registration and Testing of growl failed {growl_host}":[null,"Growl regisztrálása és tesztelése sikertelen {growl_host}"],"Test prowl notice sent successfully":[null,"Prowl teszértesítés elküldve"],"Test prowl notice failed":[null,"Prowl tesztértesítés elküldése sikertelen"],"Boxcar2 notification succeeded. Check your Boxcar2 clients to make sure it worked":[null,"Boxcar2 értesítés elküldve. Lépj be a Boxcar2 kliensbe, hogy ellenőrizd, minden jól működött-e"],"Error sending Boxcar2 notification":[null,"Hiba a Boxcar2 értesítés elküldése közben"],"Pushover notification succeeded. Check your Pushover clients to make sure it worked":[null,"Pushover értesítés elküldve. Lépj be a Pushover kliensbe, hogy ellenőrizd, minden jól működött-e"],"Error sending Pushover notification":[null,"Hiba a Pushover értesítés elküldése közben"],"Key verification successful":[null,"A kulcs igazolása sikerrel járt"],"Unable to verify key":[null,"Nem sikerült a kulcs igazolása"],"Tweet successful, check your twitter to make sure it worked":[null,"Tweet elküldve, ellenőrizd a Twittered, hogy minden jól működött-e"],"Error sending tweet":[null,"Hiba a tweet küldése közben"],"Please enter a valid account sid":[null,""],"Please enter a valid auth token":[null,""],"Please enter a valid phone sid":[null,""],"Please format the phone number as \"+1-###-###-####\"":[null,""],"Authorization successful and number ownership verified":[null,""],"Error sending sms":[null,""],"Slack message successful":[null,"Slack üzenet sikeresen elküldve"],"Slack message failed":[null,"Slack üzenet küldése sikertelen"],"Discord message successful":[null,""],"Discord message failed":[null,""],"Test KODI notice sent successfully to {kodi_host}":[null,"KODI tesztértesítés sikeresen elküldve a(z) {kodi_host} helyre"],"Test KODI notice failed to {kodi_host}":[null,"KODI tesztértesítés {kodi_host} helyre küldése sikertelen"],"Successful test notice sent to Plex Home Theater ... {plex_clients}":[null,"Tesztértesítés elküldve a Plex Home Theater számára ... {plex_clients}"],"Test failed for Plex Home Theater ... {plex_clients}":[null,"A teszt elküldése a Plex Home Theater számára sikertelen ... {plex_clients}"],"Tested Plex Home Theater(s)":[null,"Tesztelt Plex Home Theater kliens(ek)"],"Successful test of Plex Media Server(s) ... {plex_servers}":[null,"Tesztértesítés elküldve a Plex Media Server(ek) számára ... {plex_servers}"],"Test failed, No Plex Media Server host specified":[null,"A teszt sikertelen, nincs megadva Plex Media Server hoszt"],"Test failed for Plex Media Server(s) ... {plex_servers}":[null,"A teszt elküldése a Plex Media Server(ek) számára sikertelen ... {plex_servers}"],"Tested Plex Media Server host(s)":[null,"Tesztelt Plex Media Server hoszt(ok)"],"Tried sending desktop notification via libnotify":[null,"Asztali értesítés küldése libnotify által"],"Test notice sent successfully to {emby_host}":[null,"Tesztértesítés sikeresen elküldve ide: {emby_host}"],"Test notice failed to {emby_host}":[null,"Tesztértesítés {emby_host} helyre küldése sikertelen"],"Successfully started the scan update":[null,"Frissítés-ellenőrzés sikeresen elindítva"],"Test failed to start the scan update":[null,"Frissítés-ellenőrzés elindítása sikertelen"],"Test notice sent successfully to {nmj2_host}":[null,"Tesztértesítés sikeresen elküldve ide: {nmj2_host}"],"Test notice failed to {nmj2_host}":[null,"Tesztértesítés {nmj2_host} helyre küldése sikertelen"],"Trakt Authorized":[null,"Trakt engedélyezve"],"Trakt Not Authorized!":[null,"Trakt nincs engedélyezve!"],"Test email sent successfully! Check inbox.":[null,"Teszt e-mail sikeresen elküldve. Ellenőrizd a bejövő levelidet."],"ERROR: {last_error}":[null,"HIBA: {last_error}"],"Test NMA notice sent successfully":[null,"NMA tesztértesítés elküldve"],"Test NMA notice failed":[null,"NMA tesztértesítés elküldése sikertelen"],"Pushalot notification succeeded. Check your Pushalot clients to make sure it worked":[null,"Pushalot értesítés elküldve. Lépj be a Pushalot kliensbe, hogy ellenőrizd, minden jól működött-e"],"Error sending Pushalot notification":[null,"Hiba a Pushalot értesítés elküldése közben"],"Pushbullet notification succeeded. Check your device to make sure it worked":[null,"Pushbullet értesítés elküldve. Ellenőrizd a készüléked, hogy minden jól működött-e"],"Error sending Pushbullet notification":[null,"Hiba a Pushbullet értesítés elküldése közben"],"Status":[null,"Állapot"],"Restarting SickRage":[null,"SickRage újraindítás"],"Update Failed":[null,"Frissítés sikertelen"],"Update wasn't successful, not restarting. Check your log for more information.":[null,"A frissítés nem sikerült, így nincs újraindítás. Tekintsd meg a naplófájlt a részletekért."],"Checking out branch":[null,"Ágazat ellenőrzése"],"Already on branch":[null,"Legfrissebb ágazat telepítve"],"Invalid show ID: {show}":[null,"Érvénytelen műsor azonosító: {show}"],"Show not in show list":[null,"A műsor nincs a listán"],"Edit":[null,"Szerkesztés"],"This show is in the process of being downloaded - the info below is incomplete.":[null,"Ez a sorozat letöltés alatt van - a lenti információ nem teljes."],"The information on this page is in the process of being updated.":[null,"Az oldalon található információk frissítés alatt vannak."],"The episodes below are currently being refreshed from disk":[null,"A lenti epizódok frissítés alatt vannak a lemezről"],"Currently downloading subtitles for this show":[null,"Ehhez a sorozathoz feliratot töltünk le"],"This show is queued to be refreshed.":[null,"A sorozat frissítése ütemezve."],"This show is queued and awaiting an update.":[null,""],"This show is queued and awaiting subtitles download.":[null,""],"Resume":[null,"Visszaállítás"],"Pause":[null,"Szünet"],"Remove":[null,"Eltávolít"],"Re-scan files":[null,"Fájlok újraolvasása"],"Force Full Update":[null,"Teljes frissítés kényszerítése"],"Update show in KODI":[null,"Sorozat frissítése a KODI-ban."],"Update show in Emby":[null,"Sorozat frissítése az Emby-ben."],"Hide specials":[null,"Extrák elrejtése"],"Show specials":[null,"Extrák mutatása"],"Preview Rename":[null,""],"Download Subtitles":[null,"Felirat letöltése"],"No scene exceptions":[null,""],"Invalid show ID":[null,"Érvénytelen műsor azonosító"],"Unable to find the specified show":[null,"Nem sikerült megtalálni a műsort"],"Unable to retreive Fansub Groups from AniDB.":[null,""],"Edit Show":[null,"Műsor szerkesztése"],"Unable to refresh this show: {error}":[null,""],"New location <tt>{location}</tt> does not exist":[null,""],"Unable to update show: {error}":[null,"Nem lehet frissíteni a sorozatot: {error}"],"Unable to force an update on scene exceptions of the show.":[null,""],"Unable to force an update on scene numbering of the show.":[null,""],"{num_errors:d} error{plural} while saving changes:":[null,""],"{show_name} has been {paused_resumed}":[null,""],"resumed":[null,"folytatódik"],"paused":[null,"szünetel"],"{show_name} has been {deleted_trashed} {was_deleted}":[null,"{show_name} volt {deleted_trashed} {was_deleted}"],"deleted":[null,"törölve"],"trashed":[null,"kidobott"],"(media untouched)":[null,"(média érintetlen)"],"(with all related media)":[null,""],"Unable to refresh this show.":[null,""],"Unable to update this show.":[null,"Nem sikerült frissíteni ezen a sorozatot."],"Library update command sent to KODI host(s)): {kodi_hosts}":[null,""],"Unable to contact one or more KODI host(s)): {kodi_hosts}":[null,""],"Library update command sent to Plex Media Server host: {plex_server}":[null,""],"Unable to contact Plex Media Server host: {plex_server}":[null,""],"Library update command sent to Emby host: {emby_host}":[null,""],"Unable to contact Emby host: {emby_host}":[null,""],"You must specify a show and at least one episode":[null,""],"Invalid status":[null,"Érvénytelen állapot"],"Backlog was automatically started for the following seasons of <b>{show_name}</b>":[null,""],"Season":[null,"Évad"],"Backlog started":[null,""],"Retrying Search was automatically started for the following season of <b>{show_name}</b>":[null,""],"Retry Search started":[null,""],"You must specify a show":[null,""],"Can't rename episodes when the show dir is missing.":[null,""],"New subtitles downloaded: {new_subtitle_languages}":[null,""],"No subtitles downloaded":[null,""],"IRC":[null,"IRC"],"Could not load news from the repo. [Click here for news.md])({news_url})":[null,""],"The was a problem connecting to github, please refresh and try again":[null,""],"Could not load changes from the repo. [Click here for CHANGES.md]({changes_url})":[null,"Nem tölthetők be a változások a repóból. [Kattints ide a CHANGES.md fájl megtekintéséhez]({changes_url})"],"Changelog":[null,"Újdonságok"],"Post Processing":[null,"Utófeldolgozás"],"Add Shows":[null,"Műsorok hozzáadása"],"No folders selected.":[null,"Nincsenek kiválasztott mappák."],"New Show":[null,"Új műsor"],"Trending Shows":[null,"Felkapott műsorok"],"Popular Shows":[null,"Népszerű műsorok"],"Most Anticipated Shows":[null,"Leginkább várt műsorok"],"Most Collected Shows":[null,""],"Most Watched Shows":[null,""],"Most Played Shows":[null,""],"Recommended Shows":[null,""],"New Shows":[null,"Új műsorok"],"Season Premieres":[null,"Évad-premierek"],"Existing Show":[null,"Meglévő műsor"],"No root directories setup, please go back and add one.":[null,"Nincs megadva gyökérmappa, kérlek lépj vissza és adj meg egyet."],"Show added":[null,"Műsor hozzáadva"],"Adding the specified show {show_name}":[null,"{show_name} hozzáadása"],"Missing params, no Indexer ID or folder: {show_to_add} and {root_dir}/{show_path}":[null,"Hiányzó paraméterek, nincs Indexer ID vagy mappa: {show_to_add} és {root_dir}/{show_path}"],"Unknown error. Unable to add show due to problem with show selection.":[null,"Ismeretlen hiba történt. Sikertelen a műsor hozzáadása egy műsorválasztási hiba miatt."],"Unable to add show":[null,"Nem sikerült a műsort hozzáadni"],"Folder {show_dir} exists already":[null,"A(z) {show_dir} mappa már létezik"],"Unable to create the folder {show_dir}, can't add the show":[null,"Nem sikerült létrehozni a(z) {show_dir} mappát, ezért a műsor hozzáadása sem lehetséges"],"Adding the specified show into {show_dir}":[null,"Egy megadott műsor hozzáadása a(z) {show_dir} mappába"],"Shows Added":[null,"Műsorok hozzáadva"],"Automatically added {num_shows} from their existing metadata files":[null,"Automatikusan hozzáadja a {num_shows} a meglévő metaadat-fájlokból"],"Mass Update":[null,"Tömeges frissítés"],"Episode Overview":[null,"Epizód áttekintés"],"Missing Subtitles":[null,"Hiányzó feliratok"],"Backlog Overview":[null,"Elmaradások áttekintése"],"Mass Edit":[null,"Tömeges szerkesztés"],"Unable to update show: {excption_format}":[null,"A műsor frissítése sikertelen: {excption_format}"],"Unable to refresh show {show_name}: {excption_format}":[null,"A(z) {show_name} frissítése sikertelen: {excption_format}"],"Errors encountered":[null,"Hiba történt"],"Updates":[null,"Frissítések"],"Refreshes":[null,"Frissít"],"Renames":[null,"Átnevezése"],"Subtitles":[null,"Feliratok"],"The following actions were queued":[null,"A következő műveletek lettek sorba állítva"],"Failed Downloads":[null,"Sikertelen letöltések"],"Manage Searches":[null,"Keresések kezelése"],"Backlog search started":[null,"Elmaradások keresése elindult"],"Daily search started":[null,"Napi keresés elindult"],"Find propers search started":[null,""],"Subtitle search started":[null,"Feliratok keresése elindult"],"Remove Selected":[null,""],"Clear History":[null,"Előzmények törlése"],"Trim History":[null,"Előzmények csökkentése"],"Selected history entries removed":[null,""],"History cleared":[null,"Előzmények törölve"],"Removed history entries older than 30 days":[null,"30 napnál régebbi bejegyzések eltávolítva"],"General":[null,"Általános"],"Backup/Restore":[null,"Mentés/Visszaállítás"],"Search Settings":[null,"Keresési beállítások"],"Search Providers":[null,"Keresőmotorok"],"Subtitles Settings":[null,"Feliratok Beállításai"],"Notifications":[null,"Értesítések"],"Anime":[null,"Anime"],"SickRage Configuration":[null,"SickRage beállítás"],"Config - Shares":[null,""],"Windows Shares Configuration":[null,""],"Saved Shares":[null,""],"Your Windows share settings have been saved":[null,""],"Config - General":[null,"Beállítások - Általános"],"General Configuration":[null,"Általános Beállítások"],"Saved Defaults":[null,""],"Your \"add show\" defaults have been set to your current selections.":[null,""],"Unable to create directory {directory}, log directory not changed.":[null,""],"Unable to create directory {directory}, https cert directory not changed.":[null,""],"Unable to create directory {directory}, https key directory not changed.":[null,""],"Error(s) Saving Configuration":[null,""],"Configuration Saved":[null,"Beállítás mentve"],"Config - Backup/Restore":[null,"Beállítások - biztonsági mentés és visszaállítás"],"Config - Episode Search":[null,"Beállítások - Epizód Keresés"],"Config - Post Processing":[null,"Beállítások - Utófeldolgozás"],"Unpacking Not Supported, disabling unpack setting":[null,""],"You tried saving an invalid normal naming config, not saving your naming settings":[null,""],"You tried saving an invalid anime naming config, not saving your naming settings":[null,""],"Config - Providers":[null,"Beállítás - Szolgáltatók"],"No Provider Name specified":[null,""],"No Provider Url specified":[null,""],"No Provider Api key specified":[null,""],"Config - Notifications":[null,"Beállítások - Értesítések"],"Config - Subtitles":[null,"Beállítások - Feliratok"],"Config - Anime":[null,"Beállítások - Anime"],"Clear Errors":[null,"Hibák törlése"],"Clear Warnings":[null,"Figyelmeztetések törlése"],"Submit Errors":[null,""],"Logs & Errors":[null,"Naplók & Hibák"],"Log File":[null,"Naplófájl"],"Logs":[null,"Naplók"],"This is a test notification from SickRage":[null,""],"Choose Directory":[null,""],"Select log file folder location":[null,""],"Select CSS file":[null,""],"Select backup folder to save to":[null,""],"Select backup files to restore":[null,""],"Please fill out the necessary fields above.":[null,""],"<b>Step 1:</b> Confirm Authorization":[null,""],"Check blacklist name; the value needs to be a trakt slug":[null,""],"You must provide a recipient email address!":[null,""],"You didn't supply a Pushbullet api key":[null,""],"Don't forget to save your new pushbullet settings.":[null,""],"Select TV Download Directory":[null,""],"Select Unpack Directory":[null,""],"This pattern is invalid.":[null,""],"This pattern would be invalid without the folders, using it will force \"Season Folders\" on for all shows.":[null,""],"This pattern is valid.":[null,""],"Select .nzb black hole/watch location":[null,""],"Select .torrent black hole/watch location":[null,""],"Select .torrent download location":[null,""],"Minimum seeding time is":[null,""],"URL to your uTorrent client (e.g. http://localhost:8000)":[null,""],"Stop seeding when inactive for":[null,""],"URL to your Transmission client (e.g. http://localhost:9091)":[null,""],"URL to your Deluge client (e.g. http://localhost:8112)":[null,""],"IP or Hostname of your Deluge Daemon (e.g. scgi://localhost:58846)":[null,""],"URL to your Synology DS client (e.g. http://localhost:5000)":[null,""],"URL to your rTorrent client (e.g. scgi://localhost:5000 <br> or https://localhost/rutorrent/plugins/httprpc/action.php)":[null,""],"URL to your qBittorrent client (e.g. http://localhost:8080)":[null,""],"URL to your MLDonkey (e.g. http://localhost:4080)":[null,""],"URL to your putio client (e.g. http://localhost:8080)":[null,""],"<a herf=\"https://app.put.io/oauth/apps/new\" target=\"_blank\"> Create a new OAuth app for put.io</a>":[null,""],"Put.io Parent Folder":[null,""],"Put.io OAuth Token":[null,""],"Show Episodes":[null,""],"Hide Episodes":[null,""],"Select Show Location":[null,""],"Select Unprocessed Episode Folder":[null,""],"DELETED":[null,""],"Resume updating the log on this page.":[null,""],"Pause updating the log on this page.":[null,""],"searching {searchingFor}...":[null,""],"search timed out, try again or try another indexer":[null,""],"loading folders...":[null,""],"Loading...":[null,"Betöltés..."],"You have reached this page by accident, please check the url.":[null,"Véletlenül juthatott erre az oldalra, kérem ellenőrizze az url-t."],"A mako error has occured.<br>\n If this happened during an update a simple page refresh may be the solution.<br>\n Mako errors that happen during updates may be a one time error if there were significant ui changes.":[null,"Egy mako hiba történt.<br>\n Ha ez a hiba frissítés során történt, egyszerűen csak frissítse az oldalt.<br>\n Mako hibák a frissítés során akkor fordulhatnak elő, ha jelentős ui változások történnek."],"Show/Hide Error":[null,"Hiba megjelenítése/elrejtése"],"Add New Show":[null,"Új Sorozat Hozzáadása"],"For shows that you haven't downloaded yet, this option finds a show on theTVDB.com, creates a directory for it's episodes, and adds it to SickRage.":[null,""],"Add From Trakt Lists":[null,"Hozzáadás Trakt listákból"],"For shows that you haven't downloaded yet, this option lets you choose from a show from one of the Trakt lists to add to SickRage.":[null,""],"Add From IMDB's Popular Shows":[null,""],"View IMDB's list of the most popular shows. This feature uses IMDB's MOVIEMeter algorithm to identify popular TV Series.":[null,""],"Add Existing Shows":[null,"Meglévő Sorozat Hozzáadása"],"Use this option to add shows that already have a folder created on your hard drive. SickRage will scan your existing metadata/episodes and add the show accordingly.":[null,""],"Add Existing Show":[null,"Meglévő Sorozat Hozzáadása"],"Manage Directories":[null,"Könyvtárak kezelése"],"Customize Options":[null,"Beállítások testreszabása"],"SickRage can add existing shows, using the current options, by using locally stored NFO/XML metadata to eliminate user interaction. If you would rather have SickRage prompt you to customize each show, then use the checkbox below.":[null,""],"Prompt me to set settings for each show":[null,""],"Displaying folders within these directories which aren't already added to SickRage":[null,""],"Submit":[null,"Elküld"],"Find a show on theTVDB":[null,"Sorozat keresése a theTVDB-n"],"Show retrieved from existing metadata":[null,"A műsor lekérve a meglévő metadatából"],"All Indexers":[null,"Összes indexerek"],"Search":[null,"Keresés"],"This will only affect the language of the retrieved metadata file contents and episode filenames.":[null,"Ez csak a lekért metadata fájl és az epizódok fájlainak nyelvét érinti."],"This <b>DOES NOT</b> allow SickRage to download non-english TV episodes!":[null,"Ez <b>NEM</b> hatalmazza fel a SickRage-et, hogy más nyelvű epizódokat töltsön le!"],"Pick the parent folder":[null,"Szülő mappa kiválasztása"],"Pre-chosen Destination Folder":[null,"Előre kiválasztott célmappa"],"Customize options":[null,"Beállítások testreszabása"],"Add Show":[null,"Műsor hozzáadása"],"Skip Show":[null,"Műsor átugrása"],"Sort By":[null,"Rendezés"],"Name":[null,"Név"],"Original":[null,"Eredeti"],"Votes":[null,"Szavazatok"],"Rating":[null,"Értékelés"],"Rating > Votes":[null,"Értékelés > Szavazatok"],"Sort Order":[null,"Rendezési sorrend"],"Asc":[null,"Növ"],"Desc":[null,"Csök"],"Fetching of IMDB Data failed. Are you online?":[null,"IMDB adatok beillesztése sikertelen. Online vagy?"],"Exception":[null,"Kivétel"],"Select Trakt List":[null,"Trakt lista kijelölése"],"Most Anticipated":[null,"Leginkább várt"],"Trending":[null,"Felkapott"],"Popular":[null,"Népszerű"],"Most Watched":[null,"Legnézettebb"],"Most Played":[null,"Legtöbbet játszott"],"Most Collected":[null,"Legtöbbet begyűjtott"],"Recommended":[null,"Ajánlott"],"Toggle navigation":[null,"Navigáció váltása"],"Profile":[null,"Profil"],"JSONP":[null,"JSONP"],"Back to SickRage":[null,"Visszatérés a SickRage-hez"],"Parameters":[null,"Paraméterek"],"Required":[null,"Kitöltendő"],"Description":[null,"Leírás"],"Type":[null,"Típus"],"Default value":[null,"Alapértelmezett érték"],"Allowed values":[null,"Megengedett értékek"],"Playground":[null,"Játszótér"],"Clear":[null,"Mező törlése"],"Yes":[null,"Igen"],"No":[null,"Nem"],"season":[null,"Évad"],"episode":[null,"epizód"],"Python Version":[null,"Python verzió"],"SSL Version":[null,"SSL-verzió"],"OS":[null,"Operációs Rendszer"],"Locale":[null,"Helyszín"],"User":[null,"Felhasználó"],"Program Folder":[null,"Program mappa"],"Config File":[null,"Beállítási Fájl"],"Database File":[null,"Adatbázis fájl"],"Cache Folder":[null,"Gyorsítótár-mappa"],"Log Folder":[null,"Napló mappa"],"Arguments":[null,"Argumentumok"],"Web Root":[null,"Web gyökérkönyvtára"],"Website":[null,"Honlap"],"Wiki":[null,"Wiki"],"Source":[null,"Forrás"],"IRC Chat":[null,"IRC Chat"],"AnimeDB Settings":[null,"AnimeDB beállítások"],"Look & Feel":[null,"Megjelenés és hangulat"],"AniDB is non-profit database of anime information that is freely open to the public":[null,"Az AniDB egy non-profit adatbázis, amely animékkel kapcsolatos információkat oszt meg nyilvánosan"],"Enable":[null,"Engedélyez"],"should SickRage use data from AniDB?":[null,""],"AniDB Username":[null,"AniDB felhasználónév"],"username of your AniDB account":[null,""],"AniDB Password":[null,"AniDB jelszó"],"password of your AniDB account":[null,""],"AniDB MyList":[null,"AniDB MyList"],"do you want to add the PostProcessed episodes to the MyList?":[null,""],"Look and Feel":[null,"Kinézet"],"How should the anime functions show and behave.":[null,""],"Split show lists":[null,""],"separate anime and normal shows in groups":[null,""],"Split in tabs":[null,""],"use tabs for when splitting show lists":[null,""],"Restore":[null,"Visszaállítás"],"Backup your main database file and config.":[null,""],"Select the folder you wish to save your backup file to":[null,""],"Restore your main database file and config.":[null,""],"Select the backup file you wish to restore":[null,""],"Misc":[null,"Egyéb"],"Interface":[null,"Kezelőfelület"],"Advanced Settings":[null,"Részletes Beállítások"],"Startup options. Indexer options. Log and show file locations.":[null,""],"Some options may require a manual restart to take effect.":[null,""],"Default Indexer Language":[null,"Alapértelmezett indexelő nyelv"],"for adding shows and metadata providers":[null,""],"Launch browser":[null,"Böngésző indítása"],"open the SickRage home page on startup":[null,""],"Initial page":[null,"Kezdő oldal"],"Shows":[null,"Műsorok"],"when launching SickRage interface":[null,""],"Choose hour to update shows":[null,""],"with information such as next air dates, show ended, etc. Use 15 for 3pm, 4 for 4am etc.":[null,""],"note":[null,""],"minutes are randomized each time SickRage is started":[null,""],"Send to trash for actions":[null,""],"when using show \"Remove\" and delete files":[null,""],"on scheduled deletes of the oldest log files":[null,""],"selected actions use trash (recycle bin) instead of the default permanent delete":[null,""],"Log file folder location":[null,""],"Number of Log files saved":[null,""],"number of log files saved when rotating logs (default: 5) (REQUIRES RESTART)":[null,""],"Size of Log files saved":[null,""],"maximum size in MB of the log file (default: 1MB) (REQUIRES RESTART)":[null,""],"Use initial indexer set to":[null,""],"as the default selection when adding new shows":[null,""],"Timeout show indexer at":[null,""],"seconds of inactivity when finding new shows (default:20)":[null,""],"Show root directories":[null,""],"where the files of shows are located":[null,""],"Save Changes":[null,"Változtatások mentése"],"Options for software updates.":[null,""],"Check software updates":[null,"Szoftverfrissítések ellenőrzése"],"and display notifications when updates are available. Checks are run on startup and at the frequency set below*":[null,""],"Automatically update":[null,"Automatikus frissítése"],"fetch and install software updates. Updates are run on startup and in the background at the frequency set below*":[null,""],"Check the server every*":[null,"Ellenőrizze a szervert minden *"],"hours for software updates (default:1)":[null,""],"Notify on software update":[null,"Értesítés a szoftverfrissítésről"],"send a message to all enabled notifiers when SickRage has been updated":[null,""],"User Interface":[null,"Felhasználói felület"],"Options for visual appearance.":[null,""],"Interface Language":[null,"Kezelőfelület nyelve"],"System Language":[null,"Rendszer nyelv"],"for appearance to take effect, save then refresh your browser":[null,""],"Display theme":[null,"Megjelenítési téma"],"Dark":[null,"Sötét"],"Light":[null,"Fényes"],"Use a background image":[null,""],"use a custom image as background for SickRage":[null,""],"Background Path":[null,""],"Path to the background image":[null,""],"Show fanart in the background":[null,"Fan-art megjelenítése a háttérben"],"on the show summary page":[null,"a műsor összefoglaló lapján"],"Fanart transparency":[null,"Fan-art átlátszósága"],"transparency of the fanart in the background":[null,""],"Use a custom stylesheet file":[null,""],"use a custom .css file to style SickRage (for advanced users)":[null,""],"Stylesheet File Path":[null,""],"Path to the stylesheet (.css) file":[null,""],"Show all seasons":[null,"Összes évad megtekintése"],"Sort with \"The\", \"A\", \"An\"":[null,"Rendezés \"The\", \"A\" és \"An\" előtagokkal"],"include articles (\"The\", \"A\", \"An\") when sorting show lists":[null,"előtagok (\"The\", \"A\", \"An\") engedélyezése a műsorok rendezésekor"],"Missed episodes range":[null,""],"set the range in days of the missed episodes in the Schedule page":[null,""],"Display fuzzy dates":[null,""],"move absolute dates into tooltips and display e.g. \"Last Thu\", \"On Tue\"":[null,""],"Trim zero padding":[null,""],"remove the leading number \"0\" shown on hour of day, and date of month":[null,""],"Date style":[null,"Dátum stílus"],"Use System Default":[null,""],"Time style":[null,""],"seconds are only shown on the History page":[null,""],"Timezone":[null,"Időzóna"],"Local":[null,"Helyi"],"Network":[null,"Tv csatorna"],"display dates and times in either your timezone or the shows network timezone":[null,""],"use local timezone to start searching for episodes minutes after show ends (depends on your dailysearch frequency)":[null,""],"Download url":[null,"Letöltés url"],"URL where the shows can be downloaded.":[null,""],"Web Interface":[null,"Webes felület"],"it is recommended that you enable a username and password to secure SickRage from being tampered with remotely.":[null,""],"these options require a manual restart to take effect.":[null,""],"API key":[null,"API-kulcs"],"used to give 3rd party programs limited access to SickRage":[null,""],"you can try all the features of the API":[null,""],"here":[null,"itt"],"HTTP logs":[null,"HTTP naplók"],"enable logs from the internal Tornado web server":[null,""],"HTTP username":[null,"HTTP felhasználónév"],"set blank for no login":[null,""],"HTTP password":[null,"HTTP jelszó"],"blank = no authentication":[null,"üres = nincs hitelesítés"],"HTTP port":[null,"HTTP-port"],"web port to browse and access SickRage (default:8081)":[null,""],"Notify on login":[null,""],"enable to be notified when a new login happens in webserver":[null,""],"Listen on IPv6":[null,""],"attempt binding to any available IPv6 address":[null,""],"Enable HTTPS":[null,"Engedélyezi a HTTPS"],"enable access to the web interface using a HTTPS address":[null,""],"HTTPS certificate":[null,"HTTPS tanúsítvány"],"file name or path to HTTPS certificate":[null,""],"HTTPS key":[null,"HTTPS kulcs"],"file name or path to HTTPS key":[null,""],"Reverse proxy headers":[null,""],"accept the following reverse proxy headers (advanced)...":[null,""],"(X-Forwarded-For, X-Forwarded-Host, and X-Forwarded-Proto)":[null,""],"CPU throttling":[null,"CPU korlátozás"],"Normal (default). High is lower and Low is higher CPU use":[null,""],"Anonymous redirect":[null,"Névtelen átirányítás"],"backlink protection via anonymizer service, must end in \"?\"":[null,""],"Enable debug":[null,"Hibakeresés engedélyezése"],"enable debug logs":[null,""],"Verify SSL Certs":[null,"SSL tanúsítványok ellenőrzése"],"verify SSL Certificates (Disable this for broken SSL installs (Like QNAP))":[null,""],"No Restart":[null,"Nincs Újraindítás"],"only shutdown when restarting SR":[null,""],"only select this when you have external software restarting SR automatically when it stops (like FireDaemon)":[null,""],"Encrypt passwords":[null,"Jelszavak titkosítása"],"in the <code>config.ini</code> file":[null,""],"warning":[null,""],"passwords must only contain":[null,""],"ASCII characters":[null,"ASCII karakterek"],"Unprotected calendar":[null,""],"allow subscribing to the calendar without user and password":[null,""],"some services like Google Calendar only work this way":[null,""],"Google Calendar Icons":[null,""],"show an icon next to exported calendar events in Google Calendar":[null,""],"Proxy host":[null,"Proxyállomás"],"blank to disable or proxy to use when connecting to providers":[null,""],"also use global proxy setting for indexers (tvdb, xem, anidb, etc.)":[null,""],"Skip Remove Detection":[null,""],"skip detection of removed files":[null,""],"if disabled the episode will be set to the default deleted status":[null,""],"Default deleted episode status":[null,"Alapértelmezett törölt epizód állapota"],"define the status to be set for media file that has been deleted.":[null,""],"Archived option will keep previous downloaded quality":[null,""],"example: Downloaded (1080p WEB-DL) ==> Archived (1080p WEB-DL)":[null,""],"Options for github related features.":[null,""],"Branch version":[null,"Ágazat verziója"],"error: No branches found.":[null,""],"select branch to use (restart required)":[null,""],"Authorization Type":[null,""],"Username and password":[null,""],"Personal access token":[null,""],"You must use a personal access token if you're using \"two-factor authentication\" on GitHub.":[null,""],"GitHub username":[null,"GitHub felhasználónév"],"*** (REQUIRED FOR SUBMITTING ISSUES) ***":[null,""],"GitHub password":[null,"GitHub jelszó"],"GitHub personal access token":[null,""],"Generate Token":[null,""],"Manage Tokens":[null,""],"GitHub remote for branch":[null,""],"access repo configured remotes (save then refresh browser)":[null,""],"default":[null,""],"origin":[null,""],"Git executable path":[null,""],"only needed if OS is unable to locate git from env":[null,""],"Git reset":[null,"Git visszaállítása"],"removes untracked files and performs a hard reset on git branch automatically to help resolve update issues":[null,""],"Home Theater / NAS":[null,"Házimozi / NAS"],"Devices":[null,"Eszközök"],"Social":[null,"Közösségi"],"A free and open source cross-platform media center and home entertainment system software with a 10-foot user interface designed for the living-room TV.":[null,""],"send KODI commands?":[null,""],"Always on":[null,"Mindig bekapcsolva"],"log errors when unreachable?":[null,""],"Notify on snatch":[null,""],"send a notification when a download starts?":[null,""],"Notify on download":[null,""],"send a notification when a download finishes?":[null,""],"Notify on subtitle download":[null,""],"send a notification when subtitles are downloaded?":[null,""],"Update library":[null,"Könyvtár frissítés"],"update KODI library when a download finishes?":[null,""],"Full library update":[null,"Teljes könyvtár frissítése"],"perform a full library update if update per-show fails?":[null,""],"Only update first host":[null,""],"only send library updates to the first active host?":[null,""],"KODI IP:Port":[null,"KODI IP:Port"],"host running KODI (eg. 192.168.1.100:8080)":[null,""],"(multiple host strings must be separated by commas)":[null,""],"Username":[null,"Felhasználónév"],"username for your KODI server (blank for none)":[null,""],"Password":[null,"Jelszó"],"password for your KODI server (blank for none)":[null,""],"Click below to test.":[null,""],"Experience your media on a visually stunning, easy to use interface on your Mac connected to your TV. Your media library has never looked this good!":[null,""],"For sending notifications to Plex Home Theater (PHT) clients, use the KODI notifier with port <b>3005</b>.":[null,""],"send Plex Media Server library updates?":[null,""],"Plex Media Server Auth Token":[null,""],"auth token used by Plex":[null,""],"Update Library":[null,"Könyvtár frissítés"],"update Plex Media Server library when a download finishes":[null,""],"Plex Media Server IP:Port":[null,"Plex Media Server IP:Port"],"one or more hosts running Plex Media Server<br/>(eg. 192.168.1.1:32400, 192.168.1.2:32400)":[null,""],"HTTPS":[null,"HTTPS"],"use https for plex media server requests?":[null,""],"Click below to test Plex Media Server(s)":[null,""],"Test Plex Media Server":[null,"Plex Media Server teszt"],"Plex Home Theater":[null,"Plex Home Theater"],"send Plex Home Theater notifications?":[null,""],"Plex Home Theater IP:Port":[null,"Plex Home Theater IP:Port"],"one or more hosts running Plex Home Theater<br>(eg. 192.168.1.100:3000, 192.168.1.101:3000)":[null,""],"Click below to test Plex Home Theater(s)":[null,""],"Test Plex Home Theater":[null,"Plex Home Theater teszt"],"some Plex Home Theaters <b class=\"boldest\">do not</b> support notifications e.g. Plexapp for Samsung TVs":[null,""],"Emby":[null,"Emby"],"A home media server built using other popular open source technologies.":[null,""],"send update commands to Emby?":[null,""],"Emby IP:Port":[null,"Emby IP:Port"],"host running Emby (eg. 192.168.1.100:8096)":[null,""],"Emby API Key":[null,"Emby API-kulcs"],"Networked Media Jukebox":[null,""],"The Networked Media Jukebox, or NMJ, is the official media jukebox interface made available for the Popcorn Hour 200-series.":[null,""],"send update commands to NMJ?":[null,""],"Popcorn IP address":[null,"Popcorn IP cím"],"IP address of Popcorn 200-series (eg. 192.168.1.100)":[null,""],"Get settings":[null,""],"Get Settings":[null,""],"the Popcorn Hour device must be powered on and NMJ running.":[null,""],"NMJ database":[null,"NMJ adatbázis"],"automatically filled via the 'Get Settings' button.":[null,""],"NMJ mount url":[null,""],"Networked Media Jukebox v2":[null,""],"The Networked Media Jukebox, or NMJv2, is the official media jukebox interface made available for the Popcorn Hour 300 & 400-series.":[null,""],"send update commands to NMJv2?":[null,""],"IP address of Popcorn 300/400-series (eg. 192.168.1.100)":[null,""],"Database location":[null,"Adatbázis helye"],"Database instance":[null,""],"adjust this value if the wrong database is selected.":[null,""],"Find database":[null,"Adatbázis keresése"],"Find Database":[null,"Adatbázis keresése"],"the Popcorn Hour device must be powered on.":[null,""],"NMJv2 database":[null,"NMJv2 adatbázis"],"automatically filled via the 'Find Database' buttons.":[null,""],"Synology":[null,"Synology"],"The Synology DiskStation NAS.":[null,""],"Synology Indexer is the daemon running on the Synology NAS to build its media database.":[null,""],"send Synology notifications?":[null,""],"requires SickRage to be running on your Synology NAS.":[null,""],"Synology Indexer":[null,"Synology indexelő"],"Synology Notifier is the notification system of Synology DSM":[null,""],"send notifications to the Synology Notifier?":[null,""],"pyTivo":[null,"pyTivo"],"pyTivo is both an HMO and GoBack server. This notifier will load the completed downloads to your Tivo.":[null,""],"send notifications to pyTivo?":[null,""],"requires the downloaded files to be accessible by pyTivo.":[null,""],"pyTivo IP:Port":[null,"pyTivo IP:Port"],"host running pyTivo (eg. 192.168.1.1:9032)":[null,""],"pyTivo share name":[null,""],"value used in pyTivo Web Configuration to name the share.":[null,""],"Tivo name":[null,"TiVo neve"],"(Messages & Settings > Account & System Information > System Information > DVR name)":[null,""],"Growl":[null,"Growl"],"A cross-platform unobtrusive global notification system.":[null,""],"send Growl notifications?":[null,""],"Growl IP:Port":[null,"Growl IP:Port"],"host running Growl (eg. 192.168.1.100:23053)":[null,""],"may leave blank if SickRage is on the same host.":[null,""],"otherwise Growl <b>requires</b> a password to be used.":[null,""],"Click below to register and test Growl, this is required for Growl notifications to work.":[null,""],"Register Growl":[null,""],"Prowl":[null,"Prowl"],"A Growl client for iOS.":[null,""],"send Prowl notifications?":[null,""],"Prowl Message Title":[null,""],"Global Prowl API key(s)":[null,""],"Prowl API(s) listed here, separated by commas if applicable, will<br> receive notifications for <b>all</b> shows. Your Prowl API key is available at:":[null,""],"(this field may be blank except when testing.)":[null,""],"Show notification list":[null,""],"-- Select a Show --":[null,"--Válassza ki a műsort--"],"Configure per-show notifications here by entering Prowl API key(s), separated by commas, '\n 'after selecting a show in the drop-down box. Be sure to activate the 'Save for this show' '\n 'button below after each entry.":[null,""],"Save for this show":[null,""],"Prowl priority":[null,"Prowl prioritás"],"Very Low":[null,"Nagyon alacsony"],"Moderate":[null,"Mérsékelt"],"Normal":[null,"Normál"],"High":[null,"Magas"],"Emergency":[null,"Sürgősségi"],"priority of Prowl messages from SickRage.":[null,""],"Libnotify":[null,"Libnotify"],"The standard desktop notification API for Linux/*nix systems. This notifier will only function if the pynotify module is installed (Ubuntu/Debian package <a href=\"apt:python-notify\">python-notify</a>).":[null,""],"send Libnotify notifications?":[null,""],"Pushover":[null,"Pushover"],"Pushover makes it easy to send real-time notifications to your Android and iOS devices.":[null,""],"send Pushover notifications?":[null,""],"Pushover key":[null,""],"user key of your Pushover account":[null,""],"Pushover API key":[null,""],"click here":[null,""]," to create a Pushover API key":[null,""],"Pushover devices":[null,""],"comma separated list of pushover devices you want to send notifications to":[null,""],"Pushover notification sound":[null,""],"Bike":[null,"Kerékpár"],"Bugle":[null,""],"Cash Register":[null,""],"Classical":[null,"Klasszikus"],"Cosmic":[null,"Kozmikus"],"Falling":[null,""],"Gamelan":[null,""],"Incoming":[null,"Bejövő"],"Intermission":[null,""],"Magic":[null,""],"Mechanical":[null,"Mechanikus"],"Piano Bar":[null,""],"Siren":[null,"Sziréna"],"Space Alarm":[null,""],"Tug Boat":[null,""],"Alien Alarm (long)":[null,""],"Climb (long)":[null,""],"Persistent (long)":[null,""],"Pushover Echo (long)":[null,""],"Up Down (long)":[null,"Fel le (hosszú)"],"None (silent)":[null,"Egyik sem (csendes)"],"Device specific":[null,"Készülék specifikus"],"choose notification sound to use":[null,""],"Pushover priority":[null,""],"Choose priority to use":[null,""],"Boxcar 2":[null,"Boxcar 2"],"Read your messages where and when you want them!":[null,""],"send Boxcar notifications?":[null,""],"Boxcar2 access token":[null,"Boxcar2 hozzáférési token"],"access token for your Boxcar account.":[null,""],"NMA":[null,"NMA"],"Notify My Android":[null,""],"Notify My Android is a Prowl-like Android App and API that offers an easy way to send notifications from your application directly to your Android device.":[null,""],"send NMA notifications?":[null,""],"NMA API key":[null,"NMA API kulcs"],"(multiple keys must be separated by commas, up to a maximum of 5)":[null,""],"NMA priority":[null,"NMA prioritás"],"priority of NMA messages from SickRage.":[null,""],"Pushalot":[null,"Pushalot"],"Pushalot is a platform for receiving custom push notifications to connected devices running Windows Phone or Windows 8.":[null,""],"send Pushalot notifications ?":[null,""],"Pushalot authorization token":[null,""],"authorization token of your Pushalot account.":[null,""],"Pushbullet":[null,"Pushbullet"],"Pushbullet is a platform for receiving custom push notifications to connected devices running Android/iOS and desktop browsers such as Chrome, Firefox or Opera.":[null,""],"send Pushbullet notifications?":[null,""],"Pushbullet API key":[null,""],"API key of your Pushbullet account":[null,""],"Pushbullet devices":[null,""],"Update device list":[null,"Eszközök listájának frissítése"],"Pushbullet channels":[null,""],"Free Mobile":[null,"Free Mobile"],"Free Mobile is a famous French cellular network provider.<br> It provides to their customer a free SMS API.":[null,""],"send SMS notifications?":[null,""],"send a SMS when a download starts?":[null,""],"send a SMS when a download finishes?":[null,""],"send a SMS when subtitles are downloaded?":[null,""],"Free Mobile customer ID":[null,"Free Mobile ügyfél-azonosító"],"it's your Free Mobile customer ID (8 digits)":[null,""],"Free Mobile API key":[null,""],"find your API key in your customer portal.":[null,""],"Click below to test your settings.":[null,""],"Telegram":[null,"Telegram"],"Telegram is a cloud-based instant messaging service.":[null,""],"send Telegram notifications?":[null,""],"send a message when a download starts?":[null,""],"send a message when a download finishes?":[null,""],"send a message when subtitles are downloaded?":[null,""],"User/group ID":[null,"Felhasználó/csoport azonosító"],"contact @myidbot on Telegram to get an ID":[null,""],"Bot API token":[null,""],"contact @BotFather on Telegram to set up one":[null,""],"Join":[null,"Join"],"Join all of your devices together!":[null,""],"send Join notifications?":[null,""],"Device ID":[null,"Eszköz azonosítója"],"per device specific id":[null,""]," to create a Join API key":[null,""],"Twilio":[null,""],"Twilio is a webservice API that allows you to communicate directly with a mobile number. This notifier will send a text directly to your mobile device.":[null,""],"should SickRage text your mobile device?":[null,""],"Twilio Account SID":[null,""],"account SID of your Twilio account.":[null,""],"Twilio Auth Token":[null,""],"Twilio Phone SID":[null,""],"phone SID that you would like to send the sms from":[null,""],"Your phone number":[null,""],"phone number that will receive the sms. Please use the format +1-###-###-####":[null,""],"Twitter":[null,"Twitter"],"A social networking and microblogging service, enabling its users to send and read other users' messages called tweets.":[null,""],"should SickRage post tweets on Twitter?":[null,""],"you may want to use a secondary account.":[null,""],"send direct message":[null,""],"send a notification via Direct Message, not via status update":[null,""],"send DM to":[null,""],"Twitter account to send Direct Messages to (must follow you)":[null,""],"Step One":[null,"Első lépés"],"Request Authorization":[null,""],"Click the \"Request Authorization\" button.<br> This will open a new page containing an auth key.<br> <b>note:</b> if nothing happens check your popup blocker.":[null,""],"Step Two":[null,"Második lépés"],"Enter the key Twitter gave you below, and click \"Verify Key\".":[null,""],"Trakt":[null,"Trakt"],"Trakt helps keep a record of what TV shows and movies you are watching. Based on your favorites, Trakt recommends additional shows and movies you'll enjoy!":[null,""],"send Trakt.tv notifications?":[null,""],"username of your Trakt account.":[null,""],"Trakt PIN":[null,"Trakt PIN"],"Get Trakt PIN":[null,""],"PIN code to authorize SickRage to access Trakt on your behalf.":[null,""],"API Timeout":[null,"API időtúllépés"],"seconds to wait for Trakt API to respond. (Use 0 to wait forever)":[null,""],"Default indexer":[null,"Alapértelmezett indexelő"],"Sync libraries":[null,"Könyvtárak szinkronizálása"],"sync your SickRage show library with your trakt show library.":[null,""],"Remove Episodes From Collection":[null,""],"remove an episode from your Trakt Collection if it is not in your SickRage Library.":[null,""],"Sync watchlist":[null,""],"sync your SickRage show watchlist with your trakt show watchlist (either Show and Episode).":[null,""],"episode will be added on watch list when wanted or snatched and will be removed when downloaded ":[null,""],"Watchlist add method":[null,""],"Skip All":[null,"Összes kihagyása"],"Download Pilot Only":[null,""],"Get whole show":[null,""],"method in which to download episodes for new shows.":[null,""],"Remove episode":[null,"Epizód eltávolítása"],"remove an episode from your watchlist after it is downloaded.":[null,""],"Remove series":[null,"Sorozat eltávolítása"],"remove the whole series from your watchlist after any download.":[null,""],"Remove watched show":[null,""],"remove the show from sickrage if it's ended and completely watched":[null,""],"Start paused":[null,""],"shows grabbed from your trakt watchlist start paused.":[null,""],"Trakt blackList name":[null,""],"name (slug) of list on Trakt for blacklisting show on 'Add Trending Show' & 'Add Recommended Shows' pages":[null,""],"Email":[null,"E-mail"],"Allows configuration of email notifications on a per show basis.":[null,""],"send email notifications?":[null,""],"SMTP host":[null,"SMTP hoszt"],"hostname of your SMTP email server.":[null,""],"SMTP port":[null,"SMTP port"],"port number used to connect to your SMTP host.":[null,""],"SMTP from":[null,""],"sender email address, some hosts require a real address.":[null,""],"Use TLS":[null,"TLS használata"],"check to use TLS encryption.":[null,""],"SMTP user":[null,"SMTP felhasználó"],"(optional) your SMTP server username.":[null,"(választható) SMTP kiszolgáló felhasználónév."],"SMTP password":[null,"SMTP jelszó"],"(optional) your SMTP server password.":[null,"(választható) SMTP kiszolgáló jelszó."],"Global email list":[null,"Globális e-mail lista"],"email addresses listed here, separated by commas if applicable, will<br> receive notifications for <b>all</b> shows.":[null,""],"(This field may be blank except when testing.)":[null,""],"Email Subject":[null,"E-mail Tárgya"],"use a custom subject for some privacy protection?":[null,""],"(leave blank for the default SickRage subject)":[null,""],"configure per-show notifications here by entering email address(es), separated by commas,":[null,""],"after selecting a show in the drop-down box. Be sure to activate the 'Save for this show'":[null,""],"button below after each entry.":[null,""],"Slack":[null,""],"Slack brings all your communication together in one place. It's real-time messaging, archiving and search for modern teams.":[null,""],"should SickRage post messages on Slack?":[null,""],"Slack Incoming Webhook":[null,""],"Discord":[null,""],"All-in-one voice and text chat for gamers that's free, secure, and works on both your desktop and phone.":[null,""],"Should SickRage post messages on Discord?":[null,""],"Discord Incoming Webhook":[null,""],"Create webhook under channel settings.":[null,""],"Discord Bot Name":[null,""],"Blank will use webhook default Name.":[null,""],"Discord Avatar URL":[null,""],"Blank will use webhook default Avatar.":[null,""],"Discord TTS":[null,""],"Send notifications using text-to-speech":[null,""],"Post-Processing":[null,"Utófeldolgozás"],"Episode Naming":[null,"Epizód elnevezése"],"Metadata":[null,"Metaadat"],"Settings that dictate how SickRage should process completed downloads.":[null,""],"enable the automatic post processor to scan and process any files in your Post Processing Dir":[null,""],"do not use if you use an external Post Processing script":[null,""],"Post Processing Dir":[null,"Utófeldolgozás helye"],"the folder where your download client puts the completed TV downloads.":[null,""],"please use seperate downloading and completed folders in your download client if possible.":[null,""],"Processing Method":[null,"Feldolgozási módszer"],"what method should be used to put files into the library?":[null,""],"if you keep seeding torrents after they finish, please avoid the 'move' processing method to prevent errors.":[null,""],"Auto Post-Processing Frequency":[null,"Automatikus utófeldolgozás gyakorisága"],"time in minutes to check for new files to auto post-process (min 10)":[null,""],"Postpone post processing":[null,"Utófeldolgozás elhalasztása"],"wait to process a folder if sync files are present.":[null,""],"Sync File Extensions":[null,""],"comma seperated list of extensions or filename globs SickRage ignores when Post Processing":[null,""],"Rename Episodes":[null,"Epizódok Átnevezése"],"rename episode using the Episode Naming settings?":[null,""],"Create missing show directories":[null,""],"create missing show directories when they get deleted":[null,""],"Add shows without directory":[null,""],"add shows without creating a directory (not recommended)":[null,""],"Move associated files":[null,""],"move associated (srt/srr/sfv/etc) files while post processing?":[null,""],"Rename .nfo file":[null,".nfo fájl átnevezése"],"rename the original .nfo file to .nfo-orig to avoid conflicts?":[null,""],"Associated file extensions":[null,""],"comma separated list of associated file extensions SickRage should keep while post processing.":[null,""],"leaving it empty means no associated files will be post processed":[null,""],"Delete non associated files":[null,""],"delete non associated files while post processing?":[null,""],"Change File Date":[null,"Fájl dátum módosítása"],"set last modified filedate to the date that the episode aired?":[null,""],"some systems may ignore this feature.":[null,""],"Timezone for File Date":[null,""],"local":[null,"helyi"],"network":[null,""],"what timezone should be used to change File Date?":[null,""],"Unpack":[null,"Kicsomagol"],"What to do with archived releases found in your <i>TV Download Dir</i>?":[null,""],"Ignore (do not process contents)":[null,""],"Unpack (process contents)":[null,""],"Treat as video (process archive as-is)":[null,""],"'Unpack' only works with RAR archives":[null,""],"Windows":[null,""],"WinRar is required on windows":[null,""],"Unpack Directory":[null,""],"Choose a path to unpack files, leave blank to unpack in download dir":[null,""],"Unrar Location":[null,""],"add the path to unrar if it is not in the system path":[null,""],"Alternate Unrar Tool":[null,""],"add the path to an alternate unrar tool if it is not in the system path":[null,""],"Delete RAR contents":[null,""],"delete content of RAR files, even if Process Method not set to move?":[null,""],"only working with RAR archive":[null,""],"Don't delete empty folders":[null,""],"leave empty folders when Post Processing?":[null,""],"can be overridden using manual Post Processing":[null,""],"Follow symbolic-links":[null,""],"follow down symbolic links in download directory?":[null,""],"<b>EXPERTS ONLY.</b><br>Enable only if you know what <b>circular symbolic links</b> are,<br>and can <b>verify that you have none</b>.":[null,""],"Use icacls":[null,""],"Windows only":[null,""],"sets video permissions after using the move method in post processing":[null,""],"Extra Scripts":[null,"Extra szkriptek"],"see":[null,""],"for script arguments description and usage.":[null,""],"How SickRage will name and sort your episodes.":[null,""],"Name Pattern":[null,""],"Toggle Naming Legend":[null,""],"don't forget to add quality pattern. Otherwise after post-processing the episode will have UNKNOWN quality":[null,""],"Meaning":[null,""],"Pattern":[null,""],"Result":[null,"Eredmény"],"Use lower case if you want lower case names (eg. %sn, %e.n, %q_n etc)":[null,""],"Show Name":[null,"Műsor Neve"],"Show.Name":[null,"Műsor.Neve"],"Show_Name":[null,"Műsor_Neve"],"Season Number":[null,"Évadszám"],"XEM Season Number":[null,"XEM évadszáma"],"Episode Number":[null,"Epizódszám"],"XEM Episode Number":[null,"XEM epizódszám"],"Episode Name":[null,"Epizód Neve"],"Episode.Name":[null,"Epizód.Neve"],"Episode_Name":[null,"Epizód_Neve"],"Air Date":[null,""],"Post-Processing Date":[null,"Utófeldolgozás dátuma"],"Quality":[null,"Minőség"],"Scene Quality":[null,""],"Release Name":[null,"Release név"],"SickRage' is used in place of RLSGROUP if it could not be properly detected":[null,""],"Release Group":[null,"Release csoport"],"If episode is proper/repack add 'proper' to name.":[null,""],"Release Type":[null,"Release típusa"],"Multi-Episode Style":[null,""],"Single-EP Sample":[null,""],"Multi-EP sample":[null,""],"Strip Show Year":[null,""],"remove the TV show's year when renaming the file?":[null,""],"only applies to shows that have year inside parentheses":[null,""],"Custom Air-By-Date":[null,""],"name air-by-date shows differently than regular shows?":[null,""],"Toggle ABD Naming Legend":[null,""],"Regular Air Date":[null,""],"Year":[null,"Év"],"Month":[null,"Hónap"],"Day":[null,"Nap"],"Multi-EP style is ignored":[null,""],"Custom Sports":[null,""],"name sports shows differently than regular shows?":[null,""],"Toggle Sports Naming Legend":[null,""],"Sports Air Date":[null,""],"Custom Anime":[null,"Egyéni Anime"],"name anime shows differently than regular shows?":[null,""],"Toggle Anime Naming Legend":[null,""],">XEM Season Number":[null,">XEM évadszám"],"Single-EP Anime Sample":[null,""],"Multi-EP Anime sample":[null,""],"Add Absolute Number":[null,""],"add the absolute number to the season/episode format?":[null,""],"only applies to anime. (eg. S15E45 - 310 vs S15E45)":[null,""],"Only Absolute Number":[null,""],"replace season/episode format with absolute number":[null,""],"only applies to anime.":[null,""],"No Absolute Number":[null,""],"don't include the absolute number":[null,""],"The data associated to the data. These are files associated to a TV show in the form of images and text that, when supported, will enhance the viewing experience.":[null,""],"Metadata Type":[null,"Metaadat Típus"],"toggle metadata options that you wish to be created":[null,""],"multiple targets may be used":[null,""],"Select Metadata":[null,""],"Provider Priorities":[null,""],"Provider Options":[null,""],"Configure Custom Newznab Providers":[null,""],"Configure Custom Torrent Providers":[null,""],"Check off and drag the providers into the order you want them to be used.":[null,""],"At least one provider is required but two are recommended.":[null,""],"Torrent providers can be toggled in ":[null,""],"Provider does not support backlog searches at this time.":[null,""],"Provider is <b>NOT WORKING</b>.":[null,""],"Configure individual provider settings here.":[null,""],"Check with provider's website on how to obtain an API key if needed.":[null,""],"Configure provider":[null,""],"no providers available to configure.":[null,""],"URL":[null,"URL"],"Enable daily searches":[null,"Napi keresések engedélyezése"],"enable provider to perform daily searches.":[null,""],"Enable backlog searches":[null,""],"enable provider to perform backlog searches.":[null,""],"Season search mode":[null,""],"when searching for complete seasons you can choose to have it look for season packs only, or choose to have it build a complete season from just single episodes.":[null,""],"season packs only.":[null,""],"episodes only.":[null,"epizódok csak."],"Enable fallback":[null,""],"when searching for a complete season depending on search mode you may return no results, this helps by restarting the search using the opposite search mode.":[null,""],"Custom URL":[null,"Egyéni URL-cím"],"the URL should include the protocol (and port if applicable). Examples: http://192.168.1.4/ or http://localhost:3000/":[null,""],"Api key":[null,"Api kulcs"],"Digest":[null,""],"Hash":[null,""],"Passkey":[null,""],"Cookies":[null,"Cookie-k"],"example: uid=1234;pass=567845439634987<br>note: uid and pass are not your username/password.<br>use DevTools or Firebug to get these values after logging in on your browser.":[null,""],"Pin":[null,""],"Seed ratio":[null,""],"stop transfer when ratio is reached<br>(-1 SickRage default to seed forever, or leave blank for downloader default)":[null,""],"Minimum seeders":[null,""],"Minimum leechers":[null,""],"Confirmed download":[null,""],"only download torrents from trusted or verified uploaders ?":[null,""],"Ranked torrents":[null,""],"only download ranked torrents (trusted releases)":[null,""],"English torrents":[null,""],"only download english torrents, or torrents containing english subtitles":[null,""],"For Spanish torrents":[null,""],"ONLY search on this provider if show info is defined as \"Spanish\" (avoid provider's use for VOS shows)":[null,""],"Sorting results by":[null,""],"Freeleech":[null,""],"only download <b>\"FreeLeech\"</b> torrents.":[null,""],"Category":[null,"Kategória"],"select torrent with Italian subtitle":[null,""],"Configure Custom<br>Newznab Providers":[null,""],"Add and setup or remove custom Newznab providers.":[null,""],"Select provider":[null,""],"-- add new provider --":[null,""],"Provider name":[null,""],"Site URL":[null,"Weblap URL"],"Newznab search categories":[null,""],"select your Newznab categories on the left, and click the \"update categories\" button to use them for searching.) <b>don't forget to to save the form!":[null,""],"Update Categories":[null,"Kategóriák Frissítése"],"Add":[null,"Hozzáad"],"Delete":[null,"Töröl"],"Add and setup or remove custom RSS providers.":[null,""],"RSS URL":[null,"RSS URL"],"Search element":[null,""],"eg: title":[null,"pl: cím"],"Episode Search":[null,"Epizód keresés"],"NZB Search":[null,"NZB keresés"],"Torrent Search":[null,"Torrent keresés"],"How to manage searching with":[null,""],"Randomize Providers":[null,""],"randomize the provider search order instead of going in order of placement":[null,""],"Download propers":[null,""],"replace original download with \"Proper\" or \"Repack\" if nuked":[null,""],"Check propers every":[null,""],"24 hours":[null,"24 óra"],"4 hours":[null,"4 óra"],"90 mins":[null,"90 perc"],"45 mins":[null,"45 perc"],"15 mins":[null,"15 perc"],"Backlog search day(s)":[null,""],"number of day(s) that the \"Forced Backlog Search\" will cover (e.g. 7 Days)":[null,""],"Backlog search frequency":[null,""],"time in minutes between searches (min.":[null,""],"Daily search frequency":[null,"Napi keresés gyakorisága"],"Usenet retention":[null,"Usenet késleltetés"],"age limit in days for usenet articles to be used (e.g. 500)":[null,""],"Ignore words":[null,"Szavak figyelmen kívül hagyása"],"results with one or more word from this list will be ignored<br>separate words with a comma, e.g. \"word1,word2,word3\"":[null,""],"Require words":[null,"Szavak figyelembe vétele"],"results with no word from this list will be ignored<br>separate words with a comma, e.g. \"word1,word2,word3\"":[null,""],"Trackers list":[null,""],"trackers that will be added to magnets without trackers<br>separate trackers with a comma, e.g. \"tracker1,tracker2,tracker3\"":[null,""],"Ignore language names in subbed results":[null,""],"ignore subbed releases based on language names <br>\n Example: \"dk\" will ignore words: dksub, dksubs, dksubbed, dksubed <br>\n separate languages with a comma, e.g. \"lang1,lang2,lang3":[null,""],"Allow high priority":[null,""],"set downloads of recently aired episodes to high priority":[null,""],"Use Failed Downloads":[null,""],"use Failed Download Handling?":[null,""],"will only work with snatched/downloaded episodes after enabling this":[null,""],"Delete Failed":[null,"Törlés sikertelen"],"delete files left over from a failed download?":[null,""],"this only works if Use Failed Downloads is enabled.":[null,""],"How to handle NZB search results.":[null,""],"Search NZBs":[null,"Keresés NZBs"],"enable NZB search providers":[null,""],"Send .nzb files to":[null,""],"SABnzbd server URL":[null,""],"URL to your SABnzbd server (e.g. http://localhost:8080/)":[null,""],"SABnzbd username":[null,"SABnzbd felhasználónév"],"(blank for none)":[null,"(üresen hagy)"],"SABnzbd password":[null,"SABnzbd jelszó"],"SABnzbd API key":[null,"SABnzbd API kulcs"],"locate at... SABnzbd Config -> General -> API Key":[null,""],"Use SABnzbd category":[null,"SABnzbd kategória használata"],"add downloads to this category (e.g. TV)":[null,""],"Use SABnzbd category (backlog episodes)":[null,""],"add downloads of old episodes to this category (e.g. TV)":[null,""],"Use SABnzbd category for anime":[null,""],"add anime downloads to this category (e.g. anime)":[null,""],"Use SABnzbd category for anime (backlog episodes)":[null,""],"add anime downloads of old episodes to this category (e.g. anime)":[null,""],"Use forced priority":[null,""],"enable to change priority from HIGH to FORCED":[null,""],"Black hole folder location":[null,""],"<b>.nzb</b> files are stored at this location for external software to find and use":[null,""],"Connect using HTTPS":[null,""],"enable Secure control in NZBGet and set the correct Secure Port here":[null,""],"NZBget host:port":[null,"NZBget hoszt: port"],"(e.g. localhost:6789)":[null,"(pl. localhost:6789)"],"NZBget RPC host name and port number (not NZBgetweb!)":[null,""],"NZBget username":[null,"NZBget felhasználónév"],"locate in nzbget.conf (default:nzbget)":[null,""],"NZBget password":[null,"NZBget jelszó"],"locate in nzbget.conf (default:tegbzn6789)":[null,""],"Use NZBget category":[null,""],"send downloads marked this category (e.g. TV)":[null,""],"Use NZBget category (backlog episodes)":[null,""],"send downloads of old episodes marked this category (e.g. TV)":[null,""],"Use NZBget category for anime":[null,""],"send anime downloads marked this category (e.g. anime)":[null,""],"Use NZBget category for anime (backlog episodes)":[null,""],"send anime downloads of old episodes marked this category (e.g. anime)":[null,""],"NZBget priority":[null,""],"Very low":[null,"Nagyon alacsony"],"Low":[null,"Alacsony"],"Very high":[null,"Nagyon magas"],"Force":[null,"Eröltetett"],"priority for daily snatches (no backlog)":[null,""],"Torrent host:port":[null,"Torrent hoszt:port"],"URL to your Synology DSM (e.g. http://localhost:5000/)":[null,""],"Client username":[null,"Ügyfél felhasználónév"],"Client password":[null,"Ügyfél jelszó"],"Downloaded files location":[null,""],"where Synology Download Station will save downloaded files (blank for client default)":[null,""],"the destination has to be a shared folder for Synology DS":[null,""],"Click below to test":[null,""],"How to handle Torrent search results.":[null,""],"Search torrents":[null,""],"enable torrent search providers":[null,""],"Send .torrent files to":[null,""],"<b>.torrent</b> files are stored at this location for external software to find and use":[null,""],"URL to your torrent client (e.g. http://localhost:8000/)":[null,""],"Torrent RPC URL":[null,""],"the path without leading and trailing slashes (e.g. transmission)":[null,""],"Http Authentication":[null,"Http Hitelesítés"],"Verify certificate":[null,"Tanúsítvány ellenőrzése"],"disable if you get \"Deluge: Authentication Error\" in your log":[null,""],"verify SSL certificates for HTTPS requests":[null,""],"Add label to torrent":[null,"Címke hozzáadása a torrenthez"],"(blank spaces are not allowed)":[null,""],"label plugin must be enabled in Deluge clients":[null,""],"for QBitTorrent 3.3.1 and up":[null,""],"Add label to torrent for anime":[null,""],"for QBitTorrent 3.3.1 and up ":[null,""],"where <span id=\"torrent_client\">the torrent client</span> will save downloaded files (blank for client default)":[null,""],"the destination has to be a shared folder for Synology DS</span>":[null,""],"Minimum seeding time":[null,""],"time in hours":[null,""],"(default:'0' passes blank to client and '-1' passes nothing)":[null,""],"Start torrent paused":[null,""],"add .torrent to client but do <b style=\"font-weight:900\">not</b> start downloading":[null,""],"Allow high bandwidth":[null,""],"use high bandwidth allocation if priority is high":[null,""],"Test Connection":[null,"Kapcsolat tesztelése"],"Windows Shares":[null,""],"Defines your existing windows shares so that we can add them to the browse dialog":[null,""],"Share #{number}":[null,""],"Share label":[null,""],"Hostname or IP":[null,""],"Share path":[null,""],"Subtitles Search":[null,"Feliratok keresése"],"Subtitles Plugin":[null,""],"Plugin Settings":[null,""],"Settings that dictate how SickRage handles subtitles search results.":[null,""],"Search Subtitles":[null,"Feliratok Keresés"],"Subtitle Languages":[null,""],"Subtitle Directory":[null,"Feliratok Könyvtár"],"the directory where SickRage should store your <i>Subtitles</i> files.":[null,""],"leave empty if you want store subtitle in episode path.":[null,""],"Subtitle Find Frequency":[null,""],"time in hours between scans (default: 1)":[null,""],"Include Specials":[null,""],"include the show's specials when searching for subtitles?":[null,""],"Perfect matches":[null,"Tökéletes egyezés"],"only download subtitles that match: release group, video codec, audio codec and resolution":[null,""],"if disabled you may get out of sync subtitles":[null,""],"Subtitles History":[null,""],"log downloaded Subtitle on History page?":[null,""],"Subtitles Multi-Language":[null,""],"append language codes to subtitle filenames?":[null,""],"this option is required if you use multiple subtitle languages":[null,""],"Delete unwanted subtitles":[null,""],"enable to delete unwanted subtitle languages bundled with release":[null,""],"Embedded Subtitles":[null,""],"ignore subtitles embedded inside video file?":[null,""],"this will ignore <u>all</u> embedded subtitles for every video file!":[null,""],"Hearing Impaired Subtitles":[null,""],"download hearing impaired style subtitles?":[null,""],"See":[null,""],"for a script arguments description.":[null,""],"Additional scripts separated by <b>|</b>.":[null,""],"Scripts are called after each episode has searched and downloaded subtitles.":[null,""],"For any scripted languages, include the interpreter executable before the script. See the following example":[null,""],"For Windows:":[null,""],"For Linux / OS X:":[null,""],"Subtitle Providers":[null,""],"Check off and drag the plugins into the order you want them to be used.":[null,""],"At least one plugin is required.":[null,""]," Web-scraping plugin":[null,""],"Provider Settings":[null,""],"Set user and password for each provider":[null,""],"User Name":[null,"Felhasználónév"],"Change Show":[null,""],"Prev Show":[null,"Előző Műsor"],"Next Show":[null,"Következő Műsor"],"Jump to Season":[null,"Ugrás az Évadra"],"Specials":[null,""],"Poster for":[null,""],"Stars":[null,""],"minutes":[null,"perces"],"View other popular {genre} shows on trakt.tv.":[null,""],"View other popular {imdbgenre} shows on IMDB.":[null,""],"Allowed":[null,"Engedélyezett"],"Preferred":[null,"Preferált"],"Originally Airs":[null,"Eredetileg sugárzott"],"Show Status":[null,"Műsor Állapota"],"Default EP Status":[null,"Alapértelmezett EP állapota"],"Location":[null,"Hely"],"Missing":[null,"Hiányzó"],"Scene Name":[null,""],"Required Words":[null,""],"Ignored Words":[null,""],"Size":[null,"Méret"],"Info Language":[null,"Információ nyelve"],"Subtitles SR Metadata":[null,""],"Season Folders":[null,"Évad Mappák"],"Paused":[null,"Szünetel"],"Air-by-Date":[null,""],"Sports":[null,"Sport"],"DVD Order":[null,""],"Scene Numbering":[null,"Jelenet számozás"],"Select Filtered Episodes":[null,""],"Clear All":[null,""],"Change selected episodes to":[null,""],"Select Columns":[null,""],"NFO":[null,"NFO"],"TBN":[null,"TBN"],"Episode":[null,"Epizód"],"Absolute":[null,"Abszolút"],"Scene":[null,""],"Scene Absolute":[null,""],"File Name":[null,"Fájlnév"],"Airdate":[null,""],"Download":[null,"Letöltés"],"Change the value here if scene numbering differs from the indexer episode numbering":[null,""],"Change the value here if scene absolute numbering differs from the indexer absolute numbering":[null,""],"Manual Search":[null,"Kézi Keresés"],"Do you want to mark this episode as failed?":[null,""],"The episode release name will be added to the failed history, preventing it to be downloaded again.":[null,""],"Do you want to include the current episode quality in the search?":[null,""],"Choosing No will ignore any releases with the same episode quality as the one currently downloaded/snatched.":[null,""],"Download subtitle":[null,""],"Do you want to re-download the subtitle for this language?":[null,""],"It will overwrite your current subtitle":[null,""],"Format":[null,""],"Advanced":[null,""],"Main Settings":[null,"Fő beállítások"],"Show Location":[null,"Hely mutatása"],"Preferred Quality":[null,"Preferált minőség"],"Default Episode Status":[null,"Alapértelmezett epizód állapota"],"this will set the status for future episodes.":[null,""],"this only applies to episode filenames and the contents of metadata files.":[null,""],"search for subtitles":[null,""],"Use SR Metdata":[null,""],"use SickRage metadata when searching for subtitle, this will override the autodiscovered metadata":[null,""],"pause this show (SickRage will not download episodes)":[null,""],"Format Settings":[null,""],"Air by date":[null,""],"check if the show is released as Show.03.02.2010 rather than Show.S02E03.":[null,""],"in case of an air date conflict between regular and special episodes, the later will be ignored.":[null,""],"check if the show is Anime and episodes are released as Show.265 rather than Show.S02E03":[null,""],"check if the show is a sporting or MMA event released as Show.03.02.2010 rather than Show.S02E03":[null,""],"Season folders":[null,"Évad mappák"],"group episodes by season folder (uncheck to store in a single folder)":[null,""],"search by scene numbering (uncheck to search by indexer numbering)":[null,""],"use the DVD order instead of the air order":[null,""],"a \"Force Full Update\" is necessary, and if you have existing episodes you need to sort them manually.":[null,""],"comma-separated <i>e.g. \"word1,word2,word3</i>\"":[null,""],"search results with one or more words from this list will be ignored.":[null,""],"e.g. \"word1,word2,word3\"":[null,"pl. \"szó1, szó2, szó3\""],"search results with no words from this list will be ignored.":[null,""],"Scene Exception":[null,""],"this will affect episode search on NZB and torrent providers.":[null,""],"this list appends to the original show name.":[null,""],"WARNING logs":[null,""],"ERROR logs":[null,"HIBA naplók"],"There are no events to display.":[null,""],"Limit":[null,"Korlát"],"Layout":[null,"Elrendezés"],"HistoryLayout":[null,""],"Compact":[null,"Kompakt"],"Detailed":[null,"Részletes"],"Time":[null,"Időpont"],"Provider":[null,"Szolgáltató"],"Missing Provider":[null,""],"missing provider":[null,""],"Directory":[null,"Könyvtár"],"Show Name (tvshow.nfo)":[null,"Műsor Neve (tvshow.nfo)"],"Indexer":[null,"Indexelő"],"Enter the folder containing the episode":[null,""],"Process Method to be used":[null,""],"Copy":[null,"Másol"],"Move":[null,"Áthelyezés"],"Hard Link":[null,""],"Symbolic Link":[null,""],"Symbolic Link Reversed":[null,""],"Force already Post Processed Dir/Files":[null,""],"Mark Dir/Files as priority download":[null,""],"(Check it to replace the file even if it exists at higher quality)":[null,""],"Delete files and folders":[null,""],"(Check it to delete files and folders like auto processing)":[null,""],"Don't use processing queue":[null,""],"(If checked this will return the result of the process here, but may be slow!)":[null,""],"Mark download as failed":[null,""],"Process":[null,"Folyamat"],"Download subtitles for this show?":[null,""],"use SickRage metadata when searching for subtitle, <br />this will override the autodiscovered metadata":[null,""],"Status for previously aired episodes":[null,""],"Status for all future episodes":[null,""],"Group episodes by season folder?":[null,""],"Is this show an Anime?":[null,""],"Is this show scene numbered?":[null,""],"Save Defaults":[null,"Alapértékek mentése"],"Use current values as the defaults":[null,""],"<p>Select your preferred fansub groups from the <b>Available Groups</b> and add them to the <b>Whitelist</b>. Add groups to the <b>Blacklist</b> to ignore them.</p>\n <p>The <b>Whitelist</b> is checked <i>before</i> the <b>Blacklist</b>.</p>\n <p>Groups are shown as <b>Name</b> | <b>Rating</b> | <b>Number of subbed episodes</b>.</p>\n <p>You may also add any fansub group not listed to either list manually.</p>\n <p>When doing this please note that you can only use groups listed on anidb for this anime.\n <br>If a group is not listed on anidb but subbed this anime, please correct anidb's data.</p>":[null,""],"Whitelist":[null,""],"Available Groups":[null,""],"Add to Whitelist":[null,""],"Add to Blacklist":[null,""],"Blacklist":[null,""],"Custom Group":[null,""],"Allowed Quality:":[null,""],"Preferred Quality:":[null,"Preferált minőség:"],"Filter Show Name":[null,""],"Root":[null,""],"All":[null,"Összes"],"Clear Filter(s)":[null,""],"Poster":[null,"Poszter"],"Small Poster":[null,"Kis Poszter"],"Banner":[null,"Banner"],"Simple":[null,"Egyszerű"],"Next Episode":[null,"Következő Epizód"],"Progress":[null,""],"Direction":[null,"Irány"],"Ascending":[null,"Növekvő"],"Descending":[null,"Csökkenő"],"Poster Size":[null,"Poszter méret"],"Continuing":[null,"Folytatódik"],"Ended":[null,"Véget ért"],"Total":[null,"Összes"],"Invalid date":[null,"Érvénytelen dátum"],"No Network":[null,"Nincs hálózat"],"Next Ep":[null,"Következő Ep"],"Prev Ep":[null,"Előző Ep"],"Show":[null,"Sorozat"],"Downloads":[null,"Letöltések"],"Active":[null,"Aktív"],"loading":[null,""],"<p><b><u>Preferred</u></b> qualities will replace those in <b><u>allowed</u></b>, even if they are lower.</p>":[null,""],"New":[null,"Új"],"Set as Default":[null,"Beállítás alapértelmezettként"],"Remember me":[null,"Emlékezz rám"],"Edit Selected":[null,""],"Subtitle":[null,"Felirat"],"Default Ep Status":[null,"Alapértelmezett Ep állapota"],"Update":[null,"Frissítés"],"Rescan":[null,"Újraellenőrzés"],"Rename":[null,"Átnevezés"],"Search Subtitle":[null,"Felirat Keresés"],"Force Metadata Regen":[null,""],"Snatched (Allowed)":[null,"Elkapva (engedélyezett)"],"Jump to Show":[null,"Ugrás a Műsorra"],"Force Backlog":[null,""],"Manage episodes with status":[null,""],"Manage":[null,"Kezelés"],"None of your episodes have status":[null,""],"Shows containing":[null,""],"episodes":[null,"epizódok"],"Set checked shows/episodes to":[null,""],"Go":[null,""],"Select all":[null,"Mind kiválaszt"],"Clear all":[null,"Az összes törlése"],"Release":[null,""],"Backlog Search":[null,""],"Not in progress":[null,""],"In Progress":[null,"Folyamatban"],"Daily Search":[null,"Napi Keresés"],"Find Propers Search":[null,""],"Propers search disabled":[null,""],"Subtitle Search":[null,"Felirat Keresés"],"Subtitle search disabled":[null,"Felirat keresés letiltva"],"Search Queue":[null,""],"pending items":[null,""],"Daily":[null,"Napi"],"Manual":[null,"Kézi"],"Changing any settings marked with (<span class=\"separator\">*</span>) will force a refresh of the selected shows.":[null,""],"Selected Shows":[null,"Kiválasztott Műsor"],"Root Directories":[null,""],"Current":[null,"Jelenlegi"],"Keep":[null,"Megtart"],"Custom":[null,"Egyéni"],"Group episodes by season folder (set to \"No\" to store in a single folder).":[null,""],"Pause these shows (SickRage will not download episodes).":[null,""],"This will set the status for future episodes.":[null,""],"Search by scene numbering (set to \"No\" to search by indexer numbering).":[null,""],"Set if these shows are Anime and episodes are released as Show.265 rather than Show.S02E03":[null,""],"Set if these shows are sporting or MMA events released as Show.03.02.2010 rather than Show.S02E03.":[null,""],"In case of an air date conflict between regular and special episodes, the later will be ignored.":[null,""],"Set if these shows are released as Show.03.02.2010 rather than Show.S02E03.":[null,""],"Search for subtitles.":[null,""],"All of your episodes have {subsLanguage} subtitles.":[null,""],"Manage episodes without":[null,""],"Episodes without {subsLanguage} subtitles.":[null,""],"Episodes without {subtitleLanguage} (undefined) subtitles.":[null,""],"Download missed subtitles for selected episodes":[null,""],"Performing Restart":[null,""],"Waiting for SickRage to shut down":[null,""],"Waiting for SickRage to start again":[null,""],"Loading the default page":[null,""],"Error: The restart has timed out, perhaps something prevented SickRage from starting again?":[null,""],"Key":[null,"Kulcs"],"Missed":[null,"Kimaradt"],"Today":[null,"Ma"],"Soon":[null,"Hamarosan"],"Later":[null,"Később"],"Subscribe":[null,"Feliratkozás"],"Date":[null,"Dátum"],"View Paused":[null,""],"Hidden":[null,"Rejtett"],"Shown":[null,"Látható"],"Calendar":[null,"Naptár"],"List":[null,"Lista"],"Ends":[null,""],"Next Ep Name":[null,"Következő Ep neve"],"Run time":[null,""],"Indexers":[null,""],"No shows for this day":[null,""],"Airs":[null,""],"Plot":[null,""],"Show Update":[null,"Műsor frissítés"],"Version Check":[null,"Verzió Ellenőrzése"],"Proper Finder":[null,""],"Post Process":[null,""],"Subtitles Finder":[null,""],"Scheduler":[null,"Ütemező"],"Alive":[null,""],"Start Time":[null,""],"Cycle Time":[null,"Ciklusidő"],"Next Run":[null,"Következő Futtatás"],"Last Run":[null,""],"Silent":[null,""],"True":[null,"Igaz"],"N/A":[null,"N/A"],"Show id":[null,"Műsor azonosító"],"Show name":[null,"Műsor neve"],"Priority":[null,""],"Added":[null,"Hozzáadva"],"Queue type":[null,""],"LOW":[null,"ALACSONY"],"NORMAL":[null,"NORMÁL"],"HIGH":[null,"MAGAS"],"Disk Space":[null,"Lemezterület"],"Free space":[null,"Szabad hely"],"TV Download Directory":[null,""],"Media Root Directories":[null,""],"Preview of the proposed name changes":[null,""],"All Seasons":[null,"Összes Évad"],"select all":[null,""],"Rename Selected":[null,""],"Cancel Rename":[null,""],"Old Location":[null,"Régi hely"],"New Location":[null,"Új hely"],"Trakt API did not return any results, please check your config.":[null,""],"votes":[null,"szavazat"],"Remove Show":[null,"Műsor eltávolítása"],"Level":[null,""],"Filter":[null,""],"All non-absolute folder locations are relative to ":[null,""],"Manual Post-Processing":[null,"Kézi Utófeldolgozás"],"Episode Status Management":[null,""],"Update PLEX":[null,"PLEX frissítés"],"Update KODI":[null,"KODI frissítés"],"Update Emby":[null,"Emby frissítés"],"Manage Torrents":[null,"Torrentek kezelése"],"Missed Subtitle Management":[null,""],"Help & Info":[null,"Súgó & Info"],"Backup & Restore":[null,"Mentés & visszaállítás"],"Tools":[null,"Eszközök"],"Support SickRage":[null,"SickRage Támogatás"],"View Errors":[null,"Hibák megtekintése"],"View Warnings":[null,"Figyelmeztetések megtekintése"],"View Log":[null,"Napló megtekintése"],"Check For Updates":[null,"Frissítések keresése"],"Restart":[null,"Újraindítás"],"Shutdown":[null,"Leállítás"],"Logout":[null,"Kijelentkezés"],"Server Status":[null,"Szerver állapot"],"View overview of snatched episodes":[null,""],"Episodes Downloaded":[null,"Letöltött epizód"],"Memory used":[null,"Használt memória"],"Load time":[null,"Betöltési idő"],"Branch":[null,"Ágazat"],"Now":[null,"Most"]}}}} \ No newline at end of file diff --git a/locale/hu_HU/LC_MESSAGES/messages.mo b/locale/hu_HU/LC_MESSAGES/messages.mo index 27e80fba38a7f8325642dd9ed77e72b234bb6b02..a6fd77cf4945762a2113de752c783787bcfde01c 100644 Binary files a/locale/hu_HU/LC_MESSAGES/messages.mo and b/locale/hu_HU/LC_MESSAGES/messages.mo differ diff --git a/locale/hu_HU/LC_MESSAGES/messages.po b/locale/hu_HU/LC_MESSAGES/messages.po index acb80dd2c8c62840199b7eba9be9139b94d5c19e..5f4550d5910873a2423faa1bf2eccb6bc0163554 100644 --- a/locale/hu_HU/LC_MESSAGES/messages.po +++ b/locale/hu_HU/LC_MESSAGES/messages.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: sickrage\n" "Report-Msgid-Bugs-To: miigotu@gmail.com\n" -"POT-Creation-Date: 2017-03-25 09:28-0700\n" -"PO-Revision-Date: 2017-03-25 12:29-0400\n" +"POT-Creation-Date: 2017-03-28 09:10-0700\n" +"PO-Revision-Date: 2017-03-28 12:12-0400\n" "Last-Translator: miigotu <miigotu@gmail.com>\n" "Language-Team: Hungarian\n" "MIME-Version: 1.0\n" @@ -90,7 +90,7 @@ msgid "Biography" msgstr "Életrajzi" #: gui/slick/views/config_general.mako:78 gui/slick/views/layouts/main.mako:145 -#: sickbeard/__init__.py:79 sickbeard/webserve.py:3807 +#: sickbeard/__init__.py:79 sickbeard/webserve.py:3778 msgid "History" msgstr "Előzmények" @@ -103,7 +103,7 @@ msgid "Western" msgstr "Western" #: gui/slick/views/config_general.mako:79 gui/slick/views/layouts/main.mako:221 -#: sickbeard/__init__.py:80 sickbeard/webserve.py:2385 +#: sickbeard/__init__.py:80 sickbeard/webserve.py:2384 msgid "News" msgstr "Hírek" @@ -238,6 +238,34 @@ msgstr "Mellőzött" msgid "Subtitled" msgstr "Felirat hozzátéve" +#: sickbeard/helpers.py:1887 +msgid "For best results please set the Download Station alias as" +msgstr "A legjobb eredmény érdekében állítsa be a Download Station aliasnevét a következőre:" + +#: sickbeard/helpers.py:1888 +msgid "You can check this setting in the Synology DSM" +msgstr "Ellenőrizheted ezt a beállítást a Synology DSM-ben" + +#: sickbeard/helpers.py:1888 sickbeard/helpers.py:1890 +msgid "Control Panel" +msgstr "Vezérlőpult" + +#: sickbeard/helpers.py:1888 +msgid "Application Portal" +msgstr "Applikáció-portál" + +#: sickbeard/helpers.py:1889 +msgid "Make sure you allow DSM to be embedded with iFrames too in" +msgstr "Ne felejtsd el engedélyezni a DSM-et, hogy iFrame-be is be lehessen ágyazni" + +#: sickbeard/helpers.py:1890 +msgid "DSM Settings" +msgstr "DSM beállítások" + +#: sickbeard/helpers.py:1890 +msgid "Security" +msgstr "Biztonság" + #: sickbeard/logger.py:474 msgid "<No Filter>" msgstr "< Nincs Szűrő >" @@ -308,15 +336,15 @@ msgstr "Trakt ellenőrző" msgid "Event" msgstr "Esemény" -#: sickbeard/logger.py:491 sickbeard/webserve.py:1339 sickbeard/webserve.py:1342 -#: sickbeard/webserve.py:1520 sickbeard/webserve.py:1529 sickbeard/webserve.py:1717 -#: sickbeard/webserve.py:1728 sickbeard/webserve.py:1751 sickbeard/webserve.py:1764 -#: sickbeard/webserve.py:1769 sickbeard/webserve.py:1785 sickbeard/webserve.py:1790 -#: sickbeard/webserve.py:1854 sickbeard/webserve.py:1857 sickbeard/webserve.py:1863 -#: sickbeard/webserve.py:1866 sickbeard/webserve.py:1873 sickbeard/webserve.py:1876 -#: sickbeard/webserve.py:1899 sickbeard/webserve.py:1997 sickbeard/webserve.py:2002 -#: sickbeard/webserve.py:2007 sickbeard/webserve.py:2036 sickbeard/webserve.py:2040 -#: sickbeard/webserve.py:2045 +#: sickbeard/logger.py:491 sickbeard/webserve.py:1338 sickbeard/webserve.py:1341 +#: sickbeard/webserve.py:1519 sickbeard/webserve.py:1528 sickbeard/webserve.py:1716 +#: sickbeard/webserve.py:1727 sickbeard/webserve.py:1750 sickbeard/webserve.py:1763 +#: sickbeard/webserve.py:1768 sickbeard/webserve.py:1784 sickbeard/webserve.py:1789 +#: sickbeard/webserve.py:1853 sickbeard/webserve.py:1856 sickbeard/webserve.py:1862 +#: sickbeard/webserve.py:1865 sickbeard/webserve.py:1872 sickbeard/webserve.py:1875 +#: sickbeard/webserve.py:1898 sickbeard/webserve.py:1996 sickbeard/webserve.py:2001 +#: sickbeard/webserve.py:2006 sickbeard/webserve.py:2035 sickbeard/webserve.py:2039 +#: sickbeard/webserve.py:2044 msgid "Error" msgstr "Hiba" @@ -333,6 +361,7 @@ msgstr "Szál" msgid "Main" msgstr "Elsődleges" +#: gui/slick/js/ajaxEpSearch.js:146 gui/slick/js/ajaxEpSearch.js:147 #: gui/slick/views/inc_home_showList.mako:27 sickbeard/show_queue.py:298 msgid "Loading" msgstr "" @@ -372,867 +401,835 @@ msgstr "Biztonsági mentés sikertelen, frissítés megszakítva" msgid "No update needed" msgstr "Nem szükséges frissíteni" -#: sickbeard/webserve.py:170 +#: sickbeard/webserve.py:171 msgid "Mako Error" msgstr "Makó-hiba" -#: sickbeard/webserve.py:195 +#: sickbeard/webserve.py:196 msgid "Oops" msgstr "Oops" -#: sickbeard/webserve.py:197 +#: sickbeard/webserve.py:198 msgid "Wrong API key used" msgstr "Rossz API kulcs" -#: gui/slick/views/login.mako:34 sickbeard/webserve.py:302 +#: gui/slick/views/login.mako:34 sickbeard/webserve.py:303 msgid "Login" msgstr "Bejelentkezés" -#: sickbeard/webserve.py:406 +#: sickbeard/webserve.py:392 msgid "API Key not generated" msgstr "Nem sikerült API-kulcsot generálni" -#: sickbeard/webserve.py:409 +#: sickbeard/webserve.py:395 msgid "API Builder" msgstr "API-Builder" #: gui/slick/views/config_general.mako:77 gui/slick/views/layouts/main.mako:141 -#: sickbeard/webserve.py:512 +#: sickbeard/webserve.py:498 msgid "Schedule" msgstr "Ütemezés" -#: sickbeard/webserve.py:610 +#: sickbeard/webserve.py:609 msgid "Test 1" msgstr "Teszt 1" -#: sickbeard/webserve.py:610 +#: sickbeard/webserve.py:609 msgid "This is test number 1" msgstr "Ez az 1-es tesztszám" -#: sickbeard/webserve.py:611 +#: sickbeard/webserve.py:610 msgid "Test 2" msgstr "Teszt 2" -#: sickbeard/webserve.py:611 +#: sickbeard/webserve.py:610 msgid "This is test number 2" msgstr "Ez a 2-es tesztszám" -#: sickbeard/webserve.py:634 +#: sickbeard/webserve.py:633 msgid "You're using the {branch} branch. Please use 'master' unless specifically asked" msgstr "" -#: sickbeard/webserve.py:698 sickbeard/webserve.py:703 +#: sickbeard/webserve.py:697 sickbeard/webserve.py:702 msgid "Invalid show parameters" msgstr "Érvénytelen Tv-műsor paraméterek" -#: sickbeard/webserve.py:710 +#: sickbeard/webserve.py:709 msgid "Invalid parameters" msgstr "" -#: sickbeard/webserve.py:713 sickbeard/webserve.py:1899 +#: sickbeard/webserve.py:712 sickbeard/webserve.py:1898 msgid "Episode couldn't be retrieved" msgstr "Az epizódot nem sikerült megszerezni" -#: sickbeard/webserve.py:759 sickbeard/webserve.py:1268 sickbeard/webserve.py:1297 +#: sickbeard/webserve.py:758 sickbeard/webserve.py:1267 sickbeard/webserve.py:1296 msgid "Home" msgstr "Kezdőnézet" -#: gui/slick/views/layouts/main.mako:127 sickbeard/webserve.py:759 +#: gui/slick/views/layouts/main.mako:127 sickbeard/webserve.py:758 msgid "Show List" msgstr "Műsor lista" -#: sickbeard/webserve.py:807 +#: sickbeard/webserve.py:806 msgid "Error: Unsupported Request. Send jsonp request with 'callback' variable in the query string." msgstr "Hiba: Nem támogatott kérés. Jsonp kérés küldése a \"callback\" változóval a karakterláncban." -#: sickbeard/webserve.py:851 +#: sickbeard/webserve.py:850 msgid "Success. Connected and authenticated" msgstr "Sikeres kapcsolódás és hitelesítés" -#: sickbeard/webserve.py:853 +#: sickbeard/webserve.py:852 msgid "Authentication failed. SABnzbd expects" msgstr "A hitelesítés sikertelen. SABnzbd szükséges" -#: sickbeard/webserve.py:853 +#: sickbeard/webserve.py:852 msgid "as authentication method" msgstr "hitelesítési módszerként" -#: sickbeard/webserve.py:855 +#: sickbeard/webserve.py:854 msgid "Unable to connect to host" msgstr "Nem tud csatlakozni a Host-hoz" -#: sickbeard/webserve.py:876 +#: sickbeard/webserve.py:875 msgid "SMS sent successfully" msgstr "SMS sikeresen elküldve" -#: sickbeard/webserve.py:878 +#: sickbeard/webserve.py:877 msgid "Problem sending SMS: {message}" msgstr "Probléma merült fel az SMS küldése közben: {message}" -#: sickbeard/webserve.py:885 +#: sickbeard/webserve.py:884 msgid "Telegram notification succeeded. Check your Telegram clients to make sure it worked" msgstr "Telegram értesítés elküldve. Lépj be a Telegram kliensbe, hogy ellenőrizd, minden jól működött-e" -#: sickbeard/webserve.py:887 +#: sickbeard/webserve.py:886 msgid "Error sending Telegram notification: {message}" msgstr "Hiba a Telegram értesítés elküldése közben: {message}" -#: sickbeard/webserve.py:894 +#: sickbeard/webserve.py:893 msgid "join notification succeeded. Check your join clients to make sure it worked" msgstr "join értesítés elküldve. Lépj be a join kliensbe, hogy ellenőrizd, minden jól működött-e" -#: sickbeard/webserve.py:896 +#: sickbeard/webserve.py:895 msgid "Error sending join notification: {message}" msgstr "Hiba a join értesítés elküldése közben: {message}" -#: sickbeard/webserve.py:906 +#: sickbeard/webserve.py:905 msgid " with password" msgstr " jelszóval" -#: sickbeard/webserve.py:908 +#: sickbeard/webserve.py:907 msgid "Registered and Tested growl successfully {growl_host}" msgstr "Growl sikeresen regisztrálva és tesztelve {growl_host}" -#: sickbeard/webserve.py:910 +#: sickbeard/webserve.py:909 msgid "Registration and Testing of growl failed {growl_host}" msgstr "Growl regisztrálása és tesztelése sikertelen {growl_host}" -#: sickbeard/webserve.py:917 +#: sickbeard/webserve.py:916 msgid "Test prowl notice sent successfully" msgstr "Prowl teszértesítés elküldve" -#: sickbeard/webserve.py:919 +#: sickbeard/webserve.py:918 msgid "Test prowl notice failed" msgstr "Prowl tesztértesítés elküldése sikertelen" -#: sickbeard/webserve.py:926 +#: sickbeard/webserve.py:925 msgid "Boxcar2 notification succeeded. Check your Boxcar2 clients to make sure it worked" msgstr "Boxcar2 értesítés elküldve. Lépj be a Boxcar2 kliensbe, hogy ellenőrizd, minden jól működött-e" -#: sickbeard/webserve.py:928 +#: sickbeard/webserve.py:927 msgid "Error sending Boxcar2 notification" msgstr "Hiba a Boxcar2 értesítés elküldése közben" -#: sickbeard/webserve.py:935 +#: sickbeard/webserve.py:934 msgid "Pushover notification succeeded. Check your Pushover clients to make sure it worked" msgstr "Pushover értesítés elküldve. Lépj be a Pushover kliensbe, hogy ellenőrizd, minden jól működött-e" -#: sickbeard/webserve.py:937 +#: sickbeard/webserve.py:936 msgid "Error sending Pushover notification" msgstr "Hiba a Pushover értesítés elküldése közben" -#: sickbeard/webserve.py:949 +#: sickbeard/webserve.py:948 msgid "Key verification successful" msgstr "A kulcs igazolása sikerrel járt" -#: sickbeard/webserve.py:951 +#: sickbeard/webserve.py:950 msgid "Unable to verify key" msgstr "Nem sikerült a kulcs igazolása" -#: sickbeard/webserve.py:958 +#: sickbeard/webserve.py:957 msgid "Tweet successful, check your twitter to make sure it worked" msgstr "Tweet elküldve, ellenőrizd a Twittered, hogy minden jól működött-e" -#: sickbeard/webserve.py:960 +#: sickbeard/webserve.py:959 msgid "Error sending tweet" msgstr "Hiba a tweet küldése közben" -#: sickbeard/webserve.py:965 +#: sickbeard/webserve.py:964 msgid "Please enter a valid account sid" msgstr "" -#: sickbeard/webserve.py:968 +#: sickbeard/webserve.py:967 msgid "Please enter a valid auth token" msgstr "" -#: sickbeard/webserve.py:971 +#: sickbeard/webserve.py:970 msgid "Please enter a valid phone sid" msgstr "" -#: sickbeard/webserve.py:974 +#: sickbeard/webserve.py:973 msgid "Please format the phone number as \"+1-###-###-####\"" msgstr "" -#: sickbeard/webserve.py:978 +#: sickbeard/webserve.py:977 msgid "Authorization successful and number ownership verified" msgstr "" -#: sickbeard/webserve.py:980 +#: sickbeard/webserve.py:979 msgid "Error sending sms" msgstr "" -#: sickbeard/webserve.py:986 +#: sickbeard/webserve.py:985 msgid "Slack message successful" msgstr "Slack üzenet sikeresen elküldve" -#: sickbeard/webserve.py:988 +#: sickbeard/webserve.py:987 msgid "Slack message failed" msgstr "Slack üzenet küldése sikertelen" -#: sickbeard/webserve.py:994 +#: sickbeard/webserve.py:993 msgid "Discord message successful" msgstr "" -#: sickbeard/webserve.py:996 +#: sickbeard/webserve.py:995 msgid "Discord message failed" msgstr "" -#: sickbeard/webserve.py:1006 +#: sickbeard/webserve.py:1005 msgid "Test KODI notice sent successfully to {kodi_host}" msgstr "KODI tesztértesítés sikeresen elküldve a(z) {kodi_host} helyre" -#: sickbeard/webserve.py:1008 +#: sickbeard/webserve.py:1007 msgid "Test KODI notice failed to {kodi_host}" msgstr "KODI tesztértesítés {kodi_host} helyre küldése sikertelen" -#: sickbeard/webserve.py:1023 +#: sickbeard/webserve.py:1022 msgid "Successful test notice sent to Plex Home Theater ... {plex_clients}" msgstr "Tesztértesítés elküldve a Plex Home Theater számára ... {plex_clients}" -#: sickbeard/webserve.py:1025 +#: sickbeard/webserve.py:1024 msgid "Test failed for Plex Home Theater ... {plex_clients}" msgstr "A teszt elküldése a Plex Home Theater számára sikertelen ... {plex_clients}" -#: sickbeard/webserve.py:1028 +#: sickbeard/webserve.py:1027 msgid "Tested Plex Home Theater(s)" msgstr "Tesztelt Plex Home Theater kliens(ek)" -#: sickbeard/webserve.py:1042 +#: sickbeard/webserve.py:1041 msgid "Successful test of Plex Media Server(s) ... {plex_servers}" msgstr "Tesztértesítés elküldve a Plex Media Server(ek) számára ... {plex_servers}" -#: sickbeard/webserve.py:1044 +#: sickbeard/webserve.py:1043 msgid "Test failed, No Plex Media Server host specified" msgstr "A teszt sikertelen, nincs megadva Plex Media Server hoszt" -#: sickbeard/webserve.py:1046 +#: sickbeard/webserve.py:1045 msgid "Test failed for Plex Media Server(s) ... {plex_servers}" msgstr "A teszt elküldése a Plex Media Server(ek) számára sikertelen ... {plex_servers}" -#: sickbeard/webserve.py:1049 +#: sickbeard/webserve.py:1048 msgid "Tested Plex Media Server host(s)" msgstr "Tesztelt Plex Media Server hoszt(ok)" -#: sickbeard/webserve.py:1057 +#: sickbeard/webserve.py:1056 msgid "Tried sending desktop notification via libnotify" msgstr "Asztali értesítés küldése libnotify által" -#: sickbeard/webserve.py:1066 +#: sickbeard/webserve.py:1065 msgid "Test notice sent successfully to {emby_host}" msgstr "Tesztértesítés sikeresen elküldve ide: {emby_host}" -#: sickbeard/webserve.py:1068 +#: sickbeard/webserve.py:1067 msgid "Test notice failed to {emby_host}" msgstr "Tesztértesítés {emby_host} helyre küldése sikertelen" -#: sickbeard/webserve.py:1076 +#: sickbeard/webserve.py:1075 msgid "Successfully started the scan update" msgstr "Frissítés-ellenőrzés sikeresen elindítva" -#: sickbeard/webserve.py:1078 +#: sickbeard/webserve.py:1077 msgid "Test failed to start the scan update" msgstr "Frissítés-ellenőrzés elindítása sikertelen" -#: sickbeard/webserve.py:1097 +#: sickbeard/webserve.py:1096 msgid "Test notice sent successfully to {nmj2_host}" msgstr "Tesztértesítés sikeresen elküldve ide: {nmj2_host}" -#: sickbeard/webserve.py:1099 +#: sickbeard/webserve.py:1098 msgid "Test notice failed to {nmj2_host}" msgstr "Tesztértesítés {nmj2_host} helyre küldése sikertelen" -#: sickbeard/webserve.py:1119 +#: sickbeard/webserve.py:1118 msgid "Trakt Authorized" msgstr "Trakt engedélyezve" -#: sickbeard/webserve.py:1120 +#: sickbeard/webserve.py:1119 msgid "Trakt Not Authorized!" msgstr "Trakt nincs engedélyezve!" -#: sickbeard/webserve.py:1184 +#: sickbeard/webserve.py:1183 msgid "Test email sent successfully! Check inbox." msgstr "Teszt e-mail sikeresen elküldve. Ellenőrizd a bejövő levelidet." -#: sickbeard/webserve.py:1186 +#: sickbeard/webserve.py:1185 msgid "ERROR: {last_error}" msgstr "HIBA: {last_error}" -#: sickbeard/webserve.py:1193 +#: sickbeard/webserve.py:1192 msgid "Test NMA notice sent successfully" msgstr "NMA tesztértesítés elküldve" -#: sickbeard/webserve.py:1195 +#: sickbeard/webserve.py:1194 msgid "Test NMA notice failed" msgstr "NMA tesztértesítés elküldése sikertelen" -#: sickbeard/webserve.py:1202 +#: sickbeard/webserve.py:1201 msgid "Pushalot notification succeeded. Check your Pushalot clients to make sure it worked" msgstr "Pushalot értesítés elküldve. Lépj be a Pushalot kliensbe, hogy ellenőrizd, minden jól működött-e" -#: sickbeard/webserve.py:1204 +#: sickbeard/webserve.py:1203 msgid "Error sending Pushalot notification" msgstr "Hiba a Pushalot értesítés elküldése közben" -#: sickbeard/webserve.py:1211 +#: sickbeard/webserve.py:1210 msgid "Pushbullet notification succeeded. Check your device to make sure it worked" msgstr "Pushbullet értesítés elküldve. Ellenőrizd a készüléked, hogy minden jól működött-e" -#: sickbeard/webserve.py:1213 sickbeard/webserve.py:1223 sickbeard/webserve.py:1232 +#: sickbeard/webserve.py:1212 sickbeard/webserve.py:1222 sickbeard/webserve.py:1231 msgid "Error sending Pushbullet notification" msgstr "Hiba a Pushbullet értesítés elküldése közben" #: gui/slick/views/displayShow.mako:436 gui/slick/views/inc_home_showList.mako:174 -#: gui/slick/views/manage.mako:49 sickbeard/webserve.py:1249 +#: gui/slick/views/manage.mako:49 sickbeard/webserve.py:1248 msgid "Status" msgstr "Állapot" -#: sickbeard/webserve.py:1268 sickbeard/webserve.py:1297 +#: sickbeard/webserve.py:1267 sickbeard/webserve.py:1296 msgid "Restarting SickRage" msgstr "SickRage újraindítás" -#: sickbeard/webserve.py:1300 +#: sickbeard/webserve.py:1299 msgid "Update Failed" msgstr "Frissítés sikertelen" -#: sickbeard/webserve.py:1301 +#: sickbeard/webserve.py:1300 msgid "Update wasn't successful, not restarting. Check your log for more information." msgstr "A frissítés nem sikerült, így nincs újraindítás. Tekintsd meg a naplófájlt a részletekért." -#: sickbeard/webserve.py:1308 +#: sickbeard/webserve.py:1307 msgid "Checking out branch" msgstr "Ágazat ellenőrzése" -#: sickbeard/webserve.py:1311 +#: sickbeard/webserve.py:1310 msgid "Already on branch" msgstr "Legfrissebb ágazat telepítve" -#: sickbeard/webserve.py:1339 +#: sickbeard/webserve.py:1338 msgid "Invalid show ID: {show}" msgstr "Érvénytelen műsor azonosító: {show}" -#: sickbeard/webserve.py:1342 sickbeard/webserve.py:1871 sickbeard/webserve.py:2002 -#: sickbeard/webserve.py:2040 +#: sickbeard/webserve.py:1341 sickbeard/webserve.py:1870 sickbeard/webserve.py:2001 +#: sickbeard/webserve.py:2039 msgid "Show not in show list" msgstr "A műsor nincs a listán" #: gui/slick/views/inc_rootDirs.mako:31 gui/slick/views/manage.mako:38 -#: gui/slick/views/manage_massEdit.mako:74 sickbeard/webserve.py:1358 -#: sickbeard/webserve.py:2027 +#: gui/slick/views/manage_massEdit.mako:74 sickbeard/webserve.py:1357 +#: sickbeard/webserve.py:2026 msgid "Edit" msgstr "Szerkesztés" -#: sickbeard/webserve.py:1368 +#: sickbeard/webserve.py:1367 msgid "This show is in the process of being downloaded - the info below is incomplete." msgstr "Ez a sorozat letöltés alatt van - a lenti információ nem teljes." -#: sickbeard/webserve.py:1371 +#: sickbeard/webserve.py:1370 msgid "The information on this page is in the process of being updated." msgstr "Az oldalon található információk frissítés alatt vannak." -#: sickbeard/webserve.py:1374 +#: sickbeard/webserve.py:1373 msgid "The episodes below are currently being refreshed from disk" msgstr "A lenti epizódok frissítés alatt vannak a lemezről" -#: sickbeard/webserve.py:1377 +#: sickbeard/webserve.py:1376 msgid "Currently downloading subtitles for this show" msgstr "Ehhez a sorozathoz feliratot töltünk le" -#: sickbeard/webserve.py:1380 +#: sickbeard/webserve.py:1379 msgid "This show is queued to be refreshed." msgstr "A sorozat frissítése ütemezve." -#: sickbeard/webserve.py:1383 +#: sickbeard/webserve.py:1382 msgid "This show is queued and awaiting an update." msgstr "" -#: sickbeard/webserve.py:1386 +#: sickbeard/webserve.py:1385 msgid "This show is queued and awaiting subtitles download." msgstr "" -#: gui/slick/js/core.js:4081 sickbeard/webserve.py:1391 +#: gui/slick/js/core.js:4081 sickbeard/webserve.py:1390 msgid "Resume" msgstr "Visszaállítás" #: gui/slick/js/core.js:4081 gui/slick/views/viewlogs.mako:12 -#: sickbeard/webserve.py:1393 +#: sickbeard/webserve.py:1392 msgid "Pause" msgstr "Szünet" #: gui/slick/views/editShow.mako:345 gui/slick/views/inc_blackwhitelist.mako:40 #: gui/slick/views/inc_blackwhitelist.mako:85 gui/slick/views/manage.mako:58 -#: gui/slick/views/manage_failedDownloads.mako:43 sickbeard/webserve.py:1395 +#: gui/slick/views/manage_failedDownloads.mako:43 sickbeard/webserve.py:1394 msgid "Remove" msgstr "Eltávolít" -#: sickbeard/webserve.py:1396 +#: sickbeard/webserve.py:1395 msgid "Re-scan files" msgstr "Fájlok újraolvasása" -#: sickbeard/webserve.py:1397 +#: sickbeard/webserve.py:1396 msgid "Force Full Update" msgstr "Teljes frissítés kényszerítése" -#: sickbeard/webserve.py:1398 +#: sickbeard/webserve.py:1397 msgid "Update show in KODI" msgstr "Sorozat frissítése a KODI-ban." -#: sickbeard/webserve.py:1399 +#: sickbeard/webserve.py:1398 msgid "Update show in Emby" msgstr "Sorozat frissítése az Emby-ben." -#: sickbeard/webserve.py:1402 +#: sickbeard/webserve.py:1401 msgid "Hide specials" msgstr "Extrák elrejtése" -#: sickbeard/webserve.py:1404 +#: sickbeard/webserve.py:1403 msgid "Show specials" msgstr "Extrák mutatása" -#: sickbeard/webserve.py:1406 sickbeard/webserve.py:2030 sickbeard/webserve.py:2031 +#: sickbeard/webserve.py:1405 sickbeard/webserve.py:2029 sickbeard/webserve.py:2030 msgid "Preview Rename" msgstr "" -#: sickbeard/webserve.py:1409 +#: sickbeard/webserve.py:1408 msgid "Download Subtitles" msgstr "Felirat letöltése" -#: sickbeard/webserve.py:1498 +#: sickbeard/webserve.py:1497 msgid "No scene exceptions" msgstr "" -#: sickbeard/webserve.py:1516 sickbeard/webserve.py:1764 sickbeard/webserve.py:1785 +#: sickbeard/webserve.py:1515 sickbeard/webserve.py:1763 sickbeard/webserve.py:1784 msgid "Invalid show ID" msgstr "Érvénytelen műsor azonosító" -#: sickbeard/webserve.py:1525 sickbeard/webserve.py:1769 sickbeard/webserve.py:1790 +#: sickbeard/webserve.py:1524 sickbeard/webserve.py:1768 sickbeard/webserve.py:1789 msgid "Unable to find the specified show" msgstr "Nem sikerült megtalálni a műsort" -#: sickbeard/webserve.py:1550 +#: sickbeard/webserve.py:1549 msgid "Unable to retreive Fansub Groups from AniDB." msgstr "" -#: sickbeard/webserve.py:1559 sickbeard/webserve.py:1561 +#: sickbeard/webserve.py:1558 sickbeard/webserve.py:1560 msgid "Edit Show" msgstr "Műsor szerkesztése" -#: sickbeard/webserve.py:1637 sickbeard/webserve.py:1671 +#: sickbeard/webserve.py:1636 sickbeard/webserve.py:1670 msgid "Unable to refresh this show: {error}" msgstr "" -#: sickbeard/webserve.py:1663 +#: sickbeard/webserve.py:1662 msgid "New location <tt>{location}</tt> does not exist" msgstr "" -#: sickbeard/webserve.py:1688 +#: sickbeard/webserve.py:1687 msgid "Unable to update show: {error}" msgstr "Nem lehet frissíteni a sorozatot: {error}" -#: sickbeard/webserve.py:1695 +#: sickbeard/webserve.py:1694 msgid "Unable to force an update on scene exceptions of the show." msgstr "" -#: sickbeard/webserve.py:1702 +#: sickbeard/webserve.py:1701 msgid "Unable to force an update on scene numbering of the show." msgstr "" -#: sickbeard/webserve.py:1708 sickbeard/webserve.py:3540 +#: sickbeard/webserve.py:1707 sickbeard/webserve.py:3539 msgid "{num_errors:d} error{plural} while saving changes:" msgstr "" -#: sickbeard/webserve.py:1719 +#: sickbeard/webserve.py:1718 msgid "{show_name} has been {paused_resumed}" msgstr "" -#: sickbeard/webserve.py:1719 +#: sickbeard/webserve.py:1718 msgid "resumed" msgstr "folytatódik" -#: sickbeard/webserve.py:1719 +#: sickbeard/webserve.py:1718 msgid "paused" msgstr "szünetel" -#: sickbeard/webserve.py:1731 +#: sickbeard/webserve.py:1730 msgid "{show_name} has been {deleted_trashed} {was_deleted}" msgstr "{show_name} volt {deleted_trashed} {was_deleted}" -#: sickbeard/webserve.py:1733 +#: sickbeard/webserve.py:1732 msgid "deleted" msgstr "törölve" -#: sickbeard/webserve.py:1733 +#: sickbeard/webserve.py:1732 msgid "trashed" msgstr "kidobott" -#: sickbeard/webserve.py:1734 +#: sickbeard/webserve.py:1733 msgid "(media untouched)" msgstr "(média érintetlen)" -#: sickbeard/webserve.py:1734 +#: sickbeard/webserve.py:1733 msgid "(with all related media)" msgstr "" -#: sickbeard/webserve.py:1755 +#: sickbeard/webserve.py:1754 msgid "Unable to refresh this show." msgstr "" -#: sickbeard/webserve.py:1775 +#: sickbeard/webserve.py:1774 msgid "Unable to update this show." msgstr "Nem sikerült frissíteni ezen a sorozatot." -#: sickbeard/webserve.py:1814 +#: sickbeard/webserve.py:1813 msgid "Library update command sent to KODI host(s)): {kodi_hosts}" msgstr "" -#: sickbeard/webserve.py:1816 +#: sickbeard/webserve.py:1815 msgid "Unable to contact one or more KODI host(s)): {kodi_hosts}" msgstr "" -#: sickbeard/webserve.py:1825 +#: sickbeard/webserve.py:1824 msgid "Library update command sent to Plex Media Server host: {plex_server}" msgstr "" -#: sickbeard/webserve.py:1828 +#: sickbeard/webserve.py:1827 msgid "Unable to contact Plex Media Server host: {plex_server}" msgstr "" -#: sickbeard/webserve.py:1840 +#: sickbeard/webserve.py:1839 msgid "Library update command sent to Emby host: {emby_host}" msgstr "" -#: sickbeard/webserve.py:1842 +#: sickbeard/webserve.py:1841 msgid "Unable to contact Emby host: {emby_host}" msgstr "" -#: sickbeard/webserve.py:1852 sickbeard/webserve.py:2036 +#: sickbeard/webserve.py:1851 sickbeard/webserve.py:2035 msgid "You must specify a show and at least one episode" msgstr "" -#: sickbeard/webserve.py:1861 +#: sickbeard/webserve.py:1860 msgid "Invalid status" msgstr "Érvénytelen állapot" -#: sickbeard/webserve.py:1954 +#: sickbeard/webserve.py:1953 msgid "Backlog was automatically started for the following seasons of <b>{show_name}</b>" msgstr "" #: gui/slick/views/displayShow.mako:74 gui/slick/views/displayShow.mako:79 -#: gui/slick/views/displayShow.mako:404 sickbeard/webserve.py:1961 -#: sickbeard/webserve.py:1980 +#: gui/slick/views/displayShow.mako:404 sickbeard/webserve.py:1960 +#: sickbeard/webserve.py:1979 msgid "Season" msgstr "Évad" -#: sickbeard/webserve.py:1968 +#: sickbeard/webserve.py:1967 msgid "Backlog started" msgstr "" -#: sickbeard/webserve.py:1973 +#: sickbeard/webserve.py:1972 msgid "Retrying Search was automatically started for the following season of <b>{show_name}</b>" msgstr "" -#: sickbeard/webserve.py:1987 +#: sickbeard/webserve.py:1986 msgid "Retry Search started" msgstr "" -#: sickbeard/webserve.py:1997 +#: sickbeard/webserve.py:1996 msgid "You must specify a show" msgstr "" -#: sickbeard/webserve.py:2007 sickbeard/webserve.py:2045 +#: sickbeard/webserve.py:2006 sickbeard/webserve.py:2044 msgid "Can't rename episodes when the show dir is missing." msgstr "" -#: sickbeard/webserve.py:2212 sickbeard/webserve.py:2233 +#: sickbeard/webserve.py:2211 sickbeard/webserve.py:2232 msgid "New subtitles downloaded: {new_subtitle_languages}" msgstr "" -#: sickbeard/webserve.py:2215 sickbeard/webserve.py:2236 +#: sickbeard/webserve.py:2214 sickbeard/webserve.py:2235 msgid "No subtitles downloaded" msgstr "" #: gui/slick/views/config_general.mako:80 gui/slick/views/layouts/main.mako:222 -#: sickbeard/webserve.py:2363 +#: sickbeard/webserve.py:2362 msgid "IRC" msgstr "IRC" -#: sickbeard/webserve.py:2376 +#: sickbeard/webserve.py:2375 msgid "Could not load news from the repo. [Click here for news.md])({news_url})" msgstr "" -#: sickbeard/webserve.py:2383 sickbeard/webserve.py:2401 +#: sickbeard/webserve.py:2382 sickbeard/webserve.py:2400 msgid "The was a problem connecting to github, please refresh and try again" msgstr "" -#: sickbeard/webserve.py:2398 +#: sickbeard/webserve.py:2397 msgid "Could not load changes from the repo. [Click here for CHANGES.md]({changes_url})" msgstr "Nem tölthetők be a változások a repóból. [Kattints ide a CHANGES.md fájl megtekintéséhez]({changes_url})" -#: gui/slick/views/layouts/main.mako:223 sickbeard/webserve.py:2403 +#: gui/slick/views/layouts/main.mako:223 sickbeard/webserve.py:2402 msgid "Changelog" msgstr "Újdonságok" -#: gui/slick/views/layouts/main.mako:190 sickbeard/webserve.py:2413 -#: sickbeard/webserve.py:3855 sickbeard/webserve.py:4341 +#: gui/slick/views/layouts/main.mako:190 sickbeard/webserve.py:2412 +#: sickbeard/webserve.py:3826 sickbeard/webserve.py:4312 msgid "Post Processing" msgstr "Utófeldolgozás" -#: gui/slick/views/layouts/main.mako:128 sickbeard/webserve.py:2445 +#: gui/slick/views/layouts/main.mako:128 sickbeard/webserve.py:2444 msgid "Add Shows" msgstr "Műsorok hozzáadása" -#: sickbeard/webserve.py:2510 +#: sickbeard/webserve.py:2509 msgid "No folders selected." msgstr "Nincsenek kiválasztott mappák." -#: sickbeard/webserve.py:2632 +#: sickbeard/webserve.py:2631 msgid "New Show" msgstr "Új műsor" -#: sickbeard/webserve.py:2647 +#: sickbeard/webserve.py:2646 msgid "Trending Shows" msgstr "Felkapott műsorok" -#: sickbeard/webserve.py:2649 sickbeard/webserve.py:2772 +#: sickbeard/webserve.py:2648 sickbeard/webserve.py:2771 msgid "Popular Shows" msgstr "Népszerű műsorok" -#: sickbeard/webserve.py:2651 sickbeard/webserve.py:2665 +#: sickbeard/webserve.py:2650 sickbeard/webserve.py:2664 msgid "Most Anticipated Shows" msgstr "Leginkább várt műsorok" -#: sickbeard/webserve.py:2653 +#: sickbeard/webserve.py:2652 msgid "Most Collected Shows" msgstr "" -#: sickbeard/webserve.py:2655 +#: sickbeard/webserve.py:2654 msgid "Most Watched Shows" msgstr "" -#: sickbeard/webserve.py:2657 +#: sickbeard/webserve.py:2656 msgid "Most Played Shows" msgstr "" -#: sickbeard/webserve.py:2659 +#: sickbeard/webserve.py:2658 msgid "Recommended Shows" msgstr "" -#: gui/slick/views/addShows_trendingShows.mako:60 sickbeard/webserve.py:2661 +#: gui/slick/views/addShows_trendingShows.mako:60 sickbeard/webserve.py:2660 msgid "New Shows" msgstr "Új műsorok" -#: gui/slick/views/addShows_trendingShows.mako:61 sickbeard/webserve.py:2663 +#: gui/slick/views/addShows_trendingShows.mako:61 sickbeard/webserve.py:2662 msgid "Season Premieres" msgstr "Évad-premierek" -#: sickbeard/webserve.py:2792 sickbeard/webserve.py:2793 +#: sickbeard/webserve.py:2791 sickbeard/webserve.py:2792 msgid "Existing Show" msgstr "Meglévő műsor" -#: sickbeard/webserve.py:2871 +#: sickbeard/webserve.py:2870 msgid "No root directories setup, please go back and add one." msgstr "Nincs megadva gyökérmappa, kérlek lépj vissza és adj meg egyet." -#: sickbeard/webserve.py:2883 sickbeard/webserve.py:3002 +#: sickbeard/webserve.py:2882 sickbeard/webserve.py:3001 msgid "Show added" msgstr "Műsor hozzáadva" -#: sickbeard/webserve.py:2883 +#: sickbeard/webserve.py:2882 msgid "Adding the specified show {show_name}" msgstr "{show_name} hozzáadása" -#: sickbeard/webserve.py:2924 +#: sickbeard/webserve.py:2923 msgid "Missing params, no Indexer ID or folder: {show_to_add} and {root_dir}/{show_path}" msgstr "Hiányzó paraméterek, nincs Indexer ID vagy mappa: {show_to_add} és {root_dir}/{show_path}" -#: sickbeard/webserve.py:2933 +#: sickbeard/webserve.py:2932 msgid "Unknown error. Unable to add show due to problem with show selection." msgstr "Ismeretlen hiba történt. Sikertelen a műsor hozzáadása egy műsorválasztási hiba miatt." -#: sickbeard/webserve.py:2957 sickbeard/webserve.py:2967 +#: sickbeard/webserve.py:2956 sickbeard/webserve.py:2966 msgid "Unable to add show" msgstr "Nem sikerült a műsort hozzáadni" -#: sickbeard/webserve.py:2957 +#: sickbeard/webserve.py:2956 msgid "Folder {show_dir} exists already" msgstr "A(z) {show_dir} mappa már létezik" -#: sickbeard/webserve.py:2968 +#: sickbeard/webserve.py:2967 msgid "Unable to create the folder {show_dir}, can't add the show" msgstr "Nem sikerült létrehozni a(z) {show_dir} mappát, ezért a műsor hozzáadása sem lehetséges" -#: sickbeard/webserve.py:3002 +#: sickbeard/webserve.py:3001 msgid "Adding the specified show into {show_dir}" msgstr "Egy megadott műsor hozzáadása a(z) {show_dir} mappába" -#: sickbeard/webserve.py:3078 +#: sickbeard/webserve.py:3077 msgid "Shows Added" msgstr "Műsorok hozzáadva" -#: sickbeard/webserve.py:3079 +#: sickbeard/webserve.py:3078 msgid "Automatically added {num_shows} from their existing metadata files" msgstr "Automatikusan hozzáadja a {num_shows} a meglévő metaadat-fájlokból" -#: gui/slick/views/layouts/main.mako:153 sickbeard/webserve.py:3096 +#: gui/slick/views/layouts/main.mako:153 sickbeard/webserve.py:3095 msgid "Mass Update" msgstr "Tömeges frissítés" -#: sickbeard/webserve.py:3134 sickbeard/webserve.py:3161 sickbeard/webserve.py:3237 -#: sickbeard/webserve.py:3238 +#: sickbeard/webserve.py:3133 sickbeard/webserve.py:3160 sickbeard/webserve.py:3236 +#: sickbeard/webserve.py:3237 msgid "Episode Overview" msgstr "Epizód áttekintés" -#: sickbeard/webserve.py:3270 +#: sickbeard/webserve.py:3269 msgid "Missing Subtitles" msgstr "Hiányzó feliratok" -#: gui/slick/views/layouts/main.mako:154 sickbeard/webserve.py:3356 -#: sickbeard/webserve.py:3357 +#: gui/slick/views/layouts/main.mako:154 sickbeard/webserve.py:3355 +#: sickbeard/webserve.py:3356 msgid "Backlog Overview" msgstr "Elmaradások áttekintése" -#: sickbeard/webserve.py:3481 +#: sickbeard/webserve.py:3480 msgid "Mass Edit" msgstr "Tömeges szerkesztés" -#: sickbeard/webserve.py:3586 +#: sickbeard/webserve.py:3585 msgid "Unable to update show: {excption_format}" msgstr "A műsor frissítése sikertelen: {excption_format}" -#: sickbeard/webserve.py:3594 +#: sickbeard/webserve.py:3593 msgid "Unable to refresh show {show_name}: {excption_format}" msgstr "A(z) {show_name} frissítése sikertelen: {excption_format}" -#: sickbeard/webserve.py:3605 +#: sickbeard/webserve.py:3604 msgid "Errors encountered" msgstr "Hiba történt" -#: gui/slick/views/config_general.mako:261 sickbeard/webserve.py:3611 +#: gui/slick/views/config_general.mako:261 sickbeard/webserve.py:3610 msgid "Updates" msgstr "Frissítések" -#: sickbeard/webserve.py:3616 +#: sickbeard/webserve.py:3615 msgid "Refreshes" msgstr "Frissít" -#: sickbeard/webserve.py:3621 +#: sickbeard/webserve.py:3620 msgid "Renames" msgstr "Átnevezése" #: gui/slick/views/displayShow.mako:260 gui/slick/views/displayShow.mako:435 #: gui/slick/views/editShow.mako:119 gui/slick/views/inc_addShowOptions.mako:20 -#: gui/slick/views/manage_massEdit.mako:262 sickbeard/webserve.py:3626 -#: sickbeard/webserve.py:5244 +#: gui/slick/views/manage_massEdit.mako:262 sickbeard/webserve.py:3625 +#: sickbeard/webserve.py:5215 msgid "Subtitles" msgstr "Feliratok" -#: sickbeard/webserve.py:3631 +#: sickbeard/webserve.py:3630 msgid "The following actions were queued" msgstr "A következő műveletek lettek sorba állítva" -#: sickbeard/webserve.py:3651 -msgid "For best results please set the Download Station alias as" -msgstr "A legjobb eredmény érdekében állítsa be a Download Station aliasnevét a következőre:" - -#: sickbeard/webserve.py:3652 -msgid "You can check this setting in the Synology DSM" -msgstr "Ellenőrizheted ezt a beállítást a Synology DSM-ben" - -#: sickbeard/webserve.py:3652 sickbeard/webserve.py:3654 -msgid "Control Panel" -msgstr "Vezérlőpult" - -#: sickbeard/webserve.py:3652 -msgid "Application Portal" -msgstr "Applikáció-portál" - -#: sickbeard/webserve.py:3653 -msgid "Make sure you allow DSM to be embedded with iFrames too in" -msgstr "Ne felejtsd el engedélyezni a DSM-et, hogy iFrame-be is be lehessen ágyazni" - -#: sickbeard/webserve.py:3654 -msgid "DSM Settings" -msgstr "DSM beállítások" - -#: sickbeard/webserve.py:3654 -msgid "Security" -msgstr "Biztonság" - -#: gui/slick/views/layouts/main.mako:167 sickbeard/webserve.py:3662 -msgid "Manage Torrents" -msgstr "Torrentek kezelése" - -#: gui/slick/views/layouts/main.mako:170 sickbeard/webserve.py:3683 +#: gui/slick/views/layouts/main.mako:170 sickbeard/webserve.py:3654 msgid "Failed Downloads" msgstr "Sikertelen letöltések" -#: gui/slick/views/layouts/main.mako:155 sickbeard/webserve.py:3701 +#: gui/slick/views/layouts/main.mako:155 sickbeard/webserve.py:3672 msgid "Manage Searches" msgstr "Keresések kezelése" -#: sickbeard/webserve.py:3709 +#: sickbeard/webserve.py:3680 msgid "Backlog search started" msgstr "Elmaradások keresése elindult" -#: sickbeard/webserve.py:3719 +#: sickbeard/webserve.py:3690 msgid "Daily search started" msgstr "Napi keresés elindult" -#: sickbeard/webserve.py:3728 +#: sickbeard/webserve.py:3699 msgid "Find propers search started" msgstr "" -#: sickbeard/webserve.py:3737 +#: sickbeard/webserve.py:3708 msgid "Subtitle search started" msgstr "Feliratok keresése elindult" -#: sickbeard/webserve.py:3801 +#: sickbeard/webserve.py:3772 msgid "Remove Selected" msgstr "" -#: sickbeard/webserve.py:3802 +#: sickbeard/webserve.py:3773 msgid "Clear History" msgstr "Előzmények törlése" -#: sickbeard/webserve.py:3803 +#: sickbeard/webserve.py:3774 msgid "Trim History" msgstr "Előzmények csökkentése" -#: sickbeard/webserve.py:3823 +#: sickbeard/webserve.py:3794 msgid "Selected history entries removed" msgstr "" -#: sickbeard/webserve.py:3830 +#: sickbeard/webserve.py:3801 msgid "History cleared" msgstr "Előzmények törölve" -#: sickbeard/webserve.py:3837 +#: sickbeard/webserve.py:3808 msgid "Removed history entries older than 30 days" msgstr "30 napnál régebbi bejegyzések eltávolítva" -#: gui/slick/views/layouts/main.mako:185 sickbeard/webserve.py:3850 +#: gui/slick/views/layouts/main.mako:185 sickbeard/webserve.py:3821 msgid "General" msgstr "Általános" -#: sickbeard/webserve.py:3851 sickbeard/webserve.py:4143 +#: sickbeard/webserve.py:3822 sickbeard/webserve.py:4114 msgid "Backup/Restore" msgstr "Mentés/Visszaállítás" -#: gui/slick/views/layouts/main.mako:187 sickbeard/webserve.py:3852 -#: sickbeard/webserve.py:4206 +#: gui/slick/views/layouts/main.mako:187 sickbeard/webserve.py:3823 +#: sickbeard/webserve.py:4177 msgid "Search Settings" msgstr "Keresési beállítások" -#: gui/slick/views/layouts/main.mako:188 sickbeard/webserve.py:3853 -#: sickbeard/webserve.py:4518 +#: gui/slick/views/layouts/main.mako:188 sickbeard/webserve.py:3824 +#: sickbeard/webserve.py:4489 msgid "Search Providers" msgstr "Keresőmotorok" -#: gui/slick/views/layouts/main.mako:189 sickbeard/webserve.py:3854 +#: gui/slick/views/layouts/main.mako:189 sickbeard/webserve.py:3825 msgid "Subtitles Settings" msgstr "Feliratok Beállításai" -#: gui/slick/views/layouts/main.mako:191 sickbeard/webserve.py:3856 -#: sickbeard/webserve.py:4964 +#: gui/slick/views/layouts/main.mako:191 sickbeard/webserve.py:3827 +#: sickbeard/webserve.py:4935 msgid "Notifications" msgstr "Értesítések" @@ -1240,142 +1237,142 @@ msgstr "Értesítések" #: gui/slick/views/home.mako:35 gui/slick/views/inc_addShowOptions.mako:79 #: gui/slick/views/inc_home_showList.mako:179 gui/slick/views/layouts/main.mako:192 #: gui/slick/views/manage.mako:44 gui/slick/views/manage_massEdit.mako:202 -#: sickbeard/webserve.py:3857 sickbeard/webserve.py:5309 +#: sickbeard/webserve.py:3828 sickbeard/webserve.py:5280 msgid "Anime" msgstr "Anime" -#: sickbeard/webserve.py:3895 sickbeard/webserve.py:3896 +#: sickbeard/webserve.py:3866 sickbeard/webserve.py:3867 msgid "SickRage Configuration" msgstr "SickRage beállítás" -#: sickbeard/webserve.py:3910 +#: sickbeard/webserve.py:3881 msgid "Config - Shares" msgstr "" -#: sickbeard/webserve.py:3910 +#: sickbeard/webserve.py:3881 msgid "Windows Shares Configuration" msgstr "" -#: sickbeard/webserve.py:3937 +#: sickbeard/webserve.py:3908 msgid "Saved Shares" msgstr "" -#: sickbeard/webserve.py:3937 +#: sickbeard/webserve.py:3908 msgid "Your Windows share settings have been saved" msgstr "" -#: sickbeard/webserve.py:3948 +#: sickbeard/webserve.py:3919 msgid "Config - General" msgstr "Beállítások - Általános" -#: sickbeard/webserve.py:3948 +#: sickbeard/webserve.py:3919 msgid "General Configuration" msgstr "Általános Beállítások" -#: sickbeard/webserve.py:3988 +#: sickbeard/webserve.py:3959 msgid "Saved Defaults" msgstr "" -#: sickbeard/webserve.py:3988 +#: sickbeard/webserve.py:3959 msgid "Your \"add show\" defaults have been set to your current selections." msgstr "" -#: sickbeard/webserve.py:4095 +#: sickbeard/webserve.py:4066 msgid "Unable to create directory {directory}, log directory not changed." msgstr "" -#: sickbeard/webserve.py:4103 +#: sickbeard/webserve.py:4074 msgid "Unable to create directory {directory}, https cert directory not changed." msgstr "" -#: sickbeard/webserve.py:4107 +#: sickbeard/webserve.py:4078 msgid "Unable to create directory {directory}, https key directory not changed." msgstr "" -#: sickbeard/webserve.py:4126 sickbeard/webserve.py:4324 sickbeard/webserve.py:4456 -#: sickbeard/webserve.py:5227 +#: sickbeard/webserve.py:4097 sickbeard/webserve.py:4295 sickbeard/webserve.py:4427 +#: sickbeard/webserve.py:5198 msgid "Error(s) Saving Configuration" msgstr "" -#: sickbeard/webserve.py:4129 sickbeard/webserve.py:4327 sickbeard/webserve.py:4458 -#: sickbeard/webserve.py:4950 sickbeard/webserve.py:5230 sickbeard/webserve.py:5294 -#: sickbeard/webserve.py:5323 +#: sickbeard/webserve.py:4100 sickbeard/webserve.py:4298 sickbeard/webserve.py:4429 +#: sickbeard/webserve.py:4921 sickbeard/webserve.py:5201 sickbeard/webserve.py:5265 +#: sickbeard/webserve.py:5294 msgid "Configuration Saved" msgstr "Beállítás mentve" -#: sickbeard/webserve.py:4142 +#: sickbeard/webserve.py:4113 msgid "Config - Backup/Restore" msgstr "Beállítások - biztonsági mentés és visszaállítás" -#: sickbeard/webserve.py:4205 +#: sickbeard/webserve.py:4176 msgid "Config - Episode Search" msgstr "Beállítások - Epizód Keresés" -#: sickbeard/webserve.py:4340 +#: sickbeard/webserve.py:4311 msgid "Config - Post Processing" msgstr "Beállítások - Utófeldolgozás" -#: sickbeard/webserve.py:4380 +#: sickbeard/webserve.py:4351 msgid "Unpacking Not Supported, disabling unpack setting" msgstr "" -#: sickbeard/webserve.py:4431 +#: sickbeard/webserve.py:4402 msgid "You tried saving an invalid normal naming config, not saving your naming settings" msgstr "" -#: sickbeard/webserve.py:4439 +#: sickbeard/webserve.py:4410 msgid "You tried saving an invalid anime naming config, not saving your naming settings" msgstr "" -#: sickbeard/webserve.py:4517 +#: sickbeard/webserve.py:4488 msgid "Config - Providers" msgstr "Beállítás - Szolgáltatók" -#: sickbeard/webserve.py:4547 +#: sickbeard/webserve.py:4518 msgid "No Provider Name specified" msgstr "" -#: sickbeard/webserve.py:4549 +#: sickbeard/webserve.py:4520 msgid "No Provider Url specified" msgstr "" -#: sickbeard/webserve.py:4551 +#: sickbeard/webserve.py:4522 msgid "No Provider Api key specified" msgstr "" -#: sickbeard/webserve.py:4963 +#: sickbeard/webserve.py:4934 msgid "Config - Notifications" msgstr "Beállítások - Értesítések" -#: sickbeard/webserve.py:5243 +#: sickbeard/webserve.py:5214 msgid "Config - Subtitles" msgstr "Beállítások - Feliratok" -#: sickbeard/webserve.py:5308 +#: sickbeard/webserve.py:5279 msgid "Config - Anime" msgstr "Beállítások - Anime" -#: sickbeard/webserve.py:5336 +#: sickbeard/webserve.py:5307 msgid "Clear Errors" msgstr "Hibák törlése" -#: sickbeard/webserve.py:5342 +#: sickbeard/webserve.py:5313 msgid "Clear Warnings" msgstr "Figyelmeztetések törlése" -#: sickbeard/webserve.py:5348 +#: sickbeard/webserve.py:5319 msgid "Submit Errors" msgstr "" -#: sickbeard/webserve.py:5363 +#: sickbeard/webserve.py:5334 msgid "Logs & Errors" msgstr "Naplók & Hibák" -#: sickbeard/webserve.py:5388 +#: sickbeard/webserve.py:5359 msgid "Log File" msgstr "Naplófájl" -#: sickbeard/webserve.py:5388 +#: sickbeard/webserve.py:5359 msgid "Logs" msgstr "Naplók" @@ -1383,30 +1380,166 @@ msgstr "Naplók" msgid "This is a test notification from SickRage" msgstr "" -#: gui/slick/js/core.js:481 gui/slick/js/core.js:502 gui/slick/js/core.js:524 -#: gui/slick/js/core.js:548 gui/slick/js/core.js:573 gui/slick/js/core.js:596 -#: gui/slick/js/core.js:625 gui/slick/js/core.js:645 gui/slick/js/core.js:690 -#: gui/slick/js/core.js:769 gui/slick/js/core.js:829 gui/slick/js/core.js:849 -#: gui/slick/js/core.js:879 gui/slick/js/core.js:909 gui/slick/js/core.js:969 -#: gui/slick/js/core.js:1046 gui/slick/js/core.js:1066 gui/slick/js/core.js:1085 +#: gui/slick/js/browser.js:6 +msgid "Choose Directory" +msgstr "" + +#: gui/slick/js/core.js:443 +msgid "Select log file folder location" +msgstr "" + +#: gui/slick/js/core.js:445 +msgid "Select CSS file" +msgstr "" + +#: gui/slick/js/core.js:469 +msgid "Select backup folder to save to" +msgstr "" + +#: gui/slick/js/core.js:470 +msgid "Select backup files to restore" +msgstr "" + +#: gui/slick/js/core.js:479 gui/slick/js/core.js:500 gui/slick/js/core.js:522 +#: gui/slick/js/core.js:546 gui/slick/js/core.js:571 gui/slick/js/core.js:594 +#: gui/slick/js/core.js:623 gui/slick/js/core.js:643 gui/slick/js/core.js:688 +#: gui/slick/js/core.js:767 gui/slick/js/core.js:827 gui/slick/js/core.js:847 +#: gui/slick/js/core.js:877 gui/slick/js/core.js:907 gui/slick/js/core.js:967 +#: gui/slick/js/core.js:1044 gui/slick/js/core.js:1064 gui/slick/js/core.js:1083 msgid "Please fill out the necessary fields above." msgstr "" -#: gui/slick/js/core.js:1328 gui/slick/js/core.js:1378 gui/slick/js/core.js:1427 -#: gui/slick/js/core.js:1493 +#: gui/slick/js/core.js:680 +msgid "<b>Step 1:</b> Confirm Authorization" +msgstr "" + +#: gui/slick/js/core.js:977 +msgid "Check blacklist name; the value needs to be a trakt slug" +msgstr "" + +#: gui/slick/js/core.js:1022 +msgid "You must provide a recipient email address!" +msgstr "" + +#: gui/slick/js/core.js:1107 +msgid "You didn't supply a Pushbullet api key" +msgstr "" + +#: gui/slick/js/core.js:1133 gui/slick/js/core.js:1162 +msgid "Don't forget to save your new pushbullet settings." +msgstr "" + +#: gui/slick/js/core.js:1262 +msgid "Select TV Download Directory" +msgstr "" + +#: gui/slick/js/core.js:1263 +msgid "Select Unpack Directory" +msgstr "" + +#: gui/slick/js/core.js:1326 gui/slick/js/core.js:1376 gui/slick/js/core.js:1425 +#: gui/slick/js/core.js:1491 msgid "This pattern is invalid." msgstr "" -#: gui/slick/js/core.js:1336 gui/slick/js/core.js:1386 gui/slick/js/core.js:1435 -#: gui/slick/js/core.js:1501 +#: gui/slick/js/core.js:1334 gui/slick/js/core.js:1384 gui/slick/js/core.js:1433 +#: gui/slick/js/core.js:1499 msgid "This pattern would be invalid without the folders, using it will force \"Season Folders\" on for all shows." msgstr "" -#: gui/slick/js/core.js:1344 gui/slick/js/core.js:1394 gui/slick/js/core.js:1443 -#: gui/slick/js/core.js:1509 +#: gui/slick/js/core.js:1342 gui/slick/js/core.js:1392 gui/slick/js/core.js:1441 +#: gui/slick/js/core.js:1507 msgid "This pattern is valid." msgstr "" +#: gui/slick/js/core.js:1818 +msgid "Select .nzb black hole/watch location" +msgstr "" + +#: gui/slick/js/core.js:1819 +msgid "Select .torrent black hole/watch location" +msgstr "" + +#: gui/slick/js/core.js:1820 +msgid "Select .torrent download location" +msgstr "" + +#: gui/slick/js/core.js:1900 +msgid "Minimum seeding time is" +msgstr "" + +#: gui/slick/js/core.js:1902 +msgid "URL to your uTorrent client (e.g. http://localhost:8000)" +msgstr "" + +#: gui/slick/js/core.js:1905 +msgid "Stop seeding when inactive for" +msgstr "" + +#: gui/slick/js/core.js:1911 +msgid "URL to your Transmission client (e.g. http://localhost:9091)" +msgstr "" + +#: gui/slick/js/core.js:1921 +msgid "URL to your Deluge client (e.g. http://localhost:8112)" +msgstr "" + +#: gui/slick/js/core.js:1930 +msgid "IP or Hostname of your Deluge Daemon (e.g. scgi://localhost:58846)" +msgstr "" + +#: gui/slick/js/core.js:1937 +msgid "URL to your Synology DS client (e.g. http://localhost:5000)" +msgstr "" + +#: gui/slick/js/core.js:1941 +msgid "URL to your rTorrent client (e.g. scgi://localhost:5000 <br> or https://localhost/rutorrent/plugins/httprpc/action.php)" +msgstr "" + +#: gui/slick/js/core.js:1952 +msgid "URL to your qBittorrent client (e.g. http://localhost:8080)" +msgstr "" + +#: gui/slick/js/core.js:1962 +msgid "URL to your MLDonkey (e.g. http://localhost:4080)" +msgstr "" + +#: gui/slick/js/core.js:1974 +msgid "URL to your putio client (e.g. http://localhost:8080)" +msgstr "" + +#: gui/slick/js/core.js:1975 +msgid "<a herf=\"https://app.put.io/oauth/apps/new\" target=\"_blank\"> Create a new OAuth app for put.io</a>" +msgstr "" + +#: gui/slick/js/core.js:1977 +msgid "Put.io Parent Folder" +msgstr "" + +#: gui/slick/js/core.js:1978 +msgid "Put.io OAuth Token" +msgstr "" + +#: gui/slick/js/core.js:3383 gui/slick/views/displayShow.mako:410 +msgid "Show Episodes" +msgstr "" + +#: gui/slick/js/core.js:3388 gui/slick/views/displayShow.mako:408 +msgid "Hide Episodes" +msgstr "" + +#: gui/slick/js/core.js:3396 +msgid "Select Show Location" +msgstr "" + +#: gui/slick/js/core.js:3460 +msgid "Select Unprocessed Episode Folder" +msgstr "" + +#: gui/slick/js/core.js:3790 +msgid "DELETED" +msgstr "" + #: gui/slick/js/core.js:4082 msgid "Resume updating the log on this page." msgstr "" @@ -1415,6 +1548,26 @@ msgstr "" msgid "Pause updating the log on this page." msgstr "" +#: gui/slick/js/core.js:4323 +msgid "searching {searchingFor}..." +msgstr "" + +#: gui/slick/js/core.js:4334 +msgid "search timed out, try again or try another indexer" +msgstr "" + +#: gui/slick/js/core.js:4503 +msgid "loading folders..." +msgstr "" + +#: gui/slick/js/parsers.js:7 gui/slick/js/parsers.js:8 +#: gui/slick/js/plotTooltip.js:6 gui/slick/js/sceneExceptionsTooltip.js:6 +#: gui/slick/views/inc_home_showList.mako:209 +#: gui/slick/views/inc_home_showList.mako:215 +#: gui/slick/views/inc_home_showList.mako:231 +msgid "Loading..." +msgstr "Betöltés..." + #: gui/slick/views/404.mako:5 msgid "You have reached this page by accident, please check the url." msgstr "Véletlenül juthatott erre az oldalra, kérem ellenőrizze az url-t." @@ -5713,14 +5866,6 @@ msgstr "" msgid "Select Columns" msgstr "" -#: gui/slick/views/displayShow.mako:408 -msgid "Hide Episodes" -msgstr "" - -#: gui/slick/views/displayShow.mako:410 -msgid "Show Episodes" -msgstr "" - #: gui/slick/views/displayShow.mako:424 msgid "NFO" msgstr "NFO" @@ -6234,12 +6379,6 @@ msgstr "Aktív" msgid "loading" msgstr "" -#: gui/slick/views/inc_home_showList.mako:209 -#: gui/slick/views/inc_home_showList.mako:215 -#: gui/slick/views/inc_home_showList.mako:231 -msgid "Loading..." -msgstr "Betöltés..." - #: gui/slick/views/inc_qualityChooser.mako:31 msgid "<p><b><u>Preferred</u></b> qualities will replace those in <b><u>allowed</u></b>, even if they are lower.</p>" msgstr "" @@ -6777,6 +6916,10 @@ msgstr "KODI frissítés" msgid "Update Emby" msgstr "Emby frissítés" +#: gui/slick/views/layouts/main.mako:167 +msgid "Manage Torrents" +msgstr "Torrentek kezelése" + #: gui/slick/views/layouts/main.mako:173 msgid "Missed Subtitle Management" msgstr "" diff --git a/locale/is_IS/LC_MESSAGES/messages.json b/locale/is_IS/LC_MESSAGES/messages.json index 401580425ef02749c999545bae3fedb14c0f8db8..2c8e5af138fafaa187af692efee296487330e5b3 100644 --- a/locale/is_IS/LC_MESSAGES/messages.json +++ b/locale/is_IS/LC_MESSAGES/messages.json @@ -1 +1 @@ -{"messages":{"domain":"messages","locale_data":{"messages":{"100":[null,""],"250":[null,""],"500":[null,""],"":{"domain":"messages","plural_forms":"nplurals=2; plural=(n != 1);","lang":"is_IS"},"Drama":[null,""],"Mystery":[null,""],"Science-Fiction":[null,""],"Crime":[null,""],"Action":[null,""],"Comedy":[null,""],"Thriller":[null,""],"Animation":[null,""],"Family":[null,""],"Fantasy":[null,""],"Adventure":[null,""],"Horror":[null,""],"Film-Noir":[null,""],"Sci-Fi":[null,""],"Romance":[null,""],"Sport":[null,""],"War":[null,""],"Biography":[null,""],"History":[null,""],"Music":[null,""],"Western":[null,""],"News":[null,""],"Sitcom":[null,""],"Reality-TV":[null,""],"Documentary":[null,""],"Game-Show":[null,""],"Musical":[null,""],"Talk-Show":[null,""],"Started Download":[null,""],"Download Finished":[null,""],"Subtitle Download Finished":[null,""],"SickRage Updated":[null,""],"SickRage Updated To Commit#: ":[null,""],"SickRage new login":[null,""],"New login from IP: {0}. http://geomaplookup.net/?ip={0}":[null,""],"Repeat":[null,""],"Repeat (Separated)":[null,""],"Extend":[null,""],"Extend (Limited)":[null,""],"Extend (Limited, E-prefixed)":[null,""],"Downloaded":[null,""],"Snatched":[null,""],"Snatched (Proper)":[null,""],"Failed":[null,""],"Snatched (Best)":[null,""],"Archived":[null,""],"Unknown":[null,""],"Unaired":[null,""],"Skipped":[null,""],"Wanted":[null,""],"Ignored":[null,""],"Subtitled":[null,""],"<No Filter>":[null,""],"Daily Searcher":[null,""],"Backlog":[null,""],"Show Updater":[null,""],"Check Version":[null,""],"Show Queue":[null,""],"Search Queue (All)":[null,""],"Search Queue (Daily Searcher)":[null,""],"Search Queue (Backlog)":[null,""],"Search Queue (Manual)":[null,""],"Search Queue (Retry/Failed)":[null,""],"Search Queue (RSS)":[null,""],"Find Propers":[null,""],"Postprocessor":[null,""],"Find Subtitles":[null,""],"Trakt Checker":[null,""],"Event":[null,""],"Error":[null,""],"Tornado":[null,""],"Thread":[null,""],"Main":[null,""],"Loading":[null,""],"New update found for SickRage, starting auto-updater":[null,""],"Update was successful":[null,""],"Update failed!":[null,""],"Backup":[null,""],"Config backup in progress...":[null,""],"Config backup successful, updating...":[null,""],"Config backup failed, aborting update":[null,""],"No update needed":[null,""],"Mako Error":[null,""],"Oops":[null,""],"Wrong API key used":[null,""],"Login":[null,""],"API Key not generated":[null,""],"API Builder":[null,""],"Schedule":[null,""],"Test 1":[null,""],"This is test number 1":[null,""],"Test 2":[null,""],"This is test number 2":[null,""],"You're using the {branch} branch. Please use 'master' unless specifically asked":[null,""],"Invalid show parameters":[null,""],"Invalid parameters":[null,""],"Episode couldn't be retrieved":[null,""],"Home":[null,""],"Show List":[null,""],"Error: Unsupported Request. Send jsonp request with 'callback' variable in the query string.":[null,""],"Success. Connected and authenticated":[null,""],"Authentication failed. SABnzbd expects":[null,""],"as authentication method":[null,""],"Unable to connect to host":[null,""],"SMS sent successfully":[null,""],"Problem sending SMS: {message}":[null,""],"Telegram notification succeeded. Check your Telegram clients to make sure it worked":[null,""],"Error sending Telegram notification: {message}":[null,""],"join notification succeeded. Check your join clients to make sure it worked":[null,""],"Error sending join notification: {message}":[null,""]," with password":[null,""],"Registered and Tested growl successfully {growl_host}":[null,""],"Registration and Testing of growl failed {growl_host}":[null,""],"Test prowl notice sent successfully":[null,""],"Test prowl notice failed":[null,""],"Boxcar2 notification succeeded. Check your Boxcar2 clients to make sure it worked":[null,""],"Error sending Boxcar2 notification":[null,""],"Pushover notification succeeded. Check your Pushover clients to make sure it worked":[null,""],"Error sending Pushover notification":[null,""],"Key verification successful":[null,""],"Unable to verify key":[null,""],"Tweet successful, check your twitter to make sure it worked":[null,""],"Error sending tweet":[null,""],"Please enter a valid account sid":[null,""],"Please enter a valid auth token":[null,""],"Please enter a valid phone sid":[null,""],"Please format the phone number as \"+1-###-###-####\"":[null,""],"Authorization successful and number ownership verified":[null,""],"Error sending sms":[null,""],"Slack message successful":[null,""],"Slack message failed":[null,""],"Discord message successful":[null,""],"Discord message failed":[null,""],"Test KODI notice sent successfully to {kodi_host}":[null,""],"Test KODI notice failed to {kodi_host}":[null,""],"Successful test notice sent to Plex Home Theater ... {plex_clients}":[null,""],"Test failed for Plex Home Theater ... {plex_clients}":[null,""],"Tested Plex Home Theater(s)":[null,""],"Successful test of Plex Media Server(s) ... {plex_servers}":[null,""],"Test failed, No Plex Media Server host specified":[null,""],"Test failed for Plex Media Server(s) ... {plex_servers}":[null,""],"Tested Plex Media Server host(s)":[null,""],"Tried sending desktop notification via libnotify":[null,""],"Test notice sent successfully to {emby_host}":[null,""],"Test notice failed to {emby_host}":[null,""],"Successfully started the scan update":[null,""],"Test failed to start the scan update":[null,""],"Test notice sent successfully to {nmj2_host}":[null,""],"Test notice failed to {nmj2_host}":[null,""],"Trakt Authorized":[null,""],"Trakt Not Authorized!":[null,""],"Test email sent successfully! Check inbox.":[null,""],"ERROR: {last_error}":[null,""],"Test NMA notice sent successfully":[null,""],"Test NMA notice failed":[null,""],"Pushalot notification succeeded. Check your Pushalot clients to make sure it worked":[null,""],"Error sending Pushalot notification":[null,""],"Pushbullet notification succeeded. Check your device to make sure it worked":[null,""],"Error sending Pushbullet notification":[null,""],"Status":[null,""],"Restarting SickRage":[null,""],"Update Failed":[null,""],"Update wasn't successful, not restarting. Check your log for more information.":[null,""],"Checking out branch":[null,""],"Already on branch":[null,""],"Invalid show ID: {show}":[null,""],"Show not in show list":[null,""],"Edit":[null,""],"This show is in the process of being downloaded - the info below is incomplete.":[null,""],"The information on this page is in the process of being updated.":[null,""],"The episodes below are currently being refreshed from disk":[null,""],"Currently downloading subtitles for this show":[null,""],"This show is queued to be refreshed.":[null,""],"This show is queued and awaiting an update.":[null,""],"This show is queued and awaiting subtitles download.":[null,""],"Resume":[null,""],"Pause":[null,""],"Remove":[null,""],"Re-scan files":[null,""],"Force Full Update":[null,""],"Update show in KODI":[null,""],"Update show in Emby":[null,""],"Hide specials":[null,""],"Show specials":[null,""],"Preview Rename":[null,""],"Download Subtitles":[null,""],"No scene exceptions":[null,""],"Invalid show ID":[null,""],"Unable to find the specified show":[null,""],"Unable to retreive Fansub Groups from AniDB.":[null,""],"Edit Show":[null,""],"Unable to refresh this show: {error}":[null,""],"New location <tt>{location}</tt> does not exist":[null,""],"Unable to update show: {error}":[null,""],"Unable to force an update on scene exceptions of the show.":[null,""],"Unable to force an update on scene numbering of the show.":[null,""],"{num_errors:d} error{plural} while saving changes:":[null,""],"{show_name} has been {paused_resumed}":[null,""],"resumed":[null,""],"paused":[null,""],"{show_name} has been {deleted_trashed} {was_deleted}":[null,""],"deleted":[null,""],"trashed":[null,""],"(media untouched)":[null,""],"(with all related media)":[null,""],"Unable to refresh this show.":[null,""],"Unable to update this show.":[null,""],"Library update command sent to KODI host(s)): {kodi_hosts}":[null,""],"Unable to contact one or more KODI host(s)): {kodi_hosts}":[null,""],"Library update command sent to Plex Media Server host: {plex_server}":[null,""],"Unable to contact Plex Media Server host: {plex_server}":[null,""],"Library update command sent to Emby host: {emby_host}":[null,""],"Unable to contact Emby host: {emby_host}":[null,""],"You must specify a show and at least one episode":[null,""],"Invalid status":[null,""],"Backlog was automatically started for the following seasons of <b>{show_name}</b>":[null,""],"Season":[null,""],"Backlog started":[null,""],"Retrying Search was automatically started for the following season of <b>{show_name}</b>":[null,""],"Retry Search started":[null,""],"You must specify a show":[null,""],"Can't rename episodes when the show dir is missing.":[null,""],"New subtitles downloaded: {new_subtitle_languages}":[null,""],"No subtitles downloaded":[null,""],"IRC":[null,""],"Could not load news from the repo. [Click here for news.md])({news_url})":[null,""],"The was a problem connecting to github, please refresh and try again":[null,""],"Could not load changes from the repo. [Click here for CHANGES.md]({changes_url})":[null,""],"Changelog":[null,""],"Post Processing":[null,""],"Add Shows":[null,""],"No folders selected.":[null,""],"New Show":[null,""],"Trending Shows":[null,""],"Popular Shows":[null,""],"Most Anticipated Shows":[null,""],"Most Collected Shows":[null,""],"Most Watched Shows":[null,""],"Most Played Shows":[null,""],"Recommended Shows":[null,""],"New Shows":[null,""],"Season Premieres":[null,""],"Existing Show":[null,""],"No root directories setup, please go back and add one.":[null,""],"Show added":[null,""],"Adding the specified show {show_name}":[null,""],"Missing params, no Indexer ID or folder: {show_to_add} and {root_dir}/{show_path}":[null,""],"Unknown error. Unable to add show due to problem with show selection.":[null,""],"Unable to add show":[null,""],"Folder {show_dir} exists already":[null,""],"Unable to create the folder {show_dir}, can't add the show":[null,""],"Adding the specified show into {show_dir}":[null,""],"Shows Added":[null,""],"Automatically added {num_shows} from their existing metadata files":[null,""],"Mass Update":[null,""],"Episode Overview":[null,""],"Missing Subtitles":[null,""],"Backlog Overview":[null,""],"Mass Edit":[null,""],"Unable to update show: {excption_format}":[null,""],"Unable to refresh show {show_name}: {excption_format}":[null,""],"Errors encountered":[null,""],"Updates":[null,""],"Refreshes":[null,""],"Renames":[null,""],"Subtitles":[null,""],"The following actions were queued":[null,""],"For best results please set the Download Station alias as":[null,""],"You can check this setting in the Synology DSM":[null,""],"Control Panel":[null,""],"Application Portal":[null,""],"Make sure you allow DSM to be embedded with iFrames too in":[null,""],"DSM Settings":[null,""],"Security":[null,""],"Manage Torrents":[null,""],"Failed Downloads":[null,""],"Manage Searches":[null,""],"Backlog search started":[null,""],"Daily search started":[null,""],"Find propers search started":[null,""],"Subtitle search started":[null,""],"Remove Selected":[null,""],"Clear History":[null,""],"Trim History":[null,""],"Selected history entries removed":[null,""],"History cleared":[null,""],"Removed history entries older than 30 days":[null,""],"General":[null,""],"Backup/Restore":[null,""],"Search Settings":[null,""],"Search Providers":[null,""],"Subtitles Settings":[null,""],"Notifications":[null,""],"Anime":[null,""],"SickRage Configuration":[null,""],"Config - Shares":[null,""],"Windows Shares Configuration":[null,""],"Saved Shares":[null,""],"Your Windows share settings have been saved":[null,""],"Config - General":[null,""],"General Configuration":[null,""],"Saved Defaults":[null,""],"Your \"add show\" defaults have been set to your current selections.":[null,""],"Unable to create directory {directory}, log directory not changed.":[null,""],"Unable to create directory {directory}, https cert directory not changed.":[null,""],"Unable to create directory {directory}, https key directory not changed.":[null,""],"Error(s) Saving Configuration":[null,""],"Configuration Saved":[null,""],"Config - Backup/Restore":[null,""],"Config - Episode Search":[null,""],"Config - Post Processing":[null,""],"Unpacking Not Supported, disabling unpack setting":[null,""],"You tried saving an invalid normal naming config, not saving your naming settings":[null,""],"You tried saving an invalid anime naming config, not saving your naming settings":[null,""],"Config - Providers":[null,""],"No Provider Name specified":[null,""],"No Provider Url specified":[null,""],"No Provider Api key specified":[null,""],"Config - Notifications":[null,""],"Config - Subtitles":[null,""],"Config - Anime":[null,""],"Clear Errors":[null,""],"Clear Warnings":[null,""],"Submit Errors":[null,""],"Logs & Errors":[null,""],"Log File":[null,""],"Logs":[null,""],"This is a test notification from SickRage":[null,""],"Please fill out the necessary fields above.":[null,""],"This pattern is invalid.":[null,""],"This pattern would be invalid without the folders, using it will force \"Season Folders\" on for all shows.":[null,""],"This pattern is valid.":[null,""],"Resume updating the log on this page.":[null,""],"Pause updating the log on this page.":[null,""],"You have reached this page by accident, please check the url.":[null,""],"A mako error has occured.<br>\n If this happened during an update a simple page refresh may be the solution.<br>\n Mako errors that happen during updates may be a one time error if there were significant ui changes.":[null,""],"Show/Hide Error":[null,""],"Add New Show":[null,""],"For shows that you haven't downloaded yet, this option finds a show on theTVDB.com, creates a directory for it's episodes, and adds it to SickRage.":[null,""],"Add From Trakt Lists":[null,""],"For shows that you haven't downloaded yet, this option lets you choose from a show from one of the Trakt lists to add to SickRage.":[null,""],"Add From IMDB's Popular Shows":[null,""],"View IMDB's list of the most popular shows. This feature uses IMDB's MOVIEMeter algorithm to identify popular TV Series.":[null,""],"Add Existing Shows":[null,""],"Use this option to add shows that already have a folder created on your hard drive. SickRage will scan your existing metadata/episodes and add the show accordingly.":[null,""],"Add Existing Show":[null,""],"Manage Directories":[null,""],"Customize Options":[null,""],"SickRage can add existing shows, using the current options, by using locally stored NFO/XML metadata to eliminate user interaction. If you would rather have SickRage prompt you to customize each show, then use the checkbox below.":[null,""],"Prompt me to set settings for each show":[null,""],"Displaying folders within these directories which aren't already added to SickRage":[null,""],"Submit":[null,""],"Find a show on theTVDB":[null,""],"Show retrieved from existing metadata":[null,""],"All Indexers":[null,""],"Search":[null,""],"This will only affect the language of the retrieved metadata file contents and episode filenames.":[null,""],"This <b>DOES NOT</b> allow SickRage to download non-english TV episodes!":[null,""],"Pick the parent folder":[null,""],"Pre-chosen Destination Folder":[null,""],"Customize options":[null,""],"Add Show":[null,""],"Skip Show":[null,""],"Sort By":[null,""],"Name":[null,""],"Original":[null,""],"Votes":[null,""],"Rating":[null,""],"Rating > Votes":[null,""],"Sort Order":[null,""],"Asc":[null,""],"Desc":[null,""],"Fetching of IMDB Data failed. Are you online?":[null,""],"Exception":[null,""],"Select Trakt List":[null,""],"Most Anticipated":[null,""],"Trending":[null,""],"Popular":[null,""],"Most Watched":[null,""],"Most Played":[null,""],"Most Collected":[null,""],"Recommended":[null,""],"Toggle navigation":[null,""],"Profile":[null,""],"JSONP":[null,""],"Back to SickRage":[null,""],"Parameters":[null,""],"Required":[null,""],"Description":[null,""],"Type":[null,""],"Default value":[null,""],"Allowed values":[null,""],"Playground":[null,""],"Clear":[null,""],"Yes":[null,""],"No":[null,""],"season":[null,""],"episode":[null,""],"Python Version":[null,""],"SSL Version":[null,""],"OS":[null,""],"Locale":[null,""],"User":[null,""],"Program Folder":[null,""],"Config File":[null,""],"Database File":[null,""],"Cache Folder":[null,""],"Log Folder":[null,""],"Arguments":[null,""],"Web Root":[null,""],"Website":[null,""],"Wiki":[null,""],"Source":[null,""],"IRC Chat":[null,""],"AnimeDB Settings":[null,""],"Look & Feel":[null,""],"AniDB is non-profit database of anime information that is freely open to the public":[null,""],"Enable":[null,""],"should SickRage use data from AniDB?":[null,""],"AniDB Username":[null,""],"username of your AniDB account":[null,""],"AniDB Password":[null,""],"password of your AniDB account":[null,""],"AniDB MyList":[null,""],"do you want to add the PostProcessed episodes to the MyList?":[null,""],"Look and Feel":[null,""],"How should the anime functions show and behave.":[null,""],"Split show lists":[null,""],"separate anime and normal shows in groups":[null,""],"Split in tabs":[null,""],"use tabs for when splitting show lists":[null,""],"Restore":[null,""],"Backup your main database file and config.":[null,""],"Select the folder you wish to save your backup file to":[null,""],"Restore your main database file and config.":[null,""],"Select the backup file you wish to restore":[null,""],"Misc":[null,""],"Interface":[null,""],"Advanced Settings":[null,""],"Startup options. Indexer options. Log and show file locations.":[null,""],"Some options may require a manual restart to take effect.":[null,""],"Default Indexer Language":[null,""],"for adding shows and metadata providers":[null,""],"Launch browser":[null,""],"open the SickRage home page on startup":[null,""],"Initial page":[null,""],"Shows":[null,""],"when launching SickRage interface":[null,""],"Choose hour to update shows":[null,""],"with information such as next air dates, show ended, etc. Use 15 for 3pm, 4 for 4am etc.":[null,""],"note":[null,""],"minutes are randomized each time SickRage is started":[null,""],"Send to trash for actions":[null,""],"when using show \"Remove\" and delete files":[null,""],"on scheduled deletes of the oldest log files":[null,""],"selected actions use trash (recycle bin) instead of the default permanent delete":[null,""],"Log file folder location":[null,""],"Number of Log files saved":[null,""],"number of log files saved when rotating logs (default: 5) (REQUIRES RESTART)":[null,""],"Size of Log files saved":[null,""],"maximum size in MB of the log file (default: 1MB) (REQUIRES RESTART)":[null,""],"Use initial indexer set to":[null,""],"as the default selection when adding new shows":[null,""],"Timeout show indexer at":[null,""],"seconds of inactivity when finding new shows (default:20)":[null,""],"Show root directories":[null,""],"where the files of shows are located":[null,""],"Save Changes":[null,""],"Options for software updates.":[null,""],"Check software updates":[null,""],"and display notifications when updates are available. Checks are run on startup and at the frequency set below*":[null,""],"Automatically update":[null,""],"fetch and install software updates. Updates are run on startup and in the background at the frequency set below*":[null,""],"Check the server every*":[null,""],"hours for software updates (default:1)":[null,""],"Notify on software update":[null,""],"send a message to all enabled notifiers when SickRage has been updated":[null,""],"User Interface":[null,""],"Options for visual appearance.":[null,""],"Interface Language":[null,""],"System Language":[null,""],"for appearance to take effect, save then refresh your browser":[null,""],"Display theme":[null,""],"Dark":[null,""],"Light":[null,""],"Use a background image":[null,""],"use a custom image as background for SickRage":[null,""],"Background Path":[null,""],"Path to the background image":[null,""],"Show fanart in the background":[null,""],"on the show summary page":[null,""],"Fanart transparency":[null,""],"transparency of the fanart in the background":[null,""],"Use a custom stylesheet file":[null,""],"use a custom .css file to style SickRage (for advanced users)":[null,""],"Stylesheet File Path":[null,""],"Path to the stylesheet (.css) file":[null,""],"Show all seasons":[null,""],"Sort with \"The\", \"A\", \"An\"":[null,""],"include articles (\"The\", \"A\", \"An\") when sorting show lists":[null,""],"Missed episodes range":[null,""],"set the range in days of the missed episodes in the Schedule page":[null,""],"Display fuzzy dates":[null,""],"move absolute dates into tooltips and display e.g. \"Last Thu\", \"On Tue\"":[null,""],"Trim zero padding":[null,""],"remove the leading number \"0\" shown on hour of day, and date of month":[null,""],"Date style":[null,""],"Use System Default":[null,""],"Time style":[null,""],"seconds are only shown on the History page":[null,""],"Timezone":[null,""],"Local":[null,""],"Network":[null,""],"display dates and times in either your timezone or the shows network timezone":[null,""],"use local timezone to start searching for episodes minutes after show ends (depends on your dailysearch frequency)":[null,""],"Download url":[null,""],"URL where the shows can be downloaded.":[null,""],"Web Interface":[null,""],"it is recommended that you enable a username and password to secure SickRage from being tampered with remotely.":[null,""],"these options require a manual restart to take effect.":[null,""],"API key":[null,""],"used to give 3rd party programs limited access to SickRage":[null,""],"you can try all the features of the API":[null,""],"here":[null,""],"HTTP logs":[null,""],"enable logs from the internal Tornado web server":[null,""],"HTTP username":[null,""],"set blank for no login":[null,""],"HTTP password":[null,""],"blank = no authentication":[null,""],"HTTP port":[null,""],"web port to browse and access SickRage (default:8081)":[null,""],"Notify on login":[null,""],"enable to be notified when a new login happens in webserver":[null,""],"Listen on IPv6":[null,""],"attempt binding to any available IPv6 address":[null,""],"Enable HTTPS":[null,""],"enable access to the web interface using a HTTPS address":[null,""],"HTTPS certificate":[null,""],"file name or path to HTTPS certificate":[null,""],"HTTPS key":[null,""],"file name or path to HTTPS key":[null,""],"Reverse proxy headers":[null,""],"accept the following reverse proxy headers (advanced)...":[null,""],"(X-Forwarded-For, X-Forwarded-Host, and X-Forwarded-Proto)":[null,""],"CPU throttling":[null,""],"Normal (default). High is lower and Low is higher CPU use":[null,""],"Anonymous redirect":[null,""],"backlink protection via anonymizer service, must end in \"?\"":[null,""],"Enable debug":[null,""],"enable debug logs":[null,""],"Verify SSL Certs":[null,""],"verify SSL Certificates (Disable this for broken SSL installs (Like QNAP))":[null,""],"No Restart":[null,""],"only shutdown when restarting SR":[null,""],"only select this when you have external software restarting SR automatically when it stops (like FireDaemon)":[null,""],"Encrypt passwords":[null,""],"in the <code>config.ini</code> file":[null,""],"warning":[null,""],"passwords must only contain":[null,""],"ASCII characters":[null,""],"Unprotected calendar":[null,""],"allow subscribing to the calendar without user and password":[null,""],"some services like Google Calendar only work this way":[null,""],"Google Calendar Icons":[null,""],"show an icon next to exported calendar events in Google Calendar":[null,""],"Proxy host":[null,""],"blank to disable or proxy to use when connecting to providers":[null,""],"also use global proxy setting for indexers (tvdb, xem, anidb, etc.)":[null,""],"Skip Remove Detection":[null,""],"skip detection of removed files":[null,""],"if disabled the episode will be set to the default deleted status":[null,""],"Default deleted episode status":[null,""],"define the status to be set for media file that has been deleted.":[null,""],"Archived option will keep previous downloaded quality":[null,""],"example: Downloaded (1080p WEB-DL) ==> Archived (1080p WEB-DL)":[null,""],"Options for github related features.":[null,""],"Branch version":[null,""],"error: No branches found.":[null,""],"select branch to use (restart required)":[null,""],"Authorization Type":[null,""],"Username and password":[null,""],"Personal access token":[null,""],"You must use a personal access token if you're using \"two-factor authentication\" on GitHub.":[null,""],"GitHub username":[null,""],"*** (REQUIRED FOR SUBMITTING ISSUES) ***":[null,""],"GitHub password":[null,""],"GitHub personal access token":[null,""],"Generate Token":[null,""],"Manage Tokens":[null,""],"GitHub remote for branch":[null,""],"access repo configured remotes (save then refresh browser)":[null,""],"default":[null,""],"origin":[null,""],"Git executable path":[null,""],"only needed if OS is unable to locate git from env":[null,""],"Git reset":[null,""],"removes untracked files and performs a hard reset on git branch automatically to help resolve update issues":[null,""],"Home Theater / NAS":[null,""],"Devices":[null,""],"Social":[null,""],"A free and open source cross-platform media center and home entertainment system software with a 10-foot user interface designed for the living-room TV.":[null,""],"send KODI commands?":[null,""],"Always on":[null,""],"log errors when unreachable?":[null,""],"Notify on snatch":[null,""],"send a notification when a download starts?":[null,""],"Notify on download":[null,""],"send a notification when a download finishes?":[null,""],"Notify on subtitle download":[null,""],"send a notification when subtitles are downloaded?":[null,""],"Update library":[null,""],"update KODI library when a download finishes?":[null,""],"Full library update":[null,""],"perform a full library update if update per-show fails?":[null,""],"Only update first host":[null,""],"only send library updates to the first active host?":[null,""],"KODI IP:Port":[null,""],"host running KODI (eg. 192.168.1.100:8080)":[null,""],"(multiple host strings must be separated by commas)":[null,""],"Username":[null,""],"username for your KODI server (blank for none)":[null,""],"Password":[null,""],"password for your KODI server (blank for none)":[null,""],"Click below to test.":[null,""],"Experience your media on a visually stunning, easy to use interface on your Mac connected to your TV. Your media library has never looked this good!":[null,""],"For sending notifications to Plex Home Theater (PHT) clients, use the KODI notifier with port <b>3005</b>.":[null,""],"send Plex Media Server library updates?":[null,""],"Plex Media Server Auth Token":[null,""],"auth token used by Plex":[null,""],"Update Library":[null,""],"update Plex Media Server library when a download finishes":[null,""],"Plex Media Server IP:Port":[null,""],"one or more hosts running Plex Media Server<br/>(eg. 192.168.1.1:32400, 192.168.1.2:32400)":[null,""],"HTTPS":[null,""],"use https for plex media server requests?":[null,""],"Click below to test Plex Media Server(s)":[null,""],"Test Plex Media Server":[null,""],"Plex Home Theater":[null,""],"send Plex Home Theater notifications?":[null,""],"Plex Home Theater IP:Port":[null,""],"one or more hosts running Plex Home Theater<br>(eg. 192.168.1.100:3000, 192.168.1.101:3000)":[null,""],"Click below to test Plex Home Theater(s)":[null,""],"Test Plex Home Theater":[null,""],"some Plex Home Theaters <b class=\"boldest\">do not</b> support notifications e.g. Plexapp for Samsung TVs":[null,""],"Emby":[null,""],"A home media server built using other popular open source technologies.":[null,""],"send update commands to Emby?":[null,""],"Emby IP:Port":[null,""],"host running Emby (eg. 192.168.1.100:8096)":[null,""],"Emby API Key":[null,""],"Networked Media Jukebox":[null,""],"The Networked Media Jukebox, or NMJ, is the official media jukebox interface made available for the Popcorn Hour 200-series.":[null,""],"send update commands to NMJ?":[null,""],"Popcorn IP address":[null,""],"IP address of Popcorn 200-series (eg. 192.168.1.100)":[null,""],"Get settings":[null,""],"Get Settings":[null,""],"the Popcorn Hour device must be powered on and NMJ running.":[null,""],"NMJ database":[null,""],"automatically filled via the 'Get Settings' button.":[null,""],"NMJ mount url":[null,""],"Networked Media Jukebox v2":[null,""],"The Networked Media Jukebox, or NMJv2, is the official media jukebox interface made available for the Popcorn Hour 300 & 400-series.":[null,""],"send update commands to NMJv2?":[null,""],"IP address of Popcorn 300/400-series (eg. 192.168.1.100)":[null,""],"Database location":[null,""],"Database instance":[null,""],"adjust this value if the wrong database is selected.":[null,""],"Find database":[null,""],"Find Database":[null,""],"the Popcorn Hour device must be powered on.":[null,""],"NMJv2 database":[null,""],"automatically filled via the 'Find Database' buttons.":[null,""],"Synology":[null,""],"The Synology DiskStation NAS.":[null,""],"Synology Indexer is the daemon running on the Synology NAS to build its media database.":[null,""],"send Synology notifications?":[null,""],"requires SickRage to be running on your Synology NAS.":[null,""],"Synology Indexer":[null,""],"Synology Notifier is the notification system of Synology DSM":[null,""],"send notifications to the Synology Notifier?":[null,""],"pyTivo":[null,""],"pyTivo is both an HMO and GoBack server. This notifier will load the completed downloads to your Tivo.":[null,""],"send notifications to pyTivo?":[null,""],"requires the downloaded files to be accessible by pyTivo.":[null,""],"pyTivo IP:Port":[null,""],"host running pyTivo (eg. 192.168.1.1:9032)":[null,""],"pyTivo share name":[null,""],"value used in pyTivo Web Configuration to name the share.":[null,""],"Tivo name":[null,""],"(Messages & Settings > Account & System Information > System Information > DVR name)":[null,""],"Growl":[null,""],"A cross-platform unobtrusive global notification system.":[null,""],"send Growl notifications?":[null,""],"Growl IP:Port":[null,""],"host running Growl (eg. 192.168.1.100:23053)":[null,""],"may leave blank if SickRage is on the same host.":[null,""],"otherwise Growl <b>requires</b> a password to be used.":[null,""],"Click below to register and test Growl, this is required for Growl notifications to work.":[null,""],"Register Growl":[null,""],"Prowl":[null,""],"A Growl client for iOS.":[null,""],"send Prowl notifications?":[null,""],"Prowl Message Title":[null,""],"Global Prowl API key(s)":[null,""],"Prowl API(s) listed here, separated by commas if applicable, will<br> receive notifications for <b>all</b> shows. Your Prowl API key is available at:":[null,""],"(this field may be blank except when testing.)":[null,""],"Show notification list":[null,""],"-- Select a Show --":[null,""],"Configure per-show notifications here by entering Prowl API key(s), separated by commas, '\n 'after selecting a show in the drop-down box. Be sure to activate the 'Save for this show' '\n 'button below after each entry.":[null,""],"Save for this show":[null,""],"Prowl priority":[null,""],"Very Low":[null,""],"Moderate":[null,""],"Normal":[null,""],"High":[null,""],"Emergency":[null,""],"priority of Prowl messages from SickRage.":[null,""],"Libnotify":[null,""],"The standard desktop notification API for Linux/*nix systems. This notifier will only function if the pynotify module is installed (Ubuntu/Debian package <a href=\"apt:python-notify\">python-notify</a>).":[null,""],"send Libnotify notifications?":[null,""],"Pushover":[null,""],"Pushover makes it easy to send real-time notifications to your Android and iOS devices.":[null,""],"send Pushover notifications?":[null,""],"Pushover key":[null,""],"user key of your Pushover account":[null,""],"Pushover API key":[null,""],"click here":[null,""]," to create a Pushover API key":[null,""],"Pushover devices":[null,""],"comma separated list of pushover devices you want to send notifications to":[null,""],"Pushover notification sound":[null,""],"Bike":[null,""],"Bugle":[null,""],"Cash Register":[null,""],"Classical":[null,""],"Cosmic":[null,""],"Falling":[null,""],"Gamelan":[null,""],"Incoming":[null,""],"Intermission":[null,""],"Magic":[null,""],"Mechanical":[null,""],"Piano Bar":[null,""],"Siren":[null,""],"Space Alarm":[null,""],"Tug Boat":[null,""],"Alien Alarm (long)":[null,""],"Climb (long)":[null,""],"Persistent (long)":[null,""],"Pushover Echo (long)":[null,""],"Up Down (long)":[null,""],"None (silent)":[null,""],"Device specific":[null,""],"choose notification sound to use":[null,""],"Pushover priority":[null,""],"Choose priority to use":[null,""],"Boxcar 2":[null,""],"Read your messages where and when you want them!":[null,""],"send Boxcar notifications?":[null,""],"Boxcar2 access token":[null,""],"access token for your Boxcar account.":[null,""],"NMA":[null,""],"Notify My Android":[null,""],"Notify My Android is a Prowl-like Android App and API that offers an easy way to send notifications from your application directly to your Android device.":[null,""],"send NMA notifications?":[null,""],"NMA API key":[null,""],"(multiple keys must be separated by commas, up to a maximum of 5)":[null,""],"NMA priority":[null,""],"priority of NMA messages from SickRage.":[null,""],"Pushalot":[null,""],"Pushalot is a platform for receiving custom push notifications to connected devices running Windows Phone or Windows 8.":[null,""],"send Pushalot notifications ?":[null,""],"Pushalot authorization token":[null,""],"authorization token of your Pushalot account.":[null,""],"Pushbullet":[null,""],"Pushbullet is a platform for receiving custom push notifications to connected devices running Android/iOS and desktop browsers such as Chrome, Firefox or Opera.":[null,""],"send Pushbullet notifications?":[null,""],"Pushbullet API key":[null,""],"API key of your Pushbullet account":[null,""],"Pushbullet devices":[null,""],"Update device list":[null,""],"Pushbullet channels":[null,""],"Free Mobile":[null,""],"Free Mobile is a famous French cellular network provider.<br> It provides to their customer a free SMS API.":[null,""],"send SMS notifications?":[null,""],"send a SMS when a download starts?":[null,""],"send a SMS when a download finishes?":[null,""],"send a SMS when subtitles are downloaded?":[null,""],"Free Mobile customer ID":[null,""],"it's your Free Mobile customer ID (8 digits)":[null,""],"Free Mobile API key":[null,""],"find your API key in your customer portal.":[null,""],"Click below to test your settings.":[null,""],"Telegram":[null,""],"Telegram is a cloud-based instant messaging service.":[null,""],"send Telegram notifications?":[null,""],"send a message when a download starts?":[null,""],"send a message when a download finishes?":[null,""],"send a message when subtitles are downloaded?":[null,""],"User/group ID":[null,""],"contact @myidbot on Telegram to get an ID":[null,""],"Bot API token":[null,""],"contact @BotFather on Telegram to set up one":[null,""],"Join":[null,""],"Join all of your devices together!":[null,""],"send Join notifications?":[null,""],"Device ID":[null,""],"per device specific id":[null,""]," to create a Join API key":[null,""],"Twilio":[null,""],"Twilio is a webservice API that allows you to communicate directly with a mobile number. This notifier will send a text directly to your mobile device.":[null,""],"should SickRage text your mobile device?":[null,""],"Twilio Account SID":[null,""],"account SID of your Twilio account.":[null,""],"Twilio Auth Token":[null,""],"Twilio Phone SID":[null,""],"phone SID that you would like to send the sms from":[null,""],"Your phone number":[null,""],"phone number that will receive the sms. Please use the format +1-###-###-####":[null,""],"Twitter":[null,""],"A social networking and microblogging service, enabling its users to send and read other users' messages called tweets.":[null,""],"should SickRage post tweets on Twitter?":[null,""],"you may want to use a secondary account.":[null,""],"send direct message":[null,""],"send a notification via Direct Message, not via status update":[null,""],"send DM to":[null,""],"Twitter account to send Direct Messages to (must follow you)":[null,""],"Step One":[null,""],"Request Authorization":[null,""],"Click the \"Request Authorization\" button.<br> This will open a new page containing an auth key.<br> <b>note:</b> if nothing happens check your popup blocker.":[null,""],"Step Two":[null,""],"Enter the key Twitter gave you below, and click \"Verify Key\".":[null,""],"Trakt":[null,""],"Trakt helps keep a record of what TV shows and movies you are watching. Based on your favorites, Trakt recommends additional shows and movies you'll enjoy!":[null,""],"send Trakt.tv notifications?":[null,""],"username of your Trakt account.":[null,""],"Trakt PIN":[null,""],"Get Trakt PIN":[null,""],"PIN code to authorize SickRage to access Trakt on your behalf.":[null,""],"API Timeout":[null,""],"seconds to wait for Trakt API to respond. (Use 0 to wait forever)":[null,""],"Default indexer":[null,""],"Sync libraries":[null,""],"sync your SickRage show library with your trakt show library.":[null,""],"Remove Episodes From Collection":[null,""],"remove an episode from your Trakt Collection if it is not in your SickRage Library.":[null,""],"Sync watchlist":[null,""],"sync your SickRage show watchlist with your trakt show watchlist (either Show and Episode).":[null,""],"episode will be added on watch list when wanted or snatched and will be removed when downloaded ":[null,""],"Watchlist add method":[null,""],"Skip All":[null,""],"Download Pilot Only":[null,""],"Get whole show":[null,""],"method in which to download episodes for new shows.":[null,""],"Remove episode":[null,""],"remove an episode from your watchlist after it is downloaded.":[null,""],"Remove series":[null,""],"remove the whole series from your watchlist after any download.":[null,""],"Remove watched show":[null,""],"remove the show from sickrage if it's ended and completely watched":[null,""],"Start paused":[null,""],"shows grabbed from your trakt watchlist start paused.":[null,""],"Trakt blackList name":[null,""],"name (slug) of list on Trakt for blacklisting show on 'Add Trending Show' & 'Add Recommended Shows' pages":[null,""],"Email":[null,""],"Allows configuration of email notifications on a per show basis.":[null,""],"send email notifications?":[null,""],"SMTP host":[null,""],"hostname of your SMTP email server.":[null,""],"SMTP port":[null,""],"port number used to connect to your SMTP host.":[null,""],"SMTP from":[null,""],"sender email address, some hosts require a real address.":[null,""],"Use TLS":[null,""],"check to use TLS encryption.":[null,""],"SMTP user":[null,""],"(optional) your SMTP server username.":[null,""],"SMTP password":[null,""],"(optional) your SMTP server password.":[null,""],"Global email list":[null,""],"email addresses listed here, separated by commas if applicable, will<br> receive notifications for <b>all</b> shows.":[null,""],"(This field may be blank except when testing.)":[null,""],"Email Subject":[null,""],"use a custom subject for some privacy protection?":[null,""],"(leave blank for the default SickRage subject)":[null,""],"configure per-show notifications here by entering email address(es), separated by commas,":[null,""],"after selecting a show in the drop-down box. Be sure to activate the 'Save for this show'":[null,""],"button below after each entry.":[null,""],"Slack":[null,""],"Slack brings all your communication together in one place. It's real-time messaging, archiving and search for modern teams.":[null,""],"should SickRage post messages on Slack?":[null,""],"Slack Incoming Webhook":[null,""],"Discord":[null,""],"All-in-one voice and text chat for gamers that's free, secure, and works on both your desktop and phone.":[null,""],"Should SickRage post messages on Discord?":[null,""],"Discord Incoming Webhook":[null,""],"Create webhook under channel settings.":[null,""],"Discord Bot Name":[null,""],"Blank will use webhook default Name.":[null,""],"Discord Avatar URL":[null,""],"Blank will use webhook default Avatar.":[null,""],"Discord TTS":[null,""],"Send notifications using text-to-speech":[null,""],"Post-Processing":[null,""],"Episode Naming":[null,""],"Metadata":[null,""],"Settings that dictate how SickRage should process completed downloads.":[null,""],"enable the automatic post processor to scan and process any files in your Post Processing Dir":[null,""],"do not use if you use an external Post Processing script":[null,""],"Post Processing Dir":[null,""],"the folder where your download client puts the completed TV downloads.":[null,""],"please use seperate downloading and completed folders in your download client if possible.":[null,""],"Processing Method":[null,""],"what method should be used to put files into the library?":[null,""],"if you keep seeding torrents after they finish, please avoid the 'move' processing method to prevent errors.":[null,""],"Auto Post-Processing Frequency":[null,""],"time in minutes to check for new files to auto post-process (min 10)":[null,""],"Postpone post processing":[null,""],"wait to process a folder if sync files are present.":[null,""],"Sync File Extensions":[null,""],"comma seperated list of extensions or filename globs SickRage ignores when Post Processing":[null,""],"Rename Episodes":[null,""],"rename episode using the Episode Naming settings?":[null,""],"Create missing show directories":[null,""],"create missing show directories when they get deleted":[null,""],"Add shows without directory":[null,""],"add shows without creating a directory (not recommended)":[null,""],"Move associated files":[null,""],"move associated (srt/srr/sfv/etc) files while post processing?":[null,""],"Rename .nfo file":[null,""],"rename the original .nfo file to .nfo-orig to avoid conflicts?":[null,""],"Associated file extensions":[null,""],"comma separated list of associated file extensions SickRage should keep while post processing.":[null,""],"leaving it empty means no associated files will be post processed":[null,""],"Delete non associated files":[null,""],"delete non associated files while post processing?":[null,""],"Change File Date":[null,""],"set last modified filedate to the date that the episode aired?":[null,""],"some systems may ignore this feature.":[null,""],"Timezone for File Date":[null,""],"local":[null,""],"network":[null,""],"what timezone should be used to change File Date?":[null,""],"Unpack":[null,""],"What to do with archived releases found in your <i>TV Download Dir</i>?":[null,""],"Ignore (do not process contents)":[null,""],"Unpack (process contents)":[null,""],"Treat as video (process archive as-is)":[null,""],"'Unpack' only works with RAR archives":[null,""],"Windows":[null,""],"WinRar is required on windows":[null,""],"Unpack Directory":[null,""],"Choose a path to unpack files, leave blank to unpack in download dir":[null,""],"Unrar Location":[null,""],"add the path to unrar if it is not in the system path":[null,""],"Alternate Unrar Tool":[null,""],"add the path to an alternate unrar tool if it is not in the system path":[null,""],"Delete RAR contents":[null,""],"delete content of RAR files, even if Process Method not set to move?":[null,""],"only working with RAR archive":[null,""],"Don't delete empty folders":[null,""],"leave empty folders when Post Processing?":[null,""],"can be overridden using manual Post Processing":[null,""],"Follow symbolic-links":[null,""],"follow down symbolic links in download directory?":[null,""],"<b>EXPERTS ONLY.</b><br>Enable only if you know what <b>circular symbolic links</b> are,<br>and can <b>verify that you have none</b>.":[null,""],"Use icacls":[null,""],"Windows only":[null,""],"sets video permissions after using the move method in post processing":[null,""],"Extra Scripts":[null,""],"see":[null,""],"for script arguments description and usage.":[null,""],"How SickRage will name and sort your episodes.":[null,""],"Name Pattern":[null,""],"Toggle Naming Legend":[null,""],"don't forget to add quality pattern. Otherwise after post-processing the episode will have UNKNOWN quality":[null,""],"Meaning":[null,""],"Pattern":[null,""],"Result":[null,""],"Use lower case if you want lower case names (eg. %sn, %e.n, %q_n etc)":[null,""],"Show Name":[null,""],"Show.Name":[null,""],"Show_Name":[null,""],"Season Number":[null,""],"XEM Season Number":[null,""],"Episode Number":[null,""],"XEM Episode Number":[null,""],"Episode Name":[null,""],"Episode.Name":[null,""],"Episode_Name":[null,""],"Air Date":[null,""],"Post-Processing Date":[null,""],"Quality":[null,""],"Scene Quality":[null,""],"Release Name":[null,""],"SickRage' is used in place of RLSGROUP if it could not be properly detected":[null,""],"Release Group":[null,""],"If episode is proper/repack add 'proper' to name.":[null,""],"Release Type":[null,""],"Multi-Episode Style":[null,""],"Single-EP Sample":[null,""],"Multi-EP sample":[null,""],"Strip Show Year":[null,""],"remove the TV show's year when renaming the file?":[null,""],"only applies to shows that have year inside parentheses":[null,""],"Custom Air-By-Date":[null,""],"name air-by-date shows differently than regular shows?":[null,""],"Toggle ABD Naming Legend":[null,""],"Regular Air Date":[null,""],"Year":[null,""],"Month":[null,""],"Day":[null,""],"Multi-EP style is ignored":[null,""],"Custom Sports":[null,""],"name sports shows differently than regular shows?":[null,""],"Toggle Sports Naming Legend":[null,""],"Sports Air Date":[null,""],"Custom Anime":[null,""],"name anime shows differently than regular shows?":[null,""],"Toggle Anime Naming Legend":[null,""],">XEM Season Number":[null,""],"Single-EP Anime Sample":[null,""],"Multi-EP Anime sample":[null,""],"Add Absolute Number":[null,""],"add the absolute number to the season/episode format?":[null,""],"only applies to anime. (eg. S15E45 - 310 vs S15E45)":[null,""],"Only Absolute Number":[null,""],"replace season/episode format with absolute number":[null,""],"only applies to anime.":[null,""],"No Absolute Number":[null,""],"don't include the absolute number":[null,""],"The data associated to the data. These are files associated to a TV show in the form of images and text that, when supported, will enhance the viewing experience.":[null,""],"Metadata Type":[null,""],"toggle metadata options that you wish to be created":[null,""],"multiple targets may be used":[null,""],"Select Metadata":[null,""],"Provider Priorities":[null,""],"Provider Options":[null,""],"Configure Custom Newznab Providers":[null,""],"Configure Custom Torrent Providers":[null,""],"Check off and drag the providers into the order you want them to be used.":[null,""],"At least one provider is required but two are recommended.":[null,""],"Torrent providers can be toggled in ":[null,""],"Provider does not support backlog searches at this time.":[null,""],"Provider is <b>NOT WORKING</b>.":[null,""],"Configure individual provider settings here.":[null,""],"Check with provider's website on how to obtain an API key if needed.":[null,""],"Configure provider":[null,""],"no providers available to configure.":[null,""],"URL":[null,""],"Enable daily searches":[null,""],"enable provider to perform daily searches.":[null,""],"Enable backlog searches":[null,""],"enable provider to perform backlog searches.":[null,""],"Season search mode":[null,""],"when searching for complete seasons you can choose to have it look for season packs only, or choose to have it build a complete season from just single episodes.":[null,""],"season packs only.":[null,""],"episodes only.":[null,""],"Enable fallback":[null,""],"when searching for a complete season depending on search mode you may return no results, this helps by restarting the search using the opposite search mode.":[null,""],"Custom URL":[null,""],"the URL should include the protocol (and port if applicable). Examples: http://192.168.1.4/ or http://localhost:3000/":[null,""],"Api key":[null,""],"Digest":[null,""],"Hash":[null,""],"Passkey":[null,""],"Cookies":[null,""],"example: uid=1234;pass=567845439634987<br>note: uid and pass are not your username/password.<br>use DevTools or Firebug to get these values after logging in on your browser.":[null,""],"Pin":[null,""],"Seed ratio":[null,""],"stop transfer when ratio is reached<br>(-1 SickRage default to seed forever, or leave blank for downloader default)":[null,""],"Minimum seeders":[null,""],"Minimum leechers":[null,""],"Confirmed download":[null,""],"only download torrents from trusted or verified uploaders ?":[null,""],"Ranked torrents":[null,""],"only download ranked torrents (trusted releases)":[null,""],"English torrents":[null,""],"only download english torrents, or torrents containing english subtitles":[null,""],"For Spanish torrents":[null,""],"ONLY search on this provider if show info is defined as \"Spanish\" (avoid provider's use for VOS shows)":[null,""],"Sorting results by":[null,""],"Freeleech":[null,""],"only download <b>\"FreeLeech\"</b> torrents.":[null,""],"Category":[null,""],"select torrent with Italian subtitle":[null,""],"Configure Custom<br>Newznab Providers":[null,""],"Add and setup or remove custom Newznab providers.":[null,""],"Select provider":[null,""],"-- add new provider --":[null,""],"Provider name":[null,""],"Site URL":[null,""],"Newznab search categories":[null,""],"select your Newznab categories on the left, and click the \"update categories\" button to use them for searching.) <b>don't forget to to save the form!":[null,""],"Update Categories":[null,""],"Add":[null,""],"Delete":[null,""],"Add and setup or remove custom RSS providers.":[null,""],"RSS URL":[null,""],"Search element":[null,""],"eg: title":[null,""],"Episode Search":[null,""],"NZB Search":[null,""],"Torrent Search":[null,""],"How to manage searching with":[null,""],"Randomize Providers":[null,""],"randomize the provider search order instead of going in order of placement":[null,""],"Download propers":[null,""],"replace original download with \"Proper\" or \"Repack\" if nuked":[null,""],"Check propers every":[null,""],"24 hours":[null,""],"4 hours":[null,""],"90 mins":[null,""],"45 mins":[null,""],"15 mins":[null,""],"Backlog search day(s)":[null,""],"number of day(s) that the \"Forced Backlog Search\" will cover (e.g. 7 Days)":[null,""],"Backlog search frequency":[null,""],"time in minutes between searches (min.":[null,""],"Daily search frequency":[null,""],"Usenet retention":[null,""],"age limit in days for usenet articles to be used (e.g. 500)":[null,""],"Ignore words":[null,""],"results with one or more word from this list will be ignored<br>separate words with a comma, e.g. \"word1,word2,word3\"":[null,""],"Require words":[null,""],"results with no word from this list will be ignored<br>separate words with a comma, e.g. \"word1,word2,word3\"":[null,""],"Trackers list":[null,""],"trackers that will be added to magnets without trackers<br>separate trackers with a comma, e.g. \"tracker1,tracker2,tracker3\"":[null,""],"Ignore language names in subbed results":[null,""],"ignore subbed releases based on language names <br>\n Example: \"dk\" will ignore words: dksub, dksubs, dksubbed, dksubed <br>\n separate languages with a comma, e.g. \"lang1,lang2,lang3":[null,""],"Allow high priority":[null,""],"set downloads of recently aired episodes to high priority":[null,""],"Use Failed Downloads":[null,""],"use Failed Download Handling?":[null,""],"will only work with snatched/downloaded episodes after enabling this":[null,""],"Delete Failed":[null,""],"delete files left over from a failed download?":[null,""],"this only works if Use Failed Downloads is enabled.":[null,""],"How to handle NZB search results.":[null,""],"Search NZBs":[null,""],"enable NZB search providers":[null,""],"Send .nzb files to":[null,""],"SABnzbd server URL":[null,""],"URL to your SABnzbd server (e.g. http://localhost:8080/)":[null,""],"SABnzbd username":[null,""],"(blank for none)":[null,""],"SABnzbd password":[null,""],"SABnzbd API key":[null,""],"locate at... SABnzbd Config -> General -> API Key":[null,""],"Use SABnzbd category":[null,""],"add downloads to this category (e.g. TV)":[null,""],"Use SABnzbd category (backlog episodes)":[null,""],"add downloads of old episodes to this category (e.g. TV)":[null,""],"Use SABnzbd category for anime":[null,""],"add anime downloads to this category (e.g. anime)":[null,""],"Use SABnzbd category for anime (backlog episodes)":[null,""],"add anime downloads of old episodes to this category (e.g. anime)":[null,""],"Use forced priority":[null,""],"enable to change priority from HIGH to FORCED":[null,""],"Black hole folder location":[null,""],"<b>.nzb</b> files are stored at this location for external software to find and use":[null,""],"Connect using HTTPS":[null,""],"enable Secure control in NZBGet and set the correct Secure Port here":[null,""],"NZBget host:port":[null,""],"(e.g. localhost:6789)":[null,""],"NZBget RPC host name and port number (not NZBgetweb!)":[null,""],"NZBget username":[null,""],"locate in nzbget.conf (default:nzbget)":[null,""],"NZBget password":[null,""],"locate in nzbget.conf (default:tegbzn6789)":[null,""],"Use NZBget category":[null,""],"send downloads marked this category (e.g. TV)":[null,""],"Use NZBget category (backlog episodes)":[null,""],"send downloads of old episodes marked this category (e.g. TV)":[null,""],"Use NZBget category for anime":[null,""],"send anime downloads marked this category (e.g. anime)":[null,""],"Use NZBget category for anime (backlog episodes)":[null,""],"send anime downloads of old episodes marked this category (e.g. anime)":[null,""],"NZBget priority":[null,""],"Very low":[null,""],"Low":[null,""],"Very high":[null,""],"Force":[null,""],"priority for daily snatches (no backlog)":[null,""],"Torrent host:port":[null,""],"URL to your Synology DSM (e.g. http://localhost:5000/)":[null,""],"Client username":[null,""],"Client password":[null,""],"Downloaded files location":[null,""],"where Synology Download Station will save downloaded files (blank for client default)":[null,""],"the destination has to be a shared folder for Synology DS":[null,""],"Click below to test":[null,""],"How to handle Torrent search results.":[null,""],"Search torrents":[null,""],"enable torrent search providers":[null,""],"Send .torrent files to":[null,""],"<b>.torrent</b> files are stored at this location for external software to find and use":[null,""],"URL to your torrent client (e.g. http://localhost:8000/)":[null,""],"Torrent RPC URL":[null,""],"the path without leading and trailing slashes (e.g. transmission)":[null,""],"Http Authentication":[null,""],"Verify certificate":[null,""],"disable if you get \"Deluge: Authentication Error\" in your log":[null,""],"verify SSL certificates for HTTPS requests":[null,""],"Add label to torrent":[null,""],"(blank spaces are not allowed)":[null,""],"label plugin must be enabled in Deluge clients":[null,""],"for QBitTorrent 3.3.1 and up":[null,""],"Add label to torrent for anime":[null,""],"for QBitTorrent 3.3.1 and up ":[null,""],"where <span id=\"torrent_client\">the torrent client</span> will save downloaded files (blank for client default)":[null,""],"the destination has to be a shared folder for Synology DS</span>":[null,""],"Minimum seeding time":[null,""],"time in hours":[null,""],"(default:'0' passes blank to client and '-1' passes nothing)":[null,""],"Start torrent paused":[null,""],"add .torrent to client but do <b style=\"font-weight:900\">not</b> start downloading":[null,""],"Allow high bandwidth":[null,""],"use high bandwidth allocation if priority is high":[null,""],"Test Connection":[null,""],"Windows Shares":[null,""],"Defines your existing windows shares so that we can add them to the browse dialog":[null,""],"Share #{number}":[null,""],"Share label":[null,""],"Hostname or IP":[null,""],"Share path":[null,""],"Subtitles Search":[null,""],"Subtitles Plugin":[null,""],"Plugin Settings":[null,""],"Settings that dictate how SickRage handles subtitles search results.":[null,""],"Search Subtitles":[null,""],"Subtitle Languages":[null,""],"Subtitle Directory":[null,""],"the directory where SickRage should store your <i>Subtitles</i> files.":[null,""],"leave empty if you want store subtitle in episode path.":[null,""],"Subtitle Find Frequency":[null,""],"time in hours between scans (default: 1)":[null,""],"Include Specials":[null,""],"include the show's specials when searching for subtitles?":[null,""],"Perfect matches":[null,""],"only download subtitles that match: release group, video codec, audio codec and resolution":[null,""],"if disabled you may get out of sync subtitles":[null,""],"Subtitles History":[null,""],"log downloaded Subtitle on History page?":[null,""],"Subtitles Multi-Language":[null,""],"append language codes to subtitle filenames?":[null,""],"this option is required if you use multiple subtitle languages":[null,""],"Delete unwanted subtitles":[null,""],"enable to delete unwanted subtitle languages bundled with release":[null,""],"Embedded Subtitles":[null,""],"ignore subtitles embedded inside video file?":[null,""],"this will ignore <u>all</u> embedded subtitles for every video file!":[null,""],"Hearing Impaired Subtitles":[null,""],"download hearing impaired style subtitles?":[null,""],"See":[null,""],"for a script arguments description.":[null,""],"Additional scripts separated by <b>|</b>.":[null,""],"Scripts are called after each episode has searched and downloaded subtitles.":[null,""],"For any scripted languages, include the interpreter executable before the script. See the following example":[null,""],"For Windows:":[null,""],"For Linux / OS X:":[null,""],"Subtitle Providers":[null,""],"Check off and drag the plugins into the order you want them to be used.":[null,""],"At least one plugin is required.":[null,""]," Web-scraping plugin":[null,""],"Provider Settings":[null,""],"Set user and password for each provider":[null,""],"User Name":[null,""],"Change Show":[null,""],"Prev Show":[null,""],"Next Show":[null,""],"Jump to Season":[null,""],"Specials":[null,""],"Poster for":[null,""],"Stars":[null,""],"minutes":[null,""],"View other popular {genre} shows on trakt.tv.":[null,""],"View other popular {imdbgenre} shows on IMDB.":[null,""],"Allowed":[null,""],"Preferred":[null,""],"Originally Airs":[null,""],"Show Status":[null,""],"Default EP Status":[null,""],"Location":[null,""],"Missing":[null,""],"Scene Name":[null,""],"Required Words":[null,""],"Ignored Words":[null,""],"Size":[null,""],"Info Language":[null,""],"Subtitles SR Metadata":[null,""],"Season Folders":[null,""],"Paused":[null,""],"Air-by-Date":[null,""],"Sports":[null,""],"DVD Order":[null,""],"Scene Numbering":[null,""],"Select Filtered Episodes":[null,""],"Clear All":[null,""],"Change selected episodes to":[null,""],"Select Columns":[null,""],"Hide Episodes":[null,""],"Show Episodes":[null,""],"NFO":[null,""],"TBN":[null,""],"Episode":[null,""],"Absolute":[null,""],"Scene":[null,""],"Scene Absolute":[null,""],"File Name":[null,""],"Airdate":[null,""],"Download":[null,""],"Change the value here if scene numbering differs from the indexer episode numbering":[null,""],"Change the value here if scene absolute numbering differs from the indexer absolute numbering":[null,""],"Manual Search":[null,""],"Do you want to mark this episode as failed?":[null,""],"The episode release name will be added to the failed history, preventing it to be downloaded again.":[null,""],"Do you want to include the current episode quality in the search?":[null,""],"Choosing No will ignore any releases with the same episode quality as the one currently downloaded/snatched.":[null,""],"Download subtitle":[null,""],"Do you want to re-download the subtitle for this language?":[null,""],"It will overwrite your current subtitle":[null,""],"Format":[null,""],"Advanced":[null,""],"Main Settings":[null,""],"Show Location":[null,""],"Preferred Quality":[null,""],"Default Episode Status":[null,""],"this will set the status for future episodes.":[null,""],"this only applies to episode filenames and the contents of metadata files.":[null,""],"search for subtitles":[null,""],"Use SR Metdata":[null,""],"use SickRage metadata when searching for subtitle, this will override the autodiscovered metadata":[null,""],"pause this show (SickRage will not download episodes)":[null,""],"Format Settings":[null,""],"Air by date":[null,""],"check if the show is released as Show.03.02.2010 rather than Show.S02E03.":[null,""],"in case of an air date conflict between regular and special episodes, the later will be ignored.":[null,""],"check if the show is Anime and episodes are released as Show.265 rather than Show.S02E03":[null,""],"check if the show is a sporting or MMA event released as Show.03.02.2010 rather than Show.S02E03":[null,""],"Season folders":[null,""],"group episodes by season folder (uncheck to store in a single folder)":[null,""],"search by scene numbering (uncheck to search by indexer numbering)":[null,""],"use the DVD order instead of the air order":[null,""],"a \"Force Full Update\" is necessary, and if you have existing episodes you need to sort them manually.":[null,""],"comma-separated <i>e.g. \"word1,word2,word3</i>\"":[null,""],"search results with one or more words from this list will be ignored.":[null,""],"e.g. \"word1,word2,word3\"":[null,""],"search results with no words from this list will be ignored.":[null,""],"Scene Exception":[null,""],"this will affect episode search on NZB and torrent providers.":[null,""],"this list appends to the original show name.":[null,""],"WARNING logs":[null,""],"ERROR logs":[null,""],"There are no events to display.":[null,""],"Limit":[null,""],"Layout":[null,""],"HistoryLayout":[null,""],"Compact":[null,""],"Detailed":[null,""],"Time":[null,""],"Provider":[null,""],"Missing Provider":[null,""],"missing provider":[null,""],"Directory":[null,""],"Show Name (tvshow.nfo)":[null,""],"Indexer":[null,""],"Enter the folder containing the episode":[null,""],"Process Method to be used":[null,""],"Copy":[null,""],"Move":[null,""],"Hard Link":[null,""],"Symbolic Link":[null,""],"Symbolic Link Reversed":[null,""],"Force already Post Processed Dir/Files":[null,""],"Mark Dir/Files as priority download":[null,""],"(Check it to replace the file even if it exists at higher quality)":[null,""],"Delete files and folders":[null,""],"(Check it to delete files and folders like auto processing)":[null,""],"Don't use processing queue":[null,""],"(If checked this will return the result of the process here, but may be slow!)":[null,""],"Mark download as failed":[null,""],"Process":[null,""],"Download subtitles for this show?":[null,""],"use SickRage metadata when searching for subtitle, <br />this will override the autodiscovered metadata":[null,""],"Status for previously aired episodes":[null,""],"Status for all future episodes":[null,""],"Group episodes by season folder?":[null,""],"Is this show an Anime?":[null,""],"Is this show scene numbered?":[null,""],"Save Defaults":[null,""],"Use current values as the defaults":[null,""],"<p>Select your preferred fansub groups from the <b>Available Groups</b> and add them to the <b>Whitelist</b>. Add groups to the <b>Blacklist</b> to ignore them.</p>\n <p>The <b>Whitelist</b> is checked <i>before</i> the <b>Blacklist</b>.</p>\n <p>Groups are shown as <b>Name</b> | <b>Rating</b> | <b>Number of subbed episodes</b>.</p>\n <p>You may also add any fansub group not listed to either list manually.</p>\n <p>When doing this please note that you can only use groups listed on anidb for this anime.\n <br>If a group is not listed on anidb but subbed this anime, please correct anidb's data.</p>":[null,""],"Whitelist":[null,""],"Available Groups":[null,""],"Add to Whitelist":[null,""],"Add to Blacklist":[null,""],"Blacklist":[null,""],"Custom Group":[null,""],"Allowed Quality:":[null,""],"Preferred Quality:":[null,""],"Filter Show Name":[null,""],"Root":[null,""],"All":[null,""],"Clear Filter(s)":[null,""],"Poster":[null,""],"Small Poster":[null,""],"Banner":[null,""],"Simple":[null,""],"Next Episode":[null,""],"Progress":[null,""],"Direction":[null,""],"Ascending":[null,""],"Descending":[null,""],"Poster Size":[null,""],"Continuing":[null,""],"Ended":[null,""],"Total":[null,""],"Invalid date":[null,""],"No Network":[null,""],"Next Ep":[null,""],"Prev Ep":[null,""],"Show":[null,""],"Downloads":[null,""],"Active":[null,""],"loading":[null,""],"Loading...":[null,""],"<p><b><u>Preferred</u></b> qualities will replace those in <b><u>allowed</u></b>, even if they are lower.</p>":[null,""],"New":[null,""],"Set as Default":[null,""],"Remember me":[null,""],"Edit Selected":[null,""],"Subtitle":[null,""],"Default Ep Status":[null,""],"Update":[null,""],"Rescan":[null,""],"Rename":[null,""],"Search Subtitle":[null,""],"Force Metadata Regen":[null,""],"Snatched (Allowed)":[null,""],"Jump to Show":[null,""],"Force Backlog":[null,""],"Manage episodes with status":[null,""],"Manage":[null,""],"None of your episodes have status":[null,""],"Shows containing":[null,""],"episodes":[null,""],"Set checked shows/episodes to":[null,""],"Go":[null,""],"Select all":[null,""],"Clear all":[null,""],"Release":[null,""],"Backlog Search":[null,""],"Not in progress":[null,""],"In Progress":[null,""],"Daily Search":[null,""],"Find Propers Search":[null,""],"Propers search disabled":[null,""],"Subtitle Search":[null,""],"Subtitle search disabled":[null,""],"Search Queue":[null,""],"pending items":[null,""],"Daily":[null,""],"Manual":[null,""],"Changing any settings marked with (<span class=\"separator\">*</span>) will force a refresh of the selected shows.":[null,""],"Selected Shows":[null,""],"Root Directories":[null,""],"Current":[null,""],"Keep":[null,""],"Custom":[null,""],"Group episodes by season folder (set to \"No\" to store in a single folder).":[null,""],"Pause these shows (SickRage will not download episodes).":[null,""],"This will set the status for future episodes.":[null,""],"Search by scene numbering (set to \"No\" to search by indexer numbering).":[null,""],"Set if these shows are Anime and episodes are released as Show.265 rather than Show.S02E03":[null,""],"Set if these shows are sporting or MMA events released as Show.03.02.2010 rather than Show.S02E03.":[null,""],"In case of an air date conflict between regular and special episodes, the later will be ignored.":[null,""],"Set if these shows are released as Show.03.02.2010 rather than Show.S02E03.":[null,""],"Search for subtitles.":[null,""],"All of your episodes have {subsLanguage} subtitles.":[null,""],"Manage episodes without":[null,""],"Episodes without {subsLanguage} subtitles.":[null,""],"Episodes without {subtitleLanguage} (undefined) subtitles.":[null,""],"Download missed subtitles for selected episodes":[null,""],"Performing Restart":[null,""],"Waiting for SickRage to shut down":[null,""],"Waiting for SickRage to start again":[null,""],"Loading the default page":[null,""],"Error: The restart has timed out, perhaps something prevented SickRage from starting again?":[null,""],"Key":[null,""],"Missed":[null,""],"Today":[null,""],"Soon":[null,""],"Later":[null,""],"Subscribe":[null,""],"Date":[null,""],"View Paused":[null,""],"Hidden":[null,""],"Shown":[null,""],"Calendar":[null,""],"List":[null,""],"Ends":[null,""],"Next Ep Name":[null,""],"Run time":[null,""],"Indexers":[null,""],"No shows for this day":[null,""],"Airs":[null,""],"Plot":[null,""],"Show Update":[null,""],"Version Check":[null,""],"Proper Finder":[null,""],"Post Process":[null,""],"Subtitles Finder":[null,""],"Scheduler":[null,""],"Alive":[null,""],"Start Time":[null,""],"Cycle Time":[null,""],"Next Run":[null,""],"Last Run":[null,""],"Silent":[null,""],"True":[null,""],"N/A":[null,""],"Show id":[null,""],"Show name":[null,""],"Priority":[null,""],"Added":[null,""],"Queue type":[null,""],"LOW":[null,""],"NORMAL":[null,""],"HIGH":[null,""],"Disk Space":[null,""],"Free space":[null,""],"TV Download Directory":[null,""],"Media Root Directories":[null,""],"Preview of the proposed name changes":[null,""],"All Seasons":[null,""],"select all":[null,""],"Rename Selected":[null,""],"Cancel Rename":[null,""],"Old Location":[null,""],"New Location":[null,""],"Trakt API did not return any results, please check your config.":[null,""],"votes":[null,""],"Remove Show":[null,""],"Level":[null,""],"Filter":[null,""],"All non-absolute folder locations are relative to ":[null,""],"Manual Post-Processing":[null,""],"Episode Status Management":[null,""],"Update PLEX":[null,""],"Update KODI":[null,""],"Update Emby":[null,""],"Missed Subtitle Management":[null,""],"Help & Info":[null,""],"Backup & Restore":[null,""],"Tools":[null,""],"Support SickRage":[null,""],"View Errors":[null,""],"View Warnings":[null,""],"View Log":[null,""],"Check For Updates":[null,""],"Restart":[null,""],"Shutdown":[null,""],"Logout":[null,""],"Server Status":[null,""],"View overview of snatched episodes":[null,""],"Episodes Downloaded":[null,""],"Memory used":[null,""],"Load time":[null,""],"Branch":[null,""],"Now":[null,""]}}}} \ No newline at end of file +{"messages":{"domain":"messages","locale_data":{"messages":{"100":[null,""],"250":[null,""],"500":[null,""],"":{"domain":"messages","plural_forms":"nplurals=2; plural=(n != 1);","lang":"is_IS"},"Drama":[null,""],"Mystery":[null,""],"Science-Fiction":[null,""],"Crime":[null,""],"Action":[null,""],"Comedy":[null,""],"Thriller":[null,""],"Animation":[null,""],"Family":[null,""],"Fantasy":[null,""],"Adventure":[null,""],"Horror":[null,""],"Film-Noir":[null,""],"Sci-Fi":[null,""],"Romance":[null,""],"Sport":[null,""],"War":[null,""],"Biography":[null,""],"History":[null,""],"Music":[null,""],"Western":[null,""],"News":[null,""],"Sitcom":[null,""],"Reality-TV":[null,""],"Documentary":[null,""],"Game-Show":[null,""],"Musical":[null,""],"Talk-Show":[null,""],"Started Download":[null,""],"Download Finished":[null,""],"Subtitle Download Finished":[null,""],"SickRage Updated":[null,""],"SickRage Updated To Commit#: ":[null,""],"SickRage new login":[null,""],"New login from IP: {0}. http://geomaplookup.net/?ip={0}":[null,""],"Repeat":[null,""],"Repeat (Separated)":[null,""],"Extend":[null,""],"Extend (Limited)":[null,""],"Extend (Limited, E-prefixed)":[null,""],"Downloaded":[null,""],"Snatched":[null,""],"Snatched (Proper)":[null,""],"Failed":[null,""],"Snatched (Best)":[null,""],"Archived":[null,""],"Unknown":[null,""],"Unaired":[null,""],"Skipped":[null,""],"Wanted":[null,""],"Ignored":[null,""],"Subtitled":[null,""],"For best results please set the Download Station alias as":[null,""],"You can check this setting in the Synology DSM":[null,""],"Control Panel":[null,""],"Application Portal":[null,""],"Make sure you allow DSM to be embedded with iFrames too in":[null,""],"DSM Settings":[null,""],"Security":[null,""],"<No Filter>":[null,""],"Daily Searcher":[null,""],"Backlog":[null,""],"Show Updater":[null,""],"Check Version":[null,""],"Show Queue":[null,""],"Search Queue (All)":[null,""],"Search Queue (Daily Searcher)":[null,""],"Search Queue (Backlog)":[null,""],"Search Queue (Manual)":[null,""],"Search Queue (Retry/Failed)":[null,""],"Search Queue (RSS)":[null,""],"Find Propers":[null,""],"Postprocessor":[null,""],"Find Subtitles":[null,""],"Trakt Checker":[null,""],"Event":[null,""],"Error":[null,""],"Tornado":[null,""],"Thread":[null,""],"Main":[null,""],"Loading":[null,""],"New update found for SickRage, starting auto-updater":[null,""],"Update was successful":[null,""],"Update failed!":[null,""],"Backup":[null,""],"Config backup in progress...":[null,""],"Config backup successful, updating...":[null,""],"Config backup failed, aborting update":[null,""],"No update needed":[null,""],"Mako Error":[null,""],"Oops":[null,""],"Wrong API key used":[null,""],"Login":[null,""],"API Key not generated":[null,""],"API Builder":[null,""],"Schedule":[null,""],"Test 1":[null,""],"This is test number 1":[null,""],"Test 2":[null,""],"This is test number 2":[null,""],"You're using the {branch} branch. Please use 'master' unless specifically asked":[null,""],"Invalid show parameters":[null,""],"Invalid parameters":[null,""],"Episode couldn't be retrieved":[null,""],"Home":[null,""],"Show List":[null,""],"Error: Unsupported Request. Send jsonp request with 'callback' variable in the query string.":[null,""],"Success. Connected and authenticated":[null,""],"Authentication failed. SABnzbd expects":[null,""],"as authentication method":[null,""],"Unable to connect to host":[null,""],"SMS sent successfully":[null,""],"Problem sending SMS: {message}":[null,""],"Telegram notification succeeded. Check your Telegram clients to make sure it worked":[null,""],"Error sending Telegram notification: {message}":[null,""],"join notification succeeded. Check your join clients to make sure it worked":[null,""],"Error sending join notification: {message}":[null,""]," with password":[null,""],"Registered and Tested growl successfully {growl_host}":[null,""],"Registration and Testing of growl failed {growl_host}":[null,""],"Test prowl notice sent successfully":[null,""],"Test prowl notice failed":[null,""],"Boxcar2 notification succeeded. Check your Boxcar2 clients to make sure it worked":[null,""],"Error sending Boxcar2 notification":[null,""],"Pushover notification succeeded. Check your Pushover clients to make sure it worked":[null,""],"Error sending Pushover notification":[null,""],"Key verification successful":[null,""],"Unable to verify key":[null,""],"Tweet successful, check your twitter to make sure it worked":[null,""],"Error sending tweet":[null,""],"Please enter a valid account sid":[null,""],"Please enter a valid auth token":[null,""],"Please enter a valid phone sid":[null,""],"Please format the phone number as \"+1-###-###-####\"":[null,""],"Authorization successful and number ownership verified":[null,""],"Error sending sms":[null,""],"Slack message successful":[null,""],"Slack message failed":[null,""],"Discord message successful":[null,""],"Discord message failed":[null,""],"Test KODI notice sent successfully to {kodi_host}":[null,""],"Test KODI notice failed to {kodi_host}":[null,""],"Successful test notice sent to Plex Home Theater ... {plex_clients}":[null,""],"Test failed for Plex Home Theater ... {plex_clients}":[null,""],"Tested Plex Home Theater(s)":[null,""],"Successful test of Plex Media Server(s) ... {plex_servers}":[null,""],"Test failed, No Plex Media Server host specified":[null,""],"Test failed for Plex Media Server(s) ... {plex_servers}":[null,""],"Tested Plex Media Server host(s)":[null,""],"Tried sending desktop notification via libnotify":[null,""],"Test notice sent successfully to {emby_host}":[null,""],"Test notice failed to {emby_host}":[null,""],"Successfully started the scan update":[null,""],"Test failed to start the scan update":[null,""],"Test notice sent successfully to {nmj2_host}":[null,""],"Test notice failed to {nmj2_host}":[null,""],"Trakt Authorized":[null,""],"Trakt Not Authorized!":[null,""],"Test email sent successfully! Check inbox.":[null,""],"ERROR: {last_error}":[null,""],"Test NMA notice sent successfully":[null,""],"Test NMA notice failed":[null,""],"Pushalot notification succeeded. Check your Pushalot clients to make sure it worked":[null,""],"Error sending Pushalot notification":[null,""],"Pushbullet notification succeeded. Check your device to make sure it worked":[null,""],"Error sending Pushbullet notification":[null,""],"Status":[null,""],"Restarting SickRage":[null,""],"Update Failed":[null,""],"Update wasn't successful, not restarting. Check your log for more information.":[null,""],"Checking out branch":[null,""],"Already on branch":[null,""],"Invalid show ID: {show}":[null,""],"Show not in show list":[null,""],"Edit":[null,""],"This show is in the process of being downloaded - the info below is incomplete.":[null,""],"The information on this page is in the process of being updated.":[null,""],"The episodes below are currently being refreshed from disk":[null,""],"Currently downloading subtitles for this show":[null,""],"This show is queued to be refreshed.":[null,""],"This show is queued and awaiting an update.":[null,""],"This show is queued and awaiting subtitles download.":[null,""],"Resume":[null,""],"Pause":[null,""],"Remove":[null,""],"Re-scan files":[null,""],"Force Full Update":[null,""],"Update show in KODI":[null,""],"Update show in Emby":[null,""],"Hide specials":[null,""],"Show specials":[null,""],"Preview Rename":[null,""],"Download Subtitles":[null,""],"No scene exceptions":[null,""],"Invalid show ID":[null,""],"Unable to find the specified show":[null,""],"Unable to retreive Fansub Groups from AniDB.":[null,""],"Edit Show":[null,""],"Unable to refresh this show: {error}":[null,""],"New location <tt>{location}</tt> does not exist":[null,""],"Unable to update show: {error}":[null,""],"Unable to force an update on scene exceptions of the show.":[null,""],"Unable to force an update on scene numbering of the show.":[null,""],"{num_errors:d} error{plural} while saving changes:":[null,""],"{show_name} has been {paused_resumed}":[null,""],"resumed":[null,""],"paused":[null,""],"{show_name} has been {deleted_trashed} {was_deleted}":[null,""],"deleted":[null,""],"trashed":[null,""],"(media untouched)":[null,""],"(with all related media)":[null,""],"Unable to refresh this show.":[null,""],"Unable to update this show.":[null,""],"Library update command sent to KODI host(s)): {kodi_hosts}":[null,""],"Unable to contact one or more KODI host(s)): {kodi_hosts}":[null,""],"Library update command sent to Plex Media Server host: {plex_server}":[null,""],"Unable to contact Plex Media Server host: {plex_server}":[null,""],"Library update command sent to Emby host: {emby_host}":[null,""],"Unable to contact Emby host: {emby_host}":[null,""],"You must specify a show and at least one episode":[null,""],"Invalid status":[null,""],"Backlog was automatically started for the following seasons of <b>{show_name}</b>":[null,""],"Season":[null,""],"Backlog started":[null,""],"Retrying Search was automatically started for the following season of <b>{show_name}</b>":[null,""],"Retry Search started":[null,""],"You must specify a show":[null,""],"Can't rename episodes when the show dir is missing.":[null,""],"New subtitles downloaded: {new_subtitle_languages}":[null,""],"No subtitles downloaded":[null,""],"IRC":[null,""],"Could not load news from the repo. [Click here for news.md])({news_url})":[null,""],"The was a problem connecting to github, please refresh and try again":[null,""],"Could not load changes from the repo. [Click here for CHANGES.md]({changes_url})":[null,""],"Changelog":[null,""],"Post Processing":[null,""],"Add Shows":[null,""],"No folders selected.":[null,""],"New Show":[null,""],"Trending Shows":[null,""],"Popular Shows":[null,""],"Most Anticipated Shows":[null,""],"Most Collected Shows":[null,""],"Most Watched Shows":[null,""],"Most Played Shows":[null,""],"Recommended Shows":[null,""],"New Shows":[null,""],"Season Premieres":[null,""],"Existing Show":[null,""],"No root directories setup, please go back and add one.":[null,""],"Show added":[null,""],"Adding the specified show {show_name}":[null,""],"Missing params, no Indexer ID or folder: {show_to_add} and {root_dir}/{show_path}":[null,""],"Unknown error. Unable to add show due to problem with show selection.":[null,""],"Unable to add show":[null,""],"Folder {show_dir} exists already":[null,""],"Unable to create the folder {show_dir}, can't add the show":[null,""],"Adding the specified show into {show_dir}":[null,""],"Shows Added":[null,""],"Automatically added {num_shows} from their existing metadata files":[null,""],"Mass Update":[null,""],"Episode Overview":[null,""],"Missing Subtitles":[null,""],"Backlog Overview":[null,""],"Mass Edit":[null,""],"Unable to update show: {excption_format}":[null,""],"Unable to refresh show {show_name}: {excption_format}":[null,""],"Errors encountered":[null,""],"Updates":[null,""],"Refreshes":[null,""],"Renames":[null,""],"Subtitles":[null,""],"The following actions were queued":[null,""],"Failed Downloads":[null,""],"Manage Searches":[null,""],"Backlog search started":[null,""],"Daily search started":[null,""],"Find propers search started":[null,""],"Subtitle search started":[null,""],"Remove Selected":[null,""],"Clear History":[null,""],"Trim History":[null,""],"Selected history entries removed":[null,""],"History cleared":[null,""],"Removed history entries older than 30 days":[null,""],"General":[null,""],"Backup/Restore":[null,""],"Search Settings":[null,""],"Search Providers":[null,""],"Subtitles Settings":[null,""],"Notifications":[null,""],"Anime":[null,""],"SickRage Configuration":[null,""],"Config - Shares":[null,""],"Windows Shares Configuration":[null,""],"Saved Shares":[null,""],"Your Windows share settings have been saved":[null,""],"Config - General":[null,""],"General Configuration":[null,""],"Saved Defaults":[null,""],"Your \"add show\" defaults have been set to your current selections.":[null,""],"Unable to create directory {directory}, log directory not changed.":[null,""],"Unable to create directory {directory}, https cert directory not changed.":[null,""],"Unable to create directory {directory}, https key directory not changed.":[null,""],"Error(s) Saving Configuration":[null,""],"Configuration Saved":[null,""],"Config - Backup/Restore":[null,""],"Config - Episode Search":[null,""],"Config - Post Processing":[null,""],"Unpacking Not Supported, disabling unpack setting":[null,""],"You tried saving an invalid normal naming config, not saving your naming settings":[null,""],"You tried saving an invalid anime naming config, not saving your naming settings":[null,""],"Config - Providers":[null,""],"No Provider Name specified":[null,""],"No Provider Url specified":[null,""],"No Provider Api key specified":[null,""],"Config - Notifications":[null,""],"Config - Subtitles":[null,""],"Config - Anime":[null,""],"Clear Errors":[null,""],"Clear Warnings":[null,""],"Submit Errors":[null,""],"Logs & Errors":[null,""],"Log File":[null,""],"Logs":[null,""],"This is a test notification from SickRage":[null,""],"Choose Directory":[null,""],"Select log file folder location":[null,""],"Select CSS file":[null,""],"Select backup folder to save to":[null,""],"Select backup files to restore":[null,""],"Please fill out the necessary fields above.":[null,""],"<b>Step 1:</b> Confirm Authorization":[null,""],"Check blacklist name; the value needs to be a trakt slug":[null,""],"You must provide a recipient email address!":[null,""],"You didn't supply a Pushbullet api key":[null,""],"Don't forget to save your new pushbullet settings.":[null,""],"Select TV Download Directory":[null,""],"Select Unpack Directory":[null,""],"This pattern is invalid.":[null,""],"This pattern would be invalid without the folders, using it will force \"Season Folders\" on for all shows.":[null,""],"This pattern is valid.":[null,""],"Select .nzb black hole/watch location":[null,""],"Select .torrent black hole/watch location":[null,""],"Select .torrent download location":[null,""],"Minimum seeding time is":[null,""],"URL to your uTorrent client (e.g. http://localhost:8000)":[null,""],"Stop seeding when inactive for":[null,""],"URL to your Transmission client (e.g. http://localhost:9091)":[null,""],"URL to your Deluge client (e.g. http://localhost:8112)":[null,""],"IP or Hostname of your Deluge Daemon (e.g. scgi://localhost:58846)":[null,""],"URL to your Synology DS client (e.g. http://localhost:5000)":[null,""],"URL to your rTorrent client (e.g. scgi://localhost:5000 <br> or https://localhost/rutorrent/plugins/httprpc/action.php)":[null,""],"URL to your qBittorrent client (e.g. http://localhost:8080)":[null,""],"URL to your MLDonkey (e.g. http://localhost:4080)":[null,""],"URL to your putio client (e.g. http://localhost:8080)":[null,""],"<a herf=\"https://app.put.io/oauth/apps/new\" target=\"_blank\"> Create a new OAuth app for put.io</a>":[null,""],"Put.io Parent Folder":[null,""],"Put.io OAuth Token":[null,""],"Show Episodes":[null,""],"Hide Episodes":[null,""],"Select Show Location":[null,""],"Select Unprocessed Episode Folder":[null,""],"DELETED":[null,""],"Resume updating the log on this page.":[null,""],"Pause updating the log on this page.":[null,""],"searching {searchingFor}...":[null,""],"search timed out, try again or try another indexer":[null,""],"loading folders...":[null,""],"Loading...":[null,""],"You have reached this page by accident, please check the url.":[null,""],"A mako error has occured.<br>\n If this happened during an update a simple page refresh may be the solution.<br>\n Mako errors that happen during updates may be a one time error if there were significant ui changes.":[null,""],"Show/Hide Error":[null,""],"Add New Show":[null,""],"For shows that you haven't downloaded yet, this option finds a show on theTVDB.com, creates a directory for it's episodes, and adds it to SickRage.":[null,""],"Add From Trakt Lists":[null,""],"For shows that you haven't downloaded yet, this option lets you choose from a show from one of the Trakt lists to add to SickRage.":[null,""],"Add From IMDB's Popular Shows":[null,""],"View IMDB's list of the most popular shows. This feature uses IMDB's MOVIEMeter algorithm to identify popular TV Series.":[null,""],"Add Existing Shows":[null,""],"Use this option to add shows that already have a folder created on your hard drive. SickRage will scan your existing metadata/episodes and add the show accordingly.":[null,""],"Add Existing Show":[null,""],"Manage Directories":[null,""],"Customize Options":[null,""],"SickRage can add existing shows, using the current options, by using locally stored NFO/XML metadata to eliminate user interaction. If you would rather have SickRage prompt you to customize each show, then use the checkbox below.":[null,""],"Prompt me to set settings for each show":[null,""],"Displaying folders within these directories which aren't already added to SickRage":[null,""],"Submit":[null,""],"Find a show on theTVDB":[null,""],"Show retrieved from existing metadata":[null,""],"All Indexers":[null,""],"Search":[null,""],"This will only affect the language of the retrieved metadata file contents and episode filenames.":[null,""],"This <b>DOES NOT</b> allow SickRage to download non-english TV episodes!":[null,""],"Pick the parent folder":[null,""],"Pre-chosen Destination Folder":[null,""],"Customize options":[null,""],"Add Show":[null,""],"Skip Show":[null,""],"Sort By":[null,""],"Name":[null,""],"Original":[null,""],"Votes":[null,""],"Rating":[null,""],"Rating > Votes":[null,""],"Sort Order":[null,""],"Asc":[null,""],"Desc":[null,""],"Fetching of IMDB Data failed. Are you online?":[null,""],"Exception":[null,""],"Select Trakt List":[null,""],"Most Anticipated":[null,""],"Trending":[null,""],"Popular":[null,""],"Most Watched":[null,""],"Most Played":[null,""],"Most Collected":[null,""],"Recommended":[null,""],"Toggle navigation":[null,""],"Profile":[null,""],"JSONP":[null,""],"Back to SickRage":[null,""],"Parameters":[null,""],"Required":[null,""],"Description":[null,""],"Type":[null,""],"Default value":[null,""],"Allowed values":[null,""],"Playground":[null,""],"Clear":[null,""],"Yes":[null,""],"No":[null,""],"season":[null,""],"episode":[null,""],"Python Version":[null,""],"SSL Version":[null,""],"OS":[null,""],"Locale":[null,""],"User":[null,""],"Program Folder":[null,""],"Config File":[null,""],"Database File":[null,""],"Cache Folder":[null,""],"Log Folder":[null,""],"Arguments":[null,""],"Web Root":[null,""],"Website":[null,""],"Wiki":[null,""],"Source":[null,""],"IRC Chat":[null,""],"AnimeDB Settings":[null,""],"Look & Feel":[null,""],"AniDB is non-profit database of anime information that is freely open to the public":[null,""],"Enable":[null,""],"should SickRage use data from AniDB?":[null,""],"AniDB Username":[null,""],"username of your AniDB account":[null,""],"AniDB Password":[null,""],"password of your AniDB account":[null,""],"AniDB MyList":[null,""],"do you want to add the PostProcessed episodes to the MyList?":[null,""],"Look and Feel":[null,""],"How should the anime functions show and behave.":[null,""],"Split show lists":[null,""],"separate anime and normal shows in groups":[null,""],"Split in tabs":[null,""],"use tabs for when splitting show lists":[null,""],"Restore":[null,""],"Backup your main database file and config.":[null,""],"Select the folder you wish to save your backup file to":[null,""],"Restore your main database file and config.":[null,""],"Select the backup file you wish to restore":[null,""],"Misc":[null,""],"Interface":[null,""],"Advanced Settings":[null,""],"Startup options. Indexer options. Log and show file locations.":[null,""],"Some options may require a manual restart to take effect.":[null,""],"Default Indexer Language":[null,""],"for adding shows and metadata providers":[null,""],"Launch browser":[null,""],"open the SickRage home page on startup":[null,""],"Initial page":[null,""],"Shows":[null,""],"when launching SickRage interface":[null,""],"Choose hour to update shows":[null,""],"with information such as next air dates, show ended, etc. Use 15 for 3pm, 4 for 4am etc.":[null,""],"note":[null,""],"minutes are randomized each time SickRage is started":[null,""],"Send to trash for actions":[null,""],"when using show \"Remove\" and delete files":[null,""],"on scheduled deletes of the oldest log files":[null,""],"selected actions use trash (recycle bin) instead of the default permanent delete":[null,""],"Log file folder location":[null,""],"Number of Log files saved":[null,""],"number of log files saved when rotating logs (default: 5) (REQUIRES RESTART)":[null,""],"Size of Log files saved":[null,""],"maximum size in MB of the log file (default: 1MB) (REQUIRES RESTART)":[null,""],"Use initial indexer set to":[null,""],"as the default selection when adding new shows":[null,""],"Timeout show indexer at":[null,""],"seconds of inactivity when finding new shows (default:20)":[null,""],"Show root directories":[null,""],"where the files of shows are located":[null,""],"Save Changes":[null,""],"Options for software updates.":[null,""],"Check software updates":[null,""],"and display notifications when updates are available. Checks are run on startup and at the frequency set below*":[null,""],"Automatically update":[null,""],"fetch and install software updates. Updates are run on startup and in the background at the frequency set below*":[null,""],"Check the server every*":[null,""],"hours for software updates (default:1)":[null,""],"Notify on software update":[null,""],"send a message to all enabled notifiers when SickRage has been updated":[null,""],"User Interface":[null,""],"Options for visual appearance.":[null,""],"Interface Language":[null,""],"System Language":[null,""],"for appearance to take effect, save then refresh your browser":[null,""],"Display theme":[null,""],"Dark":[null,""],"Light":[null,""],"Use a background image":[null,""],"use a custom image as background for SickRage":[null,""],"Background Path":[null,""],"Path to the background image":[null,""],"Show fanart in the background":[null,""],"on the show summary page":[null,""],"Fanart transparency":[null,""],"transparency of the fanart in the background":[null,""],"Use a custom stylesheet file":[null,""],"use a custom .css file to style SickRage (for advanced users)":[null,""],"Stylesheet File Path":[null,""],"Path to the stylesheet (.css) file":[null,""],"Show all seasons":[null,""],"Sort with \"The\", \"A\", \"An\"":[null,""],"include articles (\"The\", \"A\", \"An\") when sorting show lists":[null,""],"Missed episodes range":[null,""],"set the range in days of the missed episodes in the Schedule page":[null,""],"Display fuzzy dates":[null,""],"move absolute dates into tooltips and display e.g. \"Last Thu\", \"On Tue\"":[null,""],"Trim zero padding":[null,""],"remove the leading number \"0\" shown on hour of day, and date of month":[null,""],"Date style":[null,""],"Use System Default":[null,""],"Time style":[null,""],"seconds are only shown on the History page":[null,""],"Timezone":[null,""],"Local":[null,""],"Network":[null,""],"display dates and times in either your timezone or the shows network timezone":[null,""],"use local timezone to start searching for episodes minutes after show ends (depends on your dailysearch frequency)":[null,""],"Download url":[null,""],"URL where the shows can be downloaded.":[null,""],"Web Interface":[null,""],"it is recommended that you enable a username and password to secure SickRage from being tampered with remotely.":[null,""],"these options require a manual restart to take effect.":[null,""],"API key":[null,""],"used to give 3rd party programs limited access to SickRage":[null,""],"you can try all the features of the API":[null,""],"here":[null,""],"HTTP logs":[null,""],"enable logs from the internal Tornado web server":[null,""],"HTTP username":[null,""],"set blank for no login":[null,""],"HTTP password":[null,""],"blank = no authentication":[null,""],"HTTP port":[null,""],"web port to browse and access SickRage (default:8081)":[null,""],"Notify on login":[null,""],"enable to be notified when a new login happens in webserver":[null,""],"Listen on IPv6":[null,""],"attempt binding to any available IPv6 address":[null,""],"Enable HTTPS":[null,""],"enable access to the web interface using a HTTPS address":[null,""],"HTTPS certificate":[null,""],"file name or path to HTTPS certificate":[null,""],"HTTPS key":[null,""],"file name or path to HTTPS key":[null,""],"Reverse proxy headers":[null,""],"accept the following reverse proxy headers (advanced)...":[null,""],"(X-Forwarded-For, X-Forwarded-Host, and X-Forwarded-Proto)":[null,""],"CPU throttling":[null,""],"Normal (default). High is lower and Low is higher CPU use":[null,""],"Anonymous redirect":[null,""],"backlink protection via anonymizer service, must end in \"?\"":[null,""],"Enable debug":[null,""],"enable debug logs":[null,""],"Verify SSL Certs":[null,""],"verify SSL Certificates (Disable this for broken SSL installs (Like QNAP))":[null,""],"No Restart":[null,""],"only shutdown when restarting SR":[null,""],"only select this when you have external software restarting SR automatically when it stops (like FireDaemon)":[null,""],"Encrypt passwords":[null,""],"in the <code>config.ini</code> file":[null,""],"warning":[null,""],"passwords must only contain":[null,""],"ASCII characters":[null,""],"Unprotected calendar":[null,""],"allow subscribing to the calendar without user and password":[null,""],"some services like Google Calendar only work this way":[null,""],"Google Calendar Icons":[null,""],"show an icon next to exported calendar events in Google Calendar":[null,""],"Proxy host":[null,""],"blank to disable or proxy to use when connecting to providers":[null,""],"also use global proxy setting for indexers (tvdb, xem, anidb, etc.)":[null,""],"Skip Remove Detection":[null,""],"skip detection of removed files":[null,""],"if disabled the episode will be set to the default deleted status":[null,""],"Default deleted episode status":[null,""],"define the status to be set for media file that has been deleted.":[null,""],"Archived option will keep previous downloaded quality":[null,""],"example: Downloaded (1080p WEB-DL) ==> Archived (1080p WEB-DL)":[null,""],"Options for github related features.":[null,""],"Branch version":[null,""],"error: No branches found.":[null,""],"select branch to use (restart required)":[null,""],"Authorization Type":[null,""],"Username and password":[null,""],"Personal access token":[null,""],"You must use a personal access token if you're using \"two-factor authentication\" on GitHub.":[null,""],"GitHub username":[null,""],"*** (REQUIRED FOR SUBMITTING ISSUES) ***":[null,""],"GitHub password":[null,""],"GitHub personal access token":[null,""],"Generate Token":[null,""],"Manage Tokens":[null,""],"GitHub remote for branch":[null,""],"access repo configured remotes (save then refresh browser)":[null,""],"default":[null,""],"origin":[null,""],"Git executable path":[null,""],"only needed if OS is unable to locate git from env":[null,""],"Git reset":[null,""],"removes untracked files and performs a hard reset on git branch automatically to help resolve update issues":[null,""],"Home Theater / NAS":[null,""],"Devices":[null,""],"Social":[null,""],"A free and open source cross-platform media center and home entertainment system software with a 10-foot user interface designed for the living-room TV.":[null,""],"send KODI commands?":[null,""],"Always on":[null,""],"log errors when unreachable?":[null,""],"Notify on snatch":[null,""],"send a notification when a download starts?":[null,""],"Notify on download":[null,""],"send a notification when a download finishes?":[null,""],"Notify on subtitle download":[null,""],"send a notification when subtitles are downloaded?":[null,""],"Update library":[null,""],"update KODI library when a download finishes?":[null,""],"Full library update":[null,""],"perform a full library update if update per-show fails?":[null,""],"Only update first host":[null,""],"only send library updates to the first active host?":[null,""],"KODI IP:Port":[null,""],"host running KODI (eg. 192.168.1.100:8080)":[null,""],"(multiple host strings must be separated by commas)":[null,""],"Username":[null,""],"username for your KODI server (blank for none)":[null,""],"Password":[null,""],"password for your KODI server (blank for none)":[null,""],"Click below to test.":[null,""],"Experience your media on a visually stunning, easy to use interface on your Mac connected to your TV. Your media library has never looked this good!":[null,""],"For sending notifications to Plex Home Theater (PHT) clients, use the KODI notifier with port <b>3005</b>.":[null,""],"send Plex Media Server library updates?":[null,""],"Plex Media Server Auth Token":[null,""],"auth token used by Plex":[null,""],"Update Library":[null,""],"update Plex Media Server library when a download finishes":[null,""],"Plex Media Server IP:Port":[null,""],"one or more hosts running Plex Media Server<br/>(eg. 192.168.1.1:32400, 192.168.1.2:32400)":[null,""],"HTTPS":[null,""],"use https for plex media server requests?":[null,""],"Click below to test Plex Media Server(s)":[null,""],"Test Plex Media Server":[null,""],"Plex Home Theater":[null,""],"send Plex Home Theater notifications?":[null,""],"Plex Home Theater IP:Port":[null,""],"one or more hosts running Plex Home Theater<br>(eg. 192.168.1.100:3000, 192.168.1.101:3000)":[null,""],"Click below to test Plex Home Theater(s)":[null,""],"Test Plex Home Theater":[null,""],"some Plex Home Theaters <b class=\"boldest\">do not</b> support notifications e.g. Plexapp for Samsung TVs":[null,""],"Emby":[null,""],"A home media server built using other popular open source technologies.":[null,""],"send update commands to Emby?":[null,""],"Emby IP:Port":[null,""],"host running Emby (eg. 192.168.1.100:8096)":[null,""],"Emby API Key":[null,""],"Networked Media Jukebox":[null,""],"The Networked Media Jukebox, or NMJ, is the official media jukebox interface made available for the Popcorn Hour 200-series.":[null,""],"send update commands to NMJ?":[null,""],"Popcorn IP address":[null,""],"IP address of Popcorn 200-series (eg. 192.168.1.100)":[null,""],"Get settings":[null,""],"Get Settings":[null,""],"the Popcorn Hour device must be powered on and NMJ running.":[null,""],"NMJ database":[null,""],"automatically filled via the 'Get Settings' button.":[null,""],"NMJ mount url":[null,""],"Networked Media Jukebox v2":[null,""],"The Networked Media Jukebox, or NMJv2, is the official media jukebox interface made available for the Popcorn Hour 300 & 400-series.":[null,""],"send update commands to NMJv2?":[null,""],"IP address of Popcorn 300/400-series (eg. 192.168.1.100)":[null,""],"Database location":[null,""],"Database instance":[null,""],"adjust this value if the wrong database is selected.":[null,""],"Find database":[null,""],"Find Database":[null,""],"the Popcorn Hour device must be powered on.":[null,""],"NMJv2 database":[null,""],"automatically filled via the 'Find Database' buttons.":[null,""],"Synology":[null,""],"The Synology DiskStation NAS.":[null,""],"Synology Indexer is the daemon running on the Synology NAS to build its media database.":[null,""],"send Synology notifications?":[null,""],"requires SickRage to be running on your Synology NAS.":[null,""],"Synology Indexer":[null,""],"Synology Notifier is the notification system of Synology DSM":[null,""],"send notifications to the Synology Notifier?":[null,""],"pyTivo":[null,""],"pyTivo is both an HMO and GoBack server. This notifier will load the completed downloads to your Tivo.":[null,""],"send notifications to pyTivo?":[null,""],"requires the downloaded files to be accessible by pyTivo.":[null,""],"pyTivo IP:Port":[null,""],"host running pyTivo (eg. 192.168.1.1:9032)":[null,""],"pyTivo share name":[null,""],"value used in pyTivo Web Configuration to name the share.":[null,""],"Tivo name":[null,""],"(Messages & Settings > Account & System Information > System Information > DVR name)":[null,""],"Growl":[null,""],"A cross-platform unobtrusive global notification system.":[null,""],"send Growl notifications?":[null,""],"Growl IP:Port":[null,""],"host running Growl (eg. 192.168.1.100:23053)":[null,""],"may leave blank if SickRage is on the same host.":[null,""],"otherwise Growl <b>requires</b> a password to be used.":[null,""],"Click below to register and test Growl, this is required for Growl notifications to work.":[null,""],"Register Growl":[null,""],"Prowl":[null,""],"A Growl client for iOS.":[null,""],"send Prowl notifications?":[null,""],"Prowl Message Title":[null,""],"Global Prowl API key(s)":[null,""],"Prowl API(s) listed here, separated by commas if applicable, will<br> receive notifications for <b>all</b> shows. Your Prowl API key is available at:":[null,""],"(this field may be blank except when testing.)":[null,""],"Show notification list":[null,""],"-- Select a Show --":[null,""],"Configure per-show notifications here by entering Prowl API key(s), separated by commas, '\n 'after selecting a show in the drop-down box. Be sure to activate the 'Save for this show' '\n 'button below after each entry.":[null,""],"Save for this show":[null,""],"Prowl priority":[null,""],"Very Low":[null,""],"Moderate":[null,""],"Normal":[null,""],"High":[null,""],"Emergency":[null,""],"priority of Prowl messages from SickRage.":[null,""],"Libnotify":[null,""],"The standard desktop notification API for Linux/*nix systems. This notifier will only function if the pynotify module is installed (Ubuntu/Debian package <a href=\"apt:python-notify\">python-notify</a>).":[null,""],"send Libnotify notifications?":[null,""],"Pushover":[null,""],"Pushover makes it easy to send real-time notifications to your Android and iOS devices.":[null,""],"send Pushover notifications?":[null,""],"Pushover key":[null,""],"user key of your Pushover account":[null,""],"Pushover API key":[null,""],"click here":[null,""]," to create a Pushover API key":[null,""],"Pushover devices":[null,""],"comma separated list of pushover devices you want to send notifications to":[null,""],"Pushover notification sound":[null,""],"Bike":[null,""],"Bugle":[null,""],"Cash Register":[null,""],"Classical":[null,""],"Cosmic":[null,""],"Falling":[null,""],"Gamelan":[null,""],"Incoming":[null,""],"Intermission":[null,""],"Magic":[null,""],"Mechanical":[null,""],"Piano Bar":[null,""],"Siren":[null,""],"Space Alarm":[null,""],"Tug Boat":[null,""],"Alien Alarm (long)":[null,""],"Climb (long)":[null,""],"Persistent (long)":[null,""],"Pushover Echo (long)":[null,""],"Up Down (long)":[null,""],"None (silent)":[null,""],"Device specific":[null,""],"choose notification sound to use":[null,""],"Pushover priority":[null,""],"Choose priority to use":[null,""],"Boxcar 2":[null,""],"Read your messages where and when you want them!":[null,""],"send Boxcar notifications?":[null,""],"Boxcar2 access token":[null,""],"access token for your Boxcar account.":[null,""],"NMA":[null,""],"Notify My Android":[null,""],"Notify My Android is a Prowl-like Android App and API that offers an easy way to send notifications from your application directly to your Android device.":[null,""],"send NMA notifications?":[null,""],"NMA API key":[null,""],"(multiple keys must be separated by commas, up to a maximum of 5)":[null,""],"NMA priority":[null,""],"priority of NMA messages from SickRage.":[null,""],"Pushalot":[null,""],"Pushalot is a platform for receiving custom push notifications to connected devices running Windows Phone or Windows 8.":[null,""],"send Pushalot notifications ?":[null,""],"Pushalot authorization token":[null,""],"authorization token of your Pushalot account.":[null,""],"Pushbullet":[null,""],"Pushbullet is a platform for receiving custom push notifications to connected devices running Android/iOS and desktop browsers such as Chrome, Firefox or Opera.":[null,""],"send Pushbullet notifications?":[null,""],"Pushbullet API key":[null,""],"API key of your Pushbullet account":[null,""],"Pushbullet devices":[null,""],"Update device list":[null,""],"Pushbullet channels":[null,""],"Free Mobile":[null,""],"Free Mobile is a famous French cellular network provider.<br> It provides to their customer a free SMS API.":[null,""],"send SMS notifications?":[null,""],"send a SMS when a download starts?":[null,""],"send a SMS when a download finishes?":[null,""],"send a SMS when subtitles are downloaded?":[null,""],"Free Mobile customer ID":[null,""],"it's your Free Mobile customer ID (8 digits)":[null,""],"Free Mobile API key":[null,""],"find your API key in your customer portal.":[null,""],"Click below to test your settings.":[null,""],"Telegram":[null,""],"Telegram is a cloud-based instant messaging service.":[null,""],"send Telegram notifications?":[null,""],"send a message when a download starts?":[null,""],"send a message when a download finishes?":[null,""],"send a message when subtitles are downloaded?":[null,""],"User/group ID":[null,""],"contact @myidbot on Telegram to get an ID":[null,""],"Bot API token":[null,""],"contact @BotFather on Telegram to set up one":[null,""],"Join":[null,""],"Join all of your devices together!":[null,""],"send Join notifications?":[null,""],"Device ID":[null,""],"per device specific id":[null,""]," to create a Join API key":[null,""],"Twilio":[null,""],"Twilio is a webservice API that allows you to communicate directly with a mobile number. This notifier will send a text directly to your mobile device.":[null,""],"should SickRage text your mobile device?":[null,""],"Twilio Account SID":[null,""],"account SID of your Twilio account.":[null,""],"Twilio Auth Token":[null,""],"Twilio Phone SID":[null,""],"phone SID that you would like to send the sms from":[null,""],"Your phone number":[null,""],"phone number that will receive the sms. Please use the format +1-###-###-####":[null,""],"Twitter":[null,""],"A social networking and microblogging service, enabling its users to send and read other users' messages called tweets.":[null,""],"should SickRage post tweets on Twitter?":[null,""],"you may want to use a secondary account.":[null,""],"send direct message":[null,""],"send a notification via Direct Message, not via status update":[null,""],"send DM to":[null,""],"Twitter account to send Direct Messages to (must follow you)":[null,""],"Step One":[null,""],"Request Authorization":[null,""],"Click the \"Request Authorization\" button.<br> This will open a new page containing an auth key.<br> <b>note:</b> if nothing happens check your popup blocker.":[null,""],"Step Two":[null,""],"Enter the key Twitter gave you below, and click \"Verify Key\".":[null,""],"Trakt":[null,""],"Trakt helps keep a record of what TV shows and movies you are watching. Based on your favorites, Trakt recommends additional shows and movies you'll enjoy!":[null,""],"send Trakt.tv notifications?":[null,""],"username of your Trakt account.":[null,""],"Trakt PIN":[null,""],"Get Trakt PIN":[null,""],"PIN code to authorize SickRage to access Trakt on your behalf.":[null,""],"API Timeout":[null,""],"seconds to wait for Trakt API to respond. (Use 0 to wait forever)":[null,""],"Default indexer":[null,""],"Sync libraries":[null,""],"sync your SickRage show library with your trakt show library.":[null,""],"Remove Episodes From Collection":[null,""],"remove an episode from your Trakt Collection if it is not in your SickRage Library.":[null,""],"Sync watchlist":[null,""],"sync your SickRage show watchlist with your trakt show watchlist (either Show and Episode).":[null,""],"episode will be added on watch list when wanted or snatched and will be removed when downloaded ":[null,""],"Watchlist add method":[null,""],"Skip All":[null,""],"Download Pilot Only":[null,""],"Get whole show":[null,""],"method in which to download episodes for new shows.":[null,""],"Remove episode":[null,""],"remove an episode from your watchlist after it is downloaded.":[null,""],"Remove series":[null,""],"remove the whole series from your watchlist after any download.":[null,""],"Remove watched show":[null,""],"remove the show from sickrage if it's ended and completely watched":[null,""],"Start paused":[null,""],"shows grabbed from your trakt watchlist start paused.":[null,""],"Trakt blackList name":[null,""],"name (slug) of list on Trakt for blacklisting show on 'Add Trending Show' & 'Add Recommended Shows' pages":[null,""],"Email":[null,""],"Allows configuration of email notifications on a per show basis.":[null,""],"send email notifications?":[null,""],"SMTP host":[null,""],"hostname of your SMTP email server.":[null,""],"SMTP port":[null,""],"port number used to connect to your SMTP host.":[null,""],"SMTP from":[null,""],"sender email address, some hosts require a real address.":[null,""],"Use TLS":[null,""],"check to use TLS encryption.":[null,""],"SMTP user":[null,""],"(optional) your SMTP server username.":[null,""],"SMTP password":[null,""],"(optional) your SMTP server password.":[null,""],"Global email list":[null,""],"email addresses listed here, separated by commas if applicable, will<br> receive notifications for <b>all</b> shows.":[null,""],"(This field may be blank except when testing.)":[null,""],"Email Subject":[null,""],"use a custom subject for some privacy protection?":[null,""],"(leave blank for the default SickRage subject)":[null,""],"configure per-show notifications here by entering email address(es), separated by commas,":[null,""],"after selecting a show in the drop-down box. Be sure to activate the 'Save for this show'":[null,""],"button below after each entry.":[null,""],"Slack":[null,""],"Slack brings all your communication together in one place. It's real-time messaging, archiving and search for modern teams.":[null,""],"should SickRage post messages on Slack?":[null,""],"Slack Incoming Webhook":[null,""],"Discord":[null,""],"All-in-one voice and text chat for gamers that's free, secure, and works on both your desktop and phone.":[null,""],"Should SickRage post messages on Discord?":[null,""],"Discord Incoming Webhook":[null,""],"Create webhook under channel settings.":[null,""],"Discord Bot Name":[null,""],"Blank will use webhook default Name.":[null,""],"Discord Avatar URL":[null,""],"Blank will use webhook default Avatar.":[null,""],"Discord TTS":[null,""],"Send notifications using text-to-speech":[null,""],"Post-Processing":[null,""],"Episode Naming":[null,""],"Metadata":[null,""],"Settings that dictate how SickRage should process completed downloads.":[null,""],"enable the automatic post processor to scan and process any files in your Post Processing Dir":[null,""],"do not use if you use an external Post Processing script":[null,""],"Post Processing Dir":[null,""],"the folder where your download client puts the completed TV downloads.":[null,""],"please use seperate downloading and completed folders in your download client if possible.":[null,""],"Processing Method":[null,""],"what method should be used to put files into the library?":[null,""],"if you keep seeding torrents after they finish, please avoid the 'move' processing method to prevent errors.":[null,""],"Auto Post-Processing Frequency":[null,""],"time in minutes to check for new files to auto post-process (min 10)":[null,""],"Postpone post processing":[null,""],"wait to process a folder if sync files are present.":[null,""],"Sync File Extensions":[null,""],"comma seperated list of extensions or filename globs SickRage ignores when Post Processing":[null,""],"Rename Episodes":[null,""],"rename episode using the Episode Naming settings?":[null,""],"Create missing show directories":[null,""],"create missing show directories when they get deleted":[null,""],"Add shows without directory":[null,""],"add shows without creating a directory (not recommended)":[null,""],"Move associated files":[null,""],"move associated (srt/srr/sfv/etc) files while post processing?":[null,""],"Rename .nfo file":[null,""],"rename the original .nfo file to .nfo-orig to avoid conflicts?":[null,""],"Associated file extensions":[null,""],"comma separated list of associated file extensions SickRage should keep while post processing.":[null,""],"leaving it empty means no associated files will be post processed":[null,""],"Delete non associated files":[null,""],"delete non associated files while post processing?":[null,""],"Change File Date":[null,""],"set last modified filedate to the date that the episode aired?":[null,""],"some systems may ignore this feature.":[null,""],"Timezone for File Date":[null,""],"local":[null,""],"network":[null,""],"what timezone should be used to change File Date?":[null,""],"Unpack":[null,""],"What to do with archived releases found in your <i>TV Download Dir</i>?":[null,""],"Ignore (do not process contents)":[null,""],"Unpack (process contents)":[null,""],"Treat as video (process archive as-is)":[null,""],"'Unpack' only works with RAR archives":[null,""],"Windows":[null,""],"WinRar is required on windows":[null,""],"Unpack Directory":[null,""],"Choose a path to unpack files, leave blank to unpack in download dir":[null,""],"Unrar Location":[null,""],"add the path to unrar if it is not in the system path":[null,""],"Alternate Unrar Tool":[null,""],"add the path to an alternate unrar tool if it is not in the system path":[null,""],"Delete RAR contents":[null,""],"delete content of RAR files, even if Process Method not set to move?":[null,""],"only working with RAR archive":[null,""],"Don't delete empty folders":[null,""],"leave empty folders when Post Processing?":[null,""],"can be overridden using manual Post Processing":[null,""],"Follow symbolic-links":[null,""],"follow down symbolic links in download directory?":[null,""],"<b>EXPERTS ONLY.</b><br>Enable only if you know what <b>circular symbolic links</b> are,<br>and can <b>verify that you have none</b>.":[null,""],"Use icacls":[null,""],"Windows only":[null,""],"sets video permissions after using the move method in post processing":[null,""],"Extra Scripts":[null,""],"see":[null,""],"for script arguments description and usage.":[null,""],"How SickRage will name and sort your episodes.":[null,""],"Name Pattern":[null,""],"Toggle Naming Legend":[null,""],"don't forget to add quality pattern. Otherwise after post-processing the episode will have UNKNOWN quality":[null,""],"Meaning":[null,""],"Pattern":[null,""],"Result":[null,""],"Use lower case if you want lower case names (eg. %sn, %e.n, %q_n etc)":[null,""],"Show Name":[null,""],"Show.Name":[null,""],"Show_Name":[null,""],"Season Number":[null,""],"XEM Season Number":[null,""],"Episode Number":[null,""],"XEM Episode Number":[null,""],"Episode Name":[null,""],"Episode.Name":[null,""],"Episode_Name":[null,""],"Air Date":[null,""],"Post-Processing Date":[null,""],"Quality":[null,""],"Scene Quality":[null,""],"Release Name":[null,""],"SickRage' is used in place of RLSGROUP if it could not be properly detected":[null,""],"Release Group":[null,""],"If episode is proper/repack add 'proper' to name.":[null,""],"Release Type":[null,""],"Multi-Episode Style":[null,""],"Single-EP Sample":[null,""],"Multi-EP sample":[null,""],"Strip Show Year":[null,""],"remove the TV show's year when renaming the file?":[null,""],"only applies to shows that have year inside parentheses":[null,""],"Custom Air-By-Date":[null,""],"name air-by-date shows differently than regular shows?":[null,""],"Toggle ABD Naming Legend":[null,""],"Regular Air Date":[null,""],"Year":[null,""],"Month":[null,""],"Day":[null,""],"Multi-EP style is ignored":[null,""],"Custom Sports":[null,""],"name sports shows differently than regular shows?":[null,""],"Toggle Sports Naming Legend":[null,""],"Sports Air Date":[null,""],"Custom Anime":[null,""],"name anime shows differently than regular shows?":[null,""],"Toggle Anime Naming Legend":[null,""],">XEM Season Number":[null,""],"Single-EP Anime Sample":[null,""],"Multi-EP Anime sample":[null,""],"Add Absolute Number":[null,""],"add the absolute number to the season/episode format?":[null,""],"only applies to anime. (eg. S15E45 - 310 vs S15E45)":[null,""],"Only Absolute Number":[null,""],"replace season/episode format with absolute number":[null,""],"only applies to anime.":[null,""],"No Absolute Number":[null,""],"don't include the absolute number":[null,""],"The data associated to the data. These are files associated to a TV show in the form of images and text that, when supported, will enhance the viewing experience.":[null,""],"Metadata Type":[null,""],"toggle metadata options that you wish to be created":[null,""],"multiple targets may be used":[null,""],"Select Metadata":[null,""],"Provider Priorities":[null,""],"Provider Options":[null,""],"Configure Custom Newznab Providers":[null,""],"Configure Custom Torrent Providers":[null,""],"Check off and drag the providers into the order you want them to be used.":[null,""],"At least one provider is required but two are recommended.":[null,""],"Torrent providers can be toggled in ":[null,""],"Provider does not support backlog searches at this time.":[null,""],"Provider is <b>NOT WORKING</b>.":[null,""],"Configure individual provider settings here.":[null,""],"Check with provider's website on how to obtain an API key if needed.":[null,""],"Configure provider":[null,""],"no providers available to configure.":[null,""],"URL":[null,""],"Enable daily searches":[null,""],"enable provider to perform daily searches.":[null,""],"Enable backlog searches":[null,""],"enable provider to perform backlog searches.":[null,""],"Season search mode":[null,""],"when searching for complete seasons you can choose to have it look for season packs only, or choose to have it build a complete season from just single episodes.":[null,""],"season packs only.":[null,""],"episodes only.":[null,""],"Enable fallback":[null,""],"when searching for a complete season depending on search mode you may return no results, this helps by restarting the search using the opposite search mode.":[null,""],"Custom URL":[null,""],"the URL should include the protocol (and port if applicable). Examples: http://192.168.1.4/ or http://localhost:3000/":[null,""],"Api key":[null,""],"Digest":[null,""],"Hash":[null,""],"Passkey":[null,""],"Cookies":[null,""],"example: uid=1234;pass=567845439634987<br>note: uid and pass are not your username/password.<br>use DevTools or Firebug to get these values after logging in on your browser.":[null,""],"Pin":[null,""],"Seed ratio":[null,""],"stop transfer when ratio is reached<br>(-1 SickRage default to seed forever, or leave blank for downloader default)":[null,""],"Minimum seeders":[null,""],"Minimum leechers":[null,""],"Confirmed download":[null,""],"only download torrents from trusted or verified uploaders ?":[null,""],"Ranked torrents":[null,""],"only download ranked torrents (trusted releases)":[null,""],"English torrents":[null,""],"only download english torrents, or torrents containing english subtitles":[null,""],"For Spanish torrents":[null,""],"ONLY search on this provider if show info is defined as \"Spanish\" (avoid provider's use for VOS shows)":[null,""],"Sorting results by":[null,""],"Freeleech":[null,""],"only download <b>\"FreeLeech\"</b> torrents.":[null,""],"Category":[null,""],"select torrent with Italian subtitle":[null,""],"Configure Custom<br>Newznab Providers":[null,""],"Add and setup or remove custom Newznab providers.":[null,""],"Select provider":[null,""],"-- add new provider --":[null,""],"Provider name":[null,""],"Site URL":[null,""],"Newznab search categories":[null,""],"select your Newznab categories on the left, and click the \"update categories\" button to use them for searching.) <b>don't forget to to save the form!":[null,""],"Update Categories":[null,""],"Add":[null,""],"Delete":[null,""],"Add and setup or remove custom RSS providers.":[null,""],"RSS URL":[null,""],"Search element":[null,""],"eg: title":[null,""],"Episode Search":[null,""],"NZB Search":[null,""],"Torrent Search":[null,""],"How to manage searching with":[null,""],"Randomize Providers":[null,""],"randomize the provider search order instead of going in order of placement":[null,""],"Download propers":[null,""],"replace original download with \"Proper\" or \"Repack\" if nuked":[null,""],"Check propers every":[null,""],"24 hours":[null,""],"4 hours":[null,""],"90 mins":[null,""],"45 mins":[null,""],"15 mins":[null,""],"Backlog search day(s)":[null,""],"number of day(s) that the \"Forced Backlog Search\" will cover (e.g. 7 Days)":[null,""],"Backlog search frequency":[null,""],"time in minutes between searches (min.":[null,""],"Daily search frequency":[null,""],"Usenet retention":[null,""],"age limit in days for usenet articles to be used (e.g. 500)":[null,""],"Ignore words":[null,""],"results with one or more word from this list will be ignored<br>separate words with a comma, e.g. \"word1,word2,word3\"":[null,""],"Require words":[null,""],"results with no word from this list will be ignored<br>separate words with a comma, e.g. \"word1,word2,word3\"":[null,""],"Trackers list":[null,""],"trackers that will be added to magnets without trackers<br>separate trackers with a comma, e.g. \"tracker1,tracker2,tracker3\"":[null,""],"Ignore language names in subbed results":[null,""],"ignore subbed releases based on language names <br>\n Example: \"dk\" will ignore words: dksub, dksubs, dksubbed, dksubed <br>\n separate languages with a comma, e.g. \"lang1,lang2,lang3":[null,""],"Allow high priority":[null,""],"set downloads of recently aired episodes to high priority":[null,""],"Use Failed Downloads":[null,""],"use Failed Download Handling?":[null,""],"will only work with snatched/downloaded episodes after enabling this":[null,""],"Delete Failed":[null,""],"delete files left over from a failed download?":[null,""],"this only works if Use Failed Downloads is enabled.":[null,""],"How to handle NZB search results.":[null,""],"Search NZBs":[null,""],"enable NZB search providers":[null,""],"Send .nzb files to":[null,""],"SABnzbd server URL":[null,""],"URL to your SABnzbd server (e.g. http://localhost:8080/)":[null,""],"SABnzbd username":[null,""],"(blank for none)":[null,""],"SABnzbd password":[null,""],"SABnzbd API key":[null,""],"locate at... SABnzbd Config -> General -> API Key":[null,""],"Use SABnzbd category":[null,""],"add downloads to this category (e.g. TV)":[null,""],"Use SABnzbd category (backlog episodes)":[null,""],"add downloads of old episodes to this category (e.g. TV)":[null,""],"Use SABnzbd category for anime":[null,""],"add anime downloads to this category (e.g. anime)":[null,""],"Use SABnzbd category for anime (backlog episodes)":[null,""],"add anime downloads of old episodes to this category (e.g. anime)":[null,""],"Use forced priority":[null,""],"enable to change priority from HIGH to FORCED":[null,""],"Black hole folder location":[null,""],"<b>.nzb</b> files are stored at this location for external software to find and use":[null,""],"Connect using HTTPS":[null,""],"enable Secure control in NZBGet and set the correct Secure Port here":[null,""],"NZBget host:port":[null,""],"(e.g. localhost:6789)":[null,""],"NZBget RPC host name and port number (not NZBgetweb!)":[null,""],"NZBget username":[null,""],"locate in nzbget.conf (default:nzbget)":[null,""],"NZBget password":[null,""],"locate in nzbget.conf (default:tegbzn6789)":[null,""],"Use NZBget category":[null,""],"send downloads marked this category (e.g. TV)":[null,""],"Use NZBget category (backlog episodes)":[null,""],"send downloads of old episodes marked this category (e.g. TV)":[null,""],"Use NZBget category for anime":[null,""],"send anime downloads marked this category (e.g. anime)":[null,""],"Use NZBget category for anime (backlog episodes)":[null,""],"send anime downloads of old episodes marked this category (e.g. anime)":[null,""],"NZBget priority":[null,""],"Very low":[null,""],"Low":[null,""],"Very high":[null,""],"Force":[null,""],"priority for daily snatches (no backlog)":[null,""],"Torrent host:port":[null,""],"URL to your Synology DSM (e.g. http://localhost:5000/)":[null,""],"Client username":[null,""],"Client password":[null,""],"Downloaded files location":[null,""],"where Synology Download Station will save downloaded files (blank for client default)":[null,""],"the destination has to be a shared folder for Synology DS":[null,""],"Click below to test":[null,""],"How to handle Torrent search results.":[null,""],"Search torrents":[null,""],"enable torrent search providers":[null,""],"Send .torrent files to":[null,""],"<b>.torrent</b> files are stored at this location for external software to find and use":[null,""],"URL to your torrent client (e.g. http://localhost:8000/)":[null,""],"Torrent RPC URL":[null,""],"the path without leading and trailing slashes (e.g. transmission)":[null,""],"Http Authentication":[null,""],"Verify certificate":[null,""],"disable if you get \"Deluge: Authentication Error\" in your log":[null,""],"verify SSL certificates for HTTPS requests":[null,""],"Add label to torrent":[null,""],"(blank spaces are not allowed)":[null,""],"label plugin must be enabled in Deluge clients":[null,""],"for QBitTorrent 3.3.1 and up":[null,""],"Add label to torrent for anime":[null,""],"for QBitTorrent 3.3.1 and up ":[null,""],"where <span id=\"torrent_client\">the torrent client</span> will save downloaded files (blank for client default)":[null,""],"the destination has to be a shared folder for Synology DS</span>":[null,""],"Minimum seeding time":[null,""],"time in hours":[null,""],"(default:'0' passes blank to client and '-1' passes nothing)":[null,""],"Start torrent paused":[null,""],"add .torrent to client but do <b style=\"font-weight:900\">not</b> start downloading":[null,""],"Allow high bandwidth":[null,""],"use high bandwidth allocation if priority is high":[null,""],"Test Connection":[null,""],"Windows Shares":[null,""],"Defines your existing windows shares so that we can add them to the browse dialog":[null,""],"Share #{number}":[null,""],"Share label":[null,""],"Hostname or IP":[null,""],"Share path":[null,""],"Subtitles Search":[null,""],"Subtitles Plugin":[null,""],"Plugin Settings":[null,""],"Settings that dictate how SickRage handles subtitles search results.":[null,""],"Search Subtitles":[null,""],"Subtitle Languages":[null,""],"Subtitle Directory":[null,""],"the directory where SickRage should store your <i>Subtitles</i> files.":[null,""],"leave empty if you want store subtitle in episode path.":[null,""],"Subtitle Find Frequency":[null,""],"time in hours between scans (default: 1)":[null,""],"Include Specials":[null,""],"include the show's specials when searching for subtitles?":[null,""],"Perfect matches":[null,""],"only download subtitles that match: release group, video codec, audio codec and resolution":[null,""],"if disabled you may get out of sync subtitles":[null,""],"Subtitles History":[null,""],"log downloaded Subtitle on History page?":[null,""],"Subtitles Multi-Language":[null,""],"append language codes to subtitle filenames?":[null,""],"this option is required if you use multiple subtitle languages":[null,""],"Delete unwanted subtitles":[null,""],"enable to delete unwanted subtitle languages bundled with release":[null,""],"Embedded Subtitles":[null,""],"ignore subtitles embedded inside video file?":[null,""],"this will ignore <u>all</u> embedded subtitles for every video file!":[null,""],"Hearing Impaired Subtitles":[null,""],"download hearing impaired style subtitles?":[null,""],"See":[null,""],"for a script arguments description.":[null,""],"Additional scripts separated by <b>|</b>.":[null,""],"Scripts are called after each episode has searched and downloaded subtitles.":[null,""],"For any scripted languages, include the interpreter executable before the script. See the following example":[null,""],"For Windows:":[null,""],"For Linux / OS X:":[null,""],"Subtitle Providers":[null,""],"Check off and drag the plugins into the order you want them to be used.":[null,""],"At least one plugin is required.":[null,""]," Web-scraping plugin":[null,""],"Provider Settings":[null,""],"Set user and password for each provider":[null,""],"User Name":[null,""],"Change Show":[null,""],"Prev Show":[null,""],"Next Show":[null,""],"Jump to Season":[null,""],"Specials":[null,""],"Poster for":[null,""],"Stars":[null,""],"minutes":[null,""],"View other popular {genre} shows on trakt.tv.":[null,""],"View other popular {imdbgenre} shows on IMDB.":[null,""],"Allowed":[null,""],"Preferred":[null,""],"Originally Airs":[null,""],"Show Status":[null,""],"Default EP Status":[null,""],"Location":[null,""],"Missing":[null,""],"Scene Name":[null,""],"Required Words":[null,""],"Ignored Words":[null,""],"Size":[null,""],"Info Language":[null,""],"Subtitles SR Metadata":[null,""],"Season Folders":[null,""],"Paused":[null,""],"Air-by-Date":[null,""],"Sports":[null,""],"DVD Order":[null,""],"Scene Numbering":[null,""],"Select Filtered Episodes":[null,""],"Clear All":[null,""],"Change selected episodes to":[null,""],"Select Columns":[null,""],"NFO":[null,""],"TBN":[null,""],"Episode":[null,""],"Absolute":[null,""],"Scene":[null,""],"Scene Absolute":[null,""],"File Name":[null,""],"Airdate":[null,""],"Download":[null,""],"Change the value here if scene numbering differs from the indexer episode numbering":[null,""],"Change the value here if scene absolute numbering differs from the indexer absolute numbering":[null,""],"Manual Search":[null,""],"Do you want to mark this episode as failed?":[null,""],"The episode release name will be added to the failed history, preventing it to be downloaded again.":[null,""],"Do you want to include the current episode quality in the search?":[null,""],"Choosing No will ignore any releases with the same episode quality as the one currently downloaded/snatched.":[null,""],"Download subtitle":[null,""],"Do you want to re-download the subtitle for this language?":[null,""],"It will overwrite your current subtitle":[null,""],"Format":[null,""],"Advanced":[null,""],"Main Settings":[null,""],"Show Location":[null,""],"Preferred Quality":[null,""],"Default Episode Status":[null,""],"this will set the status for future episodes.":[null,""],"this only applies to episode filenames and the contents of metadata files.":[null,""],"search for subtitles":[null,""],"Use SR Metdata":[null,""],"use SickRage metadata when searching for subtitle, this will override the autodiscovered metadata":[null,""],"pause this show (SickRage will not download episodes)":[null,""],"Format Settings":[null,""],"Air by date":[null,""],"check if the show is released as Show.03.02.2010 rather than Show.S02E03.":[null,""],"in case of an air date conflict between regular and special episodes, the later will be ignored.":[null,""],"check if the show is Anime and episodes are released as Show.265 rather than Show.S02E03":[null,""],"check if the show is a sporting or MMA event released as Show.03.02.2010 rather than Show.S02E03":[null,""],"Season folders":[null,""],"group episodes by season folder (uncheck to store in a single folder)":[null,""],"search by scene numbering (uncheck to search by indexer numbering)":[null,""],"use the DVD order instead of the air order":[null,""],"a \"Force Full Update\" is necessary, and if you have existing episodes you need to sort them manually.":[null,""],"comma-separated <i>e.g. \"word1,word2,word3</i>\"":[null,""],"search results with one or more words from this list will be ignored.":[null,""],"e.g. \"word1,word2,word3\"":[null,""],"search results with no words from this list will be ignored.":[null,""],"Scene Exception":[null,""],"this will affect episode search on NZB and torrent providers.":[null,""],"this list appends to the original show name.":[null,""],"WARNING logs":[null,""],"ERROR logs":[null,""],"There are no events to display.":[null,""],"Limit":[null,""],"Layout":[null,""],"HistoryLayout":[null,""],"Compact":[null,""],"Detailed":[null,""],"Time":[null,""],"Provider":[null,""],"Missing Provider":[null,""],"missing provider":[null,""],"Directory":[null,""],"Show Name (tvshow.nfo)":[null,""],"Indexer":[null,""],"Enter the folder containing the episode":[null,""],"Process Method to be used":[null,""],"Copy":[null,""],"Move":[null,""],"Hard Link":[null,""],"Symbolic Link":[null,""],"Symbolic Link Reversed":[null,""],"Force already Post Processed Dir/Files":[null,""],"Mark Dir/Files as priority download":[null,""],"(Check it to replace the file even if it exists at higher quality)":[null,""],"Delete files and folders":[null,""],"(Check it to delete files and folders like auto processing)":[null,""],"Don't use processing queue":[null,""],"(If checked this will return the result of the process here, but may be slow!)":[null,""],"Mark download as failed":[null,""],"Process":[null,""],"Download subtitles for this show?":[null,""],"use SickRage metadata when searching for subtitle, <br />this will override the autodiscovered metadata":[null,""],"Status for previously aired episodes":[null,""],"Status for all future episodes":[null,""],"Group episodes by season folder?":[null,""],"Is this show an Anime?":[null,""],"Is this show scene numbered?":[null,""],"Save Defaults":[null,""],"Use current values as the defaults":[null,""],"<p>Select your preferred fansub groups from the <b>Available Groups</b> and add them to the <b>Whitelist</b>. Add groups to the <b>Blacklist</b> to ignore them.</p>\n <p>The <b>Whitelist</b> is checked <i>before</i> the <b>Blacklist</b>.</p>\n <p>Groups are shown as <b>Name</b> | <b>Rating</b> | <b>Number of subbed episodes</b>.</p>\n <p>You may also add any fansub group not listed to either list manually.</p>\n <p>When doing this please note that you can only use groups listed on anidb for this anime.\n <br>If a group is not listed on anidb but subbed this anime, please correct anidb's data.</p>":[null,""],"Whitelist":[null,""],"Available Groups":[null,""],"Add to Whitelist":[null,""],"Add to Blacklist":[null,""],"Blacklist":[null,""],"Custom Group":[null,""],"Allowed Quality:":[null,""],"Preferred Quality:":[null,""],"Filter Show Name":[null,""],"Root":[null,""],"All":[null,""],"Clear Filter(s)":[null,""],"Poster":[null,""],"Small Poster":[null,""],"Banner":[null,""],"Simple":[null,""],"Next Episode":[null,""],"Progress":[null,""],"Direction":[null,""],"Ascending":[null,""],"Descending":[null,""],"Poster Size":[null,""],"Continuing":[null,""],"Ended":[null,""],"Total":[null,""],"Invalid date":[null,""],"No Network":[null,""],"Next Ep":[null,""],"Prev Ep":[null,""],"Show":[null,""],"Downloads":[null,""],"Active":[null,""],"loading":[null,""],"<p><b><u>Preferred</u></b> qualities will replace those in <b><u>allowed</u></b>, even if they are lower.</p>":[null,""],"New":[null,""],"Set as Default":[null,""],"Remember me":[null,""],"Edit Selected":[null,""],"Subtitle":[null,""],"Default Ep Status":[null,""],"Update":[null,""],"Rescan":[null,""],"Rename":[null,""],"Search Subtitle":[null,""],"Force Metadata Regen":[null,""],"Snatched (Allowed)":[null,""],"Jump to Show":[null,""],"Force Backlog":[null,""],"Manage episodes with status":[null,""],"Manage":[null,""],"None of your episodes have status":[null,""],"Shows containing":[null,""],"episodes":[null,""],"Set checked shows/episodes to":[null,""],"Go":[null,""],"Select all":[null,""],"Clear all":[null,""],"Release":[null,""],"Backlog Search":[null,""],"Not in progress":[null,""],"In Progress":[null,""],"Daily Search":[null,""],"Find Propers Search":[null,""],"Propers search disabled":[null,""],"Subtitle Search":[null,""],"Subtitle search disabled":[null,""],"Search Queue":[null,""],"pending items":[null,""],"Daily":[null,""],"Manual":[null,""],"Changing any settings marked with (<span class=\"separator\">*</span>) will force a refresh of the selected shows.":[null,""],"Selected Shows":[null,""],"Root Directories":[null,""],"Current":[null,""],"Keep":[null,""],"Custom":[null,""],"Group episodes by season folder (set to \"No\" to store in a single folder).":[null,""],"Pause these shows (SickRage will not download episodes).":[null,""],"This will set the status for future episodes.":[null,""],"Search by scene numbering (set to \"No\" to search by indexer numbering).":[null,""],"Set if these shows are Anime and episodes are released as Show.265 rather than Show.S02E03":[null,""],"Set if these shows are sporting or MMA events released as Show.03.02.2010 rather than Show.S02E03.":[null,""],"In case of an air date conflict between regular and special episodes, the later will be ignored.":[null,""],"Set if these shows are released as Show.03.02.2010 rather than Show.S02E03.":[null,""],"Search for subtitles.":[null,""],"All of your episodes have {subsLanguage} subtitles.":[null,""],"Manage episodes without":[null,""],"Episodes without {subsLanguage} subtitles.":[null,""],"Episodes without {subtitleLanguage} (undefined) subtitles.":[null,""],"Download missed subtitles for selected episodes":[null,""],"Performing Restart":[null,""],"Waiting for SickRage to shut down":[null,""],"Waiting for SickRage to start again":[null,""],"Loading the default page":[null,""],"Error: The restart has timed out, perhaps something prevented SickRage from starting again?":[null,""],"Key":[null,""],"Missed":[null,""],"Today":[null,""],"Soon":[null,""],"Later":[null,""],"Subscribe":[null,""],"Date":[null,""],"View Paused":[null,""],"Hidden":[null,""],"Shown":[null,""],"Calendar":[null,""],"List":[null,""],"Ends":[null,""],"Next Ep Name":[null,""],"Run time":[null,""],"Indexers":[null,""],"No shows for this day":[null,""],"Airs":[null,""],"Plot":[null,""],"Show Update":[null,""],"Version Check":[null,""],"Proper Finder":[null,""],"Post Process":[null,""],"Subtitles Finder":[null,""],"Scheduler":[null,""],"Alive":[null,""],"Start Time":[null,""],"Cycle Time":[null,""],"Next Run":[null,""],"Last Run":[null,""],"Silent":[null,""],"True":[null,""],"N/A":[null,""],"Show id":[null,""],"Show name":[null,""],"Priority":[null,""],"Added":[null,""],"Queue type":[null,""],"LOW":[null,""],"NORMAL":[null,""],"HIGH":[null,""],"Disk Space":[null,""],"Free space":[null,""],"TV Download Directory":[null,""],"Media Root Directories":[null,""],"Preview of the proposed name changes":[null,""],"All Seasons":[null,""],"select all":[null,""],"Rename Selected":[null,""],"Cancel Rename":[null,""],"Old Location":[null,""],"New Location":[null,""],"Trakt API did not return any results, please check your config.":[null,""],"votes":[null,""],"Remove Show":[null,""],"Level":[null,""],"Filter":[null,""],"All non-absolute folder locations are relative to ":[null,""],"Manual Post-Processing":[null,""],"Episode Status Management":[null,""],"Update PLEX":[null,""],"Update KODI":[null,""],"Update Emby":[null,""],"Manage Torrents":[null,""],"Missed Subtitle Management":[null,""],"Help & Info":[null,""],"Backup & Restore":[null,""],"Tools":[null,""],"Support SickRage":[null,""],"View Errors":[null,""],"View Warnings":[null,""],"View Log":[null,""],"Check For Updates":[null,""],"Restart":[null,""],"Shutdown":[null,""],"Logout":[null,""],"Server Status":[null,""],"View overview of snatched episodes":[null,""],"Episodes Downloaded":[null,""],"Memory used":[null,""],"Load time":[null,""],"Branch":[null,""],"Now":[null,""]}}}} \ No newline at end of file diff --git a/locale/is_IS/LC_MESSAGES/messages.mo b/locale/is_IS/LC_MESSAGES/messages.mo index bba186dbd6db68490a801f90b7bcf019d3462a54..abfb66cd420ea6c1540d68a99782fed21da3cfbc 100644 Binary files a/locale/is_IS/LC_MESSAGES/messages.mo and b/locale/is_IS/LC_MESSAGES/messages.mo differ diff --git a/locale/is_IS/LC_MESSAGES/messages.po b/locale/is_IS/LC_MESSAGES/messages.po index 9f0e80627f3c0657efde81f7cb3e22f019d8d058..8d67daf57cbf5989cea1af16174f4b48fba6d255 100644 --- a/locale/is_IS/LC_MESSAGES/messages.po +++ b/locale/is_IS/LC_MESSAGES/messages.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: sickrage\n" "Report-Msgid-Bugs-To: miigotu@gmail.com\n" -"POT-Creation-Date: 2017-03-25 09:28-0700\n" -"PO-Revision-Date: 2017-03-25 12:29-0400\n" +"POT-Creation-Date: 2017-03-28 09:10-0700\n" +"PO-Revision-Date: 2017-03-28 12:12-0400\n" "Last-Translator: miigotu <miigotu@gmail.com>\n" "Language-Team: Icelandic\n" "MIME-Version: 1.0\n" @@ -90,7 +90,7 @@ msgid "Biography" msgstr "" #: gui/slick/views/config_general.mako:78 gui/slick/views/layouts/main.mako:145 -#: sickbeard/__init__.py:79 sickbeard/webserve.py:3807 +#: sickbeard/__init__.py:79 sickbeard/webserve.py:3778 msgid "History" msgstr "" @@ -103,7 +103,7 @@ msgid "Western" msgstr "" #: gui/slick/views/config_general.mako:79 gui/slick/views/layouts/main.mako:221 -#: sickbeard/__init__.py:80 sickbeard/webserve.py:2385 +#: sickbeard/__init__.py:80 sickbeard/webserve.py:2384 msgid "News" msgstr "" @@ -238,6 +238,34 @@ msgstr "" msgid "Subtitled" msgstr "" +#: sickbeard/helpers.py:1887 +msgid "For best results please set the Download Station alias as" +msgstr "" + +#: sickbeard/helpers.py:1888 +msgid "You can check this setting in the Synology DSM" +msgstr "" + +#: sickbeard/helpers.py:1888 sickbeard/helpers.py:1890 +msgid "Control Panel" +msgstr "" + +#: sickbeard/helpers.py:1888 +msgid "Application Portal" +msgstr "" + +#: sickbeard/helpers.py:1889 +msgid "Make sure you allow DSM to be embedded with iFrames too in" +msgstr "" + +#: sickbeard/helpers.py:1890 +msgid "DSM Settings" +msgstr "" + +#: sickbeard/helpers.py:1890 +msgid "Security" +msgstr "" + #: sickbeard/logger.py:474 msgid "<No Filter>" msgstr "" @@ -308,15 +336,15 @@ msgstr "" msgid "Event" msgstr "" -#: sickbeard/logger.py:491 sickbeard/webserve.py:1339 sickbeard/webserve.py:1342 -#: sickbeard/webserve.py:1520 sickbeard/webserve.py:1529 sickbeard/webserve.py:1717 -#: sickbeard/webserve.py:1728 sickbeard/webserve.py:1751 sickbeard/webserve.py:1764 -#: sickbeard/webserve.py:1769 sickbeard/webserve.py:1785 sickbeard/webserve.py:1790 -#: sickbeard/webserve.py:1854 sickbeard/webserve.py:1857 sickbeard/webserve.py:1863 -#: sickbeard/webserve.py:1866 sickbeard/webserve.py:1873 sickbeard/webserve.py:1876 -#: sickbeard/webserve.py:1899 sickbeard/webserve.py:1997 sickbeard/webserve.py:2002 -#: sickbeard/webserve.py:2007 sickbeard/webserve.py:2036 sickbeard/webserve.py:2040 -#: sickbeard/webserve.py:2045 +#: sickbeard/logger.py:491 sickbeard/webserve.py:1338 sickbeard/webserve.py:1341 +#: sickbeard/webserve.py:1519 sickbeard/webserve.py:1528 sickbeard/webserve.py:1716 +#: sickbeard/webserve.py:1727 sickbeard/webserve.py:1750 sickbeard/webserve.py:1763 +#: sickbeard/webserve.py:1768 sickbeard/webserve.py:1784 sickbeard/webserve.py:1789 +#: sickbeard/webserve.py:1853 sickbeard/webserve.py:1856 sickbeard/webserve.py:1862 +#: sickbeard/webserve.py:1865 sickbeard/webserve.py:1872 sickbeard/webserve.py:1875 +#: sickbeard/webserve.py:1898 sickbeard/webserve.py:1996 sickbeard/webserve.py:2001 +#: sickbeard/webserve.py:2006 sickbeard/webserve.py:2035 sickbeard/webserve.py:2039 +#: sickbeard/webserve.py:2044 msgid "Error" msgstr "" @@ -333,6 +361,7 @@ msgstr "" msgid "Main" msgstr "" +#: gui/slick/js/ajaxEpSearch.js:146 gui/slick/js/ajaxEpSearch.js:147 #: gui/slick/views/inc_home_showList.mako:27 sickbeard/show_queue.py:298 msgid "Loading" msgstr "" @@ -372,867 +401,835 @@ msgstr "" msgid "No update needed" msgstr "" -#: sickbeard/webserve.py:170 +#: sickbeard/webserve.py:171 msgid "Mako Error" msgstr "" -#: sickbeard/webserve.py:195 +#: sickbeard/webserve.py:196 msgid "Oops" msgstr "" -#: sickbeard/webserve.py:197 +#: sickbeard/webserve.py:198 msgid "Wrong API key used" msgstr "" -#: gui/slick/views/login.mako:34 sickbeard/webserve.py:302 +#: gui/slick/views/login.mako:34 sickbeard/webserve.py:303 msgid "Login" msgstr "" -#: sickbeard/webserve.py:406 +#: sickbeard/webserve.py:392 msgid "API Key not generated" msgstr "" -#: sickbeard/webserve.py:409 +#: sickbeard/webserve.py:395 msgid "API Builder" msgstr "" #: gui/slick/views/config_general.mako:77 gui/slick/views/layouts/main.mako:141 -#: sickbeard/webserve.py:512 +#: sickbeard/webserve.py:498 msgid "Schedule" msgstr "" -#: sickbeard/webserve.py:610 +#: sickbeard/webserve.py:609 msgid "Test 1" msgstr "" -#: sickbeard/webserve.py:610 +#: sickbeard/webserve.py:609 msgid "This is test number 1" msgstr "" -#: sickbeard/webserve.py:611 +#: sickbeard/webserve.py:610 msgid "Test 2" msgstr "" -#: sickbeard/webserve.py:611 +#: sickbeard/webserve.py:610 msgid "This is test number 2" msgstr "" -#: sickbeard/webserve.py:634 +#: sickbeard/webserve.py:633 msgid "You're using the {branch} branch. Please use 'master' unless specifically asked" msgstr "" -#: sickbeard/webserve.py:698 sickbeard/webserve.py:703 +#: sickbeard/webserve.py:697 sickbeard/webserve.py:702 msgid "Invalid show parameters" msgstr "" -#: sickbeard/webserve.py:710 +#: sickbeard/webserve.py:709 msgid "Invalid parameters" msgstr "" -#: sickbeard/webserve.py:713 sickbeard/webserve.py:1899 +#: sickbeard/webserve.py:712 sickbeard/webserve.py:1898 msgid "Episode couldn't be retrieved" msgstr "" -#: sickbeard/webserve.py:759 sickbeard/webserve.py:1268 sickbeard/webserve.py:1297 +#: sickbeard/webserve.py:758 sickbeard/webserve.py:1267 sickbeard/webserve.py:1296 msgid "Home" msgstr "" -#: gui/slick/views/layouts/main.mako:127 sickbeard/webserve.py:759 +#: gui/slick/views/layouts/main.mako:127 sickbeard/webserve.py:758 msgid "Show List" msgstr "" -#: sickbeard/webserve.py:807 +#: sickbeard/webserve.py:806 msgid "Error: Unsupported Request. Send jsonp request with 'callback' variable in the query string." msgstr "" -#: sickbeard/webserve.py:851 +#: sickbeard/webserve.py:850 msgid "Success. Connected and authenticated" msgstr "" -#: sickbeard/webserve.py:853 +#: sickbeard/webserve.py:852 msgid "Authentication failed. SABnzbd expects" msgstr "" -#: sickbeard/webserve.py:853 +#: sickbeard/webserve.py:852 msgid "as authentication method" msgstr "" -#: sickbeard/webserve.py:855 +#: sickbeard/webserve.py:854 msgid "Unable to connect to host" msgstr "" -#: sickbeard/webserve.py:876 +#: sickbeard/webserve.py:875 msgid "SMS sent successfully" msgstr "" -#: sickbeard/webserve.py:878 +#: sickbeard/webserve.py:877 msgid "Problem sending SMS: {message}" msgstr "" -#: sickbeard/webserve.py:885 +#: sickbeard/webserve.py:884 msgid "Telegram notification succeeded. Check your Telegram clients to make sure it worked" msgstr "" -#: sickbeard/webserve.py:887 +#: sickbeard/webserve.py:886 msgid "Error sending Telegram notification: {message}" msgstr "" -#: sickbeard/webserve.py:894 +#: sickbeard/webserve.py:893 msgid "join notification succeeded. Check your join clients to make sure it worked" msgstr "" -#: sickbeard/webserve.py:896 +#: sickbeard/webserve.py:895 msgid "Error sending join notification: {message}" msgstr "" -#: sickbeard/webserve.py:906 +#: sickbeard/webserve.py:905 msgid " with password" msgstr "" -#: sickbeard/webserve.py:908 +#: sickbeard/webserve.py:907 msgid "Registered and Tested growl successfully {growl_host}" msgstr "" -#: sickbeard/webserve.py:910 +#: sickbeard/webserve.py:909 msgid "Registration and Testing of growl failed {growl_host}" msgstr "" -#: sickbeard/webserve.py:917 +#: sickbeard/webserve.py:916 msgid "Test prowl notice sent successfully" msgstr "" -#: sickbeard/webserve.py:919 +#: sickbeard/webserve.py:918 msgid "Test prowl notice failed" msgstr "" -#: sickbeard/webserve.py:926 +#: sickbeard/webserve.py:925 msgid "Boxcar2 notification succeeded. Check your Boxcar2 clients to make sure it worked" msgstr "" -#: sickbeard/webserve.py:928 +#: sickbeard/webserve.py:927 msgid "Error sending Boxcar2 notification" msgstr "" -#: sickbeard/webserve.py:935 +#: sickbeard/webserve.py:934 msgid "Pushover notification succeeded. Check your Pushover clients to make sure it worked" msgstr "" -#: sickbeard/webserve.py:937 +#: sickbeard/webserve.py:936 msgid "Error sending Pushover notification" msgstr "" -#: sickbeard/webserve.py:949 +#: sickbeard/webserve.py:948 msgid "Key verification successful" msgstr "" -#: sickbeard/webserve.py:951 +#: sickbeard/webserve.py:950 msgid "Unable to verify key" msgstr "" -#: sickbeard/webserve.py:958 +#: sickbeard/webserve.py:957 msgid "Tweet successful, check your twitter to make sure it worked" msgstr "" -#: sickbeard/webserve.py:960 +#: sickbeard/webserve.py:959 msgid "Error sending tweet" msgstr "" -#: sickbeard/webserve.py:965 +#: sickbeard/webserve.py:964 msgid "Please enter a valid account sid" msgstr "" -#: sickbeard/webserve.py:968 +#: sickbeard/webserve.py:967 msgid "Please enter a valid auth token" msgstr "" -#: sickbeard/webserve.py:971 +#: sickbeard/webserve.py:970 msgid "Please enter a valid phone sid" msgstr "" -#: sickbeard/webserve.py:974 +#: sickbeard/webserve.py:973 msgid "Please format the phone number as \"+1-###-###-####\"" msgstr "" -#: sickbeard/webserve.py:978 +#: sickbeard/webserve.py:977 msgid "Authorization successful and number ownership verified" msgstr "" -#: sickbeard/webserve.py:980 +#: sickbeard/webserve.py:979 msgid "Error sending sms" msgstr "" -#: sickbeard/webserve.py:986 +#: sickbeard/webserve.py:985 msgid "Slack message successful" msgstr "" -#: sickbeard/webserve.py:988 +#: sickbeard/webserve.py:987 msgid "Slack message failed" msgstr "" -#: sickbeard/webserve.py:994 +#: sickbeard/webserve.py:993 msgid "Discord message successful" msgstr "" -#: sickbeard/webserve.py:996 +#: sickbeard/webserve.py:995 msgid "Discord message failed" msgstr "" -#: sickbeard/webserve.py:1006 +#: sickbeard/webserve.py:1005 msgid "Test KODI notice sent successfully to {kodi_host}" msgstr "" -#: sickbeard/webserve.py:1008 +#: sickbeard/webserve.py:1007 msgid "Test KODI notice failed to {kodi_host}" msgstr "" -#: sickbeard/webserve.py:1023 +#: sickbeard/webserve.py:1022 msgid "Successful test notice sent to Plex Home Theater ... {plex_clients}" msgstr "" -#: sickbeard/webserve.py:1025 +#: sickbeard/webserve.py:1024 msgid "Test failed for Plex Home Theater ... {plex_clients}" msgstr "" -#: sickbeard/webserve.py:1028 +#: sickbeard/webserve.py:1027 msgid "Tested Plex Home Theater(s)" msgstr "" -#: sickbeard/webserve.py:1042 +#: sickbeard/webserve.py:1041 msgid "Successful test of Plex Media Server(s) ... {plex_servers}" msgstr "" -#: sickbeard/webserve.py:1044 +#: sickbeard/webserve.py:1043 msgid "Test failed, No Plex Media Server host specified" msgstr "" -#: sickbeard/webserve.py:1046 +#: sickbeard/webserve.py:1045 msgid "Test failed for Plex Media Server(s) ... {plex_servers}" msgstr "" -#: sickbeard/webserve.py:1049 +#: sickbeard/webserve.py:1048 msgid "Tested Plex Media Server host(s)" msgstr "" -#: sickbeard/webserve.py:1057 +#: sickbeard/webserve.py:1056 msgid "Tried sending desktop notification via libnotify" msgstr "" -#: sickbeard/webserve.py:1066 +#: sickbeard/webserve.py:1065 msgid "Test notice sent successfully to {emby_host}" msgstr "" -#: sickbeard/webserve.py:1068 +#: sickbeard/webserve.py:1067 msgid "Test notice failed to {emby_host}" msgstr "" -#: sickbeard/webserve.py:1076 +#: sickbeard/webserve.py:1075 msgid "Successfully started the scan update" msgstr "" -#: sickbeard/webserve.py:1078 +#: sickbeard/webserve.py:1077 msgid "Test failed to start the scan update" msgstr "" -#: sickbeard/webserve.py:1097 +#: sickbeard/webserve.py:1096 msgid "Test notice sent successfully to {nmj2_host}" msgstr "" -#: sickbeard/webserve.py:1099 +#: sickbeard/webserve.py:1098 msgid "Test notice failed to {nmj2_host}" msgstr "" -#: sickbeard/webserve.py:1119 +#: sickbeard/webserve.py:1118 msgid "Trakt Authorized" msgstr "" -#: sickbeard/webserve.py:1120 +#: sickbeard/webserve.py:1119 msgid "Trakt Not Authorized!" msgstr "" -#: sickbeard/webserve.py:1184 +#: sickbeard/webserve.py:1183 msgid "Test email sent successfully! Check inbox." msgstr "" -#: sickbeard/webserve.py:1186 +#: sickbeard/webserve.py:1185 msgid "ERROR: {last_error}" msgstr "" -#: sickbeard/webserve.py:1193 +#: sickbeard/webserve.py:1192 msgid "Test NMA notice sent successfully" msgstr "" -#: sickbeard/webserve.py:1195 +#: sickbeard/webserve.py:1194 msgid "Test NMA notice failed" msgstr "" -#: sickbeard/webserve.py:1202 +#: sickbeard/webserve.py:1201 msgid "Pushalot notification succeeded. Check your Pushalot clients to make sure it worked" msgstr "" -#: sickbeard/webserve.py:1204 +#: sickbeard/webserve.py:1203 msgid "Error sending Pushalot notification" msgstr "" -#: sickbeard/webserve.py:1211 +#: sickbeard/webserve.py:1210 msgid "Pushbullet notification succeeded. Check your device to make sure it worked" msgstr "" -#: sickbeard/webserve.py:1213 sickbeard/webserve.py:1223 sickbeard/webserve.py:1232 +#: sickbeard/webserve.py:1212 sickbeard/webserve.py:1222 sickbeard/webserve.py:1231 msgid "Error sending Pushbullet notification" msgstr "" #: gui/slick/views/displayShow.mako:436 gui/slick/views/inc_home_showList.mako:174 -#: gui/slick/views/manage.mako:49 sickbeard/webserve.py:1249 +#: gui/slick/views/manage.mako:49 sickbeard/webserve.py:1248 msgid "Status" msgstr "" -#: sickbeard/webserve.py:1268 sickbeard/webserve.py:1297 +#: sickbeard/webserve.py:1267 sickbeard/webserve.py:1296 msgid "Restarting SickRage" msgstr "" -#: sickbeard/webserve.py:1300 +#: sickbeard/webserve.py:1299 msgid "Update Failed" msgstr "" -#: sickbeard/webserve.py:1301 +#: sickbeard/webserve.py:1300 msgid "Update wasn't successful, not restarting. Check your log for more information." msgstr "" -#: sickbeard/webserve.py:1308 +#: sickbeard/webserve.py:1307 msgid "Checking out branch" msgstr "" -#: sickbeard/webserve.py:1311 +#: sickbeard/webserve.py:1310 msgid "Already on branch" msgstr "" -#: sickbeard/webserve.py:1339 +#: sickbeard/webserve.py:1338 msgid "Invalid show ID: {show}" msgstr "" -#: sickbeard/webserve.py:1342 sickbeard/webserve.py:1871 sickbeard/webserve.py:2002 -#: sickbeard/webserve.py:2040 +#: sickbeard/webserve.py:1341 sickbeard/webserve.py:1870 sickbeard/webserve.py:2001 +#: sickbeard/webserve.py:2039 msgid "Show not in show list" msgstr "" #: gui/slick/views/inc_rootDirs.mako:31 gui/slick/views/manage.mako:38 -#: gui/slick/views/manage_massEdit.mako:74 sickbeard/webserve.py:1358 -#: sickbeard/webserve.py:2027 +#: gui/slick/views/manage_massEdit.mako:74 sickbeard/webserve.py:1357 +#: sickbeard/webserve.py:2026 msgid "Edit" msgstr "" -#: sickbeard/webserve.py:1368 +#: sickbeard/webserve.py:1367 msgid "This show is in the process of being downloaded - the info below is incomplete." msgstr "" -#: sickbeard/webserve.py:1371 +#: sickbeard/webserve.py:1370 msgid "The information on this page is in the process of being updated." msgstr "" -#: sickbeard/webserve.py:1374 +#: sickbeard/webserve.py:1373 msgid "The episodes below are currently being refreshed from disk" msgstr "" -#: sickbeard/webserve.py:1377 +#: sickbeard/webserve.py:1376 msgid "Currently downloading subtitles for this show" msgstr "" -#: sickbeard/webserve.py:1380 +#: sickbeard/webserve.py:1379 msgid "This show is queued to be refreshed." msgstr "" -#: sickbeard/webserve.py:1383 +#: sickbeard/webserve.py:1382 msgid "This show is queued and awaiting an update." msgstr "" -#: sickbeard/webserve.py:1386 +#: sickbeard/webserve.py:1385 msgid "This show is queued and awaiting subtitles download." msgstr "" -#: gui/slick/js/core.js:4081 sickbeard/webserve.py:1391 +#: gui/slick/js/core.js:4081 sickbeard/webserve.py:1390 msgid "Resume" msgstr "" #: gui/slick/js/core.js:4081 gui/slick/views/viewlogs.mako:12 -#: sickbeard/webserve.py:1393 +#: sickbeard/webserve.py:1392 msgid "Pause" msgstr "" #: gui/slick/views/editShow.mako:345 gui/slick/views/inc_blackwhitelist.mako:40 #: gui/slick/views/inc_blackwhitelist.mako:85 gui/slick/views/manage.mako:58 -#: gui/slick/views/manage_failedDownloads.mako:43 sickbeard/webserve.py:1395 +#: gui/slick/views/manage_failedDownloads.mako:43 sickbeard/webserve.py:1394 msgid "Remove" msgstr "" -#: sickbeard/webserve.py:1396 +#: sickbeard/webserve.py:1395 msgid "Re-scan files" msgstr "" -#: sickbeard/webserve.py:1397 +#: sickbeard/webserve.py:1396 msgid "Force Full Update" msgstr "" -#: sickbeard/webserve.py:1398 +#: sickbeard/webserve.py:1397 msgid "Update show in KODI" msgstr "" -#: sickbeard/webserve.py:1399 +#: sickbeard/webserve.py:1398 msgid "Update show in Emby" msgstr "" -#: sickbeard/webserve.py:1402 +#: sickbeard/webserve.py:1401 msgid "Hide specials" msgstr "" -#: sickbeard/webserve.py:1404 +#: sickbeard/webserve.py:1403 msgid "Show specials" msgstr "" -#: sickbeard/webserve.py:1406 sickbeard/webserve.py:2030 sickbeard/webserve.py:2031 +#: sickbeard/webserve.py:1405 sickbeard/webserve.py:2029 sickbeard/webserve.py:2030 msgid "Preview Rename" msgstr "" -#: sickbeard/webserve.py:1409 +#: sickbeard/webserve.py:1408 msgid "Download Subtitles" msgstr "" -#: sickbeard/webserve.py:1498 +#: sickbeard/webserve.py:1497 msgid "No scene exceptions" msgstr "" -#: sickbeard/webserve.py:1516 sickbeard/webserve.py:1764 sickbeard/webserve.py:1785 +#: sickbeard/webserve.py:1515 sickbeard/webserve.py:1763 sickbeard/webserve.py:1784 msgid "Invalid show ID" msgstr "" -#: sickbeard/webserve.py:1525 sickbeard/webserve.py:1769 sickbeard/webserve.py:1790 +#: sickbeard/webserve.py:1524 sickbeard/webserve.py:1768 sickbeard/webserve.py:1789 msgid "Unable to find the specified show" msgstr "" -#: sickbeard/webserve.py:1550 +#: sickbeard/webserve.py:1549 msgid "Unable to retreive Fansub Groups from AniDB." msgstr "" -#: sickbeard/webserve.py:1559 sickbeard/webserve.py:1561 +#: sickbeard/webserve.py:1558 sickbeard/webserve.py:1560 msgid "Edit Show" msgstr "" -#: sickbeard/webserve.py:1637 sickbeard/webserve.py:1671 +#: sickbeard/webserve.py:1636 sickbeard/webserve.py:1670 msgid "Unable to refresh this show: {error}" msgstr "" -#: sickbeard/webserve.py:1663 +#: sickbeard/webserve.py:1662 msgid "New location <tt>{location}</tt> does not exist" msgstr "" -#: sickbeard/webserve.py:1688 +#: sickbeard/webserve.py:1687 msgid "Unable to update show: {error}" msgstr "" -#: sickbeard/webserve.py:1695 +#: sickbeard/webserve.py:1694 msgid "Unable to force an update on scene exceptions of the show." msgstr "" -#: sickbeard/webserve.py:1702 +#: sickbeard/webserve.py:1701 msgid "Unable to force an update on scene numbering of the show." msgstr "" -#: sickbeard/webserve.py:1708 sickbeard/webserve.py:3540 +#: sickbeard/webserve.py:1707 sickbeard/webserve.py:3539 msgid "{num_errors:d} error{plural} while saving changes:" msgstr "" -#: sickbeard/webserve.py:1719 +#: sickbeard/webserve.py:1718 msgid "{show_name} has been {paused_resumed}" msgstr "" -#: sickbeard/webserve.py:1719 +#: sickbeard/webserve.py:1718 msgid "resumed" msgstr "" -#: sickbeard/webserve.py:1719 +#: sickbeard/webserve.py:1718 msgid "paused" msgstr "" -#: sickbeard/webserve.py:1731 +#: sickbeard/webserve.py:1730 msgid "{show_name} has been {deleted_trashed} {was_deleted}" msgstr "" -#: sickbeard/webserve.py:1733 +#: sickbeard/webserve.py:1732 msgid "deleted" msgstr "" -#: sickbeard/webserve.py:1733 +#: sickbeard/webserve.py:1732 msgid "trashed" msgstr "" -#: sickbeard/webserve.py:1734 +#: sickbeard/webserve.py:1733 msgid "(media untouched)" msgstr "" -#: sickbeard/webserve.py:1734 +#: sickbeard/webserve.py:1733 msgid "(with all related media)" msgstr "" -#: sickbeard/webserve.py:1755 +#: sickbeard/webserve.py:1754 msgid "Unable to refresh this show." msgstr "" -#: sickbeard/webserve.py:1775 +#: sickbeard/webserve.py:1774 msgid "Unable to update this show." msgstr "" -#: sickbeard/webserve.py:1814 +#: sickbeard/webserve.py:1813 msgid "Library update command sent to KODI host(s)): {kodi_hosts}" msgstr "" -#: sickbeard/webserve.py:1816 +#: sickbeard/webserve.py:1815 msgid "Unable to contact one or more KODI host(s)): {kodi_hosts}" msgstr "" -#: sickbeard/webserve.py:1825 +#: sickbeard/webserve.py:1824 msgid "Library update command sent to Plex Media Server host: {plex_server}" msgstr "" -#: sickbeard/webserve.py:1828 +#: sickbeard/webserve.py:1827 msgid "Unable to contact Plex Media Server host: {plex_server}" msgstr "" -#: sickbeard/webserve.py:1840 +#: sickbeard/webserve.py:1839 msgid "Library update command sent to Emby host: {emby_host}" msgstr "" -#: sickbeard/webserve.py:1842 +#: sickbeard/webserve.py:1841 msgid "Unable to contact Emby host: {emby_host}" msgstr "" -#: sickbeard/webserve.py:1852 sickbeard/webserve.py:2036 +#: sickbeard/webserve.py:1851 sickbeard/webserve.py:2035 msgid "You must specify a show and at least one episode" msgstr "" -#: sickbeard/webserve.py:1861 +#: sickbeard/webserve.py:1860 msgid "Invalid status" msgstr "" -#: sickbeard/webserve.py:1954 +#: sickbeard/webserve.py:1953 msgid "Backlog was automatically started for the following seasons of <b>{show_name}</b>" msgstr "" #: gui/slick/views/displayShow.mako:74 gui/slick/views/displayShow.mako:79 -#: gui/slick/views/displayShow.mako:404 sickbeard/webserve.py:1961 -#: sickbeard/webserve.py:1980 +#: gui/slick/views/displayShow.mako:404 sickbeard/webserve.py:1960 +#: sickbeard/webserve.py:1979 msgid "Season" msgstr "" -#: sickbeard/webserve.py:1968 +#: sickbeard/webserve.py:1967 msgid "Backlog started" msgstr "" -#: sickbeard/webserve.py:1973 +#: sickbeard/webserve.py:1972 msgid "Retrying Search was automatically started for the following season of <b>{show_name}</b>" msgstr "" -#: sickbeard/webserve.py:1987 +#: sickbeard/webserve.py:1986 msgid "Retry Search started" msgstr "" -#: sickbeard/webserve.py:1997 +#: sickbeard/webserve.py:1996 msgid "You must specify a show" msgstr "" -#: sickbeard/webserve.py:2007 sickbeard/webserve.py:2045 +#: sickbeard/webserve.py:2006 sickbeard/webserve.py:2044 msgid "Can't rename episodes when the show dir is missing." msgstr "" -#: sickbeard/webserve.py:2212 sickbeard/webserve.py:2233 +#: sickbeard/webserve.py:2211 sickbeard/webserve.py:2232 msgid "New subtitles downloaded: {new_subtitle_languages}" msgstr "" -#: sickbeard/webserve.py:2215 sickbeard/webserve.py:2236 +#: sickbeard/webserve.py:2214 sickbeard/webserve.py:2235 msgid "No subtitles downloaded" msgstr "" #: gui/slick/views/config_general.mako:80 gui/slick/views/layouts/main.mako:222 -#: sickbeard/webserve.py:2363 +#: sickbeard/webserve.py:2362 msgid "IRC" msgstr "" -#: sickbeard/webserve.py:2376 +#: sickbeard/webserve.py:2375 msgid "Could not load news from the repo. [Click here for news.md])({news_url})" msgstr "" -#: sickbeard/webserve.py:2383 sickbeard/webserve.py:2401 +#: sickbeard/webserve.py:2382 sickbeard/webserve.py:2400 msgid "The was a problem connecting to github, please refresh and try again" msgstr "" -#: sickbeard/webserve.py:2398 +#: sickbeard/webserve.py:2397 msgid "Could not load changes from the repo. [Click here for CHANGES.md]({changes_url})" msgstr "" -#: gui/slick/views/layouts/main.mako:223 sickbeard/webserve.py:2403 +#: gui/slick/views/layouts/main.mako:223 sickbeard/webserve.py:2402 msgid "Changelog" msgstr "" -#: gui/slick/views/layouts/main.mako:190 sickbeard/webserve.py:2413 -#: sickbeard/webserve.py:3855 sickbeard/webserve.py:4341 +#: gui/slick/views/layouts/main.mako:190 sickbeard/webserve.py:2412 +#: sickbeard/webserve.py:3826 sickbeard/webserve.py:4312 msgid "Post Processing" msgstr "" -#: gui/slick/views/layouts/main.mako:128 sickbeard/webserve.py:2445 +#: gui/slick/views/layouts/main.mako:128 sickbeard/webserve.py:2444 msgid "Add Shows" msgstr "" -#: sickbeard/webserve.py:2510 +#: sickbeard/webserve.py:2509 msgid "No folders selected." msgstr "" -#: sickbeard/webserve.py:2632 +#: sickbeard/webserve.py:2631 msgid "New Show" msgstr "" -#: sickbeard/webserve.py:2647 +#: sickbeard/webserve.py:2646 msgid "Trending Shows" msgstr "" -#: sickbeard/webserve.py:2649 sickbeard/webserve.py:2772 +#: sickbeard/webserve.py:2648 sickbeard/webserve.py:2771 msgid "Popular Shows" msgstr "" -#: sickbeard/webserve.py:2651 sickbeard/webserve.py:2665 +#: sickbeard/webserve.py:2650 sickbeard/webserve.py:2664 msgid "Most Anticipated Shows" msgstr "" -#: sickbeard/webserve.py:2653 +#: sickbeard/webserve.py:2652 msgid "Most Collected Shows" msgstr "" -#: sickbeard/webserve.py:2655 +#: sickbeard/webserve.py:2654 msgid "Most Watched Shows" msgstr "" -#: sickbeard/webserve.py:2657 +#: sickbeard/webserve.py:2656 msgid "Most Played Shows" msgstr "" -#: sickbeard/webserve.py:2659 +#: sickbeard/webserve.py:2658 msgid "Recommended Shows" msgstr "" -#: gui/slick/views/addShows_trendingShows.mako:60 sickbeard/webserve.py:2661 +#: gui/slick/views/addShows_trendingShows.mako:60 sickbeard/webserve.py:2660 msgid "New Shows" msgstr "" -#: gui/slick/views/addShows_trendingShows.mako:61 sickbeard/webserve.py:2663 +#: gui/slick/views/addShows_trendingShows.mako:61 sickbeard/webserve.py:2662 msgid "Season Premieres" msgstr "" -#: sickbeard/webserve.py:2792 sickbeard/webserve.py:2793 +#: sickbeard/webserve.py:2791 sickbeard/webserve.py:2792 msgid "Existing Show" msgstr "" -#: sickbeard/webserve.py:2871 +#: sickbeard/webserve.py:2870 msgid "No root directories setup, please go back and add one." msgstr "" -#: sickbeard/webserve.py:2883 sickbeard/webserve.py:3002 +#: sickbeard/webserve.py:2882 sickbeard/webserve.py:3001 msgid "Show added" msgstr "" -#: sickbeard/webserve.py:2883 +#: sickbeard/webserve.py:2882 msgid "Adding the specified show {show_name}" msgstr "" -#: sickbeard/webserve.py:2924 +#: sickbeard/webserve.py:2923 msgid "Missing params, no Indexer ID or folder: {show_to_add} and {root_dir}/{show_path}" msgstr "" -#: sickbeard/webserve.py:2933 +#: sickbeard/webserve.py:2932 msgid "Unknown error. Unable to add show due to problem with show selection." msgstr "" -#: sickbeard/webserve.py:2957 sickbeard/webserve.py:2967 +#: sickbeard/webserve.py:2956 sickbeard/webserve.py:2966 msgid "Unable to add show" msgstr "" -#: sickbeard/webserve.py:2957 +#: sickbeard/webserve.py:2956 msgid "Folder {show_dir} exists already" msgstr "" -#: sickbeard/webserve.py:2968 +#: sickbeard/webserve.py:2967 msgid "Unable to create the folder {show_dir}, can't add the show" msgstr "" -#: sickbeard/webserve.py:3002 +#: sickbeard/webserve.py:3001 msgid "Adding the specified show into {show_dir}" msgstr "" -#: sickbeard/webserve.py:3078 +#: sickbeard/webserve.py:3077 msgid "Shows Added" msgstr "" -#: sickbeard/webserve.py:3079 +#: sickbeard/webserve.py:3078 msgid "Automatically added {num_shows} from their existing metadata files" msgstr "" -#: gui/slick/views/layouts/main.mako:153 sickbeard/webserve.py:3096 +#: gui/slick/views/layouts/main.mako:153 sickbeard/webserve.py:3095 msgid "Mass Update" msgstr "" -#: sickbeard/webserve.py:3134 sickbeard/webserve.py:3161 sickbeard/webserve.py:3237 -#: sickbeard/webserve.py:3238 +#: sickbeard/webserve.py:3133 sickbeard/webserve.py:3160 sickbeard/webserve.py:3236 +#: sickbeard/webserve.py:3237 msgid "Episode Overview" msgstr "" -#: sickbeard/webserve.py:3270 +#: sickbeard/webserve.py:3269 msgid "Missing Subtitles" msgstr "" -#: gui/slick/views/layouts/main.mako:154 sickbeard/webserve.py:3356 -#: sickbeard/webserve.py:3357 +#: gui/slick/views/layouts/main.mako:154 sickbeard/webserve.py:3355 +#: sickbeard/webserve.py:3356 msgid "Backlog Overview" msgstr "" -#: sickbeard/webserve.py:3481 +#: sickbeard/webserve.py:3480 msgid "Mass Edit" msgstr "" -#: sickbeard/webserve.py:3586 +#: sickbeard/webserve.py:3585 msgid "Unable to update show: {excption_format}" msgstr "" -#: sickbeard/webserve.py:3594 +#: sickbeard/webserve.py:3593 msgid "Unable to refresh show {show_name}: {excption_format}" msgstr "" -#: sickbeard/webserve.py:3605 +#: sickbeard/webserve.py:3604 msgid "Errors encountered" msgstr "" -#: gui/slick/views/config_general.mako:261 sickbeard/webserve.py:3611 +#: gui/slick/views/config_general.mako:261 sickbeard/webserve.py:3610 msgid "Updates" msgstr "" -#: sickbeard/webserve.py:3616 +#: sickbeard/webserve.py:3615 msgid "Refreshes" msgstr "" -#: sickbeard/webserve.py:3621 +#: sickbeard/webserve.py:3620 msgid "Renames" msgstr "" #: gui/slick/views/displayShow.mako:260 gui/slick/views/displayShow.mako:435 #: gui/slick/views/editShow.mako:119 gui/slick/views/inc_addShowOptions.mako:20 -#: gui/slick/views/manage_massEdit.mako:262 sickbeard/webserve.py:3626 -#: sickbeard/webserve.py:5244 +#: gui/slick/views/manage_massEdit.mako:262 sickbeard/webserve.py:3625 +#: sickbeard/webserve.py:5215 msgid "Subtitles" msgstr "" -#: sickbeard/webserve.py:3631 +#: sickbeard/webserve.py:3630 msgid "The following actions were queued" msgstr "" -#: sickbeard/webserve.py:3651 -msgid "For best results please set the Download Station alias as" -msgstr "" - -#: sickbeard/webserve.py:3652 -msgid "You can check this setting in the Synology DSM" -msgstr "" - -#: sickbeard/webserve.py:3652 sickbeard/webserve.py:3654 -msgid "Control Panel" -msgstr "" - -#: sickbeard/webserve.py:3652 -msgid "Application Portal" -msgstr "" - -#: sickbeard/webserve.py:3653 -msgid "Make sure you allow DSM to be embedded with iFrames too in" -msgstr "" - -#: sickbeard/webserve.py:3654 -msgid "DSM Settings" -msgstr "" - -#: sickbeard/webserve.py:3654 -msgid "Security" -msgstr "" - -#: gui/slick/views/layouts/main.mako:167 sickbeard/webserve.py:3662 -msgid "Manage Torrents" -msgstr "" - -#: gui/slick/views/layouts/main.mako:170 sickbeard/webserve.py:3683 +#: gui/slick/views/layouts/main.mako:170 sickbeard/webserve.py:3654 msgid "Failed Downloads" msgstr "" -#: gui/slick/views/layouts/main.mako:155 sickbeard/webserve.py:3701 +#: gui/slick/views/layouts/main.mako:155 sickbeard/webserve.py:3672 msgid "Manage Searches" msgstr "" -#: sickbeard/webserve.py:3709 +#: sickbeard/webserve.py:3680 msgid "Backlog search started" msgstr "" -#: sickbeard/webserve.py:3719 +#: sickbeard/webserve.py:3690 msgid "Daily search started" msgstr "" -#: sickbeard/webserve.py:3728 +#: sickbeard/webserve.py:3699 msgid "Find propers search started" msgstr "" -#: sickbeard/webserve.py:3737 +#: sickbeard/webserve.py:3708 msgid "Subtitle search started" msgstr "" -#: sickbeard/webserve.py:3801 +#: sickbeard/webserve.py:3772 msgid "Remove Selected" msgstr "" -#: sickbeard/webserve.py:3802 +#: sickbeard/webserve.py:3773 msgid "Clear History" msgstr "" -#: sickbeard/webserve.py:3803 +#: sickbeard/webserve.py:3774 msgid "Trim History" msgstr "" -#: sickbeard/webserve.py:3823 +#: sickbeard/webserve.py:3794 msgid "Selected history entries removed" msgstr "" -#: sickbeard/webserve.py:3830 +#: sickbeard/webserve.py:3801 msgid "History cleared" msgstr "" -#: sickbeard/webserve.py:3837 +#: sickbeard/webserve.py:3808 msgid "Removed history entries older than 30 days" msgstr "" -#: gui/slick/views/layouts/main.mako:185 sickbeard/webserve.py:3850 +#: gui/slick/views/layouts/main.mako:185 sickbeard/webserve.py:3821 msgid "General" msgstr "" -#: sickbeard/webserve.py:3851 sickbeard/webserve.py:4143 +#: sickbeard/webserve.py:3822 sickbeard/webserve.py:4114 msgid "Backup/Restore" msgstr "" -#: gui/slick/views/layouts/main.mako:187 sickbeard/webserve.py:3852 -#: sickbeard/webserve.py:4206 +#: gui/slick/views/layouts/main.mako:187 sickbeard/webserve.py:3823 +#: sickbeard/webserve.py:4177 msgid "Search Settings" msgstr "" -#: gui/slick/views/layouts/main.mako:188 sickbeard/webserve.py:3853 -#: sickbeard/webserve.py:4518 +#: gui/slick/views/layouts/main.mako:188 sickbeard/webserve.py:3824 +#: sickbeard/webserve.py:4489 msgid "Search Providers" msgstr "" -#: gui/slick/views/layouts/main.mako:189 sickbeard/webserve.py:3854 +#: gui/slick/views/layouts/main.mako:189 sickbeard/webserve.py:3825 msgid "Subtitles Settings" msgstr "" -#: gui/slick/views/layouts/main.mako:191 sickbeard/webserve.py:3856 -#: sickbeard/webserve.py:4964 +#: gui/slick/views/layouts/main.mako:191 sickbeard/webserve.py:3827 +#: sickbeard/webserve.py:4935 msgid "Notifications" msgstr "" @@ -1240,142 +1237,142 @@ msgstr "" #: gui/slick/views/home.mako:35 gui/slick/views/inc_addShowOptions.mako:79 #: gui/slick/views/inc_home_showList.mako:179 gui/slick/views/layouts/main.mako:192 #: gui/slick/views/manage.mako:44 gui/slick/views/manage_massEdit.mako:202 -#: sickbeard/webserve.py:3857 sickbeard/webserve.py:5309 +#: sickbeard/webserve.py:3828 sickbeard/webserve.py:5280 msgid "Anime" msgstr "" -#: sickbeard/webserve.py:3895 sickbeard/webserve.py:3896 +#: sickbeard/webserve.py:3866 sickbeard/webserve.py:3867 msgid "SickRage Configuration" msgstr "" -#: sickbeard/webserve.py:3910 +#: sickbeard/webserve.py:3881 msgid "Config - Shares" msgstr "" -#: sickbeard/webserve.py:3910 +#: sickbeard/webserve.py:3881 msgid "Windows Shares Configuration" msgstr "" -#: sickbeard/webserve.py:3937 +#: sickbeard/webserve.py:3908 msgid "Saved Shares" msgstr "" -#: sickbeard/webserve.py:3937 +#: sickbeard/webserve.py:3908 msgid "Your Windows share settings have been saved" msgstr "" -#: sickbeard/webserve.py:3948 +#: sickbeard/webserve.py:3919 msgid "Config - General" msgstr "" -#: sickbeard/webserve.py:3948 +#: sickbeard/webserve.py:3919 msgid "General Configuration" msgstr "" -#: sickbeard/webserve.py:3988 +#: sickbeard/webserve.py:3959 msgid "Saved Defaults" msgstr "" -#: sickbeard/webserve.py:3988 +#: sickbeard/webserve.py:3959 msgid "Your \"add show\" defaults have been set to your current selections." msgstr "" -#: sickbeard/webserve.py:4095 +#: sickbeard/webserve.py:4066 msgid "Unable to create directory {directory}, log directory not changed." msgstr "" -#: sickbeard/webserve.py:4103 +#: sickbeard/webserve.py:4074 msgid "Unable to create directory {directory}, https cert directory not changed." msgstr "" -#: sickbeard/webserve.py:4107 +#: sickbeard/webserve.py:4078 msgid "Unable to create directory {directory}, https key directory not changed." msgstr "" -#: sickbeard/webserve.py:4126 sickbeard/webserve.py:4324 sickbeard/webserve.py:4456 -#: sickbeard/webserve.py:5227 +#: sickbeard/webserve.py:4097 sickbeard/webserve.py:4295 sickbeard/webserve.py:4427 +#: sickbeard/webserve.py:5198 msgid "Error(s) Saving Configuration" msgstr "" -#: sickbeard/webserve.py:4129 sickbeard/webserve.py:4327 sickbeard/webserve.py:4458 -#: sickbeard/webserve.py:4950 sickbeard/webserve.py:5230 sickbeard/webserve.py:5294 -#: sickbeard/webserve.py:5323 +#: sickbeard/webserve.py:4100 sickbeard/webserve.py:4298 sickbeard/webserve.py:4429 +#: sickbeard/webserve.py:4921 sickbeard/webserve.py:5201 sickbeard/webserve.py:5265 +#: sickbeard/webserve.py:5294 msgid "Configuration Saved" msgstr "" -#: sickbeard/webserve.py:4142 +#: sickbeard/webserve.py:4113 msgid "Config - Backup/Restore" msgstr "" -#: sickbeard/webserve.py:4205 +#: sickbeard/webserve.py:4176 msgid "Config - Episode Search" msgstr "" -#: sickbeard/webserve.py:4340 +#: sickbeard/webserve.py:4311 msgid "Config - Post Processing" msgstr "" -#: sickbeard/webserve.py:4380 +#: sickbeard/webserve.py:4351 msgid "Unpacking Not Supported, disabling unpack setting" msgstr "" -#: sickbeard/webserve.py:4431 +#: sickbeard/webserve.py:4402 msgid "You tried saving an invalid normal naming config, not saving your naming settings" msgstr "" -#: sickbeard/webserve.py:4439 +#: sickbeard/webserve.py:4410 msgid "You tried saving an invalid anime naming config, not saving your naming settings" msgstr "" -#: sickbeard/webserve.py:4517 +#: sickbeard/webserve.py:4488 msgid "Config - Providers" msgstr "" -#: sickbeard/webserve.py:4547 +#: sickbeard/webserve.py:4518 msgid "No Provider Name specified" msgstr "" -#: sickbeard/webserve.py:4549 +#: sickbeard/webserve.py:4520 msgid "No Provider Url specified" msgstr "" -#: sickbeard/webserve.py:4551 +#: sickbeard/webserve.py:4522 msgid "No Provider Api key specified" msgstr "" -#: sickbeard/webserve.py:4963 +#: sickbeard/webserve.py:4934 msgid "Config - Notifications" msgstr "" -#: sickbeard/webserve.py:5243 +#: sickbeard/webserve.py:5214 msgid "Config - Subtitles" msgstr "" -#: sickbeard/webserve.py:5308 +#: sickbeard/webserve.py:5279 msgid "Config - Anime" msgstr "" -#: sickbeard/webserve.py:5336 +#: sickbeard/webserve.py:5307 msgid "Clear Errors" msgstr "" -#: sickbeard/webserve.py:5342 +#: sickbeard/webserve.py:5313 msgid "Clear Warnings" msgstr "" -#: sickbeard/webserve.py:5348 +#: sickbeard/webserve.py:5319 msgid "Submit Errors" msgstr "" -#: sickbeard/webserve.py:5363 +#: sickbeard/webserve.py:5334 msgid "Logs & Errors" msgstr "" -#: sickbeard/webserve.py:5388 +#: sickbeard/webserve.py:5359 msgid "Log File" msgstr "" -#: sickbeard/webserve.py:5388 +#: sickbeard/webserve.py:5359 msgid "Logs" msgstr "" @@ -1383,30 +1380,166 @@ msgstr "" msgid "This is a test notification from SickRage" msgstr "" -#: gui/slick/js/core.js:481 gui/slick/js/core.js:502 gui/slick/js/core.js:524 -#: gui/slick/js/core.js:548 gui/slick/js/core.js:573 gui/slick/js/core.js:596 -#: gui/slick/js/core.js:625 gui/slick/js/core.js:645 gui/slick/js/core.js:690 -#: gui/slick/js/core.js:769 gui/slick/js/core.js:829 gui/slick/js/core.js:849 -#: gui/slick/js/core.js:879 gui/slick/js/core.js:909 gui/slick/js/core.js:969 -#: gui/slick/js/core.js:1046 gui/slick/js/core.js:1066 gui/slick/js/core.js:1085 +#: gui/slick/js/browser.js:6 +msgid "Choose Directory" +msgstr "" + +#: gui/slick/js/core.js:443 +msgid "Select log file folder location" +msgstr "" + +#: gui/slick/js/core.js:445 +msgid "Select CSS file" +msgstr "" + +#: gui/slick/js/core.js:469 +msgid "Select backup folder to save to" +msgstr "" + +#: gui/slick/js/core.js:470 +msgid "Select backup files to restore" +msgstr "" + +#: gui/slick/js/core.js:479 gui/slick/js/core.js:500 gui/slick/js/core.js:522 +#: gui/slick/js/core.js:546 gui/slick/js/core.js:571 gui/slick/js/core.js:594 +#: gui/slick/js/core.js:623 gui/slick/js/core.js:643 gui/slick/js/core.js:688 +#: gui/slick/js/core.js:767 gui/slick/js/core.js:827 gui/slick/js/core.js:847 +#: gui/slick/js/core.js:877 gui/slick/js/core.js:907 gui/slick/js/core.js:967 +#: gui/slick/js/core.js:1044 gui/slick/js/core.js:1064 gui/slick/js/core.js:1083 msgid "Please fill out the necessary fields above." msgstr "" -#: gui/slick/js/core.js:1328 gui/slick/js/core.js:1378 gui/slick/js/core.js:1427 -#: gui/slick/js/core.js:1493 +#: gui/slick/js/core.js:680 +msgid "<b>Step 1:</b> Confirm Authorization" +msgstr "" + +#: gui/slick/js/core.js:977 +msgid "Check blacklist name; the value needs to be a trakt slug" +msgstr "" + +#: gui/slick/js/core.js:1022 +msgid "You must provide a recipient email address!" +msgstr "" + +#: gui/slick/js/core.js:1107 +msgid "You didn't supply a Pushbullet api key" +msgstr "" + +#: gui/slick/js/core.js:1133 gui/slick/js/core.js:1162 +msgid "Don't forget to save your new pushbullet settings." +msgstr "" + +#: gui/slick/js/core.js:1262 +msgid "Select TV Download Directory" +msgstr "" + +#: gui/slick/js/core.js:1263 +msgid "Select Unpack Directory" +msgstr "" + +#: gui/slick/js/core.js:1326 gui/slick/js/core.js:1376 gui/slick/js/core.js:1425 +#: gui/slick/js/core.js:1491 msgid "This pattern is invalid." msgstr "" -#: gui/slick/js/core.js:1336 gui/slick/js/core.js:1386 gui/slick/js/core.js:1435 -#: gui/slick/js/core.js:1501 +#: gui/slick/js/core.js:1334 gui/slick/js/core.js:1384 gui/slick/js/core.js:1433 +#: gui/slick/js/core.js:1499 msgid "This pattern would be invalid without the folders, using it will force \"Season Folders\" on for all shows." msgstr "" -#: gui/slick/js/core.js:1344 gui/slick/js/core.js:1394 gui/slick/js/core.js:1443 -#: gui/slick/js/core.js:1509 +#: gui/slick/js/core.js:1342 gui/slick/js/core.js:1392 gui/slick/js/core.js:1441 +#: gui/slick/js/core.js:1507 msgid "This pattern is valid." msgstr "" +#: gui/slick/js/core.js:1818 +msgid "Select .nzb black hole/watch location" +msgstr "" + +#: gui/slick/js/core.js:1819 +msgid "Select .torrent black hole/watch location" +msgstr "" + +#: gui/slick/js/core.js:1820 +msgid "Select .torrent download location" +msgstr "" + +#: gui/slick/js/core.js:1900 +msgid "Minimum seeding time is" +msgstr "" + +#: gui/slick/js/core.js:1902 +msgid "URL to your uTorrent client (e.g. http://localhost:8000)" +msgstr "" + +#: gui/slick/js/core.js:1905 +msgid "Stop seeding when inactive for" +msgstr "" + +#: gui/slick/js/core.js:1911 +msgid "URL to your Transmission client (e.g. http://localhost:9091)" +msgstr "" + +#: gui/slick/js/core.js:1921 +msgid "URL to your Deluge client (e.g. http://localhost:8112)" +msgstr "" + +#: gui/slick/js/core.js:1930 +msgid "IP or Hostname of your Deluge Daemon (e.g. scgi://localhost:58846)" +msgstr "" + +#: gui/slick/js/core.js:1937 +msgid "URL to your Synology DS client (e.g. http://localhost:5000)" +msgstr "" + +#: gui/slick/js/core.js:1941 +msgid "URL to your rTorrent client (e.g. scgi://localhost:5000 <br> or https://localhost/rutorrent/plugins/httprpc/action.php)" +msgstr "" + +#: gui/slick/js/core.js:1952 +msgid "URL to your qBittorrent client (e.g. http://localhost:8080)" +msgstr "" + +#: gui/slick/js/core.js:1962 +msgid "URL to your MLDonkey (e.g. http://localhost:4080)" +msgstr "" + +#: gui/slick/js/core.js:1974 +msgid "URL to your putio client (e.g. http://localhost:8080)" +msgstr "" + +#: gui/slick/js/core.js:1975 +msgid "<a herf=\"https://app.put.io/oauth/apps/new\" target=\"_blank\"> Create a new OAuth app for put.io</a>" +msgstr "" + +#: gui/slick/js/core.js:1977 +msgid "Put.io Parent Folder" +msgstr "" + +#: gui/slick/js/core.js:1978 +msgid "Put.io OAuth Token" +msgstr "" + +#: gui/slick/js/core.js:3383 gui/slick/views/displayShow.mako:410 +msgid "Show Episodes" +msgstr "" + +#: gui/slick/js/core.js:3388 gui/slick/views/displayShow.mako:408 +msgid "Hide Episodes" +msgstr "" + +#: gui/slick/js/core.js:3396 +msgid "Select Show Location" +msgstr "" + +#: gui/slick/js/core.js:3460 +msgid "Select Unprocessed Episode Folder" +msgstr "" + +#: gui/slick/js/core.js:3790 +msgid "DELETED" +msgstr "" + #: gui/slick/js/core.js:4082 msgid "Resume updating the log on this page." msgstr "" @@ -1415,6 +1548,26 @@ msgstr "" msgid "Pause updating the log on this page." msgstr "" +#: gui/slick/js/core.js:4323 +msgid "searching {searchingFor}..." +msgstr "" + +#: gui/slick/js/core.js:4334 +msgid "search timed out, try again or try another indexer" +msgstr "" + +#: gui/slick/js/core.js:4503 +msgid "loading folders..." +msgstr "" + +#: gui/slick/js/parsers.js:7 gui/slick/js/parsers.js:8 +#: gui/slick/js/plotTooltip.js:6 gui/slick/js/sceneExceptionsTooltip.js:6 +#: gui/slick/views/inc_home_showList.mako:209 +#: gui/slick/views/inc_home_showList.mako:215 +#: gui/slick/views/inc_home_showList.mako:231 +msgid "Loading..." +msgstr "" + #: gui/slick/views/404.mako:5 msgid "You have reached this page by accident, please check the url." msgstr "" @@ -5711,14 +5864,6 @@ msgstr "" msgid "Select Columns" msgstr "" -#: gui/slick/views/displayShow.mako:408 -msgid "Hide Episodes" -msgstr "" - -#: gui/slick/views/displayShow.mako:410 -msgid "Show Episodes" -msgstr "" - #: gui/slick/views/displayShow.mako:424 msgid "NFO" msgstr "" @@ -6232,12 +6377,6 @@ msgstr "" msgid "loading" msgstr "" -#: gui/slick/views/inc_home_showList.mako:209 -#: gui/slick/views/inc_home_showList.mako:215 -#: gui/slick/views/inc_home_showList.mako:231 -msgid "Loading..." -msgstr "" - #: gui/slick/views/inc_qualityChooser.mako:31 msgid "<p><b><u>Preferred</u></b> qualities will replace those in <b><u>allowed</u></b>, even if they are lower.</p>" msgstr "" @@ -6775,6 +6914,10 @@ msgstr "" msgid "Update Emby" msgstr "" +#: gui/slick/views/layouts/main.mako:167 +msgid "Manage Torrents" +msgstr "" + #: gui/slick/views/layouts/main.mako:173 msgid "Missed Subtitle Management" msgstr "" diff --git a/locale/it_IT/LC_MESSAGES/messages.json b/locale/it_IT/LC_MESSAGES/messages.json index bf9727d2b9527c349f8b5e1159fdfc05e205d877..7955dc19a014c4d29fb1616533d2ead1fca054c8 100644 --- a/locale/it_IT/LC_MESSAGES/messages.json +++ b/locale/it_IT/LC_MESSAGES/messages.json @@ -1 +1 @@ -{"messages":{"domain":"messages","locale_data":{"messages":{"100":[null,"100"],"250":[null,"250"],"500":[null,"500"],"":{"domain":"messages","plural_forms":"nplurals=2; plural=(n != 1);","lang":"it_IT"},"Drama":[null,"Drammatico"],"Mystery":[null,"Mistero"],"Science-Fiction":[null,"Fantascienza"],"Crime":[null,"Crime"],"Action":[null,"Azione"],"Comedy":[null,"Commedia"],"Thriller":[null,"Thriller"],"Animation":[null,"Animazione"],"Family":[null,"Famiglia"],"Fantasy":[null,"Fantasy"],"Adventure":[null,"Avventura"],"Horror":[null,"Horror"],"Film-Noir":[null,"Film Noir"],"Sci-Fi":[null,"Sci-Fi"],"Romance":[null,"Romantico"],"Sport":[null,"Sport"],"War":[null,"Guerra"],"Biography":[null,"Biografia"],"History":[null,"Cronologia"],"Music":[null,"Musica"],"Western":[null,"Western"],"News":[null,"Notizie"],"Sitcom":[null,"Sitcom"],"Reality-TV":[null,"Reality-TV"],"Documentary":[null,"Documentario"],"Game-Show":[null,"Game-Show"],"Musical":[null,"Musical"],"Talk-Show":[null,"Talk-Show"],"Started Download":[null,"Download Iniziato"],"Download Finished":[null,"Download terminato"],"Subtitle Download Finished":[null,"Download sottotitoli terminato"],"SickRage Updated":[null,"SickRage aggiornato"],"SickRage Updated To Commit#: ":[null,"SickRage aggiornato alla Commit#: "],"SickRage new login":[null,"Nuovo login di SickRage"],"New login from IP: {0}. http://geomaplookup.net/?ip={0}":[null,"Nuovo login dall'IP: {0}. http://geomaplookup.net/?ip={0}"],"Repeat":[null,"Ripeti"],"Repeat (Separated)":[null,"Ripetere (separati)"],"Extend":[null,"Esteso"],"Extend (Limited)":[null,"Estendi (limitato)"],"Extend (Limited, E-prefixed)":[null,"Estendi (limitato, con prefisso E)"],"Downloaded":[null,"Scaricato"],"Snatched":[null,"Trovato"],"Snatched (Proper)":[null,"Trovato (Proper)"],"Failed":[null,"Tentativo non riuscito"],"Snatched (Best)":[null,"Trovato (migliore)"],"Archived":[null,"Archiviato"],"Unknown":[null,"Sconosciuto"],"Unaired":[null,"Non andato in onda"],"Skipped":[null,"Saltato"],"Wanted":[null,"Richiesto"],"Ignored":[null,"Ignorato"],"Subtitled":[null,"Sottotitolato"],"<No Filter>":[null,"<nessun filtro>"],"Daily Searcher":[null,"Ricerca giornaliera"],"Backlog":[null,"Arretrati"],"Show Updater":[null,"Aggiornamento Show"],"Check Version":[null,"Verifica versione"],"Show Queue":[null,"Visualizza coda"],"Search Queue (All)":[null,"Coda di ricerca (tutte)"],"Search Queue (Daily Searcher)":[null,"Coda di ricerca (Ricerca giornaliera)"],"Search Queue (Backlog)":[null,"Coda di ricerca (arretrati)"],"Search Queue (Manual)":[null,"Coda di ricerca (manuale)"],"Search Queue (Retry/Failed)":[null,"Coda di ricerca (Riprova/Fallito)"],"Search Queue (RSS)":[null,"Coda di ricerca (RSS)"],"Find Propers":[null,"Trova Propers"],"Postprocessor":[null,"Postprocessor"],"Find Subtitles":[null,"Trova sottotitoli"],"Trakt Checker":[null,"Trakt Checker"],"Event":[null,"Evento"],"Error":[null,"Errore"],"Tornado":[null,"Tornado"],"Thread":[null,"Processo"],"Main":[null,"Principale"],"Loading":[null,"Caricamento"],"New update found for SickRage, starting auto-updater":[null,"Aggiornamento di SickRage in corso"],"Update was successful":[null,"Aggiornamento completato"],"Update failed!":[null,"Aggiornamento fallito!"],"Backup":[null,"Backup"],"Config backup in progress...":[null,"Backup della configurazione in corso..."],"Config backup successful, updating...":[null,"Backup della configurazione effettuato, aggiornamento..."],"Config backup failed, aborting update":[null,"Backup della configurazione fallito, annullo l'aggiornamento"],"No update needed":[null,"Aggiornamento non necessario"],"Mako Error":[null,"Errore di Mako"],"Oops":[null,"Oops"],"Wrong API key used":[null,"API Key usata non corretta"],"Login":[null,"Login"],"API Key not generated":[null,"API key non generata"],"API Builder":[null,"API Builder"],"Schedule":[null,"Calendario"],"Test 1":[null,"Prova 1"],"This is test number 1":[null,"Questo è il test numero 1"],"Test 2":[null,"Prova 2"],"This is test number 2":[null,"Questo è il test numero 2"],"You're using the {branch} branch. Please use 'master' unless specifically asked":[null,"Stai usando la versione {branch}. Per favore usa 'master' a meno che non ti sia chiesto"],"Invalid show parameters":[null,"Parametri non validi per la Serie TV"],"Invalid parameters":[null,"Parametri invalidi"],"Episode couldn't be retrieved":[null,"L'episodio non è stato trovato"],"Home":[null,"Home"],"Show List":[null,"Lista Serie TV"],"Error: Unsupported Request. Send jsonp request with 'callback' variable in the query string.":[null,"Errore: Richiesta non supportata. Invia richiesta jsonp con variabile 'callback' nella stringa di query."],"Success. Connected and authenticated":[null,"Successo. Connesso e autenticato"],"Authentication failed. SABnzbd expects":[null,"Autenticazione fallita. SABnzbd si aspetta"],"as authentication method":[null,"come metodo di autenticazione"],"Unable to connect to host":[null,"Impossibile connettersi all'host"],"SMS sent successfully":[null,"SMS inviato con successo"],"Problem sending SMS: {message}":[null,"C'è un problema con la spedizione dell'SMS: {message}"],"Telegram notification succeeded. Check your Telegram clients to make sure it worked":[null,"Notifica Telegram inviata correttamente. Verifica il tuo client Telegram per essere sicuro che abbia funzionato"],"Error sending Telegram notification: {message}":[null,"Errore durante l'invio della notifica Telegram: {message}"],"join notification succeeded. Check your join clients to make sure it worked":[null,"Notifica join inviata correttamente. Verifica il tuo client join per essere sicuro che abbia funzionato"],"Error sending join notification: {message}":[null,"Errore durante l'invio della notifica join: {message}"]," with password":[null," con password"],"Registered and Tested growl successfully {growl_host}":[null,"Growl registrato e testato con successo {growl_host}"],"Registration and Testing of growl failed {growl_host}":[null,"Registrazione e test di Growl non riuscita {growl_host}"],"Test prowl notice sent successfully":[null,"Test della notifica di Prowl avvenuta con successo"],"Test prowl notice failed":[null,"Test notifica di Prowl non riuscita"],"Boxcar2 notification succeeded. Check your Boxcar2 clients to make sure it worked":[null,"La notifica Boxcar2 è riuscita. Verifica il tuo client di Boxcar2 per assicurarsi che abbia funzionato"],"Error sending Boxcar2 notification":[null,"Errore durante l'invio di notifica Boxcar2"],"Pushover notification succeeded. Check your Pushover clients to make sure it worked":[null,"Notifica di Pushover riuscita. Verifica il tuo client di Pushover per assicurarsi che abbia funzionato"],"Error sending Pushover notification":[null,"Errore durante invio notifica Pushover"],"Key verification successful":[null,"Chiave verificata con successo"],"Unable to verify key":[null,"Impossibile verificare la chiave"],"Tweet successful, check your twitter to make sure it worked":[null,"Tweet creato, controlla il tuo twitter per assicurarti che abbia funzionato"],"Error sending tweet":[null,"Errore nell'invio del tweet"],"Please enter a valid account sid":[null,"Inserisci un sid account valido"],"Please enter a valid auth token":[null,"Inserire un \"auth token\" valido"],"Please enter a valid phone sid":[null,"Inserisci un sid telefonico valido"],"Please format the phone number as \"+1-###-###-####\"":[null,"Il numero di telefono deve essere nel formato \"+1-###-###-####\""],"Authorization successful and number ownership verified":[null,"Autorizzato correttamente e verificata la proprietà del numero telefonico"],"Error sending sms":[null,"Errore nell'invio dell'sms"],"Slack message successful":[null,"Notifica inviata correttamente a Slack"],"Slack message failed":[null,"L'invio della notifica a Slack é fallito"],"Discord message successful":[null,"Messaggio Discord inviato"],"Discord message failed":[null,"Messaggio discord fallito"],"Test KODI notice sent successfully to {kodi_host}":[null,"Test della notifica KODI inviato con successo alla {kodi_host}"],"Test KODI notice failed to {kodi_host}":[null,"Test della notifica di KODI fallita con l'istanza {kodi_host}"],"Successful test notice sent to Plex Home Theater ... {plex_clients}":[null,"Comunicazione di test inviata a Plex Home Theater... {plex_clients}"],"Test failed for Plex Home Theater ... {plex_clients}":[null,"Test non riuscito per Plex Home Theater... {plex_clients}"],"Tested Plex Home Theater(s)":[null,"Testati Plex Home Theater(s)"],"Successful test of Plex Media Server(s) ... {plex_servers}":[null,"Test riuscito di Plex Media Server... {plex_servers}"],"Test failed, No Plex Media Server host specified":[null,"Test non riuscito, Nessun host Plex Media Server specificato"],"Test failed for Plex Media Server(s) ... {plex_servers}":[null,"Test non riuscito per Plex Media Server... {plex_servers}"],"Tested Plex Media Server host(s)":[null,"Testati host(s) Plex Media Server"],"Tried sending desktop notification via libnotify":[null,"Provato l'invio di notifica del desktop tramite libnotify"],"Test notice sent successfully to {emby_host}":[null,"Notifica di prova inviata correttamente a {emby_host}"],"Test notice failed to {emby_host}":[null,"Notifica di prova a {emby_host} non riuscita"],"Successfully started the scan update":[null,"Avviato con successo l'aggiornamento"],"Test failed to start the scan update":[null,"Test non riuscito per l'avvio aggiornamento"],"Test notice sent successfully to {nmj2_host}":[null,"Test inviato correttamente a {nmj2_host}"],"Test notice failed to {nmj2_host}":[null,"Invio test non riuscito verso {nmj2_host}"],"Trakt Authorized":[null,"Trakt autorizzato"],"Trakt Not Authorized!":[null,"Trakt non autorizzato!"],"Test email sent successfully! Check inbox.":[null,"Prova e-mail inviata con successo! Controlla la posta in arrivo."],"ERROR: {last_error}":[null,"ERRORE: {last_error}"],"Test NMA notice sent successfully":[null,"Prova NMA inviata con successo"],"Test NMA notice failed":[null,"Prova NMA non riuscita"],"Pushalot notification succeeded. Check your Pushalot clients to make sure it worked":[null,"Notifica di Pushalot riuscita. Verifica il tuo client di Pushalot per assicurarti che abbia funzionato"],"Error sending Pushalot notification":[null,"Errore durante l'invio di notifica Pushalot"],"Pushbullet notification succeeded. Check your device to make sure it worked":[null,"Notifica Pushbullet riuscita. Controlla il dispositivo per assicurarti che abbia funzionato"],"Error sending Pushbullet notification":[null,"Errore durante l'invio della notifica di Pushbullet"],"Status":[null,"Stato"],"Restarting SickRage":[null,"Riavvio di Sickrage"],"Update Failed":[null,"Aggiornamento fallito"],"Update wasn't successful, not restarting. Check your log for more information.":[null,"Non è stato possibile effettuare l'aggiornamento. Controlla il log per maggiori informazioni."],"Checking out branch":[null,"Check-out del ramo"],"Already on branch":[null,"Già sul ramo"],"Invalid show ID: {show}":[null,"Codice show non valido: {show}"],"Show not in show list":[null,"Show non presente nell'elenco"],"Edit":[null,"Modifica"],"This show is in the process of being downloaded - the info below is incomplete.":[null,"Questa Serie TV è in procinto di essere scaricata - le informazioni sottostanti sono incomplete."],"The information on this page is in the process of being updated.":[null,"Le informazioni su questa pagina sono in fase di aggiornamento."],"The episodes below are currently being refreshed from disk":[null,"Gli episodi qui sotto sono attualmente in corso di aggiornamento dal disco"],"Currently downloading subtitles for this show":[null,"I sottotitoli per questa Serie TV sono in fase di salvataggio"],"This show is queued to be refreshed.":[null,"Questa Serie TV é in procinto di essere aggiornata."],"This show is queued and awaiting an update.":[null,"Questa Serie TV é in attesa di essere aggiornata."],"This show is queued and awaiting subtitles download.":[null,"Questa Serie TV é in attesa che vengano scaricati i sottotitoli corrispondenti."],"Resume":[null,"Riprendi"],"Pause":[null,"Pausa"],"Remove":[null,"Elimina"],"Re-scan files":[null,"Nuova scansione dei files"],"Force Full Update":[null,"Forza aggiornamento"],"Update show in KODI":[null,"Aggiorna Serie TV in Kodi"],"Update show in Emby":[null,"Aggiorna show in Emby"],"Hide specials":[null,"Nascondi gli episodi speciali"],"Show specials":[null,"Mostra gli episodi speciali"],"Preview Rename":[null,"Anteprima rinomina"],"Download Subtitles":[null,"Scarica i sottotitoli"],"No scene exceptions":[null,"Senza eccezioni di scena"],"Invalid show ID":[null,"Show ID non valido"],"Unable to find the specified show":[null,"Impossibile trovare la Serie TV specificata"],"Unable to retreive Fansub Groups from AniDB.":[null,"Impossibile recuperare gruppi Fansub da AniDB."],"Edit Show":[null,"Impostazioni Show"],"Unable to refresh this show: {error}":[null,"Impossibile aggiornare questa Serie TV: {error}"],"New location <tt>{location}</tt> does not exist":[null,"La nuova posizione <tt>{location}</tt> non esiste"],"Unable to update show: {error}":[null,"Impossibile aggiornare show: {error}"],"Unable to force an update on scene exceptions of the show.":[null,"Non é stato possibile eseguire un aggiornamento forzato per le eccezioni delle scene di questa Serie TV"],"Unable to force an update on scene numbering of the show.":[null,"Non é stato possibile eseguire un aggiornamento forzato sulla numerazione delle scene di questa Serie TV"],"{num_errors:d} error{plural} while saving changes:":[null,"{num_errors:d} error{plural} durante il salvataggio delle modifiche:"],"{show_name} has been {paused_resumed}":[null,"{show_name} è stato {paused_resumed}"],"resumed":[null,"ripreso"],"paused":[null,"in pausa"],"{show_name} has been {deleted_trashed} {was_deleted}":[null,"{show_name} è stato {deleted_trashed} {was_deleted}"],"deleted":[null,"eliminato"],"trashed":[null,"cestinato"],"(media untouched)":[null,"(contenuti intatti)"],"(with all related media)":[null,"(con tutti i relativi contenuti)"],"Unable to refresh this show.":[null,"Impossibile ricaricare questo show."],"Unable to update this show.":[null,"Impossibile aggiornare questo show."],"Library update command sent to KODI host(s)): {kodi_hosts}":[null,"Comando di aggiornamento libreria inviato a KODI host(s)): {kodi_hosts}"],"Unable to contact one or more KODI host(s)): {kodi_hosts}":[null,"Impossibile contattare uno o più KODI host(s)): {kodi_hosts}"],"Library update command sent to Plex Media Server host: {plex_server}":[null,"Comando di aggiornamento libreria inviato a Plex Media Server host: {plex_server}"],"Unable to contact Plex Media Server host: {plex_server}":[null,"Impossibile contattare il Plex Media Server host: {plex_server}"],"Library update command sent to Emby host: {emby_host}":[null,"Comando di aggiornamento libreria inviato a Emby host: {emby_host}"],"Unable to contact Emby host: {emby_host}":[null,"Impossibile contattare Emby host: {emby_host}"],"You must specify a show and at least one episode":[null,"È necessario specificare uno show e almeno un episodio"],"Invalid status":[null,"Stato non valido"],"Backlog was automatically started for the following seasons of <b>{show_name}</b>":[null,"La ricerca di arretrati è stata avviata automaticamente per le seguenti stagioni di <b>{show_name}</b>"],"Season":[null,"Stagione"],"Backlog started":[null,"Ricerca di arretrati iniziata"],"Retrying Search was automatically started for the following season of <b>{show_name}</b>":[null,"Nuovo tentativo di ricerca avviato automaticamente per le seguenti stagioni di <b>{show_name}</b>"],"Retry Search started":[null,"Nuovo tentativi di ricerca iniziato"],"You must specify a show":[null,"È necessario specificare uno show"],"Can't rename episodes when the show dir is missing.":[null,"Impossibile rinominare episodi quando manca la cartella dello show."],"New subtitles downloaded: {new_subtitle_languages}":[null,"Nuovi sottotitoli scaricati: {new_subtitle_languages}"],"No subtitles downloaded":[null,"Nessun sottotitolo scaricato"],"IRC":[null,"IRC"],"Could not load news from the repo. [Click here for news.md])({news_url})":[null,"Impossibile caricare le notizie dal repo. [Clicca qui per news.md]) ({news_url})"],"The was a problem connecting to github, please refresh and try again":[null,"Si è verificato un problema di connessione a github, si prega di aggiornare e riprovare"],"Could not load changes from the repo. [Click here for CHANGES.md]({changes_url})":[null,"Impossibile caricare le modifiche dal repo. [Clicca qui per CHANGES.md] ({changes_url})"],"Changelog":[null,"Changelog"],"Post Processing":[null,"Post-elaborazione"],"Add Shows":[null,"Aggiungi Serie TV"],"No folders selected.":[null,"Nessuna cartella selezionata."],"New Show":[null,"Nuovo Show"],"Trending Shows":[null,"Serie TV di tendenza"],"Popular Shows":[null,"Serie TV popolari"],"Most Anticipated Shows":[null,"Serie TV più attese"],"Most Collected Shows":[null,"Serie TV più collezionate"],"Most Watched Shows":[null,"Serie TV più viste"],"Most Played Shows":[null,"Serie TV più riprodotte"],"Recommended Shows":[null,"Serie TV Consigliate"],"New Shows":[null,"Nuove Serie TV"],"Season Premieres":[null,"Anteprime delle Stagioni"],"Existing Show":[null,"Show esistente"],"No root directories setup, please go back and add one.":[null,"Nessuna directory principale impostata, torna indietro e aggiungila."],"Show added":[null,"Show aggiunto"],"Adding the specified show {show_name}":[null,"Aggiunto lo show selezionato {show_name}"],"Missing params, no Indexer ID or folder: {show_to_add} and {root_dir}/{show_path}":[null,"Parametro mancante, nessun ID di indicizzatore o cartella: {show_to_add} e {root_dir}/{show_path}"],"Unknown error. Unable to add show due to problem with show selection.":[null,"Errore sconosciuto. Impossibile aggiungere show a causa di problema con la selezione."],"Unable to add show":[null,"Impossibile aggiungere show"],"Folder {show_dir} exists already":[null,"Cartella {show_dir} esiste già"],"Unable to create the folder {show_dir}, can't add the show":[null,"Impossibile creare la cartella {show_dir}, non è possibile aggiungere lo show"],"Adding the specified show into {show_dir}":[null,"Aggiunto lo show selezionato in {show_dir}"],"Shows Added":[null,"Serie TV aggiunta"],"Automatically added {num_shows} from their existing metadata files":[null,"Aggiunti automaticamente {num_shows} dai rispettivi file di metadati esistenti"],"Mass Update":[null,"Aggiornamento massivo"],"Episode Overview":[null,"Descrizione di episodio"],"Missing Subtitles":[null,"Sottotitoli mancanti"],"Backlog Overview":[null,"Panoramica sulla ricerca di arretrati"],"Mass Edit":[null,"Modifica di massa"],"Unable to update show: {excption_format}":[null,"Impossibile aggiornare lo show: {excption_format}"],"Unable to refresh show {show_name}: {excption_format}":[null,"Impossibile aggiornare lo show {show_name}: {excption_format}"],"Errors encountered":[null,"Errori rilevati"],"Updates":[null,"Aggiornamenti"],"Refreshes":[null,"Aggiorna"],"Renames":[null,"Rinomina"],"Subtitles":[null,"Sottotitoli"],"The following actions were queued":[null,"Le seguenti azioni sono schedulate"],"For best results please set the Download Station alias as":[null,"Per ottenere i migliori risultati si prega di impostare l'alias di Download Station come"],"You can check this setting in the Synology DSM":[null,"È possibile controllare questa impostazione in Synology DSM"],"Control Panel":[null,"Pannello di controllo"],"Application Portal":[null,"Portale applicazione"],"Make sure you allow DSM to be embedded with iFrames too in":[null,"Assicuratevi di permettere a DSM di essere incorporato con iFrames"],"DSM Settings":[null,"Impostazioni del DSM"],"Security":[null,"Sicurezza"],"Manage Torrents":[null,"Gestione Torrents"],"Failed Downloads":[null,"Download Falliti"],"Manage Searches":[null,"Gestione ricerche"],"Backlog search started":[null,"Ricerca di arretrati iniziata"],"Daily search started":[null,"Ricerca quotidiana iniziata"],"Find propers search started":[null,"Ricerca release proper iniziata"],"Subtitle search started":[null,"Ricerca sottotitoli iniziata"],"Remove Selected":[null,"Rimuovi selezionati"],"Clear History":[null,"Cancella cronologia"],"Trim History":[null,"Taglia la cronologia"],"Selected history entries removed":[null,"Cancellate le voci della cronologia selezionate"],"History cleared":[null,"Cronologia cancellata"],"Removed history entries older than 30 days":[null,"Voci della cronologia più vecchie di 30 giorni rimosse"],"General":[null,"Generali"],"Backup/Restore":[null,"Backup/Ripristino"],"Search Settings":[null,"Impostazioni di ricerca"],"Search Providers":[null,"Provider di ricerca"],"Subtitles Settings":[null,"Impostazioni sottotitoli"],"Notifications":[null,"Notifiche"],"Anime":[null,"Anime"],"SickRage Configuration":[null,"Configurazione di SickRage"],"Config - Shares":[null,""],"Windows Shares Configuration":[null,""],"Saved Shares":[null,""],"Your Windows share settings have been saved":[null,""],"Config - General":[null,"Configurazione generale"],"General Configuration":[null,"Configurazione Generale"],"Saved Defaults":[null,"Impostazioni predefinite salvate"],"Your \"add show\" defaults have been set to your current selections.":[null,"I valori predefiniti di \"Aggiungi Serie TV\" sono stati settati ai valori correnti."],"Unable to create directory {directory}, log directory not changed.":[null,"Impossibile creare la directory {directory}, la directory di log non è stata modificata."],"Unable to create directory {directory}, https cert directory not changed.":[null,"Impossibile creare la directory {directory}, il certificato https della directory non è cambiato."],"Unable to create directory {directory}, https key directory not changed.":[null,"Impossibile creare la cartella {directory}, la chiave https della cartella non è cambiata."],"Error(s) Saving Configuration":[null,"Errori durante il salvataggio della configurazione"],"Configuration Saved":[null,"Configurazione salvata"],"Config - Backup/Restore":[null,"Configurazione - Backup/Ripristino"],"Config - Episode Search":[null,"Configurazione - Ricerca episodi"],"Config - Post Processing":[null,"Configurazione - Post Elaborazione"],"Unpacking Not Supported, disabling unpack setting":[null,"Estrazione non supportata, disabilito l'impostazione di estrazione"],"You tried saving an invalid normal naming config, not saving your naming settings":[null,"Hai provato a salvare una configurazione di denominazione normale non valida, non salvo le tue impostazioni di nomeclatura"],"You tried saving an invalid anime naming config, not saving your naming settings":[null,"Hai provato a salvare una configurazione di denominazione anime non valida, non salvo le tue impostazioni di nomeclatura"],"Config - Providers":[null,"Configurazione fornitori"],"No Provider Name specified":[null,"Nessun nome di Provider specificato"],"No Provider Url specified":[null,"Nessun Url Provider specificato"],"No Provider Api key specified":[null,"Nessuna chiave di Api del Provider specificata"],"Config - Notifications":[null,"Config - notifiche"],"Config - Subtitles":[null,"Config - sottotitoli"],"Config - Anime":[null,"Config - Anime"],"Clear Errors":[null,"Cancella gli errori"],"Clear Warnings":[null,"Cancella gli avvisi"],"Submit Errors":[null,"Invia errori"],"Logs & Errors":[null,"Registri & errori"],"Log File":[null,"File di log"],"Logs":[null,"Logs"],"This is a test notification from SickRage":[null,"Questa è una notifica di test da SickRage"],"Please fill out the necessary fields above.":[null,""],"This pattern is invalid.":[null,"Il formato non è valido."],"This pattern would be invalid without the folders, using it will force \"Season Folders\" on for all shows.":[null,"Il formato è invalido senza le cartelle, usandolo forzerà \"Cartelle per stagione\" per tutte le Serie TV."],"This pattern is valid.":[null,"Il formato non è valido."],"Resume updating the log on this page.":[null,"Ricomincia ad aggiornare il log su questa pagina."],"Pause updating the log on this page.":[null,"Ferma l'aggiornamento del log su questa pagina."],"You have reached this page by accident, please check the url.":[null,"Sei giunto su questa pagina per errore, perfavore controlla l'indirizzo."],"A mako error has occured.<br>\n If this happened during an update a simple page refresh may be the solution.<br>\n Mako errors that happen during updates may be a one time error if there were significant ui changes.":[null,"Si è verificato un errore di Mako\".<br>\nlSe si è verificato durante un aggiornamento la soluzione potrebbe essere ricaricare la pagina.<br>\nGli errori di Mako avvenuti durante un aggiornamento potrebbero essere sporadici se c'è stata una significativa modifica dell'interfaccia utente."],"Show/Hide Error":[null,"Mostra/Nascondi errore"],"Add New Show":[null,"Aggiungi Nuova Serie TV"],"For shows that you haven't downloaded yet, this option finds a show on theTVDB.com, creates a directory for it's episodes, and adds it to SickRage.":[null,"Per le serie TV che non hai ancora scaricato, questa opzione trova una serie TV su theTVDB.com, crea una cartella per gli episodi e l'aggiunge a SickRage."],"Add From Trakt Lists":[null,"Aggiungi dalle liste di Trakt"],"For shows that you haven't downloaded yet, this option lets you choose from a show from one of the Trakt lists to add to SickRage.":[null,"Per le Serie TV che non hai ancora scaricato, questa opzione ti permette di scegliere una delle Serie TV presenti nelle liste di Trakt per aggiungerla a SickRage."],"Add From IMDB's Popular Shows":[null,"Aggiungi dalle Serie TV piú popolari su IMBD"],"View IMDB's list of the most popular shows. This feature uses IMDB's MOVIEMeter algorithm to identify popular TV Series.":[null,"Visualizza la lista delle Serie TV più popolari su IMDB. Questa funzionalità usa l'algoritmo \"MOVIEMeter\" di IMDB per identificare le Serie TV popolari."],"Add Existing Shows":[null,"Aggiungi dalle Serie TV esistenti"],"Use this option to add shows that already have a folder created on your hard drive. SickRage will scan your existing metadata/episodes and add the show accordingly.":[null,"Usa questa opzione per aggiungere le Serie TV che giá dispongono di una cartella sul tuo disco rigido. SickRage controllerà i metadati e gli episodi esistenti ed aggiungerà di conseguenza la Serie TV."],"Add Existing Show":[null,"Aggiungi una Serie TV esistente"],"Manage Directories":[null,"Gestisci Cartelle"],"Customize Options":[null,"Personalizza le Impostazioni"],"SickRage can add existing shows, using the current options, by using locally stored NFO/XML metadata to eliminate user interaction. If you would rather have SickRage prompt you to customize each show, then use the checkbox below.":[null,"SickRage, come opzione predefinita, può aggiungere le Serie TV esistenti senza richiedere l'interazione con l'utente attraverso l'uso dei metadati NFO/XML presenti in locale.\n Se piuttosto preferisci che SickRage ti richieda di personalizzare ogni Serie TV, allora seleziona la casella qui sotto."],"Prompt me to set settings for each show":[null,"Avvisami prima di modificare le impostazioni per ogni Serie TV"],"Displaying folders within these directories which aren't already added to SickRage":[null,"Visualizzazione cartelle all'interno di queste directory che non sono già state aggiunte a SickRage"],"Submit":[null,"Invia"],"Find a show on theTVDB":[null,"Cerca una Serie TV utilizzando \"theTVDB\""],"Show retrieved from existing metadata":[null,"Serie TV individuate dai metadati esistenti"],"All Indexers":[null,"Tutti gli indicizzatori"],"Search":[null,"Cerca"],"This will only affect the language of the retrieved metadata file contents and episode filenames.":[null,"Questo avrà effetto solo sulla lingua dei contenuti del file di metadati recuperato e sulla lingua dei nomi dei file dell'episodio."],"This <b>DOES NOT</b> allow SickRage to download non-english TV episodes!":[null,"Questo <b>NON</b> permette a SickRage di scaricare episodi TV non in lingua inglese!"],"Pick the parent folder":[null,"Seleziona la cartella principale"],"Pre-chosen Destination Folder":[null,"Cartella di destinazione prescelta"],"Customize options":[null,"Personalizza le Impostazioni"],"Add Show":[null,"Aggiungi Serie TV"],"Skip Show":[null,"Salta"],"Sort By":[null,"Ordina per"],"Name":[null,"Nome"],"Original":[null,"Originale"],"Votes":[null,"Voti"],"Rating":[null,"Valutazione"],"Rating > Votes":[null,"Valutazione > Voti"],"Sort Order":[null,"Ordina in base a"],"Asc":[null,"Asc"],"Desc":[null,"Disc"],"Fetching of IMDB Data failed. Are you online?":[null,"Il recupero dei dati da IMDB non è riuscito. Sei online?"],"Exception":[null,"Eccezione"],"Select Trakt List":[null,"Seleziona elenco Trakt"],"Most Anticipated":[null,"Più attese"],"Trending":[null,"Di tendenza"],"Popular":[null,"Popolari"],"Most Watched":[null,"Più viste"],"Most Played":[null,"Più viste"],"Most Collected":[null,"Più collezionate"],"Recommended":[null,"Raccomandate"],"Toggle navigation":[null,"Attiva/disattiva navigazione"],"Profile":[null,"Profilo"],"JSONP":[null,"JSONP"],"Back to SickRage":[null,"Torna a SickRage"],"Parameters":[null,"Parametri"],"Required":[null,"Richiesto"],"Description":[null,"Descrizione"],"Type":[null,"Tipo"],"Default value":[null,"Valore predefinito"],"Allowed values":[null,"Valori consentiti"],"Playground":[null,"Playground"],"Clear":[null,"Azzera"],"Yes":[null,"Sì"],"No":[null,"No"],"season":[null,"stagione"],"episode":[null,"episodio"],"Python Version":[null,"Versione di Python"],"SSL Version":[null,"Versione SSL"],"OS":[null,"Sistema Operativo"],"Locale":[null,"Lingua"],"User":[null,"Utente"],"Program Folder":[null,"Cartella del Programma"],"Config File":[null,"File di configurazione"],"Database File":[null,"File di database"],"Cache Folder":[null,"Cartella della cache"],"Log Folder":[null,"Cartella di registro"],"Arguments":[null,"Argomenti"],"Web Root":[null,"Radice del Web"],"Website":[null,"Sito Web"],"Wiki":[null,"Wiki"],"Source":[null,"Origine"],"IRC Chat":[null,"Chat IRC"],"AnimeDB Settings":[null,"Impostazioni di AnimeDB"],"Look & Feel":[null,"Look & Feel"],"AniDB is non-profit database of anime information that is freely open to the public":[null,"AniDB è un database di informazioni di anime senza scopo di lucro che sono liberamente aperti al pubblico"],"Enable":[null,"Attiva"],"should SickRage use data from AniDB?":[null,"SickRage deve utilizzare dati da AniDB?"],"AniDB Username":[null,"Nome utente AniDB"],"username of your AniDB account":[null,"nome utente del tuo account AniDB"],"AniDB Password":[null,"Password di AniDB"],"password of your AniDB account":[null,"password del tuo account AniDB"],"AniDB MyList":[null,"MyList di AniDB"],"do you want to add the PostProcessed episodes to the MyList?":[null,"vuoi aggiungere gli Episodi post-processati alla \"MyList\"?"],"Look and Feel":[null,"Aspetto"],"How should the anime functions show and behave.":[null,"Come le funzioni di anime dovrebbero mostrarsi e comportarsi."],"Split show lists":[null,"Dividi le liste degli Show"],"separate anime and normal shows in groups":[null,"tieni separati gli Anime dalle Serie TV in appositi gruppi"],"Split in tabs":[null,"Dividi in schede"],"use tabs for when splitting show lists":[null,"usa le schede quando dividi la lista delle serie TV"],"Restore":[null,"Ripristina"],"Backup your main database file and config.":[null,"Backup del tuo file di database principale e della configurazione."],"Select the folder you wish to save your backup file to":[null,"Seleziona la cartella dove vorresti salvare il tuo file di backup"],"Restore your main database file and config.":[null,"Ripristino del tuo file di database principale e della configurazione."],"Select the backup file you wish to restore":[null,"Seleziona il file di backup che vorresti ripristinare"],"Misc":[null,"Varie"],"Interface":[null,"Interfaccia"],"Advanced Settings":[null,"Impostazioni Avanzate"],"Startup options. Indexer options. Log and show file locations.":[null,"Opzioni di Avvio. Opzioni di indicizzazione. Posizione dei file di Log e dei file degli show."],"Some options may require a manual restart to take effect.":[null,"Alcune delle opzioni potrebbero richiedere un riavvio manuale per diventare effettive."],"Default Indexer Language":[null,"Linguaggio di default dell'Indicizzatore"],"for adding shows and metadata providers":[null,"per l'aggiunta delle Serie TV e dei metadati dai servizi di indicizzazione"],"Launch browser":[null,"Avvia il browser"],"open the SickRage home page on startup":[null,"apri la home page di SickRage all'avvio"],"Initial page":[null,"Pagina iniziale"],"Shows":[null,"Serie TV"],"when launching SickRage interface":[null,"quando si avvia l'interfaccia di SickRage"],"Choose hour to update shows":[null,"Seleziona l'Ora per l'aggiornamento delle Serie TV"],"with information such as next air dates, show ended, etc. Use 15 for 3pm, 4 for 4am etc.":[null,"con informazioni rigurdanti la prossima data di messa in onda, le Serie TV concluse, etc. Utilizza il formato standard 24h (3 del mattino, 15 di sera, etc.)."],"note":[null,"nota"],"minutes are randomized each time SickRage is started":[null,"i minuti sono randomizzati ogni volta che SickRage viene avviato"],"Send to trash for actions":[null,"Invia al cestino per azioni"],"when using show \"Remove\" and delete files":[null,"quando premi su \"Elimina\" in una Serie TV, cancella anche i relativi file"],"on scheduled deletes of the oldest log files":[null,"su eliminazioni pianificate dei file di registro più vecchi"],"selected actions use trash (recycle bin) instead of the default permanent delete":[null,"le azioni selezionate utilizzano il Cestino anziché l'eliminazione permanente (predefinita)"],"Log file folder location":[null,"Percorso cartella dei file di Log"],"Number of Log files saved":[null,"Numero di Log salvati"],"number of log files saved when rotating logs (default: 5) (REQUIRES RESTART)":[null,"numero di file di Log salvati durante la rotazione dei registri (default: 5) (RICHIEDE RIAVVIO)"],"Size of Log files saved":[null,"Dimensione dei files di log salvati"],"maximum size in MB of the log file (default: 1MB) (REQUIRES RESTART)":[null,"dimensione massima in MB dei file di log (default: 1MB) (RICHIEDE RIAVVIO)"],"Use initial indexer set to":[null,"Usa l'indicizzatore iniziale impostato a"],"as the default selection when adding new shows":[null,"come impostazione predefinita quando si aggiungono nuove Serie TV"],"Timeout show indexer at":[null,"Ferma l'indicizzazione delle Serie TV trascorsi"],"seconds of inactivity when finding new shows (default:20)":[null,"secondi di inattività durante la ricerca di nuove Serie TV (predefinito: 20)"],"Show root directories":[null,"Cartelle Principali per le Serie TV"],"where the files of shows are located":[null,"dove si trovano i file delle Serie TV"],"Save Changes":[null,"Salva le modifiche"],"Options for software updates.":[null,"Opzioni per gli aggiornamenti software."],"Check software updates":[null,"Controlla aggiornamenti software"],"and display notifications when updates are available. Checks are run on startup and at the frequency set below*":[null,"e visualizza notifiche quando sono disponibili aggiornamenti. Le verifiche sono eseguite all'avvio e con la frequenza sotto impostata*"],"Automatically update":[null,"Aggiorna automaticamente"],"fetch and install software updates. Updates are run on startup and in the background at the frequency set below*":[null,"scarica e installa gli aggiornamenti. Gli aggiornamenti sono eseguiti all'avvio e in background alla frequenza sotto impostata*"],"Check the server every*":[null,"Controlla il server ogni *"],"hours for software updates (default:1)":[null,"ore per gli aggiornamenti software (predefinito: 1)"],"Notify on software update":[null,"Notifica una volta aggiornato"],"send a message to all enabled notifiers when SickRage has been updated":[null,"invia un messaggio a tutti i notificatori abilitati quando SickRage viene aggiornato"],"User Interface":[null,"Interfaccia utente"],"Options for visual appearance.":[null,"Opzioni per l'aspetto visivo."],"Interface Language":[null,"Lingua dell'Interfaccia"],"System Language":[null,"Lingua di sistema"],"for appearance to take effect, save then refresh your browser":[null,"perchè le modifiche abbiano effetto, salva e poi aggiorna la pagina"],"Display theme":[null,"Tema di visualizzazione"],"Dark":[null,"Scuro"],"Light":[null,"Chiaro"],"Use a background image":[null,"Usa immagine di sfondo"],"use a custom image as background for SickRage":[null,"usa un'immagine personalizzata come sfondo per SickRage"],"Background Path":[null,"Percorso sfondo"],"Path to the background image":[null,"Percorso dell'immagine di sfondo"],"Show fanart in the background":[null,"Visualizza fanart sullo sfondo"],"on the show summary page":[null,"nella pagina di riepilogo della Serie TV"],"Fanart transparency":[null,"Trasparenza fanart"],"transparency of the fanart in the background":[null,"trasparenza della fanart sullo sfondo"],"Use a custom stylesheet file":[null,""],"use a custom .css file to style SickRage (for advanced users)":[null,""],"Stylesheet File Path":[null,""],"Path to the stylesheet (.css) file":[null,""],"Show all seasons":[null,"Mostra tutte le stagioni"],"Sort with \"The\", \"A\", \"An\"":[null,"Ordina con \"The\", \"A\", \"An\""],"include articles (\"The\", \"A\", \"An\") when sorting show lists":[null,"considera gli articoli per l'ordinamento delle serie TV"],"Missed episodes range":[null,"Intervallo di puntate mancate"],"set the range in days of the missed episodes in the Schedule page":[null,"imposta l'intervallo in giorni degli episodi mancati nella pagina di Pianificazione"],"Display fuzzy dates":[null,"Visualizza date indistinte"],"move absolute dates into tooltips and display e.g. \"Last Thu\", \"On Tue\"":[null,"visualizza le date assolute in menu a comparsa e mostra per esempio \"Ultimo giovedì\", \"Questo martedì\""],"Trim zero padding":[null,"Tagliare riempimento con zeri"],"remove the leading number \"0\" shown on hour of day, and date of month":[null,"rimuovi il numero \"0\" iniziale nelle ore di un giorno e nella data di un mese"],"Date style":[null,"Stile della data"],"Use System Default":[null,"Usa impostazione Predefinita di Sistema"],"Time style":[null,"Stile dell'ora"],"seconds are only shown on the History page":[null,"i secondi sono mostrati solamente nella pagina Cronologia"],"Timezone":[null,"Fuso orario"],"Local":[null,"Locale"],"Network":[null,"Rete"],"display dates and times in either your timezone or the shows network timezone":[null,"mostra date e ore nel tuo fuso orario o nel fuso orario della rete televisiva"],"use local timezone to start searching for episodes minutes after show ends (depends on your dailysearch frequency)":[null,"usa il fuso orario locale per iniziare la ricerca degli episodi qualche minuto dopo il termine della Serie TV (dipende dalla frequenza giornaliera di ricerca)"],"Download url":[null,"URL di download"],"URL where the shows can be downloaded.":[null,"Indirizzo dal quale possono essere scaricate le Serie TV."],"Web Interface":[null,"Interfaccia Web"],"it is recommended that you enable a username and password to secure SickRage from being tampered with remotely.":[null,"è raccomandato inserire username ed password per proteggere SickRage da attacchi esterni."],"these options require a manual restart to take effect.":[null,"queste opzioni richiedono un riavvio manuale per diventare effettive."],"API key":[null,"Chiave API"],"used to give 3rd party programs limited access to SickRage":[null,"usato per dare ai programmi di terze parti accesso limitato a SickRage"],"you can try all the features of the API":[null,"puoi provare tutte le funzioni dell'API"],"here":[null,"qui"],"HTTP logs":[null,"Registri di HTTP"],"enable logs from the internal Tornado web server":[null,"abilitare il log del web server interno Tornado"],"HTTP username":[null,"Nome utente HTTP"],"set blank for no login":[null,"lasciare vuoto per non richiedere il login"],"HTTP password":[null,"Password HTTP"],"blank = no authentication":[null,"vuoto = senza autenticazione"],"HTTP port":[null,"Porta HTTP"],"web port to browse and access SickRage (default:8081)":[null,"la porta web per navigare ed accedere a SickRage (predefinito: 8081)"],"Notify on login":[null,"Notifica il login"],"enable to be notified when a new login happens in webserver":[null,"attivare per essere avvisati ad ogni nuovo accesso al webserver"],"Listen on IPv6":[null,"Ascolto su IPv6"],"attempt binding to any available IPv6 address":[null,"tenta l'associazione a qualsiasi indirizzo IPv6 disponibile"],"Enable HTTPS":[null,"Abilita HTTPS"],"enable access to the web interface using a HTTPS address":[null,"abilitare l'accesso all'interfaccia web utilizzando un indirizzo HTTPS"],"HTTPS certificate":[null,"Certificato HTTPS"],"file name or path to HTTPS certificate":[null,"nome file o percorso del certificato HTTPS"],"HTTPS key":[null,"Chiave HTTPS"],"file name or path to HTTPS key":[null,"nome file o percorso della chiave HTTPS"],"Reverse proxy headers":[null,"Intestazioni di proxy inverso"],"accept the following reverse proxy headers (advanced)...":[null,"accetta le seguenti intestazioni di proxy inverso (avanzate)..."],"(X-Forwarded-For, X-Forwarded-Host, and X-Forwarded-Proto)":[null,"(X-Forwarded-For, X-Forwarded-Host, and X-Forwarded-Proto)"],"CPU throttling":[null,"Limitazione della CPU"],"Normal (default). High is lower and Low is higher CPU use":[null,"\"Normale\" (predefinito). \"Alto\" è un più basso e \"Basso\" è un più elevato utilizzo della CPU"],"Anonymous redirect":[null,"Redirect Anonimo"],"backlink protection via anonymizer service, must end in \"?\"":[null,"protezione backlink tramite un servizio di anonimizzazione, deve terminare con \"?\""],"Enable debug":[null,"Attiva il debug"],"enable debug logs":[null,"abilita i Log di debug"],"Verify SSL Certs":[null,"Verificare i certificati SSL"],"verify SSL Certificates (Disable this for broken SSL installs (Like QNAP))":[null,"verifica i certificati SSL (Disattiva questo per installazioni SSL non funzionanti (come QNAP))"],"No Restart":[null,"Nessun riavvio"],"only shutdown when restarting SR":[null,"spegni solo quando riavvii SR"],"only select this when you have external software restarting SR automatically when it stops (like FireDaemon)":[null,"seleziona solo quando hai un programma esterno che riavvia SR automaticamente quando viene interrotto (ad esempio FireDaemon)"],"Encrypt passwords":[null,"Crittografa le password"],"in the <code>config.ini</code> file":[null,"nel file <code>config.ini</code>"],"warning":[null,"avviso"],"passwords must only contain":[null,"le password devono contenere solo"],"ASCII characters":[null,"Caratteri ASCII"],"Unprotected calendar":[null,"Calendario non protetto"],"allow subscribing to the calendar without user and password":[null,"consenti l'iscrizione al calendario senza utente e password"],"some services like Google Calendar only work this way":[null,"alcuni servizi come Google Calendar funzionano solo in questo modo"],"Google Calendar Icons":[null,"Icone del calendario di Google"],"show an icon next to exported calendar events in Google Calendar":[null,"mostra un'icona accanto agli eventi esportati in Google Calendar"],"Proxy host":[null,"Host proxy"],"blank to disable or proxy to use when connecting to providers":[null,"lascia vuoto per disabilitare o inserisci il proxy da utilizzare durante la connessione al provider"],"also use global proxy setting for indexers (tvdb, xem, anidb, etc.)":[null,"utilizza i settaggi proxy globali anche per gli indicizzatori (tvdb, xem, anidb, etc.)"],"Skip Remove Detection":[null,"Salta rilevamento rimozione"],"skip detection of removed files":[null,"ignorare il rilevamento dei file rimossi"],"if disabled the episode will be set to the default deleted status":[null,"se disabilitato l'episodio verrà impostato con lo stato predefinito di eliminato"],"Default deleted episode status":[null,"Stato predefinito degli episodi eliminati"],"define the status to be set for media file that has been deleted.":[null,"definisci che stato deve essere impostato per i file che sono stati eliminati."],"Archived option will keep previous downloaded quality":[null,"L'opzione \"Archiviato\" manterrà la precedente qualità di download"],"example: Downloaded (1080p WEB-DL) ==> Archived (1080p WEB-DL)":[null,"esempio: Scaricato (1080p WEB-DL) ==> Archiviato (1080p WEB-DL)"],"Options for github related features.":[null,"Opzioni che si riferiscono a funzionalità di github."],"Branch version":[null,"Versione"],"error: No branches found.":[null,"errore: nessun branch trovato."],"select branch to use (restart required)":[null,"seleziona quale versione utilizzare (richiede riavvio)"],"Authorization Type":[null,"Tipo di Autorizzazione"],"Username and password":[null,"Utente e password"],"Personal access token":[null,"Token di accesso personale"],"You must use a personal access token if you're using \"two-factor authentication\" on GitHub.":[null,"Devi utilizzare un token di accesso personale se stai utilizzando l'autenticazione a due fattori su GitHub."],"GitHub username":[null,"Nome utente di GitHub"],"*** (REQUIRED FOR SUBMITTING ISSUES) ***":[null,"* * *(RICHIESTO PER INVIARE SEGNALAZIONI DI ERRORI) * * *"],"GitHub password":[null,"Password di GitHub"],"GitHub personal access token":[null,"Token di accesso personale di GitHub"],"Generate Token":[null,"Genera Token"],"Manage Tokens":[null,"Gestisci Tokens"],"GitHub remote for branch":[null,"GitHub remoto per il branch"],"access repo configured remotes (save then refresh browser)":[null,"accesso ai repository remoti configurati (salva e aggiorna il browser)"],"default":[null,"impostazione Predefinita"],"origin":[null,"origine"],"Git executable path":[null,"Percorso dell'eseguibile git"],"only needed if OS is unable to locate git from env":[null,"necessario se il sistema operativo non riesce a trovare git nelle variabili d'ambiente"],"Git reset":[null,"Git reset"],"removes untracked files and performs a hard reset on git branch automatically to help resolve update issues":[null,"rimuove i file non tracciati ed esegue un hard reset automatico sul ramo git per aiutare a risolvere i problemi di aggiornamento"],"Home Theater / NAS":[null,"Home Theater / NAS"],"Devices":[null,"Dispositivi"],"Social":[null,"Social"],"A free and open source cross-platform media center and home entertainment system software with a 10-foot user interface designed for the living-room TV.":[null,"Un media center libero, open source, multipiattaforma e un sistema d'intrattenimento casalingo con un'interfaccia di utente progettata per la TV del soggiorno."],"send KODI commands?":[null,"invia comandi a KODI"],"Always on":[null,"Sempre acceso"],"log errors when unreachable?":[null,"registrare gli errori quando irraggiungibile?"],"Notify on snatch":[null,"Notifica quando trovato"],"send a notification when a download starts?":[null,"invia una notifica quando viene avviato un download"],"Notify on download":[null,"Notificare il download"],"send a notification when a download finishes?":[null,"invia una notifica al termine di un download"],"Notify on subtitle download":[null,"Notificare il sottotitolo di download"],"send a notification when subtitles are downloaded?":[null,"invia una notifica quando vengono scaricati i sottotitoli"],"Update library":[null,"Aggiorna Libreria"],"update KODI library when a download finishes?":[null,"aggiorno biblioteca KODI al termine di un download?"],"Full library update":[null,"Aggiornamento completo della libreria"],"perform a full library update if update per-show fails?":[null,"eseguire un aggiornamento completo della libreria in caso di aggiornamento singolo fallito?"],"Only update first host":[null,"Aggiorna solo il primo host"],"only send library updates to the first active host?":[null,"inviare gli aggiornamenti biblioteca solo al primo host attivo?"],"KODI IP:Port":[null,"IP: porta KODI"],"host running KODI (eg. 192.168.1.100:8080)":[null,"host che esegue KODI (es. 192.168.1.100:8080)"],"(multiple host strings must be separated by commas)":[null,"(più stringhe di host devono essere separate da virgole)"],"Username":[null,"Nome Utente"],"username for your KODI server (blank for none)":[null,"nome utente per il server KODI (vuoto per nessuno)"],"Password":[null,"Password"],"password for your KODI server (blank for none)":[null,"password per il server KODI (vuoto per nessuno)"],"Click below to test.":[null,"Premi qui sotto per provare."],"Experience your media on a visually stunning, easy to use interface on your Mac connected to your TV. Your media library has never looked this good!":[null,"Prova i tuoi file multimediali su una bellissima e semplicissima interfaccia dal vostro Mac/PC collegato al televisore. La tua libreria multimediale non è mai stata così fantatica!"],"For sending notifications to Plex Home Theater (PHT) clients, use the KODI notifier with port <b>3005</b>.":[null,"Per l'invio di notifiche ai client Plex Home Theater (PHT), usa il notificatore di KODI con la porta <b>3005</b>."],"send Plex Media Server library updates?":[null,"richiedi l'aggiornamento delle librerie di Plex Media Server"],"Plex Media Server Auth Token":[null,"Plex Media Server Token di autenticazione"],"auth token used by Plex":[null,"token di autorizzazione usato da Plex"],"Update Library":[null,"Aggiorna Libreria"],"update Plex Media Server library when a download finishes":[null,"aggiorna le librerie di Plex Media Server al termine dei downloads"],"Plex Media Server IP:Port":[null,"Plex Medi Server IP:Port"],"one or more hosts running Plex Media Server<br/>(eg. 192.168.1.1:32400, 192.168.1.2:32400)":[null,"uno o più host che eseguono Plex Media Server<br/>(ad es. 192.168.1.1:32400, 192.168.1.2:32400)"],"HTTPS":[null,"HTTPS"],"use https for plex media server requests?":[null,"usa https per le richieste a Plex Media Server"],"Click below to test Plex Media Server(s)":[null,"Premi qui sotto per provare Plex Media Server(s)"],"Test Plex Media Server":[null,"Prova Plex Media Server"],"Plex Home Theater":[null,"Plex Home Theater"],"send Plex Home Theater notifications?":[null,"invia le notifiche a Plex Home theater"],"Plex Home Theater IP:Port":[null,"IP:Porta di Plex Home Theater"],"one or more hosts running Plex Home Theater<br>(eg. 192.168.1.100:3000, 192.168.1.101:3000)":[null,"uno o più host che eseguono Plex Home Theater <br>(eg. 192.168.1.100:3000, 192.168.1.101:3000)"],"Click below to test Plex Home Theater(s)":[null,"Premi qui sotto per provare Plex Home Theater(s)"],"Test Plex Home Theater":[null,"Prova Plex Home Theater"],"some Plex Home Theaters <b class=\"boldest\">do not</b> support notifications e.g. Plexapp for Samsung TVs":[null,"alcune applicazioni Plex Home Theater <b class=\"boldest\">non</b> supportano le notifiche. Es. Plexapp per TV Samsung"],"Emby":[null,"Emby"],"A home media server built using other popular open source technologies.":[null,"Un media server per la casa costruito usando altre tecnologie open source popolari."],"send update commands to Emby?":[null,"invia i comandi di aggiornamento a Emby"],"Emby IP:Port":[null,"IP:Porta di Emby"],"host running Emby (eg. 192.168.1.100:8096)":[null,"host che esegue Emby (es. 192.168.1.100:8096)"],"Emby API Key":[null,"Emby API Key"],"Networked Media Jukebox":[null,"Jukebox multimediale di rete"],"The Networked Media Jukebox, or NMJ, is the official media jukebox interface made available for the Popcorn Hour 200-series.":[null,"Il Networked Media Jukebox, o NMJ, è l'interfaccia ufficiale di jukebox resa disponibile per Popcorn Hour serie 300/400."],"send update commands to NMJ?":[null,"invia i comandi di aggiornamento a NMJ"],"Popcorn IP address":[null,"Indirizzo IP di popcorn"],"IP address of Popcorn 200-series (eg. 192.168.1.100)":[null,"Indirizzo IP di Popcorn serie 200 (es. 192.168.1.100)"],"Get settings":[null,"Ottieni le impostazioni"],"Get Settings":[null,"Ottieni impostazioni"],"the Popcorn Hour device must be powered on and NMJ running.":[null,"il dispositivo Popcorn Hour deve essere acceso e NMJ in esecuzione."],"NMJ database":[null,"Database di NMJ"],"automatically filled via the 'Get Settings' button.":[null,"compilato automaticamente tramite il pulsante 'Ottieni impostazioni'."],"NMJ mount url":[null,"Indirizzo di montaggio NMJ"],"Networked Media Jukebox v2":[null,"Networked Media Jukebox v2"],"The Networked Media Jukebox, or NMJv2, is the official media jukebox interface made available for the Popcorn Hour 300 & 400-series.":[null,"Il Networked Media Jukebox, o NMJv2, è l'interfaccia ufficiale di jukebox resa disponibile per Popcorn Hour serie 300/400."],"send update commands to NMJv2?":[null,"invia i comandi di aggiornamento a NMJv2"],"IP address of Popcorn 300/400-series (eg. 192.168.1.100)":[null,"Indirizzo IP di Popcorn serie 300/400 (es. 192.168.1.100)"],"Database location":[null,"Percorso del database"],"Database instance":[null,"Istanza di database"],"adjust this value if the wrong database is selected.":[null,"modificare questo valore se è selezionato il database errato."],"Find database":[null,"Trova database"],"Find Database":[null,"Trova database"],"the Popcorn Hour device must be powered on.":[null,"il dispositivo di Popcorn Hour deve essere acceso."],"NMJv2 database":[null,"NMJv2 database"],"automatically filled via the 'Find Database' buttons.":[null,"compilato automaticamente tramite il pulsante 'Trova Database'."],"Synology":[null,"Synology"],"The Synology DiskStation NAS.":[null,"NAS Synology."],"Synology Indexer is the daemon running on the Synology NAS to build its media database.":[null,"L'Indicizzatore di Synology è il servizio in esecuzione sul NAS Synology che si occupa di creare il database di file multimediali."],"send Synology notifications?":[null,"invia notifiche a Synology"],"requires SickRage to be running on your Synology NAS.":[null,"richiede che SickRage sia in esecuzione su NAS Synology."],"Synology Indexer":[null,"Indicizzatore di Synology"],"Synology Notifier is the notification system of Synology DSM":[null,"Il Notificatore di Synology è il sistema di notifica di Synology DSM"],"send notifications to the Synology Notifier?":[null,"invia notifiche al notificatore di Synology"],"pyTivo":[null,"pyTivo"],"pyTivo is both an HMO and GoBack server. This notifier will load the completed downloads to your Tivo.":[null,"pyTivo è un HMO e GoBack server. Questo notificatore caricherà i download completati sul vostro Tivo."],"send notifications to pyTivo?":[null,"invia notifiche a pyTivo"],"requires the downloaded files to be accessible by pyTivo.":[null,"richiede che i file scaricati siano accessibili da pyTivo."],"pyTivo IP:Port":[null,"iP: porta di PyTivo"],"host running pyTivo (eg. 192.168.1.1:9032)":[null,"host che esegue pyTivo (ad es. 192.168.1.1:9032)"],"pyTivo share name":[null,"nome della condivisione PyTivo"],"value used in pyTivo Web Configuration to name the share.":[null,"valore usato nell'interfaccia di configurazione web di pyTivo per dare un nome alla condivisione."],"Tivo name":[null,"Nome Tivo"],"(Messages & Settings > Account & System Information > System Information > DVR name)":[null,"(Messaggi & Impostazioni > Account & informazioni di sistema > System Information > nome DVR)"],"Growl":[null,"Growl"],"A cross-platform unobtrusive global notification system.":[null,"Un sistema di notifica globale discreto multipiattaforma."],"send Growl notifications?":[null,"inviare le notifiche a Growl?"],"Growl IP:Port":[null,"IP: porta Growl"],"host running Growl (eg. 192.168.1.100:23053)":[null,"host che esegue Growl (ad es. 192.168.1.100:23053)"],"may leave blank if SickRage is on the same host.":[null,"lascia vuoto se SickRage è sullo stesso host."],"otherwise Growl <b>requires</b> a password to be used.":[null,"altrimenti Growl <b>richiede</b> una password per essere utilizzato."],"Click below to register and test Growl, this is required for Growl notifications to work.":[null,"Premi qui sotto per registrare e testare Growl, questa operazione è necessaria per le notifiche di Growl."],"Register Growl":[null,"Registra Growl"],"Prowl":[null,"Prowl"],"A Growl client for iOS.":[null,"Un client Growl per iOS."],"send Prowl notifications?":[null,"inviare notifiche a Prowl?"],"Prowl Message Title":[null,"Titolo dei messaggi di Prowl"],"Global Prowl API key(s)":[null,"Chiavi API globali di Prowl"],"Prowl API(s) listed here, separated by commas if applicable, will<br> receive notifications for <b>all</b> shows. Your Prowl API key is available at:":[null,"Gli account collegati alle API di Prowl elencate qui, separate da virgole se necessario, <br> <b>riceveranno le notifiche per tutte le Serie TV</b>. L'identificativo API per il tuo acconut Prowl è disponibile presso:"],"(this field may be blank except when testing.)":[null,"(Questo campo può essere vuoto ad eccezione di esecuzione test)"],"Show notification list":[null,"Notifiche per le Serie Tv"],"-- Select a Show --":[null,"-- Seleziona una Serie TV --"],"Configure per-show notifications here by entering Prowl API key(s), separated by commas, '\n 'after selecting a show in the drop-down box. Be sure to activate the 'Save for this show' '\n 'button below after each entry.":[null,"Configura qui le notifiche per le Serie TV inserendo la(e) chiave(i) API di Prowl, separate da virgole, '\n 'dopo aver selezionato una Serie TV dal menu a discesa. Assicurati di selezionare la voce 'Salva per questa Serie TV' '\n 'con il tasto in basso per ogni cambiamento."],"Save for this show":[null,"Salva per questa Serie TV"],"Prowl priority":[null,"Priorità di Prowl"],"Very Low":[null,"Molto Bassa"],"Moderate":[null,"Moderata"],"Normal":[null,"Normale"],"High":[null,"Alta"],"Emergency":[null,"Emergenza"],"priority of Prowl messages from SickRage.":[null,"priorità dei messaggi di Prowl da SickRage."],"Libnotify":[null,"Libnotify"],"The standard desktop notification API for Linux/*nix systems. This notifier will only function if the pynotify module is installed (Ubuntu/Debian package <a href=\"apt:python-notify\">python-notify</a>).":[null,"La API standard di notifica desktop per sistemi Linux / * nix. Questo notificatore funzionerà solo se il modulo pynotify è installato (pacchetto Ubuntu/Debian <a href=\"apt:python-notify\"> python-notify</a>)."],"send Libnotify notifications?":[null,"inviare notifiche a Libnotify?"],"Pushover":[null,"Pushover"],"Pushover makes it easy to send real-time notifications to your Android and iOS devices.":[null,"Pushover rende semplice inviare notifiche in tempo reale al tuo dispositivo Android o iOS."],"send Pushover notifications?":[null,"inviare notifiche a Pushover?"],"Pushover key":[null,"Pushover Key"],"user key of your Pushover account":[null,"chiave utente del tuo account Pushover"],"Pushover API key":[null,"API key di Pushover"],"click here":[null,""]," to create a Pushover API key":[null,""],"Pushover devices":[null,"Dispositivi Pushover"],"comma separated list of pushover devices you want to send notifications to":[null,"elenco separato da virgola dei dispositivi Pushover a cui vuoi inviare le notifiche"],"Pushover notification sound":[null,"Suono notifiche Pushover"],"Bike":[null,"Bicicletta"],"Bugle":[null,"Tromba"],"Cash Register":[null,"Registratore di cassa"],"Classical":[null,"Classica"],"Cosmic":[null,"Cosmico"],"Falling":[null,"Caduta"],"Gamelan":[null,"Gamelan"],"Incoming":[null,"In arrivo"],"Intermission":[null,"Intromissione"],"Magic":[null,"Magia"],"Mechanical":[null,"Meccanico"],"Piano Bar":[null,"Piano Bar"],"Siren":[null,"Sirena"],"Space Alarm":[null,"Allarme spaziale"],"Tug Boat":[null,"Rimorchiatore"],"Alien Alarm (long)":[null,"Allarme Alieno (lungo)"],"Climb (long)":[null,"Scalata (lungo)"],"Persistent (long)":[null,"Persistente (lungo)"],"Pushover Echo (long)":[null,"Eco Pushover (lungo)"],"Up Down (long)":[null,"Su e giù (lungo)"],"None (silent)":[null,"Nessuno (silente)"],"Device specific":[null,"Specifico del dispositivo"],"choose notification sound to use":[null,"scegli il suono di notifica da usare"],"Pushover priority":[null,"priorità Pushover"],"Choose priority to use":[null,"Scegliere la priorità da utilizzare"],"Boxcar 2":[null,"Boxcar 2"],"Read your messages where and when you want them!":[null,"Leggi i messaggi dove e quando vuoi!"],"send Boxcar notifications?":[null,"inviare notifiche Boxcar?"],"Boxcar2 access token":[null,"Token di accesso Boxcar2"],"access token for your Boxcar account.":[null,"token di accesso per il tuo account Boxcar."],"NMA":[null,"NMA"],"Notify My Android":[null,"Notify My Android"],"Notify My Android is a Prowl-like Android App and API that offers an easy way to send notifications from your application directly to your Android device.":[null,"Notify My Android è un'applicazione simile a Prowl per Android che offre un modo semplice per inviare notifiche da un'applicazione al tuo dispositivo Android."],"send NMA notifications?":[null,"inviare notifiche di NMA?"],"NMA API key":[null,"Chiave API di NMA"],"(multiple keys must be separated by commas, up to a maximum of 5)":[null,"(chiavi multiple devono essere separate da virgole, fino ad un massimo di 5)"],"NMA priority":[null,"Priorità di NMA"],"priority of NMA messages from SickRage.":[null,"priorità dei messaggi NMA da SickRage."],"Pushalot":[null,"Pushalot"],"Pushalot is a platform for receiving custom push notifications to connected devices running Windows Phone or Windows 8.":[null,"Pushalot è una piattaforma per ricevere notifiche personalizzate sui dispositivi connessi basati su Windows Phone o Windows 8."],"send Pushalot notifications ?":[null,"inviare notifiche di Pushalot ?"],"Pushalot authorization token":[null,"Token di autorizzazione di Pushalot"],"authorization token of your Pushalot account.":[null,"token di autorizzazione del tuo account Pushalot."],"Pushbullet":[null,"Pushbullet"],"Pushbullet is a platform for receiving custom push notifications to connected devices running Android/iOS and desktop browsers such as Chrome, Firefox or Opera.":[null,"Pushbullet è una piattaforma per la ricezione delle notifiche push personalizzate su dispositivi connessi Android/iOS e desktop browser come Chrome, Firefox o Opera."],"send Pushbullet notifications?":[null,"inviare notifiche di Pushbullet?"],"Pushbullet API key":[null,"Chiave API di Pushbullet"],"API key of your Pushbullet account":[null,"Chiave API del tuo account Pushbullet"],"Pushbullet devices":[null,"Dispositivi di Pushbullet"],"Update device list":[null,"Aggiorna elenco dispositivi"],"Pushbullet channels":[null,"Canali Pushbullet"],"Free Mobile":[null,"Free Mobile"],"Free Mobile is a famous French cellular network provider.<br> It provides to their customer a free SMS API.":[null,"Free Mobile è un famoso operatore cellulare Francese. <br> fornisce ai suoi utenti una API gratuita per inviare SMS."],"send SMS notifications?":[null,"invia notifiche SMS?"],"send a SMS when a download starts?":[null,"invia un SMS quando il download inizia?"],"send a SMS when a download finishes?":[null,"invia un SMS al termine di un download?"],"send a SMS when subtitles are downloaded?":[null,"invia un SMS quando vengono scaricati i sottotitoli?"],"Free Mobile customer ID":[null,"ID cliente di Free Mobile"],"it's your Free Mobile customer ID (8 digits)":[null,"è il tuo ID cliente di Free Mobile (8 caratteri)"],"Free Mobile API key":[null,"chiave API Free Mobile"],"find your API key in your customer portal.":[null,"trovi la chiave API nel portale clienti."],"Click below to test your settings.":[null,"Premi qui sotto per provare le impostazioni."],"Telegram":[null,"Telegram"],"Telegram is a cloud-based instant messaging service.":[null,"Telegram è un servizio di messaggistica istantanea basato su cloud."],"send Telegram notifications?":[null,"inviare notifiche di Telegram?"],"send a message when a download starts?":[null,"invia un messaggio quando si avvia un download?"],"send a message when a download finishes?":[null,"invia un messaggio al termine di un download?"],"send a message when subtitles are downloaded?":[null,"invia un messaggio quando vengono scaricati i sottotitoli?"],"User/group ID":[null,"ID utente/gruppo"],"contact @myidbot on Telegram to get an ID":[null,"contatta @myidbot su Telegram per ottenere un ID"],"Bot API token":[null,"Token API del Bot"],"contact @BotFather on Telegram to set up one":[null,"contatta @BotFather su Telegram per impostarne uno"],"Join":[null,"Join"],"Join all of your devices together!":[null,"Unisci tutti i tuoi dispositivi insieme!"],"send Join notifications?":[null,"inviare le notifiche di Join?"],"Device ID":[null,"ID dispositivo"],"per device specific id":[null,"id specifico per dispositivo"]," to create a Join API key":[null,""],"Twilio":[null,"Twilio"],"Twilio is a webservice API that allows you to communicate directly with a mobile number. This notifier will send a text directly to your mobile device.":[null,"Twilio sono delle API web che permettono di comunicare direttamente con telefono cellulare. Questo notificatore spedirà un sms direttamente al tuo cellulare."],"should SickRage text your mobile device?":[null,"Sickrage deve inviare sms al tuo telefono cellulare?"],"Twilio Account SID":[null,"SID dell'Account Twilio"],"account SID of your Twilio account.":[null,"SID dell'account di Twilio."],"Twilio Auth Token":[null,"Twilio Auth Token"],"Twilio Phone SID":[null,"SID Telefono Twilio"],"phone SID that you would like to send the sms from":[null,"SID del telefono da cui vuoi spedire gli sms"],"Your phone number":[null,"Il tuo numero di telefono"],"phone number that will receive the sms. Please use the format +1-###-###-####":[null,"numero di telefono che riceverà gli sms. Si prega di utilizzare il formato + 1-# # #-# # #-# # #"],"Twitter":[null,"Twitter"],"A social networking and microblogging service, enabling its users to send and read other users' messages called tweets.":[null,"Un servizio di social networking e microblogging, permette agli utenti di inviare e leggere i messaggi degli altri, chiamati tweet."],"should SickRage post tweets on Twitter?":[null,"SickRage deve scrivere su Twitter?"],"you may want to use a secondary account.":[null,"potresti utilizzare un account secondario."],"send direct message":[null,"invia messaggio diretto"],"send a notification via Direct Message, not via status update":[null,"inviare una notifica tramite messaggio diretto, non tramite aggiornamento di stato"],"send DM to":[null,"invia messaggio diretto a"],"Twitter account to send Direct Messages to (must follow you)":[null,"Account Twitter a cui inviare messaggi diretti (deve seguirti)"],"Step One":[null,"Primo step"],"Request Authorization":[null,"Richiesta autorizzazione"],"Click the \"Request Authorization\" button.<br> This will open a new page containing an auth key.<br> <b>note:</b> if nothing happens check your popup blocker.":[null,"Premi il pulsante \"Richiesta autorizzazione\".<br> Verrà aperta una nuova pagina contenente una chiave di autorizzazione.<br><b>nota:</b> se non succede niente controlla il tuo software di blocco popup."],"Step Two":[null,"Fase due"],"Enter the key Twitter gave you below, and click \"Verify Key\".":[null,"Inserire la chiave che Twitter sotto, e cliccare \"Verifica Chiave\"."],"Trakt":[null,"Trakt"],"Trakt helps keep a record of what TV shows and movies you are watching. Based on your favorites, Trakt recommends additional shows and movies you'll enjoy!":[null,"Trakt ti aiuta a tenere traccia delle Serie TV e dei film stai guardando. Basandosi sui tuoi preferiti, Trakt potrà suggerirti ulteriori Serie TV e film che ti piaceranno!"],"send Trakt.tv notifications?":[null,"inviare notifiche su Trakt.tv?"],"username of your Trakt account.":[null,"nome utente del tuo account Trakt."],"Trakt PIN":[null,"PIN di Trakt"],"Get Trakt PIN":[null,"Ottieni PIN di Trakt"],"PIN code to authorize SickRage to access Trakt on your behalf.":[null,"Codice PIN per autorizzare SickRage ad accedere a Trakt per vostro conto."],"API Timeout":[null,"Timeout dell'API"],"seconds to wait for Trakt API to respond. (Use 0 to wait forever)":[null,"secondi di attesa per la risposta di Trakt API. (Usa 0 ad aspettare per sempre)"],"Default indexer":[null,"Indicizzatore predefinito"],"Sync libraries":[null,"Sincronizza librerie"],"sync your SickRage show library with your trakt show library.":[null,"sincronizza la libreria degli spettacoli di SickRage con la tua libreria di Trakt."],"Remove Episodes From Collection":[null,"Rimuovere gli episodi dalla collezione"],"remove an episode from your Trakt Collection if it is not in your SickRage Library.":[null,"rimuovi un episodio dalla Collezione Trakt se non è nella Libreria di SickRage."],"Sync watchlist":[null,"Sincronizzazione watchlist"],"sync your SickRage show watchlist with your trakt show watchlist (either Show and Episode).":[null,"sincronizza la lista degli episodi guardati di SickRage con quella di Trakt (funzione basata sia sulla Serie TV che sugli episodi)."],"episode will be added on watch list when wanted or snatched and will be removed when downloaded ":[null,"l'episodio verrà aggiunto alla watchlist se è in stato \"Richiesto\" o \"Trovato\" e verrà rimosso una volta scaricato "],"Watchlist add method":[null,"Metodo aggiunta alla watchlist"],"Skip All":[null,"Ignora tutto"],"Download Pilot Only":[null,"Scarica solamente episodio pilota"],"Get whole show":[null,"Ottieni tutti gli episodi della Serie TV"],"method in which to download episodes for new shows.":[null,"metodo in cui scaricare episodi per le nuove Serie TV."],"Remove episode":[null,"Rimuovi l'episodio"],"remove an episode from your watchlist after it is downloaded.":[null,"rimuovi un episodio dalla watchlist dopo averlo scaricato."],"Remove series":[null,"Rimuovi Serie TV"],"remove the whole series from your watchlist after any download.":[null,"rimuovi l'intera Serie TV dalla lista degli episodi da guardare dopo qualsiasi download."],"Remove watched show":[null,"Rimuovi Serie TV vista"],"remove the show from sickrage if it's ended and completely watched":[null,"rimuovi la Serie TV da Sickrage se è conclusa e tutti gli episodi sono stati guardati"],"Start paused":[null,"Avvia il download delle Serie TV in pausa"],"shows grabbed from your trakt watchlist start paused.":[null,"le Serie TV prelevate dalla tua lista su Trakt verranno aggiunte ai download in pausa."],"Trakt blackList name":[null,"Nome della blackList Trakt"],"name (slug) of list on Trakt for blacklisting show on 'Add Trending Show' & 'Add Recommended Shows' pages":[null,"nome (slug) della lista su Trakt per inserire nella \"lista nera\" la SerieTV sulle pagine \"Aggiungi SerieTV Popolari\" e \"Aggiungi SerieTV Suggerite\""],"Email":[null,"E-mail"],"Allows configuration of email notifications on a per show basis.":[null,"Consente di configurare le notifiche email per ogni Serie TV."],"send email notifications?":[null,"inviare notifiche via e-mail?"],"SMTP host":[null,"Host SMTP"],"hostname of your SMTP email server.":[null,"nome host del server SMTP di posta elettronica."],"SMTP port":[null,"Porta SMTP"],"port number used to connect to your SMTP host.":[null,"numero di porta utilizzato per connettersi all'host SMTP."],"SMTP from":[null,"SMTP da"],"sender email address, some hosts require a real address.":[null,"indirizzo email del mittente, alcuni host richiedono un indirizzo reale."],"Use TLS":[null,"Usa TLS"],"check to use TLS encryption.":[null,"spunta per utilizzare la crittografia TLS."],"SMTP user":[null,"Utente SMTP"],"(optional) your SMTP server username.":[null,"(opzionale) nome utente server SMTP."],"SMTP password":[null,"password SMTP"],"(optional) your SMTP server password.":[null,"(opzionale) password del server SMTP."],"Global email list":[null,"Lista email globale"],"email addresses listed here, separated by commas if applicable, will<br> receive notifications for <b>all</b> shows.":[null,"gli indirizzi e-mail elencati qui, separati da virgole se necessario, <br>riceveranno le notifiche per<b>tutte</b> le Serie TV."],"(This field may be blank except when testing.)":[null,"(Questo campo può essere vuoto ad eccezione di esecuzione test)"],"Email Subject":[null,"Oggetto email"],"use a custom subject for some privacy protection?":[null,"utilizza un oggetto personalizzato per tutela della privacy?"],"(leave blank for the default SickRage subject)":[null,"(lascia bianco per utilizzare l'oggetto predefinito di SickRage)"],"configure per-show notifications here by entering email address(es), separated by commas,":[null,"configura le notifiche per ogni serie TV inserendo qui gli indirizzi email, separati da virgole,"],"after selecting a show in the drop-down box. Be sure to activate the 'Save for this show'":[null,"dopo aver selezionato una Serie TV dalla lista a scomparsa. Assicurati di cliccare \"Salva per questa Serie TV\""],"button below after each entry.":[null,"pulsante in basso dopo ogni voce."],"Slack":[null,"Slack"],"Slack brings all your communication together in one place. It's real-time messaging, archiving and search for modern teams.":[null,"Slack raggruppa tutte le tue comunicazioni in un unico posto. É una applicazione di messaggistica in tempo reale con funzioni di archiviazione e ricerca."],"should SickRage post messages on Slack?":[null,"consenti a Sickrage di inviare un messaggio su Slack?"],"Slack Incoming Webhook":[null,"Webhook per le notifiche in entrata di Slack"],"Discord":[null,"Discord"],"All-in-one voice and text chat for gamers that's free, secure, and works on both your desktop and phone.":[null,"Unisce chat vocale e testuale, offrendoti una piattaforma gratuita e sicura che funziona sia su desktop che sullo smartphone."],"Should SickRage post messages on Discord?":[null,"Consenti a Sickrage di inviare un messaggio su Discord?"],"Discord Incoming Webhook":[null,"Webhook per le notifiche in entrata di Discord"],"Create webhook under channel settings.":[null,"Crea un webhook nelle impostazioni di canale."],"Discord Bot Name":[null,"Nome Bot Discord"],"Blank will use webhook default Name.":[null,"Se vuoto verrà usato il nome di default del webhook."],"Discord Avatar URL":[null,"Url Avatar Discord"],"Blank will use webhook default Avatar.":[null,"Se vuoto verrà usato l'avatar di default del webhook."],"Discord TTS":[null,"TTS Discord"],"Send notifications using text-to-speech":[null,"Invia le notifche con sintesi vocale"],"Post-Processing":[null,"Post-elaborazione"],"Episode Naming":[null,"Nomenclatura episodi"],"Metadata":[null,"Metadati"],"Settings that dictate how SickRage should process completed downloads.":[null,"Impostazioni che determinano come SickRage deve elaborare i download completati."],"enable the automatic post processor to scan and process any files in your Post Processing Dir":[null,"abilitare la post-elaborazione automatica a scansionare ed elaborare qualsiasi file nella tua Cartella di Post-Elaborazione"],"do not use if you use an external Post Processing script":[null,"non usare se utilizzi uno script esterno di Post-Elaborazione"],"Post Processing Dir":[null,"Cartella di post-elaborazione"],"the folder where your download client puts the completed TV downloads.":[null,"cartella dove il tuo programma di download mette gli spettacoli scaricati completati."],"please use seperate downloading and completed folders in your download client if possible.":[null,"per favore utilizza cartelle separate per i download in corso e completati, se possibile."],"Processing Method":[null,"Metodo di elaborazione"],"what method should be used to put files into the library?":[null,"quale metodo deve essere utilizzato per mettere i file nella libreria?"],"if you keep seeding torrents after they finish, please avoid the 'move' processing method to prevent errors.":[null,"se tieni in condivisione i torrent dopo il loro completamento, evita di utilizzare il metodo di elaborazione 'sposta' per prevenire errori."],"Auto Post-Processing Frequency":[null,"Frequenza di post-elaborazione automatica"],"time in minutes to check for new files to auto post-process (min 10)":[null,"tempo in minuti per controllare la presenza di nuovi file per la post-elaborazione automatica (min 10)"],"Postpone post processing":[null,"Rinvia la post-elaborazione"],"wait to process a folder if sync files are present.":[null,"aspetta ad elaborare una cartella se sono presenti file di sincronizzazione."],"Sync File Extensions":[null,"Estensioni file di sincronizzazione"],"comma seperated list of extensions or filename globs SickRage ignores when Post Processing":[null,"elenco separato da virgole delle estensioni o dei file che SickRage deve ignorare durante la post-elaborazione"],"Rename Episodes":[null,"Rinomina gli episodi"],"rename episode using the Episode Naming settings?":[null,"rinominare gli episodi usando le impostazioni di Denominazione Episodio?"],"Create missing show directories":[null,"Crea cartella degli spettacoli mancanti"],"create missing show directories when they get deleted":[null,"crea cartella delle Serie TV mancanti quando vengono cancellate"],"Add shows without directory":[null,"Aggiungi Serie TV senza una cartella"],"add shows without creating a directory (not recommended)":[null,"aggiungi Serie TV senza creare una cartella (non consigliato)"],"Move associated files":[null,"Sposta i file associati"],"move associated (srt/srr/sfv/etc) files while post processing?":[null,"sposta i file associati (srt/srr/sfv/etc) durante la post-elaborazione?"],"Rename .nfo file":[null,"Rinomina i file .nfo"],"rename the original .nfo file to .nfo-orig to avoid conflicts?":[null,"rinominare il file .nfo originale in .nfo-orig per evitare conflitti?"],"Associated file extensions":[null,"Estensioni di file associate"],"comma separated list of associated file extensions SickRage should keep while post processing.":[null,"lista di estensioni file separate da virgola che Sickrage deve mantenere durante la post elaborazione."],"leaving it empty means no associated files will be post processed":[null,"lasciando vuoto nessun file associato verrà post processato"],"Delete non associated files":[null,"Cancella i file non associati"],"delete non associated files while post processing?":[null,"eliminare i file non associati durante la post elaborazione?"],"Change File Date":[null,"Modifica data dei file"],"set last modified filedate to the date that the episode aired?":[null,"impostare la data di ultima modifica dei file con la data della messa in onda?"],"some systems may ignore this feature.":[null,"alcuni sistemi potrebbero ignorare questa funzionalità."],"Timezone for File Date":[null,"Fuso orario per la data del file"],"local":[null,"locale"],"network":[null,"rete"],"what timezone should be used to change File Date?":[null,"quale fuso orario deve essere utilizzato per modificare la data del file?"],"Unpack":[null,"Scompatta"],"What to do with archived releases found in your <i>TV Download Dir</i>?":[null,"Cosa vuoi fare delle tue puntate archiviate trovate nella <i>Cartella Download Programmi</i>?"],"Ignore (do not process contents)":[null,"Ignora (non processare i contenuti)"],"Unpack (process contents)":[null,"Scompatta (processa i contenuti)"],"Treat as video (process archive as-is)":[null,"Tratta come video (processa l'archivio come tale)"],"'Unpack' only works with RAR archives":[null,"'Scompatta' funziona solo con archivi RAR"],"Windows":[null,"Windows"],"WinRar is required on windows":[null,"WinRar è obbligatorio su windows"],"Unpack Directory":[null,"Cartella di Estrazione"],"Choose a path to unpack files, leave blank to unpack in download dir":[null,"Scegli un percorso in cui scompattare i file, lascia vuoto per scompattare nella cartella di download"],"Unrar Location":[null,"Percorso Unrar"],"add the path to unrar if it is not in the system path":[null,"aggiungi il percorso di unrar se non presente nel path di sistema"],"Alternate Unrar Tool":[null,"Strumento Unrar Alternativo"],"add the path to an alternate unrar tool if it is not in the system path":[null,"aggiungi il percorso dello strumento alternativo ad unrar se non presente nel patho di sistema"],"Delete RAR contents":[null,"Elimina il contenuto del RAR"],"delete content of RAR files, even if Process Method not set to move?":[null,"cancella il contenuto dei file RAR, anche se il metodo di Elaborazione non è settato su sposta?"],"only working with RAR archive":[null,"funziona solo con archivi RAR"],"Don't delete empty folders":[null,"Non eliminare le cartelle vuote"],"leave empty folders when Post Processing?":[null,"lasciare le cartelle vuote durante la Post-Elaborazione?"],"can be overridden using manual Post Processing":[null,"può essere ignorato usando la Post-Elaborazione manuale"],"Follow symbolic-links":[null,"Segui i link simbolici"],"follow down symbolic links in download directory?":[null,"segui i link simbolici nella cartella di download?"],"<b>EXPERTS ONLY.</b><br>Enable only if you know what <b>circular symbolic links</b> are,<br>and can <b>verify that you have none</b>.":[null,"<b>SOLO ESPERTI</b><br>Abilita soltanto se sai cosa sono i <b>link simbolici circolari</b>, <br>e puoi <b>verificare che non ce ne siano</b>."],"Use icacls":[null,"Usa icacls"],"Windows only":[null,"Solo Windows"],"sets video permissions after using the move method in post processing":[null,"imposta i permessi del video dopo aver usato il metodo 'sposta' in post-processamento"],"Extra Scripts":[null,"Script extra"],"see":[null,"vedi"],"for script arguments description and usage.":[null,"per la descrizione degli argomenti degli script e l'utilizzo."],"How SickRage will name and sort your episodes.":[null,"Come vuoi che SickRage rinomini e ordini gli episodi."],"Name Pattern":[null,"Formato del nome"],"Toggle Naming Legend":[null,"Mostra/Nascondi legenda di denominazione"],"don't forget to add quality pattern. Otherwise after post-processing the episode will have UNKNOWN quality":[null,"non dimenticare di aggiungere la qualità voluta. In caso contrario, dopo la post-elaborazione avrà qualità SCONOSCIUTA"],"Meaning":[null,"Significato"],"Pattern":[null,"Formato"],"Result":[null,"Risultato"],"Use lower case if you want lower case names (eg. %sn, %e.n, %q_n etc)":[null,"Utilizza il minuscolo se desideri che i nomi siano minuscoli (ad es. %sn, %e.n, % q_n ecc)"],"Show Name":[null,"Nome della Serie TV"],"Show.Name":[null,"Show.Name"],"Show_Name":[null,"Show_Name"],"Season Number":[null,"Numero Stagione"],"XEM Season Number":[null,"Numero Stagione XEM"],"Episode Number":[null,"Numero episodio"],"XEM Episode Number":[null,"Numero episodio XEM"],"Episode Name":[null,"Nome episodio"],"Episode.Name":[null,"Episode.Name"],"Episode_Name":[null,"Episode_Name"],"Air Date":[null,"Data di trasmissione"],"Post-Processing Date":[null,"Data di Post-Elaborazione"],"Quality":[null,"Qualità"],"Scene Quality":[null,"Qualità della scena"],"Release Name":[null,"Nome Release"],"SickRage' is used in place of RLSGROUP if it could not be properly detected":[null,"SickRage' è usato al posto di RLSGROUP se non viene propriamente rilevato"],"Release Group":[null,"Gruppo di rilascio"],"If episode is proper/repack add 'proper' to name.":[null,"Se l'episodio è corretto/repack aggiungi 'correto' al nome."],"Release Type":[null,"Tipo di rilascio"],"Multi-Episode Style":[null,"Stile multi-episodio"],"Single-EP Sample":[null,"Esempio singolo episodio"],"Multi-EP sample":[null,"Esempio multi-episodio"],"Strip Show Year":[null,"Taglia anno del programma"],"remove the TV show's year when renaming the file?":[null,"rimuovere l'anno della Serie TV quando viene rinominato il file?"],"only applies to shows that have year inside parentheses":[null,"si applica solamente alle Serie TV che includono l'anno nel titolo, all'interno di parentesi"],"Custom Air-By-Date":[null,"Data di trasmissione personalizzata"],"name air-by-date shows differently than regular shows?":[null,"rinominare le Serie TV che vanno in onda quotidianamente alla stessa ora in modo diverso dalle altre Serie TV?"],"Toggle ABD Naming Legend":[null,"Mostra/Nascondi legenda di denominazione ABD"],"Regular Air Date":[null,"Data trasmissione regolare"],"Year":[null,"Anno"],"Month":[null,"Mese"],"Day":[null,"Giorno"],"Multi-EP style is ignored":[null,"Stile Multi-Episodio viene ignorato"],"Custom Sports":[null,"Sport personalizzato"],"name sports shows differently than regular shows?":[null,"rinominare in modo diverso le Serie TV riguardanti lo sport?"],"Toggle Sports Naming Legend":[null,"Mostra/Nascondi legenda di denominazione Sport"],"Sports Air Date":[null,"Sports Air Date"],"Custom Anime":[null,"Custom Anime"],"name anime shows differently than regular shows?":[null,"rinominare in modo diverso gli anime rispetto alle Serie TV?"],"Toggle Anime Naming Legend":[null,"Attiva/Disattiva Legenda Denominazione Anime"],">XEM Season Number":[null,">Numero Stagione XEM"],"Single-EP Anime Sample":[null,"Esempio per singolo episodio di Anime"],"Multi-EP Anime sample":[null,"Esempio per multi-episodio di Anime"],"Add Absolute Number":[null,"Aggiungi numero assoluto"],"add the absolute number to the season/episode format?":[null,"aggiungere il numero assoluto al formato di stagione/episodio?"],"only applies to anime. (eg. S15E45 - 310 vs S15E45)":[null,"si applica solo agli anime. (es. S15E45 - 310 vs S15E45)"],"Only Absolute Number":[null,"Solo numero assoluto"],"replace season/episode format with absolute number":[null,"sostituire il formato di stagione/episodio con un numero assoluto"],"only applies to anime.":[null,"solo per anime."],"No Absolute Number":[null,"Nessun numero assoluto"],"don't include the absolute number":[null,"non includere il numero assoluto"],"The data associated to the data. These are files associated to a TV show in the form of images and text that, when supported, will enhance the viewing experience.":[null,"É un'informazione che descrive un insieme di dati. Si tratta di file associati a una serie TV in forma di immagini e testo che, quando supportati, miglioreranno l'esperienza dello spettatore."],"Metadata Type":[null,"Tipo di metadati"],"toggle metadata options that you wish to be created":[null,"attiva/disattiva le opzioni di metadati che vuoi che siano creati"],"multiple targets may be used":[null,"si possono attivare più opzioni"],"Select Metadata":[null,"Seleziona i metadati"],"Provider Priorities":[null,"Priorità dei provider"],"Provider Options":[null,"Opzioni del provider"],"Configure Custom Newznab Providers":[null,"Configura i provider personalizzati Newznab"],"Configure Custom Torrent Providers":[null,"Configura i provider personalizzati Torrent"],"Check off and drag the providers into the order you want them to be used.":[null,"Spunta e trascina i provider nell'ordine in cui vuoi vengano interrogati."],"At least one provider is required but two are recommended.":[null,"È richiesto almeno un provider, ma due sono raccomandati."],"Torrent providers can be toggled in ":[null,"Torrent provider possono essere attivati in "],"Provider does not support backlog searches at this time.":[null,"I Provider non supportano ricerche di arretrati in questo momento."],"Provider is <b>NOT WORKING</b>.":[null,"Il Provider è <b>NON FUNZIONANTE</b>."],"Configure individual provider settings here.":[null,"Configura qui le impostazioni dei singoli provider."],"Check with provider's website on how to obtain an API key if needed.":[null,"Verifica sul sito web del provider come ottenere una chiave API, se necessaria."],"Configure provider":[null,"Configura provider"],"no providers available to configure.":[null,"nessun provider disponibile da configurare."],"URL":[null,"URL"],"Enable daily searches":[null,"Abilita ricerche giornaliere"],"enable provider to perform daily searches.":[null,"abilita il provider per effettuare ricerche giornaliere."],"Enable backlog searches":[null,"Abilita la ricerca degli arretrati"],"enable provider to perform backlog searches.":[null,"abilita il provider per effettuare la ricerca degli arretrati."],"Season search mode":[null,"Modalità di ricerca della stagione"],"when searching for complete seasons you can choose to have it look for season packs only, or choose to have it build a complete season from just single episodes.":[null,"quando cerchi un'intera stagione puoi scegliere di cercarla come archivio completo, oppure di costruirla a partire dai singoli episodi."],"season packs only.":[null,"solo archivi completi."],"episodes only.":[null,"solo episodi."],"Enable fallback":[null,"Abilita alternativa"],"when searching for a complete season depending on search mode you may return no results, this helps by restarting the search using the opposite search mode.":[null,"quando si cerca una stagione completa a seconda del metodo di ricerca potrebbero non esserci risultati, questo riavvia la ricerca utilizzando l'altro metodo."],"Custom URL":[null,"URL personalizzato"],"the URL should include the protocol (and port if applicable). Examples: http://192.168.1.4/ or http://localhost:3000/":[null,"l'URL deve includere il protocollo (e la porta se disponibile). Ad esempio: http://192.168.1.4/ o http://localhost:3000/"],"Api key":[null,"Chiave API"],"Digest":[null,"Digest"],"Hash":[null,"Hash"],"Passkey":[null,"Chiave di accesso"],"Cookies":[null,"Cookies"],"example: uid=1234;pass=567845439634987<br>note: uid and pass are not your username/password.<br>use DevTools or Firebug to get these values after logging in on your browser.":[null,"esempio: uid=1234;pass=567845439634987<br>Nota: uid e pass non sono i tuoi username/password.<br> usa DevTools o Firebug per ottenerli dopo esserti connesso con il tuo browser."],"Pin":[null,"Pin"],"Seed ratio":[null,"Rapporto di Condivisione"],"stop transfer when ratio is reached<br>(-1 SickRage default to seed forever, or leave blank for downloader default)":[null,"smetti di inviare quando il rapporto è raggiunto<br>(-1 è il predefinito per restare in condivisione per sempre, oppure lascia vuoto per usare il predefinito del programma di download)"],"Minimum seeders":[null,"Numero minimo di seeder"],"Minimum leechers":[null,"Numero minimo di leecher"],"Confirmed download":[null,"Download confermato"],"only download torrents from trusted or verified uploaders ?":[null,"scarica solamente torrent da utenti fidati o verificati?"],"Ranked torrents":[null,"Torrent fidati"],"only download ranked torrents (trusted releases)":[null,"scarica solo torrent fidati"],"English torrents":[null,"Torrent inglesi"],"only download english torrents, or torrents containing english subtitles":[null,"scarica solamente torrent inglesi, o torrent che contengono sottotitoli in inglese"],"For Spanish torrents":[null,"Per i torrent spagnoli"],"ONLY search on this provider if show info is defined as \"Spanish\" (avoid provider's use for VOS shows)":[null,"Cerca SOLO su questo provider se nelle informazioni riguardanti questa Serie TV la lingua è indicata come \"Spagnolo\" (evita l'uso di certi provider per le Serie TV VOS)"],"Sorting results by":[null,"Ordina i risultati per"],"Freeleech":[null,"Freeleech"],"only download <b>\"FreeLeech\"</b> torrents.":[null,"scarica solamente i torrent di <b>\"FreeLeech\"</b>."],"Category":[null,"Categoria"],"select torrent with Italian subtitle":[null,"scegli i torrent con sottotitoli in italiano"],"Configure Custom<br>Newznab Providers":[null,"Configura i provider<br>personalizzati Newznab"],"Add and setup or remove custom Newznab providers.":[null,"Aggiungi e configura o rimuovi un provider Newznab personalizzato."],"Select provider":[null,"Scegli provider"],"-- add new provider --":[null,"-- aggiungi nuovo provider --"],"Provider name":[null,"Nome del provider"],"Site URL":[null,"URL sito"],"Newznab search categories":[null,"Categorie di ricerca Newznab"],"select your Newznab categories on the left, and click the \"update categories\" button to use them for searching.) <b>don't forget to to save the form!":[null,"seleziona le categorie di Newznab sulla sinistra e premi sul pulsante \"Aggiorna Categorie\" per utilizzarli nella ricerca.) <b>non dimenticare di salvare il modulo!"],"Update Categories":[null,"Aggiorna Categorie"],"Add":[null,"Aggiungi"],"Delete":[null,"Cancella"],"Add and setup or remove custom RSS providers.":[null,"Aggiungi e configura o rimuovi un provider di RSS personalizzato."],"RSS URL":[null,"URL RSS"],"Search element":[null,"Elemento di ricerca"],"eg: title":[null,"ad esempio: titolo"],"Episode Search":[null,"Ricerca episodio"],"NZB Search":[null,"Ricerca Usenet (NZB)"],"Torrent Search":[null,"Ricerca Torrent"],"How to manage searching with":[null,"Come gestire la ricerca con i"],"Randomize Providers":[null,"Fonti in ordine casuale"],"randomize the provider search order instead of going in order of placement":[null,"Effetua la ricerca tra le fonti in ordine casuale anzicché utilizzare l'ordine di aggiunta"],"Download propers":[null,"Scarica propers"],"replace original download with \"Proper\" or \"Repack\" if nuked":[null,"sostituisci il download originale con \"Proper\" o \"Repack\""],"Check propers every":[null,"Verifica propers ogni"],"24 hours":[null,"24 ore"],"4 hours":[null,"4 ore"],"90 mins":[null,"90 min"],"45 mins":[null,"45 min"],"15 mins":[null,"15 min"],"Backlog search day(s)":[null,"Giorni di ricerca per gli arretrati"],"number of day(s) that the \"Forced Backlog Search\" will cover (e.g. 7 Days)":[null,"numero di giorni che la \"Ricerca Forzate degli Arretrati\" andrá a coprire (ad es. 7 giorni)"],"Backlog search frequency":[null,"Frequenza di ricerca degli arretrati"],"time in minutes between searches (min.":[null,"tempo in minuti tra le ricerche (min."],"Daily search frequency":[null,"Frequenza di ricerca giornaliera"],"Usenet retention":[null,"Ritenzione di Usenet"],"age limit in days for usenet articles to be used (e.g. 500)":[null,"limite di età in giorni da usare per gli elementi usenet (es. 500)"],"Ignore words":[null,"Parole ignorate"],"results with one or more word from this list will be ignored<br>separate words with a comma, e.g. \"word1,word2,word3\"":[null,"risultati con uno o più parole da questo elenco verranno ignorati <br>separa le parole con una virgola, ad esempio \"parola1, parola2, parola3\""],"Require words":[null,"Parole richieste"],"results with no word from this list will be ignored<br>separate words with a comma, e.g. \"word1,word2,word3\"":[null,"risultati con nessuna parola da questo elenco verranno ignorati <br>separa le parole con una virgola, ad esempio \"parola1, parola2, parola3\""],"Trackers list":[null,"Lista di Tracker"],"trackers that will be added to magnets without trackers<br>separate trackers with a comma, e.g. \"tracker1,tracker2,tracker3\"":[null,"trackers che verranno aggiunti ai magnets senza trackers<br>separa i trackers con una virgola, ad esempio \"tracker1,tracker2,tracker3\""],"Ignore language names in subbed results":[null,"Ignora le seguenti lingue per le Serie TV sottotitolate"],"ignore subbed releases based on language names <br>\n Example: \"dk\" will ignore words: dksub, dksubs, dksubbed, dksubed <br>\n separate languages with a comma, e.g. \"lang1,lang2,lang3":[null,"ignora le Serie TV già sottotitolate in base alla lingua indicata <br>\n Ad esempio: il termine \"dk\" ignorerà le parole: dksub, dksubs, dksubbed, dksubed <br>\n separa i nomi delle lingue con una virgola, ad esempio \"lingua1, lingua2, lingua3\""],"Allow high priority":[null,"Consenti alta priorità"],"set downloads of recently aired episodes to high priority":[null,"imposta su alta priorità il download degli episodi trasmessi recentemente"],"Use Failed Downloads":[null,"Usa Download Falliti"],"use Failed Download Handling?":[null,"Vuoi utilizzare la funzione \"Download Falliti\" ?"],"will only work with snatched/downloaded episodes after enabling this":[null,"avrà effetto solo con gli episodi trovati/scaricati dopo l'attivazione"],"Delete Failed":[null,"Eliminazione Download Falliti"],"delete files left over from a failed download?":[null,"eliminare i file lasciati da un download non riuscito?"],"this only works if Use Failed Downloads is enabled.":[null,"funziona solo se Usa Download Falliti è attivato."],"How to handle NZB search results.":[null,"Come gestire i risultati della ricerca NZB."],"Search NZBs":[null,"Ricerca NZBs"],"enable NZB search providers":[null,"abilitare i provider di ricerca NZB"],"Send .nzb files to":[null,"Invia i file .nzb a"],"SABnzbd server URL":[null,"URL del server SABnzbd"],"URL to your SABnzbd server (e.g. http://localhost:8080/)":[null,"URL del tuo server SABnzbd (ad esempio http://localhost:8080/)"],"SABnzbd username":[null,"Nome utente SABnzbd"],"(blank for none)":[null,"(vuoto per nessuno)"],"SABnzbd password":[null,"Password SABnzbd"],"SABnzbd API key":[null,"Chiave API di SABnzbd"],"locate at... SABnzbd Config -> General -> API Key":[null,"si trova in... SABnzbd Configurazione -> Generale -> Chiave API"],"Use SABnzbd category":[null,"Usa categoria SABnzbd"],"add downloads to this category (e.g. TV)":[null,"aggiunge download a questa categoria (es. TV)"],"Use SABnzbd category (backlog episodes)":[null,"Usa categoria SABnzbd (episodi arretrati)"],"add downloads of old episodes to this category (e.g. TV)":[null,"aggiunge download di vecchi episodi di questa categoria (es. TV)"],"Use SABnzbd category for anime":[null,"Usa categoria SABnzbd per gli Anime"],"add anime downloads to this category (e.g. anime)":[null,"aggiunge download di Anime a questa categoria (es. Anime)"],"Use SABnzbd category for anime (backlog episodes)":[null,"Usa categoria SABnzbd per gli Anime (episodi arretrati)"],"add anime downloads of old episodes to this category (e.g. anime)":[null,"Aggiungi a questa categoria i vecchi episodi degli anime scaricati (ad es. Cartoni)"],"Use forced priority":[null,"Utilizza la massima prioritá possibile"],"enable to change priority from HIGH to FORCED":[null,"Consente di modificare la prioritá da ALTA a MASSIMA"],"Black hole folder location":[null,"Percorso della cartella buco nero"],"<b>.nzb</b> files are stored at this location for external software to find and use":[null,"i file <b>.nzb</b> sono memorizzati in questo percorso per essere trovati e usati da programmi esterni"],"Connect using HTTPS":[null,"Connetti utilizzando HTTPS"],"enable Secure control in NZBGet and set the correct Secure Port here":[null,"Seleziona il Protocollo di Sicurezza per la Ricerca Usenet (NZBGet) e la Porta corrispondente"],"NZBget host:port":[null,"Server NZB - indirizzo:porta"],"(e.g. localhost:6789)":[null,"(ad esempio: localhost:6789)"],"NZBget RPC host name and port number (not NZBgetweb!)":[null,"Inserire l'indirizzo del server e il numero di porta per il server NZBGet su RPC (non utilizzare l'indirizzo per l'interfaccia web NZBgetweb ! )"],"NZBget username":[null,"Nome utente NZBget"],"locate in nzbget.conf (default:nzbget)":[null,"Individua manulmente il file nzbget.conf (default:nzbget)"],"NZBget password":[null,"Password per NZBget"],"locate in nzbget.conf (default:tegbzn6789)":[null,"Individua il parametro all'interno di nzbget.conf (default:tegbzn6789)"],"Use NZBget category":[null,"Utilizza la seguente categoria per NZBget"],"send downloads marked this category (e.g. TV)":[null,"inizializza i download contrassegnati con questa categoria (ad es. TV)"],"Use NZBget category (backlog episodes)":[null,"Usa la seguente categoria per gli Arretrati"],"send downloads of old episodes marked this category (e.g. TV)":[null,"inizializza i download degli episodi arretrati contrassegnati con questa categoria (ad es. TV)"],"Use NZBget category for anime":[null,"Utilizza la seguente categoria NZBget per gli Anime"],"send anime downloads marked this category (e.g. anime)":[null,"inizializza i download degli Anime contrassegnati con questa categoria (ad es. Anime)"],"Use NZBget category for anime (backlog episodes)":[null,"Utilizza la seguente categoria NZBget per la categoria Anime (episodi arretrati)"],"send anime downloads of old episodes marked this category (e.g. anime)":[null,"inizializza i download degli Anime degli episodi arretrati contrassegnati con questa categoria (ad es. Anime)"],"NZBget priority":[null,"Prioritá per NZBget"],"Very low":[null,"Molto bassa"],"Low":[null,"Bassa"],"Very high":[null,"Molto Alta"],"Force":[null,"Massima"],"priority for daily snatches (no backlog)":[null,"prioritá delle ricerche giornaliere (esclusi gli arretrati)"],"Torrent host:port":[null,"Torrent: porta host"],"URL to your Synology DSM (e.g. http://localhost:5000/)":[null,"URL del tuo Synology DSM (ad es. http://localhost:5000/)"],"Client username":[null,"Nome utente del Client"],"Client password":[null,"Password del client"],"Downloaded files location":[null,"Posizione dei file scaricati"],"where Synology Download Station will save downloaded files (blank for client default)":[null,"dove Synology Download Station salverà i file scaricati (vuoto per lasciare come predefinito)"],"the destination has to be a shared folder for Synology DS":[null,"la destinazione deve essere una cartella condivisa di Synology DS"],"Click below to test":[null,"Premi qui sotto per provare"],"How to handle Torrent search results.":[null,"Come gestire i risultati di ricerca di Torrent."],"Search torrents":[null,"Cerca torrents"],"enable torrent search providers":[null,"abilita i provider di ricerca torrent"],"Send .torrent files to":[null,"Invia i file .torrent a"],"<b>.torrent</b> files are stored at this location for external software to find and use":[null,"i file <b>.torrent</b> sono memorizzati in questo percorso per essere trovati e usati da programmi esterni"],"URL to your torrent client (e.g. http://localhost:8000/)":[null,"URL per il tuo client torrent (ad es. http://localhost:8000/)"],"Torrent RPC URL":[null,"URL del torrent RPC"],"the path without leading and trailing slashes (e.g. transmission)":[null,"inserisci l'indirizzo senza lo \"/\" iniziale e finale (ad. es. transmission)"],"Http Authentication":[null,"Autenticazione http"],"Verify certificate":[null,"Verifica il Certificato di Sicurezza"],"disable if you get \"Deluge: Authentication Error\" in your log":[null,"disattiva questa opzione se nel log é presente l'errore \"Deluge: Authentication Error\""],"verify SSL certificates for HTTPS requests":[null,"verifica i Certificati SSL per le Richieste HTTPS"],"Add label to torrent":[null,"Aggiungi etichetta ai torrent"],"(blank spaces are not allowed)":[null,"(gli spazi vuoti non sono consentiti)"],"label plugin must be enabled in Deluge clients":[null,"il plug-in per le etichette deve essere attivo su Deluge"],"for QBitTorrent 3.3.1 and up":[null,"per QBitTorrent da 3.3.1 in su"],"Add label to torrent for anime":[null,"Aggiungi etichetta al torrente per gli anime"],"for QBitTorrent 3.3.1 and up ":[null,"per QBitTorrent da 3.3.1 in su"],"where <span id=\"torrent_client\">the torrent client</span> will save downloaded files (blank for client default)":[null,"dove <span id=\"torrent_client\">il client torrent</span> salverà i file scaricati (vuoto per predefinito del client)"],"the destination has to be a shared folder for Synology DS</span>":[null,"la destinazione deve essere in una cartella condivisa da Synology DS</span>"],"Minimum seeding time":[null,"Tempo minimo in condivisione"],"time in hours":[null,"tempo in ore"],"(default:'0' passes blank to client and '-1' passes nothing)":[null,"(predefinito: '0' invia uno spazio al client e '-1' non invia nulla)"],"Start torrent paused":[null,"Avvia torrent in pausa"],"add .torrent to client but do <b style=\"font-weight:900\">not</b> start downloading":[null,"aggiungi torrent al client ma <b style=\"font-weight:900\">non</b> avviare il download"],"Allow high bandwidth":[null,"Consenti l'utilizzo di una elevata larghezza di banda"],"use high bandwidth allocation if priority is high":[null,"utilizza una elevata larghezza di banda se la prioritá é impostata su Alta"],"Test Connection":[null,"Prova connessione"],"Windows Shares":[null,""],"Defines your existing windows shares so that we can add them to the browse dialog":[null,""],"Share #{number}":[null,""],"Share label":[null,""],"Hostname or IP":[null,""],"Share path":[null,""],"Subtitles Search":[null,"Ricerca sottotitoli"],"Subtitles Plugin":[null,"Fonti per Sottotitoli"],"Plugin Settings":[null,"Impostazioni Specifiche"],"Settings that dictate how SickRage handles subtitles search results.":[null,"Impostazioni che determinano come SickRage deve gestire i risultati di ricerca dei sottotitoli."],"Search Subtitles":[null,"Ricerca sottotitoli"],"Subtitle Languages":[null,"Lingue dei sottotitoli"],"Subtitle Directory":[null,"Percorso dei sottotitoli"],"the directory where SickRage should store your <i>Subtitles</i> files.":[null,"la cartella dove SickRage dovrebbe memorizzare i file dei <i>sottotitoli</i>."],"leave empty if you want store subtitle in episode path.":[null,"lascia vuoto se desideri memorizzare il sottotitolo nella cartella dell'episodio."],"Subtitle Find Frequency":[null,"Frequenza di ricerca sottotitoli"],"time in hours between scans (default: 1)":[null,"tempo in ore tra le scansioni (predefinito: 1)"],"Include Specials":[null,"Includi Episodi Speciali"],"include the show's specials when searching for subtitles?":[null,"includi gli episodi speciali quando si cercano i sottotitoli?"],"Perfect matches":[null,"Corrispondenza perfetta"],"only download subtitles that match: release group, video codec, audio codec and resolution":[null,"scarica solo sottotitoli che corrispondono a: gruppo di rilascio, codec video, codec audio e risoluzione"],"if disabled you may get out of sync subtitles":[null,"se disabilitato potresti ottenere sottotitoli fuori sincronia"],"Subtitles History":[null,"Cronologia sottotitoli"],"log downloaded Subtitle on History page?":[null,"vuoi che il download dei sottotitoli venga registrato nella pagina Cronologia?"],"Subtitles Multi-Language":[null,"Sottotitoli multi-lingua"],"append language codes to subtitle filenames?":[null,"aggiungere i codici di lingua al nome del file dei sottotitoli?"],"this option is required if you use multiple subtitle languages":[null,"questa opzione è necessaria se si utilizzano più lingue per i sottotitoli"],"Delete unwanted subtitles":[null,"Elimina sottotitoli indesiderati"],"enable to delete unwanted subtitle languages bundled with release":[null,"attiva per eliminare sottotitoli indesiderati rilasciati insieme all'episodio"],"Embedded Subtitles":[null,"Sottotitoli incorporati"],"ignore subtitles embedded inside video file?":[null,"ignorare i sottotitoli incorporati all'interno di file video?"],"this will ignore <u>all</u> embedded subtitles for every video file!":[null,"questo ignorerà <u>tutti</u> i sottotitoli incorporati per ogni file video!"],"Hearing Impaired Subtitles":[null,"Sottotitoli per non udenti"],"download hearing impaired style subtitles?":[null,"scaricare i sottotitoli per non udenti?"],"See":[null,"Guarda la"],"for a script arguments description.":[null,"per una descrizione degli argomenti di script."],"Additional scripts separated by <b>|</b>.":[null,"Script aggiuntivi separati da <b>|</b>."],"Scripts are called after each episode has searched and downloaded subtitles.":[null,"Gli script vengono eseguiti dopo la ricerca e lo scarico dei sottotitoli per ogni episodio."],"For any scripted languages, include the interpreter executable before the script. See the following example":[null,"Includere l'eseguibile dell'interprete prima dello script. Vedere l'esempio riportato di seguito"],"For Windows:":[null,"Per Windows:"],"For Linux / OS X:":[null,"Per Linux / OS x:"],"Subtitle Providers":[null,"Provider di sottotitoli"],"Check off and drag the plugins into the order you want them to be used.":[null,"Spunta e trascina i provider nell'ordine in cui vuoi vengano interrogati."],"At least one plugin is required.":[null,"E' necessario almeno un provider."]," Web-scraping plugin":[null," Provider basato su plugin web-scraping"],"Provider Settings":[null,"Impostazioni del provider"],"Set user and password for each provider":[null,"Imposta utente e password per ogni provider"],"User Name":[null,"Nome utente"],"Change Show":[null,"Modifica Serie TV"],"Prev Show":[null,"Serie TV Precedente"],"Next Show":[null,"Serie TV Successiva"],"Jump to Season":[null,"Vai alla stagione"],"Specials":[null,"Episodi Speciali"],"Poster for":[null,"Copertina per"],"Stars":[null,"Valutazione"],"minutes":[null,"minuti"],"View other popular {genre} shows on trakt.tv.":[null,"Mostra altre Serie TV {genre} popolari su trakt.tv."],"View other popular {imdbgenre} shows on IMDB.":[null,"Mostra altre serie TV {imdbgenre} popolari su IMDB."],"Allowed":[null,"Ammesso"],"Preferred":[null,"Preferito"],"Originally Airs":[null,"Originariamente in onda"],"Show Status":[null,"Stato della serie TV"],"Default EP Status":[null,"Stato predefinito EP"],"Location":[null,"Posizione"],"Missing":[null,"Episodi Mancanti"],"Scene Name":[null,"Nome di scena"],"Required Words":[null,"Termini richiesti"],"Ignored Words":[null,"Parole ignorate"],"Size":[null,"Dimensione"],"Info Language":[null,"Info lingua"],"Subtitles SR Metadata":[null,"Metadati per i Sottotitoli di SR"],"Season Folders":[null,"Cartelle per stagione"],"Paused":[null,"Sospeso"],"Air-by-Date":[null,"Data di trasmissione"],"Sports":[null,"Sport"],"DVD Order":[null,"Ordine DVD"],"Scene Numbering":[null,"Numerazione delle scene"],"Select Filtered Episodes":[null,"Seleziona episodi filtrati"],"Clear All":[null,"Deseleziona tutti"],"Change selected episodes to":[null,"Modifica gli Episodi Selezionati con il seguente valore:"],"Select Columns":[null,"Seleziona colonne"],"Hide Episodes":[null,"Nascondi episodi"],"Show Episodes":[null,"Mostra gli Episodi"],"NFO":[null,"INFO"],"TBN":[null,"TBN"],"Episode":[null,"Episodio"],"Absolute":[null,"Assoluto"],"Scene":[null,"Scena"],"Scene Absolute":[null,"Assoluto di scena"],"File Name":[null,"Nome file"],"Airdate":[null,"Data di trasmissione"],"Download":[null,"Download"],"Change the value here if scene numbering differs from the indexer episode numbering":[null,"Modifica questo valore se la numerazione degli epidosi differisce da quella utilizzata dal fornitore di informazioni (ad es. tvDB)"],"Change the value here if scene absolute numbering differs from the indexer absolute numbering":[null,"Modifica questo valore se la numerazione assoluta degli epidosi differisce da quella utilizzata dal fornitore di informazioni (ad es. tvDB)"],"Manual Search":[null,"Ricerca Manuale"],"Do you want to mark this episode as failed?":[null,"Vuoi contrassegnare il download di questo episodio come non riuscito ?"],"The episode release name will be added to the failed history, preventing it to be downloaded again.":[null,"Il nome dell'epidosio verrá aggiunto alla cronologia dei download falliti, impedendo che venga scaricato nuovamente."],"Do you want to include the current episode quality in the search?":[null,"Vuoi che la ricerca tenga conto della qualitá di questo episodio?"],"Choosing No will ignore any releases with the same episode quality as the one currently downloaded/snatched.":[null,"Scegliendo \"No\" qualsiasi episodio rilasciato nella stessa qualitá di quello attualmente ricercato e/o scaricato verrá ignorato."],"Download subtitle":[null,"Scarica sottotitoli"],"Do you want to re-download the subtitle for this language?":[null,"Vuoi ri-scaricare i sottotitoli per questa lingua?"],"It will overwrite your current subtitle":[null,"Questa azione sovrascriverà l'attuale sottotitolo"],"Format":[null,"Formato"],"Advanced":[null,"Avanzate"],"Main Settings":[null,"Impostazioni principali"],"Show Location":[null,"Percorso"],"Preferred Quality":[null,"Qualità preferita"],"Default Episode Status":[null,"Stato predefinito episodio"],"this will set the status for future episodes.":[null,"questo imposterà lo stato per gli episodi futuri."],"this only applies to episode filenames and the contents of metadata files.":[null,"questo vale solo per il nome del file dell'episodio e i contenuti dei file di metadati."],"search for subtitles":[null,"ricercare i sottotitoli"],"Use SR Metdata":[null,"Utilizza i Metadati di SR"],"use SickRage metadata when searching for subtitle, this will override the autodiscovered metadata":[null,"utilizza i metadati di SickRage durante la ricerca dei sottotitoli, andando a sostituire i metadati recuperati in precedenza"],"pause this show (SickRage will not download episodes)":[null,"mette in pausa questa serie TV (SickRage non scaricherà altri episodi)"],"Format Settings":[null,"Impostazioni del formato"],"Air by date":[null,"Data di trasmissione"],"check if the show is released as Show.03.02.2010 rather than Show.S02E03.":[null,"spunta se la serie TV è rilasciata come Show.03.02.2010 piuttosto che Show.S02E03."],"in case of an air date conflict between regular and special episodes, the later will be ignored.":[null,"se la data di messa in onda degli episodi standard dovesse essere in conflitto con quella degli episodi speciali allora verrá ignorata quest'ultima."],"check if the show is Anime and episodes are released as Show.265 rather than Show.S02E03":[null,"spunta se la serie TV è un Anime ed è rilasciata come Show.265 piuttosto che Show.S02E03."],"check if the show is a sporting or MMA event released as Show.03.02.2010 rather than Show.S02E03":[null,"spunta se la serie TV è un evento sportivo o MMA ed è rilasciata come Show.03.02.2010 piuttosto che Show.S02E03."],"Season folders":[null,"Cartelle per stagione"],"group episodes by season folder (uncheck to store in a single folder)":[null,"raggruppa gli episodi in una cartella per stagione (disattiva per archiviarli in un'unica cartella)"],"search by scene numbering (uncheck to search by indexer numbering)":[null,"cerca per numerazione delle scene (deselezionare questa opzione per usare la numerazione dell'indicizzatore)"],"use the DVD order instead of the air order":[null,"utilizzare l'ordine dei DVD invece della data di trasmissione"],"a \"Force Full Update\" is necessary, and if you have existing episodes you need to sort them manually.":[null,"è necessario fare \"Forza aggiornamento\", e se hai episodi già scaricati è necessario ordinarli manualmente."],"comma-separated <i>e.g. \"word1,word2,word3</i>\"":[null,"delimitato da virgole <i>ad esempio \"parola1, parola2, parola3\"</i>"],"search results with one or more words from this list will be ignored.":[null,"i risultati di ricerca con una o più parole da questo elenco verranno ignorati."],"e.g. \"word1,word2,word3\"":[null,"ad esempio \"termine1,termine2,termine3\""],"search results with no words from this list will be ignored.":[null,"i risultati di ricerca che non contengono parole da questo elenco verranno ignorati."],"Scene Exception":[null,"Eccezione di scena"],"this will affect episode search on NZB and torrent providers.":[null,"ciò influirà sulla ricerca degli episodi tramite providers NZB e torrent."],"this list appends to the original show name.":[null,"questo elenco verrà aggiunto al nome originale della serie TV."],"WARNING logs":[null,"Messaggi di AVVISO"],"ERROR logs":[null,"Messaggi di ERRORE"],"There are no events to display.":[null,"Non ci sono eventi da mostrare."],"Limit":[null,"Limite"],"Layout":[null,"Aspetto"],"HistoryLayout":[null,"Visaulizzazione"],"Compact":[null,"Compatto"],"Detailed":[null,"Dettagliato"],"Time":[null,"Ora"],"Provider":[null,"Origine"],"Missing Provider":[null,"Origine Sconosciuta"],"missing provider":[null,"origine sconosciuta"],"Directory":[null,"Cartella"],"Show Name (tvshow.nfo)":[null,"Nome programma (tvshow.nfo)"],"Indexer":[null,"Indicizzatore"],"Enter the folder containing the episode":[null,"Inserire la cartella contenente l'episodio"],"Process Method to be used":[null,"Metodo di elaborazione da utilizzare"],"Copy":[null,"Copia"],"Move":[null,"Sposta"],"Hard Link":[null,"Collegamento fisso"],"Symbolic Link":[null,"Collegamento simbolico"],"Symbolic Link Reversed":[null,"Collegamento simbolico invertito"],"Force already Post Processed Dir/Files":[null,"Forza i file/cartelle già post-elaborati"],"Mark Dir/Files as priority download":[null,"Imposta le cartelle/file come priorità"],"(Check it to replace the file even if it exists at higher quality)":[null,"(rimpiazza i file anche se esistono con maggiore qualità)"],"Delete files and folders":[null,"Cancella file e cartelle"],"(Check it to delete files and folders like auto processing)":[null,"(cancella file e cartelle come nell'elaborazione automatica)"],"Don't use processing queue":[null,"Non usare la coda di elaborazione"],"(If checked this will return the result of the process here, but may be slow!)":[null,"(se selezionato ritornerà il risultato del processo, ma potrebbe essere lento)"],"Mark download as failed":[null,"Imposta il download come fallito"],"Process":[null,"Avvia processo"],"Download subtitles for this show?":[null,"Scaricare i sottotitoli per questa Serie TV?"],"use SickRage metadata when searching for subtitle, <br />this will override the autodiscovered metadata":[null,"utilizza i metadati di SickRage durante la ricerca dei sottotitoli, </br />andando a sostituire i metadati recuperati in precedenza"],"Status for previously aired episodes":[null,"Stato degli episodi già trasmessi"],"Status for all future episodes":[null,"Stato dei futuri episodi"],"Group episodes by season folder?":[null,"Raggruppa gli episodi rispetto alle cartelle per stagione?"],"Is this show an Anime?":[null,"Questo spettacolo è un Anime?"],"Is this show scene numbered?":[null,"Questa Serie TV adotta una numerazione progressiva particolare per gli episodi?"],"Save Defaults":[null,"Salvare impostazioni predefinite"],"Use current values as the defaults":[null,"Utilizzare i valori attuali come impostazioni predefinite"],"<p>Select your preferred fansub groups from the <b>Available Groups</b> and add them to the <b>Whitelist</b>. Add groups to the <b>Blacklist</b> to ignore them.</p>\n <p>The <b>Whitelist</b> is checked <i>before</i> the <b>Blacklist</b>.</p>\n <p>Groups are shown as <b>Name</b> | <b>Rating</b> | <b>Number of subbed episodes</b>.</p>\n <p>You may also add any fansub group not listed to either list manually.</p>\n <p>When doing this please note that you can only use groups listed on anidb for this anime.\n <br>If a group is not listed on anidb but subbed this anime, please correct anidb's data.</p>":[null,"<p>Seleziona i tuoi gruppi preferiti per i sottotitoli dalla sezione <b>Sorgenti Disponibili</b> e aggiungili alla <b>Lista Consentita</b>. Aggiunge invece i gruppi alla <b>Lista Ignorata</b> per ignore i loro sottotitoli.</p>\n <p>La <b>Lista Consentita</b> viene controllata <i>prima</i> della <b>Lista Ignorata</b>.</p>\n <p>I Gruppi vengono visualizzati con il formato <b>Nome</b> | <b>Reputazione</b> | <b>Numero di Episodi Sottotitolati</b>.</p>\n <p>Puoi aggiungere qualsiasi gruppo che non sia giá elencato ad una delle due liste.</p>\n <p>Ricorda che puoi puoi utilizzare unicamente i Gruppi indicati su AniDB per questo specifico Anime.\n <br>Se un Gruppo rilascia i sottotitoli per questo Anime ma non é elencato su AniDB allora devi correggere i dati realtivi su AniDB.</p>"],"Whitelist":[null,"Lista consentiti"],"Available Groups":[null,"Gruppi disponibili"],"Add to Whitelist":[null,"Aggiungere alla lista consentiti"],"Add to Blacklist":[null,"Aggiungi alla lista vietati"],"Blacklist":[null,"Lista vietati"],"Custom Group":[null,"Gruppo personalizzato"],"Allowed Quality:":[null,"Qualità permessa:"],"Preferred Quality:":[null,"Qualità preferita:"],"Filter Show Name":[null,"Filtra nome della serie TV"],"Root":[null,"Root"],"All":[null,"Tutti"],"Clear Filter(s)":[null,"Cancella Filtro(i)"],"Poster":[null,"Poster"],"Small Poster":[null,"Poster piccolo"],"Banner":[null,"Banner"],"Simple":[null,"Semplice"],"Next Episode":[null,"Prossimo episodio"],"Progress":[null,"Avanzamento"],"Direction":[null,"Direzione"],"Ascending":[null,"Crescente"],"Descending":[null,"Decrescente"],"Poster Size":[null,"Dimensione copertine"],"Continuing":[null,"Continuerà"],"Ended":[null,"Concluso"],"Total":[null,"Totale"],"Invalid date":[null,"Data non valida"],"No Network":[null,"Nessuna rete"],"Next Ep":[null,"Episodio successivo"],"Prev Ep":[null,"Episodio precedente"],"Show":[null,"Serie TV"],"Downloads":[null,"Download"],"Active":[null,"Attivo"],"loading":[null,"caricamento"],"Loading...":[null,"Caricamento..."],"<p><b><u>Preferred</u></b> qualities will replace those in <b><u>allowed</u></b>, even if they are lower.</p>":[null,"<p>Le qualità <b><u>Preferite</u></b> sostituiranno quelle <b><u>Consentite</u></b>, anche se inferiori.</p>"],"New":[null,"Nuovo"],"Set as Default":[null,"Imposta come predefinito"],"Remember me":[null,"Ricordami"],"Edit Selected":[null,"Modifica selezionato"],"Subtitle":[null,"Sottotitolo"],"Default Ep Status":[null,"Stato episodio predefinito"],"Update":[null,"Aggiorna"],"Rescan":[null,"Riscansiona"],"Rename":[null,"Rinomina"],"Search Subtitle":[null,"Cerca sottotitoli"],"Force Metadata Regen":[null,"Forza la rigenerazione dei Metadata"],"Snatched (Allowed)":[null,"Trovato (Permesso)"],"Jump to Show":[null,"Vai alla serie TV"],"Force Backlog":[null,"Forza ricerca di arretrati"],"Manage episodes with status":[null,"Organizza episodi con uno stato"],"Manage":[null,"Organizza"],"None of your episodes have status":[null,"Nessuno dei tuoi episodi ha uno stato"],"Shows containing":[null,"Serie TV che contengono"],"episodes":[null,"episodi"],"Set checked shows/episodes to":[null,"Imposta serie TV/episodi selezionati come"],"Go":[null,"Vai"],"Select all":[null,"Seleziona tutti"],"Clear all":[null,"Deseleziona tutti"],"Release":[null,"Versione"],"Backlog Search":[null,"Ricerca di arretrati"],"Not in progress":[null,"Non in corso"],"In Progress":[null,"In corso"],"Daily Search":[null,"Ricerca giornaliera"],"Find Propers Search":[null,"Cerca corretti"],"Propers search disabled":[null,"Ricerca corretti disabilitata"],"Subtitle Search":[null,"Ricerca sottotitoli"],"Subtitle search disabled":[null,"Ricerca sottotitoli disabilitata"],"Search Queue":[null,"Coda di ricerca"],"pending items":[null,"elementi in sospeso"],"Daily":[null,"Giornaliera"],"Manual":[null,"Manuale"],"Changing any settings marked with (<span class=\"separator\">*</span>) will force a refresh of the selected shows.":[null,"Cambiare qualsiasi impostazione segnata con (<span class=\"separator\">*</span>) causerà un aggiornamento forzato della serie TV selezionata."],"Selected Shows":[null,"Serie TV selezionate"],"Root Directories":[null,"Percorso radice"],"Current":[null,"Corrente"],"Keep":[null,"Conserva"],"Custom":[null,"Personalizzato"],"Group episodes by season folder (set to \"No\" to store in a single folder).":[null,"Raggruppa gli episodi in una cartella per stagione (\"No\" per archiviarli in singola cartella)."],"Pause these shows (SickRage will not download episodes).":[null,"Sospendere queste serie TV (SickRage non scaricherà episodi)."],"This will set the status for future episodes.":[null,"Questo imposterà lo stato per gli episodi futuri."],"Search by scene numbering (set to \"No\" to search by indexer numbering).":[null,"Ricerca per numerazione delle scene (impostare su \"No\" per usare la numerazione dell'indicizzatore)."],"Set if these shows are Anime and episodes are released as Show.265 rather than Show.S02E03":[null,"Spunta se la serie TV è un Anime ed è rilasciata come Show.265 piuttosto che Show.S02E03"],"Set if these shows are sporting or MMA events released as Show.03.02.2010 rather than Show.S02E03.":[null,"Spunta se la serie TV è un evento sportivo o MMA ed è rilasciata come Show.03.02.2010 piuttosto che Show.S02E03"],"In case of an air date conflict between regular and special episodes, the later will be ignored.":[null,"Se la data di messa in onda degli episodi standard dovesse essere in conflitto con quella degli episodi speciali allora verrá ignorata quest'ultima."],"Set if these shows are released as Show.03.02.2010 rather than Show.S02E03.":[null,"Spunta se la serie TV è rilasciata come Show.03.02.2010 piuttosto che Show.S02E03."],"Search for subtitles.":[null,"Ricerca i sottotitoli."],"All of your episodes have {subsLanguage} subtitles.":[null,"Tutti gli episodi dispongono dei sottotitoli in {subsLanguage}"],"Manage episodes without":[null,"Gestisci gli episodi che risultano"],"Episodes without {subsLanguage} subtitles.":[null,"Episodi privi di sottotitoli in {subsLanguage}."],"Episodes without {subtitleLanguage} (undefined) subtitles.":[null,"Episodi privi di sottotitoli in {subtitleLanguage} (sottitoli non identificati)."],"Download missed subtitles for selected episodes":[null,"Scarica i sottotitoli mancanti per gli episodi selezionati"],"Performing Restart":[null,"É in corso il Riavvio"],"Waiting for SickRage to shut down":[null,"In Attesa che SickRage esegua l'Arresto"],"Waiting for SickRage to start again":[null,"In attesa che SickRage si avvii nuovamente"],"Loading the default page":[null,"Caricando la pagina predefinita"],"Error: The restart has timed out, perhaps something prevented SickRage from starting again?":[null,"Attenzione: l'operazione di riavvio ha esaurito il tempo a disposizione, forse qualcosa ha impedito a SickRage di riavviarsi?"],"Key":[null,"Legenda:"],"Missed":[null,"Perso"],"Today":[null,"Oggi"],"Soon":[null,"Presto"],"Later":[null,"Prossimamente"],"Subscribe":[null,"Iscriviti al Calendario"],"Date":[null,"Data"],"View Paused":[null,"Mostra le serie TV in pausa"],"Hidden":[null,"Nascondi"],"Shown":[null,"Mostra"],"Calendar":[null,"Calendario"],"List":[null,"Lista"],"Ends":[null,"Termina"],"Next Ep Name":[null,"Titolo del prossimo episodio"],"Run time":[null,"Durata"],"Indexers":[null,"Fornitori di Informazioni"],"No shows for this day":[null,"Nessuna serie TV per questo giorno"],"Airs":[null,"Va in onda"],"Plot":[null,"Trama"],"Show Update":[null,"Aggiornamento SerieTV"],"Version Check":[null,"Controllo Aggiornamenti SW"],"Proper Finder":[null,"Ricerca Fonti"],"Post Process":[null,"Post-Elaborazione"],"Subtitles Finder":[null,"Ricerca Sottotitoli"],"Scheduler":[null,"Operazione Pianificata"],"Alive":[null,"Funziona Corettamente ?"],"Start Time":[null,"Ora di Avvio"],"Cycle Time":[null,"Intervallo di Ripetizione"],"Next Run":[null,"Prossima Esecuzione"],"Last Run":[null,"Ultima Esecuzione"],"Silent":[null,"É Silenzioso ? (senza notifiche)"],"True":[null,"Si"],"N/A":[null,"Non Disponibile"],"Show id":[null,"Id spettacolo"],"Show name":[null,"Nome programma"],"Priority":[null,"Priorità"],"Added":[null,"Aggiunto"],"Queue type":[null,"Tipo di coda"],"LOW":[null,"BASSA"],"NORMAL":[null,"NORMALE"],"HIGH":[null,"ALTA"],"Disk Space":[null,"Spazio su disco"],"Free space":[null,"Spazio libero"],"TV Download Directory":[null,"Cartella download programmi TV"],"Media Root Directories":[null,"Percorso file multimediali"],"Preview of the proposed name changes":[null,"Anteprima delle modifiche al nome"],"All Seasons":[null,"Tutte le stagioni"],"select all":[null,"seleziona tutti"],"Rename Selected":[null,"Rinomina selezionato"],"Cancel Rename":[null,"Annulla Rinomina"],"Old Location":[null,"Vecchio percorso"],"New Location":[null,"Nuovo percorso"],"Trakt API did not return any results, please check your config.":[null,"L'API di Trakt non ha prodotto nessun risultato, controlla la configurazione."],"votes":[null,"voti"],"Remove Show":[null,"Rimuovere serie TV"],"Level":[null,"Livello"],"Filter":[null,"Filtro"],"All non-absolute folder locations are relative to ":[null,"Tutti i percorsi delle cartelle non assolute sono relativi a "],"Manual Post-Processing":[null,"Post-elaborazione manuale"],"Episode Status Management":[null,"Gestione stato episodi"],"Update PLEX":[null,"Aggiornamento PLEX"],"Update KODI":[null,"Aggiornamento KODI"],"Update Emby":[null,"Aggiornamento Emby"],"Missed Subtitle Management":[null,"Gestione sottotitoli mancanti"],"Help & Info":[null,"Aiuto & Informazioni"],"Backup & Restore":[null,"Backup & Ripristino"],"Tools":[null,"Strumenti"],"Support SickRage":[null,"Supporta SickRage"],"View Errors":[null,"Visualizza gli errori"],"View Warnings":[null,"Visualizza avvisi"],"View Log":[null,"Visualizza log"],"Check For Updates":[null,"Controlla aggiornamenti"],"Restart":[null,"Riavvia"],"Shutdown":[null,"Chiudi"],"Logout":[null,"Disconnetti"],"Server Status":[null,"Stato del server"],"View overview of snatched episodes":[null,"Guarda panoramica degli episodi trovati"],"Episodes Downloaded":[null,"Episodi scaricati"],"Memory used":[null,"Memoria utilizzata"],"Load time":[null,"Tempo di caricamento"],"Branch":[null,"Versione"],"Now":[null,"Ora"]}}}} \ No newline at end of file +{"messages":{"domain":"messages","locale_data":{"messages":{"100":[null,"100"],"250":[null,"250"],"500":[null,"500"],"":{"domain":"messages","plural_forms":"nplurals=2; plural=(n != 1);","lang":"it_IT"},"Drama":[null,"Drammatico"],"Mystery":[null,"Mistero"],"Science-Fiction":[null,"Fantascienza"],"Crime":[null,"Crime"],"Action":[null,"Azione"],"Comedy":[null,"Commedia"],"Thriller":[null,"Thriller"],"Animation":[null,"Animazione"],"Family":[null,"Famiglia"],"Fantasy":[null,"Fantasy"],"Adventure":[null,"Avventura"],"Horror":[null,"Horror"],"Film-Noir":[null,"Film Noir"],"Sci-Fi":[null,"Sci-Fi"],"Romance":[null,"Romantico"],"Sport":[null,"Sport"],"War":[null,"Guerra"],"Biography":[null,"Biografia"],"History":[null,"Cronologia"],"Music":[null,"Musica"],"Western":[null,"Western"],"News":[null,"Notizie"],"Sitcom":[null,"Sitcom"],"Reality-TV":[null,"Reality-TV"],"Documentary":[null,"Documentario"],"Game-Show":[null,"Game-Show"],"Musical":[null,"Musical"],"Talk-Show":[null,"Talk-Show"],"Started Download":[null,"Download Iniziato"],"Download Finished":[null,"Download terminato"],"Subtitle Download Finished":[null,"Download sottotitoli terminato"],"SickRage Updated":[null,"SickRage aggiornato"],"SickRage Updated To Commit#: ":[null,"SickRage aggiornato alla Commit#: "],"SickRage new login":[null,"Nuovo login di SickRage"],"New login from IP: {0}. http://geomaplookup.net/?ip={0}":[null,"Nuovo login dall'IP: {0}. http://geomaplookup.net/?ip={0}"],"Repeat":[null,"Ripeti"],"Repeat (Separated)":[null,"Ripetere (separati)"],"Extend":[null,"Esteso"],"Extend (Limited)":[null,"Estendi (limitato)"],"Extend (Limited, E-prefixed)":[null,"Estendi (limitato, con prefisso E)"],"Downloaded":[null,"Scaricato"],"Snatched":[null,"Trovato"],"Snatched (Proper)":[null,"Trovato (Proper)"],"Failed":[null,"Tentativo non riuscito"],"Snatched (Best)":[null,"Trovato (migliore)"],"Archived":[null,"Archiviato"],"Unknown":[null,"Sconosciuto"],"Unaired":[null,"Non andato in onda"],"Skipped":[null,"Saltato"],"Wanted":[null,"Richiesto"],"Ignored":[null,"Ignorato"],"Subtitled":[null,"Sottotitolato"],"For best results please set the Download Station alias as":[null,"Per ottenere i migliori risultati si prega di impostare l'alias di Download Station come"],"You can check this setting in the Synology DSM":[null,"È possibile controllare questa impostazione in Synology DSM"],"Control Panel":[null,"Pannello di controllo"],"Application Portal":[null,"Portale applicazione"],"Make sure you allow DSM to be embedded with iFrames too in":[null,"Assicuratevi di permettere a DSM di essere incorporato con iFrames"],"DSM Settings":[null,"Impostazioni del DSM"],"Security":[null,"Sicurezza"],"<No Filter>":[null,"<nessun filtro>"],"Daily Searcher":[null,"Ricerca giornaliera"],"Backlog":[null,"Arretrati"],"Show Updater":[null,"Aggiornamento Show"],"Check Version":[null,"Verifica versione"],"Show Queue":[null,"Visualizza coda"],"Search Queue (All)":[null,"Coda di ricerca (tutte)"],"Search Queue (Daily Searcher)":[null,"Coda di ricerca (Ricerca giornaliera)"],"Search Queue (Backlog)":[null,"Coda di ricerca (arretrati)"],"Search Queue (Manual)":[null,"Coda di ricerca (manuale)"],"Search Queue (Retry/Failed)":[null,"Coda di ricerca (Riprova/Fallito)"],"Search Queue (RSS)":[null,"Coda di ricerca (RSS)"],"Find Propers":[null,"Trova Propers"],"Postprocessor":[null,"Postprocessor"],"Find Subtitles":[null,"Trova sottotitoli"],"Trakt Checker":[null,"Trakt Checker"],"Event":[null,"Evento"],"Error":[null,"Errore"],"Tornado":[null,"Tornado"],"Thread":[null,"Processo"],"Main":[null,"Principale"],"Loading":[null,"Caricamento"],"New update found for SickRage, starting auto-updater":[null,"Aggiornamento di SickRage in corso"],"Update was successful":[null,"Aggiornamento completato"],"Update failed!":[null,"Aggiornamento fallito!"],"Backup":[null,"Backup"],"Config backup in progress...":[null,"Backup della configurazione in corso..."],"Config backup successful, updating...":[null,"Backup della configurazione effettuato, aggiornamento..."],"Config backup failed, aborting update":[null,"Backup della configurazione fallito, annullo l'aggiornamento"],"No update needed":[null,"Aggiornamento non necessario"],"Mako Error":[null,"Errore di Mako"],"Oops":[null,"Oops"],"Wrong API key used":[null,"API Key usata non corretta"],"Login":[null,"Login"],"API Key not generated":[null,"API key non generata"],"API Builder":[null,"API Builder"],"Schedule":[null,"Calendario"],"Test 1":[null,"Prova 1"],"This is test number 1":[null,"Questo è il test numero 1"],"Test 2":[null,"Prova 2"],"This is test number 2":[null,"Questo è il test numero 2"],"You're using the {branch} branch. Please use 'master' unless specifically asked":[null,"Stai usando la versione {branch}. Per favore usa 'master' a meno che non ti sia chiesto"],"Invalid show parameters":[null,"Parametri non validi per la Serie TV"],"Invalid parameters":[null,"Parametri invalidi"],"Episode couldn't be retrieved":[null,"L'episodio non è stato trovato"],"Home":[null,"Home"],"Show List":[null,"Lista Serie TV"],"Error: Unsupported Request. Send jsonp request with 'callback' variable in the query string.":[null,"Errore: Richiesta non supportata. Invia richiesta jsonp con variabile 'callback' nella stringa di query."],"Success. Connected and authenticated":[null,"Successo. Connesso e autenticato"],"Authentication failed. SABnzbd expects":[null,"Autenticazione fallita. SABnzbd si aspetta"],"as authentication method":[null,"come metodo di autenticazione"],"Unable to connect to host":[null,"Impossibile connettersi all'host"],"SMS sent successfully":[null,"SMS inviato con successo"],"Problem sending SMS: {message}":[null,"C'è un problema con la spedizione dell'SMS: {message}"],"Telegram notification succeeded. Check your Telegram clients to make sure it worked":[null,"Notifica Telegram inviata correttamente. Verifica il tuo client Telegram per essere sicuro che abbia funzionato"],"Error sending Telegram notification: {message}":[null,"Errore durante l'invio della notifica Telegram: {message}"],"join notification succeeded. Check your join clients to make sure it worked":[null,"Notifica join inviata correttamente. Verifica il tuo client join per essere sicuro che abbia funzionato"],"Error sending join notification: {message}":[null,"Errore durante l'invio della notifica join: {message}"]," with password":[null," con password"],"Registered and Tested growl successfully {growl_host}":[null,"Growl registrato e testato con successo {growl_host}"],"Registration and Testing of growl failed {growl_host}":[null,"Registrazione e test di Growl non riuscita {growl_host}"],"Test prowl notice sent successfully":[null,"Test della notifica di Prowl avvenuta con successo"],"Test prowl notice failed":[null,"Test notifica di Prowl non riuscita"],"Boxcar2 notification succeeded. Check your Boxcar2 clients to make sure it worked":[null,"La notifica Boxcar2 è riuscita. Verifica il tuo client di Boxcar2 per assicurarsi che abbia funzionato"],"Error sending Boxcar2 notification":[null,"Errore durante l'invio di notifica Boxcar2"],"Pushover notification succeeded. Check your Pushover clients to make sure it worked":[null,"Notifica di Pushover riuscita. Verifica il tuo client di Pushover per assicurarsi che abbia funzionato"],"Error sending Pushover notification":[null,"Errore durante invio notifica Pushover"],"Key verification successful":[null,"Chiave verificata con successo"],"Unable to verify key":[null,"Impossibile verificare la chiave"],"Tweet successful, check your twitter to make sure it worked":[null,"Tweet creato, controlla il tuo twitter per assicurarti che abbia funzionato"],"Error sending tweet":[null,"Errore nell'invio del tweet"],"Please enter a valid account sid":[null,"Inserisci un sid account valido"],"Please enter a valid auth token":[null,"Inserire un \"auth token\" valido"],"Please enter a valid phone sid":[null,"Inserisci un sid telefonico valido"],"Please format the phone number as \"+1-###-###-####\"":[null,"Il numero di telefono deve essere nel formato \"+1-###-###-####\""],"Authorization successful and number ownership verified":[null,"Autorizzato correttamente e verificata la proprietà del numero telefonico"],"Error sending sms":[null,"Errore nell'invio dell'sms"],"Slack message successful":[null,"Notifica inviata correttamente a Slack"],"Slack message failed":[null,"L'invio della notifica a Slack é fallito"],"Discord message successful":[null,"Messaggio Discord inviato"],"Discord message failed":[null,"Messaggio discord fallito"],"Test KODI notice sent successfully to {kodi_host}":[null,"Test della notifica KODI inviato con successo alla {kodi_host}"],"Test KODI notice failed to {kodi_host}":[null,"Test della notifica di KODI fallita con l'istanza {kodi_host}"],"Successful test notice sent to Plex Home Theater ... {plex_clients}":[null,"Comunicazione di test inviata a Plex Home Theater... {plex_clients}"],"Test failed for Plex Home Theater ... {plex_clients}":[null,"Test non riuscito per Plex Home Theater... {plex_clients}"],"Tested Plex Home Theater(s)":[null,"Testati Plex Home Theater(s)"],"Successful test of Plex Media Server(s) ... {plex_servers}":[null,"Test riuscito di Plex Media Server... {plex_servers}"],"Test failed, No Plex Media Server host specified":[null,"Test non riuscito, Nessun host Plex Media Server specificato"],"Test failed for Plex Media Server(s) ... {plex_servers}":[null,"Test non riuscito per Plex Media Server... {plex_servers}"],"Tested Plex Media Server host(s)":[null,"Testati host(s) Plex Media Server"],"Tried sending desktop notification via libnotify":[null,"Provato l'invio di notifica del desktop tramite libnotify"],"Test notice sent successfully to {emby_host}":[null,"Notifica di prova inviata correttamente a {emby_host}"],"Test notice failed to {emby_host}":[null,"Notifica di prova a {emby_host} non riuscita"],"Successfully started the scan update":[null,"Avviato con successo l'aggiornamento"],"Test failed to start the scan update":[null,"Test non riuscito per l'avvio aggiornamento"],"Test notice sent successfully to {nmj2_host}":[null,"Test inviato correttamente a {nmj2_host}"],"Test notice failed to {nmj2_host}":[null,"Invio test non riuscito verso {nmj2_host}"],"Trakt Authorized":[null,"Trakt autorizzato"],"Trakt Not Authorized!":[null,"Trakt non autorizzato!"],"Test email sent successfully! Check inbox.":[null,"Prova e-mail inviata con successo! Controlla la posta in arrivo."],"ERROR: {last_error}":[null,"ERRORE: {last_error}"],"Test NMA notice sent successfully":[null,"Prova NMA inviata con successo"],"Test NMA notice failed":[null,"Prova NMA non riuscita"],"Pushalot notification succeeded. Check your Pushalot clients to make sure it worked":[null,"Notifica di Pushalot riuscita. Verifica il tuo client di Pushalot per assicurarti che abbia funzionato"],"Error sending Pushalot notification":[null,"Errore durante l'invio di notifica Pushalot"],"Pushbullet notification succeeded. Check your device to make sure it worked":[null,"Notifica Pushbullet riuscita. Controlla il dispositivo per assicurarti che abbia funzionato"],"Error sending Pushbullet notification":[null,"Errore durante l'invio della notifica di Pushbullet"],"Status":[null,"Stato"],"Restarting SickRage":[null,"Riavvio di Sickrage"],"Update Failed":[null,"Aggiornamento fallito"],"Update wasn't successful, not restarting. Check your log for more information.":[null,"Non è stato possibile effettuare l'aggiornamento. Controlla il log per maggiori informazioni."],"Checking out branch":[null,"Check-out del ramo"],"Already on branch":[null,"Già sul ramo"],"Invalid show ID: {show}":[null,"Codice show non valido: {show}"],"Show not in show list":[null,"Show non presente nell'elenco"],"Edit":[null,"Modifica"],"This show is in the process of being downloaded - the info below is incomplete.":[null,"Questa Serie TV è in procinto di essere scaricata - le informazioni sottostanti sono incomplete."],"The information on this page is in the process of being updated.":[null,"Le informazioni su questa pagina sono in fase di aggiornamento."],"The episodes below are currently being refreshed from disk":[null,"Gli episodi qui sotto sono attualmente in corso di aggiornamento dal disco"],"Currently downloading subtitles for this show":[null,"I sottotitoli per questa Serie TV sono in fase di salvataggio"],"This show is queued to be refreshed.":[null,"Questa Serie TV é in procinto di essere aggiornata."],"This show is queued and awaiting an update.":[null,"Questa Serie TV é in attesa di essere aggiornata."],"This show is queued and awaiting subtitles download.":[null,"Questa Serie TV é in attesa che vengano scaricati i sottotitoli corrispondenti."],"Resume":[null,"Riprendi"],"Pause":[null,"Pausa"],"Remove":[null,"Elimina"],"Re-scan files":[null,"Nuova scansione dei files"],"Force Full Update":[null,"Forza aggiornamento"],"Update show in KODI":[null,"Aggiorna Serie TV in Kodi"],"Update show in Emby":[null,"Aggiorna show in Emby"],"Hide specials":[null,"Nascondi gli episodi speciali"],"Show specials":[null,"Mostra gli episodi speciali"],"Preview Rename":[null,"Anteprima rinomina"],"Download Subtitles":[null,"Scarica i sottotitoli"],"No scene exceptions":[null,"Senza eccezioni di scena"],"Invalid show ID":[null,"Show ID non valido"],"Unable to find the specified show":[null,"Impossibile trovare la Serie TV specificata"],"Unable to retreive Fansub Groups from AniDB.":[null,"Impossibile recuperare gruppi Fansub da AniDB."],"Edit Show":[null,"Impostazioni Show"],"Unable to refresh this show: {error}":[null,"Impossibile aggiornare questa Serie TV: {error}"],"New location <tt>{location}</tt> does not exist":[null,"La nuova posizione <tt>{location}</tt> non esiste"],"Unable to update show: {error}":[null,"Impossibile aggiornare show: {error}"],"Unable to force an update on scene exceptions of the show.":[null,"Non é stato possibile eseguire un aggiornamento forzato per le eccezioni delle scene di questa Serie TV"],"Unable to force an update on scene numbering of the show.":[null,"Non é stato possibile eseguire un aggiornamento forzato sulla numerazione delle scene di questa Serie TV"],"{num_errors:d} error{plural} while saving changes:":[null,"{num_errors:d} error{plural} durante il salvataggio delle modifiche:"],"{show_name} has been {paused_resumed}":[null,"{show_name} è stato {paused_resumed}"],"resumed":[null,"ripreso"],"paused":[null,"in pausa"],"{show_name} has been {deleted_trashed} {was_deleted}":[null,"{show_name} è stato {deleted_trashed} {was_deleted}"],"deleted":[null,"eliminato"],"trashed":[null,"cestinato"],"(media untouched)":[null,"(contenuti intatti)"],"(with all related media)":[null,"(con tutti i relativi contenuti)"],"Unable to refresh this show.":[null,"Impossibile ricaricare questo show."],"Unable to update this show.":[null,"Impossibile aggiornare questo show."],"Library update command sent to KODI host(s)): {kodi_hosts}":[null,"Comando di aggiornamento libreria inviato a KODI host(s)): {kodi_hosts}"],"Unable to contact one or more KODI host(s)): {kodi_hosts}":[null,"Impossibile contattare uno o più KODI host(s)): {kodi_hosts}"],"Library update command sent to Plex Media Server host: {plex_server}":[null,"Comando di aggiornamento libreria inviato a Plex Media Server host: {plex_server}"],"Unable to contact Plex Media Server host: {plex_server}":[null,"Impossibile contattare il Plex Media Server host: {plex_server}"],"Library update command sent to Emby host: {emby_host}":[null,"Comando di aggiornamento libreria inviato a Emby host: {emby_host}"],"Unable to contact Emby host: {emby_host}":[null,"Impossibile contattare Emby host: {emby_host}"],"You must specify a show and at least one episode":[null,"È necessario specificare uno show e almeno un episodio"],"Invalid status":[null,"Stato non valido"],"Backlog was automatically started for the following seasons of <b>{show_name}</b>":[null,"La ricerca di arretrati è stata avviata automaticamente per le seguenti stagioni di <b>{show_name}</b>"],"Season":[null,"Stagione"],"Backlog started":[null,"Ricerca di arretrati iniziata"],"Retrying Search was automatically started for the following season of <b>{show_name}</b>":[null,"Nuovo tentativo di ricerca avviato automaticamente per le seguenti stagioni di <b>{show_name}</b>"],"Retry Search started":[null,"Nuovo tentativi di ricerca iniziato"],"You must specify a show":[null,"È necessario specificare uno show"],"Can't rename episodes when the show dir is missing.":[null,"Impossibile rinominare episodi quando manca la cartella dello show."],"New subtitles downloaded: {new_subtitle_languages}":[null,"Nuovi sottotitoli scaricati: {new_subtitle_languages}"],"No subtitles downloaded":[null,"Nessun sottotitolo scaricato"],"IRC":[null,"IRC"],"Could not load news from the repo. [Click here for news.md])({news_url})":[null,"Impossibile caricare le notizie dal repo. [Clicca qui per news.md]) ({news_url})"],"The was a problem connecting to github, please refresh and try again":[null,"Si è verificato un problema di connessione a github, si prega di aggiornare e riprovare"],"Could not load changes from the repo. [Click here for CHANGES.md]({changes_url})":[null,"Impossibile caricare le modifiche dal repo. [Clicca qui per CHANGES.md] ({changes_url})"],"Changelog":[null,"Changelog"],"Post Processing":[null,"Post-elaborazione"],"Add Shows":[null,"Aggiungi Serie TV"],"No folders selected.":[null,"Nessuna cartella selezionata."],"New Show":[null,"Nuovo Show"],"Trending Shows":[null,"Serie TV di tendenza"],"Popular Shows":[null,"Serie TV popolari"],"Most Anticipated Shows":[null,"Serie TV più attese"],"Most Collected Shows":[null,"Serie TV più collezionate"],"Most Watched Shows":[null,"Serie TV più viste"],"Most Played Shows":[null,"Serie TV più riprodotte"],"Recommended Shows":[null,"Serie TV Consigliate"],"New Shows":[null,"Nuove Serie TV"],"Season Premieres":[null,"Anteprime delle Stagioni"],"Existing Show":[null,"Show esistente"],"No root directories setup, please go back and add one.":[null,"Nessuna directory principale impostata, torna indietro e aggiungila."],"Show added":[null,"Show aggiunto"],"Adding the specified show {show_name}":[null,"Aggiunto lo show selezionato {show_name}"],"Missing params, no Indexer ID or folder: {show_to_add} and {root_dir}/{show_path}":[null,"Parametro mancante, nessun ID di indicizzatore o cartella: {show_to_add} e {root_dir}/{show_path}"],"Unknown error. Unable to add show due to problem with show selection.":[null,"Errore sconosciuto. Impossibile aggiungere show a causa di problema con la selezione."],"Unable to add show":[null,"Impossibile aggiungere show"],"Folder {show_dir} exists already":[null,"Cartella {show_dir} esiste già"],"Unable to create the folder {show_dir}, can't add the show":[null,"Impossibile creare la cartella {show_dir}, non è possibile aggiungere lo show"],"Adding the specified show into {show_dir}":[null,"Aggiunto lo show selezionato in {show_dir}"],"Shows Added":[null,"Serie TV aggiunta"],"Automatically added {num_shows} from their existing metadata files":[null,"Aggiunti automaticamente {num_shows} dai rispettivi file di metadati esistenti"],"Mass Update":[null,"Aggiornamento massivo"],"Episode Overview":[null,"Descrizione di episodio"],"Missing Subtitles":[null,"Sottotitoli mancanti"],"Backlog Overview":[null,"Panoramica sulla ricerca di arretrati"],"Mass Edit":[null,"Modifica di massa"],"Unable to update show: {excption_format}":[null,"Impossibile aggiornare lo show: {excption_format}"],"Unable to refresh show {show_name}: {excption_format}":[null,"Impossibile aggiornare lo show {show_name}: {excption_format}"],"Errors encountered":[null,"Errori rilevati"],"Updates":[null,"Aggiornamenti"],"Refreshes":[null,"Aggiorna"],"Renames":[null,"Rinomina"],"Subtitles":[null,"Sottotitoli"],"The following actions were queued":[null,"Le seguenti azioni sono schedulate"],"Failed Downloads":[null,"Download Falliti"],"Manage Searches":[null,"Gestione ricerche"],"Backlog search started":[null,"Ricerca di arretrati iniziata"],"Daily search started":[null,"Ricerca quotidiana iniziata"],"Find propers search started":[null,"Ricerca release proper iniziata"],"Subtitle search started":[null,"Ricerca sottotitoli iniziata"],"Remove Selected":[null,"Rimuovi selezionati"],"Clear History":[null,"Cancella cronologia"],"Trim History":[null,"Taglia la cronologia"],"Selected history entries removed":[null,"Cancellate le voci della cronologia selezionate"],"History cleared":[null,"Cronologia cancellata"],"Removed history entries older than 30 days":[null,"Voci della cronologia più vecchie di 30 giorni rimosse"],"General":[null,"Generali"],"Backup/Restore":[null,"Backup/Ripristino"],"Search Settings":[null,"Impostazioni di ricerca"],"Search Providers":[null,"Provider di ricerca"],"Subtitles Settings":[null,"Impostazioni sottotitoli"],"Notifications":[null,"Notifiche"],"Anime":[null,"Anime"],"SickRage Configuration":[null,"Configurazione di SickRage"],"Config - Shares":[null,""],"Windows Shares Configuration":[null,""],"Saved Shares":[null,""],"Your Windows share settings have been saved":[null,""],"Config - General":[null,"Configurazione generale"],"General Configuration":[null,"Configurazione Generale"],"Saved Defaults":[null,"Impostazioni predefinite salvate"],"Your \"add show\" defaults have been set to your current selections.":[null,"I valori predefiniti di \"Aggiungi Serie TV\" sono stati settati ai valori correnti."],"Unable to create directory {directory}, log directory not changed.":[null,"Impossibile creare la directory {directory}, la directory di log non è stata modificata."],"Unable to create directory {directory}, https cert directory not changed.":[null,"Impossibile creare la directory {directory}, il certificato https della directory non è cambiato."],"Unable to create directory {directory}, https key directory not changed.":[null,"Impossibile creare la cartella {directory}, la chiave https della cartella non è cambiata."],"Error(s) Saving Configuration":[null,"Errori durante il salvataggio della configurazione"],"Configuration Saved":[null,"Configurazione salvata"],"Config - Backup/Restore":[null,"Configurazione - Backup/Ripristino"],"Config - Episode Search":[null,"Configurazione - Ricerca episodi"],"Config - Post Processing":[null,"Configurazione - Post Elaborazione"],"Unpacking Not Supported, disabling unpack setting":[null,"Estrazione non supportata, disabilito l'impostazione di estrazione"],"You tried saving an invalid normal naming config, not saving your naming settings":[null,"Hai provato a salvare una configurazione di denominazione normale non valida, non salvo le tue impostazioni di nomeclatura"],"You tried saving an invalid anime naming config, not saving your naming settings":[null,"Hai provato a salvare una configurazione di denominazione anime non valida, non salvo le tue impostazioni di nomeclatura"],"Config - Providers":[null,"Configurazione fornitori"],"No Provider Name specified":[null,"Nessun nome di Provider specificato"],"No Provider Url specified":[null,"Nessun Url Provider specificato"],"No Provider Api key specified":[null,"Nessuna chiave di Api del Provider specificata"],"Config - Notifications":[null,"Config - notifiche"],"Config - Subtitles":[null,"Config - sottotitoli"],"Config - Anime":[null,"Config - Anime"],"Clear Errors":[null,"Cancella gli errori"],"Clear Warnings":[null,"Cancella gli avvisi"],"Submit Errors":[null,"Invia errori"],"Logs & Errors":[null,"Registri & errori"],"Log File":[null,"File di log"],"Logs":[null,"Logs"],"This is a test notification from SickRage":[null,"Questa è una notifica di test da SickRage"],"Choose Directory":[null,""],"Select log file folder location":[null,""],"Select CSS file":[null,""],"Select backup folder to save to":[null,""],"Select backup files to restore":[null,""],"Please fill out the necessary fields above.":[null,""],"<b>Step 1:</b> Confirm Authorization":[null,""],"Check blacklist name; the value needs to be a trakt slug":[null,""],"You must provide a recipient email address!":[null,""],"You didn't supply a Pushbullet api key":[null,""],"Don't forget to save your new pushbullet settings.":[null,""],"Select TV Download Directory":[null,""],"Select Unpack Directory":[null,""],"This pattern is invalid.":[null,"Il formato non è valido."],"This pattern would be invalid without the folders, using it will force \"Season Folders\" on for all shows.":[null,"Il formato è invalido senza le cartelle, usandolo forzerà \"Cartelle per stagione\" per tutte le Serie TV."],"This pattern is valid.":[null,"Il formato non è valido."],"Select .nzb black hole/watch location":[null,""],"Select .torrent black hole/watch location":[null,""],"Select .torrent download location":[null,""],"Minimum seeding time is":[null,""],"URL to your uTorrent client (e.g. http://localhost:8000)":[null,""],"Stop seeding when inactive for":[null,""],"URL to your Transmission client (e.g. http://localhost:9091)":[null,""],"URL to your Deluge client (e.g. http://localhost:8112)":[null,""],"IP or Hostname of your Deluge Daemon (e.g. scgi://localhost:58846)":[null,""],"URL to your Synology DS client (e.g. http://localhost:5000)":[null,""],"URL to your rTorrent client (e.g. scgi://localhost:5000 <br> or https://localhost/rutorrent/plugins/httprpc/action.php)":[null,""],"URL to your qBittorrent client (e.g. http://localhost:8080)":[null,""],"URL to your MLDonkey (e.g. http://localhost:4080)":[null,""],"URL to your putio client (e.g. http://localhost:8080)":[null,""],"<a herf=\"https://app.put.io/oauth/apps/new\" target=\"_blank\"> Create a new OAuth app for put.io</a>":[null,""],"Put.io Parent Folder":[null,""],"Put.io OAuth Token":[null,""],"Show Episodes":[null,"Mostra gli Episodi"],"Hide Episodes":[null,"Nascondi episodi"],"Select Show Location":[null,""],"Select Unprocessed Episode Folder":[null,""],"DELETED":[null,""],"Resume updating the log on this page.":[null,"Ricomincia ad aggiornare il log su questa pagina."],"Pause updating the log on this page.":[null,"Ferma l'aggiornamento del log su questa pagina."],"searching {searchingFor}...":[null,""],"search timed out, try again or try another indexer":[null,""],"loading folders...":[null,""],"Loading...":[null,"Caricamento..."],"You have reached this page by accident, please check the url.":[null,"Sei giunto su questa pagina per errore, perfavore controlla l'indirizzo."],"A mako error has occured.<br>\n If this happened during an update a simple page refresh may be the solution.<br>\n Mako errors that happen during updates may be a one time error if there were significant ui changes.":[null,"Si è verificato un errore di Mako\".<br>\nlSe si è verificato durante un aggiornamento la soluzione potrebbe essere ricaricare la pagina.<br>\nGli errori di Mako avvenuti durante un aggiornamento potrebbero essere sporadici se c'è stata una significativa modifica dell'interfaccia utente."],"Show/Hide Error":[null,"Mostra/Nascondi errore"],"Add New Show":[null,"Aggiungi Nuova Serie TV"],"For shows that you haven't downloaded yet, this option finds a show on theTVDB.com, creates a directory for it's episodes, and adds it to SickRage.":[null,"Per le serie TV che non hai ancora scaricato, questa opzione trova una serie TV su theTVDB.com, crea una cartella per gli episodi e l'aggiunge a SickRage."],"Add From Trakt Lists":[null,"Aggiungi dalle liste di Trakt"],"For shows that you haven't downloaded yet, this option lets you choose from a show from one of the Trakt lists to add to SickRage.":[null,"Per le Serie TV che non hai ancora scaricato, questa opzione ti permette di scegliere una delle Serie TV presenti nelle liste di Trakt per aggiungerla a SickRage."],"Add From IMDB's Popular Shows":[null,"Aggiungi dalle Serie TV piú popolari su IMBD"],"View IMDB's list of the most popular shows. This feature uses IMDB's MOVIEMeter algorithm to identify popular TV Series.":[null,"Visualizza la lista delle Serie TV più popolari su IMDB. Questa funzionalità usa l'algoritmo \"MOVIEMeter\" di IMDB per identificare le Serie TV popolari."],"Add Existing Shows":[null,"Aggiungi dalle Serie TV esistenti"],"Use this option to add shows that already have a folder created on your hard drive. SickRage will scan your existing metadata/episodes and add the show accordingly.":[null,"Usa questa opzione per aggiungere le Serie TV che giá dispongono di una cartella sul tuo disco rigido. SickRage controllerà i metadati e gli episodi esistenti ed aggiungerà di conseguenza la Serie TV."],"Add Existing Show":[null,"Aggiungi una Serie TV esistente"],"Manage Directories":[null,"Gestisci Cartelle"],"Customize Options":[null,"Personalizza le Impostazioni"],"SickRage can add existing shows, using the current options, by using locally stored NFO/XML metadata to eliminate user interaction. If you would rather have SickRage prompt you to customize each show, then use the checkbox below.":[null,"SickRage, come opzione predefinita, può aggiungere le Serie TV esistenti senza richiedere l'interazione con l'utente attraverso l'uso dei metadati NFO/XML presenti in locale.\n Se piuttosto preferisci che SickRage ti richieda di personalizzare ogni Serie TV, allora seleziona la casella qui sotto."],"Prompt me to set settings for each show":[null,"Avvisami prima di modificare le impostazioni per ogni Serie TV"],"Displaying folders within these directories which aren't already added to SickRage":[null,"Visualizzazione cartelle all'interno di queste directory che non sono già state aggiunte a SickRage"],"Submit":[null,"Invia"],"Find a show on theTVDB":[null,"Cerca una Serie TV utilizzando \"theTVDB\""],"Show retrieved from existing metadata":[null,"Serie TV individuate dai metadati esistenti"],"All Indexers":[null,"Tutti gli indicizzatori"],"Search":[null,"Cerca"],"This will only affect the language of the retrieved metadata file contents and episode filenames.":[null,"Questo avrà effetto solo sulla lingua dei contenuti del file di metadati recuperato e sulla lingua dei nomi dei file dell'episodio."],"This <b>DOES NOT</b> allow SickRage to download non-english TV episodes!":[null,"Questo <b>NON</b> permette a SickRage di scaricare episodi TV non in lingua inglese!"],"Pick the parent folder":[null,"Seleziona la cartella principale"],"Pre-chosen Destination Folder":[null,"Cartella di destinazione prescelta"],"Customize options":[null,"Personalizza le Impostazioni"],"Add Show":[null,"Aggiungi Serie TV"],"Skip Show":[null,"Salta"],"Sort By":[null,"Ordina per"],"Name":[null,"Nome"],"Original":[null,"Originale"],"Votes":[null,"Voti"],"Rating":[null,"Valutazione"],"Rating > Votes":[null,"Valutazione > Voti"],"Sort Order":[null,"Ordina in base a"],"Asc":[null,"Asc"],"Desc":[null,"Disc"],"Fetching of IMDB Data failed. Are you online?":[null,"Il recupero dei dati da IMDB non è riuscito. Sei online?"],"Exception":[null,"Eccezione"],"Select Trakt List":[null,"Seleziona elenco Trakt"],"Most Anticipated":[null,"Più attese"],"Trending":[null,"Di tendenza"],"Popular":[null,"Popolari"],"Most Watched":[null,"Più viste"],"Most Played":[null,"Più viste"],"Most Collected":[null,"Più collezionate"],"Recommended":[null,"Raccomandate"],"Toggle navigation":[null,"Attiva/disattiva navigazione"],"Profile":[null,"Profilo"],"JSONP":[null,"JSONP"],"Back to SickRage":[null,"Torna a SickRage"],"Parameters":[null,"Parametri"],"Required":[null,"Richiesto"],"Description":[null,"Descrizione"],"Type":[null,"Tipo"],"Default value":[null,"Valore predefinito"],"Allowed values":[null,"Valori consentiti"],"Playground":[null,"Playground"],"Clear":[null,"Azzera"],"Yes":[null,"Sì"],"No":[null,"No"],"season":[null,"stagione"],"episode":[null,"episodio"],"Python Version":[null,"Versione di Python"],"SSL Version":[null,"Versione SSL"],"OS":[null,"Sistema Operativo"],"Locale":[null,"Lingua"],"User":[null,"Utente"],"Program Folder":[null,"Cartella del Programma"],"Config File":[null,"File di configurazione"],"Database File":[null,"File di database"],"Cache Folder":[null,"Cartella della cache"],"Log Folder":[null,"Cartella di registro"],"Arguments":[null,"Argomenti"],"Web Root":[null,"Radice del Web"],"Website":[null,"Sito Web"],"Wiki":[null,"Wiki"],"Source":[null,"Origine"],"IRC Chat":[null,"Chat IRC"],"AnimeDB Settings":[null,"Impostazioni di AnimeDB"],"Look & Feel":[null,"Look & Feel"],"AniDB is non-profit database of anime information that is freely open to the public":[null,"AniDB è un database di informazioni di anime senza scopo di lucro che sono liberamente aperti al pubblico"],"Enable":[null,"Attiva"],"should SickRage use data from AniDB?":[null,"SickRage deve utilizzare dati da AniDB?"],"AniDB Username":[null,"Nome utente AniDB"],"username of your AniDB account":[null,"nome utente del tuo account AniDB"],"AniDB Password":[null,"Password di AniDB"],"password of your AniDB account":[null,"password del tuo account AniDB"],"AniDB MyList":[null,"MyList di AniDB"],"do you want to add the PostProcessed episodes to the MyList?":[null,"vuoi aggiungere gli Episodi post-processati alla \"MyList\"?"],"Look and Feel":[null,"Aspetto"],"How should the anime functions show and behave.":[null,"Come le funzioni di anime dovrebbero mostrarsi e comportarsi."],"Split show lists":[null,"Dividi le liste degli Show"],"separate anime and normal shows in groups":[null,"tieni separati gli Anime dalle Serie TV in appositi gruppi"],"Split in tabs":[null,"Dividi in schede"],"use tabs for when splitting show lists":[null,"usa le schede quando dividi la lista delle serie TV"],"Restore":[null,"Ripristina"],"Backup your main database file and config.":[null,"Backup del tuo file di database principale e della configurazione."],"Select the folder you wish to save your backup file to":[null,"Seleziona la cartella dove vorresti salvare il tuo file di backup"],"Restore your main database file and config.":[null,"Ripristino del tuo file di database principale e della configurazione."],"Select the backup file you wish to restore":[null,"Seleziona il file di backup che vorresti ripristinare"],"Misc":[null,"Varie"],"Interface":[null,"Interfaccia"],"Advanced Settings":[null,"Impostazioni Avanzate"],"Startup options. Indexer options. Log and show file locations.":[null,"Opzioni di Avvio. Opzioni di indicizzazione. Posizione dei file di Log e dei file degli show."],"Some options may require a manual restart to take effect.":[null,"Alcune delle opzioni potrebbero richiedere un riavvio manuale per diventare effettive."],"Default Indexer Language":[null,"Linguaggio di default dell'Indicizzatore"],"for adding shows and metadata providers":[null,"per l'aggiunta delle Serie TV e dei metadati dai servizi di indicizzazione"],"Launch browser":[null,"Avvia il browser"],"open the SickRage home page on startup":[null,"apri la home page di SickRage all'avvio"],"Initial page":[null,"Pagina iniziale"],"Shows":[null,"Serie TV"],"when launching SickRage interface":[null,"quando si avvia l'interfaccia di SickRage"],"Choose hour to update shows":[null,"Seleziona l'Ora per l'aggiornamento delle Serie TV"],"with information such as next air dates, show ended, etc. Use 15 for 3pm, 4 for 4am etc.":[null,"con informazioni rigurdanti la prossima data di messa in onda, le Serie TV concluse, etc. Utilizza il formato standard 24h (3 del mattino, 15 di sera, etc.)."],"note":[null,"nota"],"minutes are randomized each time SickRage is started":[null,"i minuti sono randomizzati ogni volta che SickRage viene avviato"],"Send to trash for actions":[null,"Invia al cestino per azioni"],"when using show \"Remove\" and delete files":[null,"quando premi su \"Elimina\" in una Serie TV, cancella anche i relativi file"],"on scheduled deletes of the oldest log files":[null,"su eliminazioni pianificate dei file di registro più vecchi"],"selected actions use trash (recycle bin) instead of the default permanent delete":[null,"le azioni selezionate utilizzano il Cestino anziché l'eliminazione permanente (predefinita)"],"Log file folder location":[null,"Percorso cartella dei file di Log"],"Number of Log files saved":[null,"Numero di Log salvati"],"number of log files saved when rotating logs (default: 5) (REQUIRES RESTART)":[null,"numero di file di Log salvati durante la rotazione dei registri (default: 5) (RICHIEDE RIAVVIO)"],"Size of Log files saved":[null,"Dimensione dei files di log salvati"],"maximum size in MB of the log file (default: 1MB) (REQUIRES RESTART)":[null,"dimensione massima in MB dei file di log (default: 1MB) (RICHIEDE RIAVVIO)"],"Use initial indexer set to":[null,"Usa l'indicizzatore iniziale impostato a"],"as the default selection when adding new shows":[null,"come impostazione predefinita quando si aggiungono nuove Serie TV"],"Timeout show indexer at":[null,"Ferma l'indicizzazione delle Serie TV trascorsi"],"seconds of inactivity when finding new shows (default:20)":[null,"secondi di inattività durante la ricerca di nuove Serie TV (predefinito: 20)"],"Show root directories":[null,"Cartelle Principali per le Serie TV"],"where the files of shows are located":[null,"dove si trovano i file delle Serie TV"],"Save Changes":[null,"Salva le modifiche"],"Options for software updates.":[null,"Opzioni per gli aggiornamenti software."],"Check software updates":[null,"Controlla aggiornamenti software"],"and display notifications when updates are available. Checks are run on startup and at the frequency set below*":[null,"e visualizza notifiche quando sono disponibili aggiornamenti. Le verifiche sono eseguite all'avvio e con la frequenza sotto impostata*"],"Automatically update":[null,"Aggiorna automaticamente"],"fetch and install software updates. Updates are run on startup and in the background at the frequency set below*":[null,"scarica e installa gli aggiornamenti. Gli aggiornamenti sono eseguiti all'avvio e in background alla frequenza sotto impostata*"],"Check the server every*":[null,"Controlla il server ogni *"],"hours for software updates (default:1)":[null,"ore per gli aggiornamenti software (predefinito: 1)"],"Notify on software update":[null,"Notifica una volta aggiornato"],"send a message to all enabled notifiers when SickRage has been updated":[null,"invia un messaggio a tutti i notificatori abilitati quando SickRage viene aggiornato"],"User Interface":[null,"Interfaccia utente"],"Options for visual appearance.":[null,"Opzioni per l'aspetto visivo."],"Interface Language":[null,"Lingua dell'Interfaccia"],"System Language":[null,"Lingua di sistema"],"for appearance to take effect, save then refresh your browser":[null,"perchè le modifiche abbiano effetto, salva e poi aggiorna la pagina"],"Display theme":[null,"Tema di visualizzazione"],"Dark":[null,"Scuro"],"Light":[null,"Chiaro"],"Use a background image":[null,"Usa immagine di sfondo"],"use a custom image as background for SickRage":[null,"usa un'immagine personalizzata come sfondo per SickRage"],"Background Path":[null,"Percorso sfondo"],"Path to the background image":[null,"Percorso dell'immagine di sfondo"],"Show fanart in the background":[null,"Visualizza fanart sullo sfondo"],"on the show summary page":[null,"nella pagina di riepilogo della Serie TV"],"Fanart transparency":[null,"Trasparenza fanart"],"transparency of the fanart in the background":[null,"trasparenza della fanart sullo sfondo"],"Use a custom stylesheet file":[null,""],"use a custom .css file to style SickRage (for advanced users)":[null,""],"Stylesheet File Path":[null,""],"Path to the stylesheet (.css) file":[null,""],"Show all seasons":[null,"Mostra tutte le stagioni"],"Sort with \"The\", \"A\", \"An\"":[null,"Ordina con \"The\", \"A\", \"An\""],"include articles (\"The\", \"A\", \"An\") when sorting show lists":[null,"considera gli articoli per l'ordinamento delle serie TV"],"Missed episodes range":[null,"Intervallo di puntate mancate"],"set the range in days of the missed episodes in the Schedule page":[null,"imposta l'intervallo in giorni degli episodi mancati nella pagina di Pianificazione"],"Display fuzzy dates":[null,"Visualizza date indistinte"],"move absolute dates into tooltips and display e.g. \"Last Thu\", \"On Tue\"":[null,"visualizza le date assolute in menu a comparsa e mostra per esempio \"Ultimo giovedì\", \"Questo martedì\""],"Trim zero padding":[null,"Tagliare riempimento con zeri"],"remove the leading number \"0\" shown on hour of day, and date of month":[null,"rimuovi il numero \"0\" iniziale nelle ore di un giorno e nella data di un mese"],"Date style":[null,"Stile della data"],"Use System Default":[null,"Usa impostazione Predefinita di Sistema"],"Time style":[null,"Stile dell'ora"],"seconds are only shown on the History page":[null,"i secondi sono mostrati solamente nella pagina Cronologia"],"Timezone":[null,"Fuso orario"],"Local":[null,"Locale"],"Network":[null,"Rete"],"display dates and times in either your timezone or the shows network timezone":[null,"mostra date e ore nel tuo fuso orario o nel fuso orario della rete televisiva"],"use local timezone to start searching for episodes minutes after show ends (depends on your dailysearch frequency)":[null,"usa il fuso orario locale per iniziare la ricerca degli episodi qualche minuto dopo il termine della Serie TV (dipende dalla frequenza giornaliera di ricerca)"],"Download url":[null,"URL di download"],"URL where the shows can be downloaded.":[null,"Indirizzo dal quale possono essere scaricate le Serie TV."],"Web Interface":[null,"Interfaccia Web"],"it is recommended that you enable a username and password to secure SickRage from being tampered with remotely.":[null,"è raccomandato inserire username ed password per proteggere SickRage da attacchi esterni."],"these options require a manual restart to take effect.":[null,"queste opzioni richiedono un riavvio manuale per diventare effettive."],"API key":[null,"Chiave API"],"used to give 3rd party programs limited access to SickRage":[null,"usato per dare ai programmi di terze parti accesso limitato a SickRage"],"you can try all the features of the API":[null,"puoi provare tutte le funzioni dell'API"],"here":[null,"qui"],"HTTP logs":[null,"Registri di HTTP"],"enable logs from the internal Tornado web server":[null,"abilitare il log del web server interno Tornado"],"HTTP username":[null,"Nome utente HTTP"],"set blank for no login":[null,"lasciare vuoto per non richiedere il login"],"HTTP password":[null,"Password HTTP"],"blank = no authentication":[null,"vuoto = senza autenticazione"],"HTTP port":[null,"Porta HTTP"],"web port to browse and access SickRage (default:8081)":[null,"la porta web per navigare ed accedere a SickRage (predefinito: 8081)"],"Notify on login":[null,"Notifica il login"],"enable to be notified when a new login happens in webserver":[null,"attivare per essere avvisati ad ogni nuovo accesso al webserver"],"Listen on IPv6":[null,"Ascolto su IPv6"],"attempt binding to any available IPv6 address":[null,"tenta l'associazione a qualsiasi indirizzo IPv6 disponibile"],"Enable HTTPS":[null,"Abilita HTTPS"],"enable access to the web interface using a HTTPS address":[null,"abilitare l'accesso all'interfaccia web utilizzando un indirizzo HTTPS"],"HTTPS certificate":[null,"Certificato HTTPS"],"file name or path to HTTPS certificate":[null,"nome file o percorso del certificato HTTPS"],"HTTPS key":[null,"Chiave HTTPS"],"file name or path to HTTPS key":[null,"nome file o percorso della chiave HTTPS"],"Reverse proxy headers":[null,"Intestazioni di proxy inverso"],"accept the following reverse proxy headers (advanced)...":[null,"accetta le seguenti intestazioni di proxy inverso (avanzate)..."],"(X-Forwarded-For, X-Forwarded-Host, and X-Forwarded-Proto)":[null,"(X-Forwarded-For, X-Forwarded-Host, and X-Forwarded-Proto)"],"CPU throttling":[null,"Limitazione della CPU"],"Normal (default). High is lower and Low is higher CPU use":[null,"\"Normale\" (predefinito). \"Alto\" è un più basso e \"Basso\" è un più elevato utilizzo della CPU"],"Anonymous redirect":[null,"Redirect Anonimo"],"backlink protection via anonymizer service, must end in \"?\"":[null,"protezione backlink tramite un servizio di anonimizzazione, deve terminare con \"?\""],"Enable debug":[null,"Attiva il debug"],"enable debug logs":[null,"abilita i Log di debug"],"Verify SSL Certs":[null,"Verificare i certificati SSL"],"verify SSL Certificates (Disable this for broken SSL installs (Like QNAP))":[null,"verifica i certificati SSL (Disattiva questo per installazioni SSL non funzionanti (come QNAP))"],"No Restart":[null,"Nessun riavvio"],"only shutdown when restarting SR":[null,"spegni solo quando riavvii SR"],"only select this when you have external software restarting SR automatically when it stops (like FireDaemon)":[null,"seleziona solo quando hai un programma esterno che riavvia SR automaticamente quando viene interrotto (ad esempio FireDaemon)"],"Encrypt passwords":[null,"Crittografa le password"],"in the <code>config.ini</code> file":[null,"nel file <code>config.ini</code>"],"warning":[null,"avviso"],"passwords must only contain":[null,"le password devono contenere solo"],"ASCII characters":[null,"Caratteri ASCII"],"Unprotected calendar":[null,"Calendario non protetto"],"allow subscribing to the calendar without user and password":[null,"consenti l'iscrizione al calendario senza utente e password"],"some services like Google Calendar only work this way":[null,"alcuni servizi come Google Calendar funzionano solo in questo modo"],"Google Calendar Icons":[null,"Icone del calendario di Google"],"show an icon next to exported calendar events in Google Calendar":[null,"mostra un'icona accanto agli eventi esportati in Google Calendar"],"Proxy host":[null,"Host proxy"],"blank to disable or proxy to use when connecting to providers":[null,"lascia vuoto per disabilitare o inserisci il proxy da utilizzare durante la connessione al provider"],"also use global proxy setting for indexers (tvdb, xem, anidb, etc.)":[null,"utilizza i settaggi proxy globali anche per gli indicizzatori (tvdb, xem, anidb, etc.)"],"Skip Remove Detection":[null,"Salta rilevamento rimozione"],"skip detection of removed files":[null,"ignorare il rilevamento dei file rimossi"],"if disabled the episode will be set to the default deleted status":[null,"se disabilitato l'episodio verrà impostato con lo stato predefinito di eliminato"],"Default deleted episode status":[null,"Stato predefinito degli episodi eliminati"],"define the status to be set for media file that has been deleted.":[null,"definisci che stato deve essere impostato per i file che sono stati eliminati."],"Archived option will keep previous downloaded quality":[null,"L'opzione \"Archiviato\" manterrà la precedente qualità di download"],"example: Downloaded (1080p WEB-DL) ==> Archived (1080p WEB-DL)":[null,"esempio: Scaricato (1080p WEB-DL) ==> Archiviato (1080p WEB-DL)"],"Options for github related features.":[null,"Opzioni che si riferiscono a funzionalità di github."],"Branch version":[null,"Versione"],"error: No branches found.":[null,"errore: nessun branch trovato."],"select branch to use (restart required)":[null,"seleziona quale versione utilizzare (richiede riavvio)"],"Authorization Type":[null,"Tipo di Autorizzazione"],"Username and password":[null,"Utente e password"],"Personal access token":[null,"Token di accesso personale"],"You must use a personal access token if you're using \"two-factor authentication\" on GitHub.":[null,"Devi utilizzare un token di accesso personale se stai utilizzando l'autenticazione a due fattori su GitHub."],"GitHub username":[null,"Nome utente di GitHub"],"*** (REQUIRED FOR SUBMITTING ISSUES) ***":[null,"* * *(RICHIESTO PER INVIARE SEGNALAZIONI DI ERRORI) * * *"],"GitHub password":[null,"Password di GitHub"],"GitHub personal access token":[null,"Token di accesso personale di GitHub"],"Generate Token":[null,"Genera Token"],"Manage Tokens":[null,"Gestisci Tokens"],"GitHub remote for branch":[null,"GitHub remoto per il branch"],"access repo configured remotes (save then refresh browser)":[null,"accesso ai repository remoti configurati (salva e aggiorna il browser)"],"default":[null,"impostazione Predefinita"],"origin":[null,"origine"],"Git executable path":[null,"Percorso dell'eseguibile git"],"only needed if OS is unable to locate git from env":[null,"necessario se il sistema operativo non riesce a trovare git nelle variabili d'ambiente"],"Git reset":[null,"Git reset"],"removes untracked files and performs a hard reset on git branch automatically to help resolve update issues":[null,"rimuove i file non tracciati ed esegue un hard reset automatico sul ramo git per aiutare a risolvere i problemi di aggiornamento"],"Home Theater / NAS":[null,"Home Theater / NAS"],"Devices":[null,"Dispositivi"],"Social":[null,"Social"],"A free and open source cross-platform media center and home entertainment system software with a 10-foot user interface designed for the living-room TV.":[null,"Un media center libero, open source, multipiattaforma e un sistema d'intrattenimento casalingo con un'interfaccia di utente progettata per la TV del soggiorno."],"send KODI commands?":[null,"invia comandi a KODI"],"Always on":[null,"Sempre acceso"],"log errors when unreachable?":[null,"registrare gli errori quando irraggiungibile?"],"Notify on snatch":[null,"Notifica quando trovato"],"send a notification when a download starts?":[null,"invia una notifica quando viene avviato un download"],"Notify on download":[null,"Notificare il download"],"send a notification when a download finishes?":[null,"invia una notifica al termine di un download"],"Notify on subtitle download":[null,"Notificare il sottotitolo di download"],"send a notification when subtitles are downloaded?":[null,"invia una notifica quando vengono scaricati i sottotitoli"],"Update library":[null,"Aggiorna Libreria"],"update KODI library when a download finishes?":[null,"aggiorno biblioteca KODI al termine di un download?"],"Full library update":[null,"Aggiornamento completo della libreria"],"perform a full library update if update per-show fails?":[null,"eseguire un aggiornamento completo della libreria in caso di aggiornamento singolo fallito?"],"Only update first host":[null,"Aggiorna solo il primo host"],"only send library updates to the first active host?":[null,"inviare gli aggiornamenti biblioteca solo al primo host attivo?"],"KODI IP:Port":[null,"IP: porta KODI"],"host running KODI (eg. 192.168.1.100:8080)":[null,"host che esegue KODI (es. 192.168.1.100:8080)"],"(multiple host strings must be separated by commas)":[null,"(più stringhe di host devono essere separate da virgole)"],"Username":[null,"Nome Utente"],"username for your KODI server (blank for none)":[null,"nome utente per il server KODI (vuoto per nessuno)"],"Password":[null,"Password"],"password for your KODI server (blank for none)":[null,"password per il server KODI (vuoto per nessuno)"],"Click below to test.":[null,"Premi qui sotto per provare."],"Experience your media on a visually stunning, easy to use interface on your Mac connected to your TV. Your media library has never looked this good!":[null,"Prova i tuoi file multimediali su una bellissima e semplicissima interfaccia dal vostro Mac/PC collegato al televisore. La tua libreria multimediale non è mai stata così fantatica!"],"For sending notifications to Plex Home Theater (PHT) clients, use the KODI notifier with port <b>3005</b>.":[null,"Per l'invio di notifiche ai client Plex Home Theater (PHT), usa il notificatore di KODI con la porta <b>3005</b>."],"send Plex Media Server library updates?":[null,"richiedi l'aggiornamento delle librerie di Plex Media Server"],"Plex Media Server Auth Token":[null,"Plex Media Server Token di autenticazione"],"auth token used by Plex":[null,"token di autorizzazione usato da Plex"],"Update Library":[null,"Aggiorna Libreria"],"update Plex Media Server library when a download finishes":[null,"aggiorna le librerie di Plex Media Server al termine dei downloads"],"Plex Media Server IP:Port":[null,"Plex Medi Server IP:Port"],"one or more hosts running Plex Media Server<br/>(eg. 192.168.1.1:32400, 192.168.1.2:32400)":[null,"uno o più host che eseguono Plex Media Server<br/>(ad es. 192.168.1.1:32400, 192.168.1.2:32400)"],"HTTPS":[null,"HTTPS"],"use https for plex media server requests?":[null,"usa https per le richieste a Plex Media Server"],"Click below to test Plex Media Server(s)":[null,"Premi qui sotto per provare Plex Media Server(s)"],"Test Plex Media Server":[null,"Prova Plex Media Server"],"Plex Home Theater":[null,"Plex Home Theater"],"send Plex Home Theater notifications?":[null,"invia le notifiche a Plex Home theater"],"Plex Home Theater IP:Port":[null,"IP:Porta di Plex Home Theater"],"one or more hosts running Plex Home Theater<br>(eg. 192.168.1.100:3000, 192.168.1.101:3000)":[null,"uno o più host che eseguono Plex Home Theater <br>(eg. 192.168.1.100:3000, 192.168.1.101:3000)"],"Click below to test Plex Home Theater(s)":[null,"Premi qui sotto per provare Plex Home Theater(s)"],"Test Plex Home Theater":[null,"Prova Plex Home Theater"],"some Plex Home Theaters <b class=\"boldest\">do not</b> support notifications e.g. Plexapp for Samsung TVs":[null,"alcune applicazioni Plex Home Theater <b class=\"boldest\">non</b> supportano le notifiche. Es. Plexapp per TV Samsung"],"Emby":[null,"Emby"],"A home media server built using other popular open source technologies.":[null,"Un media server per la casa costruito usando altre tecnologie open source popolari."],"send update commands to Emby?":[null,"invia i comandi di aggiornamento a Emby"],"Emby IP:Port":[null,"IP:Porta di Emby"],"host running Emby (eg. 192.168.1.100:8096)":[null,"host che esegue Emby (es. 192.168.1.100:8096)"],"Emby API Key":[null,"Emby API Key"],"Networked Media Jukebox":[null,"Jukebox multimediale di rete"],"The Networked Media Jukebox, or NMJ, is the official media jukebox interface made available for the Popcorn Hour 200-series.":[null,"Il Networked Media Jukebox, o NMJ, è l'interfaccia ufficiale di jukebox resa disponibile per Popcorn Hour serie 300/400."],"send update commands to NMJ?":[null,"invia i comandi di aggiornamento a NMJ"],"Popcorn IP address":[null,"Indirizzo IP di popcorn"],"IP address of Popcorn 200-series (eg. 192.168.1.100)":[null,"Indirizzo IP di Popcorn serie 200 (es. 192.168.1.100)"],"Get settings":[null,"Ottieni le impostazioni"],"Get Settings":[null,"Ottieni impostazioni"],"the Popcorn Hour device must be powered on and NMJ running.":[null,"il dispositivo Popcorn Hour deve essere acceso e NMJ in esecuzione."],"NMJ database":[null,"Database di NMJ"],"automatically filled via the 'Get Settings' button.":[null,"compilato automaticamente tramite il pulsante 'Ottieni impostazioni'."],"NMJ mount url":[null,"Indirizzo di montaggio NMJ"],"Networked Media Jukebox v2":[null,"Networked Media Jukebox v2"],"The Networked Media Jukebox, or NMJv2, is the official media jukebox interface made available for the Popcorn Hour 300 & 400-series.":[null,"Il Networked Media Jukebox, o NMJv2, è l'interfaccia ufficiale di jukebox resa disponibile per Popcorn Hour serie 300/400."],"send update commands to NMJv2?":[null,"invia i comandi di aggiornamento a NMJv2"],"IP address of Popcorn 300/400-series (eg. 192.168.1.100)":[null,"Indirizzo IP di Popcorn serie 300/400 (es. 192.168.1.100)"],"Database location":[null,"Percorso del database"],"Database instance":[null,"Istanza di database"],"adjust this value if the wrong database is selected.":[null,"modificare questo valore se è selezionato il database errato."],"Find database":[null,"Trova database"],"Find Database":[null,"Trova database"],"the Popcorn Hour device must be powered on.":[null,"il dispositivo di Popcorn Hour deve essere acceso."],"NMJv2 database":[null,"NMJv2 database"],"automatically filled via the 'Find Database' buttons.":[null,"compilato automaticamente tramite il pulsante 'Trova Database'."],"Synology":[null,"Synology"],"The Synology DiskStation NAS.":[null,"NAS Synology."],"Synology Indexer is the daemon running on the Synology NAS to build its media database.":[null,"L'Indicizzatore di Synology è il servizio in esecuzione sul NAS Synology che si occupa di creare il database di file multimediali."],"send Synology notifications?":[null,"invia notifiche a Synology"],"requires SickRage to be running on your Synology NAS.":[null,"richiede che SickRage sia in esecuzione su NAS Synology."],"Synology Indexer":[null,"Indicizzatore di Synology"],"Synology Notifier is the notification system of Synology DSM":[null,"Il Notificatore di Synology è il sistema di notifica di Synology DSM"],"send notifications to the Synology Notifier?":[null,"invia notifiche al notificatore di Synology"],"pyTivo":[null,"pyTivo"],"pyTivo is both an HMO and GoBack server. This notifier will load the completed downloads to your Tivo.":[null,"pyTivo è un HMO e GoBack server. Questo notificatore caricherà i download completati sul vostro Tivo."],"send notifications to pyTivo?":[null,"invia notifiche a pyTivo"],"requires the downloaded files to be accessible by pyTivo.":[null,"richiede che i file scaricati siano accessibili da pyTivo."],"pyTivo IP:Port":[null,"iP: porta di PyTivo"],"host running pyTivo (eg. 192.168.1.1:9032)":[null,"host che esegue pyTivo (ad es. 192.168.1.1:9032)"],"pyTivo share name":[null,"nome della condivisione PyTivo"],"value used in pyTivo Web Configuration to name the share.":[null,"valore usato nell'interfaccia di configurazione web di pyTivo per dare un nome alla condivisione."],"Tivo name":[null,"Nome Tivo"],"(Messages & Settings > Account & System Information > System Information > DVR name)":[null,"(Messaggi & Impostazioni > Account & informazioni di sistema > System Information > nome DVR)"],"Growl":[null,"Growl"],"A cross-platform unobtrusive global notification system.":[null,"Un sistema di notifica globale discreto multipiattaforma."],"send Growl notifications?":[null,"inviare le notifiche a Growl?"],"Growl IP:Port":[null,"IP: porta Growl"],"host running Growl (eg. 192.168.1.100:23053)":[null,"host che esegue Growl (ad es. 192.168.1.100:23053)"],"may leave blank if SickRage is on the same host.":[null,"lascia vuoto se SickRage è sullo stesso host."],"otherwise Growl <b>requires</b> a password to be used.":[null,"altrimenti Growl <b>richiede</b> una password per essere utilizzato."],"Click below to register and test Growl, this is required for Growl notifications to work.":[null,"Premi qui sotto per registrare e testare Growl, questa operazione è necessaria per le notifiche di Growl."],"Register Growl":[null,"Registra Growl"],"Prowl":[null,"Prowl"],"A Growl client for iOS.":[null,"Un client Growl per iOS."],"send Prowl notifications?":[null,"inviare notifiche a Prowl?"],"Prowl Message Title":[null,"Titolo dei messaggi di Prowl"],"Global Prowl API key(s)":[null,"Chiavi API globali di Prowl"],"Prowl API(s) listed here, separated by commas if applicable, will<br> receive notifications for <b>all</b> shows. Your Prowl API key is available at:":[null,"Gli account collegati alle API di Prowl elencate qui, separate da virgole se necessario, <br> <b>riceveranno le notifiche per tutte le Serie TV</b>. L'identificativo API per il tuo acconut Prowl è disponibile presso:"],"(this field may be blank except when testing.)":[null,"(Questo campo può essere vuoto ad eccezione di esecuzione test)"],"Show notification list":[null,"Notifiche per le Serie Tv"],"-- Select a Show --":[null,"-- Seleziona una Serie TV --"],"Configure per-show notifications here by entering Prowl API key(s), separated by commas, '\n 'after selecting a show in the drop-down box. Be sure to activate the 'Save for this show' '\n 'button below after each entry.":[null,"Configura qui le notifiche per le Serie TV inserendo la(e) chiave(i) API di Prowl, separate da virgole, '\n 'dopo aver selezionato una Serie TV dal menu a discesa. Assicurati di selezionare la voce 'Salva per questa Serie TV' '\n 'con il tasto in basso per ogni cambiamento."],"Save for this show":[null,"Salva per questa Serie TV"],"Prowl priority":[null,"Priorità di Prowl"],"Very Low":[null,"Molto Bassa"],"Moderate":[null,"Moderata"],"Normal":[null,"Normale"],"High":[null,"Alta"],"Emergency":[null,"Emergenza"],"priority of Prowl messages from SickRage.":[null,"priorità dei messaggi di Prowl da SickRage."],"Libnotify":[null,"Libnotify"],"The standard desktop notification API for Linux/*nix systems. This notifier will only function if the pynotify module is installed (Ubuntu/Debian package <a href=\"apt:python-notify\">python-notify</a>).":[null,"La API standard di notifica desktop per sistemi Linux / * nix. Questo notificatore funzionerà solo se il modulo pynotify è installato (pacchetto Ubuntu/Debian <a href=\"apt:python-notify\"> python-notify</a>)."],"send Libnotify notifications?":[null,"inviare notifiche a Libnotify?"],"Pushover":[null,"Pushover"],"Pushover makes it easy to send real-time notifications to your Android and iOS devices.":[null,"Pushover rende semplice inviare notifiche in tempo reale al tuo dispositivo Android o iOS."],"send Pushover notifications?":[null,"inviare notifiche a Pushover?"],"Pushover key":[null,"Pushover Key"],"user key of your Pushover account":[null,"chiave utente del tuo account Pushover"],"Pushover API key":[null,"API key di Pushover"],"click here":[null,""]," to create a Pushover API key":[null,""],"Pushover devices":[null,"Dispositivi Pushover"],"comma separated list of pushover devices you want to send notifications to":[null,"elenco separato da virgola dei dispositivi Pushover a cui vuoi inviare le notifiche"],"Pushover notification sound":[null,"Suono notifiche Pushover"],"Bike":[null,"Bicicletta"],"Bugle":[null,"Tromba"],"Cash Register":[null,"Registratore di cassa"],"Classical":[null,"Classica"],"Cosmic":[null,"Cosmico"],"Falling":[null,"Caduta"],"Gamelan":[null,"Gamelan"],"Incoming":[null,"In arrivo"],"Intermission":[null,"Intromissione"],"Magic":[null,"Magia"],"Mechanical":[null,"Meccanico"],"Piano Bar":[null,"Piano Bar"],"Siren":[null,"Sirena"],"Space Alarm":[null,"Allarme spaziale"],"Tug Boat":[null,"Rimorchiatore"],"Alien Alarm (long)":[null,"Allarme Alieno (lungo)"],"Climb (long)":[null,"Scalata (lungo)"],"Persistent (long)":[null,"Persistente (lungo)"],"Pushover Echo (long)":[null,"Eco Pushover (lungo)"],"Up Down (long)":[null,"Su e giù (lungo)"],"None (silent)":[null,"Nessuno (silente)"],"Device specific":[null,"Specifico del dispositivo"],"choose notification sound to use":[null,"scegli il suono di notifica da usare"],"Pushover priority":[null,"priorità Pushover"],"Choose priority to use":[null,"Scegliere la priorità da utilizzare"],"Boxcar 2":[null,"Boxcar 2"],"Read your messages where and when you want them!":[null,"Leggi i messaggi dove e quando vuoi!"],"send Boxcar notifications?":[null,"inviare notifiche Boxcar?"],"Boxcar2 access token":[null,"Token di accesso Boxcar2"],"access token for your Boxcar account.":[null,"token di accesso per il tuo account Boxcar."],"NMA":[null,"NMA"],"Notify My Android":[null,"Notify My Android"],"Notify My Android is a Prowl-like Android App and API that offers an easy way to send notifications from your application directly to your Android device.":[null,"Notify My Android è un'applicazione simile a Prowl per Android che offre un modo semplice per inviare notifiche da un'applicazione al tuo dispositivo Android."],"send NMA notifications?":[null,"inviare notifiche di NMA?"],"NMA API key":[null,"Chiave API di NMA"],"(multiple keys must be separated by commas, up to a maximum of 5)":[null,"(chiavi multiple devono essere separate da virgole, fino ad un massimo di 5)"],"NMA priority":[null,"Priorità di NMA"],"priority of NMA messages from SickRage.":[null,"priorità dei messaggi NMA da SickRage."],"Pushalot":[null,"Pushalot"],"Pushalot is a platform for receiving custom push notifications to connected devices running Windows Phone or Windows 8.":[null,"Pushalot è una piattaforma per ricevere notifiche personalizzate sui dispositivi connessi basati su Windows Phone o Windows 8."],"send Pushalot notifications ?":[null,"inviare notifiche di Pushalot ?"],"Pushalot authorization token":[null,"Token di autorizzazione di Pushalot"],"authorization token of your Pushalot account.":[null,"token di autorizzazione del tuo account Pushalot."],"Pushbullet":[null,"Pushbullet"],"Pushbullet is a platform for receiving custom push notifications to connected devices running Android/iOS and desktop browsers such as Chrome, Firefox or Opera.":[null,"Pushbullet è una piattaforma per la ricezione delle notifiche push personalizzate su dispositivi connessi Android/iOS e desktop browser come Chrome, Firefox o Opera."],"send Pushbullet notifications?":[null,"inviare notifiche di Pushbullet?"],"Pushbullet API key":[null,"Chiave API di Pushbullet"],"API key of your Pushbullet account":[null,"Chiave API del tuo account Pushbullet"],"Pushbullet devices":[null,"Dispositivi di Pushbullet"],"Update device list":[null,"Aggiorna elenco dispositivi"],"Pushbullet channels":[null,"Canali Pushbullet"],"Free Mobile":[null,"Free Mobile"],"Free Mobile is a famous French cellular network provider.<br> It provides to their customer a free SMS API.":[null,"Free Mobile è un famoso operatore cellulare Francese. <br> fornisce ai suoi utenti una API gratuita per inviare SMS."],"send SMS notifications?":[null,"invia notifiche SMS?"],"send a SMS when a download starts?":[null,"invia un SMS quando il download inizia?"],"send a SMS when a download finishes?":[null,"invia un SMS al termine di un download?"],"send a SMS when subtitles are downloaded?":[null,"invia un SMS quando vengono scaricati i sottotitoli?"],"Free Mobile customer ID":[null,"ID cliente di Free Mobile"],"it's your Free Mobile customer ID (8 digits)":[null,"è il tuo ID cliente di Free Mobile (8 caratteri)"],"Free Mobile API key":[null,"chiave API Free Mobile"],"find your API key in your customer portal.":[null,"trovi la chiave API nel portale clienti."],"Click below to test your settings.":[null,"Premi qui sotto per provare le impostazioni."],"Telegram":[null,"Telegram"],"Telegram is a cloud-based instant messaging service.":[null,"Telegram è un servizio di messaggistica istantanea basato su cloud."],"send Telegram notifications?":[null,"inviare notifiche di Telegram?"],"send a message when a download starts?":[null,"invia un messaggio quando si avvia un download?"],"send a message when a download finishes?":[null,"invia un messaggio al termine di un download?"],"send a message when subtitles are downloaded?":[null,"invia un messaggio quando vengono scaricati i sottotitoli?"],"User/group ID":[null,"ID utente/gruppo"],"contact @myidbot on Telegram to get an ID":[null,"contatta @myidbot su Telegram per ottenere un ID"],"Bot API token":[null,"Token API del Bot"],"contact @BotFather on Telegram to set up one":[null,"contatta @BotFather su Telegram per impostarne uno"],"Join":[null,"Join"],"Join all of your devices together!":[null,"Unisci tutti i tuoi dispositivi insieme!"],"send Join notifications?":[null,"inviare le notifiche di Join?"],"Device ID":[null,"ID dispositivo"],"per device specific id":[null,"id specifico per dispositivo"]," to create a Join API key":[null,""],"Twilio":[null,"Twilio"],"Twilio is a webservice API that allows you to communicate directly with a mobile number. This notifier will send a text directly to your mobile device.":[null,"Twilio sono delle API web che permettono di comunicare direttamente con telefono cellulare. Questo notificatore spedirà un sms direttamente al tuo cellulare."],"should SickRage text your mobile device?":[null,"Sickrage deve inviare sms al tuo telefono cellulare?"],"Twilio Account SID":[null,"SID dell'Account Twilio"],"account SID of your Twilio account.":[null,"SID dell'account di Twilio."],"Twilio Auth Token":[null,"Twilio Auth Token"],"Twilio Phone SID":[null,"SID Telefono Twilio"],"phone SID that you would like to send the sms from":[null,"SID del telefono da cui vuoi spedire gli sms"],"Your phone number":[null,"Il tuo numero di telefono"],"phone number that will receive the sms. Please use the format +1-###-###-####":[null,"numero di telefono che riceverà gli sms. Si prega di utilizzare il formato + 1-# # #-# # #-# # #"],"Twitter":[null,"Twitter"],"A social networking and microblogging service, enabling its users to send and read other users' messages called tweets.":[null,"Un servizio di social networking e microblogging, permette agli utenti di inviare e leggere i messaggi degli altri, chiamati tweet."],"should SickRage post tweets on Twitter?":[null,"SickRage deve scrivere su Twitter?"],"you may want to use a secondary account.":[null,"potresti utilizzare un account secondario."],"send direct message":[null,"invia messaggio diretto"],"send a notification via Direct Message, not via status update":[null,"inviare una notifica tramite messaggio diretto, non tramite aggiornamento di stato"],"send DM to":[null,"invia messaggio diretto a"],"Twitter account to send Direct Messages to (must follow you)":[null,"Account Twitter a cui inviare messaggi diretti (deve seguirti)"],"Step One":[null,"Primo step"],"Request Authorization":[null,"Richiesta autorizzazione"],"Click the \"Request Authorization\" button.<br> This will open a new page containing an auth key.<br> <b>note:</b> if nothing happens check your popup blocker.":[null,"Premi il pulsante \"Richiesta autorizzazione\".<br> Verrà aperta una nuova pagina contenente una chiave di autorizzazione.<br><b>nota:</b> se non succede niente controlla il tuo software di blocco popup."],"Step Two":[null,"Fase due"],"Enter the key Twitter gave you below, and click \"Verify Key\".":[null,"Inserire la chiave che Twitter sotto, e cliccare \"Verifica Chiave\"."],"Trakt":[null,"Trakt"],"Trakt helps keep a record of what TV shows and movies you are watching. Based on your favorites, Trakt recommends additional shows and movies you'll enjoy!":[null,"Trakt ti aiuta a tenere traccia delle Serie TV e dei film stai guardando. Basandosi sui tuoi preferiti, Trakt potrà suggerirti ulteriori Serie TV e film che ti piaceranno!"],"send Trakt.tv notifications?":[null,"inviare notifiche su Trakt.tv?"],"username of your Trakt account.":[null,"nome utente del tuo account Trakt."],"Trakt PIN":[null,"PIN di Trakt"],"Get Trakt PIN":[null,"Ottieni PIN di Trakt"],"PIN code to authorize SickRage to access Trakt on your behalf.":[null,"Codice PIN per autorizzare SickRage ad accedere a Trakt per vostro conto."],"API Timeout":[null,"Timeout dell'API"],"seconds to wait for Trakt API to respond. (Use 0 to wait forever)":[null,"secondi di attesa per la risposta di Trakt API. (Usa 0 ad aspettare per sempre)"],"Default indexer":[null,"Indicizzatore predefinito"],"Sync libraries":[null,"Sincronizza librerie"],"sync your SickRage show library with your trakt show library.":[null,"sincronizza la libreria degli spettacoli di SickRage con la tua libreria di Trakt."],"Remove Episodes From Collection":[null,"Rimuovere gli episodi dalla collezione"],"remove an episode from your Trakt Collection if it is not in your SickRage Library.":[null,"rimuovi un episodio dalla Collezione Trakt se non è nella Libreria di SickRage."],"Sync watchlist":[null,"Sincronizzazione watchlist"],"sync your SickRage show watchlist with your trakt show watchlist (either Show and Episode).":[null,"sincronizza la lista degli episodi guardati di SickRage con quella di Trakt (funzione basata sia sulla Serie TV che sugli episodi)."],"episode will be added on watch list when wanted or snatched and will be removed when downloaded ":[null,"l'episodio verrà aggiunto alla watchlist se è in stato \"Richiesto\" o \"Trovato\" e verrà rimosso una volta scaricato "],"Watchlist add method":[null,"Metodo aggiunta alla watchlist"],"Skip All":[null,"Ignora tutto"],"Download Pilot Only":[null,"Scarica solamente episodio pilota"],"Get whole show":[null,"Ottieni tutti gli episodi della Serie TV"],"method in which to download episodes for new shows.":[null,"metodo in cui scaricare episodi per le nuove Serie TV."],"Remove episode":[null,"Rimuovi l'episodio"],"remove an episode from your watchlist after it is downloaded.":[null,"rimuovi un episodio dalla watchlist dopo averlo scaricato."],"Remove series":[null,"Rimuovi Serie TV"],"remove the whole series from your watchlist after any download.":[null,"rimuovi l'intera Serie TV dalla lista degli episodi da guardare dopo qualsiasi download."],"Remove watched show":[null,"Rimuovi Serie TV vista"],"remove the show from sickrage if it's ended and completely watched":[null,"rimuovi la Serie TV da Sickrage se è conclusa e tutti gli episodi sono stati guardati"],"Start paused":[null,"Avvia il download delle Serie TV in pausa"],"shows grabbed from your trakt watchlist start paused.":[null,"le Serie TV prelevate dalla tua lista su Trakt verranno aggiunte ai download in pausa."],"Trakt blackList name":[null,"Nome della blackList Trakt"],"name (slug) of list on Trakt for blacklisting show on 'Add Trending Show' & 'Add Recommended Shows' pages":[null,"nome (slug) della lista su Trakt per inserire nella \"lista nera\" la SerieTV sulle pagine \"Aggiungi SerieTV Popolari\" e \"Aggiungi SerieTV Suggerite\""],"Email":[null,"E-mail"],"Allows configuration of email notifications on a per show basis.":[null,"Consente di configurare le notifiche email per ogni Serie TV."],"send email notifications?":[null,"inviare notifiche via e-mail?"],"SMTP host":[null,"Host SMTP"],"hostname of your SMTP email server.":[null,"nome host del server SMTP di posta elettronica."],"SMTP port":[null,"Porta SMTP"],"port number used to connect to your SMTP host.":[null,"numero di porta utilizzato per connettersi all'host SMTP."],"SMTP from":[null,"SMTP da"],"sender email address, some hosts require a real address.":[null,"indirizzo email del mittente, alcuni host richiedono un indirizzo reale."],"Use TLS":[null,"Usa TLS"],"check to use TLS encryption.":[null,"spunta per utilizzare la crittografia TLS."],"SMTP user":[null,"Utente SMTP"],"(optional) your SMTP server username.":[null,"(opzionale) nome utente server SMTP."],"SMTP password":[null,"password SMTP"],"(optional) your SMTP server password.":[null,"(opzionale) password del server SMTP."],"Global email list":[null,"Lista email globale"],"email addresses listed here, separated by commas if applicable, will<br> receive notifications for <b>all</b> shows.":[null,"gli indirizzi e-mail elencati qui, separati da virgole se necessario, <br>riceveranno le notifiche per<b>tutte</b> le Serie TV."],"(This field may be blank except when testing.)":[null,"(Questo campo può essere vuoto ad eccezione di esecuzione test)"],"Email Subject":[null,"Oggetto email"],"use a custom subject for some privacy protection?":[null,"utilizza un oggetto personalizzato per tutela della privacy?"],"(leave blank for the default SickRage subject)":[null,"(lascia bianco per utilizzare l'oggetto predefinito di SickRage)"],"configure per-show notifications here by entering email address(es), separated by commas,":[null,"configura le notifiche per ogni serie TV inserendo qui gli indirizzi email, separati da virgole,"],"after selecting a show in the drop-down box. Be sure to activate the 'Save for this show'":[null,"dopo aver selezionato una Serie TV dalla lista a scomparsa. Assicurati di cliccare \"Salva per questa Serie TV\""],"button below after each entry.":[null,"pulsante in basso dopo ogni voce."],"Slack":[null,"Slack"],"Slack brings all your communication together in one place. It's real-time messaging, archiving and search for modern teams.":[null,"Slack raggruppa tutte le tue comunicazioni in un unico posto. É una applicazione di messaggistica in tempo reale con funzioni di archiviazione e ricerca."],"should SickRage post messages on Slack?":[null,"consenti a Sickrage di inviare un messaggio su Slack?"],"Slack Incoming Webhook":[null,"Webhook per le notifiche in entrata di Slack"],"Discord":[null,"Discord"],"All-in-one voice and text chat for gamers that's free, secure, and works on both your desktop and phone.":[null,"Unisce chat vocale e testuale, offrendoti una piattaforma gratuita e sicura che funziona sia su desktop che sullo smartphone."],"Should SickRage post messages on Discord?":[null,"Consenti a Sickrage di inviare un messaggio su Discord?"],"Discord Incoming Webhook":[null,"Webhook per le notifiche in entrata di Discord"],"Create webhook under channel settings.":[null,"Crea un webhook nelle impostazioni di canale."],"Discord Bot Name":[null,"Nome Bot Discord"],"Blank will use webhook default Name.":[null,"Se vuoto verrà usato il nome di default del webhook."],"Discord Avatar URL":[null,"Url Avatar Discord"],"Blank will use webhook default Avatar.":[null,"Se vuoto verrà usato l'avatar di default del webhook."],"Discord TTS":[null,"TTS Discord"],"Send notifications using text-to-speech":[null,"Invia le notifche con sintesi vocale"],"Post-Processing":[null,"Post-elaborazione"],"Episode Naming":[null,"Nomenclatura episodi"],"Metadata":[null,"Metadati"],"Settings that dictate how SickRage should process completed downloads.":[null,"Impostazioni che determinano come SickRage deve elaborare i download completati."],"enable the automatic post processor to scan and process any files in your Post Processing Dir":[null,"abilitare la post-elaborazione automatica a scansionare ed elaborare qualsiasi file nella tua Cartella di Post-Elaborazione"],"do not use if you use an external Post Processing script":[null,"non usare se utilizzi uno script esterno di Post-Elaborazione"],"Post Processing Dir":[null,"Cartella di post-elaborazione"],"the folder where your download client puts the completed TV downloads.":[null,"cartella dove il tuo programma di download mette gli spettacoli scaricati completati."],"please use seperate downloading and completed folders in your download client if possible.":[null,"per favore utilizza cartelle separate per i download in corso e completati, se possibile."],"Processing Method":[null,"Metodo di elaborazione"],"what method should be used to put files into the library?":[null,"quale metodo deve essere utilizzato per mettere i file nella libreria?"],"if you keep seeding torrents after they finish, please avoid the 'move' processing method to prevent errors.":[null,"se tieni in condivisione i torrent dopo il loro completamento, evita di utilizzare il metodo di elaborazione 'sposta' per prevenire errori."],"Auto Post-Processing Frequency":[null,"Frequenza di post-elaborazione automatica"],"time in minutes to check for new files to auto post-process (min 10)":[null,"tempo in minuti per controllare la presenza di nuovi file per la post-elaborazione automatica (min 10)"],"Postpone post processing":[null,"Rinvia la post-elaborazione"],"wait to process a folder if sync files are present.":[null,"aspetta ad elaborare una cartella se sono presenti file di sincronizzazione."],"Sync File Extensions":[null,"Estensioni file di sincronizzazione"],"comma seperated list of extensions or filename globs SickRage ignores when Post Processing":[null,"elenco separato da virgole delle estensioni o dei file che SickRage deve ignorare durante la post-elaborazione"],"Rename Episodes":[null,"Rinomina gli episodi"],"rename episode using the Episode Naming settings?":[null,"rinominare gli episodi usando le impostazioni di Denominazione Episodio?"],"Create missing show directories":[null,"Crea cartella degli spettacoli mancanti"],"create missing show directories when they get deleted":[null,"crea cartella delle Serie TV mancanti quando vengono cancellate"],"Add shows without directory":[null,"Aggiungi Serie TV senza una cartella"],"add shows without creating a directory (not recommended)":[null,"aggiungi Serie TV senza creare una cartella (non consigliato)"],"Move associated files":[null,"Sposta i file associati"],"move associated (srt/srr/sfv/etc) files while post processing?":[null,"sposta i file associati (srt/srr/sfv/etc) durante la post-elaborazione?"],"Rename .nfo file":[null,"Rinomina i file .nfo"],"rename the original .nfo file to .nfo-orig to avoid conflicts?":[null,"rinominare il file .nfo originale in .nfo-orig per evitare conflitti?"],"Associated file extensions":[null,"Estensioni di file associate"],"comma separated list of associated file extensions SickRage should keep while post processing.":[null,"lista di estensioni file separate da virgola che Sickrage deve mantenere durante la post elaborazione."],"leaving it empty means no associated files will be post processed":[null,"lasciando vuoto nessun file associato verrà post processato"],"Delete non associated files":[null,"Cancella i file non associati"],"delete non associated files while post processing?":[null,"eliminare i file non associati durante la post elaborazione?"],"Change File Date":[null,"Modifica data dei file"],"set last modified filedate to the date that the episode aired?":[null,"impostare la data di ultima modifica dei file con la data della messa in onda?"],"some systems may ignore this feature.":[null,"alcuni sistemi potrebbero ignorare questa funzionalità."],"Timezone for File Date":[null,"Fuso orario per la data del file"],"local":[null,"locale"],"network":[null,"rete"],"what timezone should be used to change File Date?":[null,"quale fuso orario deve essere utilizzato per modificare la data del file?"],"Unpack":[null,"Scompatta"],"What to do with archived releases found in your <i>TV Download Dir</i>?":[null,"Cosa vuoi fare delle tue puntate archiviate trovate nella <i>Cartella Download Programmi</i>?"],"Ignore (do not process contents)":[null,"Ignora (non processare i contenuti)"],"Unpack (process contents)":[null,"Scompatta (processa i contenuti)"],"Treat as video (process archive as-is)":[null,"Tratta come video (processa l'archivio come tale)"],"'Unpack' only works with RAR archives":[null,"'Scompatta' funziona solo con archivi RAR"],"Windows":[null,"Windows"],"WinRar is required on windows":[null,"WinRar è obbligatorio su windows"],"Unpack Directory":[null,"Cartella di Estrazione"],"Choose a path to unpack files, leave blank to unpack in download dir":[null,"Scegli un percorso in cui scompattare i file, lascia vuoto per scompattare nella cartella di download"],"Unrar Location":[null,"Percorso Unrar"],"add the path to unrar if it is not in the system path":[null,"aggiungi il percorso di unrar se non presente nel path di sistema"],"Alternate Unrar Tool":[null,"Strumento Unrar Alternativo"],"add the path to an alternate unrar tool if it is not in the system path":[null,"aggiungi il percorso dello strumento alternativo ad unrar se non presente nel patho di sistema"],"Delete RAR contents":[null,"Elimina il contenuto del RAR"],"delete content of RAR files, even if Process Method not set to move?":[null,"cancella il contenuto dei file RAR, anche se il metodo di Elaborazione non è settato su sposta?"],"only working with RAR archive":[null,"funziona solo con archivi RAR"],"Don't delete empty folders":[null,"Non eliminare le cartelle vuote"],"leave empty folders when Post Processing?":[null,"lasciare le cartelle vuote durante la Post-Elaborazione?"],"can be overridden using manual Post Processing":[null,"può essere ignorato usando la Post-Elaborazione manuale"],"Follow symbolic-links":[null,"Segui i link simbolici"],"follow down symbolic links in download directory?":[null,"segui i link simbolici nella cartella di download?"],"<b>EXPERTS ONLY.</b><br>Enable only if you know what <b>circular symbolic links</b> are,<br>and can <b>verify that you have none</b>.":[null,"<b>SOLO ESPERTI</b><br>Abilita soltanto se sai cosa sono i <b>link simbolici circolari</b>, <br>e puoi <b>verificare che non ce ne siano</b>."],"Use icacls":[null,"Usa icacls"],"Windows only":[null,"Solo Windows"],"sets video permissions after using the move method in post processing":[null,"imposta i permessi del video dopo aver usato il metodo 'sposta' in post-processamento"],"Extra Scripts":[null,"Script extra"],"see":[null,"vedi"],"for script arguments description and usage.":[null,"per la descrizione degli argomenti degli script e l'utilizzo."],"How SickRage will name and sort your episodes.":[null,"Come vuoi che SickRage rinomini e ordini gli episodi."],"Name Pattern":[null,"Formato del nome"],"Toggle Naming Legend":[null,"Mostra/Nascondi legenda di denominazione"],"don't forget to add quality pattern. Otherwise after post-processing the episode will have UNKNOWN quality":[null,"non dimenticare di aggiungere la qualità voluta. In caso contrario, dopo la post-elaborazione avrà qualità SCONOSCIUTA"],"Meaning":[null,"Significato"],"Pattern":[null,"Formato"],"Result":[null,"Risultato"],"Use lower case if you want lower case names (eg. %sn, %e.n, %q_n etc)":[null,"Utilizza il minuscolo se desideri che i nomi siano minuscoli (ad es. %sn, %e.n, % q_n ecc)"],"Show Name":[null,"Nome della Serie TV"],"Show.Name":[null,"Show.Name"],"Show_Name":[null,"Show_Name"],"Season Number":[null,"Numero Stagione"],"XEM Season Number":[null,"Numero Stagione XEM"],"Episode Number":[null,"Numero episodio"],"XEM Episode Number":[null,"Numero episodio XEM"],"Episode Name":[null,"Nome episodio"],"Episode.Name":[null,"Episode.Name"],"Episode_Name":[null,"Episode_Name"],"Air Date":[null,"Data di trasmissione"],"Post-Processing Date":[null,"Data di Post-Elaborazione"],"Quality":[null,"Qualità"],"Scene Quality":[null,"Qualità della scena"],"Release Name":[null,"Nome Release"],"SickRage' is used in place of RLSGROUP if it could not be properly detected":[null,"SickRage' è usato al posto di RLSGROUP se non viene propriamente rilevato"],"Release Group":[null,"Gruppo di rilascio"],"If episode is proper/repack add 'proper' to name.":[null,"Se l'episodio è corretto/repack aggiungi 'correto' al nome."],"Release Type":[null,"Tipo di rilascio"],"Multi-Episode Style":[null,"Stile multi-episodio"],"Single-EP Sample":[null,"Esempio singolo episodio"],"Multi-EP sample":[null,"Esempio multi-episodio"],"Strip Show Year":[null,"Taglia anno del programma"],"remove the TV show's year when renaming the file?":[null,"rimuovere l'anno della Serie TV quando viene rinominato il file?"],"only applies to shows that have year inside parentheses":[null,"si applica solamente alle Serie TV che includono l'anno nel titolo, all'interno di parentesi"],"Custom Air-By-Date":[null,"Data di trasmissione personalizzata"],"name air-by-date shows differently than regular shows?":[null,"rinominare le Serie TV che vanno in onda quotidianamente alla stessa ora in modo diverso dalle altre Serie TV?"],"Toggle ABD Naming Legend":[null,"Mostra/Nascondi legenda di denominazione ABD"],"Regular Air Date":[null,"Data trasmissione regolare"],"Year":[null,"Anno"],"Month":[null,"Mese"],"Day":[null,"Giorno"],"Multi-EP style is ignored":[null,"Stile Multi-Episodio viene ignorato"],"Custom Sports":[null,"Sport personalizzato"],"name sports shows differently than regular shows?":[null,"rinominare in modo diverso le Serie TV riguardanti lo sport?"],"Toggle Sports Naming Legend":[null,"Mostra/Nascondi legenda di denominazione Sport"],"Sports Air Date":[null,"Sports Air Date"],"Custom Anime":[null,"Custom Anime"],"name anime shows differently than regular shows?":[null,"rinominare in modo diverso gli anime rispetto alle Serie TV?"],"Toggle Anime Naming Legend":[null,"Attiva/Disattiva Legenda Denominazione Anime"],">XEM Season Number":[null,">Numero Stagione XEM"],"Single-EP Anime Sample":[null,"Esempio per singolo episodio di Anime"],"Multi-EP Anime sample":[null,"Esempio per multi-episodio di Anime"],"Add Absolute Number":[null,"Aggiungi numero assoluto"],"add the absolute number to the season/episode format?":[null,"aggiungere il numero assoluto al formato di stagione/episodio?"],"only applies to anime. (eg. S15E45 - 310 vs S15E45)":[null,"si applica solo agli anime. (es. S15E45 - 310 vs S15E45)"],"Only Absolute Number":[null,"Solo numero assoluto"],"replace season/episode format with absolute number":[null,"sostituire il formato di stagione/episodio con un numero assoluto"],"only applies to anime.":[null,"solo per anime."],"No Absolute Number":[null,"Nessun numero assoluto"],"don't include the absolute number":[null,"non includere il numero assoluto"],"The data associated to the data. These are files associated to a TV show in the form of images and text that, when supported, will enhance the viewing experience.":[null,"É un'informazione che descrive un insieme di dati. Si tratta di file associati a una serie TV in forma di immagini e testo che, quando supportati, miglioreranno l'esperienza dello spettatore."],"Metadata Type":[null,"Tipo di metadati"],"toggle metadata options that you wish to be created":[null,"attiva/disattiva le opzioni di metadati che vuoi che siano creati"],"multiple targets may be used":[null,"si possono attivare più opzioni"],"Select Metadata":[null,"Seleziona i metadati"],"Provider Priorities":[null,"Priorità dei provider"],"Provider Options":[null,"Opzioni del provider"],"Configure Custom Newznab Providers":[null,"Configura i provider personalizzati Newznab"],"Configure Custom Torrent Providers":[null,"Configura i provider personalizzati Torrent"],"Check off and drag the providers into the order you want them to be used.":[null,"Spunta e trascina i provider nell'ordine in cui vuoi vengano interrogati."],"At least one provider is required but two are recommended.":[null,"È richiesto almeno un provider, ma due sono raccomandati."],"Torrent providers can be toggled in ":[null,"Torrent provider possono essere attivati in "],"Provider does not support backlog searches at this time.":[null,"I Provider non supportano ricerche di arretrati in questo momento."],"Provider is <b>NOT WORKING</b>.":[null,"Il Provider è <b>NON FUNZIONANTE</b>."],"Configure individual provider settings here.":[null,"Configura qui le impostazioni dei singoli provider."],"Check with provider's website on how to obtain an API key if needed.":[null,"Verifica sul sito web del provider come ottenere una chiave API, se necessaria."],"Configure provider":[null,"Configura provider"],"no providers available to configure.":[null,"nessun provider disponibile da configurare."],"URL":[null,"URL"],"Enable daily searches":[null,"Abilita ricerche giornaliere"],"enable provider to perform daily searches.":[null,"abilita il provider per effettuare ricerche giornaliere."],"Enable backlog searches":[null,"Abilita la ricerca degli arretrati"],"enable provider to perform backlog searches.":[null,"abilita il provider per effettuare la ricerca degli arretrati."],"Season search mode":[null,"Modalità di ricerca della stagione"],"when searching for complete seasons you can choose to have it look for season packs only, or choose to have it build a complete season from just single episodes.":[null,"quando cerchi un'intera stagione puoi scegliere di cercarla come archivio completo, oppure di costruirla a partire dai singoli episodi."],"season packs only.":[null,"solo archivi completi."],"episodes only.":[null,"solo episodi."],"Enable fallback":[null,"Abilita alternativa"],"when searching for a complete season depending on search mode you may return no results, this helps by restarting the search using the opposite search mode.":[null,"quando si cerca una stagione completa a seconda del metodo di ricerca potrebbero non esserci risultati, questo riavvia la ricerca utilizzando l'altro metodo."],"Custom URL":[null,"URL personalizzato"],"the URL should include the protocol (and port if applicable). Examples: http://192.168.1.4/ or http://localhost:3000/":[null,"l'URL deve includere il protocollo (e la porta se disponibile). Ad esempio: http://192.168.1.4/ o http://localhost:3000/"],"Api key":[null,"Chiave API"],"Digest":[null,"Digest"],"Hash":[null,"Hash"],"Passkey":[null,"Chiave di accesso"],"Cookies":[null,"Cookies"],"example: uid=1234;pass=567845439634987<br>note: uid and pass are not your username/password.<br>use DevTools or Firebug to get these values after logging in on your browser.":[null,"esempio: uid=1234;pass=567845439634987<br>Nota: uid e pass non sono i tuoi username/password.<br> usa DevTools o Firebug per ottenerli dopo esserti connesso con il tuo browser."],"Pin":[null,"Pin"],"Seed ratio":[null,"Rapporto di Condivisione"],"stop transfer when ratio is reached<br>(-1 SickRage default to seed forever, or leave blank for downloader default)":[null,"smetti di inviare quando il rapporto è raggiunto<br>(-1 è il predefinito per restare in condivisione per sempre, oppure lascia vuoto per usare il predefinito del programma di download)"],"Minimum seeders":[null,"Numero minimo di seeder"],"Minimum leechers":[null,"Numero minimo di leecher"],"Confirmed download":[null,"Download confermato"],"only download torrents from trusted or verified uploaders ?":[null,"scarica solamente torrent da utenti fidati o verificati?"],"Ranked torrents":[null,"Torrent fidati"],"only download ranked torrents (trusted releases)":[null,"scarica solo torrent fidati"],"English torrents":[null,"Torrent inglesi"],"only download english torrents, or torrents containing english subtitles":[null,"scarica solamente torrent inglesi, o torrent che contengono sottotitoli in inglese"],"For Spanish torrents":[null,"Per i torrent spagnoli"],"ONLY search on this provider if show info is defined as \"Spanish\" (avoid provider's use for VOS shows)":[null,"Cerca SOLO su questo provider se nelle informazioni riguardanti questa Serie TV la lingua è indicata come \"Spagnolo\" (evita l'uso di certi provider per le Serie TV VOS)"],"Sorting results by":[null,"Ordina i risultati per"],"Freeleech":[null,"Freeleech"],"only download <b>\"FreeLeech\"</b> torrents.":[null,"scarica solamente i torrent di <b>\"FreeLeech\"</b>."],"Category":[null,"Categoria"],"select torrent with Italian subtitle":[null,"scegli i torrent con sottotitoli in italiano"],"Configure Custom<br>Newznab Providers":[null,"Configura i provider<br>personalizzati Newznab"],"Add and setup or remove custom Newznab providers.":[null,"Aggiungi e configura o rimuovi un provider Newznab personalizzato."],"Select provider":[null,"Scegli provider"],"-- add new provider --":[null,"-- aggiungi nuovo provider --"],"Provider name":[null,"Nome del provider"],"Site URL":[null,"URL sito"],"Newznab search categories":[null,"Categorie di ricerca Newznab"],"select your Newznab categories on the left, and click the \"update categories\" button to use them for searching.) <b>don't forget to to save the form!":[null,"seleziona le categorie di Newznab sulla sinistra e premi sul pulsante \"Aggiorna Categorie\" per utilizzarli nella ricerca.) <b>non dimenticare di salvare il modulo!"],"Update Categories":[null,"Aggiorna Categorie"],"Add":[null,"Aggiungi"],"Delete":[null,"Cancella"],"Add and setup or remove custom RSS providers.":[null,"Aggiungi e configura o rimuovi un provider di RSS personalizzato."],"RSS URL":[null,"URL RSS"],"Search element":[null,"Elemento di ricerca"],"eg: title":[null,"ad esempio: titolo"],"Episode Search":[null,"Ricerca episodio"],"NZB Search":[null,"Ricerca Usenet (NZB)"],"Torrent Search":[null,"Ricerca Torrent"],"How to manage searching with":[null,"Come gestire la ricerca con i"],"Randomize Providers":[null,"Fonti in ordine casuale"],"randomize the provider search order instead of going in order of placement":[null,"Effetua la ricerca tra le fonti in ordine casuale anzicché utilizzare l'ordine di aggiunta"],"Download propers":[null,"Scarica propers"],"replace original download with \"Proper\" or \"Repack\" if nuked":[null,"sostituisci il download originale con \"Proper\" o \"Repack\""],"Check propers every":[null,"Verifica propers ogni"],"24 hours":[null,"24 ore"],"4 hours":[null,"4 ore"],"90 mins":[null,"90 min"],"45 mins":[null,"45 min"],"15 mins":[null,"15 min"],"Backlog search day(s)":[null,"Giorni di ricerca per gli arretrati"],"number of day(s) that the \"Forced Backlog Search\" will cover (e.g. 7 Days)":[null,"numero di giorni che la \"Ricerca Forzate degli Arretrati\" andrá a coprire (ad es. 7 giorni)"],"Backlog search frequency":[null,"Frequenza di ricerca degli arretrati"],"time in minutes between searches (min.":[null,"tempo in minuti tra le ricerche (min."],"Daily search frequency":[null,"Frequenza di ricerca giornaliera"],"Usenet retention":[null,"Ritenzione di Usenet"],"age limit in days for usenet articles to be used (e.g. 500)":[null,"limite di età in giorni da usare per gli elementi usenet (es. 500)"],"Ignore words":[null,"Parole ignorate"],"results with one or more word from this list will be ignored<br>separate words with a comma, e.g. \"word1,word2,word3\"":[null,"risultati con uno o più parole da questo elenco verranno ignorati <br>separa le parole con una virgola, ad esempio \"parola1, parola2, parola3\""],"Require words":[null,"Parole richieste"],"results with no word from this list will be ignored<br>separate words with a comma, e.g. \"word1,word2,word3\"":[null,"risultati con nessuna parola da questo elenco verranno ignorati <br>separa le parole con una virgola, ad esempio \"parola1, parola2, parola3\""],"Trackers list":[null,"Lista di Tracker"],"trackers that will be added to magnets without trackers<br>separate trackers with a comma, e.g. \"tracker1,tracker2,tracker3\"":[null,"trackers che verranno aggiunti ai magnets senza trackers<br>separa i trackers con una virgola, ad esempio \"tracker1,tracker2,tracker3\""],"Ignore language names in subbed results":[null,"Ignora le seguenti lingue per le Serie TV sottotitolate"],"ignore subbed releases based on language names <br>\n Example: \"dk\" will ignore words: dksub, dksubs, dksubbed, dksubed <br>\n separate languages with a comma, e.g. \"lang1,lang2,lang3":[null,"ignora le Serie TV già sottotitolate in base alla lingua indicata <br>\n Ad esempio: il termine \"dk\" ignorerà le parole: dksub, dksubs, dksubbed, dksubed <br>\n separa i nomi delle lingue con una virgola, ad esempio \"lingua1, lingua2, lingua3\""],"Allow high priority":[null,"Consenti alta priorità"],"set downloads of recently aired episodes to high priority":[null,"imposta su alta priorità il download degli episodi trasmessi recentemente"],"Use Failed Downloads":[null,"Usa Download Falliti"],"use Failed Download Handling?":[null,"Vuoi utilizzare la funzione \"Download Falliti\" ?"],"will only work with snatched/downloaded episodes after enabling this":[null,"avrà effetto solo con gli episodi trovati/scaricati dopo l'attivazione"],"Delete Failed":[null,"Eliminazione Download Falliti"],"delete files left over from a failed download?":[null,"eliminare i file lasciati da un download non riuscito?"],"this only works if Use Failed Downloads is enabled.":[null,"funziona solo se Usa Download Falliti è attivato."],"How to handle NZB search results.":[null,"Come gestire i risultati della ricerca NZB."],"Search NZBs":[null,"Ricerca NZBs"],"enable NZB search providers":[null,"abilitare i provider di ricerca NZB"],"Send .nzb files to":[null,"Invia i file .nzb a"],"SABnzbd server URL":[null,"URL del server SABnzbd"],"URL to your SABnzbd server (e.g. http://localhost:8080/)":[null,"URL del tuo server SABnzbd (ad esempio http://localhost:8080/)"],"SABnzbd username":[null,"Nome utente SABnzbd"],"(blank for none)":[null,"(vuoto per nessuno)"],"SABnzbd password":[null,"Password SABnzbd"],"SABnzbd API key":[null,"Chiave API di SABnzbd"],"locate at... SABnzbd Config -> General -> API Key":[null,"si trova in... SABnzbd Configurazione -> Generale -> Chiave API"],"Use SABnzbd category":[null,"Usa categoria SABnzbd"],"add downloads to this category (e.g. TV)":[null,"aggiunge download a questa categoria (es. TV)"],"Use SABnzbd category (backlog episodes)":[null,"Usa categoria SABnzbd (episodi arretrati)"],"add downloads of old episodes to this category (e.g. TV)":[null,"aggiunge download di vecchi episodi di questa categoria (es. TV)"],"Use SABnzbd category for anime":[null,"Usa categoria SABnzbd per gli Anime"],"add anime downloads to this category (e.g. anime)":[null,"aggiunge download di Anime a questa categoria (es. Anime)"],"Use SABnzbd category for anime (backlog episodes)":[null,"Usa categoria SABnzbd per gli Anime (episodi arretrati)"],"add anime downloads of old episodes to this category (e.g. anime)":[null,"Aggiungi a questa categoria i vecchi episodi degli anime scaricati (ad es. Cartoni)"],"Use forced priority":[null,"Utilizza la massima prioritá possibile"],"enable to change priority from HIGH to FORCED":[null,"Consente di modificare la prioritá da ALTA a MASSIMA"],"Black hole folder location":[null,"Percorso della cartella buco nero"],"<b>.nzb</b> files are stored at this location for external software to find and use":[null,"i file <b>.nzb</b> sono memorizzati in questo percorso per essere trovati e usati da programmi esterni"],"Connect using HTTPS":[null,"Connetti utilizzando HTTPS"],"enable Secure control in NZBGet and set the correct Secure Port here":[null,"Seleziona il Protocollo di Sicurezza per la Ricerca Usenet (NZBGet) e la Porta corrispondente"],"NZBget host:port":[null,"Server NZB - indirizzo:porta"],"(e.g. localhost:6789)":[null,"(ad esempio: localhost:6789)"],"NZBget RPC host name and port number (not NZBgetweb!)":[null,"Inserire l'indirizzo del server e il numero di porta per il server NZBGet su RPC (non utilizzare l'indirizzo per l'interfaccia web NZBgetweb ! )"],"NZBget username":[null,"Nome utente NZBget"],"locate in nzbget.conf (default:nzbget)":[null,"Individua manulmente il file nzbget.conf (default:nzbget)"],"NZBget password":[null,"Password per NZBget"],"locate in nzbget.conf (default:tegbzn6789)":[null,"Individua il parametro all'interno di nzbget.conf (default:tegbzn6789)"],"Use NZBget category":[null,"Utilizza la seguente categoria per NZBget"],"send downloads marked this category (e.g. TV)":[null,"inizializza i download contrassegnati con questa categoria (ad es. TV)"],"Use NZBget category (backlog episodes)":[null,"Usa la seguente categoria per gli Arretrati"],"send downloads of old episodes marked this category (e.g. TV)":[null,"inizializza i download degli episodi arretrati contrassegnati con questa categoria (ad es. TV)"],"Use NZBget category for anime":[null,"Utilizza la seguente categoria NZBget per gli Anime"],"send anime downloads marked this category (e.g. anime)":[null,"inizializza i download degli Anime contrassegnati con questa categoria (ad es. Anime)"],"Use NZBget category for anime (backlog episodes)":[null,"Utilizza la seguente categoria NZBget per la categoria Anime (episodi arretrati)"],"send anime downloads of old episodes marked this category (e.g. anime)":[null,"inizializza i download degli Anime degli episodi arretrati contrassegnati con questa categoria (ad es. Anime)"],"NZBget priority":[null,"Prioritá per NZBget"],"Very low":[null,"Molto bassa"],"Low":[null,"Bassa"],"Very high":[null,"Molto Alta"],"Force":[null,"Massima"],"priority for daily snatches (no backlog)":[null,"prioritá delle ricerche giornaliere (esclusi gli arretrati)"],"Torrent host:port":[null,"Torrent: porta host"],"URL to your Synology DSM (e.g. http://localhost:5000/)":[null,"URL del tuo Synology DSM (ad es. http://localhost:5000/)"],"Client username":[null,"Nome utente del Client"],"Client password":[null,"Password del client"],"Downloaded files location":[null,"Posizione dei file scaricati"],"where Synology Download Station will save downloaded files (blank for client default)":[null,"dove Synology Download Station salverà i file scaricati (vuoto per lasciare come predefinito)"],"the destination has to be a shared folder for Synology DS":[null,"la destinazione deve essere una cartella condivisa di Synology DS"],"Click below to test":[null,"Premi qui sotto per provare"],"How to handle Torrent search results.":[null,"Come gestire i risultati di ricerca di Torrent."],"Search torrents":[null,"Cerca torrents"],"enable torrent search providers":[null,"abilita i provider di ricerca torrent"],"Send .torrent files to":[null,"Invia i file .torrent a"],"<b>.torrent</b> files are stored at this location for external software to find and use":[null,"i file <b>.torrent</b> sono memorizzati in questo percorso per essere trovati e usati da programmi esterni"],"URL to your torrent client (e.g. http://localhost:8000/)":[null,"URL per il tuo client torrent (ad es. http://localhost:8000/)"],"Torrent RPC URL":[null,"URL del torrent RPC"],"the path without leading and trailing slashes (e.g. transmission)":[null,"inserisci l'indirizzo senza lo \"/\" iniziale e finale (ad. es. transmission)"],"Http Authentication":[null,"Autenticazione http"],"Verify certificate":[null,"Verifica il Certificato di Sicurezza"],"disable if you get \"Deluge: Authentication Error\" in your log":[null,"disattiva questa opzione se nel log é presente l'errore \"Deluge: Authentication Error\""],"verify SSL certificates for HTTPS requests":[null,"verifica i Certificati SSL per le Richieste HTTPS"],"Add label to torrent":[null,"Aggiungi etichetta ai torrent"],"(blank spaces are not allowed)":[null,"(gli spazi vuoti non sono consentiti)"],"label plugin must be enabled in Deluge clients":[null,"il plug-in per le etichette deve essere attivo su Deluge"],"for QBitTorrent 3.3.1 and up":[null,"per QBitTorrent da 3.3.1 in su"],"Add label to torrent for anime":[null,"Aggiungi etichetta al torrente per gli anime"],"for QBitTorrent 3.3.1 and up ":[null,"per QBitTorrent da 3.3.1 in su"],"where <span id=\"torrent_client\">the torrent client</span> will save downloaded files (blank for client default)":[null,"dove <span id=\"torrent_client\">il client torrent</span> salverà i file scaricati (vuoto per predefinito del client)"],"the destination has to be a shared folder for Synology DS</span>":[null,"la destinazione deve essere in una cartella condivisa da Synology DS</span>"],"Minimum seeding time":[null,"Tempo minimo in condivisione"],"time in hours":[null,"tempo in ore"],"(default:'0' passes blank to client and '-1' passes nothing)":[null,"(predefinito: '0' invia uno spazio al client e '-1' non invia nulla)"],"Start torrent paused":[null,"Avvia torrent in pausa"],"add .torrent to client but do <b style=\"font-weight:900\">not</b> start downloading":[null,"aggiungi torrent al client ma <b style=\"font-weight:900\">non</b> avviare il download"],"Allow high bandwidth":[null,"Consenti l'utilizzo di una elevata larghezza di banda"],"use high bandwidth allocation if priority is high":[null,"utilizza una elevata larghezza di banda se la prioritá é impostata su Alta"],"Test Connection":[null,"Prova connessione"],"Windows Shares":[null,""],"Defines your existing windows shares so that we can add them to the browse dialog":[null,""],"Share #{number}":[null,""],"Share label":[null,""],"Hostname or IP":[null,""],"Share path":[null,""],"Subtitles Search":[null,"Ricerca sottotitoli"],"Subtitles Plugin":[null,"Fonti per Sottotitoli"],"Plugin Settings":[null,"Impostazioni Specifiche"],"Settings that dictate how SickRage handles subtitles search results.":[null,"Impostazioni che determinano come SickRage deve gestire i risultati di ricerca dei sottotitoli."],"Search Subtitles":[null,"Ricerca sottotitoli"],"Subtitle Languages":[null,"Lingue dei sottotitoli"],"Subtitle Directory":[null,"Percorso dei sottotitoli"],"the directory where SickRage should store your <i>Subtitles</i> files.":[null,"la cartella dove SickRage dovrebbe memorizzare i file dei <i>sottotitoli</i>."],"leave empty if you want store subtitle in episode path.":[null,"lascia vuoto se desideri memorizzare il sottotitolo nella cartella dell'episodio."],"Subtitle Find Frequency":[null,"Frequenza di ricerca sottotitoli"],"time in hours between scans (default: 1)":[null,"tempo in ore tra le scansioni (predefinito: 1)"],"Include Specials":[null,"Includi Episodi Speciali"],"include the show's specials when searching for subtitles?":[null,"includi gli episodi speciali quando si cercano i sottotitoli?"],"Perfect matches":[null,"Corrispondenza perfetta"],"only download subtitles that match: release group, video codec, audio codec and resolution":[null,"scarica solo sottotitoli che corrispondono a: gruppo di rilascio, codec video, codec audio e risoluzione"],"if disabled you may get out of sync subtitles":[null,"se disabilitato potresti ottenere sottotitoli fuori sincronia"],"Subtitles History":[null,"Cronologia sottotitoli"],"log downloaded Subtitle on History page?":[null,"vuoi che il download dei sottotitoli venga registrato nella pagina Cronologia?"],"Subtitles Multi-Language":[null,"Sottotitoli multi-lingua"],"append language codes to subtitle filenames?":[null,"aggiungere i codici di lingua al nome del file dei sottotitoli?"],"this option is required if you use multiple subtitle languages":[null,"questa opzione è necessaria se si utilizzano più lingue per i sottotitoli"],"Delete unwanted subtitles":[null,"Elimina sottotitoli indesiderati"],"enable to delete unwanted subtitle languages bundled with release":[null,"attiva per eliminare sottotitoli indesiderati rilasciati insieme all'episodio"],"Embedded Subtitles":[null,"Sottotitoli incorporati"],"ignore subtitles embedded inside video file?":[null,"ignorare i sottotitoli incorporati all'interno di file video?"],"this will ignore <u>all</u> embedded subtitles for every video file!":[null,"questo ignorerà <u>tutti</u> i sottotitoli incorporati per ogni file video!"],"Hearing Impaired Subtitles":[null,"Sottotitoli per non udenti"],"download hearing impaired style subtitles?":[null,"scaricare i sottotitoli per non udenti?"],"See":[null,"Guarda la"],"for a script arguments description.":[null,"per una descrizione degli argomenti di script."],"Additional scripts separated by <b>|</b>.":[null,"Script aggiuntivi separati da <b>|</b>."],"Scripts are called after each episode has searched and downloaded subtitles.":[null,"Gli script vengono eseguiti dopo la ricerca e lo scarico dei sottotitoli per ogni episodio."],"For any scripted languages, include the interpreter executable before the script. See the following example":[null,"Includere l'eseguibile dell'interprete prima dello script. Vedere l'esempio riportato di seguito"],"For Windows:":[null,"Per Windows:"],"For Linux / OS X:":[null,"Per Linux / OS x:"],"Subtitle Providers":[null,"Provider di sottotitoli"],"Check off and drag the plugins into the order you want them to be used.":[null,"Spunta e trascina i provider nell'ordine in cui vuoi vengano interrogati."],"At least one plugin is required.":[null,"E' necessario almeno un provider."]," Web-scraping plugin":[null," Provider basato su plugin web-scraping"],"Provider Settings":[null,"Impostazioni del provider"],"Set user and password for each provider":[null,"Imposta utente e password per ogni provider"],"User Name":[null,"Nome utente"],"Change Show":[null,"Modifica Serie TV"],"Prev Show":[null,"Serie TV Precedente"],"Next Show":[null,"Serie TV Successiva"],"Jump to Season":[null,"Vai alla stagione"],"Specials":[null,"Episodi Speciali"],"Poster for":[null,"Copertina per"],"Stars":[null,"Valutazione"],"minutes":[null,"minuti"],"View other popular {genre} shows on trakt.tv.":[null,"Mostra altre Serie TV {genre} popolari su trakt.tv."],"View other popular {imdbgenre} shows on IMDB.":[null,"Mostra altre serie TV {imdbgenre} popolari su IMDB."],"Allowed":[null,"Ammesso"],"Preferred":[null,"Preferito"],"Originally Airs":[null,"Originariamente in onda"],"Show Status":[null,"Stato della serie TV"],"Default EP Status":[null,"Stato predefinito EP"],"Location":[null,"Posizione"],"Missing":[null,"Episodi Mancanti"],"Scene Name":[null,"Nome di scena"],"Required Words":[null,"Termini richiesti"],"Ignored Words":[null,"Parole ignorate"],"Size":[null,"Dimensione"],"Info Language":[null,"Info lingua"],"Subtitles SR Metadata":[null,"Metadati per i Sottotitoli di SR"],"Season Folders":[null,"Cartelle per stagione"],"Paused":[null,"Sospeso"],"Air-by-Date":[null,"Data di trasmissione"],"Sports":[null,"Sport"],"DVD Order":[null,"Ordine DVD"],"Scene Numbering":[null,"Numerazione delle scene"],"Select Filtered Episodes":[null,"Seleziona episodi filtrati"],"Clear All":[null,"Deseleziona tutti"],"Change selected episodes to":[null,"Modifica gli Episodi Selezionati con il seguente valore:"],"Select Columns":[null,"Seleziona colonne"],"NFO":[null,"INFO"],"TBN":[null,"TBN"],"Episode":[null,"Episodio"],"Absolute":[null,"Assoluto"],"Scene":[null,"Scena"],"Scene Absolute":[null,"Assoluto di scena"],"File Name":[null,"Nome file"],"Airdate":[null,"Data di trasmissione"],"Download":[null,"Download"],"Change the value here if scene numbering differs from the indexer episode numbering":[null,"Modifica questo valore se la numerazione degli epidosi differisce da quella utilizzata dal fornitore di informazioni (ad es. tvDB)"],"Change the value here if scene absolute numbering differs from the indexer absolute numbering":[null,"Modifica questo valore se la numerazione assoluta degli epidosi differisce da quella utilizzata dal fornitore di informazioni (ad es. tvDB)"],"Manual Search":[null,"Ricerca Manuale"],"Do you want to mark this episode as failed?":[null,"Vuoi contrassegnare il download di questo episodio come non riuscito ?"],"The episode release name will be added to the failed history, preventing it to be downloaded again.":[null,"Il nome dell'epidosio verrá aggiunto alla cronologia dei download falliti, impedendo che venga scaricato nuovamente."],"Do you want to include the current episode quality in the search?":[null,"Vuoi che la ricerca tenga conto della qualitá di questo episodio?"],"Choosing No will ignore any releases with the same episode quality as the one currently downloaded/snatched.":[null,"Scegliendo \"No\" qualsiasi episodio rilasciato nella stessa qualitá di quello attualmente ricercato e/o scaricato verrá ignorato."],"Download subtitle":[null,"Scarica sottotitoli"],"Do you want to re-download the subtitle for this language?":[null,"Vuoi ri-scaricare i sottotitoli per questa lingua?"],"It will overwrite your current subtitle":[null,"Questa azione sovrascriverà l'attuale sottotitolo"],"Format":[null,"Formato"],"Advanced":[null,"Avanzate"],"Main Settings":[null,"Impostazioni principali"],"Show Location":[null,"Percorso"],"Preferred Quality":[null,"Qualità preferita"],"Default Episode Status":[null,"Stato predefinito episodio"],"this will set the status for future episodes.":[null,"questo imposterà lo stato per gli episodi futuri."],"this only applies to episode filenames and the contents of metadata files.":[null,"questo vale solo per il nome del file dell'episodio e i contenuti dei file di metadati."],"search for subtitles":[null,"ricercare i sottotitoli"],"Use SR Metdata":[null,"Utilizza i Metadati di SR"],"use SickRage metadata when searching for subtitle, this will override the autodiscovered metadata":[null,"utilizza i metadati di SickRage durante la ricerca dei sottotitoli, andando a sostituire i metadati recuperati in precedenza"],"pause this show (SickRage will not download episodes)":[null,"mette in pausa questa serie TV (SickRage non scaricherà altri episodi)"],"Format Settings":[null,"Impostazioni del formato"],"Air by date":[null,"Data di trasmissione"],"check if the show is released as Show.03.02.2010 rather than Show.S02E03.":[null,"spunta se la serie TV è rilasciata come Show.03.02.2010 piuttosto che Show.S02E03."],"in case of an air date conflict between regular and special episodes, the later will be ignored.":[null,"se la data di messa in onda degli episodi standard dovesse essere in conflitto con quella degli episodi speciali allora verrá ignorata quest'ultima."],"check if the show is Anime and episodes are released as Show.265 rather than Show.S02E03":[null,"spunta se la serie TV è un Anime ed è rilasciata come Show.265 piuttosto che Show.S02E03."],"check if the show is a sporting or MMA event released as Show.03.02.2010 rather than Show.S02E03":[null,"spunta se la serie TV è un evento sportivo o MMA ed è rilasciata come Show.03.02.2010 piuttosto che Show.S02E03."],"Season folders":[null,"Cartelle per stagione"],"group episodes by season folder (uncheck to store in a single folder)":[null,"raggruppa gli episodi in una cartella per stagione (disattiva per archiviarli in un'unica cartella)"],"search by scene numbering (uncheck to search by indexer numbering)":[null,"cerca per numerazione delle scene (deselezionare questa opzione per usare la numerazione dell'indicizzatore)"],"use the DVD order instead of the air order":[null,"utilizzare l'ordine dei DVD invece della data di trasmissione"],"a \"Force Full Update\" is necessary, and if you have existing episodes you need to sort them manually.":[null,"è necessario fare \"Forza aggiornamento\", e se hai episodi già scaricati è necessario ordinarli manualmente."],"comma-separated <i>e.g. \"word1,word2,word3</i>\"":[null,"delimitato da virgole <i>ad esempio \"parola1, parola2, parola3\"</i>"],"search results with one or more words from this list will be ignored.":[null,"i risultati di ricerca con una o più parole da questo elenco verranno ignorati."],"e.g. \"word1,word2,word3\"":[null,"ad esempio \"termine1,termine2,termine3\""],"search results with no words from this list will be ignored.":[null,"i risultati di ricerca che non contengono parole da questo elenco verranno ignorati."],"Scene Exception":[null,"Eccezione di scena"],"this will affect episode search on NZB and torrent providers.":[null,"ciò influirà sulla ricerca degli episodi tramite providers NZB e torrent."],"this list appends to the original show name.":[null,"questo elenco verrà aggiunto al nome originale della serie TV."],"WARNING logs":[null,"Messaggi di AVVISO"],"ERROR logs":[null,"Messaggi di ERRORE"],"There are no events to display.":[null,"Non ci sono eventi da mostrare."],"Limit":[null,"Limite"],"Layout":[null,"Aspetto"],"HistoryLayout":[null,"Visaulizzazione"],"Compact":[null,"Compatto"],"Detailed":[null,"Dettagliato"],"Time":[null,"Ora"],"Provider":[null,"Origine"],"Missing Provider":[null,"Origine Sconosciuta"],"missing provider":[null,"origine sconosciuta"],"Directory":[null,"Cartella"],"Show Name (tvshow.nfo)":[null,"Nome programma (tvshow.nfo)"],"Indexer":[null,"Indicizzatore"],"Enter the folder containing the episode":[null,"Inserire la cartella contenente l'episodio"],"Process Method to be used":[null,"Metodo di elaborazione da utilizzare"],"Copy":[null,"Copia"],"Move":[null,"Sposta"],"Hard Link":[null,"Collegamento fisso"],"Symbolic Link":[null,"Collegamento simbolico"],"Symbolic Link Reversed":[null,"Collegamento simbolico invertito"],"Force already Post Processed Dir/Files":[null,"Forza i file/cartelle già post-elaborati"],"Mark Dir/Files as priority download":[null,"Imposta le cartelle/file come priorità"],"(Check it to replace the file even if it exists at higher quality)":[null,"(rimpiazza i file anche se esistono con maggiore qualità)"],"Delete files and folders":[null,"Cancella file e cartelle"],"(Check it to delete files and folders like auto processing)":[null,"(cancella file e cartelle come nell'elaborazione automatica)"],"Don't use processing queue":[null,"Non usare la coda di elaborazione"],"(If checked this will return the result of the process here, but may be slow!)":[null,"(se selezionato ritornerà il risultato del processo, ma potrebbe essere lento)"],"Mark download as failed":[null,"Imposta il download come fallito"],"Process":[null,"Avvia processo"],"Download subtitles for this show?":[null,"Scaricare i sottotitoli per questa Serie TV?"],"use SickRage metadata when searching for subtitle, <br />this will override the autodiscovered metadata":[null,"utilizza i metadati di SickRage durante la ricerca dei sottotitoli, </br />andando a sostituire i metadati recuperati in precedenza"],"Status for previously aired episodes":[null,"Stato degli episodi già trasmessi"],"Status for all future episodes":[null,"Stato dei futuri episodi"],"Group episodes by season folder?":[null,"Raggruppa gli episodi rispetto alle cartelle per stagione?"],"Is this show an Anime?":[null,"Questo spettacolo è un Anime?"],"Is this show scene numbered?":[null,"Questa Serie TV adotta una numerazione progressiva particolare per gli episodi?"],"Save Defaults":[null,"Salvare impostazioni predefinite"],"Use current values as the defaults":[null,"Utilizzare i valori attuali come impostazioni predefinite"],"<p>Select your preferred fansub groups from the <b>Available Groups</b> and add them to the <b>Whitelist</b>. Add groups to the <b>Blacklist</b> to ignore them.</p>\n <p>The <b>Whitelist</b> is checked <i>before</i> the <b>Blacklist</b>.</p>\n <p>Groups are shown as <b>Name</b> | <b>Rating</b> | <b>Number of subbed episodes</b>.</p>\n <p>You may also add any fansub group not listed to either list manually.</p>\n <p>When doing this please note that you can only use groups listed on anidb for this anime.\n <br>If a group is not listed on anidb but subbed this anime, please correct anidb's data.</p>":[null,"<p>Seleziona i tuoi gruppi preferiti per i sottotitoli dalla sezione <b>Sorgenti Disponibili</b> e aggiungili alla <b>Lista Consentita</b>. Aggiunge invece i gruppi alla <b>Lista Ignorata</b> per ignore i loro sottotitoli.</p>\n <p>La <b>Lista Consentita</b> viene controllata <i>prima</i> della <b>Lista Ignorata</b>.</p>\n <p>I Gruppi vengono visualizzati con il formato <b>Nome</b> | <b>Reputazione</b> | <b>Numero di Episodi Sottotitolati</b>.</p>\n <p>Puoi aggiungere qualsiasi gruppo che non sia giá elencato ad una delle due liste.</p>\n <p>Ricorda che puoi puoi utilizzare unicamente i Gruppi indicati su AniDB per questo specifico Anime.\n <br>Se un Gruppo rilascia i sottotitoli per questo Anime ma non é elencato su AniDB allora devi correggere i dati realtivi su AniDB.</p>"],"Whitelist":[null,"Lista consentiti"],"Available Groups":[null,"Gruppi disponibili"],"Add to Whitelist":[null,"Aggiungere alla lista consentiti"],"Add to Blacklist":[null,"Aggiungi alla lista vietati"],"Blacklist":[null,"Lista vietati"],"Custom Group":[null,"Gruppo personalizzato"],"Allowed Quality:":[null,"Qualità permessa:"],"Preferred Quality:":[null,"Qualità preferita:"],"Filter Show Name":[null,"Filtra nome della serie TV"],"Root":[null,"Root"],"All":[null,"Tutti"],"Clear Filter(s)":[null,"Cancella Filtro(i)"],"Poster":[null,"Poster"],"Small Poster":[null,"Poster piccolo"],"Banner":[null,"Banner"],"Simple":[null,"Semplice"],"Next Episode":[null,"Prossimo episodio"],"Progress":[null,"Avanzamento"],"Direction":[null,"Direzione"],"Ascending":[null,"Crescente"],"Descending":[null,"Decrescente"],"Poster Size":[null,"Dimensione copertine"],"Continuing":[null,"Continuerà"],"Ended":[null,"Concluso"],"Total":[null,"Totale"],"Invalid date":[null,"Data non valida"],"No Network":[null,"Nessuna rete"],"Next Ep":[null,"Episodio successivo"],"Prev Ep":[null,"Episodio precedente"],"Show":[null,"Serie TV"],"Downloads":[null,"Download"],"Active":[null,"Attivo"],"loading":[null,"caricamento"],"<p><b><u>Preferred</u></b> qualities will replace those in <b><u>allowed</u></b>, even if they are lower.</p>":[null,"<p>Le qualità <b><u>Preferite</u></b> sostituiranno quelle <b><u>Consentite</u></b>, anche se inferiori.</p>"],"New":[null,"Nuovo"],"Set as Default":[null,"Imposta come predefinito"],"Remember me":[null,"Ricordami"],"Edit Selected":[null,"Modifica selezionato"],"Subtitle":[null,"Sottotitolo"],"Default Ep Status":[null,"Stato episodio predefinito"],"Update":[null,"Aggiorna"],"Rescan":[null,"Riscansiona"],"Rename":[null,"Rinomina"],"Search Subtitle":[null,"Cerca sottotitoli"],"Force Metadata Regen":[null,"Forza la rigenerazione dei Metadata"],"Snatched (Allowed)":[null,"Trovato (Permesso)"],"Jump to Show":[null,"Vai alla serie TV"],"Force Backlog":[null,"Forza ricerca di arretrati"],"Manage episodes with status":[null,"Organizza episodi con uno stato"],"Manage":[null,"Organizza"],"None of your episodes have status":[null,"Nessuno dei tuoi episodi ha uno stato"],"Shows containing":[null,"Serie TV che contengono"],"episodes":[null,"episodi"],"Set checked shows/episodes to":[null,"Imposta serie TV/episodi selezionati come"],"Go":[null,"Vai"],"Select all":[null,"Seleziona tutti"],"Clear all":[null,"Deseleziona tutti"],"Release":[null,"Versione"],"Backlog Search":[null,"Ricerca di arretrati"],"Not in progress":[null,"Non in corso"],"In Progress":[null,"In corso"],"Daily Search":[null,"Ricerca giornaliera"],"Find Propers Search":[null,"Cerca corretti"],"Propers search disabled":[null,"Ricerca corretti disabilitata"],"Subtitle Search":[null,"Ricerca sottotitoli"],"Subtitle search disabled":[null,"Ricerca sottotitoli disabilitata"],"Search Queue":[null,"Coda di ricerca"],"pending items":[null,"elementi in sospeso"],"Daily":[null,"Giornaliera"],"Manual":[null,"Manuale"],"Changing any settings marked with (<span class=\"separator\">*</span>) will force a refresh of the selected shows.":[null,"Cambiare qualsiasi impostazione segnata con (<span class=\"separator\">*</span>) causerà un aggiornamento forzato della serie TV selezionata."],"Selected Shows":[null,"Serie TV selezionate"],"Root Directories":[null,"Percorso radice"],"Current":[null,"Corrente"],"Keep":[null,"Conserva"],"Custom":[null,"Personalizzato"],"Group episodes by season folder (set to \"No\" to store in a single folder).":[null,"Raggruppa gli episodi in una cartella per stagione (\"No\" per archiviarli in singola cartella)."],"Pause these shows (SickRage will not download episodes).":[null,"Sospendere queste serie TV (SickRage non scaricherà episodi)."],"This will set the status for future episodes.":[null,"Questo imposterà lo stato per gli episodi futuri."],"Search by scene numbering (set to \"No\" to search by indexer numbering).":[null,"Ricerca per numerazione delle scene (impostare su \"No\" per usare la numerazione dell'indicizzatore)."],"Set if these shows are Anime and episodes are released as Show.265 rather than Show.S02E03":[null,"Spunta se la serie TV è un Anime ed è rilasciata come Show.265 piuttosto che Show.S02E03"],"Set if these shows are sporting or MMA events released as Show.03.02.2010 rather than Show.S02E03.":[null,"Spunta se la serie TV è un evento sportivo o MMA ed è rilasciata come Show.03.02.2010 piuttosto che Show.S02E03"],"In case of an air date conflict between regular and special episodes, the later will be ignored.":[null,"Se la data di messa in onda degli episodi standard dovesse essere in conflitto con quella degli episodi speciali allora verrá ignorata quest'ultima."],"Set if these shows are released as Show.03.02.2010 rather than Show.S02E03.":[null,"Spunta se la serie TV è rilasciata come Show.03.02.2010 piuttosto che Show.S02E03."],"Search for subtitles.":[null,"Ricerca i sottotitoli."],"All of your episodes have {subsLanguage} subtitles.":[null,"Tutti gli episodi dispongono dei sottotitoli in {subsLanguage}"],"Manage episodes without":[null,"Gestisci gli episodi che risultano"],"Episodes without {subsLanguage} subtitles.":[null,"Episodi privi di sottotitoli in {subsLanguage}."],"Episodes without {subtitleLanguage} (undefined) subtitles.":[null,"Episodi privi di sottotitoli in {subtitleLanguage} (sottitoli non identificati)."],"Download missed subtitles for selected episodes":[null,"Scarica i sottotitoli mancanti per gli episodi selezionati"],"Performing Restart":[null,"É in corso il Riavvio"],"Waiting for SickRage to shut down":[null,"In Attesa che SickRage esegua l'Arresto"],"Waiting for SickRage to start again":[null,"In attesa che SickRage si avvii nuovamente"],"Loading the default page":[null,"Caricando la pagina predefinita"],"Error: The restart has timed out, perhaps something prevented SickRage from starting again?":[null,"Attenzione: l'operazione di riavvio ha esaurito il tempo a disposizione, forse qualcosa ha impedito a SickRage di riavviarsi?"],"Key":[null,"Legenda:"],"Missed":[null,"Perso"],"Today":[null,"Oggi"],"Soon":[null,"Presto"],"Later":[null,"Prossimamente"],"Subscribe":[null,"Iscriviti al Calendario"],"Date":[null,"Data"],"View Paused":[null,"Mostra le serie TV in pausa"],"Hidden":[null,"Nascondi"],"Shown":[null,"Mostra"],"Calendar":[null,"Calendario"],"List":[null,"Lista"],"Ends":[null,"Termina"],"Next Ep Name":[null,"Titolo del prossimo episodio"],"Run time":[null,"Durata"],"Indexers":[null,"Fornitori di Informazioni"],"No shows for this day":[null,"Nessuna serie TV per questo giorno"],"Airs":[null,"Va in onda"],"Plot":[null,"Trama"],"Show Update":[null,"Aggiornamento SerieTV"],"Version Check":[null,"Controllo Aggiornamenti SW"],"Proper Finder":[null,"Ricerca Fonti"],"Post Process":[null,"Post-Elaborazione"],"Subtitles Finder":[null,"Ricerca Sottotitoli"],"Scheduler":[null,"Operazione Pianificata"],"Alive":[null,"Funziona Corettamente ?"],"Start Time":[null,"Ora di Avvio"],"Cycle Time":[null,"Intervallo di Ripetizione"],"Next Run":[null,"Prossima Esecuzione"],"Last Run":[null,"Ultima Esecuzione"],"Silent":[null,"É Silenzioso ? (senza notifiche)"],"True":[null,"Si"],"N/A":[null,"Non Disponibile"],"Show id":[null,"Id spettacolo"],"Show name":[null,"Nome programma"],"Priority":[null,"Priorità"],"Added":[null,"Aggiunto"],"Queue type":[null,"Tipo di coda"],"LOW":[null,"BASSA"],"NORMAL":[null,"NORMALE"],"HIGH":[null,"ALTA"],"Disk Space":[null,"Spazio su disco"],"Free space":[null,"Spazio libero"],"TV Download Directory":[null,"Cartella download programmi TV"],"Media Root Directories":[null,"Percorso file multimediali"],"Preview of the proposed name changes":[null,"Anteprima delle modifiche al nome"],"All Seasons":[null,"Tutte le stagioni"],"select all":[null,"seleziona tutti"],"Rename Selected":[null,"Rinomina selezionato"],"Cancel Rename":[null,"Annulla Rinomina"],"Old Location":[null,"Vecchio percorso"],"New Location":[null,"Nuovo percorso"],"Trakt API did not return any results, please check your config.":[null,"L'API di Trakt non ha prodotto nessun risultato, controlla la configurazione."],"votes":[null,"voti"],"Remove Show":[null,"Rimuovere serie TV"],"Level":[null,"Livello"],"Filter":[null,"Filtro"],"All non-absolute folder locations are relative to ":[null,"Tutti i percorsi delle cartelle non assolute sono relativi a "],"Manual Post-Processing":[null,"Post-elaborazione manuale"],"Episode Status Management":[null,"Gestione stato episodi"],"Update PLEX":[null,"Aggiornamento PLEX"],"Update KODI":[null,"Aggiornamento KODI"],"Update Emby":[null,"Aggiornamento Emby"],"Manage Torrents":[null,"Gestione Torrents"],"Missed Subtitle Management":[null,"Gestione sottotitoli mancanti"],"Help & Info":[null,"Aiuto & Informazioni"],"Backup & Restore":[null,"Backup & Ripristino"],"Tools":[null,"Strumenti"],"Support SickRage":[null,"Supporta SickRage"],"View Errors":[null,"Visualizza gli errori"],"View Warnings":[null,"Visualizza avvisi"],"View Log":[null,"Visualizza log"],"Check For Updates":[null,"Controlla aggiornamenti"],"Restart":[null,"Riavvia"],"Shutdown":[null,"Chiudi"],"Logout":[null,"Disconnetti"],"Server Status":[null,"Stato del server"],"View overview of snatched episodes":[null,"Guarda panoramica degli episodi trovati"],"Episodes Downloaded":[null,"Episodi scaricati"],"Memory used":[null,"Memoria utilizzata"],"Load time":[null,"Tempo di caricamento"],"Branch":[null,"Versione"],"Now":[null,"Ora"]}}}} \ No newline at end of file diff --git a/locale/it_IT/LC_MESSAGES/messages.mo b/locale/it_IT/LC_MESSAGES/messages.mo index b75f4c6937bb073dbcc796ccbe1ca52363b0145d..d05b696dc387d8510cd06c877adf459d4fbe3740 100644 Binary files a/locale/it_IT/LC_MESSAGES/messages.mo and b/locale/it_IT/LC_MESSAGES/messages.mo differ diff --git a/locale/it_IT/LC_MESSAGES/messages.po b/locale/it_IT/LC_MESSAGES/messages.po index affd3028ef83a319e1edf1c2216fd9433c705975..5c3df964e7958cee56d6cc896a4e21cadaffda5d 100644 --- a/locale/it_IT/LC_MESSAGES/messages.po +++ b/locale/it_IT/LC_MESSAGES/messages.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: sickrage\n" "Report-Msgid-Bugs-To: miigotu@gmail.com\n" -"POT-Creation-Date: 2017-03-25 09:28-0700\n" -"PO-Revision-Date: 2017-03-25 12:29-0400\n" +"POT-Creation-Date: 2017-03-28 09:10-0700\n" +"PO-Revision-Date: 2017-03-28 12:12-0400\n" "Last-Translator: miigotu <miigotu@gmail.com>\n" "Language-Team: Italian\n" "MIME-Version: 1.0\n" @@ -90,7 +90,7 @@ msgid "Biography" msgstr "Biografia" #: gui/slick/views/config_general.mako:78 gui/slick/views/layouts/main.mako:145 -#: sickbeard/__init__.py:79 sickbeard/webserve.py:3807 +#: sickbeard/__init__.py:79 sickbeard/webserve.py:3778 msgid "History" msgstr "Cronologia" @@ -103,7 +103,7 @@ msgid "Western" msgstr "Western" #: gui/slick/views/config_general.mako:79 gui/slick/views/layouts/main.mako:221 -#: sickbeard/__init__.py:80 sickbeard/webserve.py:2385 +#: sickbeard/__init__.py:80 sickbeard/webserve.py:2384 msgid "News" msgstr "Notizie" @@ -238,6 +238,34 @@ msgstr "Ignorato" msgid "Subtitled" msgstr "Sottotitolato" +#: sickbeard/helpers.py:1887 +msgid "For best results please set the Download Station alias as" +msgstr "Per ottenere i migliori risultati si prega di impostare l'alias di Download Station come" + +#: sickbeard/helpers.py:1888 +msgid "You can check this setting in the Synology DSM" +msgstr "È possibile controllare questa impostazione in Synology DSM" + +#: sickbeard/helpers.py:1888 sickbeard/helpers.py:1890 +msgid "Control Panel" +msgstr "Pannello di controllo" + +#: sickbeard/helpers.py:1888 +msgid "Application Portal" +msgstr "Portale applicazione" + +#: sickbeard/helpers.py:1889 +msgid "Make sure you allow DSM to be embedded with iFrames too in" +msgstr "Assicuratevi di permettere a DSM di essere incorporato con iFrames" + +#: sickbeard/helpers.py:1890 +msgid "DSM Settings" +msgstr "Impostazioni del DSM" + +#: sickbeard/helpers.py:1890 +msgid "Security" +msgstr "Sicurezza" + #: sickbeard/logger.py:474 msgid "<No Filter>" msgstr "<nessun filtro>" @@ -308,15 +336,15 @@ msgstr "Trakt Checker" msgid "Event" msgstr "Evento" -#: sickbeard/logger.py:491 sickbeard/webserve.py:1339 sickbeard/webserve.py:1342 -#: sickbeard/webserve.py:1520 sickbeard/webserve.py:1529 sickbeard/webserve.py:1717 -#: sickbeard/webserve.py:1728 sickbeard/webserve.py:1751 sickbeard/webserve.py:1764 -#: sickbeard/webserve.py:1769 sickbeard/webserve.py:1785 sickbeard/webserve.py:1790 -#: sickbeard/webserve.py:1854 sickbeard/webserve.py:1857 sickbeard/webserve.py:1863 -#: sickbeard/webserve.py:1866 sickbeard/webserve.py:1873 sickbeard/webserve.py:1876 -#: sickbeard/webserve.py:1899 sickbeard/webserve.py:1997 sickbeard/webserve.py:2002 -#: sickbeard/webserve.py:2007 sickbeard/webserve.py:2036 sickbeard/webserve.py:2040 -#: sickbeard/webserve.py:2045 +#: sickbeard/logger.py:491 sickbeard/webserve.py:1338 sickbeard/webserve.py:1341 +#: sickbeard/webserve.py:1519 sickbeard/webserve.py:1528 sickbeard/webserve.py:1716 +#: sickbeard/webserve.py:1727 sickbeard/webserve.py:1750 sickbeard/webserve.py:1763 +#: sickbeard/webserve.py:1768 sickbeard/webserve.py:1784 sickbeard/webserve.py:1789 +#: sickbeard/webserve.py:1853 sickbeard/webserve.py:1856 sickbeard/webserve.py:1862 +#: sickbeard/webserve.py:1865 sickbeard/webserve.py:1872 sickbeard/webserve.py:1875 +#: sickbeard/webserve.py:1898 sickbeard/webserve.py:1996 sickbeard/webserve.py:2001 +#: sickbeard/webserve.py:2006 sickbeard/webserve.py:2035 sickbeard/webserve.py:2039 +#: sickbeard/webserve.py:2044 msgid "Error" msgstr "Errore" @@ -333,6 +361,7 @@ msgstr "Processo" msgid "Main" msgstr "Principale" +#: gui/slick/js/ajaxEpSearch.js:146 gui/slick/js/ajaxEpSearch.js:147 #: gui/slick/views/inc_home_showList.mako:27 sickbeard/show_queue.py:298 msgid "Loading" msgstr "Caricamento" @@ -372,867 +401,835 @@ msgstr "Backup della configurazione fallito, annullo l'aggiornamento" msgid "No update needed" msgstr "Aggiornamento non necessario" -#: sickbeard/webserve.py:170 +#: sickbeard/webserve.py:171 msgid "Mako Error" msgstr "Errore di Mako" -#: sickbeard/webserve.py:195 +#: sickbeard/webserve.py:196 msgid "Oops" msgstr "Oops" -#: sickbeard/webserve.py:197 +#: sickbeard/webserve.py:198 msgid "Wrong API key used" msgstr "API Key usata non corretta" -#: gui/slick/views/login.mako:34 sickbeard/webserve.py:302 +#: gui/slick/views/login.mako:34 sickbeard/webserve.py:303 msgid "Login" msgstr "Login" -#: sickbeard/webserve.py:406 +#: sickbeard/webserve.py:392 msgid "API Key not generated" msgstr "API key non generata" -#: sickbeard/webserve.py:409 +#: sickbeard/webserve.py:395 msgid "API Builder" msgstr "API Builder" #: gui/slick/views/config_general.mako:77 gui/slick/views/layouts/main.mako:141 -#: sickbeard/webserve.py:512 +#: sickbeard/webserve.py:498 msgid "Schedule" msgstr "Calendario" -#: sickbeard/webserve.py:610 +#: sickbeard/webserve.py:609 msgid "Test 1" msgstr "Prova 1" -#: sickbeard/webserve.py:610 +#: sickbeard/webserve.py:609 msgid "This is test number 1" msgstr "Questo è il test numero 1" -#: sickbeard/webserve.py:611 +#: sickbeard/webserve.py:610 msgid "Test 2" msgstr "Prova 2" -#: sickbeard/webserve.py:611 +#: sickbeard/webserve.py:610 msgid "This is test number 2" msgstr "Questo è il test numero 2" -#: sickbeard/webserve.py:634 +#: sickbeard/webserve.py:633 msgid "You're using the {branch} branch. Please use 'master' unless specifically asked" msgstr "Stai usando la versione {branch}. Per favore usa 'master' a meno che non ti sia chiesto" -#: sickbeard/webserve.py:698 sickbeard/webserve.py:703 +#: sickbeard/webserve.py:697 sickbeard/webserve.py:702 msgid "Invalid show parameters" msgstr "Parametri non validi per la Serie TV" -#: sickbeard/webserve.py:710 +#: sickbeard/webserve.py:709 msgid "Invalid parameters" msgstr "Parametri invalidi" -#: sickbeard/webserve.py:713 sickbeard/webserve.py:1899 +#: sickbeard/webserve.py:712 sickbeard/webserve.py:1898 msgid "Episode couldn't be retrieved" msgstr "L'episodio non è stato trovato" -#: sickbeard/webserve.py:759 sickbeard/webserve.py:1268 sickbeard/webserve.py:1297 +#: sickbeard/webserve.py:758 sickbeard/webserve.py:1267 sickbeard/webserve.py:1296 msgid "Home" msgstr "Home" -#: gui/slick/views/layouts/main.mako:127 sickbeard/webserve.py:759 +#: gui/slick/views/layouts/main.mako:127 sickbeard/webserve.py:758 msgid "Show List" msgstr "Lista Serie TV" -#: sickbeard/webserve.py:807 +#: sickbeard/webserve.py:806 msgid "Error: Unsupported Request. Send jsonp request with 'callback' variable in the query string." msgstr "Errore: Richiesta non supportata. Invia richiesta jsonp con variabile 'callback' nella stringa di query." -#: sickbeard/webserve.py:851 +#: sickbeard/webserve.py:850 msgid "Success. Connected and authenticated" msgstr "Successo. Connesso e autenticato" -#: sickbeard/webserve.py:853 +#: sickbeard/webserve.py:852 msgid "Authentication failed. SABnzbd expects" msgstr "Autenticazione fallita. SABnzbd si aspetta" -#: sickbeard/webserve.py:853 +#: sickbeard/webserve.py:852 msgid "as authentication method" msgstr "come metodo di autenticazione" -#: sickbeard/webserve.py:855 +#: sickbeard/webserve.py:854 msgid "Unable to connect to host" msgstr "Impossibile connettersi all'host" -#: sickbeard/webserve.py:876 +#: sickbeard/webserve.py:875 msgid "SMS sent successfully" msgstr "SMS inviato con successo" -#: sickbeard/webserve.py:878 +#: sickbeard/webserve.py:877 msgid "Problem sending SMS: {message}" msgstr "C'è un problema con la spedizione dell'SMS: {message}" -#: sickbeard/webserve.py:885 +#: sickbeard/webserve.py:884 msgid "Telegram notification succeeded. Check your Telegram clients to make sure it worked" msgstr "Notifica Telegram inviata correttamente. Verifica il tuo client Telegram per essere sicuro che abbia funzionato" -#: sickbeard/webserve.py:887 +#: sickbeard/webserve.py:886 msgid "Error sending Telegram notification: {message}" msgstr "Errore durante l'invio della notifica Telegram: {message}" -#: sickbeard/webserve.py:894 +#: sickbeard/webserve.py:893 msgid "join notification succeeded. Check your join clients to make sure it worked" msgstr "Notifica join inviata correttamente. Verifica il tuo client join per essere sicuro che abbia funzionato" -#: sickbeard/webserve.py:896 +#: sickbeard/webserve.py:895 msgid "Error sending join notification: {message}" msgstr "Errore durante l'invio della notifica join: {message}" -#: sickbeard/webserve.py:906 +#: sickbeard/webserve.py:905 msgid " with password" msgstr " con password" -#: sickbeard/webserve.py:908 +#: sickbeard/webserve.py:907 msgid "Registered and Tested growl successfully {growl_host}" msgstr "Growl registrato e testato con successo {growl_host}" -#: sickbeard/webserve.py:910 +#: sickbeard/webserve.py:909 msgid "Registration and Testing of growl failed {growl_host}" msgstr "Registrazione e test di Growl non riuscita {growl_host}" -#: sickbeard/webserve.py:917 +#: sickbeard/webserve.py:916 msgid "Test prowl notice sent successfully" msgstr "Test della notifica di Prowl avvenuta con successo" -#: sickbeard/webserve.py:919 +#: sickbeard/webserve.py:918 msgid "Test prowl notice failed" msgstr "Test notifica di Prowl non riuscita" -#: sickbeard/webserve.py:926 +#: sickbeard/webserve.py:925 msgid "Boxcar2 notification succeeded. Check your Boxcar2 clients to make sure it worked" msgstr "La notifica Boxcar2 è riuscita. Verifica il tuo client di Boxcar2 per assicurarsi che abbia funzionato" -#: sickbeard/webserve.py:928 +#: sickbeard/webserve.py:927 msgid "Error sending Boxcar2 notification" msgstr "Errore durante l'invio di notifica Boxcar2" -#: sickbeard/webserve.py:935 +#: sickbeard/webserve.py:934 msgid "Pushover notification succeeded. Check your Pushover clients to make sure it worked" msgstr "Notifica di Pushover riuscita. Verifica il tuo client di Pushover per assicurarsi che abbia funzionato" -#: sickbeard/webserve.py:937 +#: sickbeard/webserve.py:936 msgid "Error sending Pushover notification" msgstr "Errore durante invio notifica Pushover" -#: sickbeard/webserve.py:949 +#: sickbeard/webserve.py:948 msgid "Key verification successful" msgstr "Chiave verificata con successo" -#: sickbeard/webserve.py:951 +#: sickbeard/webserve.py:950 msgid "Unable to verify key" msgstr "Impossibile verificare la chiave" -#: sickbeard/webserve.py:958 +#: sickbeard/webserve.py:957 msgid "Tweet successful, check your twitter to make sure it worked" msgstr "Tweet creato, controlla il tuo twitter per assicurarti che abbia funzionato" -#: sickbeard/webserve.py:960 +#: sickbeard/webserve.py:959 msgid "Error sending tweet" msgstr "Errore nell'invio del tweet" -#: sickbeard/webserve.py:965 +#: sickbeard/webserve.py:964 msgid "Please enter a valid account sid" msgstr "Inserisci un sid account valido" -#: sickbeard/webserve.py:968 +#: sickbeard/webserve.py:967 msgid "Please enter a valid auth token" msgstr "Inserire un \"auth token\" valido" -#: sickbeard/webserve.py:971 +#: sickbeard/webserve.py:970 msgid "Please enter a valid phone sid" msgstr "Inserisci un sid telefonico valido" -#: sickbeard/webserve.py:974 +#: sickbeard/webserve.py:973 msgid "Please format the phone number as \"+1-###-###-####\"" msgstr "Il numero di telefono deve essere nel formato \"+1-###-###-####\"" -#: sickbeard/webserve.py:978 +#: sickbeard/webserve.py:977 msgid "Authorization successful and number ownership verified" msgstr "Autorizzato correttamente e verificata la proprietà del numero telefonico" -#: sickbeard/webserve.py:980 +#: sickbeard/webserve.py:979 msgid "Error sending sms" msgstr "Errore nell'invio dell'sms" -#: sickbeard/webserve.py:986 +#: sickbeard/webserve.py:985 msgid "Slack message successful" msgstr "Notifica inviata correttamente a Slack" -#: sickbeard/webserve.py:988 +#: sickbeard/webserve.py:987 msgid "Slack message failed" msgstr "L'invio della notifica a Slack é fallito" -#: sickbeard/webserve.py:994 +#: sickbeard/webserve.py:993 msgid "Discord message successful" msgstr "Messaggio Discord inviato" -#: sickbeard/webserve.py:996 +#: sickbeard/webserve.py:995 msgid "Discord message failed" msgstr "Messaggio discord fallito" -#: sickbeard/webserve.py:1006 +#: sickbeard/webserve.py:1005 msgid "Test KODI notice sent successfully to {kodi_host}" msgstr "Test della notifica KODI inviato con successo alla {kodi_host}" -#: sickbeard/webserve.py:1008 +#: sickbeard/webserve.py:1007 msgid "Test KODI notice failed to {kodi_host}" msgstr "Test della notifica di KODI fallita con l'istanza {kodi_host}" -#: sickbeard/webserve.py:1023 +#: sickbeard/webserve.py:1022 msgid "Successful test notice sent to Plex Home Theater ... {plex_clients}" msgstr "Comunicazione di test inviata a Plex Home Theater... {plex_clients}" -#: sickbeard/webserve.py:1025 +#: sickbeard/webserve.py:1024 msgid "Test failed for Plex Home Theater ... {plex_clients}" msgstr "Test non riuscito per Plex Home Theater... {plex_clients}" -#: sickbeard/webserve.py:1028 +#: sickbeard/webserve.py:1027 msgid "Tested Plex Home Theater(s)" msgstr "Testati Plex Home Theater(s)" -#: sickbeard/webserve.py:1042 +#: sickbeard/webserve.py:1041 msgid "Successful test of Plex Media Server(s) ... {plex_servers}" msgstr "Test riuscito di Plex Media Server... {plex_servers}" -#: sickbeard/webserve.py:1044 +#: sickbeard/webserve.py:1043 msgid "Test failed, No Plex Media Server host specified" msgstr "Test non riuscito, Nessun host Plex Media Server specificato" -#: sickbeard/webserve.py:1046 +#: sickbeard/webserve.py:1045 msgid "Test failed for Plex Media Server(s) ... {plex_servers}" msgstr "Test non riuscito per Plex Media Server... {plex_servers}" -#: sickbeard/webserve.py:1049 +#: sickbeard/webserve.py:1048 msgid "Tested Plex Media Server host(s)" msgstr "Testati host(s) Plex Media Server" -#: sickbeard/webserve.py:1057 +#: sickbeard/webserve.py:1056 msgid "Tried sending desktop notification via libnotify" msgstr "Provato l'invio di notifica del desktop tramite libnotify" -#: sickbeard/webserve.py:1066 +#: sickbeard/webserve.py:1065 msgid "Test notice sent successfully to {emby_host}" msgstr "Notifica di prova inviata correttamente a {emby_host}" -#: sickbeard/webserve.py:1068 +#: sickbeard/webserve.py:1067 msgid "Test notice failed to {emby_host}" msgstr "Notifica di prova a {emby_host} non riuscita" -#: sickbeard/webserve.py:1076 +#: sickbeard/webserve.py:1075 msgid "Successfully started the scan update" msgstr "Avviato con successo l'aggiornamento" -#: sickbeard/webserve.py:1078 +#: sickbeard/webserve.py:1077 msgid "Test failed to start the scan update" msgstr "Test non riuscito per l'avvio aggiornamento" -#: sickbeard/webserve.py:1097 +#: sickbeard/webserve.py:1096 msgid "Test notice sent successfully to {nmj2_host}" msgstr "Test inviato correttamente a {nmj2_host}" -#: sickbeard/webserve.py:1099 +#: sickbeard/webserve.py:1098 msgid "Test notice failed to {nmj2_host}" msgstr "Invio test non riuscito verso {nmj2_host}" -#: sickbeard/webserve.py:1119 +#: sickbeard/webserve.py:1118 msgid "Trakt Authorized" msgstr "Trakt autorizzato" -#: sickbeard/webserve.py:1120 +#: sickbeard/webserve.py:1119 msgid "Trakt Not Authorized!" msgstr "Trakt non autorizzato!" -#: sickbeard/webserve.py:1184 +#: sickbeard/webserve.py:1183 msgid "Test email sent successfully! Check inbox." msgstr "Prova e-mail inviata con successo! Controlla la posta in arrivo." -#: sickbeard/webserve.py:1186 +#: sickbeard/webserve.py:1185 msgid "ERROR: {last_error}" msgstr "ERRORE: {last_error}" -#: sickbeard/webserve.py:1193 +#: sickbeard/webserve.py:1192 msgid "Test NMA notice sent successfully" msgstr "Prova NMA inviata con successo" -#: sickbeard/webserve.py:1195 +#: sickbeard/webserve.py:1194 msgid "Test NMA notice failed" msgstr "Prova NMA non riuscita" -#: sickbeard/webserve.py:1202 +#: sickbeard/webserve.py:1201 msgid "Pushalot notification succeeded. Check your Pushalot clients to make sure it worked" msgstr "Notifica di Pushalot riuscita. Verifica il tuo client di Pushalot per assicurarti che abbia funzionato" -#: sickbeard/webserve.py:1204 +#: sickbeard/webserve.py:1203 msgid "Error sending Pushalot notification" msgstr "Errore durante l'invio di notifica Pushalot" -#: sickbeard/webserve.py:1211 +#: sickbeard/webserve.py:1210 msgid "Pushbullet notification succeeded. Check your device to make sure it worked" msgstr "Notifica Pushbullet riuscita. Controlla il dispositivo per assicurarti che abbia funzionato" -#: sickbeard/webserve.py:1213 sickbeard/webserve.py:1223 sickbeard/webserve.py:1232 +#: sickbeard/webserve.py:1212 sickbeard/webserve.py:1222 sickbeard/webserve.py:1231 msgid "Error sending Pushbullet notification" msgstr "Errore durante l'invio della notifica di Pushbullet" #: gui/slick/views/displayShow.mako:436 gui/slick/views/inc_home_showList.mako:174 -#: gui/slick/views/manage.mako:49 sickbeard/webserve.py:1249 +#: gui/slick/views/manage.mako:49 sickbeard/webserve.py:1248 msgid "Status" msgstr "Stato" -#: sickbeard/webserve.py:1268 sickbeard/webserve.py:1297 +#: sickbeard/webserve.py:1267 sickbeard/webserve.py:1296 msgid "Restarting SickRage" msgstr "Riavvio di Sickrage" -#: sickbeard/webserve.py:1300 +#: sickbeard/webserve.py:1299 msgid "Update Failed" msgstr "Aggiornamento fallito" -#: sickbeard/webserve.py:1301 +#: sickbeard/webserve.py:1300 msgid "Update wasn't successful, not restarting. Check your log for more information." msgstr "Non è stato possibile effettuare l'aggiornamento. Controlla il log per maggiori informazioni." -#: sickbeard/webserve.py:1308 +#: sickbeard/webserve.py:1307 msgid "Checking out branch" msgstr "Check-out del ramo" -#: sickbeard/webserve.py:1311 +#: sickbeard/webserve.py:1310 msgid "Already on branch" msgstr "Già sul ramo" -#: sickbeard/webserve.py:1339 +#: sickbeard/webserve.py:1338 msgid "Invalid show ID: {show}" msgstr "Codice show non valido: {show}" -#: sickbeard/webserve.py:1342 sickbeard/webserve.py:1871 sickbeard/webserve.py:2002 -#: sickbeard/webserve.py:2040 +#: sickbeard/webserve.py:1341 sickbeard/webserve.py:1870 sickbeard/webserve.py:2001 +#: sickbeard/webserve.py:2039 msgid "Show not in show list" msgstr "Show non presente nell'elenco" #: gui/slick/views/inc_rootDirs.mako:31 gui/slick/views/manage.mako:38 -#: gui/slick/views/manage_massEdit.mako:74 sickbeard/webserve.py:1358 -#: sickbeard/webserve.py:2027 +#: gui/slick/views/manage_massEdit.mako:74 sickbeard/webserve.py:1357 +#: sickbeard/webserve.py:2026 msgid "Edit" msgstr "Modifica" -#: sickbeard/webserve.py:1368 +#: sickbeard/webserve.py:1367 msgid "This show is in the process of being downloaded - the info below is incomplete." msgstr "Questa Serie TV è in procinto di essere scaricata - le informazioni sottostanti sono incomplete." -#: sickbeard/webserve.py:1371 +#: sickbeard/webserve.py:1370 msgid "The information on this page is in the process of being updated." msgstr "Le informazioni su questa pagina sono in fase di aggiornamento." -#: sickbeard/webserve.py:1374 +#: sickbeard/webserve.py:1373 msgid "The episodes below are currently being refreshed from disk" msgstr "Gli episodi qui sotto sono attualmente in corso di aggiornamento dal disco" -#: sickbeard/webserve.py:1377 +#: sickbeard/webserve.py:1376 msgid "Currently downloading subtitles for this show" msgstr "I sottotitoli per questa Serie TV sono in fase di salvataggio" -#: sickbeard/webserve.py:1380 +#: sickbeard/webserve.py:1379 msgid "This show is queued to be refreshed." msgstr "Questa Serie TV é in procinto di essere aggiornata." -#: sickbeard/webserve.py:1383 +#: sickbeard/webserve.py:1382 msgid "This show is queued and awaiting an update." msgstr "Questa Serie TV é in attesa di essere aggiornata." -#: sickbeard/webserve.py:1386 +#: sickbeard/webserve.py:1385 msgid "This show is queued and awaiting subtitles download." msgstr "Questa Serie TV é in attesa che vengano scaricati i sottotitoli corrispondenti." -#: gui/slick/js/core.js:4081 sickbeard/webserve.py:1391 +#: gui/slick/js/core.js:4081 sickbeard/webserve.py:1390 msgid "Resume" msgstr "Riprendi" #: gui/slick/js/core.js:4081 gui/slick/views/viewlogs.mako:12 -#: sickbeard/webserve.py:1393 +#: sickbeard/webserve.py:1392 msgid "Pause" msgstr "Pausa" #: gui/slick/views/editShow.mako:345 gui/slick/views/inc_blackwhitelist.mako:40 #: gui/slick/views/inc_blackwhitelist.mako:85 gui/slick/views/manage.mako:58 -#: gui/slick/views/manage_failedDownloads.mako:43 sickbeard/webserve.py:1395 +#: gui/slick/views/manage_failedDownloads.mako:43 sickbeard/webserve.py:1394 msgid "Remove" msgstr "Elimina" -#: sickbeard/webserve.py:1396 +#: sickbeard/webserve.py:1395 msgid "Re-scan files" msgstr "Nuova scansione dei files" -#: sickbeard/webserve.py:1397 +#: sickbeard/webserve.py:1396 msgid "Force Full Update" msgstr "Forza aggiornamento" -#: sickbeard/webserve.py:1398 +#: sickbeard/webserve.py:1397 msgid "Update show in KODI" msgstr "Aggiorna Serie TV in Kodi" -#: sickbeard/webserve.py:1399 +#: sickbeard/webserve.py:1398 msgid "Update show in Emby" msgstr "Aggiorna show in Emby" -#: sickbeard/webserve.py:1402 +#: sickbeard/webserve.py:1401 msgid "Hide specials" msgstr "Nascondi gli episodi speciali" -#: sickbeard/webserve.py:1404 +#: sickbeard/webserve.py:1403 msgid "Show specials" msgstr "Mostra gli episodi speciali" -#: sickbeard/webserve.py:1406 sickbeard/webserve.py:2030 sickbeard/webserve.py:2031 +#: sickbeard/webserve.py:1405 sickbeard/webserve.py:2029 sickbeard/webserve.py:2030 msgid "Preview Rename" msgstr "Anteprima rinomina" -#: sickbeard/webserve.py:1409 +#: sickbeard/webserve.py:1408 msgid "Download Subtitles" msgstr "Scarica i sottotitoli" -#: sickbeard/webserve.py:1498 +#: sickbeard/webserve.py:1497 msgid "No scene exceptions" msgstr "Senza eccezioni di scena" -#: sickbeard/webserve.py:1516 sickbeard/webserve.py:1764 sickbeard/webserve.py:1785 +#: sickbeard/webserve.py:1515 sickbeard/webserve.py:1763 sickbeard/webserve.py:1784 msgid "Invalid show ID" msgstr "Show ID non valido" -#: sickbeard/webserve.py:1525 sickbeard/webserve.py:1769 sickbeard/webserve.py:1790 +#: sickbeard/webserve.py:1524 sickbeard/webserve.py:1768 sickbeard/webserve.py:1789 msgid "Unable to find the specified show" msgstr "Impossibile trovare la Serie TV specificata" -#: sickbeard/webserve.py:1550 +#: sickbeard/webserve.py:1549 msgid "Unable to retreive Fansub Groups from AniDB." msgstr "Impossibile recuperare gruppi Fansub da AniDB." -#: sickbeard/webserve.py:1559 sickbeard/webserve.py:1561 +#: sickbeard/webserve.py:1558 sickbeard/webserve.py:1560 msgid "Edit Show" msgstr "Impostazioni Show" -#: sickbeard/webserve.py:1637 sickbeard/webserve.py:1671 +#: sickbeard/webserve.py:1636 sickbeard/webserve.py:1670 msgid "Unable to refresh this show: {error}" msgstr "Impossibile aggiornare questa Serie TV: {error}" -#: sickbeard/webserve.py:1663 +#: sickbeard/webserve.py:1662 msgid "New location <tt>{location}</tt> does not exist" msgstr "La nuova posizione <tt>{location}</tt> non esiste" -#: sickbeard/webserve.py:1688 +#: sickbeard/webserve.py:1687 msgid "Unable to update show: {error}" msgstr "Impossibile aggiornare show: {error}" -#: sickbeard/webserve.py:1695 +#: sickbeard/webserve.py:1694 msgid "Unable to force an update on scene exceptions of the show." msgstr "Non é stato possibile eseguire un aggiornamento forzato per le eccezioni delle scene di questa Serie TV" -#: sickbeard/webserve.py:1702 +#: sickbeard/webserve.py:1701 msgid "Unable to force an update on scene numbering of the show." msgstr "Non é stato possibile eseguire un aggiornamento forzato sulla numerazione delle scene di questa Serie TV" -#: sickbeard/webserve.py:1708 sickbeard/webserve.py:3540 +#: sickbeard/webserve.py:1707 sickbeard/webserve.py:3539 msgid "{num_errors:d} error{plural} while saving changes:" msgstr "{num_errors:d} error{plural} durante il salvataggio delle modifiche:" -#: sickbeard/webserve.py:1719 +#: sickbeard/webserve.py:1718 msgid "{show_name} has been {paused_resumed}" msgstr "{show_name} è stato {paused_resumed}" -#: sickbeard/webserve.py:1719 +#: sickbeard/webserve.py:1718 msgid "resumed" msgstr "ripreso" -#: sickbeard/webserve.py:1719 +#: sickbeard/webserve.py:1718 msgid "paused" msgstr "in pausa" -#: sickbeard/webserve.py:1731 +#: sickbeard/webserve.py:1730 msgid "{show_name} has been {deleted_trashed} {was_deleted}" msgstr "{show_name} è stato {deleted_trashed} {was_deleted}" -#: sickbeard/webserve.py:1733 +#: sickbeard/webserve.py:1732 msgid "deleted" msgstr "eliminato" -#: sickbeard/webserve.py:1733 +#: sickbeard/webserve.py:1732 msgid "trashed" msgstr "cestinato" -#: sickbeard/webserve.py:1734 +#: sickbeard/webserve.py:1733 msgid "(media untouched)" msgstr "(contenuti intatti)" -#: sickbeard/webserve.py:1734 +#: sickbeard/webserve.py:1733 msgid "(with all related media)" msgstr "(con tutti i relativi contenuti)" -#: sickbeard/webserve.py:1755 +#: sickbeard/webserve.py:1754 msgid "Unable to refresh this show." msgstr "Impossibile ricaricare questo show." -#: sickbeard/webserve.py:1775 +#: sickbeard/webserve.py:1774 msgid "Unable to update this show." msgstr "Impossibile aggiornare questo show." -#: sickbeard/webserve.py:1814 +#: sickbeard/webserve.py:1813 msgid "Library update command sent to KODI host(s)): {kodi_hosts}" msgstr "Comando di aggiornamento libreria inviato a KODI host(s)): {kodi_hosts}" -#: sickbeard/webserve.py:1816 +#: sickbeard/webserve.py:1815 msgid "Unable to contact one or more KODI host(s)): {kodi_hosts}" msgstr "Impossibile contattare uno o più KODI host(s)): {kodi_hosts}" -#: sickbeard/webserve.py:1825 +#: sickbeard/webserve.py:1824 msgid "Library update command sent to Plex Media Server host: {plex_server}" msgstr "Comando di aggiornamento libreria inviato a Plex Media Server host: {plex_server}" -#: sickbeard/webserve.py:1828 +#: sickbeard/webserve.py:1827 msgid "Unable to contact Plex Media Server host: {plex_server}" msgstr "Impossibile contattare il Plex Media Server host: {plex_server}" -#: sickbeard/webserve.py:1840 +#: sickbeard/webserve.py:1839 msgid "Library update command sent to Emby host: {emby_host}" msgstr "Comando di aggiornamento libreria inviato a Emby host: {emby_host}" -#: sickbeard/webserve.py:1842 +#: sickbeard/webserve.py:1841 msgid "Unable to contact Emby host: {emby_host}" msgstr "Impossibile contattare Emby host: {emby_host}" -#: sickbeard/webserve.py:1852 sickbeard/webserve.py:2036 +#: sickbeard/webserve.py:1851 sickbeard/webserve.py:2035 msgid "You must specify a show and at least one episode" msgstr "È necessario specificare uno show e almeno un episodio" -#: sickbeard/webserve.py:1861 +#: sickbeard/webserve.py:1860 msgid "Invalid status" msgstr "Stato non valido" -#: sickbeard/webserve.py:1954 +#: sickbeard/webserve.py:1953 msgid "Backlog was automatically started for the following seasons of <b>{show_name}</b>" msgstr "La ricerca di arretrati è stata avviata automaticamente per le seguenti stagioni di <b>{show_name}</b>" #: gui/slick/views/displayShow.mako:74 gui/slick/views/displayShow.mako:79 -#: gui/slick/views/displayShow.mako:404 sickbeard/webserve.py:1961 -#: sickbeard/webserve.py:1980 +#: gui/slick/views/displayShow.mako:404 sickbeard/webserve.py:1960 +#: sickbeard/webserve.py:1979 msgid "Season" msgstr "Stagione" -#: sickbeard/webserve.py:1968 +#: sickbeard/webserve.py:1967 msgid "Backlog started" msgstr "Ricerca di arretrati iniziata" -#: sickbeard/webserve.py:1973 +#: sickbeard/webserve.py:1972 msgid "Retrying Search was automatically started for the following season of <b>{show_name}</b>" msgstr "Nuovo tentativo di ricerca avviato automaticamente per le seguenti stagioni di <b>{show_name}</b>" -#: sickbeard/webserve.py:1987 +#: sickbeard/webserve.py:1986 msgid "Retry Search started" msgstr "Nuovo tentativi di ricerca iniziato" -#: sickbeard/webserve.py:1997 +#: sickbeard/webserve.py:1996 msgid "You must specify a show" msgstr "È necessario specificare uno show" -#: sickbeard/webserve.py:2007 sickbeard/webserve.py:2045 +#: sickbeard/webserve.py:2006 sickbeard/webserve.py:2044 msgid "Can't rename episodes when the show dir is missing." msgstr "Impossibile rinominare episodi quando manca la cartella dello show." -#: sickbeard/webserve.py:2212 sickbeard/webserve.py:2233 +#: sickbeard/webserve.py:2211 sickbeard/webserve.py:2232 msgid "New subtitles downloaded: {new_subtitle_languages}" msgstr "Nuovi sottotitoli scaricati: {new_subtitle_languages}" -#: sickbeard/webserve.py:2215 sickbeard/webserve.py:2236 +#: sickbeard/webserve.py:2214 sickbeard/webserve.py:2235 msgid "No subtitles downloaded" msgstr "Nessun sottotitolo scaricato" #: gui/slick/views/config_general.mako:80 gui/slick/views/layouts/main.mako:222 -#: sickbeard/webserve.py:2363 +#: sickbeard/webserve.py:2362 msgid "IRC" msgstr "IRC" -#: sickbeard/webserve.py:2376 +#: sickbeard/webserve.py:2375 msgid "Could not load news from the repo. [Click here for news.md])({news_url})" msgstr "Impossibile caricare le notizie dal repo. [Clicca qui per news.md]) ({news_url})" -#: sickbeard/webserve.py:2383 sickbeard/webserve.py:2401 +#: sickbeard/webserve.py:2382 sickbeard/webserve.py:2400 msgid "The was a problem connecting to github, please refresh and try again" msgstr "Si è verificato un problema di connessione a github, si prega di aggiornare e riprovare" -#: sickbeard/webserve.py:2398 +#: sickbeard/webserve.py:2397 msgid "Could not load changes from the repo. [Click here for CHANGES.md]({changes_url})" msgstr "Impossibile caricare le modifiche dal repo. [Clicca qui per CHANGES.md] ({changes_url})" -#: gui/slick/views/layouts/main.mako:223 sickbeard/webserve.py:2403 +#: gui/slick/views/layouts/main.mako:223 sickbeard/webserve.py:2402 msgid "Changelog" msgstr "Changelog" -#: gui/slick/views/layouts/main.mako:190 sickbeard/webserve.py:2413 -#: sickbeard/webserve.py:3855 sickbeard/webserve.py:4341 +#: gui/slick/views/layouts/main.mako:190 sickbeard/webserve.py:2412 +#: sickbeard/webserve.py:3826 sickbeard/webserve.py:4312 msgid "Post Processing" msgstr "Post-elaborazione" -#: gui/slick/views/layouts/main.mako:128 sickbeard/webserve.py:2445 +#: gui/slick/views/layouts/main.mako:128 sickbeard/webserve.py:2444 msgid "Add Shows" msgstr "Aggiungi Serie TV" -#: sickbeard/webserve.py:2510 +#: sickbeard/webserve.py:2509 msgid "No folders selected." msgstr "Nessuna cartella selezionata." -#: sickbeard/webserve.py:2632 +#: sickbeard/webserve.py:2631 msgid "New Show" msgstr "Nuovo Show" -#: sickbeard/webserve.py:2647 +#: sickbeard/webserve.py:2646 msgid "Trending Shows" msgstr "Serie TV di tendenza" -#: sickbeard/webserve.py:2649 sickbeard/webserve.py:2772 +#: sickbeard/webserve.py:2648 sickbeard/webserve.py:2771 msgid "Popular Shows" msgstr "Serie TV popolari" -#: sickbeard/webserve.py:2651 sickbeard/webserve.py:2665 +#: sickbeard/webserve.py:2650 sickbeard/webserve.py:2664 msgid "Most Anticipated Shows" msgstr "Serie TV più attese" -#: sickbeard/webserve.py:2653 +#: sickbeard/webserve.py:2652 msgid "Most Collected Shows" msgstr "Serie TV più collezionate" -#: sickbeard/webserve.py:2655 +#: sickbeard/webserve.py:2654 msgid "Most Watched Shows" msgstr "Serie TV più viste" -#: sickbeard/webserve.py:2657 +#: sickbeard/webserve.py:2656 msgid "Most Played Shows" msgstr "Serie TV più riprodotte" -#: sickbeard/webserve.py:2659 +#: sickbeard/webserve.py:2658 msgid "Recommended Shows" msgstr "Serie TV Consigliate" -#: gui/slick/views/addShows_trendingShows.mako:60 sickbeard/webserve.py:2661 +#: gui/slick/views/addShows_trendingShows.mako:60 sickbeard/webserve.py:2660 msgid "New Shows" msgstr "Nuove Serie TV" -#: gui/slick/views/addShows_trendingShows.mako:61 sickbeard/webserve.py:2663 +#: gui/slick/views/addShows_trendingShows.mako:61 sickbeard/webserve.py:2662 msgid "Season Premieres" msgstr "Anteprime delle Stagioni" -#: sickbeard/webserve.py:2792 sickbeard/webserve.py:2793 +#: sickbeard/webserve.py:2791 sickbeard/webserve.py:2792 msgid "Existing Show" msgstr "Show esistente" -#: sickbeard/webserve.py:2871 +#: sickbeard/webserve.py:2870 msgid "No root directories setup, please go back and add one." msgstr "Nessuna directory principale impostata, torna indietro e aggiungila." -#: sickbeard/webserve.py:2883 sickbeard/webserve.py:3002 +#: sickbeard/webserve.py:2882 sickbeard/webserve.py:3001 msgid "Show added" msgstr "Show aggiunto" -#: sickbeard/webserve.py:2883 +#: sickbeard/webserve.py:2882 msgid "Adding the specified show {show_name}" msgstr "Aggiunto lo show selezionato {show_name}" -#: sickbeard/webserve.py:2924 +#: sickbeard/webserve.py:2923 msgid "Missing params, no Indexer ID or folder: {show_to_add} and {root_dir}/{show_path}" msgstr "Parametro mancante, nessun ID di indicizzatore o cartella: {show_to_add} e {root_dir}/{show_path}" -#: sickbeard/webserve.py:2933 +#: sickbeard/webserve.py:2932 msgid "Unknown error. Unable to add show due to problem with show selection." msgstr "Errore sconosciuto. Impossibile aggiungere show a causa di problema con la selezione." -#: sickbeard/webserve.py:2957 sickbeard/webserve.py:2967 +#: sickbeard/webserve.py:2956 sickbeard/webserve.py:2966 msgid "Unable to add show" msgstr "Impossibile aggiungere show" -#: sickbeard/webserve.py:2957 +#: sickbeard/webserve.py:2956 msgid "Folder {show_dir} exists already" msgstr "Cartella {show_dir} esiste già" -#: sickbeard/webserve.py:2968 +#: sickbeard/webserve.py:2967 msgid "Unable to create the folder {show_dir}, can't add the show" msgstr "Impossibile creare la cartella {show_dir}, non è possibile aggiungere lo show" -#: sickbeard/webserve.py:3002 +#: sickbeard/webserve.py:3001 msgid "Adding the specified show into {show_dir}" msgstr "Aggiunto lo show selezionato in {show_dir}" -#: sickbeard/webserve.py:3078 +#: sickbeard/webserve.py:3077 msgid "Shows Added" msgstr "Serie TV aggiunta" -#: sickbeard/webserve.py:3079 +#: sickbeard/webserve.py:3078 msgid "Automatically added {num_shows} from their existing metadata files" msgstr "Aggiunti automaticamente {num_shows} dai rispettivi file di metadati esistenti" -#: gui/slick/views/layouts/main.mako:153 sickbeard/webserve.py:3096 +#: gui/slick/views/layouts/main.mako:153 sickbeard/webserve.py:3095 msgid "Mass Update" msgstr "Aggiornamento massivo" -#: sickbeard/webserve.py:3134 sickbeard/webserve.py:3161 sickbeard/webserve.py:3237 -#: sickbeard/webserve.py:3238 +#: sickbeard/webserve.py:3133 sickbeard/webserve.py:3160 sickbeard/webserve.py:3236 +#: sickbeard/webserve.py:3237 msgid "Episode Overview" msgstr "Descrizione di episodio" -#: sickbeard/webserve.py:3270 +#: sickbeard/webserve.py:3269 msgid "Missing Subtitles" msgstr "Sottotitoli mancanti" -#: gui/slick/views/layouts/main.mako:154 sickbeard/webserve.py:3356 -#: sickbeard/webserve.py:3357 +#: gui/slick/views/layouts/main.mako:154 sickbeard/webserve.py:3355 +#: sickbeard/webserve.py:3356 msgid "Backlog Overview" msgstr "Panoramica sulla ricerca di arretrati" -#: sickbeard/webserve.py:3481 +#: sickbeard/webserve.py:3480 msgid "Mass Edit" msgstr "Modifica di massa" -#: sickbeard/webserve.py:3586 +#: sickbeard/webserve.py:3585 msgid "Unable to update show: {excption_format}" msgstr "Impossibile aggiornare lo show: {excption_format}" -#: sickbeard/webserve.py:3594 +#: sickbeard/webserve.py:3593 msgid "Unable to refresh show {show_name}: {excption_format}" msgstr "Impossibile aggiornare lo show {show_name}: {excption_format}" -#: sickbeard/webserve.py:3605 +#: sickbeard/webserve.py:3604 msgid "Errors encountered" msgstr "Errori rilevati" -#: gui/slick/views/config_general.mako:261 sickbeard/webserve.py:3611 +#: gui/slick/views/config_general.mako:261 sickbeard/webserve.py:3610 msgid "Updates" msgstr "Aggiornamenti" -#: sickbeard/webserve.py:3616 +#: sickbeard/webserve.py:3615 msgid "Refreshes" msgstr "Aggiorna" -#: sickbeard/webserve.py:3621 +#: sickbeard/webserve.py:3620 msgid "Renames" msgstr "Rinomina" #: gui/slick/views/displayShow.mako:260 gui/slick/views/displayShow.mako:435 #: gui/slick/views/editShow.mako:119 gui/slick/views/inc_addShowOptions.mako:20 -#: gui/slick/views/manage_massEdit.mako:262 sickbeard/webserve.py:3626 -#: sickbeard/webserve.py:5244 +#: gui/slick/views/manage_massEdit.mako:262 sickbeard/webserve.py:3625 +#: sickbeard/webserve.py:5215 msgid "Subtitles" msgstr "Sottotitoli" -#: sickbeard/webserve.py:3631 +#: sickbeard/webserve.py:3630 msgid "The following actions were queued" msgstr "Le seguenti azioni sono schedulate" -#: sickbeard/webserve.py:3651 -msgid "For best results please set the Download Station alias as" -msgstr "Per ottenere i migliori risultati si prega di impostare l'alias di Download Station come" - -#: sickbeard/webserve.py:3652 -msgid "You can check this setting in the Synology DSM" -msgstr "È possibile controllare questa impostazione in Synology DSM" - -#: sickbeard/webserve.py:3652 sickbeard/webserve.py:3654 -msgid "Control Panel" -msgstr "Pannello di controllo" - -#: sickbeard/webserve.py:3652 -msgid "Application Portal" -msgstr "Portale applicazione" - -#: sickbeard/webserve.py:3653 -msgid "Make sure you allow DSM to be embedded with iFrames too in" -msgstr "Assicuratevi di permettere a DSM di essere incorporato con iFrames" - -#: sickbeard/webserve.py:3654 -msgid "DSM Settings" -msgstr "Impostazioni del DSM" - -#: sickbeard/webserve.py:3654 -msgid "Security" -msgstr "Sicurezza" - -#: gui/slick/views/layouts/main.mako:167 sickbeard/webserve.py:3662 -msgid "Manage Torrents" -msgstr "Gestione Torrents" - -#: gui/slick/views/layouts/main.mako:170 sickbeard/webserve.py:3683 +#: gui/slick/views/layouts/main.mako:170 sickbeard/webserve.py:3654 msgid "Failed Downloads" msgstr "Download Falliti" -#: gui/slick/views/layouts/main.mako:155 sickbeard/webserve.py:3701 +#: gui/slick/views/layouts/main.mako:155 sickbeard/webserve.py:3672 msgid "Manage Searches" msgstr "Gestione ricerche" -#: sickbeard/webserve.py:3709 +#: sickbeard/webserve.py:3680 msgid "Backlog search started" msgstr "Ricerca di arretrati iniziata" -#: sickbeard/webserve.py:3719 +#: sickbeard/webserve.py:3690 msgid "Daily search started" msgstr "Ricerca quotidiana iniziata" -#: sickbeard/webserve.py:3728 +#: sickbeard/webserve.py:3699 msgid "Find propers search started" msgstr "Ricerca release proper iniziata" -#: sickbeard/webserve.py:3737 +#: sickbeard/webserve.py:3708 msgid "Subtitle search started" msgstr "Ricerca sottotitoli iniziata" -#: sickbeard/webserve.py:3801 +#: sickbeard/webserve.py:3772 msgid "Remove Selected" msgstr "Rimuovi selezionati" -#: sickbeard/webserve.py:3802 +#: sickbeard/webserve.py:3773 msgid "Clear History" msgstr "Cancella cronologia" -#: sickbeard/webserve.py:3803 +#: sickbeard/webserve.py:3774 msgid "Trim History" msgstr "Taglia la cronologia" -#: sickbeard/webserve.py:3823 +#: sickbeard/webserve.py:3794 msgid "Selected history entries removed" msgstr "Cancellate le voci della cronologia selezionate" -#: sickbeard/webserve.py:3830 +#: sickbeard/webserve.py:3801 msgid "History cleared" msgstr "Cronologia cancellata" -#: sickbeard/webserve.py:3837 +#: sickbeard/webserve.py:3808 msgid "Removed history entries older than 30 days" msgstr "Voci della cronologia più vecchie di 30 giorni rimosse" -#: gui/slick/views/layouts/main.mako:185 sickbeard/webserve.py:3850 +#: gui/slick/views/layouts/main.mako:185 sickbeard/webserve.py:3821 msgid "General" msgstr "Generali" -#: sickbeard/webserve.py:3851 sickbeard/webserve.py:4143 +#: sickbeard/webserve.py:3822 sickbeard/webserve.py:4114 msgid "Backup/Restore" msgstr "Backup/Ripristino" -#: gui/slick/views/layouts/main.mako:187 sickbeard/webserve.py:3852 -#: sickbeard/webserve.py:4206 +#: gui/slick/views/layouts/main.mako:187 sickbeard/webserve.py:3823 +#: sickbeard/webserve.py:4177 msgid "Search Settings" msgstr "Impostazioni di ricerca" -#: gui/slick/views/layouts/main.mako:188 sickbeard/webserve.py:3853 -#: sickbeard/webserve.py:4518 +#: gui/slick/views/layouts/main.mako:188 sickbeard/webserve.py:3824 +#: sickbeard/webserve.py:4489 msgid "Search Providers" msgstr "Provider di ricerca" -#: gui/slick/views/layouts/main.mako:189 sickbeard/webserve.py:3854 +#: gui/slick/views/layouts/main.mako:189 sickbeard/webserve.py:3825 msgid "Subtitles Settings" msgstr "Impostazioni sottotitoli" -#: gui/slick/views/layouts/main.mako:191 sickbeard/webserve.py:3856 -#: sickbeard/webserve.py:4964 +#: gui/slick/views/layouts/main.mako:191 sickbeard/webserve.py:3827 +#: sickbeard/webserve.py:4935 msgid "Notifications" msgstr "Notifiche" @@ -1240,142 +1237,142 @@ msgstr "Notifiche" #: gui/slick/views/home.mako:35 gui/slick/views/inc_addShowOptions.mako:79 #: gui/slick/views/inc_home_showList.mako:179 gui/slick/views/layouts/main.mako:192 #: gui/slick/views/manage.mako:44 gui/slick/views/manage_massEdit.mako:202 -#: sickbeard/webserve.py:3857 sickbeard/webserve.py:5309 +#: sickbeard/webserve.py:3828 sickbeard/webserve.py:5280 msgid "Anime" msgstr "Anime" -#: sickbeard/webserve.py:3895 sickbeard/webserve.py:3896 +#: sickbeard/webserve.py:3866 sickbeard/webserve.py:3867 msgid "SickRage Configuration" msgstr "Configurazione di SickRage" -#: sickbeard/webserve.py:3910 +#: sickbeard/webserve.py:3881 msgid "Config - Shares" msgstr "" -#: sickbeard/webserve.py:3910 +#: sickbeard/webserve.py:3881 msgid "Windows Shares Configuration" msgstr "" -#: sickbeard/webserve.py:3937 +#: sickbeard/webserve.py:3908 msgid "Saved Shares" msgstr "" -#: sickbeard/webserve.py:3937 +#: sickbeard/webserve.py:3908 msgid "Your Windows share settings have been saved" msgstr "" -#: sickbeard/webserve.py:3948 +#: sickbeard/webserve.py:3919 msgid "Config - General" msgstr "Configurazione generale" -#: sickbeard/webserve.py:3948 +#: sickbeard/webserve.py:3919 msgid "General Configuration" msgstr "Configurazione Generale" -#: sickbeard/webserve.py:3988 +#: sickbeard/webserve.py:3959 msgid "Saved Defaults" msgstr "Impostazioni predefinite salvate" -#: sickbeard/webserve.py:3988 +#: sickbeard/webserve.py:3959 msgid "Your \"add show\" defaults have been set to your current selections." msgstr "I valori predefiniti di \"Aggiungi Serie TV\" sono stati settati ai valori correnti." -#: sickbeard/webserve.py:4095 +#: sickbeard/webserve.py:4066 msgid "Unable to create directory {directory}, log directory not changed." msgstr "Impossibile creare la directory {directory}, la directory di log non è stata modificata." -#: sickbeard/webserve.py:4103 +#: sickbeard/webserve.py:4074 msgid "Unable to create directory {directory}, https cert directory not changed." msgstr "Impossibile creare la directory {directory}, il certificato https della directory non è cambiato." -#: sickbeard/webserve.py:4107 +#: sickbeard/webserve.py:4078 msgid "Unable to create directory {directory}, https key directory not changed." msgstr "Impossibile creare la cartella {directory}, la chiave https della cartella non è cambiata." -#: sickbeard/webserve.py:4126 sickbeard/webserve.py:4324 sickbeard/webserve.py:4456 -#: sickbeard/webserve.py:5227 +#: sickbeard/webserve.py:4097 sickbeard/webserve.py:4295 sickbeard/webserve.py:4427 +#: sickbeard/webserve.py:5198 msgid "Error(s) Saving Configuration" msgstr "Errori durante il salvataggio della configurazione" -#: sickbeard/webserve.py:4129 sickbeard/webserve.py:4327 sickbeard/webserve.py:4458 -#: sickbeard/webserve.py:4950 sickbeard/webserve.py:5230 sickbeard/webserve.py:5294 -#: sickbeard/webserve.py:5323 +#: sickbeard/webserve.py:4100 sickbeard/webserve.py:4298 sickbeard/webserve.py:4429 +#: sickbeard/webserve.py:4921 sickbeard/webserve.py:5201 sickbeard/webserve.py:5265 +#: sickbeard/webserve.py:5294 msgid "Configuration Saved" msgstr "Configurazione salvata" -#: sickbeard/webserve.py:4142 +#: sickbeard/webserve.py:4113 msgid "Config - Backup/Restore" msgstr "Configurazione - Backup/Ripristino" -#: sickbeard/webserve.py:4205 +#: sickbeard/webserve.py:4176 msgid "Config - Episode Search" msgstr "Configurazione - Ricerca episodi" -#: sickbeard/webserve.py:4340 +#: sickbeard/webserve.py:4311 msgid "Config - Post Processing" msgstr "Configurazione - Post Elaborazione" -#: sickbeard/webserve.py:4380 +#: sickbeard/webserve.py:4351 msgid "Unpacking Not Supported, disabling unpack setting" msgstr "Estrazione non supportata, disabilito l'impostazione di estrazione" -#: sickbeard/webserve.py:4431 +#: sickbeard/webserve.py:4402 msgid "You tried saving an invalid normal naming config, not saving your naming settings" msgstr "Hai provato a salvare una configurazione di denominazione normale non valida, non salvo le tue impostazioni di nomeclatura" -#: sickbeard/webserve.py:4439 +#: sickbeard/webserve.py:4410 msgid "You tried saving an invalid anime naming config, not saving your naming settings" msgstr "Hai provato a salvare una configurazione di denominazione anime non valida, non salvo le tue impostazioni di nomeclatura" -#: sickbeard/webserve.py:4517 +#: sickbeard/webserve.py:4488 msgid "Config - Providers" msgstr "Configurazione fornitori" -#: sickbeard/webserve.py:4547 +#: sickbeard/webserve.py:4518 msgid "No Provider Name specified" msgstr "Nessun nome di Provider specificato" -#: sickbeard/webserve.py:4549 +#: sickbeard/webserve.py:4520 msgid "No Provider Url specified" msgstr "Nessun Url Provider specificato" -#: sickbeard/webserve.py:4551 +#: sickbeard/webserve.py:4522 msgid "No Provider Api key specified" msgstr "Nessuna chiave di Api del Provider specificata" -#: sickbeard/webserve.py:4963 +#: sickbeard/webserve.py:4934 msgid "Config - Notifications" msgstr "Config - notifiche" -#: sickbeard/webserve.py:5243 +#: sickbeard/webserve.py:5214 msgid "Config - Subtitles" msgstr "Config - sottotitoli" -#: sickbeard/webserve.py:5308 +#: sickbeard/webserve.py:5279 msgid "Config - Anime" msgstr "Config - Anime" -#: sickbeard/webserve.py:5336 +#: sickbeard/webserve.py:5307 msgid "Clear Errors" msgstr "Cancella gli errori" -#: sickbeard/webserve.py:5342 +#: sickbeard/webserve.py:5313 msgid "Clear Warnings" msgstr "Cancella gli avvisi" -#: sickbeard/webserve.py:5348 +#: sickbeard/webserve.py:5319 msgid "Submit Errors" msgstr "Invia errori" -#: sickbeard/webserve.py:5363 +#: sickbeard/webserve.py:5334 msgid "Logs & Errors" msgstr "Registri & errori" -#: sickbeard/webserve.py:5388 +#: sickbeard/webserve.py:5359 msgid "Log File" msgstr "File di log" -#: sickbeard/webserve.py:5388 +#: sickbeard/webserve.py:5359 msgid "Logs" msgstr "Logs" @@ -1383,30 +1380,166 @@ msgstr "Logs" msgid "This is a test notification from SickRage" msgstr "Questa è una notifica di test da SickRage" -#: gui/slick/js/core.js:481 gui/slick/js/core.js:502 gui/slick/js/core.js:524 -#: gui/slick/js/core.js:548 gui/slick/js/core.js:573 gui/slick/js/core.js:596 -#: gui/slick/js/core.js:625 gui/slick/js/core.js:645 gui/slick/js/core.js:690 -#: gui/slick/js/core.js:769 gui/slick/js/core.js:829 gui/slick/js/core.js:849 -#: gui/slick/js/core.js:879 gui/slick/js/core.js:909 gui/slick/js/core.js:969 -#: gui/slick/js/core.js:1046 gui/slick/js/core.js:1066 gui/slick/js/core.js:1085 +#: gui/slick/js/browser.js:6 +msgid "Choose Directory" +msgstr "" + +#: gui/slick/js/core.js:443 +msgid "Select log file folder location" +msgstr "" + +#: gui/slick/js/core.js:445 +msgid "Select CSS file" +msgstr "" + +#: gui/slick/js/core.js:469 +msgid "Select backup folder to save to" +msgstr "" + +#: gui/slick/js/core.js:470 +msgid "Select backup files to restore" +msgstr "" + +#: gui/slick/js/core.js:479 gui/slick/js/core.js:500 gui/slick/js/core.js:522 +#: gui/slick/js/core.js:546 gui/slick/js/core.js:571 gui/slick/js/core.js:594 +#: gui/slick/js/core.js:623 gui/slick/js/core.js:643 gui/slick/js/core.js:688 +#: gui/slick/js/core.js:767 gui/slick/js/core.js:827 gui/slick/js/core.js:847 +#: gui/slick/js/core.js:877 gui/slick/js/core.js:907 gui/slick/js/core.js:967 +#: gui/slick/js/core.js:1044 gui/slick/js/core.js:1064 gui/slick/js/core.js:1083 msgid "Please fill out the necessary fields above." msgstr "" -#: gui/slick/js/core.js:1328 gui/slick/js/core.js:1378 gui/slick/js/core.js:1427 -#: gui/slick/js/core.js:1493 +#: gui/slick/js/core.js:680 +msgid "<b>Step 1:</b> Confirm Authorization" +msgstr "" + +#: gui/slick/js/core.js:977 +msgid "Check blacklist name; the value needs to be a trakt slug" +msgstr "" + +#: gui/slick/js/core.js:1022 +msgid "You must provide a recipient email address!" +msgstr "" + +#: gui/slick/js/core.js:1107 +msgid "You didn't supply a Pushbullet api key" +msgstr "" + +#: gui/slick/js/core.js:1133 gui/slick/js/core.js:1162 +msgid "Don't forget to save your new pushbullet settings." +msgstr "" + +#: gui/slick/js/core.js:1262 +msgid "Select TV Download Directory" +msgstr "" + +#: gui/slick/js/core.js:1263 +msgid "Select Unpack Directory" +msgstr "" + +#: gui/slick/js/core.js:1326 gui/slick/js/core.js:1376 gui/slick/js/core.js:1425 +#: gui/slick/js/core.js:1491 msgid "This pattern is invalid." msgstr "Il formato non è valido." -#: gui/slick/js/core.js:1336 gui/slick/js/core.js:1386 gui/slick/js/core.js:1435 -#: gui/slick/js/core.js:1501 +#: gui/slick/js/core.js:1334 gui/slick/js/core.js:1384 gui/slick/js/core.js:1433 +#: gui/slick/js/core.js:1499 msgid "This pattern would be invalid without the folders, using it will force \"Season Folders\" on for all shows." msgstr "Il formato è invalido senza le cartelle, usandolo forzerà \"Cartelle per stagione\" per tutte le Serie TV." -#: gui/slick/js/core.js:1344 gui/slick/js/core.js:1394 gui/slick/js/core.js:1443 -#: gui/slick/js/core.js:1509 +#: gui/slick/js/core.js:1342 gui/slick/js/core.js:1392 gui/slick/js/core.js:1441 +#: gui/slick/js/core.js:1507 msgid "This pattern is valid." msgstr "Il formato non è valido." +#: gui/slick/js/core.js:1818 +msgid "Select .nzb black hole/watch location" +msgstr "" + +#: gui/slick/js/core.js:1819 +msgid "Select .torrent black hole/watch location" +msgstr "" + +#: gui/slick/js/core.js:1820 +msgid "Select .torrent download location" +msgstr "" + +#: gui/slick/js/core.js:1900 +msgid "Minimum seeding time is" +msgstr "" + +#: gui/slick/js/core.js:1902 +msgid "URL to your uTorrent client (e.g. http://localhost:8000)" +msgstr "" + +#: gui/slick/js/core.js:1905 +msgid "Stop seeding when inactive for" +msgstr "" + +#: gui/slick/js/core.js:1911 +msgid "URL to your Transmission client (e.g. http://localhost:9091)" +msgstr "" + +#: gui/slick/js/core.js:1921 +msgid "URL to your Deluge client (e.g. http://localhost:8112)" +msgstr "" + +#: gui/slick/js/core.js:1930 +msgid "IP or Hostname of your Deluge Daemon (e.g. scgi://localhost:58846)" +msgstr "" + +#: gui/slick/js/core.js:1937 +msgid "URL to your Synology DS client (e.g. http://localhost:5000)" +msgstr "" + +#: gui/slick/js/core.js:1941 +msgid "URL to your rTorrent client (e.g. scgi://localhost:5000 <br> or https://localhost/rutorrent/plugins/httprpc/action.php)" +msgstr "" + +#: gui/slick/js/core.js:1952 +msgid "URL to your qBittorrent client (e.g. http://localhost:8080)" +msgstr "" + +#: gui/slick/js/core.js:1962 +msgid "URL to your MLDonkey (e.g. http://localhost:4080)" +msgstr "" + +#: gui/slick/js/core.js:1974 +msgid "URL to your putio client (e.g. http://localhost:8080)" +msgstr "" + +#: gui/slick/js/core.js:1975 +msgid "<a herf=\"https://app.put.io/oauth/apps/new\" target=\"_blank\"> Create a new OAuth app for put.io</a>" +msgstr "" + +#: gui/slick/js/core.js:1977 +msgid "Put.io Parent Folder" +msgstr "" + +#: gui/slick/js/core.js:1978 +msgid "Put.io OAuth Token" +msgstr "" + +#: gui/slick/js/core.js:3383 gui/slick/views/displayShow.mako:410 +msgid "Show Episodes" +msgstr "Mostra gli Episodi" + +#: gui/slick/js/core.js:3388 gui/slick/views/displayShow.mako:408 +msgid "Hide Episodes" +msgstr "Nascondi episodi" + +#: gui/slick/js/core.js:3396 +msgid "Select Show Location" +msgstr "" + +#: gui/slick/js/core.js:3460 +msgid "Select Unprocessed Episode Folder" +msgstr "" + +#: gui/slick/js/core.js:3790 +msgid "DELETED" +msgstr "" + #: gui/slick/js/core.js:4082 msgid "Resume updating the log on this page." msgstr "Ricomincia ad aggiornare il log su questa pagina." @@ -1415,6 +1548,26 @@ msgstr "Ricomincia ad aggiornare il log su questa pagina." msgid "Pause updating the log on this page." msgstr "Ferma l'aggiornamento del log su questa pagina." +#: gui/slick/js/core.js:4323 +msgid "searching {searchingFor}..." +msgstr "" + +#: gui/slick/js/core.js:4334 +msgid "search timed out, try again or try another indexer" +msgstr "" + +#: gui/slick/js/core.js:4503 +msgid "loading folders..." +msgstr "" + +#: gui/slick/js/parsers.js:7 gui/slick/js/parsers.js:8 +#: gui/slick/js/plotTooltip.js:6 gui/slick/js/sceneExceptionsTooltip.js:6 +#: gui/slick/views/inc_home_showList.mako:209 +#: gui/slick/views/inc_home_showList.mako:215 +#: gui/slick/views/inc_home_showList.mako:231 +msgid "Loading..." +msgstr "Caricamento..." + #: gui/slick/views/404.mako:5 msgid "You have reached this page by accident, please check the url." msgstr "Sei giunto su questa pagina per errore, perfavore controlla l'indirizzo." @@ -5718,14 +5871,6 @@ msgstr "Modifica gli Episodi Selezionati con il seguente valore:" msgid "Select Columns" msgstr "Seleziona colonne" -#: gui/slick/views/displayShow.mako:408 -msgid "Hide Episodes" -msgstr "Nascondi episodi" - -#: gui/slick/views/displayShow.mako:410 -msgid "Show Episodes" -msgstr "Mostra gli Episodi" - #: gui/slick/views/displayShow.mako:424 msgid "NFO" msgstr "INFO" @@ -6244,12 +6389,6 @@ msgstr "Attivo" msgid "loading" msgstr "caricamento" -#: gui/slick/views/inc_home_showList.mako:209 -#: gui/slick/views/inc_home_showList.mako:215 -#: gui/slick/views/inc_home_showList.mako:231 -msgid "Loading..." -msgstr "Caricamento..." - #: gui/slick/views/inc_qualityChooser.mako:31 msgid "<p><b><u>Preferred</u></b> qualities will replace those in <b><u>allowed</u></b>, even if they are lower.</p>" msgstr "<p>Le qualità <b><u>Preferite</u></b> sostituiranno quelle <b><u>Consentite</u></b>, anche se inferiori.</p>" @@ -6787,6 +6926,10 @@ msgstr "Aggiornamento KODI" msgid "Update Emby" msgstr "Aggiornamento Emby" +#: gui/slick/views/layouts/main.mako:167 +msgid "Manage Torrents" +msgstr "Gestione Torrents" + #: gui/slick/views/layouts/main.mako:173 msgid "Missed Subtitle Management" msgstr "Gestione sottotitoli mancanti" diff --git a/locale/ja_JP/LC_MESSAGES/messages.json b/locale/ja_JP/LC_MESSAGES/messages.json index cbc55a8e1463e95a89289ca8d0fd8aa9bd6819cd..7fe5ef2249da3fae8d3242f8ce0ad20445df4f6e 100644 --- a/locale/ja_JP/LC_MESSAGES/messages.json +++ b/locale/ja_JP/LC_MESSAGES/messages.json @@ -1 +1 @@ -{"messages":{"domain":"messages","locale_data":{"messages":{"100":[null,""],"250":[null,""],"500":[null,""],"":{"domain":"messages","plural_forms":"nplurals=1; plural=0;","lang":"ja_JP"},"Drama":[null,""],"Mystery":[null,""],"Science-Fiction":[null,""],"Crime":[null,""],"Action":[null,""],"Comedy":[null,""],"Thriller":[null,""],"Animation":[null,""],"Family":[null,""],"Fantasy":[null,""],"Adventure":[null,""],"Horror":[null,""],"Film-Noir":[null,""],"Sci-Fi":[null,""],"Romance":[null,""],"Sport":[null,""],"War":[null,""],"Biography":[null,""],"History":[null,""],"Music":[null,""],"Western":[null,""],"News":[null,""],"Sitcom":[null,""],"Reality-TV":[null,""],"Documentary":[null,""],"Game-Show":[null,""],"Musical":[null,""],"Talk-Show":[null,""],"Started Download":[null,"ダウンロード開始"],"Download Finished":[null,"ダウンロード終了"],"Subtitle Download Finished":[null,"字幕ダウンロード終了"],"SickRage Updated":[null,"SickRage更新終了"],"SickRage Updated To Commit#: ":[null,""],"SickRage new login":[null,"SickRage 新しいログイン"],"New login from IP: {0}. http://geomaplookup.net/?ip={0}":[null,""],"Repeat":[null,""],"Repeat (Separated)":[null,""],"Extend":[null,""],"Extend (Limited)":[null,""],"Extend (Limited, E-prefixed)":[null,""],"Downloaded":[null,"ダウンロード済み"],"Snatched":[null,""],"Snatched (Proper)":[null,""],"Failed":[null,"失敗"],"Snatched (Best)":[null,""],"Archived":[null,"アーカイブ"],"Unknown":[null,"不明"],"Unaired":[null,"未放送"],"Skipped":[null,"スキップされた"],"Wanted":[null,""],"Ignored":[null,"無視"],"Subtitled":[null,"字幕付き"],"<No Filter>":[null,""],"Daily Searcher":[null,""],"Backlog":[null,""],"Show Updater":[null,""],"Check Version":[null,""],"Show Queue":[null,""],"Search Queue (All)":[null,""],"Search Queue (Daily Searcher)":[null,""],"Search Queue (Backlog)":[null,""],"Search Queue (Manual)":[null,""],"Search Queue (Retry/Failed)":[null,""],"Search Queue (RSS)":[null,""],"Find Propers":[null,""],"Postprocessor":[null,""],"Find Subtitles":[null,""],"Trakt Checker":[null,""],"Event":[null,""],"Error":[null,""],"Tornado":[null,""],"Thread":[null,""],"Main":[null,""],"Loading":[null,""],"New update found for SickRage, starting auto-updater":[null,""],"Update was successful":[null,"正常に更新されました"],"Update failed!":[null,""],"Backup":[null,"バックアップ"],"Config backup in progress...":[null,""],"Config backup successful, updating...":[null,""],"Config backup failed, aborting update":[null,""],"No update needed":[null,""],"Mako Error":[null,""],"Oops":[null,"おっと!"],"Wrong API key used":[null,""],"Login":[null,"ログイン"],"API Key not generated":[null,""],"API Builder":[null,""],"Schedule":[null,"スケジュール"],"Test 1":[null,"テスト 1"],"This is test number 1":[null,""],"Test 2":[null,"テスト 2"],"This is test number 2":[null,""],"You're using the {branch} branch. Please use 'master' unless specifically asked":[null,""],"Invalid show parameters":[null,""],"Invalid parameters":[null,""],"Episode couldn't be retrieved":[null,""],"Home":[null,"トップ"],"Show List":[null,""],"Error: Unsupported Request. Send jsonp request with 'callback' variable in the query string.":[null,""],"Success. Connected and authenticated":[null,""],"Authentication failed. SABnzbd expects":[null,""],"as authentication method":[null,""],"Unable to connect to host":[null,""],"SMS sent successfully":[null,""],"Problem sending SMS: {message}":[null,""],"Telegram notification succeeded. Check your Telegram clients to make sure it worked":[null,""],"Error sending Telegram notification: {message}":[null,""],"join notification succeeded. Check your join clients to make sure it worked":[null,""],"Error sending join notification: {message}":[null,""]," with password":[null,""],"Registered and Tested growl successfully {growl_host}":[null,""],"Registration and Testing of growl failed {growl_host}":[null,""],"Test prowl notice sent successfully":[null,""],"Test prowl notice failed":[null,""],"Boxcar2 notification succeeded. Check your Boxcar2 clients to make sure it worked":[null,""],"Error sending Boxcar2 notification":[null,""],"Pushover notification succeeded. Check your Pushover clients to make sure it worked":[null,""],"Error sending Pushover notification":[null,""],"Key verification successful":[null,""],"Unable to verify key":[null,""],"Tweet successful, check your twitter to make sure it worked":[null,""],"Error sending tweet":[null,""],"Please enter a valid account sid":[null,""],"Please enter a valid auth token":[null,""],"Please enter a valid phone sid":[null,""],"Please format the phone number as \"+1-###-###-####\"":[null,""],"Authorization successful and number ownership verified":[null,""],"Error sending sms":[null,""],"Slack message successful":[null,""],"Slack message failed":[null,""],"Discord message successful":[null,""],"Discord message failed":[null,""],"Test KODI notice sent successfully to {kodi_host}":[null,""],"Test KODI notice failed to {kodi_host}":[null,""],"Successful test notice sent to Plex Home Theater ... {plex_clients}":[null,""],"Test failed for Plex Home Theater ... {plex_clients}":[null,""],"Tested Plex Home Theater(s)":[null,""],"Successful test of Plex Media Server(s) ... {plex_servers}":[null,""],"Test failed, No Plex Media Server host specified":[null,""],"Test failed for Plex Media Server(s) ... {plex_servers}":[null,""],"Tested Plex Media Server host(s)":[null,""],"Tried sending desktop notification via libnotify":[null,""],"Test notice sent successfully to {emby_host}":[null,""],"Test notice failed to {emby_host}":[null,""],"Successfully started the scan update":[null,""],"Test failed to start the scan update":[null,""],"Test notice sent successfully to {nmj2_host}":[null,""],"Test notice failed to {nmj2_host}":[null,""],"Trakt Authorized":[null,""],"Trakt Not Authorized!":[null,""],"Test email sent successfully! Check inbox.":[null,""],"ERROR: {last_error}":[null,""],"Test NMA notice sent successfully":[null,""],"Test NMA notice failed":[null,""],"Pushalot notification succeeded. Check your Pushalot clients to make sure it worked":[null,""],"Error sending Pushalot notification":[null,""],"Pushbullet notification succeeded. Check your device to make sure it worked":[null,""],"Error sending Pushbullet notification":[null,""],"Status":[null,""],"Restarting SickRage":[null,""],"Update Failed":[null,""],"Update wasn't successful, not restarting. Check your log for more information.":[null,""],"Checking out branch":[null,""],"Already on branch":[null,""],"Invalid show ID: {show}":[null,""],"Show not in show list":[null,""],"Edit":[null,""],"This show is in the process of being downloaded - the info below is incomplete.":[null,""],"The information on this page is in the process of being updated.":[null,""],"The episodes below are currently being refreshed from disk":[null,""],"Currently downloading subtitles for this show":[null,""],"This show is queued to be refreshed.":[null,""],"This show is queued and awaiting an update.":[null,""],"This show is queued and awaiting subtitles download.":[null,""],"Resume":[null,""],"Pause":[null,""],"Remove":[null,""],"Re-scan files":[null,""],"Force Full Update":[null,""],"Update show in KODI":[null,""],"Update show in Emby":[null,""],"Hide specials":[null,""],"Show specials":[null,""],"Preview Rename":[null,""],"Download Subtitles":[null,""],"No scene exceptions":[null,""],"Invalid show ID":[null,""],"Unable to find the specified show":[null,""],"Unable to retreive Fansub Groups from AniDB.":[null,""],"Edit Show":[null,""],"Unable to refresh this show: {error}":[null,""],"New location <tt>{location}</tt> does not exist":[null,""],"Unable to update show: {error}":[null,""],"Unable to force an update on scene exceptions of the show.":[null,""],"Unable to force an update on scene numbering of the show.":[null,""],"{num_errors:d} error{plural} while saving changes:":[null,""],"{show_name} has been {paused_resumed}":[null,""],"resumed":[null,""],"paused":[null,""],"{show_name} has been {deleted_trashed} {was_deleted}":[null,""],"deleted":[null,""],"trashed":[null,""],"(media untouched)":[null,""],"(with all related media)":[null,""],"Unable to refresh this show.":[null,""],"Unable to update this show.":[null,""],"Library update command sent to KODI host(s)): {kodi_hosts}":[null,""],"Unable to contact one or more KODI host(s)): {kodi_hosts}":[null,""],"Library update command sent to Plex Media Server host: {plex_server}":[null,""],"Unable to contact Plex Media Server host: {plex_server}":[null,""],"Library update command sent to Emby host: {emby_host}":[null,""],"Unable to contact Emby host: {emby_host}":[null,""],"You must specify a show and at least one episode":[null,""],"Invalid status":[null,""],"Backlog was automatically started for the following seasons of <b>{show_name}</b>":[null,""],"Season":[null,""],"Backlog started":[null,""],"Retrying Search was automatically started for the following season of <b>{show_name}</b>":[null,""],"Retry Search started":[null,""],"You must specify a show":[null,""],"Can't rename episodes when the show dir is missing.":[null,""],"New subtitles downloaded: {new_subtitle_languages}":[null,""],"No subtitles downloaded":[null,""],"IRC":[null,""],"Could not load news from the repo. [Click here for news.md])({news_url})":[null,""],"The was a problem connecting to github, please refresh and try again":[null,""],"Could not load changes from the repo. [Click here for CHANGES.md]({changes_url})":[null,""],"Changelog":[null,""],"Post Processing":[null,""],"Add Shows":[null,""],"No folders selected.":[null,""],"New Show":[null,""],"Trending Shows":[null,""],"Popular Shows":[null,""],"Most Anticipated Shows":[null,""],"Most Collected Shows":[null,""],"Most Watched Shows":[null,""],"Most Played Shows":[null,""],"Recommended Shows":[null,""],"New Shows":[null,""],"Season Premieres":[null,""],"Existing Show":[null,""],"No root directories setup, please go back and add one.":[null,""],"Show added":[null,""],"Adding the specified show {show_name}":[null,""],"Missing params, no Indexer ID or folder: {show_to_add} and {root_dir}/{show_path}":[null,""],"Unknown error. Unable to add show due to problem with show selection.":[null,""],"Unable to add show":[null,""],"Folder {show_dir} exists already":[null,""],"Unable to create the folder {show_dir}, can't add the show":[null,""],"Adding the specified show into {show_dir}":[null,""],"Shows Added":[null,""],"Automatically added {num_shows} from their existing metadata files":[null,""],"Mass Update":[null,""],"Episode Overview":[null,""],"Missing Subtitles":[null,""],"Backlog Overview":[null,""],"Mass Edit":[null,""],"Unable to update show: {excption_format}":[null,""],"Unable to refresh show {show_name}: {excption_format}":[null,""],"Errors encountered":[null,""],"Updates":[null,""],"Refreshes":[null,""],"Renames":[null,""],"Subtitles":[null,""],"The following actions were queued":[null,""],"For best results please set the Download Station alias as":[null,""],"You can check this setting in the Synology DSM":[null,""],"Control Panel":[null,""],"Application Portal":[null,""],"Make sure you allow DSM to be embedded with iFrames too in":[null,""],"DSM Settings":[null,""],"Security":[null,""],"Manage Torrents":[null,""],"Failed Downloads":[null,""],"Manage Searches":[null,""],"Backlog search started":[null,""],"Daily search started":[null,""],"Find propers search started":[null,""],"Subtitle search started":[null,""],"Remove Selected":[null,""],"Clear History":[null,""],"Trim History":[null,""],"Selected history entries removed":[null,""],"History cleared":[null,""],"Removed history entries older than 30 days":[null,""],"General":[null,""],"Backup/Restore":[null,""],"Search Settings":[null,""],"Search Providers":[null,""],"Subtitles Settings":[null,""],"Notifications":[null,""],"Anime":[null,""],"SickRage Configuration":[null,""],"Config - Shares":[null,""],"Windows Shares Configuration":[null,""],"Saved Shares":[null,""],"Your Windows share settings have been saved":[null,""],"Config - General":[null,""],"General Configuration":[null,""],"Saved Defaults":[null,""],"Your \"add show\" defaults have been set to your current selections.":[null,""],"Unable to create directory {directory}, log directory not changed.":[null,""],"Unable to create directory {directory}, https cert directory not changed.":[null,""],"Unable to create directory {directory}, https key directory not changed.":[null,""],"Error(s) Saving Configuration":[null,""],"Configuration Saved":[null,""],"Config - Backup/Restore":[null,""],"Config - Episode Search":[null,""],"Config - Post Processing":[null,""],"Unpacking Not Supported, disabling unpack setting":[null,""],"You tried saving an invalid normal naming config, not saving your naming settings":[null,""],"You tried saving an invalid anime naming config, not saving your naming settings":[null,""],"Config - Providers":[null,""],"No Provider Name specified":[null,""],"No Provider Url specified":[null,""],"No Provider Api key specified":[null,""],"Config - Notifications":[null,""],"Config - Subtitles":[null,""],"Config - Anime":[null,""],"Clear Errors":[null,""],"Clear Warnings":[null,""],"Submit Errors":[null,""],"Logs & Errors":[null,""],"Log File":[null,""],"Logs":[null,""],"This is a test notification from SickRage":[null,""],"Please fill out the necessary fields above.":[null,""],"This pattern is invalid.":[null,""],"This pattern would be invalid without the folders, using it will force \"Season Folders\" on for all shows.":[null,""],"This pattern is valid.":[null,""],"Resume updating the log on this page.":[null,""],"Pause updating the log on this page.":[null,""],"You have reached this page by accident, please check the url.":[null,""],"A mako error has occured.<br>\n If this happened during an update a simple page refresh may be the solution.<br>\n Mako errors that happen during updates may be a one time error if there were significant ui changes.":[null,""],"Show/Hide Error":[null,""],"Add New Show":[null,""],"For shows that you haven't downloaded yet, this option finds a show on theTVDB.com, creates a directory for it's episodes, and adds it to SickRage.":[null,""],"Add From Trakt Lists":[null,""],"For shows that you haven't downloaded yet, this option lets you choose from a show from one of the Trakt lists to add to SickRage.":[null,""],"Add From IMDB's Popular Shows":[null,""],"View IMDB's list of the most popular shows. This feature uses IMDB's MOVIEMeter algorithm to identify popular TV Series.":[null,""],"Add Existing Shows":[null,""],"Use this option to add shows that already have a folder created on your hard drive. SickRage will scan your existing metadata/episodes and add the show accordingly.":[null,""],"Add Existing Show":[null,""],"Manage Directories":[null,""],"Customize Options":[null,""],"SickRage can add existing shows, using the current options, by using locally stored NFO/XML metadata to eliminate user interaction. If you would rather have SickRage prompt you to customize each show, then use the checkbox below.":[null,""],"Prompt me to set settings for each show":[null,""],"Displaying folders within these directories which aren't already added to SickRage":[null,""],"Submit":[null,""],"Find a show on theTVDB":[null,""],"Show retrieved from existing metadata":[null,""],"All Indexers":[null,""],"Search":[null,""],"This will only affect the language of the retrieved metadata file contents and episode filenames.":[null,""],"This <b>DOES NOT</b> allow SickRage to download non-english TV episodes!":[null,""],"Pick the parent folder":[null,""],"Pre-chosen Destination Folder":[null,""],"Customize options":[null,""],"Add Show":[null,""],"Skip Show":[null,""],"Sort By":[null,""],"Name":[null,""],"Original":[null,""],"Votes":[null,""],"Rating":[null,""],"Rating > Votes":[null,""],"Sort Order":[null,""],"Asc":[null,""],"Desc":[null,""],"Fetching of IMDB Data failed. Are you online?":[null,""],"Exception":[null,""],"Select Trakt List":[null,""],"Most Anticipated":[null,""],"Trending":[null,""],"Popular":[null,""],"Most Watched":[null,""],"Most Played":[null,""],"Most Collected":[null,""],"Recommended":[null,""],"Toggle navigation":[null,""],"Profile":[null,""],"JSONP":[null,""],"Back to SickRage":[null,""],"Parameters":[null,""],"Required":[null,""],"Description":[null,""],"Type":[null,""],"Default value":[null,""],"Allowed values":[null,""],"Playground":[null,""],"Clear":[null,""],"Yes":[null,""],"No":[null,""],"season":[null,""],"episode":[null,""],"Python Version":[null,""],"SSL Version":[null,""],"OS":[null,""],"Locale":[null,""],"User":[null,""],"Program Folder":[null,""],"Config File":[null,""],"Database File":[null,""],"Cache Folder":[null,""],"Log Folder":[null,""],"Arguments":[null,""],"Web Root":[null,""],"Website":[null,""],"Wiki":[null,""],"Source":[null,""],"IRC Chat":[null,""],"AnimeDB Settings":[null,""],"Look & Feel":[null,""],"AniDB is non-profit database of anime information that is freely open to the public":[null,""],"Enable":[null,""],"should SickRage use data from AniDB?":[null,""],"AniDB Username":[null,""],"username of your AniDB account":[null,""],"AniDB Password":[null,""],"password of your AniDB account":[null,""],"AniDB MyList":[null,""],"do you want to add the PostProcessed episodes to the MyList?":[null,""],"Look and Feel":[null,""],"How should the anime functions show and behave.":[null,""],"Split show lists":[null,""],"separate anime and normal shows in groups":[null,""],"Split in tabs":[null,""],"use tabs for when splitting show lists":[null,""],"Restore":[null,""],"Backup your main database file and config.":[null,""],"Select the folder you wish to save your backup file to":[null,""],"Restore your main database file and config.":[null,""],"Select the backup file you wish to restore":[null,""],"Misc":[null,""],"Interface":[null,""],"Advanced Settings":[null,""],"Startup options. Indexer options. Log and show file locations.":[null,""],"Some options may require a manual restart to take effect.":[null,""],"Default Indexer Language":[null,""],"for adding shows and metadata providers":[null,""],"Launch browser":[null,""],"open the SickRage home page on startup":[null,""],"Initial page":[null,""],"Shows":[null,""],"when launching SickRage interface":[null,""],"Choose hour to update shows":[null,""],"with information such as next air dates, show ended, etc. Use 15 for 3pm, 4 for 4am etc.":[null,""],"note":[null,""],"minutes are randomized each time SickRage is started":[null,""],"Send to trash for actions":[null,""],"when using show \"Remove\" and delete files":[null,""],"on scheduled deletes of the oldest log files":[null,""],"selected actions use trash (recycle bin) instead of the default permanent delete":[null,""],"Log file folder location":[null,""],"Number of Log files saved":[null,""],"number of log files saved when rotating logs (default: 5) (REQUIRES RESTART)":[null,""],"Size of Log files saved":[null,""],"maximum size in MB of the log file (default: 1MB) (REQUIRES RESTART)":[null,""],"Use initial indexer set to":[null,""],"as the default selection when adding new shows":[null,""],"Timeout show indexer at":[null,""],"seconds of inactivity when finding new shows (default:20)":[null,""],"Show root directories":[null,""],"where the files of shows are located":[null,""],"Save Changes":[null,""],"Options for software updates.":[null,""],"Check software updates":[null,""],"and display notifications when updates are available. Checks are run on startup and at the frequency set below*":[null,""],"Automatically update":[null,""],"fetch and install software updates. Updates are run on startup and in the background at the frequency set below*":[null,""],"Check the server every*":[null,""],"hours for software updates (default:1)":[null,""],"Notify on software update":[null,""],"send a message to all enabled notifiers when SickRage has been updated":[null,""],"User Interface":[null,""],"Options for visual appearance.":[null,""],"Interface Language":[null,""],"System Language":[null,""],"for appearance to take effect, save then refresh your browser":[null,""],"Display theme":[null,""],"Dark":[null,""],"Light":[null,""],"Use a background image":[null,""],"use a custom image as background for SickRage":[null,""],"Background Path":[null,""],"Path to the background image":[null,""],"Show fanart in the background":[null,""],"on the show summary page":[null,""],"Fanart transparency":[null,""],"transparency of the fanart in the background":[null,""],"Use a custom stylesheet file":[null,""],"use a custom .css file to style SickRage (for advanced users)":[null,""],"Stylesheet File Path":[null,""],"Path to the stylesheet (.css) file":[null,""],"Show all seasons":[null,""],"Sort with \"The\", \"A\", \"An\"":[null,""],"include articles (\"The\", \"A\", \"An\") when sorting show lists":[null,""],"Missed episodes range":[null,""],"set the range in days of the missed episodes in the Schedule page":[null,""],"Display fuzzy dates":[null,""],"move absolute dates into tooltips and display e.g. \"Last Thu\", \"On Tue\"":[null,""],"Trim zero padding":[null,""],"remove the leading number \"0\" shown on hour of day, and date of month":[null,""],"Date style":[null,""],"Use System Default":[null,""],"Time style":[null,""],"seconds are only shown on the History page":[null,""],"Timezone":[null,""],"Local":[null,""],"Network":[null,""],"display dates and times in either your timezone or the shows network timezone":[null,""],"use local timezone to start searching for episodes minutes after show ends (depends on your dailysearch frequency)":[null,""],"Download url":[null,""],"URL where the shows can be downloaded.":[null,""],"Web Interface":[null,""],"it is recommended that you enable a username and password to secure SickRage from being tampered with remotely.":[null,""],"these options require a manual restart to take effect.":[null,""],"API key":[null,""],"used to give 3rd party programs limited access to SickRage":[null,""],"you can try all the features of the API":[null,""],"here":[null,""],"HTTP logs":[null,""],"enable logs from the internal Tornado web server":[null,""],"HTTP username":[null,""],"set blank for no login":[null,""],"HTTP password":[null,""],"blank = no authentication":[null,""],"HTTP port":[null,""],"web port to browse and access SickRage (default:8081)":[null,""],"Notify on login":[null,""],"enable to be notified when a new login happens in webserver":[null,""],"Listen on IPv6":[null,""],"attempt binding to any available IPv6 address":[null,""],"Enable HTTPS":[null,""],"enable access to the web interface using a HTTPS address":[null,""],"HTTPS certificate":[null,""],"file name or path to HTTPS certificate":[null,""],"HTTPS key":[null,""],"file name or path to HTTPS key":[null,""],"Reverse proxy headers":[null,""],"accept the following reverse proxy headers (advanced)...":[null,""],"(X-Forwarded-For, X-Forwarded-Host, and X-Forwarded-Proto)":[null,""],"CPU throttling":[null,""],"Normal (default). High is lower and Low is higher CPU use":[null,""],"Anonymous redirect":[null,""],"backlink protection via anonymizer service, must end in \"?\"":[null,""],"Enable debug":[null,""],"enable debug logs":[null,""],"Verify SSL Certs":[null,""],"verify SSL Certificates (Disable this for broken SSL installs (Like QNAP))":[null,""],"No Restart":[null,""],"only shutdown when restarting SR":[null,""],"only select this when you have external software restarting SR automatically when it stops (like FireDaemon)":[null,""],"Encrypt passwords":[null,""],"in the <code>config.ini</code> file":[null,""],"warning":[null,""],"passwords must only contain":[null,""],"ASCII characters":[null,""],"Unprotected calendar":[null,""],"allow subscribing to the calendar without user and password":[null,""],"some services like Google Calendar only work this way":[null,""],"Google Calendar Icons":[null,""],"show an icon next to exported calendar events in Google Calendar":[null,""],"Proxy host":[null,""],"blank to disable or proxy to use when connecting to providers":[null,""],"also use global proxy setting for indexers (tvdb, xem, anidb, etc.)":[null,""],"Skip Remove Detection":[null,""],"skip detection of removed files":[null,""],"if disabled the episode will be set to the default deleted status":[null,""],"Default deleted episode status":[null,""],"define the status to be set for media file that has been deleted.":[null,""],"Archived option will keep previous downloaded quality":[null,""],"example: Downloaded (1080p WEB-DL) ==> Archived (1080p WEB-DL)":[null,""],"Options for github related features.":[null,""],"Branch version":[null,""],"error: No branches found.":[null,""],"select branch to use (restart required)":[null,""],"Authorization Type":[null,""],"Username and password":[null,""],"Personal access token":[null,""],"You must use a personal access token if you're using \"two-factor authentication\" on GitHub.":[null,""],"GitHub username":[null,""],"*** (REQUIRED FOR SUBMITTING ISSUES) ***":[null,""],"GitHub password":[null,""],"GitHub personal access token":[null,""],"Generate Token":[null,""],"Manage Tokens":[null,""],"GitHub remote for branch":[null,""],"access repo configured remotes (save then refresh browser)":[null,""],"default":[null,""],"origin":[null,""],"Git executable path":[null,""],"only needed if OS is unable to locate git from env":[null,""],"Git reset":[null,""],"removes untracked files and performs a hard reset on git branch automatically to help resolve update issues":[null,""],"Home Theater / NAS":[null,""],"Devices":[null,""],"Social":[null,""],"A free and open source cross-platform media center and home entertainment system software with a 10-foot user interface designed for the living-room TV.":[null,""],"send KODI commands?":[null,""],"Always on":[null,""],"log errors when unreachable?":[null,""],"Notify on snatch":[null,""],"send a notification when a download starts?":[null,""],"Notify on download":[null,""],"send a notification when a download finishes?":[null,""],"Notify on subtitle download":[null,""],"send a notification when subtitles are downloaded?":[null,""],"Update library":[null,""],"update KODI library when a download finishes?":[null,""],"Full library update":[null,""],"perform a full library update if update per-show fails?":[null,""],"Only update first host":[null,""],"only send library updates to the first active host?":[null,""],"KODI IP:Port":[null,""],"host running KODI (eg. 192.168.1.100:8080)":[null,""],"(multiple host strings must be separated by commas)":[null,""],"Username":[null,""],"username for your KODI server (blank for none)":[null,""],"Password":[null,""],"password for your KODI server (blank for none)":[null,""],"Click below to test.":[null,""],"Experience your media on a visually stunning, easy to use interface on your Mac connected to your TV. Your media library has never looked this good!":[null,""],"For sending notifications to Plex Home Theater (PHT) clients, use the KODI notifier with port <b>3005</b>.":[null,""],"send Plex Media Server library updates?":[null,""],"Plex Media Server Auth Token":[null,""],"auth token used by Plex":[null,""],"Update Library":[null,""],"update Plex Media Server library when a download finishes":[null,""],"Plex Media Server IP:Port":[null,""],"one or more hosts running Plex Media Server<br/>(eg. 192.168.1.1:32400, 192.168.1.2:32400)":[null,""],"HTTPS":[null,""],"use https for plex media server requests?":[null,""],"Click below to test Plex Media Server(s)":[null,""],"Test Plex Media Server":[null,""],"Plex Home Theater":[null,""],"send Plex Home Theater notifications?":[null,""],"Plex Home Theater IP:Port":[null,""],"one or more hosts running Plex Home Theater<br>(eg. 192.168.1.100:3000, 192.168.1.101:3000)":[null,""],"Click below to test Plex Home Theater(s)":[null,""],"Test Plex Home Theater":[null,""],"some Plex Home Theaters <b class=\"boldest\">do not</b> support notifications e.g. Plexapp for Samsung TVs":[null,""],"Emby":[null,""],"A home media server built using other popular open source technologies.":[null,""],"send update commands to Emby?":[null,""],"Emby IP:Port":[null,""],"host running Emby (eg. 192.168.1.100:8096)":[null,""],"Emby API Key":[null,""],"Networked Media Jukebox":[null,""],"The Networked Media Jukebox, or NMJ, is the official media jukebox interface made available for the Popcorn Hour 200-series.":[null,""],"send update commands to NMJ?":[null,""],"Popcorn IP address":[null,""],"IP address of Popcorn 200-series (eg. 192.168.1.100)":[null,""],"Get settings":[null,""],"Get Settings":[null,""],"the Popcorn Hour device must be powered on and NMJ running.":[null,""],"NMJ database":[null,""],"automatically filled via the 'Get Settings' button.":[null,""],"NMJ mount url":[null,""],"Networked Media Jukebox v2":[null,""],"The Networked Media Jukebox, or NMJv2, is the official media jukebox interface made available for the Popcorn Hour 300 & 400-series.":[null,""],"send update commands to NMJv2?":[null,""],"IP address of Popcorn 300/400-series (eg. 192.168.1.100)":[null,""],"Database location":[null,""],"Database instance":[null,""],"adjust this value if the wrong database is selected.":[null,""],"Find database":[null,""],"Find Database":[null,""],"the Popcorn Hour device must be powered on.":[null,""],"NMJv2 database":[null,""],"automatically filled via the 'Find Database' buttons.":[null,""],"Synology":[null,""],"The Synology DiskStation NAS.":[null,""],"Synology Indexer is the daemon running on the Synology NAS to build its media database.":[null,""],"send Synology notifications?":[null,""],"requires SickRage to be running on your Synology NAS.":[null,""],"Synology Indexer":[null,""],"Synology Notifier is the notification system of Synology DSM":[null,""],"send notifications to the Synology Notifier?":[null,""],"pyTivo":[null,""],"pyTivo is both an HMO and GoBack server. This notifier will load the completed downloads to your Tivo.":[null,""],"send notifications to pyTivo?":[null,""],"requires the downloaded files to be accessible by pyTivo.":[null,""],"pyTivo IP:Port":[null,""],"host running pyTivo (eg. 192.168.1.1:9032)":[null,""],"pyTivo share name":[null,""],"value used in pyTivo Web Configuration to name the share.":[null,""],"Tivo name":[null,""],"(Messages & Settings > Account & System Information > System Information > DVR name)":[null,""],"Growl":[null,""],"A cross-platform unobtrusive global notification system.":[null,""],"send Growl notifications?":[null,""],"Growl IP:Port":[null,""],"host running Growl (eg. 192.168.1.100:23053)":[null,""],"may leave blank if SickRage is on the same host.":[null,""],"otherwise Growl <b>requires</b> a password to be used.":[null,""],"Click below to register and test Growl, this is required for Growl notifications to work.":[null,""],"Register Growl":[null,""],"Prowl":[null,""],"A Growl client for iOS.":[null,""],"send Prowl notifications?":[null,""],"Prowl Message Title":[null,""],"Global Prowl API key(s)":[null,""],"Prowl API(s) listed here, separated by commas if applicable, will<br> receive notifications for <b>all</b> shows. Your Prowl API key is available at:":[null,""],"(this field may be blank except when testing.)":[null,""],"Show notification list":[null,""],"-- Select a Show --":[null,""],"Configure per-show notifications here by entering Prowl API key(s), separated by commas, '\n 'after selecting a show in the drop-down box. Be sure to activate the 'Save for this show' '\n 'button below after each entry.":[null,""],"Save for this show":[null,""],"Prowl priority":[null,""],"Very Low":[null,""],"Moderate":[null,""],"Normal":[null,""],"High":[null,""],"Emergency":[null,""],"priority of Prowl messages from SickRage.":[null,""],"Libnotify":[null,""],"The standard desktop notification API for Linux/*nix systems. This notifier will only function if the pynotify module is installed (Ubuntu/Debian package <a href=\"apt:python-notify\">python-notify</a>).":[null,""],"send Libnotify notifications?":[null,""],"Pushover":[null,""],"Pushover makes it easy to send real-time notifications to your Android and iOS devices.":[null,""],"send Pushover notifications?":[null,""],"Pushover key":[null,""],"user key of your Pushover account":[null,""],"Pushover API key":[null,""],"click here":[null,""]," to create a Pushover API key":[null,""],"Pushover devices":[null,""],"comma separated list of pushover devices you want to send notifications to":[null,""],"Pushover notification sound":[null,""],"Bike":[null,""],"Bugle":[null,""],"Cash Register":[null,""],"Classical":[null,""],"Cosmic":[null,""],"Falling":[null,""],"Gamelan":[null,""],"Incoming":[null,""],"Intermission":[null,""],"Magic":[null,""],"Mechanical":[null,""],"Piano Bar":[null,""],"Siren":[null,""],"Space Alarm":[null,""],"Tug Boat":[null,""],"Alien Alarm (long)":[null,""],"Climb (long)":[null,""],"Persistent (long)":[null,""],"Pushover Echo (long)":[null,""],"Up Down (long)":[null,""],"None (silent)":[null,""],"Device specific":[null,""],"choose notification sound to use":[null,""],"Pushover priority":[null,""],"Choose priority to use":[null,""],"Boxcar 2":[null,""],"Read your messages where and when you want them!":[null,""],"send Boxcar notifications?":[null,""],"Boxcar2 access token":[null,""],"access token for your Boxcar account.":[null,""],"NMA":[null,""],"Notify My Android":[null,""],"Notify My Android is a Prowl-like Android App and API that offers an easy way to send notifications from your application directly to your Android device.":[null,""],"send NMA notifications?":[null,""],"NMA API key":[null,""],"(multiple keys must be separated by commas, up to a maximum of 5)":[null,""],"NMA priority":[null,""],"priority of NMA messages from SickRage.":[null,""],"Pushalot":[null,""],"Pushalot is a platform for receiving custom push notifications to connected devices running Windows Phone or Windows 8.":[null,""],"send Pushalot notifications ?":[null,""],"Pushalot authorization token":[null,""],"authorization token of your Pushalot account.":[null,""],"Pushbullet":[null,""],"Pushbullet is a platform for receiving custom push notifications to connected devices running Android/iOS and desktop browsers such as Chrome, Firefox or Opera.":[null,""],"send Pushbullet notifications?":[null,""],"Pushbullet API key":[null,""],"API key of your Pushbullet account":[null,""],"Pushbullet devices":[null,""],"Update device list":[null,""],"Pushbullet channels":[null,""],"Free Mobile":[null,""],"Free Mobile is a famous French cellular network provider.<br> It provides to their customer a free SMS API.":[null,""],"send SMS notifications?":[null,""],"send a SMS when a download starts?":[null,""],"send a SMS when a download finishes?":[null,""],"send a SMS when subtitles are downloaded?":[null,""],"Free Mobile customer ID":[null,""],"it's your Free Mobile customer ID (8 digits)":[null,""],"Free Mobile API key":[null,""],"find your API key in your customer portal.":[null,""],"Click below to test your settings.":[null,""],"Telegram":[null,""],"Telegram is a cloud-based instant messaging service.":[null,""],"send Telegram notifications?":[null,""],"send a message when a download starts?":[null,""],"send a message when a download finishes?":[null,""],"send a message when subtitles are downloaded?":[null,""],"User/group ID":[null,""],"contact @myidbot on Telegram to get an ID":[null,""],"Bot API token":[null,""],"contact @BotFather on Telegram to set up one":[null,""],"Join":[null,""],"Join all of your devices together!":[null,""],"send Join notifications?":[null,""],"Device ID":[null,""],"per device specific id":[null,""]," to create a Join API key":[null,""],"Twilio":[null,""],"Twilio is a webservice API that allows you to communicate directly with a mobile number. This notifier will send a text directly to your mobile device.":[null,""],"should SickRage text your mobile device?":[null,""],"Twilio Account SID":[null,""],"account SID of your Twilio account.":[null,""],"Twilio Auth Token":[null,""],"Twilio Phone SID":[null,""],"phone SID that you would like to send the sms from":[null,""],"Your phone number":[null,""],"phone number that will receive the sms. Please use the format +1-###-###-####":[null,""],"Twitter":[null,""],"A social networking and microblogging service, enabling its users to send and read other users' messages called tweets.":[null,""],"should SickRage post tweets on Twitter?":[null,""],"you may want to use a secondary account.":[null,""],"send direct message":[null,""],"send a notification via Direct Message, not via status update":[null,""],"send DM to":[null,""],"Twitter account to send Direct Messages to (must follow you)":[null,""],"Step One":[null,""],"Request Authorization":[null,""],"Click the \"Request Authorization\" button.<br> This will open a new page containing an auth key.<br> <b>note:</b> if nothing happens check your popup blocker.":[null,""],"Step Two":[null,""],"Enter the key Twitter gave you below, and click \"Verify Key\".":[null,""],"Trakt":[null,""],"Trakt helps keep a record of what TV shows and movies you are watching. Based on your favorites, Trakt recommends additional shows and movies you'll enjoy!":[null,""],"send Trakt.tv notifications?":[null,""],"username of your Trakt account.":[null,""],"Trakt PIN":[null,""],"Get Trakt PIN":[null,""],"PIN code to authorize SickRage to access Trakt on your behalf.":[null,""],"API Timeout":[null,""],"seconds to wait for Trakt API to respond. (Use 0 to wait forever)":[null,""],"Default indexer":[null,""],"Sync libraries":[null,""],"sync your SickRage show library with your trakt show library.":[null,""],"Remove Episodes From Collection":[null,""],"remove an episode from your Trakt Collection if it is not in your SickRage Library.":[null,""],"Sync watchlist":[null,""],"sync your SickRage show watchlist with your trakt show watchlist (either Show and Episode).":[null,""],"episode will be added on watch list when wanted or snatched and will be removed when downloaded ":[null,""],"Watchlist add method":[null,""],"Skip All":[null,""],"Download Pilot Only":[null,""],"Get whole show":[null,""],"method in which to download episodes for new shows.":[null,""],"Remove episode":[null,""],"remove an episode from your watchlist after it is downloaded.":[null,""],"Remove series":[null,""],"remove the whole series from your watchlist after any download.":[null,""],"Remove watched show":[null,""],"remove the show from sickrage if it's ended and completely watched":[null,""],"Start paused":[null,""],"shows grabbed from your trakt watchlist start paused.":[null,""],"Trakt blackList name":[null,""],"name (slug) of list on Trakt for blacklisting show on 'Add Trending Show' & 'Add Recommended Shows' pages":[null,""],"Email":[null,""],"Allows configuration of email notifications on a per show basis.":[null,""],"send email notifications?":[null,""],"SMTP host":[null,""],"hostname of your SMTP email server.":[null,""],"SMTP port":[null,""],"port number used to connect to your SMTP host.":[null,""],"SMTP from":[null,""],"sender email address, some hosts require a real address.":[null,""],"Use TLS":[null,""],"check to use TLS encryption.":[null,""],"SMTP user":[null,""],"(optional) your SMTP server username.":[null,""],"SMTP password":[null,""],"(optional) your SMTP server password.":[null,""],"Global email list":[null,""],"email addresses listed here, separated by commas if applicable, will<br> receive notifications for <b>all</b> shows.":[null,""],"(This field may be blank except when testing.)":[null,""],"Email Subject":[null,""],"use a custom subject for some privacy protection?":[null,""],"(leave blank for the default SickRage subject)":[null,""],"configure per-show notifications here by entering email address(es), separated by commas,":[null,""],"after selecting a show in the drop-down box. Be sure to activate the 'Save for this show'":[null,""],"button below after each entry.":[null,""],"Slack":[null,""],"Slack brings all your communication together in one place. It's real-time messaging, archiving and search for modern teams.":[null,""],"should SickRage post messages on Slack?":[null,""],"Slack Incoming Webhook":[null,""],"Discord":[null,""],"All-in-one voice and text chat for gamers that's free, secure, and works on both your desktop and phone.":[null,""],"Should SickRage post messages on Discord?":[null,""],"Discord Incoming Webhook":[null,""],"Create webhook under channel settings.":[null,""],"Discord Bot Name":[null,""],"Blank will use webhook default Name.":[null,""],"Discord Avatar URL":[null,""],"Blank will use webhook default Avatar.":[null,""],"Discord TTS":[null,""],"Send notifications using text-to-speech":[null,""],"Post-Processing":[null,""],"Episode Naming":[null,""],"Metadata":[null,""],"Settings that dictate how SickRage should process completed downloads.":[null,""],"enable the automatic post processor to scan and process any files in your Post Processing Dir":[null,""],"do not use if you use an external Post Processing script":[null,""],"Post Processing Dir":[null,""],"the folder where your download client puts the completed TV downloads.":[null,""],"please use seperate downloading and completed folders in your download client if possible.":[null,""],"Processing Method":[null,""],"what method should be used to put files into the library?":[null,""],"if you keep seeding torrents after they finish, please avoid the 'move' processing method to prevent errors.":[null,""],"Auto Post-Processing Frequency":[null,""],"time in minutes to check for new files to auto post-process (min 10)":[null,""],"Postpone post processing":[null,""],"wait to process a folder if sync files are present.":[null,""],"Sync File Extensions":[null,""],"comma seperated list of extensions or filename globs SickRage ignores when Post Processing":[null,""],"Rename Episodes":[null,""],"rename episode using the Episode Naming settings?":[null,""],"Create missing show directories":[null,""],"create missing show directories when they get deleted":[null,""],"Add shows without directory":[null,""],"add shows without creating a directory (not recommended)":[null,""],"Move associated files":[null,""],"move associated (srt/srr/sfv/etc) files while post processing?":[null,""],"Rename .nfo file":[null,""],"rename the original .nfo file to .nfo-orig to avoid conflicts?":[null,""],"Associated file extensions":[null,""],"comma separated list of associated file extensions SickRage should keep while post processing.":[null,""],"leaving it empty means no associated files will be post processed":[null,""],"Delete non associated files":[null,""],"delete non associated files while post processing?":[null,""],"Change File Date":[null,""],"set last modified filedate to the date that the episode aired?":[null,""],"some systems may ignore this feature.":[null,""],"Timezone for File Date":[null,""],"local":[null,""],"network":[null,""],"what timezone should be used to change File Date?":[null,""],"Unpack":[null,""],"What to do with archived releases found in your <i>TV Download Dir</i>?":[null,""],"Ignore (do not process contents)":[null,""],"Unpack (process contents)":[null,""],"Treat as video (process archive as-is)":[null,""],"'Unpack' only works with RAR archives":[null,""],"Windows":[null,""],"WinRar is required on windows":[null,""],"Unpack Directory":[null,""],"Choose a path to unpack files, leave blank to unpack in download dir":[null,""],"Unrar Location":[null,""],"add the path to unrar if it is not in the system path":[null,""],"Alternate Unrar Tool":[null,""],"add the path to an alternate unrar tool if it is not in the system path":[null,""],"Delete RAR contents":[null,""],"delete content of RAR files, even if Process Method not set to move?":[null,""],"only working with RAR archive":[null,""],"Don't delete empty folders":[null,""],"leave empty folders when Post Processing?":[null,""],"can be overridden using manual Post Processing":[null,""],"Follow symbolic-links":[null,""],"follow down symbolic links in download directory?":[null,""],"<b>EXPERTS ONLY.</b><br>Enable only if you know what <b>circular symbolic links</b> are,<br>and can <b>verify that you have none</b>.":[null,""],"Use icacls":[null,""],"Windows only":[null,""],"sets video permissions after using the move method in post processing":[null,""],"Extra Scripts":[null,""],"see":[null,""],"for script arguments description and usage.":[null,""],"How SickRage will name and sort your episodes.":[null,""],"Name Pattern":[null,""],"Toggle Naming Legend":[null,""],"don't forget to add quality pattern. Otherwise after post-processing the episode will have UNKNOWN quality":[null,""],"Meaning":[null,""],"Pattern":[null,""],"Result":[null,""],"Use lower case if you want lower case names (eg. %sn, %e.n, %q_n etc)":[null,""],"Show Name":[null,""],"Show.Name":[null,""],"Show_Name":[null,""],"Season Number":[null,""],"XEM Season Number":[null,""],"Episode Number":[null,""],"XEM Episode Number":[null,""],"Episode Name":[null,""],"Episode.Name":[null,""],"Episode_Name":[null,""],"Air Date":[null,""],"Post-Processing Date":[null,""],"Quality":[null,""],"Scene Quality":[null,""],"Release Name":[null,""],"SickRage' is used in place of RLSGROUP if it could not be properly detected":[null,""],"Release Group":[null,""],"If episode is proper/repack add 'proper' to name.":[null,""],"Release Type":[null,""],"Multi-Episode Style":[null,""],"Single-EP Sample":[null,""],"Multi-EP sample":[null,""],"Strip Show Year":[null,""],"remove the TV show's year when renaming the file?":[null,""],"only applies to shows that have year inside parentheses":[null,""],"Custom Air-By-Date":[null,""],"name air-by-date shows differently than regular shows?":[null,""],"Toggle ABD Naming Legend":[null,""],"Regular Air Date":[null,""],"Year":[null,""],"Month":[null,""],"Day":[null,""],"Multi-EP style is ignored":[null,""],"Custom Sports":[null,""],"name sports shows differently than regular shows?":[null,""],"Toggle Sports Naming Legend":[null,""],"Sports Air Date":[null,""],"Custom Anime":[null,""],"name anime shows differently than regular shows?":[null,""],"Toggle Anime Naming Legend":[null,""],">XEM Season Number":[null,""],"Single-EP Anime Sample":[null,""],"Multi-EP Anime sample":[null,""],"Add Absolute Number":[null,""],"add the absolute number to the season/episode format?":[null,""],"only applies to anime. (eg. S15E45 - 310 vs S15E45)":[null,""],"Only Absolute Number":[null,""],"replace season/episode format with absolute number":[null,""],"only applies to anime.":[null,""],"No Absolute Number":[null,""],"don't include the absolute number":[null,""],"The data associated to the data. These are files associated to a TV show in the form of images and text that, when supported, will enhance the viewing experience.":[null,""],"Metadata Type":[null,""],"toggle metadata options that you wish to be created":[null,""],"multiple targets may be used":[null,""],"Select Metadata":[null,""],"Provider Priorities":[null,""],"Provider Options":[null,""],"Configure Custom Newznab Providers":[null,""],"Configure Custom Torrent Providers":[null,""],"Check off and drag the providers into the order you want them to be used.":[null,""],"At least one provider is required but two are recommended.":[null,""],"Torrent providers can be toggled in ":[null,""],"Provider does not support backlog searches at this time.":[null,""],"Provider is <b>NOT WORKING</b>.":[null,""],"Configure individual provider settings here.":[null,""],"Check with provider's website on how to obtain an API key if needed.":[null,""],"Configure provider":[null,""],"no providers available to configure.":[null,""],"URL":[null,""],"Enable daily searches":[null,""],"enable provider to perform daily searches.":[null,""],"Enable backlog searches":[null,""],"enable provider to perform backlog searches.":[null,""],"Season search mode":[null,""],"when searching for complete seasons you can choose to have it look for season packs only, or choose to have it build a complete season from just single episodes.":[null,""],"season packs only.":[null,""],"episodes only.":[null,""],"Enable fallback":[null,""],"when searching for a complete season depending on search mode you may return no results, this helps by restarting the search using the opposite search mode.":[null,""],"Custom URL":[null,""],"the URL should include the protocol (and port if applicable). Examples: http://192.168.1.4/ or http://localhost:3000/":[null,""],"Api key":[null,""],"Digest":[null,""],"Hash":[null,""],"Passkey":[null,""],"Cookies":[null,""],"example: uid=1234;pass=567845439634987<br>note: uid and pass are not your username/password.<br>use DevTools or Firebug to get these values after logging in on your browser.":[null,""],"Pin":[null,""],"Seed ratio":[null,""],"stop transfer when ratio is reached<br>(-1 SickRage default to seed forever, or leave blank for downloader default)":[null,""],"Minimum seeders":[null,""],"Minimum leechers":[null,""],"Confirmed download":[null,""],"only download torrents from trusted or verified uploaders ?":[null,""],"Ranked torrents":[null,""],"only download ranked torrents (trusted releases)":[null,""],"English torrents":[null,""],"only download english torrents, or torrents containing english subtitles":[null,""],"For Spanish torrents":[null,""],"ONLY search on this provider if show info is defined as \"Spanish\" (avoid provider's use for VOS shows)":[null,""],"Sorting results by":[null,""],"Freeleech":[null,""],"only download <b>\"FreeLeech\"</b> torrents.":[null,""],"Category":[null,""],"select torrent with Italian subtitle":[null,""],"Configure Custom<br>Newznab Providers":[null,""],"Add and setup or remove custom Newznab providers.":[null,""],"Select provider":[null,""],"-- add new provider --":[null,""],"Provider name":[null,""],"Site URL":[null,""],"Newznab search categories":[null,""],"select your Newznab categories on the left, and click the \"update categories\" button to use them for searching.) <b>don't forget to to save the form!":[null,""],"Update Categories":[null,""],"Add":[null,""],"Delete":[null,""],"Add and setup or remove custom RSS providers.":[null,""],"RSS URL":[null,""],"Search element":[null,""],"eg: title":[null,""],"Episode Search":[null,""],"NZB Search":[null,""],"Torrent Search":[null,""],"How to manage searching with":[null,""],"Randomize Providers":[null,""],"randomize the provider search order instead of going in order of placement":[null,""],"Download propers":[null,""],"replace original download with \"Proper\" or \"Repack\" if nuked":[null,""],"Check propers every":[null,""],"24 hours":[null,""],"4 hours":[null,""],"90 mins":[null,""],"45 mins":[null,""],"15 mins":[null,""],"Backlog search day(s)":[null,""],"number of day(s) that the \"Forced Backlog Search\" will cover (e.g. 7 Days)":[null,""],"Backlog search frequency":[null,""],"time in minutes between searches (min.":[null,""],"Daily search frequency":[null,""],"Usenet retention":[null,""],"age limit in days for usenet articles to be used (e.g. 500)":[null,""],"Ignore words":[null,""],"results with one or more word from this list will be ignored<br>separate words with a comma, e.g. \"word1,word2,word3\"":[null,""],"Require words":[null,""],"results with no word from this list will be ignored<br>separate words with a comma, e.g. \"word1,word2,word3\"":[null,""],"Trackers list":[null,""],"trackers that will be added to magnets without trackers<br>separate trackers with a comma, e.g. \"tracker1,tracker2,tracker3\"":[null,""],"Ignore language names in subbed results":[null,""],"ignore subbed releases based on language names <br>\n Example: \"dk\" will ignore words: dksub, dksubs, dksubbed, dksubed <br>\n separate languages with a comma, e.g. \"lang1,lang2,lang3":[null,""],"Allow high priority":[null,""],"set downloads of recently aired episodes to high priority":[null,""],"Use Failed Downloads":[null,""],"use Failed Download Handling?":[null,""],"will only work with snatched/downloaded episodes after enabling this":[null,""],"Delete Failed":[null,""],"delete files left over from a failed download?":[null,""],"this only works if Use Failed Downloads is enabled.":[null,""],"How to handle NZB search results.":[null,""],"Search NZBs":[null,""],"enable NZB search providers":[null,""],"Send .nzb files to":[null,""],"SABnzbd server URL":[null,""],"URL to your SABnzbd server (e.g. http://localhost:8080/)":[null,""],"SABnzbd username":[null,""],"(blank for none)":[null,""],"SABnzbd password":[null,""],"SABnzbd API key":[null,""],"locate at... SABnzbd Config -> General -> API Key":[null,""],"Use SABnzbd category":[null,""],"add downloads to this category (e.g. TV)":[null,""],"Use SABnzbd category (backlog episodes)":[null,""],"add downloads of old episodes to this category (e.g. TV)":[null,""],"Use SABnzbd category for anime":[null,""],"add anime downloads to this category (e.g. anime)":[null,""],"Use SABnzbd category for anime (backlog episodes)":[null,""],"add anime downloads of old episodes to this category (e.g. anime)":[null,""],"Use forced priority":[null,""],"enable to change priority from HIGH to FORCED":[null,""],"Black hole folder location":[null,""],"<b>.nzb</b> files are stored at this location for external software to find and use":[null,""],"Connect using HTTPS":[null,""],"enable Secure control in NZBGet and set the correct Secure Port here":[null,""],"NZBget host:port":[null,""],"(e.g. localhost:6789)":[null,""],"NZBget RPC host name and port number (not NZBgetweb!)":[null,""],"NZBget username":[null,""],"locate in nzbget.conf (default:nzbget)":[null,""],"NZBget password":[null,""],"locate in nzbget.conf (default:tegbzn6789)":[null,""],"Use NZBget category":[null,""],"send downloads marked this category (e.g. TV)":[null,""],"Use NZBget category (backlog episodes)":[null,""],"send downloads of old episodes marked this category (e.g. TV)":[null,""],"Use NZBget category for anime":[null,""],"send anime downloads marked this category (e.g. anime)":[null,""],"Use NZBget category for anime (backlog episodes)":[null,""],"send anime downloads of old episodes marked this category (e.g. anime)":[null,""],"NZBget priority":[null,""],"Very low":[null,""],"Low":[null,""],"Very high":[null,""],"Force":[null,""],"priority for daily snatches (no backlog)":[null,""],"Torrent host:port":[null,""],"URL to your Synology DSM (e.g. http://localhost:5000/)":[null,""],"Client username":[null,""],"Client password":[null,""],"Downloaded files location":[null,""],"where Synology Download Station will save downloaded files (blank for client default)":[null,""],"the destination has to be a shared folder for Synology DS":[null,""],"Click below to test":[null,""],"How to handle Torrent search results.":[null,""],"Search torrents":[null,""],"enable torrent search providers":[null,""],"Send .torrent files to":[null,""],"<b>.torrent</b> files are stored at this location for external software to find and use":[null,""],"URL to your torrent client (e.g. http://localhost:8000/)":[null,""],"Torrent RPC URL":[null,""],"the path without leading and trailing slashes (e.g. transmission)":[null,""],"Http Authentication":[null,""],"Verify certificate":[null,""],"disable if you get \"Deluge: Authentication Error\" in your log":[null,""],"verify SSL certificates for HTTPS requests":[null,""],"Add label to torrent":[null,""],"(blank spaces are not allowed)":[null,""],"label plugin must be enabled in Deluge clients":[null,""],"for QBitTorrent 3.3.1 and up":[null,""],"Add label to torrent for anime":[null,""],"for QBitTorrent 3.3.1 and up ":[null,""],"where <span id=\"torrent_client\">the torrent client</span> will save downloaded files (blank for client default)":[null,""],"the destination has to be a shared folder for Synology DS</span>":[null,""],"Minimum seeding time":[null,""],"time in hours":[null,""],"(default:'0' passes blank to client and '-1' passes nothing)":[null,""],"Start torrent paused":[null,""],"add .torrent to client but do <b style=\"font-weight:900\">not</b> start downloading":[null,""],"Allow high bandwidth":[null,""],"use high bandwidth allocation if priority is high":[null,""],"Test Connection":[null,""],"Windows Shares":[null,""],"Defines your existing windows shares so that we can add them to the browse dialog":[null,""],"Share #{number}":[null,""],"Share label":[null,""],"Hostname or IP":[null,""],"Share path":[null,""],"Subtitles Search":[null,""],"Subtitles Plugin":[null,""],"Plugin Settings":[null,""],"Settings that dictate how SickRage handles subtitles search results.":[null,""],"Search Subtitles":[null,""],"Subtitle Languages":[null,""],"Subtitle Directory":[null,""],"the directory where SickRage should store your <i>Subtitles</i> files.":[null,""],"leave empty if you want store subtitle in episode path.":[null,""],"Subtitle Find Frequency":[null,""],"time in hours between scans (default: 1)":[null,""],"Include Specials":[null,""],"include the show's specials when searching for subtitles?":[null,""],"Perfect matches":[null,""],"only download subtitles that match: release group, video codec, audio codec and resolution":[null,""],"if disabled you may get out of sync subtitles":[null,""],"Subtitles History":[null,""],"log downloaded Subtitle on History page?":[null,""],"Subtitles Multi-Language":[null,""],"append language codes to subtitle filenames?":[null,""],"this option is required if you use multiple subtitle languages":[null,""],"Delete unwanted subtitles":[null,""],"enable to delete unwanted subtitle languages bundled with release":[null,""],"Embedded Subtitles":[null,""],"ignore subtitles embedded inside video file?":[null,""],"this will ignore <u>all</u> embedded subtitles for every video file!":[null,""],"Hearing Impaired Subtitles":[null,""],"download hearing impaired style subtitles?":[null,""],"See":[null,""],"for a script arguments description.":[null,""],"Additional scripts separated by <b>|</b>.":[null,""],"Scripts are called after each episode has searched and downloaded subtitles.":[null,""],"For any scripted languages, include the interpreter executable before the script. See the following example":[null,""],"For Windows:":[null,""],"For Linux / OS X:":[null,""],"Subtitle Providers":[null,""],"Check off and drag the plugins into the order you want them to be used.":[null,""],"At least one plugin is required.":[null,""]," Web-scraping plugin":[null,""],"Provider Settings":[null,""],"Set user and password for each provider":[null,""],"User Name":[null,""],"Change Show":[null,""],"Prev Show":[null,""],"Next Show":[null,""],"Jump to Season":[null,""],"Specials":[null,""],"Poster for":[null,""],"Stars":[null,""],"minutes":[null,""],"View other popular {genre} shows on trakt.tv.":[null,""],"View other popular {imdbgenre} shows on IMDB.":[null,""],"Allowed":[null,""],"Preferred":[null,""],"Originally Airs":[null,""],"Show Status":[null,""],"Default EP Status":[null,""],"Location":[null,""],"Missing":[null,""],"Scene Name":[null,""],"Required Words":[null,""],"Ignored Words":[null,""],"Size":[null,""],"Info Language":[null,""],"Subtitles SR Metadata":[null,""],"Season Folders":[null,""],"Paused":[null,""],"Air-by-Date":[null,""],"Sports":[null,""],"DVD Order":[null,""],"Scene Numbering":[null,""],"Select Filtered Episodes":[null,""],"Clear All":[null,""],"Change selected episodes to":[null,""],"Select Columns":[null,""],"Hide Episodes":[null,""],"Show Episodes":[null,""],"NFO":[null,""],"TBN":[null,""],"Episode":[null,""],"Absolute":[null,""],"Scene":[null,""],"Scene Absolute":[null,""],"File Name":[null,""],"Airdate":[null,""],"Download":[null,""],"Change the value here if scene numbering differs from the indexer episode numbering":[null,""],"Change the value here if scene absolute numbering differs from the indexer absolute numbering":[null,""],"Manual Search":[null,""],"Do you want to mark this episode as failed?":[null,""],"The episode release name will be added to the failed history, preventing it to be downloaded again.":[null,""],"Do you want to include the current episode quality in the search?":[null,""],"Choosing No will ignore any releases with the same episode quality as the one currently downloaded/snatched.":[null,""],"Download subtitle":[null,""],"Do you want to re-download the subtitle for this language?":[null,""],"It will overwrite your current subtitle":[null,""],"Format":[null,""],"Advanced":[null,""],"Main Settings":[null,""],"Show Location":[null,""],"Preferred Quality":[null,""],"Default Episode Status":[null,""],"this will set the status for future episodes.":[null,""],"this only applies to episode filenames and the contents of metadata files.":[null,""],"search for subtitles":[null,""],"Use SR Metdata":[null,""],"use SickRage metadata when searching for subtitle, this will override the autodiscovered metadata":[null,""],"pause this show (SickRage will not download episodes)":[null,""],"Format Settings":[null,""],"Air by date":[null,""],"check if the show is released as Show.03.02.2010 rather than Show.S02E03.":[null,""],"in case of an air date conflict between regular and special episodes, the later will be ignored.":[null,""],"check if the show is Anime and episodes are released as Show.265 rather than Show.S02E03":[null,""],"check if the show is a sporting or MMA event released as Show.03.02.2010 rather than Show.S02E03":[null,""],"Season folders":[null,""],"group episodes by season folder (uncheck to store in a single folder)":[null,""],"search by scene numbering (uncheck to search by indexer numbering)":[null,""],"use the DVD order instead of the air order":[null,""],"a \"Force Full Update\" is necessary, and if you have existing episodes you need to sort them manually.":[null,""],"comma-separated <i>e.g. \"word1,word2,word3</i>\"":[null,""],"search results with one or more words from this list will be ignored.":[null,""],"e.g. \"word1,word2,word3\"":[null,""],"search results with no words from this list will be ignored.":[null,""],"Scene Exception":[null,""],"this will affect episode search on NZB and torrent providers.":[null,""],"this list appends to the original show name.":[null,""],"WARNING logs":[null,""],"ERROR logs":[null,""],"There are no events to display.":[null,""],"Limit":[null,""],"Layout":[null,""],"HistoryLayout":[null,""],"Compact":[null,""],"Detailed":[null,""],"Time":[null,""],"Provider":[null,""],"Missing Provider":[null,""],"missing provider":[null,""],"Directory":[null,""],"Show Name (tvshow.nfo)":[null,""],"Indexer":[null,""],"Enter the folder containing the episode":[null,""],"Process Method to be used":[null,""],"Copy":[null,""],"Move":[null,""],"Hard Link":[null,""],"Symbolic Link":[null,""],"Symbolic Link Reversed":[null,""],"Force already Post Processed Dir/Files":[null,""],"Mark Dir/Files as priority download":[null,""],"(Check it to replace the file even if it exists at higher quality)":[null,""],"Delete files and folders":[null,""],"(Check it to delete files and folders like auto processing)":[null,""],"Don't use processing queue":[null,""],"(If checked this will return the result of the process here, but may be slow!)":[null,""],"Mark download as failed":[null,""],"Process":[null,""],"Download subtitles for this show?":[null,""],"use SickRage metadata when searching for subtitle, <br />this will override the autodiscovered metadata":[null,""],"Status for previously aired episodes":[null,""],"Status for all future episodes":[null,""],"Group episodes by season folder?":[null,""],"Is this show an Anime?":[null,""],"Is this show scene numbered?":[null,""],"Save Defaults":[null,""],"Use current values as the defaults":[null,""],"<p>Select your preferred fansub groups from the <b>Available Groups</b> and add them to the <b>Whitelist</b>. Add groups to the <b>Blacklist</b> to ignore them.</p>\n <p>The <b>Whitelist</b> is checked <i>before</i> the <b>Blacklist</b>.</p>\n <p>Groups are shown as <b>Name</b> | <b>Rating</b> | <b>Number of subbed episodes</b>.</p>\n <p>You may also add any fansub group not listed to either list manually.</p>\n <p>When doing this please note that you can only use groups listed on anidb for this anime.\n <br>If a group is not listed on anidb but subbed this anime, please correct anidb's data.</p>":[null,""],"Whitelist":[null,""],"Available Groups":[null,""],"Add to Whitelist":[null,""],"Add to Blacklist":[null,""],"Blacklist":[null,""],"Custom Group":[null,""],"Allowed Quality:":[null,""],"Preferred Quality:":[null,""],"Filter Show Name":[null,""],"Root":[null,""],"All":[null,""],"Clear Filter(s)":[null,""],"Poster":[null,"ポスター"],"Small Poster":[null,""],"Banner":[null,"バナー"],"Simple":[null,""],"Next Episode":[null,""],"Progress":[null,""],"Direction":[null,""],"Ascending":[null,""],"Descending":[null,""],"Poster Size":[null,""],"Continuing":[null,""],"Ended":[null,""],"Total":[null,""],"Invalid date":[null,""],"No Network":[null,""],"Next Ep":[null,""],"Prev Ep":[null,""],"Show":[null,"表示"],"Downloads":[null,""],"Active":[null,""],"loading":[null,""],"Loading...":[null,""],"<p><b><u>Preferred</u></b> qualities will replace those in <b><u>allowed</u></b>, even if they are lower.</p>":[null,""],"New":[null,""],"Set as Default":[null,""],"Remember me":[null,""],"Edit Selected":[null,""],"Subtitle":[null,""],"Default Ep Status":[null,""],"Update":[null,""],"Rescan":[null,""],"Rename":[null,""],"Search Subtitle":[null,""],"Force Metadata Regen":[null,""],"Snatched (Allowed)":[null,""],"Jump to Show":[null,""],"Force Backlog":[null,""],"Manage episodes with status":[null,""],"Manage":[null,""],"None of your episodes have status":[null,""],"Shows containing":[null,""],"episodes":[null,""],"Set checked shows/episodes to":[null,""],"Go":[null,""],"Select all":[null,""],"Clear all":[null,""],"Release":[null,""],"Backlog Search":[null,""],"Not in progress":[null,""],"In Progress":[null,""],"Daily Search":[null,""],"Find Propers Search":[null,""],"Propers search disabled":[null,""],"Subtitle Search":[null,""],"Subtitle search disabled":[null,""],"Search Queue":[null,""],"pending items":[null,""],"Daily":[null,""],"Manual":[null,""],"Changing any settings marked with (<span class=\"separator\">*</span>) will force a refresh of the selected shows.":[null,""],"Selected Shows":[null,""],"Root Directories":[null,""],"Current":[null,""],"Keep":[null,""],"Custom":[null,""],"Group episodes by season folder (set to \"No\" to store in a single folder).":[null,""],"Pause these shows (SickRage will not download episodes).":[null,""],"This will set the status for future episodes.":[null,""],"Search by scene numbering (set to \"No\" to search by indexer numbering).":[null,""],"Set if these shows are Anime and episodes are released as Show.265 rather than Show.S02E03":[null,""],"Set if these shows are sporting or MMA events released as Show.03.02.2010 rather than Show.S02E03.":[null,""],"In case of an air date conflict between regular and special episodes, the later will be ignored.":[null,""],"Set if these shows are released as Show.03.02.2010 rather than Show.S02E03.":[null,""],"Search for subtitles.":[null,""],"All of your episodes have {subsLanguage} subtitles.":[null,""],"Manage episodes without":[null,""],"Episodes without {subsLanguage} subtitles.":[null,""],"Episodes without {subtitleLanguage} (undefined) subtitles.":[null,""],"Download missed subtitles for selected episodes":[null,""],"Performing Restart":[null,""],"Waiting for SickRage to shut down":[null,""],"Waiting for SickRage to start again":[null,""],"Loading the default page":[null,""],"Error: The restart has timed out, perhaps something prevented SickRage from starting again?":[null,""],"Key":[null,""],"Missed":[null,""],"Today":[null,""],"Soon":[null,""],"Later":[null,""],"Subscribe":[null,""],"Date":[null,""],"View Paused":[null,""],"Hidden":[null,""],"Shown":[null,""],"Calendar":[null,"カレンダー"],"List":[null,"リスト"],"Ends":[null,""],"Next Ep Name":[null,""],"Run time":[null,""],"Indexers":[null,""],"No shows for this day":[null,""],"Airs":[null,""],"Plot":[null,""],"Show Update":[null,""],"Version Check":[null,""],"Proper Finder":[null,""],"Post Process":[null,""],"Subtitles Finder":[null,""],"Scheduler":[null,""],"Alive":[null,""],"Start Time":[null,""],"Cycle Time":[null,""],"Next Run":[null,""],"Last Run":[null,""],"Silent":[null,""],"True":[null,""],"N/A":[null,""],"Show id":[null,""],"Show name":[null,""],"Priority":[null,""],"Added":[null,""],"Queue type":[null,""],"LOW":[null,""],"NORMAL":[null,""],"HIGH":[null,""],"Disk Space":[null,""],"Free space":[null,""],"TV Download Directory":[null,""],"Media Root Directories":[null,""],"Preview of the proposed name changes":[null,""],"All Seasons":[null,""],"select all":[null,""],"Rename Selected":[null,""],"Cancel Rename":[null,""],"Old Location":[null,""],"New Location":[null,""],"Trakt API did not return any results, please check your config.":[null,""],"votes":[null,""],"Remove Show":[null,""],"Level":[null,""],"Filter":[null,""],"All non-absolute folder locations are relative to ":[null,""],"Manual Post-Processing":[null,""],"Episode Status Management":[null,""],"Update PLEX":[null,""],"Update KODI":[null,""],"Update Emby":[null,""],"Missed Subtitle Management":[null,""],"Help & Info":[null,""],"Backup & Restore":[null,""],"Tools":[null,""],"Support SickRage":[null,""],"View Errors":[null,""],"View Warnings":[null,""],"View Log":[null,""],"Check For Updates":[null,""],"Restart":[null,""],"Shutdown":[null,""],"Logout":[null,""],"Server Status":[null,""],"View overview of snatched episodes":[null,""],"Episodes Downloaded":[null,""],"Memory used":[null,""],"Load time":[null,""],"Branch":[null,""],"Now":[null,""]}}}} \ No newline at end of file +{"messages":{"domain":"messages","locale_data":{"messages":{"100":[null,""],"250":[null,""],"500":[null,""],"":{"domain":"messages","plural_forms":"nplurals=1; plural=0;","lang":"ja_JP"},"Drama":[null,""],"Mystery":[null,""],"Science-Fiction":[null,""],"Crime":[null,""],"Action":[null,""],"Comedy":[null,""],"Thriller":[null,""],"Animation":[null,""],"Family":[null,""],"Fantasy":[null,""],"Adventure":[null,""],"Horror":[null,""],"Film-Noir":[null,""],"Sci-Fi":[null,""],"Romance":[null,""],"Sport":[null,""],"War":[null,""],"Biography":[null,""],"History":[null,""],"Music":[null,""],"Western":[null,""],"News":[null,""],"Sitcom":[null,""],"Reality-TV":[null,""],"Documentary":[null,""],"Game-Show":[null,""],"Musical":[null,""],"Talk-Show":[null,""],"Started Download":[null,"ダウンロード開始"],"Download Finished":[null,"ダウンロード終了"],"Subtitle Download Finished":[null,"字幕ダウンロード終了"],"SickRage Updated":[null,"SickRage更新終了"],"SickRage Updated To Commit#: ":[null,""],"SickRage new login":[null,"SickRage 新しいログイン"],"New login from IP: {0}. http://geomaplookup.net/?ip={0}":[null,""],"Repeat":[null,""],"Repeat (Separated)":[null,""],"Extend":[null,""],"Extend (Limited)":[null,""],"Extend (Limited, E-prefixed)":[null,""],"Downloaded":[null,"ダウンロード済み"],"Snatched":[null,""],"Snatched (Proper)":[null,""],"Failed":[null,"失敗"],"Snatched (Best)":[null,""],"Archived":[null,"アーカイブ"],"Unknown":[null,"不明"],"Unaired":[null,"未放送"],"Skipped":[null,"スキップされた"],"Wanted":[null,""],"Ignored":[null,"無視"],"Subtitled":[null,"字幕付き"],"For best results please set the Download Station alias as":[null,""],"You can check this setting in the Synology DSM":[null,""],"Control Panel":[null,""],"Application Portal":[null,""],"Make sure you allow DSM to be embedded with iFrames too in":[null,""],"DSM Settings":[null,""],"Security":[null,""],"<No Filter>":[null,""],"Daily Searcher":[null,""],"Backlog":[null,""],"Show Updater":[null,""],"Check Version":[null,""],"Show Queue":[null,""],"Search Queue (All)":[null,""],"Search Queue (Daily Searcher)":[null,""],"Search Queue (Backlog)":[null,""],"Search Queue (Manual)":[null,""],"Search Queue (Retry/Failed)":[null,""],"Search Queue (RSS)":[null,""],"Find Propers":[null,""],"Postprocessor":[null,""],"Find Subtitles":[null,""],"Trakt Checker":[null,""],"Event":[null,""],"Error":[null,""],"Tornado":[null,""],"Thread":[null,""],"Main":[null,""],"Loading":[null,""],"New update found for SickRage, starting auto-updater":[null,""],"Update was successful":[null,"正常に更新されました"],"Update failed!":[null,""],"Backup":[null,"バックアップ"],"Config backup in progress...":[null,""],"Config backup successful, updating...":[null,""],"Config backup failed, aborting update":[null,""],"No update needed":[null,""],"Mako Error":[null,""],"Oops":[null,"おっと!"],"Wrong API key used":[null,""],"Login":[null,"ログイン"],"API Key not generated":[null,""],"API Builder":[null,""],"Schedule":[null,"スケジュール"],"Test 1":[null,"テスト 1"],"This is test number 1":[null,""],"Test 2":[null,"テスト 2"],"This is test number 2":[null,""],"You're using the {branch} branch. Please use 'master' unless specifically asked":[null,""],"Invalid show parameters":[null,""],"Invalid parameters":[null,""],"Episode couldn't be retrieved":[null,""],"Home":[null,"トップ"],"Show List":[null,""],"Error: Unsupported Request. Send jsonp request with 'callback' variable in the query string.":[null,""],"Success. Connected and authenticated":[null,""],"Authentication failed. SABnzbd expects":[null,""],"as authentication method":[null,""],"Unable to connect to host":[null,""],"SMS sent successfully":[null,""],"Problem sending SMS: {message}":[null,""],"Telegram notification succeeded. Check your Telegram clients to make sure it worked":[null,""],"Error sending Telegram notification: {message}":[null,""],"join notification succeeded. Check your join clients to make sure it worked":[null,""],"Error sending join notification: {message}":[null,""]," with password":[null,""],"Registered and Tested growl successfully {growl_host}":[null,""],"Registration and Testing of growl failed {growl_host}":[null,""],"Test prowl notice sent successfully":[null,""],"Test prowl notice failed":[null,""],"Boxcar2 notification succeeded. Check your Boxcar2 clients to make sure it worked":[null,""],"Error sending Boxcar2 notification":[null,""],"Pushover notification succeeded. Check your Pushover clients to make sure it worked":[null,""],"Error sending Pushover notification":[null,""],"Key verification successful":[null,""],"Unable to verify key":[null,""],"Tweet successful, check your twitter to make sure it worked":[null,""],"Error sending tweet":[null,""],"Please enter a valid account sid":[null,""],"Please enter a valid auth token":[null,""],"Please enter a valid phone sid":[null,""],"Please format the phone number as \"+1-###-###-####\"":[null,""],"Authorization successful and number ownership verified":[null,""],"Error sending sms":[null,""],"Slack message successful":[null,""],"Slack message failed":[null,""],"Discord message successful":[null,""],"Discord message failed":[null,""],"Test KODI notice sent successfully to {kodi_host}":[null,""],"Test KODI notice failed to {kodi_host}":[null,""],"Successful test notice sent to Plex Home Theater ... {plex_clients}":[null,""],"Test failed for Plex Home Theater ... {plex_clients}":[null,""],"Tested Plex Home Theater(s)":[null,""],"Successful test of Plex Media Server(s) ... {plex_servers}":[null,""],"Test failed, No Plex Media Server host specified":[null,""],"Test failed for Plex Media Server(s) ... {plex_servers}":[null,""],"Tested Plex Media Server host(s)":[null,""],"Tried sending desktop notification via libnotify":[null,""],"Test notice sent successfully to {emby_host}":[null,""],"Test notice failed to {emby_host}":[null,""],"Successfully started the scan update":[null,""],"Test failed to start the scan update":[null,""],"Test notice sent successfully to {nmj2_host}":[null,""],"Test notice failed to {nmj2_host}":[null,""],"Trakt Authorized":[null,""],"Trakt Not Authorized!":[null,""],"Test email sent successfully! Check inbox.":[null,""],"ERROR: {last_error}":[null,""],"Test NMA notice sent successfully":[null,""],"Test NMA notice failed":[null,""],"Pushalot notification succeeded. Check your Pushalot clients to make sure it worked":[null,""],"Error sending Pushalot notification":[null,""],"Pushbullet notification succeeded. Check your device to make sure it worked":[null,""],"Error sending Pushbullet notification":[null,""],"Status":[null,""],"Restarting SickRage":[null,""],"Update Failed":[null,""],"Update wasn't successful, not restarting. Check your log for more information.":[null,""],"Checking out branch":[null,""],"Already on branch":[null,""],"Invalid show ID: {show}":[null,""],"Show not in show list":[null,""],"Edit":[null,""],"This show is in the process of being downloaded - the info below is incomplete.":[null,""],"The information on this page is in the process of being updated.":[null,""],"The episodes below are currently being refreshed from disk":[null,""],"Currently downloading subtitles for this show":[null,""],"This show is queued to be refreshed.":[null,""],"This show is queued and awaiting an update.":[null,""],"This show is queued and awaiting subtitles download.":[null,""],"Resume":[null,""],"Pause":[null,""],"Remove":[null,""],"Re-scan files":[null,""],"Force Full Update":[null,""],"Update show in KODI":[null,""],"Update show in Emby":[null,""],"Hide specials":[null,""],"Show specials":[null,""],"Preview Rename":[null,""],"Download Subtitles":[null,""],"No scene exceptions":[null,""],"Invalid show ID":[null,""],"Unable to find the specified show":[null,""],"Unable to retreive Fansub Groups from AniDB.":[null,""],"Edit Show":[null,""],"Unable to refresh this show: {error}":[null,""],"New location <tt>{location}</tt> does not exist":[null,""],"Unable to update show: {error}":[null,""],"Unable to force an update on scene exceptions of the show.":[null,""],"Unable to force an update on scene numbering of the show.":[null,""],"{num_errors:d} error{plural} while saving changes:":[null,""],"{show_name} has been {paused_resumed}":[null,""],"resumed":[null,""],"paused":[null,""],"{show_name} has been {deleted_trashed} {was_deleted}":[null,""],"deleted":[null,""],"trashed":[null,""],"(media untouched)":[null,""],"(with all related media)":[null,""],"Unable to refresh this show.":[null,""],"Unable to update this show.":[null,""],"Library update command sent to KODI host(s)): {kodi_hosts}":[null,""],"Unable to contact one or more KODI host(s)): {kodi_hosts}":[null,""],"Library update command sent to Plex Media Server host: {plex_server}":[null,""],"Unable to contact Plex Media Server host: {plex_server}":[null,""],"Library update command sent to Emby host: {emby_host}":[null,""],"Unable to contact Emby host: {emby_host}":[null,""],"You must specify a show and at least one episode":[null,""],"Invalid status":[null,""],"Backlog was automatically started for the following seasons of <b>{show_name}</b>":[null,""],"Season":[null,""],"Backlog started":[null,""],"Retrying Search was automatically started for the following season of <b>{show_name}</b>":[null,""],"Retry Search started":[null,""],"You must specify a show":[null,""],"Can't rename episodes when the show dir is missing.":[null,""],"New subtitles downloaded: {new_subtitle_languages}":[null,""],"No subtitles downloaded":[null,""],"IRC":[null,""],"Could not load news from the repo. [Click here for news.md])({news_url})":[null,""],"The was a problem connecting to github, please refresh and try again":[null,""],"Could not load changes from the repo. [Click here for CHANGES.md]({changes_url})":[null,""],"Changelog":[null,""],"Post Processing":[null,""],"Add Shows":[null,""],"No folders selected.":[null,""],"New Show":[null,""],"Trending Shows":[null,""],"Popular Shows":[null,""],"Most Anticipated Shows":[null,""],"Most Collected Shows":[null,""],"Most Watched Shows":[null,""],"Most Played Shows":[null,""],"Recommended Shows":[null,""],"New Shows":[null,""],"Season Premieres":[null,""],"Existing Show":[null,""],"No root directories setup, please go back and add one.":[null,""],"Show added":[null,""],"Adding the specified show {show_name}":[null,""],"Missing params, no Indexer ID or folder: {show_to_add} and {root_dir}/{show_path}":[null,""],"Unknown error. Unable to add show due to problem with show selection.":[null,""],"Unable to add show":[null,""],"Folder {show_dir} exists already":[null,""],"Unable to create the folder {show_dir}, can't add the show":[null,""],"Adding the specified show into {show_dir}":[null,""],"Shows Added":[null,""],"Automatically added {num_shows} from their existing metadata files":[null,""],"Mass Update":[null,""],"Episode Overview":[null,""],"Missing Subtitles":[null,""],"Backlog Overview":[null,""],"Mass Edit":[null,""],"Unable to update show: {excption_format}":[null,""],"Unable to refresh show {show_name}: {excption_format}":[null,""],"Errors encountered":[null,""],"Updates":[null,""],"Refreshes":[null,""],"Renames":[null,""],"Subtitles":[null,""],"The following actions were queued":[null,""],"Failed Downloads":[null,""],"Manage Searches":[null,""],"Backlog search started":[null,""],"Daily search started":[null,""],"Find propers search started":[null,""],"Subtitle search started":[null,""],"Remove Selected":[null,""],"Clear History":[null,""],"Trim History":[null,""],"Selected history entries removed":[null,""],"History cleared":[null,""],"Removed history entries older than 30 days":[null,""],"General":[null,""],"Backup/Restore":[null,""],"Search Settings":[null,""],"Search Providers":[null,""],"Subtitles Settings":[null,""],"Notifications":[null,""],"Anime":[null,""],"SickRage Configuration":[null,""],"Config - Shares":[null,""],"Windows Shares Configuration":[null,""],"Saved Shares":[null,""],"Your Windows share settings have been saved":[null,""],"Config - General":[null,""],"General Configuration":[null,""],"Saved Defaults":[null,""],"Your \"add show\" defaults have been set to your current selections.":[null,""],"Unable to create directory {directory}, log directory not changed.":[null,""],"Unable to create directory {directory}, https cert directory not changed.":[null,""],"Unable to create directory {directory}, https key directory not changed.":[null,""],"Error(s) Saving Configuration":[null,""],"Configuration Saved":[null,""],"Config - Backup/Restore":[null,""],"Config - Episode Search":[null,""],"Config - Post Processing":[null,""],"Unpacking Not Supported, disabling unpack setting":[null,""],"You tried saving an invalid normal naming config, not saving your naming settings":[null,""],"You tried saving an invalid anime naming config, not saving your naming settings":[null,""],"Config - Providers":[null,""],"No Provider Name specified":[null,""],"No Provider Url specified":[null,""],"No Provider Api key specified":[null,""],"Config - Notifications":[null,""],"Config - Subtitles":[null,""],"Config - Anime":[null,""],"Clear Errors":[null,""],"Clear Warnings":[null,""],"Submit Errors":[null,""],"Logs & Errors":[null,""],"Log File":[null,""],"Logs":[null,""],"This is a test notification from SickRage":[null,""],"Choose Directory":[null,""],"Select log file folder location":[null,""],"Select CSS file":[null,""],"Select backup folder to save to":[null,""],"Select backup files to restore":[null,""],"Please fill out the necessary fields above.":[null,""],"<b>Step 1:</b> Confirm Authorization":[null,""],"Check blacklist name; the value needs to be a trakt slug":[null,""],"You must provide a recipient email address!":[null,""],"You didn't supply a Pushbullet api key":[null,""],"Don't forget to save your new pushbullet settings.":[null,""],"Select TV Download Directory":[null,""],"Select Unpack Directory":[null,""],"This pattern is invalid.":[null,""],"This pattern would be invalid without the folders, using it will force \"Season Folders\" on for all shows.":[null,""],"This pattern is valid.":[null,""],"Select .nzb black hole/watch location":[null,""],"Select .torrent black hole/watch location":[null,""],"Select .torrent download location":[null,""],"Minimum seeding time is":[null,""],"URL to your uTorrent client (e.g. http://localhost:8000)":[null,""],"Stop seeding when inactive for":[null,""],"URL to your Transmission client (e.g. http://localhost:9091)":[null,""],"URL to your Deluge client (e.g. http://localhost:8112)":[null,""],"IP or Hostname of your Deluge Daemon (e.g. scgi://localhost:58846)":[null,""],"URL to your Synology DS client (e.g. http://localhost:5000)":[null,""],"URL to your rTorrent client (e.g. scgi://localhost:5000 <br> or https://localhost/rutorrent/plugins/httprpc/action.php)":[null,""],"URL to your qBittorrent client (e.g. http://localhost:8080)":[null,""],"URL to your MLDonkey (e.g. http://localhost:4080)":[null,""],"URL to your putio client (e.g. http://localhost:8080)":[null,""],"<a herf=\"https://app.put.io/oauth/apps/new\" target=\"_blank\"> Create a new OAuth app for put.io</a>":[null,""],"Put.io Parent Folder":[null,""],"Put.io OAuth Token":[null,""],"Show Episodes":[null,""],"Hide Episodes":[null,""],"Select Show Location":[null,""],"Select Unprocessed Episode Folder":[null,""],"DELETED":[null,""],"Resume updating the log on this page.":[null,""],"Pause updating the log on this page.":[null,""],"searching {searchingFor}...":[null,""],"search timed out, try again or try another indexer":[null,""],"loading folders...":[null,""],"Loading...":[null,""],"You have reached this page by accident, please check the url.":[null,""],"A mako error has occured.<br>\n If this happened during an update a simple page refresh may be the solution.<br>\n Mako errors that happen during updates may be a one time error if there were significant ui changes.":[null,""],"Show/Hide Error":[null,""],"Add New Show":[null,""],"For shows that you haven't downloaded yet, this option finds a show on theTVDB.com, creates a directory for it's episodes, and adds it to SickRage.":[null,""],"Add From Trakt Lists":[null,""],"For shows that you haven't downloaded yet, this option lets you choose from a show from one of the Trakt lists to add to SickRage.":[null,""],"Add From IMDB's Popular Shows":[null,""],"View IMDB's list of the most popular shows. This feature uses IMDB's MOVIEMeter algorithm to identify popular TV Series.":[null,""],"Add Existing Shows":[null,""],"Use this option to add shows that already have a folder created on your hard drive. SickRage will scan your existing metadata/episodes and add the show accordingly.":[null,""],"Add Existing Show":[null,""],"Manage Directories":[null,""],"Customize Options":[null,""],"SickRage can add existing shows, using the current options, by using locally stored NFO/XML metadata to eliminate user interaction. If you would rather have SickRage prompt you to customize each show, then use the checkbox below.":[null,""],"Prompt me to set settings for each show":[null,""],"Displaying folders within these directories which aren't already added to SickRage":[null,""],"Submit":[null,""],"Find a show on theTVDB":[null,""],"Show retrieved from existing metadata":[null,""],"All Indexers":[null,""],"Search":[null,""],"This will only affect the language of the retrieved metadata file contents and episode filenames.":[null,""],"This <b>DOES NOT</b> allow SickRage to download non-english TV episodes!":[null,""],"Pick the parent folder":[null,""],"Pre-chosen Destination Folder":[null,""],"Customize options":[null,""],"Add Show":[null,""],"Skip Show":[null,""],"Sort By":[null,""],"Name":[null,""],"Original":[null,""],"Votes":[null,""],"Rating":[null,""],"Rating > Votes":[null,""],"Sort Order":[null,""],"Asc":[null,""],"Desc":[null,""],"Fetching of IMDB Data failed. Are you online?":[null,""],"Exception":[null,""],"Select Trakt List":[null,""],"Most Anticipated":[null,""],"Trending":[null,""],"Popular":[null,""],"Most Watched":[null,""],"Most Played":[null,""],"Most Collected":[null,""],"Recommended":[null,""],"Toggle navigation":[null,""],"Profile":[null,""],"JSONP":[null,""],"Back to SickRage":[null,""],"Parameters":[null,""],"Required":[null,""],"Description":[null,""],"Type":[null,""],"Default value":[null,""],"Allowed values":[null,""],"Playground":[null,""],"Clear":[null,""],"Yes":[null,""],"No":[null,""],"season":[null,""],"episode":[null,""],"Python Version":[null,""],"SSL Version":[null,""],"OS":[null,""],"Locale":[null,""],"User":[null,""],"Program Folder":[null,""],"Config File":[null,""],"Database File":[null,""],"Cache Folder":[null,""],"Log Folder":[null,""],"Arguments":[null,""],"Web Root":[null,""],"Website":[null,""],"Wiki":[null,""],"Source":[null,""],"IRC Chat":[null,""],"AnimeDB Settings":[null,""],"Look & Feel":[null,""],"AniDB is non-profit database of anime information that is freely open to the public":[null,""],"Enable":[null,""],"should SickRage use data from AniDB?":[null,""],"AniDB Username":[null,""],"username of your AniDB account":[null,""],"AniDB Password":[null,""],"password of your AniDB account":[null,""],"AniDB MyList":[null,""],"do you want to add the PostProcessed episodes to the MyList?":[null,""],"Look and Feel":[null,""],"How should the anime functions show and behave.":[null,""],"Split show lists":[null,""],"separate anime and normal shows in groups":[null,""],"Split in tabs":[null,""],"use tabs for when splitting show lists":[null,""],"Restore":[null,""],"Backup your main database file and config.":[null,""],"Select the folder you wish to save your backup file to":[null,""],"Restore your main database file and config.":[null,""],"Select the backup file you wish to restore":[null,""],"Misc":[null,""],"Interface":[null,""],"Advanced Settings":[null,""],"Startup options. Indexer options. Log and show file locations.":[null,""],"Some options may require a manual restart to take effect.":[null,""],"Default Indexer Language":[null,""],"for adding shows and metadata providers":[null,""],"Launch browser":[null,""],"open the SickRage home page on startup":[null,""],"Initial page":[null,""],"Shows":[null,""],"when launching SickRage interface":[null,""],"Choose hour to update shows":[null,""],"with information such as next air dates, show ended, etc. Use 15 for 3pm, 4 for 4am etc.":[null,""],"note":[null,""],"minutes are randomized each time SickRage is started":[null,""],"Send to trash for actions":[null,""],"when using show \"Remove\" and delete files":[null,""],"on scheduled deletes of the oldest log files":[null,""],"selected actions use trash (recycle bin) instead of the default permanent delete":[null,""],"Log file folder location":[null,""],"Number of Log files saved":[null,""],"number of log files saved when rotating logs (default: 5) (REQUIRES RESTART)":[null,""],"Size of Log files saved":[null,""],"maximum size in MB of the log file (default: 1MB) (REQUIRES RESTART)":[null,""],"Use initial indexer set to":[null,""],"as the default selection when adding new shows":[null,""],"Timeout show indexer at":[null,""],"seconds of inactivity when finding new shows (default:20)":[null,""],"Show root directories":[null,""],"where the files of shows are located":[null,""],"Save Changes":[null,""],"Options for software updates.":[null,""],"Check software updates":[null,""],"and display notifications when updates are available. Checks are run on startup and at the frequency set below*":[null,""],"Automatically update":[null,""],"fetch and install software updates. Updates are run on startup and in the background at the frequency set below*":[null,""],"Check the server every*":[null,""],"hours for software updates (default:1)":[null,""],"Notify on software update":[null,""],"send a message to all enabled notifiers when SickRage has been updated":[null,""],"User Interface":[null,""],"Options for visual appearance.":[null,""],"Interface Language":[null,""],"System Language":[null,""],"for appearance to take effect, save then refresh your browser":[null,""],"Display theme":[null,""],"Dark":[null,""],"Light":[null,""],"Use a background image":[null,""],"use a custom image as background for SickRage":[null,""],"Background Path":[null,""],"Path to the background image":[null,""],"Show fanart in the background":[null,""],"on the show summary page":[null,""],"Fanart transparency":[null,""],"transparency of the fanart in the background":[null,""],"Use a custom stylesheet file":[null,""],"use a custom .css file to style SickRage (for advanced users)":[null,""],"Stylesheet File Path":[null,""],"Path to the stylesheet (.css) file":[null,""],"Show all seasons":[null,""],"Sort with \"The\", \"A\", \"An\"":[null,""],"include articles (\"The\", \"A\", \"An\") when sorting show lists":[null,""],"Missed episodes range":[null,""],"set the range in days of the missed episodes in the Schedule page":[null,""],"Display fuzzy dates":[null,""],"move absolute dates into tooltips and display e.g. \"Last Thu\", \"On Tue\"":[null,""],"Trim zero padding":[null,""],"remove the leading number \"0\" shown on hour of day, and date of month":[null,""],"Date style":[null,""],"Use System Default":[null,""],"Time style":[null,""],"seconds are only shown on the History page":[null,""],"Timezone":[null,""],"Local":[null,""],"Network":[null,""],"display dates and times in either your timezone or the shows network timezone":[null,""],"use local timezone to start searching for episodes minutes after show ends (depends on your dailysearch frequency)":[null,""],"Download url":[null,""],"URL where the shows can be downloaded.":[null,""],"Web Interface":[null,""],"it is recommended that you enable a username and password to secure SickRage from being tampered with remotely.":[null,""],"these options require a manual restart to take effect.":[null,""],"API key":[null,""],"used to give 3rd party programs limited access to SickRage":[null,""],"you can try all the features of the API":[null,""],"here":[null,""],"HTTP logs":[null,""],"enable logs from the internal Tornado web server":[null,""],"HTTP username":[null,""],"set blank for no login":[null,""],"HTTP password":[null,""],"blank = no authentication":[null,""],"HTTP port":[null,""],"web port to browse and access SickRage (default:8081)":[null,""],"Notify on login":[null,""],"enable to be notified when a new login happens in webserver":[null,""],"Listen on IPv6":[null,""],"attempt binding to any available IPv6 address":[null,""],"Enable HTTPS":[null,""],"enable access to the web interface using a HTTPS address":[null,""],"HTTPS certificate":[null,""],"file name or path to HTTPS certificate":[null,""],"HTTPS key":[null,""],"file name or path to HTTPS key":[null,""],"Reverse proxy headers":[null,""],"accept the following reverse proxy headers (advanced)...":[null,""],"(X-Forwarded-For, X-Forwarded-Host, and X-Forwarded-Proto)":[null,""],"CPU throttling":[null,""],"Normal (default). High is lower and Low is higher CPU use":[null,""],"Anonymous redirect":[null,""],"backlink protection via anonymizer service, must end in \"?\"":[null,""],"Enable debug":[null,""],"enable debug logs":[null,""],"Verify SSL Certs":[null,""],"verify SSL Certificates (Disable this for broken SSL installs (Like QNAP))":[null,""],"No Restart":[null,""],"only shutdown when restarting SR":[null,""],"only select this when you have external software restarting SR automatically when it stops (like FireDaemon)":[null,""],"Encrypt passwords":[null,""],"in the <code>config.ini</code> file":[null,""],"warning":[null,""],"passwords must only contain":[null,""],"ASCII characters":[null,""],"Unprotected calendar":[null,""],"allow subscribing to the calendar without user and password":[null,""],"some services like Google Calendar only work this way":[null,""],"Google Calendar Icons":[null,""],"show an icon next to exported calendar events in Google Calendar":[null,""],"Proxy host":[null,""],"blank to disable or proxy to use when connecting to providers":[null,""],"also use global proxy setting for indexers (tvdb, xem, anidb, etc.)":[null,""],"Skip Remove Detection":[null,""],"skip detection of removed files":[null,""],"if disabled the episode will be set to the default deleted status":[null,""],"Default deleted episode status":[null,""],"define the status to be set for media file that has been deleted.":[null,""],"Archived option will keep previous downloaded quality":[null,""],"example: Downloaded (1080p WEB-DL) ==> Archived (1080p WEB-DL)":[null,""],"Options for github related features.":[null,""],"Branch version":[null,""],"error: No branches found.":[null,""],"select branch to use (restart required)":[null,""],"Authorization Type":[null,""],"Username and password":[null,""],"Personal access token":[null,""],"You must use a personal access token if you're using \"two-factor authentication\" on GitHub.":[null,""],"GitHub username":[null,""],"*** (REQUIRED FOR SUBMITTING ISSUES) ***":[null,""],"GitHub password":[null,""],"GitHub personal access token":[null,""],"Generate Token":[null,""],"Manage Tokens":[null,""],"GitHub remote for branch":[null,""],"access repo configured remotes (save then refresh browser)":[null,""],"default":[null,""],"origin":[null,""],"Git executable path":[null,""],"only needed if OS is unable to locate git from env":[null,""],"Git reset":[null,""],"removes untracked files and performs a hard reset on git branch automatically to help resolve update issues":[null,""],"Home Theater / NAS":[null,""],"Devices":[null,""],"Social":[null,""],"A free and open source cross-platform media center and home entertainment system software with a 10-foot user interface designed for the living-room TV.":[null,""],"send KODI commands?":[null,""],"Always on":[null,""],"log errors when unreachable?":[null,""],"Notify on snatch":[null,""],"send a notification when a download starts?":[null,""],"Notify on download":[null,""],"send a notification when a download finishes?":[null,""],"Notify on subtitle download":[null,""],"send a notification when subtitles are downloaded?":[null,""],"Update library":[null,""],"update KODI library when a download finishes?":[null,""],"Full library update":[null,""],"perform a full library update if update per-show fails?":[null,""],"Only update first host":[null,""],"only send library updates to the first active host?":[null,""],"KODI IP:Port":[null,""],"host running KODI (eg. 192.168.1.100:8080)":[null,""],"(multiple host strings must be separated by commas)":[null,""],"Username":[null,""],"username for your KODI server (blank for none)":[null,""],"Password":[null,""],"password for your KODI server (blank for none)":[null,""],"Click below to test.":[null,""],"Experience your media on a visually stunning, easy to use interface on your Mac connected to your TV. Your media library has never looked this good!":[null,""],"For sending notifications to Plex Home Theater (PHT) clients, use the KODI notifier with port <b>3005</b>.":[null,""],"send Plex Media Server library updates?":[null,""],"Plex Media Server Auth Token":[null,""],"auth token used by Plex":[null,""],"Update Library":[null,""],"update Plex Media Server library when a download finishes":[null,""],"Plex Media Server IP:Port":[null,""],"one or more hosts running Plex Media Server<br/>(eg. 192.168.1.1:32400, 192.168.1.2:32400)":[null,""],"HTTPS":[null,""],"use https for plex media server requests?":[null,""],"Click below to test Plex Media Server(s)":[null,""],"Test Plex Media Server":[null,""],"Plex Home Theater":[null,""],"send Plex Home Theater notifications?":[null,""],"Plex Home Theater IP:Port":[null,""],"one or more hosts running Plex Home Theater<br>(eg. 192.168.1.100:3000, 192.168.1.101:3000)":[null,""],"Click below to test Plex Home Theater(s)":[null,""],"Test Plex Home Theater":[null,""],"some Plex Home Theaters <b class=\"boldest\">do not</b> support notifications e.g. Plexapp for Samsung TVs":[null,""],"Emby":[null,""],"A home media server built using other popular open source technologies.":[null,""],"send update commands to Emby?":[null,""],"Emby IP:Port":[null,""],"host running Emby (eg. 192.168.1.100:8096)":[null,""],"Emby API Key":[null,""],"Networked Media Jukebox":[null,""],"The Networked Media Jukebox, or NMJ, is the official media jukebox interface made available for the Popcorn Hour 200-series.":[null,""],"send update commands to NMJ?":[null,""],"Popcorn IP address":[null,""],"IP address of Popcorn 200-series (eg. 192.168.1.100)":[null,""],"Get settings":[null,""],"Get Settings":[null,""],"the Popcorn Hour device must be powered on and NMJ running.":[null,""],"NMJ database":[null,""],"automatically filled via the 'Get Settings' button.":[null,""],"NMJ mount url":[null,""],"Networked Media Jukebox v2":[null,""],"The Networked Media Jukebox, or NMJv2, is the official media jukebox interface made available for the Popcorn Hour 300 & 400-series.":[null,""],"send update commands to NMJv2?":[null,""],"IP address of Popcorn 300/400-series (eg. 192.168.1.100)":[null,""],"Database location":[null,""],"Database instance":[null,""],"adjust this value if the wrong database is selected.":[null,""],"Find database":[null,""],"Find Database":[null,""],"the Popcorn Hour device must be powered on.":[null,""],"NMJv2 database":[null,""],"automatically filled via the 'Find Database' buttons.":[null,""],"Synology":[null,""],"The Synology DiskStation NAS.":[null,""],"Synology Indexer is the daemon running on the Synology NAS to build its media database.":[null,""],"send Synology notifications?":[null,""],"requires SickRage to be running on your Synology NAS.":[null,""],"Synology Indexer":[null,""],"Synology Notifier is the notification system of Synology DSM":[null,""],"send notifications to the Synology Notifier?":[null,""],"pyTivo":[null,""],"pyTivo is both an HMO and GoBack server. This notifier will load the completed downloads to your Tivo.":[null,""],"send notifications to pyTivo?":[null,""],"requires the downloaded files to be accessible by pyTivo.":[null,""],"pyTivo IP:Port":[null,""],"host running pyTivo (eg. 192.168.1.1:9032)":[null,""],"pyTivo share name":[null,""],"value used in pyTivo Web Configuration to name the share.":[null,""],"Tivo name":[null,""],"(Messages & Settings > Account & System Information > System Information > DVR name)":[null,""],"Growl":[null,""],"A cross-platform unobtrusive global notification system.":[null,""],"send Growl notifications?":[null,""],"Growl IP:Port":[null,""],"host running Growl (eg. 192.168.1.100:23053)":[null,""],"may leave blank if SickRage is on the same host.":[null,""],"otherwise Growl <b>requires</b> a password to be used.":[null,""],"Click below to register and test Growl, this is required for Growl notifications to work.":[null,""],"Register Growl":[null,""],"Prowl":[null,""],"A Growl client for iOS.":[null,""],"send Prowl notifications?":[null,""],"Prowl Message Title":[null,""],"Global Prowl API key(s)":[null,""],"Prowl API(s) listed here, separated by commas if applicable, will<br> receive notifications for <b>all</b> shows. Your Prowl API key is available at:":[null,""],"(this field may be blank except when testing.)":[null,""],"Show notification list":[null,""],"-- Select a Show --":[null,""],"Configure per-show notifications here by entering Prowl API key(s), separated by commas, '\n 'after selecting a show in the drop-down box. Be sure to activate the 'Save for this show' '\n 'button below after each entry.":[null,""],"Save for this show":[null,""],"Prowl priority":[null,""],"Very Low":[null,""],"Moderate":[null,""],"Normal":[null,""],"High":[null,""],"Emergency":[null,""],"priority of Prowl messages from SickRage.":[null,""],"Libnotify":[null,""],"The standard desktop notification API for Linux/*nix systems. This notifier will only function if the pynotify module is installed (Ubuntu/Debian package <a href=\"apt:python-notify\">python-notify</a>).":[null,""],"send Libnotify notifications?":[null,""],"Pushover":[null,""],"Pushover makes it easy to send real-time notifications to your Android and iOS devices.":[null,""],"send Pushover notifications?":[null,""],"Pushover key":[null,""],"user key of your Pushover account":[null,""],"Pushover API key":[null,""],"click here":[null,""]," to create a Pushover API key":[null,""],"Pushover devices":[null,""],"comma separated list of pushover devices you want to send notifications to":[null,""],"Pushover notification sound":[null,""],"Bike":[null,""],"Bugle":[null,""],"Cash Register":[null,""],"Classical":[null,""],"Cosmic":[null,""],"Falling":[null,""],"Gamelan":[null,""],"Incoming":[null,""],"Intermission":[null,""],"Magic":[null,""],"Mechanical":[null,""],"Piano Bar":[null,""],"Siren":[null,""],"Space Alarm":[null,""],"Tug Boat":[null,""],"Alien Alarm (long)":[null,""],"Climb (long)":[null,""],"Persistent (long)":[null,""],"Pushover Echo (long)":[null,""],"Up Down (long)":[null,""],"None (silent)":[null,""],"Device specific":[null,""],"choose notification sound to use":[null,""],"Pushover priority":[null,""],"Choose priority to use":[null,""],"Boxcar 2":[null,""],"Read your messages where and when you want them!":[null,""],"send Boxcar notifications?":[null,""],"Boxcar2 access token":[null,""],"access token for your Boxcar account.":[null,""],"NMA":[null,""],"Notify My Android":[null,""],"Notify My Android is a Prowl-like Android App and API that offers an easy way to send notifications from your application directly to your Android device.":[null,""],"send NMA notifications?":[null,""],"NMA API key":[null,""],"(multiple keys must be separated by commas, up to a maximum of 5)":[null,""],"NMA priority":[null,""],"priority of NMA messages from SickRage.":[null,""],"Pushalot":[null,""],"Pushalot is a platform for receiving custom push notifications to connected devices running Windows Phone or Windows 8.":[null,""],"send Pushalot notifications ?":[null,""],"Pushalot authorization token":[null,""],"authorization token of your Pushalot account.":[null,""],"Pushbullet":[null,""],"Pushbullet is a platform for receiving custom push notifications to connected devices running Android/iOS and desktop browsers such as Chrome, Firefox or Opera.":[null,""],"send Pushbullet notifications?":[null,""],"Pushbullet API key":[null,""],"API key of your Pushbullet account":[null,""],"Pushbullet devices":[null,""],"Update device list":[null,""],"Pushbullet channels":[null,""],"Free Mobile":[null,""],"Free Mobile is a famous French cellular network provider.<br> It provides to their customer a free SMS API.":[null,""],"send SMS notifications?":[null,""],"send a SMS when a download starts?":[null,""],"send a SMS when a download finishes?":[null,""],"send a SMS when subtitles are downloaded?":[null,""],"Free Mobile customer ID":[null,""],"it's your Free Mobile customer ID (8 digits)":[null,""],"Free Mobile API key":[null,""],"find your API key in your customer portal.":[null,""],"Click below to test your settings.":[null,""],"Telegram":[null,""],"Telegram is a cloud-based instant messaging service.":[null,""],"send Telegram notifications?":[null,""],"send a message when a download starts?":[null,""],"send a message when a download finishes?":[null,""],"send a message when subtitles are downloaded?":[null,""],"User/group ID":[null,""],"contact @myidbot on Telegram to get an ID":[null,""],"Bot API token":[null,""],"contact @BotFather on Telegram to set up one":[null,""],"Join":[null,""],"Join all of your devices together!":[null,""],"send Join notifications?":[null,""],"Device ID":[null,""],"per device specific id":[null,""]," to create a Join API key":[null,""],"Twilio":[null,""],"Twilio is a webservice API that allows you to communicate directly with a mobile number. This notifier will send a text directly to your mobile device.":[null,""],"should SickRage text your mobile device?":[null,""],"Twilio Account SID":[null,""],"account SID of your Twilio account.":[null,""],"Twilio Auth Token":[null,""],"Twilio Phone SID":[null,""],"phone SID that you would like to send the sms from":[null,""],"Your phone number":[null,""],"phone number that will receive the sms. Please use the format +1-###-###-####":[null,""],"Twitter":[null,""],"A social networking and microblogging service, enabling its users to send and read other users' messages called tweets.":[null,""],"should SickRage post tweets on Twitter?":[null,""],"you may want to use a secondary account.":[null,""],"send direct message":[null,""],"send a notification via Direct Message, not via status update":[null,""],"send DM to":[null,""],"Twitter account to send Direct Messages to (must follow you)":[null,""],"Step One":[null,""],"Request Authorization":[null,""],"Click the \"Request Authorization\" button.<br> This will open a new page containing an auth key.<br> <b>note:</b> if nothing happens check your popup blocker.":[null,""],"Step Two":[null,""],"Enter the key Twitter gave you below, and click \"Verify Key\".":[null,""],"Trakt":[null,""],"Trakt helps keep a record of what TV shows and movies you are watching. Based on your favorites, Trakt recommends additional shows and movies you'll enjoy!":[null,""],"send Trakt.tv notifications?":[null,""],"username of your Trakt account.":[null,""],"Trakt PIN":[null,""],"Get Trakt PIN":[null,""],"PIN code to authorize SickRage to access Trakt on your behalf.":[null,""],"API Timeout":[null,""],"seconds to wait for Trakt API to respond. (Use 0 to wait forever)":[null,""],"Default indexer":[null,""],"Sync libraries":[null,""],"sync your SickRage show library with your trakt show library.":[null,""],"Remove Episodes From Collection":[null,""],"remove an episode from your Trakt Collection if it is not in your SickRage Library.":[null,""],"Sync watchlist":[null,""],"sync your SickRage show watchlist with your trakt show watchlist (either Show and Episode).":[null,""],"episode will be added on watch list when wanted or snatched and will be removed when downloaded ":[null,""],"Watchlist add method":[null,""],"Skip All":[null,""],"Download Pilot Only":[null,""],"Get whole show":[null,""],"method in which to download episodes for new shows.":[null,""],"Remove episode":[null,""],"remove an episode from your watchlist after it is downloaded.":[null,""],"Remove series":[null,""],"remove the whole series from your watchlist after any download.":[null,""],"Remove watched show":[null,""],"remove the show from sickrage if it's ended and completely watched":[null,""],"Start paused":[null,""],"shows grabbed from your trakt watchlist start paused.":[null,""],"Trakt blackList name":[null,""],"name (slug) of list on Trakt for blacklisting show on 'Add Trending Show' & 'Add Recommended Shows' pages":[null,""],"Email":[null,""],"Allows configuration of email notifications on a per show basis.":[null,""],"send email notifications?":[null,""],"SMTP host":[null,""],"hostname of your SMTP email server.":[null,""],"SMTP port":[null,""],"port number used to connect to your SMTP host.":[null,""],"SMTP from":[null,""],"sender email address, some hosts require a real address.":[null,""],"Use TLS":[null,""],"check to use TLS encryption.":[null,""],"SMTP user":[null,""],"(optional) your SMTP server username.":[null,""],"SMTP password":[null,""],"(optional) your SMTP server password.":[null,""],"Global email list":[null,""],"email addresses listed here, separated by commas if applicable, will<br> receive notifications for <b>all</b> shows.":[null,""],"(This field may be blank except when testing.)":[null,""],"Email Subject":[null,""],"use a custom subject for some privacy protection?":[null,""],"(leave blank for the default SickRage subject)":[null,""],"configure per-show notifications here by entering email address(es), separated by commas,":[null,""],"after selecting a show in the drop-down box. Be sure to activate the 'Save for this show'":[null,""],"button below after each entry.":[null,""],"Slack":[null,""],"Slack brings all your communication together in one place. It's real-time messaging, archiving and search for modern teams.":[null,""],"should SickRage post messages on Slack?":[null,""],"Slack Incoming Webhook":[null,""],"Discord":[null,""],"All-in-one voice and text chat for gamers that's free, secure, and works on both your desktop and phone.":[null,""],"Should SickRage post messages on Discord?":[null,""],"Discord Incoming Webhook":[null,""],"Create webhook under channel settings.":[null,""],"Discord Bot Name":[null,""],"Blank will use webhook default Name.":[null,""],"Discord Avatar URL":[null,""],"Blank will use webhook default Avatar.":[null,""],"Discord TTS":[null,""],"Send notifications using text-to-speech":[null,""],"Post-Processing":[null,""],"Episode Naming":[null,""],"Metadata":[null,""],"Settings that dictate how SickRage should process completed downloads.":[null,""],"enable the automatic post processor to scan and process any files in your Post Processing Dir":[null,""],"do not use if you use an external Post Processing script":[null,""],"Post Processing Dir":[null,""],"the folder where your download client puts the completed TV downloads.":[null,""],"please use seperate downloading and completed folders in your download client if possible.":[null,""],"Processing Method":[null,""],"what method should be used to put files into the library?":[null,""],"if you keep seeding torrents after they finish, please avoid the 'move' processing method to prevent errors.":[null,""],"Auto Post-Processing Frequency":[null,""],"time in minutes to check for new files to auto post-process (min 10)":[null,""],"Postpone post processing":[null,""],"wait to process a folder if sync files are present.":[null,""],"Sync File Extensions":[null,""],"comma seperated list of extensions or filename globs SickRage ignores when Post Processing":[null,""],"Rename Episodes":[null,""],"rename episode using the Episode Naming settings?":[null,""],"Create missing show directories":[null,""],"create missing show directories when they get deleted":[null,""],"Add shows without directory":[null,""],"add shows without creating a directory (not recommended)":[null,""],"Move associated files":[null,""],"move associated (srt/srr/sfv/etc) files while post processing?":[null,""],"Rename .nfo file":[null,""],"rename the original .nfo file to .nfo-orig to avoid conflicts?":[null,""],"Associated file extensions":[null,""],"comma separated list of associated file extensions SickRage should keep while post processing.":[null,""],"leaving it empty means no associated files will be post processed":[null,""],"Delete non associated files":[null,""],"delete non associated files while post processing?":[null,""],"Change File Date":[null,""],"set last modified filedate to the date that the episode aired?":[null,""],"some systems may ignore this feature.":[null,""],"Timezone for File Date":[null,""],"local":[null,""],"network":[null,""],"what timezone should be used to change File Date?":[null,""],"Unpack":[null,""],"What to do with archived releases found in your <i>TV Download Dir</i>?":[null,""],"Ignore (do not process contents)":[null,""],"Unpack (process contents)":[null,""],"Treat as video (process archive as-is)":[null,""],"'Unpack' only works with RAR archives":[null,""],"Windows":[null,""],"WinRar is required on windows":[null,""],"Unpack Directory":[null,""],"Choose a path to unpack files, leave blank to unpack in download dir":[null,""],"Unrar Location":[null,""],"add the path to unrar if it is not in the system path":[null,""],"Alternate Unrar Tool":[null,""],"add the path to an alternate unrar tool if it is not in the system path":[null,""],"Delete RAR contents":[null,""],"delete content of RAR files, even if Process Method not set to move?":[null,""],"only working with RAR archive":[null,""],"Don't delete empty folders":[null,""],"leave empty folders when Post Processing?":[null,""],"can be overridden using manual Post Processing":[null,""],"Follow symbolic-links":[null,""],"follow down symbolic links in download directory?":[null,""],"<b>EXPERTS ONLY.</b><br>Enable only if you know what <b>circular symbolic links</b> are,<br>and can <b>verify that you have none</b>.":[null,""],"Use icacls":[null,""],"Windows only":[null,""],"sets video permissions after using the move method in post processing":[null,""],"Extra Scripts":[null,""],"see":[null,""],"for script arguments description and usage.":[null,""],"How SickRage will name and sort your episodes.":[null,""],"Name Pattern":[null,""],"Toggle Naming Legend":[null,""],"don't forget to add quality pattern. Otherwise after post-processing the episode will have UNKNOWN quality":[null,""],"Meaning":[null,""],"Pattern":[null,""],"Result":[null,""],"Use lower case if you want lower case names (eg. %sn, %e.n, %q_n etc)":[null,""],"Show Name":[null,""],"Show.Name":[null,""],"Show_Name":[null,""],"Season Number":[null,""],"XEM Season Number":[null,""],"Episode Number":[null,""],"XEM Episode Number":[null,""],"Episode Name":[null,""],"Episode.Name":[null,""],"Episode_Name":[null,""],"Air Date":[null,""],"Post-Processing Date":[null,""],"Quality":[null,""],"Scene Quality":[null,""],"Release Name":[null,""],"SickRage' is used in place of RLSGROUP if it could not be properly detected":[null,""],"Release Group":[null,""],"If episode is proper/repack add 'proper' to name.":[null,""],"Release Type":[null,""],"Multi-Episode Style":[null,""],"Single-EP Sample":[null,""],"Multi-EP sample":[null,""],"Strip Show Year":[null,""],"remove the TV show's year when renaming the file?":[null,""],"only applies to shows that have year inside parentheses":[null,""],"Custom Air-By-Date":[null,""],"name air-by-date shows differently than regular shows?":[null,""],"Toggle ABD Naming Legend":[null,""],"Regular Air Date":[null,""],"Year":[null,""],"Month":[null,""],"Day":[null,""],"Multi-EP style is ignored":[null,""],"Custom Sports":[null,""],"name sports shows differently than regular shows?":[null,""],"Toggle Sports Naming Legend":[null,""],"Sports Air Date":[null,""],"Custom Anime":[null,""],"name anime shows differently than regular shows?":[null,""],"Toggle Anime Naming Legend":[null,""],">XEM Season Number":[null,""],"Single-EP Anime Sample":[null,""],"Multi-EP Anime sample":[null,""],"Add Absolute Number":[null,""],"add the absolute number to the season/episode format?":[null,""],"only applies to anime. (eg. S15E45 - 310 vs S15E45)":[null,""],"Only Absolute Number":[null,""],"replace season/episode format with absolute number":[null,""],"only applies to anime.":[null,""],"No Absolute Number":[null,""],"don't include the absolute number":[null,""],"The data associated to the data. These are files associated to a TV show in the form of images and text that, when supported, will enhance the viewing experience.":[null,""],"Metadata Type":[null,""],"toggle metadata options that you wish to be created":[null,""],"multiple targets may be used":[null,""],"Select Metadata":[null,""],"Provider Priorities":[null,""],"Provider Options":[null,""],"Configure Custom Newznab Providers":[null,""],"Configure Custom Torrent Providers":[null,""],"Check off and drag the providers into the order you want them to be used.":[null,""],"At least one provider is required but two are recommended.":[null,""],"Torrent providers can be toggled in ":[null,""],"Provider does not support backlog searches at this time.":[null,""],"Provider is <b>NOT WORKING</b>.":[null,""],"Configure individual provider settings here.":[null,""],"Check with provider's website on how to obtain an API key if needed.":[null,""],"Configure provider":[null,""],"no providers available to configure.":[null,""],"URL":[null,""],"Enable daily searches":[null,""],"enable provider to perform daily searches.":[null,""],"Enable backlog searches":[null,""],"enable provider to perform backlog searches.":[null,""],"Season search mode":[null,""],"when searching for complete seasons you can choose to have it look for season packs only, or choose to have it build a complete season from just single episodes.":[null,""],"season packs only.":[null,""],"episodes only.":[null,""],"Enable fallback":[null,""],"when searching for a complete season depending on search mode you may return no results, this helps by restarting the search using the opposite search mode.":[null,""],"Custom URL":[null,""],"the URL should include the protocol (and port if applicable). Examples: http://192.168.1.4/ or http://localhost:3000/":[null,""],"Api key":[null,""],"Digest":[null,""],"Hash":[null,""],"Passkey":[null,""],"Cookies":[null,""],"example: uid=1234;pass=567845439634987<br>note: uid and pass are not your username/password.<br>use DevTools or Firebug to get these values after logging in on your browser.":[null,""],"Pin":[null,""],"Seed ratio":[null,""],"stop transfer when ratio is reached<br>(-1 SickRage default to seed forever, or leave blank for downloader default)":[null,""],"Minimum seeders":[null,""],"Minimum leechers":[null,""],"Confirmed download":[null,""],"only download torrents from trusted or verified uploaders ?":[null,""],"Ranked torrents":[null,""],"only download ranked torrents (trusted releases)":[null,""],"English torrents":[null,""],"only download english torrents, or torrents containing english subtitles":[null,""],"For Spanish torrents":[null,""],"ONLY search on this provider if show info is defined as \"Spanish\" (avoid provider's use for VOS shows)":[null,""],"Sorting results by":[null,""],"Freeleech":[null,""],"only download <b>\"FreeLeech\"</b> torrents.":[null,""],"Category":[null,""],"select torrent with Italian subtitle":[null,""],"Configure Custom<br>Newznab Providers":[null,""],"Add and setup or remove custom Newznab providers.":[null,""],"Select provider":[null,""],"-- add new provider --":[null,""],"Provider name":[null,""],"Site URL":[null,""],"Newznab search categories":[null,""],"select your Newznab categories on the left, and click the \"update categories\" button to use them for searching.) <b>don't forget to to save the form!":[null,""],"Update Categories":[null,""],"Add":[null,""],"Delete":[null,""],"Add and setup or remove custom RSS providers.":[null,""],"RSS URL":[null,""],"Search element":[null,""],"eg: title":[null,""],"Episode Search":[null,""],"NZB Search":[null,""],"Torrent Search":[null,""],"How to manage searching with":[null,""],"Randomize Providers":[null,""],"randomize the provider search order instead of going in order of placement":[null,""],"Download propers":[null,""],"replace original download with \"Proper\" or \"Repack\" if nuked":[null,""],"Check propers every":[null,""],"24 hours":[null,""],"4 hours":[null,""],"90 mins":[null,""],"45 mins":[null,""],"15 mins":[null,""],"Backlog search day(s)":[null,""],"number of day(s) that the \"Forced Backlog Search\" will cover (e.g. 7 Days)":[null,""],"Backlog search frequency":[null,""],"time in minutes between searches (min.":[null,""],"Daily search frequency":[null,""],"Usenet retention":[null,""],"age limit in days for usenet articles to be used (e.g. 500)":[null,""],"Ignore words":[null,""],"results with one or more word from this list will be ignored<br>separate words with a comma, e.g. \"word1,word2,word3\"":[null,""],"Require words":[null,""],"results with no word from this list will be ignored<br>separate words with a comma, e.g. \"word1,word2,word3\"":[null,""],"Trackers list":[null,""],"trackers that will be added to magnets without trackers<br>separate trackers with a comma, e.g. \"tracker1,tracker2,tracker3\"":[null,""],"Ignore language names in subbed results":[null,""],"ignore subbed releases based on language names <br>\n Example: \"dk\" will ignore words: dksub, dksubs, dksubbed, dksubed <br>\n separate languages with a comma, e.g. \"lang1,lang2,lang3":[null,""],"Allow high priority":[null,""],"set downloads of recently aired episodes to high priority":[null,""],"Use Failed Downloads":[null,""],"use Failed Download Handling?":[null,""],"will only work with snatched/downloaded episodes after enabling this":[null,""],"Delete Failed":[null,""],"delete files left over from a failed download?":[null,""],"this only works if Use Failed Downloads is enabled.":[null,""],"How to handle NZB search results.":[null,""],"Search NZBs":[null,""],"enable NZB search providers":[null,""],"Send .nzb files to":[null,""],"SABnzbd server URL":[null,""],"URL to your SABnzbd server (e.g. http://localhost:8080/)":[null,""],"SABnzbd username":[null,""],"(blank for none)":[null,""],"SABnzbd password":[null,""],"SABnzbd API key":[null,""],"locate at... SABnzbd Config -> General -> API Key":[null,""],"Use SABnzbd category":[null,""],"add downloads to this category (e.g. TV)":[null,""],"Use SABnzbd category (backlog episodes)":[null,""],"add downloads of old episodes to this category (e.g. TV)":[null,""],"Use SABnzbd category for anime":[null,""],"add anime downloads to this category (e.g. anime)":[null,""],"Use SABnzbd category for anime (backlog episodes)":[null,""],"add anime downloads of old episodes to this category (e.g. anime)":[null,""],"Use forced priority":[null,""],"enable to change priority from HIGH to FORCED":[null,""],"Black hole folder location":[null,""],"<b>.nzb</b> files are stored at this location for external software to find and use":[null,""],"Connect using HTTPS":[null,""],"enable Secure control in NZBGet and set the correct Secure Port here":[null,""],"NZBget host:port":[null,""],"(e.g. localhost:6789)":[null,""],"NZBget RPC host name and port number (not NZBgetweb!)":[null,""],"NZBget username":[null,""],"locate in nzbget.conf (default:nzbget)":[null,""],"NZBget password":[null,""],"locate in nzbget.conf (default:tegbzn6789)":[null,""],"Use NZBget category":[null,""],"send downloads marked this category (e.g. TV)":[null,""],"Use NZBget category (backlog episodes)":[null,""],"send downloads of old episodes marked this category (e.g. TV)":[null,""],"Use NZBget category for anime":[null,""],"send anime downloads marked this category (e.g. anime)":[null,""],"Use NZBget category for anime (backlog episodes)":[null,""],"send anime downloads of old episodes marked this category (e.g. anime)":[null,""],"NZBget priority":[null,""],"Very low":[null,""],"Low":[null,""],"Very high":[null,""],"Force":[null,""],"priority for daily snatches (no backlog)":[null,""],"Torrent host:port":[null,""],"URL to your Synology DSM (e.g. http://localhost:5000/)":[null,""],"Client username":[null,""],"Client password":[null,""],"Downloaded files location":[null,""],"where Synology Download Station will save downloaded files (blank for client default)":[null,""],"the destination has to be a shared folder for Synology DS":[null,""],"Click below to test":[null,""],"How to handle Torrent search results.":[null,""],"Search torrents":[null,""],"enable torrent search providers":[null,""],"Send .torrent files to":[null,""],"<b>.torrent</b> files are stored at this location for external software to find and use":[null,""],"URL to your torrent client (e.g. http://localhost:8000/)":[null,""],"Torrent RPC URL":[null,""],"the path without leading and trailing slashes (e.g. transmission)":[null,""],"Http Authentication":[null,""],"Verify certificate":[null,""],"disable if you get \"Deluge: Authentication Error\" in your log":[null,""],"verify SSL certificates for HTTPS requests":[null,""],"Add label to torrent":[null,""],"(blank spaces are not allowed)":[null,""],"label plugin must be enabled in Deluge clients":[null,""],"for QBitTorrent 3.3.1 and up":[null,""],"Add label to torrent for anime":[null,""],"for QBitTorrent 3.3.1 and up ":[null,""],"where <span id=\"torrent_client\">the torrent client</span> will save downloaded files (blank for client default)":[null,""],"the destination has to be a shared folder for Synology DS</span>":[null,""],"Minimum seeding time":[null,""],"time in hours":[null,""],"(default:'0' passes blank to client and '-1' passes nothing)":[null,""],"Start torrent paused":[null,""],"add .torrent to client but do <b style=\"font-weight:900\">not</b> start downloading":[null,""],"Allow high bandwidth":[null,""],"use high bandwidth allocation if priority is high":[null,""],"Test Connection":[null,""],"Windows Shares":[null,""],"Defines your existing windows shares so that we can add them to the browse dialog":[null,""],"Share #{number}":[null,""],"Share label":[null,""],"Hostname or IP":[null,""],"Share path":[null,""],"Subtitles Search":[null,""],"Subtitles Plugin":[null,""],"Plugin Settings":[null,""],"Settings that dictate how SickRage handles subtitles search results.":[null,""],"Search Subtitles":[null,""],"Subtitle Languages":[null,""],"Subtitle Directory":[null,""],"the directory where SickRage should store your <i>Subtitles</i> files.":[null,""],"leave empty if you want store subtitle in episode path.":[null,""],"Subtitle Find Frequency":[null,""],"time in hours between scans (default: 1)":[null,""],"Include Specials":[null,""],"include the show's specials when searching for subtitles?":[null,""],"Perfect matches":[null,""],"only download subtitles that match: release group, video codec, audio codec and resolution":[null,""],"if disabled you may get out of sync subtitles":[null,""],"Subtitles History":[null,""],"log downloaded Subtitle on History page?":[null,""],"Subtitles Multi-Language":[null,""],"append language codes to subtitle filenames?":[null,""],"this option is required if you use multiple subtitle languages":[null,""],"Delete unwanted subtitles":[null,""],"enable to delete unwanted subtitle languages bundled with release":[null,""],"Embedded Subtitles":[null,""],"ignore subtitles embedded inside video file?":[null,""],"this will ignore <u>all</u> embedded subtitles for every video file!":[null,""],"Hearing Impaired Subtitles":[null,""],"download hearing impaired style subtitles?":[null,""],"See":[null,""],"for a script arguments description.":[null,""],"Additional scripts separated by <b>|</b>.":[null,""],"Scripts are called after each episode has searched and downloaded subtitles.":[null,""],"For any scripted languages, include the interpreter executable before the script. See the following example":[null,""],"For Windows:":[null,""],"For Linux / OS X:":[null,""],"Subtitle Providers":[null,""],"Check off and drag the plugins into the order you want them to be used.":[null,""],"At least one plugin is required.":[null,""]," Web-scraping plugin":[null,""],"Provider Settings":[null,""],"Set user and password for each provider":[null,""],"User Name":[null,""],"Change Show":[null,""],"Prev Show":[null,""],"Next Show":[null,""],"Jump to Season":[null,""],"Specials":[null,""],"Poster for":[null,""],"Stars":[null,""],"minutes":[null,""],"View other popular {genre} shows on trakt.tv.":[null,""],"View other popular {imdbgenre} shows on IMDB.":[null,""],"Allowed":[null,""],"Preferred":[null,""],"Originally Airs":[null,""],"Show Status":[null,""],"Default EP Status":[null,""],"Location":[null,""],"Missing":[null,""],"Scene Name":[null,""],"Required Words":[null,""],"Ignored Words":[null,""],"Size":[null,""],"Info Language":[null,""],"Subtitles SR Metadata":[null,""],"Season Folders":[null,""],"Paused":[null,""],"Air-by-Date":[null,""],"Sports":[null,""],"DVD Order":[null,""],"Scene Numbering":[null,""],"Select Filtered Episodes":[null,""],"Clear All":[null,""],"Change selected episodes to":[null,""],"Select Columns":[null,""],"NFO":[null,""],"TBN":[null,""],"Episode":[null,""],"Absolute":[null,""],"Scene":[null,""],"Scene Absolute":[null,""],"File Name":[null,""],"Airdate":[null,""],"Download":[null,""],"Change the value here if scene numbering differs from the indexer episode numbering":[null,""],"Change the value here if scene absolute numbering differs from the indexer absolute numbering":[null,""],"Manual Search":[null,""],"Do you want to mark this episode as failed?":[null,""],"The episode release name will be added to the failed history, preventing it to be downloaded again.":[null,""],"Do you want to include the current episode quality in the search?":[null,""],"Choosing No will ignore any releases with the same episode quality as the one currently downloaded/snatched.":[null,""],"Download subtitle":[null,""],"Do you want to re-download the subtitle for this language?":[null,""],"It will overwrite your current subtitle":[null,""],"Format":[null,""],"Advanced":[null,""],"Main Settings":[null,""],"Show Location":[null,""],"Preferred Quality":[null,""],"Default Episode Status":[null,""],"this will set the status for future episodes.":[null,""],"this only applies to episode filenames and the contents of metadata files.":[null,""],"search for subtitles":[null,""],"Use SR Metdata":[null,""],"use SickRage metadata when searching for subtitle, this will override the autodiscovered metadata":[null,""],"pause this show (SickRage will not download episodes)":[null,""],"Format Settings":[null,""],"Air by date":[null,""],"check if the show is released as Show.03.02.2010 rather than Show.S02E03.":[null,""],"in case of an air date conflict between regular and special episodes, the later will be ignored.":[null,""],"check if the show is Anime and episodes are released as Show.265 rather than Show.S02E03":[null,""],"check if the show is a sporting or MMA event released as Show.03.02.2010 rather than Show.S02E03":[null,""],"Season folders":[null,""],"group episodes by season folder (uncheck to store in a single folder)":[null,""],"search by scene numbering (uncheck to search by indexer numbering)":[null,""],"use the DVD order instead of the air order":[null,""],"a \"Force Full Update\" is necessary, and if you have existing episodes you need to sort them manually.":[null,""],"comma-separated <i>e.g. \"word1,word2,word3</i>\"":[null,""],"search results with one or more words from this list will be ignored.":[null,""],"e.g. \"word1,word2,word3\"":[null,""],"search results with no words from this list will be ignored.":[null,""],"Scene Exception":[null,""],"this will affect episode search on NZB and torrent providers.":[null,""],"this list appends to the original show name.":[null,""],"WARNING logs":[null,""],"ERROR logs":[null,""],"There are no events to display.":[null,""],"Limit":[null,""],"Layout":[null,""],"HistoryLayout":[null,""],"Compact":[null,""],"Detailed":[null,""],"Time":[null,""],"Provider":[null,""],"Missing Provider":[null,""],"missing provider":[null,""],"Directory":[null,""],"Show Name (tvshow.nfo)":[null,""],"Indexer":[null,""],"Enter the folder containing the episode":[null,""],"Process Method to be used":[null,""],"Copy":[null,""],"Move":[null,""],"Hard Link":[null,""],"Symbolic Link":[null,""],"Symbolic Link Reversed":[null,""],"Force already Post Processed Dir/Files":[null,""],"Mark Dir/Files as priority download":[null,""],"(Check it to replace the file even if it exists at higher quality)":[null,""],"Delete files and folders":[null,""],"(Check it to delete files and folders like auto processing)":[null,""],"Don't use processing queue":[null,""],"(If checked this will return the result of the process here, but may be slow!)":[null,""],"Mark download as failed":[null,""],"Process":[null,""],"Download subtitles for this show?":[null,""],"use SickRage metadata when searching for subtitle, <br />this will override the autodiscovered metadata":[null,""],"Status for previously aired episodes":[null,""],"Status for all future episodes":[null,""],"Group episodes by season folder?":[null,""],"Is this show an Anime?":[null,""],"Is this show scene numbered?":[null,""],"Save Defaults":[null,""],"Use current values as the defaults":[null,""],"<p>Select your preferred fansub groups from the <b>Available Groups</b> and add them to the <b>Whitelist</b>. Add groups to the <b>Blacklist</b> to ignore them.</p>\n <p>The <b>Whitelist</b> is checked <i>before</i> the <b>Blacklist</b>.</p>\n <p>Groups are shown as <b>Name</b> | <b>Rating</b> | <b>Number of subbed episodes</b>.</p>\n <p>You may also add any fansub group not listed to either list manually.</p>\n <p>When doing this please note that you can only use groups listed on anidb for this anime.\n <br>If a group is not listed on anidb but subbed this anime, please correct anidb's data.</p>":[null,""],"Whitelist":[null,""],"Available Groups":[null,""],"Add to Whitelist":[null,""],"Add to Blacklist":[null,""],"Blacklist":[null,""],"Custom Group":[null,""],"Allowed Quality:":[null,""],"Preferred Quality:":[null,""],"Filter Show Name":[null,""],"Root":[null,""],"All":[null,""],"Clear Filter(s)":[null,""],"Poster":[null,"ポスター"],"Small Poster":[null,""],"Banner":[null,"バナー"],"Simple":[null,""],"Next Episode":[null,""],"Progress":[null,""],"Direction":[null,""],"Ascending":[null,""],"Descending":[null,""],"Poster Size":[null,""],"Continuing":[null,""],"Ended":[null,""],"Total":[null,""],"Invalid date":[null,""],"No Network":[null,""],"Next Ep":[null,""],"Prev Ep":[null,""],"Show":[null,"表示"],"Downloads":[null,""],"Active":[null,""],"loading":[null,""],"<p><b><u>Preferred</u></b> qualities will replace those in <b><u>allowed</u></b>, even if they are lower.</p>":[null,""],"New":[null,""],"Set as Default":[null,""],"Remember me":[null,""],"Edit Selected":[null,""],"Subtitle":[null,""],"Default Ep Status":[null,""],"Update":[null,""],"Rescan":[null,""],"Rename":[null,""],"Search Subtitle":[null,""],"Force Metadata Regen":[null,""],"Snatched (Allowed)":[null,""],"Jump to Show":[null,""],"Force Backlog":[null,""],"Manage episodes with status":[null,""],"Manage":[null,""],"None of your episodes have status":[null,""],"Shows containing":[null,""],"episodes":[null,""],"Set checked shows/episodes to":[null,""],"Go":[null,""],"Select all":[null,""],"Clear all":[null,""],"Release":[null,""],"Backlog Search":[null,""],"Not in progress":[null,""],"In Progress":[null,""],"Daily Search":[null,""],"Find Propers Search":[null,""],"Propers search disabled":[null,""],"Subtitle Search":[null,""],"Subtitle search disabled":[null,""],"Search Queue":[null,""],"pending items":[null,""],"Daily":[null,""],"Manual":[null,""],"Changing any settings marked with (<span class=\"separator\">*</span>) will force a refresh of the selected shows.":[null,""],"Selected Shows":[null,""],"Root Directories":[null,""],"Current":[null,""],"Keep":[null,""],"Custom":[null,""],"Group episodes by season folder (set to \"No\" to store in a single folder).":[null,""],"Pause these shows (SickRage will not download episodes).":[null,""],"This will set the status for future episodes.":[null,""],"Search by scene numbering (set to \"No\" to search by indexer numbering).":[null,""],"Set if these shows are Anime and episodes are released as Show.265 rather than Show.S02E03":[null,""],"Set if these shows are sporting or MMA events released as Show.03.02.2010 rather than Show.S02E03.":[null,""],"In case of an air date conflict between regular and special episodes, the later will be ignored.":[null,""],"Set if these shows are released as Show.03.02.2010 rather than Show.S02E03.":[null,""],"Search for subtitles.":[null,""],"All of your episodes have {subsLanguage} subtitles.":[null,""],"Manage episodes without":[null,""],"Episodes without {subsLanguage} subtitles.":[null,""],"Episodes without {subtitleLanguage} (undefined) subtitles.":[null,""],"Download missed subtitles for selected episodes":[null,""],"Performing Restart":[null,""],"Waiting for SickRage to shut down":[null,""],"Waiting for SickRage to start again":[null,""],"Loading the default page":[null,""],"Error: The restart has timed out, perhaps something prevented SickRage from starting again?":[null,""],"Key":[null,""],"Missed":[null,""],"Today":[null,""],"Soon":[null,""],"Later":[null,""],"Subscribe":[null,""],"Date":[null,""],"View Paused":[null,""],"Hidden":[null,""],"Shown":[null,""],"Calendar":[null,"カレンダー"],"List":[null,"リスト"],"Ends":[null,""],"Next Ep Name":[null,""],"Run time":[null,""],"Indexers":[null,""],"No shows for this day":[null,""],"Airs":[null,""],"Plot":[null,""],"Show Update":[null,""],"Version Check":[null,""],"Proper Finder":[null,""],"Post Process":[null,""],"Subtitles Finder":[null,""],"Scheduler":[null,""],"Alive":[null,""],"Start Time":[null,""],"Cycle Time":[null,""],"Next Run":[null,""],"Last Run":[null,""],"Silent":[null,""],"True":[null,""],"N/A":[null,""],"Show id":[null,""],"Show name":[null,""],"Priority":[null,""],"Added":[null,""],"Queue type":[null,""],"LOW":[null,""],"NORMAL":[null,""],"HIGH":[null,""],"Disk Space":[null,""],"Free space":[null,""],"TV Download Directory":[null,""],"Media Root Directories":[null,""],"Preview of the proposed name changes":[null,""],"All Seasons":[null,""],"select all":[null,""],"Rename Selected":[null,""],"Cancel Rename":[null,""],"Old Location":[null,""],"New Location":[null,""],"Trakt API did not return any results, please check your config.":[null,""],"votes":[null,""],"Remove Show":[null,""],"Level":[null,""],"Filter":[null,""],"All non-absolute folder locations are relative to ":[null,""],"Manual Post-Processing":[null,""],"Episode Status Management":[null,""],"Update PLEX":[null,""],"Update KODI":[null,""],"Update Emby":[null,""],"Manage Torrents":[null,""],"Missed Subtitle Management":[null,""],"Help & Info":[null,""],"Backup & Restore":[null,""],"Tools":[null,""],"Support SickRage":[null,""],"View Errors":[null,""],"View Warnings":[null,""],"View Log":[null,""],"Check For Updates":[null,""],"Restart":[null,""],"Shutdown":[null,""],"Logout":[null,""],"Server Status":[null,""],"View overview of snatched episodes":[null,""],"Episodes Downloaded":[null,""],"Memory used":[null,""],"Load time":[null,""],"Branch":[null,""],"Now":[null,""]}}}} \ No newline at end of file diff --git a/locale/ja_JP/LC_MESSAGES/messages.mo b/locale/ja_JP/LC_MESSAGES/messages.mo index 14aae383e492c377f9ec083248b6a9673d665046..cbdb80fb0efa7dbc8ea4b2c84fc8b8f732e58d05 100644 Binary files a/locale/ja_JP/LC_MESSAGES/messages.mo and b/locale/ja_JP/LC_MESSAGES/messages.mo differ diff --git a/locale/ja_JP/LC_MESSAGES/messages.po b/locale/ja_JP/LC_MESSAGES/messages.po index dc645d2a459bf9dd7fe7564f6ff3653fe77290e6..a131375b5d4e11a9c46669037fceb86ce62db752 100644 --- a/locale/ja_JP/LC_MESSAGES/messages.po +++ b/locale/ja_JP/LC_MESSAGES/messages.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: sickrage\n" "Report-Msgid-Bugs-To: miigotu@gmail.com\n" -"POT-Creation-Date: 2017-03-25 09:28-0700\n" -"PO-Revision-Date: 2017-03-25 12:29-0400\n" +"POT-Creation-Date: 2017-03-28 09:10-0700\n" +"PO-Revision-Date: 2017-03-28 12:12-0400\n" "Last-Translator: miigotu <miigotu@gmail.com>\n" "Language-Team: Japanese\n" "MIME-Version: 1.0\n" @@ -90,7 +90,7 @@ msgid "Biography" msgstr "" #: gui/slick/views/config_general.mako:78 gui/slick/views/layouts/main.mako:145 -#: sickbeard/__init__.py:79 sickbeard/webserve.py:3807 +#: sickbeard/__init__.py:79 sickbeard/webserve.py:3778 msgid "History" msgstr "" @@ -103,7 +103,7 @@ msgid "Western" msgstr "" #: gui/slick/views/config_general.mako:79 gui/slick/views/layouts/main.mako:221 -#: sickbeard/__init__.py:80 sickbeard/webserve.py:2385 +#: sickbeard/__init__.py:80 sickbeard/webserve.py:2384 msgid "News" msgstr "" @@ -238,6 +238,34 @@ msgstr "無視" msgid "Subtitled" msgstr "字幕付き" +#: sickbeard/helpers.py:1887 +msgid "For best results please set the Download Station alias as" +msgstr "" + +#: sickbeard/helpers.py:1888 +msgid "You can check this setting in the Synology DSM" +msgstr "" + +#: sickbeard/helpers.py:1888 sickbeard/helpers.py:1890 +msgid "Control Panel" +msgstr "" + +#: sickbeard/helpers.py:1888 +msgid "Application Portal" +msgstr "" + +#: sickbeard/helpers.py:1889 +msgid "Make sure you allow DSM to be embedded with iFrames too in" +msgstr "" + +#: sickbeard/helpers.py:1890 +msgid "DSM Settings" +msgstr "" + +#: sickbeard/helpers.py:1890 +msgid "Security" +msgstr "" + #: sickbeard/logger.py:474 msgid "<No Filter>" msgstr "" @@ -308,15 +336,15 @@ msgstr "" msgid "Event" msgstr "" -#: sickbeard/logger.py:491 sickbeard/webserve.py:1339 sickbeard/webserve.py:1342 -#: sickbeard/webserve.py:1520 sickbeard/webserve.py:1529 sickbeard/webserve.py:1717 -#: sickbeard/webserve.py:1728 sickbeard/webserve.py:1751 sickbeard/webserve.py:1764 -#: sickbeard/webserve.py:1769 sickbeard/webserve.py:1785 sickbeard/webserve.py:1790 -#: sickbeard/webserve.py:1854 sickbeard/webserve.py:1857 sickbeard/webserve.py:1863 -#: sickbeard/webserve.py:1866 sickbeard/webserve.py:1873 sickbeard/webserve.py:1876 -#: sickbeard/webserve.py:1899 sickbeard/webserve.py:1997 sickbeard/webserve.py:2002 -#: sickbeard/webserve.py:2007 sickbeard/webserve.py:2036 sickbeard/webserve.py:2040 -#: sickbeard/webserve.py:2045 +#: sickbeard/logger.py:491 sickbeard/webserve.py:1338 sickbeard/webserve.py:1341 +#: sickbeard/webserve.py:1519 sickbeard/webserve.py:1528 sickbeard/webserve.py:1716 +#: sickbeard/webserve.py:1727 sickbeard/webserve.py:1750 sickbeard/webserve.py:1763 +#: sickbeard/webserve.py:1768 sickbeard/webserve.py:1784 sickbeard/webserve.py:1789 +#: sickbeard/webserve.py:1853 sickbeard/webserve.py:1856 sickbeard/webserve.py:1862 +#: sickbeard/webserve.py:1865 sickbeard/webserve.py:1872 sickbeard/webserve.py:1875 +#: sickbeard/webserve.py:1898 sickbeard/webserve.py:1996 sickbeard/webserve.py:2001 +#: sickbeard/webserve.py:2006 sickbeard/webserve.py:2035 sickbeard/webserve.py:2039 +#: sickbeard/webserve.py:2044 msgid "Error" msgstr "" @@ -333,6 +361,7 @@ msgstr "" msgid "Main" msgstr "" +#: gui/slick/js/ajaxEpSearch.js:146 gui/slick/js/ajaxEpSearch.js:147 #: gui/slick/views/inc_home_showList.mako:27 sickbeard/show_queue.py:298 msgid "Loading" msgstr "" @@ -372,867 +401,835 @@ msgstr "" msgid "No update needed" msgstr "" -#: sickbeard/webserve.py:170 +#: sickbeard/webserve.py:171 msgid "Mako Error" msgstr "" -#: sickbeard/webserve.py:195 +#: sickbeard/webserve.py:196 msgid "Oops" msgstr "おっと!" -#: sickbeard/webserve.py:197 +#: sickbeard/webserve.py:198 msgid "Wrong API key used" msgstr "" -#: gui/slick/views/login.mako:34 sickbeard/webserve.py:302 +#: gui/slick/views/login.mako:34 sickbeard/webserve.py:303 msgid "Login" msgstr "ログイン" -#: sickbeard/webserve.py:406 +#: sickbeard/webserve.py:392 msgid "API Key not generated" msgstr "" -#: sickbeard/webserve.py:409 +#: sickbeard/webserve.py:395 msgid "API Builder" msgstr "" #: gui/slick/views/config_general.mako:77 gui/slick/views/layouts/main.mako:141 -#: sickbeard/webserve.py:512 +#: sickbeard/webserve.py:498 msgid "Schedule" msgstr "スケジュール" -#: sickbeard/webserve.py:610 +#: sickbeard/webserve.py:609 msgid "Test 1" msgstr "テスト 1" -#: sickbeard/webserve.py:610 +#: sickbeard/webserve.py:609 msgid "This is test number 1" msgstr "" -#: sickbeard/webserve.py:611 +#: sickbeard/webserve.py:610 msgid "Test 2" msgstr "テスト 2" -#: sickbeard/webserve.py:611 +#: sickbeard/webserve.py:610 msgid "This is test number 2" msgstr "" -#: sickbeard/webserve.py:634 +#: sickbeard/webserve.py:633 msgid "You're using the {branch} branch. Please use 'master' unless specifically asked" msgstr "" -#: sickbeard/webserve.py:698 sickbeard/webserve.py:703 +#: sickbeard/webserve.py:697 sickbeard/webserve.py:702 msgid "Invalid show parameters" msgstr "" -#: sickbeard/webserve.py:710 +#: sickbeard/webserve.py:709 msgid "Invalid parameters" msgstr "" -#: sickbeard/webserve.py:713 sickbeard/webserve.py:1899 +#: sickbeard/webserve.py:712 sickbeard/webserve.py:1898 msgid "Episode couldn't be retrieved" msgstr "" -#: sickbeard/webserve.py:759 sickbeard/webserve.py:1268 sickbeard/webserve.py:1297 +#: sickbeard/webserve.py:758 sickbeard/webserve.py:1267 sickbeard/webserve.py:1296 msgid "Home" msgstr "トップ" -#: gui/slick/views/layouts/main.mako:127 sickbeard/webserve.py:759 +#: gui/slick/views/layouts/main.mako:127 sickbeard/webserve.py:758 msgid "Show List" msgstr "" -#: sickbeard/webserve.py:807 +#: sickbeard/webserve.py:806 msgid "Error: Unsupported Request. Send jsonp request with 'callback' variable in the query string." msgstr "" -#: sickbeard/webserve.py:851 +#: sickbeard/webserve.py:850 msgid "Success. Connected and authenticated" msgstr "" -#: sickbeard/webserve.py:853 +#: sickbeard/webserve.py:852 msgid "Authentication failed. SABnzbd expects" msgstr "" -#: sickbeard/webserve.py:853 +#: sickbeard/webserve.py:852 msgid "as authentication method" msgstr "" -#: sickbeard/webserve.py:855 +#: sickbeard/webserve.py:854 msgid "Unable to connect to host" msgstr "" -#: sickbeard/webserve.py:876 +#: sickbeard/webserve.py:875 msgid "SMS sent successfully" msgstr "" -#: sickbeard/webserve.py:878 +#: sickbeard/webserve.py:877 msgid "Problem sending SMS: {message}" msgstr "" -#: sickbeard/webserve.py:885 +#: sickbeard/webserve.py:884 msgid "Telegram notification succeeded. Check your Telegram clients to make sure it worked" msgstr "" -#: sickbeard/webserve.py:887 +#: sickbeard/webserve.py:886 msgid "Error sending Telegram notification: {message}" msgstr "" -#: sickbeard/webserve.py:894 +#: sickbeard/webserve.py:893 msgid "join notification succeeded. Check your join clients to make sure it worked" msgstr "" -#: sickbeard/webserve.py:896 +#: sickbeard/webserve.py:895 msgid "Error sending join notification: {message}" msgstr "" -#: sickbeard/webserve.py:906 +#: sickbeard/webserve.py:905 msgid " with password" msgstr "" -#: sickbeard/webserve.py:908 +#: sickbeard/webserve.py:907 msgid "Registered and Tested growl successfully {growl_host}" msgstr "" -#: sickbeard/webserve.py:910 +#: sickbeard/webserve.py:909 msgid "Registration and Testing of growl failed {growl_host}" msgstr "" -#: sickbeard/webserve.py:917 +#: sickbeard/webserve.py:916 msgid "Test prowl notice sent successfully" msgstr "" -#: sickbeard/webserve.py:919 +#: sickbeard/webserve.py:918 msgid "Test prowl notice failed" msgstr "" -#: sickbeard/webserve.py:926 +#: sickbeard/webserve.py:925 msgid "Boxcar2 notification succeeded. Check your Boxcar2 clients to make sure it worked" msgstr "" -#: sickbeard/webserve.py:928 +#: sickbeard/webserve.py:927 msgid "Error sending Boxcar2 notification" msgstr "" -#: sickbeard/webserve.py:935 +#: sickbeard/webserve.py:934 msgid "Pushover notification succeeded. Check your Pushover clients to make sure it worked" msgstr "" -#: sickbeard/webserve.py:937 +#: sickbeard/webserve.py:936 msgid "Error sending Pushover notification" msgstr "" -#: sickbeard/webserve.py:949 +#: sickbeard/webserve.py:948 msgid "Key verification successful" msgstr "" -#: sickbeard/webserve.py:951 +#: sickbeard/webserve.py:950 msgid "Unable to verify key" msgstr "" -#: sickbeard/webserve.py:958 +#: sickbeard/webserve.py:957 msgid "Tweet successful, check your twitter to make sure it worked" msgstr "" -#: sickbeard/webserve.py:960 +#: sickbeard/webserve.py:959 msgid "Error sending tweet" msgstr "" -#: sickbeard/webserve.py:965 +#: sickbeard/webserve.py:964 msgid "Please enter a valid account sid" msgstr "" -#: sickbeard/webserve.py:968 +#: sickbeard/webserve.py:967 msgid "Please enter a valid auth token" msgstr "" -#: sickbeard/webserve.py:971 +#: sickbeard/webserve.py:970 msgid "Please enter a valid phone sid" msgstr "" -#: sickbeard/webserve.py:974 +#: sickbeard/webserve.py:973 msgid "Please format the phone number as \"+1-###-###-####\"" msgstr "" -#: sickbeard/webserve.py:978 +#: sickbeard/webserve.py:977 msgid "Authorization successful and number ownership verified" msgstr "" -#: sickbeard/webserve.py:980 +#: sickbeard/webserve.py:979 msgid "Error sending sms" msgstr "" -#: sickbeard/webserve.py:986 +#: sickbeard/webserve.py:985 msgid "Slack message successful" msgstr "" -#: sickbeard/webserve.py:988 +#: sickbeard/webserve.py:987 msgid "Slack message failed" msgstr "" -#: sickbeard/webserve.py:994 +#: sickbeard/webserve.py:993 msgid "Discord message successful" msgstr "" -#: sickbeard/webserve.py:996 +#: sickbeard/webserve.py:995 msgid "Discord message failed" msgstr "" -#: sickbeard/webserve.py:1006 +#: sickbeard/webserve.py:1005 msgid "Test KODI notice sent successfully to {kodi_host}" msgstr "" -#: sickbeard/webserve.py:1008 +#: sickbeard/webserve.py:1007 msgid "Test KODI notice failed to {kodi_host}" msgstr "" -#: sickbeard/webserve.py:1023 +#: sickbeard/webserve.py:1022 msgid "Successful test notice sent to Plex Home Theater ... {plex_clients}" msgstr "" -#: sickbeard/webserve.py:1025 +#: sickbeard/webserve.py:1024 msgid "Test failed for Plex Home Theater ... {plex_clients}" msgstr "" -#: sickbeard/webserve.py:1028 +#: sickbeard/webserve.py:1027 msgid "Tested Plex Home Theater(s)" msgstr "" -#: sickbeard/webserve.py:1042 +#: sickbeard/webserve.py:1041 msgid "Successful test of Plex Media Server(s) ... {plex_servers}" msgstr "" -#: sickbeard/webserve.py:1044 +#: sickbeard/webserve.py:1043 msgid "Test failed, No Plex Media Server host specified" msgstr "" -#: sickbeard/webserve.py:1046 +#: sickbeard/webserve.py:1045 msgid "Test failed for Plex Media Server(s) ... {plex_servers}" msgstr "" -#: sickbeard/webserve.py:1049 +#: sickbeard/webserve.py:1048 msgid "Tested Plex Media Server host(s)" msgstr "" -#: sickbeard/webserve.py:1057 +#: sickbeard/webserve.py:1056 msgid "Tried sending desktop notification via libnotify" msgstr "" -#: sickbeard/webserve.py:1066 +#: sickbeard/webserve.py:1065 msgid "Test notice sent successfully to {emby_host}" msgstr "" -#: sickbeard/webserve.py:1068 +#: sickbeard/webserve.py:1067 msgid "Test notice failed to {emby_host}" msgstr "" -#: sickbeard/webserve.py:1076 +#: sickbeard/webserve.py:1075 msgid "Successfully started the scan update" msgstr "" -#: sickbeard/webserve.py:1078 +#: sickbeard/webserve.py:1077 msgid "Test failed to start the scan update" msgstr "" -#: sickbeard/webserve.py:1097 +#: sickbeard/webserve.py:1096 msgid "Test notice sent successfully to {nmj2_host}" msgstr "" -#: sickbeard/webserve.py:1099 +#: sickbeard/webserve.py:1098 msgid "Test notice failed to {nmj2_host}" msgstr "" -#: sickbeard/webserve.py:1119 +#: sickbeard/webserve.py:1118 msgid "Trakt Authorized" msgstr "" -#: sickbeard/webserve.py:1120 +#: sickbeard/webserve.py:1119 msgid "Trakt Not Authorized!" msgstr "" -#: sickbeard/webserve.py:1184 +#: sickbeard/webserve.py:1183 msgid "Test email sent successfully! Check inbox." msgstr "" -#: sickbeard/webserve.py:1186 +#: sickbeard/webserve.py:1185 msgid "ERROR: {last_error}" msgstr "" -#: sickbeard/webserve.py:1193 +#: sickbeard/webserve.py:1192 msgid "Test NMA notice sent successfully" msgstr "" -#: sickbeard/webserve.py:1195 +#: sickbeard/webserve.py:1194 msgid "Test NMA notice failed" msgstr "" -#: sickbeard/webserve.py:1202 +#: sickbeard/webserve.py:1201 msgid "Pushalot notification succeeded. Check your Pushalot clients to make sure it worked" msgstr "" -#: sickbeard/webserve.py:1204 +#: sickbeard/webserve.py:1203 msgid "Error sending Pushalot notification" msgstr "" -#: sickbeard/webserve.py:1211 +#: sickbeard/webserve.py:1210 msgid "Pushbullet notification succeeded. Check your device to make sure it worked" msgstr "" -#: sickbeard/webserve.py:1213 sickbeard/webserve.py:1223 sickbeard/webserve.py:1232 +#: sickbeard/webserve.py:1212 sickbeard/webserve.py:1222 sickbeard/webserve.py:1231 msgid "Error sending Pushbullet notification" msgstr "" #: gui/slick/views/displayShow.mako:436 gui/slick/views/inc_home_showList.mako:174 -#: gui/slick/views/manage.mako:49 sickbeard/webserve.py:1249 +#: gui/slick/views/manage.mako:49 sickbeard/webserve.py:1248 msgid "Status" msgstr "" -#: sickbeard/webserve.py:1268 sickbeard/webserve.py:1297 +#: sickbeard/webserve.py:1267 sickbeard/webserve.py:1296 msgid "Restarting SickRage" msgstr "" -#: sickbeard/webserve.py:1300 +#: sickbeard/webserve.py:1299 msgid "Update Failed" msgstr "" -#: sickbeard/webserve.py:1301 +#: sickbeard/webserve.py:1300 msgid "Update wasn't successful, not restarting. Check your log for more information." msgstr "" -#: sickbeard/webserve.py:1308 +#: sickbeard/webserve.py:1307 msgid "Checking out branch" msgstr "" -#: sickbeard/webserve.py:1311 +#: sickbeard/webserve.py:1310 msgid "Already on branch" msgstr "" -#: sickbeard/webserve.py:1339 +#: sickbeard/webserve.py:1338 msgid "Invalid show ID: {show}" msgstr "" -#: sickbeard/webserve.py:1342 sickbeard/webserve.py:1871 sickbeard/webserve.py:2002 -#: sickbeard/webserve.py:2040 +#: sickbeard/webserve.py:1341 sickbeard/webserve.py:1870 sickbeard/webserve.py:2001 +#: sickbeard/webserve.py:2039 msgid "Show not in show list" msgstr "" #: gui/slick/views/inc_rootDirs.mako:31 gui/slick/views/manage.mako:38 -#: gui/slick/views/manage_massEdit.mako:74 sickbeard/webserve.py:1358 -#: sickbeard/webserve.py:2027 +#: gui/slick/views/manage_massEdit.mako:74 sickbeard/webserve.py:1357 +#: sickbeard/webserve.py:2026 msgid "Edit" msgstr "" -#: sickbeard/webserve.py:1368 +#: sickbeard/webserve.py:1367 msgid "This show is in the process of being downloaded - the info below is incomplete." msgstr "" -#: sickbeard/webserve.py:1371 +#: sickbeard/webserve.py:1370 msgid "The information on this page is in the process of being updated." msgstr "" -#: sickbeard/webserve.py:1374 +#: sickbeard/webserve.py:1373 msgid "The episodes below are currently being refreshed from disk" msgstr "" -#: sickbeard/webserve.py:1377 +#: sickbeard/webserve.py:1376 msgid "Currently downloading subtitles for this show" msgstr "" -#: sickbeard/webserve.py:1380 +#: sickbeard/webserve.py:1379 msgid "This show is queued to be refreshed." msgstr "" -#: sickbeard/webserve.py:1383 +#: sickbeard/webserve.py:1382 msgid "This show is queued and awaiting an update." msgstr "" -#: sickbeard/webserve.py:1386 +#: sickbeard/webserve.py:1385 msgid "This show is queued and awaiting subtitles download." msgstr "" -#: gui/slick/js/core.js:4081 sickbeard/webserve.py:1391 +#: gui/slick/js/core.js:4081 sickbeard/webserve.py:1390 msgid "Resume" msgstr "" #: gui/slick/js/core.js:4081 gui/slick/views/viewlogs.mako:12 -#: sickbeard/webserve.py:1393 +#: sickbeard/webserve.py:1392 msgid "Pause" msgstr "" #: gui/slick/views/editShow.mako:345 gui/slick/views/inc_blackwhitelist.mako:40 #: gui/slick/views/inc_blackwhitelist.mako:85 gui/slick/views/manage.mako:58 -#: gui/slick/views/manage_failedDownloads.mako:43 sickbeard/webserve.py:1395 +#: gui/slick/views/manage_failedDownloads.mako:43 sickbeard/webserve.py:1394 msgid "Remove" msgstr "" -#: sickbeard/webserve.py:1396 +#: sickbeard/webserve.py:1395 msgid "Re-scan files" msgstr "" -#: sickbeard/webserve.py:1397 +#: sickbeard/webserve.py:1396 msgid "Force Full Update" msgstr "" -#: sickbeard/webserve.py:1398 +#: sickbeard/webserve.py:1397 msgid "Update show in KODI" msgstr "" -#: sickbeard/webserve.py:1399 +#: sickbeard/webserve.py:1398 msgid "Update show in Emby" msgstr "" -#: sickbeard/webserve.py:1402 +#: sickbeard/webserve.py:1401 msgid "Hide specials" msgstr "" -#: sickbeard/webserve.py:1404 +#: sickbeard/webserve.py:1403 msgid "Show specials" msgstr "" -#: sickbeard/webserve.py:1406 sickbeard/webserve.py:2030 sickbeard/webserve.py:2031 +#: sickbeard/webserve.py:1405 sickbeard/webserve.py:2029 sickbeard/webserve.py:2030 msgid "Preview Rename" msgstr "" -#: sickbeard/webserve.py:1409 +#: sickbeard/webserve.py:1408 msgid "Download Subtitles" msgstr "" -#: sickbeard/webserve.py:1498 +#: sickbeard/webserve.py:1497 msgid "No scene exceptions" msgstr "" -#: sickbeard/webserve.py:1516 sickbeard/webserve.py:1764 sickbeard/webserve.py:1785 +#: sickbeard/webserve.py:1515 sickbeard/webserve.py:1763 sickbeard/webserve.py:1784 msgid "Invalid show ID" msgstr "" -#: sickbeard/webserve.py:1525 sickbeard/webserve.py:1769 sickbeard/webserve.py:1790 +#: sickbeard/webserve.py:1524 sickbeard/webserve.py:1768 sickbeard/webserve.py:1789 msgid "Unable to find the specified show" msgstr "" -#: sickbeard/webserve.py:1550 +#: sickbeard/webserve.py:1549 msgid "Unable to retreive Fansub Groups from AniDB." msgstr "" -#: sickbeard/webserve.py:1559 sickbeard/webserve.py:1561 +#: sickbeard/webserve.py:1558 sickbeard/webserve.py:1560 msgid "Edit Show" msgstr "" -#: sickbeard/webserve.py:1637 sickbeard/webserve.py:1671 +#: sickbeard/webserve.py:1636 sickbeard/webserve.py:1670 msgid "Unable to refresh this show: {error}" msgstr "" -#: sickbeard/webserve.py:1663 +#: sickbeard/webserve.py:1662 msgid "New location <tt>{location}</tt> does not exist" msgstr "" -#: sickbeard/webserve.py:1688 +#: sickbeard/webserve.py:1687 msgid "Unable to update show: {error}" msgstr "" -#: sickbeard/webserve.py:1695 +#: sickbeard/webserve.py:1694 msgid "Unable to force an update on scene exceptions of the show." msgstr "" -#: sickbeard/webserve.py:1702 +#: sickbeard/webserve.py:1701 msgid "Unable to force an update on scene numbering of the show." msgstr "" -#: sickbeard/webserve.py:1708 sickbeard/webserve.py:3540 +#: sickbeard/webserve.py:1707 sickbeard/webserve.py:3539 msgid "{num_errors:d} error{plural} while saving changes:" msgstr "" -#: sickbeard/webserve.py:1719 +#: sickbeard/webserve.py:1718 msgid "{show_name} has been {paused_resumed}" msgstr "" -#: sickbeard/webserve.py:1719 +#: sickbeard/webserve.py:1718 msgid "resumed" msgstr "" -#: sickbeard/webserve.py:1719 +#: sickbeard/webserve.py:1718 msgid "paused" msgstr "" -#: sickbeard/webserve.py:1731 +#: sickbeard/webserve.py:1730 msgid "{show_name} has been {deleted_trashed} {was_deleted}" msgstr "" -#: sickbeard/webserve.py:1733 +#: sickbeard/webserve.py:1732 msgid "deleted" msgstr "" -#: sickbeard/webserve.py:1733 +#: sickbeard/webserve.py:1732 msgid "trashed" msgstr "" -#: sickbeard/webserve.py:1734 +#: sickbeard/webserve.py:1733 msgid "(media untouched)" msgstr "" -#: sickbeard/webserve.py:1734 +#: sickbeard/webserve.py:1733 msgid "(with all related media)" msgstr "" -#: sickbeard/webserve.py:1755 +#: sickbeard/webserve.py:1754 msgid "Unable to refresh this show." msgstr "" -#: sickbeard/webserve.py:1775 +#: sickbeard/webserve.py:1774 msgid "Unable to update this show." msgstr "" -#: sickbeard/webserve.py:1814 +#: sickbeard/webserve.py:1813 msgid "Library update command sent to KODI host(s)): {kodi_hosts}" msgstr "" -#: sickbeard/webserve.py:1816 +#: sickbeard/webserve.py:1815 msgid "Unable to contact one or more KODI host(s)): {kodi_hosts}" msgstr "" -#: sickbeard/webserve.py:1825 +#: sickbeard/webserve.py:1824 msgid "Library update command sent to Plex Media Server host: {plex_server}" msgstr "" -#: sickbeard/webserve.py:1828 +#: sickbeard/webserve.py:1827 msgid "Unable to contact Plex Media Server host: {plex_server}" msgstr "" -#: sickbeard/webserve.py:1840 +#: sickbeard/webserve.py:1839 msgid "Library update command sent to Emby host: {emby_host}" msgstr "" -#: sickbeard/webserve.py:1842 +#: sickbeard/webserve.py:1841 msgid "Unable to contact Emby host: {emby_host}" msgstr "" -#: sickbeard/webserve.py:1852 sickbeard/webserve.py:2036 +#: sickbeard/webserve.py:1851 sickbeard/webserve.py:2035 msgid "You must specify a show and at least one episode" msgstr "" -#: sickbeard/webserve.py:1861 +#: sickbeard/webserve.py:1860 msgid "Invalid status" msgstr "" -#: sickbeard/webserve.py:1954 +#: sickbeard/webserve.py:1953 msgid "Backlog was automatically started for the following seasons of <b>{show_name}</b>" msgstr "" #: gui/slick/views/displayShow.mako:74 gui/slick/views/displayShow.mako:79 -#: gui/slick/views/displayShow.mako:404 sickbeard/webserve.py:1961 -#: sickbeard/webserve.py:1980 +#: gui/slick/views/displayShow.mako:404 sickbeard/webserve.py:1960 +#: sickbeard/webserve.py:1979 msgid "Season" msgstr "" -#: sickbeard/webserve.py:1968 +#: sickbeard/webserve.py:1967 msgid "Backlog started" msgstr "" -#: sickbeard/webserve.py:1973 +#: sickbeard/webserve.py:1972 msgid "Retrying Search was automatically started for the following season of <b>{show_name}</b>" msgstr "" -#: sickbeard/webserve.py:1987 +#: sickbeard/webserve.py:1986 msgid "Retry Search started" msgstr "" -#: sickbeard/webserve.py:1997 +#: sickbeard/webserve.py:1996 msgid "You must specify a show" msgstr "" -#: sickbeard/webserve.py:2007 sickbeard/webserve.py:2045 +#: sickbeard/webserve.py:2006 sickbeard/webserve.py:2044 msgid "Can't rename episodes when the show dir is missing." msgstr "" -#: sickbeard/webserve.py:2212 sickbeard/webserve.py:2233 +#: sickbeard/webserve.py:2211 sickbeard/webserve.py:2232 msgid "New subtitles downloaded: {new_subtitle_languages}" msgstr "" -#: sickbeard/webserve.py:2215 sickbeard/webserve.py:2236 +#: sickbeard/webserve.py:2214 sickbeard/webserve.py:2235 msgid "No subtitles downloaded" msgstr "" #: gui/slick/views/config_general.mako:80 gui/slick/views/layouts/main.mako:222 -#: sickbeard/webserve.py:2363 +#: sickbeard/webserve.py:2362 msgid "IRC" msgstr "" -#: sickbeard/webserve.py:2376 +#: sickbeard/webserve.py:2375 msgid "Could not load news from the repo. [Click here for news.md])({news_url})" msgstr "" -#: sickbeard/webserve.py:2383 sickbeard/webserve.py:2401 +#: sickbeard/webserve.py:2382 sickbeard/webserve.py:2400 msgid "The was a problem connecting to github, please refresh and try again" msgstr "" -#: sickbeard/webserve.py:2398 +#: sickbeard/webserve.py:2397 msgid "Could not load changes from the repo. [Click here for CHANGES.md]({changes_url})" msgstr "" -#: gui/slick/views/layouts/main.mako:223 sickbeard/webserve.py:2403 +#: gui/slick/views/layouts/main.mako:223 sickbeard/webserve.py:2402 msgid "Changelog" msgstr "" -#: gui/slick/views/layouts/main.mako:190 sickbeard/webserve.py:2413 -#: sickbeard/webserve.py:3855 sickbeard/webserve.py:4341 +#: gui/slick/views/layouts/main.mako:190 sickbeard/webserve.py:2412 +#: sickbeard/webserve.py:3826 sickbeard/webserve.py:4312 msgid "Post Processing" msgstr "" -#: gui/slick/views/layouts/main.mako:128 sickbeard/webserve.py:2445 +#: gui/slick/views/layouts/main.mako:128 sickbeard/webserve.py:2444 msgid "Add Shows" msgstr "" -#: sickbeard/webserve.py:2510 +#: sickbeard/webserve.py:2509 msgid "No folders selected." msgstr "" -#: sickbeard/webserve.py:2632 +#: sickbeard/webserve.py:2631 msgid "New Show" msgstr "" -#: sickbeard/webserve.py:2647 +#: sickbeard/webserve.py:2646 msgid "Trending Shows" msgstr "" -#: sickbeard/webserve.py:2649 sickbeard/webserve.py:2772 +#: sickbeard/webserve.py:2648 sickbeard/webserve.py:2771 msgid "Popular Shows" msgstr "" -#: sickbeard/webserve.py:2651 sickbeard/webserve.py:2665 +#: sickbeard/webserve.py:2650 sickbeard/webserve.py:2664 msgid "Most Anticipated Shows" msgstr "" -#: sickbeard/webserve.py:2653 +#: sickbeard/webserve.py:2652 msgid "Most Collected Shows" msgstr "" -#: sickbeard/webserve.py:2655 +#: sickbeard/webserve.py:2654 msgid "Most Watched Shows" msgstr "" -#: sickbeard/webserve.py:2657 +#: sickbeard/webserve.py:2656 msgid "Most Played Shows" msgstr "" -#: sickbeard/webserve.py:2659 +#: sickbeard/webserve.py:2658 msgid "Recommended Shows" msgstr "" -#: gui/slick/views/addShows_trendingShows.mako:60 sickbeard/webserve.py:2661 +#: gui/slick/views/addShows_trendingShows.mako:60 sickbeard/webserve.py:2660 msgid "New Shows" msgstr "" -#: gui/slick/views/addShows_trendingShows.mako:61 sickbeard/webserve.py:2663 +#: gui/slick/views/addShows_trendingShows.mako:61 sickbeard/webserve.py:2662 msgid "Season Premieres" msgstr "" -#: sickbeard/webserve.py:2792 sickbeard/webserve.py:2793 +#: sickbeard/webserve.py:2791 sickbeard/webserve.py:2792 msgid "Existing Show" msgstr "" -#: sickbeard/webserve.py:2871 +#: sickbeard/webserve.py:2870 msgid "No root directories setup, please go back and add one." msgstr "" -#: sickbeard/webserve.py:2883 sickbeard/webserve.py:3002 +#: sickbeard/webserve.py:2882 sickbeard/webserve.py:3001 msgid "Show added" msgstr "" -#: sickbeard/webserve.py:2883 +#: sickbeard/webserve.py:2882 msgid "Adding the specified show {show_name}" msgstr "" -#: sickbeard/webserve.py:2924 +#: sickbeard/webserve.py:2923 msgid "Missing params, no Indexer ID or folder: {show_to_add} and {root_dir}/{show_path}" msgstr "" -#: sickbeard/webserve.py:2933 +#: sickbeard/webserve.py:2932 msgid "Unknown error. Unable to add show due to problem with show selection." msgstr "" -#: sickbeard/webserve.py:2957 sickbeard/webserve.py:2967 +#: sickbeard/webserve.py:2956 sickbeard/webserve.py:2966 msgid "Unable to add show" msgstr "" -#: sickbeard/webserve.py:2957 +#: sickbeard/webserve.py:2956 msgid "Folder {show_dir} exists already" msgstr "" -#: sickbeard/webserve.py:2968 +#: sickbeard/webserve.py:2967 msgid "Unable to create the folder {show_dir}, can't add the show" msgstr "" -#: sickbeard/webserve.py:3002 +#: sickbeard/webserve.py:3001 msgid "Adding the specified show into {show_dir}" msgstr "" -#: sickbeard/webserve.py:3078 +#: sickbeard/webserve.py:3077 msgid "Shows Added" msgstr "" -#: sickbeard/webserve.py:3079 +#: sickbeard/webserve.py:3078 msgid "Automatically added {num_shows} from their existing metadata files" msgstr "" -#: gui/slick/views/layouts/main.mako:153 sickbeard/webserve.py:3096 +#: gui/slick/views/layouts/main.mako:153 sickbeard/webserve.py:3095 msgid "Mass Update" msgstr "" -#: sickbeard/webserve.py:3134 sickbeard/webserve.py:3161 sickbeard/webserve.py:3237 -#: sickbeard/webserve.py:3238 +#: sickbeard/webserve.py:3133 sickbeard/webserve.py:3160 sickbeard/webserve.py:3236 +#: sickbeard/webserve.py:3237 msgid "Episode Overview" msgstr "" -#: sickbeard/webserve.py:3270 +#: sickbeard/webserve.py:3269 msgid "Missing Subtitles" msgstr "" -#: gui/slick/views/layouts/main.mako:154 sickbeard/webserve.py:3356 -#: sickbeard/webserve.py:3357 +#: gui/slick/views/layouts/main.mako:154 sickbeard/webserve.py:3355 +#: sickbeard/webserve.py:3356 msgid "Backlog Overview" msgstr "" -#: sickbeard/webserve.py:3481 +#: sickbeard/webserve.py:3480 msgid "Mass Edit" msgstr "" -#: sickbeard/webserve.py:3586 +#: sickbeard/webserve.py:3585 msgid "Unable to update show: {excption_format}" msgstr "" -#: sickbeard/webserve.py:3594 +#: sickbeard/webserve.py:3593 msgid "Unable to refresh show {show_name}: {excption_format}" msgstr "" -#: sickbeard/webserve.py:3605 +#: sickbeard/webserve.py:3604 msgid "Errors encountered" msgstr "" -#: gui/slick/views/config_general.mako:261 sickbeard/webserve.py:3611 +#: gui/slick/views/config_general.mako:261 sickbeard/webserve.py:3610 msgid "Updates" msgstr "" -#: sickbeard/webserve.py:3616 +#: sickbeard/webserve.py:3615 msgid "Refreshes" msgstr "" -#: sickbeard/webserve.py:3621 +#: sickbeard/webserve.py:3620 msgid "Renames" msgstr "" #: gui/slick/views/displayShow.mako:260 gui/slick/views/displayShow.mako:435 #: gui/slick/views/editShow.mako:119 gui/slick/views/inc_addShowOptions.mako:20 -#: gui/slick/views/manage_massEdit.mako:262 sickbeard/webserve.py:3626 -#: sickbeard/webserve.py:5244 +#: gui/slick/views/manage_massEdit.mako:262 sickbeard/webserve.py:3625 +#: sickbeard/webserve.py:5215 msgid "Subtitles" msgstr "" -#: sickbeard/webserve.py:3631 +#: sickbeard/webserve.py:3630 msgid "The following actions were queued" msgstr "" -#: sickbeard/webserve.py:3651 -msgid "For best results please set the Download Station alias as" -msgstr "" - -#: sickbeard/webserve.py:3652 -msgid "You can check this setting in the Synology DSM" -msgstr "" - -#: sickbeard/webserve.py:3652 sickbeard/webserve.py:3654 -msgid "Control Panel" -msgstr "" - -#: sickbeard/webserve.py:3652 -msgid "Application Portal" -msgstr "" - -#: sickbeard/webserve.py:3653 -msgid "Make sure you allow DSM to be embedded with iFrames too in" -msgstr "" - -#: sickbeard/webserve.py:3654 -msgid "DSM Settings" -msgstr "" - -#: sickbeard/webserve.py:3654 -msgid "Security" -msgstr "" - -#: gui/slick/views/layouts/main.mako:167 sickbeard/webserve.py:3662 -msgid "Manage Torrents" -msgstr "" - -#: gui/slick/views/layouts/main.mako:170 sickbeard/webserve.py:3683 +#: gui/slick/views/layouts/main.mako:170 sickbeard/webserve.py:3654 msgid "Failed Downloads" msgstr "" -#: gui/slick/views/layouts/main.mako:155 sickbeard/webserve.py:3701 +#: gui/slick/views/layouts/main.mako:155 sickbeard/webserve.py:3672 msgid "Manage Searches" msgstr "" -#: sickbeard/webserve.py:3709 +#: sickbeard/webserve.py:3680 msgid "Backlog search started" msgstr "" -#: sickbeard/webserve.py:3719 +#: sickbeard/webserve.py:3690 msgid "Daily search started" msgstr "" -#: sickbeard/webserve.py:3728 +#: sickbeard/webserve.py:3699 msgid "Find propers search started" msgstr "" -#: sickbeard/webserve.py:3737 +#: sickbeard/webserve.py:3708 msgid "Subtitle search started" msgstr "" -#: sickbeard/webserve.py:3801 +#: sickbeard/webserve.py:3772 msgid "Remove Selected" msgstr "" -#: sickbeard/webserve.py:3802 +#: sickbeard/webserve.py:3773 msgid "Clear History" msgstr "" -#: sickbeard/webserve.py:3803 +#: sickbeard/webserve.py:3774 msgid "Trim History" msgstr "" -#: sickbeard/webserve.py:3823 +#: sickbeard/webserve.py:3794 msgid "Selected history entries removed" msgstr "" -#: sickbeard/webserve.py:3830 +#: sickbeard/webserve.py:3801 msgid "History cleared" msgstr "" -#: sickbeard/webserve.py:3837 +#: sickbeard/webserve.py:3808 msgid "Removed history entries older than 30 days" msgstr "" -#: gui/slick/views/layouts/main.mako:185 sickbeard/webserve.py:3850 +#: gui/slick/views/layouts/main.mako:185 sickbeard/webserve.py:3821 msgid "General" msgstr "" -#: sickbeard/webserve.py:3851 sickbeard/webserve.py:4143 +#: sickbeard/webserve.py:3822 sickbeard/webserve.py:4114 msgid "Backup/Restore" msgstr "" -#: gui/slick/views/layouts/main.mako:187 sickbeard/webserve.py:3852 -#: sickbeard/webserve.py:4206 +#: gui/slick/views/layouts/main.mako:187 sickbeard/webserve.py:3823 +#: sickbeard/webserve.py:4177 msgid "Search Settings" msgstr "" -#: gui/slick/views/layouts/main.mako:188 sickbeard/webserve.py:3853 -#: sickbeard/webserve.py:4518 +#: gui/slick/views/layouts/main.mako:188 sickbeard/webserve.py:3824 +#: sickbeard/webserve.py:4489 msgid "Search Providers" msgstr "" -#: gui/slick/views/layouts/main.mako:189 sickbeard/webserve.py:3854 +#: gui/slick/views/layouts/main.mako:189 sickbeard/webserve.py:3825 msgid "Subtitles Settings" msgstr "" -#: gui/slick/views/layouts/main.mako:191 sickbeard/webserve.py:3856 -#: sickbeard/webserve.py:4964 +#: gui/slick/views/layouts/main.mako:191 sickbeard/webserve.py:3827 +#: sickbeard/webserve.py:4935 msgid "Notifications" msgstr "" @@ -1240,142 +1237,142 @@ msgstr "" #: gui/slick/views/home.mako:35 gui/slick/views/inc_addShowOptions.mako:79 #: gui/slick/views/inc_home_showList.mako:179 gui/slick/views/layouts/main.mako:192 #: gui/slick/views/manage.mako:44 gui/slick/views/manage_massEdit.mako:202 -#: sickbeard/webserve.py:3857 sickbeard/webserve.py:5309 +#: sickbeard/webserve.py:3828 sickbeard/webserve.py:5280 msgid "Anime" msgstr "" -#: sickbeard/webserve.py:3895 sickbeard/webserve.py:3896 +#: sickbeard/webserve.py:3866 sickbeard/webserve.py:3867 msgid "SickRage Configuration" msgstr "" -#: sickbeard/webserve.py:3910 +#: sickbeard/webserve.py:3881 msgid "Config - Shares" msgstr "" -#: sickbeard/webserve.py:3910 +#: sickbeard/webserve.py:3881 msgid "Windows Shares Configuration" msgstr "" -#: sickbeard/webserve.py:3937 +#: sickbeard/webserve.py:3908 msgid "Saved Shares" msgstr "" -#: sickbeard/webserve.py:3937 +#: sickbeard/webserve.py:3908 msgid "Your Windows share settings have been saved" msgstr "" -#: sickbeard/webserve.py:3948 +#: sickbeard/webserve.py:3919 msgid "Config - General" msgstr "" -#: sickbeard/webserve.py:3948 +#: sickbeard/webserve.py:3919 msgid "General Configuration" msgstr "" -#: sickbeard/webserve.py:3988 +#: sickbeard/webserve.py:3959 msgid "Saved Defaults" msgstr "" -#: sickbeard/webserve.py:3988 +#: sickbeard/webserve.py:3959 msgid "Your \"add show\" defaults have been set to your current selections." msgstr "" -#: sickbeard/webserve.py:4095 +#: sickbeard/webserve.py:4066 msgid "Unable to create directory {directory}, log directory not changed." msgstr "" -#: sickbeard/webserve.py:4103 +#: sickbeard/webserve.py:4074 msgid "Unable to create directory {directory}, https cert directory not changed." msgstr "" -#: sickbeard/webserve.py:4107 +#: sickbeard/webserve.py:4078 msgid "Unable to create directory {directory}, https key directory not changed." msgstr "" -#: sickbeard/webserve.py:4126 sickbeard/webserve.py:4324 sickbeard/webserve.py:4456 -#: sickbeard/webserve.py:5227 +#: sickbeard/webserve.py:4097 sickbeard/webserve.py:4295 sickbeard/webserve.py:4427 +#: sickbeard/webserve.py:5198 msgid "Error(s) Saving Configuration" msgstr "" -#: sickbeard/webserve.py:4129 sickbeard/webserve.py:4327 sickbeard/webserve.py:4458 -#: sickbeard/webserve.py:4950 sickbeard/webserve.py:5230 sickbeard/webserve.py:5294 -#: sickbeard/webserve.py:5323 +#: sickbeard/webserve.py:4100 sickbeard/webserve.py:4298 sickbeard/webserve.py:4429 +#: sickbeard/webserve.py:4921 sickbeard/webserve.py:5201 sickbeard/webserve.py:5265 +#: sickbeard/webserve.py:5294 msgid "Configuration Saved" msgstr "" -#: sickbeard/webserve.py:4142 +#: sickbeard/webserve.py:4113 msgid "Config - Backup/Restore" msgstr "" -#: sickbeard/webserve.py:4205 +#: sickbeard/webserve.py:4176 msgid "Config - Episode Search" msgstr "" -#: sickbeard/webserve.py:4340 +#: sickbeard/webserve.py:4311 msgid "Config - Post Processing" msgstr "" -#: sickbeard/webserve.py:4380 +#: sickbeard/webserve.py:4351 msgid "Unpacking Not Supported, disabling unpack setting" msgstr "" -#: sickbeard/webserve.py:4431 +#: sickbeard/webserve.py:4402 msgid "You tried saving an invalid normal naming config, not saving your naming settings" msgstr "" -#: sickbeard/webserve.py:4439 +#: sickbeard/webserve.py:4410 msgid "You tried saving an invalid anime naming config, not saving your naming settings" msgstr "" -#: sickbeard/webserve.py:4517 +#: sickbeard/webserve.py:4488 msgid "Config - Providers" msgstr "" -#: sickbeard/webserve.py:4547 +#: sickbeard/webserve.py:4518 msgid "No Provider Name specified" msgstr "" -#: sickbeard/webserve.py:4549 +#: sickbeard/webserve.py:4520 msgid "No Provider Url specified" msgstr "" -#: sickbeard/webserve.py:4551 +#: sickbeard/webserve.py:4522 msgid "No Provider Api key specified" msgstr "" -#: sickbeard/webserve.py:4963 +#: sickbeard/webserve.py:4934 msgid "Config - Notifications" msgstr "" -#: sickbeard/webserve.py:5243 +#: sickbeard/webserve.py:5214 msgid "Config - Subtitles" msgstr "" -#: sickbeard/webserve.py:5308 +#: sickbeard/webserve.py:5279 msgid "Config - Anime" msgstr "" -#: sickbeard/webserve.py:5336 +#: sickbeard/webserve.py:5307 msgid "Clear Errors" msgstr "" -#: sickbeard/webserve.py:5342 +#: sickbeard/webserve.py:5313 msgid "Clear Warnings" msgstr "" -#: sickbeard/webserve.py:5348 +#: sickbeard/webserve.py:5319 msgid "Submit Errors" msgstr "" -#: sickbeard/webserve.py:5363 +#: sickbeard/webserve.py:5334 msgid "Logs & Errors" msgstr "" -#: sickbeard/webserve.py:5388 +#: sickbeard/webserve.py:5359 msgid "Log File" msgstr "" -#: sickbeard/webserve.py:5388 +#: sickbeard/webserve.py:5359 msgid "Logs" msgstr "" @@ -1383,30 +1380,166 @@ msgstr "" msgid "This is a test notification from SickRage" msgstr "" -#: gui/slick/js/core.js:481 gui/slick/js/core.js:502 gui/slick/js/core.js:524 -#: gui/slick/js/core.js:548 gui/slick/js/core.js:573 gui/slick/js/core.js:596 -#: gui/slick/js/core.js:625 gui/slick/js/core.js:645 gui/slick/js/core.js:690 -#: gui/slick/js/core.js:769 gui/slick/js/core.js:829 gui/slick/js/core.js:849 -#: gui/slick/js/core.js:879 gui/slick/js/core.js:909 gui/slick/js/core.js:969 -#: gui/slick/js/core.js:1046 gui/slick/js/core.js:1066 gui/slick/js/core.js:1085 +#: gui/slick/js/browser.js:6 +msgid "Choose Directory" +msgstr "" + +#: gui/slick/js/core.js:443 +msgid "Select log file folder location" +msgstr "" + +#: gui/slick/js/core.js:445 +msgid "Select CSS file" +msgstr "" + +#: gui/slick/js/core.js:469 +msgid "Select backup folder to save to" +msgstr "" + +#: gui/slick/js/core.js:470 +msgid "Select backup files to restore" +msgstr "" + +#: gui/slick/js/core.js:479 gui/slick/js/core.js:500 gui/slick/js/core.js:522 +#: gui/slick/js/core.js:546 gui/slick/js/core.js:571 gui/slick/js/core.js:594 +#: gui/slick/js/core.js:623 gui/slick/js/core.js:643 gui/slick/js/core.js:688 +#: gui/slick/js/core.js:767 gui/slick/js/core.js:827 gui/slick/js/core.js:847 +#: gui/slick/js/core.js:877 gui/slick/js/core.js:907 gui/slick/js/core.js:967 +#: gui/slick/js/core.js:1044 gui/slick/js/core.js:1064 gui/slick/js/core.js:1083 msgid "Please fill out the necessary fields above." msgstr "" -#: gui/slick/js/core.js:1328 gui/slick/js/core.js:1378 gui/slick/js/core.js:1427 -#: gui/slick/js/core.js:1493 +#: gui/slick/js/core.js:680 +msgid "<b>Step 1:</b> Confirm Authorization" +msgstr "" + +#: gui/slick/js/core.js:977 +msgid "Check blacklist name; the value needs to be a trakt slug" +msgstr "" + +#: gui/slick/js/core.js:1022 +msgid "You must provide a recipient email address!" +msgstr "" + +#: gui/slick/js/core.js:1107 +msgid "You didn't supply a Pushbullet api key" +msgstr "" + +#: gui/slick/js/core.js:1133 gui/slick/js/core.js:1162 +msgid "Don't forget to save your new pushbullet settings." +msgstr "" + +#: gui/slick/js/core.js:1262 +msgid "Select TV Download Directory" +msgstr "" + +#: gui/slick/js/core.js:1263 +msgid "Select Unpack Directory" +msgstr "" + +#: gui/slick/js/core.js:1326 gui/slick/js/core.js:1376 gui/slick/js/core.js:1425 +#: gui/slick/js/core.js:1491 msgid "This pattern is invalid." msgstr "" -#: gui/slick/js/core.js:1336 gui/slick/js/core.js:1386 gui/slick/js/core.js:1435 -#: gui/slick/js/core.js:1501 +#: gui/slick/js/core.js:1334 gui/slick/js/core.js:1384 gui/slick/js/core.js:1433 +#: gui/slick/js/core.js:1499 msgid "This pattern would be invalid without the folders, using it will force \"Season Folders\" on for all shows." msgstr "" -#: gui/slick/js/core.js:1344 gui/slick/js/core.js:1394 gui/slick/js/core.js:1443 -#: gui/slick/js/core.js:1509 +#: gui/slick/js/core.js:1342 gui/slick/js/core.js:1392 gui/slick/js/core.js:1441 +#: gui/slick/js/core.js:1507 msgid "This pattern is valid." msgstr "" +#: gui/slick/js/core.js:1818 +msgid "Select .nzb black hole/watch location" +msgstr "" + +#: gui/slick/js/core.js:1819 +msgid "Select .torrent black hole/watch location" +msgstr "" + +#: gui/slick/js/core.js:1820 +msgid "Select .torrent download location" +msgstr "" + +#: gui/slick/js/core.js:1900 +msgid "Minimum seeding time is" +msgstr "" + +#: gui/slick/js/core.js:1902 +msgid "URL to your uTorrent client (e.g. http://localhost:8000)" +msgstr "" + +#: gui/slick/js/core.js:1905 +msgid "Stop seeding when inactive for" +msgstr "" + +#: gui/slick/js/core.js:1911 +msgid "URL to your Transmission client (e.g. http://localhost:9091)" +msgstr "" + +#: gui/slick/js/core.js:1921 +msgid "URL to your Deluge client (e.g. http://localhost:8112)" +msgstr "" + +#: gui/slick/js/core.js:1930 +msgid "IP or Hostname of your Deluge Daemon (e.g. scgi://localhost:58846)" +msgstr "" + +#: gui/slick/js/core.js:1937 +msgid "URL to your Synology DS client (e.g. http://localhost:5000)" +msgstr "" + +#: gui/slick/js/core.js:1941 +msgid "URL to your rTorrent client (e.g. scgi://localhost:5000 <br> or https://localhost/rutorrent/plugins/httprpc/action.php)" +msgstr "" + +#: gui/slick/js/core.js:1952 +msgid "URL to your qBittorrent client (e.g. http://localhost:8080)" +msgstr "" + +#: gui/slick/js/core.js:1962 +msgid "URL to your MLDonkey (e.g. http://localhost:4080)" +msgstr "" + +#: gui/slick/js/core.js:1974 +msgid "URL to your putio client (e.g. http://localhost:8080)" +msgstr "" + +#: gui/slick/js/core.js:1975 +msgid "<a herf=\"https://app.put.io/oauth/apps/new\" target=\"_blank\"> Create a new OAuth app for put.io</a>" +msgstr "" + +#: gui/slick/js/core.js:1977 +msgid "Put.io Parent Folder" +msgstr "" + +#: gui/slick/js/core.js:1978 +msgid "Put.io OAuth Token" +msgstr "" + +#: gui/slick/js/core.js:3383 gui/slick/views/displayShow.mako:410 +msgid "Show Episodes" +msgstr "" + +#: gui/slick/js/core.js:3388 gui/slick/views/displayShow.mako:408 +msgid "Hide Episodes" +msgstr "" + +#: gui/slick/js/core.js:3396 +msgid "Select Show Location" +msgstr "" + +#: gui/slick/js/core.js:3460 +msgid "Select Unprocessed Episode Folder" +msgstr "" + +#: gui/slick/js/core.js:3790 +msgid "DELETED" +msgstr "" + #: gui/slick/js/core.js:4082 msgid "Resume updating the log on this page." msgstr "" @@ -1415,6 +1548,26 @@ msgstr "" msgid "Pause updating the log on this page." msgstr "" +#: gui/slick/js/core.js:4323 +msgid "searching {searchingFor}..." +msgstr "" + +#: gui/slick/js/core.js:4334 +msgid "search timed out, try again or try another indexer" +msgstr "" + +#: gui/slick/js/core.js:4503 +msgid "loading folders..." +msgstr "" + +#: gui/slick/js/parsers.js:7 gui/slick/js/parsers.js:8 +#: gui/slick/js/plotTooltip.js:6 gui/slick/js/sceneExceptionsTooltip.js:6 +#: gui/slick/views/inc_home_showList.mako:209 +#: gui/slick/views/inc_home_showList.mako:215 +#: gui/slick/views/inc_home_showList.mako:231 +msgid "Loading..." +msgstr "" + #: gui/slick/views/404.mako:5 msgid "You have reached this page by accident, please check the url." msgstr "" @@ -5711,14 +5864,6 @@ msgstr "" msgid "Select Columns" msgstr "" -#: gui/slick/views/displayShow.mako:408 -msgid "Hide Episodes" -msgstr "" - -#: gui/slick/views/displayShow.mako:410 -msgid "Show Episodes" -msgstr "" - #: gui/slick/views/displayShow.mako:424 msgid "NFO" msgstr "" @@ -6232,12 +6377,6 @@ msgstr "" msgid "loading" msgstr "" -#: gui/slick/views/inc_home_showList.mako:209 -#: gui/slick/views/inc_home_showList.mako:215 -#: gui/slick/views/inc_home_showList.mako:231 -msgid "Loading..." -msgstr "" - #: gui/slick/views/inc_qualityChooser.mako:31 msgid "<p><b><u>Preferred</u></b> qualities will replace those in <b><u>allowed</u></b>, even if they are lower.</p>" msgstr "" @@ -6775,6 +6914,10 @@ msgstr "" msgid "Update Emby" msgstr "" +#: gui/slick/views/layouts/main.mako:167 +msgid "Manage Torrents" +msgstr "" + #: gui/slick/views/layouts/main.mako:173 msgid "Missed Subtitle Management" msgstr "" diff --git a/locale/ko_KR/LC_MESSAGES/messages.json b/locale/ko_KR/LC_MESSAGES/messages.json index f78c777f84eb6c7ef855b48f76a4c3ea7de97550..b6f3e0f0c45f33e54561eb464eeb91117fb16117 100644 --- a/locale/ko_KR/LC_MESSAGES/messages.json +++ b/locale/ko_KR/LC_MESSAGES/messages.json @@ -1 +1 @@ -{"messages":{"domain":"messages","locale_data":{"messages":{"100":[null,""],"250":[null,""],"500":[null,""],"":{"domain":"messages","plural_forms":"nplurals=1; plural=0;","lang":"ko_KR"},"Drama":[null,""],"Mystery":[null,""],"Science-Fiction":[null,""],"Crime":[null,""],"Action":[null,""],"Comedy":[null,""],"Thriller":[null,""],"Animation":[null,""],"Family":[null,""],"Fantasy":[null,""],"Adventure":[null,""],"Horror":[null,""],"Film-Noir":[null,""],"Sci-Fi":[null,""],"Romance":[null,""],"Sport":[null,""],"War":[null,""],"Biography":[null,""],"History":[null,""],"Music":[null,""],"Western":[null,""],"News":[null,""],"Sitcom":[null,""],"Reality-TV":[null,""],"Documentary":[null,""],"Game-Show":[null,""],"Musical":[null,""],"Talk-Show":[null,""],"Started Download":[null,""],"Download Finished":[null,""],"Subtitle Download Finished":[null,""],"SickRage Updated":[null,""],"SickRage Updated To Commit#: ":[null,""],"SickRage new login":[null,""],"New login from IP: {0}. http://geomaplookup.net/?ip={0}":[null,""],"Repeat":[null,""],"Repeat (Separated)":[null,""],"Extend":[null,""],"Extend (Limited)":[null,""],"Extend (Limited, E-prefixed)":[null,""],"Downloaded":[null,""],"Snatched":[null,""],"Snatched (Proper)":[null,""],"Failed":[null,""],"Snatched (Best)":[null,""],"Archived":[null,""],"Unknown":[null,""],"Unaired":[null,""],"Skipped":[null,""],"Wanted":[null,""],"Ignored":[null,""],"Subtitled":[null,""],"<No Filter>":[null,""],"Daily Searcher":[null,""],"Backlog":[null,""],"Show Updater":[null,""],"Check Version":[null,""],"Show Queue":[null,""],"Search Queue (All)":[null,""],"Search Queue (Daily Searcher)":[null,""],"Search Queue (Backlog)":[null,""],"Search Queue (Manual)":[null,""],"Search Queue (Retry/Failed)":[null,""],"Search Queue (RSS)":[null,""],"Find Propers":[null,""],"Postprocessor":[null,""],"Find Subtitles":[null,""],"Trakt Checker":[null,""],"Event":[null,""],"Error":[null,""],"Tornado":[null,""],"Thread":[null,""],"Main":[null,""],"Loading":[null,""],"New update found for SickRage, starting auto-updater":[null,""],"Update was successful":[null,""],"Update failed!":[null,""],"Backup":[null,""],"Config backup in progress...":[null,""],"Config backup successful, updating...":[null,""],"Config backup failed, aborting update":[null,""],"No update needed":[null,""],"Mako Error":[null,""],"Oops":[null,""],"Wrong API key used":[null,""],"Login":[null,""],"API Key not generated":[null,""],"API Builder":[null,""],"Schedule":[null,""],"Test 1":[null,""],"This is test number 1":[null,""],"Test 2":[null,""],"This is test number 2":[null,""],"You're using the {branch} branch. Please use 'master' unless specifically asked":[null,""],"Invalid show parameters":[null,""],"Invalid parameters":[null,""],"Episode couldn't be retrieved":[null,""],"Home":[null,""],"Show List":[null,""],"Error: Unsupported Request. Send jsonp request with 'callback' variable in the query string.":[null,""],"Success. Connected and authenticated":[null,""],"Authentication failed. SABnzbd expects":[null,""],"as authentication method":[null,""],"Unable to connect to host":[null,""],"SMS sent successfully":[null,""],"Problem sending SMS: {message}":[null,""],"Telegram notification succeeded. Check your Telegram clients to make sure it worked":[null,""],"Error sending Telegram notification: {message}":[null,""],"join notification succeeded. Check your join clients to make sure it worked":[null,""],"Error sending join notification: {message}":[null,""]," with password":[null,""],"Registered and Tested growl successfully {growl_host}":[null,""],"Registration and Testing of growl failed {growl_host}":[null,""],"Test prowl notice sent successfully":[null,""],"Test prowl notice failed":[null,""],"Boxcar2 notification succeeded. Check your Boxcar2 clients to make sure it worked":[null,""],"Error sending Boxcar2 notification":[null,""],"Pushover notification succeeded. Check your Pushover clients to make sure it worked":[null,""],"Error sending Pushover notification":[null,""],"Key verification successful":[null,""],"Unable to verify key":[null,""],"Tweet successful, check your twitter to make sure it worked":[null,""],"Error sending tweet":[null,""],"Please enter a valid account sid":[null,""],"Please enter a valid auth token":[null,""],"Please enter a valid phone sid":[null,""],"Please format the phone number as \"+1-###-###-####\"":[null,""],"Authorization successful and number ownership verified":[null,""],"Error sending sms":[null,""],"Slack message successful":[null,""],"Slack message failed":[null,""],"Discord message successful":[null,""],"Discord message failed":[null,""],"Test KODI notice sent successfully to {kodi_host}":[null,""],"Test KODI notice failed to {kodi_host}":[null,""],"Successful test notice sent to Plex Home Theater ... {plex_clients}":[null,""],"Test failed for Plex Home Theater ... {plex_clients}":[null,""],"Tested Plex Home Theater(s)":[null,""],"Successful test of Plex Media Server(s) ... {plex_servers}":[null,""],"Test failed, No Plex Media Server host specified":[null,""],"Test failed for Plex Media Server(s) ... {plex_servers}":[null,""],"Tested Plex Media Server host(s)":[null,""],"Tried sending desktop notification via libnotify":[null,""],"Test notice sent successfully to {emby_host}":[null,""],"Test notice failed to {emby_host}":[null,""],"Successfully started the scan update":[null,""],"Test failed to start the scan update":[null,""],"Test notice sent successfully to {nmj2_host}":[null,""],"Test notice failed to {nmj2_host}":[null,""],"Trakt Authorized":[null,""],"Trakt Not Authorized!":[null,""],"Test email sent successfully! Check inbox.":[null,""],"ERROR: {last_error}":[null,""],"Test NMA notice sent successfully":[null,""],"Test NMA notice failed":[null,""],"Pushalot notification succeeded. Check your Pushalot clients to make sure it worked":[null,""],"Error sending Pushalot notification":[null,""],"Pushbullet notification succeeded. Check your device to make sure it worked":[null,""],"Error sending Pushbullet notification":[null,""],"Status":[null,""],"Restarting SickRage":[null,""],"Update Failed":[null,""],"Update wasn't successful, not restarting. Check your log for more information.":[null,""],"Checking out branch":[null,""],"Already on branch":[null,""],"Invalid show ID: {show}":[null,""],"Show not in show list":[null,""],"Edit":[null,""],"This show is in the process of being downloaded - the info below is incomplete.":[null,""],"The information on this page is in the process of being updated.":[null,""],"The episodes below are currently being refreshed from disk":[null,""],"Currently downloading subtitles for this show":[null,""],"This show is queued to be refreshed.":[null,""],"This show is queued and awaiting an update.":[null,""],"This show is queued and awaiting subtitles download.":[null,""],"Resume":[null,""],"Pause":[null,""],"Remove":[null,""],"Re-scan files":[null,""],"Force Full Update":[null,""],"Update show in KODI":[null,""],"Update show in Emby":[null,""],"Hide specials":[null,""],"Show specials":[null,""],"Preview Rename":[null,""],"Download Subtitles":[null,""],"No scene exceptions":[null,""],"Invalid show ID":[null,""],"Unable to find the specified show":[null,""],"Unable to retreive Fansub Groups from AniDB.":[null,""],"Edit Show":[null,""],"Unable to refresh this show: {error}":[null,""],"New location <tt>{location}</tt> does not exist":[null,""],"Unable to update show: {error}":[null,""],"Unable to force an update on scene exceptions of the show.":[null,""],"Unable to force an update on scene numbering of the show.":[null,""],"{num_errors:d} error{plural} while saving changes:":[null,""],"{show_name} has been {paused_resumed}":[null,""],"resumed":[null,""],"paused":[null,""],"{show_name} has been {deleted_trashed} {was_deleted}":[null,""],"deleted":[null,""],"trashed":[null,""],"(media untouched)":[null,""],"(with all related media)":[null,""],"Unable to refresh this show.":[null,""],"Unable to update this show.":[null,""],"Library update command sent to KODI host(s)): {kodi_hosts}":[null,""],"Unable to contact one or more KODI host(s)): {kodi_hosts}":[null,""],"Library update command sent to Plex Media Server host: {plex_server}":[null,""],"Unable to contact Plex Media Server host: {plex_server}":[null,""],"Library update command sent to Emby host: {emby_host}":[null,""],"Unable to contact Emby host: {emby_host}":[null,""],"You must specify a show and at least one episode":[null,""],"Invalid status":[null,""],"Backlog was automatically started for the following seasons of <b>{show_name}</b>":[null,""],"Season":[null,""],"Backlog started":[null,""],"Retrying Search was automatically started for the following season of <b>{show_name}</b>":[null,""],"Retry Search started":[null,""],"You must specify a show":[null,""],"Can't rename episodes when the show dir is missing.":[null,""],"New subtitles downloaded: {new_subtitle_languages}":[null,""],"No subtitles downloaded":[null,""],"IRC":[null,""],"Could not load news from the repo. [Click here for news.md])({news_url})":[null,""],"The was a problem connecting to github, please refresh and try again":[null,""],"Could not load changes from the repo. [Click here for CHANGES.md]({changes_url})":[null,""],"Changelog":[null,""],"Post Processing":[null,""],"Add Shows":[null,""],"No folders selected.":[null,""],"New Show":[null,""],"Trending Shows":[null,""],"Popular Shows":[null,""],"Most Anticipated Shows":[null,""],"Most Collected Shows":[null,""],"Most Watched Shows":[null,""],"Most Played Shows":[null,""],"Recommended Shows":[null,""],"New Shows":[null,""],"Season Premieres":[null,""],"Existing Show":[null,""],"No root directories setup, please go back and add one.":[null,""],"Show added":[null,""],"Adding the specified show {show_name}":[null,""],"Missing params, no Indexer ID or folder: {show_to_add} and {root_dir}/{show_path}":[null,""],"Unknown error. Unable to add show due to problem with show selection.":[null,""],"Unable to add show":[null,""],"Folder {show_dir} exists already":[null,""],"Unable to create the folder {show_dir}, can't add the show":[null,""],"Adding the specified show into {show_dir}":[null,""],"Shows Added":[null,""],"Automatically added {num_shows} from their existing metadata files":[null,""],"Mass Update":[null,""],"Episode Overview":[null,""],"Missing Subtitles":[null,""],"Backlog Overview":[null,""],"Mass Edit":[null,""],"Unable to update show: {excption_format}":[null,""],"Unable to refresh show {show_name}: {excption_format}":[null,""],"Errors encountered":[null,""],"Updates":[null,""],"Refreshes":[null,""],"Renames":[null,""],"Subtitles":[null,""],"The following actions were queued":[null,""],"For best results please set the Download Station alias as":[null,""],"You can check this setting in the Synology DSM":[null,""],"Control Panel":[null,""],"Application Portal":[null,""],"Make sure you allow DSM to be embedded with iFrames too in":[null,""],"DSM Settings":[null,""],"Security":[null,""],"Manage Torrents":[null,""],"Failed Downloads":[null,""],"Manage Searches":[null,""],"Backlog search started":[null,""],"Daily search started":[null,""],"Find propers search started":[null,""],"Subtitle search started":[null,""],"Remove Selected":[null,""],"Clear History":[null,""],"Trim History":[null,""],"Selected history entries removed":[null,""],"History cleared":[null,""],"Removed history entries older than 30 days":[null,""],"General":[null,""],"Backup/Restore":[null,""],"Search Settings":[null,""],"Search Providers":[null,""],"Subtitles Settings":[null,""],"Notifications":[null,""],"Anime":[null,""],"SickRage Configuration":[null,""],"Config - Shares":[null,""],"Windows Shares Configuration":[null,""],"Saved Shares":[null,""],"Your Windows share settings have been saved":[null,""],"Config - General":[null,""],"General Configuration":[null,""],"Saved Defaults":[null,""],"Your \"add show\" defaults have been set to your current selections.":[null,""],"Unable to create directory {directory}, log directory not changed.":[null,""],"Unable to create directory {directory}, https cert directory not changed.":[null,""],"Unable to create directory {directory}, https key directory not changed.":[null,""],"Error(s) Saving Configuration":[null,""],"Configuration Saved":[null,""],"Config - Backup/Restore":[null,""],"Config - Episode Search":[null,""],"Config - Post Processing":[null,""],"Unpacking Not Supported, disabling unpack setting":[null,""],"You tried saving an invalid normal naming config, not saving your naming settings":[null,""],"You tried saving an invalid anime naming config, not saving your naming settings":[null,""],"Config - Providers":[null,""],"No Provider Name specified":[null,""],"No Provider Url specified":[null,""],"No Provider Api key specified":[null,""],"Config - Notifications":[null,""],"Config - Subtitles":[null,""],"Config - Anime":[null,""],"Clear Errors":[null,""],"Clear Warnings":[null,""],"Submit Errors":[null,""],"Logs & Errors":[null,""],"Log File":[null,""],"Logs":[null,""],"This is a test notification from SickRage":[null,""],"Please fill out the necessary fields above.":[null,""],"This pattern is invalid.":[null,""],"This pattern would be invalid without the folders, using it will force \"Season Folders\" on for all shows.":[null,""],"This pattern is valid.":[null,""],"Resume updating the log on this page.":[null,""],"Pause updating the log on this page.":[null,""],"You have reached this page by accident, please check the url.":[null,""],"A mako error has occured.<br>\n If this happened during an update a simple page refresh may be the solution.<br>\n Mako errors that happen during updates may be a one time error if there were significant ui changes.":[null,""],"Show/Hide Error":[null,""],"Add New Show":[null,""],"For shows that you haven't downloaded yet, this option finds a show on theTVDB.com, creates a directory for it's episodes, and adds it to SickRage.":[null,""],"Add From Trakt Lists":[null,""],"For shows that you haven't downloaded yet, this option lets you choose from a show from one of the Trakt lists to add to SickRage.":[null,""],"Add From IMDB's Popular Shows":[null,""],"View IMDB's list of the most popular shows. This feature uses IMDB's MOVIEMeter algorithm to identify popular TV Series.":[null,""],"Add Existing Shows":[null,""],"Use this option to add shows that already have a folder created on your hard drive. SickRage will scan your existing metadata/episodes and add the show accordingly.":[null,""],"Add Existing Show":[null,""],"Manage Directories":[null,""],"Customize Options":[null,""],"SickRage can add existing shows, using the current options, by using locally stored NFO/XML metadata to eliminate user interaction. If you would rather have SickRage prompt you to customize each show, then use the checkbox below.":[null,""],"Prompt me to set settings for each show":[null,""],"Displaying folders within these directories which aren't already added to SickRage":[null,""],"Submit":[null,""],"Find a show on theTVDB":[null,""],"Show retrieved from existing metadata":[null,""],"All Indexers":[null,""],"Search":[null,""],"This will only affect the language of the retrieved metadata file contents and episode filenames.":[null,""],"This <b>DOES NOT</b> allow SickRage to download non-english TV episodes!":[null,""],"Pick the parent folder":[null,""],"Pre-chosen Destination Folder":[null,""],"Customize options":[null,""],"Add Show":[null,""],"Skip Show":[null,""],"Sort By":[null,""],"Name":[null,""],"Original":[null,""],"Votes":[null,""],"Rating":[null,""],"Rating > Votes":[null,""],"Sort Order":[null,""],"Asc":[null,""],"Desc":[null,""],"Fetching of IMDB Data failed. Are you online?":[null,""],"Exception":[null,""],"Select Trakt List":[null,""],"Most Anticipated":[null,""],"Trending":[null,""],"Popular":[null,""],"Most Watched":[null,""],"Most Played":[null,""],"Most Collected":[null,""],"Recommended":[null,""],"Toggle navigation":[null,""],"Profile":[null,""],"JSONP":[null,""],"Back to SickRage":[null,""],"Parameters":[null,""],"Required":[null,""],"Description":[null,""],"Type":[null,""],"Default value":[null,""],"Allowed values":[null,""],"Playground":[null,""],"Clear":[null,""],"Yes":[null,""],"No":[null,""],"season":[null,""],"episode":[null,""],"Python Version":[null,""],"SSL Version":[null,""],"OS":[null,""],"Locale":[null,""],"User":[null,""],"Program Folder":[null,""],"Config File":[null,""],"Database File":[null,""],"Cache Folder":[null,""],"Log Folder":[null,""],"Arguments":[null,""],"Web Root":[null,""],"Website":[null,""],"Wiki":[null,""],"Source":[null,""],"IRC Chat":[null,""],"AnimeDB Settings":[null,""],"Look & Feel":[null,""],"AniDB is non-profit database of anime information that is freely open to the public":[null,""],"Enable":[null,""],"should SickRage use data from AniDB?":[null,""],"AniDB Username":[null,""],"username of your AniDB account":[null,""],"AniDB Password":[null,""],"password of your AniDB account":[null,""],"AniDB MyList":[null,""],"do you want to add the PostProcessed episodes to the MyList?":[null,""],"Look and Feel":[null,""],"How should the anime functions show and behave.":[null,""],"Split show lists":[null,""],"separate anime and normal shows in groups":[null,""],"Split in tabs":[null,""],"use tabs for when splitting show lists":[null,""],"Restore":[null,""],"Backup your main database file and config.":[null,""],"Select the folder you wish to save your backup file to":[null,""],"Restore your main database file and config.":[null,""],"Select the backup file you wish to restore":[null,""],"Misc":[null,""],"Interface":[null,""],"Advanced Settings":[null,""],"Startup options. Indexer options. Log and show file locations.":[null,""],"Some options may require a manual restart to take effect.":[null,""],"Default Indexer Language":[null,""],"for adding shows and metadata providers":[null,""],"Launch browser":[null,""],"open the SickRage home page on startup":[null,""],"Initial page":[null,""],"Shows":[null,""],"when launching SickRage interface":[null,""],"Choose hour to update shows":[null,""],"with information such as next air dates, show ended, etc. Use 15 for 3pm, 4 for 4am etc.":[null,""],"note":[null,""],"minutes are randomized each time SickRage is started":[null,""],"Send to trash for actions":[null,""],"when using show \"Remove\" and delete files":[null,""],"on scheduled deletes of the oldest log files":[null,""],"selected actions use trash (recycle bin) instead of the default permanent delete":[null,""],"Log file folder location":[null,""],"Number of Log files saved":[null,""],"number of log files saved when rotating logs (default: 5) (REQUIRES RESTART)":[null,""],"Size of Log files saved":[null,""],"maximum size in MB of the log file (default: 1MB) (REQUIRES RESTART)":[null,""],"Use initial indexer set to":[null,""],"as the default selection when adding new shows":[null,""],"Timeout show indexer at":[null,""],"seconds of inactivity when finding new shows (default:20)":[null,""],"Show root directories":[null,""],"where the files of shows are located":[null,""],"Save Changes":[null,""],"Options for software updates.":[null,""],"Check software updates":[null,""],"and display notifications when updates are available. Checks are run on startup and at the frequency set below*":[null,""],"Automatically update":[null,""],"fetch and install software updates. Updates are run on startup and in the background at the frequency set below*":[null,""],"Check the server every*":[null,""],"hours for software updates (default:1)":[null,""],"Notify on software update":[null,""],"send a message to all enabled notifiers when SickRage has been updated":[null,""],"User Interface":[null,""],"Options for visual appearance.":[null,""],"Interface Language":[null,""],"System Language":[null,""],"for appearance to take effect, save then refresh your browser":[null,""],"Display theme":[null,""],"Dark":[null,""],"Light":[null,""],"Use a background image":[null,""],"use a custom image as background for SickRage":[null,""],"Background Path":[null,""],"Path to the background image":[null,""],"Show fanart in the background":[null,""],"on the show summary page":[null,""],"Fanart transparency":[null,""],"transparency of the fanart in the background":[null,""],"Use a custom stylesheet file":[null,""],"use a custom .css file to style SickRage (for advanced users)":[null,""],"Stylesheet File Path":[null,""],"Path to the stylesheet (.css) file":[null,""],"Show all seasons":[null,""],"Sort with \"The\", \"A\", \"An\"":[null,""],"include articles (\"The\", \"A\", \"An\") when sorting show lists":[null,""],"Missed episodes range":[null,""],"set the range in days of the missed episodes in the Schedule page":[null,""],"Display fuzzy dates":[null,""],"move absolute dates into tooltips and display e.g. \"Last Thu\", \"On Tue\"":[null,""],"Trim zero padding":[null,""],"remove the leading number \"0\" shown on hour of day, and date of month":[null,""],"Date style":[null,""],"Use System Default":[null,""],"Time style":[null,""],"seconds are only shown on the History page":[null,""],"Timezone":[null,""],"Local":[null,""],"Network":[null,""],"display dates and times in either your timezone or the shows network timezone":[null,""],"use local timezone to start searching for episodes minutes after show ends (depends on your dailysearch frequency)":[null,""],"Download url":[null,""],"URL where the shows can be downloaded.":[null,""],"Web Interface":[null,""],"it is recommended that you enable a username and password to secure SickRage from being tampered with remotely.":[null,""],"these options require a manual restart to take effect.":[null,""],"API key":[null,""],"used to give 3rd party programs limited access to SickRage":[null,""],"you can try all the features of the API":[null,""],"here":[null,""],"HTTP logs":[null,""],"enable logs from the internal Tornado web server":[null,""],"HTTP username":[null,""],"set blank for no login":[null,""],"HTTP password":[null,""],"blank = no authentication":[null,""],"HTTP port":[null,""],"web port to browse and access SickRage (default:8081)":[null,""],"Notify on login":[null,""],"enable to be notified when a new login happens in webserver":[null,""],"Listen on IPv6":[null,""],"attempt binding to any available IPv6 address":[null,""],"Enable HTTPS":[null,""],"enable access to the web interface using a HTTPS address":[null,""],"HTTPS certificate":[null,""],"file name or path to HTTPS certificate":[null,""],"HTTPS key":[null,""],"file name or path to HTTPS key":[null,""],"Reverse proxy headers":[null,""],"accept the following reverse proxy headers (advanced)...":[null,""],"(X-Forwarded-For, X-Forwarded-Host, and X-Forwarded-Proto)":[null,""],"CPU throttling":[null,""],"Normal (default). High is lower and Low is higher CPU use":[null,""],"Anonymous redirect":[null,""],"backlink protection via anonymizer service, must end in \"?\"":[null,""],"Enable debug":[null,""],"enable debug logs":[null,""],"Verify SSL Certs":[null,""],"verify SSL Certificates (Disable this for broken SSL installs (Like QNAP))":[null,""],"No Restart":[null,""],"only shutdown when restarting SR":[null,""],"only select this when you have external software restarting SR automatically when it stops (like FireDaemon)":[null,""],"Encrypt passwords":[null,""],"in the <code>config.ini</code> file":[null,""],"warning":[null,""],"passwords must only contain":[null,""],"ASCII characters":[null,""],"Unprotected calendar":[null,""],"allow subscribing to the calendar without user and password":[null,""],"some services like Google Calendar only work this way":[null,""],"Google Calendar Icons":[null,""],"show an icon next to exported calendar events in Google Calendar":[null,""],"Proxy host":[null,""],"blank to disable or proxy to use when connecting to providers":[null,""],"also use global proxy setting for indexers (tvdb, xem, anidb, etc.)":[null,""],"Skip Remove Detection":[null,""],"skip detection of removed files":[null,""],"if disabled the episode will be set to the default deleted status":[null,""],"Default deleted episode status":[null,""],"define the status to be set for media file that has been deleted.":[null,""],"Archived option will keep previous downloaded quality":[null,""],"example: Downloaded (1080p WEB-DL) ==> Archived (1080p WEB-DL)":[null,""],"Options for github related features.":[null,""],"Branch version":[null,""],"error: No branches found.":[null,""],"select branch to use (restart required)":[null,""],"Authorization Type":[null,""],"Username and password":[null,""],"Personal access token":[null,""],"You must use a personal access token if you're using \"two-factor authentication\" on GitHub.":[null,""],"GitHub username":[null,""],"*** (REQUIRED FOR SUBMITTING ISSUES) ***":[null,""],"GitHub password":[null,""],"GitHub personal access token":[null,""],"Generate Token":[null,""],"Manage Tokens":[null,""],"GitHub remote for branch":[null,""],"access repo configured remotes (save then refresh browser)":[null,""],"default":[null,""],"origin":[null,""],"Git executable path":[null,""],"only needed if OS is unable to locate git from env":[null,""],"Git reset":[null,""],"removes untracked files and performs a hard reset on git branch automatically to help resolve update issues":[null,""],"Home Theater / NAS":[null,""],"Devices":[null,""],"Social":[null,""],"A free and open source cross-platform media center and home entertainment system software with a 10-foot user interface designed for the living-room TV.":[null,""],"send KODI commands?":[null,""],"Always on":[null,""],"log errors when unreachable?":[null,""],"Notify on snatch":[null,""],"send a notification when a download starts?":[null,""],"Notify on download":[null,""],"send a notification when a download finishes?":[null,""],"Notify on subtitle download":[null,""],"send a notification when subtitles are downloaded?":[null,""],"Update library":[null,""],"update KODI library when a download finishes?":[null,""],"Full library update":[null,""],"perform a full library update if update per-show fails?":[null,""],"Only update first host":[null,""],"only send library updates to the first active host?":[null,""],"KODI IP:Port":[null,""],"host running KODI (eg. 192.168.1.100:8080)":[null,""],"(multiple host strings must be separated by commas)":[null,""],"Username":[null,""],"username for your KODI server (blank for none)":[null,""],"Password":[null,""],"password for your KODI server (blank for none)":[null,""],"Click below to test.":[null,""],"Experience your media on a visually stunning, easy to use interface on your Mac connected to your TV. Your media library has never looked this good!":[null,""],"For sending notifications to Plex Home Theater (PHT) clients, use the KODI notifier with port <b>3005</b>.":[null,""],"send Plex Media Server library updates?":[null,""],"Plex Media Server Auth Token":[null,""],"auth token used by Plex":[null,""],"Update Library":[null,""],"update Plex Media Server library when a download finishes":[null,""],"Plex Media Server IP:Port":[null,""],"one or more hosts running Plex Media Server<br/>(eg. 192.168.1.1:32400, 192.168.1.2:32400)":[null,""],"HTTPS":[null,""],"use https for plex media server requests?":[null,""],"Click below to test Plex Media Server(s)":[null,""],"Test Plex Media Server":[null,""],"Plex Home Theater":[null,""],"send Plex Home Theater notifications?":[null,""],"Plex Home Theater IP:Port":[null,""],"one or more hosts running Plex Home Theater<br>(eg. 192.168.1.100:3000, 192.168.1.101:3000)":[null,""],"Click below to test Plex Home Theater(s)":[null,""],"Test Plex Home Theater":[null,""],"some Plex Home Theaters <b class=\"boldest\">do not</b> support notifications e.g. Plexapp for Samsung TVs":[null,""],"Emby":[null,""],"A home media server built using other popular open source technologies.":[null,""],"send update commands to Emby?":[null,""],"Emby IP:Port":[null,""],"host running Emby (eg. 192.168.1.100:8096)":[null,""],"Emby API Key":[null,""],"Networked Media Jukebox":[null,""],"The Networked Media Jukebox, or NMJ, is the official media jukebox interface made available for the Popcorn Hour 200-series.":[null,""],"send update commands to NMJ?":[null,""],"Popcorn IP address":[null,""],"IP address of Popcorn 200-series (eg. 192.168.1.100)":[null,""],"Get settings":[null,""],"Get Settings":[null,""],"the Popcorn Hour device must be powered on and NMJ running.":[null,""],"NMJ database":[null,""],"automatically filled via the 'Get Settings' button.":[null,""],"NMJ mount url":[null,""],"Networked Media Jukebox v2":[null,""],"The Networked Media Jukebox, or NMJv2, is the official media jukebox interface made available for the Popcorn Hour 300 & 400-series.":[null,""],"send update commands to NMJv2?":[null,""],"IP address of Popcorn 300/400-series (eg. 192.168.1.100)":[null,""],"Database location":[null,""],"Database instance":[null,""],"adjust this value if the wrong database is selected.":[null,""],"Find database":[null,""],"Find Database":[null,""],"the Popcorn Hour device must be powered on.":[null,""],"NMJv2 database":[null,""],"automatically filled via the 'Find Database' buttons.":[null,""],"Synology":[null,""],"The Synology DiskStation NAS.":[null,""],"Synology Indexer is the daemon running on the Synology NAS to build its media database.":[null,""],"send Synology notifications?":[null,""],"requires SickRage to be running on your Synology NAS.":[null,""],"Synology Indexer":[null,""],"Synology Notifier is the notification system of Synology DSM":[null,""],"send notifications to the Synology Notifier?":[null,""],"pyTivo":[null,""],"pyTivo is both an HMO and GoBack server. This notifier will load the completed downloads to your Tivo.":[null,""],"send notifications to pyTivo?":[null,""],"requires the downloaded files to be accessible by pyTivo.":[null,""],"pyTivo IP:Port":[null,""],"host running pyTivo (eg. 192.168.1.1:9032)":[null,""],"pyTivo share name":[null,""],"value used in pyTivo Web Configuration to name the share.":[null,""],"Tivo name":[null,""],"(Messages & Settings > Account & System Information > System Information > DVR name)":[null,""],"Growl":[null,""],"A cross-platform unobtrusive global notification system.":[null,""],"send Growl notifications?":[null,""],"Growl IP:Port":[null,""],"host running Growl (eg. 192.168.1.100:23053)":[null,""],"may leave blank if SickRage is on the same host.":[null,""],"otherwise Growl <b>requires</b> a password to be used.":[null,""],"Click below to register and test Growl, this is required for Growl notifications to work.":[null,""],"Register Growl":[null,""],"Prowl":[null,""],"A Growl client for iOS.":[null,""],"send Prowl notifications?":[null,""],"Prowl Message Title":[null,""],"Global Prowl API key(s)":[null,""],"Prowl API(s) listed here, separated by commas if applicable, will<br> receive notifications for <b>all</b> shows. Your Prowl API key is available at:":[null,""],"(this field may be blank except when testing.)":[null,""],"Show notification list":[null,""],"-- Select a Show --":[null,""],"Configure per-show notifications here by entering Prowl API key(s), separated by commas, '\n 'after selecting a show in the drop-down box. Be sure to activate the 'Save for this show' '\n 'button below after each entry.":[null,""],"Save for this show":[null,""],"Prowl priority":[null,""],"Very Low":[null,""],"Moderate":[null,""],"Normal":[null,""],"High":[null,""],"Emergency":[null,""],"priority of Prowl messages from SickRage.":[null,""],"Libnotify":[null,""],"The standard desktop notification API for Linux/*nix systems. This notifier will only function if the pynotify module is installed (Ubuntu/Debian package <a href=\"apt:python-notify\">python-notify</a>).":[null,""],"send Libnotify notifications?":[null,""],"Pushover":[null,""],"Pushover makes it easy to send real-time notifications to your Android and iOS devices.":[null,""],"send Pushover notifications?":[null,""],"Pushover key":[null,""],"user key of your Pushover account":[null,""],"Pushover API key":[null,""],"click here":[null,""]," to create a Pushover API key":[null,""],"Pushover devices":[null,""],"comma separated list of pushover devices you want to send notifications to":[null,""],"Pushover notification sound":[null,""],"Bike":[null,""],"Bugle":[null,""],"Cash Register":[null,""],"Classical":[null,""],"Cosmic":[null,""],"Falling":[null,""],"Gamelan":[null,""],"Incoming":[null,""],"Intermission":[null,""],"Magic":[null,""],"Mechanical":[null,""],"Piano Bar":[null,""],"Siren":[null,""],"Space Alarm":[null,""],"Tug Boat":[null,""],"Alien Alarm (long)":[null,""],"Climb (long)":[null,""],"Persistent (long)":[null,""],"Pushover Echo (long)":[null,""],"Up Down (long)":[null,""],"None (silent)":[null,""],"Device specific":[null,""],"choose notification sound to use":[null,""],"Pushover priority":[null,""],"Choose priority to use":[null,""],"Boxcar 2":[null,""],"Read your messages where and when you want them!":[null,""],"send Boxcar notifications?":[null,""],"Boxcar2 access token":[null,""],"access token for your Boxcar account.":[null,""],"NMA":[null,""],"Notify My Android":[null,""],"Notify My Android is a Prowl-like Android App and API that offers an easy way to send notifications from your application directly to your Android device.":[null,""],"send NMA notifications?":[null,""],"NMA API key":[null,""],"(multiple keys must be separated by commas, up to a maximum of 5)":[null,""],"NMA priority":[null,""],"priority of NMA messages from SickRage.":[null,""],"Pushalot":[null,""],"Pushalot is a platform for receiving custom push notifications to connected devices running Windows Phone or Windows 8.":[null,""],"send Pushalot notifications ?":[null,""],"Pushalot authorization token":[null,""],"authorization token of your Pushalot account.":[null,""],"Pushbullet":[null,""],"Pushbullet is a platform for receiving custom push notifications to connected devices running Android/iOS and desktop browsers such as Chrome, Firefox or Opera.":[null,""],"send Pushbullet notifications?":[null,""],"Pushbullet API key":[null,""],"API key of your Pushbullet account":[null,""],"Pushbullet devices":[null,""],"Update device list":[null,""],"Pushbullet channels":[null,""],"Free Mobile":[null,""],"Free Mobile is a famous French cellular network provider.<br> It provides to their customer a free SMS API.":[null,""],"send SMS notifications?":[null,""],"send a SMS when a download starts?":[null,""],"send a SMS when a download finishes?":[null,""],"send a SMS when subtitles are downloaded?":[null,""],"Free Mobile customer ID":[null,""],"it's your Free Mobile customer ID (8 digits)":[null,""],"Free Mobile API key":[null,""],"find your API key in your customer portal.":[null,""],"Click below to test your settings.":[null,""],"Telegram":[null,""],"Telegram is a cloud-based instant messaging service.":[null,""],"send Telegram notifications?":[null,""],"send a message when a download starts?":[null,""],"send a message when a download finishes?":[null,""],"send a message when subtitles are downloaded?":[null,""],"User/group ID":[null,""],"contact @myidbot on Telegram to get an ID":[null,""],"Bot API token":[null,""],"contact @BotFather on Telegram to set up one":[null,""],"Join":[null,""],"Join all of your devices together!":[null,""],"send Join notifications?":[null,""],"Device ID":[null,""],"per device specific id":[null,""]," to create a Join API key":[null,""],"Twilio":[null,""],"Twilio is a webservice API that allows you to communicate directly with a mobile number. This notifier will send a text directly to your mobile device.":[null,""],"should SickRage text your mobile device?":[null,""],"Twilio Account SID":[null,""],"account SID of your Twilio account.":[null,""],"Twilio Auth Token":[null,""],"Twilio Phone SID":[null,""],"phone SID that you would like to send the sms from":[null,""],"Your phone number":[null,""],"phone number that will receive the sms. Please use the format +1-###-###-####":[null,""],"Twitter":[null,""],"A social networking and microblogging service, enabling its users to send and read other users' messages called tweets.":[null,""],"should SickRage post tweets on Twitter?":[null,""],"you may want to use a secondary account.":[null,""],"send direct message":[null,""],"send a notification via Direct Message, not via status update":[null,""],"send DM to":[null,""],"Twitter account to send Direct Messages to (must follow you)":[null,""],"Step One":[null,""],"Request Authorization":[null,""],"Click the \"Request Authorization\" button.<br> This will open a new page containing an auth key.<br> <b>note:</b> if nothing happens check your popup blocker.":[null,""],"Step Two":[null,""],"Enter the key Twitter gave you below, and click \"Verify Key\".":[null,""],"Trakt":[null,""],"Trakt helps keep a record of what TV shows and movies you are watching. Based on your favorites, Trakt recommends additional shows and movies you'll enjoy!":[null,""],"send Trakt.tv notifications?":[null,""],"username of your Trakt account.":[null,""],"Trakt PIN":[null,""],"Get Trakt PIN":[null,""],"PIN code to authorize SickRage to access Trakt on your behalf.":[null,""],"API Timeout":[null,""],"seconds to wait for Trakt API to respond. (Use 0 to wait forever)":[null,""],"Default indexer":[null,""],"Sync libraries":[null,""],"sync your SickRage show library with your trakt show library.":[null,""],"Remove Episodes From Collection":[null,""],"remove an episode from your Trakt Collection if it is not in your SickRage Library.":[null,""],"Sync watchlist":[null,""],"sync your SickRage show watchlist with your trakt show watchlist (either Show and Episode).":[null,""],"episode will be added on watch list when wanted or snatched and will be removed when downloaded ":[null,""],"Watchlist add method":[null,""],"Skip All":[null,""],"Download Pilot Only":[null,""],"Get whole show":[null,""],"method in which to download episodes for new shows.":[null,""],"Remove episode":[null,""],"remove an episode from your watchlist after it is downloaded.":[null,""],"Remove series":[null,""],"remove the whole series from your watchlist after any download.":[null,""],"Remove watched show":[null,""],"remove the show from sickrage if it's ended and completely watched":[null,""],"Start paused":[null,""],"shows grabbed from your trakt watchlist start paused.":[null,""],"Trakt blackList name":[null,""],"name (slug) of list on Trakt for blacklisting show on 'Add Trending Show' & 'Add Recommended Shows' pages":[null,""],"Email":[null,""],"Allows configuration of email notifications on a per show basis.":[null,""],"send email notifications?":[null,""],"SMTP host":[null,""],"hostname of your SMTP email server.":[null,""],"SMTP port":[null,""],"port number used to connect to your SMTP host.":[null,""],"SMTP from":[null,""],"sender email address, some hosts require a real address.":[null,""],"Use TLS":[null,""],"check to use TLS encryption.":[null,""],"SMTP user":[null,""],"(optional) your SMTP server username.":[null,""],"SMTP password":[null,""],"(optional) your SMTP server password.":[null,""],"Global email list":[null,""],"email addresses listed here, separated by commas if applicable, will<br> receive notifications for <b>all</b> shows.":[null,""],"(This field may be blank except when testing.)":[null,""],"Email Subject":[null,""],"use a custom subject for some privacy protection?":[null,""],"(leave blank for the default SickRage subject)":[null,""],"configure per-show notifications here by entering email address(es), separated by commas,":[null,""],"after selecting a show in the drop-down box. Be sure to activate the 'Save for this show'":[null,""],"button below after each entry.":[null,""],"Slack":[null,""],"Slack brings all your communication together in one place. It's real-time messaging, archiving and search for modern teams.":[null,""],"should SickRage post messages on Slack?":[null,""],"Slack Incoming Webhook":[null,""],"Discord":[null,""],"All-in-one voice and text chat for gamers that's free, secure, and works on both your desktop and phone.":[null,""],"Should SickRage post messages on Discord?":[null,""],"Discord Incoming Webhook":[null,""],"Create webhook under channel settings.":[null,""],"Discord Bot Name":[null,""],"Blank will use webhook default Name.":[null,""],"Discord Avatar URL":[null,""],"Blank will use webhook default Avatar.":[null,""],"Discord TTS":[null,""],"Send notifications using text-to-speech":[null,""],"Post-Processing":[null,""],"Episode Naming":[null,""],"Metadata":[null,""],"Settings that dictate how SickRage should process completed downloads.":[null,""],"enable the automatic post processor to scan and process any files in your Post Processing Dir":[null,""],"do not use if you use an external Post Processing script":[null,""],"Post Processing Dir":[null,""],"the folder where your download client puts the completed TV downloads.":[null,""],"please use seperate downloading and completed folders in your download client if possible.":[null,""],"Processing Method":[null,""],"what method should be used to put files into the library?":[null,""],"if you keep seeding torrents after they finish, please avoid the 'move' processing method to prevent errors.":[null,""],"Auto Post-Processing Frequency":[null,""],"time in minutes to check for new files to auto post-process (min 10)":[null,""],"Postpone post processing":[null,""],"wait to process a folder if sync files are present.":[null,""],"Sync File Extensions":[null,""],"comma seperated list of extensions or filename globs SickRage ignores when Post Processing":[null,""],"Rename Episodes":[null,""],"rename episode using the Episode Naming settings?":[null,""],"Create missing show directories":[null,""],"create missing show directories when they get deleted":[null,""],"Add shows without directory":[null,""],"add shows without creating a directory (not recommended)":[null,""],"Move associated files":[null,""],"move associated (srt/srr/sfv/etc) files while post processing?":[null,""],"Rename .nfo file":[null,""],"rename the original .nfo file to .nfo-orig to avoid conflicts?":[null,""],"Associated file extensions":[null,""],"comma separated list of associated file extensions SickRage should keep while post processing.":[null,""],"leaving it empty means no associated files will be post processed":[null,""],"Delete non associated files":[null,""],"delete non associated files while post processing?":[null,""],"Change File Date":[null,""],"set last modified filedate to the date that the episode aired?":[null,""],"some systems may ignore this feature.":[null,""],"Timezone for File Date":[null,""],"local":[null,""],"network":[null,""],"what timezone should be used to change File Date?":[null,""],"Unpack":[null,""],"What to do with archived releases found in your <i>TV Download Dir</i>?":[null,""],"Ignore (do not process contents)":[null,""],"Unpack (process contents)":[null,""],"Treat as video (process archive as-is)":[null,""],"'Unpack' only works with RAR archives":[null,""],"Windows":[null,""],"WinRar is required on windows":[null,""],"Unpack Directory":[null,""],"Choose a path to unpack files, leave blank to unpack in download dir":[null,""],"Unrar Location":[null,""],"add the path to unrar if it is not in the system path":[null,""],"Alternate Unrar Tool":[null,""],"add the path to an alternate unrar tool if it is not in the system path":[null,""],"Delete RAR contents":[null,""],"delete content of RAR files, even if Process Method not set to move?":[null,""],"only working with RAR archive":[null,""],"Don't delete empty folders":[null,""],"leave empty folders when Post Processing?":[null,""],"can be overridden using manual Post Processing":[null,""],"Follow symbolic-links":[null,""],"follow down symbolic links in download directory?":[null,""],"<b>EXPERTS ONLY.</b><br>Enable only if you know what <b>circular symbolic links</b> are,<br>and can <b>verify that you have none</b>.":[null,""],"Use icacls":[null,""],"Windows only":[null,""],"sets video permissions after using the move method in post processing":[null,""],"Extra Scripts":[null,""],"see":[null,""],"for script arguments description and usage.":[null,""],"How SickRage will name and sort your episodes.":[null,""],"Name Pattern":[null,""],"Toggle Naming Legend":[null,""],"don't forget to add quality pattern. Otherwise after post-processing the episode will have UNKNOWN quality":[null,""],"Meaning":[null,""],"Pattern":[null,""],"Result":[null,""],"Use lower case if you want lower case names (eg. %sn, %e.n, %q_n etc)":[null,""],"Show Name":[null,""],"Show.Name":[null,""],"Show_Name":[null,""],"Season Number":[null,""],"XEM Season Number":[null,""],"Episode Number":[null,""],"XEM Episode Number":[null,""],"Episode Name":[null,""],"Episode.Name":[null,""],"Episode_Name":[null,""],"Air Date":[null,""],"Post-Processing Date":[null,""],"Quality":[null,""],"Scene Quality":[null,""],"Release Name":[null,""],"SickRage' is used in place of RLSGROUP if it could not be properly detected":[null,""],"Release Group":[null,""],"If episode is proper/repack add 'proper' to name.":[null,""],"Release Type":[null,""],"Multi-Episode Style":[null,""],"Single-EP Sample":[null,""],"Multi-EP sample":[null,""],"Strip Show Year":[null,""],"remove the TV show's year when renaming the file?":[null,""],"only applies to shows that have year inside parentheses":[null,""],"Custom Air-By-Date":[null,""],"name air-by-date shows differently than regular shows?":[null,""],"Toggle ABD Naming Legend":[null,""],"Regular Air Date":[null,""],"Year":[null,""],"Month":[null,""],"Day":[null,""],"Multi-EP style is ignored":[null,""],"Custom Sports":[null,""],"name sports shows differently than regular shows?":[null,""],"Toggle Sports Naming Legend":[null,""],"Sports Air Date":[null,""],"Custom Anime":[null,""],"name anime shows differently than regular shows?":[null,""],"Toggle Anime Naming Legend":[null,""],">XEM Season Number":[null,""],"Single-EP Anime Sample":[null,""],"Multi-EP Anime sample":[null,""],"Add Absolute Number":[null,""],"add the absolute number to the season/episode format?":[null,""],"only applies to anime. (eg. S15E45 - 310 vs S15E45)":[null,""],"Only Absolute Number":[null,""],"replace season/episode format with absolute number":[null,""],"only applies to anime.":[null,""],"No Absolute Number":[null,""],"don't include the absolute number":[null,""],"The data associated to the data. These are files associated to a TV show in the form of images and text that, when supported, will enhance the viewing experience.":[null,""],"Metadata Type":[null,""],"toggle metadata options that you wish to be created":[null,""],"multiple targets may be used":[null,""],"Select Metadata":[null,""],"Provider Priorities":[null,""],"Provider Options":[null,""],"Configure Custom Newznab Providers":[null,""],"Configure Custom Torrent Providers":[null,""],"Check off and drag the providers into the order you want them to be used.":[null,""],"At least one provider is required but two are recommended.":[null,""],"Torrent providers can be toggled in ":[null,""],"Provider does not support backlog searches at this time.":[null,""],"Provider is <b>NOT WORKING</b>.":[null,""],"Configure individual provider settings here.":[null,""],"Check with provider's website on how to obtain an API key if needed.":[null,""],"Configure provider":[null,""],"no providers available to configure.":[null,""],"URL":[null,""],"Enable daily searches":[null,""],"enable provider to perform daily searches.":[null,""],"Enable backlog searches":[null,""],"enable provider to perform backlog searches.":[null,""],"Season search mode":[null,""],"when searching for complete seasons you can choose to have it look for season packs only, or choose to have it build a complete season from just single episodes.":[null,""],"season packs only.":[null,""],"episodes only.":[null,""],"Enable fallback":[null,""],"when searching for a complete season depending on search mode you may return no results, this helps by restarting the search using the opposite search mode.":[null,""],"Custom URL":[null,""],"the URL should include the protocol (and port if applicable). Examples: http://192.168.1.4/ or http://localhost:3000/":[null,""],"Api key":[null,""],"Digest":[null,""],"Hash":[null,""],"Passkey":[null,""],"Cookies":[null,""],"example: uid=1234;pass=567845439634987<br>note: uid and pass are not your username/password.<br>use DevTools or Firebug to get these values after logging in on your browser.":[null,""],"Pin":[null,""],"Seed ratio":[null,""],"stop transfer when ratio is reached<br>(-1 SickRage default to seed forever, or leave blank for downloader default)":[null,""],"Minimum seeders":[null,""],"Minimum leechers":[null,""],"Confirmed download":[null,""],"only download torrents from trusted or verified uploaders ?":[null,""],"Ranked torrents":[null,""],"only download ranked torrents (trusted releases)":[null,""],"English torrents":[null,""],"only download english torrents, or torrents containing english subtitles":[null,""],"For Spanish torrents":[null,""],"ONLY search on this provider if show info is defined as \"Spanish\" (avoid provider's use for VOS shows)":[null,""],"Sorting results by":[null,""],"Freeleech":[null,""],"only download <b>\"FreeLeech\"</b> torrents.":[null,""],"Category":[null,""],"select torrent with Italian subtitle":[null,""],"Configure Custom<br>Newznab Providers":[null,""],"Add and setup or remove custom Newznab providers.":[null,""],"Select provider":[null,""],"-- add new provider --":[null,""],"Provider name":[null,""],"Site URL":[null,""],"Newznab search categories":[null,""],"select your Newznab categories on the left, and click the \"update categories\" button to use them for searching.) <b>don't forget to to save the form!":[null,""],"Update Categories":[null,""],"Add":[null,""],"Delete":[null,""],"Add and setup or remove custom RSS providers.":[null,""],"RSS URL":[null,""],"Search element":[null,""],"eg: title":[null,""],"Episode Search":[null,""],"NZB Search":[null,""],"Torrent Search":[null,""],"How to manage searching with":[null,""],"Randomize Providers":[null,""],"randomize the provider search order instead of going in order of placement":[null,""],"Download propers":[null,""],"replace original download with \"Proper\" or \"Repack\" if nuked":[null,""],"Check propers every":[null,""],"24 hours":[null,""],"4 hours":[null,""],"90 mins":[null,""],"45 mins":[null,""],"15 mins":[null,""],"Backlog search day(s)":[null,""],"number of day(s) that the \"Forced Backlog Search\" will cover (e.g. 7 Days)":[null,""],"Backlog search frequency":[null,""],"time in minutes between searches (min.":[null,""],"Daily search frequency":[null,""],"Usenet retention":[null,""],"age limit in days for usenet articles to be used (e.g. 500)":[null,""],"Ignore words":[null,""],"results with one or more word from this list will be ignored<br>separate words with a comma, e.g. \"word1,word2,word3\"":[null,""],"Require words":[null,""],"results with no word from this list will be ignored<br>separate words with a comma, e.g. \"word1,word2,word3\"":[null,""],"Trackers list":[null,""],"trackers that will be added to magnets without trackers<br>separate trackers with a comma, e.g. \"tracker1,tracker2,tracker3\"":[null,""],"Ignore language names in subbed results":[null,""],"ignore subbed releases based on language names <br>\n Example: \"dk\" will ignore words: dksub, dksubs, dksubbed, dksubed <br>\n separate languages with a comma, e.g. \"lang1,lang2,lang3":[null,""],"Allow high priority":[null,""],"set downloads of recently aired episodes to high priority":[null,""],"Use Failed Downloads":[null,""],"use Failed Download Handling?":[null,""],"will only work with snatched/downloaded episodes after enabling this":[null,""],"Delete Failed":[null,""],"delete files left over from a failed download?":[null,""],"this only works if Use Failed Downloads is enabled.":[null,""],"How to handle NZB search results.":[null,""],"Search NZBs":[null,""],"enable NZB search providers":[null,""],"Send .nzb files to":[null,""],"SABnzbd server URL":[null,""],"URL to your SABnzbd server (e.g. http://localhost:8080/)":[null,""],"SABnzbd username":[null,""],"(blank for none)":[null,""],"SABnzbd password":[null,""],"SABnzbd API key":[null,""],"locate at... SABnzbd Config -> General -> API Key":[null,""],"Use SABnzbd category":[null,""],"add downloads to this category (e.g. TV)":[null,""],"Use SABnzbd category (backlog episodes)":[null,""],"add downloads of old episodes to this category (e.g. TV)":[null,""],"Use SABnzbd category for anime":[null,""],"add anime downloads to this category (e.g. anime)":[null,""],"Use SABnzbd category for anime (backlog episodes)":[null,""],"add anime downloads of old episodes to this category (e.g. anime)":[null,""],"Use forced priority":[null,""],"enable to change priority from HIGH to FORCED":[null,""],"Black hole folder location":[null,""],"<b>.nzb</b> files are stored at this location for external software to find and use":[null,""],"Connect using HTTPS":[null,""],"enable Secure control in NZBGet and set the correct Secure Port here":[null,""],"NZBget host:port":[null,""],"(e.g. localhost:6789)":[null,""],"NZBget RPC host name and port number (not NZBgetweb!)":[null,""],"NZBget username":[null,""],"locate in nzbget.conf (default:nzbget)":[null,""],"NZBget password":[null,""],"locate in nzbget.conf (default:tegbzn6789)":[null,""],"Use NZBget category":[null,""],"send downloads marked this category (e.g. TV)":[null,""],"Use NZBget category (backlog episodes)":[null,""],"send downloads of old episodes marked this category (e.g. TV)":[null,""],"Use NZBget category for anime":[null,""],"send anime downloads marked this category (e.g. anime)":[null,""],"Use NZBget category for anime (backlog episodes)":[null,""],"send anime downloads of old episodes marked this category (e.g. anime)":[null,""],"NZBget priority":[null,""],"Very low":[null,""],"Low":[null,""],"Very high":[null,""],"Force":[null,""],"priority for daily snatches (no backlog)":[null,""],"Torrent host:port":[null,""],"URL to your Synology DSM (e.g. http://localhost:5000/)":[null,""],"Client username":[null,""],"Client password":[null,""],"Downloaded files location":[null,""],"where Synology Download Station will save downloaded files (blank for client default)":[null,""],"the destination has to be a shared folder for Synology DS":[null,""],"Click below to test":[null,""],"How to handle Torrent search results.":[null,""],"Search torrents":[null,""],"enable torrent search providers":[null,""],"Send .torrent files to":[null,""],"<b>.torrent</b> files are stored at this location for external software to find and use":[null,""],"URL to your torrent client (e.g. http://localhost:8000/)":[null,""],"Torrent RPC URL":[null,""],"the path without leading and trailing slashes (e.g. transmission)":[null,""],"Http Authentication":[null,""],"Verify certificate":[null,""],"disable if you get \"Deluge: Authentication Error\" in your log":[null,""],"verify SSL certificates for HTTPS requests":[null,""],"Add label to torrent":[null,""],"(blank spaces are not allowed)":[null,""],"label plugin must be enabled in Deluge clients":[null,""],"for QBitTorrent 3.3.1 and up":[null,""],"Add label to torrent for anime":[null,""],"for QBitTorrent 3.3.1 and up ":[null,""],"where <span id=\"torrent_client\">the torrent client</span> will save downloaded files (blank for client default)":[null,""],"the destination has to be a shared folder for Synology DS</span>":[null,""],"Minimum seeding time":[null,""],"time in hours":[null,""],"(default:'0' passes blank to client and '-1' passes nothing)":[null,""],"Start torrent paused":[null,""],"add .torrent to client but do <b style=\"font-weight:900\">not</b> start downloading":[null,""],"Allow high bandwidth":[null,""],"use high bandwidth allocation if priority is high":[null,""],"Test Connection":[null,""],"Windows Shares":[null,""],"Defines your existing windows shares so that we can add them to the browse dialog":[null,""],"Share #{number}":[null,""],"Share label":[null,""],"Hostname or IP":[null,""],"Share path":[null,""],"Subtitles Search":[null,""],"Subtitles Plugin":[null,""],"Plugin Settings":[null,""],"Settings that dictate how SickRage handles subtitles search results.":[null,""],"Search Subtitles":[null,""],"Subtitle Languages":[null,""],"Subtitle Directory":[null,""],"the directory where SickRage should store your <i>Subtitles</i> files.":[null,""],"leave empty if you want store subtitle in episode path.":[null,""],"Subtitle Find Frequency":[null,""],"time in hours between scans (default: 1)":[null,""],"Include Specials":[null,""],"include the show's specials when searching for subtitles?":[null,""],"Perfect matches":[null,""],"only download subtitles that match: release group, video codec, audio codec and resolution":[null,""],"if disabled you may get out of sync subtitles":[null,""],"Subtitles History":[null,""],"log downloaded Subtitle on History page?":[null,""],"Subtitles Multi-Language":[null,""],"append language codes to subtitle filenames?":[null,""],"this option is required if you use multiple subtitle languages":[null,""],"Delete unwanted subtitles":[null,""],"enable to delete unwanted subtitle languages bundled with release":[null,""],"Embedded Subtitles":[null,""],"ignore subtitles embedded inside video file?":[null,""],"this will ignore <u>all</u> embedded subtitles for every video file!":[null,""],"Hearing Impaired Subtitles":[null,""],"download hearing impaired style subtitles?":[null,""],"See":[null,""],"for a script arguments description.":[null,""],"Additional scripts separated by <b>|</b>.":[null,""],"Scripts are called after each episode has searched and downloaded subtitles.":[null,""],"For any scripted languages, include the interpreter executable before the script. See the following example":[null,""],"For Windows:":[null,""],"For Linux / OS X:":[null,""],"Subtitle Providers":[null,""],"Check off and drag the plugins into the order you want them to be used.":[null,""],"At least one plugin is required.":[null,""]," Web-scraping plugin":[null,""],"Provider Settings":[null,""],"Set user and password for each provider":[null,""],"User Name":[null,""],"Change Show":[null,""],"Prev Show":[null,""],"Next Show":[null,""],"Jump to Season":[null,""],"Specials":[null,""],"Poster for":[null,""],"Stars":[null,""],"minutes":[null,""],"View other popular {genre} shows on trakt.tv.":[null,""],"View other popular {imdbgenre} shows on IMDB.":[null,""],"Allowed":[null,""],"Preferred":[null,""],"Originally Airs":[null,""],"Show Status":[null,""],"Default EP Status":[null,""],"Location":[null,""],"Missing":[null,""],"Scene Name":[null,""],"Required Words":[null,""],"Ignored Words":[null,""],"Size":[null,""],"Info Language":[null,""],"Subtitles SR Metadata":[null,""],"Season Folders":[null,""],"Paused":[null,""],"Air-by-Date":[null,""],"Sports":[null,""],"DVD Order":[null,""],"Scene Numbering":[null,""],"Select Filtered Episodes":[null,""],"Clear All":[null,""],"Change selected episodes to":[null,""],"Select Columns":[null,""],"Hide Episodes":[null,""],"Show Episodes":[null,""],"NFO":[null,""],"TBN":[null,""],"Episode":[null,""],"Absolute":[null,""],"Scene":[null,""],"Scene Absolute":[null,""],"File Name":[null,""],"Airdate":[null,""],"Download":[null,""],"Change the value here if scene numbering differs from the indexer episode numbering":[null,""],"Change the value here if scene absolute numbering differs from the indexer absolute numbering":[null,""],"Manual Search":[null,""],"Do you want to mark this episode as failed?":[null,""],"The episode release name will be added to the failed history, preventing it to be downloaded again.":[null,""],"Do you want to include the current episode quality in the search?":[null,""],"Choosing No will ignore any releases with the same episode quality as the one currently downloaded/snatched.":[null,""],"Download subtitle":[null,""],"Do you want to re-download the subtitle for this language?":[null,""],"It will overwrite your current subtitle":[null,""],"Format":[null,""],"Advanced":[null,""],"Main Settings":[null,""],"Show Location":[null,""],"Preferred Quality":[null,""],"Default Episode Status":[null,""],"this will set the status for future episodes.":[null,""],"this only applies to episode filenames and the contents of metadata files.":[null,""],"search for subtitles":[null,""],"Use SR Metdata":[null,""],"use SickRage metadata when searching for subtitle, this will override the autodiscovered metadata":[null,""],"pause this show (SickRage will not download episodes)":[null,""],"Format Settings":[null,""],"Air by date":[null,""],"check if the show is released as Show.03.02.2010 rather than Show.S02E03.":[null,""],"in case of an air date conflict between regular and special episodes, the later will be ignored.":[null,""],"check if the show is Anime and episodes are released as Show.265 rather than Show.S02E03":[null,""],"check if the show is a sporting or MMA event released as Show.03.02.2010 rather than Show.S02E03":[null,""],"Season folders":[null,""],"group episodes by season folder (uncheck to store in a single folder)":[null,""],"search by scene numbering (uncheck to search by indexer numbering)":[null,""],"use the DVD order instead of the air order":[null,""],"a \"Force Full Update\" is necessary, and if you have existing episodes you need to sort them manually.":[null,""],"comma-separated <i>e.g. \"word1,word2,word3</i>\"":[null,""],"search results with one or more words from this list will be ignored.":[null,""],"e.g. \"word1,word2,word3\"":[null,""],"search results with no words from this list will be ignored.":[null,""],"Scene Exception":[null,""],"this will affect episode search on NZB and torrent providers.":[null,""],"this list appends to the original show name.":[null,""],"WARNING logs":[null,""],"ERROR logs":[null,""],"There are no events to display.":[null,""],"Limit":[null,""],"Layout":[null,""],"HistoryLayout":[null,""],"Compact":[null,""],"Detailed":[null,""],"Time":[null,""],"Provider":[null,""],"Missing Provider":[null,""],"missing provider":[null,""],"Directory":[null,""],"Show Name (tvshow.nfo)":[null,""],"Indexer":[null,""],"Enter the folder containing the episode":[null,""],"Process Method to be used":[null,""],"Copy":[null,""],"Move":[null,""],"Hard Link":[null,""],"Symbolic Link":[null,""],"Symbolic Link Reversed":[null,""],"Force already Post Processed Dir/Files":[null,""],"Mark Dir/Files as priority download":[null,""],"(Check it to replace the file even if it exists at higher quality)":[null,""],"Delete files and folders":[null,""],"(Check it to delete files and folders like auto processing)":[null,""],"Don't use processing queue":[null,""],"(If checked this will return the result of the process here, but may be slow!)":[null,""],"Mark download as failed":[null,""],"Process":[null,""],"Download subtitles for this show?":[null,""],"use SickRage metadata when searching for subtitle, <br />this will override the autodiscovered metadata":[null,""],"Status for previously aired episodes":[null,""],"Status for all future episodes":[null,""],"Group episodes by season folder?":[null,""],"Is this show an Anime?":[null,""],"Is this show scene numbered?":[null,""],"Save Defaults":[null,""],"Use current values as the defaults":[null,""],"<p>Select your preferred fansub groups from the <b>Available Groups</b> and add them to the <b>Whitelist</b>. Add groups to the <b>Blacklist</b> to ignore them.</p>\n <p>The <b>Whitelist</b> is checked <i>before</i> the <b>Blacklist</b>.</p>\n <p>Groups are shown as <b>Name</b> | <b>Rating</b> | <b>Number of subbed episodes</b>.</p>\n <p>You may also add any fansub group not listed to either list manually.</p>\n <p>When doing this please note that you can only use groups listed on anidb for this anime.\n <br>If a group is not listed on anidb but subbed this anime, please correct anidb's data.</p>":[null,""],"Whitelist":[null,""],"Available Groups":[null,""],"Add to Whitelist":[null,""],"Add to Blacklist":[null,""],"Blacklist":[null,""],"Custom Group":[null,""],"Allowed Quality:":[null,""],"Preferred Quality:":[null,""],"Filter Show Name":[null,""],"Root":[null,""],"All":[null,""],"Clear Filter(s)":[null,""],"Poster":[null,""],"Small Poster":[null,""],"Banner":[null,""],"Simple":[null,""],"Next Episode":[null,""],"Progress":[null,""],"Direction":[null,""],"Ascending":[null,""],"Descending":[null,""],"Poster Size":[null,""],"Continuing":[null,""],"Ended":[null,""],"Total":[null,""],"Invalid date":[null,""],"No Network":[null,""],"Next Ep":[null,""],"Prev Ep":[null,""],"Show":[null,""],"Downloads":[null,""],"Active":[null,""],"loading":[null,""],"Loading...":[null,""],"<p><b><u>Preferred</u></b> qualities will replace those in <b><u>allowed</u></b>, even if they are lower.</p>":[null,""],"New":[null,""],"Set as Default":[null,""],"Remember me":[null,""],"Edit Selected":[null,""],"Subtitle":[null,""],"Default Ep Status":[null,""],"Update":[null,""],"Rescan":[null,""],"Rename":[null,""],"Search Subtitle":[null,""],"Force Metadata Regen":[null,""],"Snatched (Allowed)":[null,""],"Jump to Show":[null,""],"Force Backlog":[null,""],"Manage episodes with status":[null,""],"Manage":[null,""],"None of your episodes have status":[null,""],"Shows containing":[null,""],"episodes":[null,""],"Set checked shows/episodes to":[null,""],"Go":[null,""],"Select all":[null,""],"Clear all":[null,""],"Release":[null,""],"Backlog Search":[null,""],"Not in progress":[null,""],"In Progress":[null,""],"Daily Search":[null,""],"Find Propers Search":[null,""],"Propers search disabled":[null,""],"Subtitle Search":[null,""],"Subtitle search disabled":[null,""],"Search Queue":[null,""],"pending items":[null,""],"Daily":[null,""],"Manual":[null,""],"Changing any settings marked with (<span class=\"separator\">*</span>) will force a refresh of the selected shows.":[null,""],"Selected Shows":[null,""],"Root Directories":[null,""],"Current":[null,""],"Keep":[null,""],"Custom":[null,""],"Group episodes by season folder (set to \"No\" to store in a single folder).":[null,""],"Pause these shows (SickRage will not download episodes).":[null,""],"This will set the status for future episodes.":[null,""],"Search by scene numbering (set to \"No\" to search by indexer numbering).":[null,""],"Set if these shows are Anime and episodes are released as Show.265 rather than Show.S02E03":[null,""],"Set if these shows are sporting or MMA events released as Show.03.02.2010 rather than Show.S02E03.":[null,""],"In case of an air date conflict between regular and special episodes, the later will be ignored.":[null,""],"Set if these shows are released as Show.03.02.2010 rather than Show.S02E03.":[null,""],"Search for subtitles.":[null,""],"All of your episodes have {subsLanguage} subtitles.":[null,""],"Manage episodes without":[null,""],"Episodes without {subsLanguage} subtitles.":[null,""],"Episodes without {subtitleLanguage} (undefined) subtitles.":[null,""],"Download missed subtitles for selected episodes":[null,""],"Performing Restart":[null,""],"Waiting for SickRage to shut down":[null,""],"Waiting for SickRage to start again":[null,""],"Loading the default page":[null,""],"Error: The restart has timed out, perhaps something prevented SickRage from starting again?":[null,""],"Key":[null,""],"Missed":[null,""],"Today":[null,""],"Soon":[null,""],"Later":[null,""],"Subscribe":[null,""],"Date":[null,""],"View Paused":[null,""],"Hidden":[null,""],"Shown":[null,""],"Calendar":[null,""],"List":[null,""],"Ends":[null,""],"Next Ep Name":[null,""],"Run time":[null,""],"Indexers":[null,""],"No shows for this day":[null,""],"Airs":[null,""],"Plot":[null,""],"Show Update":[null,""],"Version Check":[null,""],"Proper Finder":[null,""],"Post Process":[null,""],"Subtitles Finder":[null,""],"Scheduler":[null,""],"Alive":[null,""],"Start Time":[null,""],"Cycle Time":[null,""],"Next Run":[null,""],"Last Run":[null,""],"Silent":[null,""],"True":[null,""],"N/A":[null,""],"Show id":[null,""],"Show name":[null,""],"Priority":[null,""],"Added":[null,""],"Queue type":[null,""],"LOW":[null,""],"NORMAL":[null,""],"HIGH":[null,""],"Disk Space":[null,""],"Free space":[null,""],"TV Download Directory":[null,""],"Media Root Directories":[null,""],"Preview of the proposed name changes":[null,""],"All Seasons":[null,""],"select all":[null,""],"Rename Selected":[null,""],"Cancel Rename":[null,""],"Old Location":[null,""],"New Location":[null,""],"Trakt API did not return any results, please check your config.":[null,""],"votes":[null,""],"Remove Show":[null,""],"Level":[null,""],"Filter":[null,""],"All non-absolute folder locations are relative to ":[null,""],"Manual Post-Processing":[null,""],"Episode Status Management":[null,""],"Update PLEX":[null,""],"Update KODI":[null,""],"Update Emby":[null,""],"Missed Subtitle Management":[null,""],"Help & Info":[null,""],"Backup & Restore":[null,""],"Tools":[null,""],"Support SickRage":[null,""],"View Errors":[null,""],"View Warnings":[null,""],"View Log":[null,""],"Check For Updates":[null,""],"Restart":[null,""],"Shutdown":[null,""],"Logout":[null,""],"Server Status":[null,""],"View overview of snatched episodes":[null,""],"Episodes Downloaded":[null,""],"Memory used":[null,""],"Load time":[null,""],"Branch":[null,""],"Now":[null,""]}}}} \ No newline at end of file +{"messages":{"domain":"messages","locale_data":{"messages":{"100":[null,""],"250":[null,""],"500":[null,""],"":{"domain":"messages","plural_forms":"nplurals=1; plural=0;","lang":"ko_KR"},"Drama":[null,""],"Mystery":[null,""],"Science-Fiction":[null,""],"Crime":[null,""],"Action":[null,""],"Comedy":[null,""],"Thriller":[null,""],"Animation":[null,""],"Family":[null,""],"Fantasy":[null,""],"Adventure":[null,""],"Horror":[null,""],"Film-Noir":[null,""],"Sci-Fi":[null,""],"Romance":[null,""],"Sport":[null,""],"War":[null,""],"Biography":[null,""],"History":[null,""],"Music":[null,""],"Western":[null,""],"News":[null,""],"Sitcom":[null,""],"Reality-TV":[null,""],"Documentary":[null,""],"Game-Show":[null,""],"Musical":[null,""],"Talk-Show":[null,""],"Started Download":[null,""],"Download Finished":[null,""],"Subtitle Download Finished":[null,""],"SickRage Updated":[null,""],"SickRage Updated To Commit#: ":[null,""],"SickRage new login":[null,""],"New login from IP: {0}. http://geomaplookup.net/?ip={0}":[null,""],"Repeat":[null,""],"Repeat (Separated)":[null,""],"Extend":[null,""],"Extend (Limited)":[null,""],"Extend (Limited, E-prefixed)":[null,""],"Downloaded":[null,""],"Snatched":[null,""],"Snatched (Proper)":[null,""],"Failed":[null,""],"Snatched (Best)":[null,""],"Archived":[null,""],"Unknown":[null,""],"Unaired":[null,""],"Skipped":[null,""],"Wanted":[null,""],"Ignored":[null,""],"Subtitled":[null,""],"For best results please set the Download Station alias as":[null,""],"You can check this setting in the Synology DSM":[null,""],"Control Panel":[null,""],"Application Portal":[null,""],"Make sure you allow DSM to be embedded with iFrames too in":[null,""],"DSM Settings":[null,""],"Security":[null,""],"<No Filter>":[null,""],"Daily Searcher":[null,""],"Backlog":[null,""],"Show Updater":[null,""],"Check Version":[null,""],"Show Queue":[null,""],"Search Queue (All)":[null,""],"Search Queue (Daily Searcher)":[null,""],"Search Queue (Backlog)":[null,""],"Search Queue (Manual)":[null,""],"Search Queue (Retry/Failed)":[null,""],"Search Queue (RSS)":[null,""],"Find Propers":[null,""],"Postprocessor":[null,""],"Find Subtitles":[null,""],"Trakt Checker":[null,""],"Event":[null,""],"Error":[null,""],"Tornado":[null,""],"Thread":[null,""],"Main":[null,""],"Loading":[null,""],"New update found for SickRage, starting auto-updater":[null,""],"Update was successful":[null,""],"Update failed!":[null,""],"Backup":[null,""],"Config backup in progress...":[null,""],"Config backup successful, updating...":[null,""],"Config backup failed, aborting update":[null,""],"No update needed":[null,""],"Mako Error":[null,""],"Oops":[null,""],"Wrong API key used":[null,""],"Login":[null,""],"API Key not generated":[null,""],"API Builder":[null,""],"Schedule":[null,""],"Test 1":[null,""],"This is test number 1":[null,""],"Test 2":[null,""],"This is test number 2":[null,""],"You're using the {branch} branch. Please use 'master' unless specifically asked":[null,""],"Invalid show parameters":[null,""],"Invalid parameters":[null,""],"Episode couldn't be retrieved":[null,""],"Home":[null,""],"Show List":[null,""],"Error: Unsupported Request. Send jsonp request with 'callback' variable in the query string.":[null,""],"Success. Connected and authenticated":[null,""],"Authentication failed. SABnzbd expects":[null,""],"as authentication method":[null,""],"Unable to connect to host":[null,""],"SMS sent successfully":[null,""],"Problem sending SMS: {message}":[null,""],"Telegram notification succeeded. Check your Telegram clients to make sure it worked":[null,""],"Error sending Telegram notification: {message}":[null,""],"join notification succeeded. Check your join clients to make sure it worked":[null,""],"Error sending join notification: {message}":[null,""]," with password":[null,""],"Registered and Tested growl successfully {growl_host}":[null,""],"Registration and Testing of growl failed {growl_host}":[null,""],"Test prowl notice sent successfully":[null,""],"Test prowl notice failed":[null,""],"Boxcar2 notification succeeded. Check your Boxcar2 clients to make sure it worked":[null,""],"Error sending Boxcar2 notification":[null,""],"Pushover notification succeeded. Check your Pushover clients to make sure it worked":[null,""],"Error sending Pushover notification":[null,""],"Key verification successful":[null,""],"Unable to verify key":[null,""],"Tweet successful, check your twitter to make sure it worked":[null,""],"Error sending tweet":[null,""],"Please enter a valid account sid":[null,""],"Please enter a valid auth token":[null,""],"Please enter a valid phone sid":[null,""],"Please format the phone number as \"+1-###-###-####\"":[null,""],"Authorization successful and number ownership verified":[null,""],"Error sending sms":[null,""],"Slack message successful":[null,""],"Slack message failed":[null,""],"Discord message successful":[null,""],"Discord message failed":[null,""],"Test KODI notice sent successfully to {kodi_host}":[null,""],"Test KODI notice failed to {kodi_host}":[null,""],"Successful test notice sent to Plex Home Theater ... {plex_clients}":[null,""],"Test failed for Plex Home Theater ... {plex_clients}":[null,""],"Tested Plex Home Theater(s)":[null,""],"Successful test of Plex Media Server(s) ... {plex_servers}":[null,""],"Test failed, No Plex Media Server host specified":[null,""],"Test failed for Plex Media Server(s) ... {plex_servers}":[null,""],"Tested Plex Media Server host(s)":[null,""],"Tried sending desktop notification via libnotify":[null,""],"Test notice sent successfully to {emby_host}":[null,""],"Test notice failed to {emby_host}":[null,""],"Successfully started the scan update":[null,""],"Test failed to start the scan update":[null,""],"Test notice sent successfully to {nmj2_host}":[null,""],"Test notice failed to {nmj2_host}":[null,""],"Trakt Authorized":[null,""],"Trakt Not Authorized!":[null,""],"Test email sent successfully! Check inbox.":[null,""],"ERROR: {last_error}":[null,""],"Test NMA notice sent successfully":[null,""],"Test NMA notice failed":[null,""],"Pushalot notification succeeded. Check your Pushalot clients to make sure it worked":[null,""],"Error sending Pushalot notification":[null,""],"Pushbullet notification succeeded. Check your device to make sure it worked":[null,""],"Error sending Pushbullet notification":[null,""],"Status":[null,""],"Restarting SickRage":[null,""],"Update Failed":[null,""],"Update wasn't successful, not restarting. Check your log for more information.":[null,""],"Checking out branch":[null,""],"Already on branch":[null,""],"Invalid show ID: {show}":[null,""],"Show not in show list":[null,""],"Edit":[null,""],"This show is in the process of being downloaded - the info below is incomplete.":[null,""],"The information on this page is in the process of being updated.":[null,""],"The episodes below are currently being refreshed from disk":[null,""],"Currently downloading subtitles for this show":[null,""],"This show is queued to be refreshed.":[null,""],"This show is queued and awaiting an update.":[null,""],"This show is queued and awaiting subtitles download.":[null,""],"Resume":[null,""],"Pause":[null,""],"Remove":[null,""],"Re-scan files":[null,""],"Force Full Update":[null,""],"Update show in KODI":[null,""],"Update show in Emby":[null,""],"Hide specials":[null,""],"Show specials":[null,""],"Preview Rename":[null,""],"Download Subtitles":[null,""],"No scene exceptions":[null,""],"Invalid show ID":[null,""],"Unable to find the specified show":[null,""],"Unable to retreive Fansub Groups from AniDB.":[null,""],"Edit Show":[null,""],"Unable to refresh this show: {error}":[null,""],"New location <tt>{location}</tt> does not exist":[null,""],"Unable to update show: {error}":[null,""],"Unable to force an update on scene exceptions of the show.":[null,""],"Unable to force an update on scene numbering of the show.":[null,""],"{num_errors:d} error{plural} while saving changes:":[null,""],"{show_name} has been {paused_resumed}":[null,""],"resumed":[null,""],"paused":[null,""],"{show_name} has been {deleted_trashed} {was_deleted}":[null,""],"deleted":[null,""],"trashed":[null,""],"(media untouched)":[null,""],"(with all related media)":[null,""],"Unable to refresh this show.":[null,""],"Unable to update this show.":[null,""],"Library update command sent to KODI host(s)): {kodi_hosts}":[null,""],"Unable to contact one or more KODI host(s)): {kodi_hosts}":[null,""],"Library update command sent to Plex Media Server host: {plex_server}":[null,""],"Unable to contact Plex Media Server host: {plex_server}":[null,""],"Library update command sent to Emby host: {emby_host}":[null,""],"Unable to contact Emby host: {emby_host}":[null,""],"You must specify a show and at least one episode":[null,""],"Invalid status":[null,""],"Backlog was automatically started for the following seasons of <b>{show_name}</b>":[null,""],"Season":[null,""],"Backlog started":[null,""],"Retrying Search was automatically started for the following season of <b>{show_name}</b>":[null,""],"Retry Search started":[null,""],"You must specify a show":[null,""],"Can't rename episodes when the show dir is missing.":[null,""],"New subtitles downloaded: {new_subtitle_languages}":[null,""],"No subtitles downloaded":[null,""],"IRC":[null,""],"Could not load news from the repo. [Click here for news.md])({news_url})":[null,""],"The was a problem connecting to github, please refresh and try again":[null,""],"Could not load changes from the repo. [Click here for CHANGES.md]({changes_url})":[null,""],"Changelog":[null,""],"Post Processing":[null,""],"Add Shows":[null,""],"No folders selected.":[null,""],"New Show":[null,""],"Trending Shows":[null,""],"Popular Shows":[null,""],"Most Anticipated Shows":[null,""],"Most Collected Shows":[null,""],"Most Watched Shows":[null,""],"Most Played Shows":[null,""],"Recommended Shows":[null,""],"New Shows":[null,""],"Season Premieres":[null,""],"Existing Show":[null,""],"No root directories setup, please go back and add one.":[null,""],"Show added":[null,""],"Adding the specified show {show_name}":[null,""],"Missing params, no Indexer ID or folder: {show_to_add} and {root_dir}/{show_path}":[null,""],"Unknown error. Unable to add show due to problem with show selection.":[null,""],"Unable to add show":[null,""],"Folder {show_dir} exists already":[null,""],"Unable to create the folder {show_dir}, can't add the show":[null,""],"Adding the specified show into {show_dir}":[null,""],"Shows Added":[null,""],"Automatically added {num_shows} from their existing metadata files":[null,""],"Mass Update":[null,""],"Episode Overview":[null,""],"Missing Subtitles":[null,""],"Backlog Overview":[null,""],"Mass Edit":[null,""],"Unable to update show: {excption_format}":[null,""],"Unable to refresh show {show_name}: {excption_format}":[null,""],"Errors encountered":[null,""],"Updates":[null,""],"Refreshes":[null,""],"Renames":[null,""],"Subtitles":[null,""],"The following actions were queued":[null,""],"Failed Downloads":[null,""],"Manage Searches":[null,""],"Backlog search started":[null,""],"Daily search started":[null,""],"Find propers search started":[null,""],"Subtitle search started":[null,""],"Remove Selected":[null,""],"Clear History":[null,""],"Trim History":[null,""],"Selected history entries removed":[null,""],"History cleared":[null,""],"Removed history entries older than 30 days":[null,""],"General":[null,""],"Backup/Restore":[null,""],"Search Settings":[null,""],"Search Providers":[null,""],"Subtitles Settings":[null,""],"Notifications":[null,""],"Anime":[null,""],"SickRage Configuration":[null,""],"Config - Shares":[null,""],"Windows Shares Configuration":[null,""],"Saved Shares":[null,""],"Your Windows share settings have been saved":[null,""],"Config - General":[null,""],"General Configuration":[null,""],"Saved Defaults":[null,""],"Your \"add show\" defaults have been set to your current selections.":[null,""],"Unable to create directory {directory}, log directory not changed.":[null,""],"Unable to create directory {directory}, https cert directory not changed.":[null,""],"Unable to create directory {directory}, https key directory not changed.":[null,""],"Error(s) Saving Configuration":[null,""],"Configuration Saved":[null,""],"Config - Backup/Restore":[null,""],"Config - Episode Search":[null,""],"Config - Post Processing":[null,""],"Unpacking Not Supported, disabling unpack setting":[null,""],"You tried saving an invalid normal naming config, not saving your naming settings":[null,""],"You tried saving an invalid anime naming config, not saving your naming settings":[null,""],"Config - Providers":[null,""],"No Provider Name specified":[null,""],"No Provider Url specified":[null,""],"No Provider Api key specified":[null,""],"Config - Notifications":[null,""],"Config - Subtitles":[null,""],"Config - Anime":[null,""],"Clear Errors":[null,""],"Clear Warnings":[null,""],"Submit Errors":[null,""],"Logs & Errors":[null,""],"Log File":[null,""],"Logs":[null,""],"This is a test notification from SickRage":[null,""],"Choose Directory":[null,""],"Select log file folder location":[null,""],"Select CSS file":[null,""],"Select backup folder to save to":[null,""],"Select backup files to restore":[null,""],"Please fill out the necessary fields above.":[null,""],"<b>Step 1:</b> Confirm Authorization":[null,""],"Check blacklist name; the value needs to be a trakt slug":[null,""],"You must provide a recipient email address!":[null,""],"You didn't supply a Pushbullet api key":[null,""],"Don't forget to save your new pushbullet settings.":[null,""],"Select TV Download Directory":[null,""],"Select Unpack Directory":[null,""],"This pattern is invalid.":[null,""],"This pattern would be invalid without the folders, using it will force \"Season Folders\" on for all shows.":[null,""],"This pattern is valid.":[null,""],"Select .nzb black hole/watch location":[null,""],"Select .torrent black hole/watch location":[null,""],"Select .torrent download location":[null,""],"Minimum seeding time is":[null,""],"URL to your uTorrent client (e.g. http://localhost:8000)":[null,""],"Stop seeding when inactive for":[null,""],"URL to your Transmission client (e.g. http://localhost:9091)":[null,""],"URL to your Deluge client (e.g. http://localhost:8112)":[null,""],"IP or Hostname of your Deluge Daemon (e.g. scgi://localhost:58846)":[null,""],"URL to your Synology DS client (e.g. http://localhost:5000)":[null,""],"URL to your rTorrent client (e.g. scgi://localhost:5000 <br> or https://localhost/rutorrent/plugins/httprpc/action.php)":[null,""],"URL to your qBittorrent client (e.g. http://localhost:8080)":[null,""],"URL to your MLDonkey (e.g. http://localhost:4080)":[null,""],"URL to your putio client (e.g. http://localhost:8080)":[null,""],"<a herf=\"https://app.put.io/oauth/apps/new\" target=\"_blank\"> Create a new OAuth app for put.io</a>":[null,""],"Put.io Parent Folder":[null,""],"Put.io OAuth Token":[null,""],"Show Episodes":[null,""],"Hide Episodes":[null,""],"Select Show Location":[null,""],"Select Unprocessed Episode Folder":[null,""],"DELETED":[null,""],"Resume updating the log on this page.":[null,""],"Pause updating the log on this page.":[null,""],"searching {searchingFor}...":[null,""],"search timed out, try again or try another indexer":[null,""],"loading folders...":[null,""],"Loading...":[null,""],"You have reached this page by accident, please check the url.":[null,""],"A mako error has occured.<br>\n If this happened during an update a simple page refresh may be the solution.<br>\n Mako errors that happen during updates may be a one time error if there were significant ui changes.":[null,""],"Show/Hide Error":[null,""],"Add New Show":[null,""],"For shows that you haven't downloaded yet, this option finds a show on theTVDB.com, creates a directory for it's episodes, and adds it to SickRage.":[null,""],"Add From Trakt Lists":[null,""],"For shows that you haven't downloaded yet, this option lets you choose from a show from one of the Trakt lists to add to SickRage.":[null,""],"Add From IMDB's Popular Shows":[null,""],"View IMDB's list of the most popular shows. This feature uses IMDB's MOVIEMeter algorithm to identify popular TV Series.":[null,""],"Add Existing Shows":[null,""],"Use this option to add shows that already have a folder created on your hard drive. SickRage will scan your existing metadata/episodes and add the show accordingly.":[null,""],"Add Existing Show":[null,""],"Manage Directories":[null,""],"Customize Options":[null,""],"SickRage can add existing shows, using the current options, by using locally stored NFO/XML metadata to eliminate user interaction. If you would rather have SickRage prompt you to customize each show, then use the checkbox below.":[null,""],"Prompt me to set settings for each show":[null,""],"Displaying folders within these directories which aren't already added to SickRage":[null,""],"Submit":[null,""],"Find a show on theTVDB":[null,""],"Show retrieved from existing metadata":[null,""],"All Indexers":[null,""],"Search":[null,""],"This will only affect the language of the retrieved metadata file contents and episode filenames.":[null,""],"This <b>DOES NOT</b> allow SickRage to download non-english TV episodes!":[null,""],"Pick the parent folder":[null,""],"Pre-chosen Destination Folder":[null,""],"Customize options":[null,""],"Add Show":[null,""],"Skip Show":[null,""],"Sort By":[null,""],"Name":[null,""],"Original":[null,""],"Votes":[null,""],"Rating":[null,""],"Rating > Votes":[null,""],"Sort Order":[null,""],"Asc":[null,""],"Desc":[null,""],"Fetching of IMDB Data failed. Are you online?":[null,""],"Exception":[null,""],"Select Trakt List":[null,""],"Most Anticipated":[null,""],"Trending":[null,""],"Popular":[null,""],"Most Watched":[null,""],"Most Played":[null,""],"Most Collected":[null,""],"Recommended":[null,""],"Toggle navigation":[null,""],"Profile":[null,""],"JSONP":[null,""],"Back to SickRage":[null,""],"Parameters":[null,""],"Required":[null,""],"Description":[null,""],"Type":[null,""],"Default value":[null,""],"Allowed values":[null,""],"Playground":[null,""],"Clear":[null,""],"Yes":[null,""],"No":[null,""],"season":[null,""],"episode":[null,""],"Python Version":[null,""],"SSL Version":[null,""],"OS":[null,""],"Locale":[null,""],"User":[null,""],"Program Folder":[null,""],"Config File":[null,""],"Database File":[null,""],"Cache Folder":[null,""],"Log Folder":[null,""],"Arguments":[null,""],"Web Root":[null,""],"Website":[null,""],"Wiki":[null,""],"Source":[null,""],"IRC Chat":[null,""],"AnimeDB Settings":[null,""],"Look & Feel":[null,""],"AniDB is non-profit database of anime information that is freely open to the public":[null,""],"Enable":[null,""],"should SickRage use data from AniDB?":[null,""],"AniDB Username":[null,""],"username of your AniDB account":[null,""],"AniDB Password":[null,""],"password of your AniDB account":[null,""],"AniDB MyList":[null,""],"do you want to add the PostProcessed episodes to the MyList?":[null,""],"Look and Feel":[null,""],"How should the anime functions show and behave.":[null,""],"Split show lists":[null,""],"separate anime and normal shows in groups":[null,""],"Split in tabs":[null,""],"use tabs for when splitting show lists":[null,""],"Restore":[null,""],"Backup your main database file and config.":[null,""],"Select the folder you wish to save your backup file to":[null,""],"Restore your main database file and config.":[null,""],"Select the backup file you wish to restore":[null,""],"Misc":[null,""],"Interface":[null,""],"Advanced Settings":[null,""],"Startup options. Indexer options. Log and show file locations.":[null,""],"Some options may require a manual restart to take effect.":[null,""],"Default Indexer Language":[null,""],"for adding shows and metadata providers":[null,""],"Launch browser":[null,""],"open the SickRage home page on startup":[null,""],"Initial page":[null,""],"Shows":[null,""],"when launching SickRage interface":[null,""],"Choose hour to update shows":[null,""],"with information such as next air dates, show ended, etc. Use 15 for 3pm, 4 for 4am etc.":[null,""],"note":[null,""],"minutes are randomized each time SickRage is started":[null,""],"Send to trash for actions":[null,""],"when using show \"Remove\" and delete files":[null,""],"on scheduled deletes of the oldest log files":[null,""],"selected actions use trash (recycle bin) instead of the default permanent delete":[null,""],"Log file folder location":[null,""],"Number of Log files saved":[null,""],"number of log files saved when rotating logs (default: 5) (REQUIRES RESTART)":[null,""],"Size of Log files saved":[null,""],"maximum size in MB of the log file (default: 1MB) (REQUIRES RESTART)":[null,""],"Use initial indexer set to":[null,""],"as the default selection when adding new shows":[null,""],"Timeout show indexer at":[null,""],"seconds of inactivity when finding new shows (default:20)":[null,""],"Show root directories":[null,""],"where the files of shows are located":[null,""],"Save Changes":[null,""],"Options for software updates.":[null,""],"Check software updates":[null,""],"and display notifications when updates are available. Checks are run on startup and at the frequency set below*":[null,""],"Automatically update":[null,""],"fetch and install software updates. Updates are run on startup and in the background at the frequency set below*":[null,""],"Check the server every*":[null,""],"hours for software updates (default:1)":[null,""],"Notify on software update":[null,""],"send a message to all enabled notifiers when SickRage has been updated":[null,""],"User Interface":[null,""],"Options for visual appearance.":[null,""],"Interface Language":[null,""],"System Language":[null,""],"for appearance to take effect, save then refresh your browser":[null,""],"Display theme":[null,""],"Dark":[null,""],"Light":[null,""],"Use a background image":[null,""],"use a custom image as background for SickRage":[null,""],"Background Path":[null,""],"Path to the background image":[null,""],"Show fanart in the background":[null,""],"on the show summary page":[null,""],"Fanart transparency":[null,""],"transparency of the fanart in the background":[null,""],"Use a custom stylesheet file":[null,""],"use a custom .css file to style SickRage (for advanced users)":[null,""],"Stylesheet File Path":[null,""],"Path to the stylesheet (.css) file":[null,""],"Show all seasons":[null,""],"Sort with \"The\", \"A\", \"An\"":[null,""],"include articles (\"The\", \"A\", \"An\") when sorting show lists":[null,""],"Missed episodes range":[null,""],"set the range in days of the missed episodes in the Schedule page":[null,""],"Display fuzzy dates":[null,""],"move absolute dates into tooltips and display e.g. \"Last Thu\", \"On Tue\"":[null,""],"Trim zero padding":[null,""],"remove the leading number \"0\" shown on hour of day, and date of month":[null,""],"Date style":[null,""],"Use System Default":[null,""],"Time style":[null,""],"seconds are only shown on the History page":[null,""],"Timezone":[null,""],"Local":[null,""],"Network":[null,""],"display dates and times in either your timezone or the shows network timezone":[null,""],"use local timezone to start searching for episodes minutes after show ends (depends on your dailysearch frequency)":[null,""],"Download url":[null,""],"URL where the shows can be downloaded.":[null,""],"Web Interface":[null,""],"it is recommended that you enable a username and password to secure SickRage from being tampered with remotely.":[null,""],"these options require a manual restart to take effect.":[null,""],"API key":[null,""],"used to give 3rd party programs limited access to SickRage":[null,""],"you can try all the features of the API":[null,""],"here":[null,""],"HTTP logs":[null,""],"enable logs from the internal Tornado web server":[null,""],"HTTP username":[null,""],"set blank for no login":[null,""],"HTTP password":[null,""],"blank = no authentication":[null,""],"HTTP port":[null,""],"web port to browse and access SickRage (default:8081)":[null,""],"Notify on login":[null,""],"enable to be notified when a new login happens in webserver":[null,""],"Listen on IPv6":[null,""],"attempt binding to any available IPv6 address":[null,""],"Enable HTTPS":[null,""],"enable access to the web interface using a HTTPS address":[null,""],"HTTPS certificate":[null,""],"file name or path to HTTPS certificate":[null,""],"HTTPS key":[null,""],"file name or path to HTTPS key":[null,""],"Reverse proxy headers":[null,""],"accept the following reverse proxy headers (advanced)...":[null,""],"(X-Forwarded-For, X-Forwarded-Host, and X-Forwarded-Proto)":[null,""],"CPU throttling":[null,""],"Normal (default). High is lower and Low is higher CPU use":[null,""],"Anonymous redirect":[null,""],"backlink protection via anonymizer service, must end in \"?\"":[null,""],"Enable debug":[null,""],"enable debug logs":[null,""],"Verify SSL Certs":[null,""],"verify SSL Certificates (Disable this for broken SSL installs (Like QNAP))":[null,""],"No Restart":[null,""],"only shutdown when restarting SR":[null,""],"only select this when you have external software restarting SR automatically when it stops (like FireDaemon)":[null,""],"Encrypt passwords":[null,""],"in the <code>config.ini</code> file":[null,""],"warning":[null,""],"passwords must only contain":[null,""],"ASCII characters":[null,""],"Unprotected calendar":[null,""],"allow subscribing to the calendar without user and password":[null,""],"some services like Google Calendar only work this way":[null,""],"Google Calendar Icons":[null,""],"show an icon next to exported calendar events in Google Calendar":[null,""],"Proxy host":[null,""],"blank to disable or proxy to use when connecting to providers":[null,""],"also use global proxy setting for indexers (tvdb, xem, anidb, etc.)":[null,""],"Skip Remove Detection":[null,""],"skip detection of removed files":[null,""],"if disabled the episode will be set to the default deleted status":[null,""],"Default deleted episode status":[null,""],"define the status to be set for media file that has been deleted.":[null,""],"Archived option will keep previous downloaded quality":[null,""],"example: Downloaded (1080p WEB-DL) ==> Archived (1080p WEB-DL)":[null,""],"Options for github related features.":[null,""],"Branch version":[null,""],"error: No branches found.":[null,""],"select branch to use (restart required)":[null,""],"Authorization Type":[null,""],"Username and password":[null,""],"Personal access token":[null,""],"You must use a personal access token if you're using \"two-factor authentication\" on GitHub.":[null,""],"GitHub username":[null,""],"*** (REQUIRED FOR SUBMITTING ISSUES) ***":[null,""],"GitHub password":[null,""],"GitHub personal access token":[null,""],"Generate Token":[null,""],"Manage Tokens":[null,""],"GitHub remote for branch":[null,""],"access repo configured remotes (save then refresh browser)":[null,""],"default":[null,""],"origin":[null,""],"Git executable path":[null,""],"only needed if OS is unable to locate git from env":[null,""],"Git reset":[null,""],"removes untracked files and performs a hard reset on git branch automatically to help resolve update issues":[null,""],"Home Theater / NAS":[null,""],"Devices":[null,""],"Social":[null,""],"A free and open source cross-platform media center and home entertainment system software with a 10-foot user interface designed for the living-room TV.":[null,""],"send KODI commands?":[null,""],"Always on":[null,""],"log errors when unreachable?":[null,""],"Notify on snatch":[null,""],"send a notification when a download starts?":[null,""],"Notify on download":[null,""],"send a notification when a download finishes?":[null,""],"Notify on subtitle download":[null,""],"send a notification when subtitles are downloaded?":[null,""],"Update library":[null,""],"update KODI library when a download finishes?":[null,""],"Full library update":[null,""],"perform a full library update if update per-show fails?":[null,""],"Only update first host":[null,""],"only send library updates to the first active host?":[null,""],"KODI IP:Port":[null,""],"host running KODI (eg. 192.168.1.100:8080)":[null,""],"(multiple host strings must be separated by commas)":[null,""],"Username":[null,""],"username for your KODI server (blank for none)":[null,""],"Password":[null,""],"password for your KODI server (blank for none)":[null,""],"Click below to test.":[null,""],"Experience your media on a visually stunning, easy to use interface on your Mac connected to your TV. Your media library has never looked this good!":[null,""],"For sending notifications to Plex Home Theater (PHT) clients, use the KODI notifier with port <b>3005</b>.":[null,""],"send Plex Media Server library updates?":[null,""],"Plex Media Server Auth Token":[null,""],"auth token used by Plex":[null,""],"Update Library":[null,""],"update Plex Media Server library when a download finishes":[null,""],"Plex Media Server IP:Port":[null,""],"one or more hosts running Plex Media Server<br/>(eg. 192.168.1.1:32400, 192.168.1.2:32400)":[null,""],"HTTPS":[null,""],"use https for plex media server requests?":[null,""],"Click below to test Plex Media Server(s)":[null,""],"Test Plex Media Server":[null,""],"Plex Home Theater":[null,""],"send Plex Home Theater notifications?":[null,""],"Plex Home Theater IP:Port":[null,""],"one or more hosts running Plex Home Theater<br>(eg. 192.168.1.100:3000, 192.168.1.101:3000)":[null,""],"Click below to test Plex Home Theater(s)":[null,""],"Test Plex Home Theater":[null,""],"some Plex Home Theaters <b class=\"boldest\">do not</b> support notifications e.g. Plexapp for Samsung TVs":[null,""],"Emby":[null,""],"A home media server built using other popular open source technologies.":[null,""],"send update commands to Emby?":[null,""],"Emby IP:Port":[null,""],"host running Emby (eg. 192.168.1.100:8096)":[null,""],"Emby API Key":[null,""],"Networked Media Jukebox":[null,""],"The Networked Media Jukebox, or NMJ, is the official media jukebox interface made available for the Popcorn Hour 200-series.":[null,""],"send update commands to NMJ?":[null,""],"Popcorn IP address":[null,""],"IP address of Popcorn 200-series (eg. 192.168.1.100)":[null,""],"Get settings":[null,""],"Get Settings":[null,""],"the Popcorn Hour device must be powered on and NMJ running.":[null,""],"NMJ database":[null,""],"automatically filled via the 'Get Settings' button.":[null,""],"NMJ mount url":[null,""],"Networked Media Jukebox v2":[null,""],"The Networked Media Jukebox, or NMJv2, is the official media jukebox interface made available for the Popcorn Hour 300 & 400-series.":[null,""],"send update commands to NMJv2?":[null,""],"IP address of Popcorn 300/400-series (eg. 192.168.1.100)":[null,""],"Database location":[null,""],"Database instance":[null,""],"adjust this value if the wrong database is selected.":[null,""],"Find database":[null,""],"Find Database":[null,""],"the Popcorn Hour device must be powered on.":[null,""],"NMJv2 database":[null,""],"automatically filled via the 'Find Database' buttons.":[null,""],"Synology":[null,""],"The Synology DiskStation NAS.":[null,""],"Synology Indexer is the daemon running on the Synology NAS to build its media database.":[null,""],"send Synology notifications?":[null,""],"requires SickRage to be running on your Synology NAS.":[null,""],"Synology Indexer":[null,""],"Synology Notifier is the notification system of Synology DSM":[null,""],"send notifications to the Synology Notifier?":[null,""],"pyTivo":[null,""],"pyTivo is both an HMO and GoBack server. This notifier will load the completed downloads to your Tivo.":[null,""],"send notifications to pyTivo?":[null,""],"requires the downloaded files to be accessible by pyTivo.":[null,""],"pyTivo IP:Port":[null,""],"host running pyTivo (eg. 192.168.1.1:9032)":[null,""],"pyTivo share name":[null,""],"value used in pyTivo Web Configuration to name the share.":[null,""],"Tivo name":[null,""],"(Messages & Settings > Account & System Information > System Information > DVR name)":[null,""],"Growl":[null,""],"A cross-platform unobtrusive global notification system.":[null,""],"send Growl notifications?":[null,""],"Growl IP:Port":[null,""],"host running Growl (eg. 192.168.1.100:23053)":[null,""],"may leave blank if SickRage is on the same host.":[null,""],"otherwise Growl <b>requires</b> a password to be used.":[null,""],"Click below to register and test Growl, this is required for Growl notifications to work.":[null,""],"Register Growl":[null,""],"Prowl":[null,""],"A Growl client for iOS.":[null,""],"send Prowl notifications?":[null,""],"Prowl Message Title":[null,""],"Global Prowl API key(s)":[null,""],"Prowl API(s) listed here, separated by commas if applicable, will<br> receive notifications for <b>all</b> shows. Your Prowl API key is available at:":[null,""],"(this field may be blank except when testing.)":[null,""],"Show notification list":[null,""],"-- Select a Show --":[null,""],"Configure per-show notifications here by entering Prowl API key(s), separated by commas, '\n 'after selecting a show in the drop-down box. Be sure to activate the 'Save for this show' '\n 'button below after each entry.":[null,""],"Save for this show":[null,""],"Prowl priority":[null,""],"Very Low":[null,""],"Moderate":[null,""],"Normal":[null,""],"High":[null,""],"Emergency":[null,""],"priority of Prowl messages from SickRage.":[null,""],"Libnotify":[null,""],"The standard desktop notification API for Linux/*nix systems. This notifier will only function if the pynotify module is installed (Ubuntu/Debian package <a href=\"apt:python-notify\">python-notify</a>).":[null,""],"send Libnotify notifications?":[null,""],"Pushover":[null,""],"Pushover makes it easy to send real-time notifications to your Android and iOS devices.":[null,""],"send Pushover notifications?":[null,""],"Pushover key":[null,""],"user key of your Pushover account":[null,""],"Pushover API key":[null,""],"click here":[null,""]," to create a Pushover API key":[null,""],"Pushover devices":[null,""],"comma separated list of pushover devices you want to send notifications to":[null,""],"Pushover notification sound":[null,""],"Bike":[null,""],"Bugle":[null,""],"Cash Register":[null,""],"Classical":[null,""],"Cosmic":[null,""],"Falling":[null,""],"Gamelan":[null,""],"Incoming":[null,""],"Intermission":[null,""],"Magic":[null,""],"Mechanical":[null,""],"Piano Bar":[null,""],"Siren":[null,""],"Space Alarm":[null,""],"Tug Boat":[null,""],"Alien Alarm (long)":[null,""],"Climb (long)":[null,""],"Persistent (long)":[null,""],"Pushover Echo (long)":[null,""],"Up Down (long)":[null,""],"None (silent)":[null,""],"Device specific":[null,""],"choose notification sound to use":[null,""],"Pushover priority":[null,""],"Choose priority to use":[null,""],"Boxcar 2":[null,""],"Read your messages where and when you want them!":[null,""],"send Boxcar notifications?":[null,""],"Boxcar2 access token":[null,""],"access token for your Boxcar account.":[null,""],"NMA":[null,""],"Notify My Android":[null,""],"Notify My Android is a Prowl-like Android App and API that offers an easy way to send notifications from your application directly to your Android device.":[null,""],"send NMA notifications?":[null,""],"NMA API key":[null,""],"(multiple keys must be separated by commas, up to a maximum of 5)":[null,""],"NMA priority":[null,""],"priority of NMA messages from SickRage.":[null,""],"Pushalot":[null,""],"Pushalot is a platform for receiving custom push notifications to connected devices running Windows Phone or Windows 8.":[null,""],"send Pushalot notifications ?":[null,""],"Pushalot authorization token":[null,""],"authorization token of your Pushalot account.":[null,""],"Pushbullet":[null,""],"Pushbullet is a platform for receiving custom push notifications to connected devices running Android/iOS and desktop browsers such as Chrome, Firefox or Opera.":[null,""],"send Pushbullet notifications?":[null,""],"Pushbullet API key":[null,""],"API key of your Pushbullet account":[null,""],"Pushbullet devices":[null,""],"Update device list":[null,""],"Pushbullet channels":[null,""],"Free Mobile":[null,""],"Free Mobile is a famous French cellular network provider.<br> It provides to their customer a free SMS API.":[null,""],"send SMS notifications?":[null,""],"send a SMS when a download starts?":[null,""],"send a SMS when a download finishes?":[null,""],"send a SMS when subtitles are downloaded?":[null,""],"Free Mobile customer ID":[null,""],"it's your Free Mobile customer ID (8 digits)":[null,""],"Free Mobile API key":[null,""],"find your API key in your customer portal.":[null,""],"Click below to test your settings.":[null,""],"Telegram":[null,""],"Telegram is a cloud-based instant messaging service.":[null,""],"send Telegram notifications?":[null,""],"send a message when a download starts?":[null,""],"send a message when a download finishes?":[null,""],"send a message when subtitles are downloaded?":[null,""],"User/group ID":[null,""],"contact @myidbot on Telegram to get an ID":[null,""],"Bot API token":[null,""],"contact @BotFather on Telegram to set up one":[null,""],"Join":[null,""],"Join all of your devices together!":[null,""],"send Join notifications?":[null,""],"Device ID":[null,""],"per device specific id":[null,""]," to create a Join API key":[null,""],"Twilio":[null,""],"Twilio is a webservice API that allows you to communicate directly with a mobile number. This notifier will send a text directly to your mobile device.":[null,""],"should SickRage text your mobile device?":[null,""],"Twilio Account SID":[null,""],"account SID of your Twilio account.":[null,""],"Twilio Auth Token":[null,""],"Twilio Phone SID":[null,""],"phone SID that you would like to send the sms from":[null,""],"Your phone number":[null,""],"phone number that will receive the sms. Please use the format +1-###-###-####":[null,""],"Twitter":[null,""],"A social networking and microblogging service, enabling its users to send and read other users' messages called tweets.":[null,""],"should SickRage post tweets on Twitter?":[null,""],"you may want to use a secondary account.":[null,""],"send direct message":[null,""],"send a notification via Direct Message, not via status update":[null,""],"send DM to":[null,""],"Twitter account to send Direct Messages to (must follow you)":[null,""],"Step One":[null,""],"Request Authorization":[null,""],"Click the \"Request Authorization\" button.<br> This will open a new page containing an auth key.<br> <b>note:</b> if nothing happens check your popup blocker.":[null,""],"Step Two":[null,""],"Enter the key Twitter gave you below, and click \"Verify Key\".":[null,""],"Trakt":[null,""],"Trakt helps keep a record of what TV shows and movies you are watching. Based on your favorites, Trakt recommends additional shows and movies you'll enjoy!":[null,""],"send Trakt.tv notifications?":[null,""],"username of your Trakt account.":[null,""],"Trakt PIN":[null,""],"Get Trakt PIN":[null,""],"PIN code to authorize SickRage to access Trakt on your behalf.":[null,""],"API Timeout":[null,""],"seconds to wait for Trakt API to respond. (Use 0 to wait forever)":[null,""],"Default indexer":[null,""],"Sync libraries":[null,""],"sync your SickRage show library with your trakt show library.":[null,""],"Remove Episodes From Collection":[null,""],"remove an episode from your Trakt Collection if it is not in your SickRage Library.":[null,""],"Sync watchlist":[null,""],"sync your SickRage show watchlist with your trakt show watchlist (either Show and Episode).":[null,""],"episode will be added on watch list when wanted or snatched and will be removed when downloaded ":[null,""],"Watchlist add method":[null,""],"Skip All":[null,""],"Download Pilot Only":[null,""],"Get whole show":[null,""],"method in which to download episodes for new shows.":[null,""],"Remove episode":[null,""],"remove an episode from your watchlist after it is downloaded.":[null,""],"Remove series":[null,""],"remove the whole series from your watchlist after any download.":[null,""],"Remove watched show":[null,""],"remove the show from sickrage if it's ended and completely watched":[null,""],"Start paused":[null,""],"shows grabbed from your trakt watchlist start paused.":[null,""],"Trakt blackList name":[null,""],"name (slug) of list on Trakt for blacklisting show on 'Add Trending Show' & 'Add Recommended Shows' pages":[null,""],"Email":[null,""],"Allows configuration of email notifications on a per show basis.":[null,""],"send email notifications?":[null,""],"SMTP host":[null,""],"hostname of your SMTP email server.":[null,""],"SMTP port":[null,""],"port number used to connect to your SMTP host.":[null,""],"SMTP from":[null,""],"sender email address, some hosts require a real address.":[null,""],"Use TLS":[null,""],"check to use TLS encryption.":[null,""],"SMTP user":[null,""],"(optional) your SMTP server username.":[null,""],"SMTP password":[null,""],"(optional) your SMTP server password.":[null,""],"Global email list":[null,""],"email addresses listed here, separated by commas if applicable, will<br> receive notifications for <b>all</b> shows.":[null,""],"(This field may be blank except when testing.)":[null,""],"Email Subject":[null,""],"use a custom subject for some privacy protection?":[null,""],"(leave blank for the default SickRage subject)":[null,""],"configure per-show notifications here by entering email address(es), separated by commas,":[null,""],"after selecting a show in the drop-down box. Be sure to activate the 'Save for this show'":[null,""],"button below after each entry.":[null,""],"Slack":[null,""],"Slack brings all your communication together in one place. It's real-time messaging, archiving and search for modern teams.":[null,""],"should SickRage post messages on Slack?":[null,""],"Slack Incoming Webhook":[null,""],"Discord":[null,""],"All-in-one voice and text chat for gamers that's free, secure, and works on both your desktop and phone.":[null,""],"Should SickRage post messages on Discord?":[null,""],"Discord Incoming Webhook":[null,""],"Create webhook under channel settings.":[null,""],"Discord Bot Name":[null,""],"Blank will use webhook default Name.":[null,""],"Discord Avatar URL":[null,""],"Blank will use webhook default Avatar.":[null,""],"Discord TTS":[null,""],"Send notifications using text-to-speech":[null,""],"Post-Processing":[null,""],"Episode Naming":[null,""],"Metadata":[null,""],"Settings that dictate how SickRage should process completed downloads.":[null,""],"enable the automatic post processor to scan and process any files in your Post Processing Dir":[null,""],"do not use if you use an external Post Processing script":[null,""],"Post Processing Dir":[null,""],"the folder where your download client puts the completed TV downloads.":[null,""],"please use seperate downloading and completed folders in your download client if possible.":[null,""],"Processing Method":[null,""],"what method should be used to put files into the library?":[null,""],"if you keep seeding torrents after they finish, please avoid the 'move' processing method to prevent errors.":[null,""],"Auto Post-Processing Frequency":[null,""],"time in minutes to check for new files to auto post-process (min 10)":[null,""],"Postpone post processing":[null,""],"wait to process a folder if sync files are present.":[null,""],"Sync File Extensions":[null,""],"comma seperated list of extensions or filename globs SickRage ignores when Post Processing":[null,""],"Rename Episodes":[null,""],"rename episode using the Episode Naming settings?":[null,""],"Create missing show directories":[null,""],"create missing show directories when they get deleted":[null,""],"Add shows without directory":[null,""],"add shows without creating a directory (not recommended)":[null,""],"Move associated files":[null,""],"move associated (srt/srr/sfv/etc) files while post processing?":[null,""],"Rename .nfo file":[null,""],"rename the original .nfo file to .nfo-orig to avoid conflicts?":[null,""],"Associated file extensions":[null,""],"comma separated list of associated file extensions SickRage should keep while post processing.":[null,""],"leaving it empty means no associated files will be post processed":[null,""],"Delete non associated files":[null,""],"delete non associated files while post processing?":[null,""],"Change File Date":[null,""],"set last modified filedate to the date that the episode aired?":[null,""],"some systems may ignore this feature.":[null,""],"Timezone for File Date":[null,""],"local":[null,""],"network":[null,""],"what timezone should be used to change File Date?":[null,""],"Unpack":[null,""],"What to do with archived releases found in your <i>TV Download Dir</i>?":[null,""],"Ignore (do not process contents)":[null,""],"Unpack (process contents)":[null,""],"Treat as video (process archive as-is)":[null,""],"'Unpack' only works with RAR archives":[null,""],"Windows":[null,""],"WinRar is required on windows":[null,""],"Unpack Directory":[null,""],"Choose a path to unpack files, leave blank to unpack in download dir":[null,""],"Unrar Location":[null,""],"add the path to unrar if it is not in the system path":[null,""],"Alternate Unrar Tool":[null,""],"add the path to an alternate unrar tool if it is not in the system path":[null,""],"Delete RAR contents":[null,""],"delete content of RAR files, even if Process Method not set to move?":[null,""],"only working with RAR archive":[null,""],"Don't delete empty folders":[null,""],"leave empty folders when Post Processing?":[null,""],"can be overridden using manual Post Processing":[null,""],"Follow symbolic-links":[null,""],"follow down symbolic links in download directory?":[null,""],"<b>EXPERTS ONLY.</b><br>Enable only if you know what <b>circular symbolic links</b> are,<br>and can <b>verify that you have none</b>.":[null,""],"Use icacls":[null,""],"Windows only":[null,""],"sets video permissions after using the move method in post processing":[null,""],"Extra Scripts":[null,""],"see":[null,""],"for script arguments description and usage.":[null,""],"How SickRage will name and sort your episodes.":[null,""],"Name Pattern":[null,""],"Toggle Naming Legend":[null,""],"don't forget to add quality pattern. Otherwise after post-processing the episode will have UNKNOWN quality":[null,""],"Meaning":[null,""],"Pattern":[null,""],"Result":[null,""],"Use lower case if you want lower case names (eg. %sn, %e.n, %q_n etc)":[null,""],"Show Name":[null,""],"Show.Name":[null,""],"Show_Name":[null,""],"Season Number":[null,""],"XEM Season Number":[null,""],"Episode Number":[null,""],"XEM Episode Number":[null,""],"Episode Name":[null,""],"Episode.Name":[null,""],"Episode_Name":[null,""],"Air Date":[null,""],"Post-Processing Date":[null,""],"Quality":[null,""],"Scene Quality":[null,""],"Release Name":[null,""],"SickRage' is used in place of RLSGROUP if it could not be properly detected":[null,""],"Release Group":[null,""],"If episode is proper/repack add 'proper' to name.":[null,""],"Release Type":[null,""],"Multi-Episode Style":[null,""],"Single-EP Sample":[null,""],"Multi-EP sample":[null,""],"Strip Show Year":[null,""],"remove the TV show's year when renaming the file?":[null,""],"only applies to shows that have year inside parentheses":[null,""],"Custom Air-By-Date":[null,""],"name air-by-date shows differently than regular shows?":[null,""],"Toggle ABD Naming Legend":[null,""],"Regular Air Date":[null,""],"Year":[null,""],"Month":[null,""],"Day":[null,""],"Multi-EP style is ignored":[null,""],"Custom Sports":[null,""],"name sports shows differently than regular shows?":[null,""],"Toggle Sports Naming Legend":[null,""],"Sports Air Date":[null,""],"Custom Anime":[null,""],"name anime shows differently than regular shows?":[null,""],"Toggle Anime Naming Legend":[null,""],">XEM Season Number":[null,""],"Single-EP Anime Sample":[null,""],"Multi-EP Anime sample":[null,""],"Add Absolute Number":[null,""],"add the absolute number to the season/episode format?":[null,""],"only applies to anime. (eg. S15E45 - 310 vs S15E45)":[null,""],"Only Absolute Number":[null,""],"replace season/episode format with absolute number":[null,""],"only applies to anime.":[null,""],"No Absolute Number":[null,""],"don't include the absolute number":[null,""],"The data associated to the data. These are files associated to a TV show in the form of images and text that, when supported, will enhance the viewing experience.":[null,""],"Metadata Type":[null,""],"toggle metadata options that you wish to be created":[null,""],"multiple targets may be used":[null,""],"Select Metadata":[null,""],"Provider Priorities":[null,""],"Provider Options":[null,""],"Configure Custom Newznab Providers":[null,""],"Configure Custom Torrent Providers":[null,""],"Check off and drag the providers into the order you want them to be used.":[null,""],"At least one provider is required but two are recommended.":[null,""],"Torrent providers can be toggled in ":[null,""],"Provider does not support backlog searches at this time.":[null,""],"Provider is <b>NOT WORKING</b>.":[null,""],"Configure individual provider settings here.":[null,""],"Check with provider's website on how to obtain an API key if needed.":[null,""],"Configure provider":[null,""],"no providers available to configure.":[null,""],"URL":[null,""],"Enable daily searches":[null,""],"enable provider to perform daily searches.":[null,""],"Enable backlog searches":[null,""],"enable provider to perform backlog searches.":[null,""],"Season search mode":[null,""],"when searching for complete seasons you can choose to have it look for season packs only, or choose to have it build a complete season from just single episodes.":[null,""],"season packs only.":[null,""],"episodes only.":[null,""],"Enable fallback":[null,""],"when searching for a complete season depending on search mode you may return no results, this helps by restarting the search using the opposite search mode.":[null,""],"Custom URL":[null,""],"the URL should include the protocol (and port if applicable). Examples: http://192.168.1.4/ or http://localhost:3000/":[null,""],"Api key":[null,""],"Digest":[null,""],"Hash":[null,""],"Passkey":[null,""],"Cookies":[null,""],"example: uid=1234;pass=567845439634987<br>note: uid and pass are not your username/password.<br>use DevTools or Firebug to get these values after logging in on your browser.":[null,""],"Pin":[null,""],"Seed ratio":[null,""],"stop transfer when ratio is reached<br>(-1 SickRage default to seed forever, or leave blank for downloader default)":[null,""],"Minimum seeders":[null,""],"Minimum leechers":[null,""],"Confirmed download":[null,""],"only download torrents from trusted or verified uploaders ?":[null,""],"Ranked torrents":[null,""],"only download ranked torrents (trusted releases)":[null,""],"English torrents":[null,""],"only download english torrents, or torrents containing english subtitles":[null,""],"For Spanish torrents":[null,""],"ONLY search on this provider if show info is defined as \"Spanish\" (avoid provider's use for VOS shows)":[null,""],"Sorting results by":[null,""],"Freeleech":[null,""],"only download <b>\"FreeLeech\"</b> torrents.":[null,""],"Category":[null,""],"select torrent with Italian subtitle":[null,""],"Configure Custom<br>Newznab Providers":[null,""],"Add and setup or remove custom Newznab providers.":[null,""],"Select provider":[null,""],"-- add new provider --":[null,""],"Provider name":[null,""],"Site URL":[null,""],"Newznab search categories":[null,""],"select your Newznab categories on the left, and click the \"update categories\" button to use them for searching.) <b>don't forget to to save the form!":[null,""],"Update Categories":[null,""],"Add":[null,""],"Delete":[null,""],"Add and setup or remove custom RSS providers.":[null,""],"RSS URL":[null,""],"Search element":[null,""],"eg: title":[null,""],"Episode Search":[null,""],"NZB Search":[null,""],"Torrent Search":[null,""],"How to manage searching with":[null,""],"Randomize Providers":[null,""],"randomize the provider search order instead of going in order of placement":[null,""],"Download propers":[null,""],"replace original download with \"Proper\" or \"Repack\" if nuked":[null,""],"Check propers every":[null,""],"24 hours":[null,""],"4 hours":[null,""],"90 mins":[null,""],"45 mins":[null,""],"15 mins":[null,""],"Backlog search day(s)":[null,""],"number of day(s) that the \"Forced Backlog Search\" will cover (e.g. 7 Days)":[null,""],"Backlog search frequency":[null,""],"time in minutes between searches (min.":[null,""],"Daily search frequency":[null,""],"Usenet retention":[null,""],"age limit in days for usenet articles to be used (e.g. 500)":[null,""],"Ignore words":[null,""],"results with one or more word from this list will be ignored<br>separate words with a comma, e.g. \"word1,word2,word3\"":[null,""],"Require words":[null,""],"results with no word from this list will be ignored<br>separate words with a comma, e.g. \"word1,word2,word3\"":[null,""],"Trackers list":[null,""],"trackers that will be added to magnets without trackers<br>separate trackers with a comma, e.g. \"tracker1,tracker2,tracker3\"":[null,""],"Ignore language names in subbed results":[null,""],"ignore subbed releases based on language names <br>\n Example: \"dk\" will ignore words: dksub, dksubs, dksubbed, dksubed <br>\n separate languages with a comma, e.g. \"lang1,lang2,lang3":[null,""],"Allow high priority":[null,""],"set downloads of recently aired episodes to high priority":[null,""],"Use Failed Downloads":[null,""],"use Failed Download Handling?":[null,""],"will only work with snatched/downloaded episodes after enabling this":[null,""],"Delete Failed":[null,""],"delete files left over from a failed download?":[null,""],"this only works if Use Failed Downloads is enabled.":[null,""],"How to handle NZB search results.":[null,""],"Search NZBs":[null,""],"enable NZB search providers":[null,""],"Send .nzb files to":[null,""],"SABnzbd server URL":[null,""],"URL to your SABnzbd server (e.g. http://localhost:8080/)":[null,""],"SABnzbd username":[null,""],"(blank for none)":[null,""],"SABnzbd password":[null,""],"SABnzbd API key":[null,""],"locate at... SABnzbd Config -> General -> API Key":[null,""],"Use SABnzbd category":[null,""],"add downloads to this category (e.g. TV)":[null,""],"Use SABnzbd category (backlog episodes)":[null,""],"add downloads of old episodes to this category (e.g. TV)":[null,""],"Use SABnzbd category for anime":[null,""],"add anime downloads to this category (e.g. anime)":[null,""],"Use SABnzbd category for anime (backlog episodes)":[null,""],"add anime downloads of old episodes to this category (e.g. anime)":[null,""],"Use forced priority":[null,""],"enable to change priority from HIGH to FORCED":[null,""],"Black hole folder location":[null,""],"<b>.nzb</b> files are stored at this location for external software to find and use":[null,""],"Connect using HTTPS":[null,""],"enable Secure control in NZBGet and set the correct Secure Port here":[null,""],"NZBget host:port":[null,""],"(e.g. localhost:6789)":[null,""],"NZBget RPC host name and port number (not NZBgetweb!)":[null,""],"NZBget username":[null,""],"locate in nzbget.conf (default:nzbget)":[null,""],"NZBget password":[null,""],"locate in nzbget.conf (default:tegbzn6789)":[null,""],"Use NZBget category":[null,""],"send downloads marked this category (e.g. TV)":[null,""],"Use NZBget category (backlog episodes)":[null,""],"send downloads of old episodes marked this category (e.g. TV)":[null,""],"Use NZBget category for anime":[null,""],"send anime downloads marked this category (e.g. anime)":[null,""],"Use NZBget category for anime (backlog episodes)":[null,""],"send anime downloads of old episodes marked this category (e.g. anime)":[null,""],"NZBget priority":[null,""],"Very low":[null,""],"Low":[null,""],"Very high":[null,""],"Force":[null,""],"priority for daily snatches (no backlog)":[null,""],"Torrent host:port":[null,""],"URL to your Synology DSM (e.g. http://localhost:5000/)":[null,""],"Client username":[null,""],"Client password":[null,""],"Downloaded files location":[null,""],"where Synology Download Station will save downloaded files (blank for client default)":[null,""],"the destination has to be a shared folder for Synology DS":[null,""],"Click below to test":[null,""],"How to handle Torrent search results.":[null,""],"Search torrents":[null,""],"enable torrent search providers":[null,""],"Send .torrent files to":[null,""],"<b>.torrent</b> files are stored at this location for external software to find and use":[null,""],"URL to your torrent client (e.g. http://localhost:8000/)":[null,""],"Torrent RPC URL":[null,""],"the path without leading and trailing slashes (e.g. transmission)":[null,""],"Http Authentication":[null,""],"Verify certificate":[null,""],"disable if you get \"Deluge: Authentication Error\" in your log":[null,""],"verify SSL certificates for HTTPS requests":[null,""],"Add label to torrent":[null,""],"(blank spaces are not allowed)":[null,""],"label plugin must be enabled in Deluge clients":[null,""],"for QBitTorrent 3.3.1 and up":[null,""],"Add label to torrent for anime":[null,""],"for QBitTorrent 3.3.1 and up ":[null,""],"where <span id=\"torrent_client\">the torrent client</span> will save downloaded files (blank for client default)":[null,""],"the destination has to be a shared folder for Synology DS</span>":[null,""],"Minimum seeding time":[null,""],"time in hours":[null,""],"(default:'0' passes blank to client and '-1' passes nothing)":[null,""],"Start torrent paused":[null,""],"add .torrent to client but do <b style=\"font-weight:900\">not</b> start downloading":[null,""],"Allow high bandwidth":[null,""],"use high bandwidth allocation if priority is high":[null,""],"Test Connection":[null,""],"Windows Shares":[null,""],"Defines your existing windows shares so that we can add them to the browse dialog":[null,""],"Share #{number}":[null,""],"Share label":[null,""],"Hostname or IP":[null,""],"Share path":[null,""],"Subtitles Search":[null,""],"Subtitles Plugin":[null,""],"Plugin Settings":[null,""],"Settings that dictate how SickRage handles subtitles search results.":[null,""],"Search Subtitles":[null,""],"Subtitle Languages":[null,""],"Subtitle Directory":[null,""],"the directory where SickRage should store your <i>Subtitles</i> files.":[null,""],"leave empty if you want store subtitle in episode path.":[null,""],"Subtitle Find Frequency":[null,""],"time in hours between scans (default: 1)":[null,""],"Include Specials":[null,""],"include the show's specials when searching for subtitles?":[null,""],"Perfect matches":[null,""],"only download subtitles that match: release group, video codec, audio codec and resolution":[null,""],"if disabled you may get out of sync subtitles":[null,""],"Subtitles History":[null,""],"log downloaded Subtitle on History page?":[null,""],"Subtitles Multi-Language":[null,""],"append language codes to subtitle filenames?":[null,""],"this option is required if you use multiple subtitle languages":[null,""],"Delete unwanted subtitles":[null,""],"enable to delete unwanted subtitle languages bundled with release":[null,""],"Embedded Subtitles":[null,""],"ignore subtitles embedded inside video file?":[null,""],"this will ignore <u>all</u> embedded subtitles for every video file!":[null,""],"Hearing Impaired Subtitles":[null,""],"download hearing impaired style subtitles?":[null,""],"See":[null,""],"for a script arguments description.":[null,""],"Additional scripts separated by <b>|</b>.":[null,""],"Scripts are called after each episode has searched and downloaded subtitles.":[null,""],"For any scripted languages, include the interpreter executable before the script. See the following example":[null,""],"For Windows:":[null,""],"For Linux / OS X:":[null,""],"Subtitle Providers":[null,""],"Check off and drag the plugins into the order you want them to be used.":[null,""],"At least one plugin is required.":[null,""]," Web-scraping plugin":[null,""],"Provider Settings":[null,""],"Set user and password for each provider":[null,""],"User Name":[null,""],"Change Show":[null,""],"Prev Show":[null,""],"Next Show":[null,""],"Jump to Season":[null,""],"Specials":[null,""],"Poster for":[null,""],"Stars":[null,""],"minutes":[null,""],"View other popular {genre} shows on trakt.tv.":[null,""],"View other popular {imdbgenre} shows on IMDB.":[null,""],"Allowed":[null,""],"Preferred":[null,""],"Originally Airs":[null,""],"Show Status":[null,""],"Default EP Status":[null,""],"Location":[null,""],"Missing":[null,""],"Scene Name":[null,""],"Required Words":[null,""],"Ignored Words":[null,""],"Size":[null,""],"Info Language":[null,""],"Subtitles SR Metadata":[null,""],"Season Folders":[null,""],"Paused":[null,""],"Air-by-Date":[null,""],"Sports":[null,""],"DVD Order":[null,""],"Scene Numbering":[null,""],"Select Filtered Episodes":[null,""],"Clear All":[null,""],"Change selected episodes to":[null,""],"Select Columns":[null,""],"NFO":[null,""],"TBN":[null,""],"Episode":[null,""],"Absolute":[null,""],"Scene":[null,""],"Scene Absolute":[null,""],"File Name":[null,""],"Airdate":[null,""],"Download":[null,""],"Change the value here if scene numbering differs from the indexer episode numbering":[null,""],"Change the value here if scene absolute numbering differs from the indexer absolute numbering":[null,""],"Manual Search":[null,""],"Do you want to mark this episode as failed?":[null,""],"The episode release name will be added to the failed history, preventing it to be downloaded again.":[null,""],"Do you want to include the current episode quality in the search?":[null,""],"Choosing No will ignore any releases with the same episode quality as the one currently downloaded/snatched.":[null,""],"Download subtitle":[null,""],"Do you want to re-download the subtitle for this language?":[null,""],"It will overwrite your current subtitle":[null,""],"Format":[null,""],"Advanced":[null,""],"Main Settings":[null,""],"Show Location":[null,""],"Preferred Quality":[null,""],"Default Episode Status":[null,""],"this will set the status for future episodes.":[null,""],"this only applies to episode filenames and the contents of metadata files.":[null,""],"search for subtitles":[null,""],"Use SR Metdata":[null,""],"use SickRage metadata when searching for subtitle, this will override the autodiscovered metadata":[null,""],"pause this show (SickRage will not download episodes)":[null,""],"Format Settings":[null,""],"Air by date":[null,""],"check if the show is released as Show.03.02.2010 rather than Show.S02E03.":[null,""],"in case of an air date conflict between regular and special episodes, the later will be ignored.":[null,""],"check if the show is Anime and episodes are released as Show.265 rather than Show.S02E03":[null,""],"check if the show is a sporting or MMA event released as Show.03.02.2010 rather than Show.S02E03":[null,""],"Season folders":[null,""],"group episodes by season folder (uncheck to store in a single folder)":[null,""],"search by scene numbering (uncheck to search by indexer numbering)":[null,""],"use the DVD order instead of the air order":[null,""],"a \"Force Full Update\" is necessary, and if you have existing episodes you need to sort them manually.":[null,""],"comma-separated <i>e.g. \"word1,word2,word3</i>\"":[null,""],"search results with one or more words from this list will be ignored.":[null,""],"e.g. \"word1,word2,word3\"":[null,""],"search results with no words from this list will be ignored.":[null,""],"Scene Exception":[null,""],"this will affect episode search on NZB and torrent providers.":[null,""],"this list appends to the original show name.":[null,""],"WARNING logs":[null,""],"ERROR logs":[null,""],"There are no events to display.":[null,""],"Limit":[null,""],"Layout":[null,""],"HistoryLayout":[null,""],"Compact":[null,""],"Detailed":[null,""],"Time":[null,""],"Provider":[null,""],"Missing Provider":[null,""],"missing provider":[null,""],"Directory":[null,""],"Show Name (tvshow.nfo)":[null,""],"Indexer":[null,""],"Enter the folder containing the episode":[null,""],"Process Method to be used":[null,""],"Copy":[null,""],"Move":[null,""],"Hard Link":[null,""],"Symbolic Link":[null,""],"Symbolic Link Reversed":[null,""],"Force already Post Processed Dir/Files":[null,""],"Mark Dir/Files as priority download":[null,""],"(Check it to replace the file even if it exists at higher quality)":[null,""],"Delete files and folders":[null,""],"(Check it to delete files and folders like auto processing)":[null,""],"Don't use processing queue":[null,""],"(If checked this will return the result of the process here, but may be slow!)":[null,""],"Mark download as failed":[null,""],"Process":[null,""],"Download subtitles for this show?":[null,""],"use SickRage metadata when searching for subtitle, <br />this will override the autodiscovered metadata":[null,""],"Status for previously aired episodes":[null,""],"Status for all future episodes":[null,""],"Group episodes by season folder?":[null,""],"Is this show an Anime?":[null,""],"Is this show scene numbered?":[null,""],"Save Defaults":[null,""],"Use current values as the defaults":[null,""],"<p>Select your preferred fansub groups from the <b>Available Groups</b> and add them to the <b>Whitelist</b>. Add groups to the <b>Blacklist</b> to ignore them.</p>\n <p>The <b>Whitelist</b> is checked <i>before</i> the <b>Blacklist</b>.</p>\n <p>Groups are shown as <b>Name</b> | <b>Rating</b> | <b>Number of subbed episodes</b>.</p>\n <p>You may also add any fansub group not listed to either list manually.</p>\n <p>When doing this please note that you can only use groups listed on anidb for this anime.\n <br>If a group is not listed on anidb but subbed this anime, please correct anidb's data.</p>":[null,""],"Whitelist":[null,""],"Available Groups":[null,""],"Add to Whitelist":[null,""],"Add to Blacklist":[null,""],"Blacklist":[null,""],"Custom Group":[null,""],"Allowed Quality:":[null,""],"Preferred Quality:":[null,""],"Filter Show Name":[null,""],"Root":[null,""],"All":[null,""],"Clear Filter(s)":[null,""],"Poster":[null,""],"Small Poster":[null,""],"Banner":[null,""],"Simple":[null,""],"Next Episode":[null,""],"Progress":[null,""],"Direction":[null,""],"Ascending":[null,""],"Descending":[null,""],"Poster Size":[null,""],"Continuing":[null,""],"Ended":[null,""],"Total":[null,""],"Invalid date":[null,""],"No Network":[null,""],"Next Ep":[null,""],"Prev Ep":[null,""],"Show":[null,""],"Downloads":[null,""],"Active":[null,""],"loading":[null,""],"<p><b><u>Preferred</u></b> qualities will replace those in <b><u>allowed</u></b>, even if they are lower.</p>":[null,""],"New":[null,""],"Set as Default":[null,""],"Remember me":[null,""],"Edit Selected":[null,""],"Subtitle":[null,""],"Default Ep Status":[null,""],"Update":[null,""],"Rescan":[null,""],"Rename":[null,""],"Search Subtitle":[null,""],"Force Metadata Regen":[null,""],"Snatched (Allowed)":[null,""],"Jump to Show":[null,""],"Force Backlog":[null,""],"Manage episodes with status":[null,""],"Manage":[null,""],"None of your episodes have status":[null,""],"Shows containing":[null,""],"episodes":[null,""],"Set checked shows/episodes to":[null,""],"Go":[null,""],"Select all":[null,""],"Clear all":[null,""],"Release":[null,""],"Backlog Search":[null,""],"Not in progress":[null,""],"In Progress":[null,""],"Daily Search":[null,""],"Find Propers Search":[null,""],"Propers search disabled":[null,""],"Subtitle Search":[null,""],"Subtitle search disabled":[null,""],"Search Queue":[null,""],"pending items":[null,""],"Daily":[null,""],"Manual":[null,""],"Changing any settings marked with (<span class=\"separator\">*</span>) will force a refresh of the selected shows.":[null,""],"Selected Shows":[null,""],"Root Directories":[null,""],"Current":[null,""],"Keep":[null,""],"Custom":[null,""],"Group episodes by season folder (set to \"No\" to store in a single folder).":[null,""],"Pause these shows (SickRage will not download episodes).":[null,""],"This will set the status for future episodes.":[null,""],"Search by scene numbering (set to \"No\" to search by indexer numbering).":[null,""],"Set if these shows are Anime and episodes are released as Show.265 rather than Show.S02E03":[null,""],"Set if these shows are sporting or MMA events released as Show.03.02.2010 rather than Show.S02E03.":[null,""],"In case of an air date conflict between regular and special episodes, the later will be ignored.":[null,""],"Set if these shows are released as Show.03.02.2010 rather than Show.S02E03.":[null,""],"Search for subtitles.":[null,""],"All of your episodes have {subsLanguage} subtitles.":[null,""],"Manage episodes without":[null,""],"Episodes without {subsLanguage} subtitles.":[null,""],"Episodes without {subtitleLanguage} (undefined) subtitles.":[null,""],"Download missed subtitles for selected episodes":[null,""],"Performing Restart":[null,""],"Waiting for SickRage to shut down":[null,""],"Waiting for SickRage to start again":[null,""],"Loading the default page":[null,""],"Error: The restart has timed out, perhaps something prevented SickRage from starting again?":[null,""],"Key":[null,""],"Missed":[null,""],"Today":[null,""],"Soon":[null,""],"Later":[null,""],"Subscribe":[null,""],"Date":[null,""],"View Paused":[null,""],"Hidden":[null,""],"Shown":[null,""],"Calendar":[null,""],"List":[null,""],"Ends":[null,""],"Next Ep Name":[null,""],"Run time":[null,""],"Indexers":[null,""],"No shows for this day":[null,""],"Airs":[null,""],"Plot":[null,""],"Show Update":[null,""],"Version Check":[null,""],"Proper Finder":[null,""],"Post Process":[null,""],"Subtitles Finder":[null,""],"Scheduler":[null,""],"Alive":[null,""],"Start Time":[null,""],"Cycle Time":[null,""],"Next Run":[null,""],"Last Run":[null,""],"Silent":[null,""],"True":[null,""],"N/A":[null,""],"Show id":[null,""],"Show name":[null,""],"Priority":[null,""],"Added":[null,""],"Queue type":[null,""],"LOW":[null,""],"NORMAL":[null,""],"HIGH":[null,""],"Disk Space":[null,""],"Free space":[null,""],"TV Download Directory":[null,""],"Media Root Directories":[null,""],"Preview of the proposed name changes":[null,""],"All Seasons":[null,""],"select all":[null,""],"Rename Selected":[null,""],"Cancel Rename":[null,""],"Old Location":[null,""],"New Location":[null,""],"Trakt API did not return any results, please check your config.":[null,""],"votes":[null,""],"Remove Show":[null,""],"Level":[null,""],"Filter":[null,""],"All non-absolute folder locations are relative to ":[null,""],"Manual Post-Processing":[null,""],"Episode Status Management":[null,""],"Update PLEX":[null,""],"Update KODI":[null,""],"Update Emby":[null,""],"Manage Torrents":[null,""],"Missed Subtitle Management":[null,""],"Help & Info":[null,""],"Backup & Restore":[null,""],"Tools":[null,""],"Support SickRage":[null,""],"View Errors":[null,""],"View Warnings":[null,""],"View Log":[null,""],"Check For Updates":[null,""],"Restart":[null,""],"Shutdown":[null,""],"Logout":[null,""],"Server Status":[null,""],"View overview of snatched episodes":[null,""],"Episodes Downloaded":[null,""],"Memory used":[null,""],"Load time":[null,""],"Branch":[null,""],"Now":[null,""]}}}} \ No newline at end of file diff --git a/locale/ko_KR/LC_MESSAGES/messages.mo b/locale/ko_KR/LC_MESSAGES/messages.mo index af6326b2d56d234e04da1ea4e14713196fe76538..90a9e94f709c10751a59db7aa80690d6713536a9 100644 Binary files a/locale/ko_KR/LC_MESSAGES/messages.mo and b/locale/ko_KR/LC_MESSAGES/messages.mo differ diff --git a/locale/ko_KR/LC_MESSAGES/messages.po b/locale/ko_KR/LC_MESSAGES/messages.po index 718d0e8390359fa4a7c5edb9cfe228924c1fad33..ee561343a7c6443442377c2aca2dc8d5ae4dd7e7 100644 --- a/locale/ko_KR/LC_MESSAGES/messages.po +++ b/locale/ko_KR/LC_MESSAGES/messages.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: sickrage\n" "Report-Msgid-Bugs-To: miigotu@gmail.com\n" -"POT-Creation-Date: 2017-03-25 09:28-0700\n" -"PO-Revision-Date: 2017-03-25 12:29-0400\n" +"POT-Creation-Date: 2017-03-28 09:10-0700\n" +"PO-Revision-Date: 2017-03-28 12:12-0400\n" "Last-Translator: miigotu <miigotu@gmail.com>\n" "Language-Team: Korean\n" "MIME-Version: 1.0\n" @@ -90,7 +90,7 @@ msgid "Biography" msgstr "" #: gui/slick/views/config_general.mako:78 gui/slick/views/layouts/main.mako:145 -#: sickbeard/__init__.py:79 sickbeard/webserve.py:3807 +#: sickbeard/__init__.py:79 sickbeard/webserve.py:3778 msgid "History" msgstr "" @@ -103,7 +103,7 @@ msgid "Western" msgstr "" #: gui/slick/views/config_general.mako:79 gui/slick/views/layouts/main.mako:221 -#: sickbeard/__init__.py:80 sickbeard/webserve.py:2385 +#: sickbeard/__init__.py:80 sickbeard/webserve.py:2384 msgid "News" msgstr "" @@ -238,6 +238,34 @@ msgstr "" msgid "Subtitled" msgstr "" +#: sickbeard/helpers.py:1887 +msgid "For best results please set the Download Station alias as" +msgstr "" + +#: sickbeard/helpers.py:1888 +msgid "You can check this setting in the Synology DSM" +msgstr "" + +#: sickbeard/helpers.py:1888 sickbeard/helpers.py:1890 +msgid "Control Panel" +msgstr "" + +#: sickbeard/helpers.py:1888 +msgid "Application Portal" +msgstr "" + +#: sickbeard/helpers.py:1889 +msgid "Make sure you allow DSM to be embedded with iFrames too in" +msgstr "" + +#: sickbeard/helpers.py:1890 +msgid "DSM Settings" +msgstr "" + +#: sickbeard/helpers.py:1890 +msgid "Security" +msgstr "" + #: sickbeard/logger.py:474 msgid "<No Filter>" msgstr "" @@ -308,15 +336,15 @@ msgstr "" msgid "Event" msgstr "" -#: sickbeard/logger.py:491 sickbeard/webserve.py:1339 sickbeard/webserve.py:1342 -#: sickbeard/webserve.py:1520 sickbeard/webserve.py:1529 sickbeard/webserve.py:1717 -#: sickbeard/webserve.py:1728 sickbeard/webserve.py:1751 sickbeard/webserve.py:1764 -#: sickbeard/webserve.py:1769 sickbeard/webserve.py:1785 sickbeard/webserve.py:1790 -#: sickbeard/webserve.py:1854 sickbeard/webserve.py:1857 sickbeard/webserve.py:1863 -#: sickbeard/webserve.py:1866 sickbeard/webserve.py:1873 sickbeard/webserve.py:1876 -#: sickbeard/webserve.py:1899 sickbeard/webserve.py:1997 sickbeard/webserve.py:2002 -#: sickbeard/webserve.py:2007 sickbeard/webserve.py:2036 sickbeard/webserve.py:2040 -#: sickbeard/webserve.py:2045 +#: sickbeard/logger.py:491 sickbeard/webserve.py:1338 sickbeard/webserve.py:1341 +#: sickbeard/webserve.py:1519 sickbeard/webserve.py:1528 sickbeard/webserve.py:1716 +#: sickbeard/webserve.py:1727 sickbeard/webserve.py:1750 sickbeard/webserve.py:1763 +#: sickbeard/webserve.py:1768 sickbeard/webserve.py:1784 sickbeard/webserve.py:1789 +#: sickbeard/webserve.py:1853 sickbeard/webserve.py:1856 sickbeard/webserve.py:1862 +#: sickbeard/webserve.py:1865 sickbeard/webserve.py:1872 sickbeard/webserve.py:1875 +#: sickbeard/webserve.py:1898 sickbeard/webserve.py:1996 sickbeard/webserve.py:2001 +#: sickbeard/webserve.py:2006 sickbeard/webserve.py:2035 sickbeard/webserve.py:2039 +#: sickbeard/webserve.py:2044 msgid "Error" msgstr "" @@ -333,6 +361,7 @@ msgstr "" msgid "Main" msgstr "" +#: gui/slick/js/ajaxEpSearch.js:146 gui/slick/js/ajaxEpSearch.js:147 #: gui/slick/views/inc_home_showList.mako:27 sickbeard/show_queue.py:298 msgid "Loading" msgstr "" @@ -372,867 +401,835 @@ msgstr "" msgid "No update needed" msgstr "" -#: sickbeard/webserve.py:170 +#: sickbeard/webserve.py:171 msgid "Mako Error" msgstr "" -#: sickbeard/webserve.py:195 +#: sickbeard/webserve.py:196 msgid "Oops" msgstr "" -#: sickbeard/webserve.py:197 +#: sickbeard/webserve.py:198 msgid "Wrong API key used" msgstr "" -#: gui/slick/views/login.mako:34 sickbeard/webserve.py:302 +#: gui/slick/views/login.mako:34 sickbeard/webserve.py:303 msgid "Login" msgstr "" -#: sickbeard/webserve.py:406 +#: sickbeard/webserve.py:392 msgid "API Key not generated" msgstr "" -#: sickbeard/webserve.py:409 +#: sickbeard/webserve.py:395 msgid "API Builder" msgstr "" #: gui/slick/views/config_general.mako:77 gui/slick/views/layouts/main.mako:141 -#: sickbeard/webserve.py:512 +#: sickbeard/webserve.py:498 msgid "Schedule" msgstr "" -#: sickbeard/webserve.py:610 +#: sickbeard/webserve.py:609 msgid "Test 1" msgstr "" -#: sickbeard/webserve.py:610 +#: sickbeard/webserve.py:609 msgid "This is test number 1" msgstr "" -#: sickbeard/webserve.py:611 +#: sickbeard/webserve.py:610 msgid "Test 2" msgstr "" -#: sickbeard/webserve.py:611 +#: sickbeard/webserve.py:610 msgid "This is test number 2" msgstr "" -#: sickbeard/webserve.py:634 +#: sickbeard/webserve.py:633 msgid "You're using the {branch} branch. Please use 'master' unless specifically asked" msgstr "" -#: sickbeard/webserve.py:698 sickbeard/webserve.py:703 +#: sickbeard/webserve.py:697 sickbeard/webserve.py:702 msgid "Invalid show parameters" msgstr "" -#: sickbeard/webserve.py:710 +#: sickbeard/webserve.py:709 msgid "Invalid parameters" msgstr "" -#: sickbeard/webserve.py:713 sickbeard/webserve.py:1899 +#: sickbeard/webserve.py:712 sickbeard/webserve.py:1898 msgid "Episode couldn't be retrieved" msgstr "" -#: sickbeard/webserve.py:759 sickbeard/webserve.py:1268 sickbeard/webserve.py:1297 +#: sickbeard/webserve.py:758 sickbeard/webserve.py:1267 sickbeard/webserve.py:1296 msgid "Home" msgstr "" -#: gui/slick/views/layouts/main.mako:127 sickbeard/webserve.py:759 +#: gui/slick/views/layouts/main.mako:127 sickbeard/webserve.py:758 msgid "Show List" msgstr "" -#: sickbeard/webserve.py:807 +#: sickbeard/webserve.py:806 msgid "Error: Unsupported Request. Send jsonp request with 'callback' variable in the query string." msgstr "" -#: sickbeard/webserve.py:851 +#: sickbeard/webserve.py:850 msgid "Success. Connected and authenticated" msgstr "" -#: sickbeard/webserve.py:853 +#: sickbeard/webserve.py:852 msgid "Authentication failed. SABnzbd expects" msgstr "" -#: sickbeard/webserve.py:853 +#: sickbeard/webserve.py:852 msgid "as authentication method" msgstr "" -#: sickbeard/webserve.py:855 +#: sickbeard/webserve.py:854 msgid "Unable to connect to host" msgstr "" -#: sickbeard/webserve.py:876 +#: sickbeard/webserve.py:875 msgid "SMS sent successfully" msgstr "" -#: sickbeard/webserve.py:878 +#: sickbeard/webserve.py:877 msgid "Problem sending SMS: {message}" msgstr "" -#: sickbeard/webserve.py:885 +#: sickbeard/webserve.py:884 msgid "Telegram notification succeeded. Check your Telegram clients to make sure it worked" msgstr "" -#: sickbeard/webserve.py:887 +#: sickbeard/webserve.py:886 msgid "Error sending Telegram notification: {message}" msgstr "" -#: sickbeard/webserve.py:894 +#: sickbeard/webserve.py:893 msgid "join notification succeeded. Check your join clients to make sure it worked" msgstr "" -#: sickbeard/webserve.py:896 +#: sickbeard/webserve.py:895 msgid "Error sending join notification: {message}" msgstr "" -#: sickbeard/webserve.py:906 +#: sickbeard/webserve.py:905 msgid " with password" msgstr "" -#: sickbeard/webserve.py:908 +#: sickbeard/webserve.py:907 msgid "Registered and Tested growl successfully {growl_host}" msgstr "" -#: sickbeard/webserve.py:910 +#: sickbeard/webserve.py:909 msgid "Registration and Testing of growl failed {growl_host}" msgstr "" -#: sickbeard/webserve.py:917 +#: sickbeard/webserve.py:916 msgid "Test prowl notice sent successfully" msgstr "" -#: sickbeard/webserve.py:919 +#: sickbeard/webserve.py:918 msgid "Test prowl notice failed" msgstr "" -#: sickbeard/webserve.py:926 +#: sickbeard/webserve.py:925 msgid "Boxcar2 notification succeeded. Check your Boxcar2 clients to make sure it worked" msgstr "" -#: sickbeard/webserve.py:928 +#: sickbeard/webserve.py:927 msgid "Error sending Boxcar2 notification" msgstr "" -#: sickbeard/webserve.py:935 +#: sickbeard/webserve.py:934 msgid "Pushover notification succeeded. Check your Pushover clients to make sure it worked" msgstr "" -#: sickbeard/webserve.py:937 +#: sickbeard/webserve.py:936 msgid "Error sending Pushover notification" msgstr "" -#: sickbeard/webserve.py:949 +#: sickbeard/webserve.py:948 msgid "Key verification successful" msgstr "" -#: sickbeard/webserve.py:951 +#: sickbeard/webserve.py:950 msgid "Unable to verify key" msgstr "" -#: sickbeard/webserve.py:958 +#: sickbeard/webserve.py:957 msgid "Tweet successful, check your twitter to make sure it worked" msgstr "" -#: sickbeard/webserve.py:960 +#: sickbeard/webserve.py:959 msgid "Error sending tweet" msgstr "" -#: sickbeard/webserve.py:965 +#: sickbeard/webserve.py:964 msgid "Please enter a valid account sid" msgstr "" -#: sickbeard/webserve.py:968 +#: sickbeard/webserve.py:967 msgid "Please enter a valid auth token" msgstr "" -#: sickbeard/webserve.py:971 +#: sickbeard/webserve.py:970 msgid "Please enter a valid phone sid" msgstr "" -#: sickbeard/webserve.py:974 +#: sickbeard/webserve.py:973 msgid "Please format the phone number as \"+1-###-###-####\"" msgstr "" -#: sickbeard/webserve.py:978 +#: sickbeard/webserve.py:977 msgid "Authorization successful and number ownership verified" msgstr "" -#: sickbeard/webserve.py:980 +#: sickbeard/webserve.py:979 msgid "Error sending sms" msgstr "" -#: sickbeard/webserve.py:986 +#: sickbeard/webserve.py:985 msgid "Slack message successful" msgstr "" -#: sickbeard/webserve.py:988 +#: sickbeard/webserve.py:987 msgid "Slack message failed" msgstr "" -#: sickbeard/webserve.py:994 +#: sickbeard/webserve.py:993 msgid "Discord message successful" msgstr "" -#: sickbeard/webserve.py:996 +#: sickbeard/webserve.py:995 msgid "Discord message failed" msgstr "" -#: sickbeard/webserve.py:1006 +#: sickbeard/webserve.py:1005 msgid "Test KODI notice sent successfully to {kodi_host}" msgstr "" -#: sickbeard/webserve.py:1008 +#: sickbeard/webserve.py:1007 msgid "Test KODI notice failed to {kodi_host}" msgstr "" -#: sickbeard/webserve.py:1023 +#: sickbeard/webserve.py:1022 msgid "Successful test notice sent to Plex Home Theater ... {plex_clients}" msgstr "" -#: sickbeard/webserve.py:1025 +#: sickbeard/webserve.py:1024 msgid "Test failed for Plex Home Theater ... {plex_clients}" msgstr "" -#: sickbeard/webserve.py:1028 +#: sickbeard/webserve.py:1027 msgid "Tested Plex Home Theater(s)" msgstr "" -#: sickbeard/webserve.py:1042 +#: sickbeard/webserve.py:1041 msgid "Successful test of Plex Media Server(s) ... {plex_servers}" msgstr "" -#: sickbeard/webserve.py:1044 +#: sickbeard/webserve.py:1043 msgid "Test failed, No Plex Media Server host specified" msgstr "" -#: sickbeard/webserve.py:1046 +#: sickbeard/webserve.py:1045 msgid "Test failed for Plex Media Server(s) ... {plex_servers}" msgstr "" -#: sickbeard/webserve.py:1049 +#: sickbeard/webserve.py:1048 msgid "Tested Plex Media Server host(s)" msgstr "" -#: sickbeard/webserve.py:1057 +#: sickbeard/webserve.py:1056 msgid "Tried sending desktop notification via libnotify" msgstr "" -#: sickbeard/webserve.py:1066 +#: sickbeard/webserve.py:1065 msgid "Test notice sent successfully to {emby_host}" msgstr "" -#: sickbeard/webserve.py:1068 +#: sickbeard/webserve.py:1067 msgid "Test notice failed to {emby_host}" msgstr "" -#: sickbeard/webserve.py:1076 +#: sickbeard/webserve.py:1075 msgid "Successfully started the scan update" msgstr "" -#: sickbeard/webserve.py:1078 +#: sickbeard/webserve.py:1077 msgid "Test failed to start the scan update" msgstr "" -#: sickbeard/webserve.py:1097 +#: sickbeard/webserve.py:1096 msgid "Test notice sent successfully to {nmj2_host}" msgstr "" -#: sickbeard/webserve.py:1099 +#: sickbeard/webserve.py:1098 msgid "Test notice failed to {nmj2_host}" msgstr "" -#: sickbeard/webserve.py:1119 +#: sickbeard/webserve.py:1118 msgid "Trakt Authorized" msgstr "" -#: sickbeard/webserve.py:1120 +#: sickbeard/webserve.py:1119 msgid "Trakt Not Authorized!" msgstr "" -#: sickbeard/webserve.py:1184 +#: sickbeard/webserve.py:1183 msgid "Test email sent successfully! Check inbox." msgstr "" -#: sickbeard/webserve.py:1186 +#: sickbeard/webserve.py:1185 msgid "ERROR: {last_error}" msgstr "" -#: sickbeard/webserve.py:1193 +#: sickbeard/webserve.py:1192 msgid "Test NMA notice sent successfully" msgstr "" -#: sickbeard/webserve.py:1195 +#: sickbeard/webserve.py:1194 msgid "Test NMA notice failed" msgstr "" -#: sickbeard/webserve.py:1202 +#: sickbeard/webserve.py:1201 msgid "Pushalot notification succeeded. Check your Pushalot clients to make sure it worked" msgstr "" -#: sickbeard/webserve.py:1204 +#: sickbeard/webserve.py:1203 msgid "Error sending Pushalot notification" msgstr "" -#: sickbeard/webserve.py:1211 +#: sickbeard/webserve.py:1210 msgid "Pushbullet notification succeeded. Check your device to make sure it worked" msgstr "" -#: sickbeard/webserve.py:1213 sickbeard/webserve.py:1223 sickbeard/webserve.py:1232 +#: sickbeard/webserve.py:1212 sickbeard/webserve.py:1222 sickbeard/webserve.py:1231 msgid "Error sending Pushbullet notification" msgstr "" #: gui/slick/views/displayShow.mako:436 gui/slick/views/inc_home_showList.mako:174 -#: gui/slick/views/manage.mako:49 sickbeard/webserve.py:1249 +#: gui/slick/views/manage.mako:49 sickbeard/webserve.py:1248 msgid "Status" msgstr "" -#: sickbeard/webserve.py:1268 sickbeard/webserve.py:1297 +#: sickbeard/webserve.py:1267 sickbeard/webserve.py:1296 msgid "Restarting SickRage" msgstr "" -#: sickbeard/webserve.py:1300 +#: sickbeard/webserve.py:1299 msgid "Update Failed" msgstr "" -#: sickbeard/webserve.py:1301 +#: sickbeard/webserve.py:1300 msgid "Update wasn't successful, not restarting. Check your log for more information." msgstr "" -#: sickbeard/webserve.py:1308 +#: sickbeard/webserve.py:1307 msgid "Checking out branch" msgstr "" -#: sickbeard/webserve.py:1311 +#: sickbeard/webserve.py:1310 msgid "Already on branch" msgstr "" -#: sickbeard/webserve.py:1339 +#: sickbeard/webserve.py:1338 msgid "Invalid show ID: {show}" msgstr "" -#: sickbeard/webserve.py:1342 sickbeard/webserve.py:1871 sickbeard/webserve.py:2002 -#: sickbeard/webserve.py:2040 +#: sickbeard/webserve.py:1341 sickbeard/webserve.py:1870 sickbeard/webserve.py:2001 +#: sickbeard/webserve.py:2039 msgid "Show not in show list" msgstr "" #: gui/slick/views/inc_rootDirs.mako:31 gui/slick/views/manage.mako:38 -#: gui/slick/views/manage_massEdit.mako:74 sickbeard/webserve.py:1358 -#: sickbeard/webserve.py:2027 +#: gui/slick/views/manage_massEdit.mako:74 sickbeard/webserve.py:1357 +#: sickbeard/webserve.py:2026 msgid "Edit" msgstr "" -#: sickbeard/webserve.py:1368 +#: sickbeard/webserve.py:1367 msgid "This show is in the process of being downloaded - the info below is incomplete." msgstr "" -#: sickbeard/webserve.py:1371 +#: sickbeard/webserve.py:1370 msgid "The information on this page is in the process of being updated." msgstr "" -#: sickbeard/webserve.py:1374 +#: sickbeard/webserve.py:1373 msgid "The episodes below are currently being refreshed from disk" msgstr "" -#: sickbeard/webserve.py:1377 +#: sickbeard/webserve.py:1376 msgid "Currently downloading subtitles for this show" msgstr "" -#: sickbeard/webserve.py:1380 +#: sickbeard/webserve.py:1379 msgid "This show is queued to be refreshed." msgstr "" -#: sickbeard/webserve.py:1383 +#: sickbeard/webserve.py:1382 msgid "This show is queued and awaiting an update." msgstr "" -#: sickbeard/webserve.py:1386 +#: sickbeard/webserve.py:1385 msgid "This show is queued and awaiting subtitles download." msgstr "" -#: gui/slick/js/core.js:4081 sickbeard/webserve.py:1391 +#: gui/slick/js/core.js:4081 sickbeard/webserve.py:1390 msgid "Resume" msgstr "" #: gui/slick/js/core.js:4081 gui/slick/views/viewlogs.mako:12 -#: sickbeard/webserve.py:1393 +#: sickbeard/webserve.py:1392 msgid "Pause" msgstr "" #: gui/slick/views/editShow.mako:345 gui/slick/views/inc_blackwhitelist.mako:40 #: gui/slick/views/inc_blackwhitelist.mako:85 gui/slick/views/manage.mako:58 -#: gui/slick/views/manage_failedDownloads.mako:43 sickbeard/webserve.py:1395 +#: gui/slick/views/manage_failedDownloads.mako:43 sickbeard/webserve.py:1394 msgid "Remove" msgstr "" -#: sickbeard/webserve.py:1396 +#: sickbeard/webserve.py:1395 msgid "Re-scan files" msgstr "" -#: sickbeard/webserve.py:1397 +#: sickbeard/webserve.py:1396 msgid "Force Full Update" msgstr "" -#: sickbeard/webserve.py:1398 +#: sickbeard/webserve.py:1397 msgid "Update show in KODI" msgstr "" -#: sickbeard/webserve.py:1399 +#: sickbeard/webserve.py:1398 msgid "Update show in Emby" msgstr "" -#: sickbeard/webserve.py:1402 +#: sickbeard/webserve.py:1401 msgid "Hide specials" msgstr "" -#: sickbeard/webserve.py:1404 +#: sickbeard/webserve.py:1403 msgid "Show specials" msgstr "" -#: sickbeard/webserve.py:1406 sickbeard/webserve.py:2030 sickbeard/webserve.py:2031 +#: sickbeard/webserve.py:1405 sickbeard/webserve.py:2029 sickbeard/webserve.py:2030 msgid "Preview Rename" msgstr "" -#: sickbeard/webserve.py:1409 +#: sickbeard/webserve.py:1408 msgid "Download Subtitles" msgstr "" -#: sickbeard/webserve.py:1498 +#: sickbeard/webserve.py:1497 msgid "No scene exceptions" msgstr "" -#: sickbeard/webserve.py:1516 sickbeard/webserve.py:1764 sickbeard/webserve.py:1785 +#: sickbeard/webserve.py:1515 sickbeard/webserve.py:1763 sickbeard/webserve.py:1784 msgid "Invalid show ID" msgstr "" -#: sickbeard/webserve.py:1525 sickbeard/webserve.py:1769 sickbeard/webserve.py:1790 +#: sickbeard/webserve.py:1524 sickbeard/webserve.py:1768 sickbeard/webserve.py:1789 msgid "Unable to find the specified show" msgstr "" -#: sickbeard/webserve.py:1550 +#: sickbeard/webserve.py:1549 msgid "Unable to retreive Fansub Groups from AniDB." msgstr "" -#: sickbeard/webserve.py:1559 sickbeard/webserve.py:1561 +#: sickbeard/webserve.py:1558 sickbeard/webserve.py:1560 msgid "Edit Show" msgstr "" -#: sickbeard/webserve.py:1637 sickbeard/webserve.py:1671 +#: sickbeard/webserve.py:1636 sickbeard/webserve.py:1670 msgid "Unable to refresh this show: {error}" msgstr "" -#: sickbeard/webserve.py:1663 +#: sickbeard/webserve.py:1662 msgid "New location <tt>{location}</tt> does not exist" msgstr "" -#: sickbeard/webserve.py:1688 +#: sickbeard/webserve.py:1687 msgid "Unable to update show: {error}" msgstr "" -#: sickbeard/webserve.py:1695 +#: sickbeard/webserve.py:1694 msgid "Unable to force an update on scene exceptions of the show." msgstr "" -#: sickbeard/webserve.py:1702 +#: sickbeard/webserve.py:1701 msgid "Unable to force an update on scene numbering of the show." msgstr "" -#: sickbeard/webserve.py:1708 sickbeard/webserve.py:3540 +#: sickbeard/webserve.py:1707 sickbeard/webserve.py:3539 msgid "{num_errors:d} error{plural} while saving changes:" msgstr "" -#: sickbeard/webserve.py:1719 +#: sickbeard/webserve.py:1718 msgid "{show_name} has been {paused_resumed}" msgstr "" -#: sickbeard/webserve.py:1719 +#: sickbeard/webserve.py:1718 msgid "resumed" msgstr "" -#: sickbeard/webserve.py:1719 +#: sickbeard/webserve.py:1718 msgid "paused" msgstr "" -#: sickbeard/webserve.py:1731 +#: sickbeard/webserve.py:1730 msgid "{show_name} has been {deleted_trashed} {was_deleted}" msgstr "" -#: sickbeard/webserve.py:1733 +#: sickbeard/webserve.py:1732 msgid "deleted" msgstr "" -#: sickbeard/webserve.py:1733 +#: sickbeard/webserve.py:1732 msgid "trashed" msgstr "" -#: sickbeard/webserve.py:1734 +#: sickbeard/webserve.py:1733 msgid "(media untouched)" msgstr "" -#: sickbeard/webserve.py:1734 +#: sickbeard/webserve.py:1733 msgid "(with all related media)" msgstr "" -#: sickbeard/webserve.py:1755 +#: sickbeard/webserve.py:1754 msgid "Unable to refresh this show." msgstr "" -#: sickbeard/webserve.py:1775 +#: sickbeard/webserve.py:1774 msgid "Unable to update this show." msgstr "" -#: sickbeard/webserve.py:1814 +#: sickbeard/webserve.py:1813 msgid "Library update command sent to KODI host(s)): {kodi_hosts}" msgstr "" -#: sickbeard/webserve.py:1816 +#: sickbeard/webserve.py:1815 msgid "Unable to contact one or more KODI host(s)): {kodi_hosts}" msgstr "" -#: sickbeard/webserve.py:1825 +#: sickbeard/webserve.py:1824 msgid "Library update command sent to Plex Media Server host: {plex_server}" msgstr "" -#: sickbeard/webserve.py:1828 +#: sickbeard/webserve.py:1827 msgid "Unable to contact Plex Media Server host: {plex_server}" msgstr "" -#: sickbeard/webserve.py:1840 +#: sickbeard/webserve.py:1839 msgid "Library update command sent to Emby host: {emby_host}" msgstr "" -#: sickbeard/webserve.py:1842 +#: sickbeard/webserve.py:1841 msgid "Unable to contact Emby host: {emby_host}" msgstr "" -#: sickbeard/webserve.py:1852 sickbeard/webserve.py:2036 +#: sickbeard/webserve.py:1851 sickbeard/webserve.py:2035 msgid "You must specify a show and at least one episode" msgstr "" -#: sickbeard/webserve.py:1861 +#: sickbeard/webserve.py:1860 msgid "Invalid status" msgstr "" -#: sickbeard/webserve.py:1954 +#: sickbeard/webserve.py:1953 msgid "Backlog was automatically started for the following seasons of <b>{show_name}</b>" msgstr "" #: gui/slick/views/displayShow.mako:74 gui/slick/views/displayShow.mako:79 -#: gui/slick/views/displayShow.mako:404 sickbeard/webserve.py:1961 -#: sickbeard/webserve.py:1980 +#: gui/slick/views/displayShow.mako:404 sickbeard/webserve.py:1960 +#: sickbeard/webserve.py:1979 msgid "Season" msgstr "" -#: sickbeard/webserve.py:1968 +#: sickbeard/webserve.py:1967 msgid "Backlog started" msgstr "" -#: sickbeard/webserve.py:1973 +#: sickbeard/webserve.py:1972 msgid "Retrying Search was automatically started for the following season of <b>{show_name}</b>" msgstr "" -#: sickbeard/webserve.py:1987 +#: sickbeard/webserve.py:1986 msgid "Retry Search started" msgstr "" -#: sickbeard/webserve.py:1997 +#: sickbeard/webserve.py:1996 msgid "You must specify a show" msgstr "" -#: sickbeard/webserve.py:2007 sickbeard/webserve.py:2045 +#: sickbeard/webserve.py:2006 sickbeard/webserve.py:2044 msgid "Can't rename episodes when the show dir is missing." msgstr "" -#: sickbeard/webserve.py:2212 sickbeard/webserve.py:2233 +#: sickbeard/webserve.py:2211 sickbeard/webserve.py:2232 msgid "New subtitles downloaded: {new_subtitle_languages}" msgstr "" -#: sickbeard/webserve.py:2215 sickbeard/webserve.py:2236 +#: sickbeard/webserve.py:2214 sickbeard/webserve.py:2235 msgid "No subtitles downloaded" msgstr "" #: gui/slick/views/config_general.mako:80 gui/slick/views/layouts/main.mako:222 -#: sickbeard/webserve.py:2363 +#: sickbeard/webserve.py:2362 msgid "IRC" msgstr "" -#: sickbeard/webserve.py:2376 +#: sickbeard/webserve.py:2375 msgid "Could not load news from the repo. [Click here for news.md])({news_url})" msgstr "" -#: sickbeard/webserve.py:2383 sickbeard/webserve.py:2401 +#: sickbeard/webserve.py:2382 sickbeard/webserve.py:2400 msgid "The was a problem connecting to github, please refresh and try again" msgstr "" -#: sickbeard/webserve.py:2398 +#: sickbeard/webserve.py:2397 msgid "Could not load changes from the repo. [Click here for CHANGES.md]({changes_url})" msgstr "" -#: gui/slick/views/layouts/main.mako:223 sickbeard/webserve.py:2403 +#: gui/slick/views/layouts/main.mako:223 sickbeard/webserve.py:2402 msgid "Changelog" msgstr "" -#: gui/slick/views/layouts/main.mako:190 sickbeard/webserve.py:2413 -#: sickbeard/webserve.py:3855 sickbeard/webserve.py:4341 +#: gui/slick/views/layouts/main.mako:190 sickbeard/webserve.py:2412 +#: sickbeard/webserve.py:3826 sickbeard/webserve.py:4312 msgid "Post Processing" msgstr "" -#: gui/slick/views/layouts/main.mako:128 sickbeard/webserve.py:2445 +#: gui/slick/views/layouts/main.mako:128 sickbeard/webserve.py:2444 msgid "Add Shows" msgstr "" -#: sickbeard/webserve.py:2510 +#: sickbeard/webserve.py:2509 msgid "No folders selected." msgstr "" -#: sickbeard/webserve.py:2632 +#: sickbeard/webserve.py:2631 msgid "New Show" msgstr "" -#: sickbeard/webserve.py:2647 +#: sickbeard/webserve.py:2646 msgid "Trending Shows" msgstr "" -#: sickbeard/webserve.py:2649 sickbeard/webserve.py:2772 +#: sickbeard/webserve.py:2648 sickbeard/webserve.py:2771 msgid "Popular Shows" msgstr "" -#: sickbeard/webserve.py:2651 sickbeard/webserve.py:2665 +#: sickbeard/webserve.py:2650 sickbeard/webserve.py:2664 msgid "Most Anticipated Shows" msgstr "" -#: sickbeard/webserve.py:2653 +#: sickbeard/webserve.py:2652 msgid "Most Collected Shows" msgstr "" -#: sickbeard/webserve.py:2655 +#: sickbeard/webserve.py:2654 msgid "Most Watched Shows" msgstr "" -#: sickbeard/webserve.py:2657 +#: sickbeard/webserve.py:2656 msgid "Most Played Shows" msgstr "" -#: sickbeard/webserve.py:2659 +#: sickbeard/webserve.py:2658 msgid "Recommended Shows" msgstr "" -#: gui/slick/views/addShows_trendingShows.mako:60 sickbeard/webserve.py:2661 +#: gui/slick/views/addShows_trendingShows.mako:60 sickbeard/webserve.py:2660 msgid "New Shows" msgstr "" -#: gui/slick/views/addShows_trendingShows.mako:61 sickbeard/webserve.py:2663 +#: gui/slick/views/addShows_trendingShows.mako:61 sickbeard/webserve.py:2662 msgid "Season Premieres" msgstr "" -#: sickbeard/webserve.py:2792 sickbeard/webserve.py:2793 +#: sickbeard/webserve.py:2791 sickbeard/webserve.py:2792 msgid "Existing Show" msgstr "" -#: sickbeard/webserve.py:2871 +#: sickbeard/webserve.py:2870 msgid "No root directories setup, please go back and add one." msgstr "" -#: sickbeard/webserve.py:2883 sickbeard/webserve.py:3002 +#: sickbeard/webserve.py:2882 sickbeard/webserve.py:3001 msgid "Show added" msgstr "" -#: sickbeard/webserve.py:2883 +#: sickbeard/webserve.py:2882 msgid "Adding the specified show {show_name}" msgstr "" -#: sickbeard/webserve.py:2924 +#: sickbeard/webserve.py:2923 msgid "Missing params, no Indexer ID or folder: {show_to_add} and {root_dir}/{show_path}" msgstr "" -#: sickbeard/webserve.py:2933 +#: sickbeard/webserve.py:2932 msgid "Unknown error. Unable to add show due to problem with show selection." msgstr "" -#: sickbeard/webserve.py:2957 sickbeard/webserve.py:2967 +#: sickbeard/webserve.py:2956 sickbeard/webserve.py:2966 msgid "Unable to add show" msgstr "" -#: sickbeard/webserve.py:2957 +#: sickbeard/webserve.py:2956 msgid "Folder {show_dir} exists already" msgstr "" -#: sickbeard/webserve.py:2968 +#: sickbeard/webserve.py:2967 msgid "Unable to create the folder {show_dir}, can't add the show" msgstr "" -#: sickbeard/webserve.py:3002 +#: sickbeard/webserve.py:3001 msgid "Adding the specified show into {show_dir}" msgstr "" -#: sickbeard/webserve.py:3078 +#: sickbeard/webserve.py:3077 msgid "Shows Added" msgstr "" -#: sickbeard/webserve.py:3079 +#: sickbeard/webserve.py:3078 msgid "Automatically added {num_shows} from their existing metadata files" msgstr "" -#: gui/slick/views/layouts/main.mako:153 sickbeard/webserve.py:3096 +#: gui/slick/views/layouts/main.mako:153 sickbeard/webserve.py:3095 msgid "Mass Update" msgstr "" -#: sickbeard/webserve.py:3134 sickbeard/webserve.py:3161 sickbeard/webserve.py:3237 -#: sickbeard/webserve.py:3238 +#: sickbeard/webserve.py:3133 sickbeard/webserve.py:3160 sickbeard/webserve.py:3236 +#: sickbeard/webserve.py:3237 msgid "Episode Overview" msgstr "" -#: sickbeard/webserve.py:3270 +#: sickbeard/webserve.py:3269 msgid "Missing Subtitles" msgstr "" -#: gui/slick/views/layouts/main.mako:154 sickbeard/webserve.py:3356 -#: sickbeard/webserve.py:3357 +#: gui/slick/views/layouts/main.mako:154 sickbeard/webserve.py:3355 +#: sickbeard/webserve.py:3356 msgid "Backlog Overview" msgstr "" -#: sickbeard/webserve.py:3481 +#: sickbeard/webserve.py:3480 msgid "Mass Edit" msgstr "" -#: sickbeard/webserve.py:3586 +#: sickbeard/webserve.py:3585 msgid "Unable to update show: {excption_format}" msgstr "" -#: sickbeard/webserve.py:3594 +#: sickbeard/webserve.py:3593 msgid "Unable to refresh show {show_name}: {excption_format}" msgstr "" -#: sickbeard/webserve.py:3605 +#: sickbeard/webserve.py:3604 msgid "Errors encountered" msgstr "" -#: gui/slick/views/config_general.mako:261 sickbeard/webserve.py:3611 +#: gui/slick/views/config_general.mako:261 sickbeard/webserve.py:3610 msgid "Updates" msgstr "" -#: sickbeard/webserve.py:3616 +#: sickbeard/webserve.py:3615 msgid "Refreshes" msgstr "" -#: sickbeard/webserve.py:3621 +#: sickbeard/webserve.py:3620 msgid "Renames" msgstr "" #: gui/slick/views/displayShow.mako:260 gui/slick/views/displayShow.mako:435 #: gui/slick/views/editShow.mako:119 gui/slick/views/inc_addShowOptions.mako:20 -#: gui/slick/views/manage_massEdit.mako:262 sickbeard/webserve.py:3626 -#: sickbeard/webserve.py:5244 +#: gui/slick/views/manage_massEdit.mako:262 sickbeard/webserve.py:3625 +#: sickbeard/webserve.py:5215 msgid "Subtitles" msgstr "" -#: sickbeard/webserve.py:3631 +#: sickbeard/webserve.py:3630 msgid "The following actions were queued" msgstr "" -#: sickbeard/webserve.py:3651 -msgid "For best results please set the Download Station alias as" -msgstr "" - -#: sickbeard/webserve.py:3652 -msgid "You can check this setting in the Synology DSM" -msgstr "" - -#: sickbeard/webserve.py:3652 sickbeard/webserve.py:3654 -msgid "Control Panel" -msgstr "" - -#: sickbeard/webserve.py:3652 -msgid "Application Portal" -msgstr "" - -#: sickbeard/webserve.py:3653 -msgid "Make sure you allow DSM to be embedded with iFrames too in" -msgstr "" - -#: sickbeard/webserve.py:3654 -msgid "DSM Settings" -msgstr "" - -#: sickbeard/webserve.py:3654 -msgid "Security" -msgstr "" - -#: gui/slick/views/layouts/main.mako:167 sickbeard/webserve.py:3662 -msgid "Manage Torrents" -msgstr "" - -#: gui/slick/views/layouts/main.mako:170 sickbeard/webserve.py:3683 +#: gui/slick/views/layouts/main.mako:170 sickbeard/webserve.py:3654 msgid "Failed Downloads" msgstr "" -#: gui/slick/views/layouts/main.mako:155 sickbeard/webserve.py:3701 +#: gui/slick/views/layouts/main.mako:155 sickbeard/webserve.py:3672 msgid "Manage Searches" msgstr "" -#: sickbeard/webserve.py:3709 +#: sickbeard/webserve.py:3680 msgid "Backlog search started" msgstr "" -#: sickbeard/webserve.py:3719 +#: sickbeard/webserve.py:3690 msgid "Daily search started" msgstr "" -#: sickbeard/webserve.py:3728 +#: sickbeard/webserve.py:3699 msgid "Find propers search started" msgstr "" -#: sickbeard/webserve.py:3737 +#: sickbeard/webserve.py:3708 msgid "Subtitle search started" msgstr "" -#: sickbeard/webserve.py:3801 +#: sickbeard/webserve.py:3772 msgid "Remove Selected" msgstr "" -#: sickbeard/webserve.py:3802 +#: sickbeard/webserve.py:3773 msgid "Clear History" msgstr "" -#: sickbeard/webserve.py:3803 +#: sickbeard/webserve.py:3774 msgid "Trim History" msgstr "" -#: sickbeard/webserve.py:3823 +#: sickbeard/webserve.py:3794 msgid "Selected history entries removed" msgstr "" -#: sickbeard/webserve.py:3830 +#: sickbeard/webserve.py:3801 msgid "History cleared" msgstr "" -#: sickbeard/webserve.py:3837 +#: sickbeard/webserve.py:3808 msgid "Removed history entries older than 30 days" msgstr "" -#: gui/slick/views/layouts/main.mako:185 sickbeard/webserve.py:3850 +#: gui/slick/views/layouts/main.mako:185 sickbeard/webserve.py:3821 msgid "General" msgstr "" -#: sickbeard/webserve.py:3851 sickbeard/webserve.py:4143 +#: sickbeard/webserve.py:3822 sickbeard/webserve.py:4114 msgid "Backup/Restore" msgstr "" -#: gui/slick/views/layouts/main.mako:187 sickbeard/webserve.py:3852 -#: sickbeard/webserve.py:4206 +#: gui/slick/views/layouts/main.mako:187 sickbeard/webserve.py:3823 +#: sickbeard/webserve.py:4177 msgid "Search Settings" msgstr "" -#: gui/slick/views/layouts/main.mako:188 sickbeard/webserve.py:3853 -#: sickbeard/webserve.py:4518 +#: gui/slick/views/layouts/main.mako:188 sickbeard/webserve.py:3824 +#: sickbeard/webserve.py:4489 msgid "Search Providers" msgstr "" -#: gui/slick/views/layouts/main.mako:189 sickbeard/webserve.py:3854 +#: gui/slick/views/layouts/main.mako:189 sickbeard/webserve.py:3825 msgid "Subtitles Settings" msgstr "" -#: gui/slick/views/layouts/main.mako:191 sickbeard/webserve.py:3856 -#: sickbeard/webserve.py:4964 +#: gui/slick/views/layouts/main.mako:191 sickbeard/webserve.py:3827 +#: sickbeard/webserve.py:4935 msgid "Notifications" msgstr "" @@ -1240,142 +1237,142 @@ msgstr "" #: gui/slick/views/home.mako:35 gui/slick/views/inc_addShowOptions.mako:79 #: gui/slick/views/inc_home_showList.mako:179 gui/slick/views/layouts/main.mako:192 #: gui/slick/views/manage.mako:44 gui/slick/views/manage_massEdit.mako:202 -#: sickbeard/webserve.py:3857 sickbeard/webserve.py:5309 +#: sickbeard/webserve.py:3828 sickbeard/webserve.py:5280 msgid "Anime" msgstr "" -#: sickbeard/webserve.py:3895 sickbeard/webserve.py:3896 +#: sickbeard/webserve.py:3866 sickbeard/webserve.py:3867 msgid "SickRage Configuration" msgstr "" -#: sickbeard/webserve.py:3910 +#: sickbeard/webserve.py:3881 msgid "Config - Shares" msgstr "" -#: sickbeard/webserve.py:3910 +#: sickbeard/webserve.py:3881 msgid "Windows Shares Configuration" msgstr "" -#: sickbeard/webserve.py:3937 +#: sickbeard/webserve.py:3908 msgid "Saved Shares" msgstr "" -#: sickbeard/webserve.py:3937 +#: sickbeard/webserve.py:3908 msgid "Your Windows share settings have been saved" msgstr "" -#: sickbeard/webserve.py:3948 +#: sickbeard/webserve.py:3919 msgid "Config - General" msgstr "" -#: sickbeard/webserve.py:3948 +#: sickbeard/webserve.py:3919 msgid "General Configuration" msgstr "" -#: sickbeard/webserve.py:3988 +#: sickbeard/webserve.py:3959 msgid "Saved Defaults" msgstr "" -#: sickbeard/webserve.py:3988 +#: sickbeard/webserve.py:3959 msgid "Your \"add show\" defaults have been set to your current selections." msgstr "" -#: sickbeard/webserve.py:4095 +#: sickbeard/webserve.py:4066 msgid "Unable to create directory {directory}, log directory not changed." msgstr "" -#: sickbeard/webserve.py:4103 +#: sickbeard/webserve.py:4074 msgid "Unable to create directory {directory}, https cert directory not changed." msgstr "" -#: sickbeard/webserve.py:4107 +#: sickbeard/webserve.py:4078 msgid "Unable to create directory {directory}, https key directory not changed." msgstr "" -#: sickbeard/webserve.py:4126 sickbeard/webserve.py:4324 sickbeard/webserve.py:4456 -#: sickbeard/webserve.py:5227 +#: sickbeard/webserve.py:4097 sickbeard/webserve.py:4295 sickbeard/webserve.py:4427 +#: sickbeard/webserve.py:5198 msgid "Error(s) Saving Configuration" msgstr "" -#: sickbeard/webserve.py:4129 sickbeard/webserve.py:4327 sickbeard/webserve.py:4458 -#: sickbeard/webserve.py:4950 sickbeard/webserve.py:5230 sickbeard/webserve.py:5294 -#: sickbeard/webserve.py:5323 +#: sickbeard/webserve.py:4100 sickbeard/webserve.py:4298 sickbeard/webserve.py:4429 +#: sickbeard/webserve.py:4921 sickbeard/webserve.py:5201 sickbeard/webserve.py:5265 +#: sickbeard/webserve.py:5294 msgid "Configuration Saved" msgstr "" -#: sickbeard/webserve.py:4142 +#: sickbeard/webserve.py:4113 msgid "Config - Backup/Restore" msgstr "" -#: sickbeard/webserve.py:4205 +#: sickbeard/webserve.py:4176 msgid "Config - Episode Search" msgstr "" -#: sickbeard/webserve.py:4340 +#: sickbeard/webserve.py:4311 msgid "Config - Post Processing" msgstr "" -#: sickbeard/webserve.py:4380 +#: sickbeard/webserve.py:4351 msgid "Unpacking Not Supported, disabling unpack setting" msgstr "" -#: sickbeard/webserve.py:4431 +#: sickbeard/webserve.py:4402 msgid "You tried saving an invalid normal naming config, not saving your naming settings" msgstr "" -#: sickbeard/webserve.py:4439 +#: sickbeard/webserve.py:4410 msgid "You tried saving an invalid anime naming config, not saving your naming settings" msgstr "" -#: sickbeard/webserve.py:4517 +#: sickbeard/webserve.py:4488 msgid "Config - Providers" msgstr "" -#: sickbeard/webserve.py:4547 +#: sickbeard/webserve.py:4518 msgid "No Provider Name specified" msgstr "" -#: sickbeard/webserve.py:4549 +#: sickbeard/webserve.py:4520 msgid "No Provider Url specified" msgstr "" -#: sickbeard/webserve.py:4551 +#: sickbeard/webserve.py:4522 msgid "No Provider Api key specified" msgstr "" -#: sickbeard/webserve.py:4963 +#: sickbeard/webserve.py:4934 msgid "Config - Notifications" msgstr "" -#: sickbeard/webserve.py:5243 +#: sickbeard/webserve.py:5214 msgid "Config - Subtitles" msgstr "" -#: sickbeard/webserve.py:5308 +#: sickbeard/webserve.py:5279 msgid "Config - Anime" msgstr "" -#: sickbeard/webserve.py:5336 +#: sickbeard/webserve.py:5307 msgid "Clear Errors" msgstr "" -#: sickbeard/webserve.py:5342 +#: sickbeard/webserve.py:5313 msgid "Clear Warnings" msgstr "" -#: sickbeard/webserve.py:5348 +#: sickbeard/webserve.py:5319 msgid "Submit Errors" msgstr "" -#: sickbeard/webserve.py:5363 +#: sickbeard/webserve.py:5334 msgid "Logs & Errors" msgstr "" -#: sickbeard/webserve.py:5388 +#: sickbeard/webserve.py:5359 msgid "Log File" msgstr "" -#: sickbeard/webserve.py:5388 +#: sickbeard/webserve.py:5359 msgid "Logs" msgstr "" @@ -1383,30 +1380,166 @@ msgstr "" msgid "This is a test notification from SickRage" msgstr "" -#: gui/slick/js/core.js:481 gui/slick/js/core.js:502 gui/slick/js/core.js:524 -#: gui/slick/js/core.js:548 gui/slick/js/core.js:573 gui/slick/js/core.js:596 -#: gui/slick/js/core.js:625 gui/slick/js/core.js:645 gui/slick/js/core.js:690 -#: gui/slick/js/core.js:769 gui/slick/js/core.js:829 gui/slick/js/core.js:849 -#: gui/slick/js/core.js:879 gui/slick/js/core.js:909 gui/slick/js/core.js:969 -#: gui/slick/js/core.js:1046 gui/slick/js/core.js:1066 gui/slick/js/core.js:1085 +#: gui/slick/js/browser.js:6 +msgid "Choose Directory" +msgstr "" + +#: gui/slick/js/core.js:443 +msgid "Select log file folder location" +msgstr "" + +#: gui/slick/js/core.js:445 +msgid "Select CSS file" +msgstr "" + +#: gui/slick/js/core.js:469 +msgid "Select backup folder to save to" +msgstr "" + +#: gui/slick/js/core.js:470 +msgid "Select backup files to restore" +msgstr "" + +#: gui/slick/js/core.js:479 gui/slick/js/core.js:500 gui/slick/js/core.js:522 +#: gui/slick/js/core.js:546 gui/slick/js/core.js:571 gui/slick/js/core.js:594 +#: gui/slick/js/core.js:623 gui/slick/js/core.js:643 gui/slick/js/core.js:688 +#: gui/slick/js/core.js:767 gui/slick/js/core.js:827 gui/slick/js/core.js:847 +#: gui/slick/js/core.js:877 gui/slick/js/core.js:907 gui/slick/js/core.js:967 +#: gui/slick/js/core.js:1044 gui/slick/js/core.js:1064 gui/slick/js/core.js:1083 msgid "Please fill out the necessary fields above." msgstr "" -#: gui/slick/js/core.js:1328 gui/slick/js/core.js:1378 gui/slick/js/core.js:1427 -#: gui/slick/js/core.js:1493 +#: gui/slick/js/core.js:680 +msgid "<b>Step 1:</b> Confirm Authorization" +msgstr "" + +#: gui/slick/js/core.js:977 +msgid "Check blacklist name; the value needs to be a trakt slug" +msgstr "" + +#: gui/slick/js/core.js:1022 +msgid "You must provide a recipient email address!" +msgstr "" + +#: gui/slick/js/core.js:1107 +msgid "You didn't supply a Pushbullet api key" +msgstr "" + +#: gui/slick/js/core.js:1133 gui/slick/js/core.js:1162 +msgid "Don't forget to save your new pushbullet settings." +msgstr "" + +#: gui/slick/js/core.js:1262 +msgid "Select TV Download Directory" +msgstr "" + +#: gui/slick/js/core.js:1263 +msgid "Select Unpack Directory" +msgstr "" + +#: gui/slick/js/core.js:1326 gui/slick/js/core.js:1376 gui/slick/js/core.js:1425 +#: gui/slick/js/core.js:1491 msgid "This pattern is invalid." msgstr "" -#: gui/slick/js/core.js:1336 gui/slick/js/core.js:1386 gui/slick/js/core.js:1435 -#: gui/slick/js/core.js:1501 +#: gui/slick/js/core.js:1334 gui/slick/js/core.js:1384 gui/slick/js/core.js:1433 +#: gui/slick/js/core.js:1499 msgid "This pattern would be invalid without the folders, using it will force \"Season Folders\" on for all shows." msgstr "" -#: gui/slick/js/core.js:1344 gui/slick/js/core.js:1394 gui/slick/js/core.js:1443 -#: gui/slick/js/core.js:1509 +#: gui/slick/js/core.js:1342 gui/slick/js/core.js:1392 gui/slick/js/core.js:1441 +#: gui/slick/js/core.js:1507 msgid "This pattern is valid." msgstr "" +#: gui/slick/js/core.js:1818 +msgid "Select .nzb black hole/watch location" +msgstr "" + +#: gui/slick/js/core.js:1819 +msgid "Select .torrent black hole/watch location" +msgstr "" + +#: gui/slick/js/core.js:1820 +msgid "Select .torrent download location" +msgstr "" + +#: gui/slick/js/core.js:1900 +msgid "Minimum seeding time is" +msgstr "" + +#: gui/slick/js/core.js:1902 +msgid "URL to your uTorrent client (e.g. http://localhost:8000)" +msgstr "" + +#: gui/slick/js/core.js:1905 +msgid "Stop seeding when inactive for" +msgstr "" + +#: gui/slick/js/core.js:1911 +msgid "URL to your Transmission client (e.g. http://localhost:9091)" +msgstr "" + +#: gui/slick/js/core.js:1921 +msgid "URL to your Deluge client (e.g. http://localhost:8112)" +msgstr "" + +#: gui/slick/js/core.js:1930 +msgid "IP or Hostname of your Deluge Daemon (e.g. scgi://localhost:58846)" +msgstr "" + +#: gui/slick/js/core.js:1937 +msgid "URL to your Synology DS client (e.g. http://localhost:5000)" +msgstr "" + +#: gui/slick/js/core.js:1941 +msgid "URL to your rTorrent client (e.g. scgi://localhost:5000 <br> or https://localhost/rutorrent/plugins/httprpc/action.php)" +msgstr "" + +#: gui/slick/js/core.js:1952 +msgid "URL to your qBittorrent client (e.g. http://localhost:8080)" +msgstr "" + +#: gui/slick/js/core.js:1962 +msgid "URL to your MLDonkey (e.g. http://localhost:4080)" +msgstr "" + +#: gui/slick/js/core.js:1974 +msgid "URL to your putio client (e.g. http://localhost:8080)" +msgstr "" + +#: gui/slick/js/core.js:1975 +msgid "<a herf=\"https://app.put.io/oauth/apps/new\" target=\"_blank\"> Create a new OAuth app for put.io</a>" +msgstr "" + +#: gui/slick/js/core.js:1977 +msgid "Put.io Parent Folder" +msgstr "" + +#: gui/slick/js/core.js:1978 +msgid "Put.io OAuth Token" +msgstr "" + +#: gui/slick/js/core.js:3383 gui/slick/views/displayShow.mako:410 +msgid "Show Episodes" +msgstr "" + +#: gui/slick/js/core.js:3388 gui/slick/views/displayShow.mako:408 +msgid "Hide Episodes" +msgstr "" + +#: gui/slick/js/core.js:3396 +msgid "Select Show Location" +msgstr "" + +#: gui/slick/js/core.js:3460 +msgid "Select Unprocessed Episode Folder" +msgstr "" + +#: gui/slick/js/core.js:3790 +msgid "DELETED" +msgstr "" + #: gui/slick/js/core.js:4082 msgid "Resume updating the log on this page." msgstr "" @@ -1415,6 +1548,26 @@ msgstr "" msgid "Pause updating the log on this page." msgstr "" +#: gui/slick/js/core.js:4323 +msgid "searching {searchingFor}..." +msgstr "" + +#: gui/slick/js/core.js:4334 +msgid "search timed out, try again or try another indexer" +msgstr "" + +#: gui/slick/js/core.js:4503 +msgid "loading folders..." +msgstr "" + +#: gui/slick/js/parsers.js:7 gui/slick/js/parsers.js:8 +#: gui/slick/js/plotTooltip.js:6 gui/slick/js/sceneExceptionsTooltip.js:6 +#: gui/slick/views/inc_home_showList.mako:209 +#: gui/slick/views/inc_home_showList.mako:215 +#: gui/slick/views/inc_home_showList.mako:231 +msgid "Loading..." +msgstr "" + #: gui/slick/views/404.mako:5 msgid "You have reached this page by accident, please check the url." msgstr "" @@ -5711,14 +5864,6 @@ msgstr "" msgid "Select Columns" msgstr "" -#: gui/slick/views/displayShow.mako:408 -msgid "Hide Episodes" -msgstr "" - -#: gui/slick/views/displayShow.mako:410 -msgid "Show Episodes" -msgstr "" - #: gui/slick/views/displayShow.mako:424 msgid "NFO" msgstr "" @@ -6232,12 +6377,6 @@ msgstr "" msgid "loading" msgstr "" -#: gui/slick/views/inc_home_showList.mako:209 -#: gui/slick/views/inc_home_showList.mako:215 -#: gui/slick/views/inc_home_showList.mako:231 -msgid "Loading..." -msgstr "" - #: gui/slick/views/inc_qualityChooser.mako:31 msgid "<p><b><u>Preferred</u></b> qualities will replace those in <b><u>allowed</u></b>, even if they are lower.</p>" msgstr "" @@ -6775,6 +6914,10 @@ msgstr "" msgid "Update Emby" msgstr "" +#: gui/slick/views/layouts/main.mako:167 +msgid "Manage Torrents" +msgstr "" + #: gui/slick/views/layouts/main.mako:173 msgid "Missed Subtitle Management" msgstr "" diff --git a/locale/lv_LV/LC_MESSAGES/messages.json b/locale/lv_LV/LC_MESSAGES/messages.json index d0ca7e79a74c2ea1007166d2e6a72e6fab9107fd..3d97890c9144e9dace45334c4a8d4b6f962b1303 100644 --- a/locale/lv_LV/LC_MESSAGES/messages.json +++ b/locale/lv_LV/LC_MESSAGES/messages.json @@ -1 +1 @@ -{"messages":{"domain":"messages","locale_data":{"messages":{"100":[null,""],"250":[null,""],"500":[null,""],"":{"domain":"messages","plural_forms":"nplurals=3; plural=(n==0 ? 0 : n%10==1 && n%100!=11 ? 1 : 2);","lang":"lv_LV"},"Drama":[null,""],"Mystery":[null,""],"Science-Fiction":[null,""],"Crime":[null,""],"Action":[null,""],"Comedy":[null,""],"Thriller":[null,""],"Animation":[null,""],"Family":[null,""],"Fantasy":[null,""],"Adventure":[null,""],"Horror":[null,""],"Film-Noir":[null,""],"Sci-Fi":[null,""],"Romance":[null,""],"Sport":[null,""],"War":[null,""],"Biography":[null,""],"History":[null,""],"Music":[null,""],"Western":[null,""],"News":[null,""],"Sitcom":[null,""],"Reality-TV":[null,""],"Documentary":[null,""],"Game-Show":[null,""],"Musical":[null,""],"Talk-Show":[null,""],"Started Download":[null,""],"Download Finished":[null,""],"Subtitle Download Finished":[null,""],"SickRage Updated":[null,""],"SickRage Updated To Commit#: ":[null,""],"SickRage new login":[null,""],"New login from IP: {0}. http://geomaplookup.net/?ip={0}":[null,""],"Repeat":[null,""],"Repeat (Separated)":[null,""],"Extend":[null,""],"Extend (Limited)":[null,""],"Extend (Limited, E-prefixed)":[null,""],"Downloaded":[null,""],"Snatched":[null,""],"Snatched (Proper)":[null,""],"Failed":[null,""],"Snatched (Best)":[null,""],"Archived":[null,""],"Unknown":[null,""],"Unaired":[null,""],"Skipped":[null,""],"Wanted":[null,""],"Ignored":[null,""],"Subtitled":[null,""],"<No Filter>":[null,""],"Daily Searcher":[null,""],"Backlog":[null,""],"Show Updater":[null,""],"Check Version":[null,""],"Show Queue":[null,""],"Search Queue (All)":[null,""],"Search Queue (Daily Searcher)":[null,""],"Search Queue (Backlog)":[null,""],"Search Queue (Manual)":[null,""],"Search Queue (Retry/Failed)":[null,""],"Search Queue (RSS)":[null,""],"Find Propers":[null,""],"Postprocessor":[null,""],"Find Subtitles":[null,""],"Trakt Checker":[null,""],"Event":[null,""],"Error":[null,""],"Tornado":[null,""],"Thread":[null,""],"Main":[null,""],"Loading":[null,""],"New update found for SickRage, starting auto-updater":[null,""],"Update was successful":[null,""],"Update failed!":[null,""],"Backup":[null,""],"Config backup in progress...":[null,""],"Config backup successful, updating...":[null,""],"Config backup failed, aborting update":[null,""],"No update needed":[null,""],"Mako Error":[null,""],"Oops":[null,""],"Wrong API key used":[null,""],"Login":[null,""],"API Key not generated":[null,""],"API Builder":[null,""],"Schedule":[null,""],"Test 1":[null,""],"This is test number 1":[null,""],"Test 2":[null,""],"This is test number 2":[null,""],"You're using the {branch} branch. Please use 'master' unless specifically asked":[null,""],"Invalid show parameters":[null,""],"Invalid parameters":[null,""],"Episode couldn't be retrieved":[null,""],"Home":[null,""],"Show List":[null,""],"Error: Unsupported Request. Send jsonp request with 'callback' variable in the query string.":[null,""],"Success. Connected and authenticated":[null,""],"Authentication failed. SABnzbd expects":[null,""],"as authentication method":[null,""],"Unable to connect to host":[null,""],"SMS sent successfully":[null,""],"Problem sending SMS: {message}":[null,""],"Telegram notification succeeded. Check your Telegram clients to make sure it worked":[null,""],"Error sending Telegram notification: {message}":[null,""],"join notification succeeded. Check your join clients to make sure it worked":[null,""],"Error sending join notification: {message}":[null,""]," with password":[null,""],"Registered and Tested growl successfully {growl_host}":[null,""],"Registration and Testing of growl failed {growl_host}":[null,""],"Test prowl notice sent successfully":[null,""],"Test prowl notice failed":[null,""],"Boxcar2 notification succeeded. Check your Boxcar2 clients to make sure it worked":[null,""],"Error sending Boxcar2 notification":[null,""],"Pushover notification succeeded. Check your Pushover clients to make sure it worked":[null,""],"Error sending Pushover notification":[null,""],"Key verification successful":[null,""],"Unable to verify key":[null,""],"Tweet successful, check your twitter to make sure it worked":[null,""],"Error sending tweet":[null,""],"Please enter a valid account sid":[null,""],"Please enter a valid auth token":[null,""],"Please enter a valid phone sid":[null,""],"Please format the phone number as \"+1-###-###-####\"":[null,""],"Authorization successful and number ownership verified":[null,""],"Error sending sms":[null,""],"Slack message successful":[null,""],"Slack message failed":[null,""],"Discord message successful":[null,""],"Discord message failed":[null,""],"Test KODI notice sent successfully to {kodi_host}":[null,""],"Test KODI notice failed to {kodi_host}":[null,""],"Successful test notice sent to Plex Home Theater ... {plex_clients}":[null,""],"Test failed for Plex Home Theater ... {plex_clients}":[null,""],"Tested Plex Home Theater(s)":[null,""],"Successful test of Plex Media Server(s) ... {plex_servers}":[null,""],"Test failed, No Plex Media Server host specified":[null,""],"Test failed for Plex Media Server(s) ... {plex_servers}":[null,""],"Tested Plex Media Server host(s)":[null,""],"Tried sending desktop notification via libnotify":[null,""],"Test notice sent successfully to {emby_host}":[null,""],"Test notice failed to {emby_host}":[null,""],"Successfully started the scan update":[null,""],"Test failed to start the scan update":[null,""],"Test notice sent successfully to {nmj2_host}":[null,""],"Test notice failed to {nmj2_host}":[null,""],"Trakt Authorized":[null,""],"Trakt Not Authorized!":[null,""],"Test email sent successfully! Check inbox.":[null,""],"ERROR: {last_error}":[null,""],"Test NMA notice sent successfully":[null,""],"Test NMA notice failed":[null,""],"Pushalot notification succeeded. Check your Pushalot clients to make sure it worked":[null,""],"Error sending Pushalot notification":[null,""],"Pushbullet notification succeeded. Check your device to make sure it worked":[null,""],"Error sending Pushbullet notification":[null,""],"Status":[null,""],"Restarting SickRage":[null,""],"Update Failed":[null,""],"Update wasn't successful, not restarting. Check your log for more information.":[null,""],"Checking out branch":[null,""],"Already on branch":[null,""],"Invalid show ID: {show}":[null,""],"Show not in show list":[null,""],"Edit":[null,""],"This show is in the process of being downloaded - the info below is incomplete.":[null,""],"The information on this page is in the process of being updated.":[null,""],"The episodes below are currently being refreshed from disk":[null,""],"Currently downloading subtitles for this show":[null,""],"This show is queued to be refreshed.":[null,""],"This show is queued and awaiting an update.":[null,""],"This show is queued and awaiting subtitles download.":[null,""],"Resume":[null,""],"Pause":[null,""],"Remove":[null,""],"Re-scan files":[null,""],"Force Full Update":[null,""],"Update show in KODI":[null,""],"Update show in Emby":[null,""],"Hide specials":[null,""],"Show specials":[null,""],"Preview Rename":[null,""],"Download Subtitles":[null,""],"No scene exceptions":[null,""],"Invalid show ID":[null,""],"Unable to find the specified show":[null,""],"Unable to retreive Fansub Groups from AniDB.":[null,""],"Edit Show":[null,""],"Unable to refresh this show: {error}":[null,""],"New location <tt>{location}</tt> does not exist":[null,""],"Unable to update show: {error}":[null,""],"Unable to force an update on scene exceptions of the show.":[null,""],"Unable to force an update on scene numbering of the show.":[null,""],"{num_errors:d} error{plural} while saving changes:":[null,""],"{show_name} has been {paused_resumed}":[null,""],"resumed":[null,""],"paused":[null,""],"{show_name} has been {deleted_trashed} {was_deleted}":[null,""],"deleted":[null,""],"trashed":[null,""],"(media untouched)":[null,""],"(with all related media)":[null,""],"Unable to refresh this show.":[null,""],"Unable to update this show.":[null,""],"Library update command sent to KODI host(s)): {kodi_hosts}":[null,""],"Unable to contact one or more KODI host(s)): {kodi_hosts}":[null,""],"Library update command sent to Plex Media Server host: {plex_server}":[null,""],"Unable to contact Plex Media Server host: {plex_server}":[null,""],"Library update command sent to Emby host: {emby_host}":[null,""],"Unable to contact Emby host: {emby_host}":[null,""],"You must specify a show and at least one episode":[null,""],"Invalid status":[null,""],"Backlog was automatically started for the following seasons of <b>{show_name}</b>":[null,""],"Season":[null,""],"Backlog started":[null,""],"Retrying Search was automatically started for the following season of <b>{show_name}</b>":[null,""],"Retry Search started":[null,""],"You must specify a show":[null,""],"Can't rename episodes when the show dir is missing.":[null,""],"New subtitles downloaded: {new_subtitle_languages}":[null,""],"No subtitles downloaded":[null,""],"IRC":[null,""],"Could not load news from the repo. [Click here for news.md])({news_url})":[null,""],"The was a problem connecting to github, please refresh and try again":[null,""],"Could not load changes from the repo. [Click here for CHANGES.md]({changes_url})":[null,""],"Changelog":[null,""],"Post Processing":[null,""],"Add Shows":[null,""],"No folders selected.":[null,""],"New Show":[null,""],"Trending Shows":[null,""],"Popular Shows":[null,""],"Most Anticipated Shows":[null,""],"Most Collected Shows":[null,""],"Most Watched Shows":[null,""],"Most Played Shows":[null,""],"Recommended Shows":[null,""],"New Shows":[null,""],"Season Premieres":[null,""],"Existing Show":[null,""],"No root directories setup, please go back and add one.":[null,""],"Show added":[null,""],"Adding the specified show {show_name}":[null,""],"Missing params, no Indexer ID or folder: {show_to_add} and {root_dir}/{show_path}":[null,""],"Unknown error. Unable to add show due to problem with show selection.":[null,""],"Unable to add show":[null,""],"Folder {show_dir} exists already":[null,""],"Unable to create the folder {show_dir}, can't add the show":[null,""],"Adding the specified show into {show_dir}":[null,""],"Shows Added":[null,""],"Automatically added {num_shows} from their existing metadata files":[null,""],"Mass Update":[null,""],"Episode Overview":[null,""],"Missing Subtitles":[null,""],"Backlog Overview":[null,""],"Mass Edit":[null,""],"Unable to update show: {excption_format}":[null,""],"Unable to refresh show {show_name}: {excption_format}":[null,""],"Errors encountered":[null,""],"Updates":[null,""],"Refreshes":[null,""],"Renames":[null,""],"Subtitles":[null,""],"The following actions were queued":[null,""],"For best results please set the Download Station alias as":[null,""],"You can check this setting in the Synology DSM":[null,""],"Control Panel":[null,""],"Application Portal":[null,""],"Make sure you allow DSM to be embedded with iFrames too in":[null,""],"DSM Settings":[null,""],"Security":[null,""],"Manage Torrents":[null,""],"Failed Downloads":[null,""],"Manage Searches":[null,""],"Backlog search started":[null,""],"Daily search started":[null,""],"Find propers search started":[null,""],"Subtitle search started":[null,""],"Remove Selected":[null,""],"Clear History":[null,""],"Trim History":[null,""],"Selected history entries removed":[null,""],"History cleared":[null,""],"Removed history entries older than 30 days":[null,""],"General":[null,""],"Backup/Restore":[null,""],"Search Settings":[null,""],"Search Providers":[null,""],"Subtitles Settings":[null,""],"Notifications":[null,""],"Anime":[null,""],"SickRage Configuration":[null,""],"Config - Shares":[null,""],"Windows Shares Configuration":[null,""],"Saved Shares":[null,""],"Your Windows share settings have been saved":[null,""],"Config - General":[null,""],"General Configuration":[null,""],"Saved Defaults":[null,""],"Your \"add show\" defaults have been set to your current selections.":[null,""],"Unable to create directory {directory}, log directory not changed.":[null,""],"Unable to create directory {directory}, https cert directory not changed.":[null,""],"Unable to create directory {directory}, https key directory not changed.":[null,""],"Error(s) Saving Configuration":[null,""],"Configuration Saved":[null,""],"Config - Backup/Restore":[null,""],"Config - Episode Search":[null,""],"Config - Post Processing":[null,""],"Unpacking Not Supported, disabling unpack setting":[null,""],"You tried saving an invalid normal naming config, not saving your naming settings":[null,""],"You tried saving an invalid anime naming config, not saving your naming settings":[null,""],"Config - Providers":[null,""],"No Provider Name specified":[null,""],"No Provider Url specified":[null,""],"No Provider Api key specified":[null,""],"Config - Notifications":[null,""],"Config - Subtitles":[null,""],"Config - Anime":[null,""],"Clear Errors":[null,""],"Clear Warnings":[null,""],"Submit Errors":[null,""],"Logs & Errors":[null,""],"Log File":[null,""],"Logs":[null,""],"This is a test notification from SickRage":[null,""],"Please fill out the necessary fields above.":[null,""],"This pattern is invalid.":[null,""],"This pattern would be invalid without the folders, using it will force \"Season Folders\" on for all shows.":[null,""],"This pattern is valid.":[null,""],"Resume updating the log on this page.":[null,""],"Pause updating the log on this page.":[null,""],"You have reached this page by accident, please check the url.":[null,""],"A mako error has occured.<br>\n If this happened during an update a simple page refresh may be the solution.<br>\n Mako errors that happen during updates may be a one time error if there were significant ui changes.":[null,""],"Show/Hide Error":[null,""],"Add New Show":[null,""],"For shows that you haven't downloaded yet, this option finds a show on theTVDB.com, creates a directory for it's episodes, and adds it to SickRage.":[null,""],"Add From Trakt Lists":[null,""],"For shows that you haven't downloaded yet, this option lets you choose from a show from one of the Trakt lists to add to SickRage.":[null,""],"Add From IMDB's Popular Shows":[null,""],"View IMDB's list of the most popular shows. This feature uses IMDB's MOVIEMeter algorithm to identify popular TV Series.":[null,""],"Add Existing Shows":[null,""],"Use this option to add shows that already have a folder created on your hard drive. SickRage will scan your existing metadata/episodes and add the show accordingly.":[null,""],"Add Existing Show":[null,""],"Manage Directories":[null,""],"Customize Options":[null,""],"SickRage can add existing shows, using the current options, by using locally stored NFO/XML metadata to eliminate user interaction. If you would rather have SickRage prompt you to customize each show, then use the checkbox below.":[null,""],"Prompt me to set settings for each show":[null,""],"Displaying folders within these directories which aren't already added to SickRage":[null,""],"Submit":[null,""],"Find a show on theTVDB":[null,""],"Show retrieved from existing metadata":[null,""],"All Indexers":[null,""],"Search":[null,""],"This will only affect the language of the retrieved metadata file contents and episode filenames.":[null,""],"This <b>DOES NOT</b> allow SickRage to download non-english TV episodes!":[null,""],"Pick the parent folder":[null,""],"Pre-chosen Destination Folder":[null,""],"Customize options":[null,""],"Add Show":[null,""],"Skip Show":[null,""],"Sort By":[null,""],"Name":[null,""],"Original":[null,""],"Votes":[null,""],"Rating":[null,""],"Rating > Votes":[null,""],"Sort Order":[null,""],"Asc":[null,""],"Desc":[null,""],"Fetching of IMDB Data failed. Are you online?":[null,""],"Exception":[null,""],"Select Trakt List":[null,""],"Most Anticipated":[null,""],"Trending":[null,""],"Popular":[null,""],"Most Watched":[null,""],"Most Played":[null,""],"Most Collected":[null,""],"Recommended":[null,""],"Toggle navigation":[null,""],"Profile":[null,""],"JSONP":[null,""],"Back to SickRage":[null,""],"Parameters":[null,""],"Required":[null,""],"Description":[null,""],"Type":[null,""],"Default value":[null,""],"Allowed values":[null,""],"Playground":[null,""],"Clear":[null,""],"Yes":[null,""],"No":[null,""],"season":[null,""],"episode":[null,""],"Python Version":[null,""],"SSL Version":[null,""],"OS":[null,""],"Locale":[null,""],"User":[null,""],"Program Folder":[null,""],"Config File":[null,""],"Database File":[null,""],"Cache Folder":[null,""],"Log Folder":[null,""],"Arguments":[null,""],"Web Root":[null,""],"Website":[null,""],"Wiki":[null,""],"Source":[null,""],"IRC Chat":[null,""],"AnimeDB Settings":[null,""],"Look & Feel":[null,""],"AniDB is non-profit database of anime information that is freely open to the public":[null,""],"Enable":[null,""],"should SickRage use data from AniDB?":[null,""],"AniDB Username":[null,""],"username of your AniDB account":[null,""],"AniDB Password":[null,""],"password of your AniDB account":[null,""],"AniDB MyList":[null,""],"do you want to add the PostProcessed episodes to the MyList?":[null,""],"Look and Feel":[null,""],"How should the anime functions show and behave.":[null,""],"Split show lists":[null,""],"separate anime and normal shows in groups":[null,""],"Split in tabs":[null,""],"use tabs for when splitting show lists":[null,""],"Restore":[null,""],"Backup your main database file and config.":[null,""],"Select the folder you wish to save your backup file to":[null,""],"Restore your main database file and config.":[null,""],"Select the backup file you wish to restore":[null,""],"Misc":[null,""],"Interface":[null,""],"Advanced Settings":[null,""],"Startup options. Indexer options. Log and show file locations.":[null,""],"Some options may require a manual restart to take effect.":[null,""],"Default Indexer Language":[null,""],"for adding shows and metadata providers":[null,""],"Launch browser":[null,""],"open the SickRage home page on startup":[null,""],"Initial page":[null,""],"Shows":[null,""],"when launching SickRage interface":[null,""],"Choose hour to update shows":[null,""],"with information such as next air dates, show ended, etc. Use 15 for 3pm, 4 for 4am etc.":[null,""],"note":[null,""],"minutes are randomized each time SickRage is started":[null,""],"Send to trash for actions":[null,""],"when using show \"Remove\" and delete files":[null,""],"on scheduled deletes of the oldest log files":[null,""],"selected actions use trash (recycle bin) instead of the default permanent delete":[null,""],"Log file folder location":[null,""],"Number of Log files saved":[null,""],"number of log files saved when rotating logs (default: 5) (REQUIRES RESTART)":[null,""],"Size of Log files saved":[null,""],"maximum size in MB of the log file (default: 1MB) (REQUIRES RESTART)":[null,""],"Use initial indexer set to":[null,""],"as the default selection when adding new shows":[null,""],"Timeout show indexer at":[null,""],"seconds of inactivity when finding new shows (default:20)":[null,""],"Show root directories":[null,""],"where the files of shows are located":[null,""],"Save Changes":[null,""],"Options for software updates.":[null,""],"Check software updates":[null,""],"and display notifications when updates are available. Checks are run on startup and at the frequency set below*":[null,""],"Automatically update":[null,""],"fetch and install software updates. Updates are run on startup and in the background at the frequency set below*":[null,""],"Check the server every*":[null,""],"hours for software updates (default:1)":[null,""],"Notify on software update":[null,""],"send a message to all enabled notifiers when SickRage has been updated":[null,""],"User Interface":[null,""],"Options for visual appearance.":[null,""],"Interface Language":[null,""],"System Language":[null,""],"for appearance to take effect, save then refresh your browser":[null,""],"Display theme":[null,""],"Dark":[null,""],"Light":[null,""],"Use a background image":[null,""],"use a custom image as background for SickRage":[null,""],"Background Path":[null,""],"Path to the background image":[null,""],"Show fanart in the background":[null,""],"on the show summary page":[null,""],"Fanart transparency":[null,""],"transparency of the fanart in the background":[null,""],"Use a custom stylesheet file":[null,""],"use a custom .css file to style SickRage (for advanced users)":[null,""],"Stylesheet File Path":[null,""],"Path to the stylesheet (.css) file":[null,""],"Show all seasons":[null,""],"Sort with \"The\", \"A\", \"An\"":[null,""],"include articles (\"The\", \"A\", \"An\") when sorting show lists":[null,""],"Missed episodes range":[null,""],"set the range in days of the missed episodes in the Schedule page":[null,""],"Display fuzzy dates":[null,""],"move absolute dates into tooltips and display e.g. \"Last Thu\", \"On Tue\"":[null,""],"Trim zero padding":[null,""],"remove the leading number \"0\" shown on hour of day, and date of month":[null,""],"Date style":[null,""],"Use System Default":[null,""],"Time style":[null,""],"seconds are only shown on the History page":[null,""],"Timezone":[null,""],"Local":[null,""],"Network":[null,""],"display dates and times in either your timezone or the shows network timezone":[null,""],"use local timezone to start searching for episodes minutes after show ends (depends on your dailysearch frequency)":[null,""],"Download url":[null,""],"URL where the shows can be downloaded.":[null,""],"Web Interface":[null,""],"it is recommended that you enable a username and password to secure SickRage from being tampered with remotely.":[null,""],"these options require a manual restart to take effect.":[null,""],"API key":[null,""],"used to give 3rd party programs limited access to SickRage":[null,""],"you can try all the features of the API":[null,""],"here":[null,""],"HTTP logs":[null,""],"enable logs from the internal Tornado web server":[null,""],"HTTP username":[null,""],"set blank for no login":[null,""],"HTTP password":[null,""],"blank = no authentication":[null,""],"HTTP port":[null,""],"web port to browse and access SickRage (default:8081)":[null,""],"Notify on login":[null,""],"enable to be notified when a new login happens in webserver":[null,""],"Listen on IPv6":[null,""],"attempt binding to any available IPv6 address":[null,""],"Enable HTTPS":[null,""],"enable access to the web interface using a HTTPS address":[null,""],"HTTPS certificate":[null,""],"file name or path to HTTPS certificate":[null,""],"HTTPS key":[null,""],"file name or path to HTTPS key":[null,""],"Reverse proxy headers":[null,""],"accept the following reverse proxy headers (advanced)...":[null,""],"(X-Forwarded-For, X-Forwarded-Host, and X-Forwarded-Proto)":[null,""],"CPU throttling":[null,""],"Normal (default). High is lower and Low is higher CPU use":[null,""],"Anonymous redirect":[null,""],"backlink protection via anonymizer service, must end in \"?\"":[null,""],"Enable debug":[null,""],"enable debug logs":[null,""],"Verify SSL Certs":[null,""],"verify SSL Certificates (Disable this for broken SSL installs (Like QNAP))":[null,""],"No Restart":[null,""],"only shutdown when restarting SR":[null,""],"only select this when you have external software restarting SR automatically when it stops (like FireDaemon)":[null,""],"Encrypt passwords":[null,""],"in the <code>config.ini</code> file":[null,""],"warning":[null,""],"passwords must only contain":[null,""],"ASCII characters":[null,""],"Unprotected calendar":[null,""],"allow subscribing to the calendar without user and password":[null,""],"some services like Google Calendar only work this way":[null,""],"Google Calendar Icons":[null,""],"show an icon next to exported calendar events in Google Calendar":[null,""],"Proxy host":[null,""],"blank to disable or proxy to use when connecting to providers":[null,""],"also use global proxy setting for indexers (tvdb, xem, anidb, etc.)":[null,""],"Skip Remove Detection":[null,""],"skip detection of removed files":[null,""],"if disabled the episode will be set to the default deleted status":[null,""],"Default deleted episode status":[null,""],"define the status to be set for media file that has been deleted.":[null,""],"Archived option will keep previous downloaded quality":[null,""],"example: Downloaded (1080p WEB-DL) ==> Archived (1080p WEB-DL)":[null,""],"Options for github related features.":[null,""],"Branch version":[null,""],"error: No branches found.":[null,""],"select branch to use (restart required)":[null,""],"Authorization Type":[null,""],"Username and password":[null,""],"Personal access token":[null,""],"You must use a personal access token if you're using \"two-factor authentication\" on GitHub.":[null,""],"GitHub username":[null,""],"*** (REQUIRED FOR SUBMITTING ISSUES) ***":[null,""],"GitHub password":[null,""],"GitHub personal access token":[null,""],"Generate Token":[null,""],"Manage Tokens":[null,""],"GitHub remote for branch":[null,""],"access repo configured remotes (save then refresh browser)":[null,""],"default":[null,""],"origin":[null,""],"Git executable path":[null,""],"only needed if OS is unable to locate git from env":[null,""],"Git reset":[null,""],"removes untracked files and performs a hard reset on git branch automatically to help resolve update issues":[null,""],"Home Theater / NAS":[null,""],"Devices":[null,""],"Social":[null,""],"A free and open source cross-platform media center and home entertainment system software with a 10-foot user interface designed for the living-room TV.":[null,""],"send KODI commands?":[null,""],"Always on":[null,""],"log errors when unreachable?":[null,""],"Notify on snatch":[null,""],"send a notification when a download starts?":[null,""],"Notify on download":[null,""],"send a notification when a download finishes?":[null,""],"Notify on subtitle download":[null,""],"send a notification when subtitles are downloaded?":[null,""],"Update library":[null,""],"update KODI library when a download finishes?":[null,""],"Full library update":[null,""],"perform a full library update if update per-show fails?":[null,""],"Only update first host":[null,""],"only send library updates to the first active host?":[null,""],"KODI IP:Port":[null,""],"host running KODI (eg. 192.168.1.100:8080)":[null,""],"(multiple host strings must be separated by commas)":[null,""],"Username":[null,""],"username for your KODI server (blank for none)":[null,""],"Password":[null,""],"password for your KODI server (blank for none)":[null,""],"Click below to test.":[null,""],"Experience your media on a visually stunning, easy to use interface on your Mac connected to your TV. Your media library has never looked this good!":[null,""],"For sending notifications to Plex Home Theater (PHT) clients, use the KODI notifier with port <b>3005</b>.":[null,""],"send Plex Media Server library updates?":[null,""],"Plex Media Server Auth Token":[null,""],"auth token used by Plex":[null,""],"Update Library":[null,""],"update Plex Media Server library when a download finishes":[null,""],"Plex Media Server IP:Port":[null,""],"one or more hosts running Plex Media Server<br/>(eg. 192.168.1.1:32400, 192.168.1.2:32400)":[null,""],"HTTPS":[null,""],"use https for plex media server requests?":[null,""],"Click below to test Plex Media Server(s)":[null,""],"Test Plex Media Server":[null,""],"Plex Home Theater":[null,""],"send Plex Home Theater notifications?":[null,""],"Plex Home Theater IP:Port":[null,""],"one or more hosts running Plex Home Theater<br>(eg. 192.168.1.100:3000, 192.168.1.101:3000)":[null,""],"Click below to test Plex Home Theater(s)":[null,""],"Test Plex Home Theater":[null,""],"some Plex Home Theaters <b class=\"boldest\">do not</b> support notifications e.g. Plexapp for Samsung TVs":[null,""],"Emby":[null,""],"A home media server built using other popular open source technologies.":[null,""],"send update commands to Emby?":[null,""],"Emby IP:Port":[null,""],"host running Emby (eg. 192.168.1.100:8096)":[null,""],"Emby API Key":[null,""],"Networked Media Jukebox":[null,""],"The Networked Media Jukebox, or NMJ, is the official media jukebox interface made available for the Popcorn Hour 200-series.":[null,""],"send update commands to NMJ?":[null,""],"Popcorn IP address":[null,""],"IP address of Popcorn 200-series (eg. 192.168.1.100)":[null,""],"Get settings":[null,""],"Get Settings":[null,""],"the Popcorn Hour device must be powered on and NMJ running.":[null,""],"NMJ database":[null,""],"automatically filled via the 'Get Settings' button.":[null,""],"NMJ mount url":[null,""],"Networked Media Jukebox v2":[null,""],"The Networked Media Jukebox, or NMJv2, is the official media jukebox interface made available for the Popcorn Hour 300 & 400-series.":[null,""],"send update commands to NMJv2?":[null,""],"IP address of Popcorn 300/400-series (eg. 192.168.1.100)":[null,""],"Database location":[null,""],"Database instance":[null,""],"adjust this value if the wrong database is selected.":[null,""],"Find database":[null,""],"Find Database":[null,""],"the Popcorn Hour device must be powered on.":[null,""],"NMJv2 database":[null,""],"automatically filled via the 'Find Database' buttons.":[null,""],"Synology":[null,""],"The Synology DiskStation NAS.":[null,""],"Synology Indexer is the daemon running on the Synology NAS to build its media database.":[null,""],"send Synology notifications?":[null,""],"requires SickRage to be running on your Synology NAS.":[null,""],"Synology Indexer":[null,""],"Synology Notifier is the notification system of Synology DSM":[null,""],"send notifications to the Synology Notifier?":[null,""],"pyTivo":[null,""],"pyTivo is both an HMO and GoBack server. This notifier will load the completed downloads to your Tivo.":[null,""],"send notifications to pyTivo?":[null,""],"requires the downloaded files to be accessible by pyTivo.":[null,""],"pyTivo IP:Port":[null,""],"host running pyTivo (eg. 192.168.1.1:9032)":[null,""],"pyTivo share name":[null,""],"value used in pyTivo Web Configuration to name the share.":[null,""],"Tivo name":[null,""],"(Messages & Settings > Account & System Information > System Information > DVR name)":[null,""],"Growl":[null,""],"A cross-platform unobtrusive global notification system.":[null,""],"send Growl notifications?":[null,""],"Growl IP:Port":[null,""],"host running Growl (eg. 192.168.1.100:23053)":[null,""],"may leave blank if SickRage is on the same host.":[null,""],"otherwise Growl <b>requires</b> a password to be used.":[null,""],"Click below to register and test Growl, this is required for Growl notifications to work.":[null,""],"Register Growl":[null,""],"Prowl":[null,""],"A Growl client for iOS.":[null,""],"send Prowl notifications?":[null,""],"Prowl Message Title":[null,""],"Global Prowl API key(s)":[null,""],"Prowl API(s) listed here, separated by commas if applicable, will<br> receive notifications for <b>all</b> shows. Your Prowl API key is available at:":[null,""],"(this field may be blank except when testing.)":[null,""],"Show notification list":[null,""],"-- Select a Show --":[null,""],"Configure per-show notifications here by entering Prowl API key(s), separated by commas, '\n 'after selecting a show in the drop-down box. Be sure to activate the 'Save for this show' '\n 'button below after each entry.":[null,""],"Save for this show":[null,""],"Prowl priority":[null,""],"Very Low":[null,""],"Moderate":[null,""],"Normal":[null,""],"High":[null,""],"Emergency":[null,""],"priority of Prowl messages from SickRage.":[null,""],"Libnotify":[null,""],"The standard desktop notification API for Linux/*nix systems. This notifier will only function if the pynotify module is installed (Ubuntu/Debian package <a href=\"apt:python-notify\">python-notify</a>).":[null,""],"send Libnotify notifications?":[null,""],"Pushover":[null,""],"Pushover makes it easy to send real-time notifications to your Android and iOS devices.":[null,""],"send Pushover notifications?":[null,""],"Pushover key":[null,""],"user key of your Pushover account":[null,""],"Pushover API key":[null,""],"click here":[null,""]," to create a Pushover API key":[null,""],"Pushover devices":[null,""],"comma separated list of pushover devices you want to send notifications to":[null,""],"Pushover notification sound":[null,""],"Bike":[null,""],"Bugle":[null,""],"Cash Register":[null,""],"Classical":[null,""],"Cosmic":[null,""],"Falling":[null,""],"Gamelan":[null,""],"Incoming":[null,""],"Intermission":[null,""],"Magic":[null,""],"Mechanical":[null,""],"Piano Bar":[null,""],"Siren":[null,""],"Space Alarm":[null,""],"Tug Boat":[null,""],"Alien Alarm (long)":[null,""],"Climb (long)":[null,""],"Persistent (long)":[null,""],"Pushover Echo (long)":[null,""],"Up Down (long)":[null,""],"None (silent)":[null,""],"Device specific":[null,""],"choose notification sound to use":[null,""],"Pushover priority":[null,""],"Choose priority to use":[null,""],"Boxcar 2":[null,""],"Read your messages where and when you want them!":[null,""],"send Boxcar notifications?":[null,""],"Boxcar2 access token":[null,""],"access token for your Boxcar account.":[null,""],"NMA":[null,""],"Notify My Android":[null,""],"Notify My Android is a Prowl-like Android App and API that offers an easy way to send notifications from your application directly to your Android device.":[null,""],"send NMA notifications?":[null,""],"NMA API key":[null,""],"(multiple keys must be separated by commas, up to a maximum of 5)":[null,""],"NMA priority":[null,""],"priority of NMA messages from SickRage.":[null,""],"Pushalot":[null,""],"Pushalot is a platform for receiving custom push notifications to connected devices running Windows Phone or Windows 8.":[null,""],"send Pushalot notifications ?":[null,""],"Pushalot authorization token":[null,""],"authorization token of your Pushalot account.":[null,""],"Pushbullet":[null,""],"Pushbullet is a platform for receiving custom push notifications to connected devices running Android/iOS and desktop browsers such as Chrome, Firefox or Opera.":[null,""],"send Pushbullet notifications?":[null,""],"Pushbullet API key":[null,""],"API key of your Pushbullet account":[null,""],"Pushbullet devices":[null,""],"Update device list":[null,""],"Pushbullet channels":[null,""],"Free Mobile":[null,""],"Free Mobile is a famous French cellular network provider.<br> It provides to their customer a free SMS API.":[null,""],"send SMS notifications?":[null,""],"send a SMS when a download starts?":[null,""],"send a SMS when a download finishes?":[null,""],"send a SMS when subtitles are downloaded?":[null,""],"Free Mobile customer ID":[null,""],"it's your Free Mobile customer ID (8 digits)":[null,""],"Free Mobile API key":[null,""],"find your API key in your customer portal.":[null,""],"Click below to test your settings.":[null,""],"Telegram":[null,""],"Telegram is a cloud-based instant messaging service.":[null,""],"send Telegram notifications?":[null,""],"send a message when a download starts?":[null,""],"send a message when a download finishes?":[null,""],"send a message when subtitles are downloaded?":[null,""],"User/group ID":[null,""],"contact @myidbot on Telegram to get an ID":[null,""],"Bot API token":[null,""],"contact @BotFather on Telegram to set up one":[null,""],"Join":[null,""],"Join all of your devices together!":[null,""],"send Join notifications?":[null,""],"Device ID":[null,""],"per device specific id":[null,""]," to create a Join API key":[null,""],"Twilio":[null,""],"Twilio is a webservice API that allows you to communicate directly with a mobile number. This notifier will send a text directly to your mobile device.":[null,""],"should SickRage text your mobile device?":[null,""],"Twilio Account SID":[null,""],"account SID of your Twilio account.":[null,""],"Twilio Auth Token":[null,""],"Twilio Phone SID":[null,""],"phone SID that you would like to send the sms from":[null,""],"Your phone number":[null,""],"phone number that will receive the sms. Please use the format +1-###-###-####":[null,""],"Twitter":[null,""],"A social networking and microblogging service, enabling its users to send and read other users' messages called tweets.":[null,""],"should SickRage post tweets on Twitter?":[null,""],"you may want to use a secondary account.":[null,""],"send direct message":[null,""],"send a notification via Direct Message, not via status update":[null,""],"send DM to":[null,""],"Twitter account to send Direct Messages to (must follow you)":[null,""],"Step One":[null,""],"Request Authorization":[null,""],"Click the \"Request Authorization\" button.<br> This will open a new page containing an auth key.<br> <b>note:</b> if nothing happens check your popup blocker.":[null,""],"Step Two":[null,""],"Enter the key Twitter gave you below, and click \"Verify Key\".":[null,""],"Trakt":[null,""],"Trakt helps keep a record of what TV shows and movies you are watching. Based on your favorites, Trakt recommends additional shows and movies you'll enjoy!":[null,""],"send Trakt.tv notifications?":[null,""],"username of your Trakt account.":[null,""],"Trakt PIN":[null,""],"Get Trakt PIN":[null,""],"PIN code to authorize SickRage to access Trakt on your behalf.":[null,""],"API Timeout":[null,""],"seconds to wait for Trakt API to respond. (Use 0 to wait forever)":[null,""],"Default indexer":[null,""],"Sync libraries":[null,""],"sync your SickRage show library with your trakt show library.":[null,""],"Remove Episodes From Collection":[null,""],"remove an episode from your Trakt Collection if it is not in your SickRage Library.":[null,""],"Sync watchlist":[null,""],"sync your SickRage show watchlist with your trakt show watchlist (either Show and Episode).":[null,""],"episode will be added on watch list when wanted or snatched and will be removed when downloaded ":[null,""],"Watchlist add method":[null,""],"Skip All":[null,""],"Download Pilot Only":[null,""],"Get whole show":[null,""],"method in which to download episodes for new shows.":[null,""],"Remove episode":[null,""],"remove an episode from your watchlist after it is downloaded.":[null,""],"Remove series":[null,""],"remove the whole series from your watchlist after any download.":[null,""],"Remove watched show":[null,""],"remove the show from sickrage if it's ended and completely watched":[null,""],"Start paused":[null,""],"shows grabbed from your trakt watchlist start paused.":[null,""],"Trakt blackList name":[null,""],"name (slug) of list on Trakt for blacklisting show on 'Add Trending Show' & 'Add Recommended Shows' pages":[null,""],"Email":[null,""],"Allows configuration of email notifications on a per show basis.":[null,""],"send email notifications?":[null,""],"SMTP host":[null,""],"hostname of your SMTP email server.":[null,""],"SMTP port":[null,""],"port number used to connect to your SMTP host.":[null,""],"SMTP from":[null,""],"sender email address, some hosts require a real address.":[null,""],"Use TLS":[null,""],"check to use TLS encryption.":[null,""],"SMTP user":[null,""],"(optional) your SMTP server username.":[null,""],"SMTP password":[null,""],"(optional) your SMTP server password.":[null,""],"Global email list":[null,""],"email addresses listed here, separated by commas if applicable, will<br> receive notifications for <b>all</b> shows.":[null,""],"(This field may be blank except when testing.)":[null,""],"Email Subject":[null,""],"use a custom subject for some privacy protection?":[null,""],"(leave blank for the default SickRage subject)":[null,""],"configure per-show notifications here by entering email address(es), separated by commas,":[null,""],"after selecting a show in the drop-down box. Be sure to activate the 'Save for this show'":[null,""],"button below after each entry.":[null,""],"Slack":[null,""],"Slack brings all your communication together in one place. It's real-time messaging, archiving and search for modern teams.":[null,""],"should SickRage post messages on Slack?":[null,""],"Slack Incoming Webhook":[null,""],"Discord":[null,""],"All-in-one voice and text chat for gamers that's free, secure, and works on both your desktop and phone.":[null,""],"Should SickRage post messages on Discord?":[null,""],"Discord Incoming Webhook":[null,""],"Create webhook under channel settings.":[null,""],"Discord Bot Name":[null,""],"Blank will use webhook default Name.":[null,""],"Discord Avatar URL":[null,""],"Blank will use webhook default Avatar.":[null,""],"Discord TTS":[null,""],"Send notifications using text-to-speech":[null,""],"Post-Processing":[null,""],"Episode Naming":[null,""],"Metadata":[null,""],"Settings that dictate how SickRage should process completed downloads.":[null,""],"enable the automatic post processor to scan and process any files in your Post Processing Dir":[null,""],"do not use if you use an external Post Processing script":[null,""],"Post Processing Dir":[null,""],"the folder where your download client puts the completed TV downloads.":[null,""],"please use seperate downloading and completed folders in your download client if possible.":[null,""],"Processing Method":[null,""],"what method should be used to put files into the library?":[null,""],"if you keep seeding torrents after they finish, please avoid the 'move' processing method to prevent errors.":[null,""],"Auto Post-Processing Frequency":[null,""],"time in minutes to check for new files to auto post-process (min 10)":[null,""],"Postpone post processing":[null,""],"wait to process a folder if sync files are present.":[null,""],"Sync File Extensions":[null,""],"comma seperated list of extensions or filename globs SickRage ignores when Post Processing":[null,""],"Rename Episodes":[null,""],"rename episode using the Episode Naming settings?":[null,""],"Create missing show directories":[null,""],"create missing show directories when they get deleted":[null,""],"Add shows without directory":[null,""],"add shows without creating a directory (not recommended)":[null,""],"Move associated files":[null,""],"move associated (srt/srr/sfv/etc) files while post processing?":[null,""],"Rename .nfo file":[null,""],"rename the original .nfo file to .nfo-orig to avoid conflicts?":[null,""],"Associated file extensions":[null,""],"comma separated list of associated file extensions SickRage should keep while post processing.":[null,""],"leaving it empty means no associated files will be post processed":[null,""],"Delete non associated files":[null,""],"delete non associated files while post processing?":[null,""],"Change File Date":[null,""],"set last modified filedate to the date that the episode aired?":[null,""],"some systems may ignore this feature.":[null,""],"Timezone for File Date":[null,""],"local":[null,""],"network":[null,""],"what timezone should be used to change File Date?":[null,""],"Unpack":[null,""],"What to do with archived releases found in your <i>TV Download Dir</i>?":[null,""],"Ignore (do not process contents)":[null,""],"Unpack (process contents)":[null,""],"Treat as video (process archive as-is)":[null,""],"'Unpack' only works with RAR archives":[null,""],"Windows":[null,""],"WinRar is required on windows":[null,""],"Unpack Directory":[null,""],"Choose a path to unpack files, leave blank to unpack in download dir":[null,""],"Unrar Location":[null,""],"add the path to unrar if it is not in the system path":[null,""],"Alternate Unrar Tool":[null,""],"add the path to an alternate unrar tool if it is not in the system path":[null,""],"Delete RAR contents":[null,""],"delete content of RAR files, even if Process Method not set to move?":[null,""],"only working with RAR archive":[null,""],"Don't delete empty folders":[null,""],"leave empty folders when Post Processing?":[null,""],"can be overridden using manual Post Processing":[null,""],"Follow symbolic-links":[null,""],"follow down symbolic links in download directory?":[null,""],"<b>EXPERTS ONLY.</b><br>Enable only if you know what <b>circular symbolic links</b> are,<br>and can <b>verify that you have none</b>.":[null,""],"Use icacls":[null,""],"Windows only":[null,""],"sets video permissions after using the move method in post processing":[null,""],"Extra Scripts":[null,""],"see":[null,""],"for script arguments description and usage.":[null,""],"How SickRage will name and sort your episodes.":[null,""],"Name Pattern":[null,""],"Toggle Naming Legend":[null,""],"don't forget to add quality pattern. Otherwise after post-processing the episode will have UNKNOWN quality":[null,""],"Meaning":[null,""],"Pattern":[null,""],"Result":[null,""],"Use lower case if you want lower case names (eg. %sn, %e.n, %q_n etc)":[null,""],"Show Name":[null,""],"Show.Name":[null,""],"Show_Name":[null,""],"Season Number":[null,""],"XEM Season Number":[null,""],"Episode Number":[null,""],"XEM Episode Number":[null,""],"Episode Name":[null,""],"Episode.Name":[null,""],"Episode_Name":[null,""],"Air Date":[null,""],"Post-Processing Date":[null,""],"Quality":[null,""],"Scene Quality":[null,""],"Release Name":[null,""],"SickRage' is used in place of RLSGROUP if it could not be properly detected":[null,""],"Release Group":[null,""],"If episode is proper/repack add 'proper' to name.":[null,""],"Release Type":[null,""],"Multi-Episode Style":[null,""],"Single-EP Sample":[null,""],"Multi-EP sample":[null,""],"Strip Show Year":[null,""],"remove the TV show's year when renaming the file?":[null,""],"only applies to shows that have year inside parentheses":[null,""],"Custom Air-By-Date":[null,""],"name air-by-date shows differently than regular shows?":[null,""],"Toggle ABD Naming Legend":[null,""],"Regular Air Date":[null,""],"Year":[null,""],"Month":[null,""],"Day":[null,""],"Multi-EP style is ignored":[null,""],"Custom Sports":[null,""],"name sports shows differently than regular shows?":[null,""],"Toggle Sports Naming Legend":[null,""],"Sports Air Date":[null,""],"Custom Anime":[null,""],"name anime shows differently than regular shows?":[null,""],"Toggle Anime Naming Legend":[null,""],">XEM Season Number":[null,""],"Single-EP Anime Sample":[null,""],"Multi-EP Anime sample":[null,""],"Add Absolute Number":[null,""],"add the absolute number to the season/episode format?":[null,""],"only applies to anime. (eg. S15E45 - 310 vs S15E45)":[null,""],"Only Absolute Number":[null,""],"replace season/episode format with absolute number":[null,""],"only applies to anime.":[null,""],"No Absolute Number":[null,""],"don't include the absolute number":[null,""],"The data associated to the data. These are files associated to a TV show in the form of images and text that, when supported, will enhance the viewing experience.":[null,""],"Metadata Type":[null,""],"toggle metadata options that you wish to be created":[null,""],"multiple targets may be used":[null,""],"Select Metadata":[null,""],"Provider Priorities":[null,""],"Provider Options":[null,""],"Configure Custom Newznab Providers":[null,""],"Configure Custom Torrent Providers":[null,""],"Check off and drag the providers into the order you want them to be used.":[null,""],"At least one provider is required but two are recommended.":[null,""],"Torrent providers can be toggled in ":[null,""],"Provider does not support backlog searches at this time.":[null,""],"Provider is <b>NOT WORKING</b>.":[null,""],"Configure individual provider settings here.":[null,""],"Check with provider's website on how to obtain an API key if needed.":[null,""],"Configure provider":[null,""],"no providers available to configure.":[null,""],"URL":[null,""],"Enable daily searches":[null,""],"enable provider to perform daily searches.":[null,""],"Enable backlog searches":[null,""],"enable provider to perform backlog searches.":[null,""],"Season search mode":[null,""],"when searching for complete seasons you can choose to have it look for season packs only, or choose to have it build a complete season from just single episodes.":[null,""],"season packs only.":[null,""],"episodes only.":[null,""],"Enable fallback":[null,""],"when searching for a complete season depending on search mode you may return no results, this helps by restarting the search using the opposite search mode.":[null,""],"Custom URL":[null,""],"the URL should include the protocol (and port if applicable). Examples: http://192.168.1.4/ or http://localhost:3000/":[null,""],"Api key":[null,""],"Digest":[null,""],"Hash":[null,""],"Passkey":[null,""],"Cookies":[null,""],"example: uid=1234;pass=567845439634987<br>note: uid and pass are not your username/password.<br>use DevTools or Firebug to get these values after logging in on your browser.":[null,""],"Pin":[null,""],"Seed ratio":[null,""],"stop transfer when ratio is reached<br>(-1 SickRage default to seed forever, or leave blank for downloader default)":[null,""],"Minimum seeders":[null,""],"Minimum leechers":[null,""],"Confirmed download":[null,""],"only download torrents from trusted or verified uploaders ?":[null,""],"Ranked torrents":[null,""],"only download ranked torrents (trusted releases)":[null,""],"English torrents":[null,""],"only download english torrents, or torrents containing english subtitles":[null,""],"For Spanish torrents":[null,""],"ONLY search on this provider if show info is defined as \"Spanish\" (avoid provider's use for VOS shows)":[null,""],"Sorting results by":[null,""],"Freeleech":[null,""],"only download <b>\"FreeLeech\"</b> torrents.":[null,""],"Category":[null,""],"select torrent with Italian subtitle":[null,""],"Configure Custom<br>Newznab Providers":[null,""],"Add and setup or remove custom Newznab providers.":[null,""],"Select provider":[null,""],"-- add new provider --":[null,""],"Provider name":[null,""],"Site URL":[null,""],"Newznab search categories":[null,""],"select your Newznab categories on the left, and click the \"update categories\" button to use them for searching.) <b>don't forget to to save the form!":[null,""],"Update Categories":[null,""],"Add":[null,""],"Delete":[null,""],"Add and setup or remove custom RSS providers.":[null,""],"RSS URL":[null,""],"Search element":[null,""],"eg: title":[null,""],"Episode Search":[null,""],"NZB Search":[null,""],"Torrent Search":[null,""],"How to manage searching with":[null,""],"Randomize Providers":[null,""],"randomize the provider search order instead of going in order of placement":[null,""],"Download propers":[null,""],"replace original download with \"Proper\" or \"Repack\" if nuked":[null,""],"Check propers every":[null,""],"24 hours":[null,""],"4 hours":[null,""],"90 mins":[null,""],"45 mins":[null,""],"15 mins":[null,""],"Backlog search day(s)":[null,""],"number of day(s) that the \"Forced Backlog Search\" will cover (e.g. 7 Days)":[null,""],"Backlog search frequency":[null,""],"time in minutes between searches (min.":[null,""],"Daily search frequency":[null,""],"Usenet retention":[null,""],"age limit in days for usenet articles to be used (e.g. 500)":[null,""],"Ignore words":[null,""],"results with one or more word from this list will be ignored<br>separate words with a comma, e.g. \"word1,word2,word3\"":[null,""],"Require words":[null,""],"results with no word from this list will be ignored<br>separate words with a comma, e.g. \"word1,word2,word3\"":[null,""],"Trackers list":[null,""],"trackers that will be added to magnets without trackers<br>separate trackers with a comma, e.g. \"tracker1,tracker2,tracker3\"":[null,""],"Ignore language names in subbed results":[null,""],"ignore subbed releases based on language names <br>\n Example: \"dk\" will ignore words: dksub, dksubs, dksubbed, dksubed <br>\n separate languages with a comma, e.g. \"lang1,lang2,lang3":[null,""],"Allow high priority":[null,""],"set downloads of recently aired episodes to high priority":[null,""],"Use Failed Downloads":[null,""],"use Failed Download Handling?":[null,""],"will only work with snatched/downloaded episodes after enabling this":[null,""],"Delete Failed":[null,""],"delete files left over from a failed download?":[null,""],"this only works if Use Failed Downloads is enabled.":[null,""],"How to handle NZB search results.":[null,""],"Search NZBs":[null,""],"enable NZB search providers":[null,""],"Send .nzb files to":[null,""],"SABnzbd server URL":[null,""],"URL to your SABnzbd server (e.g. http://localhost:8080/)":[null,""],"SABnzbd username":[null,""],"(blank for none)":[null,""],"SABnzbd password":[null,""],"SABnzbd API key":[null,""],"locate at... SABnzbd Config -> General -> API Key":[null,""],"Use SABnzbd category":[null,""],"add downloads to this category (e.g. TV)":[null,""],"Use SABnzbd category (backlog episodes)":[null,""],"add downloads of old episodes to this category (e.g. TV)":[null,""],"Use SABnzbd category for anime":[null,""],"add anime downloads to this category (e.g. anime)":[null,""],"Use SABnzbd category for anime (backlog episodes)":[null,""],"add anime downloads of old episodes to this category (e.g. anime)":[null,""],"Use forced priority":[null,""],"enable to change priority from HIGH to FORCED":[null,""],"Black hole folder location":[null,""],"<b>.nzb</b> files are stored at this location for external software to find and use":[null,""],"Connect using HTTPS":[null,""],"enable Secure control in NZBGet and set the correct Secure Port here":[null,""],"NZBget host:port":[null,""],"(e.g. localhost:6789)":[null,""],"NZBget RPC host name and port number (not NZBgetweb!)":[null,""],"NZBget username":[null,""],"locate in nzbget.conf (default:nzbget)":[null,""],"NZBget password":[null,""],"locate in nzbget.conf (default:tegbzn6789)":[null,""],"Use NZBget category":[null,""],"send downloads marked this category (e.g. TV)":[null,""],"Use NZBget category (backlog episodes)":[null,""],"send downloads of old episodes marked this category (e.g. TV)":[null,""],"Use NZBget category for anime":[null,""],"send anime downloads marked this category (e.g. anime)":[null,""],"Use NZBget category for anime (backlog episodes)":[null,""],"send anime downloads of old episodes marked this category (e.g. anime)":[null,""],"NZBget priority":[null,""],"Very low":[null,""],"Low":[null,""],"Very high":[null,""],"Force":[null,""],"priority for daily snatches (no backlog)":[null,""],"Torrent host:port":[null,""],"URL to your Synology DSM (e.g. http://localhost:5000/)":[null,""],"Client username":[null,""],"Client password":[null,""],"Downloaded files location":[null,""],"where Synology Download Station will save downloaded files (blank for client default)":[null,""],"the destination has to be a shared folder for Synology DS":[null,""],"Click below to test":[null,""],"How to handle Torrent search results.":[null,""],"Search torrents":[null,""],"enable torrent search providers":[null,""],"Send .torrent files to":[null,""],"<b>.torrent</b> files are stored at this location for external software to find and use":[null,""],"URL to your torrent client (e.g. http://localhost:8000/)":[null,""],"Torrent RPC URL":[null,""],"the path without leading and trailing slashes (e.g. transmission)":[null,""],"Http Authentication":[null,""],"Verify certificate":[null,""],"disable if you get \"Deluge: Authentication Error\" in your log":[null,""],"verify SSL certificates for HTTPS requests":[null,""],"Add label to torrent":[null,""],"(blank spaces are not allowed)":[null,""],"label plugin must be enabled in Deluge clients":[null,""],"for QBitTorrent 3.3.1 and up":[null,""],"Add label to torrent for anime":[null,""],"for QBitTorrent 3.3.1 and up ":[null,""],"where <span id=\"torrent_client\">the torrent client</span> will save downloaded files (blank for client default)":[null,""],"the destination has to be a shared folder for Synology DS</span>":[null,""],"Minimum seeding time":[null,""],"time in hours":[null,""],"(default:'0' passes blank to client and '-1' passes nothing)":[null,""],"Start torrent paused":[null,""],"add .torrent to client but do <b style=\"font-weight:900\">not</b> start downloading":[null,""],"Allow high bandwidth":[null,""],"use high bandwidth allocation if priority is high":[null,""],"Test Connection":[null,""],"Windows Shares":[null,""],"Defines your existing windows shares so that we can add them to the browse dialog":[null,""],"Share #{number}":[null,""],"Share label":[null,""],"Hostname or IP":[null,""],"Share path":[null,""],"Subtitles Search":[null,""],"Subtitles Plugin":[null,""],"Plugin Settings":[null,""],"Settings that dictate how SickRage handles subtitles search results.":[null,""],"Search Subtitles":[null,""],"Subtitle Languages":[null,""],"Subtitle Directory":[null,""],"the directory where SickRage should store your <i>Subtitles</i> files.":[null,""],"leave empty if you want store subtitle in episode path.":[null,""],"Subtitle Find Frequency":[null,""],"time in hours between scans (default: 1)":[null,""],"Include Specials":[null,""],"include the show's specials when searching for subtitles?":[null,""],"Perfect matches":[null,""],"only download subtitles that match: release group, video codec, audio codec and resolution":[null,""],"if disabled you may get out of sync subtitles":[null,""],"Subtitles History":[null,""],"log downloaded Subtitle on History page?":[null,""],"Subtitles Multi-Language":[null,""],"append language codes to subtitle filenames?":[null,""],"this option is required if you use multiple subtitle languages":[null,""],"Delete unwanted subtitles":[null,""],"enable to delete unwanted subtitle languages bundled with release":[null,""],"Embedded Subtitles":[null,""],"ignore subtitles embedded inside video file?":[null,""],"this will ignore <u>all</u> embedded subtitles for every video file!":[null,""],"Hearing Impaired Subtitles":[null,""],"download hearing impaired style subtitles?":[null,""],"See":[null,""],"for a script arguments description.":[null,""],"Additional scripts separated by <b>|</b>.":[null,""],"Scripts are called after each episode has searched and downloaded subtitles.":[null,""],"For any scripted languages, include the interpreter executable before the script. See the following example":[null,""],"For Windows:":[null,""],"For Linux / OS X:":[null,""],"Subtitle Providers":[null,""],"Check off and drag the plugins into the order you want them to be used.":[null,""],"At least one plugin is required.":[null,""]," Web-scraping plugin":[null,""],"Provider Settings":[null,""],"Set user and password for each provider":[null,""],"User Name":[null,""],"Change Show":[null,""],"Prev Show":[null,""],"Next Show":[null,""],"Jump to Season":[null,""],"Specials":[null,""],"Poster for":[null,""],"Stars":[null,""],"minutes":[null,""],"View other popular {genre} shows on trakt.tv.":[null,""],"View other popular {imdbgenre} shows on IMDB.":[null,""],"Allowed":[null,""],"Preferred":[null,""],"Originally Airs":[null,""],"Show Status":[null,""],"Default EP Status":[null,""],"Location":[null,""],"Missing":[null,""],"Scene Name":[null,""],"Required Words":[null,""],"Ignored Words":[null,""],"Size":[null,""],"Info Language":[null,""],"Subtitles SR Metadata":[null,""],"Season Folders":[null,""],"Paused":[null,""],"Air-by-Date":[null,""],"Sports":[null,""],"DVD Order":[null,""],"Scene Numbering":[null,""],"Select Filtered Episodes":[null,""],"Clear All":[null,""],"Change selected episodes to":[null,""],"Select Columns":[null,""],"Hide Episodes":[null,""],"Show Episodes":[null,""],"NFO":[null,""],"TBN":[null,""],"Episode":[null,""],"Absolute":[null,""],"Scene":[null,""],"Scene Absolute":[null,""],"File Name":[null,""],"Airdate":[null,""],"Download":[null,""],"Change the value here if scene numbering differs from the indexer episode numbering":[null,""],"Change the value here if scene absolute numbering differs from the indexer absolute numbering":[null,""],"Manual Search":[null,""],"Do you want to mark this episode as failed?":[null,""],"The episode release name will be added to the failed history, preventing it to be downloaded again.":[null,""],"Do you want to include the current episode quality in the search?":[null,""],"Choosing No will ignore any releases with the same episode quality as the one currently downloaded/snatched.":[null,""],"Download subtitle":[null,""],"Do you want to re-download the subtitle for this language?":[null,""],"It will overwrite your current subtitle":[null,""],"Format":[null,""],"Advanced":[null,""],"Main Settings":[null,""],"Show Location":[null,""],"Preferred Quality":[null,""],"Default Episode Status":[null,""],"this will set the status for future episodes.":[null,""],"this only applies to episode filenames and the contents of metadata files.":[null,""],"search for subtitles":[null,""],"Use SR Metdata":[null,""],"use SickRage metadata when searching for subtitle, this will override the autodiscovered metadata":[null,""],"pause this show (SickRage will not download episodes)":[null,""],"Format Settings":[null,""],"Air by date":[null,""],"check if the show is released as Show.03.02.2010 rather than Show.S02E03.":[null,""],"in case of an air date conflict between regular and special episodes, the later will be ignored.":[null,""],"check if the show is Anime and episodes are released as Show.265 rather than Show.S02E03":[null,""],"check if the show is a sporting or MMA event released as Show.03.02.2010 rather than Show.S02E03":[null,""],"Season folders":[null,""],"group episodes by season folder (uncheck to store in a single folder)":[null,""],"search by scene numbering (uncheck to search by indexer numbering)":[null,""],"use the DVD order instead of the air order":[null,""],"a \"Force Full Update\" is necessary, and if you have existing episodes you need to sort them manually.":[null,""],"comma-separated <i>e.g. \"word1,word2,word3</i>\"":[null,""],"search results with one or more words from this list will be ignored.":[null,""],"e.g. \"word1,word2,word3\"":[null,""],"search results with no words from this list will be ignored.":[null,""],"Scene Exception":[null,""],"this will affect episode search on NZB and torrent providers.":[null,""],"this list appends to the original show name.":[null,""],"WARNING logs":[null,""],"ERROR logs":[null,""],"There are no events to display.":[null,""],"Limit":[null,""],"Layout":[null,""],"HistoryLayout":[null,""],"Compact":[null,""],"Detailed":[null,""],"Time":[null,""],"Provider":[null,""],"Missing Provider":[null,""],"missing provider":[null,""],"Directory":[null,""],"Show Name (tvshow.nfo)":[null,""],"Indexer":[null,""],"Enter the folder containing the episode":[null,""],"Process Method to be used":[null,""],"Copy":[null,""],"Move":[null,""],"Hard Link":[null,""],"Symbolic Link":[null,""],"Symbolic Link Reversed":[null,""],"Force already Post Processed Dir/Files":[null,""],"Mark Dir/Files as priority download":[null,""],"(Check it to replace the file even if it exists at higher quality)":[null,""],"Delete files and folders":[null,""],"(Check it to delete files and folders like auto processing)":[null,""],"Don't use processing queue":[null,""],"(If checked this will return the result of the process here, but may be slow!)":[null,""],"Mark download as failed":[null,""],"Process":[null,""],"Download subtitles for this show?":[null,""],"use SickRage metadata when searching for subtitle, <br />this will override the autodiscovered metadata":[null,""],"Status for previously aired episodes":[null,""],"Status for all future episodes":[null,""],"Group episodes by season folder?":[null,""],"Is this show an Anime?":[null,""],"Is this show scene numbered?":[null,""],"Save Defaults":[null,""],"Use current values as the defaults":[null,""],"<p>Select your preferred fansub groups from the <b>Available Groups</b> and add them to the <b>Whitelist</b>. Add groups to the <b>Blacklist</b> to ignore them.</p>\n <p>The <b>Whitelist</b> is checked <i>before</i> the <b>Blacklist</b>.</p>\n <p>Groups are shown as <b>Name</b> | <b>Rating</b> | <b>Number of subbed episodes</b>.</p>\n <p>You may also add any fansub group not listed to either list manually.</p>\n <p>When doing this please note that you can only use groups listed on anidb for this anime.\n <br>If a group is not listed on anidb but subbed this anime, please correct anidb's data.</p>":[null,""],"Whitelist":[null,""],"Available Groups":[null,""],"Add to Whitelist":[null,""],"Add to Blacklist":[null,""],"Blacklist":[null,""],"Custom Group":[null,""],"Allowed Quality:":[null,""],"Preferred Quality:":[null,""],"Filter Show Name":[null,""],"Root":[null,""],"All":[null,""],"Clear Filter(s)":[null,""],"Poster":[null,""],"Small Poster":[null,""],"Banner":[null,""],"Simple":[null,""],"Next Episode":[null,""],"Progress":[null,""],"Direction":[null,""],"Ascending":[null,""],"Descending":[null,""],"Poster Size":[null,""],"Continuing":[null,""],"Ended":[null,""],"Total":[null,""],"Invalid date":[null,""],"No Network":[null,""],"Next Ep":[null,""],"Prev Ep":[null,""],"Show":[null,""],"Downloads":[null,""],"Active":[null,""],"loading":[null,""],"Loading...":[null,""],"<p><b><u>Preferred</u></b> qualities will replace those in <b><u>allowed</u></b>, even if they are lower.</p>":[null,""],"New":[null,""],"Set as Default":[null,""],"Remember me":[null,""],"Edit Selected":[null,""],"Subtitle":[null,""],"Default Ep Status":[null,""],"Update":[null,""],"Rescan":[null,""],"Rename":[null,""],"Search Subtitle":[null,""],"Force Metadata Regen":[null,""],"Snatched (Allowed)":[null,""],"Jump to Show":[null,""],"Force Backlog":[null,""],"Manage episodes with status":[null,""],"Manage":[null,""],"None of your episodes have status":[null,""],"Shows containing":[null,""],"episodes":[null,""],"Set checked shows/episodes to":[null,""],"Go":[null,""],"Select all":[null,""],"Clear all":[null,""],"Release":[null,""],"Backlog Search":[null,""],"Not in progress":[null,""],"In Progress":[null,""],"Daily Search":[null,""],"Find Propers Search":[null,""],"Propers search disabled":[null,""],"Subtitle Search":[null,""],"Subtitle search disabled":[null,""],"Search Queue":[null,""],"pending items":[null,""],"Daily":[null,""],"Manual":[null,""],"Changing any settings marked with (<span class=\"separator\">*</span>) will force a refresh of the selected shows.":[null,""],"Selected Shows":[null,""],"Root Directories":[null,""],"Current":[null,""],"Keep":[null,""],"Custom":[null,""],"Group episodes by season folder (set to \"No\" to store in a single folder).":[null,""],"Pause these shows (SickRage will not download episodes).":[null,""],"This will set the status for future episodes.":[null,""],"Search by scene numbering (set to \"No\" to search by indexer numbering).":[null,""],"Set if these shows are Anime and episodes are released as Show.265 rather than Show.S02E03":[null,""],"Set if these shows are sporting or MMA events released as Show.03.02.2010 rather than Show.S02E03.":[null,""],"In case of an air date conflict between regular and special episodes, the later will be ignored.":[null,""],"Set if these shows are released as Show.03.02.2010 rather than Show.S02E03.":[null,""],"Search for subtitles.":[null,""],"All of your episodes have {subsLanguage} subtitles.":[null,""],"Manage episodes without":[null,""],"Episodes without {subsLanguage} subtitles.":[null,""],"Episodes without {subtitleLanguage} (undefined) subtitles.":[null,""],"Download missed subtitles for selected episodes":[null,""],"Performing Restart":[null,""],"Waiting for SickRage to shut down":[null,""],"Waiting for SickRage to start again":[null,""],"Loading the default page":[null,""],"Error: The restart has timed out, perhaps something prevented SickRage from starting again?":[null,""],"Key":[null,""],"Missed":[null,""],"Today":[null,""],"Soon":[null,""],"Later":[null,""],"Subscribe":[null,""],"Date":[null,""],"View Paused":[null,""],"Hidden":[null,""],"Shown":[null,""],"Calendar":[null,""],"List":[null,""],"Ends":[null,""],"Next Ep Name":[null,""],"Run time":[null,""],"Indexers":[null,""],"No shows for this day":[null,""],"Airs":[null,""],"Plot":[null,""],"Show Update":[null,""],"Version Check":[null,""],"Proper Finder":[null,""],"Post Process":[null,""],"Subtitles Finder":[null,""],"Scheduler":[null,""],"Alive":[null,""],"Start Time":[null,""],"Cycle Time":[null,""],"Next Run":[null,""],"Last Run":[null,""],"Silent":[null,""],"True":[null,""],"N/A":[null,""],"Show id":[null,""],"Show name":[null,""],"Priority":[null,""],"Added":[null,""],"Queue type":[null,""],"LOW":[null,""],"NORMAL":[null,""],"HIGH":[null,""],"Disk Space":[null,""],"Free space":[null,""],"TV Download Directory":[null,""],"Media Root Directories":[null,""],"Preview of the proposed name changes":[null,""],"All Seasons":[null,""],"select all":[null,""],"Rename Selected":[null,""],"Cancel Rename":[null,""],"Old Location":[null,""],"New Location":[null,""],"Trakt API did not return any results, please check your config.":[null,""],"votes":[null,""],"Remove Show":[null,""],"Level":[null,""],"Filter":[null,""],"All non-absolute folder locations are relative to ":[null,""],"Manual Post-Processing":[null,""],"Episode Status Management":[null,""],"Update PLEX":[null,""],"Update KODI":[null,""],"Update Emby":[null,""],"Missed Subtitle Management":[null,""],"Help & Info":[null,""],"Backup & Restore":[null,""],"Tools":[null,""],"Support SickRage":[null,""],"View Errors":[null,""],"View Warnings":[null,""],"View Log":[null,""],"Check For Updates":[null,""],"Restart":[null,""],"Shutdown":[null,""],"Logout":[null,""],"Server Status":[null,""],"View overview of snatched episodes":[null,""],"Episodes Downloaded":[null,""],"Memory used":[null,""],"Load time":[null,""],"Branch":[null,""],"Now":[null,""]}}}} \ No newline at end of file +{"messages":{"domain":"messages","locale_data":{"messages":{"100":[null,""],"250":[null,""],"500":[null,""],"":{"domain":"messages","plural_forms":"nplurals=3; plural=(n==0 ? 0 : n%10==1 && n%100!=11 ? 1 : 2);","lang":"lv_LV"},"Drama":[null,""],"Mystery":[null,""],"Science-Fiction":[null,""],"Crime":[null,""],"Action":[null,""],"Comedy":[null,""],"Thriller":[null,""],"Animation":[null,""],"Family":[null,""],"Fantasy":[null,""],"Adventure":[null,""],"Horror":[null,""],"Film-Noir":[null,""],"Sci-Fi":[null,""],"Romance":[null,""],"Sport":[null,""],"War":[null,""],"Biography":[null,""],"History":[null,""],"Music":[null,""],"Western":[null,""],"News":[null,""],"Sitcom":[null,""],"Reality-TV":[null,""],"Documentary":[null,""],"Game-Show":[null,""],"Musical":[null,""],"Talk-Show":[null,""],"Started Download":[null,""],"Download Finished":[null,""],"Subtitle Download Finished":[null,""],"SickRage Updated":[null,""],"SickRage Updated To Commit#: ":[null,""],"SickRage new login":[null,""],"New login from IP: {0}. http://geomaplookup.net/?ip={0}":[null,""],"Repeat":[null,""],"Repeat (Separated)":[null,""],"Extend":[null,""],"Extend (Limited)":[null,""],"Extend (Limited, E-prefixed)":[null,""],"Downloaded":[null,""],"Snatched":[null,""],"Snatched (Proper)":[null,""],"Failed":[null,""],"Snatched (Best)":[null,""],"Archived":[null,""],"Unknown":[null,""],"Unaired":[null,""],"Skipped":[null,""],"Wanted":[null,""],"Ignored":[null,""],"Subtitled":[null,""],"For best results please set the Download Station alias as":[null,""],"You can check this setting in the Synology DSM":[null,""],"Control Panel":[null,""],"Application Portal":[null,""],"Make sure you allow DSM to be embedded with iFrames too in":[null,""],"DSM Settings":[null,""],"Security":[null,""],"<No Filter>":[null,""],"Daily Searcher":[null,""],"Backlog":[null,""],"Show Updater":[null,""],"Check Version":[null,""],"Show Queue":[null,""],"Search Queue (All)":[null,""],"Search Queue (Daily Searcher)":[null,""],"Search Queue (Backlog)":[null,""],"Search Queue (Manual)":[null,""],"Search Queue (Retry/Failed)":[null,""],"Search Queue (RSS)":[null,""],"Find Propers":[null,""],"Postprocessor":[null,""],"Find Subtitles":[null,""],"Trakt Checker":[null,""],"Event":[null,""],"Error":[null,""],"Tornado":[null,""],"Thread":[null,""],"Main":[null,""],"Loading":[null,""],"New update found for SickRage, starting auto-updater":[null,""],"Update was successful":[null,""],"Update failed!":[null,""],"Backup":[null,""],"Config backup in progress...":[null,""],"Config backup successful, updating...":[null,""],"Config backup failed, aborting update":[null,""],"No update needed":[null,""],"Mako Error":[null,""],"Oops":[null,""],"Wrong API key used":[null,""],"Login":[null,""],"API Key not generated":[null,""],"API Builder":[null,""],"Schedule":[null,""],"Test 1":[null,""],"This is test number 1":[null,""],"Test 2":[null,""],"This is test number 2":[null,""],"You're using the {branch} branch. Please use 'master' unless specifically asked":[null,""],"Invalid show parameters":[null,""],"Invalid parameters":[null,""],"Episode couldn't be retrieved":[null,""],"Home":[null,""],"Show List":[null,""],"Error: Unsupported Request. Send jsonp request with 'callback' variable in the query string.":[null,""],"Success. Connected and authenticated":[null,""],"Authentication failed. SABnzbd expects":[null,""],"as authentication method":[null,""],"Unable to connect to host":[null,""],"SMS sent successfully":[null,""],"Problem sending SMS: {message}":[null,""],"Telegram notification succeeded. Check your Telegram clients to make sure it worked":[null,""],"Error sending Telegram notification: {message}":[null,""],"join notification succeeded. Check your join clients to make sure it worked":[null,""],"Error sending join notification: {message}":[null,""]," with password":[null,""],"Registered and Tested growl successfully {growl_host}":[null,""],"Registration and Testing of growl failed {growl_host}":[null,""],"Test prowl notice sent successfully":[null,""],"Test prowl notice failed":[null,""],"Boxcar2 notification succeeded. Check your Boxcar2 clients to make sure it worked":[null,""],"Error sending Boxcar2 notification":[null,""],"Pushover notification succeeded. Check your Pushover clients to make sure it worked":[null,""],"Error sending Pushover notification":[null,""],"Key verification successful":[null,""],"Unable to verify key":[null,""],"Tweet successful, check your twitter to make sure it worked":[null,""],"Error sending tweet":[null,""],"Please enter a valid account sid":[null,""],"Please enter a valid auth token":[null,""],"Please enter a valid phone sid":[null,""],"Please format the phone number as \"+1-###-###-####\"":[null,""],"Authorization successful and number ownership verified":[null,""],"Error sending sms":[null,""],"Slack message successful":[null,""],"Slack message failed":[null,""],"Discord message successful":[null,""],"Discord message failed":[null,""],"Test KODI notice sent successfully to {kodi_host}":[null,""],"Test KODI notice failed to {kodi_host}":[null,""],"Successful test notice sent to Plex Home Theater ... {plex_clients}":[null,""],"Test failed for Plex Home Theater ... {plex_clients}":[null,""],"Tested Plex Home Theater(s)":[null,""],"Successful test of Plex Media Server(s) ... {plex_servers}":[null,""],"Test failed, No Plex Media Server host specified":[null,""],"Test failed for Plex Media Server(s) ... {plex_servers}":[null,""],"Tested Plex Media Server host(s)":[null,""],"Tried sending desktop notification via libnotify":[null,""],"Test notice sent successfully to {emby_host}":[null,""],"Test notice failed to {emby_host}":[null,""],"Successfully started the scan update":[null,""],"Test failed to start the scan update":[null,""],"Test notice sent successfully to {nmj2_host}":[null,""],"Test notice failed to {nmj2_host}":[null,""],"Trakt Authorized":[null,""],"Trakt Not Authorized!":[null,""],"Test email sent successfully! Check inbox.":[null,""],"ERROR: {last_error}":[null,""],"Test NMA notice sent successfully":[null,""],"Test NMA notice failed":[null,""],"Pushalot notification succeeded. Check your Pushalot clients to make sure it worked":[null,""],"Error sending Pushalot notification":[null,""],"Pushbullet notification succeeded. Check your device to make sure it worked":[null,""],"Error sending Pushbullet notification":[null,""],"Status":[null,""],"Restarting SickRage":[null,""],"Update Failed":[null,""],"Update wasn't successful, not restarting. Check your log for more information.":[null,""],"Checking out branch":[null,""],"Already on branch":[null,""],"Invalid show ID: {show}":[null,""],"Show not in show list":[null,""],"Edit":[null,""],"This show is in the process of being downloaded - the info below is incomplete.":[null,""],"The information on this page is in the process of being updated.":[null,""],"The episodes below are currently being refreshed from disk":[null,""],"Currently downloading subtitles for this show":[null,""],"This show is queued to be refreshed.":[null,""],"This show is queued and awaiting an update.":[null,""],"This show is queued and awaiting subtitles download.":[null,""],"Resume":[null,""],"Pause":[null,""],"Remove":[null,""],"Re-scan files":[null,""],"Force Full Update":[null,""],"Update show in KODI":[null,""],"Update show in Emby":[null,""],"Hide specials":[null,""],"Show specials":[null,""],"Preview Rename":[null,""],"Download Subtitles":[null,""],"No scene exceptions":[null,""],"Invalid show ID":[null,""],"Unable to find the specified show":[null,""],"Unable to retreive Fansub Groups from AniDB.":[null,""],"Edit Show":[null,""],"Unable to refresh this show: {error}":[null,""],"New location <tt>{location}</tt> does not exist":[null,""],"Unable to update show: {error}":[null,""],"Unable to force an update on scene exceptions of the show.":[null,""],"Unable to force an update on scene numbering of the show.":[null,""],"{num_errors:d} error{plural} while saving changes:":[null,""],"{show_name} has been {paused_resumed}":[null,""],"resumed":[null,""],"paused":[null,""],"{show_name} has been {deleted_trashed} {was_deleted}":[null,""],"deleted":[null,""],"trashed":[null,""],"(media untouched)":[null,""],"(with all related media)":[null,""],"Unable to refresh this show.":[null,""],"Unable to update this show.":[null,""],"Library update command sent to KODI host(s)): {kodi_hosts}":[null,""],"Unable to contact one or more KODI host(s)): {kodi_hosts}":[null,""],"Library update command sent to Plex Media Server host: {plex_server}":[null,""],"Unable to contact Plex Media Server host: {plex_server}":[null,""],"Library update command sent to Emby host: {emby_host}":[null,""],"Unable to contact Emby host: {emby_host}":[null,""],"You must specify a show and at least one episode":[null,""],"Invalid status":[null,""],"Backlog was automatically started for the following seasons of <b>{show_name}</b>":[null,""],"Season":[null,""],"Backlog started":[null,""],"Retrying Search was automatically started for the following season of <b>{show_name}</b>":[null,""],"Retry Search started":[null,""],"You must specify a show":[null,""],"Can't rename episodes when the show dir is missing.":[null,""],"New subtitles downloaded: {new_subtitle_languages}":[null,""],"No subtitles downloaded":[null,""],"IRC":[null,""],"Could not load news from the repo. [Click here for news.md])({news_url})":[null,""],"The was a problem connecting to github, please refresh and try again":[null,""],"Could not load changes from the repo. [Click here for CHANGES.md]({changes_url})":[null,""],"Changelog":[null,""],"Post Processing":[null,""],"Add Shows":[null,""],"No folders selected.":[null,""],"New Show":[null,""],"Trending Shows":[null,""],"Popular Shows":[null,""],"Most Anticipated Shows":[null,""],"Most Collected Shows":[null,""],"Most Watched Shows":[null,""],"Most Played Shows":[null,""],"Recommended Shows":[null,""],"New Shows":[null,""],"Season Premieres":[null,""],"Existing Show":[null,""],"No root directories setup, please go back and add one.":[null,""],"Show added":[null,""],"Adding the specified show {show_name}":[null,""],"Missing params, no Indexer ID or folder: {show_to_add} and {root_dir}/{show_path}":[null,""],"Unknown error. Unable to add show due to problem with show selection.":[null,""],"Unable to add show":[null,""],"Folder {show_dir} exists already":[null,""],"Unable to create the folder {show_dir}, can't add the show":[null,""],"Adding the specified show into {show_dir}":[null,""],"Shows Added":[null,""],"Automatically added {num_shows} from their existing metadata files":[null,""],"Mass Update":[null,""],"Episode Overview":[null,""],"Missing Subtitles":[null,""],"Backlog Overview":[null,""],"Mass Edit":[null,""],"Unable to update show: {excption_format}":[null,""],"Unable to refresh show {show_name}: {excption_format}":[null,""],"Errors encountered":[null,""],"Updates":[null,""],"Refreshes":[null,""],"Renames":[null,""],"Subtitles":[null,""],"The following actions were queued":[null,""],"Failed Downloads":[null,""],"Manage Searches":[null,""],"Backlog search started":[null,""],"Daily search started":[null,""],"Find propers search started":[null,""],"Subtitle search started":[null,""],"Remove Selected":[null,""],"Clear History":[null,""],"Trim History":[null,""],"Selected history entries removed":[null,""],"History cleared":[null,""],"Removed history entries older than 30 days":[null,""],"General":[null,""],"Backup/Restore":[null,""],"Search Settings":[null,""],"Search Providers":[null,""],"Subtitles Settings":[null,""],"Notifications":[null,""],"Anime":[null,""],"SickRage Configuration":[null,""],"Config - Shares":[null,""],"Windows Shares Configuration":[null,""],"Saved Shares":[null,""],"Your Windows share settings have been saved":[null,""],"Config - General":[null,""],"General Configuration":[null,""],"Saved Defaults":[null,""],"Your \"add show\" defaults have been set to your current selections.":[null,""],"Unable to create directory {directory}, log directory not changed.":[null,""],"Unable to create directory {directory}, https cert directory not changed.":[null,""],"Unable to create directory {directory}, https key directory not changed.":[null,""],"Error(s) Saving Configuration":[null,""],"Configuration Saved":[null,""],"Config - Backup/Restore":[null,""],"Config - Episode Search":[null,""],"Config - Post Processing":[null,""],"Unpacking Not Supported, disabling unpack setting":[null,""],"You tried saving an invalid normal naming config, not saving your naming settings":[null,""],"You tried saving an invalid anime naming config, not saving your naming settings":[null,""],"Config - Providers":[null,""],"No Provider Name specified":[null,""],"No Provider Url specified":[null,""],"No Provider Api key specified":[null,""],"Config - Notifications":[null,""],"Config - Subtitles":[null,""],"Config - Anime":[null,""],"Clear Errors":[null,""],"Clear Warnings":[null,""],"Submit Errors":[null,""],"Logs & Errors":[null,""],"Log File":[null,""],"Logs":[null,""],"This is a test notification from SickRage":[null,""],"Choose Directory":[null,""],"Select log file folder location":[null,""],"Select CSS file":[null,""],"Select backup folder to save to":[null,""],"Select backup files to restore":[null,""],"Please fill out the necessary fields above.":[null,""],"<b>Step 1:</b> Confirm Authorization":[null,""],"Check blacklist name; the value needs to be a trakt slug":[null,""],"You must provide a recipient email address!":[null,""],"You didn't supply a Pushbullet api key":[null,""],"Don't forget to save your new pushbullet settings.":[null,""],"Select TV Download Directory":[null,""],"Select Unpack Directory":[null,""],"This pattern is invalid.":[null,""],"This pattern would be invalid without the folders, using it will force \"Season Folders\" on for all shows.":[null,""],"This pattern is valid.":[null,""],"Select .nzb black hole/watch location":[null,""],"Select .torrent black hole/watch location":[null,""],"Select .torrent download location":[null,""],"Minimum seeding time is":[null,""],"URL to your uTorrent client (e.g. http://localhost:8000)":[null,""],"Stop seeding when inactive for":[null,""],"URL to your Transmission client (e.g. http://localhost:9091)":[null,""],"URL to your Deluge client (e.g. http://localhost:8112)":[null,""],"IP or Hostname of your Deluge Daemon (e.g. scgi://localhost:58846)":[null,""],"URL to your Synology DS client (e.g. http://localhost:5000)":[null,""],"URL to your rTorrent client (e.g. scgi://localhost:5000 <br> or https://localhost/rutorrent/plugins/httprpc/action.php)":[null,""],"URL to your qBittorrent client (e.g. http://localhost:8080)":[null,""],"URL to your MLDonkey (e.g. http://localhost:4080)":[null,""],"URL to your putio client (e.g. http://localhost:8080)":[null,""],"<a herf=\"https://app.put.io/oauth/apps/new\" target=\"_blank\"> Create a new OAuth app for put.io</a>":[null,""],"Put.io Parent Folder":[null,""],"Put.io OAuth Token":[null,""],"Show Episodes":[null,""],"Hide Episodes":[null,""],"Select Show Location":[null,""],"Select Unprocessed Episode Folder":[null,""],"DELETED":[null,""],"Resume updating the log on this page.":[null,""],"Pause updating the log on this page.":[null,""],"searching {searchingFor}...":[null,""],"search timed out, try again or try another indexer":[null,""],"loading folders...":[null,""],"Loading...":[null,""],"You have reached this page by accident, please check the url.":[null,""],"A mako error has occured.<br>\n If this happened during an update a simple page refresh may be the solution.<br>\n Mako errors that happen during updates may be a one time error if there were significant ui changes.":[null,""],"Show/Hide Error":[null,""],"Add New Show":[null,""],"For shows that you haven't downloaded yet, this option finds a show on theTVDB.com, creates a directory for it's episodes, and adds it to SickRage.":[null,""],"Add From Trakt Lists":[null,""],"For shows that you haven't downloaded yet, this option lets you choose from a show from one of the Trakt lists to add to SickRage.":[null,""],"Add From IMDB's Popular Shows":[null,""],"View IMDB's list of the most popular shows. This feature uses IMDB's MOVIEMeter algorithm to identify popular TV Series.":[null,""],"Add Existing Shows":[null,""],"Use this option to add shows that already have a folder created on your hard drive. SickRage will scan your existing metadata/episodes and add the show accordingly.":[null,""],"Add Existing Show":[null,""],"Manage Directories":[null,""],"Customize Options":[null,""],"SickRage can add existing shows, using the current options, by using locally stored NFO/XML metadata to eliminate user interaction. If you would rather have SickRage prompt you to customize each show, then use the checkbox below.":[null,""],"Prompt me to set settings for each show":[null,""],"Displaying folders within these directories which aren't already added to SickRage":[null,""],"Submit":[null,""],"Find a show on theTVDB":[null,""],"Show retrieved from existing metadata":[null,""],"All Indexers":[null,""],"Search":[null,""],"This will only affect the language of the retrieved metadata file contents and episode filenames.":[null,""],"This <b>DOES NOT</b> allow SickRage to download non-english TV episodes!":[null,""],"Pick the parent folder":[null,""],"Pre-chosen Destination Folder":[null,""],"Customize options":[null,""],"Add Show":[null,""],"Skip Show":[null,""],"Sort By":[null,""],"Name":[null,""],"Original":[null,""],"Votes":[null,""],"Rating":[null,""],"Rating > Votes":[null,""],"Sort Order":[null,""],"Asc":[null,""],"Desc":[null,""],"Fetching of IMDB Data failed. Are you online?":[null,""],"Exception":[null,""],"Select Trakt List":[null,""],"Most Anticipated":[null,""],"Trending":[null,""],"Popular":[null,""],"Most Watched":[null,""],"Most Played":[null,""],"Most Collected":[null,""],"Recommended":[null,""],"Toggle navigation":[null,""],"Profile":[null,""],"JSONP":[null,""],"Back to SickRage":[null,""],"Parameters":[null,""],"Required":[null,""],"Description":[null,""],"Type":[null,""],"Default value":[null,""],"Allowed values":[null,""],"Playground":[null,""],"Clear":[null,""],"Yes":[null,""],"No":[null,""],"season":[null,""],"episode":[null,""],"Python Version":[null,""],"SSL Version":[null,""],"OS":[null,""],"Locale":[null,""],"User":[null,""],"Program Folder":[null,""],"Config File":[null,""],"Database File":[null,""],"Cache Folder":[null,""],"Log Folder":[null,""],"Arguments":[null,""],"Web Root":[null,""],"Website":[null,""],"Wiki":[null,""],"Source":[null,""],"IRC Chat":[null,""],"AnimeDB Settings":[null,""],"Look & Feel":[null,""],"AniDB is non-profit database of anime information that is freely open to the public":[null,""],"Enable":[null,""],"should SickRage use data from AniDB?":[null,""],"AniDB Username":[null,""],"username of your AniDB account":[null,""],"AniDB Password":[null,""],"password of your AniDB account":[null,""],"AniDB MyList":[null,""],"do you want to add the PostProcessed episodes to the MyList?":[null,""],"Look and Feel":[null,""],"How should the anime functions show and behave.":[null,""],"Split show lists":[null,""],"separate anime and normal shows in groups":[null,""],"Split in tabs":[null,""],"use tabs for when splitting show lists":[null,""],"Restore":[null,""],"Backup your main database file and config.":[null,""],"Select the folder you wish to save your backup file to":[null,""],"Restore your main database file and config.":[null,""],"Select the backup file you wish to restore":[null,""],"Misc":[null,""],"Interface":[null,""],"Advanced Settings":[null,""],"Startup options. Indexer options. Log and show file locations.":[null,""],"Some options may require a manual restart to take effect.":[null,""],"Default Indexer Language":[null,""],"for adding shows and metadata providers":[null,""],"Launch browser":[null,""],"open the SickRage home page on startup":[null,""],"Initial page":[null,""],"Shows":[null,""],"when launching SickRage interface":[null,""],"Choose hour to update shows":[null,""],"with information such as next air dates, show ended, etc. Use 15 for 3pm, 4 for 4am etc.":[null,""],"note":[null,""],"minutes are randomized each time SickRage is started":[null,""],"Send to trash for actions":[null,""],"when using show \"Remove\" and delete files":[null,""],"on scheduled deletes of the oldest log files":[null,""],"selected actions use trash (recycle bin) instead of the default permanent delete":[null,""],"Log file folder location":[null,""],"Number of Log files saved":[null,""],"number of log files saved when rotating logs (default: 5) (REQUIRES RESTART)":[null,""],"Size of Log files saved":[null,""],"maximum size in MB of the log file (default: 1MB) (REQUIRES RESTART)":[null,""],"Use initial indexer set to":[null,""],"as the default selection when adding new shows":[null,""],"Timeout show indexer at":[null,""],"seconds of inactivity when finding new shows (default:20)":[null,""],"Show root directories":[null,""],"where the files of shows are located":[null,""],"Save Changes":[null,""],"Options for software updates.":[null,""],"Check software updates":[null,""],"and display notifications when updates are available. Checks are run on startup and at the frequency set below*":[null,""],"Automatically update":[null,""],"fetch and install software updates. Updates are run on startup and in the background at the frequency set below*":[null,""],"Check the server every*":[null,""],"hours for software updates (default:1)":[null,""],"Notify on software update":[null,""],"send a message to all enabled notifiers when SickRage has been updated":[null,""],"User Interface":[null,""],"Options for visual appearance.":[null,""],"Interface Language":[null,""],"System Language":[null,""],"for appearance to take effect, save then refresh your browser":[null,""],"Display theme":[null,""],"Dark":[null,""],"Light":[null,""],"Use a background image":[null,""],"use a custom image as background for SickRage":[null,""],"Background Path":[null,""],"Path to the background image":[null,""],"Show fanart in the background":[null,""],"on the show summary page":[null,""],"Fanart transparency":[null,""],"transparency of the fanart in the background":[null,""],"Use a custom stylesheet file":[null,""],"use a custom .css file to style SickRage (for advanced users)":[null,""],"Stylesheet File Path":[null,""],"Path to the stylesheet (.css) file":[null,""],"Show all seasons":[null,""],"Sort with \"The\", \"A\", \"An\"":[null,""],"include articles (\"The\", \"A\", \"An\") when sorting show lists":[null,""],"Missed episodes range":[null,""],"set the range in days of the missed episodes in the Schedule page":[null,""],"Display fuzzy dates":[null,""],"move absolute dates into tooltips and display e.g. \"Last Thu\", \"On Tue\"":[null,""],"Trim zero padding":[null,""],"remove the leading number \"0\" shown on hour of day, and date of month":[null,""],"Date style":[null,""],"Use System Default":[null,""],"Time style":[null,""],"seconds are only shown on the History page":[null,""],"Timezone":[null,""],"Local":[null,""],"Network":[null,""],"display dates and times in either your timezone or the shows network timezone":[null,""],"use local timezone to start searching for episodes minutes after show ends (depends on your dailysearch frequency)":[null,""],"Download url":[null,""],"URL where the shows can be downloaded.":[null,""],"Web Interface":[null,""],"it is recommended that you enable a username and password to secure SickRage from being tampered with remotely.":[null,""],"these options require a manual restart to take effect.":[null,""],"API key":[null,""],"used to give 3rd party programs limited access to SickRage":[null,""],"you can try all the features of the API":[null,""],"here":[null,""],"HTTP logs":[null,""],"enable logs from the internal Tornado web server":[null,""],"HTTP username":[null,""],"set blank for no login":[null,""],"HTTP password":[null,""],"blank = no authentication":[null,""],"HTTP port":[null,""],"web port to browse and access SickRage (default:8081)":[null,""],"Notify on login":[null,""],"enable to be notified when a new login happens in webserver":[null,""],"Listen on IPv6":[null,""],"attempt binding to any available IPv6 address":[null,""],"Enable HTTPS":[null,""],"enable access to the web interface using a HTTPS address":[null,""],"HTTPS certificate":[null,""],"file name or path to HTTPS certificate":[null,""],"HTTPS key":[null,""],"file name or path to HTTPS key":[null,""],"Reverse proxy headers":[null,""],"accept the following reverse proxy headers (advanced)...":[null,""],"(X-Forwarded-For, X-Forwarded-Host, and X-Forwarded-Proto)":[null,""],"CPU throttling":[null,""],"Normal (default). High is lower and Low is higher CPU use":[null,""],"Anonymous redirect":[null,""],"backlink protection via anonymizer service, must end in \"?\"":[null,""],"Enable debug":[null,""],"enable debug logs":[null,""],"Verify SSL Certs":[null,""],"verify SSL Certificates (Disable this for broken SSL installs (Like QNAP))":[null,""],"No Restart":[null,""],"only shutdown when restarting SR":[null,""],"only select this when you have external software restarting SR automatically when it stops (like FireDaemon)":[null,""],"Encrypt passwords":[null,""],"in the <code>config.ini</code> file":[null,""],"warning":[null,""],"passwords must only contain":[null,""],"ASCII characters":[null,""],"Unprotected calendar":[null,""],"allow subscribing to the calendar without user and password":[null,""],"some services like Google Calendar only work this way":[null,""],"Google Calendar Icons":[null,""],"show an icon next to exported calendar events in Google Calendar":[null,""],"Proxy host":[null,""],"blank to disable or proxy to use when connecting to providers":[null,""],"also use global proxy setting for indexers (tvdb, xem, anidb, etc.)":[null,""],"Skip Remove Detection":[null,""],"skip detection of removed files":[null,""],"if disabled the episode will be set to the default deleted status":[null,""],"Default deleted episode status":[null,""],"define the status to be set for media file that has been deleted.":[null,""],"Archived option will keep previous downloaded quality":[null,""],"example: Downloaded (1080p WEB-DL) ==> Archived (1080p WEB-DL)":[null,""],"Options for github related features.":[null,""],"Branch version":[null,""],"error: No branches found.":[null,""],"select branch to use (restart required)":[null,""],"Authorization Type":[null,""],"Username and password":[null,""],"Personal access token":[null,""],"You must use a personal access token if you're using \"two-factor authentication\" on GitHub.":[null,""],"GitHub username":[null,""],"*** (REQUIRED FOR SUBMITTING ISSUES) ***":[null,""],"GitHub password":[null,""],"GitHub personal access token":[null,""],"Generate Token":[null,""],"Manage Tokens":[null,""],"GitHub remote for branch":[null,""],"access repo configured remotes (save then refresh browser)":[null,""],"default":[null,""],"origin":[null,""],"Git executable path":[null,""],"only needed if OS is unable to locate git from env":[null,""],"Git reset":[null,""],"removes untracked files and performs a hard reset on git branch automatically to help resolve update issues":[null,""],"Home Theater / NAS":[null,""],"Devices":[null,""],"Social":[null,""],"A free and open source cross-platform media center and home entertainment system software with a 10-foot user interface designed for the living-room TV.":[null,""],"send KODI commands?":[null,""],"Always on":[null,""],"log errors when unreachable?":[null,""],"Notify on snatch":[null,""],"send a notification when a download starts?":[null,""],"Notify on download":[null,""],"send a notification when a download finishes?":[null,""],"Notify on subtitle download":[null,""],"send a notification when subtitles are downloaded?":[null,""],"Update library":[null,""],"update KODI library when a download finishes?":[null,""],"Full library update":[null,""],"perform a full library update if update per-show fails?":[null,""],"Only update first host":[null,""],"only send library updates to the first active host?":[null,""],"KODI IP:Port":[null,""],"host running KODI (eg. 192.168.1.100:8080)":[null,""],"(multiple host strings must be separated by commas)":[null,""],"Username":[null,""],"username for your KODI server (blank for none)":[null,""],"Password":[null,""],"password for your KODI server (blank for none)":[null,""],"Click below to test.":[null,""],"Experience your media on a visually stunning, easy to use interface on your Mac connected to your TV. Your media library has never looked this good!":[null,""],"For sending notifications to Plex Home Theater (PHT) clients, use the KODI notifier with port <b>3005</b>.":[null,""],"send Plex Media Server library updates?":[null,""],"Plex Media Server Auth Token":[null,""],"auth token used by Plex":[null,""],"Update Library":[null,""],"update Plex Media Server library when a download finishes":[null,""],"Plex Media Server IP:Port":[null,""],"one or more hosts running Plex Media Server<br/>(eg. 192.168.1.1:32400, 192.168.1.2:32400)":[null,""],"HTTPS":[null,""],"use https for plex media server requests?":[null,""],"Click below to test Plex Media Server(s)":[null,""],"Test Plex Media Server":[null,""],"Plex Home Theater":[null,""],"send Plex Home Theater notifications?":[null,""],"Plex Home Theater IP:Port":[null,""],"one or more hosts running Plex Home Theater<br>(eg. 192.168.1.100:3000, 192.168.1.101:3000)":[null,""],"Click below to test Plex Home Theater(s)":[null,""],"Test Plex Home Theater":[null,""],"some Plex Home Theaters <b class=\"boldest\">do not</b> support notifications e.g. Plexapp for Samsung TVs":[null,""],"Emby":[null,""],"A home media server built using other popular open source technologies.":[null,""],"send update commands to Emby?":[null,""],"Emby IP:Port":[null,""],"host running Emby (eg. 192.168.1.100:8096)":[null,""],"Emby API Key":[null,""],"Networked Media Jukebox":[null,""],"The Networked Media Jukebox, or NMJ, is the official media jukebox interface made available for the Popcorn Hour 200-series.":[null,""],"send update commands to NMJ?":[null,""],"Popcorn IP address":[null,""],"IP address of Popcorn 200-series (eg. 192.168.1.100)":[null,""],"Get settings":[null,""],"Get Settings":[null,""],"the Popcorn Hour device must be powered on and NMJ running.":[null,""],"NMJ database":[null,""],"automatically filled via the 'Get Settings' button.":[null,""],"NMJ mount url":[null,""],"Networked Media Jukebox v2":[null,""],"The Networked Media Jukebox, or NMJv2, is the official media jukebox interface made available for the Popcorn Hour 300 & 400-series.":[null,""],"send update commands to NMJv2?":[null,""],"IP address of Popcorn 300/400-series (eg. 192.168.1.100)":[null,""],"Database location":[null,""],"Database instance":[null,""],"adjust this value if the wrong database is selected.":[null,""],"Find database":[null,""],"Find Database":[null,""],"the Popcorn Hour device must be powered on.":[null,""],"NMJv2 database":[null,""],"automatically filled via the 'Find Database' buttons.":[null,""],"Synology":[null,""],"The Synology DiskStation NAS.":[null,""],"Synology Indexer is the daemon running on the Synology NAS to build its media database.":[null,""],"send Synology notifications?":[null,""],"requires SickRage to be running on your Synology NAS.":[null,""],"Synology Indexer":[null,""],"Synology Notifier is the notification system of Synology DSM":[null,""],"send notifications to the Synology Notifier?":[null,""],"pyTivo":[null,""],"pyTivo is both an HMO and GoBack server. This notifier will load the completed downloads to your Tivo.":[null,""],"send notifications to pyTivo?":[null,""],"requires the downloaded files to be accessible by pyTivo.":[null,""],"pyTivo IP:Port":[null,""],"host running pyTivo (eg. 192.168.1.1:9032)":[null,""],"pyTivo share name":[null,""],"value used in pyTivo Web Configuration to name the share.":[null,""],"Tivo name":[null,""],"(Messages & Settings > Account & System Information > System Information > DVR name)":[null,""],"Growl":[null,""],"A cross-platform unobtrusive global notification system.":[null,""],"send Growl notifications?":[null,""],"Growl IP:Port":[null,""],"host running Growl (eg. 192.168.1.100:23053)":[null,""],"may leave blank if SickRage is on the same host.":[null,""],"otherwise Growl <b>requires</b> a password to be used.":[null,""],"Click below to register and test Growl, this is required for Growl notifications to work.":[null,""],"Register Growl":[null,""],"Prowl":[null,""],"A Growl client for iOS.":[null,""],"send Prowl notifications?":[null,""],"Prowl Message Title":[null,""],"Global Prowl API key(s)":[null,""],"Prowl API(s) listed here, separated by commas if applicable, will<br> receive notifications for <b>all</b> shows. Your Prowl API key is available at:":[null,""],"(this field may be blank except when testing.)":[null,""],"Show notification list":[null,""],"-- Select a Show --":[null,""],"Configure per-show notifications here by entering Prowl API key(s), separated by commas, '\n 'after selecting a show in the drop-down box. Be sure to activate the 'Save for this show' '\n 'button below after each entry.":[null,""],"Save for this show":[null,""],"Prowl priority":[null,""],"Very Low":[null,""],"Moderate":[null,""],"Normal":[null,""],"High":[null,""],"Emergency":[null,""],"priority of Prowl messages from SickRage.":[null,""],"Libnotify":[null,""],"The standard desktop notification API for Linux/*nix systems. This notifier will only function if the pynotify module is installed (Ubuntu/Debian package <a href=\"apt:python-notify\">python-notify</a>).":[null,""],"send Libnotify notifications?":[null,""],"Pushover":[null,""],"Pushover makes it easy to send real-time notifications to your Android and iOS devices.":[null,""],"send Pushover notifications?":[null,""],"Pushover key":[null,""],"user key of your Pushover account":[null,""],"Pushover API key":[null,""],"click here":[null,""]," to create a Pushover API key":[null,""],"Pushover devices":[null,""],"comma separated list of pushover devices you want to send notifications to":[null,""],"Pushover notification sound":[null,""],"Bike":[null,""],"Bugle":[null,""],"Cash Register":[null,""],"Classical":[null,""],"Cosmic":[null,""],"Falling":[null,""],"Gamelan":[null,""],"Incoming":[null,""],"Intermission":[null,""],"Magic":[null,""],"Mechanical":[null,""],"Piano Bar":[null,""],"Siren":[null,""],"Space Alarm":[null,""],"Tug Boat":[null,""],"Alien Alarm (long)":[null,""],"Climb (long)":[null,""],"Persistent (long)":[null,""],"Pushover Echo (long)":[null,""],"Up Down (long)":[null,""],"None (silent)":[null,""],"Device specific":[null,""],"choose notification sound to use":[null,""],"Pushover priority":[null,""],"Choose priority to use":[null,""],"Boxcar 2":[null,""],"Read your messages where and when you want them!":[null,""],"send Boxcar notifications?":[null,""],"Boxcar2 access token":[null,""],"access token for your Boxcar account.":[null,""],"NMA":[null,""],"Notify My Android":[null,""],"Notify My Android is a Prowl-like Android App and API that offers an easy way to send notifications from your application directly to your Android device.":[null,""],"send NMA notifications?":[null,""],"NMA API key":[null,""],"(multiple keys must be separated by commas, up to a maximum of 5)":[null,""],"NMA priority":[null,""],"priority of NMA messages from SickRage.":[null,""],"Pushalot":[null,""],"Pushalot is a platform for receiving custom push notifications to connected devices running Windows Phone or Windows 8.":[null,""],"send Pushalot notifications ?":[null,""],"Pushalot authorization token":[null,""],"authorization token of your Pushalot account.":[null,""],"Pushbullet":[null,""],"Pushbullet is a platform for receiving custom push notifications to connected devices running Android/iOS and desktop browsers such as Chrome, Firefox or Opera.":[null,""],"send Pushbullet notifications?":[null,""],"Pushbullet API key":[null,""],"API key of your Pushbullet account":[null,""],"Pushbullet devices":[null,""],"Update device list":[null,""],"Pushbullet channels":[null,""],"Free Mobile":[null,""],"Free Mobile is a famous French cellular network provider.<br> It provides to their customer a free SMS API.":[null,""],"send SMS notifications?":[null,""],"send a SMS when a download starts?":[null,""],"send a SMS when a download finishes?":[null,""],"send a SMS when subtitles are downloaded?":[null,""],"Free Mobile customer ID":[null,""],"it's your Free Mobile customer ID (8 digits)":[null,""],"Free Mobile API key":[null,""],"find your API key in your customer portal.":[null,""],"Click below to test your settings.":[null,""],"Telegram":[null,""],"Telegram is a cloud-based instant messaging service.":[null,""],"send Telegram notifications?":[null,""],"send a message when a download starts?":[null,""],"send a message when a download finishes?":[null,""],"send a message when subtitles are downloaded?":[null,""],"User/group ID":[null,""],"contact @myidbot on Telegram to get an ID":[null,""],"Bot API token":[null,""],"contact @BotFather on Telegram to set up one":[null,""],"Join":[null,""],"Join all of your devices together!":[null,""],"send Join notifications?":[null,""],"Device ID":[null,""],"per device specific id":[null,""]," to create a Join API key":[null,""],"Twilio":[null,""],"Twilio is a webservice API that allows you to communicate directly with a mobile number. This notifier will send a text directly to your mobile device.":[null,""],"should SickRage text your mobile device?":[null,""],"Twilio Account SID":[null,""],"account SID of your Twilio account.":[null,""],"Twilio Auth Token":[null,""],"Twilio Phone SID":[null,""],"phone SID that you would like to send the sms from":[null,""],"Your phone number":[null,""],"phone number that will receive the sms. Please use the format +1-###-###-####":[null,""],"Twitter":[null,""],"A social networking and microblogging service, enabling its users to send and read other users' messages called tweets.":[null,""],"should SickRage post tweets on Twitter?":[null,""],"you may want to use a secondary account.":[null,""],"send direct message":[null,""],"send a notification via Direct Message, not via status update":[null,""],"send DM to":[null,""],"Twitter account to send Direct Messages to (must follow you)":[null,""],"Step One":[null,""],"Request Authorization":[null,""],"Click the \"Request Authorization\" button.<br> This will open a new page containing an auth key.<br> <b>note:</b> if nothing happens check your popup blocker.":[null,""],"Step Two":[null,""],"Enter the key Twitter gave you below, and click \"Verify Key\".":[null,""],"Trakt":[null,""],"Trakt helps keep a record of what TV shows and movies you are watching. Based on your favorites, Trakt recommends additional shows and movies you'll enjoy!":[null,""],"send Trakt.tv notifications?":[null,""],"username of your Trakt account.":[null,""],"Trakt PIN":[null,""],"Get Trakt PIN":[null,""],"PIN code to authorize SickRage to access Trakt on your behalf.":[null,""],"API Timeout":[null,""],"seconds to wait for Trakt API to respond. (Use 0 to wait forever)":[null,""],"Default indexer":[null,""],"Sync libraries":[null,""],"sync your SickRage show library with your trakt show library.":[null,""],"Remove Episodes From Collection":[null,""],"remove an episode from your Trakt Collection if it is not in your SickRage Library.":[null,""],"Sync watchlist":[null,""],"sync your SickRage show watchlist with your trakt show watchlist (either Show and Episode).":[null,""],"episode will be added on watch list when wanted or snatched and will be removed when downloaded ":[null,""],"Watchlist add method":[null,""],"Skip All":[null,""],"Download Pilot Only":[null,""],"Get whole show":[null,""],"method in which to download episodes for new shows.":[null,""],"Remove episode":[null,""],"remove an episode from your watchlist after it is downloaded.":[null,""],"Remove series":[null,""],"remove the whole series from your watchlist after any download.":[null,""],"Remove watched show":[null,""],"remove the show from sickrage if it's ended and completely watched":[null,""],"Start paused":[null,""],"shows grabbed from your trakt watchlist start paused.":[null,""],"Trakt blackList name":[null,""],"name (slug) of list on Trakt for blacklisting show on 'Add Trending Show' & 'Add Recommended Shows' pages":[null,""],"Email":[null,""],"Allows configuration of email notifications on a per show basis.":[null,""],"send email notifications?":[null,""],"SMTP host":[null,""],"hostname of your SMTP email server.":[null,""],"SMTP port":[null,""],"port number used to connect to your SMTP host.":[null,""],"SMTP from":[null,""],"sender email address, some hosts require a real address.":[null,""],"Use TLS":[null,""],"check to use TLS encryption.":[null,""],"SMTP user":[null,""],"(optional) your SMTP server username.":[null,""],"SMTP password":[null,""],"(optional) your SMTP server password.":[null,""],"Global email list":[null,""],"email addresses listed here, separated by commas if applicable, will<br> receive notifications for <b>all</b> shows.":[null,""],"(This field may be blank except when testing.)":[null,""],"Email Subject":[null,""],"use a custom subject for some privacy protection?":[null,""],"(leave blank for the default SickRage subject)":[null,""],"configure per-show notifications here by entering email address(es), separated by commas,":[null,""],"after selecting a show in the drop-down box. Be sure to activate the 'Save for this show'":[null,""],"button below after each entry.":[null,""],"Slack":[null,""],"Slack brings all your communication together in one place. It's real-time messaging, archiving and search for modern teams.":[null,""],"should SickRage post messages on Slack?":[null,""],"Slack Incoming Webhook":[null,""],"Discord":[null,""],"All-in-one voice and text chat for gamers that's free, secure, and works on both your desktop and phone.":[null,""],"Should SickRage post messages on Discord?":[null,""],"Discord Incoming Webhook":[null,""],"Create webhook under channel settings.":[null,""],"Discord Bot Name":[null,""],"Blank will use webhook default Name.":[null,""],"Discord Avatar URL":[null,""],"Blank will use webhook default Avatar.":[null,""],"Discord TTS":[null,""],"Send notifications using text-to-speech":[null,""],"Post-Processing":[null,""],"Episode Naming":[null,""],"Metadata":[null,""],"Settings that dictate how SickRage should process completed downloads.":[null,""],"enable the automatic post processor to scan and process any files in your Post Processing Dir":[null,""],"do not use if you use an external Post Processing script":[null,""],"Post Processing Dir":[null,""],"the folder where your download client puts the completed TV downloads.":[null,""],"please use seperate downloading and completed folders in your download client if possible.":[null,""],"Processing Method":[null,""],"what method should be used to put files into the library?":[null,""],"if you keep seeding torrents after they finish, please avoid the 'move' processing method to prevent errors.":[null,""],"Auto Post-Processing Frequency":[null,""],"time in minutes to check for new files to auto post-process (min 10)":[null,""],"Postpone post processing":[null,""],"wait to process a folder if sync files are present.":[null,""],"Sync File Extensions":[null,""],"comma seperated list of extensions or filename globs SickRage ignores when Post Processing":[null,""],"Rename Episodes":[null,""],"rename episode using the Episode Naming settings?":[null,""],"Create missing show directories":[null,""],"create missing show directories when they get deleted":[null,""],"Add shows without directory":[null,""],"add shows without creating a directory (not recommended)":[null,""],"Move associated files":[null,""],"move associated (srt/srr/sfv/etc) files while post processing?":[null,""],"Rename .nfo file":[null,""],"rename the original .nfo file to .nfo-orig to avoid conflicts?":[null,""],"Associated file extensions":[null,""],"comma separated list of associated file extensions SickRage should keep while post processing.":[null,""],"leaving it empty means no associated files will be post processed":[null,""],"Delete non associated files":[null,""],"delete non associated files while post processing?":[null,""],"Change File Date":[null,""],"set last modified filedate to the date that the episode aired?":[null,""],"some systems may ignore this feature.":[null,""],"Timezone for File Date":[null,""],"local":[null,""],"network":[null,""],"what timezone should be used to change File Date?":[null,""],"Unpack":[null,""],"What to do with archived releases found in your <i>TV Download Dir</i>?":[null,""],"Ignore (do not process contents)":[null,""],"Unpack (process contents)":[null,""],"Treat as video (process archive as-is)":[null,""],"'Unpack' only works with RAR archives":[null,""],"Windows":[null,""],"WinRar is required on windows":[null,""],"Unpack Directory":[null,""],"Choose a path to unpack files, leave blank to unpack in download dir":[null,""],"Unrar Location":[null,""],"add the path to unrar if it is not in the system path":[null,""],"Alternate Unrar Tool":[null,""],"add the path to an alternate unrar tool if it is not in the system path":[null,""],"Delete RAR contents":[null,""],"delete content of RAR files, even if Process Method not set to move?":[null,""],"only working with RAR archive":[null,""],"Don't delete empty folders":[null,""],"leave empty folders when Post Processing?":[null,""],"can be overridden using manual Post Processing":[null,""],"Follow symbolic-links":[null,""],"follow down symbolic links in download directory?":[null,""],"<b>EXPERTS ONLY.</b><br>Enable only if you know what <b>circular symbolic links</b> are,<br>and can <b>verify that you have none</b>.":[null,""],"Use icacls":[null,""],"Windows only":[null,""],"sets video permissions after using the move method in post processing":[null,""],"Extra Scripts":[null,""],"see":[null,""],"for script arguments description and usage.":[null,""],"How SickRage will name and sort your episodes.":[null,""],"Name Pattern":[null,""],"Toggle Naming Legend":[null,""],"don't forget to add quality pattern. Otherwise after post-processing the episode will have UNKNOWN quality":[null,""],"Meaning":[null,""],"Pattern":[null,""],"Result":[null,""],"Use lower case if you want lower case names (eg. %sn, %e.n, %q_n etc)":[null,""],"Show Name":[null,""],"Show.Name":[null,""],"Show_Name":[null,""],"Season Number":[null,""],"XEM Season Number":[null,""],"Episode Number":[null,""],"XEM Episode Number":[null,""],"Episode Name":[null,""],"Episode.Name":[null,""],"Episode_Name":[null,""],"Air Date":[null,""],"Post-Processing Date":[null,""],"Quality":[null,""],"Scene Quality":[null,""],"Release Name":[null,""],"SickRage' is used in place of RLSGROUP if it could not be properly detected":[null,""],"Release Group":[null,""],"If episode is proper/repack add 'proper' to name.":[null,""],"Release Type":[null,""],"Multi-Episode Style":[null,""],"Single-EP Sample":[null,""],"Multi-EP sample":[null,""],"Strip Show Year":[null,""],"remove the TV show's year when renaming the file?":[null,""],"only applies to shows that have year inside parentheses":[null,""],"Custom Air-By-Date":[null,""],"name air-by-date shows differently than regular shows?":[null,""],"Toggle ABD Naming Legend":[null,""],"Regular Air Date":[null,""],"Year":[null,""],"Month":[null,""],"Day":[null,""],"Multi-EP style is ignored":[null,""],"Custom Sports":[null,""],"name sports shows differently than regular shows?":[null,""],"Toggle Sports Naming Legend":[null,""],"Sports Air Date":[null,""],"Custom Anime":[null,""],"name anime shows differently than regular shows?":[null,""],"Toggle Anime Naming Legend":[null,""],">XEM Season Number":[null,""],"Single-EP Anime Sample":[null,""],"Multi-EP Anime sample":[null,""],"Add Absolute Number":[null,""],"add the absolute number to the season/episode format?":[null,""],"only applies to anime. (eg. S15E45 - 310 vs S15E45)":[null,""],"Only Absolute Number":[null,""],"replace season/episode format with absolute number":[null,""],"only applies to anime.":[null,""],"No Absolute Number":[null,""],"don't include the absolute number":[null,""],"The data associated to the data. These are files associated to a TV show in the form of images and text that, when supported, will enhance the viewing experience.":[null,""],"Metadata Type":[null,""],"toggle metadata options that you wish to be created":[null,""],"multiple targets may be used":[null,""],"Select Metadata":[null,""],"Provider Priorities":[null,""],"Provider Options":[null,""],"Configure Custom Newznab Providers":[null,""],"Configure Custom Torrent Providers":[null,""],"Check off and drag the providers into the order you want them to be used.":[null,""],"At least one provider is required but two are recommended.":[null,""],"Torrent providers can be toggled in ":[null,""],"Provider does not support backlog searches at this time.":[null,""],"Provider is <b>NOT WORKING</b>.":[null,""],"Configure individual provider settings here.":[null,""],"Check with provider's website on how to obtain an API key if needed.":[null,""],"Configure provider":[null,""],"no providers available to configure.":[null,""],"URL":[null,""],"Enable daily searches":[null,""],"enable provider to perform daily searches.":[null,""],"Enable backlog searches":[null,""],"enable provider to perform backlog searches.":[null,""],"Season search mode":[null,""],"when searching for complete seasons you can choose to have it look for season packs only, or choose to have it build a complete season from just single episodes.":[null,""],"season packs only.":[null,""],"episodes only.":[null,""],"Enable fallback":[null,""],"when searching for a complete season depending on search mode you may return no results, this helps by restarting the search using the opposite search mode.":[null,""],"Custom URL":[null,""],"the URL should include the protocol (and port if applicable). Examples: http://192.168.1.4/ or http://localhost:3000/":[null,""],"Api key":[null,""],"Digest":[null,""],"Hash":[null,""],"Passkey":[null,""],"Cookies":[null,""],"example: uid=1234;pass=567845439634987<br>note: uid and pass are not your username/password.<br>use DevTools or Firebug to get these values after logging in on your browser.":[null,""],"Pin":[null,""],"Seed ratio":[null,""],"stop transfer when ratio is reached<br>(-1 SickRage default to seed forever, or leave blank for downloader default)":[null,""],"Minimum seeders":[null,""],"Minimum leechers":[null,""],"Confirmed download":[null,""],"only download torrents from trusted or verified uploaders ?":[null,""],"Ranked torrents":[null,""],"only download ranked torrents (trusted releases)":[null,""],"English torrents":[null,""],"only download english torrents, or torrents containing english subtitles":[null,""],"For Spanish torrents":[null,""],"ONLY search on this provider if show info is defined as \"Spanish\" (avoid provider's use for VOS shows)":[null,""],"Sorting results by":[null,""],"Freeleech":[null,""],"only download <b>\"FreeLeech\"</b> torrents.":[null,""],"Category":[null,""],"select torrent with Italian subtitle":[null,""],"Configure Custom<br>Newznab Providers":[null,""],"Add and setup or remove custom Newznab providers.":[null,""],"Select provider":[null,""],"-- add new provider --":[null,""],"Provider name":[null,""],"Site URL":[null,""],"Newznab search categories":[null,""],"select your Newznab categories on the left, and click the \"update categories\" button to use them for searching.) <b>don't forget to to save the form!":[null,""],"Update Categories":[null,""],"Add":[null,""],"Delete":[null,""],"Add and setup or remove custom RSS providers.":[null,""],"RSS URL":[null,""],"Search element":[null,""],"eg: title":[null,""],"Episode Search":[null,""],"NZB Search":[null,""],"Torrent Search":[null,""],"How to manage searching with":[null,""],"Randomize Providers":[null,""],"randomize the provider search order instead of going in order of placement":[null,""],"Download propers":[null,""],"replace original download with \"Proper\" or \"Repack\" if nuked":[null,""],"Check propers every":[null,""],"24 hours":[null,""],"4 hours":[null,""],"90 mins":[null,""],"45 mins":[null,""],"15 mins":[null,""],"Backlog search day(s)":[null,""],"number of day(s) that the \"Forced Backlog Search\" will cover (e.g. 7 Days)":[null,""],"Backlog search frequency":[null,""],"time in minutes between searches (min.":[null,""],"Daily search frequency":[null,""],"Usenet retention":[null,""],"age limit in days for usenet articles to be used (e.g. 500)":[null,""],"Ignore words":[null,""],"results with one or more word from this list will be ignored<br>separate words with a comma, e.g. \"word1,word2,word3\"":[null,""],"Require words":[null,""],"results with no word from this list will be ignored<br>separate words with a comma, e.g. \"word1,word2,word3\"":[null,""],"Trackers list":[null,""],"trackers that will be added to magnets without trackers<br>separate trackers with a comma, e.g. \"tracker1,tracker2,tracker3\"":[null,""],"Ignore language names in subbed results":[null,""],"ignore subbed releases based on language names <br>\n Example: \"dk\" will ignore words: dksub, dksubs, dksubbed, dksubed <br>\n separate languages with a comma, e.g. \"lang1,lang2,lang3":[null,""],"Allow high priority":[null,""],"set downloads of recently aired episodes to high priority":[null,""],"Use Failed Downloads":[null,""],"use Failed Download Handling?":[null,""],"will only work with snatched/downloaded episodes after enabling this":[null,""],"Delete Failed":[null,""],"delete files left over from a failed download?":[null,""],"this only works if Use Failed Downloads is enabled.":[null,""],"How to handle NZB search results.":[null,""],"Search NZBs":[null,""],"enable NZB search providers":[null,""],"Send .nzb files to":[null,""],"SABnzbd server URL":[null,""],"URL to your SABnzbd server (e.g. http://localhost:8080/)":[null,""],"SABnzbd username":[null,""],"(blank for none)":[null,""],"SABnzbd password":[null,""],"SABnzbd API key":[null,""],"locate at... SABnzbd Config -> General -> API Key":[null,""],"Use SABnzbd category":[null,""],"add downloads to this category (e.g. TV)":[null,""],"Use SABnzbd category (backlog episodes)":[null,""],"add downloads of old episodes to this category (e.g. TV)":[null,""],"Use SABnzbd category for anime":[null,""],"add anime downloads to this category (e.g. anime)":[null,""],"Use SABnzbd category for anime (backlog episodes)":[null,""],"add anime downloads of old episodes to this category (e.g. anime)":[null,""],"Use forced priority":[null,""],"enable to change priority from HIGH to FORCED":[null,""],"Black hole folder location":[null,""],"<b>.nzb</b> files are stored at this location for external software to find and use":[null,""],"Connect using HTTPS":[null,""],"enable Secure control in NZBGet and set the correct Secure Port here":[null,""],"NZBget host:port":[null,""],"(e.g. localhost:6789)":[null,""],"NZBget RPC host name and port number (not NZBgetweb!)":[null,""],"NZBget username":[null,""],"locate in nzbget.conf (default:nzbget)":[null,""],"NZBget password":[null,""],"locate in nzbget.conf (default:tegbzn6789)":[null,""],"Use NZBget category":[null,""],"send downloads marked this category (e.g. TV)":[null,""],"Use NZBget category (backlog episodes)":[null,""],"send downloads of old episodes marked this category (e.g. TV)":[null,""],"Use NZBget category for anime":[null,""],"send anime downloads marked this category (e.g. anime)":[null,""],"Use NZBget category for anime (backlog episodes)":[null,""],"send anime downloads of old episodes marked this category (e.g. anime)":[null,""],"NZBget priority":[null,""],"Very low":[null,""],"Low":[null,""],"Very high":[null,""],"Force":[null,""],"priority for daily snatches (no backlog)":[null,""],"Torrent host:port":[null,""],"URL to your Synology DSM (e.g. http://localhost:5000/)":[null,""],"Client username":[null,""],"Client password":[null,""],"Downloaded files location":[null,""],"where Synology Download Station will save downloaded files (blank for client default)":[null,""],"the destination has to be a shared folder for Synology DS":[null,""],"Click below to test":[null,""],"How to handle Torrent search results.":[null,""],"Search torrents":[null,""],"enable torrent search providers":[null,""],"Send .torrent files to":[null,""],"<b>.torrent</b> files are stored at this location for external software to find and use":[null,""],"URL to your torrent client (e.g. http://localhost:8000/)":[null,""],"Torrent RPC URL":[null,""],"the path without leading and trailing slashes (e.g. transmission)":[null,""],"Http Authentication":[null,""],"Verify certificate":[null,""],"disable if you get \"Deluge: Authentication Error\" in your log":[null,""],"verify SSL certificates for HTTPS requests":[null,""],"Add label to torrent":[null,""],"(blank spaces are not allowed)":[null,""],"label plugin must be enabled in Deluge clients":[null,""],"for QBitTorrent 3.3.1 and up":[null,""],"Add label to torrent for anime":[null,""],"for QBitTorrent 3.3.1 and up ":[null,""],"where <span id=\"torrent_client\">the torrent client</span> will save downloaded files (blank for client default)":[null,""],"the destination has to be a shared folder for Synology DS</span>":[null,""],"Minimum seeding time":[null,""],"time in hours":[null,""],"(default:'0' passes blank to client and '-1' passes nothing)":[null,""],"Start torrent paused":[null,""],"add .torrent to client but do <b style=\"font-weight:900\">not</b> start downloading":[null,""],"Allow high bandwidth":[null,""],"use high bandwidth allocation if priority is high":[null,""],"Test Connection":[null,""],"Windows Shares":[null,""],"Defines your existing windows shares so that we can add them to the browse dialog":[null,""],"Share #{number}":[null,""],"Share label":[null,""],"Hostname or IP":[null,""],"Share path":[null,""],"Subtitles Search":[null,""],"Subtitles Plugin":[null,""],"Plugin Settings":[null,""],"Settings that dictate how SickRage handles subtitles search results.":[null,""],"Search Subtitles":[null,""],"Subtitle Languages":[null,""],"Subtitle Directory":[null,""],"the directory where SickRage should store your <i>Subtitles</i> files.":[null,""],"leave empty if you want store subtitle in episode path.":[null,""],"Subtitle Find Frequency":[null,""],"time in hours between scans (default: 1)":[null,""],"Include Specials":[null,""],"include the show's specials when searching for subtitles?":[null,""],"Perfect matches":[null,""],"only download subtitles that match: release group, video codec, audio codec and resolution":[null,""],"if disabled you may get out of sync subtitles":[null,""],"Subtitles History":[null,""],"log downloaded Subtitle on History page?":[null,""],"Subtitles Multi-Language":[null,""],"append language codes to subtitle filenames?":[null,""],"this option is required if you use multiple subtitle languages":[null,""],"Delete unwanted subtitles":[null,""],"enable to delete unwanted subtitle languages bundled with release":[null,""],"Embedded Subtitles":[null,""],"ignore subtitles embedded inside video file?":[null,""],"this will ignore <u>all</u> embedded subtitles for every video file!":[null,""],"Hearing Impaired Subtitles":[null,""],"download hearing impaired style subtitles?":[null,""],"See":[null,""],"for a script arguments description.":[null,""],"Additional scripts separated by <b>|</b>.":[null,""],"Scripts are called after each episode has searched and downloaded subtitles.":[null,""],"For any scripted languages, include the interpreter executable before the script. See the following example":[null,""],"For Windows:":[null,""],"For Linux / OS X:":[null,""],"Subtitle Providers":[null,""],"Check off and drag the plugins into the order you want them to be used.":[null,""],"At least one plugin is required.":[null,""]," Web-scraping plugin":[null,""],"Provider Settings":[null,""],"Set user and password for each provider":[null,""],"User Name":[null,""],"Change Show":[null,""],"Prev Show":[null,""],"Next Show":[null,""],"Jump to Season":[null,""],"Specials":[null,""],"Poster for":[null,""],"Stars":[null,""],"minutes":[null,""],"View other popular {genre} shows on trakt.tv.":[null,""],"View other popular {imdbgenre} shows on IMDB.":[null,""],"Allowed":[null,""],"Preferred":[null,""],"Originally Airs":[null,""],"Show Status":[null,""],"Default EP Status":[null,""],"Location":[null,""],"Missing":[null,""],"Scene Name":[null,""],"Required Words":[null,""],"Ignored Words":[null,""],"Size":[null,""],"Info Language":[null,""],"Subtitles SR Metadata":[null,""],"Season Folders":[null,""],"Paused":[null,""],"Air-by-Date":[null,""],"Sports":[null,""],"DVD Order":[null,""],"Scene Numbering":[null,""],"Select Filtered Episodes":[null,""],"Clear All":[null,""],"Change selected episodes to":[null,""],"Select Columns":[null,""],"NFO":[null,""],"TBN":[null,""],"Episode":[null,""],"Absolute":[null,""],"Scene":[null,""],"Scene Absolute":[null,""],"File Name":[null,""],"Airdate":[null,""],"Download":[null,""],"Change the value here if scene numbering differs from the indexer episode numbering":[null,""],"Change the value here if scene absolute numbering differs from the indexer absolute numbering":[null,""],"Manual Search":[null,""],"Do you want to mark this episode as failed?":[null,""],"The episode release name will be added to the failed history, preventing it to be downloaded again.":[null,""],"Do you want to include the current episode quality in the search?":[null,""],"Choosing No will ignore any releases with the same episode quality as the one currently downloaded/snatched.":[null,""],"Download subtitle":[null,""],"Do you want to re-download the subtitle for this language?":[null,""],"It will overwrite your current subtitle":[null,""],"Format":[null,""],"Advanced":[null,""],"Main Settings":[null,""],"Show Location":[null,""],"Preferred Quality":[null,""],"Default Episode Status":[null,""],"this will set the status for future episodes.":[null,""],"this only applies to episode filenames and the contents of metadata files.":[null,""],"search for subtitles":[null,""],"Use SR Metdata":[null,""],"use SickRage metadata when searching for subtitle, this will override the autodiscovered metadata":[null,""],"pause this show (SickRage will not download episodes)":[null,""],"Format Settings":[null,""],"Air by date":[null,""],"check if the show is released as Show.03.02.2010 rather than Show.S02E03.":[null,""],"in case of an air date conflict between regular and special episodes, the later will be ignored.":[null,""],"check if the show is Anime and episodes are released as Show.265 rather than Show.S02E03":[null,""],"check if the show is a sporting or MMA event released as Show.03.02.2010 rather than Show.S02E03":[null,""],"Season folders":[null,""],"group episodes by season folder (uncheck to store in a single folder)":[null,""],"search by scene numbering (uncheck to search by indexer numbering)":[null,""],"use the DVD order instead of the air order":[null,""],"a \"Force Full Update\" is necessary, and if you have existing episodes you need to sort them manually.":[null,""],"comma-separated <i>e.g. \"word1,word2,word3</i>\"":[null,""],"search results with one or more words from this list will be ignored.":[null,""],"e.g. \"word1,word2,word3\"":[null,""],"search results with no words from this list will be ignored.":[null,""],"Scene Exception":[null,""],"this will affect episode search on NZB and torrent providers.":[null,""],"this list appends to the original show name.":[null,""],"WARNING logs":[null,""],"ERROR logs":[null,""],"There are no events to display.":[null,""],"Limit":[null,""],"Layout":[null,""],"HistoryLayout":[null,""],"Compact":[null,""],"Detailed":[null,""],"Time":[null,""],"Provider":[null,""],"Missing Provider":[null,""],"missing provider":[null,""],"Directory":[null,""],"Show Name (tvshow.nfo)":[null,""],"Indexer":[null,""],"Enter the folder containing the episode":[null,""],"Process Method to be used":[null,""],"Copy":[null,""],"Move":[null,""],"Hard Link":[null,""],"Symbolic Link":[null,""],"Symbolic Link Reversed":[null,""],"Force already Post Processed Dir/Files":[null,""],"Mark Dir/Files as priority download":[null,""],"(Check it to replace the file even if it exists at higher quality)":[null,""],"Delete files and folders":[null,""],"(Check it to delete files and folders like auto processing)":[null,""],"Don't use processing queue":[null,""],"(If checked this will return the result of the process here, but may be slow!)":[null,""],"Mark download as failed":[null,""],"Process":[null,""],"Download subtitles for this show?":[null,""],"use SickRage metadata when searching for subtitle, <br />this will override the autodiscovered metadata":[null,""],"Status for previously aired episodes":[null,""],"Status for all future episodes":[null,""],"Group episodes by season folder?":[null,""],"Is this show an Anime?":[null,""],"Is this show scene numbered?":[null,""],"Save Defaults":[null,""],"Use current values as the defaults":[null,""],"<p>Select your preferred fansub groups from the <b>Available Groups</b> and add them to the <b>Whitelist</b>. Add groups to the <b>Blacklist</b> to ignore them.</p>\n <p>The <b>Whitelist</b> is checked <i>before</i> the <b>Blacklist</b>.</p>\n <p>Groups are shown as <b>Name</b> | <b>Rating</b> | <b>Number of subbed episodes</b>.</p>\n <p>You may also add any fansub group not listed to either list manually.</p>\n <p>When doing this please note that you can only use groups listed on anidb for this anime.\n <br>If a group is not listed on anidb but subbed this anime, please correct anidb's data.</p>":[null,""],"Whitelist":[null,""],"Available Groups":[null,""],"Add to Whitelist":[null,""],"Add to Blacklist":[null,""],"Blacklist":[null,""],"Custom Group":[null,""],"Allowed Quality:":[null,""],"Preferred Quality:":[null,""],"Filter Show Name":[null,""],"Root":[null,""],"All":[null,""],"Clear Filter(s)":[null,""],"Poster":[null,""],"Small Poster":[null,""],"Banner":[null,""],"Simple":[null,""],"Next Episode":[null,""],"Progress":[null,""],"Direction":[null,""],"Ascending":[null,""],"Descending":[null,""],"Poster Size":[null,""],"Continuing":[null,""],"Ended":[null,""],"Total":[null,""],"Invalid date":[null,""],"No Network":[null,""],"Next Ep":[null,""],"Prev Ep":[null,""],"Show":[null,""],"Downloads":[null,""],"Active":[null,""],"loading":[null,""],"<p><b><u>Preferred</u></b> qualities will replace those in <b><u>allowed</u></b>, even if they are lower.</p>":[null,""],"New":[null,""],"Set as Default":[null,""],"Remember me":[null,""],"Edit Selected":[null,""],"Subtitle":[null,""],"Default Ep Status":[null,""],"Update":[null,""],"Rescan":[null,""],"Rename":[null,""],"Search Subtitle":[null,""],"Force Metadata Regen":[null,""],"Snatched (Allowed)":[null,""],"Jump to Show":[null,""],"Force Backlog":[null,""],"Manage episodes with status":[null,""],"Manage":[null,""],"None of your episodes have status":[null,""],"Shows containing":[null,""],"episodes":[null,""],"Set checked shows/episodes to":[null,""],"Go":[null,""],"Select all":[null,""],"Clear all":[null,""],"Release":[null,""],"Backlog Search":[null,""],"Not in progress":[null,""],"In Progress":[null,""],"Daily Search":[null,""],"Find Propers Search":[null,""],"Propers search disabled":[null,""],"Subtitle Search":[null,""],"Subtitle search disabled":[null,""],"Search Queue":[null,""],"pending items":[null,""],"Daily":[null,""],"Manual":[null,""],"Changing any settings marked with (<span class=\"separator\">*</span>) will force a refresh of the selected shows.":[null,""],"Selected Shows":[null,""],"Root Directories":[null,""],"Current":[null,""],"Keep":[null,""],"Custom":[null,""],"Group episodes by season folder (set to \"No\" to store in a single folder).":[null,""],"Pause these shows (SickRage will not download episodes).":[null,""],"This will set the status for future episodes.":[null,""],"Search by scene numbering (set to \"No\" to search by indexer numbering).":[null,""],"Set if these shows are Anime and episodes are released as Show.265 rather than Show.S02E03":[null,""],"Set if these shows are sporting or MMA events released as Show.03.02.2010 rather than Show.S02E03.":[null,""],"In case of an air date conflict between regular and special episodes, the later will be ignored.":[null,""],"Set if these shows are released as Show.03.02.2010 rather than Show.S02E03.":[null,""],"Search for subtitles.":[null,""],"All of your episodes have {subsLanguage} subtitles.":[null,""],"Manage episodes without":[null,""],"Episodes without {subsLanguage} subtitles.":[null,""],"Episodes without {subtitleLanguage} (undefined) subtitles.":[null,""],"Download missed subtitles for selected episodes":[null,""],"Performing Restart":[null,""],"Waiting for SickRage to shut down":[null,""],"Waiting for SickRage to start again":[null,""],"Loading the default page":[null,""],"Error: The restart has timed out, perhaps something prevented SickRage from starting again?":[null,""],"Key":[null,""],"Missed":[null,""],"Today":[null,""],"Soon":[null,""],"Later":[null,""],"Subscribe":[null,""],"Date":[null,""],"View Paused":[null,""],"Hidden":[null,""],"Shown":[null,""],"Calendar":[null,""],"List":[null,""],"Ends":[null,""],"Next Ep Name":[null,""],"Run time":[null,""],"Indexers":[null,""],"No shows for this day":[null,""],"Airs":[null,""],"Plot":[null,""],"Show Update":[null,""],"Version Check":[null,""],"Proper Finder":[null,""],"Post Process":[null,""],"Subtitles Finder":[null,""],"Scheduler":[null,""],"Alive":[null,""],"Start Time":[null,""],"Cycle Time":[null,""],"Next Run":[null,""],"Last Run":[null,""],"Silent":[null,""],"True":[null,""],"N/A":[null,""],"Show id":[null,""],"Show name":[null,""],"Priority":[null,""],"Added":[null,""],"Queue type":[null,""],"LOW":[null,""],"NORMAL":[null,""],"HIGH":[null,""],"Disk Space":[null,""],"Free space":[null,""],"TV Download Directory":[null,""],"Media Root Directories":[null,""],"Preview of the proposed name changes":[null,""],"All Seasons":[null,""],"select all":[null,""],"Rename Selected":[null,""],"Cancel Rename":[null,""],"Old Location":[null,""],"New Location":[null,""],"Trakt API did not return any results, please check your config.":[null,""],"votes":[null,""],"Remove Show":[null,""],"Level":[null,""],"Filter":[null,""],"All non-absolute folder locations are relative to ":[null,""],"Manual Post-Processing":[null,""],"Episode Status Management":[null,""],"Update PLEX":[null,""],"Update KODI":[null,""],"Update Emby":[null,""],"Manage Torrents":[null,""],"Missed Subtitle Management":[null,""],"Help & Info":[null,""],"Backup & Restore":[null,""],"Tools":[null,""],"Support SickRage":[null,""],"View Errors":[null,""],"View Warnings":[null,""],"View Log":[null,""],"Check For Updates":[null,""],"Restart":[null,""],"Shutdown":[null,""],"Logout":[null,""],"Server Status":[null,""],"View overview of snatched episodes":[null,""],"Episodes Downloaded":[null,""],"Memory used":[null,""],"Load time":[null,""],"Branch":[null,""],"Now":[null,""]}}}} \ No newline at end of file diff --git a/locale/lv_LV/LC_MESSAGES/messages.mo b/locale/lv_LV/LC_MESSAGES/messages.mo index 23f5c6639e61e18daf32564b10545bbea2509a05..862f95f257668f4319ba2b75171aaff2f03a41d8 100644 Binary files a/locale/lv_LV/LC_MESSAGES/messages.mo and b/locale/lv_LV/LC_MESSAGES/messages.mo differ diff --git a/locale/lv_LV/LC_MESSAGES/messages.po b/locale/lv_LV/LC_MESSAGES/messages.po index df2c301145fb473d4fc64d4227858b8f71192c9e..0068351b8c9a83b0516b0b3a4331278510bc06c8 100644 --- a/locale/lv_LV/LC_MESSAGES/messages.po +++ b/locale/lv_LV/LC_MESSAGES/messages.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: sickrage\n" "Report-Msgid-Bugs-To: miigotu@gmail.com\n" -"POT-Creation-Date: 2017-03-25 09:28-0700\n" -"PO-Revision-Date: 2017-03-25 12:29-0400\n" +"POT-Creation-Date: 2017-03-28 09:10-0700\n" +"PO-Revision-Date: 2017-03-28 12:12-0400\n" "Last-Translator: miigotu <miigotu@gmail.com>\n" "Language-Team: Latvian\n" "MIME-Version: 1.0\n" @@ -90,7 +90,7 @@ msgid "Biography" msgstr "" #: gui/slick/views/config_general.mako:78 gui/slick/views/layouts/main.mako:145 -#: sickbeard/__init__.py:79 sickbeard/webserve.py:3807 +#: sickbeard/__init__.py:79 sickbeard/webserve.py:3778 msgid "History" msgstr "" @@ -103,7 +103,7 @@ msgid "Western" msgstr "" #: gui/slick/views/config_general.mako:79 gui/slick/views/layouts/main.mako:221 -#: sickbeard/__init__.py:80 sickbeard/webserve.py:2385 +#: sickbeard/__init__.py:80 sickbeard/webserve.py:2384 msgid "News" msgstr "" @@ -238,6 +238,34 @@ msgstr "" msgid "Subtitled" msgstr "" +#: sickbeard/helpers.py:1887 +msgid "For best results please set the Download Station alias as" +msgstr "" + +#: sickbeard/helpers.py:1888 +msgid "You can check this setting in the Synology DSM" +msgstr "" + +#: sickbeard/helpers.py:1888 sickbeard/helpers.py:1890 +msgid "Control Panel" +msgstr "" + +#: sickbeard/helpers.py:1888 +msgid "Application Portal" +msgstr "" + +#: sickbeard/helpers.py:1889 +msgid "Make sure you allow DSM to be embedded with iFrames too in" +msgstr "" + +#: sickbeard/helpers.py:1890 +msgid "DSM Settings" +msgstr "" + +#: sickbeard/helpers.py:1890 +msgid "Security" +msgstr "" + #: sickbeard/logger.py:474 msgid "<No Filter>" msgstr "" @@ -308,15 +336,15 @@ msgstr "" msgid "Event" msgstr "" -#: sickbeard/logger.py:491 sickbeard/webserve.py:1339 sickbeard/webserve.py:1342 -#: sickbeard/webserve.py:1520 sickbeard/webserve.py:1529 sickbeard/webserve.py:1717 -#: sickbeard/webserve.py:1728 sickbeard/webserve.py:1751 sickbeard/webserve.py:1764 -#: sickbeard/webserve.py:1769 sickbeard/webserve.py:1785 sickbeard/webserve.py:1790 -#: sickbeard/webserve.py:1854 sickbeard/webserve.py:1857 sickbeard/webserve.py:1863 -#: sickbeard/webserve.py:1866 sickbeard/webserve.py:1873 sickbeard/webserve.py:1876 -#: sickbeard/webserve.py:1899 sickbeard/webserve.py:1997 sickbeard/webserve.py:2002 -#: sickbeard/webserve.py:2007 sickbeard/webserve.py:2036 sickbeard/webserve.py:2040 -#: sickbeard/webserve.py:2045 +#: sickbeard/logger.py:491 sickbeard/webserve.py:1338 sickbeard/webserve.py:1341 +#: sickbeard/webserve.py:1519 sickbeard/webserve.py:1528 sickbeard/webserve.py:1716 +#: sickbeard/webserve.py:1727 sickbeard/webserve.py:1750 sickbeard/webserve.py:1763 +#: sickbeard/webserve.py:1768 sickbeard/webserve.py:1784 sickbeard/webserve.py:1789 +#: sickbeard/webserve.py:1853 sickbeard/webserve.py:1856 sickbeard/webserve.py:1862 +#: sickbeard/webserve.py:1865 sickbeard/webserve.py:1872 sickbeard/webserve.py:1875 +#: sickbeard/webserve.py:1898 sickbeard/webserve.py:1996 sickbeard/webserve.py:2001 +#: sickbeard/webserve.py:2006 sickbeard/webserve.py:2035 sickbeard/webserve.py:2039 +#: sickbeard/webserve.py:2044 msgid "Error" msgstr "" @@ -333,6 +361,7 @@ msgstr "" msgid "Main" msgstr "" +#: gui/slick/js/ajaxEpSearch.js:146 gui/slick/js/ajaxEpSearch.js:147 #: gui/slick/views/inc_home_showList.mako:27 sickbeard/show_queue.py:298 msgid "Loading" msgstr "" @@ -372,867 +401,835 @@ msgstr "" msgid "No update needed" msgstr "" -#: sickbeard/webserve.py:170 +#: sickbeard/webserve.py:171 msgid "Mako Error" msgstr "" -#: sickbeard/webserve.py:195 +#: sickbeard/webserve.py:196 msgid "Oops" msgstr "" -#: sickbeard/webserve.py:197 +#: sickbeard/webserve.py:198 msgid "Wrong API key used" msgstr "" -#: gui/slick/views/login.mako:34 sickbeard/webserve.py:302 +#: gui/slick/views/login.mako:34 sickbeard/webserve.py:303 msgid "Login" msgstr "" -#: sickbeard/webserve.py:406 +#: sickbeard/webserve.py:392 msgid "API Key not generated" msgstr "" -#: sickbeard/webserve.py:409 +#: sickbeard/webserve.py:395 msgid "API Builder" msgstr "" #: gui/slick/views/config_general.mako:77 gui/slick/views/layouts/main.mako:141 -#: sickbeard/webserve.py:512 +#: sickbeard/webserve.py:498 msgid "Schedule" msgstr "" -#: sickbeard/webserve.py:610 +#: sickbeard/webserve.py:609 msgid "Test 1" msgstr "" -#: sickbeard/webserve.py:610 +#: sickbeard/webserve.py:609 msgid "This is test number 1" msgstr "" -#: sickbeard/webserve.py:611 +#: sickbeard/webserve.py:610 msgid "Test 2" msgstr "" -#: sickbeard/webserve.py:611 +#: sickbeard/webserve.py:610 msgid "This is test number 2" msgstr "" -#: sickbeard/webserve.py:634 +#: sickbeard/webserve.py:633 msgid "You're using the {branch} branch. Please use 'master' unless specifically asked" msgstr "" -#: sickbeard/webserve.py:698 sickbeard/webserve.py:703 +#: sickbeard/webserve.py:697 sickbeard/webserve.py:702 msgid "Invalid show parameters" msgstr "" -#: sickbeard/webserve.py:710 +#: sickbeard/webserve.py:709 msgid "Invalid parameters" msgstr "" -#: sickbeard/webserve.py:713 sickbeard/webserve.py:1899 +#: sickbeard/webserve.py:712 sickbeard/webserve.py:1898 msgid "Episode couldn't be retrieved" msgstr "" -#: sickbeard/webserve.py:759 sickbeard/webserve.py:1268 sickbeard/webserve.py:1297 +#: sickbeard/webserve.py:758 sickbeard/webserve.py:1267 sickbeard/webserve.py:1296 msgid "Home" msgstr "" -#: gui/slick/views/layouts/main.mako:127 sickbeard/webserve.py:759 +#: gui/slick/views/layouts/main.mako:127 sickbeard/webserve.py:758 msgid "Show List" msgstr "" -#: sickbeard/webserve.py:807 +#: sickbeard/webserve.py:806 msgid "Error: Unsupported Request. Send jsonp request with 'callback' variable in the query string." msgstr "" -#: sickbeard/webserve.py:851 +#: sickbeard/webserve.py:850 msgid "Success. Connected and authenticated" msgstr "" -#: sickbeard/webserve.py:853 +#: sickbeard/webserve.py:852 msgid "Authentication failed. SABnzbd expects" msgstr "" -#: sickbeard/webserve.py:853 +#: sickbeard/webserve.py:852 msgid "as authentication method" msgstr "" -#: sickbeard/webserve.py:855 +#: sickbeard/webserve.py:854 msgid "Unable to connect to host" msgstr "" -#: sickbeard/webserve.py:876 +#: sickbeard/webserve.py:875 msgid "SMS sent successfully" msgstr "" -#: sickbeard/webserve.py:878 +#: sickbeard/webserve.py:877 msgid "Problem sending SMS: {message}" msgstr "" -#: sickbeard/webserve.py:885 +#: sickbeard/webserve.py:884 msgid "Telegram notification succeeded. Check your Telegram clients to make sure it worked" msgstr "" -#: sickbeard/webserve.py:887 +#: sickbeard/webserve.py:886 msgid "Error sending Telegram notification: {message}" msgstr "" -#: sickbeard/webserve.py:894 +#: sickbeard/webserve.py:893 msgid "join notification succeeded. Check your join clients to make sure it worked" msgstr "" -#: sickbeard/webserve.py:896 +#: sickbeard/webserve.py:895 msgid "Error sending join notification: {message}" msgstr "" -#: sickbeard/webserve.py:906 +#: sickbeard/webserve.py:905 msgid " with password" msgstr "" -#: sickbeard/webserve.py:908 +#: sickbeard/webserve.py:907 msgid "Registered and Tested growl successfully {growl_host}" msgstr "" -#: sickbeard/webserve.py:910 +#: sickbeard/webserve.py:909 msgid "Registration and Testing of growl failed {growl_host}" msgstr "" -#: sickbeard/webserve.py:917 +#: sickbeard/webserve.py:916 msgid "Test prowl notice sent successfully" msgstr "" -#: sickbeard/webserve.py:919 +#: sickbeard/webserve.py:918 msgid "Test prowl notice failed" msgstr "" -#: sickbeard/webserve.py:926 +#: sickbeard/webserve.py:925 msgid "Boxcar2 notification succeeded. Check your Boxcar2 clients to make sure it worked" msgstr "" -#: sickbeard/webserve.py:928 +#: sickbeard/webserve.py:927 msgid "Error sending Boxcar2 notification" msgstr "" -#: sickbeard/webserve.py:935 +#: sickbeard/webserve.py:934 msgid "Pushover notification succeeded. Check your Pushover clients to make sure it worked" msgstr "" -#: sickbeard/webserve.py:937 +#: sickbeard/webserve.py:936 msgid "Error sending Pushover notification" msgstr "" -#: sickbeard/webserve.py:949 +#: sickbeard/webserve.py:948 msgid "Key verification successful" msgstr "" -#: sickbeard/webserve.py:951 +#: sickbeard/webserve.py:950 msgid "Unable to verify key" msgstr "" -#: sickbeard/webserve.py:958 +#: sickbeard/webserve.py:957 msgid "Tweet successful, check your twitter to make sure it worked" msgstr "" -#: sickbeard/webserve.py:960 +#: sickbeard/webserve.py:959 msgid "Error sending tweet" msgstr "" -#: sickbeard/webserve.py:965 +#: sickbeard/webserve.py:964 msgid "Please enter a valid account sid" msgstr "" -#: sickbeard/webserve.py:968 +#: sickbeard/webserve.py:967 msgid "Please enter a valid auth token" msgstr "" -#: sickbeard/webserve.py:971 +#: sickbeard/webserve.py:970 msgid "Please enter a valid phone sid" msgstr "" -#: sickbeard/webserve.py:974 +#: sickbeard/webserve.py:973 msgid "Please format the phone number as \"+1-###-###-####\"" msgstr "" -#: sickbeard/webserve.py:978 +#: sickbeard/webserve.py:977 msgid "Authorization successful and number ownership verified" msgstr "" -#: sickbeard/webserve.py:980 +#: sickbeard/webserve.py:979 msgid "Error sending sms" msgstr "" -#: sickbeard/webserve.py:986 +#: sickbeard/webserve.py:985 msgid "Slack message successful" msgstr "" -#: sickbeard/webserve.py:988 +#: sickbeard/webserve.py:987 msgid "Slack message failed" msgstr "" -#: sickbeard/webserve.py:994 +#: sickbeard/webserve.py:993 msgid "Discord message successful" msgstr "" -#: sickbeard/webserve.py:996 +#: sickbeard/webserve.py:995 msgid "Discord message failed" msgstr "" -#: sickbeard/webserve.py:1006 +#: sickbeard/webserve.py:1005 msgid "Test KODI notice sent successfully to {kodi_host}" msgstr "" -#: sickbeard/webserve.py:1008 +#: sickbeard/webserve.py:1007 msgid "Test KODI notice failed to {kodi_host}" msgstr "" -#: sickbeard/webserve.py:1023 +#: sickbeard/webserve.py:1022 msgid "Successful test notice sent to Plex Home Theater ... {plex_clients}" msgstr "" -#: sickbeard/webserve.py:1025 +#: sickbeard/webserve.py:1024 msgid "Test failed for Plex Home Theater ... {plex_clients}" msgstr "" -#: sickbeard/webserve.py:1028 +#: sickbeard/webserve.py:1027 msgid "Tested Plex Home Theater(s)" msgstr "" -#: sickbeard/webserve.py:1042 +#: sickbeard/webserve.py:1041 msgid "Successful test of Plex Media Server(s) ... {plex_servers}" msgstr "" -#: sickbeard/webserve.py:1044 +#: sickbeard/webserve.py:1043 msgid "Test failed, No Plex Media Server host specified" msgstr "" -#: sickbeard/webserve.py:1046 +#: sickbeard/webserve.py:1045 msgid "Test failed for Plex Media Server(s) ... {plex_servers}" msgstr "" -#: sickbeard/webserve.py:1049 +#: sickbeard/webserve.py:1048 msgid "Tested Plex Media Server host(s)" msgstr "" -#: sickbeard/webserve.py:1057 +#: sickbeard/webserve.py:1056 msgid "Tried sending desktop notification via libnotify" msgstr "" -#: sickbeard/webserve.py:1066 +#: sickbeard/webserve.py:1065 msgid "Test notice sent successfully to {emby_host}" msgstr "" -#: sickbeard/webserve.py:1068 +#: sickbeard/webserve.py:1067 msgid "Test notice failed to {emby_host}" msgstr "" -#: sickbeard/webserve.py:1076 +#: sickbeard/webserve.py:1075 msgid "Successfully started the scan update" msgstr "" -#: sickbeard/webserve.py:1078 +#: sickbeard/webserve.py:1077 msgid "Test failed to start the scan update" msgstr "" -#: sickbeard/webserve.py:1097 +#: sickbeard/webserve.py:1096 msgid "Test notice sent successfully to {nmj2_host}" msgstr "" -#: sickbeard/webserve.py:1099 +#: sickbeard/webserve.py:1098 msgid "Test notice failed to {nmj2_host}" msgstr "" -#: sickbeard/webserve.py:1119 +#: sickbeard/webserve.py:1118 msgid "Trakt Authorized" msgstr "" -#: sickbeard/webserve.py:1120 +#: sickbeard/webserve.py:1119 msgid "Trakt Not Authorized!" msgstr "" -#: sickbeard/webserve.py:1184 +#: sickbeard/webserve.py:1183 msgid "Test email sent successfully! Check inbox." msgstr "" -#: sickbeard/webserve.py:1186 +#: sickbeard/webserve.py:1185 msgid "ERROR: {last_error}" msgstr "" -#: sickbeard/webserve.py:1193 +#: sickbeard/webserve.py:1192 msgid "Test NMA notice sent successfully" msgstr "" -#: sickbeard/webserve.py:1195 +#: sickbeard/webserve.py:1194 msgid "Test NMA notice failed" msgstr "" -#: sickbeard/webserve.py:1202 +#: sickbeard/webserve.py:1201 msgid "Pushalot notification succeeded. Check your Pushalot clients to make sure it worked" msgstr "" -#: sickbeard/webserve.py:1204 +#: sickbeard/webserve.py:1203 msgid "Error sending Pushalot notification" msgstr "" -#: sickbeard/webserve.py:1211 +#: sickbeard/webserve.py:1210 msgid "Pushbullet notification succeeded. Check your device to make sure it worked" msgstr "" -#: sickbeard/webserve.py:1213 sickbeard/webserve.py:1223 sickbeard/webserve.py:1232 +#: sickbeard/webserve.py:1212 sickbeard/webserve.py:1222 sickbeard/webserve.py:1231 msgid "Error sending Pushbullet notification" msgstr "" #: gui/slick/views/displayShow.mako:436 gui/slick/views/inc_home_showList.mako:174 -#: gui/slick/views/manage.mako:49 sickbeard/webserve.py:1249 +#: gui/slick/views/manage.mako:49 sickbeard/webserve.py:1248 msgid "Status" msgstr "" -#: sickbeard/webserve.py:1268 sickbeard/webserve.py:1297 +#: sickbeard/webserve.py:1267 sickbeard/webserve.py:1296 msgid "Restarting SickRage" msgstr "" -#: sickbeard/webserve.py:1300 +#: sickbeard/webserve.py:1299 msgid "Update Failed" msgstr "" -#: sickbeard/webserve.py:1301 +#: sickbeard/webserve.py:1300 msgid "Update wasn't successful, not restarting. Check your log for more information." msgstr "" -#: sickbeard/webserve.py:1308 +#: sickbeard/webserve.py:1307 msgid "Checking out branch" msgstr "" -#: sickbeard/webserve.py:1311 +#: sickbeard/webserve.py:1310 msgid "Already on branch" msgstr "" -#: sickbeard/webserve.py:1339 +#: sickbeard/webserve.py:1338 msgid "Invalid show ID: {show}" msgstr "" -#: sickbeard/webserve.py:1342 sickbeard/webserve.py:1871 sickbeard/webserve.py:2002 -#: sickbeard/webserve.py:2040 +#: sickbeard/webserve.py:1341 sickbeard/webserve.py:1870 sickbeard/webserve.py:2001 +#: sickbeard/webserve.py:2039 msgid "Show not in show list" msgstr "" #: gui/slick/views/inc_rootDirs.mako:31 gui/slick/views/manage.mako:38 -#: gui/slick/views/manage_massEdit.mako:74 sickbeard/webserve.py:1358 -#: sickbeard/webserve.py:2027 +#: gui/slick/views/manage_massEdit.mako:74 sickbeard/webserve.py:1357 +#: sickbeard/webserve.py:2026 msgid "Edit" msgstr "" -#: sickbeard/webserve.py:1368 +#: sickbeard/webserve.py:1367 msgid "This show is in the process of being downloaded - the info below is incomplete." msgstr "" -#: sickbeard/webserve.py:1371 +#: sickbeard/webserve.py:1370 msgid "The information on this page is in the process of being updated." msgstr "" -#: sickbeard/webserve.py:1374 +#: sickbeard/webserve.py:1373 msgid "The episodes below are currently being refreshed from disk" msgstr "" -#: sickbeard/webserve.py:1377 +#: sickbeard/webserve.py:1376 msgid "Currently downloading subtitles for this show" msgstr "" -#: sickbeard/webserve.py:1380 +#: sickbeard/webserve.py:1379 msgid "This show is queued to be refreshed." msgstr "" -#: sickbeard/webserve.py:1383 +#: sickbeard/webserve.py:1382 msgid "This show is queued and awaiting an update." msgstr "" -#: sickbeard/webserve.py:1386 +#: sickbeard/webserve.py:1385 msgid "This show is queued and awaiting subtitles download." msgstr "" -#: gui/slick/js/core.js:4081 sickbeard/webserve.py:1391 +#: gui/slick/js/core.js:4081 sickbeard/webserve.py:1390 msgid "Resume" msgstr "" #: gui/slick/js/core.js:4081 gui/slick/views/viewlogs.mako:12 -#: sickbeard/webserve.py:1393 +#: sickbeard/webserve.py:1392 msgid "Pause" msgstr "" #: gui/slick/views/editShow.mako:345 gui/slick/views/inc_blackwhitelist.mako:40 #: gui/slick/views/inc_blackwhitelist.mako:85 gui/slick/views/manage.mako:58 -#: gui/slick/views/manage_failedDownloads.mako:43 sickbeard/webserve.py:1395 +#: gui/slick/views/manage_failedDownloads.mako:43 sickbeard/webserve.py:1394 msgid "Remove" msgstr "" -#: sickbeard/webserve.py:1396 +#: sickbeard/webserve.py:1395 msgid "Re-scan files" msgstr "" -#: sickbeard/webserve.py:1397 +#: sickbeard/webserve.py:1396 msgid "Force Full Update" msgstr "" -#: sickbeard/webserve.py:1398 +#: sickbeard/webserve.py:1397 msgid "Update show in KODI" msgstr "" -#: sickbeard/webserve.py:1399 +#: sickbeard/webserve.py:1398 msgid "Update show in Emby" msgstr "" -#: sickbeard/webserve.py:1402 +#: sickbeard/webserve.py:1401 msgid "Hide specials" msgstr "" -#: sickbeard/webserve.py:1404 +#: sickbeard/webserve.py:1403 msgid "Show specials" msgstr "" -#: sickbeard/webserve.py:1406 sickbeard/webserve.py:2030 sickbeard/webserve.py:2031 +#: sickbeard/webserve.py:1405 sickbeard/webserve.py:2029 sickbeard/webserve.py:2030 msgid "Preview Rename" msgstr "" -#: sickbeard/webserve.py:1409 +#: sickbeard/webserve.py:1408 msgid "Download Subtitles" msgstr "" -#: sickbeard/webserve.py:1498 +#: sickbeard/webserve.py:1497 msgid "No scene exceptions" msgstr "" -#: sickbeard/webserve.py:1516 sickbeard/webserve.py:1764 sickbeard/webserve.py:1785 +#: sickbeard/webserve.py:1515 sickbeard/webserve.py:1763 sickbeard/webserve.py:1784 msgid "Invalid show ID" msgstr "" -#: sickbeard/webserve.py:1525 sickbeard/webserve.py:1769 sickbeard/webserve.py:1790 +#: sickbeard/webserve.py:1524 sickbeard/webserve.py:1768 sickbeard/webserve.py:1789 msgid "Unable to find the specified show" msgstr "" -#: sickbeard/webserve.py:1550 +#: sickbeard/webserve.py:1549 msgid "Unable to retreive Fansub Groups from AniDB." msgstr "" -#: sickbeard/webserve.py:1559 sickbeard/webserve.py:1561 +#: sickbeard/webserve.py:1558 sickbeard/webserve.py:1560 msgid "Edit Show" msgstr "" -#: sickbeard/webserve.py:1637 sickbeard/webserve.py:1671 +#: sickbeard/webserve.py:1636 sickbeard/webserve.py:1670 msgid "Unable to refresh this show: {error}" msgstr "" -#: sickbeard/webserve.py:1663 +#: sickbeard/webserve.py:1662 msgid "New location <tt>{location}</tt> does not exist" msgstr "" -#: sickbeard/webserve.py:1688 +#: sickbeard/webserve.py:1687 msgid "Unable to update show: {error}" msgstr "" -#: sickbeard/webserve.py:1695 +#: sickbeard/webserve.py:1694 msgid "Unable to force an update on scene exceptions of the show." msgstr "" -#: sickbeard/webserve.py:1702 +#: sickbeard/webserve.py:1701 msgid "Unable to force an update on scene numbering of the show." msgstr "" -#: sickbeard/webserve.py:1708 sickbeard/webserve.py:3540 +#: sickbeard/webserve.py:1707 sickbeard/webserve.py:3539 msgid "{num_errors:d} error{plural} while saving changes:" msgstr "" -#: sickbeard/webserve.py:1719 +#: sickbeard/webserve.py:1718 msgid "{show_name} has been {paused_resumed}" msgstr "" -#: sickbeard/webserve.py:1719 +#: sickbeard/webserve.py:1718 msgid "resumed" msgstr "" -#: sickbeard/webserve.py:1719 +#: sickbeard/webserve.py:1718 msgid "paused" msgstr "" -#: sickbeard/webserve.py:1731 +#: sickbeard/webserve.py:1730 msgid "{show_name} has been {deleted_trashed} {was_deleted}" msgstr "" -#: sickbeard/webserve.py:1733 +#: sickbeard/webserve.py:1732 msgid "deleted" msgstr "" -#: sickbeard/webserve.py:1733 +#: sickbeard/webserve.py:1732 msgid "trashed" msgstr "" -#: sickbeard/webserve.py:1734 +#: sickbeard/webserve.py:1733 msgid "(media untouched)" msgstr "" -#: sickbeard/webserve.py:1734 +#: sickbeard/webserve.py:1733 msgid "(with all related media)" msgstr "" -#: sickbeard/webserve.py:1755 +#: sickbeard/webserve.py:1754 msgid "Unable to refresh this show." msgstr "" -#: sickbeard/webserve.py:1775 +#: sickbeard/webserve.py:1774 msgid "Unable to update this show." msgstr "" -#: sickbeard/webserve.py:1814 +#: sickbeard/webserve.py:1813 msgid "Library update command sent to KODI host(s)): {kodi_hosts}" msgstr "" -#: sickbeard/webserve.py:1816 +#: sickbeard/webserve.py:1815 msgid "Unable to contact one or more KODI host(s)): {kodi_hosts}" msgstr "" -#: sickbeard/webserve.py:1825 +#: sickbeard/webserve.py:1824 msgid "Library update command sent to Plex Media Server host: {plex_server}" msgstr "" -#: sickbeard/webserve.py:1828 +#: sickbeard/webserve.py:1827 msgid "Unable to contact Plex Media Server host: {plex_server}" msgstr "" -#: sickbeard/webserve.py:1840 +#: sickbeard/webserve.py:1839 msgid "Library update command sent to Emby host: {emby_host}" msgstr "" -#: sickbeard/webserve.py:1842 +#: sickbeard/webserve.py:1841 msgid "Unable to contact Emby host: {emby_host}" msgstr "" -#: sickbeard/webserve.py:1852 sickbeard/webserve.py:2036 +#: sickbeard/webserve.py:1851 sickbeard/webserve.py:2035 msgid "You must specify a show and at least one episode" msgstr "" -#: sickbeard/webserve.py:1861 +#: sickbeard/webserve.py:1860 msgid "Invalid status" msgstr "" -#: sickbeard/webserve.py:1954 +#: sickbeard/webserve.py:1953 msgid "Backlog was automatically started for the following seasons of <b>{show_name}</b>" msgstr "" #: gui/slick/views/displayShow.mako:74 gui/slick/views/displayShow.mako:79 -#: gui/slick/views/displayShow.mako:404 sickbeard/webserve.py:1961 -#: sickbeard/webserve.py:1980 +#: gui/slick/views/displayShow.mako:404 sickbeard/webserve.py:1960 +#: sickbeard/webserve.py:1979 msgid "Season" msgstr "" -#: sickbeard/webserve.py:1968 +#: sickbeard/webserve.py:1967 msgid "Backlog started" msgstr "" -#: sickbeard/webserve.py:1973 +#: sickbeard/webserve.py:1972 msgid "Retrying Search was automatically started for the following season of <b>{show_name}</b>" msgstr "" -#: sickbeard/webserve.py:1987 +#: sickbeard/webserve.py:1986 msgid "Retry Search started" msgstr "" -#: sickbeard/webserve.py:1997 +#: sickbeard/webserve.py:1996 msgid "You must specify a show" msgstr "" -#: sickbeard/webserve.py:2007 sickbeard/webserve.py:2045 +#: sickbeard/webserve.py:2006 sickbeard/webserve.py:2044 msgid "Can't rename episodes when the show dir is missing." msgstr "" -#: sickbeard/webserve.py:2212 sickbeard/webserve.py:2233 +#: sickbeard/webserve.py:2211 sickbeard/webserve.py:2232 msgid "New subtitles downloaded: {new_subtitle_languages}" msgstr "" -#: sickbeard/webserve.py:2215 sickbeard/webserve.py:2236 +#: sickbeard/webserve.py:2214 sickbeard/webserve.py:2235 msgid "No subtitles downloaded" msgstr "" #: gui/slick/views/config_general.mako:80 gui/slick/views/layouts/main.mako:222 -#: sickbeard/webserve.py:2363 +#: sickbeard/webserve.py:2362 msgid "IRC" msgstr "" -#: sickbeard/webserve.py:2376 +#: sickbeard/webserve.py:2375 msgid "Could not load news from the repo. [Click here for news.md])({news_url})" msgstr "" -#: sickbeard/webserve.py:2383 sickbeard/webserve.py:2401 +#: sickbeard/webserve.py:2382 sickbeard/webserve.py:2400 msgid "The was a problem connecting to github, please refresh and try again" msgstr "" -#: sickbeard/webserve.py:2398 +#: sickbeard/webserve.py:2397 msgid "Could not load changes from the repo. [Click here for CHANGES.md]({changes_url})" msgstr "" -#: gui/slick/views/layouts/main.mako:223 sickbeard/webserve.py:2403 +#: gui/slick/views/layouts/main.mako:223 sickbeard/webserve.py:2402 msgid "Changelog" msgstr "" -#: gui/slick/views/layouts/main.mako:190 sickbeard/webserve.py:2413 -#: sickbeard/webserve.py:3855 sickbeard/webserve.py:4341 +#: gui/slick/views/layouts/main.mako:190 sickbeard/webserve.py:2412 +#: sickbeard/webserve.py:3826 sickbeard/webserve.py:4312 msgid "Post Processing" msgstr "" -#: gui/slick/views/layouts/main.mako:128 sickbeard/webserve.py:2445 +#: gui/slick/views/layouts/main.mako:128 sickbeard/webserve.py:2444 msgid "Add Shows" msgstr "" -#: sickbeard/webserve.py:2510 +#: sickbeard/webserve.py:2509 msgid "No folders selected." msgstr "" -#: sickbeard/webserve.py:2632 +#: sickbeard/webserve.py:2631 msgid "New Show" msgstr "" -#: sickbeard/webserve.py:2647 +#: sickbeard/webserve.py:2646 msgid "Trending Shows" msgstr "" -#: sickbeard/webserve.py:2649 sickbeard/webserve.py:2772 +#: sickbeard/webserve.py:2648 sickbeard/webserve.py:2771 msgid "Popular Shows" msgstr "" -#: sickbeard/webserve.py:2651 sickbeard/webserve.py:2665 +#: sickbeard/webserve.py:2650 sickbeard/webserve.py:2664 msgid "Most Anticipated Shows" msgstr "" -#: sickbeard/webserve.py:2653 +#: sickbeard/webserve.py:2652 msgid "Most Collected Shows" msgstr "" -#: sickbeard/webserve.py:2655 +#: sickbeard/webserve.py:2654 msgid "Most Watched Shows" msgstr "" -#: sickbeard/webserve.py:2657 +#: sickbeard/webserve.py:2656 msgid "Most Played Shows" msgstr "" -#: sickbeard/webserve.py:2659 +#: sickbeard/webserve.py:2658 msgid "Recommended Shows" msgstr "" -#: gui/slick/views/addShows_trendingShows.mako:60 sickbeard/webserve.py:2661 +#: gui/slick/views/addShows_trendingShows.mako:60 sickbeard/webserve.py:2660 msgid "New Shows" msgstr "" -#: gui/slick/views/addShows_trendingShows.mako:61 sickbeard/webserve.py:2663 +#: gui/slick/views/addShows_trendingShows.mako:61 sickbeard/webserve.py:2662 msgid "Season Premieres" msgstr "" -#: sickbeard/webserve.py:2792 sickbeard/webserve.py:2793 +#: sickbeard/webserve.py:2791 sickbeard/webserve.py:2792 msgid "Existing Show" msgstr "" -#: sickbeard/webserve.py:2871 +#: sickbeard/webserve.py:2870 msgid "No root directories setup, please go back and add one." msgstr "" -#: sickbeard/webserve.py:2883 sickbeard/webserve.py:3002 +#: sickbeard/webserve.py:2882 sickbeard/webserve.py:3001 msgid "Show added" msgstr "" -#: sickbeard/webserve.py:2883 +#: sickbeard/webserve.py:2882 msgid "Adding the specified show {show_name}" msgstr "" -#: sickbeard/webserve.py:2924 +#: sickbeard/webserve.py:2923 msgid "Missing params, no Indexer ID or folder: {show_to_add} and {root_dir}/{show_path}" msgstr "" -#: sickbeard/webserve.py:2933 +#: sickbeard/webserve.py:2932 msgid "Unknown error. Unable to add show due to problem with show selection." msgstr "" -#: sickbeard/webserve.py:2957 sickbeard/webserve.py:2967 +#: sickbeard/webserve.py:2956 sickbeard/webserve.py:2966 msgid "Unable to add show" msgstr "" -#: sickbeard/webserve.py:2957 +#: sickbeard/webserve.py:2956 msgid "Folder {show_dir} exists already" msgstr "" -#: sickbeard/webserve.py:2968 +#: sickbeard/webserve.py:2967 msgid "Unable to create the folder {show_dir}, can't add the show" msgstr "" -#: sickbeard/webserve.py:3002 +#: sickbeard/webserve.py:3001 msgid "Adding the specified show into {show_dir}" msgstr "" -#: sickbeard/webserve.py:3078 +#: sickbeard/webserve.py:3077 msgid "Shows Added" msgstr "" -#: sickbeard/webserve.py:3079 +#: sickbeard/webserve.py:3078 msgid "Automatically added {num_shows} from their existing metadata files" msgstr "" -#: gui/slick/views/layouts/main.mako:153 sickbeard/webserve.py:3096 +#: gui/slick/views/layouts/main.mako:153 sickbeard/webserve.py:3095 msgid "Mass Update" msgstr "" -#: sickbeard/webserve.py:3134 sickbeard/webserve.py:3161 sickbeard/webserve.py:3237 -#: sickbeard/webserve.py:3238 +#: sickbeard/webserve.py:3133 sickbeard/webserve.py:3160 sickbeard/webserve.py:3236 +#: sickbeard/webserve.py:3237 msgid "Episode Overview" msgstr "" -#: sickbeard/webserve.py:3270 +#: sickbeard/webserve.py:3269 msgid "Missing Subtitles" msgstr "" -#: gui/slick/views/layouts/main.mako:154 sickbeard/webserve.py:3356 -#: sickbeard/webserve.py:3357 +#: gui/slick/views/layouts/main.mako:154 sickbeard/webserve.py:3355 +#: sickbeard/webserve.py:3356 msgid "Backlog Overview" msgstr "" -#: sickbeard/webserve.py:3481 +#: sickbeard/webserve.py:3480 msgid "Mass Edit" msgstr "" -#: sickbeard/webserve.py:3586 +#: sickbeard/webserve.py:3585 msgid "Unable to update show: {excption_format}" msgstr "" -#: sickbeard/webserve.py:3594 +#: sickbeard/webserve.py:3593 msgid "Unable to refresh show {show_name}: {excption_format}" msgstr "" -#: sickbeard/webserve.py:3605 +#: sickbeard/webserve.py:3604 msgid "Errors encountered" msgstr "" -#: gui/slick/views/config_general.mako:261 sickbeard/webserve.py:3611 +#: gui/slick/views/config_general.mako:261 sickbeard/webserve.py:3610 msgid "Updates" msgstr "" -#: sickbeard/webserve.py:3616 +#: sickbeard/webserve.py:3615 msgid "Refreshes" msgstr "" -#: sickbeard/webserve.py:3621 +#: sickbeard/webserve.py:3620 msgid "Renames" msgstr "" #: gui/slick/views/displayShow.mako:260 gui/slick/views/displayShow.mako:435 #: gui/slick/views/editShow.mako:119 gui/slick/views/inc_addShowOptions.mako:20 -#: gui/slick/views/manage_massEdit.mako:262 sickbeard/webserve.py:3626 -#: sickbeard/webserve.py:5244 +#: gui/slick/views/manage_massEdit.mako:262 sickbeard/webserve.py:3625 +#: sickbeard/webserve.py:5215 msgid "Subtitles" msgstr "" -#: sickbeard/webserve.py:3631 +#: sickbeard/webserve.py:3630 msgid "The following actions were queued" msgstr "" -#: sickbeard/webserve.py:3651 -msgid "For best results please set the Download Station alias as" -msgstr "" - -#: sickbeard/webserve.py:3652 -msgid "You can check this setting in the Synology DSM" -msgstr "" - -#: sickbeard/webserve.py:3652 sickbeard/webserve.py:3654 -msgid "Control Panel" -msgstr "" - -#: sickbeard/webserve.py:3652 -msgid "Application Portal" -msgstr "" - -#: sickbeard/webserve.py:3653 -msgid "Make sure you allow DSM to be embedded with iFrames too in" -msgstr "" - -#: sickbeard/webserve.py:3654 -msgid "DSM Settings" -msgstr "" - -#: sickbeard/webserve.py:3654 -msgid "Security" -msgstr "" - -#: gui/slick/views/layouts/main.mako:167 sickbeard/webserve.py:3662 -msgid "Manage Torrents" -msgstr "" - -#: gui/slick/views/layouts/main.mako:170 sickbeard/webserve.py:3683 +#: gui/slick/views/layouts/main.mako:170 sickbeard/webserve.py:3654 msgid "Failed Downloads" msgstr "" -#: gui/slick/views/layouts/main.mako:155 sickbeard/webserve.py:3701 +#: gui/slick/views/layouts/main.mako:155 sickbeard/webserve.py:3672 msgid "Manage Searches" msgstr "" -#: sickbeard/webserve.py:3709 +#: sickbeard/webserve.py:3680 msgid "Backlog search started" msgstr "" -#: sickbeard/webserve.py:3719 +#: sickbeard/webserve.py:3690 msgid "Daily search started" msgstr "" -#: sickbeard/webserve.py:3728 +#: sickbeard/webserve.py:3699 msgid "Find propers search started" msgstr "" -#: sickbeard/webserve.py:3737 +#: sickbeard/webserve.py:3708 msgid "Subtitle search started" msgstr "" -#: sickbeard/webserve.py:3801 +#: sickbeard/webserve.py:3772 msgid "Remove Selected" msgstr "" -#: sickbeard/webserve.py:3802 +#: sickbeard/webserve.py:3773 msgid "Clear History" msgstr "" -#: sickbeard/webserve.py:3803 +#: sickbeard/webserve.py:3774 msgid "Trim History" msgstr "" -#: sickbeard/webserve.py:3823 +#: sickbeard/webserve.py:3794 msgid "Selected history entries removed" msgstr "" -#: sickbeard/webserve.py:3830 +#: sickbeard/webserve.py:3801 msgid "History cleared" msgstr "" -#: sickbeard/webserve.py:3837 +#: sickbeard/webserve.py:3808 msgid "Removed history entries older than 30 days" msgstr "" -#: gui/slick/views/layouts/main.mako:185 sickbeard/webserve.py:3850 +#: gui/slick/views/layouts/main.mako:185 sickbeard/webserve.py:3821 msgid "General" msgstr "" -#: sickbeard/webserve.py:3851 sickbeard/webserve.py:4143 +#: sickbeard/webserve.py:3822 sickbeard/webserve.py:4114 msgid "Backup/Restore" msgstr "" -#: gui/slick/views/layouts/main.mako:187 sickbeard/webserve.py:3852 -#: sickbeard/webserve.py:4206 +#: gui/slick/views/layouts/main.mako:187 sickbeard/webserve.py:3823 +#: sickbeard/webserve.py:4177 msgid "Search Settings" msgstr "" -#: gui/slick/views/layouts/main.mako:188 sickbeard/webserve.py:3853 -#: sickbeard/webserve.py:4518 +#: gui/slick/views/layouts/main.mako:188 sickbeard/webserve.py:3824 +#: sickbeard/webserve.py:4489 msgid "Search Providers" msgstr "" -#: gui/slick/views/layouts/main.mako:189 sickbeard/webserve.py:3854 +#: gui/slick/views/layouts/main.mako:189 sickbeard/webserve.py:3825 msgid "Subtitles Settings" msgstr "" -#: gui/slick/views/layouts/main.mako:191 sickbeard/webserve.py:3856 -#: sickbeard/webserve.py:4964 +#: gui/slick/views/layouts/main.mako:191 sickbeard/webserve.py:3827 +#: sickbeard/webserve.py:4935 msgid "Notifications" msgstr "" @@ -1240,142 +1237,142 @@ msgstr "" #: gui/slick/views/home.mako:35 gui/slick/views/inc_addShowOptions.mako:79 #: gui/slick/views/inc_home_showList.mako:179 gui/slick/views/layouts/main.mako:192 #: gui/slick/views/manage.mako:44 gui/slick/views/manage_massEdit.mako:202 -#: sickbeard/webserve.py:3857 sickbeard/webserve.py:5309 +#: sickbeard/webserve.py:3828 sickbeard/webserve.py:5280 msgid "Anime" msgstr "" -#: sickbeard/webserve.py:3895 sickbeard/webserve.py:3896 +#: sickbeard/webserve.py:3866 sickbeard/webserve.py:3867 msgid "SickRage Configuration" msgstr "" -#: sickbeard/webserve.py:3910 +#: sickbeard/webserve.py:3881 msgid "Config - Shares" msgstr "" -#: sickbeard/webserve.py:3910 +#: sickbeard/webserve.py:3881 msgid "Windows Shares Configuration" msgstr "" -#: sickbeard/webserve.py:3937 +#: sickbeard/webserve.py:3908 msgid "Saved Shares" msgstr "" -#: sickbeard/webserve.py:3937 +#: sickbeard/webserve.py:3908 msgid "Your Windows share settings have been saved" msgstr "" -#: sickbeard/webserve.py:3948 +#: sickbeard/webserve.py:3919 msgid "Config - General" msgstr "" -#: sickbeard/webserve.py:3948 +#: sickbeard/webserve.py:3919 msgid "General Configuration" msgstr "" -#: sickbeard/webserve.py:3988 +#: sickbeard/webserve.py:3959 msgid "Saved Defaults" msgstr "" -#: sickbeard/webserve.py:3988 +#: sickbeard/webserve.py:3959 msgid "Your \"add show\" defaults have been set to your current selections." msgstr "" -#: sickbeard/webserve.py:4095 +#: sickbeard/webserve.py:4066 msgid "Unable to create directory {directory}, log directory not changed." msgstr "" -#: sickbeard/webserve.py:4103 +#: sickbeard/webserve.py:4074 msgid "Unable to create directory {directory}, https cert directory not changed." msgstr "" -#: sickbeard/webserve.py:4107 +#: sickbeard/webserve.py:4078 msgid "Unable to create directory {directory}, https key directory not changed." msgstr "" -#: sickbeard/webserve.py:4126 sickbeard/webserve.py:4324 sickbeard/webserve.py:4456 -#: sickbeard/webserve.py:5227 +#: sickbeard/webserve.py:4097 sickbeard/webserve.py:4295 sickbeard/webserve.py:4427 +#: sickbeard/webserve.py:5198 msgid "Error(s) Saving Configuration" msgstr "" -#: sickbeard/webserve.py:4129 sickbeard/webserve.py:4327 sickbeard/webserve.py:4458 -#: sickbeard/webserve.py:4950 sickbeard/webserve.py:5230 sickbeard/webserve.py:5294 -#: sickbeard/webserve.py:5323 +#: sickbeard/webserve.py:4100 sickbeard/webserve.py:4298 sickbeard/webserve.py:4429 +#: sickbeard/webserve.py:4921 sickbeard/webserve.py:5201 sickbeard/webserve.py:5265 +#: sickbeard/webserve.py:5294 msgid "Configuration Saved" msgstr "" -#: sickbeard/webserve.py:4142 +#: sickbeard/webserve.py:4113 msgid "Config - Backup/Restore" msgstr "" -#: sickbeard/webserve.py:4205 +#: sickbeard/webserve.py:4176 msgid "Config - Episode Search" msgstr "" -#: sickbeard/webserve.py:4340 +#: sickbeard/webserve.py:4311 msgid "Config - Post Processing" msgstr "" -#: sickbeard/webserve.py:4380 +#: sickbeard/webserve.py:4351 msgid "Unpacking Not Supported, disabling unpack setting" msgstr "" -#: sickbeard/webserve.py:4431 +#: sickbeard/webserve.py:4402 msgid "You tried saving an invalid normal naming config, not saving your naming settings" msgstr "" -#: sickbeard/webserve.py:4439 +#: sickbeard/webserve.py:4410 msgid "You tried saving an invalid anime naming config, not saving your naming settings" msgstr "" -#: sickbeard/webserve.py:4517 +#: sickbeard/webserve.py:4488 msgid "Config - Providers" msgstr "" -#: sickbeard/webserve.py:4547 +#: sickbeard/webserve.py:4518 msgid "No Provider Name specified" msgstr "" -#: sickbeard/webserve.py:4549 +#: sickbeard/webserve.py:4520 msgid "No Provider Url specified" msgstr "" -#: sickbeard/webserve.py:4551 +#: sickbeard/webserve.py:4522 msgid "No Provider Api key specified" msgstr "" -#: sickbeard/webserve.py:4963 +#: sickbeard/webserve.py:4934 msgid "Config - Notifications" msgstr "" -#: sickbeard/webserve.py:5243 +#: sickbeard/webserve.py:5214 msgid "Config - Subtitles" msgstr "" -#: sickbeard/webserve.py:5308 +#: sickbeard/webserve.py:5279 msgid "Config - Anime" msgstr "" -#: sickbeard/webserve.py:5336 +#: sickbeard/webserve.py:5307 msgid "Clear Errors" msgstr "" -#: sickbeard/webserve.py:5342 +#: sickbeard/webserve.py:5313 msgid "Clear Warnings" msgstr "" -#: sickbeard/webserve.py:5348 +#: sickbeard/webserve.py:5319 msgid "Submit Errors" msgstr "" -#: sickbeard/webserve.py:5363 +#: sickbeard/webserve.py:5334 msgid "Logs & Errors" msgstr "" -#: sickbeard/webserve.py:5388 +#: sickbeard/webserve.py:5359 msgid "Log File" msgstr "" -#: sickbeard/webserve.py:5388 +#: sickbeard/webserve.py:5359 msgid "Logs" msgstr "" @@ -1383,30 +1380,166 @@ msgstr "" msgid "This is a test notification from SickRage" msgstr "" -#: gui/slick/js/core.js:481 gui/slick/js/core.js:502 gui/slick/js/core.js:524 -#: gui/slick/js/core.js:548 gui/slick/js/core.js:573 gui/slick/js/core.js:596 -#: gui/slick/js/core.js:625 gui/slick/js/core.js:645 gui/slick/js/core.js:690 -#: gui/slick/js/core.js:769 gui/slick/js/core.js:829 gui/slick/js/core.js:849 -#: gui/slick/js/core.js:879 gui/slick/js/core.js:909 gui/slick/js/core.js:969 -#: gui/slick/js/core.js:1046 gui/slick/js/core.js:1066 gui/slick/js/core.js:1085 +#: gui/slick/js/browser.js:6 +msgid "Choose Directory" +msgstr "" + +#: gui/slick/js/core.js:443 +msgid "Select log file folder location" +msgstr "" + +#: gui/slick/js/core.js:445 +msgid "Select CSS file" +msgstr "" + +#: gui/slick/js/core.js:469 +msgid "Select backup folder to save to" +msgstr "" + +#: gui/slick/js/core.js:470 +msgid "Select backup files to restore" +msgstr "" + +#: gui/slick/js/core.js:479 gui/slick/js/core.js:500 gui/slick/js/core.js:522 +#: gui/slick/js/core.js:546 gui/slick/js/core.js:571 gui/slick/js/core.js:594 +#: gui/slick/js/core.js:623 gui/slick/js/core.js:643 gui/slick/js/core.js:688 +#: gui/slick/js/core.js:767 gui/slick/js/core.js:827 gui/slick/js/core.js:847 +#: gui/slick/js/core.js:877 gui/slick/js/core.js:907 gui/slick/js/core.js:967 +#: gui/slick/js/core.js:1044 gui/slick/js/core.js:1064 gui/slick/js/core.js:1083 msgid "Please fill out the necessary fields above." msgstr "" -#: gui/slick/js/core.js:1328 gui/slick/js/core.js:1378 gui/slick/js/core.js:1427 -#: gui/slick/js/core.js:1493 +#: gui/slick/js/core.js:680 +msgid "<b>Step 1:</b> Confirm Authorization" +msgstr "" + +#: gui/slick/js/core.js:977 +msgid "Check blacklist name; the value needs to be a trakt slug" +msgstr "" + +#: gui/slick/js/core.js:1022 +msgid "You must provide a recipient email address!" +msgstr "" + +#: gui/slick/js/core.js:1107 +msgid "You didn't supply a Pushbullet api key" +msgstr "" + +#: gui/slick/js/core.js:1133 gui/slick/js/core.js:1162 +msgid "Don't forget to save your new pushbullet settings." +msgstr "" + +#: gui/slick/js/core.js:1262 +msgid "Select TV Download Directory" +msgstr "" + +#: gui/slick/js/core.js:1263 +msgid "Select Unpack Directory" +msgstr "" + +#: gui/slick/js/core.js:1326 gui/slick/js/core.js:1376 gui/slick/js/core.js:1425 +#: gui/slick/js/core.js:1491 msgid "This pattern is invalid." msgstr "" -#: gui/slick/js/core.js:1336 gui/slick/js/core.js:1386 gui/slick/js/core.js:1435 -#: gui/slick/js/core.js:1501 +#: gui/slick/js/core.js:1334 gui/slick/js/core.js:1384 gui/slick/js/core.js:1433 +#: gui/slick/js/core.js:1499 msgid "This pattern would be invalid without the folders, using it will force \"Season Folders\" on for all shows." msgstr "" -#: gui/slick/js/core.js:1344 gui/slick/js/core.js:1394 gui/slick/js/core.js:1443 -#: gui/slick/js/core.js:1509 +#: gui/slick/js/core.js:1342 gui/slick/js/core.js:1392 gui/slick/js/core.js:1441 +#: gui/slick/js/core.js:1507 msgid "This pattern is valid." msgstr "" +#: gui/slick/js/core.js:1818 +msgid "Select .nzb black hole/watch location" +msgstr "" + +#: gui/slick/js/core.js:1819 +msgid "Select .torrent black hole/watch location" +msgstr "" + +#: gui/slick/js/core.js:1820 +msgid "Select .torrent download location" +msgstr "" + +#: gui/slick/js/core.js:1900 +msgid "Minimum seeding time is" +msgstr "" + +#: gui/slick/js/core.js:1902 +msgid "URL to your uTorrent client (e.g. http://localhost:8000)" +msgstr "" + +#: gui/slick/js/core.js:1905 +msgid "Stop seeding when inactive for" +msgstr "" + +#: gui/slick/js/core.js:1911 +msgid "URL to your Transmission client (e.g. http://localhost:9091)" +msgstr "" + +#: gui/slick/js/core.js:1921 +msgid "URL to your Deluge client (e.g. http://localhost:8112)" +msgstr "" + +#: gui/slick/js/core.js:1930 +msgid "IP or Hostname of your Deluge Daemon (e.g. scgi://localhost:58846)" +msgstr "" + +#: gui/slick/js/core.js:1937 +msgid "URL to your Synology DS client (e.g. http://localhost:5000)" +msgstr "" + +#: gui/slick/js/core.js:1941 +msgid "URL to your rTorrent client (e.g. scgi://localhost:5000 <br> or https://localhost/rutorrent/plugins/httprpc/action.php)" +msgstr "" + +#: gui/slick/js/core.js:1952 +msgid "URL to your qBittorrent client (e.g. http://localhost:8080)" +msgstr "" + +#: gui/slick/js/core.js:1962 +msgid "URL to your MLDonkey (e.g. http://localhost:4080)" +msgstr "" + +#: gui/slick/js/core.js:1974 +msgid "URL to your putio client (e.g. http://localhost:8080)" +msgstr "" + +#: gui/slick/js/core.js:1975 +msgid "<a herf=\"https://app.put.io/oauth/apps/new\" target=\"_blank\"> Create a new OAuth app for put.io</a>" +msgstr "" + +#: gui/slick/js/core.js:1977 +msgid "Put.io Parent Folder" +msgstr "" + +#: gui/slick/js/core.js:1978 +msgid "Put.io OAuth Token" +msgstr "" + +#: gui/slick/js/core.js:3383 gui/slick/views/displayShow.mako:410 +msgid "Show Episodes" +msgstr "" + +#: gui/slick/js/core.js:3388 gui/slick/views/displayShow.mako:408 +msgid "Hide Episodes" +msgstr "" + +#: gui/slick/js/core.js:3396 +msgid "Select Show Location" +msgstr "" + +#: gui/slick/js/core.js:3460 +msgid "Select Unprocessed Episode Folder" +msgstr "" + +#: gui/slick/js/core.js:3790 +msgid "DELETED" +msgstr "" + #: gui/slick/js/core.js:4082 msgid "Resume updating the log on this page." msgstr "" @@ -1415,6 +1548,26 @@ msgstr "" msgid "Pause updating the log on this page." msgstr "" +#: gui/slick/js/core.js:4323 +msgid "searching {searchingFor}..." +msgstr "" + +#: gui/slick/js/core.js:4334 +msgid "search timed out, try again or try another indexer" +msgstr "" + +#: gui/slick/js/core.js:4503 +msgid "loading folders..." +msgstr "" + +#: gui/slick/js/parsers.js:7 gui/slick/js/parsers.js:8 +#: gui/slick/js/plotTooltip.js:6 gui/slick/js/sceneExceptionsTooltip.js:6 +#: gui/slick/views/inc_home_showList.mako:209 +#: gui/slick/views/inc_home_showList.mako:215 +#: gui/slick/views/inc_home_showList.mako:231 +msgid "Loading..." +msgstr "" + #: gui/slick/views/404.mako:5 msgid "You have reached this page by accident, please check the url." msgstr "" @@ -5711,14 +5864,6 @@ msgstr "" msgid "Select Columns" msgstr "" -#: gui/slick/views/displayShow.mako:408 -msgid "Hide Episodes" -msgstr "" - -#: gui/slick/views/displayShow.mako:410 -msgid "Show Episodes" -msgstr "" - #: gui/slick/views/displayShow.mako:424 msgid "NFO" msgstr "" @@ -6232,12 +6377,6 @@ msgstr "" msgid "loading" msgstr "" -#: gui/slick/views/inc_home_showList.mako:209 -#: gui/slick/views/inc_home_showList.mako:215 -#: gui/slick/views/inc_home_showList.mako:231 -msgid "Loading..." -msgstr "" - #: gui/slick/views/inc_qualityChooser.mako:31 msgid "<p><b><u>Preferred</u></b> qualities will replace those in <b><u>allowed</u></b>, even if they are lower.</p>" msgstr "" @@ -6775,6 +6914,10 @@ msgstr "" msgid "Update Emby" msgstr "" +#: gui/slick/views/layouts/main.mako:167 +msgid "Manage Torrents" +msgstr "" + #: gui/slick/views/layouts/main.mako:173 msgid "Missed Subtitle Management" msgstr "" diff --git a/locale/messages.pot b/locale/messages.pot index 73a1d3e324f034142823b57634782b17cfec99ed..bebe25b8f6c936c33998c02ebdbdb02de3634e1e 100644 --- a/locale/messages.pot +++ b/locale/messages.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: sickrage 0.0.1\n" "Report-Msgid-Bugs-To: miigotu@gmail.com\n" -"POT-Creation-Date: 2017-03-25 09:28-0700\n" +"POT-Creation-Date: 2017-03-28 09:10-0700\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -90,7 +90,7 @@ msgid "Biography" msgstr "" #: gui/slick/views/config_general.mako:78 gui/slick/views/layouts/main.mako:145 -#: sickbeard/__init__.py:79 sickbeard/webserve.py:3807 +#: sickbeard/__init__.py:79 sickbeard/webserve.py:3778 msgid "History" msgstr "" @@ -103,7 +103,7 @@ msgid "Western" msgstr "" #: gui/slick/views/config_general.mako:79 gui/slick/views/layouts/main.mako:221 -#: sickbeard/__init__.py:80 sickbeard/webserve.py:2385 +#: sickbeard/__init__.py:80 sickbeard/webserve.py:2384 msgid "News" msgstr "" @@ -238,6 +238,34 @@ msgstr "" msgid "Subtitled" msgstr "" +#: sickbeard/helpers.py:1887 +msgid "For best results please set the Download Station alias as" +msgstr "" + +#: sickbeard/helpers.py:1888 +msgid "You can check this setting in the Synology DSM" +msgstr "" + +#: sickbeard/helpers.py:1888 sickbeard/helpers.py:1890 +msgid "Control Panel" +msgstr "" + +#: sickbeard/helpers.py:1888 +msgid "Application Portal" +msgstr "" + +#: sickbeard/helpers.py:1889 +msgid "Make sure you allow DSM to be embedded with iFrames too in" +msgstr "" + +#: sickbeard/helpers.py:1890 +msgid "DSM Settings" +msgstr "" + +#: sickbeard/helpers.py:1890 +msgid "Security" +msgstr "" + #: sickbeard/logger.py:474 msgid "<No Filter>" msgstr "" @@ -308,15 +336,15 @@ msgstr "" msgid "Event" msgstr "" -#: sickbeard/logger.py:491 sickbeard/webserve.py:1339 sickbeard/webserve.py:1342 -#: sickbeard/webserve.py:1520 sickbeard/webserve.py:1529 sickbeard/webserve.py:1717 -#: sickbeard/webserve.py:1728 sickbeard/webserve.py:1751 sickbeard/webserve.py:1764 -#: sickbeard/webserve.py:1769 sickbeard/webserve.py:1785 sickbeard/webserve.py:1790 -#: sickbeard/webserve.py:1854 sickbeard/webserve.py:1857 sickbeard/webserve.py:1863 -#: sickbeard/webserve.py:1866 sickbeard/webserve.py:1873 sickbeard/webserve.py:1876 -#: sickbeard/webserve.py:1899 sickbeard/webserve.py:1997 sickbeard/webserve.py:2002 -#: sickbeard/webserve.py:2007 sickbeard/webserve.py:2036 sickbeard/webserve.py:2040 -#: sickbeard/webserve.py:2045 +#: sickbeard/logger.py:491 sickbeard/webserve.py:1338 sickbeard/webserve.py:1341 +#: sickbeard/webserve.py:1519 sickbeard/webserve.py:1528 sickbeard/webserve.py:1716 +#: sickbeard/webserve.py:1727 sickbeard/webserve.py:1750 sickbeard/webserve.py:1763 +#: sickbeard/webserve.py:1768 sickbeard/webserve.py:1784 sickbeard/webserve.py:1789 +#: sickbeard/webserve.py:1853 sickbeard/webserve.py:1856 sickbeard/webserve.py:1862 +#: sickbeard/webserve.py:1865 sickbeard/webserve.py:1872 sickbeard/webserve.py:1875 +#: sickbeard/webserve.py:1898 sickbeard/webserve.py:1996 sickbeard/webserve.py:2001 +#: sickbeard/webserve.py:2006 sickbeard/webserve.py:2035 sickbeard/webserve.py:2039 +#: sickbeard/webserve.py:2044 msgid "Error" msgstr "" @@ -333,6 +361,7 @@ msgstr "" msgid "Main" msgstr "" +#: gui/slick/js/ajaxEpSearch.js:146 gui/slick/js/ajaxEpSearch.js:147 #: gui/slick/views/inc_home_showList.mako:27 sickbeard/show_queue.py:298 msgid "Loading" msgstr "" @@ -372,889 +401,857 @@ msgstr "" msgid "No update needed" msgstr "" -#: sickbeard/webserve.py:170 +#: sickbeard/webserve.py:171 msgid "Mako Error" msgstr "" -#: sickbeard/webserve.py:195 +#: sickbeard/webserve.py:196 msgid "Oops" msgstr "" -#: sickbeard/webserve.py:197 +#: sickbeard/webserve.py:198 msgid "Wrong API key used" msgstr "" -#: gui/slick/views/login.mako:34 sickbeard/webserve.py:302 +#: gui/slick/views/login.mako:34 sickbeard/webserve.py:303 msgid "Login" msgstr "" -#: sickbeard/webserve.py:406 +#: sickbeard/webserve.py:392 msgid "API Key not generated" msgstr "" -#: sickbeard/webserve.py:409 +#: sickbeard/webserve.py:395 msgid "API Builder" msgstr "" #: gui/slick/views/config_general.mako:77 gui/slick/views/layouts/main.mako:141 -#: sickbeard/webserve.py:512 +#: sickbeard/webserve.py:498 msgid "Schedule" msgstr "" -#: sickbeard/webserve.py:610 +#: sickbeard/webserve.py:609 msgid "Test 1" msgstr "" -#: sickbeard/webserve.py:610 +#: sickbeard/webserve.py:609 msgid "This is test number 1" msgstr "" -#: sickbeard/webserve.py:611 +#: sickbeard/webserve.py:610 msgid "Test 2" msgstr "" -#: sickbeard/webserve.py:611 +#: sickbeard/webserve.py:610 msgid "This is test number 2" msgstr "" -#: sickbeard/webserve.py:634 +#: sickbeard/webserve.py:633 msgid "" "You're using the {branch} branch. Please use 'master' unless specifically " "asked" msgstr "" -#: sickbeard/webserve.py:698 sickbeard/webserve.py:703 +#: sickbeard/webserve.py:697 sickbeard/webserve.py:702 msgid "Invalid show parameters" msgstr "" -#: sickbeard/webserve.py:710 +#: sickbeard/webserve.py:709 msgid "Invalid parameters" msgstr "" -#: sickbeard/webserve.py:713 sickbeard/webserve.py:1899 +#: sickbeard/webserve.py:712 sickbeard/webserve.py:1898 msgid "Episode couldn't be retrieved" msgstr "" -#: sickbeard/webserve.py:759 sickbeard/webserve.py:1268 sickbeard/webserve.py:1297 +#: sickbeard/webserve.py:758 sickbeard/webserve.py:1267 sickbeard/webserve.py:1296 msgid "Home" msgstr "" -#: gui/slick/views/layouts/main.mako:127 sickbeard/webserve.py:759 +#: gui/slick/views/layouts/main.mako:127 sickbeard/webserve.py:758 msgid "Show List" msgstr "" -#: sickbeard/webserve.py:807 +#: sickbeard/webserve.py:806 msgid "" "Error: Unsupported Request. Send jsonp request with 'callback' variable in " "the query string." msgstr "" -#: sickbeard/webserve.py:851 +#: sickbeard/webserve.py:850 msgid "Success. Connected and authenticated" msgstr "" -#: sickbeard/webserve.py:853 +#: sickbeard/webserve.py:852 msgid "Authentication failed. SABnzbd expects" msgstr "" -#: sickbeard/webserve.py:853 +#: sickbeard/webserve.py:852 msgid "as authentication method" msgstr "" -#: sickbeard/webserve.py:855 +#: sickbeard/webserve.py:854 msgid "Unable to connect to host" msgstr "" -#: sickbeard/webserve.py:876 +#: sickbeard/webserve.py:875 msgid "SMS sent successfully" msgstr "" -#: sickbeard/webserve.py:878 +#: sickbeard/webserve.py:877 msgid "Problem sending SMS: {message}" msgstr "" -#: sickbeard/webserve.py:885 +#: sickbeard/webserve.py:884 msgid "" "Telegram notification succeeded. Check your Telegram clients to make sure it " "worked" msgstr "" -#: sickbeard/webserve.py:887 +#: sickbeard/webserve.py:886 msgid "Error sending Telegram notification: {message}" msgstr "" -#: sickbeard/webserve.py:894 +#: sickbeard/webserve.py:893 msgid "join notification succeeded. Check your join clients to make sure it worked" msgstr "" -#: sickbeard/webserve.py:896 +#: sickbeard/webserve.py:895 msgid "Error sending join notification: {message}" msgstr "" -#: sickbeard/webserve.py:906 +#: sickbeard/webserve.py:905 msgid " with password" msgstr "" -#: sickbeard/webserve.py:908 +#: sickbeard/webserve.py:907 msgid "Registered and Tested growl successfully {growl_host}" msgstr "" -#: sickbeard/webserve.py:910 +#: sickbeard/webserve.py:909 msgid "Registration and Testing of growl failed {growl_host}" msgstr "" -#: sickbeard/webserve.py:917 +#: sickbeard/webserve.py:916 msgid "Test prowl notice sent successfully" msgstr "" -#: sickbeard/webserve.py:919 +#: sickbeard/webserve.py:918 msgid "Test prowl notice failed" msgstr "" -#: sickbeard/webserve.py:926 +#: sickbeard/webserve.py:925 msgid "" "Boxcar2 notification succeeded. Check your Boxcar2 clients to make sure it " "worked" msgstr "" -#: sickbeard/webserve.py:928 +#: sickbeard/webserve.py:927 msgid "Error sending Boxcar2 notification" msgstr "" -#: sickbeard/webserve.py:935 +#: sickbeard/webserve.py:934 msgid "" "Pushover notification succeeded. Check your Pushover clients to make sure it " "worked" msgstr "" -#: sickbeard/webserve.py:937 +#: sickbeard/webserve.py:936 msgid "Error sending Pushover notification" msgstr "" -#: sickbeard/webserve.py:949 +#: sickbeard/webserve.py:948 msgid "Key verification successful" msgstr "" -#: sickbeard/webserve.py:951 +#: sickbeard/webserve.py:950 msgid "Unable to verify key" msgstr "" -#: sickbeard/webserve.py:958 +#: sickbeard/webserve.py:957 msgid "Tweet successful, check your twitter to make sure it worked" msgstr "" -#: sickbeard/webserve.py:960 +#: sickbeard/webserve.py:959 msgid "Error sending tweet" msgstr "" -#: sickbeard/webserve.py:965 +#: sickbeard/webserve.py:964 msgid "Please enter a valid account sid" msgstr "" -#: sickbeard/webserve.py:968 +#: sickbeard/webserve.py:967 msgid "Please enter a valid auth token" msgstr "" -#: sickbeard/webserve.py:971 +#: sickbeard/webserve.py:970 msgid "Please enter a valid phone sid" msgstr "" -#: sickbeard/webserve.py:974 +#: sickbeard/webserve.py:973 msgid "Please format the phone number as \"+1-###-###-####\"" msgstr "" -#: sickbeard/webserve.py:978 +#: sickbeard/webserve.py:977 msgid "Authorization successful and number ownership verified" msgstr "" -#: sickbeard/webserve.py:980 +#: sickbeard/webserve.py:979 msgid "Error sending sms" msgstr "" -#: sickbeard/webserve.py:986 +#: sickbeard/webserve.py:985 msgid "Slack message successful" msgstr "" -#: sickbeard/webserve.py:988 +#: sickbeard/webserve.py:987 msgid "Slack message failed" msgstr "" -#: sickbeard/webserve.py:994 +#: sickbeard/webserve.py:993 msgid "Discord message successful" msgstr "" -#: sickbeard/webserve.py:996 +#: sickbeard/webserve.py:995 msgid "Discord message failed" msgstr "" -#: sickbeard/webserve.py:1006 +#: sickbeard/webserve.py:1005 msgid "Test KODI notice sent successfully to {kodi_host}" msgstr "" -#: sickbeard/webserve.py:1008 +#: sickbeard/webserve.py:1007 msgid "Test KODI notice failed to {kodi_host}" msgstr "" -#: sickbeard/webserve.py:1023 +#: sickbeard/webserve.py:1022 msgid "Successful test notice sent to Plex Home Theater ... {plex_clients}" msgstr "" -#: sickbeard/webserve.py:1025 +#: sickbeard/webserve.py:1024 msgid "Test failed for Plex Home Theater ... {plex_clients}" msgstr "" -#: sickbeard/webserve.py:1028 +#: sickbeard/webserve.py:1027 msgid "Tested Plex Home Theater(s)" msgstr "" -#: sickbeard/webserve.py:1042 +#: sickbeard/webserve.py:1041 msgid "Successful test of Plex Media Server(s) ... {plex_servers}" msgstr "" -#: sickbeard/webserve.py:1044 +#: sickbeard/webserve.py:1043 msgid "Test failed, No Plex Media Server host specified" msgstr "" -#: sickbeard/webserve.py:1046 +#: sickbeard/webserve.py:1045 msgid "Test failed for Plex Media Server(s) ... {plex_servers}" msgstr "" -#: sickbeard/webserve.py:1049 +#: sickbeard/webserve.py:1048 msgid "Tested Plex Media Server host(s)" msgstr "" -#: sickbeard/webserve.py:1057 +#: sickbeard/webserve.py:1056 msgid "Tried sending desktop notification via libnotify" msgstr "" -#: sickbeard/webserve.py:1066 +#: sickbeard/webserve.py:1065 msgid "Test notice sent successfully to {emby_host}" msgstr "" -#: sickbeard/webserve.py:1068 +#: sickbeard/webserve.py:1067 msgid "Test notice failed to {emby_host}" msgstr "" -#: sickbeard/webserve.py:1076 +#: sickbeard/webserve.py:1075 msgid "Successfully started the scan update" msgstr "" -#: sickbeard/webserve.py:1078 +#: sickbeard/webserve.py:1077 msgid "Test failed to start the scan update" msgstr "" -#: sickbeard/webserve.py:1097 +#: sickbeard/webserve.py:1096 msgid "Test notice sent successfully to {nmj2_host}" msgstr "" -#: sickbeard/webserve.py:1099 +#: sickbeard/webserve.py:1098 msgid "Test notice failed to {nmj2_host}" msgstr "" -#: sickbeard/webserve.py:1119 +#: sickbeard/webserve.py:1118 msgid "Trakt Authorized" msgstr "" -#: sickbeard/webserve.py:1120 +#: sickbeard/webserve.py:1119 msgid "Trakt Not Authorized!" msgstr "" -#: sickbeard/webserve.py:1184 +#: sickbeard/webserve.py:1183 msgid "Test email sent successfully! Check inbox." msgstr "" -#: sickbeard/webserve.py:1186 +#: sickbeard/webserve.py:1185 msgid "ERROR: {last_error}" msgstr "" -#: sickbeard/webserve.py:1193 +#: sickbeard/webserve.py:1192 msgid "Test NMA notice sent successfully" msgstr "" -#: sickbeard/webserve.py:1195 +#: sickbeard/webserve.py:1194 msgid "Test NMA notice failed" msgstr "" -#: sickbeard/webserve.py:1202 +#: sickbeard/webserve.py:1201 msgid "" "Pushalot notification succeeded. Check your Pushalot clients to make sure it " "worked" msgstr "" -#: sickbeard/webserve.py:1204 +#: sickbeard/webserve.py:1203 msgid "Error sending Pushalot notification" msgstr "" -#: sickbeard/webserve.py:1211 +#: sickbeard/webserve.py:1210 msgid "Pushbullet notification succeeded. Check your device to make sure it worked" msgstr "" -#: sickbeard/webserve.py:1213 sickbeard/webserve.py:1223 sickbeard/webserve.py:1232 +#: sickbeard/webserve.py:1212 sickbeard/webserve.py:1222 sickbeard/webserve.py:1231 msgid "Error sending Pushbullet notification" msgstr "" #: gui/slick/views/displayShow.mako:436 gui/slick/views/inc_home_showList.mako:174 -#: gui/slick/views/manage.mako:49 sickbeard/webserve.py:1249 +#: gui/slick/views/manage.mako:49 sickbeard/webserve.py:1248 msgid "Status" msgstr "" -#: sickbeard/webserve.py:1268 sickbeard/webserve.py:1297 +#: sickbeard/webserve.py:1267 sickbeard/webserve.py:1296 msgid "Restarting SickRage" msgstr "" -#: sickbeard/webserve.py:1300 +#: sickbeard/webserve.py:1299 msgid "Update Failed" msgstr "" -#: sickbeard/webserve.py:1301 +#: sickbeard/webserve.py:1300 msgid "Update wasn't successful, not restarting. Check your log for more information." msgstr "" -#: sickbeard/webserve.py:1308 +#: sickbeard/webserve.py:1307 msgid "Checking out branch" msgstr "" -#: sickbeard/webserve.py:1311 +#: sickbeard/webserve.py:1310 msgid "Already on branch" msgstr "" -#: sickbeard/webserve.py:1339 +#: sickbeard/webserve.py:1338 msgid "Invalid show ID: {show}" msgstr "" -#: sickbeard/webserve.py:1342 sickbeard/webserve.py:1871 sickbeard/webserve.py:2002 -#: sickbeard/webserve.py:2040 +#: sickbeard/webserve.py:1341 sickbeard/webserve.py:1870 sickbeard/webserve.py:2001 +#: sickbeard/webserve.py:2039 msgid "Show not in show list" msgstr "" #: gui/slick/views/inc_rootDirs.mako:31 gui/slick/views/manage.mako:38 -#: gui/slick/views/manage_massEdit.mako:74 sickbeard/webserve.py:1358 -#: sickbeard/webserve.py:2027 +#: gui/slick/views/manage_massEdit.mako:74 sickbeard/webserve.py:1357 +#: sickbeard/webserve.py:2026 msgid "Edit" msgstr "" -#: sickbeard/webserve.py:1368 +#: sickbeard/webserve.py:1367 msgid "" "This show is in the process of being downloaded - the info below is " "incomplete." msgstr "" -#: sickbeard/webserve.py:1371 +#: sickbeard/webserve.py:1370 msgid "The information on this page is in the process of being updated." msgstr "" -#: sickbeard/webserve.py:1374 +#: sickbeard/webserve.py:1373 msgid "The episodes below are currently being refreshed from disk" msgstr "" -#: sickbeard/webserve.py:1377 +#: sickbeard/webserve.py:1376 msgid "Currently downloading subtitles for this show" msgstr "" -#: sickbeard/webserve.py:1380 +#: sickbeard/webserve.py:1379 msgid "This show is queued to be refreshed." msgstr "" -#: sickbeard/webserve.py:1383 +#: sickbeard/webserve.py:1382 msgid "This show is queued and awaiting an update." msgstr "" -#: sickbeard/webserve.py:1386 +#: sickbeard/webserve.py:1385 msgid "This show is queued and awaiting subtitles download." msgstr "" -#: gui/slick/js/core.js:4081 sickbeard/webserve.py:1391 +#: gui/slick/js/core.js:4081 sickbeard/webserve.py:1390 msgid "Resume" msgstr "" #: gui/slick/js/core.js:4081 gui/slick/views/viewlogs.mako:12 -#: sickbeard/webserve.py:1393 +#: sickbeard/webserve.py:1392 msgid "Pause" msgstr "" #: gui/slick/views/editShow.mako:345 gui/slick/views/inc_blackwhitelist.mako:40 #: gui/slick/views/inc_blackwhitelist.mako:85 gui/slick/views/manage.mako:58 -#: gui/slick/views/manage_failedDownloads.mako:43 sickbeard/webserve.py:1395 +#: gui/slick/views/manage_failedDownloads.mako:43 sickbeard/webserve.py:1394 msgid "Remove" msgstr "" -#: sickbeard/webserve.py:1396 +#: sickbeard/webserve.py:1395 msgid "Re-scan files" msgstr "" -#: sickbeard/webserve.py:1397 +#: sickbeard/webserve.py:1396 msgid "Force Full Update" msgstr "" -#: sickbeard/webserve.py:1398 +#: sickbeard/webserve.py:1397 msgid "Update show in KODI" msgstr "" -#: sickbeard/webserve.py:1399 +#: sickbeard/webserve.py:1398 msgid "Update show in Emby" msgstr "" -#: sickbeard/webserve.py:1402 +#: sickbeard/webserve.py:1401 msgid "Hide specials" msgstr "" -#: sickbeard/webserve.py:1404 +#: sickbeard/webserve.py:1403 msgid "Show specials" msgstr "" -#: sickbeard/webserve.py:1406 sickbeard/webserve.py:2030 sickbeard/webserve.py:2031 +#: sickbeard/webserve.py:1405 sickbeard/webserve.py:2029 sickbeard/webserve.py:2030 msgid "Preview Rename" msgstr "" -#: sickbeard/webserve.py:1409 +#: sickbeard/webserve.py:1408 msgid "Download Subtitles" msgstr "" -#: sickbeard/webserve.py:1498 +#: sickbeard/webserve.py:1497 msgid "No scene exceptions" msgstr "" -#: sickbeard/webserve.py:1516 sickbeard/webserve.py:1764 sickbeard/webserve.py:1785 +#: sickbeard/webserve.py:1515 sickbeard/webserve.py:1763 sickbeard/webserve.py:1784 msgid "Invalid show ID" msgstr "" -#: sickbeard/webserve.py:1525 sickbeard/webserve.py:1769 sickbeard/webserve.py:1790 +#: sickbeard/webserve.py:1524 sickbeard/webserve.py:1768 sickbeard/webserve.py:1789 msgid "Unable to find the specified show" msgstr "" -#: sickbeard/webserve.py:1550 +#: sickbeard/webserve.py:1549 msgid "Unable to retreive Fansub Groups from AniDB." msgstr "" -#: sickbeard/webserve.py:1559 sickbeard/webserve.py:1561 +#: sickbeard/webserve.py:1558 sickbeard/webserve.py:1560 msgid "Edit Show" msgstr "" -#: sickbeard/webserve.py:1637 sickbeard/webserve.py:1671 +#: sickbeard/webserve.py:1636 sickbeard/webserve.py:1670 msgid "Unable to refresh this show: {error}" msgstr "" -#: sickbeard/webserve.py:1663 +#: sickbeard/webserve.py:1662 msgid "New location <tt>{location}</tt> does not exist" msgstr "" -#: sickbeard/webserve.py:1688 +#: sickbeard/webserve.py:1687 msgid "Unable to update show: {error}" msgstr "" -#: sickbeard/webserve.py:1695 +#: sickbeard/webserve.py:1694 msgid "Unable to force an update on scene exceptions of the show." msgstr "" -#: sickbeard/webserve.py:1702 +#: sickbeard/webserve.py:1701 msgid "Unable to force an update on scene numbering of the show." msgstr "" -#: sickbeard/webserve.py:1708 sickbeard/webserve.py:3540 +#: sickbeard/webserve.py:1707 sickbeard/webserve.py:3539 msgid "{num_errors:d} error{plural} while saving changes:" msgstr "" -#: sickbeard/webserve.py:1719 +#: sickbeard/webserve.py:1718 msgid "{show_name} has been {paused_resumed}" msgstr "" -#: sickbeard/webserve.py:1719 +#: sickbeard/webserve.py:1718 msgid "resumed" msgstr "" -#: sickbeard/webserve.py:1719 +#: sickbeard/webserve.py:1718 msgid "paused" msgstr "" -#: sickbeard/webserve.py:1731 +#: sickbeard/webserve.py:1730 msgid "{show_name} has been {deleted_trashed} {was_deleted}" msgstr "" -#: sickbeard/webserve.py:1733 +#: sickbeard/webserve.py:1732 msgid "deleted" msgstr "" -#: sickbeard/webserve.py:1733 +#: sickbeard/webserve.py:1732 msgid "trashed" msgstr "" -#: sickbeard/webserve.py:1734 +#: sickbeard/webserve.py:1733 msgid "(media untouched)" msgstr "" -#: sickbeard/webserve.py:1734 +#: sickbeard/webserve.py:1733 msgid "(with all related media)" msgstr "" -#: sickbeard/webserve.py:1755 +#: sickbeard/webserve.py:1754 msgid "Unable to refresh this show." msgstr "" -#: sickbeard/webserve.py:1775 +#: sickbeard/webserve.py:1774 msgid "Unable to update this show." msgstr "" -#: sickbeard/webserve.py:1814 +#: sickbeard/webserve.py:1813 msgid "Library update command sent to KODI host(s)): {kodi_hosts}" msgstr "" -#: sickbeard/webserve.py:1816 +#: sickbeard/webserve.py:1815 msgid "Unable to contact one or more KODI host(s)): {kodi_hosts}" msgstr "" -#: sickbeard/webserve.py:1825 +#: sickbeard/webserve.py:1824 msgid "Library update command sent to Plex Media Server host: {plex_server}" msgstr "" -#: sickbeard/webserve.py:1828 +#: sickbeard/webserve.py:1827 msgid "Unable to contact Plex Media Server host: {plex_server}" msgstr "" -#: sickbeard/webserve.py:1840 +#: sickbeard/webserve.py:1839 msgid "Library update command sent to Emby host: {emby_host}" msgstr "" -#: sickbeard/webserve.py:1842 +#: sickbeard/webserve.py:1841 msgid "Unable to contact Emby host: {emby_host}" msgstr "" -#: sickbeard/webserve.py:1852 sickbeard/webserve.py:2036 +#: sickbeard/webserve.py:1851 sickbeard/webserve.py:2035 msgid "You must specify a show and at least one episode" msgstr "" -#: sickbeard/webserve.py:1861 +#: sickbeard/webserve.py:1860 msgid "Invalid status" msgstr "" -#: sickbeard/webserve.py:1954 +#: sickbeard/webserve.py:1953 msgid "" "Backlog was automatically started for the following seasons of " "<b>{show_name}</b>" msgstr "" #: gui/slick/views/displayShow.mako:74 gui/slick/views/displayShow.mako:79 -#: gui/slick/views/displayShow.mako:404 sickbeard/webserve.py:1961 -#: sickbeard/webserve.py:1980 +#: gui/slick/views/displayShow.mako:404 sickbeard/webserve.py:1960 +#: sickbeard/webserve.py:1979 msgid "Season" msgstr "" -#: sickbeard/webserve.py:1968 +#: sickbeard/webserve.py:1967 msgid "Backlog started" msgstr "" -#: sickbeard/webserve.py:1973 +#: sickbeard/webserve.py:1972 msgid "" "Retrying Search was automatically started for the following season of " "<b>{show_name}</b>" msgstr "" -#: sickbeard/webserve.py:1987 +#: sickbeard/webserve.py:1986 msgid "Retry Search started" msgstr "" -#: sickbeard/webserve.py:1997 +#: sickbeard/webserve.py:1996 msgid "You must specify a show" msgstr "" -#: sickbeard/webserve.py:2007 sickbeard/webserve.py:2045 +#: sickbeard/webserve.py:2006 sickbeard/webserve.py:2044 msgid "Can't rename episodes when the show dir is missing." msgstr "" -#: sickbeard/webserve.py:2212 sickbeard/webserve.py:2233 +#: sickbeard/webserve.py:2211 sickbeard/webserve.py:2232 msgid "New subtitles downloaded: {new_subtitle_languages}" msgstr "" -#: sickbeard/webserve.py:2215 sickbeard/webserve.py:2236 +#: sickbeard/webserve.py:2214 sickbeard/webserve.py:2235 msgid "No subtitles downloaded" msgstr "" #: gui/slick/views/config_general.mako:80 gui/slick/views/layouts/main.mako:222 -#: sickbeard/webserve.py:2363 +#: sickbeard/webserve.py:2362 msgid "IRC" msgstr "" -#: sickbeard/webserve.py:2376 +#: sickbeard/webserve.py:2375 msgid "Could not load news from the repo. [Click here for news.md])({news_url})" msgstr "" -#: sickbeard/webserve.py:2383 sickbeard/webserve.py:2401 +#: sickbeard/webserve.py:2382 sickbeard/webserve.py:2400 msgid "The was a problem connecting to github, please refresh and try again" msgstr "" -#: sickbeard/webserve.py:2398 +#: sickbeard/webserve.py:2397 msgid "" "Could not load changes from the repo. [Click here for " "CHANGES.md]({changes_url})" msgstr "" -#: gui/slick/views/layouts/main.mako:223 sickbeard/webserve.py:2403 +#: gui/slick/views/layouts/main.mako:223 sickbeard/webserve.py:2402 msgid "Changelog" msgstr "" -#: gui/slick/views/layouts/main.mako:190 sickbeard/webserve.py:2413 -#: sickbeard/webserve.py:3855 sickbeard/webserve.py:4341 +#: gui/slick/views/layouts/main.mako:190 sickbeard/webserve.py:2412 +#: sickbeard/webserve.py:3826 sickbeard/webserve.py:4312 msgid "Post Processing" msgstr "" -#: gui/slick/views/layouts/main.mako:128 sickbeard/webserve.py:2445 +#: gui/slick/views/layouts/main.mako:128 sickbeard/webserve.py:2444 msgid "Add Shows" msgstr "" -#: sickbeard/webserve.py:2510 +#: sickbeard/webserve.py:2509 msgid "No folders selected." msgstr "" -#: sickbeard/webserve.py:2632 +#: sickbeard/webserve.py:2631 msgid "New Show" msgstr "" -#: sickbeard/webserve.py:2647 +#: sickbeard/webserve.py:2646 msgid "Trending Shows" msgstr "" -#: sickbeard/webserve.py:2649 sickbeard/webserve.py:2772 +#: sickbeard/webserve.py:2648 sickbeard/webserve.py:2771 msgid "Popular Shows" msgstr "" -#: sickbeard/webserve.py:2651 sickbeard/webserve.py:2665 +#: sickbeard/webserve.py:2650 sickbeard/webserve.py:2664 msgid "Most Anticipated Shows" msgstr "" -#: sickbeard/webserve.py:2653 +#: sickbeard/webserve.py:2652 msgid "Most Collected Shows" msgstr "" -#: sickbeard/webserve.py:2655 +#: sickbeard/webserve.py:2654 msgid "Most Watched Shows" msgstr "" -#: sickbeard/webserve.py:2657 +#: sickbeard/webserve.py:2656 msgid "Most Played Shows" msgstr "" -#: sickbeard/webserve.py:2659 +#: sickbeard/webserve.py:2658 msgid "Recommended Shows" msgstr "" -#: gui/slick/views/addShows_trendingShows.mako:60 sickbeard/webserve.py:2661 +#: gui/slick/views/addShows_trendingShows.mako:60 sickbeard/webserve.py:2660 msgid "New Shows" msgstr "" -#: gui/slick/views/addShows_trendingShows.mako:61 sickbeard/webserve.py:2663 +#: gui/slick/views/addShows_trendingShows.mako:61 sickbeard/webserve.py:2662 msgid "Season Premieres" msgstr "" -#: sickbeard/webserve.py:2792 sickbeard/webserve.py:2793 +#: sickbeard/webserve.py:2791 sickbeard/webserve.py:2792 msgid "Existing Show" msgstr "" -#: sickbeard/webserve.py:2871 +#: sickbeard/webserve.py:2870 msgid "No root directories setup, please go back and add one." msgstr "" -#: sickbeard/webserve.py:2883 sickbeard/webserve.py:3002 +#: sickbeard/webserve.py:2882 sickbeard/webserve.py:3001 msgid "Show added" msgstr "" -#: sickbeard/webserve.py:2883 +#: sickbeard/webserve.py:2882 msgid "Adding the specified show {show_name}" msgstr "" -#: sickbeard/webserve.py:2924 +#: sickbeard/webserve.py:2923 msgid "" "Missing params, no Indexer ID or folder: {show_to_add} and " "{root_dir}/{show_path}" msgstr "" -#: sickbeard/webserve.py:2933 +#: sickbeard/webserve.py:2932 msgid "Unknown error. Unable to add show due to problem with show selection." msgstr "" -#: sickbeard/webserve.py:2957 sickbeard/webserve.py:2967 +#: sickbeard/webserve.py:2956 sickbeard/webserve.py:2966 msgid "Unable to add show" msgstr "" -#: sickbeard/webserve.py:2957 +#: sickbeard/webserve.py:2956 msgid "Folder {show_dir} exists already" msgstr "" -#: sickbeard/webserve.py:2968 +#: sickbeard/webserve.py:2967 msgid "Unable to create the folder {show_dir}, can't add the show" msgstr "" -#: sickbeard/webserve.py:3002 +#: sickbeard/webserve.py:3001 msgid "Adding the specified show into {show_dir}" msgstr "" -#: sickbeard/webserve.py:3078 +#: sickbeard/webserve.py:3077 msgid "Shows Added" msgstr "" -#: sickbeard/webserve.py:3079 +#: sickbeard/webserve.py:3078 msgid "Automatically added {num_shows} from their existing metadata files" msgstr "" -#: gui/slick/views/layouts/main.mako:153 sickbeard/webserve.py:3096 +#: gui/slick/views/layouts/main.mako:153 sickbeard/webserve.py:3095 msgid "Mass Update" msgstr "" -#: sickbeard/webserve.py:3134 sickbeard/webserve.py:3161 sickbeard/webserve.py:3237 -#: sickbeard/webserve.py:3238 +#: sickbeard/webserve.py:3133 sickbeard/webserve.py:3160 sickbeard/webserve.py:3236 +#: sickbeard/webserve.py:3237 msgid "Episode Overview" msgstr "" -#: sickbeard/webserve.py:3270 +#: sickbeard/webserve.py:3269 msgid "Missing Subtitles" msgstr "" -#: gui/slick/views/layouts/main.mako:154 sickbeard/webserve.py:3356 -#: sickbeard/webserve.py:3357 +#: gui/slick/views/layouts/main.mako:154 sickbeard/webserve.py:3355 +#: sickbeard/webserve.py:3356 msgid "Backlog Overview" msgstr "" -#: sickbeard/webserve.py:3481 +#: sickbeard/webserve.py:3480 msgid "Mass Edit" msgstr "" -#: sickbeard/webserve.py:3586 +#: sickbeard/webserve.py:3585 msgid "Unable to update show: {excption_format}" msgstr "" -#: sickbeard/webserve.py:3594 +#: sickbeard/webserve.py:3593 msgid "Unable to refresh show {show_name}: {excption_format}" msgstr "" -#: sickbeard/webserve.py:3605 +#: sickbeard/webserve.py:3604 msgid "Errors encountered" msgstr "" -#: gui/slick/views/config_general.mako:261 sickbeard/webserve.py:3611 +#: gui/slick/views/config_general.mako:261 sickbeard/webserve.py:3610 msgid "Updates" msgstr "" -#: sickbeard/webserve.py:3616 +#: sickbeard/webserve.py:3615 msgid "Refreshes" msgstr "" -#: sickbeard/webserve.py:3621 +#: sickbeard/webserve.py:3620 msgid "Renames" msgstr "" #: gui/slick/views/displayShow.mako:260 gui/slick/views/displayShow.mako:435 #: gui/slick/views/editShow.mako:119 gui/slick/views/inc_addShowOptions.mako:20 -#: gui/slick/views/manage_massEdit.mako:262 sickbeard/webserve.py:3626 -#: sickbeard/webserve.py:5244 +#: gui/slick/views/manage_massEdit.mako:262 sickbeard/webserve.py:3625 +#: sickbeard/webserve.py:5215 msgid "Subtitles" msgstr "" -#: sickbeard/webserve.py:3631 +#: sickbeard/webserve.py:3630 msgid "The following actions were queued" msgstr "" -#: sickbeard/webserve.py:3651 -msgid "For best results please set the Download Station alias as" -msgstr "" - -#: sickbeard/webserve.py:3652 -msgid "You can check this setting in the Synology DSM" -msgstr "" - -#: sickbeard/webserve.py:3652 sickbeard/webserve.py:3654 -msgid "Control Panel" -msgstr "" - -#: sickbeard/webserve.py:3652 -msgid "Application Portal" -msgstr "" - -#: sickbeard/webserve.py:3653 -msgid "Make sure you allow DSM to be embedded with iFrames too in" -msgstr "" - -#: sickbeard/webserve.py:3654 -msgid "DSM Settings" -msgstr "" - -#: sickbeard/webserve.py:3654 -msgid "Security" -msgstr "" - -#: gui/slick/views/layouts/main.mako:167 sickbeard/webserve.py:3662 -msgid "Manage Torrents" -msgstr "" - -#: gui/slick/views/layouts/main.mako:170 sickbeard/webserve.py:3683 +#: gui/slick/views/layouts/main.mako:170 sickbeard/webserve.py:3654 msgid "Failed Downloads" msgstr "" -#: gui/slick/views/layouts/main.mako:155 sickbeard/webserve.py:3701 +#: gui/slick/views/layouts/main.mako:155 sickbeard/webserve.py:3672 msgid "Manage Searches" msgstr "" -#: sickbeard/webserve.py:3709 +#: sickbeard/webserve.py:3680 msgid "Backlog search started" msgstr "" -#: sickbeard/webserve.py:3719 +#: sickbeard/webserve.py:3690 msgid "Daily search started" msgstr "" -#: sickbeard/webserve.py:3728 +#: sickbeard/webserve.py:3699 msgid "Find propers search started" msgstr "" -#: sickbeard/webserve.py:3737 +#: sickbeard/webserve.py:3708 msgid "Subtitle search started" msgstr "" -#: sickbeard/webserve.py:3801 +#: sickbeard/webserve.py:3772 msgid "Remove Selected" msgstr "" -#: sickbeard/webserve.py:3802 +#: sickbeard/webserve.py:3773 msgid "Clear History" msgstr "" -#: sickbeard/webserve.py:3803 +#: sickbeard/webserve.py:3774 msgid "Trim History" msgstr "" -#: sickbeard/webserve.py:3823 +#: sickbeard/webserve.py:3794 msgid "Selected history entries removed" msgstr "" -#: sickbeard/webserve.py:3830 +#: sickbeard/webserve.py:3801 msgid "History cleared" msgstr "" -#: sickbeard/webserve.py:3837 +#: sickbeard/webserve.py:3808 msgid "Removed history entries older than 30 days" msgstr "" -#: gui/slick/views/layouts/main.mako:185 sickbeard/webserve.py:3850 +#: gui/slick/views/layouts/main.mako:185 sickbeard/webserve.py:3821 msgid "General" msgstr "" -#: sickbeard/webserve.py:3851 sickbeard/webserve.py:4143 +#: sickbeard/webserve.py:3822 sickbeard/webserve.py:4114 msgid "Backup/Restore" msgstr "" -#: gui/slick/views/layouts/main.mako:187 sickbeard/webserve.py:3852 -#: sickbeard/webserve.py:4206 +#: gui/slick/views/layouts/main.mako:187 sickbeard/webserve.py:3823 +#: sickbeard/webserve.py:4177 msgid "Search Settings" msgstr "" -#: gui/slick/views/layouts/main.mako:188 sickbeard/webserve.py:3853 -#: sickbeard/webserve.py:4518 +#: gui/slick/views/layouts/main.mako:188 sickbeard/webserve.py:3824 +#: sickbeard/webserve.py:4489 msgid "Search Providers" msgstr "" -#: gui/slick/views/layouts/main.mako:189 sickbeard/webserve.py:3854 +#: gui/slick/views/layouts/main.mako:189 sickbeard/webserve.py:3825 msgid "Subtitles Settings" msgstr "" -#: gui/slick/views/layouts/main.mako:191 sickbeard/webserve.py:3856 -#: sickbeard/webserve.py:4964 +#: gui/slick/views/layouts/main.mako:191 sickbeard/webserve.py:3827 +#: sickbeard/webserve.py:4935 msgid "Notifications" msgstr "" @@ -1262,146 +1259,146 @@ msgstr "" #: gui/slick/views/home.mako:35 gui/slick/views/inc_addShowOptions.mako:79 #: gui/slick/views/inc_home_showList.mako:179 gui/slick/views/layouts/main.mako:192 #: gui/slick/views/manage.mako:44 gui/slick/views/manage_massEdit.mako:202 -#: sickbeard/webserve.py:3857 sickbeard/webserve.py:5309 +#: sickbeard/webserve.py:3828 sickbeard/webserve.py:5280 msgid "Anime" msgstr "" -#: sickbeard/webserve.py:3895 sickbeard/webserve.py:3896 +#: sickbeard/webserve.py:3866 sickbeard/webserve.py:3867 msgid "SickRage Configuration" msgstr "" -#: sickbeard/webserve.py:3910 +#: sickbeard/webserve.py:3881 msgid "Config - Shares" msgstr "" -#: sickbeard/webserve.py:3910 +#: sickbeard/webserve.py:3881 msgid "Windows Shares Configuration" msgstr "" -#: sickbeard/webserve.py:3937 +#: sickbeard/webserve.py:3908 msgid "Saved Shares" msgstr "" -#: sickbeard/webserve.py:3937 +#: sickbeard/webserve.py:3908 msgid "Your Windows share settings have been saved" msgstr "" -#: sickbeard/webserve.py:3948 +#: sickbeard/webserve.py:3919 msgid "Config - General" msgstr "" -#: sickbeard/webserve.py:3948 +#: sickbeard/webserve.py:3919 msgid "General Configuration" msgstr "" -#: sickbeard/webserve.py:3988 +#: sickbeard/webserve.py:3959 msgid "Saved Defaults" msgstr "" -#: sickbeard/webserve.py:3988 +#: sickbeard/webserve.py:3959 msgid "Your \"add show\" defaults have been set to your current selections." msgstr "" -#: sickbeard/webserve.py:4095 +#: sickbeard/webserve.py:4066 msgid "Unable to create directory {directory}, log directory not changed." msgstr "" -#: sickbeard/webserve.py:4103 +#: sickbeard/webserve.py:4074 msgid "Unable to create directory {directory}, https cert directory not changed." msgstr "" -#: sickbeard/webserve.py:4107 +#: sickbeard/webserve.py:4078 msgid "Unable to create directory {directory}, https key directory not changed." msgstr "" -#: sickbeard/webserve.py:4126 sickbeard/webserve.py:4324 sickbeard/webserve.py:4456 -#: sickbeard/webserve.py:5227 +#: sickbeard/webserve.py:4097 sickbeard/webserve.py:4295 sickbeard/webserve.py:4427 +#: sickbeard/webserve.py:5198 msgid "Error(s) Saving Configuration" msgstr "" -#: sickbeard/webserve.py:4129 sickbeard/webserve.py:4327 sickbeard/webserve.py:4458 -#: sickbeard/webserve.py:4950 sickbeard/webserve.py:5230 sickbeard/webserve.py:5294 -#: sickbeard/webserve.py:5323 +#: sickbeard/webserve.py:4100 sickbeard/webserve.py:4298 sickbeard/webserve.py:4429 +#: sickbeard/webserve.py:4921 sickbeard/webserve.py:5201 sickbeard/webserve.py:5265 +#: sickbeard/webserve.py:5294 msgid "Configuration Saved" msgstr "" -#: sickbeard/webserve.py:4142 +#: sickbeard/webserve.py:4113 msgid "Config - Backup/Restore" msgstr "" -#: sickbeard/webserve.py:4205 +#: sickbeard/webserve.py:4176 msgid "Config - Episode Search" msgstr "" -#: sickbeard/webserve.py:4340 +#: sickbeard/webserve.py:4311 msgid "Config - Post Processing" msgstr "" -#: sickbeard/webserve.py:4380 +#: sickbeard/webserve.py:4351 msgid "Unpacking Not Supported, disabling unpack setting" msgstr "" -#: sickbeard/webserve.py:4431 +#: sickbeard/webserve.py:4402 msgid "" "You tried saving an invalid normal naming config, not saving your naming " "settings" msgstr "" -#: sickbeard/webserve.py:4439 +#: sickbeard/webserve.py:4410 msgid "" "You tried saving an invalid anime naming config, not saving your naming " "settings" msgstr "" -#: sickbeard/webserve.py:4517 +#: sickbeard/webserve.py:4488 msgid "Config - Providers" msgstr "" -#: sickbeard/webserve.py:4547 +#: sickbeard/webserve.py:4518 msgid "No Provider Name specified" msgstr "" -#: sickbeard/webserve.py:4549 +#: sickbeard/webserve.py:4520 msgid "No Provider Url specified" msgstr "" -#: sickbeard/webserve.py:4551 +#: sickbeard/webserve.py:4522 msgid "No Provider Api key specified" msgstr "" -#: sickbeard/webserve.py:4963 +#: sickbeard/webserve.py:4934 msgid "Config - Notifications" msgstr "" -#: sickbeard/webserve.py:5243 +#: sickbeard/webserve.py:5214 msgid "Config - Subtitles" msgstr "" -#: sickbeard/webserve.py:5308 +#: sickbeard/webserve.py:5279 msgid "Config - Anime" msgstr "" -#: sickbeard/webserve.py:5336 +#: sickbeard/webserve.py:5307 msgid "Clear Errors" msgstr "" -#: sickbeard/webserve.py:5342 +#: sickbeard/webserve.py:5313 msgid "Clear Warnings" msgstr "" -#: sickbeard/webserve.py:5348 +#: sickbeard/webserve.py:5319 msgid "Submit Errors" msgstr "" -#: sickbeard/webserve.py:5363 +#: sickbeard/webserve.py:5334 msgid "Logs & Errors" msgstr "" -#: sickbeard/webserve.py:5388 +#: sickbeard/webserve.py:5359 msgid "Log File" msgstr "" -#: sickbeard/webserve.py:5388 +#: sickbeard/webserve.py:5359 msgid "Logs" msgstr "" @@ -1409,32 +1406,172 @@ msgstr "" msgid "This is a test notification from SickRage" msgstr "" -#: gui/slick/js/core.js:481 gui/slick/js/core.js:502 gui/slick/js/core.js:524 -#: gui/slick/js/core.js:548 gui/slick/js/core.js:573 gui/slick/js/core.js:596 -#: gui/slick/js/core.js:625 gui/slick/js/core.js:645 gui/slick/js/core.js:690 -#: gui/slick/js/core.js:769 gui/slick/js/core.js:829 gui/slick/js/core.js:849 -#: gui/slick/js/core.js:879 gui/slick/js/core.js:909 gui/slick/js/core.js:969 -#: gui/slick/js/core.js:1046 gui/slick/js/core.js:1066 gui/slick/js/core.js:1085 +#: gui/slick/js/browser.js:6 +msgid "Choose Directory" +msgstr "" + +#: gui/slick/js/core.js:443 +msgid "Select log file folder location" +msgstr "" + +#: gui/slick/js/core.js:445 +msgid "Select CSS file" +msgstr "" + +#: gui/slick/js/core.js:469 +msgid "Select backup folder to save to" +msgstr "" + +#: gui/slick/js/core.js:470 +msgid "Select backup files to restore" +msgstr "" + +#: gui/slick/js/core.js:479 gui/slick/js/core.js:500 gui/slick/js/core.js:522 +#: gui/slick/js/core.js:546 gui/slick/js/core.js:571 gui/slick/js/core.js:594 +#: gui/slick/js/core.js:623 gui/slick/js/core.js:643 gui/slick/js/core.js:688 +#: gui/slick/js/core.js:767 gui/slick/js/core.js:827 gui/slick/js/core.js:847 +#: gui/slick/js/core.js:877 gui/slick/js/core.js:907 gui/slick/js/core.js:967 +#: gui/slick/js/core.js:1044 gui/slick/js/core.js:1064 gui/slick/js/core.js:1083 msgid "Please fill out the necessary fields above." msgstr "" -#: gui/slick/js/core.js:1328 gui/slick/js/core.js:1378 gui/slick/js/core.js:1427 -#: gui/slick/js/core.js:1493 +#: gui/slick/js/core.js:680 +msgid "<b>Step 1:</b> Confirm Authorization" +msgstr "" + +#: gui/slick/js/core.js:977 +msgid "Check blacklist name; the value needs to be a trakt slug" +msgstr "" + +#: gui/slick/js/core.js:1022 +msgid "You must provide a recipient email address!" +msgstr "" + +#: gui/slick/js/core.js:1107 +msgid "You didn't supply a Pushbullet api key" +msgstr "" + +#: gui/slick/js/core.js:1133 gui/slick/js/core.js:1162 +msgid "Don't forget to save your new pushbullet settings." +msgstr "" + +#: gui/slick/js/core.js:1262 +msgid "Select TV Download Directory" +msgstr "" + +#: gui/slick/js/core.js:1263 +msgid "Select Unpack Directory" +msgstr "" + +#: gui/slick/js/core.js:1326 gui/slick/js/core.js:1376 gui/slick/js/core.js:1425 +#: gui/slick/js/core.js:1491 msgid "This pattern is invalid." msgstr "" -#: gui/slick/js/core.js:1336 gui/slick/js/core.js:1386 gui/slick/js/core.js:1435 -#: gui/slick/js/core.js:1501 +#: gui/slick/js/core.js:1334 gui/slick/js/core.js:1384 gui/slick/js/core.js:1433 +#: gui/slick/js/core.js:1499 msgid "" "This pattern would be invalid without the folders, using it will force " "\"Season Folders\" on for all shows." msgstr "" -#: gui/slick/js/core.js:1344 gui/slick/js/core.js:1394 gui/slick/js/core.js:1443 -#: gui/slick/js/core.js:1509 +#: gui/slick/js/core.js:1342 gui/slick/js/core.js:1392 gui/slick/js/core.js:1441 +#: gui/slick/js/core.js:1507 msgid "This pattern is valid." msgstr "" +#: gui/slick/js/core.js:1818 +msgid "Select .nzb black hole/watch location" +msgstr "" + +#: gui/slick/js/core.js:1819 +msgid "Select .torrent black hole/watch location" +msgstr "" + +#: gui/slick/js/core.js:1820 +msgid "Select .torrent download location" +msgstr "" + +#: gui/slick/js/core.js:1900 +msgid "Minimum seeding time is" +msgstr "" + +#: gui/slick/js/core.js:1902 +msgid "URL to your uTorrent client (e.g. http://localhost:8000)" +msgstr "" + +#: gui/slick/js/core.js:1905 +msgid "Stop seeding when inactive for" +msgstr "" + +#: gui/slick/js/core.js:1911 +msgid "URL to your Transmission client (e.g. http://localhost:9091)" +msgstr "" + +#: gui/slick/js/core.js:1921 +msgid "URL to your Deluge client (e.g. http://localhost:8112)" +msgstr "" + +#: gui/slick/js/core.js:1930 +msgid "IP or Hostname of your Deluge Daemon (e.g. scgi://localhost:58846)" +msgstr "" + +#: gui/slick/js/core.js:1937 +msgid "URL to your Synology DS client (e.g. http://localhost:5000)" +msgstr "" + +#: gui/slick/js/core.js:1941 +msgid "" +"URL to your rTorrent client (e.g. scgi://localhost:5000 <br> or " +"https://localhost/rutorrent/plugins/httprpc/action.php)" +msgstr "" + +#: gui/slick/js/core.js:1952 +msgid "URL to your qBittorrent client (e.g. http://localhost:8080)" +msgstr "" + +#: gui/slick/js/core.js:1962 +msgid "URL to your MLDonkey (e.g. http://localhost:4080)" +msgstr "" + +#: gui/slick/js/core.js:1974 +msgid "URL to your putio client (e.g. http://localhost:8080)" +msgstr "" + +#: gui/slick/js/core.js:1975 +msgid "" +"<a herf=\"https://app.put.io/oauth/apps/new\" target=\"_blank\"> Create a new" +" OAuth app for put.io</a>" +msgstr "" + +#: gui/slick/js/core.js:1977 +msgid "Put.io Parent Folder" +msgstr "" + +#: gui/slick/js/core.js:1978 +msgid "Put.io OAuth Token" +msgstr "" + +#: gui/slick/js/core.js:3383 gui/slick/views/displayShow.mako:410 +msgid "Show Episodes" +msgstr "" + +#: gui/slick/js/core.js:3388 gui/slick/views/displayShow.mako:408 +msgid "Hide Episodes" +msgstr "" + +#: gui/slick/js/core.js:3396 +msgid "Select Show Location" +msgstr "" + +#: gui/slick/js/core.js:3460 +msgid "Select Unprocessed Episode Folder" +msgstr "" + +#: gui/slick/js/core.js:3790 +msgid "DELETED" +msgstr "" + #: gui/slick/js/core.js:4082 msgid "Resume updating the log on this page." msgstr "" @@ -1443,6 +1580,26 @@ msgstr "" msgid "Pause updating the log on this page." msgstr "" +#: gui/slick/js/core.js:4323 +msgid "searching {searchingFor}..." +msgstr "" + +#: gui/slick/js/core.js:4334 +msgid "search timed out, try again or try another indexer" +msgstr "" + +#: gui/slick/js/core.js:4503 +msgid "loading folders..." +msgstr "" + +#: gui/slick/js/parsers.js:7 gui/slick/js/parsers.js:8 +#: gui/slick/js/plotTooltip.js:6 gui/slick/js/sceneExceptionsTooltip.js:6 +#: gui/slick/views/inc_home_showList.mako:209 +#: gui/slick/views/inc_home_showList.mako:215 +#: gui/slick/views/inc_home_showList.mako:231 +msgid "Loading..." +msgstr "" + #: gui/slick/views/404.mako:5 msgid "You have reached this page by accident, please check the url." msgstr "" @@ -5911,14 +6068,6 @@ msgstr "" msgid "Select Columns" msgstr "" -#: gui/slick/views/displayShow.mako:408 -msgid "Hide Episodes" -msgstr "" - -#: gui/slick/views/displayShow.mako:410 -msgid "Show Episodes" -msgstr "" - #: gui/slick/views/displayShow.mako:424 msgid "NFO" msgstr "" @@ -6460,12 +6609,6 @@ msgstr "" msgid "loading" msgstr "" -#: gui/slick/views/inc_home_showList.mako:209 -#: gui/slick/views/inc_home_showList.mako:215 -#: gui/slick/views/inc_home_showList.mako:231 -msgid "Loading..." -msgstr "" - #: gui/slick/views/inc_qualityChooser.mako:31 msgid "" "<p><b><u>Preferred</u></b> qualities will replace those in " @@ -7015,6 +7158,10 @@ msgstr "" msgid "Update Emby" msgstr "" +#: gui/slick/views/layouts/main.mako:167 +msgid "Manage Torrents" +msgstr "" + #: gui/slick/views/layouts/main.mako:173 msgid "Missed Subtitle Management" msgstr "" diff --git a/locale/nl_NL/LC_MESSAGES/messages.json b/locale/nl_NL/LC_MESSAGES/messages.json index ab8162f0d5d3378706702f1cb45e65dd5c50f3b0..3563188aa2f5129f946a62729f2624a2a86898ab 100644 --- a/locale/nl_NL/LC_MESSAGES/messages.json +++ b/locale/nl_NL/LC_MESSAGES/messages.json @@ -1 +1 @@ -{"messages":{"domain":"messages","locale_data":{"messages":{"100":[null,"100"],"250":[null,"250"],"500":[null,"500"],"":{"domain":"messages","plural_forms":"nplurals=2; plural=(n != 1);","lang":"nl_NL"},"Drama":[null,"Drama"],"Mystery":[null,"Mysterie"],"Science-Fiction":[null,"Science-Fiction"],"Crime":[null,"Misdaad"],"Action":[null,"Actie"],"Comedy":[null,"Komedie"],"Thriller":[null,"Thriller"],"Animation":[null,"Animatie"],"Family":[null,"Familie"],"Fantasy":[null,"Fantasie"],"Adventure":[null,"Avontuur"],"Horror":[null,"Horror"],"Film-Noir":[null,"Film-Noir"],"Sci-Fi":[null,"Sci-Fi"],"Romance":[null,"Romantiek"],"Sport":[null,"Sport"],"War":[null,"Oorlog"],"Biography":[null,"Biografie"],"History":[null,"Geschiedenis"],"Music":[null,"Muziek"],"Western":[null,"Western"],"News":[null,"Nieuws"],"Sitcom":[null,"Sitcom"],"Reality-TV":[null,"Reality-TV"],"Documentary":[null,"Documentaire"],"Game-Show":[null,"Spel-Serie"],"Musical":[null,"Musical"],"Talk-Show":[null,"Talkshow"],"Started Download":[null,"Download Gestart"],"Download Finished":[null,"Download Voltooid"],"Subtitle Download Finished":[null,"Ondertiteling-download Voltooid"],"SickRage Updated":[null,"SickRage Bijgewerkt"],"SickRage Updated To Commit#: ":[null,"SickRage Bijgewerkt naar Commit#: "],"SickRage new login":[null,"SickRage nieuwe login"],"New login from IP: {0}. http://geomaplookup.net/?ip={0}":[null,"Nieuwe login van IP: {0}. http://geomaplookup.net/?IP={0}"],"Repeat":[null,"Herhaal"],"Repeat (Separated)":[null,"Herhaal (apart)"],"Extend":[null,"Verlengen"],"Extend (Limited)":[null,"Verlengen (beperkt)"],"Extend (Limited, E-prefixed)":[null,"Verlengen (beperkt, met E prefix)"],"Downloaded":[null,"Gedownload"],"Snatched":[null,"Opgepikt"],"Snatched (Proper)":[null,"Opgepikt (Proper)"],"Failed":[null,"Mislukt"],"Snatched (Best)":[null,"Opgepikt (Best)"],"Archived":[null,"Gearchiveerd"],"Unknown":[null,"Onbekend"],"Unaired":[null,"Nog niet uitgezonden"],"Skipped":[null,"Overgeslagen"],"Wanted":[null,"Gewild"],"Ignored":[null,"Genegeerd"],"Subtitled":[null,"Ondertiteld"],"<No Filter>":[null,"<Geen Filter>"],"Daily Searcher":[null,"Dagzoeker"],"Backlog":[null,"Werkvoorraad"],"Show Updater":[null,"Toon Updater"],"Check Version":[null,"Versie controleren"],"Show Queue":[null,"Toon Wachtrij"],"Search Queue (All)":[null,"Zoekwachtrij (alles)"],"Search Queue (Daily Searcher)":[null,"Zoekwachtrij (Dagzoeker)"],"Search Queue (Backlog)":[null,"Zoekwachtrij (Werkvoorraad)"],"Search Queue (Manual)":[null,"Zoekwachtrij (Handmatig)"],"Search Queue (Retry/Failed)":[null,"Zoekwachtrij (Opnieuw/Mislukt)"],"Search Queue (RSS)":[null,"Zoekwachtrij (RSS)"],"Find Propers":[null,"Propers zoeken"],"Postprocessor":[null,"Nabewerking"],"Find Subtitles":[null,"Zoek Ondertiteling"],"Trakt Checker":[null,"Trakt Checker"],"Event":[null,"Gebeurtenis"],"Error":[null,"Fout"],"Tornado":[null,"Tornado"],"Thread":[null,"Thread"],"Main":[null,"Algemeen"],"Loading":[null,"Bezig met laden"],"New update found for SickRage, starting auto-updater":[null,"Nieuwe update gevonden voor SickRage, auto-updater start"],"Update was successful":[null,"Update is gelukt"],"Update failed!":[null,"Update mislukt!"],"Backup":[null,"Backup"],"Config backup in progress...":[null,"Bezig met maken van een backup..."],"Config backup successful, updating...":[null,"Instellingen backup gelukt, updaten gestart..."],"Config backup failed, aborting update":[null,"Instellingen backup mislukt, updaten wordt afgebroken"],"No update needed":[null,"Geen update nodig"],"Mako Error":[null,"Mako fout"],"Oops":[null,"Oeps"],"Wrong API key used":[null,"Ongeldige API-sleutel gebruikt"],"Login":[null,"Inloggen"],"API Key not generated":[null,"API-sleutel niet gegenereerd"],"API Builder":[null,"API Bouwer"],"Schedule":[null,"Kalender"],"Test 1":[null,"Test 1"],"This is test number 1":[null,"Dit is test nummer 1"],"Test 2":[null,"Test 2"],"This is test number 2":[null,"Dit is test nummer 2"],"You're using the {branch} branch. Please use 'master' unless specifically asked":[null,"U gebruikt momenteel de {branch} branch. Gebruik 'master' tenzij specifiek aangegeven"],"Invalid show parameters":[null,"Ongeldige seriegegevens"],"Invalid parameters":[null,"Ongeldige parameters"],"Episode couldn't be retrieved":[null,"Aflevering kon niet gevonden worden"],"Home":[null,"Startscherm"],"Show List":[null,"Serielijst"],"Error: Unsupported Request. Send jsonp request with 'callback' variable in the query string.":[null,"Fout: Verzoek wordt niet ondersteund. Verzendt het jsonp request met 'callback' variabele in de queryreeks."],"Success. Connected and authenticated":[null,"Succes. Verbonden en geverifieerd"],"Authentication failed. SABnzbd expects":[null,"Authenticatie mislukt. SABnzbd verwacht"],"as authentication method":[null,"als verificatiemethode"],"Unable to connect to host":[null,"Kan niet verbinden met de server"],"SMS sent successfully":[null,"SMS verzonden"],"Problem sending SMS: {message}":[null,"Probleem met het verzenden van SMS: {message}"],"Telegram notification succeeded. Check your Telegram clients to make sure it worked":[null,"Telegram melding verzonden. Controleer uw Telegram client om te verifiëren dat het gelukt is"],"Error sending Telegram notification: {message}":[null,"Verzenden Telegram melding mislukt: {message}"],"join notification succeeded. Check your join clients to make sure it worked":[null,"samenvoegmelding gelukt. Controleer je samenvoeg-clients op juiste werking"],"Error sending join notification: {message}":[null,"Fout bij versturen van Join melding: {message}"]," with password":[null," met wachtwoord"],"Registered and Tested growl successfully {growl_host}":[null,"Geregistreerd en Growl test is gelukt {growl_host}"],"Registration and Testing of growl failed {growl_host}":[null,"Geregistreerd en Growl test is mislukt {growl_host}"],"Test prowl notice sent successfully":[null,"Test prowl melding verzonden"],"Test prowl notice failed":[null,"Test prowl melding mislukt"],"Boxcar2 notification succeeded. Check your Boxcar2 clients to make sure it worked":[null,"Boxcar2 melding verzonden. Controleer uw Boxcar2 client om te verifiëren dat het gelukt is"],"Error sending Boxcar2 notification":[null,"Fout bij verzenden van Boxcar2 melding"],"Pushover notification succeeded. Check your Pushover clients to make sure it worked":[null,"Pushover melding verzonden. Controleer uw Pushover client om te verifiëren dat het gelukt is"],"Error sending Pushover notification":[null,"Fout bij verzenden van Pushover melding"],"Key verification successful":[null,"Sleutel succesvol geverifieerd"],"Unable to verify key":[null,"Niet in staat de sleutel te verifiëren"],"Tweet successful, check your twitter to make sure it worked":[null,"Tweet verzonden. Controleer uw Twitter om te verifiëren dat het gelukt is"],"Error sending tweet":[null,"Fout bij verzenden tweet"],"Please enter a valid account sid":[null,"Voer svp een geldig gebruikers-ID in"],"Please enter a valid auth token":[null,"Voer svp een geldig controlegetal in"],"Please enter a valid phone sid":[null,"Voer svp een geldig telefoon ID in"],"Please format the phone number as \"+1-###-###-####\"":[null,"Gebruik svp voor het telefoonnummer de opmaak +1-###-###-####"],"Authorization successful and number ownership verified":[null,"Autorisatie succesvol en eigendom nummer geverifieerd"],"Error sending sms":[null,"Fout bij het verzenden van sms"],"Slack message successful":[null,"Slack bericht gelukt"],"Slack message failed":[null,"Slack bericht mislukt"],"Discord message successful":[null,"Discord bericht succesvol"],"Discord message failed":[null,"Discord bericht mislukt"],"Test KODI notice sent successfully to {kodi_host}":[null,"KODI test boodschap succesvol naar {kodi_host} verzonden"],"Test KODI notice failed to {kodi_host}":[null,"KODI test boodschap naar {kodi_host} mislukt"],"Successful test notice sent to Plex Home Theater ... {plex_clients}":[null,"Succesvol een testbericht naar Plex Home Theater verstuurd ... {plex_clients}"],"Test failed for Plex Home Theater ... {plex_clients}":[null,"Test mislukt ... {plex_clients}"],"Tested Plex Home Theater(s)":[null,"Plex Home Theater(s) getest"],"Successful test of Plex Media Server(s) ... {plex_servers}":[null,"Plex Media Server(s) succesvol getest ... {plex_servers}"],"Test failed, No Plex Media Server host specified":[null,"Test is mislukt, geen Plex Media Server host opgegeven"],"Test failed for Plex Media Server(s) ... {plex_servers}":[null,"Test mislukt voor Plex Media Server(s) ... {plex_servers}"],"Tested Plex Media Server host(s)":[null,"Plex Media Server host(s) getest"],"Tried sending desktop notification via libnotify":[null,"Bureaublad melding via libnotify is verzonden"],"Test notice sent successfully to {emby_host}":[null,"Testboodschap succesvol naar {emby_host} verzonden"],"Test notice failed to {emby_host}":[null,"Testboodschap naar {emby_host} mislukt"],"Successfully started the scan update":[null,"Scan update succesvol gestart"],"Test failed to start the scan update":[null,"De test om de scan update te starten is mislukt"],"Test notice sent successfully to {nmj2_host}":[null,"Testbericht met succes verzonden naar {nmj2_host}"],"Test notice failed to {nmj2_host}":[null,"Testboodschap naar {nmj2_host} mislukt"],"Trakt Authorized":[null,"Trakt is gemachtigd"],"Trakt Not Authorized!":[null,"Trakt is niet gemachtigd!"],"Test email sent successfully! Check inbox.":[null,"Test e-mail succesvol verzonden! Controleer je Postvak IN."],"ERROR: {last_error}":[null,"FOUT: {last_error}"],"Test NMA notice sent successfully":[null,"NMA testbericht met succes verzonden"],"Test NMA notice failed":[null,"NMA testbericht mislukt"],"Pushalot notification succeeded. Check your Pushalot clients to make sure it worked":[null,"Pushalot melding verzonden. Controleer uw Pushalot client om te verifiëren dat het gelukt is"],"Error sending Pushalot notification":[null,"Fout bij verzenden van Pushalot melding"],"Pushbullet notification succeeded. Check your device to make sure it worked":[null,"Pushbullet melding verzonden. Controleer uw apparaat om te verifiëren dat het gelukt is"],"Error sending Pushbullet notification":[null,"Fout bij verzenden van Pushbullet melding"],"Status":[null,"Status"],"Restarting SickRage":[null,"SickRage aan het herstarten"],"Update Failed":[null,"Update is mislukt"],"Update wasn't successful, not restarting. Check your log for more information.":[null,"Update was niet succesvol, er is niet opnieuw opgestart. Controleer uw logboek voor meer informatie."],"Checking out branch":[null,"Branch uitchecken"],"Already on branch":[null,"Zit reeds op deze branch"],"Invalid show ID: {show}":[null,"Ongeldige serie ID: {show}"],"Show not in show list":[null,"Serie niet in serielijst gevonden"],"Edit":[null,"Bewerk"],"This show is in the process of being downloaded - the info below is incomplete.":[null,"Deze serie wordt op dit moment gedownload - de informatie hieronder is incompleet."],"The information on this page is in the process of being updated.":[null,"De informatie op deze pagina wordt op dit moment bijgewerkt."],"The episodes below are currently being refreshed from disk":[null,"De afleveringen hieronder worden op dit moment ververst vanaf schijf"],"Currently downloading subtitles for this show":[null,"Ondertiteling voor deze serie nu aan het downloaden"],"This show is queued to be refreshed.":[null,"Deze serie staat in de rij om bijgewerkt te worden."],"This show is queued and awaiting an update.":[null,"Deze serie staat in de rij en wacht op een update."],"This show is queued and awaiting subtitles download.":[null,"Deze serie staat in de rij en wacht op het downloaden van ondertiteling."],"Resume":[null,"Hervat"],"Pause":[null,"Pauzeer"],"Remove":[null,"Verwijder"],"Re-scan files":[null,"(Her)Scan Bestanden"],"Force Full Update":[null,"Forceer volledige update"],"Update show in KODI":[null,"Update serie in KODI"],"Update show in Emby":[null,"Update serie in Emby"],"Hide specials":[null,"Specials verbergen"],"Show specials":[null,"Specials tonen"],"Preview Rename":[null,"Hernoemvoorbeeld"],"Download Subtitles":[null,"Download ondertiteling"],"No scene exceptions":[null,"Geen scène-uitzonderingen"],"Invalid show ID":[null,"Serie ID onjuist"],"Unable to find the specified show":[null,"Kan deze serie niet vinden"],"Unable to retreive Fansub Groups from AniDB.":[null,"Niet mogelijk Fansub groepen van AniDB op te halen"],"Edit Show":[null,"Bewerk Serie"],"Unable to refresh this show: {error}":[null,"Serie kan momenteel niet vernieuwd worden: {error}"],"New location <tt>{location}</tt> does not exist":[null,"Nieuwe locatie <tt>{location}</tt> bestaat niet"],"Unable to update show: {error}":[null,"Kan serie niet updaten: {error}"],"Unable to force an update on scene exceptions of the show.":[null,"Niet in staat om een geforceerde update uit te voeren op de scène-uitzonderingen bij deze serie."],"Unable to force an update on scene numbering of the show.":[null,"Niet in staat om een geforceerde update uit te voeren op de scène-nummering bij deze serie."],"{num_errors:d} error{plural} while saving changes:":[null,"{num_errors:d} foutmelding{plural} tijdens het opslaan van wijzigingen:"],"{show_name} has been {paused_resumed}":[null,"{show_name} is {paused_resumed}"],"resumed":[null,"hervat"],"paused":[null,"gepauzeerd"],"{show_name} has been {deleted_trashed} {was_deleted}":[null,"{show_name} is {deleted_trashed} {was_deleted}"],"deleted":[null,"verwijderd"],"trashed":[null,"verplaatst naar prullenbak"],"(media untouched)":[null,"(media ongewijzigd)"],"(with all related media)":[null,"(met alle gerelateerde media)"],"Unable to refresh this show.":[null,"Serie kan momenteel niet vernieuwd worden."],"Unable to update this show.":[null,"Kan deze serie niet updaten."],"Library update command sent to KODI host(s)): {kodi_hosts}":[null,"Bibliotheek update-commando is naar KODI host(s)) verstuurd: {kodi_hosts}"],"Unable to contact one or more KODI host(s)): {kodi_hosts}":[null,"Niet mogelijk contact te leggen met 1 of meerdere KODI host(s)): {kodi_hosts}"],"Library update command sent to Plex Media Server host: {plex_server}":[null,"Update commando is naar Plex Media Server host gestuurd: {plex_server}"],"Unable to contact Plex Media Server host: {plex_server}":[null,"Niet mogelijk contact te leggen met Plex Media Server host: {plex_server}"],"Library update command sent to Emby host: {emby_host}":[null,"Bibliotheek update-commando is naar Emby host verstuurd: {emby_host}"],"Unable to contact Emby host: {emby_host}":[null,"Niet gelukt met de Emby host te verbinden: {emby_host}"],"You must specify a show and at least one episode":[null,"U moet een serie selecteren en minimaal 1 aflevering"],"Invalid status":[null,"Ongeldige status"],"Backlog was automatically started for the following seasons of <b>{show_name}</b>":[null,"Automatisch een werkvoorraad aangemaakt voor de volgende seizoenen van <b>{show_name}</b>"],"Season":[null,"Seizoen"],"Backlog started":[null,"Werkvoorraad wordt aangemaakt"],"Retrying Search was automatically started for the following season of <b>{show_name}</b>":[null,"Opnieuw zoeken is automatisch gestart voor de volgende seizoenen van <b>{show_name}</b>"],"Retry Search started":[null,"Opnieuw aan het zoeken"],"You must specify a show":[null,"U moet een serie specificeren"],"Can't rename episodes when the show dir is missing.":[null,"Kan geen afleveringen hernoemen als er geen seriemap is."],"New subtitles downloaded: {new_subtitle_languages}":[null,"Nieuwe ondertiteling gedownload: {new_subtitle_languages}"],"No subtitles downloaded":[null,"Geen ondertiteling gedownload"],"IRC":[null,"IRC"],"Could not load news from the repo. [Click here for news.md])({news_url})":[null,"Nieuws kan niet worden geladen uit de repo. [Klik hier voor de news.md])({news_url})"],"The was a problem connecting to github, please refresh and try again":[null,"Er was een probleem met de verbinding met GitHub, graag vernieuwen en opnieuw proberen"],"Could not load changes from the repo. [Click here for CHANGES.md]({changes_url})":[null,"Aanpassingen kunnen niet worden geladen uit de repo. [Klik hier voor de CHANGES.md]({changes_url})"],"Changelog":[null,"Veranderingen"],"Post Processing":[null,"Nabewerking"],"Add Shows":[null,"Serie Toevoegen"],"No folders selected.":[null,"Geen mappen geselecteerd."],"New Show":[null,"Nieuwe Serie"],"Trending Shows":[null,"Populaire Series"],"Popular Shows":[null,"Populaire Shows"],"Most Anticipated Shows":[null,"De langstverwachte Series"],"Most Collected Shows":[null,"Meest Verzamelde Series"],"Most Watched Shows":[null,"Meest Bekeken Series"],"Most Played Shows":[null,"Meest Afgespeelde Series"],"Recommended Shows":[null,"Aanbevolen Series"],"New Shows":[null,"Nieuwe Series"],"Season Premieres":[null,"Seizoen Start "],"Existing Show":[null,"Bestaande Serie"],"No root directories setup, please go back and add one.":[null,"Geen hoofdmappen ingesteld, graag teruggaan en één toe te voegen."],"Show added":[null,"Serie toegevoegd"],"Adding the specified show {show_name}":[null,"Bezig deze serie toe te voegen: {show_name}"],"Missing params, no Indexer ID or folder: {show_to_add} and {root_dir}/{show_path}":[null,"Ontbrekende parameters, geen Indexeerder ID of map: {show_to_add} en {root_dir}/{show_path}"],"Unknown error. Unable to add show due to problem with show selection.":[null,"Onbekende fout. Serie kan niet toegevoegd worden vanwege een probleem met het selecteren van de serie."],"Unable to add show":[null,"Serie toevoegen mislukt"],"Folder {show_dir} exists already":[null,"Map genaamd {show_dir} bestaat al"],"Unable to create the folder {show_dir}, can't add the show":[null,"Niet mogelijk om de map {show_dir} aan te maken, kon de serie niet toevoegen"],"Adding the specified show into {show_dir}":[null,"Bezig deze serie toe te voegen in {show_dir}"],"Shows Added":[null,"Toegevoegde Series"],"Automatically added {num_shows} from their existing metadata files":[null,"Automatisch {num_shows} series toegevoegd op basis van al aanwezige metadata bestanden"],"Mass Update":[null,"Groepsgewijs Updaten"],"Episode Overview":[null,"Aflevering Overzicht"],"Missing Subtitles":[null,"Ontbrekende Ondertiteling"],"Backlog Overview":[null,"Werkvoorraad Overzicht"],"Mass Edit":[null,"Groepsgewijs Bewerken"],"Unable to update show: {excption_format}":[null,"Kan serie niet updaten: {excption_format}"],"Unable to refresh show {show_name}: {excption_format}":[null,"Kan serie {show_name} niet updaten: {excption_format}"],"Errors encountered":[null,"Fouten die zijn opgetreden"],"Updates":[null,"Updates"],"Refreshes":[null,"Vernieuwingen"],"Renames":[null,"Naamswijzigingen"],"Subtitles":[null,"Ondertiteling"],"The following actions were queued":[null,"De volgende acties zijn in de wachtrij gezet"],"For best results please set the Download Station alias as":[null,"Voor het beste resultaat, stel de Download Station alias in als"],"You can check this setting in the Synology DSM":[null,"U kunt deze instelling terugvinden in de Synology DSM"],"Control Panel":[null,"Configuratiescherm"],"Application Portal":[null,"Toepassingsportaal"],"Make sure you allow DSM to be embedded with iFrames too in":[null,"Zorg ervoor dat DSM wordt toegestaan dat deze ook in iFrames wordt geïntegreerd "],"DSM Settings":[null,"DSM Instellingen"],"Security":[null,"Beveiliging"],"Manage Torrents":[null,"Beheer Torrents"],"Failed Downloads":[null,"Mislukte Downloads"],"Manage Searches":[null,"Zoeken"],"Backlog search started":[null,"Werkvoorraad-zoekopdracht gestart"],"Daily search started":[null,"Dagelijkse zoekopdracht gestart"],"Find propers search started":[null,"Zoekopdracht propers gestart"],"Subtitle search started":[null,"Zoekopdracht ondertiteling gestart"],"Remove Selected":[null,"Verwijder Geselecteerde"],"Clear History":[null,"Geschiedenis wissen"],"Trim History":[null,"Trim geschiedenis"],"Selected history entries removed":[null,"Geselecteerde historie items verwijderd"],"History cleared":[null,"Geschiedenis gewist"],"Removed history entries older than 30 days":[null,"Verwijder alle gebeurtenissen ouder dan 30 dagen"],"General":[null,"Algemeen"],"Backup/Restore":[null,"Back-up/Herstel"],"Search Settings":[null,"Zoekinstellingen"],"Search Providers":[null,"Zoekmachines"],"Subtitles Settings":[null,"Ondertiteling"],"Notifications":[null,"Berichtgeving"],"Anime":[null,"Anime"],"SickRage Configuration":[null,"SickRage Configuratie"],"Config - Shares":[null,""],"Windows Shares Configuration":[null,""],"Saved Shares":[null,""],"Your Windows share settings have been saved":[null,""],"Config - General":[null,"Configuratie - Algemeen"],"General Configuration":[null,"Algemene Configuratie"],"Saved Defaults":[null,"Opgeslagen Standaardwaarden"],"Your \"add show\" defaults have been set to your current selections.":[null,"De standaard waardes voor \"Show toevoegen\" zijn ingesteld op uw huidige selectie."],"Unable to create directory {directory}, log directory not changed.":[null,"Aanmaken van de map {directory} is mislukt, logboekmap is ongewijzigd."],"Unable to create directory {directory}, https cert directory not changed.":[null,"Map {directory) kan niet worden aangemaakt, SSL certificaat map is ongewijzigd."],"Unable to create directory {directory}, https key directory not changed.":[null,"Niet in staat hier een map {directory} te maken, de https key map is niet gewijzigd."],"Error(s) Saving Configuration":[null,"Er is een/zijn fout(en) opgetreden bij het opslaan van de instellingen"],"Configuration Saved":[null,"Configuratie opgeslagen"],"Config - Backup/Restore":[null,"Configuratie - Back-up/Herstel"],"Config - Episode Search":[null,"Configuratie - Afleveringen zoeken"],"Config - Post Processing":[null,"Configuratie - nabewerking"],"Unpacking Not Supported, disabling unpack setting":[null,"Uitpakken niet ondersteund, deze instelling is nu uitgeschakeld"],"You tried saving an invalid normal naming config, not saving your naming settings":[null,"U hebt geprobeerd een ongeldige normale benamingsconfiguratie op te slaan, deze wordt nu niet opgeslagen"],"You tried saving an invalid anime naming config, not saving your naming settings":[null,"U hebt geprobeerd een ongeldige anime benamingsconfiguratie op te slaan, deze wordt nu niet opgeslagen"],"Config - Providers":[null,"Configuratie - Providers"],"No Provider Name specified":[null,"Geen naam opgegeven voor deze zoekmachine"],"No Provider Url specified":[null,"Geen webadres opgegeven voor deze zoekmachine"],"No Provider Api key specified":[null,"Geen API sleutel opgegeven voor deze zoekmachine"],"Config - Notifications":[null,"Configuratie - meldingen"],"Config - Subtitles":[null,"Configuratie - Ondertiteling"],"Config - Anime":[null,"Configuratie - Anime"],"Clear Errors":[null,"Verwijder foutmeldingen"],"Clear Warnings":[null,"Verwijder waarschuwingen"],"Submit Errors":[null,"Verzend foutmeldingen"],"Logs & Errors":[null,"Waarschuwingen & fouten"],"Log File":[null,"Logbestand"],"Logs":[null,"Logboeken"],"This is a test notification from SickRage":[null,"Dit is een test-notificatie van SickRage"],"Please fill out the necessary fields above.":[null,""],"This pattern is invalid.":[null,"Dit patroon is ongeldig."],"This pattern would be invalid without the folders, using it will force \"Season Folders\" on for all shows.":[null,"Dit patroon is normaliter ongeldig zonder de folders; in dat geval wordt \"Seizoen Folders\" voor alle series gebruikt."],"This pattern is valid.":[null,"Dit patroon is geldig."],"Resume updating the log on this page.":[null,"Bijwerken van de logging op deze pagina hervatten."],"Pause updating the log on this page.":[null,"Bijwerken van de logging op deze pagina pauzeren."],"You have reached this page by accident, please check the url.":[null,"De pagina kan niet gevonden worden. Controleer of het Url correct is."],"A mako error has occured.<br>\n If this happened during an update a simple page refresh may be the solution.<br>\n Mako errors that happen during updates may be a one time error if there were significant ui changes.":[null,"Een mako-error is opgetreden.<br>\n Kreeg je deze foutmelding tijdens het updaten? Dan kan het herladen van de pagina de oplossing zijn.<br>\n Mako-errors die tijdens een update optreden, kunnen een eenmalige fout zijn als er significante wijzigingen in de lay-out aangebracht zijn."],"Show/Hide Error":[null,"Toon/Verberg Foutmelding"],"Add New Show":[null,"Toevoegen van Nieuwe Series"],"For shows that you haven't downloaded yet, this option finds a show on theTVDB.com, creates a directory for it's episodes, and adds it to SickRage.":[null,"Deze optie zoekt een <b>Nieuwe </b> serie via TVDB.com, en voegt deze toe aan SickRage. Een map wordt automatisch aangemaakt."],"Add From Trakt Lists":[null,"Toevoegen van Trakt Series"],"For shows that you haven't downloaded yet, this option lets you choose from a show from one of the Trakt lists to add to SickRage.":[null,"Deze optie geeft je de mogelijkheid series te kiezen uit <b>Trakt lijsten</b> die je nog niet hebt toegevoegd aan SickRage."],"Add From IMDB's Popular Shows":[null,"Toevoegen van IMDB's Series"],"View IMDB's list of the most popular shows. This feature uses IMDB's MOVIEMeter algorithm to identify popular TV Series.":[null,"Deze optie toont de populairste series op IMDB. De lijst wordt gegenereerd via het algoritme van IMDB's MOVIEMeter voor de beste resultaten."],"Add Existing Shows":[null,"Toevoegen reeds bestaande Series"],"Use this option to add shows that already have a folder created on your hard drive. SickRage will scan your existing metadata/episodes and add the show accordingly.":[null,"Deze optie laat u <b>reeds gedownloade</b> Series toevoegen die zich al op uw harde schijf bevinden. SickRage zal de aanwezige mappen scannen op afleveringen en metadata om deze vervolgens toe te voegen."],"Add Existing Show":[null,"Toevoegen reeds bestaande Serie"],"Manage Directories":[null,"Beheer Mappen"],"Customize Options":[null,"Bewerk Instellingen"],"SickRage can add existing shows, using the current options, by using locally stored NFO/XML metadata to eliminate user interaction. If you would rather have SickRage prompt you to customize each show, then use the checkbox below.":[null,"SickRage is in staat om automatisch series toe te voegen met behulp van reeds aanwezige NFO/XML metadata.\n Als u liever wilt dat SickRage telkens per serie de instellingen voor die serie toont, vink dan onderstaande vakje aan."],"Prompt me to set settings for each show":[null,"Toon de instellingen opnieuw voor elke afzonderlijke serie"],"Displaying folders within these directories which aren't already added to SickRage":[null,"Tonen van mappen die niet al zijn toegevoegd aan SickRage"],"Submit":[null,"Verzend"],"Find a show on theTVDB":[null,"Vind een Serie op theTVDB"],"Show retrieved from existing metadata":[null,"Toon opgehaald van bestaande metagegevens"],"All Indexers":[null,"Alle Indexeerders"],"Search":[null,"Zoek"],"This will only affect the language of the retrieved metadata file contents and episode filenames.":[null,"De taal is enkel van invloed op de Serie informatie c. q. metadata en de afleveringstitels."],"This <b>DOES NOT</b> allow SickRage to download non-english TV episodes!":[null,"Dit heeft <b>geen</b> invloed op de gesproken taal of ondertiteling!"],"Pick the parent folder":[null,"Kies de hoofdmap"],"Pre-chosen Destination Folder":[null,"Vooraf gekozen doelmap"],"Customize options":[null,"Opties aanpassen"],"Add Show":[null,"Serie toevoegen"],"Skip Show":[null,"Serie Overslaan"],"Sort By":[null,"Sorteren op"],"Name":[null,"Naam"],"Original":[null,"Origineel"],"Votes":[null,"Stemmen"],"Rating":[null,"Waardering"],"Rating > Votes":[null,"Waardering > Stemmen"],"Sort Order":[null,"Sorteervolgorde"],"Asc":[null,"Oplopend"],"Desc":[null,"Aflopend"],"Fetching of IMDB Data failed. Are you online?":[null,"Ophalen van IMDB-gegevens is mislukt. Bent u online?"],"Exception":[null,"Uitzondering"],"Select Trakt List":[null,"Selecteer Trakt Lijst"],"Most Anticipated":[null,"Langstverwacht"],"Trending":[null,"Populairder"],"Popular":[null,"Populair"],"Most Watched":[null,"Meest Bekeken"],"Most Played":[null,"Meest Gespeeld"],"Most Collected":[null,"Meest Verzameld"],"Recommended":[null,"Aanbevolen"],"Toggle navigation":[null,"Navigatie aan/uit"],"Profile":[null,"Profiel"],"JSONP":[null,"JSONP"],"Back to SickRage":[null,"Terug naar SickRage"],"Parameters":[null,"Eigenschappen"],"Required":[null,"Verplicht"],"Description":[null,"Beschrijving"],"Type":[null,"Type"],"Default value":[null,"Standaard waarde"],"Allowed values":[null,"Toegestane waarden"],"Playground":[null,"Speeltuin"],"Clear":[null,"Leegmaken"],"Yes":[null,"Ja"],"No":[null,"Nee"],"season":[null,"seizoen"],"episode":[null,"aflevering"],"Python Version":[null,"Python Versie"],"SSL Version":[null,"SSL Versie"],"OS":[null,"OS"],"Locale":[null,"Taal"],"User":[null,"Gebruiker"],"Program Folder":[null,"Programmamap"],"Config File":[null,"Instellingenbestand"],"Database File":[null,"Databasebestand"],"Cache Folder":[null,"Cachemap"],"Log Folder":[null,"Logboekmap"],"Arguments":[null,"Parameters"],"Web Root":[null,"Web Root"],"Website":[null,"Website"],"Wiki":[null,"Wiki"],"Source":[null,"Bron"],"IRC Chat":[null,"IRC Chat"],"AnimeDB Settings":[null,"AnimeDB Instellingen"],"Look & Feel":[null,"Weergave"],"AniDB is non-profit database of anime information that is freely open to the public":[null,"AniDB is een anime naslagwerk open voor het publiek zonder winstoogmerk"],"Enable":[null,"Ingeschakeld"],"should SickRage use data from AniDB?":[null,"moet SickRage data van AniDB gebruiken?"],"AniDB Username":[null,"AniDB Gebruikersnaam"],"username of your AniDB account":[null,"gebruikersnaam van je AniDB account"],"AniDB Password":[null,"AniDB Wachtwoord "],"password of your AniDB account":[null,"wachtwoord van je AniDB acccount"],"AniDB MyList":[null,"Mijn AniDB Lijst"],"do you want to add the PostProcessed episodes to the MyList?":[null,"wil je de nabewerkte afleveringen toevoegen aan de MyList?"],"Look and Feel":[null,"Weergave"],"How should the anime functions show and behave.":[null,"Hoe moeten anime series getoond worden."],"Split show lists":[null,"Splits serielijst"],"separate anime and normal shows in groups":[null,"verdeel anime en normale series in groepen"],"Split in tabs":[null,"Splitsen in tabbladen"],"use tabs for when splitting show lists":[null,"tabbladen gebruiken bij het splitsen van serielijsten"],"Restore":[null,"Herstellen"],"Backup your main database file and config.":[null,"Backup je serie database en instellingen."],"Select the folder you wish to save your backup file to":[null,"Selecteer de map waar je je backup wilt opslaan"],"Restore your main database file and config.":[null,"Herstel je seriedatabase en -instellingen."],"Select the backup file you wish to restore":[null,"Selecteer het backup bestand dat je wilt terugzetten"],"Misc":[null,"Algemeen"],"Interface":[null,"Interface"],"Advanced Settings":[null,"Geavanceerde Instellingen"],"Startup options. Indexer options. Log and show file locations.":[null,"Opstart- & Indexeerderinstellingen. Logboek- en Serielocaties."],"Some options may require a manual restart to take effect.":[null,"Voor sommige veranderingen is een handmatige herstart noodzakelijk."],"Default Indexer Language":[null,"Indexeerdertaal"],"for adding shows and metadata providers":[null,"Taal voor de metadata die moet worden gedownload"],"Launch browser":[null,"Start browser"],"open the SickRage home page on startup":[null,"open de hoofdpagina van SickRage na opstarten"],"Initial page":[null,"Startpagina"],"Shows":[null,"Series"],"when launching SickRage interface":[null,"Kies de SickRage startpagina"],"Choose hour to update shows":[null,"Wanneer Series updaten"],"with information such as next air dates, show ended, etc. Use 15 for 3pm, 4 for 4am etc.":[null,"update de Series met nieuwe informatie als uitzenddatums etc. Kies tijd tussen 0-24 uur."],"note":[null,"opmerking"],"minutes are randomized each time SickRage is started":[null,"minuten zijn gerandomiseerd elke keer wanneer SickRage is gestart"],"Send to trash for actions":[null,"Naar Prullenbak verplaatsen"],"when using show \"Remove\" and delete files":[null,"verwijderde bestanden worden naar de prullenbak verplaatst"],"on scheduled deletes of the oldest log files":[null,"verwijder oudste logboekbestanden"],"selected actions use trash (recycle bin) instead of the default permanent delete":[null,"Selecteer de functies voor de prullenbak i.p.v. standaard verwijderen."],"Log file folder location":[null,"Logboekbestandsmap"],"Number of Log files saved":[null,"Aantal logboekbestanden"],"number of log files saved when rotating logs (default: 5) (REQUIRES RESTART)":[null,"aantal logboekbestanden dat bewaard blijft als logboeken worden gecirculeerd (standaard = 5, en herstart is vereist)"],"Size of Log files saved":[null,"Grootte van opgeslagen logboekbestanden"],"maximum size in MB of the log file (default: 1MB) (REQUIRES RESTART)":[null,"maximale grootte in MB van het logboekbestand (standaard: 1MB) (vereist opnieuw opstarten)"],"Use initial indexer set to":[null,"Standaard indexeerder"],"as the default selection when adding new shows":[null,"Standaard indexeerder bij toevoegen Series"],"Timeout show indexer at":[null,"Timeout van indexeerder"],"seconds of inactivity when finding new shows (default:20)":[null,"Time-out bij toevoegen van nieuwe Series (standaard: 20)"],"Show root directories":[null,"Toon hoofdmappen"],"where the files of shows are located":[null,"bestandsmap(pen) van de Serie(s)"],"Save Changes":[null,"Opslaan"],"Options for software updates.":[null,"Opties voor software-updates."],"Check software updates":[null,"Controleer op updates"],"and display notifications when updates are available. Checks are run on startup and at the frequency set below*":[null,"en toon meldingen wanneer er updates beschikbaar zijn. Dit wordt gecontroleerd bij het opstarten en met onderstaande frequentie*"],"Automatically update":[null,"Automatische updates"],"fetch and install software updates. Updates are run on startup and in the background at the frequency set below*":[null,"download en installeer software updates. Updates worden verwerkt bij het opstarten en in de achtergrond met de onderstaande frequentie*"],"Check the server every*":[null,"Controleer op Updates iedere"],"hours for software updates (default:1)":[null,"uur op software-updates voor Sickrage (standaard: 1 uur)"],"Notify on software update":[null,"Bericht bij Update?"],"send a message to all enabled notifiers when SickRage has been updated":[null,"Stuur een bericht naar alle ingestelde ontvangers wanneer SickRage is bijgewerkt"],"User Interface":[null,"Gebruikersinterface"],"Options for visual appearance.":[null,"Weergave-instellingen."],"Interface Language":[null,"Interfacetaal"],"System Language":[null,"Systeemtaal"],"for appearance to take effect, save then refresh your browser":[null,"Sla de verandering op en ververs de pagina"],"Display theme":[null,"Themakleur"],"Dark":[null,"Donker"],"Light":[null,"Licht"],"Use a background image":[null,"Gebruik een achtergrondafbeelding"],"use a custom image as background for SickRage":[null,"gebruik een aangepaste afbeelding als achtergrond voor SickRage"],"Background Path":[null,"Pad achtergrondafbeelding"],"Path to the background image":[null,"Pad naar de achtergrondafbeelding"],"Show fanart in the background":[null,"Toon Serie-achtergrond"],"on the show summary page":[null,"op de overzichtspagina van de serie"],"Fanart transparency":[null,"Zichtbaarheid Serie-achtergrond"],"transparency of the fanart in the background":[null,"zichtbaarheid (watermerk) van de serie-afbeelding op de achtergrond"],"Use a custom stylesheet file":[null,""],"use a custom .css file to style SickRage (for advanced users)":[null,""],"Stylesheet File Path":[null,""],"Path to the stylesheet (.css) file":[null,""],"Show all seasons":[null,"Toon alle seizoenen"],"Sort with \"The\", \"A\", \"An\"":[null,"Sorteer met \"The\", \"A\", \"An\""],"include articles (\"The\", \"A\", \"An\") when sorting show lists":[null,"houd rekening met de voorzetsels (\"The\", \"A\", \"An\") bij het sorteren van de serielijst"],"Missed episodes range":[null,"Gemiste afleveringen bereik"],"set the range in days of the missed episodes in the Schedule page":[null,"zet de reeks in dagen van de gemiste afleveringen in de Kalender pagina"],"Display fuzzy dates":[null,"Naamdatums weergeven"],"move absolute dates into tooltips and display e.g. \"Last Thu\", \"On Tue\"":[null,"vervang cijferdatums door namen zoals. \"Laatste Donderdag\", \"Op Dinsdag\""],"Trim zero padding":[null,"Verwijder de \"0\""],"remove the leading number \"0\" shown on hour of day, and date of month":[null,"verwijder de eerste \"0\" in de tijd of datum. bv 01: 00 wordt 1: 00"],"Date style":[null,"Datumstijl"],"Use System Default":[null,"Gebruik standaard van apparaat "],"Time style":[null,"Tijdstijl"],"seconds are only shown on the History page":[null,"seconden worden enkel op de Geschiedenispagina weergegeven"],"Timezone":[null,"Tijdzone"],"Local":[null,"Lokaal"],"Network":[null,"Netwerk"],"display dates and times in either your timezone or the shows network timezone":[null,"uitzendtijd van Series tonen in lokale tijd, of die van de zender/netwerk"],"use local timezone to start searching for episodes minutes after show ends (depends on your dailysearch frequency)":[null,"gebruik lokale tijdzone om een aantal minuten na de uitzending te beginnen met zoeken naar de afleveringen (hangt af van je dagelijkse zoekfrequentie)"],"Download url":[null,"Download url"],"URL where the shows can be downloaded.":[null,"URL waar de series kunnen worden gedownload."],"Web Interface":[null,"Webinterface"],"it is recommended that you enable a username and password to secure SickRage from being tampered with remotely.":[null,"het wordt aanbevolen om een gebruikersnaam en wachtwoord te gebruiken om SickRage te beveiligen tegen sabotage van buitenaf."],"these options require a manual restart to take effect.":[null,"deze opties vereisen een handmatige herstart voor ze effectief worden."],"API key":[null,"API sleutel"],"used to give 3rd party programs limited access to SickRage":[null,"Benodigd om andere programma's toegang te geven tot SickRage"],"you can try all the features of the API":[null,"Probeer en bekijk alle API functies"],"here":[null,"hier"],"HTTP logs":[null,"HTTP"],"enable logs from the internal Tornado web server":[null,"schakel het logboek van de interne Tornado webserver in"],"HTTP username":[null,"HTTP gebruiker"],"set blank for no login":[null,"laat leeg voor geen login"],"HTTP password":[null,"HTTP wachtwoord"],"blank = no authentication":[null,"laat leeg voor geen login"],"HTTP port":[null,"HTTP poort"],"web port to browse and access SickRage (default:8081)":[null,"Poort waarop SickRage kan worden geopend (standaard: 8081)"],"Notify on login":[null,"Bericht bij login"],"enable to be notified when a new login happens in webserver":[null,"activeer berichtgeving bij een nieuwe aanmelding op de webserver"],"Listen on IPv6":[null,"Luister naar IPv6"],"attempt binding to any available IPv6 address":[null,"probeer een IPv6-adres te verkrijgen"],"Enable HTTPS":[null,"Activeer HTTPS"],"enable access to the web interface using a HTTPS address":[null,"activeer HTTPS toegang tot de webinterface van Sickrage"],"HTTPS certificate":[null,"HTTPS certificaat"],"file name or path to HTTPS certificate":[null,"bestandsnaam en pad naar HTTPS certificaat"],"HTTPS key":[null,"HTTPS sleutel"],"file name or path to HTTPS key":[null,"bestandsnaam en pad naar de HTTPS sleutel"],"Reverse proxy headers":[null,"Reverse proxy headers"],"accept the following reverse proxy headers (advanced)...":[null,"accepteer de volgende reverse proxyheaders (geavanceerd)..."],"(X-Forwarded-For, X-Forwarded-Host, and X-Forwarded-Proto)":[null,"(X-Forwarded-For, X-Forwarded-Host, en X-Forwarded-Proto)"],"CPU throttling":[null,"CPU verbruik"],"Normal (default). High is lower and Low is higher CPU use":[null,"Normaal (standaard). Hoog is een lager, en Laag is een hoger CPU verbruik"],"Anonymous redirect":[null,"Anoniem doorsturen"],"backlink protection via anonymizer service, must end in \"?\"":[null,"doorlinkbescherming via anonimiseringsdienst, moet eindigen op \"?\""],"Enable debug":[null,"Activeer debug"],"enable debug logs":[null,"activeer debug logboek"],"Verify SSL Certs":[null,"Controleer SSL Certs"],"verify SSL Certificates (Disable this for broken SSL installs (Like QNAP))":[null,"verifieer SSL Certificaten (Schakel dit uit voor niet werkende SSL installaties (Zoals QNAP))"],"No Restart":[null,"Geen Herstart"],"only shutdown when restarting SR":[null,"alleen afsluiten wanneer SR herstart"],"only select this when you have external software restarting SR automatically when it stops (like FireDaemon)":[null,"selecteer deze optie alleen wanneer je externe software gebruikt (zoals FireDaemon) om na een stop SR automatisch te herstarten"],"Encrypt passwords":[null,"Codeer wachtwoorden"],"in the <code>config.ini</code> file":[null,"in het <code>config.ini</code> bestand"],"warning":[null,"waarschuwing"],"passwords must only contain":[null,"wachtwoorden mogen alleen bevatten"],"ASCII characters":[null,"ASCII karakters"],"Unprotected calendar":[null,"Onbeveiligde agenda"],"allow subscribing to the calendar without user and password":[null,"toestaan een abonnement te hebben op de agenda zonder gebruikersnaam en wachtwoord"],"some services like Google Calendar only work this way":[null,"sommige diensten zoals Google agenda werken alleen op deze manier"],"Google Calendar Icons":[null,"Google Agenda Iconen"],"show an icon next to exported calendar events in Google Calendar":[null,"toon een icoon naast geëxporteerde gebeurtenissen in Google Agenda"],"Proxy host":[null,"Proxy host"],"blank to disable or proxy to use when connecting to providers":[null,"Vul evt. een proxy in voor verbindingen met de zoekmachines"],"also use global proxy setting for indexers (tvdb, xem, anidb, etc.)":[null,"globale proxy-instellingen ook gebruiken voor indexeerders (tvdb, xem, anidb, enz.)"],"Skip Remove Detection":[null,"Verwijderingsdetectie"],"skip detection of removed files":[null,"detectie van verwijderde bestanden overslaan"],"if disabled the episode will be set to the default deleted status":[null,"indien uitgeschakeld zal de aflevering naar de standaard verwijderde status worden gezet"],"Default deleted episode status":[null,"Standaardstatus van verwijderde aflevering"],"define the status to be set for media file that has been deleted.":[null,"definieer de status die ingesteld moet worden wanneer een media bestand verwijderd is."],"Archived option will keep previous downloaded quality":[null,"Gearchiveerd zal het kwaliteitsniveau van eerdere downloads gebruiken"],"example: Downloaded (1080p WEB-DL) ==> Archived (1080p WEB-DL)":[null,"voorbeeld: Gedownload (1080p WEB-DL) ==> Gearchiveerd (1080p WEB-DL)"],"Options for github related features.":[null,"Opties gerelateerd aan GitHub."],"Branch version":[null,"Branch versie"],"error: No branches found.":[null,"fout: Geen branches gevonden."],"select branch to use (restart required)":[null,"selecteer de branch die u wilt gebruiken (opnieuw opstarten noodzakelijk)"],"Authorization Type":[null,"Autorisatie Type"],"Username and password":[null,"Gebruikersnaam en wachtwoord"],"Personal access token":[null,"Persoonlijke toegangs-token"],"You must use a personal access token if you're using \"two-factor authentication\" on GitHub.":[null,"Een persoonlijke token is verplicht bij gebruik van de \"two-factor authentication\" op GitHub."],"GitHub username":[null,"GitHub gebruikersnaam"],"*** (REQUIRED FOR SUBMITTING ISSUES) ***":[null,"*** (VEREIST VOOR HET INDIENEN VAN FOUTMELDINGEN) ***"],"GitHub password":[null,"GitHub wachtwoord"],"GitHub personal access token":[null,"GitHub persoonlijke toegangs-token"],"Generate Token":[null,"Genereer Toegangs-token"],"Manage Tokens":[null,"Beheer Toegangs-tokens"],"GitHub remote for branch":[null,"GitHub remote"],"access repo configured remotes (save then refresh browser)":[null,"toegangs repo ingestelde afstandsbedieningen (bewaar en dan vernieuw browser)"],"default":[null,"standaard"],"origin":[null,"oorspronkelijk"],"Git executable path":[null,"Bestandspad Git executable"],"only needed if OS is unable to locate git from env":[null,"enkel nodig wanneer de OS niet in staat is om Git te vinden via env"],"Git reset":[null,"Git reset"],"removes untracked files and performs a hard reset on git branch automatically to help resolve update issues":[null,"verwijder untracked bestanden en voer een harde reset uit op de git branch om update problemen te verhelpen"],"Home Theater / NAS":[null,"Home Theater / NAS"],"Devices":[null,"Apparaten"],"Social":[null,"Social Media"],"A free and open source cross-platform media center and home entertainment system software with a 10-foot user interface designed for the living-room TV.":[null,"Een gratis en open-source multi-platform mediacenter en thuisbioscoop softwarepakket met een zeer leesbare gebruiksinterface bedoeld voor de tv in de huiskamer."],"send KODI commands?":[null,"commando's naar KODI versturen?"],"Always on":[null,"Altijd aan"],"log errors when unreachable?":[null,"registreer de foutmelding wanneer niet toegankelijk?"],"Notify on snatch":[null,"Melden bij opgepikt"],"send a notification when a download starts?":[null,"stuur een melding wanneer een download start?"],"Notify on download":[null,"Bericht bij gedownload"],"send a notification when a download finishes?":[null,"stuur een bericht wanneer een download klaar is?"],"Notify on subtitle download":[null,"Bericht"],"send a notification when subtitles are downloaded?":[null,"stuur een bericht wanneer de ondertiteling gedownload is?"],"Update library":[null,"Update bibliotheek"],"update KODI library when a download finishes?":[null,"kODI bibliotheek updaten wanneer een download klaar is?"],"Full library update":[null,"Volledige bibliotheek update"],"perform a full library update if update per-show fails?":[null,"een volledige bibliotheek update uitvoeren als een \"per serie\" update mislukt?"],"Only update first host":[null,"Alleen de eerste host updaten"],"only send library updates to the first active host?":[null,"alleen bibliotheek updates verzenden naar de eerste actieve host?"],"KODI IP:Port":[null,"KODI IP:Poort"],"host running KODI (eg. 192.168.1.100:8080)":[null,"de locatie van KODI (bijv. 192.168.1.100:8080)"],"(multiple host strings must be separated by commas)":[null,"(meerdere host strings moeten gescheiden zijn door komma's)"],"Username":[null,"Gebruikersnaam"],"username for your KODI server (blank for none)":[null,"gebruikersnaam voor uw KODI-server (leeg voor geen)"],"Password":[null,"Wachtwoord"],"password for your KODI server (blank for none)":[null,"wachtwoord voor uw KODI-server (leeg voor geen)"],"Click below to test.":[null,"Klik hieronder om te testen."],"Experience your media on a visually stunning, easy to use interface on your Mac connected to your TV. Your media library has never looked this good!":[null,"Ervaar uw media op een visueel verbluffende, gemakkelijk te gebruiken interface op uw Mac aangesloten op uw TV. Uw media bibliotheek heeft er nog nooit zo goed uitgezien!"],"For sending notifications to Plex Home Theater (PHT) clients, use the KODI notifier with port <b>3005</b>.":[null,"Voor het verzenden van meldingen naar Plex Home Theater (PHT) clients, gebruik de KODI melder maar dan op port <b>3005</b>."],"send Plex Media Server library updates?":[null,"verstuur bibliotheek updates naar Plex Media Server?"],"Plex Media Server Auth Token":[null,"Plex Media Server Autorisatie Token"],"auth token used by Plex":[null,"authenticatie token voor Plex"],"Update Library":[null,"Update bibliotheek"],"update Plex Media Server library when a download finishes":[null,"update Plex Media Server bibliotheek wanneer een download is voltooid"],"Plex Media Server IP:Port":[null,"Plex Media Server IP:Poort"],"one or more hosts running Plex Media Server<br/>(eg. 192.168.1.1:32400, 192.168.1.2:32400)":[null,"een of meer Plex Media Server hosts<br/>(bijv. 192.168.1.1:32400, 192.168.1.2:32400)"],"HTTPS":[null,"HTTPS"],"use https for plex media server requests?":[null,"https gebruiken voor Plex Media Server aanvragen?"],"Click below to test Plex Media Server(s)":[null,"Klik hieronder voor het testen van Plex Media server (s)"],"Test Plex Media Server":[null,"Test Plex Media Server"],"Plex Home Theater":[null,"Plex Home Theater"],"send Plex Home Theater notifications?":[null,"verstuur Plex Home Theater meldingen?"],"Plex Home Theater IP:Port":[null,"Plex Home Theater IP: poort"],"one or more hosts running Plex Home Theater<br>(eg. 192.168.1.100:3000, 192.168.1.101:3000)":[null,"een of meer hosts waarop Plex Home Theater <br>wordt uitgevoerd<br>(bijv. 192.168.1.100:3000, 192.168.1.101:3000)"],"Click below to test Plex Home Theater(s)":[null,"Klik hieronder voor het testen van Plex Home Theater(s)"],"Test Plex Home Theater":[null,"Test Plex Home Theater"],"some Plex Home Theaters <b class=\"boldest\">do not</b> support notifications e.g. Plexapp for Samsung TVs":[null,"sommige Plex Home Theaters ondersteunen <b class=\"boldest\">geen</b> meldingen, bijv. Plexapp voor Samsung TV's"],"Emby":[null,"Emby"],"A home media server built using other popular open source technologies.":[null,"Een home mediaserver gebouwd met behulp van andere populaire open source-technologieën."],"send update commands to Emby?":[null,"update commando's naar Emby versturen?"],"Emby IP:Port":[null,"Emby IP: poort"],"host running Emby (eg. 192.168.1.100:8096)":[null,"host waar Emby op draait (bijv. 192.168.1.100:8096)"],"Emby API Key":[null,"Emby API-sleutel"],"Networked Media Jukebox":[null,"Networked Media Jukebox"],"The Networked Media Jukebox, or NMJ, is the official media jukebox interface made available for the Popcorn Hour 200-series.":[null,"De Networked Media Jukebox, of NMJ, is de officiële media jukebox interface beschikbaar gesteld voor de Popcorn Hour 200-series."],"send update commands to NMJ?":[null,"update commando's naar NMJ versturen?"],"Popcorn IP address":[null,"Popcorn IP-adres"],"IP address of Popcorn 200-series (eg. 192.168.1.100)":[null,"IP-adres van Popcorn 200-serie (bijv. 192.168.1.100)"],"Get settings":[null,"Instellingen ophalen"],"Get Settings":[null,"Instellingen ophalen"],"the Popcorn Hour device must be powered on and NMJ running.":[null,"het Popcorn Hour apparaat moet aan staan en NMJ moet draaien."],"NMJ database":[null,"NMJ database"],"automatically filled via the 'Get Settings' button.":[null,"automatisch ingevuld via de knop \"Instellingen ophalen\"."],"NMJ mount url":[null,"NMJ mount url"],"Networked Media Jukebox v2":[null,"Networked Media Jukebox v2"],"The Networked Media Jukebox, or NMJv2, is the official media jukebox interface made available for the Popcorn Hour 300 & 400-series.":[null,"De Networked Media Jukebox, of NMJv2, is de officiële media jukebox interface beschikbaar gesteld voor de Popcorn Hour 300 & 400-series."],"send update commands to NMJv2?":[null,"update commando's naar NMJv2 versturen?"],"IP address of Popcorn 300/400-series (eg. 192.168.1.100)":[null,"IP-adres van de Popcorn 300/400-series (bijv. 192.168.1.100)"],"Database location":[null,"Database-locatie"],"Database instance":[null,"Database-instantie"],"adjust this value if the wrong database is selected.":[null,"pas deze waarde aan als de verkeerde database is geselecteerd."],"Find database":[null,"Vind Database"],"Find Database":[null,"Database vinden"],"the Popcorn Hour device must be powered on.":[null,"het Popcorn Hour-apparaat moet aan staan."],"NMJv2 database":[null,"NMJv2 database"],"automatically filled via the 'Find Database' buttons.":[null,"automatisch ingevuld via de \"Zoek Database\" knoppen."],"Synology":[null,"Synology"],"The Synology DiskStation NAS.":[null,"De Synology DiskStation NAS."],"Synology Indexer is the daemon running on the Synology NAS to build its media database.":[null,"Synology Indexeeder is de daemon die draait op de Synology NAS om zijn media-database op te bouwen."],"send Synology notifications?":[null,"Synology berichten versturen?"],"requires SickRage to be running on your Synology NAS.":[null,"vereist dat SickRage draait op uw Synology NAS."],"Synology Indexer":[null,"Synology Indexeerder"],"Synology Notifier is the notification system of Synology DSM":[null,"Synology Melder is het meldingensysteem voor Synology DSM"],"send notifications to the Synology Notifier?":[null,"berichten naar de Synology Notifier versturen?"],"pyTivo":[null,"pyTivo"],"pyTivo is both an HMO and GoBack server. This notifier will load the completed downloads to your Tivo.":[null,"pyTivo is zowel een HMO en GoBack server. Het plaatst de voltooide downloads op uw Tivo."],"send notifications to pyTivo?":[null,"berichten naar pyTivo versturen?"],"requires the downloaded files to be accessible by pyTivo.":[null,"vereist dat de gedownloade bestanden beschikbaar zijn via pyTivo."],"pyTivo IP:Port":[null,"pyTivo IP: poort"],"host running pyTivo (eg. 192.168.1.1:9032)":[null,"host waarop pyTivo draait (bijv. 192.168.1.1:9032)"],"pyTivo share name":[null,"pyTivo share naam"],"value used in pyTivo Web Configuration to name the share.":[null,"waarde die in pyTivo Web configuratie gebruikt wordt voor de share naam."],"Tivo name":[null,"TiVo naam"],"(Messages & Settings > Account & System Information > System Information > DVR name)":[null,"(Berichten & Instellingen > Account & Systeem Informatie > Systeem informatie > DVR naam)"],"Growl":[null,"Growl"],"A cross-platform unobtrusive global notification system.":[null,"Een wereldwijd bescheiden cross-platform meldingssysteem."],"send Growl notifications?":[null,"berichten naar Growl versturen?"],"Growl IP:Port":[null,"Growl IP:Poort"],"host running Growl (eg. 192.168.1.100:23053)":[null,"host waarop Growl wordt uitgevoerd (bijv. 192.168.1.100:23053)"],"may leave blank if SickRage is on the same host.":[null,"mag leeg gelaten worden als SickRage zich op dezelfde host bevindt."],"otherwise Growl <b>requires</b> a password to be used.":[null,"anders <b>vereist</b> Growl dat een wachtwoord gebruikt wordt."],"Click below to register and test Growl, this is required for Growl notifications to work.":[null,"Klik hieronder om Gegrom te registreren en te testen, dit is vereist om de meldingen van Gegrom te laten werken."],"Register Growl":[null,"Growl registreren"],"Prowl":[null,"Prowl"],"A Growl client for iOS.":[null,"Een Growl client voor iOS."],"send Prowl notifications?":[null,"berichten naar Prowl versturen?"],"Prowl Message Title":[null,"Prowl Berichttitel"],"Global Prowl API key(s)":[null,"Algemene Prowl API sleutel(s)"],"Prowl API(s) listed here, separated by commas if applicable, will<br> receive notifications for <b>all</b> shows. Your Prowl API key is available at:":[null,"Prowl API(s) hier vermeld en gescheiden door komma's, zullen <br>meldingen ontvangen voor <b>alle</b> series. Jouw Prowl API sleutel is te vinden op:"],"(this field may be blank except when testing.)":[null,"(Dit veld mag leeg zijn tenzij er getest wordt.)"],"Show notification list":[null,"Toon overzicht meldingen"],"-- Select a Show --":[null,"-- Kies een Serie --"],"Configure per-show notifications here by entering Prowl API key(s), separated by commas, '\n 'after selecting a show in the drop-down box. Be sure to activate the 'Save for this show' '\n 'button below after each entry.":[null,"Configureer per-show meldingen hier door het invoeren van je Prowl API key(s), komma-gegescheiden, '\n' en na het selecteren van een show in de drop-down box. Zorg ervoor dat u de onderstaande 'Opslaan voor deze show' '\n' knop activeert, na elke invoer."],"Save for this show":[null,"Opslaan voor deze serie"],"Prowl priority":[null,"Prowl prioriteit"],"Very Low":[null,"Zeer Laag"],"Moderate":[null,"Gemiddeld"],"Normal":[null,"Normaal"],"High":[null,"Hoog"],"Emergency":[null,"Noodgeval"],"priority of Prowl messages from SickRage.":[null,"prioriteit van Prowl berichten van SickRage."],"Libnotify":[null,"Libnotify"],"The standard desktop notification API for Linux/*nix systems. This notifier will only function if the pynotify module is installed (Ubuntu/Debian package <a href=\"apt:python-notify\">python-notify</a>).":[null,"De standaard desktop kennisgevings-API voor Linux / * nix-systemen. Deze melder zal alleen functioneren als de pynotify module is geïnstalleerd (Ubuntu / Debian pakket <a href=\"apt:python-notify\"> python-notify</a>)."],"send Libnotify notifications?":[null,"Libnotify meldingen versturen?"],"Pushover":[null,"Pushover"],"Pushover makes it easy to send real-time notifications to your Android and iOS devices.":[null,"Pushover maakt het gemakkelijk om real-time meldingen te versturen naar uw Android- en iOS-apparaten."],"send Pushover notifications?":[null,"Pushover meldingen versturen?"],"Pushover key":[null,"Pushover sleutel"],"user key of your Pushover account":[null,"gebruikerssleutel van uw Pushover account"],"Pushover API key":[null,"Pushover API sleutel"],"click here":[null,""]," to create a Pushover API key":[null,""],"Pushover devices":[null,"Pushover apparaten"],"comma separated list of pushover devices you want to send notifications to":[null,"komma-gescheiden lijst van Pushover apparaten waar u meldingen naar wilt sturen"],"Pushover notification sound":[null,"Pushover berichtgeluid"],"Bike":[null,"Fiets"],"Bugle":[null,"Bugel"],"Cash Register":[null,"Kassa"],"Classical":[null,"Klassiek"],"Cosmic":[null,"Ruimte"],"Falling":[null,"Vallen"],"Gamelan":[null,"Gamelan"],"Incoming":[null,"Inkomend"],"Intermission":[null,"Pauze"],"Magic":[null,"Magie"],"Mechanical":[null,"Mechanisch"],"Piano Bar":[null,"Pianoriedel"],"Siren":[null,"Sirene"],"Space Alarm":[null,"Ruimtealarm"],"Tug Boat":[null,"Duwboot"],"Alien Alarm (long)":[null,"Buitenaards Alarm (lang)"],"Climb (long)":[null,"Klim (lang)"],"Persistent (long)":[null,"Nadrukkelijk (lang)"],"Pushover Echo (long)":[null,"Pushover Echo (lang)"],"Up Down (long)":[null,"Omhoog Omlaag (lang)"],"None (silent)":[null,"Geen (silent)"],"Device specific":[null,"Apparaatspecifiek"],"choose notification sound to use":[null,"kies het geluid voor meldingen"],"Pushover priority":[null,"Pushover prioriteit"],"Choose priority to use":[null,"Kies de te gebruiken prioriteit"],"Boxcar 2":[null,"Boxcar 2"],"Read your messages where and when you want them!":[null,"Lees je berichten waar en wanneer je ze wilt!"],"send Boxcar notifications?":[null,"Boxcar meldingen versturen?"],"Boxcar2 access token":[null,"Boxcar2 toegangstoken"],"access token for your Boxcar account.":[null,"toegangstoken voor uw Boxcar account."],"NMA":[null,"NMA"],"Notify My Android":[null,"Melden aan My Android"],"Notify My Android is a Prowl-like Android App and API that offers an easy way to send notifications from your application directly to your Android device.":[null,"Melden aan My Android is een Prowl-achtige Android App en API die een gemakkelijke manier aanbiedt om meldingen van uw aanvraag rechtstreeks naar uw Android-apparaat te sturen."],"send NMA notifications?":[null,"NMA meldingen versturen?"],"NMA API key":[null,"NMA API sleutel"],"(multiple keys must be separated by commas, up to a maximum of 5)":[null,"(meerdere sleutels moeten komma-gescheiden zijn, tot een max. van 5)"],"NMA priority":[null,"NMA prioriteit"],"priority of NMA messages from SickRage.":[null,"prioriteit van NMA berichten van SickRage."],"Pushalot":[null,"Pushalot"],"Pushalot is a platform for receiving custom push notifications to connected devices running Windows Phone or Windows 8.":[null,"Pushalot is een platform voor het ontvangen van aangepaste push-meldingen op aangesloten apparaten die draaien op Windows Phone en Windows 8."],"send Pushalot notifications ?":[null,"Pushalot meldingen versturen?"],"Pushalot authorization token":[null,"Pushalot autorisatietoken"],"authorization token of your Pushalot account.":[null,"autorisatietoken van uw Pushalot account."],"Pushbullet":[null,"Pushbullet"],"Pushbullet is a platform for receiving custom push notifications to connected devices running Android/iOS and desktop browsers such as Chrome, Firefox or Opera.":[null,"Pushbullet is een platform voor het ontvangen van berichten van aangesloten apparaten met Android/iOS en desktop browsers zoals Chrome, Firefox of Opera."],"send Pushbullet notifications?":[null,"Pushbullet meldingen versturen?"],"Pushbullet API key":[null,"Pushbullet API sleutel"],"API key of your Pushbullet account":[null,"API-sleutel van uw Pushbullet account"],"Pushbullet devices":[null,"Pushbullet apparaten"],"Update device list":[null,"Update apparatenlijst"],"Pushbullet channels":[null,"Pushbullet kanalen"],"Free Mobile":[null,"Free Mobile"],"Free Mobile is a famous French cellular network provider.<br> It provides to their customer a free SMS API.":[null,"Free Mobile is een bekende Franse mobiele netwerk provider. <br> Deze verstrekt een gratis SMS API aan hun klanten."],"send SMS notifications?":[null,"SMS meldingen versturen?"],"send a SMS when a download starts?":[null,"een SMS sturen wanneer een download begint?"],"send a SMS when a download finishes?":[null,"een SMS sturen wanneer een download eindigt?"],"send a SMS when subtitles are downloaded?":[null,"een SMS sturen bij gedownloade ondertiteling?"],"Free Mobile customer ID":[null,"Free Mobile klant ID"],"it's your Free Mobile customer ID (8 digits)":[null,"het is je Free Mobile klantnummer (8 cijfers)"],"Free Mobile API key":[null,"Free Mobile API key"],"find your API key in your customer portal.":[null,"vind je API key in je klanten portaal."],"Click below to test your settings.":[null,"Klik hieronder om uw instellingen te testen."],"Telegram":[null,"Telegram"],"Telegram is a cloud-based instant messaging service.":[null,"Telegram is een cloud-based instant messaging service."],"send Telegram notifications?":[null,"Telegram meldingen versturen?"],"send a message when a download starts?":[null,"een bericht sturen wanneer een download begint?"],"send a message when a download finishes?":[null,"stuur een bericht wanneer een download klaar is?"],"send a message when subtitles are downloaded?":[null,"stuur een bericht bij gedownloade ondertiteling?"],"User/group ID":[null,"Gebruiker/groep ID"],"contact @myidbot on Telegram to get an ID":[null,"neem contact op met @myidbot op Telegram om een ID te krijgen"],"Bot API token":[null,"Bot API token"],"contact @BotFather on Telegram to set up one":[null,"neem contact op met @BotFather op Telegram om er een in te stellen"],"Join":[null,"Join"],"Join all of your devices together!":[null,"Voeg al je apparaten samen!"],"send Join notifications?":[null,"Join meldingen versturen?"],"Device ID":[null,"Apparaat ID"],"per device specific id":[null,"per apparaat specifiek id"]," to create a Join API key":[null,""],"Twilio":[null,"Twilio"],"Twilio is a webservice API that allows you to communicate directly with a mobile number. This notifier will send a text directly to your mobile device.":[null,"Twilio is een webservice API die je toestaat om rechtstreeks te communiceren met een mobiel nummer. Deze melder stuurt rechtstreeks een sms naar je mobiele apparaat."],"should SickRage text your mobile device?":[null,"moet SickRage een sms naar je mobiele telefoon sturen?"],"Twilio Account SID":[null,"Twilio gebruikers-ID"],"account SID of your Twilio account.":[null,"account SID van je Twilio account."],"Twilio Auth Token":[null,"Twilio Controlegetal"],"Twilio Phone SID":[null,"Twilio Telefoon ID"],"phone SID that you would like to send the sms from":[null,"telefoon SID waar vandaan je de sms wilt sturen"],"Your phone number":[null,"Je telefoonnummer"],"phone number that will receive the sms. Please use the format +1-###-###-####":[null,"telefoonnummer dat de sms zal ontvangen. Gebruik aub het formaat +31-###-###-####"],"Twitter":[null,"Twitter"],"A social networking and microblogging service, enabling its users to send and read other users' messages called tweets.":[null,"Een social netwerk en microblogging dienst, dat zijn gebruikers berichten laat verzenden en lezen van andere gebruikers genaamd \"tweets\"."],"should SickRage post tweets on Twitter?":[null,"mag SickRage tweets op Twitter plaatsen?"],"you may want to use a secondary account.":[null,"u wilt wellicht een tweede account gebruiken."],"send direct message":[null,"verstuur direct bericht"],"send a notification via Direct Message, not via status update":[null,"stuur een bericht via Direct Message, niet via statusupdate"],"send DM to":[null,"verstuur DM naar"],"Twitter account to send Direct Messages to (must follow you)":[null,"Twitter-account om direct berichten naar te sturen (moet u volgen)"],"Step One":[null,"Stap Een"],"Request Authorization":[null,"Toegang verzoeken"],"Click the \"Request Authorization\" button.<br> This will open a new page containing an auth key.<br> <b>note:</b> if nothing happens check your popup blocker.":[null,"Klik op de \"Verzoek Autorisatie\" knop.<br> Dit zal een nieuwe pagina openen met daarin een autorisatiesleutel.<br> <b>opmerking:</b> als er niks gebeurt, controleer dan je popup blocker."],"Step Two":[null,"Stap Twee"],"Enter the key Twitter gave you below, and click \"Verify Key\".":[null,"Vul hieronder de sleutel in die je van Twitter gekregen hebt en klik op \"Verify Key\"."],"Trakt":[null,"Trakt"],"Trakt helps keep a record of what TV shows and movies you are watching. Based on your favorites, Trakt recommends additional shows and movies you'll enjoy!":[null,"Trakt helpt je bij te houden welke TV series en films je kijkt. Trakt raadt je, gebaseerd op je favorieten, aanvullende series en films aan die je leuk zult vinden!"],"send Trakt.tv notifications?":[null,"verstuur Trakt.tv berichten?"],"username of your Trakt account.":[null,"gebruikersnaam van je Trakt account."],"Trakt PIN":[null,"Trakt PIN"],"Get Trakt PIN":[null,"Trakt PIN verkrijgen"],"PIN code to authorize SickRage to access Trakt on your behalf.":[null,"PIN code om Sickrage toegang te verschaffen tot Trakt onder jouw account."],"API Timeout":[null,"API Timeout"],"seconds to wait for Trakt API to respond. (Use 0 to wait forever)":[null,"aantal seconden dat gewacht moet worden op de Trakt API om te reageren. (Gebruik 0 om voor altijd te wachten)"],"Default indexer":[null,"Standaard indexeerder"],"Sync libraries":[null,"Synchroniseer bibliotheken"],"sync your SickRage show library with your trakt show library.":[null,"synchroniseer uw SickRage seriebibliotheek met uw trakt seriebibliotheek."],"Remove Episodes From Collection":[null,"Verwijder afleveringen uit de collectie"],"remove an episode from your Trakt Collection if it is not in your SickRage Library.":[null,"verwijder een aflevering van je Trakt Collectie als deze zich niet in je SickRage Bibliotheek bevindt."],"Sync watchlist":[null,"Synchroniseer volglijst"],"sync your SickRage show watchlist with your trakt show watchlist (either Show and Episode).":[null,"synchroniseer uw SickRage serievolglijst met jouw trakt serievolglijst (zowel Show en aflevering)."],"episode will be added on watch list when wanted or snatched and will be removed when downloaded ":[null,"aflevering zal worden toegevoegd aan de volglijst als hij gezocht of opgepikt wordt en zal worden verwijderd wanneer de download voltooid is "],"Watchlist add method":[null,"Volglijst toevoegmethode"],"Skip All":[null,"Alles overslaan"],"Download Pilot Only":[null,"Download alleen de eerste aflevering"],"Get whole show":[null,"Haal de volledige serie op"],"method in which to download episodes for new shows.":[null,"methode om afleveringen te downloaden voor nieuw toegevoegde series."],"Remove episode":[null,"Verwijder aflevering"],"remove an episode from your watchlist after it is downloaded.":[null,"verwijder een aflevering van de volglijst nadat het is gedownload."],"Remove series":[null,"Verwijder Serie(s)"],"remove the whole series from your watchlist after any download.":[null,"verwijder de hele serie van de volglijst na elke download."],"Remove watched show":[null,"Verwijder gekeken series"],"remove the show from sickrage if it's ended and completely watched":[null,"verwijder de serie uit SickRage als het zowel afgelopen als gezien is"],"Start paused":[null,"Start gepauzeerd"],"shows grabbed from your trakt watchlist start paused.":[null,"series via Trakt verkregen krijgen de status gepauzeerd mee."],"Trakt blackList name":[null,"Naam van de Trakt blacklist"],"name (slug) of list on Trakt for blacklisting show on 'Add Trending Show' & 'Add Recommended Shows' pages":[null,"naam (slug) van de lijst op Trakt om een serie te blacklisten in 'Toevoegen Populaire Serie' & 'Toevoegen Aanbevolen Series' pagina's"],"Email":[null,"Email"],"Allows configuration of email notifications on a per show basis.":[null,"Laat configuratie van e-mail meldingen per show toe."],"send email notifications?":[null,"e-mail meldingen versturen?"],"SMTP host":[null,"SMTP-host"],"hostname of your SMTP email server.":[null,"hostnaam van uw SMTP emailserver."],"SMTP port":[null,"SMTP poort"],"port number used to connect to your SMTP host.":[null,"poort nummer om te verbinden met uw SMTP-host."],"SMTP from":[null,"SMTP van"],"sender email address, some hosts require a real address.":[null,"e-mailadres van afzender, voor sommige hosts is een echt adres vereist."],"Use TLS":[null,"Gebruik TLS"],"check to use TLS encryption.":[null,"selecteer om TLS-codering te gebruiken."],"SMTP user":[null,"SMTP gebruiker"],"(optional) your SMTP server username.":[null,"(optioneel) uw SMTP server gebruikersnaam."],"SMTP password":[null,"SMTP wachtwoord"],"(optional) your SMTP server password.":[null,"(optioneel) uw SMTP server wachtwoord."],"Global email list":[null,"Globale e-maillijst"],"email addresses listed here, separated by commas if applicable, will<br> receive notifications for <b>all</b> shows.":[null,"e-mailadressen die hier worden vermeld, gescheiden door komma's indien <br> van toepassing, zullen meldingen voor<b>alle</b> series ontvangen."],"(This field may be blank except when testing.)":[null,"(Dit veld mag leeg zijn tenzij er getest wordt.)"],"Email Subject":[null,"Emailonderwerp"],"use a custom subject for some privacy protection?":[null,"een aangepast onderwerp gebruiken voor privacybescherming?"],"(leave blank for the default SickRage subject)":[null,"(leeg laten voor het standaard onderwerp van SickRage)"],"configure per-show notifications here by entering email address(es), separated by commas,":[null,"configureer hier meldingen per serie door het invoeren van e-mailadres(sen), gescheiden door komma's,"],"after selecting a show in the drop-down box. Be sure to activate the 'Save for this show'":[null,"na het selecteren van een show in de drop-down box. Zorg ervoor dat u \"opslaan voor deze show\" activeert"],"button below after each entry.":[null,"knop hieronder na elke entree."],"Slack":[null,"Slack"],"Slack brings all your communication together in one place. It's real-time messaging, archiving and search for modern teams.":[null,"Slack centraliseert al je communicatie. Het is real-time messaging, archivering en zoekt naar moderne teams."],"should SickRage post messages on Slack?":[null,"mag SickRage berichten posten op Slack?"],"Slack Incoming Webhook":[null,"Slack binnenkomende Webhook"],"Discord":[null,"Discord"],"All-in-one voice and text chat for gamers that's free, secure, and works on both your desktop and phone.":[null,"Alles-in-één spraak en chat voor gamers dat gratis en veilig is, en werkt op zowel desktops als smartphones."],"Should SickRage post messages on Discord?":[null,"Moet SickRage berichten plaatsen op Discord?"],"Discord Incoming Webhook":[null,"Discord binnenkomende Webhook"],"Create webhook under channel settings.":[null,"Aanmaken webhook onder web-kanaal instellingen."],"Discord Bot Name":[null,"Discord Bot Naam"],"Blank will use webhook default Name.":[null,"Leeggelaten wordt de standaard webhook naam gebruikt."],"Discord Avatar URL":[null,"Discord Avatar URL"],"Blank will use webhook default Avatar.":[null,"Leeggelaten wordt de standaard webhook Avatar gebruikt."],"Discord TTS":[null,"Discord TTS"],"Send notifications using text-to-speech":[null,"Meldingen versturen mbv text-to-speech"],"Post-Processing":[null,"Nabewerking"],"Episode Naming":[null,"Aflevering benaming"],"Metadata":[null,"Metagegevens"],"Settings that dictate how SickRage should process completed downloads.":[null,"Instellingen die bepalen hoe SickRage voltooide downloads verwerkt."],"enable the automatic post processor to scan and process any files in your Post Processing Dir":[null,"schakel de automatische nabewerking in om alle bestanden te scannen en te verwerken in de Nabewerkingsmap"],"do not use if you use an external Post Processing script":[null,"niet gebruiken als je een extern Nabewerkingsscript gebruikt"],"Post Processing Dir":[null,"Nabewerkingsmap"],"the folder where your download client puts the completed TV downloads.":[null,"de map waar de download client de voltooide TV downloads zet."],"please use seperate downloading and completed folders in your download client if possible.":[null,"gebruik bij voorkeur aparte mappen voor complete en incomplete downloads."],"Processing Method":[null,"Verwerkingsmethode"],"what method should be used to put files into the library?":[null,"welke methode moet worden gebruikt om bestanden in de bibliotheek te zetten?"],"if you keep seeding torrents after they finish, please avoid the 'move' processing method to prevent errors.":[null,"als je torrents blijft seeden nadat ze klaar zijn, vermijd dan de \"verplaats\" functie om fouten te voorkomen."],"Auto Post-Processing Frequency":[null,"Nabewerkingscyclus"],"time in minutes to check for new files to auto post-process (min 10)":[null,"interval in minuten waarop gecontroleerd moet worden op nieuwe bestanden die in aanmerking komen voor nabewerking (min. 10 minuten)"],"Postpone post processing":[null,"Stel nabewerking uit"],"wait to process a folder if sync files are present.":[null,"wacht met het verwerken van een map als er sync bestanden zijn."],"Sync File Extensions":[null,"Sync bestandsextensies"],"comma seperated list of extensions or filename globs SickRage ignores when Post Processing":[null,"gebruik een komma tussen meerdere namen en extensies die Sickrage moet negeren tijdens de nabewerking"],"Rename Episodes":[null,"Hernoem Afleveringen"],"rename episode using the Episode Naming settings?":[null,"hernoem aflevering met de \"Aflevering benaming\" instellingen?"],"Create missing show directories":[null,"Maak ontbrekende Seriemappen"],"create missing show directories when they get deleted":[null,"bij ontbreken, maak de Seriemappen opnieuw aan"],"Add shows without directory":[null,"Toevoegen series zonder map"],"add shows without creating a directory (not recommended)":[null,"voeg series toe zonder een map te creëren (niet aanbevolen)"],"Move associated files":[null,"Verplaats gerelateerde bestanden"],"move associated (srt/srr/sfv/etc) files while post processing?":[null,"verplaatsen gerelateerde bestanden (srt/srr/sfv/etc) tijdens nabewerking?"],"Rename .nfo file":[null,"Hernoem .nfo bestanden"],"rename the original .nfo file to .nfo-orig to avoid conflicts?":[null,"hernoem het originele .nfo bestand naar .nfo-orig om conflicten te vermijden?"],"Associated file extensions":[null,"Gerelateerde bestandsextensies"],"comma separated list of associated file extensions SickRage should keep while post processing.":[null,"door komma's gescheiden lijst met bestandsextensies die SickRage tijdens het nabewerken moet bewaren."],"leaving it empty means no associated files will be post processed":[null,"leeg laten betekent dat gerelateerde bestanden niet worden nabewerkt"],"Delete non associated files":[null,"Verwijder niet-gerelateerde bestanden"],"delete non associated files while post processing?":[null,"verwijderen niet-gerelateerde bestanden tijdens nabewerking?"],"Change File Date":[null,"Bestandsdatum aanpassen"],"set last modified filedate to the date that the episode aired?":[null,"verander de bestandsdatum naar de datum waarop de aflevering is uitgezonden?"],"some systems may ignore this feature.":[null,"dit werkt niet op alle systemen."],"Timezone for File Date":[null,"Tijdzone voor bestandsdatum"],"local":[null,"lokaal"],"network":[null,"netwerk"],"what timezone should be used to change File Date?":[null,"welke tijdzone moet worden gebruikt voor het wijzigen van de bestandsdatum?"],"Unpack":[null,"Uitpakken"],"What to do with archived releases found in your <i>TV Download Dir</i>?":[null,"Wat te doen met gearchiveerde afleveringen in de <i>TV Download Map</i>?"],"Ignore (do not process contents)":[null,"Negeren (inhoud niet verwerken)"],"Unpack (process contents)":[null,"Uitpakken (verwerk inhoud)"],"Treat as video (process archive as-is)":[null,"Behandel als video (verwerk archieven als archief)"],"'Unpack' only works with RAR archives":[null,"'Uitpakken' werkt alleen met RAR bestanden"],"Windows":[null,"Windows"],"WinRar is required on windows":[null,"WinRar is vereist op windows"],"Unpack Directory":[null,"Uitpak-Map"],"Choose a path to unpack files, leave blank to unpack in download dir":[null,"Kies een pad voor uit te pakken bestanden, bij leeglaten wordt de download-map gebruikt"],"Unrar Location":[null,"Unrar bestandslocatie"],"add the path to unrar if it is not in the system path":[null,"Voeg het Unrar pad toe als het niet in het systeempad zit"],"Alternate Unrar Tool":[null,"Alternatief Unrar programma"],"add the path to an alternate unrar tool if it is not in the system path":[null,"voeg het pad naar een ander unrar programma toe als het niet in het systeempad zit"],"Delete RAR contents":[null,"Verwijder inhoud RAR archief"],"delete content of RAR files, even if Process Method not set to move?":[null,"verwijder het RAR bestand, ook als de verwerkingsmethode niet ingesteld staat op verplaatsen?"],"only working with RAR archive":[null,"werkt enkel voor RAR bestanden"],"Don't delete empty folders":[null,"Lege mappen niet verwijderen"],"leave empty folders when Post Processing?":[null,"lege mappen bij nabewerking niet verwijderen?"],"can be overridden using manual Post Processing":[null,"kan worden overschreven d.m.v. handmatige nabewerking"],"Follow symbolic-links":[null,"Gebruik symbolic-links"],"follow down symbolic links in download directory?":[null,"spring naar symbolic-links in download-map?"],"<b>EXPERTS ONLY.</b><br>Enable only if you know what <b>circular symbolic links</b> are,<br>and can <b>verify that you have none</b>.":[null,"<b>ALLEEN VOOR EXPERTS.</b><br>Alleen activeren bij goede kennis van <b>circular symbolic links</b>,<br>en is geverifieerd <b>dat deze niet aanwezig zijn</b>."],"Use icacls":[null,"icacls gebruiken"],"Windows only":[null,"alleen voor Windows"],"sets video permissions after using the move method in post processing":[null,"stelt de videorechten in na gebruik van de verplaatsfunctie tijdens nabewerking"],"Extra Scripts":[null,"Extra Scripts"],"see":[null,"zie"],"for script arguments description and usage.":[null,"voor script argumenten, beschrijving en gebruik."],"How SickRage will name and sort your episodes.":[null,"Hoe SickRage je afleveringen zal noemen en sorteren."],"Name Pattern":[null,"Naam Patroon"],"Toggle Naming Legend":[null,"Toon/verberg Legenda Benaming"],"don't forget to add quality pattern. Otherwise after post-processing the episode will have UNKNOWN quality":[null,"vergeet niet een kwaliteitspatroon toe te voegen. Anders zal de aflevering na nabewerking de kwaliteit ONBEKEND hebben"],"Meaning":[null,"Betekenis"],"Pattern":[null,"Patroon"],"Result":[null,"Resultaat"],"Use lower case if you want lower case names (eg. %sn, %e.n, %q_n etc)":[null,"Gebruik kleine letters als je kleine letters in je naam wilt (bijv. %sn, %e.n, %q_n etc)"],"Show Name":[null,"Naam Serie"],"Show.Name":[null,"Naam.Serie"],"Show_Name":[null,"Naam_Serie"],"Season Number":[null,"Seizoennummer"],"XEM Season Number":[null,"XEM Seizoennummer"],"Episode Number":[null,"Afleveringnummer"],"XEM Episode Number":[null,"XEM Afleveringnummer"],"Episode Name":[null,"Naam Aflevering"],"Episode.Name":[null,"Naam.Aflevering"],"Episode_Name":[null,"Naam_Aflevering"],"Air Date":[null,"Uitzenddatum"],"Post-Processing Date":[null,"Datum van verwerking"],"Quality":[null,"Kwaliteit"],"Scene Quality":[null,"Scènekwaliteit"],"Release Name":[null,"Versienaam"],"SickRage' is used in place of RLSGROUP if it could not be properly detected":[null,"SickRage wordt gebruikt in plaats van RLSGROUP als het niet goed kan worden gedetecteerd"],"Release Group":[null,"Versiegroep"],"If episode is proper/repack add 'proper' to name.":[null,"Als een aflevering proper/repack is, voeg dan 'proper' toe aan de naam."],"Release Type":[null,"Versietype"],"Multi-Episode Style":[null,"Meerdere-afleveringenstijl"],"Single-EP Sample":[null,"Enkele-aflevering - Voorbeeld"],"Multi-EP sample":[null,"Meerdere afleveringen - Voorbeeld"],"Strip Show Year":[null,"Verwijder Seriejaar"],"remove the TV show's year when renaming the file?":[null,"het jaartal van de TV serie verwijderen wanneer het bestand wordt hernoemd?"],"only applies to shows that have year inside parentheses":[null,"alleen van toepassing op shows met het jaartal tussen haakjes"],"Custom Air-By-Date":[null,"Aangepaste Uitzenddatum"],"name air-by-date shows differently than regular shows?":[null,"noem air-by-date series anders dan reguliere series?"],"Toggle ABD Naming Legend":[null,"Toon/verberg Legenda ABD benaming"],"Regular Air Date":[null,"Reguliere Uitzenddatum"],"Year":[null,"Jaar"],"Month":[null,"Maand"],"Day":[null,"Dag"],"Multi-EP style is ignored":[null,"Meerdere-afleveringenstijl wordt genegeerd"],"Custom Sports":[null,"Aangepaste Sporten"],"name sports shows differently than regular shows?":[null,"sportseries anders noemen dan reguliere series?"],"Toggle Sports Naming Legend":[null,"Toon/verberg Legenda Sport benaming"],"Sports Air Date":[null,"Sport uitzenddatum"],"Custom Anime":[null,"Aangepaste Anime"],"name anime shows differently than regular shows?":[null,"anime series anders noemen dan reguliere series?"],"Toggle Anime Naming Legend":[null,"Toon/verberg Anime Legenda benaming"],">XEM Season Number":[null,">XEM Seizoennummer"],"Single-EP Anime Sample":[null,"Enkele-aflevering Anime Voorbeeld"],"Multi-EP Anime sample":[null,"Meerdere-afleveringen Anime voorbeeld"],"Add Absolute Number":[null,"Voeg absolute nummer toe"],"add the absolute number to the season/episode format?":[null,"het absolute nummer toevoegen aan het seizoen/aflevering formaat?"],"only applies to anime. (eg. S15E45 - 310 vs S15E45)":[null,"alleen van toepassing voor anime. (bv. S15E45 - 310 vs S15E45)"],"Only Absolute Number":[null,"Enkel het absolute nummer"],"replace season/episode format with absolute number":[null,"vervang seizoen/aflevering formaat door het absolute nummer"],"only applies to anime.":[null,"alleen van toepassing voor anime."],"No Absolute Number":[null,"Geen absoluut nummer"],"don't include the absolute number":[null,"voeg het absolute nummer niet toe"],"The data associated to the data. These are files associated to a TV show in the form of images and text that, when supported, will enhance the viewing experience.":[null,"Gegevensbestanden die zijn gekoppeld aan de series in de vorm van afbeeldingen en tekst die de kijkervaring ten goede komen."],"Metadata Type":[null,"Soort metadata"],"toggle metadata options that you wish to be created":[null,"Aan/uitzetten metadata opties die je gemaakt wilt zien"],"multiple targets may be used":[null,"meerdere doelen mogen worden gebruikt"],"Select Metadata":[null,"Selecteer metadata"],"Provider Priorities":[null,"Zoekmachine Volgorde"],"Provider Options":[null,"Zoekmachine Instellingen"],"Configure Custom Newznab Providers":[null,"Configureer eigen Newznab Zoekmachines "],"Configure Custom Torrent Providers":[null,"Configureer eigen Torrent zoekmachines"],"Check off and drag the providers into the order you want them to be used.":[null,"Vink en sleep de zoekmachines in de volgorde waarin ze doorzocht moeten worden."],"At least one provider is required but two are recommended.":[null,"Er is minimaal 1 zoekmachine noodzakelijk maar 2 is aanbevolen."],"Torrent providers can be toggled in ":[null,"Torrent zoekmachines kunnen aan- of uitgezet worden in "],"Provider does not support backlog searches at this time.":[null,"Zoekmachine ondersteunt (nog) geen Werkvoorraad-zoekopdrachten."],"Provider is <b>NOT WORKING</b>.":[null,"Zoekmachine <b>WERKT NIET</b>."],"Configure individual provider settings here.":[null,"Configureer hier de individuele Zoekmachines."],"Check with provider's website on how to obtain an API key if needed.":[null,"Kijk op de website van de Zoekmachine hoe je een API sleutel kunt bemachtigen."],"Configure provider":[null,"Selecteer Zoekmachine"],"no providers available to configure.":[null,"geen aanbieders beschikbaar om te configureren."],"URL":[null,"URL"],"Enable daily searches":[null,"Dagelijkse zoekopdrachten inschakelen"],"enable provider to perform daily searches.":[null,"gebruik deze Zoekmachine voor dagelijkse zoekopdrachten."],"Enable backlog searches":[null,"Schakel Werkvoorraad-zoekopdrachten in"],"enable provider to perform backlog searches.":[null,"gebruik Zoekmachine voor Werkvoorraad-zoekopdrachten."],"Season search mode":[null,"Seizoen zoekmodus"],"when searching for complete seasons you can choose to have it look for season packs only, or choose to have it build a complete season from just single episodes.":[null,"bij het zoeken naar volledige seizoenen is het mogelijk om enkel op seizoen pakketten te zoeken of het seizoen te laten opbouwen uit alle afzonderlijke afleveringen."],"season packs only.":[null,"alleen complete seizoenen."],"episodes only.":[null,"alleen afleveringen."],"Enable fallback":[null,"Stel alternatief in"],"when searching for a complete season depending on search mode you may return no results, this helps by restarting the search using the opposite search mode.":[null,"als het zoeken naar een volledig seizoen geen resultaat geeft, kan het helpen om de andere zoekmethode te gebruiken."],"Custom URL":[null,"Aangepaste URL"],"the URL should include the protocol (and port if applicable). Examples: http://192.168.1.4/ or http://localhost:3000/":[null,"de URL zou het protocol (en poort indien van toepassing) moeten bevatten. Voorbeelden: http://192.168.1.4/ of http://localhost:3000/"],"Api key":[null,"API sleutel"],"Digest":[null,"Overzicht"],"Hash":[null,"Hash"],"Passkey":[null,"Sleutel"],"Cookies":[null,"Cookies"],"example: uid=1234;pass=567845439634987<br>note: uid and pass are not your username/password.<br>use DevTools or Firebug to get these values after logging in on your browser.":[null,"voorbeeld: uid=1234;pass=567845439634987<br>Opm: uid en pass zijn niet je username/password.<br>Gebruik DevTools of Firebug om deze gegevens te verkrijgen na het inloggen op je webbrowser."],"Pin":[null,"Pin"],"Seed ratio":[null,"Upload/download verhouding"],"stop transfer when ratio is reached<br>(-1 SickRage default to seed forever, or leave blank for downloader default)":[null,"upload stoppen zodra de rato bereikt is<br>(-1 om oneindig te blijven uploaden of laat leeg voor de standaard instelling van het download programma)"],"Minimum seeders":[null,"Minimum aantal seeders"],"Minimum leechers":[null,"Minimum aantal leechers"],"Confirmed download":[null,"Download bevestigd"],"only download torrents from trusted or verified uploaders ?":[null,"alleen torrents downloaden van vertrouwde of geverifieerde uploaders?"],"Ranked torrents":[null,"Beoordeelde torrents"],"only download ranked torrents (trusted releases)":[null,"alleen beoordeelde torrents downloaden (vertrouwde versies)"],"English torrents":[null,"Engelse torrents"],"only download english torrents, or torrents containing english subtitles":[null,"download enkel engelse torrents, of torrents met engelse ondertiteling"],"For Spanish torrents":[null,"Voor Spaanse torrents"],"ONLY search on this provider if show info is defined as \"Spanish\" (avoid provider's use for VOS shows)":[null,"ALLEEN zoeken bij deze leverancier als de show informatie is gedefinieerd als \"Spanish\" (voorkom leveranciers gebruik voor VOS shows)"],"Sorting results by":[null,"Sorteer resultaten op"],"Freeleech":[null,"Freeleech"],"only download <b>\"FreeLeech\"</b> torrents.":[null,"alleen <b>\"FreeLeech\"</b>-torrents downloaden."],"Category":[null,"Categorie"],"select torrent with Italian subtitle":[null,"selecteer torrent met Italiaanse ondertiteling"],"Configure Custom<br>Newznab Providers":[null,"Configureer de <br>Newznab Provider"],"Add and setup or remove custom Newznab providers.":[null,"Toevoegen, instellen en verwijderen van eigen Newznab zoekmachines."],"Select provider":[null,"Selecteer aanbieder"],"-- add new provider --":[null,"-- nieuwe leverancier toevoegen --"],"Provider name":[null,"Aanbiedersnaam"],"Site URL":[null,"Site URL"],"Newznab search categories":[null,"Newznab zoek categorieën"],"select your Newznab categories on the left, and click the \"update categories\" button to use them for searching.) <b>don't forget to to save the form!":[null,"selecteer de Newznab categorieën links en klik de \"update categorieën\" knop om ze te gebruiken voor het zoeken.) <b>vergeet niet de veranderingen op te slaan!"],"Update Categories":[null,"Update Categorieën"],"Add":[null,"Voeg toe"],"Delete":[null,"Wissen"],"Add and setup or remove custom RSS providers.":[null,"Toevoegen en instellen of verwijderen aangepaste RSS leveranciers."],"RSS URL":[null,"RSS URL"],"Search element":[null,"Zoek element"],"eg: title":[null,"bijv: titel"],"Episode Search":[null,"Aflevering Zoeken"],"NZB Search":[null,"NZB zoekopdracht"],"Torrent Search":[null,"Torrent zoekopdracht"],"How to manage searching with":[null,"Hoe om te gaan met zoeken met"],"Randomize Providers":[null,"Willekeurige zoekmachines"],"randomize the provider search order instead of going in order of placement":[null,"Willekeurige volgorde zoekmachines i.p.v. boven naar beneden"],"Download propers":[null,"Download propers"],"replace original download with \"Proper\" or \"Repack\" if nuked":[null,"vervang originele download met \"Proper\" of \"Repack\" als deze corrupt is"],"Check propers every":[null,"Controleer propers elke"],"24 hours":[null,"24 uur"],"4 hours":[null,"4 uur"],"90 mins":[null,"90 minuten"],"45 mins":[null,"45 minuten"],"15 mins":[null,"15 minuten"],"Backlog search day(s)":[null,"Werkvoorraad-zoekopdracht dag(en)"],"number of day(s) that the \"Forced Backlog Search\" will cover (e.g. 7 Days)":[null,"aantal dag(en) dat de \"Geforceerd Werkvoorraad Zoeken\" moet omvatten (bijv 7 dagen)"],"Backlog search frequency":[null,"Werkvoorraad zoekfrequentie"],"time in minutes between searches (min.":[null,"tijd in minuten tussen zoekopdrachten (min."],"Daily search frequency":[null,"Dagelijkse zoekfrequentie"],"Usenet retention":[null,"Usenet retentie"],"age limit in days for usenet articles to be used (e.g. 500)":[null,"dagen. Bestaanslimiet voor Usenet bestanden (bv 500)"],"Ignore words":[null,"Negeer woorden"],"results with one or more word from this list will be ignored<br>separate words with a comma, e.g. \"word1,word2,word3\"":[null,"resultaten met één of meer woorden uit deze lijst worden genegeerd<br>Zorg voor een komma tussen de woorden, bijv. \"woord1,woord2,woord3\""],"Require words":[null,"Vereiste woorden"],"results with no word from this list will be ignored<br>separate words with a comma, e.g. \"word1,word2,word3\"":[null,"resultaten zonder één woord van deze lijst wordt genegeerd.<br>Zorg voor een komma tussen de woorden, bijv. \"woord1,woord2,woord3\""],"Trackers list":[null,"Trackerlijst"],"trackers that will be added to magnets without trackers<br>separate trackers with a comma, e.g. \"tracker1,tracker2,tracker3\"":[null,"trackers die worden toegevoegd aan tracker-loze magnet-torrents.<br>Trackers scheiden met een komma, bijv.: \"tracker1,tracker2,tracker3\""],"Ignore language names in subbed results":[null,"Negeer taalnamen bij ondertitelde afleveringen"],"ignore subbed releases based on language names <br>\n Example: \"dk\" will ignore words: dksub, dksubs, dksubbed, dksubed <br>\n separate languages with a comma, e.g. \"lang1,lang2,lang3":[null,"negeer ondertitelde uitgaves gebaseerd op taalnamen <br>\n Bijv.:\"dk\" zal deze woorden negeren: dksub, dksubs, dksubbed, dksubed <br>\n talen scheiden met een komma, bijv. \"taal1,taal2,taal3\""],"Allow high priority":[null,"Hoge prioriteit"],"set downloads of recently aired episodes to high priority":[null,"Recent uitgezonden afleveringen worden met hoge prioriteit gedownload"],"Use Failed Downloads":[null,"Gebruik Mislukte Downloads"],"use Failed Download Handling?":[null,"Mislukte Download Afhandeling gebruiken?"],"will only work with snatched/downloaded episodes after enabling this":[null,"werkt alleen met opgepikte/gedownloade afleveringen wanneer aangevinkt"],"Delete Failed":[null,"Mislukte verwijderen"],"delete files left over from a failed download?":[null,"verwijder alle bestanden van een mislukte download?"],"this only works if Use Failed Downloads is enabled.":[null,"dit werkt alleen als Gebruik Mislukte Downloads aan staat."],"How to handle NZB search results.":[null,"Hoe om te gaan met NZB zoekresultaten."],"Search NZBs":[null,"Zoek NZBs"],"enable NZB search providers":[null,"NZB zoekmachines inschakelen"],"Send .nzb files to":[null,"Stuur nzbs naar"],"SABnzbd server URL":[null,"Adres SASnzbd server"],"URL to your SABnzbd server (e.g. http://localhost:8080/)":[null,"Het adres van de SABnzbd server (bijv. http://localhost:8080/)"],"SABnzbd username":[null,"SABnzbd gebruikersnaam"],"(blank for none)":[null,"(leeg voor geen)"],"SABnzbd password":[null,"SABnzbd wachtwoord"],"SABnzbd API key":[null,"SABnzbd API-sleutel"],"locate at... SABnzbd Config -> General -> API Key":[null,"te vinden in... SABnzbd Config -> General -> API Key"],"Use SABnzbd category":[null,"Gebruik SABnzbd categorie"],"add downloads to this category (e.g. TV)":[null,"voeg downloads toe aan deze categorie (bijv. TV)"],"Use SABnzbd category (backlog episodes)":[null,"Gebruik SABnzbd categorie (afleveringen werkvoorraad)"],"add downloads of old episodes to this category (e.g. TV)":[null,"voeg downloads van oude afleveringen toe aan deze categorie (bijv. TV)"],"Use SABnzbd category for anime":[null,"Gebruik de SABnzbd categorie voor anime"],"add anime downloads to this category (e.g. anime)":[null,"voeg anime downloads toe aan deze categorie (bijv. anime)"],"Use SABnzbd category for anime (backlog episodes)":[null,"Gebruik SABnzbd categorie voor anime (afleveringen werkvoorraad)"],"add anime downloads of old episodes to this category (e.g. anime)":[null,"voeg oude anime downloads toe aan deze categorie (bijv. anime)"],"Use forced priority":[null,"Forceer prioriteit"],"enable to change priority from HIGH to FORCED":[null,"prioriteit wijzigen van HIGH naar FORCED inschakelen"],"Black hole folder location":[null,"Locatie van de black hole map"],"<b>.nzb</b> files are stored at this location for external software to find and use":[null,"<b>.nzb</b> bestanden worden hier opgeslagen om te worden gebruikt door externe programma's"],"Connect using HTTPS":[null,"Verbinden met HTTPS"],"enable Secure control in NZBGet and set the correct Secure Port here":[null,"schakel Secure Control in NZBGet in en geef hier de correcte poort aan"],"NZBget host:port":[null,"NZBget host: poort"],"(e.g. localhost:6789)":[null,"(b.v. localhost:6789)"],"NZBget RPC host name and port number (not NZBgetweb!)":[null,"NZBGet RPC host naam en poort nummer (geen NZBgetweb!)"],"NZBget username":[null,"NZBget gebruikersnaam"],"locate in nzbget.conf (default:nzbget)":[null,"te vinden in nzbget.conf (standaard: nzbget)"],"NZBget password":[null,"NZBget wachtwoord"],"locate in nzbget.conf (default:tegbzn6789)":[null,"te vinden in nzbget.conf (standaard: tegbzn6789)"],"Use NZBget category":[null,"Gebruik NZBget categorie"],"send downloads marked this category (e.g. TV)":[null,"voeg downloads toe gemarkeerd als deze categorie (bijv. TV)"],"Use NZBget category (backlog episodes)":[null,"Gebruik deze NZBget categorie (afleveringen werkvoorraad)"],"send downloads of old episodes marked this category (e.g. TV)":[null,"lever downloads van oude afleveringen aan met deze categorie (bijv. TV)"],"Use NZBget category for anime":[null,"Gebruik deze NZBget categorie voor anime"],"send anime downloads marked this category (e.g. anime)":[null,"lever anime downloads van oude afleveringen aan met deze categorie (bijv. anime)"],"Use NZBget category for anime (backlog episodes)":[null,"Gebruik deze NZBget categorie voor anime (afleveringen werkvoorraad)"],"send anime downloads of old episodes marked this category (e.g. anime)":[null,"lever anime downloads van oude afleveringen aan met deze categorie (bijv. anime)"],"NZBget priority":[null,"NZBget prioriteit"],"Very low":[null,"Heel laag"],"Low":[null,"Laag"],"Very high":[null,"Heel hoog"],"Force":[null,"Forceer"],"priority for daily snatches (no backlog)":[null,"prioriteit voor dagelijkse downloads (geen werkvoorraad)"],"Torrent host:port":[null,"Torrent host: poort"],"URL to your Synology DSM (e.g. http://localhost:5000/)":[null,"De URL van de Synology DSM (bijv. http://localhost:5000/)"],"Client username":[null,"Gebruikersnaam van client"],"Client password":[null,"Client wachtwoord"],"Downloaded files location":[null,"Locatie van de gedownloade bestanden"],"where Synology Download Station will save downloaded files (blank for client default)":[null,"waar Synology Download Station gedownloade bestanden (leeg voor de standaardwaarde van de client) opslaat"],"the destination has to be a shared folder for Synology DS":[null,"de bestemming moet een gedeelde map zijn voor de Synology DS"],"Click below to test":[null,"Klik hieronder om te testen"],"How to handle Torrent search results.":[null,"Hoe om te gaan met Torrent zoekresultaten."],"Search torrents":[null,"Zoek torrents"],"enable torrent search providers":[null,"schakel torrent Zoekmachines in"],"Send .torrent files to":[null,"Stuur .torrent bestanden naar"],"<b>.torrent</b> files are stored at this location for external software to find and use":[null,"<b>.torrent</b> bestanden worden opgeslagen op deze locatie om te kunnen worden gebruikt door externe programma's"],"URL to your torrent client (e.g. http://localhost:8000/)":[null,"Netwerkadres naar uw torrent-client (bv http://localhost:8000 /)"],"Torrent RPC URL":[null,"Torrent RPC URL"],"the path without leading and trailing slashes (e.g. transmission)":[null,"Het pad zonder / of \\ (bijv. transmission)"],"Http Authentication":[null,"HTTP-verificatie"],"Verify certificate":[null,"Certificaat verifiëren"],"disable if you get \"Deluge: Authentication Error\" in your log":[null,"schakel dit uit wanneer \"Deluge: Authentication Error\" in het foutenlogboek voorkomt"],"verify SSL certificates for HTTPS requests":[null,"controleer de SSL certificaten bij HTTPS verzoeken"],"Add label to torrent":[null,"Label toevoegen aan torrent"],"(blank spaces are not allowed)":[null,"(spaties zijn niet toegestaan)"],"label plugin must be enabled in Deluge clients":[null,"de label plugin moet worden ingeschakeld in de Deluge applicatie"],"for QBitTorrent 3.3.1 and up":[null,"voor QBitTorrent 3.3.1 en hoger"],"Add label to torrent for anime":[null,"Label toevoegen aan torrent voor anime"],"for QBitTorrent 3.3.1 and up ":[null,"voor QBitTorrent 3.3.1 en hoger "],"where <span id=\"torrent_client\">the torrent client</span> will save downloaded files (blank for client default)":[null,"waar <span id=\"torrent_client\"> de torrent client</span> de gedownloade bestanden opslaat (laat leeg voor de client standaard)"],"the destination has to be a shared folder for Synology DS</span>":[null,"de bestemming moet een gedeelde map zijn voor de Synology DS</span>"],"Minimum seeding time":[null,"Minimum seeding tijd"],"time in hours":[null,"tijd in uren"],"(default:'0' passes blank to client and '-1' passes nothing)":[null,"(standaard:'0' geeft leeg door naar de client en '-1' geeft niks door)"],"Start torrent paused":[null,"Start torrent gepauzeerd"],"add .torrent to client but do <b style=\"font-weight:900\">not</b> start downloading":[null,"voeg .torrent toe aan client maar start nog <b style=\"font-weight:900\">niet</b> het downloaden"],"Allow high bandwidth":[null,"Hoge bandbreedte toestaan"],"use high bandwidth allocation if priority is high":[null,"zet bandbreedtetoewijzing op \"high\" als de prioriteit op hoog staat"],"Test Connection":[null,"Test verbinding"],"Windows Shares":[null,""],"Defines your existing windows shares so that we can add them to the browse dialog":[null,""],"Share #{number}":[null,""],"Share label":[null,""],"Hostname or IP":[null,""],"Share path":[null,""],"Subtitles Search":[null,"Ondertiteling Zoeken"],"Subtitles Plugin":[null,"Ondertiteling zoekmachines"],"Plugin Settings":[null,"Zoekmachine instellingen"],"Settings that dictate how SickRage handles subtitles search results.":[null,"Instellingen hoe SickRage met ondertiteling zoekresultaten omgaat."],"Search Subtitles":[null,"Zoek ondertiteling"],"Subtitle Languages":[null,"Ondertitelingstalen"],"Subtitle Directory":[null,"Ondertitelingsmap"],"the directory where SickRage should store your <i>Subtitles</i> files.":[null,"De map waar SickRage je <i>Ondertiteling</i> bestanden opslaat."],"leave empty if you want store subtitle in episode path.":[null,"laat dit leeg als de bestanden bij de afleveringen opgeslagen moeten worden."],"Subtitle Find Frequency":[null,"Ondertiteling Zoekfrequentie"],"time in hours between scans (default: 1)":[null,"tijd in uren tussen scans (standaard: 1)"],"Include Specials":[null,"Inclusief Specials"],"include the show's specials when searching for subtitles?":[null,"ook naar ondertiteling voor speciale afleveringen zoeken?"],"Perfect matches":[null,"Perfecte matches"],"only download subtitles that match: release group, video codec, audio codec and resolution":[null,"alleen ondertiteling downloaden die overeen komen met: versiegroep, video codec, audio codec en resolutie"],"if disabled you may get out of sync subtitles":[null,"Je kunt ongesynchroniseerde ondertiteling krijgen als je dit uitschakelt"],"Subtitles History":[null,"Ondertitelinggeschiedenis"],"log downloaded Subtitle on History page?":[null,"sla gedownloade ondertiteling op in Geschiedenis pagina?"],"Subtitles Multi-Language":[null,"Meertalige Ondertiteling"],"append language codes to subtitle filenames?":[null,"voeg taalcodes toe in bestandsnamen van ondertiteling?"],"this option is required if you use multiple subtitle languages":[null,"deze optie is vereist als u meerdere ondertitelingstalen gebruikt"],"Delete unwanted subtitles":[null,"Verwijder ondertiteling"],"enable to delete unwanted subtitle languages bundled with release":[null,"vink dit aan om ongewenste talen bij ondertiteling-downloads te verwijderen"],"Embedded Subtitles":[null,"Ingebedde ondertiteling"],"ignore subtitles embedded inside video file?":[null,"ingebedde ondertiteling in videobestand negeren?"],"this will ignore <u>all</u> embedded subtitles for every video file!":[null,"dit zal <u>alle</u> ingebedde ondertiteling in elk video bestand negeren!"],"Hearing Impaired Subtitles":[null,"Ondertiteling voor doven en slechthorenden"],"download hearing impaired style subtitles?":[null,"download ondertiteling voor doven en slechthorenden?"],"See":[null,"Zie"],"for a script arguments description.":[null,"voor een beschrijving van script commando's."],"Additional scripts separated by <b>|</b>.":[null,"Extra scripts scheiden met een <b>|</b>."],"Scripts are called after each episode has searched and downloaded subtitles.":[null,"Scripts worden gestart nadat voor elke gedownloade aflevering een ondertiteling is gevonden en gedownload."],"For any scripted languages, include the interpreter executable before the script. See the following example":[null,"Voor elk script taal, plaats de interpreter executable nog voor het script. Zie het volgende voorbeeld"],"For Windows:":[null,"Voor Windows:"],"For Linux / OS X:":[null,"Voor Linux / OS X:"],"Subtitle Providers":[null,"Ondertiteling Zoekmachines"],"Check off and drag the plugins into the order you want them to be used.":[null,"Selecteer en sleep de plugins in de volgorde waarin ze doorzocht moeten worden."],"At least one plugin is required.":[null,"Ten minste één zoekmachine is vereist."]," Web-scraping plugin":[null," Web-scraping plugin"],"Provider Settings":[null,"Zoekmachine Instellingen"],"Set user and password for each provider":[null,"Stel evt. de gebruikersnaam en wachtwoord in voor Zoekmachines"],"User Name":[null,"Gebruikersnaam"],"Change Show":[null,"Andere Serie"],"Prev Show":[null,"Vorige Serie"],"Next Show":[null,"Volgende Serie"],"Jump to Season":[null,"Ga naar seizoen"],"Specials":[null,"Specials"],"Poster for":[null,"Poster voor"],"Stars":[null,"Sterren"],"minutes":[null,"minuten"],"View other popular {genre} shows on trakt.tv.":[null,"Toon andere populaire {genre} series op trakt.tv."],"View other popular {imdbgenre} shows on IMDB.":[null,"Bekijk andere populaire {imdbgenre} series op IMDB."],"Allowed":[null,"Toegestaan"],"Preferred":[null,"Voorkeur"],"Originally Airs":[null,"Uitzendtijd"],"Show Status":[null,"Seriestatus"],"Default EP Status":[null,"Standaard Afl. Status"],"Location":[null,"Locatie"],"Missing":[null,"Ontbreekt"],"Scene Name":[null,"Alternatieve Naam"],"Required Words":[null,"Vereiste woorden"],"Ignored Words":[null,"Genegeerde woorden"],"Size":[null,"Grootte"],"Info Language":[null,"Info taal"],"Subtitles SR Metadata":[null,"Ondertiteling SR Metadata"],"Season Folders":[null,"Seizoenmappen"],"Paused":[null,"Pauzeren"],"Air-by-Date":[null,"Nummer-op-datum"],"Sports":[null,"Sport"],"DVD Order":[null,"DVD volgorde"],"Scene Numbering":[null,"Alt. nummering"],"Select Filtered Episodes":[null,"Selecteer gefilterde afleveringen"],"Clear All":[null,"Alles wissen"],"Change selected episodes to":[null,"Wijzig geselecteerde afleveringen in"],"Select Columns":[null,"Selecteer kolommen"],"Hide Episodes":[null,"Afleveringen verbergen"],"Show Episodes":[null,"Toon afleveringen"],"NFO":[null,"NFO"],"TBN":[null,"TBN"],"Episode":[null,"Aflevering"],"Absolute":[null,"Absoluut"],"Scene":[null,"Scène"],"Scene Absolute":[null,"Scène Absoluut"],"File Name":[null,"Bestandsnaam"],"Airdate":[null,"Uitzending op"],"Download":[null,"Download"],"Change the value here if scene numbering differs from the indexer episode numbering":[null,"Wijzig de waarde hier als scène nummering afwijkt van de nummering van de aflevering van de indexeerder"],"Change the value here if scene absolute numbering differs from the indexer absolute numbering":[null,"Wijzig de waarde hier als scène absolute nummering van de indexeerder absolute nummering verschilt"],"Manual Search":[null,"Handmatig zoeken"],"Do you want to mark this episode as failed?":[null,"Wil je de aflevering als mislukt markeren?"],"The episode release name will be added to the failed history, preventing it to be downloaded again.":[null,"De aflevering uitgiftenaam zal worden toegevoegd aan de mislukte geschiedenis, om te voorkomen dat deze worden opnieuw gedownload."],"Do you want to include the current episode quality in the search?":[null,"Wilt u de huidige kwaliteit van de aflevering in de zoekopdracht opnemen?"],"Choosing No will ignore any releases with the same episode quality as the one currently downloaded/snatched.":[null,"\"Nee\" kiezen negeert alle afleveringversies met dezelfde kwaliteit als degene die momenteel is gedownload/opgepikt."],"Download subtitle":[null,"Ondertiteling downloaden"],"Do you want to re-download the subtitle for this language?":[null,"Wilt u de ondertiteling voor deze taal opnieuw downloaden?"],"It will overwrite your current subtitle":[null,"Hiermee wordt je huidige ondertiteling overschreven"],"Format":[null,"Nummering"],"Advanced":[null,"Geavanceerd"],"Main Settings":[null,"Hoofdinstellingen"],"Show Location":[null,"Serie locatie"],"Preferred Quality":[null,"Voorkeurskwaliteit"],"Default Episode Status":[null,"Standaard afleveringsstatus"],"this will set the status for future episodes.":[null,"dit stelt de status van toekomstige afleveringen in."],"this only applies to episode filenames and the contents of metadata files.":[null,"dit geldt alleen voor bestandsnamen van afleveringen en de inhoud van metadata bestanden."],"search for subtitles":[null,"zoeken naar ondertiteling"],"Use SR Metdata":[null,"Gebruik SR Metadata"],"use SickRage metadata when searching for subtitle, this will override the autodiscovered metadata":[null,"bij gebruik van SickRage medata bij het zoeken naar ondertiteling wordt de automatisch gevonden metadata overschreven"],"pause this show (SickRage will not download episodes)":[null,"Pauzeer deze serie (SickRage zal afleveringen niet downloaden)"],"Format Settings":[null,"Nummering van afleveringen"],"Air by date":[null,"Op Datum"],"check if the show is released as Show.03.02.2010 rather than Show.S02E03.":[null,"Afleveringen worden genummerd met datum <b>Serie.03.02.2010</b> ipv <b>Serie.S02E03</b>."],"in case of an air date conflict between regular and special episodes, the later will be ignored.":[null,"in het geval van een uitzenddatumconflict tussen gewone en speciale afleveringen, wordt de laatstgenoemde genegeerd."],"check if the show is Anime and episodes are released as Show.265 rather than Show.S02E03":[null,"De Serie wordt uitgezonden als Anime. Afleveringen worden genummerd als <b>Serie.265</b> ipv <b>Serie.S02E03</b>"],"check if the show is a sporting or MMA event released as Show.03.02.2010 rather than Show.S02E03":[null,"De Serie wordt uitgezonden als Sport. Afleveringen worden genummerd als <b>Serie.03.02.2010</b> ipv <b>Serie.S02E03</b>"],"Season folders":[null,"Seizoen- mappen"],"group episodes by season folder (uncheck to store in a single folder)":[null,"afleveringen in seizoenmappen plaatsen (uitvinken om alles in één map op te slaan)"],"search by scene numbering (uncheck to search by indexer numbering)":[null,"zoeken met alternatieve afleveringsnummers (maakt gebruik van thexem. de)"],"use the DVD order instead of the air order":[null,"de volgorde van de DVD gebruiken in plaats van de volgorde van uitzending"],"a \"Force Full Update\" is necessary, and if you have existing episodes you need to sort them manually.":[null,"een \"Forceer Volledige Update\" is noodzakelijk, en als u bestaande afleveringen hebt moet u ze handmatig sorteren."],"comma-separated <i>e.g. \"word1,word2,word3</i>\"":[null,"komma-gescheiden <i>bijv. \"woord1,woord2,woord3\"</i>"],"search results with one or more words from this list will be ignored.":[null,"zoekresultaten met één of meer woorden van deze lijst worden genegeerd."],"e.g. \"word1,word2,word3\"":[null,"bijv. \"woord1,woord2,woord3\""],"search results with no words from this list will be ignored.":[null,"zoekresultaten zonder woorden van deze lijst worden genegeerd."],"Scene Exception":[null,"Alternatieve Serienamen"],"this will affect episode search on NZB and torrent providers.":[null,"dit heeft effect op afleveringen zoeken op NZB en torrent providers."],"this list appends to the original show name.":[null,"deze lijst wordt aan de originele serienaam toegevoegd."],"WARNING logs":[null,"Waarschuwingen"],"ERROR logs":[null,"Fouten"],"There are no events to display.":[null,"Er zijn geen gebeurtenissen om weer te geven."],"Limit":[null,"Limiet"],"Layout":[null,"Weergave"],"HistoryLayout":[null,"GeschiedenisLayout"],"Compact":[null,"Compact"],"Detailed":[null,"Uitgebreid"],"Time":[null,"Tijd"],"Provider":[null,"Provider"],"Missing Provider":[null,"Provider ontbreekt"],"missing provider":[null,"ontbrekende provider"],"Directory":[null,"Map"],"Show Name (tvshow.nfo)":[null,"Serienaam (uit tvshow.nfo)"],"Indexer":[null,"Indexeerder"],"Enter the folder containing the episode":[null,"Selecteer de map met de afleveringen"],"Process Method to be used":[null,"Verwerkingsmethode"],"Copy":[null,"Kopieer"],"Move":[null,"Verplaatsen"],"Hard Link":[null,"Hard Link"],"Symbolic Link":[null,"Symbolic Link"],"Symbolic Link Reversed":[null,"Symbolic Link Reversed"],"Force already Post Processed Dir/Files":[null,"Forceer reeds verwerkte downloads opnieuw"],"Mark Dir/Files as priority download":[null,"Markeer Item als prioriteit download"],"(Check it to replace the file even if it exists at higher quality)":[null,"(Vervangt het bestand zelfs als het al bestaat in hogere kwaliteit)"],"Delete files and folders":[null,"Bestanden en mappen verwijderen"],"(Check it to delete files and folders like auto processing)":[null,"(Verwijdert de bestanden en mappen na de verwerking)"],"Don't use processing queue":[null,"Verwerkingswachtrij niet gebruiken"],"(If checked this will return the result of the process here, but may be slow!)":[null,"(aangevinkt wordt het resultaat hier weergegeven. Kan traag zijn!)"],"Mark download as failed":[null,"Markeer download als mislukt"],"Process":[null,"Verwerken"],"Download subtitles for this show?":[null,"Download de ondertiteling voor deze serie?"],"use SickRage metadata when searching for subtitle, <br />this will override the autodiscovered metadata":[null,"Bij gebruik van SickRage metadata bij het zoeken naar ondertiteling, <br />overschrijft dit de automatisch gevonden metadata"],"Status for previously aired episodes":[null,"Status voor eerder uitgezonden afleveringen"],"Status for all future episodes":[null,"Status voor alle toekomstige afleveringen"],"Group episodes by season folder?":[null,"Afleveringen groeperen op seizoenfolder?"],"Is this show an Anime?":[null,"Is deze serie een anime?"],"Is this show scene numbered?":[null,"Is deze serie genummerd per scène?"],"Save Defaults":[null,"Als standaard opslaan"],"Use current values as the defaults":[null,"Huidige waarden als standaard gebruiken"],"<p>Select your preferred fansub groups from the <b>Available Groups</b> and add them to the <b>Whitelist</b>. Add groups to the <b>Blacklist</b> to ignore them.</p>\n <p>The <b>Whitelist</b> is checked <i>before</i> the <b>Blacklist</b>.</p>\n <p>Groups are shown as <b>Name</b> | <b>Rating</b> | <b>Number of subbed episodes</b>.</p>\n <p>You may also add any fansub group not listed to either list manually.</p>\n <p>When doing this please note that you can only use groups listed on anidb for this anime.\n <br>If a group is not listed on anidb but subbed this anime, please correct anidb's data.</p>":[null,"<p>Uw voorkeur fansub groepen selecteren uit de <b>Beschikbare groepen</b> en voeg ze toe aan de <b>Whitelist</b>. Groepen toevoegen aan <b>Blacklist</b> om ze te negeren.</p> \n <p>de <b>Whitelist</b> is gecontroleerd <i>voordat</i> de <b>Blacklist</b>.</p> \n <p>groepen worden weergegeven als <b>naam</b> | <b>Rating</b> | <b>Aantal subbed afleveringen</b>.</p> \n <p>u kan ook elke fansub group niet genoteerd aan beide lijst handmatig toevoegen.</p> \n <p>bij het doen van deze Let erop dat u alleen kunt gebruiken groepen vermeld op anidb voor dit anime.\n <br>als een groep wordt niet vermeld op anidb maar deze anime subbed, corrigeer anidb van gegevens.</p>"],"Whitelist":[null,"Whitelist"],"Available Groups":[null,"Beschikbare groepen"],"Add to Whitelist":[null,"Voeg toe aan Whitelist"],"Add to Blacklist":[null,"Voeg toe aan Blacklist"],"Blacklist":[null,"Blacklist"],"Custom Group":[null,"Aangepaste groep"],"Allowed Quality:":[null,"Toegestane kwaliteit:"],"Preferred Quality:":[null,"Voorkeurskwaliteit:"],"Filter Show Name":[null,"Filter de naam van de show"],"Root":[null,"Root"],"All":[null,"Alle"],"Clear Filter(s)":[null,"Filter(s) wissen"],"Poster":[null,"Poster"],"Small Poster":[null,"Kleine Poster"],"Banner":[null,"Spandoek"],"Simple":[null,"Eenvoudig"],"Next Episode":[null,"Volgende aflevering"],"Progress":[null,"Voortgang"],"Direction":[null,"Richting"],"Ascending":[null,"Oplopend"],"Descending":[null,"Aflopend"],"Poster Size":[null,"Posterformaat"],"Continuing":[null,"Loopt"],"Ended":[null,"Beëindigd"],"Total":[null,"Totaal"],"Invalid date":[null,"Ongeldige datum"],"No Network":[null,"Geen netwerk"],"Next Ep":[null,"Volgende Afl."],"Prev Ep":[null,"Vorige Afl."],"Show":[null,"Serie"],"Downloads":[null,"Downloads"],"Active":[null,"Actief"],"loading":[null,"laden"],"Loading...":[null,"Laden..."],"<p><b><u>Preferred</u></b> qualities will replace those in <b><u>allowed</u></b>, even if they are lower.</p>":[null,"<p><b><u>Toegestane</u></b> kwaliteiten zullen worden vervangen door die van uw <b><u>Voorkeur</u></b>, zelfs als ze een lagere kwaliteit hebben.</p>"],"New":[null,"Nieuw"],"Set as Default":[null,"Als standaard instellen"],"Remember me":[null,"Onthoud mijn gegevens"],"Edit Selected":[null,"Selectie bewerken"],"Subtitle":[null,"Ondertiteling"],"Default Ep Status":[null,"Standaard Afl. Status"],"Update":[null,"Update"],"Rescan":[null,"Scan opnieuw"],"Rename":[null,"Wijzig naam"],"Search Subtitle":[null,"Zoek ondertiteling"],"Force Metadata Regen":[null,"Forceer Metadata Regen"],"Snatched (Allowed)":[null,"Opgepikt (toegestaan)"],"Jump to Show":[null,"Spring naar Serie"],"Force Backlog":[null,"Forceer Werkvoorraad"],"Manage episodes with status":[null,"Beheer afleveringen met status"],"Manage":[null,"Beheer"],"None of your episodes have status":[null,"Geen van de afleveringen hebben status"],"Shows containing":[null,"Series bevatten"],"episodes":[null,"afleveringen"],"Set checked shows/episodes to":[null,"Markeer geselecteerde series/afleveringen als"],"Go":[null,"Start"],"Select all":[null,"Alles selecteren"],"Clear all":[null,"Alles wissen"],"Release":[null,"Uitgave"],"Backlog Search":[null,"Werkvoorraad Zoeken"],"Not in progress":[null,"Wordt niet uitgevoerd"],"In Progress":[null,"In uitvoering"],"Daily Search":[null,"Dagelijks zoeken"],"Find Propers Search":[null,"Propers zoeken vinden"],"Propers search disabled":[null,"Propers zoeken uit zetten"],"Subtitle Search":[null,"Ondertiteling Zoeken"],"Subtitle search disabled":[null,"Ondertiteling zoeken uitgeschakeld"],"Search Queue":[null,"Zoek wachtrij"],"pending items":[null,"wachtende items"],"Daily":[null,"Dagelijks"],"Manual":[null,"Handmatig"],"Changing any settings marked with (<span class=\"separator\">*</span>) will force a refresh of the selected shows.":[null,"Wijzigingen aanbrengen gemarkeerd met (<span class=\"scheidingsteken\"> *</span>) zal een verversing van de geselecteerde shows forceren."],"Selected Shows":[null,"Geselecteerde Series"],"Root Directories":[null,"Hoofdmappen"],"Current":[null,"Huidige"],"Keep":[null,"Behouden"],"Custom":[null,"Aangepast"],"Group episodes by season folder (set to \"No\" to store in a single folder).":[null,"Groep afleveringen per seizoen map (ingesteld met \"Nee\" om op te slaan in een enkele map)."],"Pause these shows (SickRage will not download episodes).":[null,"Pauzeer deze serie (SickRage zal afleveringen niet downloaden)."],"This will set the status for future episodes.":[null,"Hiermee wordt de status voor toekomstige afleveringen ingesteld."],"Search by scene numbering (set to \"No\" to search by indexer numbering).":[null,"Zoeken op scène nummering (ingesteld met \"Nee\" om te zoeken op de indexeerdernummering)."],"Set if these shows are Anime and episodes are released as Show.265 rather than Show.S02E03":[null,"Aanzetten als deze series Anime zijn en afleveringen worden uitgebracht als Serie.265 in plaats van Serie.S02E03"],"Set if these shows are sporting or MMA events released as Show.03.02.2010 rather than Show.S02E03.":[null,"Aanzetten als deze shows sportieve of MMA evenementen zijn en Show.03.02.2010 in plaats van Show.S02E03 zijn uitgebracht."],"In case of an air date conflict between regular and special episodes, the later will be ignored.":[null,"Wanneer beide nummeringen bestaan dan zal de standaard S02E01 benaming worden gekozen."],"Set if these shows are released as Show.03.02.2010 rather than Show.S02E03.":[null,"Aanzetten als deze series worden uitgebracht als Serie.03.02.2010 in plaats van Serie.S02E03."],"Search for subtitles.":[null,"Zoeken naar ondertiteling."],"All of your episodes have {subsLanguage} subtitles.":[null,"Al uw afleveringen hebben {subsLanguage} ondertiteling."],"Manage episodes without":[null,"Beheer afleveringen zonder"],"Episodes without {subsLanguage} subtitles.":[null,"Afleveringen zonder {subsLanguage} ondertiteling."],"Episodes without {subtitleLanguage} (undefined) subtitles.":[null,"Afleveringen zonder {subtitleLanguage} (onbepaald) ondertiteling."],"Download missed subtitles for selected episodes":[null,"Download ontbrekende ondertiteling voor de geselecteerde afleveringen"],"Performing Restart":[null,"Herstart uitvoeren"],"Waiting for SickRage to shut down":[null,"Een ogenblik geduld, SickRage wordt afgesloten... "],"Waiting for SickRage to start again":[null,"SickRage start opnieuw op"],"Loading the default page":[null,"De standaardpagina wordt geladen"],"Error: The restart has timed out, perhaps something prevented SickRage from starting again?":[null,"Fout: De herstart heeft een time-out, misschien verhinderd er iets om SickRage opnieuw te starten?"],"Key":[null,"Sleutel"],"Missed":[null,"Gemist"],"Today":[null,"Vandaag"],"Soon":[null,"Binnenkort"],"Later":[null,"Later"],"Subscribe":[null,"Abonneer"],"Date":[null,"Datum"],"View Paused":[null,"Toon gepauzeerde"],"Hidden":[null,"Verberg"],"Shown":[null,"Toon"],"Calendar":[null,"Agenda"],"List":[null,"Lijst"],"Ends":[null,"Eindigt"],"Next Ep Name":[null,"Naam Volgende Afl."],"Run time":[null,"Looptijd"],"Indexers":[null,"Zoekmachines"],"No shows for this day":[null,"Geen series op deze dag"],"Airs":[null,"Uitzenddatum"],"Plot":[null,"Samenvatting"],"Show Update":[null,"Update Series"],"Version Check":[null,"Versie controleren"],"Proper Finder":[null,"Zoek Proper"],"Post Process":[null,"Nabewerking"],"Subtitles Finder":[null,"Zoek Ondertiteling"],"Scheduler":[null,"Planner"],"Alive":[null,"Werkt"],"Start Time":[null,"Start"],"Cycle Time":[null,"Cyclus"],"Next Run":[null,"Uitvoeren"],"Last Run":[null,"Uitgevoerd"],"Silent":[null,"Stil"],"True":[null,"Waar"],"N/A":[null,"n.v.t"],"Show id":[null,"Serie id"],"Show name":[null,"Naam van de Serie"],"Priority":[null,"Prioriteit"],"Added":[null,"Toegevoegd"],"Queue type":[null,"Wachtrijtype"],"LOW":[null,"LAAG"],"NORMAL":[null,"NORMAAL"],"HIGH":[null,"HOOG"],"Disk Space":[null,"Schijfruimte"],"Free space":[null,"Vrije ruimte"],"TV Download Directory":[null,"TV Download Map"],"Media Root Directories":[null,"Media Hoofdmappen"],"Preview of the proposed name changes":[null,"Voorbeeld van de voorgestelde naamswijzigingen"],"All Seasons":[null,"Alle seizoenen"],"select all":[null,"alles selecteren"],"Rename Selected":[null,"Hernoem geselecteerden"],"Cancel Rename":[null,"Hernoemen annuleren"],"Old Location":[null,"Oude locatie"],"New Location":[null,"Nieuwe locatie"],"Trakt API did not return any results, please check your config.":[null,"Trakt API geeft geen resultaat, Controleer uw configuratie."],"votes":[null,"stemmen"],"Remove Show":[null,"Serie verwijderen"],"Level":[null,"Niveau"],"Filter":[null,"Filter"],"All non-absolute folder locations are relative to ":[null,"Alle relatieve maplocaties verwijzen naar "],"Manual Post-Processing":[null,"Handmatige nabewerking"],"Episode Status Management":[null,"Afleveringenstatus"],"Update PLEX":[null,"Update PLEX"],"Update KODI":[null,"Update KODI"],"Update Emby":[null,"Update Emby"],"Missed Subtitle Management":[null,"Gemiste ondertiteling"],"Help & Info":[null,"Help & Info"],"Backup & Restore":[null,"Backup & Herstellen"],"Tools":[null,"Gereedschap"],"Support SickRage":[null,"Ondersteun SickRage"],"View Errors":[null,"Bekijk Fouten"],"View Warnings":[null,"Bekijk Waarschuwingen"],"View Log":[null,"Bekijk Logboek"],"Check For Updates":[null,"Controleer op Updates"],"Restart":[null,"Herstart"],"Shutdown":[null,"Afsluiten"],"Logout":[null,"Afmelden"],"Server Status":[null,"Server Status"],"View overview of snatched episodes":[null,"Toon overzicht van opgepikte afleveringen"],"Episodes Downloaded":[null,"Gedownloade Afleveringen"],"Memory used":[null,"Geheugengebruik"],"Load time":[null,"Laadtijd"],"Branch":[null,"Branch"],"Now":[null,"Nu"]}}}} \ No newline at end of file +{"messages":{"domain":"messages","locale_data":{"messages":{"100":[null,"100"],"250":[null,"250"],"500":[null,"500"],"":{"domain":"messages","plural_forms":"nplurals=2; plural=(n != 1);","lang":"nl_NL"},"Drama":[null,"Drama"],"Mystery":[null,"Mysterie"],"Science-Fiction":[null,"Science-Fiction"],"Crime":[null,"Misdaad"],"Action":[null,"Actie"],"Comedy":[null,"Komedie"],"Thriller":[null,"Thriller"],"Animation":[null,"Animatie"],"Family":[null,"Familie"],"Fantasy":[null,"Fantasie"],"Adventure":[null,"Avontuur"],"Horror":[null,"Horror"],"Film-Noir":[null,"Film-Noir"],"Sci-Fi":[null,"Sci-Fi"],"Romance":[null,"Romantiek"],"Sport":[null,"Sport"],"War":[null,"Oorlog"],"Biography":[null,"Biografie"],"History":[null,"Geschiedenis"],"Music":[null,"Muziek"],"Western":[null,"Western"],"News":[null,"Nieuws"],"Sitcom":[null,"Sitcom"],"Reality-TV":[null,"Reality-TV"],"Documentary":[null,"Documentaire"],"Game-Show":[null,"Spel-Serie"],"Musical":[null,"Musical"],"Talk-Show":[null,"Talkshow"],"Started Download":[null,"Download Gestart"],"Download Finished":[null,"Download Voltooid"],"Subtitle Download Finished":[null,"Ondertiteling-download Voltooid"],"SickRage Updated":[null,"SickRage Bijgewerkt"],"SickRage Updated To Commit#: ":[null,"SickRage Bijgewerkt naar Commit#: "],"SickRage new login":[null,"SickRage nieuwe login"],"New login from IP: {0}. http://geomaplookup.net/?ip={0}":[null,"Nieuwe login van IP: {0}. http://geomaplookup.net/?IP={0}"],"Repeat":[null,"Herhaal"],"Repeat (Separated)":[null,"Herhaal (apart)"],"Extend":[null,"Verlengen"],"Extend (Limited)":[null,"Verlengen (beperkt)"],"Extend (Limited, E-prefixed)":[null,"Verlengen (beperkt, met E prefix)"],"Downloaded":[null,"Gedownload"],"Snatched":[null,"Opgepikt"],"Snatched (Proper)":[null,"Opgepikt (Proper)"],"Failed":[null,"Mislukt"],"Snatched (Best)":[null,"Opgepikt (Best)"],"Archived":[null,"Gearchiveerd"],"Unknown":[null,"Onbekend"],"Unaired":[null,"Nog niet uitgezonden"],"Skipped":[null,"Overgeslagen"],"Wanted":[null,"Gewild"],"Ignored":[null,"Genegeerd"],"Subtitled":[null,"Ondertiteld"],"For best results please set the Download Station alias as":[null,"Voor het beste resultaat, stel de Download Station alias in als"],"You can check this setting in the Synology DSM":[null,"U kunt deze instelling terugvinden in de Synology DSM"],"Control Panel":[null,"Configuratiescherm"],"Application Portal":[null,"Toepassingsportaal"],"Make sure you allow DSM to be embedded with iFrames too in":[null,"Zorg ervoor dat DSM wordt toegestaan dat deze ook in iFrames wordt geïntegreerd "],"DSM Settings":[null,"DSM Instellingen"],"Security":[null,"Beveiliging"],"<No Filter>":[null,"<Geen Filter>"],"Daily Searcher":[null,"Dagzoeker"],"Backlog":[null,"Werkvoorraad"],"Show Updater":[null,"Toon Updater"],"Check Version":[null,"Versie controleren"],"Show Queue":[null,"Toon Wachtrij"],"Search Queue (All)":[null,"Zoekwachtrij (alles)"],"Search Queue (Daily Searcher)":[null,"Zoekwachtrij (Dagzoeker)"],"Search Queue (Backlog)":[null,"Zoekwachtrij (Werkvoorraad)"],"Search Queue (Manual)":[null,"Zoekwachtrij (Handmatig)"],"Search Queue (Retry/Failed)":[null,"Zoekwachtrij (Opnieuw/Mislukt)"],"Search Queue (RSS)":[null,"Zoekwachtrij (RSS)"],"Find Propers":[null,"Propers zoeken"],"Postprocessor":[null,"Nabewerking"],"Find Subtitles":[null,"Zoek Ondertiteling"],"Trakt Checker":[null,"Trakt Checker"],"Event":[null,"Gebeurtenis"],"Error":[null,"Fout"],"Tornado":[null,"Tornado"],"Thread":[null,"Thread"],"Main":[null,"Algemeen"],"Loading":[null,"Bezig met laden"],"New update found for SickRage, starting auto-updater":[null,"Nieuwe update gevonden voor SickRage, auto-updater start"],"Update was successful":[null,"Update is gelukt"],"Update failed!":[null,"Update mislukt!"],"Backup":[null,"Backup"],"Config backup in progress...":[null,"Bezig met maken van een backup..."],"Config backup successful, updating...":[null,"Instellingen backup gelukt, updaten gestart..."],"Config backup failed, aborting update":[null,"Instellingen backup mislukt, updaten wordt afgebroken"],"No update needed":[null,"Geen update nodig"],"Mako Error":[null,"Mako fout"],"Oops":[null,"Oeps"],"Wrong API key used":[null,"Ongeldige API-sleutel gebruikt"],"Login":[null,"Inloggen"],"API Key not generated":[null,"API-sleutel niet gegenereerd"],"API Builder":[null,"API Bouwer"],"Schedule":[null,"Kalender"],"Test 1":[null,"Test 1"],"This is test number 1":[null,"Dit is test nummer 1"],"Test 2":[null,"Test 2"],"This is test number 2":[null,"Dit is test nummer 2"],"You're using the {branch} branch. Please use 'master' unless specifically asked":[null,"U gebruikt momenteel de {branch} branch. Gebruik 'master' tenzij specifiek aangegeven"],"Invalid show parameters":[null,"Ongeldige seriegegevens"],"Invalid parameters":[null,"Ongeldige parameters"],"Episode couldn't be retrieved":[null,"Aflevering kon niet gevonden worden"],"Home":[null,"Startscherm"],"Show List":[null,"Serielijst"],"Error: Unsupported Request. Send jsonp request with 'callback' variable in the query string.":[null,"Fout: Verzoek wordt niet ondersteund. Verzendt het jsonp request met 'callback' variabele in de queryreeks."],"Success. Connected and authenticated":[null,"Succes. Verbonden en geverifieerd"],"Authentication failed. SABnzbd expects":[null,"Authenticatie mislukt. SABnzbd verwacht"],"as authentication method":[null,"als verificatiemethode"],"Unable to connect to host":[null,"Kan niet verbinden met de server"],"SMS sent successfully":[null,"SMS verzonden"],"Problem sending SMS: {message}":[null,"Probleem met het verzenden van SMS: {message}"],"Telegram notification succeeded. Check your Telegram clients to make sure it worked":[null,"Telegram melding verzonden. Controleer uw Telegram client om te verifiëren dat het gelukt is"],"Error sending Telegram notification: {message}":[null,"Verzenden Telegram melding mislukt: {message}"],"join notification succeeded. Check your join clients to make sure it worked":[null,"samenvoegmelding gelukt. Controleer je samenvoeg-clients op juiste werking"],"Error sending join notification: {message}":[null,"Fout bij versturen van Join melding: {message}"]," with password":[null," met wachtwoord"],"Registered and Tested growl successfully {growl_host}":[null,"Geregistreerd en Growl test is gelukt {growl_host}"],"Registration and Testing of growl failed {growl_host}":[null,"Geregistreerd en Growl test is mislukt {growl_host}"],"Test prowl notice sent successfully":[null,"Test prowl melding verzonden"],"Test prowl notice failed":[null,"Test prowl melding mislukt"],"Boxcar2 notification succeeded. Check your Boxcar2 clients to make sure it worked":[null,"Boxcar2 melding verzonden. Controleer uw Boxcar2 client om te verifiëren dat het gelukt is"],"Error sending Boxcar2 notification":[null,"Fout bij verzenden van Boxcar2 melding"],"Pushover notification succeeded. Check your Pushover clients to make sure it worked":[null,"Pushover melding verzonden. Controleer uw Pushover client om te verifiëren dat het gelukt is"],"Error sending Pushover notification":[null,"Fout bij verzenden van Pushover melding"],"Key verification successful":[null,"Sleutel succesvol geverifieerd"],"Unable to verify key":[null,"Niet in staat de sleutel te verifiëren"],"Tweet successful, check your twitter to make sure it worked":[null,"Tweet verzonden. Controleer uw Twitter om te verifiëren dat het gelukt is"],"Error sending tweet":[null,"Fout bij verzenden tweet"],"Please enter a valid account sid":[null,"Voer svp een geldig gebruikers-ID in"],"Please enter a valid auth token":[null,"Voer svp een geldig controlegetal in"],"Please enter a valid phone sid":[null,"Voer svp een geldig telefoon ID in"],"Please format the phone number as \"+1-###-###-####\"":[null,"Gebruik svp voor het telefoonnummer de opmaak +1-###-###-####"],"Authorization successful and number ownership verified":[null,"Autorisatie succesvol en eigendom nummer geverifieerd"],"Error sending sms":[null,"Fout bij het verzenden van sms"],"Slack message successful":[null,"Slack bericht gelukt"],"Slack message failed":[null,"Slack bericht mislukt"],"Discord message successful":[null,"Discord bericht succesvol"],"Discord message failed":[null,"Discord bericht mislukt"],"Test KODI notice sent successfully to {kodi_host}":[null,"KODI test boodschap succesvol naar {kodi_host} verzonden"],"Test KODI notice failed to {kodi_host}":[null,"KODI test boodschap naar {kodi_host} mislukt"],"Successful test notice sent to Plex Home Theater ... {plex_clients}":[null,"Succesvol een testbericht naar Plex Home Theater verstuurd ... {plex_clients}"],"Test failed for Plex Home Theater ... {plex_clients}":[null,"Test mislukt ... {plex_clients}"],"Tested Plex Home Theater(s)":[null,"Plex Home Theater(s) getest"],"Successful test of Plex Media Server(s) ... {plex_servers}":[null,"Plex Media Server(s) succesvol getest ... {plex_servers}"],"Test failed, No Plex Media Server host specified":[null,"Test is mislukt, geen Plex Media Server host opgegeven"],"Test failed for Plex Media Server(s) ... {plex_servers}":[null,"Test mislukt voor Plex Media Server(s) ... {plex_servers}"],"Tested Plex Media Server host(s)":[null,"Plex Media Server host(s) getest"],"Tried sending desktop notification via libnotify":[null,"Bureaublad melding via libnotify is verzonden"],"Test notice sent successfully to {emby_host}":[null,"Testboodschap succesvol naar {emby_host} verzonden"],"Test notice failed to {emby_host}":[null,"Testboodschap naar {emby_host} mislukt"],"Successfully started the scan update":[null,"Scan update succesvol gestart"],"Test failed to start the scan update":[null,"De test om de scan update te starten is mislukt"],"Test notice sent successfully to {nmj2_host}":[null,"Testbericht met succes verzonden naar {nmj2_host}"],"Test notice failed to {nmj2_host}":[null,"Testboodschap naar {nmj2_host} mislukt"],"Trakt Authorized":[null,"Trakt is gemachtigd"],"Trakt Not Authorized!":[null,"Trakt is niet gemachtigd!"],"Test email sent successfully! Check inbox.":[null,"Test e-mail succesvol verzonden! Controleer je Postvak IN."],"ERROR: {last_error}":[null,"FOUT: {last_error}"],"Test NMA notice sent successfully":[null,"NMA testbericht met succes verzonden"],"Test NMA notice failed":[null,"NMA testbericht mislukt"],"Pushalot notification succeeded. Check your Pushalot clients to make sure it worked":[null,"Pushalot melding verzonden. Controleer uw Pushalot client om te verifiëren dat het gelukt is"],"Error sending Pushalot notification":[null,"Fout bij verzenden van Pushalot melding"],"Pushbullet notification succeeded. Check your device to make sure it worked":[null,"Pushbullet melding verzonden. Controleer uw apparaat om te verifiëren dat het gelukt is"],"Error sending Pushbullet notification":[null,"Fout bij verzenden van Pushbullet melding"],"Status":[null,"Status"],"Restarting SickRage":[null,"SickRage aan het herstarten"],"Update Failed":[null,"Update is mislukt"],"Update wasn't successful, not restarting. Check your log for more information.":[null,"Update was niet succesvol, er is niet opnieuw opgestart. Controleer uw logboek voor meer informatie."],"Checking out branch":[null,"Branch uitchecken"],"Already on branch":[null,"Zit reeds op deze branch"],"Invalid show ID: {show}":[null,"Ongeldige serie ID: {show}"],"Show not in show list":[null,"Serie niet in serielijst gevonden"],"Edit":[null,"Bewerk"],"This show is in the process of being downloaded - the info below is incomplete.":[null,"Deze serie wordt op dit moment gedownload - de informatie hieronder is incompleet."],"The information on this page is in the process of being updated.":[null,"De informatie op deze pagina wordt op dit moment bijgewerkt."],"The episodes below are currently being refreshed from disk":[null,"De afleveringen hieronder worden op dit moment ververst vanaf schijf"],"Currently downloading subtitles for this show":[null,"Ondertiteling voor deze serie nu aan het downloaden"],"This show is queued to be refreshed.":[null,"Deze serie staat in de rij om bijgewerkt te worden."],"This show is queued and awaiting an update.":[null,"Deze serie staat in de rij en wacht op een update."],"This show is queued and awaiting subtitles download.":[null,"Deze serie staat in de rij en wacht op het downloaden van ondertiteling."],"Resume":[null,"Hervat"],"Pause":[null,"Pauzeer"],"Remove":[null,"Verwijder"],"Re-scan files":[null,"(Her)Scan Bestanden"],"Force Full Update":[null,"Forceer volledige update"],"Update show in KODI":[null,"Update serie in KODI"],"Update show in Emby":[null,"Update serie in Emby"],"Hide specials":[null,"Specials verbergen"],"Show specials":[null,"Specials tonen"],"Preview Rename":[null,"Hernoemvoorbeeld"],"Download Subtitles":[null,"Download ondertiteling"],"No scene exceptions":[null,"Geen scène-uitzonderingen"],"Invalid show ID":[null,"Serie ID onjuist"],"Unable to find the specified show":[null,"Kan deze serie niet vinden"],"Unable to retreive Fansub Groups from AniDB.":[null,"Niet mogelijk Fansub groepen van AniDB op te halen"],"Edit Show":[null,"Bewerk Serie"],"Unable to refresh this show: {error}":[null,"Serie kan momenteel niet vernieuwd worden: {error}"],"New location <tt>{location}</tt> does not exist":[null,"Nieuwe locatie <tt>{location}</tt> bestaat niet"],"Unable to update show: {error}":[null,"Kan serie niet updaten: {error}"],"Unable to force an update on scene exceptions of the show.":[null,"Niet in staat om een geforceerde update uit te voeren op de scène-uitzonderingen bij deze serie."],"Unable to force an update on scene numbering of the show.":[null,"Niet in staat om een geforceerde update uit te voeren op de scène-nummering bij deze serie."],"{num_errors:d} error{plural} while saving changes:":[null,"{num_errors:d} foutmelding{plural} tijdens het opslaan van wijzigingen:"],"{show_name} has been {paused_resumed}":[null,"{show_name} is {paused_resumed}"],"resumed":[null,"hervat"],"paused":[null,"gepauzeerd"],"{show_name} has been {deleted_trashed} {was_deleted}":[null,"{show_name} is {deleted_trashed} {was_deleted}"],"deleted":[null,"verwijderd"],"trashed":[null,"verplaatst naar prullenbak"],"(media untouched)":[null,"(media ongewijzigd)"],"(with all related media)":[null,"(met alle gerelateerde media)"],"Unable to refresh this show.":[null,"Serie kan momenteel niet vernieuwd worden."],"Unable to update this show.":[null,"Kan deze serie niet updaten."],"Library update command sent to KODI host(s)): {kodi_hosts}":[null,"Bibliotheek update-commando is naar KODI host(s)) verstuurd: {kodi_hosts}"],"Unable to contact one or more KODI host(s)): {kodi_hosts}":[null,"Niet mogelijk contact te leggen met 1 of meerdere KODI host(s)): {kodi_hosts}"],"Library update command sent to Plex Media Server host: {plex_server}":[null,"Update commando is naar Plex Media Server host gestuurd: {plex_server}"],"Unable to contact Plex Media Server host: {plex_server}":[null,"Niet mogelijk contact te leggen met Plex Media Server host: {plex_server}"],"Library update command sent to Emby host: {emby_host}":[null,"Bibliotheek update-commando is naar Emby host verstuurd: {emby_host}"],"Unable to contact Emby host: {emby_host}":[null,"Niet gelukt met de Emby host te verbinden: {emby_host}"],"You must specify a show and at least one episode":[null,"U moet een serie selecteren en minimaal 1 aflevering"],"Invalid status":[null,"Ongeldige status"],"Backlog was automatically started for the following seasons of <b>{show_name}</b>":[null,"Automatisch een werkvoorraad aangemaakt voor de volgende seizoenen van <b>{show_name}</b>"],"Season":[null,"Seizoen"],"Backlog started":[null,"Werkvoorraad wordt aangemaakt"],"Retrying Search was automatically started for the following season of <b>{show_name}</b>":[null,"Opnieuw zoeken is automatisch gestart voor de volgende seizoenen van <b>{show_name}</b>"],"Retry Search started":[null,"Opnieuw aan het zoeken"],"You must specify a show":[null,"U moet een serie specificeren"],"Can't rename episodes when the show dir is missing.":[null,"Kan geen afleveringen hernoemen als er geen seriemap is."],"New subtitles downloaded: {new_subtitle_languages}":[null,"Nieuwe ondertiteling gedownload: {new_subtitle_languages}"],"No subtitles downloaded":[null,"Geen ondertiteling gedownload"],"IRC":[null,"IRC"],"Could not load news from the repo. [Click here for news.md])({news_url})":[null,"Nieuws kan niet worden geladen uit de repo. [Klik hier voor de news.md])({news_url})"],"The was a problem connecting to github, please refresh and try again":[null,"Er was een probleem met de verbinding met GitHub, graag vernieuwen en opnieuw proberen"],"Could not load changes from the repo. [Click here for CHANGES.md]({changes_url})":[null,"Aanpassingen kunnen niet worden geladen uit de repo. [Klik hier voor de CHANGES.md]({changes_url})"],"Changelog":[null,"Veranderingen"],"Post Processing":[null,"Nabewerking"],"Add Shows":[null,"Serie Toevoegen"],"No folders selected.":[null,"Geen mappen geselecteerd."],"New Show":[null,"Nieuwe Serie"],"Trending Shows":[null,"Populaire Series"],"Popular Shows":[null,"Populaire Shows"],"Most Anticipated Shows":[null,"De langstverwachte Series"],"Most Collected Shows":[null,"Meest Verzamelde Series"],"Most Watched Shows":[null,"Meest Bekeken Series"],"Most Played Shows":[null,"Meest Afgespeelde Series"],"Recommended Shows":[null,"Aanbevolen Series"],"New Shows":[null,"Nieuwe Series"],"Season Premieres":[null,"Seizoen Start "],"Existing Show":[null,"Bestaande Serie"],"No root directories setup, please go back and add one.":[null,"Geen hoofdmappen ingesteld, graag teruggaan en één toe te voegen."],"Show added":[null,"Serie toegevoegd"],"Adding the specified show {show_name}":[null,"Bezig deze serie toe te voegen: {show_name}"],"Missing params, no Indexer ID or folder: {show_to_add} and {root_dir}/{show_path}":[null,"Ontbrekende parameters, geen Indexeerder ID of map: {show_to_add} en {root_dir}/{show_path}"],"Unknown error. Unable to add show due to problem with show selection.":[null,"Onbekende fout. Serie kan niet toegevoegd worden vanwege een probleem met het selecteren van de serie."],"Unable to add show":[null,"Serie toevoegen mislukt"],"Folder {show_dir} exists already":[null,"Map genaamd {show_dir} bestaat al"],"Unable to create the folder {show_dir}, can't add the show":[null,"Niet mogelijk om de map {show_dir} aan te maken, kon de serie niet toevoegen"],"Adding the specified show into {show_dir}":[null,"Bezig deze serie toe te voegen in {show_dir}"],"Shows Added":[null,"Toegevoegde Series"],"Automatically added {num_shows} from their existing metadata files":[null,"Automatisch {num_shows} series toegevoegd op basis van al aanwezige metadata bestanden"],"Mass Update":[null,"Groepsgewijs Updaten"],"Episode Overview":[null,"Aflevering Overzicht"],"Missing Subtitles":[null,"Ontbrekende Ondertiteling"],"Backlog Overview":[null,"Werkvoorraad Overzicht"],"Mass Edit":[null,"Groepsgewijs Bewerken"],"Unable to update show: {excption_format}":[null,"Kan serie niet updaten: {excption_format}"],"Unable to refresh show {show_name}: {excption_format}":[null,"Kan serie {show_name} niet updaten: {excption_format}"],"Errors encountered":[null,"Fouten die zijn opgetreden"],"Updates":[null,"Updates"],"Refreshes":[null,"Vernieuwingen"],"Renames":[null,"Naamswijzigingen"],"Subtitles":[null,"Ondertiteling"],"The following actions were queued":[null,"De volgende acties zijn in de wachtrij gezet"],"Failed Downloads":[null,"Mislukte Downloads"],"Manage Searches":[null,"Zoeken"],"Backlog search started":[null,"Werkvoorraad-zoekopdracht gestart"],"Daily search started":[null,"Dagelijkse zoekopdracht gestart"],"Find propers search started":[null,"Zoekopdracht propers gestart"],"Subtitle search started":[null,"Zoekopdracht ondertiteling gestart"],"Remove Selected":[null,"Verwijder Geselecteerde"],"Clear History":[null,"Geschiedenis wissen"],"Trim History":[null,"Trim geschiedenis"],"Selected history entries removed":[null,"Geselecteerde historie items verwijderd"],"History cleared":[null,"Geschiedenis gewist"],"Removed history entries older than 30 days":[null,"Verwijder alle gebeurtenissen ouder dan 30 dagen"],"General":[null,"Algemeen"],"Backup/Restore":[null,"Back-up/Herstel"],"Search Settings":[null,"Zoekinstellingen"],"Search Providers":[null,"Zoekmachines"],"Subtitles Settings":[null,"Ondertiteling"],"Notifications":[null,"Berichtgeving"],"Anime":[null,"Anime"],"SickRage Configuration":[null,"SickRage Configuratie"],"Config - Shares":[null,"Configuratie - Shares"],"Windows Shares Configuration":[null,"Windows Shares Configuratie"],"Saved Shares":[null,"Opgeslagen Shares"],"Your Windows share settings have been saved":[null,"Uw Windows share configuratie is opgeslagen"],"Config - General":[null,"Configuratie - Algemeen"],"General Configuration":[null,"Algemene Configuratie"],"Saved Defaults":[null,"Opgeslagen Standaardwaarden"],"Your \"add show\" defaults have been set to your current selections.":[null,"De standaard waardes voor \"Show toevoegen\" zijn ingesteld op uw huidige selectie."],"Unable to create directory {directory}, log directory not changed.":[null,"Aanmaken van de map {directory} is mislukt, logboekmap is ongewijzigd."],"Unable to create directory {directory}, https cert directory not changed.":[null,"Map {directory) kan niet worden aangemaakt, SSL certificaat map is ongewijzigd."],"Unable to create directory {directory}, https key directory not changed.":[null,"Niet in staat hier een map {directory} te maken, de https key map is niet gewijzigd."],"Error(s) Saving Configuration":[null,"Er is een/zijn fout(en) opgetreden bij het opslaan van de instellingen"],"Configuration Saved":[null,"Configuratie opgeslagen"],"Config - Backup/Restore":[null,"Configuratie - Back-up/Herstel"],"Config - Episode Search":[null,"Configuratie - Afleveringen zoeken"],"Config - Post Processing":[null,"Configuratie - nabewerking"],"Unpacking Not Supported, disabling unpack setting":[null,"Uitpakken niet ondersteund, deze instelling is nu uitgeschakeld"],"You tried saving an invalid normal naming config, not saving your naming settings":[null,"U hebt geprobeerd een ongeldige normale benamingsconfiguratie op te slaan, deze wordt nu niet opgeslagen"],"You tried saving an invalid anime naming config, not saving your naming settings":[null,"U hebt geprobeerd een ongeldige anime benamingsconfiguratie op te slaan, deze wordt nu niet opgeslagen"],"Config - Providers":[null,"Configuratie - Providers"],"No Provider Name specified":[null,"Geen naam opgegeven voor deze zoekmachine"],"No Provider Url specified":[null,"Geen webadres opgegeven voor deze zoekmachine"],"No Provider Api key specified":[null,"Geen API sleutel opgegeven voor deze zoekmachine"],"Config - Notifications":[null,"Configuratie - meldingen"],"Config - Subtitles":[null,"Configuratie - Ondertiteling"],"Config - Anime":[null,"Configuratie - Anime"],"Clear Errors":[null,"Verwijder foutmeldingen"],"Clear Warnings":[null,"Verwijder waarschuwingen"],"Submit Errors":[null,"Verzend foutmeldingen"],"Logs & Errors":[null,"Waarschuwingen & fouten"],"Log File":[null,"Logbestand"],"Logs":[null,"Logboeken"],"This is a test notification from SickRage":[null,"Dit is een test-notificatie van SickRage"],"Choose Directory":[null,""],"Select log file folder location":[null,""],"Select CSS file":[null,""],"Select backup folder to save to":[null,""],"Select backup files to restore":[null,""],"Please fill out the necessary fields above.":[null,"Vul bovenstaande verplichte velden."],"<b>Step 1:</b> Confirm Authorization":[null,""],"Check blacklist name; the value needs to be a trakt slug":[null,""],"You must provide a recipient email address!":[null,""],"You didn't supply a Pushbullet api key":[null,""],"Don't forget to save your new pushbullet settings.":[null,""],"Select TV Download Directory":[null,""],"Select Unpack Directory":[null,""],"This pattern is invalid.":[null,"Dit patroon is ongeldig."],"This pattern would be invalid without the folders, using it will force \"Season Folders\" on for all shows.":[null,"Dit patroon is normaliter ongeldig zonder de folders; in dat geval wordt \"Seizoen Folders\" voor alle series gebruikt."],"This pattern is valid.":[null,"Dit patroon is geldig."],"Select .nzb black hole/watch location":[null,""],"Select .torrent black hole/watch location":[null,""],"Select .torrent download location":[null,""],"Minimum seeding time is":[null,""],"URL to your uTorrent client (e.g. http://localhost:8000)":[null,""],"Stop seeding when inactive for":[null,""],"URL to your Transmission client (e.g. http://localhost:9091)":[null,""],"URL to your Deluge client (e.g. http://localhost:8112)":[null,""],"IP or Hostname of your Deluge Daemon (e.g. scgi://localhost:58846)":[null,""],"URL to your Synology DS client (e.g. http://localhost:5000)":[null,""],"URL to your rTorrent client (e.g. scgi://localhost:5000 <br> or https://localhost/rutorrent/plugins/httprpc/action.php)":[null,""],"URL to your qBittorrent client (e.g. http://localhost:8080)":[null,""],"URL to your MLDonkey (e.g. http://localhost:4080)":[null,""],"URL to your putio client (e.g. http://localhost:8080)":[null,""],"<a herf=\"https://app.put.io/oauth/apps/new\" target=\"_blank\"> Create a new OAuth app for put.io</a>":[null,""],"Put.io Parent Folder":[null,""],"Put.io OAuth Token":[null,""],"Show Episodes":[null,"Toon afleveringen"],"Hide Episodes":[null,"Afleveringen verbergen"],"Select Show Location":[null,""],"Select Unprocessed Episode Folder":[null,""],"DELETED":[null,""],"Resume updating the log on this page.":[null,"Bijwerken van de logging op deze pagina hervatten."],"Pause updating the log on this page.":[null,"Bijwerken van de logging op deze pagina pauzeren."],"searching {searchingFor}...":[null,""],"search timed out, try again or try another indexer":[null,""],"loading folders...":[null,""],"Loading...":[null,"Laden..."],"You have reached this page by accident, please check the url.":[null,"De pagina kan niet gevonden worden. Controleer of het Url correct is."],"A mako error has occured.<br>\n If this happened during an update a simple page refresh may be the solution.<br>\n Mako errors that happen during updates may be a one time error if there were significant ui changes.":[null,"Een mako-error is opgetreden.<br>\n Kreeg je deze foutmelding tijdens het updaten? Dan kan het herladen van de pagina de oplossing zijn.<br>\n Mako-errors die tijdens een update optreden, kunnen een eenmalige fout zijn als er significante wijzigingen in de lay-out aangebracht zijn."],"Show/Hide Error":[null,"Toon/Verberg Foutmelding"],"Add New Show":[null,"Toevoegen van Nieuwe Series"],"For shows that you haven't downloaded yet, this option finds a show on theTVDB.com, creates a directory for it's episodes, and adds it to SickRage.":[null,"Deze optie zoekt een <b>Nieuwe </b> serie via TVDB.com, en voegt deze toe aan SickRage. Een map wordt automatisch aangemaakt."],"Add From Trakt Lists":[null,"Toevoegen van Trakt Series"],"For shows that you haven't downloaded yet, this option lets you choose from a show from one of the Trakt lists to add to SickRage.":[null,"Deze optie geeft je de mogelijkheid series te kiezen uit <b>Trakt lijsten</b> die je nog niet hebt toegevoegd aan SickRage."],"Add From IMDB's Popular Shows":[null,"Toevoegen van IMDB's Series"],"View IMDB's list of the most popular shows. This feature uses IMDB's MOVIEMeter algorithm to identify popular TV Series.":[null,"Deze optie toont de populairste series op IMDB. De lijst wordt gegenereerd via het algoritme van IMDB's MOVIEMeter voor de beste resultaten."],"Add Existing Shows":[null,"Toevoegen reeds bestaande Series"],"Use this option to add shows that already have a folder created on your hard drive. SickRage will scan your existing metadata/episodes and add the show accordingly.":[null,"Deze optie laat u <b>reeds gedownloade</b> Series toevoegen die zich al op uw harde schijf bevinden. SickRage zal de aanwezige mappen scannen op afleveringen en metadata om deze vervolgens toe te voegen."],"Add Existing Show":[null,"Toevoegen reeds bestaande Serie"],"Manage Directories":[null,"Beheer Mappen"],"Customize Options":[null,"Bewerk Instellingen"],"SickRage can add existing shows, using the current options, by using locally stored NFO/XML metadata to eliminate user interaction. If you would rather have SickRage prompt you to customize each show, then use the checkbox below.":[null,"SickRage is in staat om automatisch series toe te voegen met behulp van reeds aanwezige NFO/XML metadata.\n Als u liever wilt dat SickRage telkens per serie de instellingen voor die serie toont, vink dan onderstaande vakje aan."],"Prompt me to set settings for each show":[null,"Toon de instellingen opnieuw voor elke afzonderlijke serie"],"Displaying folders within these directories which aren't already added to SickRage":[null,"Tonen van mappen die niet al zijn toegevoegd aan SickRage"],"Submit":[null,"Verzend"],"Find a show on theTVDB":[null,"Vind een Serie op theTVDB"],"Show retrieved from existing metadata":[null,"Toon opgehaald van bestaande metagegevens"],"All Indexers":[null,"Alle Indexeerders"],"Search":[null,"Zoek"],"This will only affect the language of the retrieved metadata file contents and episode filenames.":[null,"De taal is enkel van invloed op de Serie informatie c. q. metadata en de afleveringstitels."],"This <b>DOES NOT</b> allow SickRage to download non-english TV episodes!":[null,"Dit heeft <b>geen</b> invloed op de gesproken taal of ondertiteling!"],"Pick the parent folder":[null,"Kies de hoofdmap"],"Pre-chosen Destination Folder":[null,"Vooraf gekozen doelmap"],"Customize options":[null,"Opties aanpassen"],"Add Show":[null,"Serie toevoegen"],"Skip Show":[null,"Serie Overslaan"],"Sort By":[null,"Sorteren op"],"Name":[null,"Naam"],"Original":[null,"Origineel"],"Votes":[null,"Stemmen"],"Rating":[null,"Waardering"],"Rating > Votes":[null,"Waardering > Stemmen"],"Sort Order":[null,"Sorteervolgorde"],"Asc":[null,"Oplopend"],"Desc":[null,"Aflopend"],"Fetching of IMDB Data failed. Are you online?":[null,"Ophalen van IMDB-gegevens is mislukt. Bent u online?"],"Exception":[null,"Uitzondering"],"Select Trakt List":[null,"Selecteer Trakt Lijst"],"Most Anticipated":[null,"Langstverwacht"],"Trending":[null,"Populairder"],"Popular":[null,"Populair"],"Most Watched":[null,"Meest Bekeken"],"Most Played":[null,"Meest Gespeeld"],"Most Collected":[null,"Meest Verzameld"],"Recommended":[null,"Aanbevolen"],"Toggle navigation":[null,"Navigatie aan/uit"],"Profile":[null,"Profiel"],"JSONP":[null,"JSONP"],"Back to SickRage":[null,"Terug naar SickRage"],"Parameters":[null,"Eigenschappen"],"Required":[null,"Verplicht"],"Description":[null,"Beschrijving"],"Type":[null,"Type"],"Default value":[null,"Standaard waarde"],"Allowed values":[null,"Toegestane waarden"],"Playground":[null,"Speeltuin"],"Clear":[null,"Leegmaken"],"Yes":[null,"Ja"],"No":[null,"Nee"],"season":[null,"seizoen"],"episode":[null,"aflevering"],"Python Version":[null,"Python Versie"],"SSL Version":[null,"SSL Versie"],"OS":[null,"OS"],"Locale":[null,"Taal"],"User":[null,"Gebruiker"],"Program Folder":[null,"Programmamap"],"Config File":[null,"Instellingenbestand"],"Database File":[null,"Databasebestand"],"Cache Folder":[null,"Cachemap"],"Log Folder":[null,"Logboekmap"],"Arguments":[null,"Parameters"],"Web Root":[null,"Web Root"],"Website":[null,"Website"],"Wiki":[null,"Wiki"],"Source":[null,"Bron"],"IRC Chat":[null,"IRC Chat"],"AnimeDB Settings":[null,"AnimeDB Instellingen"],"Look & Feel":[null,"Weergave"],"AniDB is non-profit database of anime information that is freely open to the public":[null,"AniDB is een anime naslagwerk open voor het publiek zonder winstoogmerk"],"Enable":[null,"Ingeschakeld"],"should SickRage use data from AniDB?":[null,"moet SickRage data van AniDB gebruiken?"],"AniDB Username":[null,"AniDB Gebruikersnaam"],"username of your AniDB account":[null,"gebruikersnaam van je AniDB account"],"AniDB Password":[null,"AniDB Wachtwoord "],"password of your AniDB account":[null,"wachtwoord van je AniDB acccount"],"AniDB MyList":[null,"Mijn AniDB Lijst"],"do you want to add the PostProcessed episodes to the MyList?":[null,"wil je de nabewerkte afleveringen toevoegen aan de MyList?"],"Look and Feel":[null,"Weergave"],"How should the anime functions show and behave.":[null,"Hoe moeten anime series getoond worden."],"Split show lists":[null,"Splits serielijst"],"separate anime and normal shows in groups":[null,"verdeel anime en normale series in groepen"],"Split in tabs":[null,"Splitsen in tabbladen"],"use tabs for when splitting show lists":[null,"tabbladen gebruiken bij het splitsen van serielijsten"],"Restore":[null,"Herstellen"],"Backup your main database file and config.":[null,"Backup je serie database en instellingen."],"Select the folder you wish to save your backup file to":[null,"Selecteer de map waar je je backup wilt opslaan"],"Restore your main database file and config.":[null,"Herstel je seriedatabase en -instellingen."],"Select the backup file you wish to restore":[null,"Selecteer het backup bestand dat je wilt terugzetten"],"Misc":[null,"Algemeen"],"Interface":[null,"Interface"],"Advanced Settings":[null,"Geavanceerde Instellingen"],"Startup options. Indexer options. Log and show file locations.":[null,"Opstart- & Indexeerderinstellingen. Logboek- en Serielocaties."],"Some options may require a manual restart to take effect.":[null,"Voor sommige veranderingen is een handmatige herstart noodzakelijk."],"Default Indexer Language":[null,"Indexeerdertaal"],"for adding shows and metadata providers":[null,"Taal voor de metadata die moet worden gedownload"],"Launch browser":[null,"Start browser"],"open the SickRage home page on startup":[null,"open de hoofdpagina van SickRage na opstarten"],"Initial page":[null,"Startpagina"],"Shows":[null,"Series"],"when launching SickRage interface":[null,"Kies de SickRage startpagina"],"Choose hour to update shows":[null,"Wanneer Series updaten"],"with information such as next air dates, show ended, etc. Use 15 for 3pm, 4 for 4am etc.":[null,"update de Series met nieuwe informatie als uitzenddatums etc. Kies tijd tussen 0-24 uur."],"note":[null,"opmerking"],"minutes are randomized each time SickRage is started":[null,"minuten zijn gerandomiseerd elke keer wanneer SickRage is gestart"],"Send to trash for actions":[null,"Naar Prullenbak verplaatsen"],"when using show \"Remove\" and delete files":[null,"verwijderde bestanden worden naar de prullenbak verplaatst"],"on scheduled deletes of the oldest log files":[null,"verwijder oudste logboekbestanden"],"selected actions use trash (recycle bin) instead of the default permanent delete":[null,"Selecteer de functies voor de prullenbak i.p.v. standaard verwijderen."],"Log file folder location":[null,"Logboekbestandsmap"],"Number of Log files saved":[null,"Aantal logboekbestanden"],"number of log files saved when rotating logs (default: 5) (REQUIRES RESTART)":[null,"aantal logboekbestanden dat bewaard blijft als logboeken worden gecirculeerd (standaard = 5, en herstart is vereist)"],"Size of Log files saved":[null,"Grootte van opgeslagen logboekbestanden"],"maximum size in MB of the log file (default: 1MB) (REQUIRES RESTART)":[null,"maximale grootte in MB van het logboekbestand (standaard: 1MB) (vereist opnieuw opstarten)"],"Use initial indexer set to":[null,"Standaard indexeerder"],"as the default selection when adding new shows":[null,"Standaard indexeerder bij toevoegen Series"],"Timeout show indexer at":[null,"Timeout van indexeerder"],"seconds of inactivity when finding new shows (default:20)":[null,"Time-out bij toevoegen van nieuwe Series (standaard: 20)"],"Show root directories":[null,"Toon hoofdmappen"],"where the files of shows are located":[null,"bestandsmap(pen) van de Serie(s)"],"Save Changes":[null,"Opslaan"],"Options for software updates.":[null,"Opties voor software-updates."],"Check software updates":[null,"Controleer op updates"],"and display notifications when updates are available. Checks are run on startup and at the frequency set below*":[null,"en toon meldingen wanneer er updates beschikbaar zijn. Dit wordt gecontroleerd bij het opstarten en met onderstaande frequentie*"],"Automatically update":[null,"Automatische updates"],"fetch and install software updates. Updates are run on startup and in the background at the frequency set below*":[null,"download en installeer software updates. Updates worden verwerkt bij het opstarten en in de achtergrond met de onderstaande frequentie*"],"Check the server every*":[null,"Controleer op Updates iedere"],"hours for software updates (default:1)":[null,"uur op software-updates voor Sickrage (standaard: 1 uur)"],"Notify on software update":[null,"Bericht bij Update?"],"send a message to all enabled notifiers when SickRage has been updated":[null,"Stuur een bericht naar alle ingestelde ontvangers wanneer SickRage is bijgewerkt"],"User Interface":[null,"Gebruikersinterface"],"Options for visual appearance.":[null,"Weergave-instellingen."],"Interface Language":[null,"Interfacetaal"],"System Language":[null,"Systeemtaal"],"for appearance to take effect, save then refresh your browser":[null,"Sla de verandering op en ververs de pagina"],"Display theme":[null,"Themakleur"],"Dark":[null,"Donker"],"Light":[null,"Licht"],"Use a background image":[null,"Gebruik een achtergrondafbeelding"],"use a custom image as background for SickRage":[null,"gebruik een aangepaste afbeelding als achtergrond voor SickRage"],"Background Path":[null,"Pad achtergrondafbeelding"],"Path to the background image":[null,"Pad naar de achtergrondafbeelding"],"Show fanart in the background":[null,"Toon Serie-achtergrond"],"on the show summary page":[null,"op de overzichtspagina van de serie"],"Fanart transparency":[null,"Zichtbaarheid Serie-achtergrond"],"transparency of the fanart in the background":[null,"zichtbaarheid (watermerk) van de serie-afbeelding op de achtergrond"],"Use a custom stylesheet file":[null,"Gebruik een aangepaste stylesheet bestand"],"use a custom .css file to style SickRage (for advanced users)":[null,"gebruik een aangepaste .css bestand voor de opmaak van SickRage (voor geavanceerde gebruikers)"],"Stylesheet File Path":[null,"Stylesheet bestandspad"],"Path to the stylesheet (.css) file":[null,"Pad naar het stylesheet (.css) bestand"],"Show all seasons":[null,"Toon alle seizoenen"],"Sort with \"The\", \"A\", \"An\"":[null,"Sorteer met \"The\", \"A\", \"An\""],"include articles (\"The\", \"A\", \"An\") when sorting show lists":[null,"houd rekening met de voorzetsels (\"The\", \"A\", \"An\") bij het sorteren van de serielijst"],"Missed episodes range":[null,"Gemiste afleveringen bereik"],"set the range in days of the missed episodes in the Schedule page":[null,"zet de reeks in dagen van de gemiste afleveringen in de Kalender pagina"],"Display fuzzy dates":[null,"Naamdatums weergeven"],"move absolute dates into tooltips and display e.g. \"Last Thu\", \"On Tue\"":[null,"vervang cijferdatums door namen zoals. \"Laatste Donderdag\", \"Op Dinsdag\""],"Trim zero padding":[null,"Verwijder de \"0\""],"remove the leading number \"0\" shown on hour of day, and date of month":[null,"verwijder de eerste \"0\" in de tijd of datum. bv 01: 00 wordt 1: 00"],"Date style":[null,"Datumstijl"],"Use System Default":[null,"Gebruik standaard van apparaat "],"Time style":[null,"Tijdstijl"],"seconds are only shown on the History page":[null,"seconden worden enkel op de Geschiedenispagina weergegeven"],"Timezone":[null,"Tijdzone"],"Local":[null,"Lokaal"],"Network":[null,"Netwerk"],"display dates and times in either your timezone or the shows network timezone":[null,"uitzendtijd van Series tonen in lokale tijd, of die van de zender/netwerk"],"use local timezone to start searching for episodes minutes after show ends (depends on your dailysearch frequency)":[null,"gebruik lokale tijdzone om een aantal minuten na de uitzending te beginnen met zoeken naar de afleveringen (hangt af van je dagelijkse zoekfrequentie)"],"Download url":[null,"Download url"],"URL where the shows can be downloaded.":[null,"URL waar de series kunnen worden gedownload."],"Web Interface":[null,"Webinterface"],"it is recommended that you enable a username and password to secure SickRage from being tampered with remotely.":[null,"het wordt aanbevolen om een gebruikersnaam en wachtwoord te gebruiken om SickRage te beveiligen tegen sabotage van buitenaf."],"these options require a manual restart to take effect.":[null,"deze opties vereisen een handmatige herstart voor ze effectief worden."],"API key":[null,"API sleutel"],"used to give 3rd party programs limited access to SickRage":[null,"Benodigd om andere programma's toegang te geven tot SickRage"],"you can try all the features of the API":[null,"Probeer en bekijk alle API functies"],"here":[null,"hier"],"HTTP logs":[null,"HTTP"],"enable logs from the internal Tornado web server":[null,"schakel het logboek van de interne Tornado webserver in"],"HTTP username":[null,"HTTP gebruiker"],"set blank for no login":[null,"laat leeg voor geen login"],"HTTP password":[null,"HTTP wachtwoord"],"blank = no authentication":[null,"laat leeg voor geen login"],"HTTP port":[null,"HTTP poort"],"web port to browse and access SickRage (default:8081)":[null,"Poort waarop SickRage kan worden geopend (standaard: 8081)"],"Notify on login":[null,"Bericht bij login"],"enable to be notified when a new login happens in webserver":[null,"activeer berichtgeving bij een nieuwe aanmelding op de webserver"],"Listen on IPv6":[null,"Luister naar IPv6"],"attempt binding to any available IPv6 address":[null,"probeer een IPv6-adres te verkrijgen"],"Enable HTTPS":[null,"Activeer HTTPS"],"enable access to the web interface using a HTTPS address":[null,"activeer HTTPS toegang tot de webinterface van Sickrage"],"HTTPS certificate":[null,"HTTPS certificaat"],"file name or path to HTTPS certificate":[null,"bestandsnaam en pad naar HTTPS certificaat"],"HTTPS key":[null,"HTTPS sleutel"],"file name or path to HTTPS key":[null,"bestandsnaam en pad naar de HTTPS sleutel"],"Reverse proxy headers":[null,"Reverse proxy headers"],"accept the following reverse proxy headers (advanced)...":[null,"accepteer de volgende reverse proxyheaders (geavanceerd)..."],"(X-Forwarded-For, X-Forwarded-Host, and X-Forwarded-Proto)":[null,"(X-Forwarded-For, X-Forwarded-Host, en X-Forwarded-Proto)"],"CPU throttling":[null,"CPU verbruik"],"Normal (default). High is lower and Low is higher CPU use":[null,"Normaal (standaard). Hoog is een lager, en Laag is een hoger CPU verbruik"],"Anonymous redirect":[null,"Anoniem doorsturen"],"backlink protection via anonymizer service, must end in \"?\"":[null,"doorlinkbescherming via anonimiseringsdienst, moet eindigen op \"?\""],"Enable debug":[null,"Activeer debug"],"enable debug logs":[null,"activeer debug logboek"],"Verify SSL Certs":[null,"Controleer SSL Certs"],"verify SSL Certificates (Disable this for broken SSL installs (Like QNAP))":[null,"verifieer SSL Certificaten (Schakel dit uit voor niet werkende SSL installaties (Zoals QNAP))"],"No Restart":[null,"Geen Herstart"],"only shutdown when restarting SR":[null,"alleen afsluiten wanneer SR herstart"],"only select this when you have external software restarting SR automatically when it stops (like FireDaemon)":[null,"selecteer deze optie alleen wanneer je externe software gebruikt (zoals FireDaemon) om na een stop SR automatisch te herstarten"],"Encrypt passwords":[null,"Codeer wachtwoorden"],"in the <code>config.ini</code> file":[null,"in het <code>config.ini</code> bestand"],"warning":[null,"waarschuwing"],"passwords must only contain":[null,"wachtwoorden mogen alleen bevatten"],"ASCII characters":[null,"ASCII karakters"],"Unprotected calendar":[null,"Onbeveiligde agenda"],"allow subscribing to the calendar without user and password":[null,"toestaan een abonnement te hebben op de agenda zonder gebruikersnaam en wachtwoord"],"some services like Google Calendar only work this way":[null,"sommige diensten zoals Google agenda werken alleen op deze manier"],"Google Calendar Icons":[null,"Google Agenda Iconen"],"show an icon next to exported calendar events in Google Calendar":[null,"toon een icoon naast geëxporteerde gebeurtenissen in Google Agenda"],"Proxy host":[null,"Proxy host"],"blank to disable or proxy to use when connecting to providers":[null,"Vul evt. een proxy in voor verbindingen met de zoekmachines"],"also use global proxy setting for indexers (tvdb, xem, anidb, etc.)":[null,"globale proxy-instellingen ook gebruiken voor indexeerders (tvdb, xem, anidb, enz.)"],"Skip Remove Detection":[null,"Verwijderingsdetectie"],"skip detection of removed files":[null,"detectie van verwijderde bestanden overslaan"],"if disabled the episode will be set to the default deleted status":[null,"indien uitgeschakeld zal de aflevering naar de standaard verwijderde status worden gezet"],"Default deleted episode status":[null,"Standaardstatus van verwijderde aflevering"],"define the status to be set for media file that has been deleted.":[null,"definieer de status die ingesteld moet worden wanneer een media bestand verwijderd is."],"Archived option will keep previous downloaded quality":[null,"Gearchiveerd zal het kwaliteitsniveau van eerdere downloads gebruiken"],"example: Downloaded (1080p WEB-DL) ==> Archived (1080p WEB-DL)":[null,"voorbeeld: Gedownload (1080p WEB-DL) ==> Gearchiveerd (1080p WEB-DL)"],"Options for github related features.":[null,"Opties gerelateerd aan GitHub."],"Branch version":[null,"Branch versie"],"error: No branches found.":[null,"fout: Geen branches gevonden."],"select branch to use (restart required)":[null,"selecteer de branch die u wilt gebruiken (opnieuw opstarten noodzakelijk)"],"Authorization Type":[null,"Autorisatie Type"],"Username and password":[null,"Gebruikersnaam en wachtwoord"],"Personal access token":[null,"Persoonlijke toegangs-token"],"You must use a personal access token if you're using \"two-factor authentication\" on GitHub.":[null,"Een persoonlijke token is verplicht bij gebruik van de \"two-factor authentication\" op GitHub."],"GitHub username":[null,"GitHub gebruikersnaam"],"*** (REQUIRED FOR SUBMITTING ISSUES) ***":[null,"*** (VEREIST VOOR HET INDIENEN VAN FOUTMELDINGEN) ***"],"GitHub password":[null,"GitHub wachtwoord"],"GitHub personal access token":[null,"GitHub persoonlijke toegangs-token"],"Generate Token":[null,"Genereer Toegangs-token"],"Manage Tokens":[null,"Beheer Toegangs-tokens"],"GitHub remote for branch":[null,"GitHub remote"],"access repo configured remotes (save then refresh browser)":[null,"toegangs repo ingestelde afstandsbedieningen (bewaar en dan vernieuw browser)"],"default":[null,"standaard"],"origin":[null,"oorspronkelijk"],"Git executable path":[null,"Bestandspad Git executable"],"only needed if OS is unable to locate git from env":[null,"enkel nodig wanneer de OS niet in staat is om Git te vinden via env"],"Git reset":[null,"Git reset"],"removes untracked files and performs a hard reset on git branch automatically to help resolve update issues":[null,"verwijder untracked bestanden en voer een harde reset uit op de git branch om update problemen te verhelpen"],"Home Theater / NAS":[null,"Home Theater / NAS"],"Devices":[null,"Apparaten"],"Social":[null,"Social Media"],"A free and open source cross-platform media center and home entertainment system software with a 10-foot user interface designed for the living-room TV.":[null,"Een gratis en open-source multi-platform mediacenter en thuisbioscoop softwarepakket met een zeer leesbare gebruiksinterface bedoeld voor de tv in de huiskamer."],"send KODI commands?":[null,"commando's naar KODI versturen?"],"Always on":[null,"Altijd aan"],"log errors when unreachable?":[null,"registreer de foutmelding wanneer niet toegankelijk?"],"Notify on snatch":[null,"Melden bij opgepikt"],"send a notification when a download starts?":[null,"stuur een melding wanneer een download start?"],"Notify on download":[null,"Bericht bij gedownload"],"send a notification when a download finishes?":[null,"stuur een bericht wanneer een download klaar is?"],"Notify on subtitle download":[null,"Bericht"],"send a notification when subtitles are downloaded?":[null,"stuur een bericht wanneer de ondertiteling gedownload is?"],"Update library":[null,"Update bibliotheek"],"update KODI library when a download finishes?":[null,"kODI bibliotheek updaten wanneer een download klaar is?"],"Full library update":[null,"Volledige bibliotheek update"],"perform a full library update if update per-show fails?":[null,"een volledige bibliotheek update uitvoeren als een \"per serie\" update mislukt?"],"Only update first host":[null,"Alleen de eerste host updaten"],"only send library updates to the first active host?":[null,"alleen bibliotheek updates verzenden naar de eerste actieve host?"],"KODI IP:Port":[null,"KODI IP:Poort"],"host running KODI (eg. 192.168.1.100:8080)":[null,"de locatie van KODI (bijv. 192.168.1.100:8080)"],"(multiple host strings must be separated by commas)":[null,"(meerdere host strings moeten gescheiden zijn door komma's)"],"Username":[null,"Gebruikersnaam"],"username for your KODI server (blank for none)":[null,"gebruikersnaam voor uw KODI-server (leeg voor geen)"],"Password":[null,"Wachtwoord"],"password for your KODI server (blank for none)":[null,"wachtwoord voor uw KODI-server (leeg voor geen)"],"Click below to test.":[null,"Klik hieronder om te testen."],"Experience your media on a visually stunning, easy to use interface on your Mac connected to your TV. Your media library has never looked this good!":[null,"Ervaar uw media op een visueel verbluffende, gemakkelijk te gebruiken interface op uw Mac aangesloten op uw TV. Uw media bibliotheek heeft er nog nooit zo goed uitgezien!"],"For sending notifications to Plex Home Theater (PHT) clients, use the KODI notifier with port <b>3005</b>.":[null,"Voor het verzenden van meldingen naar Plex Home Theater (PHT) clients, gebruik de KODI melder maar dan op port <b>3005</b>."],"send Plex Media Server library updates?":[null,"verstuur bibliotheek updates naar Plex Media Server?"],"Plex Media Server Auth Token":[null,"Plex Media Server Autorisatie Token"],"auth token used by Plex":[null,"authenticatie token voor Plex"],"Update Library":[null,"Update bibliotheek"],"update Plex Media Server library when a download finishes":[null,"update Plex Media Server bibliotheek wanneer een download is voltooid"],"Plex Media Server IP:Port":[null,"Plex Media Server IP:Poort"],"one or more hosts running Plex Media Server<br/>(eg. 192.168.1.1:32400, 192.168.1.2:32400)":[null,"een of meer Plex Media Server hosts<br/>(bijv. 192.168.1.1:32400, 192.168.1.2:32400)"],"HTTPS":[null,"HTTPS"],"use https for plex media server requests?":[null,"https gebruiken voor Plex Media Server aanvragen?"],"Click below to test Plex Media Server(s)":[null,"Klik hieronder voor het testen van Plex Media server (s)"],"Test Plex Media Server":[null,"Test Plex Media Server"],"Plex Home Theater":[null,"Plex Home Theater"],"send Plex Home Theater notifications?":[null,"verstuur Plex Home Theater meldingen?"],"Plex Home Theater IP:Port":[null,"Plex Home Theater IP: poort"],"one or more hosts running Plex Home Theater<br>(eg. 192.168.1.100:3000, 192.168.1.101:3000)":[null,"een of meer hosts waarop Plex Home Theater <br>wordt uitgevoerd<br>(bijv. 192.168.1.100:3000, 192.168.1.101:3000)"],"Click below to test Plex Home Theater(s)":[null,"Klik hieronder voor het testen van Plex Home Theater(s)"],"Test Plex Home Theater":[null,"Test Plex Home Theater"],"some Plex Home Theaters <b class=\"boldest\">do not</b> support notifications e.g. Plexapp for Samsung TVs":[null,"sommige Plex Home Theaters ondersteunen <b class=\"boldest\">geen</b> meldingen, bijv. Plexapp voor Samsung TV's"],"Emby":[null,"Emby"],"A home media server built using other popular open source technologies.":[null,"Een home mediaserver gebouwd met behulp van andere populaire open source-technologieën."],"send update commands to Emby?":[null,"update commando's naar Emby versturen?"],"Emby IP:Port":[null,"Emby IP: poort"],"host running Emby (eg. 192.168.1.100:8096)":[null,"host waar Emby op draait (bijv. 192.168.1.100:8096)"],"Emby API Key":[null,"Emby API-sleutel"],"Networked Media Jukebox":[null,"Networked Media Jukebox"],"The Networked Media Jukebox, or NMJ, is the official media jukebox interface made available for the Popcorn Hour 200-series.":[null,"De Networked Media Jukebox, of NMJ, is de officiële media jukebox interface beschikbaar gesteld voor de Popcorn Hour 200-series."],"send update commands to NMJ?":[null,"update commando's naar NMJ versturen?"],"Popcorn IP address":[null,"Popcorn IP-adres"],"IP address of Popcorn 200-series (eg. 192.168.1.100)":[null,"IP-adres van Popcorn 200-serie (bijv. 192.168.1.100)"],"Get settings":[null,"Instellingen ophalen"],"Get Settings":[null,"Instellingen ophalen"],"the Popcorn Hour device must be powered on and NMJ running.":[null,"het Popcorn Hour apparaat moet aan staan en NMJ moet draaien."],"NMJ database":[null,"NMJ database"],"automatically filled via the 'Get Settings' button.":[null,"automatisch ingevuld via de knop \"Instellingen ophalen\"."],"NMJ mount url":[null,"NMJ mount url"],"Networked Media Jukebox v2":[null,"Networked Media Jukebox v2"],"The Networked Media Jukebox, or NMJv2, is the official media jukebox interface made available for the Popcorn Hour 300 & 400-series.":[null,"De Networked Media Jukebox, of NMJv2, is de officiële media jukebox interface beschikbaar gesteld voor de Popcorn Hour 300 & 400-series."],"send update commands to NMJv2?":[null,"update commando's naar NMJv2 versturen?"],"IP address of Popcorn 300/400-series (eg. 192.168.1.100)":[null,"IP-adres van de Popcorn 300/400-series (bijv. 192.168.1.100)"],"Database location":[null,"Database-locatie"],"Database instance":[null,"Database-instantie"],"adjust this value if the wrong database is selected.":[null,"pas deze waarde aan als de verkeerde database is geselecteerd."],"Find database":[null,"Vind Database"],"Find Database":[null,"Database vinden"],"the Popcorn Hour device must be powered on.":[null,"het Popcorn Hour-apparaat moet aan staan."],"NMJv2 database":[null,"NMJv2 database"],"automatically filled via the 'Find Database' buttons.":[null,"automatisch ingevuld via de \"Zoek Database\" knoppen."],"Synology":[null,"Synology"],"The Synology DiskStation NAS.":[null,"De Synology DiskStation NAS."],"Synology Indexer is the daemon running on the Synology NAS to build its media database.":[null,"Synology Indexeeder is de daemon die draait op de Synology NAS om zijn media-database op te bouwen."],"send Synology notifications?":[null,"Synology berichten versturen?"],"requires SickRage to be running on your Synology NAS.":[null,"vereist dat SickRage draait op uw Synology NAS."],"Synology Indexer":[null,"Synology Indexeerder"],"Synology Notifier is the notification system of Synology DSM":[null,"Synology Melder is het meldingensysteem voor Synology DSM"],"send notifications to the Synology Notifier?":[null,"berichten naar de Synology Notifier versturen?"],"pyTivo":[null,"pyTivo"],"pyTivo is both an HMO and GoBack server. This notifier will load the completed downloads to your Tivo.":[null,"pyTivo is zowel een HMO en GoBack server. Het plaatst de voltooide downloads op uw Tivo."],"send notifications to pyTivo?":[null,"berichten naar pyTivo versturen?"],"requires the downloaded files to be accessible by pyTivo.":[null,"vereist dat de gedownloade bestanden beschikbaar zijn via pyTivo."],"pyTivo IP:Port":[null,"pyTivo IP: poort"],"host running pyTivo (eg. 192.168.1.1:9032)":[null,"host waarop pyTivo draait (bijv. 192.168.1.1:9032)"],"pyTivo share name":[null,"pyTivo share naam"],"value used in pyTivo Web Configuration to name the share.":[null,"waarde die in pyTivo Web configuratie gebruikt wordt voor de share naam."],"Tivo name":[null,"TiVo naam"],"(Messages & Settings > Account & System Information > System Information > DVR name)":[null,"(Berichten & Instellingen > Account & Systeem Informatie > Systeem informatie > DVR naam)"],"Growl":[null,"Growl"],"A cross-platform unobtrusive global notification system.":[null,"Een wereldwijd bescheiden cross-platform meldingssysteem."],"send Growl notifications?":[null,"berichten naar Growl versturen?"],"Growl IP:Port":[null,"Growl IP:Poort"],"host running Growl (eg. 192.168.1.100:23053)":[null,"host waarop Growl wordt uitgevoerd (bijv. 192.168.1.100:23053)"],"may leave blank if SickRage is on the same host.":[null,"mag leeg gelaten worden als SickRage zich op dezelfde host bevindt."],"otherwise Growl <b>requires</b> a password to be used.":[null,"anders <b>vereist</b> Growl dat een wachtwoord gebruikt wordt."],"Click below to register and test Growl, this is required for Growl notifications to work.":[null,"Klik hieronder om Gegrom te registreren en te testen, dit is vereist om de meldingen van Gegrom te laten werken."],"Register Growl":[null,"Growl registreren"],"Prowl":[null,"Prowl"],"A Growl client for iOS.":[null,"Een Growl client voor iOS."],"send Prowl notifications?":[null,"berichten naar Prowl versturen?"],"Prowl Message Title":[null,"Prowl Berichttitel"],"Global Prowl API key(s)":[null,"Algemene Prowl API sleutel(s)"],"Prowl API(s) listed here, separated by commas if applicable, will<br> receive notifications for <b>all</b> shows. Your Prowl API key is available at:":[null,"Prowl API(s) hier vermeld en gescheiden door komma's, zullen <br>meldingen ontvangen voor <b>alle</b> series. Jouw Prowl API sleutel is te vinden op:"],"(this field may be blank except when testing.)":[null,"(Dit veld mag leeg zijn tenzij er getest wordt.)"],"Show notification list":[null,"Toon overzicht meldingen"],"-- Select a Show --":[null,"-- Kies een Serie --"],"Configure per-show notifications here by entering Prowl API key(s), separated by commas, '\n 'after selecting a show in the drop-down box. Be sure to activate the 'Save for this show' '\n 'button below after each entry.":[null,"Configureer per-show meldingen hier door het invoeren van je Prowl API key(s), komma-gegescheiden, '\n' en na het selecteren van een show in de drop-down box. Zorg ervoor dat u de onderstaande 'Opslaan voor deze show' '\n' knop activeert, na elke invoer."],"Save for this show":[null,"Opslaan voor deze serie"],"Prowl priority":[null,"Prowl prioriteit"],"Very Low":[null,"Zeer Laag"],"Moderate":[null,"Gemiddeld"],"Normal":[null,"Normaal"],"High":[null,"Hoog"],"Emergency":[null,"Noodgeval"],"priority of Prowl messages from SickRage.":[null,"prioriteit van Prowl berichten van SickRage."],"Libnotify":[null,"Libnotify"],"The standard desktop notification API for Linux/*nix systems. This notifier will only function if the pynotify module is installed (Ubuntu/Debian package <a href=\"apt:python-notify\">python-notify</a>).":[null,"De standaard desktop kennisgevings-API voor Linux / * nix-systemen. Deze melder zal alleen functioneren als de pynotify module is geïnstalleerd (Ubuntu / Debian pakket <a href=\"apt:python-notify\"> python-notify</a>)."],"send Libnotify notifications?":[null,"Libnotify meldingen versturen?"],"Pushover":[null,"Pushover"],"Pushover makes it easy to send real-time notifications to your Android and iOS devices.":[null,"Pushover maakt het gemakkelijk om real-time meldingen te versturen naar uw Android- en iOS-apparaten."],"send Pushover notifications?":[null,"Pushover meldingen versturen?"],"Pushover key":[null,"Pushover sleutel"],"user key of your Pushover account":[null,"gebruikerssleutel van uw Pushover account"],"Pushover API key":[null,"Pushover API sleutel"],"click here":[null,"klik hier"]," to create a Pushover API key":[null," een Pushover API-sleutel te maken"],"Pushover devices":[null,"Pushover apparaten"],"comma separated list of pushover devices you want to send notifications to":[null,"komma-gescheiden lijst van Pushover apparaten waar u meldingen naar wilt sturen"],"Pushover notification sound":[null,"Pushover berichtgeluid"],"Bike":[null,"Fiets"],"Bugle":[null,"Bugel"],"Cash Register":[null,"Kassa"],"Classical":[null,"Klassiek"],"Cosmic":[null,"Ruimte"],"Falling":[null,"Vallen"],"Gamelan":[null,"Gamelan"],"Incoming":[null,"Inkomend"],"Intermission":[null,"Pauze"],"Magic":[null,"Magie"],"Mechanical":[null,"Mechanisch"],"Piano Bar":[null,"Pianoriedel"],"Siren":[null,"Sirene"],"Space Alarm":[null,"Ruimtealarm"],"Tug Boat":[null,"Duwboot"],"Alien Alarm (long)":[null,"Buitenaards Alarm (lang)"],"Climb (long)":[null,"Klim (lang)"],"Persistent (long)":[null,"Nadrukkelijk (lang)"],"Pushover Echo (long)":[null,"Pushover Echo (lang)"],"Up Down (long)":[null,"Omhoog Omlaag (lang)"],"None (silent)":[null,"Geen (silent)"],"Device specific":[null,"Apparaatspecifiek"],"choose notification sound to use":[null,"kies het geluid voor meldingen"],"Pushover priority":[null,"Pushover prioriteit"],"Choose priority to use":[null,"Kies de te gebruiken prioriteit"],"Boxcar 2":[null,"Boxcar 2"],"Read your messages where and when you want them!":[null,"Lees je berichten waar en wanneer je ze wilt!"],"send Boxcar notifications?":[null,"Boxcar meldingen versturen?"],"Boxcar2 access token":[null,"Boxcar2 toegangstoken"],"access token for your Boxcar account.":[null,"toegangstoken voor uw Boxcar account."],"NMA":[null,"NMA"],"Notify My Android":[null,"Melden aan My Android"],"Notify My Android is a Prowl-like Android App and API that offers an easy way to send notifications from your application directly to your Android device.":[null,"Melden aan My Android is een Prowl-achtige Android App en API die een gemakkelijke manier aanbiedt om meldingen van uw aanvraag rechtstreeks naar uw Android-apparaat te sturen."],"send NMA notifications?":[null,"NMA meldingen versturen?"],"NMA API key":[null,"NMA API sleutel"],"(multiple keys must be separated by commas, up to a maximum of 5)":[null,"(meerdere sleutels moeten komma-gescheiden zijn, tot een max. van 5)"],"NMA priority":[null,"NMA prioriteit"],"priority of NMA messages from SickRage.":[null,"prioriteit van NMA berichten van SickRage."],"Pushalot":[null,"Pushalot"],"Pushalot is a platform for receiving custom push notifications to connected devices running Windows Phone or Windows 8.":[null,"Pushalot is een platform voor het ontvangen van aangepaste push-meldingen op aangesloten apparaten die draaien op Windows Phone en Windows 8."],"send Pushalot notifications ?":[null,"Pushalot meldingen versturen?"],"Pushalot authorization token":[null,"Pushalot autorisatietoken"],"authorization token of your Pushalot account.":[null,"autorisatietoken van uw Pushalot account."],"Pushbullet":[null,"Pushbullet"],"Pushbullet is a platform for receiving custom push notifications to connected devices running Android/iOS and desktop browsers such as Chrome, Firefox or Opera.":[null,"Pushbullet is een platform voor het ontvangen van berichten van aangesloten apparaten met Android/iOS en desktop browsers zoals Chrome, Firefox of Opera."],"send Pushbullet notifications?":[null,"Pushbullet meldingen versturen?"],"Pushbullet API key":[null,"Pushbullet API sleutel"],"API key of your Pushbullet account":[null,"API-sleutel van uw Pushbullet account"],"Pushbullet devices":[null,"Pushbullet apparaten"],"Update device list":[null,"Update apparatenlijst"],"Pushbullet channels":[null,"Pushbullet kanalen"],"Free Mobile":[null,"Free Mobile"],"Free Mobile is a famous French cellular network provider.<br> It provides to their customer a free SMS API.":[null,"Free Mobile is een bekende Franse mobiele netwerk provider. <br> Deze verstrekt een gratis SMS API aan hun klanten."],"send SMS notifications?":[null,"SMS meldingen versturen?"],"send a SMS when a download starts?":[null,"een SMS sturen wanneer een download begint?"],"send a SMS when a download finishes?":[null,"een SMS sturen wanneer een download eindigt?"],"send a SMS when subtitles are downloaded?":[null,"een SMS sturen bij gedownloade ondertiteling?"],"Free Mobile customer ID":[null,"Free Mobile klant ID"],"it's your Free Mobile customer ID (8 digits)":[null,"het is je Free Mobile klantnummer (8 cijfers)"],"Free Mobile API key":[null,"Free Mobile API key"],"find your API key in your customer portal.":[null,"vind je API key in je klanten portaal."],"Click below to test your settings.":[null,"Klik hieronder om uw instellingen te testen."],"Telegram":[null,"Telegram"],"Telegram is a cloud-based instant messaging service.":[null,"Telegram is een cloud-based instant messaging service."],"send Telegram notifications?":[null,"Telegram meldingen versturen?"],"send a message when a download starts?":[null,"een bericht sturen wanneer een download begint?"],"send a message when a download finishes?":[null,"stuur een bericht wanneer een download klaar is?"],"send a message when subtitles are downloaded?":[null,"stuur een bericht bij gedownloade ondertiteling?"],"User/group ID":[null,"Gebruiker/groep ID"],"contact @myidbot on Telegram to get an ID":[null,"neem contact op met @myidbot op Telegram om een ID te krijgen"],"Bot API token":[null,"Bot API token"],"contact @BotFather on Telegram to set up one":[null,"neem contact op met @BotFather op Telegram om er een in te stellen"],"Join":[null,"Join"],"Join all of your devices together!":[null,"Voeg al je apparaten samen!"],"send Join notifications?":[null,"Join meldingen versturen?"],"Device ID":[null,"Apparaat ID"],"per device specific id":[null,"per apparaat specifiek id"]," to create a Join API key":[null," een Join API-sleutel te maken"],"Twilio":[null,"Twilio"],"Twilio is a webservice API that allows you to communicate directly with a mobile number. This notifier will send a text directly to your mobile device.":[null,"Twilio is een webservice API die je toestaat om rechtstreeks te communiceren met een mobiel nummer. Deze melder stuurt rechtstreeks een sms naar je mobiele apparaat."],"should SickRage text your mobile device?":[null,"moet SickRage een sms naar je mobiele telefoon sturen?"],"Twilio Account SID":[null,"Twilio gebruikers-ID"],"account SID of your Twilio account.":[null,"account SID van je Twilio account."],"Twilio Auth Token":[null,"Twilio Controlegetal"],"Twilio Phone SID":[null,"Twilio Telefoon ID"],"phone SID that you would like to send the sms from":[null,"telefoon SID waar vandaan je de sms wilt sturen"],"Your phone number":[null,"Je telefoonnummer"],"phone number that will receive the sms. Please use the format +1-###-###-####":[null,"telefoonnummer dat de sms zal ontvangen. Gebruik aub het formaat +31-###-###-####"],"Twitter":[null,"Twitter"],"A social networking and microblogging service, enabling its users to send and read other users' messages called tweets.":[null,"Een social netwerk en microblogging dienst, dat zijn gebruikers berichten laat verzenden en lezen van andere gebruikers genaamd \"tweets\"."],"should SickRage post tweets on Twitter?":[null,"mag SickRage tweets op Twitter plaatsen?"],"you may want to use a secondary account.":[null,"u wilt wellicht een tweede account gebruiken."],"send direct message":[null,"verstuur direct bericht"],"send a notification via Direct Message, not via status update":[null,"stuur een bericht via Direct Message, niet via statusupdate"],"send DM to":[null,"verstuur DM naar"],"Twitter account to send Direct Messages to (must follow you)":[null,"Twitter-account om direct berichten naar te sturen (moet u volgen)"],"Step One":[null,"Stap Een"],"Request Authorization":[null,"Toegang verzoeken"],"Click the \"Request Authorization\" button.<br> This will open a new page containing an auth key.<br> <b>note:</b> if nothing happens check your popup blocker.":[null,"Klik op de \"Verzoek Autorisatie\" knop.<br> Dit zal een nieuwe pagina openen met daarin een autorisatiesleutel.<br> <b>opmerking:</b> als er niks gebeurt, controleer dan je popup blocker."],"Step Two":[null,"Stap Twee"],"Enter the key Twitter gave you below, and click \"Verify Key\".":[null,"Vul hieronder de sleutel in die je van Twitter gekregen hebt en klik op \"Verify Key\"."],"Trakt":[null,"Trakt"],"Trakt helps keep a record of what TV shows and movies you are watching. Based on your favorites, Trakt recommends additional shows and movies you'll enjoy!":[null,"Trakt helpt je bij te houden welke TV series en films je kijkt. Trakt raadt je, gebaseerd op je favorieten, aanvullende series en films aan die je leuk zult vinden!"],"send Trakt.tv notifications?":[null,"verstuur Trakt.tv berichten?"],"username of your Trakt account.":[null,"gebruikersnaam van je Trakt account."],"Trakt PIN":[null,"Trakt PIN"],"Get Trakt PIN":[null,"Trakt PIN verkrijgen"],"PIN code to authorize SickRage to access Trakt on your behalf.":[null,"PIN code om Sickrage toegang te verschaffen tot Trakt onder jouw account."],"API Timeout":[null,"API Timeout"],"seconds to wait for Trakt API to respond. (Use 0 to wait forever)":[null,"aantal seconden dat gewacht moet worden op de Trakt API om te reageren. (Gebruik 0 om voor altijd te wachten)"],"Default indexer":[null,"Standaard indexeerder"],"Sync libraries":[null,"Synchroniseer bibliotheken"],"sync your SickRage show library with your trakt show library.":[null,"synchroniseer uw SickRage seriebibliotheek met uw trakt seriebibliotheek."],"Remove Episodes From Collection":[null,"Verwijder afleveringen uit de collectie"],"remove an episode from your Trakt Collection if it is not in your SickRage Library.":[null,"verwijder een aflevering van je Trakt Collectie als deze zich niet in je SickRage Bibliotheek bevindt."],"Sync watchlist":[null,"Synchroniseer volglijst"],"sync your SickRage show watchlist with your trakt show watchlist (either Show and Episode).":[null,"synchroniseer uw SickRage serievolglijst met jouw trakt serievolglijst (zowel Show en aflevering)."],"episode will be added on watch list when wanted or snatched and will be removed when downloaded ":[null,"aflevering zal worden toegevoegd aan de volglijst als hij gezocht of opgepikt wordt en zal worden verwijderd wanneer de download voltooid is "],"Watchlist add method":[null,"Volglijst toevoegmethode"],"Skip All":[null,"Alles overslaan"],"Download Pilot Only":[null,"Download alleen de eerste aflevering"],"Get whole show":[null,"Haal de volledige serie op"],"method in which to download episodes for new shows.":[null,"methode om afleveringen te downloaden voor nieuw toegevoegde series."],"Remove episode":[null,"Verwijder aflevering"],"remove an episode from your watchlist after it is downloaded.":[null,"verwijder een aflevering van de volglijst nadat het is gedownload."],"Remove series":[null,"Verwijder Serie(s)"],"remove the whole series from your watchlist after any download.":[null,"verwijder de hele serie van de volglijst na elke download."],"Remove watched show":[null,"Verwijder gekeken series"],"remove the show from sickrage if it's ended and completely watched":[null,"verwijder de serie uit SickRage als het zowel afgelopen als gezien is"],"Start paused":[null,"Start gepauzeerd"],"shows grabbed from your trakt watchlist start paused.":[null,"series via Trakt verkregen krijgen de status gepauzeerd mee."],"Trakt blackList name":[null,"Naam van de Trakt blacklist"],"name (slug) of list on Trakt for blacklisting show on 'Add Trending Show' & 'Add Recommended Shows' pages":[null,"naam (slug) van de lijst op Trakt om een serie te blacklisten in 'Toevoegen Populaire Serie' & 'Toevoegen Aanbevolen Series' pagina's"],"Email":[null,"Email"],"Allows configuration of email notifications on a per show basis.":[null,"Laat configuratie van e-mail meldingen per show toe."],"send email notifications?":[null,"e-mail meldingen versturen?"],"SMTP host":[null,"SMTP-host"],"hostname of your SMTP email server.":[null,"hostnaam van uw SMTP emailserver."],"SMTP port":[null,"SMTP poort"],"port number used to connect to your SMTP host.":[null,"poort nummer om te verbinden met uw SMTP-host."],"SMTP from":[null,"SMTP van"],"sender email address, some hosts require a real address.":[null,"e-mailadres van afzender, voor sommige hosts is een echt adres vereist."],"Use TLS":[null,"Gebruik TLS"],"check to use TLS encryption.":[null,"selecteer om TLS-codering te gebruiken."],"SMTP user":[null,"SMTP gebruiker"],"(optional) your SMTP server username.":[null,"(optioneel) uw SMTP server gebruikersnaam."],"SMTP password":[null,"SMTP wachtwoord"],"(optional) your SMTP server password.":[null,"(optioneel) uw SMTP server wachtwoord."],"Global email list":[null,"Globale e-maillijst"],"email addresses listed here, separated by commas if applicable, will<br> receive notifications for <b>all</b> shows.":[null,"e-mailadressen die hier worden vermeld, gescheiden door komma's indien <br> van toepassing, zullen meldingen voor<b>alle</b> series ontvangen."],"(This field may be blank except when testing.)":[null,"(Dit veld mag leeg zijn tenzij er getest wordt.)"],"Email Subject":[null,"Emailonderwerp"],"use a custom subject for some privacy protection?":[null,"een aangepast onderwerp gebruiken voor privacybescherming?"],"(leave blank for the default SickRage subject)":[null,"(leeg laten voor het standaard onderwerp van SickRage)"],"configure per-show notifications here by entering email address(es), separated by commas,":[null,"configureer hier meldingen per serie door het invoeren van e-mailadres(sen), gescheiden door komma's,"],"after selecting a show in the drop-down box. Be sure to activate the 'Save for this show'":[null,"na het selecteren van een show in de drop-down box. Zorg ervoor dat u \"opslaan voor deze show\" activeert"],"button below after each entry.":[null,"knop hieronder na elke entree."],"Slack":[null,"Slack"],"Slack brings all your communication together in one place. It's real-time messaging, archiving and search for modern teams.":[null,"Slack centraliseert al je communicatie. Het is real-time messaging, archivering en zoekt naar moderne teams."],"should SickRage post messages on Slack?":[null,"mag SickRage berichten posten op Slack?"],"Slack Incoming Webhook":[null,"Slack binnenkomende Webhook"],"Discord":[null,"Discord"],"All-in-one voice and text chat for gamers that's free, secure, and works on both your desktop and phone.":[null,"Alles-in-één spraak en chat voor gamers dat gratis en veilig is, en werkt op zowel desktops als smartphones."],"Should SickRage post messages on Discord?":[null,"Moet SickRage berichten plaatsen op Discord?"],"Discord Incoming Webhook":[null,"Discord binnenkomende Webhook"],"Create webhook under channel settings.":[null,"Aanmaken webhook onder web-kanaal instellingen."],"Discord Bot Name":[null,"Discord Bot Naam"],"Blank will use webhook default Name.":[null,"Leeggelaten wordt de standaard webhook naam gebruikt."],"Discord Avatar URL":[null,"Discord Avatar URL"],"Blank will use webhook default Avatar.":[null,"Leeggelaten wordt de standaard webhook Avatar gebruikt."],"Discord TTS":[null,"Discord TTS"],"Send notifications using text-to-speech":[null,"Meldingen versturen mbv text-to-speech"],"Post-Processing":[null,"Nabewerking"],"Episode Naming":[null,"Aflevering benaming"],"Metadata":[null,"Metagegevens"],"Settings that dictate how SickRage should process completed downloads.":[null,"Instellingen die bepalen hoe SickRage voltooide downloads verwerkt."],"enable the automatic post processor to scan and process any files in your Post Processing Dir":[null,"schakel de automatische nabewerking in om alle bestanden te scannen en te verwerken in de Nabewerkingsmap"],"do not use if you use an external Post Processing script":[null,"niet gebruiken als je een extern Nabewerkingsscript gebruikt"],"Post Processing Dir":[null,"Nabewerkingsmap"],"the folder where your download client puts the completed TV downloads.":[null,"de map waar de download client de voltooide TV downloads zet."],"please use seperate downloading and completed folders in your download client if possible.":[null,"gebruik bij voorkeur aparte mappen voor complete en incomplete downloads."],"Processing Method":[null,"Verwerkingsmethode"],"what method should be used to put files into the library?":[null,"welke methode moet worden gebruikt om bestanden in de bibliotheek te zetten?"],"if you keep seeding torrents after they finish, please avoid the 'move' processing method to prevent errors.":[null,"als je torrents blijft seeden nadat ze klaar zijn, vermijd dan de \"verplaats\" functie om fouten te voorkomen."],"Auto Post-Processing Frequency":[null,"Nabewerkingscyclus"],"time in minutes to check for new files to auto post-process (min 10)":[null,"interval in minuten waarop gecontroleerd moet worden op nieuwe bestanden die in aanmerking komen voor nabewerking (min. 10 minuten)"],"Postpone post processing":[null,"Stel nabewerking uit"],"wait to process a folder if sync files are present.":[null,"wacht met het verwerken van een map als er sync bestanden zijn."],"Sync File Extensions":[null,"Sync bestandsextensies"],"comma seperated list of extensions or filename globs SickRage ignores when Post Processing":[null,"gebruik een komma tussen meerdere namen en extensies die Sickrage moet negeren tijdens de nabewerking"],"Rename Episodes":[null,"Hernoem Afleveringen"],"rename episode using the Episode Naming settings?":[null,"hernoem aflevering met de \"Aflevering benaming\" instellingen?"],"Create missing show directories":[null,"Maak ontbrekende Seriemappen"],"create missing show directories when they get deleted":[null,"bij ontbreken, maak de Seriemappen opnieuw aan"],"Add shows without directory":[null,"Toevoegen series zonder map"],"add shows without creating a directory (not recommended)":[null,"voeg series toe zonder een map te creëren (niet aanbevolen)"],"Move associated files":[null,"Verplaats gerelateerde bestanden"],"move associated (srt/srr/sfv/etc) files while post processing?":[null,"verplaatsen gerelateerde bestanden (srt/srr/sfv/etc) tijdens nabewerking?"],"Rename .nfo file":[null,"Hernoem .nfo bestanden"],"rename the original .nfo file to .nfo-orig to avoid conflicts?":[null,"hernoem het originele .nfo bestand naar .nfo-orig om conflicten te vermijden?"],"Associated file extensions":[null,"Gerelateerde bestandsextensies"],"comma separated list of associated file extensions SickRage should keep while post processing.":[null,"door komma's gescheiden lijst met bestandsextensies die SickRage tijdens het nabewerken moet bewaren."],"leaving it empty means no associated files will be post processed":[null,"leeg laten betekent dat gerelateerde bestanden niet worden nabewerkt"],"Delete non associated files":[null,"Verwijder niet-gerelateerde bestanden"],"delete non associated files while post processing?":[null,"verwijderen niet-gerelateerde bestanden tijdens nabewerking?"],"Change File Date":[null,"Bestandsdatum aanpassen"],"set last modified filedate to the date that the episode aired?":[null,"verander de bestandsdatum naar de datum waarop de aflevering is uitgezonden?"],"some systems may ignore this feature.":[null,"dit werkt niet op alle systemen."],"Timezone for File Date":[null,"Tijdzone voor bestandsdatum"],"local":[null,"lokaal"],"network":[null,"netwerk"],"what timezone should be used to change File Date?":[null,"welke tijdzone moet worden gebruikt voor het wijzigen van de bestandsdatum?"],"Unpack":[null,"Uitpakken"],"What to do with archived releases found in your <i>TV Download Dir</i>?":[null,"Wat te doen met gearchiveerde afleveringen in de <i>TV Download Map</i>?"],"Ignore (do not process contents)":[null,"Negeren (inhoud niet verwerken)"],"Unpack (process contents)":[null,"Uitpakken (verwerk inhoud)"],"Treat as video (process archive as-is)":[null,"Behandel als video (verwerk archieven als archief)"],"'Unpack' only works with RAR archives":[null,"'Uitpakken' werkt alleen met RAR bestanden"],"Windows":[null,"Windows"],"WinRar is required on windows":[null,"WinRar is vereist op windows"],"Unpack Directory":[null,"Uitpak-Map"],"Choose a path to unpack files, leave blank to unpack in download dir":[null,"Kies een pad voor uit te pakken bestanden, bij leeglaten wordt de download-map gebruikt"],"Unrar Location":[null,"Unrar bestandslocatie"],"add the path to unrar if it is not in the system path":[null,"Voeg het Unrar pad toe als het niet in het systeempad zit"],"Alternate Unrar Tool":[null,"Alternatief Unrar programma"],"add the path to an alternate unrar tool if it is not in the system path":[null,"voeg het pad naar een ander unrar programma toe als het niet in het systeempad zit"],"Delete RAR contents":[null,"Verwijder inhoud RAR archief"],"delete content of RAR files, even if Process Method not set to move?":[null,"verwijder het RAR bestand, ook als de verwerkingsmethode niet ingesteld staat op verplaatsen?"],"only working with RAR archive":[null,"werkt enkel voor RAR bestanden"],"Don't delete empty folders":[null,"Lege mappen niet verwijderen"],"leave empty folders when Post Processing?":[null,"lege mappen bij nabewerking niet verwijderen?"],"can be overridden using manual Post Processing":[null,"kan worden overschreven d.m.v. handmatige nabewerking"],"Follow symbolic-links":[null,"Gebruik symbolic-links"],"follow down symbolic links in download directory?":[null,"spring naar symbolic-links in download-map?"],"<b>EXPERTS ONLY.</b><br>Enable only if you know what <b>circular symbolic links</b> are,<br>and can <b>verify that you have none</b>.":[null,"<b>ALLEEN VOOR EXPERTS.</b><br>Alleen activeren bij goede kennis van <b>circular symbolic links</b>,<br>en is geverifieerd <b>dat deze niet aanwezig zijn</b>."],"Use icacls":[null,"icacls gebruiken"],"Windows only":[null,"alleen voor Windows"],"sets video permissions after using the move method in post processing":[null,"stelt de videorechten in na gebruik van de verplaatsfunctie tijdens nabewerking"],"Extra Scripts":[null,"Extra Scripts"],"see":[null,"zie"],"for script arguments description and usage.":[null,"voor script argumenten, beschrijving en gebruik."],"How SickRage will name and sort your episodes.":[null,"Hoe SickRage je afleveringen zal noemen en sorteren."],"Name Pattern":[null,"Naam Patroon"],"Toggle Naming Legend":[null,"Toon/verberg Legenda Benaming"],"don't forget to add quality pattern. Otherwise after post-processing the episode will have UNKNOWN quality":[null,"vergeet niet een kwaliteitspatroon toe te voegen. Anders zal de aflevering na nabewerking de kwaliteit ONBEKEND hebben"],"Meaning":[null,"Betekenis"],"Pattern":[null,"Patroon"],"Result":[null,"Resultaat"],"Use lower case if you want lower case names (eg. %sn, %e.n, %q_n etc)":[null,"Gebruik kleine letters als je kleine letters in je naam wilt (bijv. %sn, %e.n, %q_n etc)"],"Show Name":[null,"Naam Serie"],"Show.Name":[null,"Naam.Serie"],"Show_Name":[null,"Naam_Serie"],"Season Number":[null,"Seizoennummer"],"XEM Season Number":[null,"XEM Seizoennummer"],"Episode Number":[null,"Afleveringnummer"],"XEM Episode Number":[null,"XEM Afleveringnummer"],"Episode Name":[null,"Naam Aflevering"],"Episode.Name":[null,"Naam.Aflevering"],"Episode_Name":[null,"Naam_Aflevering"],"Air Date":[null,"Uitzenddatum"],"Post-Processing Date":[null,"Datum van verwerking"],"Quality":[null,"Kwaliteit"],"Scene Quality":[null,"Scènekwaliteit"],"Release Name":[null,"Versienaam"],"SickRage' is used in place of RLSGROUP if it could not be properly detected":[null,"SickRage wordt gebruikt in plaats van RLSGROUP als het niet goed kan worden gedetecteerd"],"Release Group":[null,"Versiegroep"],"If episode is proper/repack add 'proper' to name.":[null,"Als een aflevering proper/repack is, voeg dan 'proper' toe aan de naam."],"Release Type":[null,"Versietype"],"Multi-Episode Style":[null,"Meerdere-afleveringenstijl"],"Single-EP Sample":[null,"Enkele-aflevering - Voorbeeld"],"Multi-EP sample":[null,"Meerdere afleveringen - Voorbeeld"],"Strip Show Year":[null,"Verwijder Seriejaar"],"remove the TV show's year when renaming the file?":[null,"het jaartal van de TV serie verwijderen wanneer het bestand wordt hernoemd?"],"only applies to shows that have year inside parentheses":[null,"alleen van toepassing op shows met het jaartal tussen haakjes"],"Custom Air-By-Date":[null,"Aangepaste Uitzenddatum"],"name air-by-date shows differently than regular shows?":[null,"noem air-by-date series anders dan reguliere series?"],"Toggle ABD Naming Legend":[null,"Toon/verberg Legenda ABD benaming"],"Regular Air Date":[null,"Reguliere Uitzenddatum"],"Year":[null,"Jaar"],"Month":[null,"Maand"],"Day":[null,"Dag"],"Multi-EP style is ignored":[null,"Meerdere-afleveringenstijl wordt genegeerd"],"Custom Sports":[null,"Aangepaste Sporten"],"name sports shows differently than regular shows?":[null,"sportseries anders noemen dan reguliere series?"],"Toggle Sports Naming Legend":[null,"Toon/verberg Legenda Sport benaming"],"Sports Air Date":[null,"Sport uitzenddatum"],"Custom Anime":[null,"Aangepaste Anime"],"name anime shows differently than regular shows?":[null,"anime series anders noemen dan reguliere series?"],"Toggle Anime Naming Legend":[null,"Toon/verberg Anime Legenda benaming"],">XEM Season Number":[null,">XEM Seizoennummer"],"Single-EP Anime Sample":[null,"Enkele-aflevering Anime Voorbeeld"],"Multi-EP Anime sample":[null,"Meerdere-afleveringen Anime voorbeeld"],"Add Absolute Number":[null,"Voeg absolute nummer toe"],"add the absolute number to the season/episode format?":[null,"het absolute nummer toevoegen aan het seizoen/aflevering formaat?"],"only applies to anime. (eg. S15E45 - 310 vs S15E45)":[null,"alleen van toepassing voor anime. (bv. S15E45 - 310 vs S15E45)"],"Only Absolute Number":[null,"Enkel het absolute nummer"],"replace season/episode format with absolute number":[null,"vervang seizoen/aflevering formaat door het absolute nummer"],"only applies to anime.":[null,"alleen van toepassing voor anime."],"No Absolute Number":[null,"Geen absoluut nummer"],"don't include the absolute number":[null,"voeg het absolute nummer niet toe"],"The data associated to the data. These are files associated to a TV show in the form of images and text that, when supported, will enhance the viewing experience.":[null,"Gegevensbestanden die zijn gekoppeld aan de series in de vorm van afbeeldingen en tekst die de kijkervaring ten goede komen."],"Metadata Type":[null,"Soort metadata"],"toggle metadata options that you wish to be created":[null,"Aan/uitzetten metadata opties die je gemaakt wilt zien"],"multiple targets may be used":[null,"meerdere doelen mogen worden gebruikt"],"Select Metadata":[null,"Selecteer metadata"],"Provider Priorities":[null,"Zoekmachine Volgorde"],"Provider Options":[null,"Zoekmachine Instellingen"],"Configure Custom Newznab Providers":[null,"Configureer eigen Newznab Zoekmachines "],"Configure Custom Torrent Providers":[null,"Configureer eigen Torrent zoekmachines"],"Check off and drag the providers into the order you want them to be used.":[null,"Vink en sleep de zoekmachines in de volgorde waarin ze doorzocht moeten worden."],"At least one provider is required but two are recommended.":[null,"Er is minimaal 1 zoekmachine noodzakelijk maar 2 is aanbevolen."],"Torrent providers can be toggled in ":[null,"Torrent zoekmachines kunnen aan- of uitgezet worden in "],"Provider does not support backlog searches at this time.":[null,"Zoekmachine ondersteunt (nog) geen Werkvoorraad-zoekopdrachten."],"Provider is <b>NOT WORKING</b>.":[null,"Zoekmachine <b>WERKT NIET</b>."],"Configure individual provider settings here.":[null,"Configureer hier de individuele Zoekmachines."],"Check with provider's website on how to obtain an API key if needed.":[null,"Kijk op de website van de Zoekmachine hoe je een API sleutel kunt bemachtigen."],"Configure provider":[null,"Selecteer Zoekmachine"],"no providers available to configure.":[null,"geen aanbieders beschikbaar om te configureren."],"URL":[null,"URL"],"Enable daily searches":[null,"Dagelijkse zoekopdrachten inschakelen"],"enable provider to perform daily searches.":[null,"gebruik deze Zoekmachine voor dagelijkse zoekopdrachten."],"Enable backlog searches":[null,"Schakel Werkvoorraad-zoekopdrachten in"],"enable provider to perform backlog searches.":[null,"gebruik Zoekmachine voor Werkvoorraad-zoekopdrachten."],"Season search mode":[null,"Seizoen zoekmodus"],"when searching for complete seasons you can choose to have it look for season packs only, or choose to have it build a complete season from just single episodes.":[null,"bij het zoeken naar volledige seizoenen is het mogelijk om enkel op seizoen pakketten te zoeken of het seizoen te laten opbouwen uit alle afzonderlijke afleveringen."],"season packs only.":[null,"alleen complete seizoenen."],"episodes only.":[null,"alleen afleveringen."],"Enable fallback":[null,"Stel alternatief in"],"when searching for a complete season depending on search mode you may return no results, this helps by restarting the search using the opposite search mode.":[null,"als het zoeken naar een volledig seizoen geen resultaat geeft, kan het helpen om de andere zoekmethode te gebruiken."],"Custom URL":[null,"Aangepaste URL"],"the URL should include the protocol (and port if applicable). Examples: http://192.168.1.4/ or http://localhost:3000/":[null,"de URL zou het protocol (en poort indien van toepassing) moeten bevatten. Voorbeelden: http://192.168.1.4/ of http://localhost:3000/"],"Api key":[null,"API sleutel"],"Digest":[null,"Overzicht"],"Hash":[null,"Hash"],"Passkey":[null,"Sleutel"],"Cookies":[null,"Cookies"],"example: uid=1234;pass=567845439634987<br>note: uid and pass are not your username/password.<br>use DevTools or Firebug to get these values after logging in on your browser.":[null,"voorbeeld: uid=1234;pass=567845439634987<br>Opm: uid en pass zijn niet je username/password.<br>Gebruik DevTools of Firebug om deze gegevens te verkrijgen na het inloggen op je webbrowser."],"Pin":[null,"Pin"],"Seed ratio":[null,"Upload/download verhouding"],"stop transfer when ratio is reached<br>(-1 SickRage default to seed forever, or leave blank for downloader default)":[null,"upload stoppen zodra de rato bereikt is<br>(-1 om oneindig te blijven uploaden of laat leeg voor de standaard instelling van het download programma)"],"Minimum seeders":[null,"Minimum aantal seeders"],"Minimum leechers":[null,"Minimum aantal leechers"],"Confirmed download":[null,"Download bevestigd"],"only download torrents from trusted or verified uploaders ?":[null,"alleen torrents downloaden van vertrouwde of geverifieerde uploaders?"],"Ranked torrents":[null,"Beoordeelde torrents"],"only download ranked torrents (trusted releases)":[null,"alleen beoordeelde torrents downloaden (vertrouwde versies)"],"English torrents":[null,"Engelse torrents"],"only download english torrents, or torrents containing english subtitles":[null,"download enkel engelse torrents, of torrents met engelse ondertiteling"],"For Spanish torrents":[null,"Voor Spaanse torrents"],"ONLY search on this provider if show info is defined as \"Spanish\" (avoid provider's use for VOS shows)":[null,"ALLEEN zoeken bij deze leverancier als de show informatie is gedefinieerd als \"Spanish\" (voorkom leveranciers gebruik voor VOS shows)"],"Sorting results by":[null,"Sorteer resultaten op"],"Freeleech":[null,"Freeleech"],"only download <b>\"FreeLeech\"</b> torrents.":[null,"alleen <b>\"FreeLeech\"</b>-torrents downloaden."],"Category":[null,"Categorie"],"select torrent with Italian subtitle":[null,"selecteer torrent met Italiaanse ondertiteling"],"Configure Custom<br>Newznab Providers":[null,"Configureer de <br>Newznab Provider"],"Add and setup or remove custom Newznab providers.":[null,"Toevoegen, instellen en verwijderen van eigen Newznab zoekmachines."],"Select provider":[null,"Selecteer aanbieder"],"-- add new provider --":[null,"-- nieuwe leverancier toevoegen --"],"Provider name":[null,"Aanbiedersnaam"],"Site URL":[null,"Site URL"],"Newznab search categories":[null,"Newznab zoek categorieën"],"select your Newznab categories on the left, and click the \"update categories\" button to use them for searching.) <b>don't forget to to save the form!":[null,"selecteer de Newznab categorieën links en klik de \"update categorieën\" knop om ze te gebruiken voor het zoeken.) <b>vergeet niet de veranderingen op te slaan!"],"Update Categories":[null,"Update Categorieën"],"Add":[null,"Voeg toe"],"Delete":[null,"Wissen"],"Add and setup or remove custom RSS providers.":[null,"Toevoegen en instellen of verwijderen aangepaste RSS leveranciers."],"RSS URL":[null,"RSS URL"],"Search element":[null,"Zoek element"],"eg: title":[null,"bijv: titel"],"Episode Search":[null,"Aflevering Zoeken"],"NZB Search":[null,"NZB zoekopdracht"],"Torrent Search":[null,"Torrent zoekopdracht"],"How to manage searching with":[null,"Hoe om te gaan met zoeken met"],"Randomize Providers":[null,"Willekeurige zoekmachines"],"randomize the provider search order instead of going in order of placement":[null,"Willekeurige volgorde zoekmachines i.p.v. boven naar beneden"],"Download propers":[null,"Download propers"],"replace original download with \"Proper\" or \"Repack\" if nuked":[null,"vervang originele download met \"Proper\" of \"Repack\" als deze corrupt is"],"Check propers every":[null,"Controleer propers elke"],"24 hours":[null,"24 uur"],"4 hours":[null,"4 uur"],"90 mins":[null,"90 minuten"],"45 mins":[null,"45 minuten"],"15 mins":[null,"15 minuten"],"Backlog search day(s)":[null,"Werkvoorraad-zoekopdracht dag(en)"],"number of day(s) that the \"Forced Backlog Search\" will cover (e.g. 7 Days)":[null,"aantal dag(en) dat de \"Geforceerd Werkvoorraad Zoeken\" moet omvatten (bijv 7 dagen)"],"Backlog search frequency":[null,"Werkvoorraad zoekfrequentie"],"time in minutes between searches (min.":[null,"tijd in minuten tussen zoekopdrachten (min."],"Daily search frequency":[null,"Dagelijkse zoekfrequentie"],"Usenet retention":[null,"Usenet retentie"],"age limit in days for usenet articles to be used (e.g. 500)":[null,"dagen. Bestaanslimiet voor Usenet bestanden (bv 500)"],"Ignore words":[null,"Negeer woorden"],"results with one or more word from this list will be ignored<br>separate words with a comma, e.g. \"word1,word2,word3\"":[null,"resultaten met één of meer woorden uit deze lijst worden genegeerd<br>Zorg voor een komma tussen de woorden, bijv. \"woord1,woord2,woord3\""],"Require words":[null,"Vereiste woorden"],"results with no word from this list will be ignored<br>separate words with a comma, e.g. \"word1,word2,word3\"":[null,"resultaten zonder één woord van deze lijst wordt genegeerd.<br>Zorg voor een komma tussen de woorden, bijv. \"woord1,woord2,woord3\""],"Trackers list":[null,"Trackerlijst"],"trackers that will be added to magnets without trackers<br>separate trackers with a comma, e.g. \"tracker1,tracker2,tracker3\"":[null,"trackers die worden toegevoegd aan tracker-loze magnet-torrents.<br>Trackers scheiden met een komma, bijv.: \"tracker1,tracker2,tracker3\""],"Ignore language names in subbed results":[null,"Negeer taalnamen bij ondertitelde afleveringen"],"ignore subbed releases based on language names <br>\n Example: \"dk\" will ignore words: dksub, dksubs, dksubbed, dksubed <br>\n separate languages with a comma, e.g. \"lang1,lang2,lang3":[null,"negeer ondertitelde uitgaves gebaseerd op taalnamen <br>\n Bijv.:\"dk\" zal deze woorden negeren: dksub, dksubs, dksubbed, dksubed <br>\n talen scheiden met een komma, bijv. \"taal1,taal2,taal3\""],"Allow high priority":[null,"Hoge prioriteit"],"set downloads of recently aired episodes to high priority":[null,"Recent uitgezonden afleveringen worden met hoge prioriteit gedownload"],"Use Failed Downloads":[null,"Gebruik Mislukte Downloads"],"use Failed Download Handling?":[null,"Mislukte Download Afhandeling gebruiken?"],"will only work with snatched/downloaded episodes after enabling this":[null,"werkt alleen met opgepikte/gedownloade afleveringen wanneer aangevinkt"],"Delete Failed":[null,"Mislukte verwijderen"],"delete files left over from a failed download?":[null,"verwijder alle bestanden van een mislukte download?"],"this only works if Use Failed Downloads is enabled.":[null,"dit werkt alleen als Gebruik Mislukte Downloads aan staat."],"How to handle NZB search results.":[null,"Hoe om te gaan met NZB zoekresultaten."],"Search NZBs":[null,"Zoek NZBs"],"enable NZB search providers":[null,"NZB zoekmachines inschakelen"],"Send .nzb files to":[null,"Stuur nzbs naar"],"SABnzbd server URL":[null,"Adres SASnzbd server"],"URL to your SABnzbd server (e.g. http://localhost:8080/)":[null,"Het adres van de SABnzbd server (bijv. http://localhost:8080/)"],"SABnzbd username":[null,"SABnzbd gebruikersnaam"],"(blank for none)":[null,"(leeg voor geen)"],"SABnzbd password":[null,"SABnzbd wachtwoord"],"SABnzbd API key":[null,"SABnzbd API-sleutel"],"locate at... SABnzbd Config -> General -> API Key":[null,"te vinden in... SABnzbd Config -> General -> API Key"],"Use SABnzbd category":[null,"Gebruik SABnzbd categorie"],"add downloads to this category (e.g. TV)":[null,"voeg downloads toe aan deze categorie (bijv. TV)"],"Use SABnzbd category (backlog episodes)":[null,"Gebruik SABnzbd categorie (afleveringen werkvoorraad)"],"add downloads of old episodes to this category (e.g. TV)":[null,"voeg downloads van oude afleveringen toe aan deze categorie (bijv. TV)"],"Use SABnzbd category for anime":[null,"Gebruik de SABnzbd categorie voor anime"],"add anime downloads to this category (e.g. anime)":[null,"voeg anime downloads toe aan deze categorie (bijv. anime)"],"Use SABnzbd category for anime (backlog episodes)":[null,"Gebruik SABnzbd categorie voor anime (afleveringen werkvoorraad)"],"add anime downloads of old episodes to this category (e.g. anime)":[null,"voeg oude anime downloads toe aan deze categorie (bijv. anime)"],"Use forced priority":[null,"Forceer prioriteit"],"enable to change priority from HIGH to FORCED":[null,"prioriteit wijzigen van HIGH naar FORCED inschakelen"],"Black hole folder location":[null,"Locatie van de black hole map"],"<b>.nzb</b> files are stored at this location for external software to find and use":[null,"<b>.nzb</b> bestanden worden hier opgeslagen om te worden gebruikt door externe programma's"],"Connect using HTTPS":[null,"Verbinden met HTTPS"],"enable Secure control in NZBGet and set the correct Secure Port here":[null,"schakel Secure Control in NZBGet in en geef hier de correcte poort aan"],"NZBget host:port":[null,"NZBget host: poort"],"(e.g. localhost:6789)":[null,"(b.v. localhost:6789)"],"NZBget RPC host name and port number (not NZBgetweb!)":[null,"NZBGet RPC host naam en poort nummer (geen NZBgetweb!)"],"NZBget username":[null,"NZBget gebruikersnaam"],"locate in nzbget.conf (default:nzbget)":[null,"te vinden in nzbget.conf (standaard: nzbget)"],"NZBget password":[null,"NZBget wachtwoord"],"locate in nzbget.conf (default:tegbzn6789)":[null,"te vinden in nzbget.conf (standaard: tegbzn6789)"],"Use NZBget category":[null,"Gebruik NZBget categorie"],"send downloads marked this category (e.g. TV)":[null,"voeg downloads toe gemarkeerd als deze categorie (bijv. TV)"],"Use NZBget category (backlog episodes)":[null,"Gebruik deze NZBget categorie (afleveringen werkvoorraad)"],"send downloads of old episodes marked this category (e.g. TV)":[null,"lever downloads van oude afleveringen aan met deze categorie (bijv. TV)"],"Use NZBget category for anime":[null,"Gebruik deze NZBget categorie voor anime"],"send anime downloads marked this category (e.g. anime)":[null,"lever anime downloads van oude afleveringen aan met deze categorie (bijv. anime)"],"Use NZBget category for anime (backlog episodes)":[null,"Gebruik deze NZBget categorie voor anime (afleveringen werkvoorraad)"],"send anime downloads of old episodes marked this category (e.g. anime)":[null,"lever anime downloads van oude afleveringen aan met deze categorie (bijv. anime)"],"NZBget priority":[null,"NZBget prioriteit"],"Very low":[null,"Heel laag"],"Low":[null,"Laag"],"Very high":[null,"Heel hoog"],"Force":[null,"Forceer"],"priority for daily snatches (no backlog)":[null,"prioriteit voor dagelijkse downloads (geen werkvoorraad)"],"Torrent host:port":[null,"Torrent host: poort"],"URL to your Synology DSM (e.g. http://localhost:5000/)":[null,"De URL van de Synology DSM (bijv. http://localhost:5000/)"],"Client username":[null,"Gebruikersnaam van client"],"Client password":[null,"Client wachtwoord"],"Downloaded files location":[null,"Locatie van de gedownloade bestanden"],"where Synology Download Station will save downloaded files (blank for client default)":[null,"waar Synology Download Station gedownloade bestanden (leeg voor de standaardwaarde van de client) opslaat"],"the destination has to be a shared folder for Synology DS":[null,"de bestemming moet een gedeelde map zijn voor de Synology DS"],"Click below to test":[null,"Klik hieronder om te testen"],"How to handle Torrent search results.":[null,"Hoe om te gaan met Torrent zoekresultaten."],"Search torrents":[null,"Zoek torrents"],"enable torrent search providers":[null,"schakel torrent Zoekmachines in"],"Send .torrent files to":[null,"Stuur .torrent bestanden naar"],"<b>.torrent</b> files are stored at this location for external software to find and use":[null,"<b>.torrent</b> bestanden worden opgeslagen op deze locatie om te kunnen worden gebruikt door externe programma's"],"URL to your torrent client (e.g. http://localhost:8000/)":[null,"Netwerkadres naar uw torrent-client (bv http://localhost:8000 /)"],"Torrent RPC URL":[null,"Torrent RPC URL"],"the path without leading and trailing slashes (e.g. transmission)":[null,"Het pad zonder / of \\ (bijv. transmission)"],"Http Authentication":[null,"HTTP-verificatie"],"Verify certificate":[null,"Certificaat verifiëren"],"disable if you get \"Deluge: Authentication Error\" in your log":[null,"schakel dit uit wanneer \"Deluge: Authentication Error\" in het foutenlogboek voorkomt"],"verify SSL certificates for HTTPS requests":[null,"controleer de SSL certificaten bij HTTPS verzoeken"],"Add label to torrent":[null,"Label toevoegen aan torrent"],"(blank spaces are not allowed)":[null,"(spaties zijn niet toegestaan)"],"label plugin must be enabled in Deluge clients":[null,"de label plugin moet worden ingeschakeld in de Deluge applicatie"],"for QBitTorrent 3.3.1 and up":[null,"voor QBitTorrent 3.3.1 en hoger"],"Add label to torrent for anime":[null,"Label toevoegen aan torrent voor anime"],"for QBitTorrent 3.3.1 and up ":[null,"voor QBitTorrent 3.3.1 en hoger "],"where <span id=\"torrent_client\">the torrent client</span> will save downloaded files (blank for client default)":[null,"waar <span id=\"torrent_client\"> de torrent client</span> de gedownloade bestanden opslaat (laat leeg voor de client standaard)"],"the destination has to be a shared folder for Synology DS</span>":[null,"de bestemming moet een gedeelde map zijn voor de Synology DS</span>"],"Minimum seeding time":[null,"Minimum seeding tijd"],"time in hours":[null,"tijd in uren"],"(default:'0' passes blank to client and '-1' passes nothing)":[null,"(standaard:'0' geeft leeg door naar de client en '-1' geeft niks door)"],"Start torrent paused":[null,"Start torrent gepauzeerd"],"add .torrent to client but do <b style=\"font-weight:900\">not</b> start downloading":[null,"voeg .torrent toe aan client maar start nog <b style=\"font-weight:900\">niet</b> het downloaden"],"Allow high bandwidth":[null,"Hoge bandbreedte toestaan"],"use high bandwidth allocation if priority is high":[null,"zet bandbreedtetoewijzing op \"high\" als de prioriteit op hoog staat"],"Test Connection":[null,"Test verbinding"],"Windows Shares":[null,"Windows Shares"],"Defines your existing windows shares so that we can add them to the browse dialog":[null,"Definieert uw bestaande windows-shares, zodat we ze aan het dialoogvenster Bladeren toevoegen kunnen"],"Share #{number}":[null,"Share #{number}"],"Share label":[null,"Bestandsdelen label"],"Hostname or IP":[null,"Hostnaam of IP-adres"],"Share path":[null,"Pad naar share"],"Subtitles Search":[null,"Ondertiteling Zoeken"],"Subtitles Plugin":[null,"Ondertiteling zoekmachines"],"Plugin Settings":[null,"Zoekmachine instellingen"],"Settings that dictate how SickRage handles subtitles search results.":[null,"Instellingen hoe SickRage met ondertiteling zoekresultaten omgaat."],"Search Subtitles":[null,"Zoek ondertiteling"],"Subtitle Languages":[null,"Ondertitelingstalen"],"Subtitle Directory":[null,"Ondertitelingsmap"],"the directory where SickRage should store your <i>Subtitles</i> files.":[null,"De map waar SickRage je <i>Ondertiteling</i> bestanden opslaat."],"leave empty if you want store subtitle in episode path.":[null,"laat dit leeg als de bestanden bij de afleveringen opgeslagen moeten worden."],"Subtitle Find Frequency":[null,"Ondertiteling Zoekfrequentie"],"time in hours between scans (default: 1)":[null,"tijd in uren tussen scans (standaard: 1)"],"Include Specials":[null,"Inclusief Specials"],"include the show's specials when searching for subtitles?":[null,"ook naar ondertiteling voor speciale afleveringen zoeken?"],"Perfect matches":[null,"Perfecte matches"],"only download subtitles that match: release group, video codec, audio codec and resolution":[null,"alleen ondertiteling downloaden die overeen komen met: versiegroep, video codec, audio codec en resolutie"],"if disabled you may get out of sync subtitles":[null,"Je kunt ongesynchroniseerde ondertiteling krijgen als je dit uitschakelt"],"Subtitles History":[null,"Ondertitelinggeschiedenis"],"log downloaded Subtitle on History page?":[null,"sla gedownloade ondertiteling op in Geschiedenis pagina?"],"Subtitles Multi-Language":[null,"Meertalige Ondertiteling"],"append language codes to subtitle filenames?":[null,"voeg taalcodes toe in bestandsnamen van ondertiteling?"],"this option is required if you use multiple subtitle languages":[null,"deze optie is vereist als u meerdere ondertitelingstalen gebruikt"],"Delete unwanted subtitles":[null,"Verwijder ondertiteling"],"enable to delete unwanted subtitle languages bundled with release":[null,"vink dit aan om ongewenste talen bij ondertiteling-downloads te verwijderen"],"Embedded Subtitles":[null,"Ingebedde ondertiteling"],"ignore subtitles embedded inside video file?":[null,"ingebedde ondertiteling in videobestand negeren?"],"this will ignore <u>all</u> embedded subtitles for every video file!":[null,"dit zal <u>alle</u> ingebedde ondertiteling in elk video bestand negeren!"],"Hearing Impaired Subtitles":[null,"Ondertiteling voor doven en slechthorenden"],"download hearing impaired style subtitles?":[null,"download ondertiteling voor doven en slechthorenden?"],"See":[null,"Zie"],"for a script arguments description.":[null,"voor een beschrijving van script commando's."],"Additional scripts separated by <b>|</b>.":[null,"Extra scripts scheiden met een <b>|</b>."],"Scripts are called after each episode has searched and downloaded subtitles.":[null,"Scripts worden gestart nadat voor elke gedownloade aflevering een ondertiteling is gevonden en gedownload."],"For any scripted languages, include the interpreter executable before the script. See the following example":[null,"Voor elk script taal, plaats de interpreter executable nog voor het script. Zie het volgende voorbeeld"],"For Windows:":[null,"Voor Windows:"],"For Linux / OS X:":[null,"Voor Linux / OS X:"],"Subtitle Providers":[null,"Ondertiteling Zoekmachines"],"Check off and drag the plugins into the order you want them to be used.":[null,"Selecteer en sleep de plugins in de volgorde waarin ze doorzocht moeten worden."],"At least one plugin is required.":[null,"Ten minste één zoekmachine is vereist."]," Web-scraping plugin":[null," Web-scraping plugin"],"Provider Settings":[null,"Zoekmachine Instellingen"],"Set user and password for each provider":[null,"Stel evt. de gebruikersnaam en wachtwoord in voor Zoekmachines"],"User Name":[null,"Gebruikersnaam"],"Change Show":[null,"Andere Serie"],"Prev Show":[null,"Vorige Serie"],"Next Show":[null,"Volgende Serie"],"Jump to Season":[null,"Ga naar seizoen"],"Specials":[null,"Specials"],"Poster for":[null,"Poster voor"],"Stars":[null,"Sterren"],"minutes":[null,"minuten"],"View other popular {genre} shows on trakt.tv.":[null,"Toon andere populaire {genre} series op trakt.tv."],"View other popular {imdbgenre} shows on IMDB.":[null,"Bekijk andere populaire {imdbgenre} series op IMDB."],"Allowed":[null,"Toegestaan"],"Preferred":[null,"Voorkeur"],"Originally Airs":[null,"Uitzendtijd"],"Show Status":[null,"Seriestatus"],"Default EP Status":[null,"Standaard Afl. Status"],"Location":[null,"Locatie"],"Missing":[null,"Ontbreekt"],"Scene Name":[null,"Alternatieve Naam"],"Required Words":[null,"Vereiste woorden"],"Ignored Words":[null,"Genegeerde woorden"],"Size":[null,"Grootte"],"Info Language":[null,"Info taal"],"Subtitles SR Metadata":[null,"Ondertiteling SR Metadata"],"Season Folders":[null,"Seizoenmappen"],"Paused":[null,"Pauzeren"],"Air-by-Date":[null,"Nummer-op-datum"],"Sports":[null,"Sport"],"DVD Order":[null,"DVD volgorde"],"Scene Numbering":[null,"Alt. nummering"],"Select Filtered Episodes":[null,"Selecteer gefilterde afleveringen"],"Clear All":[null,"Alles wissen"],"Change selected episodes to":[null,"Wijzig geselecteerde afleveringen in"],"Select Columns":[null,"Selecteer kolommen"],"NFO":[null,"NFO"],"TBN":[null,"TBN"],"Episode":[null,"Aflevering"],"Absolute":[null,"Absoluut"],"Scene":[null,"Scène"],"Scene Absolute":[null,"Scène Absoluut"],"File Name":[null,"Bestandsnaam"],"Airdate":[null,"Uitzending op"],"Download":[null,"Download"],"Change the value here if scene numbering differs from the indexer episode numbering":[null,"Wijzig de waarde hier als scène nummering afwijkt van de nummering van de aflevering van de indexeerder"],"Change the value here if scene absolute numbering differs from the indexer absolute numbering":[null,"Wijzig de waarde hier als scène absolute nummering van de indexeerder absolute nummering verschilt"],"Manual Search":[null,"Handmatig zoeken"],"Do you want to mark this episode as failed?":[null,"Wil je de aflevering als mislukt markeren?"],"The episode release name will be added to the failed history, preventing it to be downloaded again.":[null,"De aflevering uitgiftenaam zal worden toegevoegd aan de mislukte geschiedenis, om te voorkomen dat deze worden opnieuw gedownload."],"Do you want to include the current episode quality in the search?":[null,"Wilt u de huidige kwaliteit van de aflevering in de zoekopdracht opnemen?"],"Choosing No will ignore any releases with the same episode quality as the one currently downloaded/snatched.":[null,"\"Nee\" kiezen negeert alle afleveringversies met dezelfde kwaliteit als degene die momenteel is gedownload/opgepikt."],"Download subtitle":[null,"Ondertiteling downloaden"],"Do you want to re-download the subtitle for this language?":[null,"Wilt u de ondertiteling voor deze taal opnieuw downloaden?"],"It will overwrite your current subtitle":[null,"Hiermee wordt je huidige ondertiteling overschreven"],"Format":[null,"Nummering"],"Advanced":[null,"Geavanceerd"],"Main Settings":[null,"Hoofdinstellingen"],"Show Location":[null,"Serie locatie"],"Preferred Quality":[null,"Voorkeurskwaliteit"],"Default Episode Status":[null,"Standaard afleveringsstatus"],"this will set the status for future episodes.":[null,"dit stelt de status van toekomstige afleveringen in."],"this only applies to episode filenames and the contents of metadata files.":[null,"dit geldt alleen voor bestandsnamen van afleveringen en de inhoud van metadata bestanden."],"search for subtitles":[null,"zoeken naar ondertiteling"],"Use SR Metdata":[null,"Gebruik SR Metadata"],"use SickRage metadata when searching for subtitle, this will override the autodiscovered metadata":[null,"bij gebruik van SickRage medata bij het zoeken naar ondertiteling wordt de automatisch gevonden metadata overschreven"],"pause this show (SickRage will not download episodes)":[null,"Pauzeer deze serie (SickRage zal afleveringen niet downloaden)"],"Format Settings":[null,"Nummering van afleveringen"],"Air by date":[null,"Op Datum"],"check if the show is released as Show.03.02.2010 rather than Show.S02E03.":[null,"Afleveringen worden genummerd met datum <b>Serie.03.02.2010</b> ipv <b>Serie.S02E03</b>."],"in case of an air date conflict between regular and special episodes, the later will be ignored.":[null,"in het geval van een uitzenddatumconflict tussen gewone en speciale afleveringen, wordt de laatstgenoemde genegeerd."],"check if the show is Anime and episodes are released as Show.265 rather than Show.S02E03":[null,"De Serie wordt uitgezonden als Anime. Afleveringen worden genummerd als <b>Serie.265</b> ipv <b>Serie.S02E03</b>"],"check if the show is a sporting or MMA event released as Show.03.02.2010 rather than Show.S02E03":[null,"De Serie wordt uitgezonden als Sport. Afleveringen worden genummerd als <b>Serie.03.02.2010</b> ipv <b>Serie.S02E03</b>"],"Season folders":[null,"Seizoen- mappen"],"group episodes by season folder (uncheck to store in a single folder)":[null,"afleveringen in seizoenmappen plaatsen (uitvinken om alles in één map op te slaan)"],"search by scene numbering (uncheck to search by indexer numbering)":[null,"zoeken met alternatieve afleveringsnummers (maakt gebruik van thexem. de)"],"use the DVD order instead of the air order":[null,"de volgorde van de DVD gebruiken in plaats van de volgorde van uitzending"],"a \"Force Full Update\" is necessary, and if you have existing episodes you need to sort them manually.":[null,"een \"Forceer Volledige Update\" is noodzakelijk, en als u bestaande afleveringen hebt moet u ze handmatig sorteren."],"comma-separated <i>e.g. \"word1,word2,word3</i>\"":[null,"komma-gescheiden <i>bijv. \"woord1,woord2,woord3\"</i>"],"search results with one or more words from this list will be ignored.":[null,"zoekresultaten met één of meer woorden van deze lijst worden genegeerd."],"e.g. \"word1,word2,word3\"":[null,"bijv. \"woord1,woord2,woord3\""],"search results with no words from this list will be ignored.":[null,"zoekresultaten zonder woorden van deze lijst worden genegeerd."],"Scene Exception":[null,"Alternatieve Serienamen"],"this will affect episode search on NZB and torrent providers.":[null,"dit heeft effect op afleveringen zoeken op NZB en torrent providers."],"this list appends to the original show name.":[null,"deze lijst wordt aan de originele serienaam toegevoegd."],"WARNING logs":[null,"Waarschuwingen"],"ERROR logs":[null,"Fouten"],"There are no events to display.":[null,"Er zijn geen gebeurtenissen om weer te geven."],"Limit":[null,"Limiet"],"Layout":[null,"Weergave"],"HistoryLayout":[null,"GeschiedenisLayout"],"Compact":[null,"Compact"],"Detailed":[null,"Uitgebreid"],"Time":[null,"Tijd"],"Provider":[null,"Provider"],"Missing Provider":[null,"Provider ontbreekt"],"missing provider":[null,"ontbrekende provider"],"Directory":[null,"Map"],"Show Name (tvshow.nfo)":[null,"Serienaam (uit tvshow.nfo)"],"Indexer":[null,"Indexeerder"],"Enter the folder containing the episode":[null,"Selecteer de map met de afleveringen"],"Process Method to be used":[null,"Verwerkingsmethode"],"Copy":[null,"Kopieer"],"Move":[null,"Verplaatsen"],"Hard Link":[null,"Hard Link"],"Symbolic Link":[null,"Symbolic Link"],"Symbolic Link Reversed":[null,"Symbolic Link Reversed"],"Force already Post Processed Dir/Files":[null,"Forceer reeds verwerkte downloads opnieuw"],"Mark Dir/Files as priority download":[null,"Markeer Item als prioriteit download"],"(Check it to replace the file even if it exists at higher quality)":[null,"(Vervangt het bestand zelfs als het al bestaat in hogere kwaliteit)"],"Delete files and folders":[null,"Bestanden en mappen verwijderen"],"(Check it to delete files and folders like auto processing)":[null,"(Verwijdert de bestanden en mappen na de verwerking)"],"Don't use processing queue":[null,"Verwerkingswachtrij niet gebruiken"],"(If checked this will return the result of the process here, but may be slow!)":[null,"(aangevinkt wordt het resultaat hier weergegeven. Kan traag zijn!)"],"Mark download as failed":[null,"Markeer download als mislukt"],"Process":[null,"Verwerken"],"Download subtitles for this show?":[null,"Download de ondertiteling voor deze serie?"],"use SickRage metadata when searching for subtitle, <br />this will override the autodiscovered metadata":[null,"Bij gebruik van SickRage metadata bij het zoeken naar ondertiteling, <br />overschrijft dit de automatisch gevonden metadata"],"Status for previously aired episodes":[null,"Status voor eerder uitgezonden afleveringen"],"Status for all future episodes":[null,"Status voor alle toekomstige afleveringen"],"Group episodes by season folder?":[null,"Afleveringen groeperen op seizoenfolder?"],"Is this show an Anime?":[null,"Is deze serie een anime?"],"Is this show scene numbered?":[null,"Is deze serie genummerd per scène?"],"Save Defaults":[null,"Als standaard opslaan"],"Use current values as the defaults":[null,"Huidige waarden als standaard gebruiken"],"<p>Select your preferred fansub groups from the <b>Available Groups</b> and add them to the <b>Whitelist</b>. Add groups to the <b>Blacklist</b> to ignore them.</p>\n <p>The <b>Whitelist</b> is checked <i>before</i> the <b>Blacklist</b>.</p>\n <p>Groups are shown as <b>Name</b> | <b>Rating</b> | <b>Number of subbed episodes</b>.</p>\n <p>You may also add any fansub group not listed to either list manually.</p>\n <p>When doing this please note that you can only use groups listed on anidb for this anime.\n <br>If a group is not listed on anidb but subbed this anime, please correct anidb's data.</p>":[null,"<p>Uw voorkeur fansub groepen selecteren uit de <b>Beschikbare groepen</b> en voeg ze toe aan de <b>Whitelist</b>. Groepen toevoegen aan <b>Blacklist</b> om ze te negeren.</p> \n <p>de <b>Whitelist</b> is gecontroleerd <i>voordat</i> de <b>Blacklist</b>.</p> \n <p>groepen worden weergegeven als <b>naam</b> | <b>Rating</b> | <b>Aantal subbed afleveringen</b>.</p> \n <p>u kan ook elke fansub group niet genoteerd aan beide lijst handmatig toevoegen.</p> \n <p>bij het doen van deze Let erop dat u alleen kunt gebruiken groepen vermeld op anidb voor dit anime.\n <br>als een groep wordt niet vermeld op anidb maar deze anime subbed, corrigeer anidb van gegevens.</p>"],"Whitelist":[null,"Whitelist"],"Available Groups":[null,"Beschikbare groepen"],"Add to Whitelist":[null,"Voeg toe aan Whitelist"],"Add to Blacklist":[null,"Voeg toe aan Blacklist"],"Blacklist":[null,"Blacklist"],"Custom Group":[null,"Aangepaste groep"],"Allowed Quality:":[null,"Toegestane kwaliteit:"],"Preferred Quality:":[null,"Voorkeurskwaliteit:"],"Filter Show Name":[null,"Filter de naam van de show"],"Root":[null,"Root"],"All":[null,"Alle"],"Clear Filter(s)":[null,"Filter(s) wissen"],"Poster":[null,"Poster"],"Small Poster":[null,"Kleine Poster"],"Banner":[null,"Spandoek"],"Simple":[null,"Eenvoudig"],"Next Episode":[null,"Volgende aflevering"],"Progress":[null,"Voortgang"],"Direction":[null,"Richting"],"Ascending":[null,"Oplopend"],"Descending":[null,"Aflopend"],"Poster Size":[null,"Posterformaat"],"Continuing":[null,"Loopt"],"Ended":[null,"Beëindigd"],"Total":[null,"Totaal"],"Invalid date":[null,"Ongeldige datum"],"No Network":[null,"Geen netwerk"],"Next Ep":[null,"Volgende Afl."],"Prev Ep":[null,"Vorige Afl."],"Show":[null,"Serie"],"Downloads":[null,"Downloads"],"Active":[null,"Actief"],"loading":[null,"laden"],"<p><b><u>Preferred</u></b> qualities will replace those in <b><u>allowed</u></b>, even if they are lower.</p>":[null,"<p><b><u>Toegestane</u></b> kwaliteiten zullen worden vervangen door die van uw <b><u>Voorkeur</u></b>, zelfs als ze een lagere kwaliteit hebben.</p>"],"New":[null,"Nieuw"],"Set as Default":[null,"Als standaard instellen"],"Remember me":[null,"Onthoud mijn gegevens"],"Edit Selected":[null,"Selectie bewerken"],"Subtitle":[null,"Ondertiteling"],"Default Ep Status":[null,"Standaard Afl. Status"],"Update":[null,"Update"],"Rescan":[null,"Scan opnieuw"],"Rename":[null,"Wijzig naam"],"Search Subtitle":[null,"Zoek ondertiteling"],"Force Metadata Regen":[null,"Forceer Metadata Regen"],"Snatched (Allowed)":[null,"Opgepikt (toegestaan)"],"Jump to Show":[null,"Spring naar Serie"],"Force Backlog":[null,"Forceer Werkvoorraad"],"Manage episodes with status":[null,"Beheer afleveringen met status"],"Manage":[null,"Beheer"],"None of your episodes have status":[null,"Geen van de afleveringen hebben status"],"Shows containing":[null,"Series bevatten"],"episodes":[null,"afleveringen"],"Set checked shows/episodes to":[null,"Markeer geselecteerde series/afleveringen als"],"Go":[null,"Start"],"Select all":[null,"Alles selecteren"],"Clear all":[null,"Alles wissen"],"Release":[null,"Uitgave"],"Backlog Search":[null,"Werkvoorraad Zoeken"],"Not in progress":[null,"Wordt niet uitgevoerd"],"In Progress":[null,"In uitvoering"],"Daily Search":[null,"Dagelijks zoeken"],"Find Propers Search":[null,"Propers zoeken vinden"],"Propers search disabled":[null,"Propers zoeken uit zetten"],"Subtitle Search":[null,"Ondertiteling Zoeken"],"Subtitle search disabled":[null,"Ondertiteling zoeken uitgeschakeld"],"Search Queue":[null,"Zoek wachtrij"],"pending items":[null,"wachtende items"],"Daily":[null,"Dagelijks"],"Manual":[null,"Handmatig"],"Changing any settings marked with (<span class=\"separator\">*</span>) will force a refresh of the selected shows.":[null,"Wijzigingen aanbrengen gemarkeerd met (<span class=\"scheidingsteken\"> *</span>) zal een verversing van de geselecteerde shows forceren."],"Selected Shows":[null,"Geselecteerde Series"],"Root Directories":[null,"Hoofdmappen"],"Current":[null,"Huidige"],"Keep":[null,"Behouden"],"Custom":[null,"Aangepast"],"Group episodes by season folder (set to \"No\" to store in a single folder).":[null,"Groep afleveringen per seizoen map (ingesteld met \"Nee\" om op te slaan in een enkele map)."],"Pause these shows (SickRage will not download episodes).":[null,"Pauzeer deze serie (SickRage zal afleveringen niet downloaden)."],"This will set the status for future episodes.":[null,"Hiermee wordt de status voor toekomstige afleveringen ingesteld."],"Search by scene numbering (set to \"No\" to search by indexer numbering).":[null,"Zoeken op scène nummering (ingesteld met \"Nee\" om te zoeken op de indexeerdernummering)."],"Set if these shows are Anime and episodes are released as Show.265 rather than Show.S02E03":[null,"Aanzetten als deze series Anime zijn en afleveringen worden uitgebracht als Serie.265 in plaats van Serie.S02E03"],"Set if these shows are sporting or MMA events released as Show.03.02.2010 rather than Show.S02E03.":[null,"Aanzetten als deze shows sportieve of MMA evenementen zijn en Show.03.02.2010 in plaats van Show.S02E03 zijn uitgebracht."],"In case of an air date conflict between regular and special episodes, the later will be ignored.":[null,"Wanneer beide nummeringen bestaan dan zal de standaard S02E01 benaming worden gekozen."],"Set if these shows are released as Show.03.02.2010 rather than Show.S02E03.":[null,"Aanzetten als deze series worden uitgebracht als Serie.03.02.2010 in plaats van Serie.S02E03."],"Search for subtitles.":[null,"Zoeken naar ondertiteling."],"All of your episodes have {subsLanguage} subtitles.":[null,"Al uw afleveringen hebben {subsLanguage} ondertiteling."],"Manage episodes without":[null,"Beheer afleveringen zonder"],"Episodes without {subsLanguage} subtitles.":[null,"Afleveringen zonder {subsLanguage} ondertiteling."],"Episodes without {subtitleLanguage} (undefined) subtitles.":[null,"Afleveringen zonder {subtitleLanguage} (onbepaald) ondertiteling."],"Download missed subtitles for selected episodes":[null,"Download ontbrekende ondertiteling voor de geselecteerde afleveringen"],"Performing Restart":[null,"Herstart uitvoeren"],"Waiting for SickRage to shut down":[null,"Een ogenblik geduld, SickRage wordt afgesloten... "],"Waiting for SickRage to start again":[null,"SickRage start opnieuw op"],"Loading the default page":[null,"De standaardpagina wordt geladen"],"Error: The restart has timed out, perhaps something prevented SickRage from starting again?":[null,"Fout: De herstart heeft een time-out, misschien verhinderd er iets om SickRage opnieuw te starten?"],"Key":[null,"Sleutel"],"Missed":[null,"Gemist"],"Today":[null,"Vandaag"],"Soon":[null,"Binnenkort"],"Later":[null,"Later"],"Subscribe":[null,"Abonneer"],"Date":[null,"Datum"],"View Paused":[null,"Toon gepauzeerde"],"Hidden":[null,"Verberg"],"Shown":[null,"Toon"],"Calendar":[null,"Agenda"],"List":[null,"Lijst"],"Ends":[null,"Eindigt"],"Next Ep Name":[null,"Naam Volgende Afl."],"Run time":[null,"Looptijd"],"Indexers":[null,"Zoekmachines"],"No shows for this day":[null,"Geen series op deze dag"],"Airs":[null,"Uitzenddatum"],"Plot":[null,"Samenvatting"],"Show Update":[null,"Update Series"],"Version Check":[null,"Versie controleren"],"Proper Finder":[null,"Zoek Proper"],"Post Process":[null,"Nabewerking"],"Subtitles Finder":[null,"Zoek Ondertiteling"],"Scheduler":[null,"Planner"],"Alive":[null,"Werkt"],"Start Time":[null,"Start"],"Cycle Time":[null,"Cyclus"],"Next Run":[null,"Uitvoeren"],"Last Run":[null,"Uitgevoerd"],"Silent":[null,"Stil"],"True":[null,"Waar"],"N/A":[null,"n.v.t"],"Show id":[null,"Serie id"],"Show name":[null,"Naam van de Serie"],"Priority":[null,"Prioriteit"],"Added":[null,"Toegevoegd"],"Queue type":[null,"Wachtrijtype"],"LOW":[null,"LAAG"],"NORMAL":[null,"NORMAAL"],"HIGH":[null,"HOOG"],"Disk Space":[null,"Schijfruimte"],"Free space":[null,"Vrije ruimte"],"TV Download Directory":[null,"TV Download Map"],"Media Root Directories":[null,"Media Hoofdmappen"],"Preview of the proposed name changes":[null,"Voorbeeld van de voorgestelde naamswijzigingen"],"All Seasons":[null,"Alle seizoenen"],"select all":[null,"alles selecteren"],"Rename Selected":[null,"Hernoem geselecteerden"],"Cancel Rename":[null,"Hernoemen annuleren"],"Old Location":[null,"Oude locatie"],"New Location":[null,"Nieuwe locatie"],"Trakt API did not return any results, please check your config.":[null,"Trakt API geeft geen resultaat, Controleer uw configuratie."],"votes":[null,"stemmen"],"Remove Show":[null,"Serie verwijderen"],"Level":[null,"Niveau"],"Filter":[null,"Filter"],"All non-absolute folder locations are relative to ":[null,"Alle relatieve maplocaties verwijzen naar "],"Manual Post-Processing":[null,"Handmatige nabewerking"],"Episode Status Management":[null,"Afleveringenstatus"],"Update PLEX":[null,"Update PLEX"],"Update KODI":[null,"Update KODI"],"Update Emby":[null,"Update Emby"],"Manage Torrents":[null,"Beheer Torrents"],"Missed Subtitle Management":[null,"Gemiste ondertiteling"],"Help & Info":[null,"Help & Info"],"Backup & Restore":[null,"Backup & Herstellen"],"Tools":[null,"Gereedschap"],"Support SickRage":[null,"Ondersteun SickRage"],"View Errors":[null,"Bekijk Fouten"],"View Warnings":[null,"Bekijk Waarschuwingen"],"View Log":[null,"Bekijk Logboek"],"Check For Updates":[null,"Controleer op Updates"],"Restart":[null,"Herstart"],"Shutdown":[null,"Afsluiten"],"Logout":[null,"Afmelden"],"Server Status":[null,"Server Status"],"View overview of snatched episodes":[null,"Toon overzicht van opgepikte afleveringen"],"Episodes Downloaded":[null,"Gedownloade Afleveringen"],"Memory used":[null,"Geheugengebruik"],"Load time":[null,"Laadtijd"],"Branch":[null,"Branch"],"Now":[null,"Nu"]}}}} \ No newline at end of file diff --git a/locale/nl_NL/LC_MESSAGES/messages.mo b/locale/nl_NL/LC_MESSAGES/messages.mo index c2816af48786b3a43005abde6a2e4903bcd77b74..bdb2f82cb28d95372e95108c65cb4c5eff75199e 100644 Binary files a/locale/nl_NL/LC_MESSAGES/messages.mo and b/locale/nl_NL/LC_MESSAGES/messages.mo differ diff --git a/locale/nl_NL/LC_MESSAGES/messages.po b/locale/nl_NL/LC_MESSAGES/messages.po index 582c5c1b52b160ba82e95f99f4c205c0c2bc6a57..22746c2a94db76e91e7626974cd82ea1c6770c46 100644 --- a/locale/nl_NL/LC_MESSAGES/messages.po +++ b/locale/nl_NL/LC_MESSAGES/messages.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: sickrage\n" "Report-Msgid-Bugs-To: miigotu@gmail.com\n" -"POT-Creation-Date: 2017-03-25 09:28-0700\n" -"PO-Revision-Date: 2017-03-25 12:29-0400\n" +"POT-Creation-Date: 2017-03-28 09:10-0700\n" +"PO-Revision-Date: 2017-03-28 12:11-0400\n" "Last-Translator: miigotu <miigotu@gmail.com>\n" "Language-Team: Dutch\n" "MIME-Version: 1.0\n" @@ -90,7 +90,7 @@ msgid "Biography" msgstr "Biografie" #: gui/slick/views/config_general.mako:78 gui/slick/views/layouts/main.mako:145 -#: sickbeard/__init__.py:79 sickbeard/webserve.py:3807 +#: sickbeard/__init__.py:79 sickbeard/webserve.py:3778 msgid "History" msgstr "Geschiedenis" @@ -103,7 +103,7 @@ msgid "Western" msgstr "Western" #: gui/slick/views/config_general.mako:79 gui/slick/views/layouts/main.mako:221 -#: sickbeard/__init__.py:80 sickbeard/webserve.py:2385 +#: sickbeard/__init__.py:80 sickbeard/webserve.py:2384 msgid "News" msgstr "Nieuws" @@ -238,6 +238,34 @@ msgstr "Genegeerd" msgid "Subtitled" msgstr "Ondertiteld" +#: sickbeard/helpers.py:1887 +msgid "For best results please set the Download Station alias as" +msgstr "Voor het beste resultaat, stel de Download Station alias in als" + +#: sickbeard/helpers.py:1888 +msgid "You can check this setting in the Synology DSM" +msgstr "U kunt deze instelling terugvinden in de Synology DSM" + +#: sickbeard/helpers.py:1888 sickbeard/helpers.py:1890 +msgid "Control Panel" +msgstr "Configuratiescherm" + +#: sickbeard/helpers.py:1888 +msgid "Application Portal" +msgstr "Toepassingsportaal" + +#: sickbeard/helpers.py:1889 +msgid "Make sure you allow DSM to be embedded with iFrames too in" +msgstr "Zorg ervoor dat DSM wordt toegestaan dat deze ook in iFrames wordt geïntegreerd " + +#: sickbeard/helpers.py:1890 +msgid "DSM Settings" +msgstr "DSM Instellingen" + +#: sickbeard/helpers.py:1890 +msgid "Security" +msgstr "Beveiliging" + #: sickbeard/logger.py:474 msgid "<No Filter>" msgstr "<Geen Filter>" @@ -308,15 +336,15 @@ msgstr "Trakt Checker" msgid "Event" msgstr "Gebeurtenis" -#: sickbeard/logger.py:491 sickbeard/webserve.py:1339 sickbeard/webserve.py:1342 -#: sickbeard/webserve.py:1520 sickbeard/webserve.py:1529 sickbeard/webserve.py:1717 -#: sickbeard/webserve.py:1728 sickbeard/webserve.py:1751 sickbeard/webserve.py:1764 -#: sickbeard/webserve.py:1769 sickbeard/webserve.py:1785 sickbeard/webserve.py:1790 -#: sickbeard/webserve.py:1854 sickbeard/webserve.py:1857 sickbeard/webserve.py:1863 -#: sickbeard/webserve.py:1866 sickbeard/webserve.py:1873 sickbeard/webserve.py:1876 -#: sickbeard/webserve.py:1899 sickbeard/webserve.py:1997 sickbeard/webserve.py:2002 -#: sickbeard/webserve.py:2007 sickbeard/webserve.py:2036 sickbeard/webserve.py:2040 -#: sickbeard/webserve.py:2045 +#: sickbeard/logger.py:491 sickbeard/webserve.py:1338 sickbeard/webserve.py:1341 +#: sickbeard/webserve.py:1519 sickbeard/webserve.py:1528 sickbeard/webserve.py:1716 +#: sickbeard/webserve.py:1727 sickbeard/webserve.py:1750 sickbeard/webserve.py:1763 +#: sickbeard/webserve.py:1768 sickbeard/webserve.py:1784 sickbeard/webserve.py:1789 +#: sickbeard/webserve.py:1853 sickbeard/webserve.py:1856 sickbeard/webserve.py:1862 +#: sickbeard/webserve.py:1865 sickbeard/webserve.py:1872 sickbeard/webserve.py:1875 +#: sickbeard/webserve.py:1898 sickbeard/webserve.py:1996 sickbeard/webserve.py:2001 +#: sickbeard/webserve.py:2006 sickbeard/webserve.py:2035 sickbeard/webserve.py:2039 +#: sickbeard/webserve.py:2044 msgid "Error" msgstr "Fout" @@ -333,6 +361,7 @@ msgstr "Thread" msgid "Main" msgstr "Algemeen" +#: gui/slick/js/ajaxEpSearch.js:146 gui/slick/js/ajaxEpSearch.js:147 #: gui/slick/views/inc_home_showList.mako:27 sickbeard/show_queue.py:298 msgid "Loading" msgstr "Bezig met laden" @@ -372,867 +401,835 @@ msgstr "Instellingen backup mislukt, updaten wordt afgebroken" msgid "No update needed" msgstr "Geen update nodig" -#: sickbeard/webserve.py:170 +#: sickbeard/webserve.py:171 msgid "Mako Error" msgstr "Mako fout" -#: sickbeard/webserve.py:195 +#: sickbeard/webserve.py:196 msgid "Oops" msgstr "Oeps" -#: sickbeard/webserve.py:197 +#: sickbeard/webserve.py:198 msgid "Wrong API key used" msgstr "Ongeldige API-sleutel gebruikt" -#: gui/slick/views/login.mako:34 sickbeard/webserve.py:302 +#: gui/slick/views/login.mako:34 sickbeard/webserve.py:303 msgid "Login" msgstr "Inloggen" -#: sickbeard/webserve.py:406 +#: sickbeard/webserve.py:392 msgid "API Key not generated" msgstr "API-sleutel niet gegenereerd" -#: sickbeard/webserve.py:409 +#: sickbeard/webserve.py:395 msgid "API Builder" msgstr "API Bouwer" #: gui/slick/views/config_general.mako:77 gui/slick/views/layouts/main.mako:141 -#: sickbeard/webserve.py:512 +#: sickbeard/webserve.py:498 msgid "Schedule" msgstr "Kalender" -#: sickbeard/webserve.py:610 +#: sickbeard/webserve.py:609 msgid "Test 1" msgstr "Test 1" -#: sickbeard/webserve.py:610 +#: sickbeard/webserve.py:609 msgid "This is test number 1" msgstr "Dit is test nummer 1" -#: sickbeard/webserve.py:611 +#: sickbeard/webserve.py:610 msgid "Test 2" msgstr "Test 2" -#: sickbeard/webserve.py:611 +#: sickbeard/webserve.py:610 msgid "This is test number 2" msgstr "Dit is test nummer 2" -#: sickbeard/webserve.py:634 +#: sickbeard/webserve.py:633 msgid "You're using the {branch} branch. Please use 'master' unless specifically asked" msgstr "U gebruikt momenteel de {branch} branch. Gebruik 'master' tenzij specifiek aangegeven" -#: sickbeard/webserve.py:698 sickbeard/webserve.py:703 +#: sickbeard/webserve.py:697 sickbeard/webserve.py:702 msgid "Invalid show parameters" msgstr "Ongeldige seriegegevens" -#: sickbeard/webserve.py:710 +#: sickbeard/webserve.py:709 msgid "Invalid parameters" msgstr "Ongeldige parameters" -#: sickbeard/webserve.py:713 sickbeard/webserve.py:1899 +#: sickbeard/webserve.py:712 sickbeard/webserve.py:1898 msgid "Episode couldn't be retrieved" msgstr "Aflevering kon niet gevonden worden" -#: sickbeard/webserve.py:759 sickbeard/webserve.py:1268 sickbeard/webserve.py:1297 +#: sickbeard/webserve.py:758 sickbeard/webserve.py:1267 sickbeard/webserve.py:1296 msgid "Home" msgstr "Startscherm" -#: gui/slick/views/layouts/main.mako:127 sickbeard/webserve.py:759 +#: gui/slick/views/layouts/main.mako:127 sickbeard/webserve.py:758 msgid "Show List" msgstr "Serielijst" -#: sickbeard/webserve.py:807 +#: sickbeard/webserve.py:806 msgid "Error: Unsupported Request. Send jsonp request with 'callback' variable in the query string." msgstr "Fout: Verzoek wordt niet ondersteund. Verzendt het jsonp request met 'callback' variabele in de queryreeks." -#: sickbeard/webserve.py:851 +#: sickbeard/webserve.py:850 msgid "Success. Connected and authenticated" msgstr "Succes. Verbonden en geverifieerd" -#: sickbeard/webserve.py:853 +#: sickbeard/webserve.py:852 msgid "Authentication failed. SABnzbd expects" msgstr "Authenticatie mislukt. SABnzbd verwacht" -#: sickbeard/webserve.py:853 +#: sickbeard/webserve.py:852 msgid "as authentication method" msgstr "als verificatiemethode" -#: sickbeard/webserve.py:855 +#: sickbeard/webserve.py:854 msgid "Unable to connect to host" msgstr "Kan niet verbinden met de server" -#: sickbeard/webserve.py:876 +#: sickbeard/webserve.py:875 msgid "SMS sent successfully" msgstr "SMS verzonden" -#: sickbeard/webserve.py:878 +#: sickbeard/webserve.py:877 msgid "Problem sending SMS: {message}" msgstr "Probleem met het verzenden van SMS: {message}" -#: sickbeard/webserve.py:885 +#: sickbeard/webserve.py:884 msgid "Telegram notification succeeded. Check your Telegram clients to make sure it worked" msgstr "Telegram melding verzonden. Controleer uw Telegram client om te verifiëren dat het gelukt is" -#: sickbeard/webserve.py:887 +#: sickbeard/webserve.py:886 msgid "Error sending Telegram notification: {message}" msgstr "Verzenden Telegram melding mislukt: {message}" -#: sickbeard/webserve.py:894 +#: sickbeard/webserve.py:893 msgid "join notification succeeded. Check your join clients to make sure it worked" msgstr "samenvoegmelding gelukt. Controleer je samenvoeg-clients op juiste werking" -#: sickbeard/webserve.py:896 +#: sickbeard/webserve.py:895 msgid "Error sending join notification: {message}" msgstr "Fout bij versturen van Join melding: {message}" -#: sickbeard/webserve.py:906 +#: sickbeard/webserve.py:905 msgid " with password" msgstr " met wachtwoord" -#: sickbeard/webserve.py:908 +#: sickbeard/webserve.py:907 msgid "Registered and Tested growl successfully {growl_host}" msgstr "Geregistreerd en Growl test is gelukt {growl_host}" -#: sickbeard/webserve.py:910 +#: sickbeard/webserve.py:909 msgid "Registration and Testing of growl failed {growl_host}" msgstr "Geregistreerd en Growl test is mislukt {growl_host}" -#: sickbeard/webserve.py:917 +#: sickbeard/webserve.py:916 msgid "Test prowl notice sent successfully" msgstr "Test prowl melding verzonden" -#: sickbeard/webserve.py:919 +#: sickbeard/webserve.py:918 msgid "Test prowl notice failed" msgstr "Test prowl melding mislukt" -#: sickbeard/webserve.py:926 +#: sickbeard/webserve.py:925 msgid "Boxcar2 notification succeeded. Check your Boxcar2 clients to make sure it worked" msgstr "Boxcar2 melding verzonden. Controleer uw Boxcar2 client om te verifiëren dat het gelukt is" -#: sickbeard/webserve.py:928 +#: sickbeard/webserve.py:927 msgid "Error sending Boxcar2 notification" msgstr "Fout bij verzenden van Boxcar2 melding" -#: sickbeard/webserve.py:935 +#: sickbeard/webserve.py:934 msgid "Pushover notification succeeded. Check your Pushover clients to make sure it worked" msgstr "Pushover melding verzonden. Controleer uw Pushover client om te verifiëren dat het gelukt is" -#: sickbeard/webserve.py:937 +#: sickbeard/webserve.py:936 msgid "Error sending Pushover notification" msgstr "Fout bij verzenden van Pushover melding" -#: sickbeard/webserve.py:949 +#: sickbeard/webserve.py:948 msgid "Key verification successful" msgstr "Sleutel succesvol geverifieerd" -#: sickbeard/webserve.py:951 +#: sickbeard/webserve.py:950 msgid "Unable to verify key" msgstr "Niet in staat de sleutel te verifiëren" -#: sickbeard/webserve.py:958 +#: sickbeard/webserve.py:957 msgid "Tweet successful, check your twitter to make sure it worked" msgstr "Tweet verzonden. Controleer uw Twitter om te verifiëren dat het gelukt is" -#: sickbeard/webserve.py:960 +#: sickbeard/webserve.py:959 msgid "Error sending tweet" msgstr "Fout bij verzenden tweet" -#: sickbeard/webserve.py:965 +#: sickbeard/webserve.py:964 msgid "Please enter a valid account sid" msgstr "Voer svp een geldig gebruikers-ID in" -#: sickbeard/webserve.py:968 +#: sickbeard/webserve.py:967 msgid "Please enter a valid auth token" msgstr "Voer svp een geldig controlegetal in" -#: sickbeard/webserve.py:971 +#: sickbeard/webserve.py:970 msgid "Please enter a valid phone sid" msgstr "Voer svp een geldig telefoon ID in" -#: sickbeard/webserve.py:974 +#: sickbeard/webserve.py:973 msgid "Please format the phone number as \"+1-###-###-####\"" msgstr "Gebruik svp voor het telefoonnummer de opmaak +1-###-###-####" -#: sickbeard/webserve.py:978 +#: sickbeard/webserve.py:977 msgid "Authorization successful and number ownership verified" msgstr "Autorisatie succesvol en eigendom nummer geverifieerd" -#: sickbeard/webserve.py:980 +#: sickbeard/webserve.py:979 msgid "Error sending sms" msgstr "Fout bij het verzenden van sms" -#: sickbeard/webserve.py:986 +#: sickbeard/webserve.py:985 msgid "Slack message successful" msgstr "Slack bericht gelukt" -#: sickbeard/webserve.py:988 +#: sickbeard/webserve.py:987 msgid "Slack message failed" msgstr "Slack bericht mislukt" -#: sickbeard/webserve.py:994 +#: sickbeard/webserve.py:993 msgid "Discord message successful" msgstr "Discord bericht succesvol" -#: sickbeard/webserve.py:996 +#: sickbeard/webserve.py:995 msgid "Discord message failed" msgstr "Discord bericht mislukt" -#: sickbeard/webserve.py:1006 +#: sickbeard/webserve.py:1005 msgid "Test KODI notice sent successfully to {kodi_host}" msgstr "KODI test boodschap succesvol naar {kodi_host} verzonden" -#: sickbeard/webserve.py:1008 +#: sickbeard/webserve.py:1007 msgid "Test KODI notice failed to {kodi_host}" msgstr "KODI test boodschap naar {kodi_host} mislukt" -#: sickbeard/webserve.py:1023 +#: sickbeard/webserve.py:1022 msgid "Successful test notice sent to Plex Home Theater ... {plex_clients}" msgstr "Succesvol een testbericht naar Plex Home Theater verstuurd ... {plex_clients}" -#: sickbeard/webserve.py:1025 +#: sickbeard/webserve.py:1024 msgid "Test failed for Plex Home Theater ... {plex_clients}" msgstr "Test mislukt ... {plex_clients}" -#: sickbeard/webserve.py:1028 +#: sickbeard/webserve.py:1027 msgid "Tested Plex Home Theater(s)" msgstr "Plex Home Theater(s) getest" -#: sickbeard/webserve.py:1042 +#: sickbeard/webserve.py:1041 msgid "Successful test of Plex Media Server(s) ... {plex_servers}" msgstr "Plex Media Server(s) succesvol getest ... {plex_servers}" -#: sickbeard/webserve.py:1044 +#: sickbeard/webserve.py:1043 msgid "Test failed, No Plex Media Server host specified" msgstr "Test is mislukt, geen Plex Media Server host opgegeven" -#: sickbeard/webserve.py:1046 +#: sickbeard/webserve.py:1045 msgid "Test failed for Plex Media Server(s) ... {plex_servers}" msgstr "Test mislukt voor Plex Media Server(s) ... {plex_servers}" -#: sickbeard/webserve.py:1049 +#: sickbeard/webserve.py:1048 msgid "Tested Plex Media Server host(s)" msgstr "Plex Media Server host(s) getest" -#: sickbeard/webserve.py:1057 +#: sickbeard/webserve.py:1056 msgid "Tried sending desktop notification via libnotify" msgstr "Bureaublad melding via libnotify is verzonden" -#: sickbeard/webserve.py:1066 +#: sickbeard/webserve.py:1065 msgid "Test notice sent successfully to {emby_host}" msgstr "Testboodschap succesvol naar {emby_host} verzonden" -#: sickbeard/webserve.py:1068 +#: sickbeard/webserve.py:1067 msgid "Test notice failed to {emby_host}" msgstr "Testboodschap naar {emby_host} mislukt" -#: sickbeard/webserve.py:1076 +#: sickbeard/webserve.py:1075 msgid "Successfully started the scan update" msgstr "Scan update succesvol gestart" -#: sickbeard/webserve.py:1078 +#: sickbeard/webserve.py:1077 msgid "Test failed to start the scan update" msgstr "De test om de scan update te starten is mislukt" -#: sickbeard/webserve.py:1097 +#: sickbeard/webserve.py:1096 msgid "Test notice sent successfully to {nmj2_host}" msgstr "Testbericht met succes verzonden naar {nmj2_host}" -#: sickbeard/webserve.py:1099 +#: sickbeard/webserve.py:1098 msgid "Test notice failed to {nmj2_host}" msgstr "Testboodschap naar {nmj2_host} mislukt" -#: sickbeard/webserve.py:1119 +#: sickbeard/webserve.py:1118 msgid "Trakt Authorized" msgstr "Trakt is gemachtigd" -#: sickbeard/webserve.py:1120 +#: sickbeard/webserve.py:1119 msgid "Trakt Not Authorized!" msgstr "Trakt is niet gemachtigd!" -#: sickbeard/webserve.py:1184 +#: sickbeard/webserve.py:1183 msgid "Test email sent successfully! Check inbox." msgstr "Test e-mail succesvol verzonden! Controleer je Postvak IN." -#: sickbeard/webserve.py:1186 +#: sickbeard/webserve.py:1185 msgid "ERROR: {last_error}" msgstr "FOUT: {last_error}" -#: sickbeard/webserve.py:1193 +#: sickbeard/webserve.py:1192 msgid "Test NMA notice sent successfully" msgstr "NMA testbericht met succes verzonden" -#: sickbeard/webserve.py:1195 +#: sickbeard/webserve.py:1194 msgid "Test NMA notice failed" msgstr "NMA testbericht mislukt" -#: sickbeard/webserve.py:1202 +#: sickbeard/webserve.py:1201 msgid "Pushalot notification succeeded. Check your Pushalot clients to make sure it worked" msgstr "Pushalot melding verzonden. Controleer uw Pushalot client om te verifiëren dat het gelukt is" -#: sickbeard/webserve.py:1204 +#: sickbeard/webserve.py:1203 msgid "Error sending Pushalot notification" msgstr "Fout bij verzenden van Pushalot melding" -#: sickbeard/webserve.py:1211 +#: sickbeard/webserve.py:1210 msgid "Pushbullet notification succeeded. Check your device to make sure it worked" msgstr "Pushbullet melding verzonden. Controleer uw apparaat om te verifiëren dat het gelukt is" -#: sickbeard/webserve.py:1213 sickbeard/webserve.py:1223 sickbeard/webserve.py:1232 +#: sickbeard/webserve.py:1212 sickbeard/webserve.py:1222 sickbeard/webserve.py:1231 msgid "Error sending Pushbullet notification" msgstr "Fout bij verzenden van Pushbullet melding" #: gui/slick/views/displayShow.mako:436 gui/slick/views/inc_home_showList.mako:174 -#: gui/slick/views/manage.mako:49 sickbeard/webserve.py:1249 +#: gui/slick/views/manage.mako:49 sickbeard/webserve.py:1248 msgid "Status" msgstr "Status" -#: sickbeard/webserve.py:1268 sickbeard/webserve.py:1297 +#: sickbeard/webserve.py:1267 sickbeard/webserve.py:1296 msgid "Restarting SickRage" msgstr "SickRage aan het herstarten" -#: sickbeard/webserve.py:1300 +#: sickbeard/webserve.py:1299 msgid "Update Failed" msgstr "Update is mislukt" -#: sickbeard/webserve.py:1301 +#: sickbeard/webserve.py:1300 msgid "Update wasn't successful, not restarting. Check your log for more information." msgstr "Update was niet succesvol, er is niet opnieuw opgestart. Controleer uw logboek voor meer informatie." -#: sickbeard/webserve.py:1308 +#: sickbeard/webserve.py:1307 msgid "Checking out branch" msgstr "Branch uitchecken" -#: sickbeard/webserve.py:1311 +#: sickbeard/webserve.py:1310 msgid "Already on branch" msgstr "Zit reeds op deze branch" -#: sickbeard/webserve.py:1339 +#: sickbeard/webserve.py:1338 msgid "Invalid show ID: {show}" msgstr "Ongeldige serie ID: {show}" -#: sickbeard/webserve.py:1342 sickbeard/webserve.py:1871 sickbeard/webserve.py:2002 -#: sickbeard/webserve.py:2040 +#: sickbeard/webserve.py:1341 sickbeard/webserve.py:1870 sickbeard/webserve.py:2001 +#: sickbeard/webserve.py:2039 msgid "Show not in show list" msgstr "Serie niet in serielijst gevonden" #: gui/slick/views/inc_rootDirs.mako:31 gui/slick/views/manage.mako:38 -#: gui/slick/views/manage_massEdit.mako:74 sickbeard/webserve.py:1358 -#: sickbeard/webserve.py:2027 +#: gui/slick/views/manage_massEdit.mako:74 sickbeard/webserve.py:1357 +#: sickbeard/webserve.py:2026 msgid "Edit" msgstr "Bewerk" -#: sickbeard/webserve.py:1368 +#: sickbeard/webserve.py:1367 msgid "This show is in the process of being downloaded - the info below is incomplete." msgstr "Deze serie wordt op dit moment gedownload - de informatie hieronder is incompleet." -#: sickbeard/webserve.py:1371 +#: sickbeard/webserve.py:1370 msgid "The information on this page is in the process of being updated." msgstr "De informatie op deze pagina wordt op dit moment bijgewerkt." -#: sickbeard/webserve.py:1374 +#: sickbeard/webserve.py:1373 msgid "The episodes below are currently being refreshed from disk" msgstr "De afleveringen hieronder worden op dit moment ververst vanaf schijf" -#: sickbeard/webserve.py:1377 +#: sickbeard/webserve.py:1376 msgid "Currently downloading subtitles for this show" msgstr "Ondertiteling voor deze serie nu aan het downloaden" -#: sickbeard/webserve.py:1380 +#: sickbeard/webserve.py:1379 msgid "This show is queued to be refreshed." msgstr "Deze serie staat in de rij om bijgewerkt te worden." -#: sickbeard/webserve.py:1383 +#: sickbeard/webserve.py:1382 msgid "This show is queued and awaiting an update." msgstr "Deze serie staat in de rij en wacht op een update." -#: sickbeard/webserve.py:1386 +#: sickbeard/webserve.py:1385 msgid "This show is queued and awaiting subtitles download." msgstr "Deze serie staat in de rij en wacht op het downloaden van ondertiteling." -#: gui/slick/js/core.js:4081 sickbeard/webserve.py:1391 +#: gui/slick/js/core.js:4081 sickbeard/webserve.py:1390 msgid "Resume" msgstr "Hervat" #: gui/slick/js/core.js:4081 gui/slick/views/viewlogs.mako:12 -#: sickbeard/webserve.py:1393 +#: sickbeard/webserve.py:1392 msgid "Pause" msgstr "Pauzeer" #: gui/slick/views/editShow.mako:345 gui/slick/views/inc_blackwhitelist.mako:40 #: gui/slick/views/inc_blackwhitelist.mako:85 gui/slick/views/manage.mako:58 -#: gui/slick/views/manage_failedDownloads.mako:43 sickbeard/webserve.py:1395 +#: gui/slick/views/manage_failedDownloads.mako:43 sickbeard/webserve.py:1394 msgid "Remove" msgstr "Verwijder" -#: sickbeard/webserve.py:1396 +#: sickbeard/webserve.py:1395 msgid "Re-scan files" msgstr "(Her)Scan Bestanden" -#: sickbeard/webserve.py:1397 +#: sickbeard/webserve.py:1396 msgid "Force Full Update" msgstr "Forceer volledige update" -#: sickbeard/webserve.py:1398 +#: sickbeard/webserve.py:1397 msgid "Update show in KODI" msgstr "Update serie in KODI" -#: sickbeard/webserve.py:1399 +#: sickbeard/webserve.py:1398 msgid "Update show in Emby" msgstr "Update serie in Emby" -#: sickbeard/webserve.py:1402 +#: sickbeard/webserve.py:1401 msgid "Hide specials" msgstr "Specials verbergen" -#: sickbeard/webserve.py:1404 +#: sickbeard/webserve.py:1403 msgid "Show specials" msgstr "Specials tonen" -#: sickbeard/webserve.py:1406 sickbeard/webserve.py:2030 sickbeard/webserve.py:2031 +#: sickbeard/webserve.py:1405 sickbeard/webserve.py:2029 sickbeard/webserve.py:2030 msgid "Preview Rename" msgstr "Hernoemvoorbeeld" -#: sickbeard/webserve.py:1409 +#: sickbeard/webserve.py:1408 msgid "Download Subtitles" msgstr "Download ondertiteling" -#: sickbeard/webserve.py:1498 +#: sickbeard/webserve.py:1497 msgid "No scene exceptions" msgstr "Geen scène-uitzonderingen" -#: sickbeard/webserve.py:1516 sickbeard/webserve.py:1764 sickbeard/webserve.py:1785 +#: sickbeard/webserve.py:1515 sickbeard/webserve.py:1763 sickbeard/webserve.py:1784 msgid "Invalid show ID" msgstr "Serie ID onjuist" -#: sickbeard/webserve.py:1525 sickbeard/webserve.py:1769 sickbeard/webserve.py:1790 +#: sickbeard/webserve.py:1524 sickbeard/webserve.py:1768 sickbeard/webserve.py:1789 msgid "Unable to find the specified show" msgstr "Kan deze serie niet vinden" -#: sickbeard/webserve.py:1550 +#: sickbeard/webserve.py:1549 msgid "Unable to retreive Fansub Groups from AniDB." msgstr "Niet mogelijk Fansub groepen van AniDB op te halen" -#: sickbeard/webserve.py:1559 sickbeard/webserve.py:1561 +#: sickbeard/webserve.py:1558 sickbeard/webserve.py:1560 msgid "Edit Show" msgstr "Bewerk Serie" -#: sickbeard/webserve.py:1637 sickbeard/webserve.py:1671 +#: sickbeard/webserve.py:1636 sickbeard/webserve.py:1670 msgid "Unable to refresh this show: {error}" msgstr "Serie kan momenteel niet vernieuwd worden: {error}" -#: sickbeard/webserve.py:1663 +#: sickbeard/webserve.py:1662 msgid "New location <tt>{location}</tt> does not exist" msgstr "Nieuwe locatie <tt>{location}</tt> bestaat niet" -#: sickbeard/webserve.py:1688 +#: sickbeard/webserve.py:1687 msgid "Unable to update show: {error}" msgstr "Kan serie niet updaten: {error}" -#: sickbeard/webserve.py:1695 +#: sickbeard/webserve.py:1694 msgid "Unable to force an update on scene exceptions of the show." msgstr "Niet in staat om een geforceerde update uit te voeren op de scène-uitzonderingen bij deze serie." -#: sickbeard/webserve.py:1702 +#: sickbeard/webserve.py:1701 msgid "Unable to force an update on scene numbering of the show." msgstr "Niet in staat om een geforceerde update uit te voeren op de scène-nummering bij deze serie." -#: sickbeard/webserve.py:1708 sickbeard/webserve.py:3540 +#: sickbeard/webserve.py:1707 sickbeard/webserve.py:3539 msgid "{num_errors:d} error{plural} while saving changes:" msgstr "{num_errors:d} foutmelding{plural} tijdens het opslaan van wijzigingen:" -#: sickbeard/webserve.py:1719 +#: sickbeard/webserve.py:1718 msgid "{show_name} has been {paused_resumed}" msgstr "{show_name} is {paused_resumed}" -#: sickbeard/webserve.py:1719 +#: sickbeard/webserve.py:1718 msgid "resumed" msgstr "hervat" -#: sickbeard/webserve.py:1719 +#: sickbeard/webserve.py:1718 msgid "paused" msgstr "gepauzeerd" -#: sickbeard/webserve.py:1731 +#: sickbeard/webserve.py:1730 msgid "{show_name} has been {deleted_trashed} {was_deleted}" msgstr "{show_name} is {deleted_trashed} {was_deleted}" -#: sickbeard/webserve.py:1733 +#: sickbeard/webserve.py:1732 msgid "deleted" msgstr "verwijderd" -#: sickbeard/webserve.py:1733 +#: sickbeard/webserve.py:1732 msgid "trashed" msgstr "verplaatst naar prullenbak" -#: sickbeard/webserve.py:1734 +#: sickbeard/webserve.py:1733 msgid "(media untouched)" msgstr "(media ongewijzigd)" -#: sickbeard/webserve.py:1734 +#: sickbeard/webserve.py:1733 msgid "(with all related media)" msgstr "(met alle gerelateerde media)" -#: sickbeard/webserve.py:1755 +#: sickbeard/webserve.py:1754 msgid "Unable to refresh this show." msgstr "Serie kan momenteel niet vernieuwd worden." -#: sickbeard/webserve.py:1775 +#: sickbeard/webserve.py:1774 msgid "Unable to update this show." msgstr "Kan deze serie niet updaten." -#: sickbeard/webserve.py:1814 +#: sickbeard/webserve.py:1813 msgid "Library update command sent to KODI host(s)): {kodi_hosts}" msgstr "Bibliotheek update-commando is naar KODI host(s)) verstuurd: {kodi_hosts}" -#: sickbeard/webserve.py:1816 +#: sickbeard/webserve.py:1815 msgid "Unable to contact one or more KODI host(s)): {kodi_hosts}" msgstr "Niet mogelijk contact te leggen met 1 of meerdere KODI host(s)): {kodi_hosts}" -#: sickbeard/webserve.py:1825 +#: sickbeard/webserve.py:1824 msgid "Library update command sent to Plex Media Server host: {plex_server}" msgstr "Update commando is naar Plex Media Server host gestuurd: {plex_server}" -#: sickbeard/webserve.py:1828 +#: sickbeard/webserve.py:1827 msgid "Unable to contact Plex Media Server host: {plex_server}" msgstr "Niet mogelijk contact te leggen met Plex Media Server host: {plex_server}" -#: sickbeard/webserve.py:1840 +#: sickbeard/webserve.py:1839 msgid "Library update command sent to Emby host: {emby_host}" msgstr "Bibliotheek update-commando is naar Emby host verstuurd: {emby_host}" -#: sickbeard/webserve.py:1842 +#: sickbeard/webserve.py:1841 msgid "Unable to contact Emby host: {emby_host}" msgstr "Niet gelukt met de Emby host te verbinden: {emby_host}" -#: sickbeard/webserve.py:1852 sickbeard/webserve.py:2036 +#: sickbeard/webserve.py:1851 sickbeard/webserve.py:2035 msgid "You must specify a show and at least one episode" msgstr "U moet een serie selecteren en minimaal 1 aflevering" -#: sickbeard/webserve.py:1861 +#: sickbeard/webserve.py:1860 msgid "Invalid status" msgstr "Ongeldige status" -#: sickbeard/webserve.py:1954 +#: sickbeard/webserve.py:1953 msgid "Backlog was automatically started for the following seasons of <b>{show_name}</b>" msgstr "Automatisch een werkvoorraad aangemaakt voor de volgende seizoenen van <b>{show_name}</b>" #: gui/slick/views/displayShow.mako:74 gui/slick/views/displayShow.mako:79 -#: gui/slick/views/displayShow.mako:404 sickbeard/webserve.py:1961 -#: sickbeard/webserve.py:1980 +#: gui/slick/views/displayShow.mako:404 sickbeard/webserve.py:1960 +#: sickbeard/webserve.py:1979 msgid "Season" msgstr "Seizoen" -#: sickbeard/webserve.py:1968 +#: sickbeard/webserve.py:1967 msgid "Backlog started" msgstr "Werkvoorraad wordt aangemaakt" -#: sickbeard/webserve.py:1973 +#: sickbeard/webserve.py:1972 msgid "Retrying Search was automatically started for the following season of <b>{show_name}</b>" msgstr "Opnieuw zoeken is automatisch gestart voor de volgende seizoenen van <b>{show_name}</b>" -#: sickbeard/webserve.py:1987 +#: sickbeard/webserve.py:1986 msgid "Retry Search started" msgstr "Opnieuw aan het zoeken" -#: sickbeard/webserve.py:1997 +#: sickbeard/webserve.py:1996 msgid "You must specify a show" msgstr "U moet een serie specificeren" -#: sickbeard/webserve.py:2007 sickbeard/webserve.py:2045 +#: sickbeard/webserve.py:2006 sickbeard/webserve.py:2044 msgid "Can't rename episodes when the show dir is missing." msgstr "Kan geen afleveringen hernoemen als er geen seriemap is." -#: sickbeard/webserve.py:2212 sickbeard/webserve.py:2233 +#: sickbeard/webserve.py:2211 sickbeard/webserve.py:2232 msgid "New subtitles downloaded: {new_subtitle_languages}" msgstr "Nieuwe ondertiteling gedownload: {new_subtitle_languages}" -#: sickbeard/webserve.py:2215 sickbeard/webserve.py:2236 +#: sickbeard/webserve.py:2214 sickbeard/webserve.py:2235 msgid "No subtitles downloaded" msgstr "Geen ondertiteling gedownload" #: gui/slick/views/config_general.mako:80 gui/slick/views/layouts/main.mako:222 -#: sickbeard/webserve.py:2363 +#: sickbeard/webserve.py:2362 msgid "IRC" msgstr "IRC" -#: sickbeard/webserve.py:2376 +#: sickbeard/webserve.py:2375 msgid "Could not load news from the repo. [Click here for news.md])({news_url})" msgstr "Nieuws kan niet worden geladen uit de repo. [Klik hier voor de news.md])({news_url})" -#: sickbeard/webserve.py:2383 sickbeard/webserve.py:2401 +#: sickbeard/webserve.py:2382 sickbeard/webserve.py:2400 msgid "The was a problem connecting to github, please refresh and try again" msgstr "Er was een probleem met de verbinding met GitHub, graag vernieuwen en opnieuw proberen" -#: sickbeard/webserve.py:2398 +#: sickbeard/webserve.py:2397 msgid "Could not load changes from the repo. [Click here for CHANGES.md]({changes_url})" msgstr "Aanpassingen kunnen niet worden geladen uit de repo. [Klik hier voor de CHANGES.md]({changes_url})" -#: gui/slick/views/layouts/main.mako:223 sickbeard/webserve.py:2403 +#: gui/slick/views/layouts/main.mako:223 sickbeard/webserve.py:2402 msgid "Changelog" msgstr "Veranderingen" -#: gui/slick/views/layouts/main.mako:190 sickbeard/webserve.py:2413 -#: sickbeard/webserve.py:3855 sickbeard/webserve.py:4341 +#: gui/slick/views/layouts/main.mako:190 sickbeard/webserve.py:2412 +#: sickbeard/webserve.py:3826 sickbeard/webserve.py:4312 msgid "Post Processing" msgstr "Nabewerking" -#: gui/slick/views/layouts/main.mako:128 sickbeard/webserve.py:2445 +#: gui/slick/views/layouts/main.mako:128 sickbeard/webserve.py:2444 msgid "Add Shows" msgstr "Serie Toevoegen" -#: sickbeard/webserve.py:2510 +#: sickbeard/webserve.py:2509 msgid "No folders selected." msgstr "Geen mappen geselecteerd." -#: sickbeard/webserve.py:2632 +#: sickbeard/webserve.py:2631 msgid "New Show" msgstr "Nieuwe Serie" -#: sickbeard/webserve.py:2647 +#: sickbeard/webserve.py:2646 msgid "Trending Shows" msgstr "Populaire Series" -#: sickbeard/webserve.py:2649 sickbeard/webserve.py:2772 +#: sickbeard/webserve.py:2648 sickbeard/webserve.py:2771 msgid "Popular Shows" msgstr "Populaire Shows" -#: sickbeard/webserve.py:2651 sickbeard/webserve.py:2665 +#: sickbeard/webserve.py:2650 sickbeard/webserve.py:2664 msgid "Most Anticipated Shows" msgstr "De langstverwachte Series" -#: sickbeard/webserve.py:2653 +#: sickbeard/webserve.py:2652 msgid "Most Collected Shows" msgstr "Meest Verzamelde Series" -#: sickbeard/webserve.py:2655 +#: sickbeard/webserve.py:2654 msgid "Most Watched Shows" msgstr "Meest Bekeken Series" -#: sickbeard/webserve.py:2657 +#: sickbeard/webserve.py:2656 msgid "Most Played Shows" msgstr "Meest Afgespeelde Series" -#: sickbeard/webserve.py:2659 +#: sickbeard/webserve.py:2658 msgid "Recommended Shows" msgstr "Aanbevolen Series" -#: gui/slick/views/addShows_trendingShows.mako:60 sickbeard/webserve.py:2661 +#: gui/slick/views/addShows_trendingShows.mako:60 sickbeard/webserve.py:2660 msgid "New Shows" msgstr "Nieuwe Series" -#: gui/slick/views/addShows_trendingShows.mako:61 sickbeard/webserve.py:2663 +#: gui/slick/views/addShows_trendingShows.mako:61 sickbeard/webserve.py:2662 msgid "Season Premieres" msgstr "Seizoen Start " -#: sickbeard/webserve.py:2792 sickbeard/webserve.py:2793 +#: sickbeard/webserve.py:2791 sickbeard/webserve.py:2792 msgid "Existing Show" msgstr "Bestaande Serie" -#: sickbeard/webserve.py:2871 +#: sickbeard/webserve.py:2870 msgid "No root directories setup, please go back and add one." msgstr "Geen hoofdmappen ingesteld, graag teruggaan en één toe te voegen." -#: sickbeard/webserve.py:2883 sickbeard/webserve.py:3002 +#: sickbeard/webserve.py:2882 sickbeard/webserve.py:3001 msgid "Show added" msgstr "Serie toegevoegd" -#: sickbeard/webserve.py:2883 +#: sickbeard/webserve.py:2882 msgid "Adding the specified show {show_name}" msgstr "Bezig deze serie toe te voegen: {show_name}" -#: sickbeard/webserve.py:2924 +#: sickbeard/webserve.py:2923 msgid "Missing params, no Indexer ID or folder: {show_to_add} and {root_dir}/{show_path}" msgstr "Ontbrekende parameters, geen Indexeerder ID of map: {show_to_add} en {root_dir}/{show_path}" -#: sickbeard/webserve.py:2933 +#: sickbeard/webserve.py:2932 msgid "Unknown error. Unable to add show due to problem with show selection." msgstr "Onbekende fout. Serie kan niet toegevoegd worden vanwege een probleem met het selecteren van de serie." -#: sickbeard/webserve.py:2957 sickbeard/webserve.py:2967 +#: sickbeard/webserve.py:2956 sickbeard/webserve.py:2966 msgid "Unable to add show" msgstr "Serie toevoegen mislukt" -#: sickbeard/webserve.py:2957 +#: sickbeard/webserve.py:2956 msgid "Folder {show_dir} exists already" msgstr "Map genaamd {show_dir} bestaat al" -#: sickbeard/webserve.py:2968 +#: sickbeard/webserve.py:2967 msgid "Unable to create the folder {show_dir}, can't add the show" msgstr "Niet mogelijk om de map {show_dir} aan te maken, kon de serie niet toevoegen" -#: sickbeard/webserve.py:3002 +#: sickbeard/webserve.py:3001 msgid "Adding the specified show into {show_dir}" msgstr "Bezig deze serie toe te voegen in {show_dir}" -#: sickbeard/webserve.py:3078 +#: sickbeard/webserve.py:3077 msgid "Shows Added" msgstr "Toegevoegde Series" -#: sickbeard/webserve.py:3079 +#: sickbeard/webserve.py:3078 msgid "Automatically added {num_shows} from their existing metadata files" msgstr "Automatisch {num_shows} series toegevoegd op basis van al aanwezige metadata bestanden" -#: gui/slick/views/layouts/main.mako:153 sickbeard/webserve.py:3096 +#: gui/slick/views/layouts/main.mako:153 sickbeard/webserve.py:3095 msgid "Mass Update" msgstr "Groepsgewijs Updaten" -#: sickbeard/webserve.py:3134 sickbeard/webserve.py:3161 sickbeard/webserve.py:3237 -#: sickbeard/webserve.py:3238 +#: sickbeard/webserve.py:3133 sickbeard/webserve.py:3160 sickbeard/webserve.py:3236 +#: sickbeard/webserve.py:3237 msgid "Episode Overview" msgstr "Aflevering Overzicht" -#: sickbeard/webserve.py:3270 +#: sickbeard/webserve.py:3269 msgid "Missing Subtitles" msgstr "Ontbrekende Ondertiteling" -#: gui/slick/views/layouts/main.mako:154 sickbeard/webserve.py:3356 -#: sickbeard/webserve.py:3357 +#: gui/slick/views/layouts/main.mako:154 sickbeard/webserve.py:3355 +#: sickbeard/webserve.py:3356 msgid "Backlog Overview" msgstr "Werkvoorraad Overzicht" -#: sickbeard/webserve.py:3481 +#: sickbeard/webserve.py:3480 msgid "Mass Edit" msgstr "Groepsgewijs Bewerken" -#: sickbeard/webserve.py:3586 +#: sickbeard/webserve.py:3585 msgid "Unable to update show: {excption_format}" msgstr "Kan serie niet updaten: {excption_format}" -#: sickbeard/webserve.py:3594 +#: sickbeard/webserve.py:3593 msgid "Unable to refresh show {show_name}: {excption_format}" msgstr "Kan serie {show_name} niet updaten: {excption_format}" -#: sickbeard/webserve.py:3605 +#: sickbeard/webserve.py:3604 msgid "Errors encountered" msgstr "Fouten die zijn opgetreden" -#: gui/slick/views/config_general.mako:261 sickbeard/webserve.py:3611 +#: gui/slick/views/config_general.mako:261 sickbeard/webserve.py:3610 msgid "Updates" msgstr "Updates" -#: sickbeard/webserve.py:3616 +#: sickbeard/webserve.py:3615 msgid "Refreshes" msgstr "Vernieuwingen" -#: sickbeard/webserve.py:3621 +#: sickbeard/webserve.py:3620 msgid "Renames" msgstr "Naamswijzigingen" #: gui/slick/views/displayShow.mako:260 gui/slick/views/displayShow.mako:435 #: gui/slick/views/editShow.mako:119 gui/slick/views/inc_addShowOptions.mako:20 -#: gui/slick/views/manage_massEdit.mako:262 sickbeard/webserve.py:3626 -#: sickbeard/webserve.py:5244 +#: gui/slick/views/manage_massEdit.mako:262 sickbeard/webserve.py:3625 +#: sickbeard/webserve.py:5215 msgid "Subtitles" msgstr "Ondertiteling" -#: sickbeard/webserve.py:3631 +#: sickbeard/webserve.py:3630 msgid "The following actions were queued" msgstr "De volgende acties zijn in de wachtrij gezet" -#: sickbeard/webserve.py:3651 -msgid "For best results please set the Download Station alias as" -msgstr "Voor het beste resultaat, stel de Download Station alias in als" - -#: sickbeard/webserve.py:3652 -msgid "You can check this setting in the Synology DSM" -msgstr "U kunt deze instelling terugvinden in de Synology DSM" - -#: sickbeard/webserve.py:3652 sickbeard/webserve.py:3654 -msgid "Control Panel" -msgstr "Configuratiescherm" - -#: sickbeard/webserve.py:3652 -msgid "Application Portal" -msgstr "Toepassingsportaal" - -#: sickbeard/webserve.py:3653 -msgid "Make sure you allow DSM to be embedded with iFrames too in" -msgstr "Zorg ervoor dat DSM wordt toegestaan dat deze ook in iFrames wordt geïntegreerd " - -#: sickbeard/webserve.py:3654 -msgid "DSM Settings" -msgstr "DSM Instellingen" - -#: sickbeard/webserve.py:3654 -msgid "Security" -msgstr "Beveiliging" - -#: gui/slick/views/layouts/main.mako:167 sickbeard/webserve.py:3662 -msgid "Manage Torrents" -msgstr "Beheer Torrents" - -#: gui/slick/views/layouts/main.mako:170 sickbeard/webserve.py:3683 +#: gui/slick/views/layouts/main.mako:170 sickbeard/webserve.py:3654 msgid "Failed Downloads" msgstr "Mislukte Downloads" -#: gui/slick/views/layouts/main.mako:155 sickbeard/webserve.py:3701 +#: gui/slick/views/layouts/main.mako:155 sickbeard/webserve.py:3672 msgid "Manage Searches" msgstr "Zoeken" -#: sickbeard/webserve.py:3709 +#: sickbeard/webserve.py:3680 msgid "Backlog search started" msgstr "Werkvoorraad-zoekopdracht gestart" -#: sickbeard/webserve.py:3719 +#: sickbeard/webserve.py:3690 msgid "Daily search started" msgstr "Dagelijkse zoekopdracht gestart" -#: sickbeard/webserve.py:3728 +#: sickbeard/webserve.py:3699 msgid "Find propers search started" msgstr "Zoekopdracht propers gestart" -#: sickbeard/webserve.py:3737 +#: sickbeard/webserve.py:3708 msgid "Subtitle search started" msgstr "Zoekopdracht ondertiteling gestart" -#: sickbeard/webserve.py:3801 +#: sickbeard/webserve.py:3772 msgid "Remove Selected" msgstr "Verwijder Geselecteerde" -#: sickbeard/webserve.py:3802 +#: sickbeard/webserve.py:3773 msgid "Clear History" msgstr "Geschiedenis wissen" -#: sickbeard/webserve.py:3803 +#: sickbeard/webserve.py:3774 msgid "Trim History" msgstr "Trim geschiedenis" -#: sickbeard/webserve.py:3823 +#: sickbeard/webserve.py:3794 msgid "Selected history entries removed" msgstr "Geselecteerde historie items verwijderd" -#: sickbeard/webserve.py:3830 +#: sickbeard/webserve.py:3801 msgid "History cleared" msgstr "Geschiedenis gewist" -#: sickbeard/webserve.py:3837 +#: sickbeard/webserve.py:3808 msgid "Removed history entries older than 30 days" msgstr "Verwijder alle gebeurtenissen ouder dan 30 dagen" -#: gui/slick/views/layouts/main.mako:185 sickbeard/webserve.py:3850 +#: gui/slick/views/layouts/main.mako:185 sickbeard/webserve.py:3821 msgid "General" msgstr "Algemeen" -#: sickbeard/webserve.py:3851 sickbeard/webserve.py:4143 +#: sickbeard/webserve.py:3822 sickbeard/webserve.py:4114 msgid "Backup/Restore" msgstr "Back-up/Herstel" -#: gui/slick/views/layouts/main.mako:187 sickbeard/webserve.py:3852 -#: sickbeard/webserve.py:4206 +#: gui/slick/views/layouts/main.mako:187 sickbeard/webserve.py:3823 +#: sickbeard/webserve.py:4177 msgid "Search Settings" msgstr "Zoekinstellingen" -#: gui/slick/views/layouts/main.mako:188 sickbeard/webserve.py:3853 -#: sickbeard/webserve.py:4518 +#: gui/slick/views/layouts/main.mako:188 sickbeard/webserve.py:3824 +#: sickbeard/webserve.py:4489 msgid "Search Providers" msgstr "Zoekmachines" -#: gui/slick/views/layouts/main.mako:189 sickbeard/webserve.py:3854 +#: gui/slick/views/layouts/main.mako:189 sickbeard/webserve.py:3825 msgid "Subtitles Settings" msgstr "Ondertiteling" -#: gui/slick/views/layouts/main.mako:191 sickbeard/webserve.py:3856 -#: sickbeard/webserve.py:4964 +#: gui/slick/views/layouts/main.mako:191 sickbeard/webserve.py:3827 +#: sickbeard/webserve.py:4935 msgid "Notifications" msgstr "Berichtgeving" @@ -1240,142 +1237,142 @@ msgstr "Berichtgeving" #: gui/slick/views/home.mako:35 gui/slick/views/inc_addShowOptions.mako:79 #: gui/slick/views/inc_home_showList.mako:179 gui/slick/views/layouts/main.mako:192 #: gui/slick/views/manage.mako:44 gui/slick/views/manage_massEdit.mako:202 -#: sickbeard/webserve.py:3857 sickbeard/webserve.py:5309 +#: sickbeard/webserve.py:3828 sickbeard/webserve.py:5280 msgid "Anime" msgstr "Anime" -#: sickbeard/webserve.py:3895 sickbeard/webserve.py:3896 +#: sickbeard/webserve.py:3866 sickbeard/webserve.py:3867 msgid "SickRage Configuration" msgstr "SickRage Configuratie" -#: sickbeard/webserve.py:3910 +#: sickbeard/webserve.py:3881 msgid "Config - Shares" -msgstr "" +msgstr "Configuratie - Shares" -#: sickbeard/webserve.py:3910 +#: sickbeard/webserve.py:3881 msgid "Windows Shares Configuration" -msgstr "" +msgstr "Windows Shares Configuratie" -#: sickbeard/webserve.py:3937 +#: sickbeard/webserve.py:3908 msgid "Saved Shares" -msgstr "" +msgstr "Opgeslagen Shares" -#: sickbeard/webserve.py:3937 +#: sickbeard/webserve.py:3908 msgid "Your Windows share settings have been saved" -msgstr "" +msgstr "Uw Windows share configuratie is opgeslagen" -#: sickbeard/webserve.py:3948 +#: sickbeard/webserve.py:3919 msgid "Config - General" msgstr "Configuratie - Algemeen" -#: sickbeard/webserve.py:3948 +#: sickbeard/webserve.py:3919 msgid "General Configuration" msgstr "Algemene Configuratie" -#: sickbeard/webserve.py:3988 +#: sickbeard/webserve.py:3959 msgid "Saved Defaults" msgstr "Opgeslagen Standaardwaarden" -#: sickbeard/webserve.py:3988 +#: sickbeard/webserve.py:3959 msgid "Your \"add show\" defaults have been set to your current selections." msgstr "De standaard waardes voor \"Show toevoegen\" zijn ingesteld op uw huidige selectie." -#: sickbeard/webserve.py:4095 +#: sickbeard/webserve.py:4066 msgid "Unable to create directory {directory}, log directory not changed." msgstr "Aanmaken van de map {directory} is mislukt, logboekmap is ongewijzigd." -#: sickbeard/webserve.py:4103 +#: sickbeard/webserve.py:4074 msgid "Unable to create directory {directory}, https cert directory not changed." msgstr "Map {directory) kan niet worden aangemaakt, SSL certificaat map is ongewijzigd." -#: sickbeard/webserve.py:4107 +#: sickbeard/webserve.py:4078 msgid "Unable to create directory {directory}, https key directory not changed." msgstr "Niet in staat hier een map {directory} te maken, de https key map is niet gewijzigd." -#: sickbeard/webserve.py:4126 sickbeard/webserve.py:4324 sickbeard/webserve.py:4456 -#: sickbeard/webserve.py:5227 +#: sickbeard/webserve.py:4097 sickbeard/webserve.py:4295 sickbeard/webserve.py:4427 +#: sickbeard/webserve.py:5198 msgid "Error(s) Saving Configuration" msgstr "Er is een/zijn fout(en) opgetreden bij het opslaan van de instellingen" -#: sickbeard/webserve.py:4129 sickbeard/webserve.py:4327 sickbeard/webserve.py:4458 -#: sickbeard/webserve.py:4950 sickbeard/webserve.py:5230 sickbeard/webserve.py:5294 -#: sickbeard/webserve.py:5323 +#: sickbeard/webserve.py:4100 sickbeard/webserve.py:4298 sickbeard/webserve.py:4429 +#: sickbeard/webserve.py:4921 sickbeard/webserve.py:5201 sickbeard/webserve.py:5265 +#: sickbeard/webserve.py:5294 msgid "Configuration Saved" msgstr "Configuratie opgeslagen" -#: sickbeard/webserve.py:4142 +#: sickbeard/webserve.py:4113 msgid "Config - Backup/Restore" msgstr "Configuratie - Back-up/Herstel" -#: sickbeard/webserve.py:4205 +#: sickbeard/webserve.py:4176 msgid "Config - Episode Search" msgstr "Configuratie - Afleveringen zoeken" -#: sickbeard/webserve.py:4340 +#: sickbeard/webserve.py:4311 msgid "Config - Post Processing" msgstr "Configuratie - nabewerking" -#: sickbeard/webserve.py:4380 +#: sickbeard/webserve.py:4351 msgid "Unpacking Not Supported, disabling unpack setting" msgstr "Uitpakken niet ondersteund, deze instelling is nu uitgeschakeld" -#: sickbeard/webserve.py:4431 +#: sickbeard/webserve.py:4402 msgid "You tried saving an invalid normal naming config, not saving your naming settings" msgstr "U hebt geprobeerd een ongeldige normale benamingsconfiguratie op te slaan, deze wordt nu niet opgeslagen" -#: sickbeard/webserve.py:4439 +#: sickbeard/webserve.py:4410 msgid "You tried saving an invalid anime naming config, not saving your naming settings" msgstr "U hebt geprobeerd een ongeldige anime benamingsconfiguratie op te slaan, deze wordt nu niet opgeslagen" -#: sickbeard/webserve.py:4517 +#: sickbeard/webserve.py:4488 msgid "Config - Providers" msgstr "Configuratie - Providers" -#: sickbeard/webserve.py:4547 +#: sickbeard/webserve.py:4518 msgid "No Provider Name specified" msgstr "Geen naam opgegeven voor deze zoekmachine" -#: sickbeard/webserve.py:4549 +#: sickbeard/webserve.py:4520 msgid "No Provider Url specified" msgstr "Geen webadres opgegeven voor deze zoekmachine" -#: sickbeard/webserve.py:4551 +#: sickbeard/webserve.py:4522 msgid "No Provider Api key specified" msgstr "Geen API sleutel opgegeven voor deze zoekmachine" -#: sickbeard/webserve.py:4963 +#: sickbeard/webserve.py:4934 msgid "Config - Notifications" msgstr "Configuratie - meldingen" -#: sickbeard/webserve.py:5243 +#: sickbeard/webserve.py:5214 msgid "Config - Subtitles" msgstr "Configuratie - Ondertiteling" -#: sickbeard/webserve.py:5308 +#: sickbeard/webserve.py:5279 msgid "Config - Anime" msgstr "Configuratie - Anime" -#: sickbeard/webserve.py:5336 +#: sickbeard/webserve.py:5307 msgid "Clear Errors" msgstr "Verwijder foutmeldingen" -#: sickbeard/webserve.py:5342 +#: sickbeard/webserve.py:5313 msgid "Clear Warnings" msgstr "Verwijder waarschuwingen" -#: sickbeard/webserve.py:5348 +#: sickbeard/webserve.py:5319 msgid "Submit Errors" msgstr "Verzend foutmeldingen" -#: sickbeard/webserve.py:5363 +#: sickbeard/webserve.py:5334 msgid "Logs & Errors" msgstr "Waarschuwingen & fouten" -#: sickbeard/webserve.py:5388 +#: sickbeard/webserve.py:5359 msgid "Log File" msgstr "Logbestand" -#: sickbeard/webserve.py:5388 +#: sickbeard/webserve.py:5359 msgid "Logs" msgstr "Logboeken" @@ -1383,30 +1380,166 @@ msgstr "Logboeken" msgid "This is a test notification from SickRage" msgstr "Dit is een test-notificatie van SickRage" -#: gui/slick/js/core.js:481 gui/slick/js/core.js:502 gui/slick/js/core.js:524 -#: gui/slick/js/core.js:548 gui/slick/js/core.js:573 gui/slick/js/core.js:596 -#: gui/slick/js/core.js:625 gui/slick/js/core.js:645 gui/slick/js/core.js:690 -#: gui/slick/js/core.js:769 gui/slick/js/core.js:829 gui/slick/js/core.js:849 -#: gui/slick/js/core.js:879 gui/slick/js/core.js:909 gui/slick/js/core.js:969 -#: gui/slick/js/core.js:1046 gui/slick/js/core.js:1066 gui/slick/js/core.js:1085 +#: gui/slick/js/browser.js:6 +msgid "Choose Directory" +msgstr "" + +#: gui/slick/js/core.js:443 +msgid "Select log file folder location" +msgstr "" + +#: gui/slick/js/core.js:445 +msgid "Select CSS file" +msgstr "" + +#: gui/slick/js/core.js:469 +msgid "Select backup folder to save to" +msgstr "" + +#: gui/slick/js/core.js:470 +msgid "Select backup files to restore" +msgstr "" + +#: gui/slick/js/core.js:479 gui/slick/js/core.js:500 gui/slick/js/core.js:522 +#: gui/slick/js/core.js:546 gui/slick/js/core.js:571 gui/slick/js/core.js:594 +#: gui/slick/js/core.js:623 gui/slick/js/core.js:643 gui/slick/js/core.js:688 +#: gui/slick/js/core.js:767 gui/slick/js/core.js:827 gui/slick/js/core.js:847 +#: gui/slick/js/core.js:877 gui/slick/js/core.js:907 gui/slick/js/core.js:967 +#: gui/slick/js/core.js:1044 gui/slick/js/core.js:1064 gui/slick/js/core.js:1083 msgid "Please fill out the necessary fields above." +msgstr "Vul bovenstaande verplichte velden." + +#: gui/slick/js/core.js:680 +msgid "<b>Step 1:</b> Confirm Authorization" +msgstr "" + +#: gui/slick/js/core.js:977 +msgid "Check blacklist name; the value needs to be a trakt slug" +msgstr "" + +#: gui/slick/js/core.js:1022 +msgid "You must provide a recipient email address!" +msgstr "" + +#: gui/slick/js/core.js:1107 +msgid "You didn't supply a Pushbullet api key" +msgstr "" + +#: gui/slick/js/core.js:1133 gui/slick/js/core.js:1162 +msgid "Don't forget to save your new pushbullet settings." +msgstr "" + +#: gui/slick/js/core.js:1262 +msgid "Select TV Download Directory" msgstr "" -#: gui/slick/js/core.js:1328 gui/slick/js/core.js:1378 gui/slick/js/core.js:1427 -#: gui/slick/js/core.js:1493 +#: gui/slick/js/core.js:1263 +msgid "Select Unpack Directory" +msgstr "" + +#: gui/slick/js/core.js:1326 gui/slick/js/core.js:1376 gui/slick/js/core.js:1425 +#: gui/slick/js/core.js:1491 msgid "This pattern is invalid." msgstr "Dit patroon is ongeldig." -#: gui/slick/js/core.js:1336 gui/slick/js/core.js:1386 gui/slick/js/core.js:1435 -#: gui/slick/js/core.js:1501 +#: gui/slick/js/core.js:1334 gui/slick/js/core.js:1384 gui/slick/js/core.js:1433 +#: gui/slick/js/core.js:1499 msgid "This pattern would be invalid without the folders, using it will force \"Season Folders\" on for all shows." msgstr "Dit patroon is normaliter ongeldig zonder de folders; in dat geval wordt \"Seizoen Folders\" voor alle series gebruikt." -#: gui/slick/js/core.js:1344 gui/slick/js/core.js:1394 gui/slick/js/core.js:1443 -#: gui/slick/js/core.js:1509 +#: gui/slick/js/core.js:1342 gui/slick/js/core.js:1392 gui/slick/js/core.js:1441 +#: gui/slick/js/core.js:1507 msgid "This pattern is valid." msgstr "Dit patroon is geldig." +#: gui/slick/js/core.js:1818 +msgid "Select .nzb black hole/watch location" +msgstr "" + +#: gui/slick/js/core.js:1819 +msgid "Select .torrent black hole/watch location" +msgstr "" + +#: gui/slick/js/core.js:1820 +msgid "Select .torrent download location" +msgstr "" + +#: gui/slick/js/core.js:1900 +msgid "Minimum seeding time is" +msgstr "" + +#: gui/slick/js/core.js:1902 +msgid "URL to your uTorrent client (e.g. http://localhost:8000)" +msgstr "" + +#: gui/slick/js/core.js:1905 +msgid "Stop seeding when inactive for" +msgstr "" + +#: gui/slick/js/core.js:1911 +msgid "URL to your Transmission client (e.g. http://localhost:9091)" +msgstr "" + +#: gui/slick/js/core.js:1921 +msgid "URL to your Deluge client (e.g. http://localhost:8112)" +msgstr "" + +#: gui/slick/js/core.js:1930 +msgid "IP or Hostname of your Deluge Daemon (e.g. scgi://localhost:58846)" +msgstr "" + +#: gui/slick/js/core.js:1937 +msgid "URL to your Synology DS client (e.g. http://localhost:5000)" +msgstr "" + +#: gui/slick/js/core.js:1941 +msgid "URL to your rTorrent client (e.g. scgi://localhost:5000 <br> or https://localhost/rutorrent/plugins/httprpc/action.php)" +msgstr "" + +#: gui/slick/js/core.js:1952 +msgid "URL to your qBittorrent client (e.g. http://localhost:8080)" +msgstr "" + +#: gui/slick/js/core.js:1962 +msgid "URL to your MLDonkey (e.g. http://localhost:4080)" +msgstr "" + +#: gui/slick/js/core.js:1974 +msgid "URL to your putio client (e.g. http://localhost:8080)" +msgstr "" + +#: gui/slick/js/core.js:1975 +msgid "<a herf=\"https://app.put.io/oauth/apps/new\" target=\"_blank\"> Create a new OAuth app for put.io</a>" +msgstr "" + +#: gui/slick/js/core.js:1977 +msgid "Put.io Parent Folder" +msgstr "" + +#: gui/slick/js/core.js:1978 +msgid "Put.io OAuth Token" +msgstr "" + +#: gui/slick/js/core.js:3383 gui/slick/views/displayShow.mako:410 +msgid "Show Episodes" +msgstr "Toon afleveringen" + +#: gui/slick/js/core.js:3388 gui/slick/views/displayShow.mako:408 +msgid "Hide Episodes" +msgstr "Afleveringen verbergen" + +#: gui/slick/js/core.js:3396 +msgid "Select Show Location" +msgstr "" + +#: gui/slick/js/core.js:3460 +msgid "Select Unprocessed Episode Folder" +msgstr "" + +#: gui/slick/js/core.js:3790 +msgid "DELETED" +msgstr "" + #: gui/slick/js/core.js:4082 msgid "Resume updating the log on this page." msgstr "Bijwerken van de logging op deze pagina hervatten." @@ -1415,6 +1548,26 @@ msgstr "Bijwerken van de logging op deze pagina hervatten." msgid "Pause updating the log on this page." msgstr "Bijwerken van de logging op deze pagina pauzeren." +#: gui/slick/js/core.js:4323 +msgid "searching {searchingFor}..." +msgstr "" + +#: gui/slick/js/core.js:4334 +msgid "search timed out, try again or try another indexer" +msgstr "" + +#: gui/slick/js/core.js:4503 +msgid "loading folders..." +msgstr "" + +#: gui/slick/js/parsers.js:7 gui/slick/js/parsers.js:8 +#: gui/slick/js/plotTooltip.js:6 gui/slick/js/sceneExceptionsTooltip.js:6 +#: gui/slick/views/inc_home_showList.mako:209 +#: gui/slick/views/inc_home_showList.mako:215 +#: gui/slick/views/inc_home_showList.mako:231 +msgid "Loading..." +msgstr "Laden..." + #: gui/slick/views/404.mako:5 msgid "You have reached this page by accident, please check the url." msgstr "De pagina kan niet gevonden worden. Controleer of het Url correct is." @@ -2175,19 +2328,19 @@ msgstr "zichtbaarheid (watermerk) van de serie-afbeelding op de achtergrond" #: gui/slick/views/config_general.mako:446 msgid "Use a custom stylesheet file" -msgstr "" +msgstr "Gebruik een aangepaste stylesheet bestand" #: gui/slick/views/config_general.mako:451 msgid "use a custom .css file to style SickRage (for advanced users)" -msgstr "" +msgstr "gebruik een aangepaste .css bestand voor de opmaak van SickRage (voor geavanceerde gebruikers)" #: gui/slick/views/config_general.mako:457 msgid "Stylesheet File Path" -msgstr "" +msgstr "Stylesheet bestandspad" #: gui/slick/views/config_general.mako:468 msgid "Path to the stylesheet (.css) file" -msgstr "" +msgstr "Pad naar het stylesheet (.css) bestand" #: gui/slick/views/config_general.mako:477 msgid "Show all seasons" @@ -3273,11 +3426,11 @@ msgstr "Pushover API sleutel" #: gui/slick/views/config_notifications.mako:1444 #: gui/slick/views/config_notifications.mako:2297 msgid "click here" -msgstr "" +msgstr "klik hier" #: gui/slick/views/config_notifications.mako:1444 msgid " to create a Pushover API key" -msgstr "" +msgstr " een Pushover API-sleutel te maken" #: gui/slick/views/config_notifications.mako:1452 msgid "Pushover devices" @@ -3608,7 +3761,7 @@ msgstr "per apparaat specifiek id" #: gui/slick/views/config_notifications.mako:2297 msgid " to create a Join API key" -msgstr "" +msgstr " een Join API-sleutel te maken" #: gui/slick/views/config_notifications.mako:2328 msgid "Twilio" @@ -5377,27 +5530,27 @@ msgstr "Test verbinding" #: gui/slick/views/config_shares.mako:11 msgid "Windows Shares" -msgstr "" +msgstr "Windows Shares" #: gui/slick/views/config_shares.mako:12 msgid "Defines your existing windows shares so that we can add them to the browse dialog" -msgstr "" +msgstr "Definieert uw bestaande windows-shares, zodat we ze aan het dialoogvenster Bladeren toevoegen kunnen" #: gui/slick/views/config_shares.mako:22 msgid "Share #{number}" -msgstr "" +msgstr "Share #{number}" #: gui/slick/views/config_shares.mako:27 msgid "Share label" -msgstr "" +msgstr "Bestandsdelen label" #: gui/slick/views/config_shares.mako:31 msgid "Hostname or IP" -msgstr "" +msgstr "Hostnaam of IP-adres" #: gui/slick/views/config_shares.mako:35 msgid "Share path" -msgstr "" +msgstr "Pad naar share" #: gui/slick/views/config_subtitles.mako:30 #: gui/slick/views/config_subtitles.mako:43 @@ -5718,14 +5871,6 @@ msgstr "Wijzig geselecteerde afleveringen in" msgid "Select Columns" msgstr "Selecteer kolommen" -#: gui/slick/views/displayShow.mako:408 -msgid "Hide Episodes" -msgstr "Afleveringen verbergen" - -#: gui/slick/views/displayShow.mako:410 -msgid "Show Episodes" -msgstr "Toon afleveringen" - #: gui/slick/views/displayShow.mako:424 msgid "NFO" msgstr "NFO" @@ -6244,12 +6389,6 @@ msgstr "Actief" msgid "loading" msgstr "laden" -#: gui/slick/views/inc_home_showList.mako:209 -#: gui/slick/views/inc_home_showList.mako:215 -#: gui/slick/views/inc_home_showList.mako:231 -msgid "Loading..." -msgstr "Laden..." - #: gui/slick/views/inc_qualityChooser.mako:31 msgid "<p><b><u>Preferred</u></b> qualities will replace those in <b><u>allowed</u></b>, even if they are lower.</p>" msgstr "<p><b><u>Toegestane</u></b> kwaliteiten zullen worden vervangen door die van uw <b><u>Voorkeur</u></b>, zelfs als ze een lagere kwaliteit hebben.</p>" @@ -6787,6 +6926,10 @@ msgstr "Update KODI" msgid "Update Emby" msgstr "Update Emby" +#: gui/slick/views/layouts/main.mako:167 +msgid "Manage Torrents" +msgstr "Beheer Torrents" + #: gui/slick/views/layouts/main.mako:173 msgid "Missed Subtitle Management" msgstr "Gemiste ondertiteling" diff --git a/locale/no_NO/LC_MESSAGES/messages.json b/locale/no_NO/LC_MESSAGES/messages.json index cf8f14d578be63f56194b3272daf3c541e0a97b7..fd1060260a0457bd591e6698c7241ac3c9570174 100644 --- a/locale/no_NO/LC_MESSAGES/messages.json +++ b/locale/no_NO/LC_MESSAGES/messages.json @@ -1 +1 @@ -{"messages":{"domain":"messages","locale_data":{"messages":{"100":[null,"100"],"250":[null,"250"],"500":[null,"500"],"":{"domain":"messages","plural_forms":"nplurals=2; plural=(n != 1);","lang":"no_NO"},"Drama":[null,"Drama"],"Mystery":[null,"Mysterie"],"Science-Fiction":[null,"Science Fiction"],"Crime":[null,"Krim"],"Action":[null,"Handling"],"Comedy":[null,"Komedie"],"Thriller":[null,"Thriller"],"Animation":[null,"Animasjon"],"Family":[null,"Familie"],"Fantasy":[null,"Fantasi"],"Adventure":[null,"Eventyr"],"Horror":[null,"Skrekk"],"Film-Noir":[null,"Film noir"],"Sci-Fi":[null,"Science Fiction"],"Romance":[null,"Romantikk"],"Sport":[null,"Sport"],"War":[null,"Krig"],"Biography":[null,"Biografi"],"History":[null,"Historikk"],"Music":[null,"Musikk"],"Western":[null,"Western"],"News":[null,"Nyheter"],"Sitcom":[null,"Situasjonskomedie"],"Reality-TV":[null,"Reality-TV"],"Documentary":[null,"Dokumentar"],"Game-Show":[null,"Gameshow"],"Musical":[null,"Musikal"],"Talk-Show":[null,"Talkshow"],"Started Download":[null,"Nedlasting startet"],"Download Finished":[null,"Nedlasting ferdig"],"Subtitle Download Finished":[null,"Nedlasting av Undertekst Ferdig"],"SickRage Updated":[null,"SickRage er oppdatert"],"SickRage Updated To Commit#: ":[null,"SickRage Oppdaterte Til Commit#: "],"SickRage new login":[null,"SickRage ny innlogging"],"New login from IP: {0}. http://geomaplookup.net/?ip={0}":[null,"Ny innlogging fra IP: {0}. http://geomaplookup.net/?ip={0}"],"Repeat":[null,"Gjenta"],"Repeat (Separated)":[null,"Gjenta (skilt)"],"Extend":[null,"Utvid"],"Extend (Limited)":[null,"Utvid (begrenset)"],"Extend (Limited, E-prefixed)":[null,"Utvid (begrenset, E-prefiks)"],"Downloaded":[null,"Nedlastet"],"Snatched":[null,"Hentet"],"Snatched (Proper)":[null,"Hentet (Ordentlig)"],"Failed":[null,"Mislykket"],"Snatched (Best)":[null,"Hentet (beste)"],"Archived":[null,"Arkivert"],"Unknown":[null,"Ukjent"],"Unaired":[null,"Ikke sendt"],"Skipped":[null,"Hoppet over"],"Wanted":[null,"Ønsket"],"Ignored":[null,"Ignorert"],"Subtitled":[null,"Tekstet"],"<No Filter>":[null,"< Uten filter >"],"Daily Searcher":[null,"Daglig søker"],"Backlog":[null,"Backlog"],"Show Updater":[null,"Serieoppdaterer"],"Check Version":[null,"Sjekk versjon"],"Show Queue":[null,"Serie-kø"],"Search Queue (All)":[null,"Søkekø (alle)"],"Search Queue (Daily Searcher)":[null,"Søkekø (daglig søk)"],"Search Queue (Backlog)":[null,"Søkekø (backlog)"],"Search Queue (Manual)":[null,"Søkekø (manuell)"],"Search Queue (Retry/Failed)":[null,"Søkekø (prøv igjen/mislyktes)"],"Search Queue (RSS)":[null,"Søkekø (RSS)"],"Find Propers":[null,"Finn propers"],"Postprocessor":[null,"Etterbehandler"],"Find Subtitles":[null,"Finn undertekster"],"Trakt Checker":[null,"Trakt sjekk"],"Event":[null,"Hendelse"],"Error":[null,"Feil"],"Tornado":[null,"Tornado"],"Thread":[null,"Tråd"],"Main":[null,"Hoved"],"Loading":[null,"Laster inn"],"New update found for SickRage, starting auto-updater":[null,"Ny oppdatering funnet for SickRage, starter auto-oppdatering"],"Update was successful":[null,"Oppdateringen var vellykket"],"Update failed!":[null,"Oppdateringen mislyktes!"],"Backup":[null,"Sikkerhetskopier"],"Config backup in progress...":[null,"Sikkerhetskopiering av konfigurasjon pågår..."],"Config backup successful, updating...":[null,"Sikkerhetskopiering av konfigurasjon vellykket, oppdaterer..."],"Config backup failed, aborting update":[null,"Sikkerhetskopiering av konfigurasjon mislyktes, avbryter oppdateringen"],"No update needed":[null,"Ingen oppdatering nødvendig"],"Mako Error":[null,"Mako feil"],"Oops":[null,"Oops"],"Wrong API key used":[null,"Feil API-nøkkel brukes"],"Login":[null,"Innlogging"],"API Key not generated":[null,"API-nøkkel ikke generert"],"API Builder":[null,"API Bygger"],"Schedule":[null,"Sendeplan"],"Test 1":[null,"Test 1"],"This is test number 1":[null,"Dette er test nummer 1"],"Test 2":[null,"Test 2"],"This is test number 2":[null,"Dette er test nummer 2"],"You're using the {branch} branch. Please use 'master' unless specifically asked":[null,"Du bruker {branch} grenen. Bruk \"master\" mindre spurt spesifikt om det"],"Invalid show parameters":[null,"Ugyldig Vis-parametere"],"Invalid parameters":[null,"Ugyldige parametre"],"Episode couldn't be retrieved":[null,"Episode kunne ikke bli hentet"],"Home":[null,"Hjem"],"Show List":[null,"Serieliste"],"Error: Unsupported Request. Send jsonp request with 'callback' variable in the query string.":[null,"Feil: Ustøttet forespørsel. Send jsonp-forespørsel med \"callback\"-variabel i søkestrengen."],"Success. Connected and authenticated":[null,"Suksess. Tilkoblet og autentisert"],"Authentication failed. SABnzbd expects":[null,"Godkjenning mislyktes. SABnzbd forventer"],"as authentication method":[null,"som autentiseringsmetode"],"Unable to connect to host":[null,"Kan ikke koble til verten"],"SMS sent successfully":[null,"SMS sendt"],"Problem sending SMS: {message}":[null,"Problemer med å sende SMS: {message}"],"Telegram notification succeeded. Check your Telegram clients to make sure it worked":[null,"Telegram varsel lyktes. Sjekk Telegram-klientene for å verifisere at det fungerte"],"Error sending Telegram notification: {message}":[null,"Feil under sending Telegram-varsel: {message}"],"join notification succeeded. Check your join clients to make sure it worked":[null,"join melding lyktes. Sjekk join klientene for å se at det fungerte"],"Error sending join notification: {message}":[null,"Feil under sending av join-melding: {message}"]," with password":[null," med passord"],"Registered and Tested growl successfully {growl_host}":[null,"Registrering og testing av Growl vellykket {growl_host}"],"Registration and Testing of growl failed {growl_host}":[null,"Registrering og testing av Growl mislyktes {growl_host}"],"Test prowl notice sent successfully":[null,"Prowl testmelding ble sendt"],"Test prowl notice failed":[null,"Prowl testmelding feilet"],"Boxcar2 notification succeeded. Check your Boxcar2 clients to make sure it worked":[null,"Boxcar2 melding lyktes. Sjekk Boxcar2 klientene for å se at det fungerte"],"Error sending Boxcar2 notification":[null,"Feil under sending av en Boxcar2 melding"],"Pushover notification succeeded. Check your Pushover clients to make sure it worked":[null,"Pushover melding lyktes. Sjekk Pushover klientene for å se at det fungerte"],"Error sending Pushover notification":[null,"Feil under sending av en Pushover melding"],"Key verification successful":[null,"Nøkkelkontroll vellykket"],"Unable to verify key":[null,"Kan ikke bekrefte nøkkel"],"Tweet successful, check your twitter to make sure it worked":[null,"Tweet vellykket. Sjekk twitter for å forsikre deg om at det fungerte"],"Error sending tweet":[null,"Feil ved sending av tweet"],"Please enter a valid account sid":[null,"Vennligst oppgi en gyldig sid-konto"],"Please enter a valid auth token":[null,"Vennligst skriv inn en gyldig auth token"],"Please enter a valid phone sid":[null,"Vennligst skriv inn et gyldig telefonnr"],"Please format the phone number as \"+1-###-###-####\"":[null,"Vennligst formater telefonnummeret som \"+1-###-###-###\""],"Authorization successful and number ownership verified":[null,"Autoriseringen lyktes og nummerets eierskap er bekreftet"],"Error sending sms":[null,"Feil ved sending av SMS"],"Slack message successful":[null,"Slack-melding sendt"],"Slack message failed":[null,"Slack-melding mislyktes"],"Discord message successful":[null,"Discord-melding sendt"],"Discord message failed":[null,"Discord-melding mislyktes"],"Test KODI notice sent successfully to {kodi_host}":[null,"Test KODI melding sendt vellykket til {kodi_host}"],"Test KODI notice failed to {kodi_host}":[null,"Test KODI melding feilet til {kodi_host}"],"Successful test notice sent to Plex Home Theater ... {plex_clients}":[null,"Vellykket testmelding sendt til Plex Home Theater ... {plex_clients}"],"Test failed for Plex Home Theater ... {plex_clients}":[null,"Test feilet for Plex Home Theater ... {plex_clients}"],"Tested Plex Home Theater(s)":[null,"Testede Plex Home Theater(s)"],"Successful test of Plex Media Server(s) ... {plex_servers}":[null,"Vellykket test av Plex Media Server(e) ... {plex_servers}"],"Test failed, No Plex Media Server host specified":[null,"Test feilet, Ingen Plex Media Server vert spesifisert"],"Test failed for Plex Media Server(s) ... {plex_servers}":[null,"Test feilet for Plex Media Server(e) ... {plex_servers}"],"Tested Plex Media Server host(s)":[null,"Testede Plex Media Server vert(er)"],"Tried sending desktop notification via libnotify":[null,"Forsøkte å sende skrivebordsmelding via libnotify"],"Test notice sent successfully to {emby_host}":[null,"Testmelding sendt til {emby_host}"],"Test notice failed to {emby_host}":[null,"Testmelding feilet til {emby_host}"],"Successfully started the scan update":[null,"Vellykket start av skanningsoppdatering"],"Test failed to start the scan update":[null,"Mislykket start av skanningsoppdatering"],"Test notice sent successfully to {nmj2_host}":[null,"Testmelding sendt vellykket til {nmj2_host}"],"Test notice failed to {nmj2_host}":[null,"Testmelding feilet til {nmj2_host}"],"Trakt Authorized":[null,"Trakt godkjent"],"Trakt Not Authorized!":[null,"Trakt ikke godkjent!"],"Test email sent successfully! Check inbox.":[null,"Test e-post sendt! Sjekk innboks."],"ERROR: {last_error}":[null,"FEIL: {last_error}"],"Test NMA notice sent successfully":[null,"NMA testmelding sendt"],"Test NMA notice failed":[null,"NMA testmelding mislyktes"],"Pushalot notification succeeded. Check your Pushalot clients to make sure it worked":[null,"Pushalot melding lyktes. Sjekk Pushalot klientene for å være sikker på at det fungerte"],"Error sending Pushalot notification":[null,"Feil ved sending av en Pushalot melding"],"Pushbullet notification succeeded. Check your device to make sure it worked":[null,"Pushbullet melding lyktes. Sjekk din enhet for å se at det virket"],"Error sending Pushbullet notification":[null,"Feil ved sending av Pushbullet notifikasjon"],"Status":[null,"Status"],"Restarting SickRage":[null,"Starter SickRage på nytt"],"Update Failed":[null,"Oppdatering Feilet"],"Update wasn't successful, not restarting. Check your log for more information.":[null,"Oppdatering ikke vellykket, starter ikke på nytt. Sjekk loggen for mer informasjon."],"Checking out branch":[null,"Sjekker ut gren"],"Already on branch":[null,"Allerede på gren"],"Invalid show ID: {show}":[null,"Ugyldig serie ID: {show}"],"Show not in show list":[null,"Serie ikke i serielisten"],"Edit":[null,"Endre"],"This show is in the process of being downloaded - the info below is incomplete.":[null,"Serien lastes ned - informasjon under er ufullstendig."],"The information on this page is in the process of being updated.":[null,"Informasjonen på denne siden er i ferd med å bli oppdatert."],"The episodes below are currently being refreshed from disk":[null,"Episodene nedenfor oppdateres fra disk"],"Currently downloading subtitles for this show":[null,"Laster ned undertekster for denne serien"],"This show is queued to be refreshed.":[null,"Denne serien er satt i kø for å bli oppdatert."],"This show is queued and awaiting an update.":[null,"Denne serien er satt i kø og venter på en oppdatering."],"This show is queued and awaiting subtitles download.":[null,"Denne serien er satt i kø og venter på nedlasting av undertekster."],"Resume":[null,"Gjenoppta"],"Pause":[null,"Pause"],"Remove":[null,"Fjern"],"Re-scan files":[null,"Skann filer på nytt"],"Force Full Update":[null,"Tving full oppdatering"],"Update show in KODI":[null,"Oppdater serie i KODI"],"Update show in Emby":[null,"Oppdater serie i Emby"],"Hide specials":[null,"Skjul specials"],"Show specials":[null,"Vis specials"],"Preview Rename":[null,"Forhåndsvis navnendring"],"Download Subtitles":[null,"Last ned undertekster"],"No scene exceptions":[null,"Ingen \"scene\"-unntak"],"Invalid show ID":[null,"Ugyldig serie ID"],"Unable to find the specified show":[null,"Finner ikke den angitte serien"],"Unable to retreive Fansub Groups from AniDB.":[null,"Kan ikke hente Fansub Groups fra AniDB."],"Edit Show":[null,"Endre serie"],"Unable to refresh this show: {error}":[null,"Kan ikke oppdatere denne serien: {error}"],"New location <tt>{location}</tt> does not exist":[null,"Ny plassering <tt>{location}</tt> eksisterer ikke"],"Unable to update show: {error}":[null,"Kan ikke oppdatere serie: {error}"],"Unable to force an update on scene exceptions of the show.":[null,"Kan ikke fremtvinge en oppdatering for \"scene\"-unntak av serien."],"Unable to force an update on scene numbering of the show.":[null,"Kan ikke fremtvinge en oppdatering for \"scene\"-nummerering av serien."],"{num_errors:d} error{plural} while saving changes:":[null,"{num_errors:d} feil{plural} under lagring av endringer:"],"{show_name} has been {paused_resumed}":[null,"{show_name} er {paused_resumed}"],"resumed":[null,"gjenopptatt"],"paused":[null,"pauset"],"{show_name} has been {deleted_trashed} {was_deleted}":[null,"{show_name} er blitt {deleted_trashed} {was_deleted}"],"deleted":[null,"slettet"],"trashed":[null,"kastet"],"(media untouched)":[null,"(media urørt)"],"(with all related media)":[null,"(med all relatert media)"],"Unable to refresh this show.":[null,"Kan ikke oppdatere denne serien."],"Unable to update this show.":[null,"Kan ikke oppdatere denne serien."],"Library update command sent to KODI host(s)): {kodi_hosts}":[null,"Kommando for biblioteks-oppdatering sent til KODI vert(er): {kodi_hosts}"],"Unable to contact one or more KODI host(s)): {kodi_hosts}":[null,"Kan ikke kontakte en eller flere KODI vert(er)): {kodi_hosts}"],"Library update command sent to Plex Media Server host: {plex_server}":[null,"Kommando for biblioteks-oppdatering sent til Plex Media Server vert: {plex_server}"],"Unable to contact Plex Media Server host: {plex_server}":[null,"Kan ikke kontakte Plex Media Server vert: {plex_server}"],"Library update command sent to Emby host: {emby_host}":[null,"Kommando for biblioteks-oppdatering sent til Emby vert: {emby_host}"],"Unable to contact Emby host: {emby_host}":[null,"Kan ikke kontakte Emby vert: {emby_host}"],"You must specify a show and at least one episode":[null,"Du må angi en serie og minst én episode"],"Invalid status":[null,"Ugyldig status"],"Backlog was automatically started for the following seasons of <b>{show_name}</b>":[null,"Backlog ble automatisk startet for følgende sesonger av <b>{show_name}</b>"],"Season":[null,"Sesong"],"Backlog started":[null,"Søk etter gjenværende episoder startet"],"Retrying Search was automatically started for the following season of <b>{show_name}</b>":[null,"Prøver å søke på nytt ble automatisk startet for følgende sesong av <b>{show_name}</b>"],"Retry Search started":[null,"Prøver å søke på nytt startet"],"You must specify a show":[null,"Du må spesifisere en serie"],"Can't rename episodes when the show dir is missing.":[null,"Kan ikke gi nytt navn på episode når seriemappe mangler."],"New subtitles downloaded: {new_subtitle_languages}":[null,"Nye undertekster er lastet ned: {new_subtitle_languages}"],"No subtitles downloaded":[null,"Ingen undertekster ble lastet ned"],"IRC":[null,"IRC"],"Could not load news from the repo. [Click here for news.md])({news_url})":[null,"Kan ikke laste nyheter fra repo. [Klikk her for news.md]) ({news_url})"],"The was a problem connecting to github, please refresh and try again":[null,"Det oppstod et problem under tilkoblingen til github. Vennligst last inn siden på nytt, og prøv igjen"],"Could not load changes from the repo. [Click here for CHANGES.md]({changes_url})":[null,"Kan ikke laste endringer fra repo. [Klikk her for CHANGES.md] ({changes_url})"],"Changelog":[null,"Endringslogg"],"Post Processing":[null,"Etterbehandling"],"Add Shows":[null,"Legg til serier"],"No folders selected.":[null,"Ingen valgte mapper."],"New Show":[null,"Ny serie"],"Trending Shows":[null,"Populære serier"],"Popular Shows":[null,"Populære serier"],"Most Anticipated Shows":[null,"Mest etterlengtede serier"],"Most Collected Shows":[null,"Serier flest samler på"],"Most Watched Shows":[null,"Serier med flest visninger"],"Most Played Shows":[null,"Serier som er mest spilt"],"Recommended Shows":[null,"Anbefalte serier"],"New Shows":[null,"Nye serier"],"Season Premieres":[null,"Sesongpremierer"],"Existing Show":[null,"Eksisterende serier"],"No root directories setup, please go back and add one.":[null,"Ingen rotmappe konfigurert, vennligst gå tilbake og legg til en."],"Show added":[null,"Serie lagt til"],"Adding the specified show {show_name}":[null,"Legger til serie {show_name}"],"Missing params, no Indexer ID or folder: {show_to_add} and {root_dir}/{show_path}":[null,"Manglende parametere, ingen indekserer-ID eller mappe: {show_to_add} og {root_dir}/{show_path}"],"Unknown error. Unable to add show due to problem with show selection.":[null,"Ukjent feil. Kan ikke legge til serie på grunn av problem med serie-valg."],"Unable to add show":[null,"Kan ikke legge til serie"],"Folder {show_dir} exists already":[null,"Mappe {show_dir} finnes allerede"],"Unable to create the folder {show_dir}, can't add the show":[null,"Kan ikke lage mappe {show_dir}, kan ikke legge til serie"],"Adding the specified show into {show_dir}":[null,"Legger til serie i mappe {show_dir}"],"Shows Added":[null,"Serie lagt til"],"Automatically added {num_shows} from their existing metadata files":[null,"Automatisk lagt til {num_shows} fra eksisterende metadatafiler"],"Mass Update":[null,"Masseoppdatering"],"Episode Overview":[null,"Episodeoversikt"],"Missing Subtitles":[null,"Mangler undertekster"],"Backlog Overview":[null,"Backlog Oversikt"],"Mass Edit":[null,"Masseredigering"],"Unable to update show: {excption_format}":[null,"Kan ikke oppdatere serie: {excption_format}"],"Unable to refresh show {show_name}: {excption_format}":[null,"Kan ikke oppdatere serie {show_name}: {excption_format}"],"Errors encountered":[null,"Feil oppstått"],"Updates":[null,"Oppdateringer"],"Refreshes":[null,"Oppfrisker"],"Renames":[null,"Navneendringer"],"Subtitles":[null,"Undertekster"],"The following actions were queued":[null,"Følgende handlinger ble lagt i kø"],"For best results please set the Download Station alias as":[null,"For best resultat bør du sette Download Station alias til"],"You can check this setting in the Synology DSM":[null,"Du kan kontrollere denne innstillingen i Synology DSM"],"Control Panel":[null,"Kontrollpanel"],"Application Portal":[null,"Applikasjonsportal"],"Make sure you allow DSM to be embedded with iFrames too in":[null,"Sørg for at du tillater at DSM kan bygges inn med iFrames også i"],"DSM Settings":[null,"DSM innstillinger"],"Security":[null,"Sikkerhet"],"Manage Torrents":[null,"Behandle torrents"],"Failed Downloads":[null,"Mislykkede nedlastinger"],"Manage Searches":[null,"Behandle søk"],"Backlog search started":[null,"Backlog-søk startet"],"Daily search started":[null,"Daglig søk startet"],"Find propers search started":[null,"Finn Propers-søk startet"],"Subtitle search started":[null,"Undertekstsøk startet"],"Remove Selected":[null,"Fjern markerte"],"Clear History":[null,"Tøm historikken"],"Trim History":[null,"Trim historikk"],"Selected history entries removed":[null,"De markerte historikklinjene ble slettet"],"History cleared":[null,"Historikk tømt"],"Removed history entries older than 30 days":[null,"Fjernet historikk som er eldre enn 30 dager"],"General":[null,"Generelt"],"Backup/Restore":[null,"Sikkerhetskopier/Gjenopprett"],"Search Settings":[null,"Søke instillinger"],"Search Providers":[null,"Søkeleverandører"],"Subtitles Settings":[null,"Undertekst innstillinger"],"Notifications":[null,"Varsler"],"Anime":[null,"Anime"],"SickRage Configuration":[null,"SickRage konfigurasjon"],"Config - Shares":[null,""],"Windows Shares Configuration":[null,""],"Saved Shares":[null,""],"Your Windows share settings have been saved":[null,""],"Config - General":[null,"Konfigurasjon - Generelt"],"General Configuration":[null,"Generell Konfigurasjon"],"Saved Defaults":[null,"Standardinnstillinger lagret"],"Your \"add show\" defaults have been set to your current selections.":[null,"Standardinnstillinger for \"Legg til serie\" har blitt satt til ditt nåværende valg."],"Unable to create directory {directory}, log directory not changed.":[null,"Kan ikke opprette mappen {directory}, loggmappen ikke endret."],"Unable to create directory {directory}, https cert directory not changed.":[null,"Kan ikke opprette mappen {directory}, https sertifikat-mappe ikke endret."],"Unable to create directory {directory}, https key directory not changed.":[null,"Kan ikke opprette mappen {directory}, https nøkkel-mappe ikke endret."],"Error(s) Saving Configuration":[null,"Feil ved lagring av konfigurasjon"],"Configuration Saved":[null,"Konfigurasjon lagret"],"Config - Backup/Restore":[null,"Konfigurasjon - sikkerhetskopiering/gjenoppretting"],"Config - Episode Search":[null,"Konfigurasjon - Episodesøk"],"Config - Post Processing":[null,"Konfigurasjon - etterbehandling"],"Unpacking Not Supported, disabling unpack setting":[null,"Utpakking støttes ikke, deaktiverer innstilling for utpakking"],"You tried saving an invalid normal naming config, not saving your naming settings":[null,"Du prøvde å lagre en ugyldig navngivingskonfigurasjon, lagrer ikke innstillingene for navngiving"],"You tried saving an invalid anime naming config, not saving your naming settings":[null,"Du prøvde å lagre en ugyldig anime navngivingskonfigurasjon, lagrer ikke innstillingene for navngiving"],"Config - Providers":[null,"Konfigurasjon - søkeleverandører"],"No Provider Name specified":[null,"Ingen søkeleverandør spesifisert"],"No Provider Url specified":[null,"Ingen søkeleverandør url spesifisert"],"No Provider Api key specified":[null,"Ingen søkeleverandør API-nøkkel spesifisert"],"Config - Notifications":[null,"Konfiguration - meldinger"],"Config - Subtitles":[null,"Konfigurasjon - Undertekster"],"Config - Anime":[null,"Konfigurasjon - Anime"],"Clear Errors":[null,"Fjern feilmeldinger"],"Clear Warnings":[null,"Fjern advarsler"],"Submit Errors":[null,"Send inn feil"],"Logs & Errors":[null,"Logger & feil"],"Log File":[null,"Loggfil"],"Logs":[null,"Logg"],"This is a test notification from SickRage":[null,"Dette er en testmelding fra SickRage"],"Please fill out the necessary fields above.":[null,""],"This pattern is invalid.":[null,"Dette mønsteret er ugyldig."],"This pattern would be invalid without the folders, using it will force \"Season Folders\" on for all shows.":[null,"Dette mønsteret vil kun fungere uten mapper, bruker du det vil det slå på \"Sesongmapper\" for alle serier."],"This pattern is valid.":[null,"Dette mønsteret er gyldig."],"Resume updating the log on this page.":[null,"Gjenoppta loggoppdatering på denne siden."],"Pause updating the log on this page.":[null,"Sett loggoppdatering på denne siden på pause."],"You have reached this page by accident, please check the url.":[null,"Du har kommet til denne siden ved en tilfeldighet, vennligst kontroller URL-adressen."],"A mako error has occured.<br>\n If this happened during an update a simple page refresh may be the solution.<br>\n Mako errors that happen during updates may be a one time error if there were significant ui changes.":[null,"Det oppstod en feil i mako.<br>\n Hvis dette skjedde under en oppdatering kan en enkel sideoppdatering være løsningen.<br>\n Mako feil som skjer under oppdateringer kan være engangsfeil hvis det var betydelige endringer i grensesnittet."],"Show/Hide Error":[null,"Vis/Skjul feil"],"Add New Show":[null,"Legg til ny serie"],"For shows that you haven't downloaded yet, this option finds a show on theTVDB.com, creates a directory for it's episodes, and adds it to SickRage.":[null,"For serier du ikke har lastet ned ennå. Dette alternativet finner en serie på theTVDB.com, oppretter en mappe for episodene og legger den til SickRage."],"Add From Trakt Lists":[null,"Legg til fra Trakt lister"],"For shows that you haven't downloaded yet, this option lets you choose from a show from one of the Trakt lists to add to SickRage.":[null,"For serier du ikke har lastet ned ennå. Dette alternativet lar deg velge en serie fra en av listene til Trakt for å legge til SickRage."],"Add From IMDB's Popular Shows":[null,"Legg Til Fra IMDB's Populære Serier"],"View IMDB's list of the most popular shows. This feature uses IMDB's MOVIEMeter algorithm to identify popular TV Series.":[null,"Vis IMDB's liste over de mest populære seriene. Denne funksjonen bruker IMDB's MOVIEMeter algoritme for å identifisere populære TV-serier."],"Add Existing Shows":[null,"Legg til eksisterende serier"],"Use this option to add shows that already have a folder created on your hard drive. SickRage will scan your existing metadata/episodes and add the show accordingly.":[null,"Bruk dette alternativet for å legge til serier som allerede har en mappe på harddisken. SickRage vil skanne dine eksisterende metadata/episoder og legge disse til serien."],"Add Existing Show":[null,"Legg til eksisterende serie"],"Manage Directories":[null,"Administrere mapper"],"Customize Options":[null,"Tilpasning"],"SickRage can add existing shows, using the current options, by using locally stored NFO/XML metadata to eliminate user interaction. If you would rather have SickRage prompt you to customize each show, then use the checkbox below.":[null,"SickRage kan legge til eksisterende serier ved å bruke gjeldende alternativer ved hjelp av lokalt lagrede NFO/XML metadata for å eliminere brukerinteraksjon. Hvis du heller vil at SickRage skal be deg om å tilpasse hver serie, bruk avmerkingsboksen nedenfor."],"Prompt me to set settings for each show":[null,"Spør meg om å angi innstillinger for hver serie"],"Displaying folders within these directories which aren't already added to SickRage":[null,"Viser mappene i disse katalogene som ikke allerede er lagt til SickRage"],"Submit":[null,"Send inn"],"Find a show on theTVDB":[null,"Finn en serie på theTVDB"],"Show retrieved from existing metadata":[null,"Serie hentet fra eksisterende metadata"],"All Indexers":[null,"Alle indekserere"],"Search":[null,"Søk"],"This will only affect the language of the retrieved metadata file contents and episode filenames.":[null,"Dette påvirker bare språket i hentede metadatafilers innhold og episode filnavn."],"This <b>DOES NOT</b> allow SickRage to download non-english TV episodes!":[null,"Dette tillater <b>IKKE</b> SickRage å laste ned ikke-engelske TV episoder!"],"Pick the parent folder":[null,"Velg den overordnede mappen"],"Pre-chosen Destination Folder":[null,"For-valgt målmappe"],"Customize options":[null,"Tilpasning"],"Add Show":[null,"Legg til Serie"],"Skip Show":[null,"Hopp over serie"],"Sort By":[null,"Sorter Etter"],"Name":[null,"Navn"],"Original":[null,"Original"],"Votes":[null,"Stemmer"],"Rating":[null,"Vurdering"],"Rating > Votes":[null,"Vurdering > stemmer"],"Sort Order":[null,"Sortering"],"Asc":[null,"Stigende"],"Desc":[null,"Synkende"],"Fetching of IMDB Data failed. Are you online?":[null,"Henting av IMDB Data mislyktes. Har du nett?"],"Exception":[null,"Unntak"],"Select Trakt List":[null,"Velg Trakt liste"],"Most Anticipated":[null,"Mest etterlengtede"],"Trending":[null,"Populært"],"Popular":[null,"Populær"],"Most Watched":[null,"Mest sett"],"Most Played":[null,"Mest avspilt"],"Most Collected":[null,"Mest samlet"],"Recommended":[null,"Anbefalt"],"Toggle navigation":[null,"Vis/skjul navigasjon"],"Profile":[null,"Profil"],"JSONP":[null,"JSONP"],"Back to SickRage":[null,"Tilbake til SickRage"],"Parameters":[null,"Parametere"],"Required":[null,"Påkrevd"],"Description":[null,"Beskrivelse"],"Type":[null,"Type"],"Default value":[null,"Standardverdi"],"Allowed values":[null,"Tillatte verdier"],"Playground":[null,"Lekeplass"],"Clear":[null,"Tøm"],"Yes":[null,"Ja"],"No":[null,"Nei"],"season":[null,"sesong"],"episode":[null,"episode"],"Python Version":[null,"Python versjon"],"SSL Version":[null,"SSL versjon"],"OS":[null,"OS"],"Locale":[null,"Språk"],"User":[null,"Bruker"],"Program Folder":[null,"Programmappe"],"Config File":[null,"Konfigurasjonsfil"],"Database File":[null,"Databasefil"],"Cache Folder":[null,"Hurtigbuffermappe"],"Log Folder":[null,"Loggmappe"],"Arguments":[null,"Argumenter"],"Web Root":[null,"Web rot"],"Website":[null,"Nettside"],"Wiki":[null,"Wiki"],"Source":[null,"Kilde"],"IRC Chat":[null,"IRC chat"],"AnimeDB Settings":[null,"AnimeDB innstillinger"],"Look & Feel":[null,"Utseende"],"AniDB is non-profit database of anime information that is freely open to the public":[null,"AniDB er non-profit database av anime som er fritt åpen for alle"],"Enable":[null,"Aktiver"],"should SickRage use data from AniDB?":[null,"skal SickRage bruke data fra AniDB?"],"AniDB Username":[null,"AniDB brukernavn"],"username of your AniDB account":[null,"brukernavn på AniDB-kontoen"],"AniDB Password":[null,"AniDB passord"],"password of your AniDB account":[null,"passord til AniDB-kontoen"],"AniDB MyList":[null,"AniDB MyList"],"do you want to add the PostProcessed episodes to the MyList?":[null,"vil du legge til de etterbehandlede episodene i MinListe?"],"Look and Feel":[null,"Utseende"],"How should the anime functions show and behave.":[null,"Hvordan bør anime-funksjonene vises og oppføre seg."],"Split show lists":[null,"Del serieliste"],"separate anime and normal shows in groups":[null,"del anime og normale serier opp i forskjellige grupper"],"Split in tabs":[null,"Del opp i faner"],"use tabs for when splitting show lists":[null,"bruk faner for å dele opp serielister"],"Restore":[null,"Gjenopprett"],"Backup your main database file and config.":[null,"Sikkerhetskopier din viktigste databasefil og konfiguration."],"Select the folder you wish to save your backup file to":[null,"Velg mappen du vil lagre sikkerhetskopifilen til"],"Restore your main database file and config.":[null,"Gjenopprett din viktigste databasefil og konfiguration."],"Select the backup file you wish to restore":[null,"Velg sikkerhetskopifilen du vil gjenopprette"],"Misc":[null,"Diverse"],"Interface":[null,"Grensesnitt"],"Advanced Settings":[null,"Avanserte innstillinger"],"Startup options. Indexer options. Log and show file locations.":[null,"Oppstartsalternativer. Indekserer alternativ. Logg og serie-filplassering."],"Some options may require a manual restart to take effect.":[null,"Noen alternativer kan kreve en manuell omstart for å tre i kraft."],"Default Indexer Language":[null,"Standard indekserer-språk"],"for adding shows and metadata providers":[null,"for å legge til programmer og metadataleverandører"],"Launch browser":[null,"Start nettleser"],"open the SickRage home page on startup":[null,"Åpne hjemmesiden til SickRage ved oppstart"],"Initial page":[null,"Startside"],"Shows":[null,"Serier"],"when launching SickRage interface":[null,"når du starter SickRage grensesnittet"],"Choose hour to update shows":[null,"Velg tid for oppdatering av serier"],"with information such as next air dates, show ended, etc. Use 15 for 3pm, 4 for 4am etc.":[null,"med informasjon som neste sendingsdato, avsluttede serier, osv. Bruk 15 for 3 pm, 4 for 4 am osv."],"note":[null,"merknad"],"minutes are randomized each time SickRage is started":[null,"minuttene blir tilfeldig valgt hver gang SickRage starter"],"Send to trash for actions":[null,"Send til papirkurven for handlinger"],"when using show \"Remove\" and delete files":[null,"når du bruker serie \"Fjern\" og slett filer"],"on scheduled deletes of the oldest log files":[null,"på planlagte slettinger av de eldste loggfilene"],"selected actions use trash (recycle bin) instead of the default permanent delete":[null,"merkede handlingene bruker papirkurven i stedet for standard permanent sletting"],"Log file folder location":[null,"Mappen for loggfiler"],"Number of Log files saved":[null,"Antall loggfiler lagret"],"number of log files saved when rotating logs (default: 5) (REQUIRES RESTART)":[null,"antall loggfiler lagret når logger roteres (standard: 5) (KREVER OMSTART)"],"Size of Log files saved":[null,"Størrelse på loggfilene som er lagret"],"maximum size in MB of the log file (default: 1MB) (REQUIRES RESTART)":[null,"maksimumsstørrelsen i megabyte for loggfilen (standard: 1MB) (KREVER OMSTART)"],"Use initial indexer set to":[null,"Bruk første indeksereren satt til"],"as the default selection when adding new shows":[null,"som standardvalg når du legger til nye serier"],"Timeout show indexer at":[null,"Tidsavbrudd serie indekser på"],"seconds of inactivity when finding new shows (default:20)":[null,"sekunder med inaktivitet når nye serier finnes (standard: 20)"],"Show root directories":[null,"Vis rotmapper"],"where the files of shows are located":[null,"hvor filene til seriene ligger"],"Save Changes":[null,"Lagre endringer"],"Options for software updates.":[null,"Alternativer for programvareoppdateringer."],"Check software updates":[null,"Se etter programvareoppdateringer"],"and display notifications when updates are available. Checks are run on startup and at the frequency set below*":[null,"og vis meldinger når oppdateringer er tilgjengelige. Sjekk kjøres ved oppstart og med intervaller satt nedenfor *"],"Automatically update":[null,"Automatisk oppdater"],"fetch and install software updates. Updates are run on startup and in the background at the frequency set below*":[null,"hent og installer programvareoppdateringer. Oppdateringer kjøres ved oppstart og i bakgrunnen med intervaller satt nedenfor *"],"Check the server every*":[null,"Kontroller serveren hver *"],"hours for software updates (default:1)":[null,"timer for programvareoppdateringer (standard:1)"],"Notify on software update":[null,"Vis varsel ved programvareoppdatering"],"send a message to all enabled notifiers when SickRage has been updated":[null,"send en melding til alle aktiverte varslinger når SickRage er blitt oppdatert"],"User Interface":[null,"Brukergrensesnitt"],"Options for visual appearance.":[null,"Alternativer for utseende."],"Interface Language":[null,"Grensesnittspråk"],"System Language":[null,"Systemspråk"],"for appearance to take effect, save then refresh your browser":[null,"for at utseende skal tre i kraft, lagre og deretter oppdater nettleseren"],"Display theme":[null,"Vis tema"],"Dark":[null,"Mørk"],"Light":[null,"Lys"],"Use a background image":[null,"Bruk et bakgrunnsbilde"],"use a custom image as background for SickRage":[null,"bruk et valgt bilde som bakgrunn for SickRage"],"Background Path":[null,"Sti til bakgrunnsbildet"],"Path to the background image":[null,"Stien til bakgrunnsbildet"],"Show fanart in the background":[null,"Tilhengerkunst for serie i bakgrunnen"],"on the show summary page":[null,"på siden for serie-sammendrag"],"Fanart transparency":[null,"Gjennomsiktighet på tilhengerkunst"],"transparency of the fanart in the background":[null,"gjennomsiktighet til fanart-bakgrunnen"],"Use a custom stylesheet file":[null,""],"use a custom .css file to style SickRage (for advanced users)":[null,""],"Stylesheet File Path":[null,""],"Path to the stylesheet (.css) file":[null,""],"Show all seasons":[null,"Vis alle sesonger"],"Sort with \"The\", \"A\", \"An\"":[null,"Sorter med \"The\", \"A\", \"An\""],"include articles (\"The\", \"A\", \"An\") when sorting show lists":[null,"inkluder engelske artikler (\"The\", \"A\", \"An\") når lister sorteres"],"Missed episodes range":[null,"Mangler episodeutvalg"],"set the range in days of the missed episodes in the Schedule page":[null,"angi periode i dager for hvor lenge Sendeplan skal anse en episode som manglende"],"Display fuzzy dates":[null,"Vis omtrentlige datoer"],"move absolute dates into tooltips and display e.g. \"Last Thu\", \"On Tue\"":[null,"flytte absolutte datoer til verktøytips og vis f.eks \"Siste Tor\", \"På Tir\""],"Trim zero padding":[null,"Fjern ledende nuller"],"remove the leading number \"0\" shown on hour of day, and date of month":[null,"fjern \"0\" før timer og datoer"],"Date style":[null,"Datostil"],"Use System Default":[null,"Bruk systemstandarden"],"Time style":[null,"Klokkeslettstil"],"seconds are only shown on the History page":[null,"sekunder vises kun på historiesiden"],"Timezone":[null,"Tidssone"],"Local":[null,"Språk"],"Network":[null,"TV-Kanal"],"display dates and times in either your timezone or the shows network timezone":[null,"vis datoer og klokkeslett i din tidssone eller bruk tidssonen serien vises i"],"use local timezone to start searching for episodes minutes after show ends (depends on your dailysearch frequency)":[null,"bruk lokal tidssone for å starte søk etter episoder rett etter at sendingen slutter (avhengig av din søkefrekvens)"],"Download url":[null,"Nedlastingslink"],"URL where the shows can be downloaded.":[null,"URL-adressen der serier kan lastes ned."],"Web Interface":[null,"Webgrensesnitt"],"it is recommended that you enable a username and password to secure SickRage from being tampered with remotely.":[null,"det er anbefalt at du bruker et brukernavn og passord for å sikre SickRage fra at andre herjer med den utenfra."],"these options require a manual restart to take effect.":[null,"disse innstillingene krever en manuell omstart for å bli iverksatte."],"API key":[null,"API-nøkkel"],"used to give 3rd party programs limited access to SickRage":[null,"brukes til å gi tredjepartsprogrammer begrenset tilgang til SickRage"],"you can try all the features of the API":[null,"du kan prøve alle funksjonene til SickRage sitt API"],"here":[null,"her"],"HTTP logs":[null,"HTTP-logger"],"enable logs from the internal Tornado web server":[null,"aktiver logg fra den interne Tornado webserveren"],"HTTP username":[null,"HTTP brukernavn"],"set blank for no login":[null,"la være tom for ingen innlogging"],"HTTP password":[null,"HTTP passord"],"blank = no authentication":[null,"tom = ingen godkjenning"],"HTTP port":[null,"HTTP-port"],"web port to browse and access SickRage (default:8081)":[null,"port for å bla og få tilgang til SickRage (standard: 8081)"],"Notify on login":[null,"Varsle ved innlogging"],"enable to be notified when a new login happens in webserver":[null,"aktiver for å få melding når en ny pålogging skjer i webserver"],"Listen on IPv6":[null,"Lytt på IPv6"],"attempt binding to any available IPv6 address":[null,"forsøk å binde til alle tilgjengelige IPv6-adresser"],"Enable HTTPS":[null,"Aktiver HTTPS"],"enable access to the web interface using a HTTPS address":[null,"gi tilgang til webgrensesnittet ved bruk av en HTTPS-adresse"],"HTTPS certificate":[null,"HTTPS-sertifikat"],"file name or path to HTTPS certificate":[null,"filnavnet eller banen til HTTPS sertifikatet"],"HTTPS key":[null,"HTTPS-nøkkel"],"file name or path to HTTPS key":[null,"filnavnet eller banen til HTTPS-nøkkel"],"Reverse proxy headers":[null,"Revers proxy headere"],"accept the following reverse proxy headers (advanced)...":[null,"håndtér reverse proxy headers (avansert)..."],"(X-Forwarded-For, X-Forwarded-Host, and X-Forwarded-Proto)":[null,"(X-Forwarded-For, X-Forwarded-Host og X-Forwarded-Proto)"],"CPU throttling":[null,"CPU-begrensning"],"Normal (default). High is lower and Low is higher CPU use":[null,"Normal (standard). Høy er lavere og Lav er høyere CPU-bruk"],"Anonymous redirect":[null,"Anonym omdirigering"],"backlink protection via anonymizer service, must end in \"?\"":[null,"tilbakekoblingsbeskyttelse via anonymiseringstjeneste, må slutte på \"?\""],"Enable debug":[null,"Aktivere feilsøking"],"enable debug logs":[null,"slå på debug-logging"],"Verify SSL Certs":[null,"Kontroller SSL-sertifikater"],"verify SSL Certificates (Disable this for broken SSL installs (Like QNAP))":[null,"sjekk SSL-sertifikater (slå av dette for ødelagte SSL-installasjon (som QNAP))"],"No Restart":[null,"Ingen omstart"],"only shutdown when restarting SR":[null,"slå kun av når SR omstartes"],"only select this when you have external software restarting SR automatically when it stops (like FireDaemon)":[null,"velg dette kun når du har ekstern programvare til å automatisk omstarte SR når den stopper (som FireDaemon)"],"Encrypt passwords":[null,"Krypter passord"],"in the <code>config.ini</code> file":[null,"i filen <code>config.ini</code>"],"warning":[null,"advarsel"],"passwords must only contain":[null,"passord må kun inneholde"],"ASCII characters":[null,"ASCII-tegn"],"Unprotected calendar":[null,"Ubeskyttet kalender"],"allow subscribing to the calendar without user and password":[null,"tillat å abonnere på kalenderen uten brukernavn og passord"],"some services like Google Calendar only work this way":[null,"noen tjenester, som Google Kalender, vil kun virke på denne måten"],"Google Calendar Icons":[null,"Google Kalender Ikoner"],"show an icon next to exported calendar events in Google Calendar":[null,"vis et symbol ved siden av eksporterte kalenderhendelser i Google Kalender"],"Proxy host":[null,"Proxy-vert"],"blank to disable or proxy to use when connecting to providers":[null,"tom for å deaktivere, eller proxy til bruk ved tilkobling til leverandører"],"also use global proxy setting for indexers (tvdb, xem, anidb, etc.)":[null,"bruk også globale proxy-innstillinger for indeksere (tvdb, xem, anidb, osv.)"],"Skip Remove Detection":[null,"Deaktiver slettingsdeteksjon"],"skip detection of removed files":[null,"hopp over å se etter fjernede filer"],"if disabled the episode will be set to the default deleted status":[null,"hvis avslått vil episoden bli satt til standard slettet-status"],"Default deleted episode status":[null,"Standard slettet episode status"],"define the status to be set for media file that has been deleted.":[null,"angi statusen som skal settes for mediafiler som har blitt slettet."],"Archived option will keep previous downloaded quality":[null,"Det arkiverte alternativet vil beholde tidligere nedlastet kvalitet"],"example: Downloaded (1080p WEB-DL) ==> Archived (1080p WEB-DL)":[null,"f. eks.: Lastet ned (1080p WEB-DL) ==> Arkivert (1080p WEB-DL)"],"Options for github related features.":[null,"Alternativer for github relaterte funksjoner."],"Branch version":[null,"Grenversjon"],"error: No branches found.":[null,"feil: Ingen grener funnet."],"select branch to use (restart required)":[null,"velg gren å bruke (omstart er nødvendig)"],"Authorization Type":[null,"Autoriseringsmetode"],"Username and password":[null,"Brukernavn og passord"],"Personal access token":[null,"Persolig tilgangskode"],"You must use a personal access token if you're using \"two-factor authentication\" on GitHub.":[null,"Du må bruke en personlig kode hvis du har slått på \"two factor authentication\" på GitHub."],"GitHub username":[null,"GitHub brukernavn"],"*** (REQUIRED FOR SUBMITTING ISSUES) ***":[null,"***(KREVES FOR Å SENDE PROBLEMER) ***"],"GitHub password":[null,"GitHub passord"],"GitHub personal access token":[null,"Personlig tilgangskode for GitHub"],"Generate Token":[null,"Opprett kode"],"Manage Tokens":[null,"Behandle koder"],"GitHub remote for branch":[null,"GitHub fjernkontroll for gren"],"access repo configured remotes (save then refresh browser)":[null,"bruk fjernkoblinger satt av git-repoet (lagre og gjenoppfrisk nettleseren)"],"default":[null,"standard"],"origin":[null,"opprinnelig"],"Git executable path":[null,"Git kjørbar bane"],"only needed if OS is unable to locate git from env":[null,"kun nødvendig hvis OS ikke er i stand til å finne git fra env"],"Git reset":[null,"Git reset"],"removes untracked files and performs a hard reset on git branch automatically to help resolve update issues":[null,"fjerner ubrukte filer og utfører en nullstilling fra git grenen automatisk for å løse oppdateringsproblemer"],"Home Theater / NAS":[null,"Hjemmekino / NAS"],"Devices":[null,"Enheter"],"Social":[null,"Sosiale"],"A free and open source cross-platform media center and home entertainment system software with a 10-foot user interface designed for the living-room TV.":[null,"Et gratis og åpent kildekode, flerplattform-basert, mediasenter og hjemmekinosystem med 3 meters brukergrensesnitt laget for stue TV."],"send KODI commands?":[null,"sende KODI-kommandoer?"],"Always on":[null,"Alltid på"],"log errors when unreachable?":[null,"logg feil når utilgjengelig?"],"Notify on snatch":[null,"Send melding når hentet"],"send a notification when a download starts?":[null,"send en melding når en nedlasting starter?"],"Notify on download":[null,"Send melding ved nedlasting"],"send a notification when a download finishes?":[null,"send en melding når en nedlasting er ferdig?"],"Notify on subtitle download":[null,"Send melding ved nedlasting av undertekst"],"send a notification when subtitles are downloaded?":[null,"send en melding når undertekster er lastet ned?"],"Update library":[null,"Oppdater biblioteket"],"update KODI library when a download finishes?":[null,"oppdater KODI biblioteket når en nedlasting er ferdig?"],"Full library update":[null,"Oppdater hele biblioteket"],"perform a full library update if update per-show fails?":[null,"oppdater hele biblioteket hvis oppdateringen per-serie mislykkes?"],"Only update first host":[null,"Bare oppdater første verten"],"only send library updates to the first active host?":[null,"bare send biblioteks-oppdateringer til den første aktive verten?"],"KODI IP:Port":[null,"KODI IP:Port"],"host running KODI (eg. 192.168.1.100:8080)":[null,"vert som kjører KODI (f.eks. 192.168.1.100:8080)"],"(multiple host strings must be separated by commas)":[null,"(flere vert strenger må være atskilt med komma)"],"Username":[null,"Brukernavn"],"username for your KODI server (blank for none)":[null,"brukernavn for KODI serveren (tomt for ingen)"],"Password":[null,"Passord"],"password for your KODI server (blank for none)":[null,"passord for KODI serveren (tomt for ingen)"],"Click below to test.":[null,"Klikk nedenfor for å teste."],"Experience your media on a visually stunning, easy to use interface on your Mac connected to your TV. Your media library has never looked this good!":[null,"Opplev dine medier på et visuelt slående, brukervennlig grensesnitt på din Mac koblet til din TV. Mediebiblioteket har aldri sett så bra ut!"],"For sending notifications to Plex Home Theater (PHT) clients, use the KODI notifier with port <b>3005</b>.":[null,"For å sende meldinger til Plex Home Theater-klienter, kan du bruke KODI sin meldingstjeneste på port <b>3005</b>."],"send Plex Media Server library updates?":[null,"sende biblioteksoppdatering til Plex Media Server?"],"Plex Media Server Auth Token":[null,"Plex Media Server autorisasjonstoken"],"auth token used by Plex":[null,"auth token fra Plex"],"Update Library":[null,"Oppdater Biblioteket"],"update Plex Media Server library when a download finishes":[null,"oppdater biblioteket til Plex Media Server når en nedlasting er ferdig"],"Plex Media Server IP:Port":[null,"Plex Media Server IP:Port"],"one or more hosts running Plex Media Server<br/>(eg. 192.168.1.1:32400, 192.168.1.2:32400)":[null,"en eller flere verter som kjører Plex Media Server<br/>(f.eks. 192.168.1.1:32400, 192.168.1.2:32400)"],"HTTPS":[null,"HTTPS"],"use https for plex media server requests?":[null,"bruk https for plex media server forespørsler?"],"Click below to test Plex Media Server(s)":[null,"Klikk nedenfor for å teste Plex Media Server(e)"],"Test Plex Media Server":[null,"Test Plex medieserver"],"Plex Home Theater":[null,"Plex Home Theater"],"send Plex Home Theater notifications?":[null,"sende varslinger til Plex Home Theater?"],"Plex Home Theater IP:Port":[null,"Plex Home Theater IP:Port"],"one or more hosts running Plex Home Theater<br>(eg. 192.168.1.100:3000, 192.168.1.101:3000)":[null,"en eller flere verter kjører Plex Home Theater <br>(f.eks. 192.168.1.100:3000, 192.168.1.101:3000)"],"Click below to test Plex Home Theater(s)":[null,"Klikk nedenfor for å teste Plex Home Theater(s)"],"Test Plex Home Theater":[null,"Test Plex Home Theater"],"some Plex Home Theaters <b class=\"boldest\">do not</b> support notifications e.g. Plexapp for Samsung TVs":[null,"noen versjoner av Plex Home Theater <b class=\"boldest\">støtter ikke</b> varslinger, f.eks. Plex for Samsung TVer"],"Emby":[null,"Emby"],"A home media server built using other popular open source technologies.":[null,"En hjemmemediaserver basert på andre populære open source teknologier."],"send update commands to Emby?":[null,"send oppdateringskommandoer til Emby?"],"Emby IP:Port":[null,"Emby IP:Port"],"host running Emby (eg. 192.168.1.100:8096)":[null,"vert som kjører Emby (f.eks. 192.168.1.100:8096)"],"Emby API Key":[null,"Emby API nøkkel"],"Networked Media Jukebox":[null,"Networked Media Jukebox"],"The Networked Media Jukebox, or NMJ, is the official media jukebox interface made available for the Popcorn Hour 200-series.":[null,"Networked Media Jukebox, eller NMJ, er det offisielle media jukebox grensesnittet tilgjengelig for Popcorn Hour 200-serien."],"send update commands to NMJ?":[null,"sende oppdateringskommandoer til NMJ?"],"Popcorn IP address":[null,"Popcorn IP-adresse"],"IP address of Popcorn 200-series (eg. 192.168.1.100)":[null,"IP-adressen til Popcorn 200-serie (f.eks. 192.168.1.100)"],"Get settings":[null,"Hent innstillinger"],"Get Settings":[null,"Hent innstillinger"],"the Popcorn Hour device must be powered on and NMJ running.":[null,"Popcorn Hour enheten må være slått på og NMJ må kjøre."],"NMJ database":[null,"NMJ database"],"automatically filled via the 'Get Settings' button.":[null,"automatisk fylt via \"Hent Innstillinger\"-knappen."],"NMJ mount url":[null,"NMJ tilkoblings url"],"Networked Media Jukebox v2":[null,"Networked Media Jukebox v2"],"The Networked Media Jukebox, or NMJv2, is the official media jukebox interface made available for the Popcorn Hour 300 & 400-series.":[null,"Nettverk Media Jukebox, eller NMJv2, er det offisielle media jukebox grensesnittet gjort tilgjengelig for Popcorn Hour 300 & 400-serien."],"send update commands to NMJv2?":[null,"sende oppdateringskommandoer til NMJv2?"],"IP address of Popcorn 300/400-series (eg. 192.168.1.100)":[null,"IP-adressen til Popcorn 300/400-serien (f.eks. 192.168.1.100)"],"Database location":[null,"Databaseplassering"],"Database instance":[null,"Databaseinstans"],"adjust this value if the wrong database is selected.":[null,"juster denne verdien hvis feil database er valgt."],"Find database":[null,"Finn databasen"],"Find Database":[null,"Finn Database"],"the Popcorn Hour device must be powered on.":[null,"Popcorn Hour enheten må være slått på."],"NMJv2 database":[null,"NMJv2 database"],"automatically filled via the 'Find Database' buttons.":[null,"automatisk fylt inn via \"finn database\"-knappen."],"Synology":[null,"Synology"],"The Synology DiskStation NAS.":[null,"Synology DiskStation NAS."],"Synology Indexer is the daemon running on the Synology NAS to build its media database.":[null,"Synology Indexer er tjenesten som kjører på Synology NAS for å bygge media-databasen."],"send Synology notifications?":[null,"sende varsler til Synology?"],"requires SickRage to be running on your Synology NAS.":[null,"krever at SickRage kjører på din Synology NAS."],"Synology Indexer":[null,"Synology Indexer"],"Synology Notifier is the notification system of Synology DSM":[null,"Synology Notifier er varslingssystemet til Synology DSM"],"send notifications to the Synology Notifier?":[null,"sende varsler til Synology Notifier?"],"pyTivo":[null,"pyTivo"],"pyTivo is both an HMO and GoBack server. This notifier will load the completed downloads to your Tivo.":[null,"pyTivo er både en HMO og GoBack server. Denne varsleren vil laste opp fullførte nedlastinger til din Tivo."],"send notifications to pyTivo?":[null,"sende varsler til pyTivo?"],"requires the downloaded files to be accessible by pyTivo.":[null,"krever at de nedlastede filene er tilgjengelige for pyTivo."],"pyTivo IP:Port":[null,"pyTivo IP:Port"],"host running pyTivo (eg. 192.168.1.1:9032)":[null,"verten som kjører pyTivo (f.eks. 192.168.1.1:9032)"],"pyTivo share name":[null,"pyTivo delingsnavn"],"value used in pyTivo Web Configuration to name the share.":[null,"verdien som brukes i webkonfigurasjonen til pyTivo for å navngi deling."],"Tivo name":[null,"TiVo navn"],"(Messages & Settings > Account & System Information > System Information > DVR name)":[null,"(Meldinger og innstillinger > Konto og systeminformasjon > Systeminformasjon > DVR navn)"],"Growl":[null,"Growl"],"A cross-platform unobtrusive global notification system.":[null,"Et diskré kryssplattform varslingsystem."],"send Growl notifications?":[null,"sende varslinger til Growl?"],"Growl IP:Port":[null,"Growl IP:Port"],"host running Growl (eg. 192.168.1.100:23053)":[null,"vert som kjører Growl (f.eks. 192.168.1.100:23053)"],"may leave blank if SickRage is on the same host.":[null,"kan stå tomt hvis SickRage er på samme vert."],"otherwise Growl <b>requires</b> a password to be used.":[null,"ellers <b>krever</b> Growl at et passord brukes."],"Click below to register and test Growl, this is required for Growl notifications to work.":[null,"Klikk nedenfor for å registrere og teste Growl, dette er nødvendig for at Growls meldinger skal fungere."],"Register Growl":[null,"Registrer Growl"],"Prowl":[null,"Prowl"],"A Growl client for iOS.":[null,"En Growl klient for iOS."],"send Prowl notifications?":[null,"sende varslinger til Prowl?"],"Prowl Message Title":[null,"Prowl meldingstittel"],"Global Prowl API key(s)":[null,"Globale Prowl API-nøkler"],"Prowl API(s) listed here, separated by commas if applicable, will<br> receive notifications for <b>all</b> shows. Your Prowl API key is available at:":[null,"Prowl API(er) oppført her, eventuelt adskilt med komma, vil <br>motta meldinger for <b>alle</b> serier. Prowl API-nøkkel er tilgjengelig på:"],"(this field may be blank except when testing.)":[null,"(dette feltet kan stå tomt unntatt ved testing.)"],"Show notification list":[null,"Vis meldingslisten"],"-- Select a Show --":[null,"-- Velg en serie --"],"Configure per-show notifications here by entering Prowl API key(s), separated by commas, '\n 'after selecting a show in the drop-down box. Be sure to activate the 'Save for this show' '\n 'button below after each entry.":[null,"Konfigurer melding pr serie her ved å skrive inn Prowl API-nøkkel/nøkler, separert med komma, '\n etter å ha valgt en serie i nedtrekksmenyen. Sørg for å velge 'Lagre for denne serien' '\n 'knappen under etter hvert valg."],"Save for this show":[null,"Lagre for denne serien"],"Prowl priority":[null,"Prowl prioritet"],"Very Low":[null,"Svært lav"],"Moderate":[null,"Moderat"],"Normal":[null,"Normal"],"High":[null,"Høy"],"Emergency":[null,"Nødsituasjon"],"priority of Prowl messages from SickRage.":[null,"prioritet for Prowl meldinger fra SickRage."],"Libnotify":[null,"Libnotify"],"The standard desktop notification API for Linux/*nix systems. This notifier will only function if the pynotify module is installed (Ubuntu/Debian package <a href=\"apt:python-notify\">python-notify</a>).":[null,"Standard skrivebordsvarsels API for Linux/*nix systemer. Denne varsleren vil kun fungere når pynotify modulen er installert (Ubuntu/Debian pakke <a href=\"apt:python-notify\">python-notify</a>)."],"send Libnotify notifications?":[null,"sende varslinger til Libnotify?"],"Pushover":[null,"Pushover"],"Pushover makes it easy to send real-time notifications to your Android and iOS devices.":[null,"Pushover gjør det enkelt å sende meldinger i sanntid til Android og iOS enheter."],"send Pushover notifications?":[null,"sende varslinger til Pushover?"],"Pushover key":[null,"Pushover nøkkel"],"user key of your Pushover account":[null,"brukernøkkel til din Pushover-konto"],"Pushover API key":[null,"Pushover API-nøkkel"],"click here":[null,""]," to create a Pushover API key":[null,""],"Pushover devices":[null,"Pushover enheter"],"comma separated list of pushover devices you want to send notifications to":[null,"kommadelt liste over pushover-enheter du vil sende meldinger til"],"Pushover notification sound":[null,"Pushover meldingslyd"],"Bike":[null,"Sykkel"],"Bugle":[null,"Bugle"],"Cash Register":[null,"Kassaapparat"],"Classical":[null,"Klassisk"],"Cosmic":[null,"Kosmisk"],"Falling":[null,"Fallende"],"Gamelan":[null,"Gamelan"],"Incoming":[null,"Innkommende"],"Intermission":[null,"Pause"],"Magic":[null,"Magisk"],"Mechanical":[null,"Mekanisk"],"Piano Bar":[null,"Pianobar"],"Siren":[null,"Sirene"],"Space Alarm":[null,"Space alarm"],"Tug Boat":[null,"Taubåt"],"Alien Alarm (long)":[null,"Utenomjordisk alarm (lang)"],"Climb (long)":[null,"Klatre (lang)"],"Persistent (long)":[null,"Vedvarende (lang)"],"Pushover Echo (long)":[null,"Pushover ekko (lang)"],"Up Down (long)":[null,"Opp Ned (lang)"],"None (silent)":[null,"Ingen (stille)"],"Device specific":[null,"Enhetsspesifikk"],"choose notification sound to use":[null,"velg varslingslyd"],"Pushover priority":[null,"Pushover-prioritet"],"Choose priority to use":[null,"Velg prioriteten som skal brukes"],"Boxcar 2":[null,"Boxcar 2"],"Read your messages where and when you want them!":[null,"Les meldingene dine hvor og når du vil!"],"send Boxcar notifications?":[null,"sende varslinger til Boxcar?"],"Boxcar2 access token":[null,"Boxcar2 autorisasjonstoken"],"access token for your Boxcar account.":[null,"autorisasjonstoken til din Boxcar konto."],"NMA":[null,"NMA"],"Notify My Android":[null,"Meld Min Android"],"Notify My Android is a Prowl-like Android App and API that offers an easy way to send notifications from your application directly to your Android device.":[null,"Notify My Android er en Prowl-lignende Android app og API som tilbyr en enkel måte å sende meldinger fra ditt program direkte til din Android-enhet."],"send NMA notifications?":[null,"sende varslinger til NMA?"],"NMA API key":[null,"NMA API-nøkkel"],"(multiple keys must be separated by commas, up to a maximum of 5)":[null,"(flere nøkler må være atskilt med komma, maks 5)"],"NMA priority":[null,"NMA prioritet"],"priority of NMA messages from SickRage.":[null,"prioritet for NMA-meldinger fra SickRage."],"Pushalot":[null,"Pushalot"],"Pushalot is a platform for receiving custom push notifications to connected devices running Windows Phone or Windows 8.":[null,"Pushalot er en plattform for å motta egendefinerte push-meldinger til tilkoblete enheter som kjører Windows Phone eller Windows 8."],"send Pushalot notifications ?":[null,"sende varslinger til Pushalot?"],"Pushalot authorization token":[null,"Pushalot autorisasjonstoken"],"authorization token of your Pushalot account.":[null,"autorisasjonstoken for din Pushalot konto."],"Pushbullet":[null,"Pushbullet"],"Pushbullet is a platform for receiving custom push notifications to connected devices running Android/iOS and desktop browsers such as Chrome, Firefox or Opera.":[null,"Pushbullet er en plattform for å motta egendefinerte push-meldinger til tilkoblede enheter som kjører Android/IOS og nettlesere som Chrome, Firefox og Opera."],"send Pushbullet notifications?":[null,"sende varslinger til Pushbullet?"],"Pushbullet API key":[null,"Pushbullet API-nøkkel"],"API key of your Pushbullet account":[null,"API-nøkkel til din Pushbulletkonto"],"Pushbullet devices":[null,"Pushbullet-enheter"],"Update device list":[null,"Oppdater listen over enheter"],"Pushbullet channels":[null,"Pushbullet-kanaler"],"Free Mobile":[null,"Free Mobile"],"Free Mobile is a famous French cellular network provider.<br> It provides to their customer a free SMS API.":[null,"Free Mobile er en kjent Fransk telefonileverandør. <br> De tilbyr sine kunder et gratis SMS API."],"send SMS notifications?":[null,"sende SMS-varslinger?"],"send a SMS when a download starts?":[null,"send en SMS når en nedlasting starter?"],"send a SMS when a download finishes?":[null,"send en SMS når en nedlasting er ferdig?"],"send a SMS when subtitles are downloaded?":[null,"send en SMS når undertekster er lastet ned?"],"Free Mobile customer ID":[null,"Free Mobile kunde-ID"],"it's your Free Mobile customer ID (8 digits)":[null,"din Free Mobile kunde-ID (8 siffer)"],"Free Mobile API key":[null,"Free Mobile API-nøkkel"],"find your API key in your customer portal.":[null,"finn API-nøkkelen i kundeportalen din."],"Click below to test your settings.":[null,"Klikk nedenfor for å teste innstillingene."],"Telegram":[null,"Telegram"],"Telegram is a cloud-based instant messaging service.":[null,"Telegram er en sky-basert lynmeldings-tjeneste."],"send Telegram notifications?":[null,"sende varslinger til Telegram?"],"send a message when a download starts?":[null,"send en melding når en nedlasting starter?"],"send a message when a download finishes?":[null,"send en melding når en nedlasting er ferdig?"],"send a message when subtitles are downloaded?":[null,"send en melding når undertekster er lastet ned?"],"User/group ID":[null,"Bruker/gruppe-ID"],"contact @myidbot on Telegram to get an ID":[null,"kontakt @myidbot på Telegram for å få en ID"],"Bot API token":[null,"Bot API token"],"contact @BotFather on Telegram to set up one":[null,"kontakt @BotFather hos Telegram for å sette opp en"],"Join":[null,"Join"],"Join all of your devices together!":[null,"Koble alle enhetene dine sammen!"],"send Join notifications?":[null,"sende varslinger til Join?"],"Device ID":[null,"Enhets-ID"],"per device specific id":[null,"spesifikk enhets-id"]," to create a Join API key":[null,""],"Twilio":[null,"Twilio"],"Twilio is a webservice API that allows you to communicate directly with a mobile number. This notifier will send a text directly to your mobile device.":[null,"Twilio er et nett-API som lar deg kommunisere direkte med et mobilnummer. Denne varsleren sender meldinger direkte til den mobile enheten."],"should SickRage text your mobile device?":[null,"skal SickRage varsle til din mobilenhet?"],"Twilio Account SID":[null,"Twilio konto-SID"],"account SID of your Twilio account.":[null,"SID for Twilio-kontoen din."],"Twilio Auth Token":[null,"Twilio Auth Token"],"Twilio Phone SID":[null,"Twilio telefon-SID"],"phone SID that you would like to send the sms from":[null,"telefon-SID som du ønsker å sende SMS fra"],"Your phone number":[null,"Telefonnummeret ditt"],"phone number that will receive the sms. Please use the format +1-###-###-####":[null,"telefonnummeret som skal motta SMS. Bruk formatet +1-###-###-###"],"Twitter":[null,"Twitter"],"A social networking and microblogging service, enabling its users to send and read other users' messages called tweets.":[null,"Et sosial nettverk og mikroblogging-tjeneste som muliggjør dens brukerne å sende og lese andre brukeres meldinger kalt tweets."],"should SickRage post tweets on Twitter?":[null,"skal SickRage legge inn tweets på Twitter?"],"you may want to use a secondary account.":[null,"du vil kanskje bruke en sekundærkonto."],"send direct message":[null,"send direktemelding"],"send a notification via Direct Message, not via status update":[null,"send deg en melding via direktemelding, ikke via statusoppdatering"],"send DM to":[null,"send DM til"],"Twitter account to send Direct Messages to (must follow you)":[null,"Twitter-konto å sende direktemeldinger til (må følge deg)"],"Step One":[null,"Trinn en"],"Request Authorization":[null,"Be om autorisasjon"],"Click the \"Request Authorization\" button.<br> This will open a new page containing an auth key.<br> <b>note:</b> if nothing happens check your popup blocker.":[null,"Klikk på knappen \"Be om autorisering\".<br/>Det vil åpne en ny side som inneholder en autoriseringsnøkkel.<br/><b>merk</b>: Hvis ingenting skjer, sjekk popup-blokkeren i nettleseren."],"Step Two":[null,"Trinn to"],"Enter the key Twitter gave you below, and click \"Verify Key\".":[null,"Skriv inn nøkkelen Twitter ga deg nedenfor, og klikk \"Bekreft Nøkkel\"."],"Trakt":[null,"Trakt"],"Trakt helps keep a record of what TV shows and movies you are watching. Based on your favorites, Trakt recommends additional shows and movies you'll enjoy!":[null,"Trakt hjelper med å holde rede på hvilke TV-serier og filmer du ser på. Basert på dine favoritter kan Trakt anbefale andre serier og filmer du kan like!"],"send Trakt.tv notifications?":[null,"send notifikasjoner til Trakt?"],"username of your Trakt account.":[null,"brukernavnet til din Trakt-konto."],"Trakt PIN":[null,"Trakt PIN"],"Get Trakt PIN":[null,"Motta Trakt PIN"],"PIN code to authorize SickRage to access Trakt on your behalf.":[null,"PIN-kode for å autorisere SickRage Trakt-adgang på dine vegne."],"API Timeout":[null,"API-tidsavbrudd"],"seconds to wait for Trakt API to respond. (Use 0 to wait forever)":[null,"sekunder å vente på at Trakt APIet svarer. (0 for å vente for alltid)"],"Default indexer":[null,"Standard indekser"],"Sync libraries":[null,"Synkroniser biblioteker"],"sync your SickRage show library with your trakt show library.":[null,"synkroniser ditt SickRage-bibliotek med ditt trakt-bibliotek."],"Remove Episodes From Collection":[null,"Fjern Episoder Fra Samlingen"],"remove an episode from your Trakt Collection if it is not in your SickRage Library.":[null,"fjern en episode fra Trakt-samlingen hvis den ikke er i SickRage-biblioteket."],"Sync watchlist":[null,"Synkroniser watchlist"],"sync your SickRage show watchlist with your trakt show watchlist (either Show and Episode).":[null,"synkroniser din SickRage serie-watchlist med din trakt watchlist (Serie eller Episode)."],"episode will be added on watch list when wanted or snatched and will be removed when downloaded ":[null,"episoden blir lagt til på vaktlisten når den er ønsket eller plukket opp, og vil bli fjernet når den er lastet ned "],"Watchlist add method":[null,"Watchlist legge til-metode"],"Skip All":[null,"Hopp Over Alle"],"Download Pilot Only":[null,"Last bare ned Piloten"],"Get whole show":[null,"Hent hele serien"],"method in which to download episodes for new shows.":[null,"metode for å laste ned episoder til nye serier."],"Remove episode":[null,"Fjern episode"],"remove an episode from your watchlist after it is downloaded.":[null,"fjern en episode fra din watchlist etter den er lastet ned."],"Remove series":[null,"Fjern serie"],"remove the whole series from your watchlist after any download.":[null,"fjern hele serien fra watchlist etter en nedlasting."],"Remove watched show":[null,"Fjern sette serier"],"remove the show from sickrage if it's ended and completely watched":[null,"fjern serien fra SickRage hvis den er avsluttet og alle episoder er sett"],"Start paused":[null,"Start pauset"],"shows grabbed from your trakt watchlist start paused.":[null,"start serier hentet fra din trakt watchlist som stoppet."],"Trakt blackList name":[null,"Trakt svarteliste-navn"],"name (slug) of list on Trakt for blacklisting show on 'Add Trending Show' & 'Add Recommended Shows' pages":[null,"navn (slug) på Trakt-liste for å svarteliste serier fra 'Legg til populære serier' og 'Legg til anbefalte serier'"],"Email":[null,"E-post"],"Allows configuration of email notifications on a per show basis.":[null,"Tillater konfigurasjon av e-postmeldinger for hver serie."],"send email notifications?":[null,"sende e-postmeldinger?"],"SMTP host":[null,"SMTP-vert"],"hostname of your SMTP email server.":[null,"vertsnavn til din SMTP e-post-server."],"SMTP port":[null,"SMTP-port"],"port number used to connect to your SMTP host.":[null,"port-nummeret som brukes til å koble til SMTP-verten."],"SMTP from":[null,"SMTP fra"],"sender email address, some hosts require a real address.":[null,"avsenderadresse. Noen hoster krever en reell adresse."],"Use TLS":[null,"Bruk TLS"],"check to use TLS encryption.":[null,"merk for å bruke TLS-kryptering."],"SMTP user":[null,"SMTP-bruker"],"(optional) your SMTP server username.":[null,"(valgfritt) ditt brukernavn for SMTP-serveren."],"SMTP password":[null,"SMTP-passord"],"(optional) your SMTP server password.":[null,"(valgfritt) ditt passord for SMTP-serveren."],"Global email list":[null,"Global e-postliste"],"email addresses listed here, separated by commas if applicable, will<br> receive notifications for <b>all</b> shows.":[null,"e-postadresser skrevet inn her (adskilt med komma) vil motta<br/>meldinger for <b>alle</b> serier."],"(This field may be blank except when testing.)":[null,"(Dette feltet kan være tomt unntatt ved testing.)"],"Email Subject":[null,"E-post Emne"],"use a custom subject for some privacy protection?":[null,"tilpasset emne-felt for å få litt personvern?"],"(leave blank for the default SickRage subject)":[null,"(la stå tomt for standard SickRage-emne)"],"configure per-show notifications here by entering email address(es), separated by commas,":[null,"sett opp varslinger per serie ved å legge til e-postadress(er) her, adskilt med komma"],"after selecting a show in the drop-down box. Be sure to activate the 'Save for this show'":[null,"når du har valgt en serie i i rullegardinlisten, husk å aktivere 'Lagre for denne serien'"],"button below after each entry.":[null,"knappen nedenfor etter hver oppføring."],"Slack":[null,"Slack"],"Slack brings all your communication together in one place. It's real-time messaging, archiving and search for modern teams.":[null,"Slakk samler all kommunikasjon på ett sted. Det er sanntidsmeldinger, arkivering og søk for moderne arbeidsgrupper."],"should SickRage post messages on Slack?":[null,"skal SickRage poste meldinger på Slack?"],"Slack Incoming Webhook":[null,"Innkommende Webhook for Slack"],"Discord":[null,"Discord"],"All-in-one voice and text chat for gamers that's free, secure, and works on both your desktop and phone.":[null,"En alt-i-ett tale- og tekst-chat for gamere som er gratis og sikker, og som fungerer både på datamaskin og mobil."],"Should SickRage post messages on Discord?":[null,"Skal SickRage poste meldinger på Discord?"],"Discord Incoming Webhook":[null,"Innkommende Webhook for Discord"],"Create webhook under channel settings.":[null,"Opprett webhook under kanalinnstillinger."],"Discord Bot Name":[null,"Navn på Discord Bot"],"Blank will use webhook default Name.":[null,"Tom for å bruke standardnavnet på webhook."],"Discord Avatar URL":[null,"URL til Discord Avatar"],"Blank will use webhook default Avatar.":[null,"Tom for å bruke standard Avatar."],"Discord TTS":[null,"Discord TTS"],"Send notifications using text-to-speech":[null,"Send varslinger med tekst-til-tale"],"Post-Processing":[null,"Etterbehandling"],"Episode Naming":[null,"Navngiving av episoder"],"Metadata":[null,"Metadata"],"Settings that dictate how SickRage should process completed downloads.":[null,"Innstillinger som styrer hvordan SickRage skal behandle fullførte nedlastinger."],"enable the automatic post processor to scan and process any files in your Post Processing Dir":[null,"aktiver automatisk etterbehandling for å sjekke og behandle filer i etterbehandlingsmappen"],"do not use if you use an external Post Processing script":[null,"ikke bruk denne hvis du bruker et eksternt etterbehandlingsskript"],"Post Processing Dir":[null,"Mappe for Etterbehandling"],"the folder where your download client puts the completed TV downloads.":[null,"mappen der nedlastingsklienten legger ferdige TV-nedlastinger."],"please use seperate downloading and completed folders in your download client if possible.":[null,"vennligst bruk separate mapper for nedlasting og fullførte nedlastinger i nedlastingsklienten din hvis mulig."],"Processing Method":[null,"Behandlingsmetode"],"what method should be used to put files into the library?":[null,"hvilken metode skal brukes for å legge filer til i biblioteket?"],"if you keep seeding torrents after they finish, please avoid the 'move' processing method to prevent errors.":[null,"Hvis du fortsetter å seede torrents etter at de er fullført bør du ikke bruke behandlingsmetoden 'flytt'. Ellers får du feilmeldinger i nedlastingsprogrammet."],"Auto Post-Processing Frequency":[null,"Auto etterbehandlingsfrekvens"],"time in minutes to check for new files to auto post-process (min 10)":[null,"tidsperiode i minutter (min 10) mellom sjekk etter nye filer for etterbehandling"],"Postpone post processing":[null,"Utsett Etterbehandling"],"wait to process a folder if sync files are present.":[null,"Vent med å prosessere en mappe hvis synkroniseringsfiler er tilstede."],"Sync File Extensions":[null,"Synkroniser filetternavn"],"comma seperated list of extensions or filename globs SickRage ignores when Post Processing":[null,"kommaseparert liste av filetternavn eller filetternavn-globs SickRage ignorerer under Etterbehandling"],"Rename Episodes":[null,"Endre episodenavn"],"rename episode using the Episode Naming settings?":[null,"Gi episoden nytt navn ved hjelp av innstillingene for navneendring?"],"Create missing show directories":[null,"Opprett manglende seriemapper"],"create missing show directories when they get deleted":[null,"Opprett manglende serie-mapper når de blir slettet"],"Add shows without directory":[null,"Legg til serier uten mappe"],"add shows without creating a directory (not recommended)":[null,"Legg til serier uten å opprette en mappe (anbefales ikke)"],"Move associated files":[null,"Flytt på tilknyttede filer"],"move associated (srt/srr/sfv/etc) files while post processing?":[null,"ta med tilknyttede (srt/srr/sfv/o.l.) filer i etterbehandlingen?"],"Rename .nfo file":[null,"Gi nytt navn til .nfo fil"],"rename the original .nfo file to .nfo-orig to avoid conflicts?":[null,"Endre navn på opprinnelig .nfo-fil til .nfo-orig for å unngå konflikt?"],"Associated file extensions":[null,"Tilknyttede filendelser"],"comma separated list of associated file extensions SickRage should keep while post processing.":[null,"kommadelt liste over tilknyttede filendelser SickRage bør beholde ved etterbehandling."],"leaving it empty means no associated files will be post processed":[null,"står den tom vil ingen tilknyttede filer bli etterbehandlet"],"Delete non associated files":[null,"Slett filer som ikke er tilknyttede"],"delete non associated files while post processing?":[null,"slette filer som ikke er tilknyttede under etterbehandling?"],"Change File Date":[null,"Endre fildato"],"set last modified filedate to the date that the episode aired?":[null,"sett sist endret fildato til datoen episoden ble sendt?"],"some systems may ignore this feature.":[null,"noen systemer kan ignorere denne funksjonen."],"Timezone for File Date":[null,"Tidssone for fildato"],"local":[null,"lokal"],"network":[null,"nettverk"],"what timezone should be used to change File Date?":[null,"hvilken tidssone skal brukes til å endre fildato?"],"Unpack":[null,"Pakk Ut"],"What to do with archived releases found in your <i>TV Download Dir</i>?":[null,"Hva skal gjøres med pakkede filer som blir funnet i <i>TV-nedlastingsmappen</i>?"],"Ignore (do not process contents)":[null,"Se bort fra dem (ikke behandle innholdet)"],"Unpack (process contents)":[null,"Pakk ut (og behandle innholdet)"],"Treat as video (process archive as-is)":[null,"Håndtér som videofile (flytt og endre navn på arkivfilen som den er)"],"'Unpack' only works with RAR archives":[null,"'Pakk ut' virker kun for RAR-arkiver"],"Windows":[null,"Windows"],"WinRar is required on windows":[null,"WinRar er påkrevd i Windows"],"Unpack Directory":[null,"Mappe for utpakking"],"Choose a path to unpack files, leave blank to unpack in download dir":[null,"Velg en mappe filer skal pakkes ut til, eller la stå tom for å pakke ut i nedlastingsmappen"],"Unrar Location":[null,"Sti til unrar"],"add the path to unrar if it is not in the system path":[null,"legg til hvis unrar ikke ligger i standardstien"],"Alternate Unrar Tool":[null,"Alternativt unrar-verktøy"],"add the path to an alternate unrar tool if it is not in the system path":[null,"legg til stien til alternativt unrar-verktøy hvis det ikke er i systemstien"],"Delete RAR contents":[null,"Slett innhold i RAR-arkiver"],"delete content of RAR files, even if Process Method not set to move?":[null,"slette innholdet i RAR-filer, selv om behandlingsmetoden ikke er satt til å flytte dem?"],"only working with RAR archive":[null,"virker bare med RAR-arkiver"],"Don't delete empty folders":[null,"Ikke slett tomme mapper"],"leave empty folders when Post Processing?":[null,"la tomme mapper være igjen etter etterbehandling?"],"can be overridden using manual Post Processing":[null,"kan overstyres med manuell etterbehandling"],"Follow symbolic-links":[null,"Følg symbolske lenker"],"follow down symbolic links in download directory?":[null,"følge symbolske lenker i nedlastingsmappen?"],"<b>EXPERTS ONLY.</b><br>Enable only if you know what <b>circular symbolic links</b> are,<br>and can <b>verify that you have none</b>.":[null,"<b>KUN FOR EKSPERTER</b><br>Dette må kun brukes hvis du vet hva <b>sirkulære symbolske lenker</b> er,<br/>og <b>vet at du ikke har noen</b>."],"Use icacls":[null,"Bruk icacls"],"Windows only":[null,"Kun for Windows"],"sets video permissions after using the move method in post processing":[null,"setter fil-tillatelser etter å ha brukt flytt-metoden i etterbehandling"],"Extra Scripts":[null,"Ekstra skript"],"see":[null,"se"],"for script arguments description and usage.":[null,"for forklaring av skriptargumenter og bruk."],"How SickRage will name and sort your episodes.":[null,"Hvordan SickRage vil navngi og sortere episodene dine."],"Name Pattern":[null,"Navngivning"],"Toggle Naming Legend":[null,"Aktiver navngivingsoversikt"],"don't forget to add quality pattern. Otherwise after post-processing the episode will have UNKNOWN quality":[null,"ikke glem å legge til et mønster for setting av kvalitet. Hvis ikke vil etterbehandling sette episoden til å ha UKJENT kvalitet"],"Meaning":[null,"Betydning"],"Pattern":[null,"Mønster"],"Result":[null,"Resultat"],"Use lower case if you want lower case names (eg. %sn, %e.n, %q_n etc)":[null,"Bruk små bokstaver hvis du vil ha navn med små bokstaver (f.eks. %sn, %e.n, %q_n osv.)"],"Show Name":[null,"Serienavn"],"Show.Name":[null,"Serie.Navn"],"Show_Name":[null,"Serie_Navn"],"Season Number":[null,"Sesongnummer"],"XEM Season Number":[null,"XEM Sesongnummer"],"Episode Number":[null,"Episodenummer"],"XEM Episode Number":[null,"XEM Episodenummer"],"Episode Name":[null,"Episodenavn"],"Episode.Name":[null,"Episode.Navn"],"Episode_Name":[null,"Episode_Navn"],"Air Date":[null,"Sendingsdato"],"Post-Processing Date":[null,"Etterbehandling Dato"],"Quality":[null,"Kvalitet"],"Scene Quality":[null,"\"Scene\" kvalitet"],"Release Name":[null,"Utgivelsesnavn"],"SickRage' is used in place of RLSGROUP if it could not be properly detected":[null,"SickRage' brukes i stedet for RLSGROUP hvis det ikke ble riktig detektert"],"Release Group":[null,"Utgivelsesgruppe"],"If episode is proper/repack add 'proper' to name.":[null,"Hvis episoden er \"proper/repack\", legg \"proper\" til navn."],"Release Type":[null,"Utgivelsestype"],"Multi-Episode Style":[null,"Fler-episode"],"Single-EP Sample":[null,"Enkeltepisode eksempel"],"Multi-EP sample":[null,"Fler-episode eksempel"],"Strip Show Year":[null,"Fjern år for serie"],"remove the TV show's year when renaming the file?":[null,"fjern TV-seriens årstall fra filnavn?"],"only applies to shows that have year inside parentheses":[null,"gjelder bare serier med år inne i parenteser"],"Custom Air-By-Date":[null,"Egendefinert sendingsdato"],"name air-by-date shows differently than regular shows?":[null,"navngi serier med sendingsdato annerledes enn vanlige serier?"],"Toggle ABD Naming Legend":[null,"Aktiver ADB navngivingsoversikt"],"Regular Air Date":[null,"Vanlig sendingsdato"],"Year":[null,"År"],"Month":[null,"Måned"],"Day":[null,"Dag"],"Multi-EP style is ignored":[null,"Fler-episoders stil ignoreres"],"Custom Sports":[null,"Egendefinert Sport"],"name sports shows differently than regular shows?":[null,"navngi sports-serier annerledes enn vanlige serier?"],"Toggle Sports Naming Legend":[null,"Aktiver sport navngivingsoversikt"],"Sports Air Date":[null,"Sport sendingsdato"],"Custom Anime":[null,"Egendefinerte anime"],"name anime shows differently than regular shows?":[null,"navngi anime-serier annerledes enn vanlige serier?"],"Toggle Anime Naming Legend":[null,"Aktiver anime navngivinghistorikk"],">XEM Season Number":[null,">XEM Sesongnummer"],"Single-EP Anime Sample":[null,"Enkeltepisode Anime eksempel"],"Multi-EP Anime sample":[null,"Fler-episodes Anime eksempel"],"Add Absolute Number":[null,"Legg til absolutt tall"],"add the absolute number to the season/episode format?":[null,"legge et absolutt tall til i sesong/episode-formatet?"],"only applies to anime. (eg. S15E45 - 310 vs S15E45)":[null,"gjelder bare for anime. (f. eks. S15E45 - 310 i stedet for S15E45)"],"Only Absolute Number":[null,"Kun absolutte tall"],"replace season/episode format with absolute number":[null,"erstatt sesong/episode-format med absolutt tall"],"only applies to anime.":[null,"gjelder bare for anime."],"No Absolute Number":[null,"Ingen absolutte tall"],"don't include the absolute number":[null,"ikke inkludér absolutt tall"],"The data associated to the data. These are files associated to a TV show in the form of images and text that, when supported, will enhance the viewing experience.":[null,"Informasjon forbundet med serien. Dette er filer som forbindes med en serie, i form av bilder og tekst som, når støttet, vil forbedre brukeropplevelsen."],"Metadata Type":[null,"Metadata Type"],"toggle metadata options that you wish to be created":[null,"velg de metadata-alternativene du ønsker skal opprettes"],"multiple targets may be used":[null,"forskjellige typer kan brukes samtidig"],"Select Metadata":[null,"Velg metadata"],"Provider Priorities":[null,"Prioritet på søkeleverandører"],"Provider Options":[null,"Søkeleverandør-valg"],"Configure Custom Newznab Providers":[null,"Konfigurer egendefinerte Newznab tilbydere"],"Configure Custom Torrent Providers":[null,"Konfigurer egendefinerte torrent søkeleverandører"],"Check off and drag the providers into the order you want them to be used.":[null,"Merk og dra søkeleverandørene i den rekkefølgen du vil de skal brukes."],"At least one provider is required but two are recommended.":[null,"Minst en tilbyder er nødvendig, men to er anbefalt."],"Torrent providers can be toggled in ":[null,"Torrentleverandører kan bli aktivert på "],"Provider does not support backlog searches at this time.":[null,"Søkeleverandøren støtter ikke backlog-søk enda."],"Provider is <b>NOT WORKING</b>.":[null,"Søkeleverandøren <b>VIRKER IKKE</b>."],"Configure individual provider settings here.":[null,"Konfigurer individuelle søkeleverandørinnstillinger her."],"Check with provider's website on how to obtain an API key if needed.":[null,"Les på nettsiden til søkeleverandøren om hvordan få en API-nøkkel hvis nødvendig."],"Configure provider":[null,"Konfigurer søkeleverandør"],"no providers available to configure.":[null,"ingen leverandører med innstillinger er tilgjengelige."],"URL":[null,"URL"],"Enable daily searches":[null,"Aktiver daglie søk"],"enable provider to perform daily searches.":[null,"aktiver daglig søk hos leverandør."],"Enable backlog searches":[null,"Aktiver backlog søk"],"enable provider to perform backlog searches.":[null,"aktiver historikk-søk hos leverandør."],"Season search mode":[null,"Sesong søkemodus"],"when searching for complete seasons you can choose to have it look for season packs only, or choose to have it build a complete season from just single episodes.":[null,"Når du søker etter komplette sesonger, kan du velge om den skal søke kun etter hele sesonger, eller om den skal finne enkeltepisoder."],"season packs only.":[null,"bare sesongpakker."],"episodes only.":[null,"bare episoder."],"Enable fallback":[null,"Tillat alternativ"],"when searching for a complete season depending on search mode you may return no results, this helps by restarting the search using the opposite search mode.":[null,"Når du søker etter en komplett sesong, avhengig av søkemodus, kan du ende opp uten resultat. Denne hjelper deg ved å søke på ny med den andre søkemodusen."],"Custom URL":[null,"Egendefinert URL"],"the URL should include the protocol (and port if applicable). Examples: http://192.168.1.4/ or http://localhost:3000/":[null,"URL-adressen bør inneholde protokoll (og port hvis det er aktuelt). F.eks.: http://192.168.1.4/ eller http://localhost:3000/"],"Api key":[null,"API-nøkkel"],"Digest":[null,"Oppsummering"],"Hash":[null,"Hash"],"Passkey":[null,"Tilgangsnøkkel"],"Cookies":[null,"Informasjonskapsler"],"example: uid=1234;pass=567845439634987<br>note: uid and pass are not your username/password.<br>use DevTools or Firebug to get these values after logging in on your browser.":[null,"f.eks.: uid = 1234; pass = 567845439634987 <br>Merk: uid og pass er ikke ditt brukernavn/passord. <br>Bruk DevTools eller Firebug for å få disse verdiene ved loggoppføring i nettleseren."],"Pin":[null,"PIN"],"Seed ratio":[null,"Seed ratio"],"stop transfer when ratio is reached<br>(-1 SickRage default to seed forever, or leave blank for downloader default)":[null,"stopp overføring når ratioen er nådd<br>(-1 er standard i SickRage for å seede uendelig, eller la stå tom for å bruke nedlasterens standard)"],"Minimum seeders":[null,"Lavest antall opplastere"],"Minimum leechers":[null,"Lavest antall nedlastere"],"Confirmed download":[null,"Bekreftet nedlasting"],"only download torrents from trusted or verified uploaders ?":[null,"bare last ned torrents fra klarerte eller verifiserte opplastere?"],"Ranked torrents":[null,"Rangerte torrents"],"only download ranked torrents (trusted releases)":[null,"bare last ned rangerte torrents (klarerte utgivelser)"],"English torrents":[null,"Engelske torrents"],"only download english torrents, or torrents containing english subtitles":[null,"bare last ned engelske torrents eller torrents som inneholder engelsk undertekst"],"For Spanish torrents":[null,"For spanske torrents"],"ONLY search on this provider if show info is defined as \"Spanish\" (avoid provider's use for VOS shows)":[null,"Søk KUN hos denne søkeleverandøren om seriens info er definert som \"Spansk\" (unngå søkeleverandørens bruk av VOS serier)"],"Sorting results by":[null,"Sorterer resultatene etter"],"Freeleech":[null,"FreeLeech"],"only download <b>\"FreeLeech\"</b> torrents.":[null,"bare laste ned <b>\"FreeLeech\"</b> torrents."],"Category":[null,"Kategori"],"select torrent with Italian subtitle":[null,"velg torrent med italiensk undertittel"],"Configure Custom<br>Newznab Providers":[null,"Konfigurer Egendefinerte<br>Newznab Tilbydere"],"Add and setup or remove custom Newznab providers.":[null,"Legg til og konfigurer eller fjern egendefinerte Newznab tilbydere."],"Select provider":[null,"Velg søkeleverandør"],"-- add new provider --":[null,"--legg til ny søkeleverandør--"],"Provider name":[null,"Navn på Søkeleverandør"],"Site URL":[null,"Side URL"],"Newznab search categories":[null,"Newznab søkekategorier"],"select your Newznab categories on the left, and click the \"update categories\" button to use them for searching.) <b>don't forget to to save the form!":[null,"velg Newznab kategorier til venstre, og klikk \"Oppdater kategorier\"-knappen for å bruke dem til søk.) <b>Ikke glem å trykk lagre!"],"Update Categories":[null,"Oppdater kategoriene"],"Add":[null,"Legg til"],"Delete":[null,"Slett"],"Add and setup or remove custom RSS providers.":[null,"Legg til og konfigurer eller fjern egendefinerte RSS-søkeleverandører."],"RSS URL":[null,"RSS-URL"],"Search element":[null,"Søkeelement"],"eg: title":[null,"f. eks: tittel"],"Episode Search":[null,"Episode-Søk"],"NZB Search":[null,"NZB-søk"],"Torrent Search":[null,"Torrent-Søk"],"How to manage searching with":[null,"Hvordan håndtere søk med"],"Randomize Providers":[null,"Bruk tilfeldig søkeleverandør"],"randomize the provider search order instead of going in order of placement":[null,"tilfeldig søk blant søketilbyderne i stedet for å søke i rekkefølge"],"Download propers":[null,"Last ned Propers"],"replace original download with \"Proper\" or \"Repack\" if nuked":[null,"erstatt opprinnelig nedlasting med \"Proper\" eller \"Repack\" hvis nuked"],"Check propers every":[null,"Sjekk for Propers hver"],"24 hours":[null,"24 timer"],"4 hours":[null,"4 timer"],"90 mins":[null,"90 minutter"],"45 mins":[null,"45 minutter"],"15 mins":[null,"15 minutter"],"Backlog search day(s)":[null,"Historikksøk i dag(er)"],"number of day(s) that the \"Forced Backlog Search\" will cover (e.g. 7 Days)":[null,"antall dag(er) \"Tvunget Backlog søk\" vil dekke (f.eks 7 dager)"],"Backlog search frequency":[null,"Backlog søke frekvens"],"time in minutes between searches (min.":[null,"tid i minutter mellom søk (min."],"Daily search frequency":[null,"Daglig søkefrekvens"],"Usenet retention":[null,"Usenet retensjon"],"age limit in days for usenet articles to be used (e.g. 500)":[null,"aldersgrensen i dager for usenet artikler brukt (f.eks 500)"],"Ignore words":[null,"Ignorer ord"],"results with one or more word from this list will be ignored<br>separate words with a comma, e.g. \"word1,word2,word3\"":[null,"resultat med ett eller flere ord fra denne listen vil bli ignorert<br>skill ord med komma, f.eks \"ord1, ord2, ord3\""],"Require words":[null,"Påkrevde ord"],"results with no word from this list will be ignored<br>separate words with a comma, e.g. \"word1,word2,word3\"":[null,"resultater uten ord fra denne listen vil bli ignorert<br>skill ord med komma, f.eks \"ord1, ord2, ord3\""],"Trackers list":[null,"Trackerliste"],"trackers that will be added to magnets without trackers<br>separate trackers with a comma, e.g. \"tracker1,tracker2,tracker3\"":[null,"trackere som vil bli lagt til magnet-lenker uten trackere<br>adskill adresser med komma, f.eks. \"tracker1,tracker2,tracker3\""],"Ignore language names in subbed results":[null,"Ignorere språknavn i resultater med undertekster"],"ignore subbed releases based on language names <br>\n Example: \"dk\" will ignore words: dksub, dksubs, dksubbed, dksubed <br>\n separate languages with a comma, e.g. \"lang1,lang2,lang3":[null,"ignorer tekstede utgivelser basert på språk <br>\n Eksempel: \"dk\" vil\nignorere ordene: dksub, dksubs, dksubbed, dksubed <br>\n Adskill språk\nmed komma, f.eks. \"språk1,språk2,språk3"],"Allow high priority":[null,"Tillat høy prioritet"],"set downloads of recently aired episodes to high priority":[null,"sett nedlastinger av nylig viste episoder til høy prioritet"],"Use Failed Downloads":[null,"Bruk mislykkede nedlastinger"],"use Failed Download Handling?":[null,"bruke håndtering av mislykkede nedlastinger?"],"will only work with snatched/downloaded episodes after enabling this":[null,"vil bare virke med episoder som blir hentet/lasted ned etter at dette er aktivert"],"Delete Failed":[null,"Slett mislykkede"],"delete files left over from a failed download?":[null,"slette filer som blir igjen etter en mislykket nedlasting?"],"this only works if Use Failed Downloads is enabled.":[null,"dette fungerer kun dersom \"Bruk mislykkede nedlastinger\" er aktivert."],"How to handle NZB search results.":[null,"Hvordan håndtere NZB søkeresultater."],"Search NZBs":[null,"Søk NZBs"],"enable NZB search providers":[null,"aktivér NZB-søkeleverandører"],"Send .nzb files to":[null,"Send .nzb filer til"],"SABnzbd server URL":[null,"SABnzbd server-URL"],"URL to your SABnzbd server (e.g. http://localhost:8080/)":[null,"URL-adressen til din SABnzbd server (f.eks http://localhost: 8080/)"],"SABnzbd username":[null,"SABnzbd brukernavn"],"(blank for none)":[null,"(tomt for ingen)"],"SABnzbd password":[null,"SABnzbd passord"],"SABnzbd API key":[null,"SABnzbd API-nøkkel"],"locate at... SABnzbd Config -> General -> API Key":[null,"finnes i SABnzbd Config -> General -> API Key"],"Use SABnzbd category":[null,"Bruk SABnzbd kategori"],"add downloads to this category (e.g. TV)":[null,"legg til nedlastinger i denne kategorien (f.eks TV)"],"Use SABnzbd category (backlog episodes)":[null,"Bruk SABnzbd kategori (backlog episoder)"],"add downloads of old episodes to this category (e.g. TV)":[null,"legg til nedlasting av gamle episoder i denne kategorien (f.eks TV)"],"Use SABnzbd category for anime":[null,"Bruk SABnzbd kategori for anime"],"add anime downloads to this category (e.g. anime)":[null,"legg til anime nedlastinger i denne kategorien (f.eks anime)"],"Use SABnzbd category for anime (backlog episodes)":[null,"Bruk SABnzbd kategori for anime (backlog episoder)"],"add anime downloads of old episodes to this category (e.g. anime)":[null,"legg til anime nedlastinger av gamle episoder i denne kategorien (f.eks anime)"],"Use forced priority":[null,"Bruk tvunget prioritet"],"enable to change priority from HIGH to FORCED":[null,"aktiver for å endre prioriteten fra HØY til TVUNGEN"],"Black hole folder location":[null,"\"Black Hole\" mappeplassering"],"<b>.nzb</b> files are stored at this location for external software to find and use":[null,"<b>.nzb</b> filer lagres på denne plasseringen for ekstern programvare å finne og bruke"],"Connect using HTTPS":[null,"Koble til ved hjelp av HTTPS"],"enable Secure control in NZBGet and set the correct Secure Port here":[null,"aktiver sikker kontroll i NZBGet og angi den sikre porten her"],"NZBget host:port":[null,"NZBget vert:port"],"(e.g. localhost:6789)":[null,"(f.eks localhost:6789)"],"NZBget RPC host name and port number (not NZBgetweb!)":[null,"NZBget RPC hostnavn og portnummer (ikke NZBgetweb!)"],"NZBget username":[null,"NZBget brukernavn"],"locate in nzbget.conf (default:nzbget)":[null,"finn i nzbget.conf (standard: nzbget)"],"NZBget password":[null,"NZBget passord"],"locate in nzbget.conf (default:tegbzn6789)":[null,"finn i nzbget.conf (standard: tegbzn6789)"],"Use NZBget category":[null,"Bruk NZBget kategori"],"send downloads marked this category (e.g. TV)":[null,"send nedlastninger markert med denne kategorien (f.eks TV)"],"Use NZBget category (backlog episodes)":[null,"Bruk NZBget kategori (backlog episoder)"],"send downloads of old episodes marked this category (e.g. TV)":[null,"send nedlastinger av gamle episoder merket med denne kategorien (f.eks TV)"],"Use NZBget category for anime":[null,"Bruk NZBget kategori for anime"],"send anime downloads marked this category (e.g. anime)":[null,"send anime nedlastinger merket med denne kategorien (f.eks anime)"],"Use NZBget category for anime (backlog episodes)":[null,"Bruk NZBget kategori for anime (backlog episoder)"],"send anime downloads of old episodes marked this category (e.g. anime)":[null,"send anime nedlastinger av gamle episoder merket med denne kategorien (f.eks anime)"],"NZBget priority":[null,"NZBget prioritet"],"Very low":[null,"Svært lav"],"Low":[null,"Lav"],"Very high":[null,"Svært høy"],"Force":[null,"Tving"],"priority for daily snatches (no backlog)":[null,"prioritet for daglige hentinger (ingen historikk)"],"Torrent host:port":[null,"Torrent vert: port"],"URL to your Synology DSM (e.g. http://localhost:5000/)":[null,"URL til din Synology DS (f.eks http://localhost:5000/)"],"Client username":[null,"Klient brukernavn"],"Client password":[null,"Klientpassord"],"Downloaded files location":[null,"Plassering av nedlastede filer"],"where Synology Download Station will save downloaded files (blank for client default)":[null,"hvor Synology Download Station vil lagre nedlastede filer (tom for klient standard)"],"the destination has to be a shared folder for Synology DS":[null,"målet må være en delt mappe for Synology DS"],"Click below to test":[null,"Klikk nedenfor for å teste"],"How to handle Torrent search results.":[null,"Hvordan håndtere Torrent søkeresultater."],"Search torrents":[null,"Søk torrents"],"enable torrent search providers":[null,"aktiver torrent søkeleverandører"],"Send .torrent files to":[null,"Send .torrent-filer til"],"<b>.torrent</b> files are stored at this location for external software to find and use":[null,"<b>.torrent</b>-filer blir lagret på denne lokasjonen for ekstern programvare"],"URL to your torrent client (e.g. http://localhost:8000/)":[null,"URL til din torrentklient (f.eks http://localhost:8000 /)"],"Torrent RPC URL":[null,"Torrent RPC URL"],"the path without leading and trailing slashes (e.g. transmission)":[null,"stien uten innledende og etterfølgende skråstrek (f.eks transmission)"],"Http Authentication":[null,"Http-autentisering"],"Verify certificate":[null,"Verifiser sertifikat"],"disable if you get \"Deluge: Authentication Error\" in your log":[null,"deaktiver hvis du får \"Deluge: Authentication Error\" i loggen din"],"verify SSL certificates for HTTPS requests":[null,"sjekk SSL-sertifikater ved HTTPS-forespørsler"],"Add label to torrent":[null,"Legg til etikett på torrent"],"(blank spaces are not allowed)":[null,"(mellomrom er ikke tillatt)"],"label plugin must be enabled in Deluge clients":[null,"label-tillegget må være slått på i Deluge-klientene"],"for QBitTorrent 3.3.1 and up":[null,"for QBitTorrent 3.3.1 og nyere"],"Add label to torrent for anime":[null,"Legg en etikett til torrent for anime"],"for QBitTorrent 3.3.1 and up ":[null,"for QBitTorrent 3.3.1 og nyere "],"where <span id=\"torrent_client\">the torrent client</span> will save downloaded files (blank for client default)":[null,"hvor <span id=\"torrent_client\"> torrent-klienten</span> skal lagre nedlastede filer (tom for klientens standard)"],"the destination has to be a shared folder for Synology DS</span>":[null,"målet må være en delt mappe for Synology DS</span>"],"Minimum seeding time":[null,"Minimum tid for seeding"],"time in hours":[null,"antall timer"],"(default:'0' passes blank to client and '-1' passes nothing)":[null,"(standard: '0' sender tom verdi til klienten, '-1' sender ingenting)"],"Start torrent paused":[null,"Start torrent pauset"],"add .torrent to client but do <b style=\"font-weight:900\">not</b> start downloading":[null,"legg .torrent til klienten, men <b style=\"font-weight:900\">ikke</b> start nedlasting"],"Allow high bandwidth":[null,"Tillat høy båndbredde"],"use high bandwidth allocation if priority is high":[null,"bruk høy båndbredde-tildeling hvis prioritet er høy"],"Test Connection":[null,"Test tilkoblingen"],"Windows Shares":[null,""],"Defines your existing windows shares so that we can add them to the browse dialog":[null,""],"Share #{number}":[null,""],"Share label":[null,""],"Hostname or IP":[null,""],"Share path":[null,""],"Subtitles Search":[null,"Undertekst-søk"],"Subtitles Plugin":[null,"Undertekstplugin"],"Plugin Settings":[null,"Plugin-innstillinger"],"Settings that dictate how SickRage handles subtitles search results.":[null,"Innstillinger som styrer hvordan SickRage håndterer søkeresultater for undertekster."],"Search Subtitles":[null,"Søk Etter Undertekster"],"Subtitle Languages":[null,"Språk På Undertekst"],"Subtitle Directory":[null,"Mappe For Undertekster"],"the directory where SickRage should store your <i>Subtitles</i> files.":[null,"mappen der SickRage skal lagre dine <i>undertekst-filer</i>."],"leave empty if you want store subtitle in episode path.":[null,"la stå tomt hvis du vil lagre undertekster på samme sted som episoden."],"Subtitle Find Frequency":[null,"Undertekst søkefrekvens"],"time in hours between scans (default: 1)":[null,"tid i timer mellom skanninger (standard: 1)"],"Include Specials":[null,"Ta med spesialepisoder"],"include the show's specials when searching for subtitles?":[null,"ta med seriens spesialepisoder når vi søker etter undertitler?"],"Perfect matches":[null,"Perfekte treff"],"only download subtitles that match: release group, video codec, audio codec and resolution":[null,"last kun ned undertekster som samsvarer med: utgivelsesgruppe, videokodeks, lydkodeks og oppløsning"],"if disabled you may get out of sync subtitles":[null,"hvis deaktivert kan du få undertekster som ikke er i synk"],"Subtitles History":[null,"Undertekst-historie"],"log downloaded Subtitle on History page?":[null,"vise nedlastede undertekster på historiesiden?"],"Subtitles Multi-Language":[null,"Flerspråklige undertekster"],"append language codes to subtitle filenames?":[null,"legge til språkkoder i filnavnet til undertekster?"],"this option is required if you use multiple subtitle languages":[null,"dette valget er obligatorisk hvis du bruker flere undertekstspråk"],"Delete unwanted subtitles":[null,"Slett uønskede undertekster"],"enable to delete unwanted subtitle languages bundled with release":[null,"aktivér for å slette uønskede undertekst-språk inne i utgivelsen"],"Embedded Subtitles":[null,"Innebygde undertekster"],"ignore subtitles embedded inside video file?":[null,"ignorere undertekster innebygd i videofil?"],"this will ignore <u>all</u> embedded subtitles for every video file!":[null,"dette vil ignorere <u>alle</u> innebygde undertekster for alle videofiler!"],"Hearing Impaired Subtitles":[null,"Undertekster for hørselshemmede"],"download hearing impaired style subtitles?":[null,"laste ned undertekster for hørselshemmede?"],"See":[null,"Se"],"for a script arguments description.":[null,"for en oversikt over argumenter."],"Additional scripts separated by <b>|</b>.":[null,"Flere skript kan separeres med <b>|</b>."],"Scripts are called after each episode has searched and downloaded subtitles.":[null,"Skript blir ofte kjørt etter hver episode har søkt og lastet ned undertekster."],"For any scripted languages, include the interpreter executable before the script. See the following example":[null,"For alle script, inkluder path til skripthåndtereren før skriptet. Se følgende eksempler"],"For Windows:":[null,"For Windows:"],"For Linux / OS X:":[null,"For Linux / OS X:"],"Subtitle Providers":[null,"Undertekstleverandører"],"Check off and drag the plugins into the order you want them to be used.":[null,"Merk og dra tilleggsprogrammene i den rekkefølgen du vil de skal brukes."],"At least one plugin is required.":[null,"Det kreves minst én plugin."]," Web-scraping plugin":[null," Web-informasjon plugin"],"Provider Settings":[null,"Instillinger for søkeleverandører"],"Set user and password for each provider":[null,"Angi brukernavn og passord for hver søkeleverandør"],"User Name":[null,"Brukernavn"],"Change Show":[null,"Endre Serie"],"Prev Show":[null,"Forrige Serie"],"Next Show":[null,"Neste Serie"],"Jump to Season":[null,"Gå til Sesong"],"Specials":[null,"Spesialer"],"Poster for":[null,"Plakat for"],"Stars":[null,"Stjerner"],"minutes":[null,"minutter"],"View other popular {genre} shows on trakt.tv.":[null,"Vis andre populære {genre} serier på trakt.tv."],"View other popular {imdbgenre} shows on IMDB.":[null,"Vis andre populære {imdbgenre} serier på IMDB."],"Allowed":[null,"Tillatt"],"Preferred":[null,"Foretrukket"],"Originally Airs":[null,"Sendes opprinnelig"],"Show Status":[null,"Status for Serie"],"Default EP Status":[null,"Standard Episodestatus"],"Location":[null,"Sted"],"Missing":[null,"Mangler"],"Scene Name":[null,"\"Scene\"-navn"],"Required Words":[null,"Påkrevde ord"],"Ignored Words":[null,"Ignorerte ord"],"Size":[null,"Størrelse"],"Info Language":[null,"Info Språk"],"Subtitles SR Metadata":[null,"SR Metadata for undertekster"],"Season Folders":[null,"Sesongmapper"],"Paused":[null,"Pauset"],"Air-by-Date":[null,"Datoformat"],"Sports":[null,"Sport"],"DVD Order":[null,"DVD sortering"],"Scene Numbering":[null,"\"Scene\"-nummerering"],"Select Filtered Episodes":[null,"Velg filtrerte episoder"],"Clear All":[null,"Fjern alle"],"Change selected episodes to":[null,"Endre valgte episoder til"],"Select Columns":[null,"Velg Kolonner"],"Hide Episodes":[null,"Skjul episoder"],"Show Episodes":[null,"Episoder"],"NFO":[null,"NFO"],"TBN":[null,"TBN"],"Episode":[null,"Episode"],"Absolute":[null,"Absolutt"],"Scene":[null,"\"Scene\""],"Scene Absolute":[null,"\"Scene\"-absolutt"],"File Name":[null,"Filnavn"],"Airdate":[null,"Sendedato"],"Download":[null,"Last ned"],"Change the value here if scene numbering differs from the indexer episode numbering":[null,"Endre verdien her hvis scene-nummerering avviker fra indekserens episode-nummerering"],"Change the value here if scene absolute numbering differs from the indexer absolute numbering":[null,"Endre verdien her hvis scene-nummerering avviker fra indekserens absolutte nummerering"],"Manual Search":[null,"Manuelt Søk"],"Do you want to mark this episode as failed?":[null,"Vil du merke denne episoden som mislykket?"],"The episode release name will be added to the failed history, preventing it to be downloaded again.":[null,"Episodens releasenavn vil bli lagt til i feilhistorikken, for å forhindre at den lastes ned igjen."],"Do you want to include the current episode quality in the search?":[null,"Vil du inkludere nåværende episodekvalitet i søket?"],"Choosing No will ignore any releases with the same episode quality as the one currently downloaded/snatched.":[null,"Hvis du velger Nei, ignoreres alle utgivelser med samme episodekvalitet som den episoden som på nåværende tidspunkt er lastet ned/hentet."],"Download subtitle":[null,"Last ned undertekst"],"Do you want to re-download the subtitle for this language?":[null,"Ønsker du å laste ned undertittelen for dette språket på nytt?"],"It will overwrite your current subtitle":[null,"Det vil overskrive din nåværende undertittel"],"Format":[null,"Format"],"Advanced":[null,"Avansert"],"Main Settings":[null,"Hovedinnstillinger"],"Show Location":[null,"Plassering Av Serie"],"Preferred Quality":[null,"Foretrukket Kvalitet"],"Default Episode Status":[null,"Standard Episode Status"],"this will set the status for future episodes.":[null,"dette setter statusen for fremtidige episoder."],"this only applies to episode filenames and the contents of metadata files.":[null,"dette gjelder bare episode-filnavn og innhold i metadatafiler."],"search for subtitles":[null,"søk etter undertekster"],"Use SR Metdata":[null,"Bruk metadata fra SR"],"use SickRage metadata when searching for subtitle, this will override the autodiscovered metadata":[null,"bruk SickRage-metadata ved søk etter undertekst (overstyrer autodiscovery av metadata)"],"pause this show (SickRage will not download episodes)":[null,"pause denne serien (SickRage vill ikke laste ned episoder)"],"Format Settings":[null,"Formatinnstillinger"],"Air by date":[null,"Episode som datoformat"],"check if the show is released as Show.03.02.2010 rather than Show.S02E03.":[null,"merk av hvis serien er utgitt som Serie.03.02.2010 i stedet for Serie.S02E03."],"in case of an air date conflict between regular and special episodes, the later will be ignored.":[null,"ved en konflikt på sendedato mellom vanlige episoder og spesialepisoder ignoreres sistnevnte."],"check if the show is Anime and episodes are released as Show.265 rather than Show.S02E03":[null,"merk av hvis serien er Anime og episodene er utgitt som Serie.265 i stedet for Serie.S02E03"],"check if the show is a sporting or MMA event released as Show.03.02.2010 rather than Show.S02E03":[null,"merk av hvis serien er et sports- eller MMA-arrangement utgitt som Serie.03.03.2010 i stedet for Serie.S02E03"],"Season folders":[null,"Sesongmapper"],"group episodes by season folder (uncheck to store in a single folder)":[null,"grupper episoder i sesongmapper (ikke merk av for å lagre i en enkelt mappe)"],"search by scene numbering (uncheck to search by indexer numbering)":[null,"søk etter scene-nummerering (ikke velg for å søke etter indekser-nummerering)"],"use the DVD order instead of the air order":[null,"bruk DVD-rekkefølge i stedet for rekkefølge sortert på sendedato"],"a \"Force Full Update\" is necessary, and if you have existing episodes you need to sort them manually.":[null,"en \"Tving full oppdatering\" er nødvendig, og om du har eksisterende episoder må du sortere dem manuelt."],"comma-separated <i>e.g. \"word1,word2,word3</i>\"":[null,"kommadelt <i>f.eks \"ord1, ord2, ord3</i>\""],"search results with one or more words from this list will be ignored.":[null,"søkeresultater med ett eller flere ord fra denne listen vil bli ignorert."],"e.g. \"word1,word2,word3\"":[null,"f.eks «ord1, ord2, ord3»"],"search results with no words from this list will be ignored.":[null,"søkeresultater som ikke har noen ord fra denne listen vil bli ignorert."],"Scene Exception":[null,"\"Scene\"-unntak"],"this will affect episode search on NZB and torrent providers.":[null,"dette vil påvirke søk både med NZB- og torrent-leverandører."],"this list appends to the original show name.":[null,"denne listen legges til det opprinnelige serienavnet."],"WARNING logs":[null,"Advarsel-logger"],"ERROR logs":[null,"Feilmeldingslogger"],"There are no events to display.":[null,"Det er ingen hendelser å vise."],"Limit":[null,"Grense"],"Layout":[null,"Utseende"],"HistoryLayout":[null,"HistorikkUtseende"],"Compact":[null,"Kompakt"],"Detailed":[null,"Detaljert"],"Time":[null,"Tid"],"Provider":[null,"Søkeleverandør"],"Missing Provider":[null,"Mangler Søkeleverandør"],"missing provider":[null,"mangler søkeleverandør"],"Directory":[null,"Mappe"],"Show Name (tvshow.nfo)":[null,"Serienavn (tvshow.nfo)"],"Indexer":[null,"Indekser"],"Enter the folder containing the episode":[null,"Angi mappen som inneholder episoden"],"Process Method to be used":[null,"Prosesseringsmetode som skal brukes"],"Copy":[null,"Kopier"],"Move":[null,"Flytt"],"Hard Link":[null,"Hardlenke"],"Symbolic Link":[null,"Symbolsk lenke"],"Symbolic Link Reversed":[null,"Omvendt symbolsk lenke"],"Force already Post Processed Dir/Files":[null,"Tving allerede behandlede kataloger/filer"],"Mark Dir/Files as priority download":[null,"Marker mappe/filer som prioritert nedlasting"],"(Check it to replace the file even if it exists at higher quality)":[null,"(Merk av for å erstatte filen selv om den finnes i høyere kvalitet)"],"Delete files and folders":[null,"Slett filer og mapper"],"(Check it to delete files and folders like auto processing)":[null,"(Aktiver for å slette filer og kataloger som automatisk behandling gjør)"],"Don't use processing queue":[null,"Ikke bruk behandlingskøen"],"(If checked this will return the result of the process here, but may be slow!)":[null,"(Hvis satt vil resultater av prosessen vises her, men det kan gå lang tid!)"],"Mark download as failed":[null,"Marker nedlasting som mislykket"],"Process":[null,"Behandle"],"Download subtitles for this show?":[null,"Laste ned undertekster for denne serien?"],"use SickRage metadata when searching for subtitle, <br />this will override the autodiscovered metadata":[null,"bruk SickRage-metadata ved søk etter undertekst<br />(overstyrer autodiscovery av metadata)"],"Status for previously aired episodes":[null,"Status for tidligere viste episoder"],"Status for all future episodes":[null,"Status for alle fremtidige episoder"],"Group episodes by season folder?":[null,"Gruppere episoder med sesongmapper?"],"Is this show an Anime?":[null,"Er denne serien en Anime?"],"Is this show scene numbered?":[null,"Er denne serien scene-nummerert?"],"Save Defaults":[null,"Lagre Som Standard"],"Use current values as the defaults":[null,"Bruk gjeldende verdier som standard"],"<p>Select your preferred fansub groups from the <b>Available Groups</b> and add them to the <b>Whitelist</b>. Add groups to the <b>Blacklist</b> to ignore them.</p>\n <p>The <b>Whitelist</b> is checked <i>before</i> the <b>Blacklist</b>.</p>\n <p>Groups are shown as <b>Name</b> | <b>Rating</b> | <b>Number of subbed episodes</b>.</p>\n <p>You may also add any fansub group not listed to either list manually.</p>\n <p>When doing this please note that you can only use groups listed on anidb for this anime.\n <br>If a group is not listed on anidb but subbed this anime, please correct anidb's data.</p>":[null,"<p>Velger dine foretrukne fansub grupper fra <b>Tilgjengelige grupper</b> og legg dem til i <b>Hvitelisten</b>. Legg til grupper i <b>Svartelisten</b> for å ignorere dem.</p>\n <p><b>Hvitelisten</b> sjekkes <i>før</i> <b>Svartelisten</b>.</p>\n <p>Grupper vises som <b>Navn</b> | <b>Karakter</b> | <b>Antall tekstede episoder</b>.</p>\n <p>Du kan også legge til fansub-grupper som ikke ligger i noen av listene manuelt.</p>\n <p>Når du gjør dette, vennligst merk at du kan bare bruke grupper listet på anidb for denne animen.\n <br>Om en gruppe ikke er listet på anidb, men har tekstet denne animen, vennligst korriger anidb sin informasjon.</p>"],"Whitelist":[null,"Hvitliste"],"Available Groups":[null,"Tilgjengelige Grupper"],"Add to Whitelist":[null,"Legg til Hvitliste"],"Add to Blacklist":[null,"Legg til i Svarteliste"],"Blacklist":[null,"Svarteliste"],"Custom Group":[null,"Egendefinert gruppe"],"Allowed Quality:":[null,"Tillatt Kvalitet:"],"Preferred Quality:":[null,"Foretrukket Kvalitet:"],"Filter Show Name":[null,"Filtrer Serienavn"],"Root":[null,"Rot"],"All":[null,"Alle"],"Clear Filter(s)":[null,"Tøm Filtre"],"Poster":[null,"Plakat"],"Small Poster":[null,"Liten Plakat"],"Banner":[null,"Banner"],"Simple":[null,"Enkel"],"Next Episode":[null,"Neste Episode"],"Progress":[null,"Fremdrift"],"Direction":[null,"Retning"],"Ascending":[null,"Stigende"],"Descending":[null,"Synkende"],"Poster Size":[null,"Plakatstørrelse"],"Continuing":[null,"Fortsetter"],"Ended":[null,"Avsluttet"],"Total":[null,"Totalt"],"Invalid date":[null,"Ugyldig dato"],"No Network":[null,"Ingen Kanal"],"Next Ep":[null,"Neste Ep"],"Prev Ep":[null,"Forrige Ep"],"Show":[null,"Serie"],"Downloads":[null,"Nedlastninger"],"Active":[null,"Aktiv"],"loading":[null,"laster inn"],"Loading...":[null,"Laster..."],"<p><b><u>Preferred</u></b> qualities will replace those in <b><u>allowed</u></b>, even if they are lower.</p>":[null,"<p><b><u>Foretrukne</u></b> kvaliteter erstatter de i <b><u>tillate</u></b> kvaliteter, selv om de er lavere.</p>"],"New":[null,"Ny"],"Set as Default":[null,"Angi som Standard"],"Remember me":[null,"Husk meg"],"Edit Selected":[null,"Rediger Valgte"],"Subtitle":[null,"Undertekst"],"Default Ep Status":[null,"Standard Episode Status"],"Update":[null,"Oppdater"],"Rescan":[null,"Skann på nytt"],"Rename":[null,"Gi nytt navn"],"Search Subtitle":[null,"Søk Etter Undertekster"],"Force Metadata Regen":[null,"Tving regenerering av Metadata"],"Snatched (Allowed)":[null,"Hentet (Tillatt)"],"Jump to Show":[null,"Gå til Serie"],"Force Backlog":[null,"Tving backlog"],"Manage episodes with status":[null,"Behandle episoder med status"],"Manage":[null,"Behandle"],"None of your episodes have status":[null,"Ingen av episodene har status"],"Shows containing":[null,"Serier som inneholder"],"episodes":[null,"episoder"],"Set checked shows/episodes to":[null,"Sett markerte serier/episoder til"],"Go":[null,"Gå"],"Select all":[null,"Velg alle"],"Clear all":[null,"Fjern alle"],"Release":[null,"Utgivelse"],"Backlog Search":[null,"Backlog søk"],"Not in progress":[null,"Kjører ikke"],"In Progress":[null,"Pågår"],"Daily Search":[null,"Daglig Søk"],"Find Propers Search":[null,"Finn Propers-søk"],"Propers search disabled":[null,"Propers søk deaktivert"],"Subtitle Search":[null,"Undertekst-søk"],"Subtitle search disabled":[null,"Undertekst-søk deaktivert"],"Search Queue":[null,"Søkekø"],"pending items":[null,"ventende elementer"],"Daily":[null,"Daglig"],"Manual":[null,"Manuelt"],"Changing any settings marked with (<span class=\"separator\">*</span>) will force a refresh of the selected shows.":[null,"Endring av innstillinger merket med (<span class=\"separator\"> *</span>) vil tvinge en oppdatering av de valgte seriene."],"Selected Shows":[null,"Valgte Serier"],"Root Directories":[null,"Rotmapper"],"Current":[null,"Gjeldende"],"Keep":[null,"Behold"],"Custom":[null,"Egendefinert"],"Group episodes by season folder (set to \"No\" to store in a single folder).":[null,"Grupper episoder etter sesongkataloger (sett til \"Nei\" for å lagre i en enkelt mappe)."],"Pause these shows (SickRage will not download episodes).":[null,"Pause disse seriene (SickRage vil ikke laste ned episoder)."],"This will set the status for future episodes.":[null,"Dette setter statusen for fremtidige episoder."],"Search by scene numbering (set to \"No\" to search by indexer numbering).":[null,"Søk etter scene-nummerering (set til \"Nei\" for å søke etter indekser-nummerering)."],"Set if these shows are Anime and episodes are released as Show.265 rather than Show.S02E03":[null,"Aktiver om serien er Anime og episodene slippes som Serie.265 i stedet for Serie.S02E03"],"Set if these shows are sporting or MMA events released as Show.03.02.2010 rather than Show.S02E03.":[null,"Aktiver om serien er en sportsending som slippes som Serie.03.02.2010 i stedet for Serie.S02E03."],"In case of an air date conflict between regular and special episodes, the later will be ignored.":[null,"Ved en konflikt på sendedato mellom vanlige episoder og spesialepisoder, ignoreres sistnevnte."],"Set if these shows are released as Show.03.02.2010 rather than Show.S02E03.":[null,"Aktiver om serien slippes som Serie.03.02.2010 i stedet for Serie.S02E03."],"Search for subtitles.":[null,"Søk etter undertekster."],"All of your episodes have {subsLanguage} subtitles.":[null,"Alle episodene har {subsLanguage} undertekster."],"Manage episodes without":[null,"Behandle episoder uten"],"Episodes without {subsLanguage} subtitles.":[null,"Episoder uten {subsLanguage} undertekster."],"Episodes without {subtitleLanguage} (undefined) subtitles.":[null,"Episoder uten {subtitleLanguage} (udefinerte) undertekster."],"Download missed subtitles for selected episodes":[null,"Last ned manglende undertekster for valgte episoder"],"Performing Restart":[null,"Utfør Omstart"],"Waiting for SickRage to shut down":[null,"Venter på at SickRage avsluttes"],"Waiting for SickRage to start again":[null,"Venter på at SickRage skal starte på nytt"],"Loading the default page":[null,"Laster inn standardside"],"Error: The restart has timed out, perhaps something prevented SickRage from starting again?":[null,"Feil: Omstarten har fått tidsavbrudd. Kanskje noe hindret SickRage fra å starte?"],"Key":[null,"Nøkkel"],"Missed":[null,"Mangler"],"Today":[null,"I dag"],"Soon":[null,"Snart"],"Later":[null,"Senere"],"Subscribe":[null,"Abonnér"],"Date":[null,"Dato"],"View Paused":[null,"Vis Pauset"],"Hidden":[null,"Skjult"],"Shown":[null,"Vist"],"Calendar":[null,"Kalender"],"List":[null,"Liste"],"Ends":[null,"Slutter"],"Next Ep Name":[null,"Neste Ep Navn"],"Run time":[null,"Lengde"],"Indexers":[null,"Indeksere"],"No shows for this day":[null,"Ingen serier denne dagen"],"Airs":[null,"Sendetid"],"Plot":[null,"Plott"],"Show Update":[null,"Oppdater serie"],"Version Check":[null,"Versjonskontroll"],"Proper Finder":[null,"Proper-finner"],"Post Process":[null,"Etterbehandle"],"Subtitles Finder":[null,"Undertekstsøker"],"Scheduler":[null,"Oppgaveplanlegging"],"Alive":[null,"Levende"],"Start Time":[null,"Starttid"],"Cycle Time":[null,"Syklustid"],"Next Run":[null,"Neste kjøring"],"Last Run":[null,"Siste kjøring"],"Silent":[null,"Stille"],"True":[null,"Sann"],"N/A":[null,"N/A"],"Show id":[null,"Serie-ID"],"Show name":[null,"Serienavn"],"Priority":[null,"Prioritet"],"Added":[null,"Lagt til"],"Queue type":[null,"Køtype"],"LOW":[null,"LAV"],"NORMAL":[null,"NORMAL"],"HIGH":[null,"HØY"],"Disk Space":[null,"Diskplass"],"Free space":[null,"Ledig plass"],"TV Download Directory":[null,"TV-nedlastingsmappen"],"Media Root Directories":[null,"Media Rot-katalog(er)"],"Preview of the proposed name changes":[null,"Forhåndsvis de foreslåtte navneendringer"],"All Seasons":[null,"Alle Sesonger"],"select all":[null,"velg alle"],"Rename Selected":[null,"Gi Valgte Nytt Navn"],"Cancel Rename":[null,"Avbryt Navneendring"],"Old Location":[null,"Gammel Plassering"],"New Location":[null,"Ny Plassering"],"Trakt API did not return any results, please check your config.":[null,"Trakt API-et returnerte ikke noen resultater. Sjekk konfigurasjonen din."],"votes":[null,"stemmer"],"Remove Show":[null,"Fjern Serie"],"Level":[null,"Nivå"],"Filter":[null,"Filter"],"All non-absolute folder locations are relative to ":[null,"Alle ikke-absolutte stier er relative til "],"Manual Post-Processing":[null,"Manuell Etterbehandling"],"Episode Status Management":[null,"Episode statushåndtering"],"Update PLEX":[null,"Oppdater PLEX"],"Update KODI":[null,"Oppdater KODI"],"Update Emby":[null,"Oppdater Emby"],"Missed Subtitle Management":[null,"Manglende undertekst håndtering"],"Help & Info":[null,"Hjelp & Info"],"Backup & Restore":[null,"Sikkerhetskopier & gjenopprett"],"Tools":[null,"Verktøy"],"Support SickRage":[null,"Støtt SickRage"],"View Errors":[null,"Vis Feil"],"View Warnings":[null,"Vis advarsler"],"View Log":[null,"Vis Logg"],"Check For Updates":[null,"Se Etter Oppdateringer"],"Restart":[null,"Omstart"],"Shutdown":[null,"Avslutt"],"Logout":[null,"Logg ut"],"Server Status":[null,"Serverstatus"],"View overview of snatched episodes":[null,"Se oversikt over hentede episoder"],"Episodes Downloaded":[null,"Episoder Lastet Ned"],"Memory used":[null,"Minne brukt"],"Load time":[null,"Lastetid"],"Branch":[null,"Gren"],"Now":[null,"Nå"]}}}} \ No newline at end of file +{"messages":{"domain":"messages","locale_data":{"messages":{"100":[null,"100"],"250":[null,"250"],"500":[null,"500"],"":{"domain":"messages","plural_forms":"nplurals=2; plural=(n != 1);","lang":"no_NO"},"Drama":[null,"Drama"],"Mystery":[null,"Mysterie"],"Science-Fiction":[null,"Science Fiction"],"Crime":[null,"Krim"],"Action":[null,"Handling"],"Comedy":[null,"Komedie"],"Thriller":[null,"Thriller"],"Animation":[null,"Animasjon"],"Family":[null,"Familie"],"Fantasy":[null,"Fantasi"],"Adventure":[null,"Eventyr"],"Horror":[null,"Skrekk"],"Film-Noir":[null,"Film noir"],"Sci-Fi":[null,"Science Fiction"],"Romance":[null,"Romantikk"],"Sport":[null,"Sport"],"War":[null,"Krig"],"Biography":[null,"Biografi"],"History":[null,"Historikk"],"Music":[null,"Musikk"],"Western":[null,"Western"],"News":[null,"Nyheter"],"Sitcom":[null,"Situasjonskomedie"],"Reality-TV":[null,"Reality-TV"],"Documentary":[null,"Dokumentar"],"Game-Show":[null,"Gameshow"],"Musical":[null,"Musikal"],"Talk-Show":[null,"Talkshow"],"Started Download":[null,"Nedlasting startet"],"Download Finished":[null,"Nedlasting ferdig"],"Subtitle Download Finished":[null,"Nedlasting av Undertekst Ferdig"],"SickRage Updated":[null,"SickRage er oppdatert"],"SickRage Updated To Commit#: ":[null,"SickRage Oppdaterte Til Commit#: "],"SickRage new login":[null,"SickRage ny innlogging"],"New login from IP: {0}. http://geomaplookup.net/?ip={0}":[null,"Ny innlogging fra IP: {0}. http://geomaplookup.net/?ip={0}"],"Repeat":[null,"Gjenta"],"Repeat (Separated)":[null,"Gjenta (skilt)"],"Extend":[null,"Utvid"],"Extend (Limited)":[null,"Utvid (begrenset)"],"Extend (Limited, E-prefixed)":[null,"Utvid (begrenset, E-prefiks)"],"Downloaded":[null,"Nedlastet"],"Snatched":[null,"Hentet"],"Snatched (Proper)":[null,"Hentet (Ordentlig)"],"Failed":[null,"Mislykket"],"Snatched (Best)":[null,"Hentet (beste)"],"Archived":[null,"Arkivert"],"Unknown":[null,"Ukjent"],"Unaired":[null,"Ikke sendt"],"Skipped":[null,"Hoppet over"],"Wanted":[null,"Ønsket"],"Ignored":[null,"Ignorert"],"Subtitled":[null,"Tekstet"],"For best results please set the Download Station alias as":[null,"For best resultat bør du sette Download Station alias til"],"You can check this setting in the Synology DSM":[null,"Du kan kontrollere denne innstillingen i Synology DSM"],"Control Panel":[null,"Kontrollpanel"],"Application Portal":[null,"Applikasjonsportal"],"Make sure you allow DSM to be embedded with iFrames too in":[null,"Sørg for at du tillater at DSM kan bygges inn med iFrames også i"],"DSM Settings":[null,"DSM innstillinger"],"Security":[null,"Sikkerhet"],"<No Filter>":[null,"< Uten filter >"],"Daily Searcher":[null,"Daglig søker"],"Backlog":[null,"Backlog"],"Show Updater":[null,"Serieoppdaterer"],"Check Version":[null,"Sjekk versjon"],"Show Queue":[null,"Serie-kø"],"Search Queue (All)":[null,"Søkekø (alle)"],"Search Queue (Daily Searcher)":[null,"Søkekø (daglig søk)"],"Search Queue (Backlog)":[null,"Søkekø (backlog)"],"Search Queue (Manual)":[null,"Søkekø (manuell)"],"Search Queue (Retry/Failed)":[null,"Søkekø (prøv igjen/mislyktes)"],"Search Queue (RSS)":[null,"Søkekø (RSS)"],"Find Propers":[null,"Finn propers"],"Postprocessor":[null,"Etterbehandler"],"Find Subtitles":[null,"Finn undertekster"],"Trakt Checker":[null,"Trakt sjekk"],"Event":[null,"Hendelse"],"Error":[null,"Feil"],"Tornado":[null,"Tornado"],"Thread":[null,"Tråd"],"Main":[null,"Hoved"],"Loading":[null,"Laster inn"],"New update found for SickRage, starting auto-updater":[null,"Ny oppdatering funnet for SickRage, starter auto-oppdatering"],"Update was successful":[null,"Oppdateringen var vellykket"],"Update failed!":[null,"Oppdateringen mislyktes!"],"Backup":[null,"Sikkerhetskopier"],"Config backup in progress...":[null,"Sikkerhetskopiering av konfigurasjon pågår..."],"Config backup successful, updating...":[null,"Sikkerhetskopiering av konfigurasjon vellykket, oppdaterer..."],"Config backup failed, aborting update":[null,"Sikkerhetskopiering av konfigurasjon mislyktes, avbryter oppdateringen"],"No update needed":[null,"Ingen oppdatering nødvendig"],"Mako Error":[null,"Mako feil"],"Oops":[null,"Oops"],"Wrong API key used":[null,"Feil API-nøkkel brukes"],"Login":[null,"Innlogging"],"API Key not generated":[null,"API-nøkkel ikke generert"],"API Builder":[null,"API Bygger"],"Schedule":[null,"Sendeplan"],"Test 1":[null,"Test 1"],"This is test number 1":[null,"Dette er test nummer 1"],"Test 2":[null,"Test 2"],"This is test number 2":[null,"Dette er test nummer 2"],"You're using the {branch} branch. Please use 'master' unless specifically asked":[null,"Du bruker {branch} grenen. Bruk \"master\" mindre spurt spesifikt om det"],"Invalid show parameters":[null,"Ugyldig Vis-parametere"],"Invalid parameters":[null,"Ugyldige parametre"],"Episode couldn't be retrieved":[null,"Episode kunne ikke bli hentet"],"Home":[null,"Hjem"],"Show List":[null,"Serieliste"],"Error: Unsupported Request. Send jsonp request with 'callback' variable in the query string.":[null,"Feil: Ustøttet forespørsel. Send jsonp-forespørsel med \"callback\"-variabel i søkestrengen."],"Success. Connected and authenticated":[null,"Suksess. Tilkoblet og autentisert"],"Authentication failed. SABnzbd expects":[null,"Godkjenning mislyktes. SABnzbd forventer"],"as authentication method":[null,"som autentiseringsmetode"],"Unable to connect to host":[null,"Kan ikke koble til verten"],"SMS sent successfully":[null,"SMS sendt"],"Problem sending SMS: {message}":[null,"Problemer med å sende SMS: {message}"],"Telegram notification succeeded. Check your Telegram clients to make sure it worked":[null,"Telegram varsel lyktes. Sjekk Telegram-klientene for å verifisere at det fungerte"],"Error sending Telegram notification: {message}":[null,"Feil under sending Telegram-varsel: {message}"],"join notification succeeded. Check your join clients to make sure it worked":[null,"join melding lyktes. Sjekk join klientene for å se at det fungerte"],"Error sending join notification: {message}":[null,"Feil under sending av join-melding: {message}"]," with password":[null," med passord"],"Registered and Tested growl successfully {growl_host}":[null,"Registrering og testing av Growl vellykket {growl_host}"],"Registration and Testing of growl failed {growl_host}":[null,"Registrering og testing av Growl mislyktes {growl_host}"],"Test prowl notice sent successfully":[null,"Prowl testmelding ble sendt"],"Test prowl notice failed":[null,"Prowl testmelding feilet"],"Boxcar2 notification succeeded. Check your Boxcar2 clients to make sure it worked":[null,"Boxcar2 melding lyktes. Sjekk Boxcar2 klientene for å se at det fungerte"],"Error sending Boxcar2 notification":[null,"Feil under sending av en Boxcar2 melding"],"Pushover notification succeeded. Check your Pushover clients to make sure it worked":[null,"Pushover melding lyktes. Sjekk Pushover klientene for å se at det fungerte"],"Error sending Pushover notification":[null,"Feil under sending av en Pushover melding"],"Key verification successful":[null,"Nøkkelkontroll vellykket"],"Unable to verify key":[null,"Kan ikke bekrefte nøkkel"],"Tweet successful, check your twitter to make sure it worked":[null,"Tweet vellykket. Sjekk twitter for å forsikre deg om at det fungerte"],"Error sending tweet":[null,"Feil ved sending av tweet"],"Please enter a valid account sid":[null,"Vennligst oppgi en gyldig sid-konto"],"Please enter a valid auth token":[null,"Vennligst skriv inn en gyldig auth token"],"Please enter a valid phone sid":[null,"Vennligst skriv inn et gyldig telefonnr"],"Please format the phone number as \"+1-###-###-####\"":[null,"Vennligst formater telefonnummeret som \"+1-###-###-###\""],"Authorization successful and number ownership verified":[null,"Autoriseringen lyktes og nummerets eierskap er bekreftet"],"Error sending sms":[null,"Feil ved sending av SMS"],"Slack message successful":[null,"Slack-melding sendt"],"Slack message failed":[null,"Slack-melding mislyktes"],"Discord message successful":[null,"Discord-melding sendt"],"Discord message failed":[null,"Discord-melding mislyktes"],"Test KODI notice sent successfully to {kodi_host}":[null,"Test KODI melding sendt vellykket til {kodi_host}"],"Test KODI notice failed to {kodi_host}":[null,"Test KODI melding feilet til {kodi_host}"],"Successful test notice sent to Plex Home Theater ... {plex_clients}":[null,"Vellykket testmelding sendt til Plex Home Theater ... {plex_clients}"],"Test failed for Plex Home Theater ... {plex_clients}":[null,"Test feilet for Plex Home Theater ... {plex_clients}"],"Tested Plex Home Theater(s)":[null,"Testede Plex Home Theater(s)"],"Successful test of Plex Media Server(s) ... {plex_servers}":[null,"Vellykket test av Plex Media Server(e) ... {plex_servers}"],"Test failed, No Plex Media Server host specified":[null,"Test feilet, Ingen Plex Media Server vert spesifisert"],"Test failed for Plex Media Server(s) ... {plex_servers}":[null,"Test feilet for Plex Media Server(e) ... {plex_servers}"],"Tested Plex Media Server host(s)":[null,"Testede Plex Media Server vert(er)"],"Tried sending desktop notification via libnotify":[null,"Forsøkte å sende skrivebordsmelding via libnotify"],"Test notice sent successfully to {emby_host}":[null,"Testmelding sendt til {emby_host}"],"Test notice failed to {emby_host}":[null,"Testmelding feilet til {emby_host}"],"Successfully started the scan update":[null,"Vellykket start av skanningsoppdatering"],"Test failed to start the scan update":[null,"Mislykket start av skanningsoppdatering"],"Test notice sent successfully to {nmj2_host}":[null,"Testmelding sendt vellykket til {nmj2_host}"],"Test notice failed to {nmj2_host}":[null,"Testmelding feilet til {nmj2_host}"],"Trakt Authorized":[null,"Trakt godkjent"],"Trakt Not Authorized!":[null,"Trakt ikke godkjent!"],"Test email sent successfully! Check inbox.":[null,"Test e-post sendt! Sjekk innboks."],"ERROR: {last_error}":[null,"FEIL: {last_error}"],"Test NMA notice sent successfully":[null,"NMA testmelding sendt"],"Test NMA notice failed":[null,"NMA testmelding mislyktes"],"Pushalot notification succeeded. Check your Pushalot clients to make sure it worked":[null,"Pushalot melding lyktes. Sjekk Pushalot klientene for å være sikker på at det fungerte"],"Error sending Pushalot notification":[null,"Feil ved sending av en Pushalot melding"],"Pushbullet notification succeeded. Check your device to make sure it worked":[null,"Pushbullet melding lyktes. Sjekk din enhet for å se at det virket"],"Error sending Pushbullet notification":[null,"Feil ved sending av Pushbullet notifikasjon"],"Status":[null,"Status"],"Restarting SickRage":[null,"Starter SickRage på nytt"],"Update Failed":[null,"Oppdatering Feilet"],"Update wasn't successful, not restarting. Check your log for more information.":[null,"Oppdatering ikke vellykket, starter ikke på nytt. Sjekk loggen for mer informasjon."],"Checking out branch":[null,"Sjekker ut gren"],"Already on branch":[null,"Allerede på gren"],"Invalid show ID: {show}":[null,"Ugyldig serie ID: {show}"],"Show not in show list":[null,"Serie ikke i serielisten"],"Edit":[null,"Endre"],"This show is in the process of being downloaded - the info below is incomplete.":[null,"Serien lastes ned - informasjon under er ufullstendig."],"The information on this page is in the process of being updated.":[null,"Informasjonen på denne siden er i ferd med å bli oppdatert."],"The episodes below are currently being refreshed from disk":[null,"Episodene nedenfor oppdateres fra disk"],"Currently downloading subtitles for this show":[null,"Laster ned undertekster for denne serien"],"This show is queued to be refreshed.":[null,"Denne serien er satt i kø for å bli oppdatert."],"This show is queued and awaiting an update.":[null,"Denne serien er satt i kø og venter på en oppdatering."],"This show is queued and awaiting subtitles download.":[null,"Denne serien er satt i kø og venter på nedlasting av undertekster."],"Resume":[null,"Gjenoppta"],"Pause":[null,"Pause"],"Remove":[null,"Fjern"],"Re-scan files":[null,"Skann filer på nytt"],"Force Full Update":[null,"Tving full oppdatering"],"Update show in KODI":[null,"Oppdater serie i KODI"],"Update show in Emby":[null,"Oppdater serie i Emby"],"Hide specials":[null,"Skjul specials"],"Show specials":[null,"Vis specials"],"Preview Rename":[null,"Forhåndsvis navnendring"],"Download Subtitles":[null,"Last ned undertekster"],"No scene exceptions":[null,"Ingen \"scene\"-unntak"],"Invalid show ID":[null,"Ugyldig serie ID"],"Unable to find the specified show":[null,"Finner ikke den angitte serien"],"Unable to retreive Fansub Groups from AniDB.":[null,"Kan ikke hente Fansub Groups fra AniDB."],"Edit Show":[null,"Endre serie"],"Unable to refresh this show: {error}":[null,"Kan ikke oppdatere denne serien: {error}"],"New location <tt>{location}</tt> does not exist":[null,"Ny plassering <tt>{location}</tt> eksisterer ikke"],"Unable to update show: {error}":[null,"Kan ikke oppdatere serie: {error}"],"Unable to force an update on scene exceptions of the show.":[null,"Kan ikke fremtvinge en oppdatering for \"scene\"-unntak av serien."],"Unable to force an update on scene numbering of the show.":[null,"Kan ikke fremtvinge en oppdatering for \"scene\"-nummerering av serien."],"{num_errors:d} error{plural} while saving changes:":[null,"{num_errors:d} feil{plural} under lagring av endringer:"],"{show_name} has been {paused_resumed}":[null,"{show_name} er {paused_resumed}"],"resumed":[null,"gjenopptatt"],"paused":[null,"pauset"],"{show_name} has been {deleted_trashed} {was_deleted}":[null,"{show_name} er blitt {deleted_trashed} {was_deleted}"],"deleted":[null,"slettet"],"trashed":[null,"kastet"],"(media untouched)":[null,"(media urørt)"],"(with all related media)":[null,"(med all relatert media)"],"Unable to refresh this show.":[null,"Kan ikke oppdatere denne serien."],"Unable to update this show.":[null,"Kan ikke oppdatere denne serien."],"Library update command sent to KODI host(s)): {kodi_hosts}":[null,"Kommando for biblioteks-oppdatering sent til KODI vert(er): {kodi_hosts}"],"Unable to contact one or more KODI host(s)): {kodi_hosts}":[null,"Kan ikke kontakte en eller flere KODI vert(er)): {kodi_hosts}"],"Library update command sent to Plex Media Server host: {plex_server}":[null,"Kommando for biblioteks-oppdatering sent til Plex Media Server vert: {plex_server}"],"Unable to contact Plex Media Server host: {plex_server}":[null,"Kan ikke kontakte Plex Media Server vert: {plex_server}"],"Library update command sent to Emby host: {emby_host}":[null,"Kommando for biblioteks-oppdatering sent til Emby vert: {emby_host}"],"Unable to contact Emby host: {emby_host}":[null,"Kan ikke kontakte Emby vert: {emby_host}"],"You must specify a show and at least one episode":[null,"Du må angi en serie og minst én episode"],"Invalid status":[null,"Ugyldig status"],"Backlog was automatically started for the following seasons of <b>{show_name}</b>":[null,"Backlog ble automatisk startet for følgende sesonger av <b>{show_name}</b>"],"Season":[null,"Sesong"],"Backlog started":[null,"Søk etter gjenværende episoder startet"],"Retrying Search was automatically started for the following season of <b>{show_name}</b>":[null,"Prøver å søke på nytt ble automatisk startet for følgende sesong av <b>{show_name}</b>"],"Retry Search started":[null,"Prøver å søke på nytt startet"],"You must specify a show":[null,"Du må spesifisere en serie"],"Can't rename episodes when the show dir is missing.":[null,"Kan ikke gi nytt navn på episode når seriemappe mangler."],"New subtitles downloaded: {new_subtitle_languages}":[null,"Nye undertekster er lastet ned: {new_subtitle_languages}"],"No subtitles downloaded":[null,"Ingen undertekster ble lastet ned"],"IRC":[null,"IRC"],"Could not load news from the repo. [Click here for news.md])({news_url})":[null,"Kan ikke laste nyheter fra repo. [Klikk her for news.md]) ({news_url})"],"The was a problem connecting to github, please refresh and try again":[null,"Det oppstod et problem under tilkoblingen til github. Vennligst last inn siden på nytt, og prøv igjen"],"Could not load changes from the repo. [Click here for CHANGES.md]({changes_url})":[null,"Kan ikke laste endringer fra repo. [Klikk her for CHANGES.md] ({changes_url})"],"Changelog":[null,"Endringslogg"],"Post Processing":[null,"Etterbehandling"],"Add Shows":[null,"Legg til serier"],"No folders selected.":[null,"Ingen valgte mapper."],"New Show":[null,"Ny serie"],"Trending Shows":[null,"Populære serier"],"Popular Shows":[null,"Populære serier"],"Most Anticipated Shows":[null,"Mest etterlengtede serier"],"Most Collected Shows":[null,"Serier flest samler på"],"Most Watched Shows":[null,"Serier med flest visninger"],"Most Played Shows":[null,"Serier som er mest spilt"],"Recommended Shows":[null,"Anbefalte serier"],"New Shows":[null,"Nye serier"],"Season Premieres":[null,"Sesongpremierer"],"Existing Show":[null,"Eksisterende serier"],"No root directories setup, please go back and add one.":[null,"Ingen rotmappe konfigurert, vennligst gå tilbake og legg til en."],"Show added":[null,"Serie lagt til"],"Adding the specified show {show_name}":[null,"Legger til serie {show_name}"],"Missing params, no Indexer ID or folder: {show_to_add} and {root_dir}/{show_path}":[null,"Manglende parametere, ingen indekserer-ID eller mappe: {show_to_add} og {root_dir}/{show_path}"],"Unknown error. Unable to add show due to problem with show selection.":[null,"Ukjent feil. Kan ikke legge til serie på grunn av problem med serie-valg."],"Unable to add show":[null,"Kan ikke legge til serie"],"Folder {show_dir} exists already":[null,"Mappe {show_dir} finnes allerede"],"Unable to create the folder {show_dir}, can't add the show":[null,"Kan ikke lage mappe {show_dir}, kan ikke legge til serie"],"Adding the specified show into {show_dir}":[null,"Legger til serie i mappe {show_dir}"],"Shows Added":[null,"Serie lagt til"],"Automatically added {num_shows} from their existing metadata files":[null,"Automatisk lagt til {num_shows} fra eksisterende metadatafiler"],"Mass Update":[null,"Masseoppdatering"],"Episode Overview":[null,"Episodeoversikt"],"Missing Subtitles":[null,"Mangler undertekster"],"Backlog Overview":[null,"Backlog Oversikt"],"Mass Edit":[null,"Masseredigering"],"Unable to update show: {excption_format}":[null,"Kan ikke oppdatere serie: {excption_format}"],"Unable to refresh show {show_name}: {excption_format}":[null,"Kan ikke oppdatere serie {show_name}: {excption_format}"],"Errors encountered":[null,"Feil oppstått"],"Updates":[null,"Oppdateringer"],"Refreshes":[null,"Oppfrisker"],"Renames":[null,"Navneendringer"],"Subtitles":[null,"Undertekster"],"The following actions were queued":[null,"Følgende handlinger ble lagt i kø"],"Failed Downloads":[null,"Mislykkede nedlastinger"],"Manage Searches":[null,"Behandle søk"],"Backlog search started":[null,"Backlog-søk startet"],"Daily search started":[null,"Daglig søk startet"],"Find propers search started":[null,"Finn Propers-søk startet"],"Subtitle search started":[null,"Undertekstsøk startet"],"Remove Selected":[null,"Fjern markerte"],"Clear History":[null,"Tøm historikken"],"Trim History":[null,"Trim historikk"],"Selected history entries removed":[null,"De markerte historikklinjene ble slettet"],"History cleared":[null,"Historikk tømt"],"Removed history entries older than 30 days":[null,"Fjernet historikk som er eldre enn 30 dager"],"General":[null,"Generelt"],"Backup/Restore":[null,"Sikkerhetskopier/Gjenopprett"],"Search Settings":[null,"Søke instillinger"],"Search Providers":[null,"Søkeleverandører"],"Subtitles Settings":[null,"Undertekst innstillinger"],"Notifications":[null,"Varsler"],"Anime":[null,"Anime"],"SickRage Configuration":[null,"SickRage konfigurasjon"],"Config - Shares":[null,"Konfigurasjon - Delte ressurser"],"Windows Shares Configuration":[null,"Windows - Konfigurasjon av delte ressurser"],"Saved Shares":[null,"Lagrede delte ressurser"],"Your Windows share settings have been saved":[null,"Dine innstillinger for delte ressurser har blitt lagret"],"Config - General":[null,"Konfigurasjon - Generelt"],"General Configuration":[null,"Generell Konfigurasjon"],"Saved Defaults":[null,"Standardinnstillinger lagret"],"Your \"add show\" defaults have been set to your current selections.":[null,"Standardinnstillinger for \"Legg til serie\" har blitt satt til ditt nåværende valg."],"Unable to create directory {directory}, log directory not changed.":[null,"Kan ikke opprette mappen {directory}, loggmappen ikke endret."],"Unable to create directory {directory}, https cert directory not changed.":[null,"Kan ikke opprette mappen {directory}, https sertifikat-mappe ikke endret."],"Unable to create directory {directory}, https key directory not changed.":[null,"Kan ikke opprette mappen {directory}, https nøkkel-mappe ikke endret."],"Error(s) Saving Configuration":[null,"Feil ved lagring av konfigurasjon"],"Configuration Saved":[null,"Konfigurasjon lagret"],"Config - Backup/Restore":[null,"Konfigurasjon - sikkerhetskopiering/gjenoppretting"],"Config - Episode Search":[null,"Konfigurasjon - Episodesøk"],"Config - Post Processing":[null,"Konfigurasjon - etterbehandling"],"Unpacking Not Supported, disabling unpack setting":[null,"Utpakking støttes ikke, deaktiverer innstilling for utpakking"],"You tried saving an invalid normal naming config, not saving your naming settings":[null,"Du prøvde å lagre en ugyldig navngivingskonfigurasjon, lagrer ikke innstillingene for navngiving"],"You tried saving an invalid anime naming config, not saving your naming settings":[null,"Du prøvde å lagre en ugyldig anime navngivingskonfigurasjon, lagrer ikke innstillingene for navngiving"],"Config - Providers":[null,"Konfigurasjon - søkeleverandører"],"No Provider Name specified":[null,"Ingen søkeleverandør spesifisert"],"No Provider Url specified":[null,"Ingen søkeleverandør url spesifisert"],"No Provider Api key specified":[null,"Ingen søkeleverandør API-nøkkel spesifisert"],"Config - Notifications":[null,"Konfiguration - meldinger"],"Config - Subtitles":[null,"Konfigurasjon - Undertekster"],"Config - Anime":[null,"Konfigurasjon - Anime"],"Clear Errors":[null,"Fjern feilmeldinger"],"Clear Warnings":[null,"Fjern advarsler"],"Submit Errors":[null,"Send inn feil"],"Logs & Errors":[null,"Logger & feil"],"Log File":[null,"Loggfil"],"Logs":[null,"Logg"],"This is a test notification from SickRage":[null,"Dette er en testmelding fra SickRage"],"Choose Directory":[null,""],"Select log file folder location":[null,""],"Select CSS file":[null,""],"Select backup folder to save to":[null,""],"Select backup files to restore":[null,""],"Please fill out the necessary fields above.":[null,"Vennligst fyll ut de nødvendige feltene over."],"<b>Step 1:</b> Confirm Authorization":[null,""],"Check blacklist name; the value needs to be a trakt slug":[null,""],"You must provide a recipient email address!":[null,""],"You didn't supply a Pushbullet api key":[null,""],"Don't forget to save your new pushbullet settings.":[null,""],"Select TV Download Directory":[null,""],"Select Unpack Directory":[null,""],"This pattern is invalid.":[null,"Dette mønsteret er ugyldig."],"This pattern would be invalid without the folders, using it will force \"Season Folders\" on for all shows.":[null,"Dette mønsteret vil kun fungere uten mapper, bruker du det vil det slå på \"Sesongmapper\" for alle serier."],"This pattern is valid.":[null,"Dette mønsteret er gyldig."],"Select .nzb black hole/watch location":[null,""],"Select .torrent black hole/watch location":[null,""],"Select .torrent download location":[null,""],"Minimum seeding time is":[null,""],"URL to your uTorrent client (e.g. http://localhost:8000)":[null,""],"Stop seeding when inactive for":[null,""],"URL to your Transmission client (e.g. http://localhost:9091)":[null,""],"URL to your Deluge client (e.g. http://localhost:8112)":[null,""],"IP or Hostname of your Deluge Daemon (e.g. scgi://localhost:58846)":[null,""],"URL to your Synology DS client (e.g. http://localhost:5000)":[null,""],"URL to your rTorrent client (e.g. scgi://localhost:5000 <br> or https://localhost/rutorrent/plugins/httprpc/action.php)":[null,""],"URL to your qBittorrent client (e.g. http://localhost:8080)":[null,""],"URL to your MLDonkey (e.g. http://localhost:4080)":[null,""],"URL to your putio client (e.g. http://localhost:8080)":[null,""],"<a herf=\"https://app.put.io/oauth/apps/new\" target=\"_blank\"> Create a new OAuth app for put.io</a>":[null,""],"Put.io Parent Folder":[null,""],"Put.io OAuth Token":[null,""],"Show Episodes":[null,"Episoder"],"Hide Episodes":[null,"Skjul episoder"],"Select Show Location":[null,""],"Select Unprocessed Episode Folder":[null,""],"DELETED":[null,""],"Resume updating the log on this page.":[null,"Gjenoppta loggoppdatering på denne siden."],"Pause updating the log on this page.":[null,"Sett loggoppdatering på denne siden på pause."],"searching {searchingFor}...":[null,""],"search timed out, try again or try another indexer":[null,""],"loading folders...":[null,""],"Loading...":[null,"Laster..."],"You have reached this page by accident, please check the url.":[null,"Du har kommet til denne siden ved en tilfeldighet, vennligst kontroller URL-adressen."],"A mako error has occured.<br>\n If this happened during an update a simple page refresh may be the solution.<br>\n Mako errors that happen during updates may be a one time error if there were significant ui changes.":[null,"Det oppstod en feil i mako.<br>\n Hvis dette skjedde under en oppdatering kan en enkel sideoppdatering være løsningen.<br>\n Mako feil som skjer under oppdateringer kan være engangsfeil hvis det var betydelige endringer i grensesnittet."],"Show/Hide Error":[null,"Vis/Skjul feil"],"Add New Show":[null,"Legg til ny serie"],"For shows that you haven't downloaded yet, this option finds a show on theTVDB.com, creates a directory for it's episodes, and adds it to SickRage.":[null,"For serier du ikke har lastet ned ennå. Dette alternativet finner en serie på theTVDB.com, oppretter en mappe for episodene og legger den til SickRage."],"Add From Trakt Lists":[null,"Legg til fra Trakt lister"],"For shows that you haven't downloaded yet, this option lets you choose from a show from one of the Trakt lists to add to SickRage.":[null,"For serier du ikke har lastet ned ennå. Dette alternativet lar deg velge en serie fra en av listene til Trakt for å legge til SickRage."],"Add From IMDB's Popular Shows":[null,"Legg Til Fra IMDB's Populære Serier"],"View IMDB's list of the most popular shows. This feature uses IMDB's MOVIEMeter algorithm to identify popular TV Series.":[null,"Vis IMDB's liste over de mest populære seriene. Denne funksjonen bruker IMDB's MOVIEMeter algoritme for å identifisere populære TV-serier."],"Add Existing Shows":[null,"Legg til eksisterende serier"],"Use this option to add shows that already have a folder created on your hard drive. SickRage will scan your existing metadata/episodes and add the show accordingly.":[null,"Bruk dette alternativet for å legge til serier som allerede har en mappe på harddisken. SickRage vil skanne dine eksisterende metadata/episoder og legge disse til serien."],"Add Existing Show":[null,"Legg til eksisterende serie"],"Manage Directories":[null,"Administrere mapper"],"Customize Options":[null,"Tilpasning"],"SickRage can add existing shows, using the current options, by using locally stored NFO/XML metadata to eliminate user interaction. If you would rather have SickRage prompt you to customize each show, then use the checkbox below.":[null,"SickRage kan legge til eksisterende serier ved å bruke gjeldende alternativer ved hjelp av lokalt lagrede NFO/XML metadata for å eliminere brukerinteraksjon. Hvis du heller vil at SickRage skal be deg om å tilpasse hver serie, bruk avmerkingsboksen nedenfor."],"Prompt me to set settings for each show":[null,"Spør meg om å angi innstillinger for hver serie"],"Displaying folders within these directories which aren't already added to SickRage":[null,"Viser mappene i disse katalogene som ikke allerede er lagt til SickRage"],"Submit":[null,"Send inn"],"Find a show on theTVDB":[null,"Finn en serie på theTVDB"],"Show retrieved from existing metadata":[null,"Serie hentet fra eksisterende metadata"],"All Indexers":[null,"Alle indekserere"],"Search":[null,"Søk"],"This will only affect the language of the retrieved metadata file contents and episode filenames.":[null,"Dette påvirker bare språket i hentede metadatafilers innhold og episode filnavn."],"This <b>DOES NOT</b> allow SickRage to download non-english TV episodes!":[null,"Dette tillater <b>IKKE</b> SickRage å laste ned ikke-engelske TV episoder!"],"Pick the parent folder":[null,"Velg den overordnede mappen"],"Pre-chosen Destination Folder":[null,"For-valgt målmappe"],"Customize options":[null,"Tilpasning"],"Add Show":[null,"Legg til Serie"],"Skip Show":[null,"Hopp over serie"],"Sort By":[null,"Sorter Etter"],"Name":[null,"Navn"],"Original":[null,"Original"],"Votes":[null,"Stemmer"],"Rating":[null,"Vurdering"],"Rating > Votes":[null,"Vurdering > stemmer"],"Sort Order":[null,"Sortering"],"Asc":[null,"Stigende"],"Desc":[null,"Synkende"],"Fetching of IMDB Data failed. Are you online?":[null,"Henting av IMDB Data mislyktes. Har du nett?"],"Exception":[null,"Unntak"],"Select Trakt List":[null,"Velg Trakt liste"],"Most Anticipated":[null,"Mest etterlengtede"],"Trending":[null,"Populært"],"Popular":[null,"Populær"],"Most Watched":[null,"Mest sett"],"Most Played":[null,"Mest avspilt"],"Most Collected":[null,"Mest samlet"],"Recommended":[null,"Anbefalt"],"Toggle navigation":[null,"Vis/skjul navigasjon"],"Profile":[null,"Profil"],"JSONP":[null,"JSONP"],"Back to SickRage":[null,"Tilbake til SickRage"],"Parameters":[null,"Parametere"],"Required":[null,"Påkrevd"],"Description":[null,"Beskrivelse"],"Type":[null,"Type"],"Default value":[null,"Standardverdi"],"Allowed values":[null,"Tillatte verdier"],"Playground":[null,"Lekeplass"],"Clear":[null,"Tøm"],"Yes":[null,"Ja"],"No":[null,"Nei"],"season":[null,"sesong"],"episode":[null,"episode"],"Python Version":[null,"Python versjon"],"SSL Version":[null,"SSL versjon"],"OS":[null,"OS"],"Locale":[null,"Språk"],"User":[null,"Bruker"],"Program Folder":[null,"Programmappe"],"Config File":[null,"Konfigurasjonsfil"],"Database File":[null,"Databasefil"],"Cache Folder":[null,"Hurtigbuffermappe"],"Log Folder":[null,"Loggmappe"],"Arguments":[null,"Argumenter"],"Web Root":[null,"Web rot"],"Website":[null,"Nettside"],"Wiki":[null,"Wiki"],"Source":[null,"Kilde"],"IRC Chat":[null,"IRC chat"],"AnimeDB Settings":[null,"AnimeDB innstillinger"],"Look & Feel":[null,"Utseende"],"AniDB is non-profit database of anime information that is freely open to the public":[null,"AniDB er non-profit database av anime som er fritt åpen for alle"],"Enable":[null,"Aktiver"],"should SickRage use data from AniDB?":[null,"skal SickRage bruke data fra AniDB?"],"AniDB Username":[null,"AniDB brukernavn"],"username of your AniDB account":[null,"brukernavn på AniDB-kontoen"],"AniDB Password":[null,"AniDB passord"],"password of your AniDB account":[null,"passord til AniDB-kontoen"],"AniDB MyList":[null,"AniDB MyList"],"do you want to add the PostProcessed episodes to the MyList?":[null,"vil du legge til de etterbehandlede episodene i MinListe?"],"Look and Feel":[null,"Utseende"],"How should the anime functions show and behave.":[null,"Hvordan bør anime-funksjonene vises og oppføre seg."],"Split show lists":[null,"Del serieliste"],"separate anime and normal shows in groups":[null,"del anime og normale serier opp i forskjellige grupper"],"Split in tabs":[null,"Del opp i faner"],"use tabs for when splitting show lists":[null,"bruk faner for å dele opp serielister"],"Restore":[null,"Gjenopprett"],"Backup your main database file and config.":[null,"Sikkerhetskopier din viktigste databasefil og konfiguration."],"Select the folder you wish to save your backup file to":[null,"Velg mappen du vil lagre sikkerhetskopifilen til"],"Restore your main database file and config.":[null,"Gjenopprett din viktigste databasefil og konfiguration."],"Select the backup file you wish to restore":[null,"Velg sikkerhetskopifilen du vil gjenopprette"],"Misc":[null,"Diverse"],"Interface":[null,"Grensesnitt"],"Advanced Settings":[null,"Avanserte innstillinger"],"Startup options. Indexer options. Log and show file locations.":[null,"Oppstartsalternativer. Indekserer alternativ. Logg og serie-filplassering."],"Some options may require a manual restart to take effect.":[null,"Noen alternativer kan kreve en manuell omstart for å tre i kraft."],"Default Indexer Language":[null,"Standard indekserer-språk"],"for adding shows and metadata providers":[null,"for å legge til programmer og metadataleverandører"],"Launch browser":[null,"Start nettleser"],"open the SickRage home page on startup":[null,"Åpne hjemmesiden til SickRage ved oppstart"],"Initial page":[null,"Startside"],"Shows":[null,"Serier"],"when launching SickRage interface":[null,"når du starter SickRage grensesnittet"],"Choose hour to update shows":[null,"Velg tid for oppdatering av serier"],"with information such as next air dates, show ended, etc. Use 15 for 3pm, 4 for 4am etc.":[null,"med informasjon som neste sendingsdato, avsluttede serier, osv. Bruk 15 for 3 pm, 4 for 4 am osv."],"note":[null,"merknad"],"minutes are randomized each time SickRage is started":[null,"minuttene blir tilfeldig valgt hver gang SickRage starter"],"Send to trash for actions":[null,"Send til papirkurven for handlinger"],"when using show \"Remove\" and delete files":[null,"når du bruker serie \"Fjern\" og slett filer"],"on scheduled deletes of the oldest log files":[null,"på planlagte slettinger av de eldste loggfilene"],"selected actions use trash (recycle bin) instead of the default permanent delete":[null,"merkede handlingene bruker papirkurven i stedet for standard permanent sletting"],"Log file folder location":[null,"Mappen for loggfiler"],"Number of Log files saved":[null,"Antall loggfiler lagret"],"number of log files saved when rotating logs (default: 5) (REQUIRES RESTART)":[null,"antall loggfiler lagret når logger roteres (standard: 5) (KREVER OMSTART)"],"Size of Log files saved":[null,"Størrelse på loggfilene som er lagret"],"maximum size in MB of the log file (default: 1MB) (REQUIRES RESTART)":[null,"maksimumsstørrelsen i megabyte for loggfilen (standard: 1MB) (KREVER OMSTART)"],"Use initial indexer set to":[null,"Bruk første indeksereren satt til"],"as the default selection when adding new shows":[null,"som standardvalg når du legger til nye serier"],"Timeout show indexer at":[null,"Tidsavbrudd serie indekser på"],"seconds of inactivity when finding new shows (default:20)":[null,"sekunder med inaktivitet når nye serier finnes (standard: 20)"],"Show root directories":[null,"Vis rotmapper"],"where the files of shows are located":[null,"hvor filene til seriene ligger"],"Save Changes":[null,"Lagre endringer"],"Options for software updates.":[null,"Alternativer for programvareoppdateringer."],"Check software updates":[null,"Se etter programvareoppdateringer"],"and display notifications when updates are available. Checks are run on startup and at the frequency set below*":[null,"og vis meldinger når oppdateringer er tilgjengelige. Sjekk kjøres ved oppstart og med intervaller satt nedenfor *"],"Automatically update":[null,"Automatisk oppdater"],"fetch and install software updates. Updates are run on startup and in the background at the frequency set below*":[null,"hent og installer programvareoppdateringer. Oppdateringer kjøres ved oppstart og i bakgrunnen med intervaller satt nedenfor *"],"Check the server every*":[null,"Kontroller serveren hver *"],"hours for software updates (default:1)":[null,"timer for programvareoppdateringer (standard:1)"],"Notify on software update":[null,"Vis varsel ved programvareoppdatering"],"send a message to all enabled notifiers when SickRage has been updated":[null,"send en melding til alle aktiverte varslinger når SickRage er blitt oppdatert"],"User Interface":[null,"Brukergrensesnitt"],"Options for visual appearance.":[null,"Alternativer for utseende."],"Interface Language":[null,"Grensesnittspråk"],"System Language":[null,"Systemspråk"],"for appearance to take effect, save then refresh your browser":[null,"for at utseende skal tre i kraft, lagre og deretter oppdater nettleseren"],"Display theme":[null,"Vis tema"],"Dark":[null,"Mørk"],"Light":[null,"Lys"],"Use a background image":[null,"Bruk et bakgrunnsbilde"],"use a custom image as background for SickRage":[null,"bruk et valgt bilde som bakgrunn for SickRage"],"Background Path":[null,"Sti til bakgrunnsbildet"],"Path to the background image":[null,"Stien til bakgrunnsbildet"],"Show fanart in the background":[null,"Tilhengerkunst for serie i bakgrunnen"],"on the show summary page":[null,"på siden for serie-sammendrag"],"Fanart transparency":[null,"Gjennomsiktighet på tilhengerkunst"],"transparency of the fanart in the background":[null,"gjennomsiktighet til fanart-bakgrunnen"],"Use a custom stylesheet file":[null,"Bruk en egendefinert stilark-fil"],"use a custom .css file to style SickRage (for advanced users)":[null,"bruk en egendefinert CSS-fil for å forandre utseende på SickRage (for avanserte brukere)"],"Stylesheet File Path":[null,"Stilark filbane"],"Path to the stylesheet (.css) file":[null,"Bane til stilark (CSS-filen)"],"Show all seasons":[null,"Vis alle sesonger"],"Sort with \"The\", \"A\", \"An\"":[null,"Sorter med \"The\", \"A\", \"An\""],"include articles (\"The\", \"A\", \"An\") when sorting show lists":[null,"inkluder engelske artikler (\"The\", \"A\", \"An\") når lister sorteres"],"Missed episodes range":[null,"Mangler episodeutvalg"],"set the range in days of the missed episodes in the Schedule page":[null,"angi periode i dager for hvor lenge Sendeplan skal anse en episode som manglende"],"Display fuzzy dates":[null,"Vis omtrentlige datoer"],"move absolute dates into tooltips and display e.g. \"Last Thu\", \"On Tue\"":[null,"flytte absolutte datoer til verktøytips og vis f.eks \"Siste Tor\", \"På Tir\""],"Trim zero padding":[null,"Fjern ledende nuller"],"remove the leading number \"0\" shown on hour of day, and date of month":[null,"fjern \"0\" før timer og datoer"],"Date style":[null,"Datostil"],"Use System Default":[null,"Bruk systemstandarden"],"Time style":[null,"Klokkeslettstil"],"seconds are only shown on the History page":[null,"sekunder vises kun på historiesiden"],"Timezone":[null,"Tidssone"],"Local":[null,"Språk"],"Network":[null,"TV-Kanal"],"display dates and times in either your timezone or the shows network timezone":[null,"vis datoer og klokkeslett i din tidssone eller bruk tidssonen serien vises i"],"use local timezone to start searching for episodes minutes after show ends (depends on your dailysearch frequency)":[null,"bruk lokal tidssone for å starte søk etter episoder rett etter at sendingen slutter (avhengig av din søkefrekvens)"],"Download url":[null,"Nedlastingslink"],"URL where the shows can be downloaded.":[null,"URL-adressen der serier kan lastes ned."],"Web Interface":[null,"Webgrensesnitt"],"it is recommended that you enable a username and password to secure SickRage from being tampered with remotely.":[null,"det er anbefalt at du bruker et brukernavn og passord for å sikre SickRage fra at andre herjer med den utenfra."],"these options require a manual restart to take effect.":[null,"disse innstillingene krever en manuell omstart for å bli iverksatte."],"API key":[null,"API-nøkkel"],"used to give 3rd party programs limited access to SickRage":[null,"brukes til å gi tredjepartsprogrammer begrenset tilgang til SickRage"],"you can try all the features of the API":[null,"du kan prøve alle funksjonene til SickRage sitt API"],"here":[null,"her"],"HTTP logs":[null,"HTTP-logger"],"enable logs from the internal Tornado web server":[null,"aktiver logg fra den interne Tornado webserveren"],"HTTP username":[null,"HTTP brukernavn"],"set blank for no login":[null,"la være tom for ingen innlogging"],"HTTP password":[null,"HTTP passord"],"blank = no authentication":[null,"tom = ingen godkjenning"],"HTTP port":[null,"HTTP-port"],"web port to browse and access SickRage (default:8081)":[null,"port for å bla og få tilgang til SickRage (standard: 8081)"],"Notify on login":[null,"Varsle ved innlogging"],"enable to be notified when a new login happens in webserver":[null,"aktiver for å få melding når en ny pålogging skjer i webserver"],"Listen on IPv6":[null,"Lytt på IPv6"],"attempt binding to any available IPv6 address":[null,"forsøk å binde til alle tilgjengelige IPv6-adresser"],"Enable HTTPS":[null,"Aktiver HTTPS"],"enable access to the web interface using a HTTPS address":[null,"gi tilgang til webgrensesnittet ved bruk av en HTTPS-adresse"],"HTTPS certificate":[null,"HTTPS-sertifikat"],"file name or path to HTTPS certificate":[null,"filnavnet eller banen til HTTPS sertifikatet"],"HTTPS key":[null,"HTTPS-nøkkel"],"file name or path to HTTPS key":[null,"filnavnet eller banen til HTTPS-nøkkel"],"Reverse proxy headers":[null,"Revers proxy headere"],"accept the following reverse proxy headers (advanced)...":[null,"håndtér reverse proxy headers (avansert)..."],"(X-Forwarded-For, X-Forwarded-Host, and X-Forwarded-Proto)":[null,"(X-Forwarded-For, X-Forwarded-Host og X-Forwarded-Proto)"],"CPU throttling":[null,"CPU-begrensning"],"Normal (default). High is lower and Low is higher CPU use":[null,"Normal (standard). Høy er lavere og Lav er høyere CPU-bruk"],"Anonymous redirect":[null,"Anonym omdirigering"],"backlink protection via anonymizer service, must end in \"?\"":[null,"tilbakekoblingsbeskyttelse via anonymiseringstjeneste, må slutte på \"?\""],"Enable debug":[null,"Aktivere feilsøking"],"enable debug logs":[null,"slå på debug-logging"],"Verify SSL Certs":[null,"Kontroller SSL-sertifikater"],"verify SSL Certificates (Disable this for broken SSL installs (Like QNAP))":[null,"sjekk SSL-sertifikater (slå av dette for ødelagte SSL-installasjon (som QNAP))"],"No Restart":[null,"Ingen omstart"],"only shutdown when restarting SR":[null,"slå kun av når SR omstartes"],"only select this when you have external software restarting SR automatically when it stops (like FireDaemon)":[null,"velg dette kun når du har ekstern programvare til å automatisk omstarte SR når den stopper (som FireDaemon)"],"Encrypt passwords":[null,"Krypter passord"],"in the <code>config.ini</code> file":[null,"i filen <code>config.ini</code>"],"warning":[null,"advarsel"],"passwords must only contain":[null,"passord må kun inneholde"],"ASCII characters":[null,"ASCII-tegn"],"Unprotected calendar":[null,"Ubeskyttet kalender"],"allow subscribing to the calendar without user and password":[null,"tillat å abonnere på kalenderen uten brukernavn og passord"],"some services like Google Calendar only work this way":[null,"noen tjenester, som Google Kalender, vil kun virke på denne måten"],"Google Calendar Icons":[null,"Google Kalender Ikoner"],"show an icon next to exported calendar events in Google Calendar":[null,"vis et symbol ved siden av eksporterte kalenderhendelser i Google Kalender"],"Proxy host":[null,"Proxy-vert"],"blank to disable or proxy to use when connecting to providers":[null,"tom for å deaktivere, eller proxy til bruk ved tilkobling til leverandører"],"also use global proxy setting for indexers (tvdb, xem, anidb, etc.)":[null,"bruk også globale proxy-innstillinger for indeksere (tvdb, xem, anidb, osv.)"],"Skip Remove Detection":[null,"Deaktiver slettingsdeteksjon"],"skip detection of removed files":[null,"hopp over å se etter fjernede filer"],"if disabled the episode will be set to the default deleted status":[null,"hvis avslått vil episoden bli satt til standard slettet-status"],"Default deleted episode status":[null,"Standard slettet episode status"],"define the status to be set for media file that has been deleted.":[null,"angi statusen som skal settes for mediafiler som har blitt slettet."],"Archived option will keep previous downloaded quality":[null,"Det arkiverte alternativet vil beholde tidligere nedlastet kvalitet"],"example: Downloaded (1080p WEB-DL) ==> Archived (1080p WEB-DL)":[null,"f. eks.: Lastet ned (1080p WEB-DL) ==> Arkivert (1080p WEB-DL)"],"Options for github related features.":[null,"Alternativer for github relaterte funksjoner."],"Branch version":[null,"Grenversjon"],"error: No branches found.":[null,"feil: Ingen grener funnet."],"select branch to use (restart required)":[null,"velg gren å bruke (omstart er nødvendig)"],"Authorization Type":[null,"Autoriseringsmetode"],"Username and password":[null,"Brukernavn og passord"],"Personal access token":[null,"Persolig tilgangskode"],"You must use a personal access token if you're using \"two-factor authentication\" on GitHub.":[null,"Du må bruke en personlig kode hvis du har slått på \"two factor authentication\" på GitHub."],"GitHub username":[null,"GitHub brukernavn"],"*** (REQUIRED FOR SUBMITTING ISSUES) ***":[null,"***(KREVES FOR Å SENDE PROBLEMER) ***"],"GitHub password":[null,"GitHub passord"],"GitHub personal access token":[null,"Personlig tilgangskode for GitHub"],"Generate Token":[null,"Opprett kode"],"Manage Tokens":[null,"Behandle koder"],"GitHub remote for branch":[null,"GitHub fjernkontroll for gren"],"access repo configured remotes (save then refresh browser)":[null,"bruk fjernkoblinger satt av git-repoet (lagre og gjenoppfrisk nettleseren)"],"default":[null,"standard"],"origin":[null,"opprinnelig"],"Git executable path":[null,"Git kjørbar bane"],"only needed if OS is unable to locate git from env":[null,"kun nødvendig hvis OS ikke er i stand til å finne git fra env"],"Git reset":[null,"Git reset"],"removes untracked files and performs a hard reset on git branch automatically to help resolve update issues":[null,"fjerner ubrukte filer og utfører en nullstilling fra git grenen automatisk for å løse oppdateringsproblemer"],"Home Theater / NAS":[null,"Hjemmekino / NAS"],"Devices":[null,"Enheter"],"Social":[null,"Sosiale"],"A free and open source cross-platform media center and home entertainment system software with a 10-foot user interface designed for the living-room TV.":[null,"Et gratis og åpent kildekode, flerplattform-basert, mediasenter og hjemmekinosystem med 3 meters brukergrensesnitt laget for stue TV."],"send KODI commands?":[null,"sende KODI-kommandoer?"],"Always on":[null,"Alltid på"],"log errors when unreachable?":[null,"logg feil når utilgjengelig?"],"Notify on snatch":[null,"Send melding når hentet"],"send a notification when a download starts?":[null,"send en melding når en nedlasting starter?"],"Notify on download":[null,"Send melding ved nedlasting"],"send a notification when a download finishes?":[null,"send en melding når en nedlasting er ferdig?"],"Notify on subtitle download":[null,"Send melding ved nedlasting av undertekst"],"send a notification when subtitles are downloaded?":[null,"send en melding når undertekster er lastet ned?"],"Update library":[null,"Oppdater biblioteket"],"update KODI library when a download finishes?":[null,"oppdater KODI biblioteket når en nedlasting er ferdig?"],"Full library update":[null,"Oppdater hele biblioteket"],"perform a full library update if update per-show fails?":[null,"oppdater hele biblioteket hvis oppdateringen per-serie mislykkes?"],"Only update first host":[null,"Bare oppdater første verten"],"only send library updates to the first active host?":[null,"bare send biblioteks-oppdateringer til den første aktive verten?"],"KODI IP:Port":[null,"KODI IP:Port"],"host running KODI (eg. 192.168.1.100:8080)":[null,"vert som kjører KODI (f.eks. 192.168.1.100:8080)"],"(multiple host strings must be separated by commas)":[null,"(flere vert strenger må være atskilt med komma)"],"Username":[null,"Brukernavn"],"username for your KODI server (blank for none)":[null,"brukernavn for KODI serveren (tomt for ingen)"],"Password":[null,"Passord"],"password for your KODI server (blank for none)":[null,"passord for KODI serveren (tomt for ingen)"],"Click below to test.":[null,"Klikk nedenfor for å teste."],"Experience your media on a visually stunning, easy to use interface on your Mac connected to your TV. Your media library has never looked this good!":[null,"Opplev dine medier på et visuelt slående, brukervennlig grensesnitt på din Mac koblet til din TV. Mediebiblioteket har aldri sett så bra ut!"],"For sending notifications to Plex Home Theater (PHT) clients, use the KODI notifier with port <b>3005</b>.":[null,"For å sende meldinger til Plex Home Theater-klienter, kan du bruke KODI sin meldingstjeneste på port <b>3005</b>."],"send Plex Media Server library updates?":[null,"sende biblioteksoppdatering til Plex Media Server?"],"Plex Media Server Auth Token":[null,"Plex Media Server autorisasjonstoken"],"auth token used by Plex":[null,"auth token fra Plex"],"Update Library":[null,"Oppdater Biblioteket"],"update Plex Media Server library when a download finishes":[null,"oppdater biblioteket til Plex Media Server når en nedlasting er ferdig"],"Plex Media Server IP:Port":[null,"Plex Media Server IP:Port"],"one or more hosts running Plex Media Server<br/>(eg. 192.168.1.1:32400, 192.168.1.2:32400)":[null,"en eller flere verter som kjører Plex Media Server<br/>(f.eks. 192.168.1.1:32400, 192.168.1.2:32400)"],"HTTPS":[null,"HTTPS"],"use https for plex media server requests?":[null,"bruk https for plex media server forespørsler?"],"Click below to test Plex Media Server(s)":[null,"Klikk nedenfor for å teste Plex Media Server(e)"],"Test Plex Media Server":[null,"Test Plex medieserver"],"Plex Home Theater":[null,"Plex Home Theater"],"send Plex Home Theater notifications?":[null,"sende varslinger til Plex Home Theater?"],"Plex Home Theater IP:Port":[null,"Plex Home Theater IP:Port"],"one or more hosts running Plex Home Theater<br>(eg. 192.168.1.100:3000, 192.168.1.101:3000)":[null,"en eller flere verter kjører Plex Home Theater <br>(f.eks. 192.168.1.100:3000, 192.168.1.101:3000)"],"Click below to test Plex Home Theater(s)":[null,"Klikk nedenfor for å teste Plex Home Theater(s)"],"Test Plex Home Theater":[null,"Test Plex Home Theater"],"some Plex Home Theaters <b class=\"boldest\">do not</b> support notifications e.g. Plexapp for Samsung TVs":[null,"noen versjoner av Plex Home Theater <b class=\"boldest\">støtter ikke</b> varslinger, f.eks. Plex for Samsung TVer"],"Emby":[null,"Emby"],"A home media server built using other popular open source technologies.":[null,"En hjemmemediaserver basert på andre populære open source teknologier."],"send update commands to Emby?":[null,"send oppdateringskommandoer til Emby?"],"Emby IP:Port":[null,"Emby IP:Port"],"host running Emby (eg. 192.168.1.100:8096)":[null,"vert som kjører Emby (f.eks. 192.168.1.100:8096)"],"Emby API Key":[null,"Emby API nøkkel"],"Networked Media Jukebox":[null,"Networked Media Jukebox"],"The Networked Media Jukebox, or NMJ, is the official media jukebox interface made available for the Popcorn Hour 200-series.":[null,"Networked Media Jukebox, eller NMJ, er det offisielle media jukebox grensesnittet tilgjengelig for Popcorn Hour 200-serien."],"send update commands to NMJ?":[null,"sende oppdateringskommandoer til NMJ?"],"Popcorn IP address":[null,"Popcorn IP-adresse"],"IP address of Popcorn 200-series (eg. 192.168.1.100)":[null,"IP-adressen til Popcorn 200-serie (f.eks. 192.168.1.100)"],"Get settings":[null,"Hent innstillinger"],"Get Settings":[null,"Hent innstillinger"],"the Popcorn Hour device must be powered on and NMJ running.":[null,"Popcorn Hour enheten må være slått på og NMJ må kjøre."],"NMJ database":[null,"NMJ database"],"automatically filled via the 'Get Settings' button.":[null,"automatisk fylt via \"Hent Innstillinger\"-knappen."],"NMJ mount url":[null,"NMJ tilkoblings url"],"Networked Media Jukebox v2":[null,"Networked Media Jukebox v2"],"The Networked Media Jukebox, or NMJv2, is the official media jukebox interface made available for the Popcorn Hour 300 & 400-series.":[null,"Nettverk Media Jukebox, eller NMJv2, er det offisielle media jukebox grensesnittet gjort tilgjengelig for Popcorn Hour 300 & 400-serien."],"send update commands to NMJv2?":[null,"sende oppdateringskommandoer til NMJv2?"],"IP address of Popcorn 300/400-series (eg. 192.168.1.100)":[null,"IP-adressen til Popcorn 300/400-serien (f.eks. 192.168.1.100)"],"Database location":[null,"Databaseplassering"],"Database instance":[null,"Databaseinstans"],"adjust this value if the wrong database is selected.":[null,"juster denne verdien hvis feil database er valgt."],"Find database":[null,"Finn databasen"],"Find Database":[null,"Finn Database"],"the Popcorn Hour device must be powered on.":[null,"Popcorn Hour enheten må være slått på."],"NMJv2 database":[null,"NMJv2 database"],"automatically filled via the 'Find Database' buttons.":[null,"automatisk fylt inn via \"finn database\"-knappen."],"Synology":[null,"Synology"],"The Synology DiskStation NAS.":[null,"Synology DiskStation NAS."],"Synology Indexer is the daemon running on the Synology NAS to build its media database.":[null,"Synology Indexer er tjenesten som kjører på Synology NAS for å bygge media-databasen."],"send Synology notifications?":[null,"sende varsler til Synology?"],"requires SickRage to be running on your Synology NAS.":[null,"krever at SickRage kjører på din Synology NAS."],"Synology Indexer":[null,"Synology Indexer"],"Synology Notifier is the notification system of Synology DSM":[null,"Synology Notifier er varslingssystemet til Synology DSM"],"send notifications to the Synology Notifier?":[null,"sende varsler til Synology Notifier?"],"pyTivo":[null,"pyTivo"],"pyTivo is both an HMO and GoBack server. This notifier will load the completed downloads to your Tivo.":[null,"pyTivo er både en HMO og GoBack server. Denne varsleren vil laste opp fullførte nedlastinger til din Tivo."],"send notifications to pyTivo?":[null,"sende varsler til pyTivo?"],"requires the downloaded files to be accessible by pyTivo.":[null,"krever at de nedlastede filene er tilgjengelige for pyTivo."],"pyTivo IP:Port":[null,"pyTivo IP:Port"],"host running pyTivo (eg. 192.168.1.1:9032)":[null,"verten som kjører pyTivo (f.eks. 192.168.1.1:9032)"],"pyTivo share name":[null,"pyTivo delingsnavn"],"value used in pyTivo Web Configuration to name the share.":[null,"verdien som brukes i webkonfigurasjonen til pyTivo for å navngi deling."],"Tivo name":[null,"TiVo navn"],"(Messages & Settings > Account & System Information > System Information > DVR name)":[null,"(Meldinger og innstillinger > Konto og systeminformasjon > Systeminformasjon > DVR navn)"],"Growl":[null,"Growl"],"A cross-platform unobtrusive global notification system.":[null,"Et diskré kryssplattform varslingsystem."],"send Growl notifications?":[null,"sende varslinger til Growl?"],"Growl IP:Port":[null,"Growl IP:Port"],"host running Growl (eg. 192.168.1.100:23053)":[null,"vert som kjører Growl (f.eks. 192.168.1.100:23053)"],"may leave blank if SickRage is on the same host.":[null,"kan stå tomt hvis SickRage er på samme vert."],"otherwise Growl <b>requires</b> a password to be used.":[null,"ellers <b>krever</b> Growl at et passord brukes."],"Click below to register and test Growl, this is required for Growl notifications to work.":[null,"Klikk nedenfor for å registrere og teste Growl, dette er nødvendig for at Growls meldinger skal fungere."],"Register Growl":[null,"Registrer Growl"],"Prowl":[null,"Prowl"],"A Growl client for iOS.":[null,"En Growl klient for iOS."],"send Prowl notifications?":[null,"sende varslinger til Prowl?"],"Prowl Message Title":[null,"Prowl meldingstittel"],"Global Prowl API key(s)":[null,"Globale Prowl API-nøkler"],"Prowl API(s) listed here, separated by commas if applicable, will<br> receive notifications for <b>all</b> shows. Your Prowl API key is available at:":[null,"Prowl API(er) oppført her, eventuelt adskilt med komma, vil <br>motta meldinger for <b>alle</b> serier. Prowl API-nøkkel er tilgjengelig på:"],"(this field may be blank except when testing.)":[null,"(dette feltet kan stå tomt unntatt ved testing.)"],"Show notification list":[null,"Vis meldingslisten"],"-- Select a Show --":[null,"-- Velg en serie --"],"Configure per-show notifications here by entering Prowl API key(s), separated by commas, '\n 'after selecting a show in the drop-down box. Be sure to activate the 'Save for this show' '\n 'button below after each entry.":[null,"Konfigurer melding pr serie her ved å skrive inn Prowl API-nøkkel/nøkler, separert med komma, '\n etter å ha valgt en serie i nedtrekksmenyen. Sørg for å velge 'Lagre for denne serien' '\n 'knappen under etter hvert valg."],"Save for this show":[null,"Lagre for denne serien"],"Prowl priority":[null,"Prowl prioritet"],"Very Low":[null,"Svært lav"],"Moderate":[null,"Moderat"],"Normal":[null,"Normal"],"High":[null,"Høy"],"Emergency":[null,"Nødsituasjon"],"priority of Prowl messages from SickRage.":[null,"prioritet for Prowl meldinger fra SickRage."],"Libnotify":[null,"Libnotify"],"The standard desktop notification API for Linux/*nix systems. This notifier will only function if the pynotify module is installed (Ubuntu/Debian package <a href=\"apt:python-notify\">python-notify</a>).":[null,"Standard skrivebordsvarsels API for Linux/*nix systemer. Denne varsleren vil kun fungere når pynotify modulen er installert (Ubuntu/Debian pakke <a href=\"apt:python-notify\">python-notify</a>)."],"send Libnotify notifications?":[null,"sende varslinger til Libnotify?"],"Pushover":[null,"Pushover"],"Pushover makes it easy to send real-time notifications to your Android and iOS devices.":[null,"Pushover gjør det enkelt å sende meldinger i sanntid til Android og iOS enheter."],"send Pushover notifications?":[null,"sende varslinger til Pushover?"],"Pushover key":[null,"Pushover nøkkel"],"user key of your Pushover account":[null,"brukernøkkel til din Pushover-konto"],"Pushover API key":[null,"Pushover API-nøkkel"],"click here":[null,"klikk her"]," to create a Pushover API key":[null," for å lage en Pushover API-nøkkel"],"Pushover devices":[null,"Pushover enheter"],"comma separated list of pushover devices you want to send notifications to":[null,"kommadelt liste over pushover-enheter du vil sende meldinger til"],"Pushover notification sound":[null,"Pushover meldingslyd"],"Bike":[null,"Sykkel"],"Bugle":[null,"Bugle"],"Cash Register":[null,"Kassaapparat"],"Classical":[null,"Klassisk"],"Cosmic":[null,"Kosmisk"],"Falling":[null,"Fallende"],"Gamelan":[null,"Gamelan"],"Incoming":[null,"Innkommende"],"Intermission":[null,"Pause"],"Magic":[null,"Magisk"],"Mechanical":[null,"Mekanisk"],"Piano Bar":[null,"Pianobar"],"Siren":[null,"Sirene"],"Space Alarm":[null,"Space alarm"],"Tug Boat":[null,"Taubåt"],"Alien Alarm (long)":[null,"Utenomjordisk alarm (lang)"],"Climb (long)":[null,"Klatre (lang)"],"Persistent (long)":[null,"Vedvarende (lang)"],"Pushover Echo (long)":[null,"Pushover ekko (lang)"],"Up Down (long)":[null,"Opp Ned (lang)"],"None (silent)":[null,"Ingen (stille)"],"Device specific":[null,"Enhetsspesifikk"],"choose notification sound to use":[null,"velg varslingslyd"],"Pushover priority":[null,"Pushover-prioritet"],"Choose priority to use":[null,"Velg prioriteten som skal brukes"],"Boxcar 2":[null,"Boxcar 2"],"Read your messages where and when you want them!":[null,"Les meldingene dine hvor og når du vil!"],"send Boxcar notifications?":[null,"sende varslinger til Boxcar?"],"Boxcar2 access token":[null,"Boxcar2 autorisasjonstoken"],"access token for your Boxcar account.":[null,"autorisasjonstoken til din Boxcar konto."],"NMA":[null,"NMA"],"Notify My Android":[null,"Meld Min Android"],"Notify My Android is a Prowl-like Android App and API that offers an easy way to send notifications from your application directly to your Android device.":[null,"Notify My Android er en Prowl-lignende Android app og API som tilbyr en enkel måte å sende meldinger fra ditt program direkte til din Android-enhet."],"send NMA notifications?":[null,"sende varslinger til NMA?"],"NMA API key":[null,"NMA API-nøkkel"],"(multiple keys must be separated by commas, up to a maximum of 5)":[null,"(flere nøkler må være atskilt med komma, maks 5)"],"NMA priority":[null,"NMA prioritet"],"priority of NMA messages from SickRage.":[null,"prioritet for NMA-meldinger fra SickRage."],"Pushalot":[null,"Pushalot"],"Pushalot is a platform for receiving custom push notifications to connected devices running Windows Phone or Windows 8.":[null,"Pushalot er en plattform for å motta egendefinerte push-meldinger til tilkoblete enheter som kjører Windows Phone eller Windows 8."],"send Pushalot notifications ?":[null,"sende varslinger til Pushalot?"],"Pushalot authorization token":[null,"Pushalot autorisasjonstoken"],"authorization token of your Pushalot account.":[null,"autorisasjonstoken for din Pushalot konto."],"Pushbullet":[null,"Pushbullet"],"Pushbullet is a platform for receiving custom push notifications to connected devices running Android/iOS and desktop browsers such as Chrome, Firefox or Opera.":[null,"Pushbullet er en plattform for å motta egendefinerte push-meldinger til tilkoblede enheter som kjører Android/IOS og nettlesere som Chrome, Firefox og Opera."],"send Pushbullet notifications?":[null,"sende varslinger til Pushbullet?"],"Pushbullet API key":[null,"Pushbullet API-nøkkel"],"API key of your Pushbullet account":[null,"API-nøkkel til din Pushbulletkonto"],"Pushbullet devices":[null,"Pushbullet-enheter"],"Update device list":[null,"Oppdater listen over enheter"],"Pushbullet channels":[null,"Pushbullet-kanaler"],"Free Mobile":[null,"Free Mobile"],"Free Mobile is a famous French cellular network provider.<br> It provides to their customer a free SMS API.":[null,"Free Mobile er en kjent Fransk telefonileverandør. <br> De tilbyr sine kunder et gratis SMS API."],"send SMS notifications?":[null,"sende SMS-varslinger?"],"send a SMS when a download starts?":[null,"send en SMS når en nedlasting starter?"],"send a SMS when a download finishes?":[null,"send en SMS når en nedlasting er ferdig?"],"send a SMS when subtitles are downloaded?":[null,"send en SMS når undertekster er lastet ned?"],"Free Mobile customer ID":[null,"Free Mobile kunde-ID"],"it's your Free Mobile customer ID (8 digits)":[null,"din Free Mobile kunde-ID (8 siffer)"],"Free Mobile API key":[null,"Free Mobile API-nøkkel"],"find your API key in your customer portal.":[null,"finn API-nøkkelen i kundeportalen din."],"Click below to test your settings.":[null,"Klikk nedenfor for å teste innstillingene."],"Telegram":[null,"Telegram"],"Telegram is a cloud-based instant messaging service.":[null,"Telegram er en sky-basert lynmeldings-tjeneste."],"send Telegram notifications?":[null,"sende varslinger til Telegram?"],"send a message when a download starts?":[null,"send en melding når en nedlasting starter?"],"send a message when a download finishes?":[null,"send en melding når en nedlasting er ferdig?"],"send a message when subtitles are downloaded?":[null,"send en melding når undertekster er lastet ned?"],"User/group ID":[null,"Bruker/gruppe-ID"],"contact @myidbot on Telegram to get an ID":[null,"kontakt @myidbot på Telegram for å få en ID"],"Bot API token":[null,"Bot API token"],"contact @BotFather on Telegram to set up one":[null,"kontakt @BotFather hos Telegram for å sette opp en"],"Join":[null,"Join"],"Join all of your devices together!":[null,"Koble alle enhetene dine sammen!"],"send Join notifications?":[null,"sende varslinger til Join?"],"Device ID":[null,"Enhets-ID"],"per device specific id":[null,"spesifikk enhets-id"]," to create a Join API key":[null," for å lage en Delta API-nøkkel"],"Twilio":[null,"Twilio"],"Twilio is a webservice API that allows you to communicate directly with a mobile number. This notifier will send a text directly to your mobile device.":[null,"Twilio er et nett-API som lar deg kommunisere direkte med et mobilnummer. Denne varsleren sender meldinger direkte til den mobile enheten."],"should SickRage text your mobile device?":[null,"skal SickRage varsle til din mobilenhet?"],"Twilio Account SID":[null,"Twilio konto-SID"],"account SID of your Twilio account.":[null,"SID for Twilio-kontoen din."],"Twilio Auth Token":[null,"Twilio Auth Token"],"Twilio Phone SID":[null,"Twilio telefon-SID"],"phone SID that you would like to send the sms from":[null,"telefon-SID som du ønsker å sende SMS fra"],"Your phone number":[null,"Telefonnummeret ditt"],"phone number that will receive the sms. Please use the format +1-###-###-####":[null,"telefonnummeret som skal motta SMS. Bruk formatet +1-###-###-###"],"Twitter":[null,"Twitter"],"A social networking and microblogging service, enabling its users to send and read other users' messages called tweets.":[null,"Et sosial nettverk og mikroblogging-tjeneste som muliggjør dens brukerne å sende og lese andre brukeres meldinger kalt tweets."],"should SickRage post tweets on Twitter?":[null,"skal SickRage legge inn tweets på Twitter?"],"you may want to use a secondary account.":[null,"du vil kanskje bruke en sekundærkonto."],"send direct message":[null,"send direktemelding"],"send a notification via Direct Message, not via status update":[null,"send deg en melding via direktemelding, ikke via statusoppdatering"],"send DM to":[null,"send DM til"],"Twitter account to send Direct Messages to (must follow you)":[null,"Twitter-konto å sende direktemeldinger til (må følge deg)"],"Step One":[null,"Trinn en"],"Request Authorization":[null,"Be om autorisasjon"],"Click the \"Request Authorization\" button.<br> This will open a new page containing an auth key.<br> <b>note:</b> if nothing happens check your popup blocker.":[null,"Klikk på knappen \"Be om autorisering\".<br/>Det vil åpne en ny side som inneholder en autoriseringsnøkkel.<br/><b>merk</b>: Hvis ingenting skjer, sjekk popup-blokkeren i nettleseren."],"Step Two":[null,"Trinn to"],"Enter the key Twitter gave you below, and click \"Verify Key\".":[null,"Skriv inn nøkkelen Twitter ga deg nedenfor, og klikk \"Bekreft Nøkkel\"."],"Trakt":[null,"Trakt"],"Trakt helps keep a record of what TV shows and movies you are watching. Based on your favorites, Trakt recommends additional shows and movies you'll enjoy!":[null,"Trakt hjelper med å holde rede på hvilke TV-serier og filmer du ser på. Basert på dine favoritter kan Trakt anbefale andre serier og filmer du kan like!"],"send Trakt.tv notifications?":[null,"send notifikasjoner til Trakt?"],"username of your Trakt account.":[null,"brukernavnet til din Trakt-konto."],"Trakt PIN":[null,"Trakt PIN"],"Get Trakt PIN":[null,"Motta Trakt PIN"],"PIN code to authorize SickRage to access Trakt on your behalf.":[null,"PIN-kode for å autorisere SickRage Trakt-adgang på dine vegne."],"API Timeout":[null,"API-tidsavbrudd"],"seconds to wait for Trakt API to respond. (Use 0 to wait forever)":[null,"sekunder å vente på at Trakt APIet svarer. (0 for å vente for alltid)"],"Default indexer":[null,"Standard indekser"],"Sync libraries":[null,"Synkroniser biblioteker"],"sync your SickRage show library with your trakt show library.":[null,"synkroniser ditt SickRage-bibliotek med ditt trakt-bibliotek."],"Remove Episodes From Collection":[null,"Fjern Episoder Fra Samlingen"],"remove an episode from your Trakt Collection if it is not in your SickRage Library.":[null,"fjern en episode fra Trakt-samlingen hvis den ikke er i SickRage-biblioteket."],"Sync watchlist":[null,"Synkroniser watchlist"],"sync your SickRage show watchlist with your trakt show watchlist (either Show and Episode).":[null,"synkroniser din SickRage serie-watchlist med din trakt watchlist (Serie eller Episode)."],"episode will be added on watch list when wanted or snatched and will be removed when downloaded ":[null,"episoden blir lagt til på vaktlisten når den er ønsket eller plukket opp, og vil bli fjernet når den er lastet ned "],"Watchlist add method":[null,"Watchlist legge til-metode"],"Skip All":[null,"Hopp Over Alle"],"Download Pilot Only":[null,"Last bare ned Piloten"],"Get whole show":[null,"Hent hele serien"],"method in which to download episodes for new shows.":[null,"metode for å laste ned episoder til nye serier."],"Remove episode":[null,"Fjern episode"],"remove an episode from your watchlist after it is downloaded.":[null,"fjern en episode fra din watchlist etter den er lastet ned."],"Remove series":[null,"Fjern serie"],"remove the whole series from your watchlist after any download.":[null,"fjern hele serien fra watchlist etter en nedlasting."],"Remove watched show":[null,"Fjern sette serier"],"remove the show from sickrage if it's ended and completely watched":[null,"fjern serien fra SickRage hvis den er avsluttet og alle episoder er sett"],"Start paused":[null,"Start pauset"],"shows grabbed from your trakt watchlist start paused.":[null,"start serier hentet fra din trakt watchlist som stoppet."],"Trakt blackList name":[null,"Trakt svarteliste-navn"],"name (slug) of list on Trakt for blacklisting show on 'Add Trending Show' & 'Add Recommended Shows' pages":[null,"navn (slug) på Trakt-liste for å svarteliste serier fra 'Legg til populære serier' og 'Legg til anbefalte serier'"],"Email":[null,"E-post"],"Allows configuration of email notifications on a per show basis.":[null,"Tillater konfigurasjon av e-postmeldinger for hver serie."],"send email notifications?":[null,"sende e-postmeldinger?"],"SMTP host":[null,"SMTP-vert"],"hostname of your SMTP email server.":[null,"vertsnavn til din SMTP e-post-server."],"SMTP port":[null,"SMTP-port"],"port number used to connect to your SMTP host.":[null,"port-nummeret som brukes til å koble til SMTP-verten."],"SMTP from":[null,"SMTP fra"],"sender email address, some hosts require a real address.":[null,"avsenderadresse. Noen hoster krever en reell adresse."],"Use TLS":[null,"Bruk TLS"],"check to use TLS encryption.":[null,"merk for å bruke TLS-kryptering."],"SMTP user":[null,"SMTP-bruker"],"(optional) your SMTP server username.":[null,"(valgfritt) ditt brukernavn for SMTP-serveren."],"SMTP password":[null,"SMTP-passord"],"(optional) your SMTP server password.":[null,"(valgfritt) ditt passord for SMTP-serveren."],"Global email list":[null,"Global e-postliste"],"email addresses listed here, separated by commas if applicable, will<br> receive notifications for <b>all</b> shows.":[null,"e-postadresser skrevet inn her (adskilt med komma) vil motta<br/>meldinger for <b>alle</b> serier."],"(This field may be blank except when testing.)":[null,"(Dette feltet kan være tomt unntatt ved testing.)"],"Email Subject":[null,"E-post Emne"],"use a custom subject for some privacy protection?":[null,"tilpasset emne-felt for å få litt personvern?"],"(leave blank for the default SickRage subject)":[null,"(la stå tomt for standard SickRage-emne)"],"configure per-show notifications here by entering email address(es), separated by commas,":[null,"sett opp varslinger per serie ved å legge til e-postadress(er) her, adskilt med komma"],"after selecting a show in the drop-down box. Be sure to activate the 'Save for this show'":[null,"når du har valgt en serie i i rullegardinlisten, husk å aktivere 'Lagre for denne serien'"],"button below after each entry.":[null,"knappen nedenfor etter hver oppføring."],"Slack":[null,"Slack"],"Slack brings all your communication together in one place. It's real-time messaging, archiving and search for modern teams.":[null,"Slakk samler all kommunikasjon på ett sted. Det er sanntidsmeldinger, arkivering og søk for moderne arbeidsgrupper."],"should SickRage post messages on Slack?":[null,"skal SickRage poste meldinger på Slack?"],"Slack Incoming Webhook":[null,"Innkommende Webhook for Slack"],"Discord":[null,"Discord"],"All-in-one voice and text chat for gamers that's free, secure, and works on both your desktop and phone.":[null,"En alt-i-ett tale- og tekst-chat for gamere som er gratis og sikker, og som fungerer både på datamaskin og mobil."],"Should SickRage post messages on Discord?":[null,"Skal SickRage poste meldinger på Discord?"],"Discord Incoming Webhook":[null,"Innkommende Webhook for Discord"],"Create webhook under channel settings.":[null,"Opprett webhook under kanalinnstillinger."],"Discord Bot Name":[null,"Navn på Discord Bot"],"Blank will use webhook default Name.":[null,"Tom for å bruke standardnavnet på webhook."],"Discord Avatar URL":[null,"URL til Discord Avatar"],"Blank will use webhook default Avatar.":[null,"Tom for å bruke standard Avatar."],"Discord TTS":[null,"Discord TTS"],"Send notifications using text-to-speech":[null,"Send varslinger med tekst-til-tale"],"Post-Processing":[null,"Etterbehandling"],"Episode Naming":[null,"Navngiving av episoder"],"Metadata":[null,"Metadata"],"Settings that dictate how SickRage should process completed downloads.":[null,"Innstillinger som styrer hvordan SickRage skal behandle fullførte nedlastinger."],"enable the automatic post processor to scan and process any files in your Post Processing Dir":[null,"aktiver automatisk etterbehandling for å sjekke og behandle filer i etterbehandlingsmappen"],"do not use if you use an external Post Processing script":[null,"ikke bruk denne hvis du bruker et eksternt etterbehandlingsskript"],"Post Processing Dir":[null,"Mappe for Etterbehandling"],"the folder where your download client puts the completed TV downloads.":[null,"mappen der nedlastingsklienten legger ferdige TV-nedlastinger."],"please use seperate downloading and completed folders in your download client if possible.":[null,"vennligst bruk separate mapper for nedlasting og fullførte nedlastinger i nedlastingsklienten din hvis mulig."],"Processing Method":[null,"Behandlingsmetode"],"what method should be used to put files into the library?":[null,"hvilken metode skal brukes for å legge filer til i biblioteket?"],"if you keep seeding torrents after they finish, please avoid the 'move' processing method to prevent errors.":[null,"Hvis du fortsetter å seede torrents etter at de er fullført bør du ikke bruke behandlingsmetoden 'flytt'. Ellers får du feilmeldinger i nedlastingsprogrammet."],"Auto Post-Processing Frequency":[null,"Auto etterbehandlingsfrekvens"],"time in minutes to check for new files to auto post-process (min 10)":[null,"tidsperiode i minutter (min 10) mellom sjekk etter nye filer for etterbehandling"],"Postpone post processing":[null,"Utsett Etterbehandling"],"wait to process a folder if sync files are present.":[null,"Vent med å prosessere en mappe hvis synkroniseringsfiler er tilstede."],"Sync File Extensions":[null,"Synkroniser filetternavn"],"comma seperated list of extensions or filename globs SickRage ignores when Post Processing":[null,"kommaseparert liste av filetternavn eller filetternavn-globs SickRage ignorerer under Etterbehandling"],"Rename Episodes":[null,"Endre episodenavn"],"rename episode using the Episode Naming settings?":[null,"Gi episoden nytt navn ved hjelp av innstillingene for navneendring?"],"Create missing show directories":[null,"Opprett manglende seriemapper"],"create missing show directories when they get deleted":[null,"Opprett manglende serie-mapper når de blir slettet"],"Add shows without directory":[null,"Legg til serier uten mappe"],"add shows without creating a directory (not recommended)":[null,"Legg til serier uten å opprette en mappe (anbefales ikke)"],"Move associated files":[null,"Flytt på tilknyttede filer"],"move associated (srt/srr/sfv/etc) files while post processing?":[null,"ta med tilknyttede (srt/srr/sfv/o.l.) filer i etterbehandlingen?"],"Rename .nfo file":[null,"Gi nytt navn til .nfo fil"],"rename the original .nfo file to .nfo-orig to avoid conflicts?":[null,"Endre navn på opprinnelig .nfo-fil til .nfo-orig for å unngå konflikt?"],"Associated file extensions":[null,"Tilknyttede filendelser"],"comma separated list of associated file extensions SickRage should keep while post processing.":[null,"kommadelt liste over tilknyttede filendelser SickRage bør beholde ved etterbehandling."],"leaving it empty means no associated files will be post processed":[null,"står den tom vil ingen tilknyttede filer bli etterbehandlet"],"Delete non associated files":[null,"Slett filer som ikke er tilknyttede"],"delete non associated files while post processing?":[null,"slette filer som ikke er tilknyttede under etterbehandling?"],"Change File Date":[null,"Endre fildato"],"set last modified filedate to the date that the episode aired?":[null,"sett sist endret fildato til datoen episoden ble sendt?"],"some systems may ignore this feature.":[null,"noen systemer kan ignorere denne funksjonen."],"Timezone for File Date":[null,"Tidssone for fildato"],"local":[null,"lokal"],"network":[null,"nettverk"],"what timezone should be used to change File Date?":[null,"hvilken tidssone skal brukes til å endre fildato?"],"Unpack":[null,"Pakk Ut"],"What to do with archived releases found in your <i>TV Download Dir</i>?":[null,"Hva skal gjøres med pakkede filer som blir funnet i <i>TV-nedlastingsmappen</i>?"],"Ignore (do not process contents)":[null,"Se bort fra dem (ikke behandle innholdet)"],"Unpack (process contents)":[null,"Pakk ut (og behandle innholdet)"],"Treat as video (process archive as-is)":[null,"Håndtér som videofile (flytt og endre navn på arkivfilen som den er)"],"'Unpack' only works with RAR archives":[null,"'Pakk ut' virker kun for RAR-arkiver"],"Windows":[null,"Windows"],"WinRar is required on windows":[null,"WinRar er påkrevd i Windows"],"Unpack Directory":[null,"Mappe for utpakking"],"Choose a path to unpack files, leave blank to unpack in download dir":[null,"Velg en mappe filer skal pakkes ut til, eller la stå tom for å pakke ut i nedlastingsmappen"],"Unrar Location":[null,"Sti til unrar"],"add the path to unrar if it is not in the system path":[null,"legg til hvis unrar ikke ligger i standardstien"],"Alternate Unrar Tool":[null,"Alternativt unrar-verktøy"],"add the path to an alternate unrar tool if it is not in the system path":[null,"legg til stien til alternativt unrar-verktøy hvis det ikke er i systemstien"],"Delete RAR contents":[null,"Slett innhold i RAR-arkiver"],"delete content of RAR files, even if Process Method not set to move?":[null,"slette innholdet i RAR-filer, selv om behandlingsmetoden ikke er satt til å flytte dem?"],"only working with RAR archive":[null,"virker bare med RAR-arkiver"],"Don't delete empty folders":[null,"Ikke slett tomme mapper"],"leave empty folders when Post Processing?":[null,"la tomme mapper være igjen etter etterbehandling?"],"can be overridden using manual Post Processing":[null,"kan overstyres med manuell etterbehandling"],"Follow symbolic-links":[null,"Følg symbolske lenker"],"follow down symbolic links in download directory?":[null,"følge symbolske lenker i nedlastingsmappen?"],"<b>EXPERTS ONLY.</b><br>Enable only if you know what <b>circular symbolic links</b> are,<br>and can <b>verify that you have none</b>.":[null,"<b>KUN FOR EKSPERTER</b><br>Dette må kun brukes hvis du vet hva <b>sirkulære symbolske lenker</b> er,<br/>og <b>vet at du ikke har noen</b>."],"Use icacls":[null,"Bruk icacls"],"Windows only":[null,"Kun for Windows"],"sets video permissions after using the move method in post processing":[null,"setter fil-tillatelser etter å ha brukt flytt-metoden i etterbehandling"],"Extra Scripts":[null,"Ekstra skript"],"see":[null,"se"],"for script arguments description and usage.":[null,"for forklaring av skriptargumenter og bruk."],"How SickRage will name and sort your episodes.":[null,"Hvordan SickRage vil navngi og sortere episodene dine."],"Name Pattern":[null,"Navngivning"],"Toggle Naming Legend":[null,"Aktiver navngivingsoversikt"],"don't forget to add quality pattern. Otherwise after post-processing the episode will have UNKNOWN quality":[null,"ikke glem å legge til et mønster for setting av kvalitet. Hvis ikke vil etterbehandling sette episoden til å ha UKJENT kvalitet"],"Meaning":[null,"Betydning"],"Pattern":[null,"Mønster"],"Result":[null,"Resultat"],"Use lower case if you want lower case names (eg. %sn, %e.n, %q_n etc)":[null,"Bruk små bokstaver hvis du vil ha navn med små bokstaver (f.eks. %sn, %e.n, %q_n osv.)"],"Show Name":[null,"Serienavn"],"Show.Name":[null,"Serie.Navn"],"Show_Name":[null,"Serie_Navn"],"Season Number":[null,"Sesongnummer"],"XEM Season Number":[null,"XEM Sesongnummer"],"Episode Number":[null,"Episodenummer"],"XEM Episode Number":[null,"XEM Episodenummer"],"Episode Name":[null,"Episodenavn"],"Episode.Name":[null,"Episode.Navn"],"Episode_Name":[null,"Episode_Navn"],"Air Date":[null,"Sendingsdato"],"Post-Processing Date":[null,"Etterbehandling Dato"],"Quality":[null,"Kvalitet"],"Scene Quality":[null,"\"Scene\" kvalitet"],"Release Name":[null,"Utgivelsesnavn"],"SickRage' is used in place of RLSGROUP if it could not be properly detected":[null,"SickRage' brukes i stedet for RLSGROUP hvis det ikke ble riktig detektert"],"Release Group":[null,"Utgivelsesgruppe"],"If episode is proper/repack add 'proper' to name.":[null,"Hvis episoden er \"proper/repack\", legg \"proper\" til navn."],"Release Type":[null,"Utgivelsestype"],"Multi-Episode Style":[null,"Fler-episode"],"Single-EP Sample":[null,"Enkeltepisode eksempel"],"Multi-EP sample":[null,"Fler-episode eksempel"],"Strip Show Year":[null,"Fjern år for serie"],"remove the TV show's year when renaming the file?":[null,"fjern TV-seriens årstall fra filnavn?"],"only applies to shows that have year inside parentheses":[null,"gjelder bare serier med år inne i parenteser"],"Custom Air-By-Date":[null,"Egendefinert sendingsdato"],"name air-by-date shows differently than regular shows?":[null,"navngi serier med sendingsdato annerledes enn vanlige serier?"],"Toggle ABD Naming Legend":[null,"Aktiver ADB navngivingsoversikt"],"Regular Air Date":[null,"Vanlig sendingsdato"],"Year":[null,"År"],"Month":[null,"Måned"],"Day":[null,"Dag"],"Multi-EP style is ignored":[null,"Fler-episoders stil ignoreres"],"Custom Sports":[null,"Egendefinert Sport"],"name sports shows differently than regular shows?":[null,"navngi sports-serier annerledes enn vanlige serier?"],"Toggle Sports Naming Legend":[null,"Aktiver sport navngivingsoversikt"],"Sports Air Date":[null,"Sport sendingsdato"],"Custom Anime":[null,"Egendefinerte anime"],"name anime shows differently than regular shows?":[null,"navngi anime-serier annerledes enn vanlige serier?"],"Toggle Anime Naming Legend":[null,"Aktiver anime navngivinghistorikk"],">XEM Season Number":[null,">XEM Sesongnummer"],"Single-EP Anime Sample":[null,"Enkeltepisode Anime eksempel"],"Multi-EP Anime sample":[null,"Fler-episodes Anime eksempel"],"Add Absolute Number":[null,"Legg til absolutt tall"],"add the absolute number to the season/episode format?":[null,"legge et absolutt tall til i sesong/episode-formatet?"],"only applies to anime. (eg. S15E45 - 310 vs S15E45)":[null,"gjelder bare for anime. (f. eks. S15E45 - 310 i stedet for S15E45)"],"Only Absolute Number":[null,"Kun absolutte tall"],"replace season/episode format with absolute number":[null,"erstatt sesong/episode-format med absolutt tall"],"only applies to anime.":[null,"gjelder bare for anime."],"No Absolute Number":[null,"Ingen absolutte tall"],"don't include the absolute number":[null,"ikke inkludér absolutt tall"],"The data associated to the data. These are files associated to a TV show in the form of images and text that, when supported, will enhance the viewing experience.":[null,"Informasjon forbundet med serien. Dette er filer som forbindes med en serie, i form av bilder og tekst som, når støttet, vil forbedre brukeropplevelsen."],"Metadata Type":[null,"Metadata Type"],"toggle metadata options that you wish to be created":[null,"velg de metadata-alternativene du ønsker skal opprettes"],"multiple targets may be used":[null,"forskjellige typer kan brukes samtidig"],"Select Metadata":[null,"Velg metadata"],"Provider Priorities":[null,"Prioritet på søkeleverandører"],"Provider Options":[null,"Søkeleverandør-valg"],"Configure Custom Newznab Providers":[null,"Konfigurer egendefinerte Newznab tilbydere"],"Configure Custom Torrent Providers":[null,"Konfigurer egendefinerte torrent søkeleverandører"],"Check off and drag the providers into the order you want them to be used.":[null,"Merk og dra søkeleverandørene i den rekkefølgen du vil de skal brukes."],"At least one provider is required but two are recommended.":[null,"Minst en tilbyder er nødvendig, men to er anbefalt."],"Torrent providers can be toggled in ":[null,"Torrentleverandører kan bli aktivert på "],"Provider does not support backlog searches at this time.":[null,"Søkeleverandøren støtter ikke backlog-søk enda."],"Provider is <b>NOT WORKING</b>.":[null,"Søkeleverandøren <b>VIRKER IKKE</b>."],"Configure individual provider settings here.":[null,"Konfigurer individuelle søkeleverandørinnstillinger her."],"Check with provider's website on how to obtain an API key if needed.":[null,"Les på nettsiden til søkeleverandøren om hvordan få en API-nøkkel hvis nødvendig."],"Configure provider":[null,"Konfigurer søkeleverandør"],"no providers available to configure.":[null,"ingen leverandører med innstillinger er tilgjengelige."],"URL":[null,"URL"],"Enable daily searches":[null,"Aktiver daglie søk"],"enable provider to perform daily searches.":[null,"aktiver daglig søk hos leverandør."],"Enable backlog searches":[null,"Aktiver backlog søk"],"enable provider to perform backlog searches.":[null,"aktiver historikk-søk hos leverandør."],"Season search mode":[null,"Sesong søkemodus"],"when searching for complete seasons you can choose to have it look for season packs only, or choose to have it build a complete season from just single episodes.":[null,"Når du søker etter komplette sesonger, kan du velge om den skal søke kun etter hele sesonger, eller om den skal finne enkeltepisoder."],"season packs only.":[null,"bare sesongpakker."],"episodes only.":[null,"bare episoder."],"Enable fallback":[null,"Tillat alternativ"],"when searching for a complete season depending on search mode you may return no results, this helps by restarting the search using the opposite search mode.":[null,"Når du søker etter en komplett sesong, avhengig av søkemodus, kan du ende opp uten resultat. Denne hjelper deg ved å søke på ny med den andre søkemodusen."],"Custom URL":[null,"Egendefinert URL"],"the URL should include the protocol (and port if applicable). Examples: http://192.168.1.4/ or http://localhost:3000/":[null,"URL-adressen bør inneholde protokoll (og port hvis det er aktuelt). F.eks.: http://192.168.1.4/ eller http://localhost:3000/"],"Api key":[null,"API-nøkkel"],"Digest":[null,"Oppsummering"],"Hash":[null,"Hash"],"Passkey":[null,"Tilgangsnøkkel"],"Cookies":[null,"Informasjonskapsler"],"example: uid=1234;pass=567845439634987<br>note: uid and pass are not your username/password.<br>use DevTools or Firebug to get these values after logging in on your browser.":[null,"f.eks.: uid = 1234; pass = 567845439634987 <br>Merk: uid og pass er ikke ditt brukernavn/passord. <br>Bruk DevTools eller Firebug for å få disse verdiene ved loggoppføring i nettleseren."],"Pin":[null,"PIN"],"Seed ratio":[null,"Seed ratio"],"stop transfer when ratio is reached<br>(-1 SickRage default to seed forever, or leave blank for downloader default)":[null,"stopp overføring når ratioen er nådd<br>(-1 er standard i SickRage for å seede uendelig, eller la stå tom for å bruke nedlasterens standard)"],"Minimum seeders":[null,"Lavest antall opplastere"],"Minimum leechers":[null,"Lavest antall nedlastere"],"Confirmed download":[null,"Bekreftet nedlasting"],"only download torrents from trusted or verified uploaders ?":[null,"bare last ned torrents fra klarerte eller verifiserte opplastere?"],"Ranked torrents":[null,"Rangerte torrents"],"only download ranked torrents (trusted releases)":[null,"bare last ned rangerte torrents (klarerte utgivelser)"],"English torrents":[null,"Engelske torrents"],"only download english torrents, or torrents containing english subtitles":[null,"bare last ned engelske torrents eller torrents som inneholder engelsk undertekst"],"For Spanish torrents":[null,"For spanske torrents"],"ONLY search on this provider if show info is defined as \"Spanish\" (avoid provider's use for VOS shows)":[null,"Søk KUN hos denne søkeleverandøren om seriens info er definert som \"Spansk\" (unngå søkeleverandørens bruk av VOS serier)"],"Sorting results by":[null,"Sorterer resultatene etter"],"Freeleech":[null,"FreeLeech"],"only download <b>\"FreeLeech\"</b> torrents.":[null,"bare laste ned <b>\"FreeLeech\"</b> torrents."],"Category":[null,"Kategori"],"select torrent with Italian subtitle":[null,"velg torrent med italiensk undertittel"],"Configure Custom<br>Newznab Providers":[null,"Konfigurer Egendefinerte<br>Newznab Tilbydere"],"Add and setup or remove custom Newznab providers.":[null,"Legg til og konfigurer eller fjern egendefinerte Newznab tilbydere."],"Select provider":[null,"Velg søkeleverandør"],"-- add new provider --":[null,"--legg til ny søkeleverandør--"],"Provider name":[null,"Navn på Søkeleverandør"],"Site URL":[null,"Side URL"],"Newznab search categories":[null,"Newznab søkekategorier"],"select your Newznab categories on the left, and click the \"update categories\" button to use them for searching.) <b>don't forget to to save the form!":[null,"velg Newznab kategorier til venstre, og klikk \"Oppdater kategorier\"-knappen for å bruke dem til søk.) <b>Ikke glem å trykk lagre!"],"Update Categories":[null,"Oppdater kategoriene"],"Add":[null,"Legg til"],"Delete":[null,"Slett"],"Add and setup or remove custom RSS providers.":[null,"Legg til og konfigurer eller fjern egendefinerte RSS-søkeleverandører."],"RSS URL":[null,"RSS-URL"],"Search element":[null,"Søkeelement"],"eg: title":[null,"f. eks: tittel"],"Episode Search":[null,"Episode-Søk"],"NZB Search":[null,"NZB-søk"],"Torrent Search":[null,"Torrent-Søk"],"How to manage searching with":[null,"Hvordan håndtere søk med"],"Randomize Providers":[null,"Bruk tilfeldig søkeleverandør"],"randomize the provider search order instead of going in order of placement":[null,"tilfeldig søk blant søketilbyderne i stedet for å søke i rekkefølge"],"Download propers":[null,"Last ned Propers"],"replace original download with \"Proper\" or \"Repack\" if nuked":[null,"erstatt opprinnelig nedlasting med \"Proper\" eller \"Repack\" hvis nuked"],"Check propers every":[null,"Sjekk for Propers hver"],"24 hours":[null,"24 timer"],"4 hours":[null,"4 timer"],"90 mins":[null,"90 minutter"],"45 mins":[null,"45 minutter"],"15 mins":[null,"15 minutter"],"Backlog search day(s)":[null,"Historikksøk i dag(er)"],"number of day(s) that the \"Forced Backlog Search\" will cover (e.g. 7 Days)":[null,"antall dag(er) \"Tvunget Backlog søk\" vil dekke (f.eks 7 dager)"],"Backlog search frequency":[null,"Backlog søke frekvens"],"time in minutes between searches (min.":[null,"tid i minutter mellom søk (min."],"Daily search frequency":[null,"Daglig søkefrekvens"],"Usenet retention":[null,"Usenet retensjon"],"age limit in days for usenet articles to be used (e.g. 500)":[null,"aldersgrensen i dager for usenet artikler brukt (f.eks 500)"],"Ignore words":[null,"Ignorer ord"],"results with one or more word from this list will be ignored<br>separate words with a comma, e.g. \"word1,word2,word3\"":[null,"resultat med ett eller flere ord fra denne listen vil bli ignorert<br>skill ord med komma, f.eks \"ord1, ord2, ord3\""],"Require words":[null,"Påkrevde ord"],"results with no word from this list will be ignored<br>separate words with a comma, e.g. \"word1,word2,word3\"":[null,"resultater uten ord fra denne listen vil bli ignorert<br>skill ord med komma, f.eks \"ord1, ord2, ord3\""],"Trackers list":[null,"Trackerliste"],"trackers that will be added to magnets without trackers<br>separate trackers with a comma, e.g. \"tracker1,tracker2,tracker3\"":[null,"trackere som vil bli lagt til magnet-lenker uten trackere<br>adskill adresser med komma, f.eks. \"tracker1,tracker2,tracker3\""],"Ignore language names in subbed results":[null,"Ignorere språknavn i resultater med undertekster"],"ignore subbed releases based on language names <br>\n Example: \"dk\" will ignore words: dksub, dksubs, dksubbed, dksubed <br>\n separate languages with a comma, e.g. \"lang1,lang2,lang3":[null,"ignorer tekstede utgivelser basert på språk <br>\n Eksempel: \"dk\" vil\nignorere ordene: dksub, dksubs, dksubbed, dksubed <br>\n Adskill språk\nmed komma, f.eks. \"språk1,språk2,språk3"],"Allow high priority":[null,"Tillat høy prioritet"],"set downloads of recently aired episodes to high priority":[null,"sett nedlastinger av nylig viste episoder til høy prioritet"],"Use Failed Downloads":[null,"Bruk mislykkede nedlastinger"],"use Failed Download Handling?":[null,"bruke håndtering av mislykkede nedlastinger?"],"will only work with snatched/downloaded episodes after enabling this":[null,"vil bare virke med episoder som blir hentet/lasted ned etter at dette er aktivert"],"Delete Failed":[null,"Slett mislykkede"],"delete files left over from a failed download?":[null,"slette filer som blir igjen etter en mislykket nedlasting?"],"this only works if Use Failed Downloads is enabled.":[null,"dette fungerer kun dersom \"Bruk mislykkede nedlastinger\" er aktivert."],"How to handle NZB search results.":[null,"Hvordan håndtere NZB søkeresultater."],"Search NZBs":[null,"Søk NZBs"],"enable NZB search providers":[null,"aktivér NZB-søkeleverandører"],"Send .nzb files to":[null,"Send .nzb filer til"],"SABnzbd server URL":[null,"SABnzbd server-URL"],"URL to your SABnzbd server (e.g. http://localhost:8080/)":[null,"URL-adressen til din SABnzbd server (f.eks http://localhost: 8080/)"],"SABnzbd username":[null,"SABnzbd brukernavn"],"(blank for none)":[null,"(tomt for ingen)"],"SABnzbd password":[null,"SABnzbd passord"],"SABnzbd API key":[null,"SABnzbd API-nøkkel"],"locate at... SABnzbd Config -> General -> API Key":[null,"finnes i SABnzbd Config -> General -> API Key"],"Use SABnzbd category":[null,"Bruk SABnzbd kategori"],"add downloads to this category (e.g. TV)":[null,"legg til nedlastinger i denne kategorien (f.eks TV)"],"Use SABnzbd category (backlog episodes)":[null,"Bruk SABnzbd kategori (backlog episoder)"],"add downloads of old episodes to this category (e.g. TV)":[null,"legg til nedlasting av gamle episoder i denne kategorien (f.eks TV)"],"Use SABnzbd category for anime":[null,"Bruk SABnzbd kategori for anime"],"add anime downloads to this category (e.g. anime)":[null,"legg til anime nedlastinger i denne kategorien (f.eks anime)"],"Use SABnzbd category for anime (backlog episodes)":[null,"Bruk SABnzbd kategori for anime (backlog episoder)"],"add anime downloads of old episodes to this category (e.g. anime)":[null,"legg til anime nedlastinger av gamle episoder i denne kategorien (f.eks anime)"],"Use forced priority":[null,"Bruk tvunget prioritet"],"enable to change priority from HIGH to FORCED":[null,"aktiver for å endre prioriteten fra HØY til TVUNGEN"],"Black hole folder location":[null,"\"Black Hole\" mappeplassering"],"<b>.nzb</b> files are stored at this location for external software to find and use":[null,"<b>.nzb</b> filer lagres på denne plasseringen for ekstern programvare å finne og bruke"],"Connect using HTTPS":[null,"Koble til ved hjelp av HTTPS"],"enable Secure control in NZBGet and set the correct Secure Port here":[null,"aktiver sikker kontroll i NZBGet og angi den sikre porten her"],"NZBget host:port":[null,"NZBget vert:port"],"(e.g. localhost:6789)":[null,"(f.eks localhost:6789)"],"NZBget RPC host name and port number (not NZBgetweb!)":[null,"NZBget RPC hostnavn og portnummer (ikke NZBgetweb!)"],"NZBget username":[null,"NZBget brukernavn"],"locate in nzbget.conf (default:nzbget)":[null,"finn i nzbget.conf (standard: nzbget)"],"NZBget password":[null,"NZBget passord"],"locate in nzbget.conf (default:tegbzn6789)":[null,"finn i nzbget.conf (standard: tegbzn6789)"],"Use NZBget category":[null,"Bruk NZBget kategori"],"send downloads marked this category (e.g. TV)":[null,"send nedlastninger markert med denne kategorien (f.eks TV)"],"Use NZBget category (backlog episodes)":[null,"Bruk NZBget kategori (backlog episoder)"],"send downloads of old episodes marked this category (e.g. TV)":[null,"send nedlastinger av gamle episoder merket med denne kategorien (f.eks TV)"],"Use NZBget category for anime":[null,"Bruk NZBget kategori for anime"],"send anime downloads marked this category (e.g. anime)":[null,"send anime nedlastinger merket med denne kategorien (f.eks anime)"],"Use NZBget category for anime (backlog episodes)":[null,"Bruk NZBget kategori for anime (backlog episoder)"],"send anime downloads of old episodes marked this category (e.g. anime)":[null,"send anime nedlastinger av gamle episoder merket med denne kategorien (f.eks anime)"],"NZBget priority":[null,"NZBget prioritet"],"Very low":[null,"Svært lav"],"Low":[null,"Lav"],"Very high":[null,"Svært høy"],"Force":[null,"Tving"],"priority for daily snatches (no backlog)":[null,"prioritet for daglige hentinger (ingen historikk)"],"Torrent host:port":[null,"Torrent vert: port"],"URL to your Synology DSM (e.g. http://localhost:5000/)":[null,"URL til din Synology DS (f.eks http://localhost:5000/)"],"Client username":[null,"Klient brukernavn"],"Client password":[null,"Klientpassord"],"Downloaded files location":[null,"Plassering av nedlastede filer"],"where Synology Download Station will save downloaded files (blank for client default)":[null,"hvor Synology Download Station vil lagre nedlastede filer (tom for klient standard)"],"the destination has to be a shared folder for Synology DS":[null,"målet må være en delt mappe for Synology DS"],"Click below to test":[null,"Klikk nedenfor for å teste"],"How to handle Torrent search results.":[null,"Hvordan håndtere Torrent søkeresultater."],"Search torrents":[null,"Søk torrents"],"enable torrent search providers":[null,"aktiver torrent søkeleverandører"],"Send .torrent files to":[null,"Send .torrent-filer til"],"<b>.torrent</b> files are stored at this location for external software to find and use":[null,"<b>.torrent</b>-filer blir lagret på denne lokasjonen for ekstern programvare"],"URL to your torrent client (e.g. http://localhost:8000/)":[null,"URL til din torrentklient (f.eks http://localhost:8000 /)"],"Torrent RPC URL":[null,"Torrent RPC URL"],"the path without leading and trailing slashes (e.g. transmission)":[null,"stien uten innledende og etterfølgende skråstrek (f.eks transmission)"],"Http Authentication":[null,"Http-autentisering"],"Verify certificate":[null,"Verifiser sertifikat"],"disable if you get \"Deluge: Authentication Error\" in your log":[null,"deaktiver hvis du får \"Deluge: Authentication Error\" i loggen din"],"verify SSL certificates for HTTPS requests":[null,"sjekk SSL-sertifikater ved HTTPS-forespørsler"],"Add label to torrent":[null,"Legg til etikett på torrent"],"(blank spaces are not allowed)":[null,"(mellomrom er ikke tillatt)"],"label plugin must be enabled in Deluge clients":[null,"label-tillegget må være slått på i Deluge-klientene"],"for QBitTorrent 3.3.1 and up":[null,"for QBitTorrent 3.3.1 og nyere"],"Add label to torrent for anime":[null,"Legg en etikett til torrent for anime"],"for QBitTorrent 3.3.1 and up ":[null,"for QBitTorrent 3.3.1 og nyere "],"where <span id=\"torrent_client\">the torrent client</span> will save downloaded files (blank for client default)":[null,"hvor <span id=\"torrent_client\"> torrent-klienten</span> skal lagre nedlastede filer (tom for klientens standard)"],"the destination has to be a shared folder for Synology DS</span>":[null,"målet må være en delt mappe for Synology DS</span>"],"Minimum seeding time":[null,"Minimum tid for seeding"],"time in hours":[null,"antall timer"],"(default:'0' passes blank to client and '-1' passes nothing)":[null,"(standard: '0' sender tom verdi til klienten, '-1' sender ingenting)"],"Start torrent paused":[null,"Start torrent pauset"],"add .torrent to client but do <b style=\"font-weight:900\">not</b> start downloading":[null,"legg .torrent til klienten, men <b style=\"font-weight:900\">ikke</b> start nedlasting"],"Allow high bandwidth":[null,"Tillat høy båndbredde"],"use high bandwidth allocation if priority is high":[null,"bruk høy båndbredde-tildeling hvis prioritet er høy"],"Test Connection":[null,"Test tilkoblingen"],"Windows Shares":[null,"Windows delte ressurser"],"Defines your existing windows shares so that we can add them to the browse dialog":[null,"Definerer de eksisterende windows ressursene slik at vi kan legge dem til søkedialogboksen"],"Share #{number}":[null,"Ressurs #{number}"],"Share label":[null,"Ressurs etikett"],"Hostname or IP":[null,"Vertsnavn eller IP"],"Share path":[null,"Bane til ressurs"],"Subtitles Search":[null,"Undertekst-søk"],"Subtitles Plugin":[null,"Undertekstplugin"],"Plugin Settings":[null,"Plugin-innstillinger"],"Settings that dictate how SickRage handles subtitles search results.":[null,"Innstillinger som styrer hvordan SickRage håndterer søkeresultater for undertekster."],"Search Subtitles":[null,"Søk Etter Undertekster"],"Subtitle Languages":[null,"Språk På Undertekst"],"Subtitle Directory":[null,"Mappe For Undertekster"],"the directory where SickRage should store your <i>Subtitles</i> files.":[null,"mappen der SickRage skal lagre dine <i>undertekst-filer</i>."],"leave empty if you want store subtitle in episode path.":[null,"la stå tomt hvis du vil lagre undertekster på samme sted som episoden."],"Subtitle Find Frequency":[null,"Undertekst søkefrekvens"],"time in hours between scans (default: 1)":[null,"tid i timer mellom skanninger (standard: 1)"],"Include Specials":[null,"Ta med spesialepisoder"],"include the show's specials when searching for subtitles?":[null,"ta med seriens spesialepisoder når vi søker etter undertitler?"],"Perfect matches":[null,"Perfekte treff"],"only download subtitles that match: release group, video codec, audio codec and resolution":[null,"last kun ned undertekster som samsvarer med: utgivelsesgruppe, videokodeks, lydkodeks og oppløsning"],"if disabled you may get out of sync subtitles":[null,"hvis deaktivert kan du få undertekster som ikke er i synk"],"Subtitles History":[null,"Undertekst-historie"],"log downloaded Subtitle on History page?":[null,"vise nedlastede undertekster på historiesiden?"],"Subtitles Multi-Language":[null,"Flerspråklige undertekster"],"append language codes to subtitle filenames?":[null,"legge til språkkoder i filnavnet til undertekster?"],"this option is required if you use multiple subtitle languages":[null,"dette valget er obligatorisk hvis du bruker flere undertekstspråk"],"Delete unwanted subtitles":[null,"Slett uønskede undertekster"],"enable to delete unwanted subtitle languages bundled with release":[null,"aktivér for å slette uønskede undertekst-språk inne i utgivelsen"],"Embedded Subtitles":[null,"Innebygde undertekster"],"ignore subtitles embedded inside video file?":[null,"ignorere undertekster innebygd i videofil?"],"this will ignore <u>all</u> embedded subtitles for every video file!":[null,"dette vil ignorere <u>alle</u> innebygde undertekster for alle videofiler!"],"Hearing Impaired Subtitles":[null,"Undertekster for hørselshemmede"],"download hearing impaired style subtitles?":[null,"laste ned undertekster for hørselshemmede?"],"See":[null,"Se"],"for a script arguments description.":[null,"for en oversikt over argumenter."],"Additional scripts separated by <b>|</b>.":[null,"Flere skript kan separeres med <b>|</b>."],"Scripts are called after each episode has searched and downloaded subtitles.":[null,"Skript blir ofte kjørt etter hver episode har søkt og lastet ned undertekster."],"For any scripted languages, include the interpreter executable before the script. See the following example":[null,"For alle script, inkluder path til skripthåndtereren før skriptet. Se følgende eksempler"],"For Windows:":[null,"For Windows:"],"For Linux / OS X:":[null,"For Linux / OS X:"],"Subtitle Providers":[null,"Undertekstleverandører"],"Check off and drag the plugins into the order you want them to be used.":[null,"Merk og dra tilleggsprogrammene i den rekkefølgen du vil de skal brukes."],"At least one plugin is required.":[null,"Det kreves minst én plugin."]," Web-scraping plugin":[null," Web-informasjon plugin"],"Provider Settings":[null,"Instillinger for søkeleverandører"],"Set user and password for each provider":[null,"Angi brukernavn og passord for hver søkeleverandør"],"User Name":[null,"Brukernavn"],"Change Show":[null,"Endre Serie"],"Prev Show":[null,"Forrige Serie"],"Next Show":[null,"Neste Serie"],"Jump to Season":[null,"Gå til Sesong"],"Specials":[null,"Spesialer"],"Poster for":[null,"Plakat for"],"Stars":[null,"Stjerner"],"minutes":[null,"minutter"],"View other popular {genre} shows on trakt.tv.":[null,"Vis andre populære {genre} serier på trakt.tv."],"View other popular {imdbgenre} shows on IMDB.":[null,"Vis andre populære {imdbgenre} serier på IMDB."],"Allowed":[null,"Tillatt"],"Preferred":[null,"Foretrukket"],"Originally Airs":[null,"Sendes opprinnelig"],"Show Status":[null,"Status for Serie"],"Default EP Status":[null,"Standard Episodestatus"],"Location":[null,"Sted"],"Missing":[null,"Mangler"],"Scene Name":[null,"\"Scene\"-navn"],"Required Words":[null,"Påkrevde ord"],"Ignored Words":[null,"Ignorerte ord"],"Size":[null,"Størrelse"],"Info Language":[null,"Info Språk"],"Subtitles SR Metadata":[null,"SR Metadata for undertekster"],"Season Folders":[null,"Sesongmapper"],"Paused":[null,"Pauset"],"Air-by-Date":[null,"Datoformat"],"Sports":[null,"Sport"],"DVD Order":[null,"DVD sortering"],"Scene Numbering":[null,"\"Scene\"-nummerering"],"Select Filtered Episodes":[null,"Velg filtrerte episoder"],"Clear All":[null,"Fjern alle"],"Change selected episodes to":[null,"Endre valgte episoder til"],"Select Columns":[null,"Velg Kolonner"],"NFO":[null,"NFO"],"TBN":[null,"TBN"],"Episode":[null,"Episode"],"Absolute":[null,"Absolutt"],"Scene":[null,"\"Scene\""],"Scene Absolute":[null,"\"Scene\"-absolutt"],"File Name":[null,"Filnavn"],"Airdate":[null,"Sendedato"],"Download":[null,"Last ned"],"Change the value here if scene numbering differs from the indexer episode numbering":[null,"Endre verdien her hvis scene-nummerering avviker fra indekserens episode-nummerering"],"Change the value here if scene absolute numbering differs from the indexer absolute numbering":[null,"Endre verdien her hvis scene-nummerering avviker fra indekserens absolutte nummerering"],"Manual Search":[null,"Manuelt Søk"],"Do you want to mark this episode as failed?":[null,"Vil du merke denne episoden som mislykket?"],"The episode release name will be added to the failed history, preventing it to be downloaded again.":[null,"Episodens releasenavn vil bli lagt til i feilhistorikken, for å forhindre at den lastes ned igjen."],"Do you want to include the current episode quality in the search?":[null,"Vil du inkludere nåværende episodekvalitet i søket?"],"Choosing No will ignore any releases with the same episode quality as the one currently downloaded/snatched.":[null,"Hvis du velger Nei, ignoreres alle utgivelser med samme episodekvalitet som den episoden som på nåværende tidspunkt er lastet ned/hentet."],"Download subtitle":[null,"Last ned undertekst"],"Do you want to re-download the subtitle for this language?":[null,"Ønsker du å laste ned undertittelen for dette språket på nytt?"],"It will overwrite your current subtitle":[null,"Det vil overskrive din nåværende undertittel"],"Format":[null,"Format"],"Advanced":[null,"Avansert"],"Main Settings":[null,"Hovedinnstillinger"],"Show Location":[null,"Plassering Av Serie"],"Preferred Quality":[null,"Foretrukket Kvalitet"],"Default Episode Status":[null,"Standard Episode Status"],"this will set the status for future episodes.":[null,"dette setter statusen for fremtidige episoder."],"this only applies to episode filenames and the contents of metadata files.":[null,"dette gjelder bare episode-filnavn og innhold i metadatafiler."],"search for subtitles":[null,"søk etter undertekster"],"Use SR Metdata":[null,"Bruk metadata fra SR"],"use SickRage metadata when searching for subtitle, this will override the autodiscovered metadata":[null,"bruk SickRage-metadata ved søk etter undertekst (overstyrer autodiscovery av metadata)"],"pause this show (SickRage will not download episodes)":[null,"pause denne serien (SickRage vill ikke laste ned episoder)"],"Format Settings":[null,"Formatinnstillinger"],"Air by date":[null,"Episode som datoformat"],"check if the show is released as Show.03.02.2010 rather than Show.S02E03.":[null,"merk av hvis serien er utgitt som Serie.03.02.2010 i stedet for Serie.S02E03."],"in case of an air date conflict between regular and special episodes, the later will be ignored.":[null,"ved en konflikt på sendedato mellom vanlige episoder og spesialepisoder ignoreres sistnevnte."],"check if the show is Anime and episodes are released as Show.265 rather than Show.S02E03":[null,"merk av hvis serien er Anime og episodene er utgitt som Serie.265 i stedet for Serie.S02E03"],"check if the show is a sporting or MMA event released as Show.03.02.2010 rather than Show.S02E03":[null,"merk av hvis serien er et sports- eller MMA-arrangement utgitt som Serie.03.03.2010 i stedet for Serie.S02E03"],"Season folders":[null,"Sesongmapper"],"group episodes by season folder (uncheck to store in a single folder)":[null,"grupper episoder i sesongmapper (ikke merk av for å lagre i en enkelt mappe)"],"search by scene numbering (uncheck to search by indexer numbering)":[null,"søk etter scene-nummerering (ikke velg for å søke etter indekser-nummerering)"],"use the DVD order instead of the air order":[null,"bruk DVD-rekkefølge i stedet for rekkefølge sortert på sendedato"],"a \"Force Full Update\" is necessary, and if you have existing episodes you need to sort them manually.":[null,"en \"Tving full oppdatering\" er nødvendig, og om du har eksisterende episoder må du sortere dem manuelt."],"comma-separated <i>e.g. \"word1,word2,word3</i>\"":[null,"kommadelt <i>f.eks \"ord1, ord2, ord3</i>\""],"search results with one or more words from this list will be ignored.":[null,"søkeresultater med ett eller flere ord fra denne listen vil bli ignorert."],"e.g. \"word1,word2,word3\"":[null,"f.eks «ord1, ord2, ord3»"],"search results with no words from this list will be ignored.":[null,"søkeresultater som ikke har noen ord fra denne listen vil bli ignorert."],"Scene Exception":[null,"\"Scene\"-unntak"],"this will affect episode search on NZB and torrent providers.":[null,"dette vil påvirke søk både med NZB- og torrent-leverandører."],"this list appends to the original show name.":[null,"denne listen legges til det opprinnelige serienavnet."],"WARNING logs":[null,"Advarsel-logger"],"ERROR logs":[null,"Feilmeldingslogger"],"There are no events to display.":[null,"Det er ingen hendelser å vise."],"Limit":[null,"Grense"],"Layout":[null,"Utseende"],"HistoryLayout":[null,"HistorikkUtseende"],"Compact":[null,"Kompakt"],"Detailed":[null,"Detaljert"],"Time":[null,"Tid"],"Provider":[null,"Søkeleverandør"],"Missing Provider":[null,"Mangler Søkeleverandør"],"missing provider":[null,"mangler søkeleverandør"],"Directory":[null,"Mappe"],"Show Name (tvshow.nfo)":[null,"Serienavn (tvshow.nfo)"],"Indexer":[null,"Indekser"],"Enter the folder containing the episode":[null,"Angi mappen som inneholder episoden"],"Process Method to be used":[null,"Prosesseringsmetode som skal brukes"],"Copy":[null,"Kopier"],"Move":[null,"Flytt"],"Hard Link":[null,"Hardlenke"],"Symbolic Link":[null,"Symbolsk lenke"],"Symbolic Link Reversed":[null,"Omvendt symbolsk lenke"],"Force already Post Processed Dir/Files":[null,"Tving allerede behandlede kataloger/filer"],"Mark Dir/Files as priority download":[null,"Marker mappe/filer som prioritert nedlasting"],"(Check it to replace the file even if it exists at higher quality)":[null,"(Merk av for å erstatte filen selv om den finnes i høyere kvalitet)"],"Delete files and folders":[null,"Slett filer og mapper"],"(Check it to delete files and folders like auto processing)":[null,"(Aktiver for å slette filer og kataloger som automatisk behandling gjør)"],"Don't use processing queue":[null,"Ikke bruk behandlingskøen"],"(If checked this will return the result of the process here, but may be slow!)":[null,"(Hvis satt vil resultater av prosessen vises her, men det kan gå lang tid!)"],"Mark download as failed":[null,"Marker nedlasting som mislykket"],"Process":[null,"Behandle"],"Download subtitles for this show?":[null,"Laste ned undertekster for denne serien?"],"use SickRage metadata when searching for subtitle, <br />this will override the autodiscovered metadata":[null,"bruk SickRage-metadata ved søk etter undertekst<br />(overstyrer autodiscovery av metadata)"],"Status for previously aired episodes":[null,"Status for tidligere viste episoder"],"Status for all future episodes":[null,"Status for alle fremtidige episoder"],"Group episodes by season folder?":[null,"Gruppere episoder med sesongmapper?"],"Is this show an Anime?":[null,"Er denne serien en Anime?"],"Is this show scene numbered?":[null,"Er denne serien scene-nummerert?"],"Save Defaults":[null,"Lagre Som Standard"],"Use current values as the defaults":[null,"Bruk gjeldende verdier som standard"],"<p>Select your preferred fansub groups from the <b>Available Groups</b> and add them to the <b>Whitelist</b>. Add groups to the <b>Blacklist</b> to ignore them.</p>\n <p>The <b>Whitelist</b> is checked <i>before</i> the <b>Blacklist</b>.</p>\n <p>Groups are shown as <b>Name</b> | <b>Rating</b> | <b>Number of subbed episodes</b>.</p>\n <p>You may also add any fansub group not listed to either list manually.</p>\n <p>When doing this please note that you can only use groups listed on anidb for this anime.\n <br>If a group is not listed on anidb but subbed this anime, please correct anidb's data.</p>":[null,"<p>Velger dine foretrukne fansub grupper fra <b>Tilgjengelige grupper</b> og legg dem til i <b>Hvitelisten</b>. Legg til grupper i <b>Svartelisten</b> for å ignorere dem.</p>\n <p><b>Hvitelisten</b> sjekkes <i>før</i> <b>Svartelisten</b>.</p>\n <p>Grupper vises som <b>Navn</b> | <b>Karakter</b> | <b>Antall tekstede episoder</b>.</p>\n <p>Du kan også legge til fansub-grupper som ikke ligger i noen av listene manuelt.</p>\n <p>Når du gjør dette, vennligst merk at du kan bare bruke grupper listet på anidb for denne animen.\n <br>Om en gruppe ikke er listet på anidb, men har tekstet denne animen, vennligst korriger anidb sin informasjon.</p>"],"Whitelist":[null,"Hvitliste"],"Available Groups":[null,"Tilgjengelige Grupper"],"Add to Whitelist":[null,"Legg til Hvitliste"],"Add to Blacklist":[null,"Legg til i Svarteliste"],"Blacklist":[null,"Svarteliste"],"Custom Group":[null,"Egendefinert gruppe"],"Allowed Quality:":[null,"Tillatt Kvalitet:"],"Preferred Quality:":[null,"Foretrukket Kvalitet:"],"Filter Show Name":[null,"Filtrer Serienavn"],"Root":[null,"Rot"],"All":[null,"Alle"],"Clear Filter(s)":[null,"Tøm Filtre"],"Poster":[null,"Plakat"],"Small Poster":[null,"Liten Plakat"],"Banner":[null,"Banner"],"Simple":[null,"Enkel"],"Next Episode":[null,"Neste Episode"],"Progress":[null,"Fremdrift"],"Direction":[null,"Retning"],"Ascending":[null,"Stigende"],"Descending":[null,"Synkende"],"Poster Size":[null,"Plakatstørrelse"],"Continuing":[null,"Fortsetter"],"Ended":[null,"Avsluttet"],"Total":[null,"Totalt"],"Invalid date":[null,"Ugyldig dato"],"No Network":[null,"Ingen Kanal"],"Next Ep":[null,"Neste Ep"],"Prev Ep":[null,"Forrige Ep"],"Show":[null,"Serie"],"Downloads":[null,"Nedlastninger"],"Active":[null,"Aktiv"],"loading":[null,"laster inn"],"<p><b><u>Preferred</u></b> qualities will replace those in <b><u>allowed</u></b>, even if they are lower.</p>":[null,"<p><b><u>Foretrukne</u></b> kvaliteter erstatter de i <b><u>tillate</u></b> kvaliteter, selv om de er lavere.</p>"],"New":[null,"Ny"],"Set as Default":[null,"Angi som Standard"],"Remember me":[null,"Husk meg"],"Edit Selected":[null,"Rediger Valgte"],"Subtitle":[null,"Undertekst"],"Default Ep Status":[null,"Standard Episode Status"],"Update":[null,"Oppdater"],"Rescan":[null,"Skann på nytt"],"Rename":[null,"Gi nytt navn"],"Search Subtitle":[null,"Søk Etter Undertekster"],"Force Metadata Regen":[null,"Tving regenerering av Metadata"],"Snatched (Allowed)":[null,"Hentet (Tillatt)"],"Jump to Show":[null,"Gå til Serie"],"Force Backlog":[null,"Tving backlog"],"Manage episodes with status":[null,"Behandle episoder med status"],"Manage":[null,"Behandle"],"None of your episodes have status":[null,"Ingen av episodene har status"],"Shows containing":[null,"Serier som inneholder"],"episodes":[null,"episoder"],"Set checked shows/episodes to":[null,"Sett markerte serier/episoder til"],"Go":[null,"Gå"],"Select all":[null,"Velg alle"],"Clear all":[null,"Fjern alle"],"Release":[null,"Utgivelse"],"Backlog Search":[null,"Backlog søk"],"Not in progress":[null,"Kjører ikke"],"In Progress":[null,"Pågår"],"Daily Search":[null,"Daglig Søk"],"Find Propers Search":[null,"Finn Propers-søk"],"Propers search disabled":[null,"Propers søk deaktivert"],"Subtitle Search":[null,"Undertekst-søk"],"Subtitle search disabled":[null,"Undertekst-søk deaktivert"],"Search Queue":[null,"Søkekø"],"pending items":[null,"ventende elementer"],"Daily":[null,"Daglig"],"Manual":[null,"Manuelt"],"Changing any settings marked with (<span class=\"separator\">*</span>) will force a refresh of the selected shows.":[null,"Endring av innstillinger merket med (<span class=\"separator\"> *</span>) vil tvinge en oppdatering av de valgte seriene."],"Selected Shows":[null,"Valgte Serier"],"Root Directories":[null,"Rotmapper"],"Current":[null,"Gjeldende"],"Keep":[null,"Behold"],"Custom":[null,"Egendefinert"],"Group episodes by season folder (set to \"No\" to store in a single folder).":[null,"Grupper episoder etter sesongkataloger (sett til \"Nei\" for å lagre i en enkelt mappe)."],"Pause these shows (SickRage will not download episodes).":[null,"Pause disse seriene (SickRage vil ikke laste ned episoder)."],"This will set the status for future episodes.":[null,"Dette setter statusen for fremtidige episoder."],"Search by scene numbering (set to \"No\" to search by indexer numbering).":[null,"Søk etter scene-nummerering (set til \"Nei\" for å søke etter indekser-nummerering)."],"Set if these shows are Anime and episodes are released as Show.265 rather than Show.S02E03":[null,"Aktiver om serien er Anime og episodene slippes som Serie.265 i stedet for Serie.S02E03"],"Set if these shows are sporting or MMA events released as Show.03.02.2010 rather than Show.S02E03.":[null,"Aktiver om serien er en sportsending som slippes som Serie.03.02.2010 i stedet for Serie.S02E03."],"In case of an air date conflict between regular and special episodes, the later will be ignored.":[null,"Ved en konflikt på sendedato mellom vanlige episoder og spesialepisoder, ignoreres sistnevnte."],"Set if these shows are released as Show.03.02.2010 rather than Show.S02E03.":[null,"Aktiver om serien slippes som Serie.03.02.2010 i stedet for Serie.S02E03."],"Search for subtitles.":[null,"Søk etter undertekster."],"All of your episodes have {subsLanguage} subtitles.":[null,"Alle episodene har {subsLanguage} undertekster."],"Manage episodes without":[null,"Behandle episoder uten"],"Episodes without {subsLanguage} subtitles.":[null,"Episoder uten {subsLanguage} undertekster."],"Episodes without {subtitleLanguage} (undefined) subtitles.":[null,"Episoder uten {subtitleLanguage} (udefinerte) undertekster."],"Download missed subtitles for selected episodes":[null,"Last ned manglende undertekster for valgte episoder"],"Performing Restart":[null,"Utfør Omstart"],"Waiting for SickRage to shut down":[null,"Venter på at SickRage avsluttes"],"Waiting for SickRage to start again":[null,"Venter på at SickRage skal starte på nytt"],"Loading the default page":[null,"Laster inn standardside"],"Error: The restart has timed out, perhaps something prevented SickRage from starting again?":[null,"Feil: Omstarten har fått tidsavbrudd. Kanskje noe hindret SickRage fra å starte?"],"Key":[null,"Nøkkel"],"Missed":[null,"Mangler"],"Today":[null,"I dag"],"Soon":[null,"Snart"],"Later":[null,"Senere"],"Subscribe":[null,"Abonnér"],"Date":[null,"Dato"],"View Paused":[null,"Vis Pauset"],"Hidden":[null,"Skjult"],"Shown":[null,"Vist"],"Calendar":[null,"Kalender"],"List":[null,"Liste"],"Ends":[null,"Slutter"],"Next Ep Name":[null,"Neste Ep Navn"],"Run time":[null,"Lengde"],"Indexers":[null,"Indeksere"],"No shows for this day":[null,"Ingen serier denne dagen"],"Airs":[null,"Sendetid"],"Plot":[null,"Plott"],"Show Update":[null,"Oppdater serie"],"Version Check":[null,"Versjonskontroll"],"Proper Finder":[null,"Proper-finner"],"Post Process":[null,"Etterbehandle"],"Subtitles Finder":[null,"Undertekstsøker"],"Scheduler":[null,"Oppgaveplanlegging"],"Alive":[null,"Levende"],"Start Time":[null,"Starttid"],"Cycle Time":[null,"Syklustid"],"Next Run":[null,"Neste kjøring"],"Last Run":[null,"Siste kjøring"],"Silent":[null,"Stille"],"True":[null,"Sann"],"N/A":[null,"N/A"],"Show id":[null,"Serie-ID"],"Show name":[null,"Serienavn"],"Priority":[null,"Prioritet"],"Added":[null,"Lagt til"],"Queue type":[null,"Køtype"],"LOW":[null,"LAV"],"NORMAL":[null,"NORMAL"],"HIGH":[null,"HØY"],"Disk Space":[null,"Diskplass"],"Free space":[null,"Ledig plass"],"TV Download Directory":[null,"TV-nedlastingsmappen"],"Media Root Directories":[null,"Media Rot-katalog(er)"],"Preview of the proposed name changes":[null,"Forhåndsvis de foreslåtte navneendringer"],"All Seasons":[null,"Alle Sesonger"],"select all":[null,"velg alle"],"Rename Selected":[null,"Gi Valgte Nytt Navn"],"Cancel Rename":[null,"Avbryt Navneendring"],"Old Location":[null,"Gammel Plassering"],"New Location":[null,"Ny Plassering"],"Trakt API did not return any results, please check your config.":[null,"Trakt API-et returnerte ikke noen resultater. Sjekk konfigurasjonen din."],"votes":[null,"stemmer"],"Remove Show":[null,"Fjern Serie"],"Level":[null,"Nivå"],"Filter":[null,"Filter"],"All non-absolute folder locations are relative to ":[null,"Alle ikke-absolutte stier er relative til "],"Manual Post-Processing":[null,"Manuell Etterbehandling"],"Episode Status Management":[null,"Episode statushåndtering"],"Update PLEX":[null,"Oppdater PLEX"],"Update KODI":[null,"Oppdater KODI"],"Update Emby":[null,"Oppdater Emby"],"Manage Torrents":[null,"Behandle torrents"],"Missed Subtitle Management":[null,"Manglende undertekst håndtering"],"Help & Info":[null,"Hjelp & Info"],"Backup & Restore":[null,"Sikkerhetskopier & gjenopprett"],"Tools":[null,"Verktøy"],"Support SickRage":[null,"Støtt SickRage"],"View Errors":[null,"Vis Feil"],"View Warnings":[null,"Vis advarsler"],"View Log":[null,"Vis Logg"],"Check For Updates":[null,"Se Etter Oppdateringer"],"Restart":[null,"Omstart"],"Shutdown":[null,"Avslutt"],"Logout":[null,"Logg ut"],"Server Status":[null,"Serverstatus"],"View overview of snatched episodes":[null,"Se oversikt over hentede episoder"],"Episodes Downloaded":[null,"Episoder Lastet Ned"],"Memory used":[null,"Minne brukt"],"Load time":[null,"Lastetid"],"Branch":[null,"Gren"],"Now":[null,"Nå"]}}}} \ No newline at end of file diff --git a/locale/no_NO/LC_MESSAGES/messages.mo b/locale/no_NO/LC_MESSAGES/messages.mo index 2dec1c0231ec14f6b685f567bb55234619fe93f9..d6267c12d92b7b24a77dcf0a2ca8419cce9c7e88 100644 Binary files a/locale/no_NO/LC_MESSAGES/messages.mo and b/locale/no_NO/LC_MESSAGES/messages.mo differ diff --git a/locale/no_NO/LC_MESSAGES/messages.po b/locale/no_NO/LC_MESSAGES/messages.po index ad07c98a7c0d197d4c4b46efcdbfe84e6d268369..e7bdbfaf82c80812308488a68eb6f5f04725a07c 100644 --- a/locale/no_NO/LC_MESSAGES/messages.po +++ b/locale/no_NO/LC_MESSAGES/messages.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: sickrage\n" "Report-Msgid-Bugs-To: miigotu@gmail.com\n" -"POT-Creation-Date: 2017-03-25 09:28-0700\n" -"PO-Revision-Date: 2017-03-25 12:30-0400\n" +"POT-Creation-Date: 2017-03-28 09:10-0700\n" +"PO-Revision-Date: 2017-03-28 12:12-0400\n" "Last-Translator: miigotu <miigotu@gmail.com>\n" "Language-Team: Norwegian\n" "MIME-Version: 1.0\n" @@ -90,7 +90,7 @@ msgid "Biography" msgstr "Biografi" #: gui/slick/views/config_general.mako:78 gui/slick/views/layouts/main.mako:145 -#: sickbeard/__init__.py:79 sickbeard/webserve.py:3807 +#: sickbeard/__init__.py:79 sickbeard/webserve.py:3778 msgid "History" msgstr "Historikk" @@ -103,7 +103,7 @@ msgid "Western" msgstr "Western" #: gui/slick/views/config_general.mako:79 gui/slick/views/layouts/main.mako:221 -#: sickbeard/__init__.py:80 sickbeard/webserve.py:2385 +#: sickbeard/__init__.py:80 sickbeard/webserve.py:2384 msgid "News" msgstr "Nyheter" @@ -238,6 +238,34 @@ msgstr "Ignorert" msgid "Subtitled" msgstr "Tekstet" +#: sickbeard/helpers.py:1887 +msgid "For best results please set the Download Station alias as" +msgstr "For best resultat bør du sette Download Station alias til" + +#: sickbeard/helpers.py:1888 +msgid "You can check this setting in the Synology DSM" +msgstr "Du kan kontrollere denne innstillingen i Synology DSM" + +#: sickbeard/helpers.py:1888 sickbeard/helpers.py:1890 +msgid "Control Panel" +msgstr "Kontrollpanel" + +#: sickbeard/helpers.py:1888 +msgid "Application Portal" +msgstr "Applikasjonsportal" + +#: sickbeard/helpers.py:1889 +msgid "Make sure you allow DSM to be embedded with iFrames too in" +msgstr "Sørg for at du tillater at DSM kan bygges inn med iFrames også i" + +#: sickbeard/helpers.py:1890 +msgid "DSM Settings" +msgstr "DSM innstillinger" + +#: sickbeard/helpers.py:1890 +msgid "Security" +msgstr "Sikkerhet" + #: sickbeard/logger.py:474 msgid "<No Filter>" msgstr "< Uten filter >" @@ -308,15 +336,15 @@ msgstr "Trakt sjekk" msgid "Event" msgstr "Hendelse" -#: sickbeard/logger.py:491 sickbeard/webserve.py:1339 sickbeard/webserve.py:1342 -#: sickbeard/webserve.py:1520 sickbeard/webserve.py:1529 sickbeard/webserve.py:1717 -#: sickbeard/webserve.py:1728 sickbeard/webserve.py:1751 sickbeard/webserve.py:1764 -#: sickbeard/webserve.py:1769 sickbeard/webserve.py:1785 sickbeard/webserve.py:1790 -#: sickbeard/webserve.py:1854 sickbeard/webserve.py:1857 sickbeard/webserve.py:1863 -#: sickbeard/webserve.py:1866 sickbeard/webserve.py:1873 sickbeard/webserve.py:1876 -#: sickbeard/webserve.py:1899 sickbeard/webserve.py:1997 sickbeard/webserve.py:2002 -#: sickbeard/webserve.py:2007 sickbeard/webserve.py:2036 sickbeard/webserve.py:2040 -#: sickbeard/webserve.py:2045 +#: sickbeard/logger.py:491 sickbeard/webserve.py:1338 sickbeard/webserve.py:1341 +#: sickbeard/webserve.py:1519 sickbeard/webserve.py:1528 sickbeard/webserve.py:1716 +#: sickbeard/webserve.py:1727 sickbeard/webserve.py:1750 sickbeard/webserve.py:1763 +#: sickbeard/webserve.py:1768 sickbeard/webserve.py:1784 sickbeard/webserve.py:1789 +#: sickbeard/webserve.py:1853 sickbeard/webserve.py:1856 sickbeard/webserve.py:1862 +#: sickbeard/webserve.py:1865 sickbeard/webserve.py:1872 sickbeard/webserve.py:1875 +#: sickbeard/webserve.py:1898 sickbeard/webserve.py:1996 sickbeard/webserve.py:2001 +#: sickbeard/webserve.py:2006 sickbeard/webserve.py:2035 sickbeard/webserve.py:2039 +#: sickbeard/webserve.py:2044 msgid "Error" msgstr "Feil" @@ -333,6 +361,7 @@ msgstr "Tråd" msgid "Main" msgstr "Hoved" +#: gui/slick/js/ajaxEpSearch.js:146 gui/slick/js/ajaxEpSearch.js:147 #: gui/slick/views/inc_home_showList.mako:27 sickbeard/show_queue.py:298 msgid "Loading" msgstr "Laster inn" @@ -372,867 +401,835 @@ msgstr "Sikkerhetskopiering av konfigurasjon mislyktes, avbryter oppdateringen" msgid "No update needed" msgstr "Ingen oppdatering nødvendig" -#: sickbeard/webserve.py:170 +#: sickbeard/webserve.py:171 msgid "Mako Error" msgstr "Mako feil" -#: sickbeard/webserve.py:195 +#: sickbeard/webserve.py:196 msgid "Oops" msgstr "Oops" -#: sickbeard/webserve.py:197 +#: sickbeard/webserve.py:198 msgid "Wrong API key used" msgstr "Feil API-nøkkel brukes" -#: gui/slick/views/login.mako:34 sickbeard/webserve.py:302 +#: gui/slick/views/login.mako:34 sickbeard/webserve.py:303 msgid "Login" msgstr "Innlogging" -#: sickbeard/webserve.py:406 +#: sickbeard/webserve.py:392 msgid "API Key not generated" msgstr "API-nøkkel ikke generert" -#: sickbeard/webserve.py:409 +#: sickbeard/webserve.py:395 msgid "API Builder" msgstr "API Bygger" #: gui/slick/views/config_general.mako:77 gui/slick/views/layouts/main.mako:141 -#: sickbeard/webserve.py:512 +#: sickbeard/webserve.py:498 msgid "Schedule" msgstr "Sendeplan" -#: sickbeard/webserve.py:610 +#: sickbeard/webserve.py:609 msgid "Test 1" msgstr "Test 1" -#: sickbeard/webserve.py:610 +#: sickbeard/webserve.py:609 msgid "This is test number 1" msgstr "Dette er test nummer 1" -#: sickbeard/webserve.py:611 +#: sickbeard/webserve.py:610 msgid "Test 2" msgstr "Test 2" -#: sickbeard/webserve.py:611 +#: sickbeard/webserve.py:610 msgid "This is test number 2" msgstr "Dette er test nummer 2" -#: sickbeard/webserve.py:634 +#: sickbeard/webserve.py:633 msgid "You're using the {branch} branch. Please use 'master' unless specifically asked" msgstr "Du bruker {branch} grenen. Bruk \"master\" mindre spurt spesifikt om det" -#: sickbeard/webserve.py:698 sickbeard/webserve.py:703 +#: sickbeard/webserve.py:697 sickbeard/webserve.py:702 msgid "Invalid show parameters" msgstr "Ugyldig Vis-parametere" -#: sickbeard/webserve.py:710 +#: sickbeard/webserve.py:709 msgid "Invalid parameters" msgstr "Ugyldige parametre" -#: sickbeard/webserve.py:713 sickbeard/webserve.py:1899 +#: sickbeard/webserve.py:712 sickbeard/webserve.py:1898 msgid "Episode couldn't be retrieved" msgstr "Episode kunne ikke bli hentet" -#: sickbeard/webserve.py:759 sickbeard/webserve.py:1268 sickbeard/webserve.py:1297 +#: sickbeard/webserve.py:758 sickbeard/webserve.py:1267 sickbeard/webserve.py:1296 msgid "Home" msgstr "Hjem" -#: gui/slick/views/layouts/main.mako:127 sickbeard/webserve.py:759 +#: gui/slick/views/layouts/main.mako:127 sickbeard/webserve.py:758 msgid "Show List" msgstr "Serieliste" -#: sickbeard/webserve.py:807 +#: sickbeard/webserve.py:806 msgid "Error: Unsupported Request. Send jsonp request with 'callback' variable in the query string." msgstr "Feil: Ustøttet forespørsel. Send jsonp-forespørsel med \"callback\"-variabel i søkestrengen." -#: sickbeard/webserve.py:851 +#: sickbeard/webserve.py:850 msgid "Success. Connected and authenticated" msgstr "Suksess. Tilkoblet og autentisert" -#: sickbeard/webserve.py:853 +#: sickbeard/webserve.py:852 msgid "Authentication failed. SABnzbd expects" msgstr "Godkjenning mislyktes. SABnzbd forventer" -#: sickbeard/webserve.py:853 +#: sickbeard/webserve.py:852 msgid "as authentication method" msgstr "som autentiseringsmetode" -#: sickbeard/webserve.py:855 +#: sickbeard/webserve.py:854 msgid "Unable to connect to host" msgstr "Kan ikke koble til verten" -#: sickbeard/webserve.py:876 +#: sickbeard/webserve.py:875 msgid "SMS sent successfully" msgstr "SMS sendt" -#: sickbeard/webserve.py:878 +#: sickbeard/webserve.py:877 msgid "Problem sending SMS: {message}" msgstr "Problemer med å sende SMS: {message}" -#: sickbeard/webserve.py:885 +#: sickbeard/webserve.py:884 msgid "Telegram notification succeeded. Check your Telegram clients to make sure it worked" msgstr "Telegram varsel lyktes. Sjekk Telegram-klientene for å verifisere at det fungerte" -#: sickbeard/webserve.py:887 +#: sickbeard/webserve.py:886 msgid "Error sending Telegram notification: {message}" msgstr "Feil under sending Telegram-varsel: {message}" -#: sickbeard/webserve.py:894 +#: sickbeard/webserve.py:893 msgid "join notification succeeded. Check your join clients to make sure it worked" msgstr "join melding lyktes. Sjekk join klientene for å se at det fungerte" -#: sickbeard/webserve.py:896 +#: sickbeard/webserve.py:895 msgid "Error sending join notification: {message}" msgstr "Feil under sending av join-melding: {message}" -#: sickbeard/webserve.py:906 +#: sickbeard/webserve.py:905 msgid " with password" msgstr " med passord" -#: sickbeard/webserve.py:908 +#: sickbeard/webserve.py:907 msgid "Registered and Tested growl successfully {growl_host}" msgstr "Registrering og testing av Growl vellykket {growl_host}" -#: sickbeard/webserve.py:910 +#: sickbeard/webserve.py:909 msgid "Registration and Testing of growl failed {growl_host}" msgstr "Registrering og testing av Growl mislyktes {growl_host}" -#: sickbeard/webserve.py:917 +#: sickbeard/webserve.py:916 msgid "Test prowl notice sent successfully" msgstr "Prowl testmelding ble sendt" -#: sickbeard/webserve.py:919 +#: sickbeard/webserve.py:918 msgid "Test prowl notice failed" msgstr "Prowl testmelding feilet" -#: sickbeard/webserve.py:926 +#: sickbeard/webserve.py:925 msgid "Boxcar2 notification succeeded. Check your Boxcar2 clients to make sure it worked" msgstr "Boxcar2 melding lyktes. Sjekk Boxcar2 klientene for å se at det fungerte" -#: sickbeard/webserve.py:928 +#: sickbeard/webserve.py:927 msgid "Error sending Boxcar2 notification" msgstr "Feil under sending av en Boxcar2 melding" -#: sickbeard/webserve.py:935 +#: sickbeard/webserve.py:934 msgid "Pushover notification succeeded. Check your Pushover clients to make sure it worked" msgstr "Pushover melding lyktes. Sjekk Pushover klientene for å se at det fungerte" -#: sickbeard/webserve.py:937 +#: sickbeard/webserve.py:936 msgid "Error sending Pushover notification" msgstr "Feil under sending av en Pushover melding" -#: sickbeard/webserve.py:949 +#: sickbeard/webserve.py:948 msgid "Key verification successful" msgstr "Nøkkelkontroll vellykket" -#: sickbeard/webserve.py:951 +#: sickbeard/webserve.py:950 msgid "Unable to verify key" msgstr "Kan ikke bekrefte nøkkel" -#: sickbeard/webserve.py:958 +#: sickbeard/webserve.py:957 msgid "Tweet successful, check your twitter to make sure it worked" msgstr "Tweet vellykket. Sjekk twitter for å forsikre deg om at det fungerte" -#: sickbeard/webserve.py:960 +#: sickbeard/webserve.py:959 msgid "Error sending tweet" msgstr "Feil ved sending av tweet" -#: sickbeard/webserve.py:965 +#: sickbeard/webserve.py:964 msgid "Please enter a valid account sid" msgstr "Vennligst oppgi en gyldig sid-konto" -#: sickbeard/webserve.py:968 +#: sickbeard/webserve.py:967 msgid "Please enter a valid auth token" msgstr "Vennligst skriv inn en gyldig auth token" -#: sickbeard/webserve.py:971 +#: sickbeard/webserve.py:970 msgid "Please enter a valid phone sid" msgstr "Vennligst skriv inn et gyldig telefonnr" -#: sickbeard/webserve.py:974 +#: sickbeard/webserve.py:973 msgid "Please format the phone number as \"+1-###-###-####\"" msgstr "Vennligst formater telefonnummeret som \"+1-###-###-###\"" -#: sickbeard/webserve.py:978 +#: sickbeard/webserve.py:977 msgid "Authorization successful and number ownership verified" msgstr "Autoriseringen lyktes og nummerets eierskap er bekreftet" -#: sickbeard/webserve.py:980 +#: sickbeard/webserve.py:979 msgid "Error sending sms" msgstr "Feil ved sending av SMS" -#: sickbeard/webserve.py:986 +#: sickbeard/webserve.py:985 msgid "Slack message successful" msgstr "Slack-melding sendt" -#: sickbeard/webserve.py:988 +#: sickbeard/webserve.py:987 msgid "Slack message failed" msgstr "Slack-melding mislyktes" -#: sickbeard/webserve.py:994 +#: sickbeard/webserve.py:993 msgid "Discord message successful" msgstr "Discord-melding sendt" -#: sickbeard/webserve.py:996 +#: sickbeard/webserve.py:995 msgid "Discord message failed" msgstr "Discord-melding mislyktes" -#: sickbeard/webserve.py:1006 +#: sickbeard/webserve.py:1005 msgid "Test KODI notice sent successfully to {kodi_host}" msgstr "Test KODI melding sendt vellykket til {kodi_host}" -#: sickbeard/webserve.py:1008 +#: sickbeard/webserve.py:1007 msgid "Test KODI notice failed to {kodi_host}" msgstr "Test KODI melding feilet til {kodi_host}" -#: sickbeard/webserve.py:1023 +#: sickbeard/webserve.py:1022 msgid "Successful test notice sent to Plex Home Theater ... {plex_clients}" msgstr "Vellykket testmelding sendt til Plex Home Theater ... {plex_clients}" -#: sickbeard/webserve.py:1025 +#: sickbeard/webserve.py:1024 msgid "Test failed for Plex Home Theater ... {plex_clients}" msgstr "Test feilet for Plex Home Theater ... {plex_clients}" -#: sickbeard/webserve.py:1028 +#: sickbeard/webserve.py:1027 msgid "Tested Plex Home Theater(s)" msgstr "Testede Plex Home Theater(s)" -#: sickbeard/webserve.py:1042 +#: sickbeard/webserve.py:1041 msgid "Successful test of Plex Media Server(s) ... {plex_servers}" msgstr "Vellykket test av Plex Media Server(e) ... {plex_servers}" -#: sickbeard/webserve.py:1044 +#: sickbeard/webserve.py:1043 msgid "Test failed, No Plex Media Server host specified" msgstr "Test feilet, Ingen Plex Media Server vert spesifisert" -#: sickbeard/webserve.py:1046 +#: sickbeard/webserve.py:1045 msgid "Test failed for Plex Media Server(s) ... {plex_servers}" msgstr "Test feilet for Plex Media Server(e) ... {plex_servers}" -#: sickbeard/webserve.py:1049 +#: sickbeard/webserve.py:1048 msgid "Tested Plex Media Server host(s)" msgstr "Testede Plex Media Server vert(er)" -#: sickbeard/webserve.py:1057 +#: sickbeard/webserve.py:1056 msgid "Tried sending desktop notification via libnotify" msgstr "Forsøkte å sende skrivebordsmelding via libnotify" -#: sickbeard/webserve.py:1066 +#: sickbeard/webserve.py:1065 msgid "Test notice sent successfully to {emby_host}" msgstr "Testmelding sendt til {emby_host}" -#: sickbeard/webserve.py:1068 +#: sickbeard/webserve.py:1067 msgid "Test notice failed to {emby_host}" msgstr "Testmelding feilet til {emby_host}" -#: sickbeard/webserve.py:1076 +#: sickbeard/webserve.py:1075 msgid "Successfully started the scan update" msgstr "Vellykket start av skanningsoppdatering" -#: sickbeard/webserve.py:1078 +#: sickbeard/webserve.py:1077 msgid "Test failed to start the scan update" msgstr "Mislykket start av skanningsoppdatering" -#: sickbeard/webserve.py:1097 +#: sickbeard/webserve.py:1096 msgid "Test notice sent successfully to {nmj2_host}" msgstr "Testmelding sendt vellykket til {nmj2_host}" -#: sickbeard/webserve.py:1099 +#: sickbeard/webserve.py:1098 msgid "Test notice failed to {nmj2_host}" msgstr "Testmelding feilet til {nmj2_host}" -#: sickbeard/webserve.py:1119 +#: sickbeard/webserve.py:1118 msgid "Trakt Authorized" msgstr "Trakt godkjent" -#: sickbeard/webserve.py:1120 +#: sickbeard/webserve.py:1119 msgid "Trakt Not Authorized!" msgstr "Trakt ikke godkjent!" -#: sickbeard/webserve.py:1184 +#: sickbeard/webserve.py:1183 msgid "Test email sent successfully! Check inbox." msgstr "Test e-post sendt! Sjekk innboks." -#: sickbeard/webserve.py:1186 +#: sickbeard/webserve.py:1185 msgid "ERROR: {last_error}" msgstr "FEIL: {last_error}" -#: sickbeard/webserve.py:1193 +#: sickbeard/webserve.py:1192 msgid "Test NMA notice sent successfully" msgstr "NMA testmelding sendt" -#: sickbeard/webserve.py:1195 +#: sickbeard/webserve.py:1194 msgid "Test NMA notice failed" msgstr "NMA testmelding mislyktes" -#: sickbeard/webserve.py:1202 +#: sickbeard/webserve.py:1201 msgid "Pushalot notification succeeded. Check your Pushalot clients to make sure it worked" msgstr "Pushalot melding lyktes. Sjekk Pushalot klientene for å være sikker på at det fungerte" -#: sickbeard/webserve.py:1204 +#: sickbeard/webserve.py:1203 msgid "Error sending Pushalot notification" msgstr "Feil ved sending av en Pushalot melding" -#: sickbeard/webserve.py:1211 +#: sickbeard/webserve.py:1210 msgid "Pushbullet notification succeeded. Check your device to make sure it worked" msgstr "Pushbullet melding lyktes. Sjekk din enhet for å se at det virket" -#: sickbeard/webserve.py:1213 sickbeard/webserve.py:1223 sickbeard/webserve.py:1232 +#: sickbeard/webserve.py:1212 sickbeard/webserve.py:1222 sickbeard/webserve.py:1231 msgid "Error sending Pushbullet notification" msgstr "Feil ved sending av Pushbullet notifikasjon" #: gui/slick/views/displayShow.mako:436 gui/slick/views/inc_home_showList.mako:174 -#: gui/slick/views/manage.mako:49 sickbeard/webserve.py:1249 +#: gui/slick/views/manage.mako:49 sickbeard/webserve.py:1248 msgid "Status" msgstr "Status" -#: sickbeard/webserve.py:1268 sickbeard/webserve.py:1297 +#: sickbeard/webserve.py:1267 sickbeard/webserve.py:1296 msgid "Restarting SickRage" msgstr "Starter SickRage på nytt" -#: sickbeard/webserve.py:1300 +#: sickbeard/webserve.py:1299 msgid "Update Failed" msgstr "Oppdatering Feilet" -#: sickbeard/webserve.py:1301 +#: sickbeard/webserve.py:1300 msgid "Update wasn't successful, not restarting. Check your log for more information." msgstr "Oppdatering ikke vellykket, starter ikke på nytt. Sjekk loggen for mer informasjon." -#: sickbeard/webserve.py:1308 +#: sickbeard/webserve.py:1307 msgid "Checking out branch" msgstr "Sjekker ut gren" -#: sickbeard/webserve.py:1311 +#: sickbeard/webserve.py:1310 msgid "Already on branch" msgstr "Allerede på gren" -#: sickbeard/webserve.py:1339 +#: sickbeard/webserve.py:1338 msgid "Invalid show ID: {show}" msgstr "Ugyldig serie ID: {show}" -#: sickbeard/webserve.py:1342 sickbeard/webserve.py:1871 sickbeard/webserve.py:2002 -#: sickbeard/webserve.py:2040 +#: sickbeard/webserve.py:1341 sickbeard/webserve.py:1870 sickbeard/webserve.py:2001 +#: sickbeard/webserve.py:2039 msgid "Show not in show list" msgstr "Serie ikke i serielisten" #: gui/slick/views/inc_rootDirs.mako:31 gui/slick/views/manage.mako:38 -#: gui/slick/views/manage_massEdit.mako:74 sickbeard/webserve.py:1358 -#: sickbeard/webserve.py:2027 +#: gui/slick/views/manage_massEdit.mako:74 sickbeard/webserve.py:1357 +#: sickbeard/webserve.py:2026 msgid "Edit" msgstr "Endre" -#: sickbeard/webserve.py:1368 +#: sickbeard/webserve.py:1367 msgid "This show is in the process of being downloaded - the info below is incomplete." msgstr "Serien lastes ned - informasjon under er ufullstendig." -#: sickbeard/webserve.py:1371 +#: sickbeard/webserve.py:1370 msgid "The information on this page is in the process of being updated." msgstr "Informasjonen på denne siden er i ferd med å bli oppdatert." -#: sickbeard/webserve.py:1374 +#: sickbeard/webserve.py:1373 msgid "The episodes below are currently being refreshed from disk" msgstr "Episodene nedenfor oppdateres fra disk" -#: sickbeard/webserve.py:1377 +#: sickbeard/webserve.py:1376 msgid "Currently downloading subtitles for this show" msgstr "Laster ned undertekster for denne serien" -#: sickbeard/webserve.py:1380 +#: sickbeard/webserve.py:1379 msgid "This show is queued to be refreshed." msgstr "Denne serien er satt i kø for å bli oppdatert." -#: sickbeard/webserve.py:1383 +#: sickbeard/webserve.py:1382 msgid "This show is queued and awaiting an update." msgstr "Denne serien er satt i kø og venter på en oppdatering." -#: sickbeard/webserve.py:1386 +#: sickbeard/webserve.py:1385 msgid "This show is queued and awaiting subtitles download." msgstr "Denne serien er satt i kø og venter på nedlasting av undertekster." -#: gui/slick/js/core.js:4081 sickbeard/webserve.py:1391 +#: gui/slick/js/core.js:4081 sickbeard/webserve.py:1390 msgid "Resume" msgstr "Gjenoppta" #: gui/slick/js/core.js:4081 gui/slick/views/viewlogs.mako:12 -#: sickbeard/webserve.py:1393 +#: sickbeard/webserve.py:1392 msgid "Pause" msgstr "Pause" #: gui/slick/views/editShow.mako:345 gui/slick/views/inc_blackwhitelist.mako:40 #: gui/slick/views/inc_blackwhitelist.mako:85 gui/slick/views/manage.mako:58 -#: gui/slick/views/manage_failedDownloads.mako:43 sickbeard/webserve.py:1395 +#: gui/slick/views/manage_failedDownloads.mako:43 sickbeard/webserve.py:1394 msgid "Remove" msgstr "Fjern" -#: sickbeard/webserve.py:1396 +#: sickbeard/webserve.py:1395 msgid "Re-scan files" msgstr "Skann filer på nytt" -#: sickbeard/webserve.py:1397 +#: sickbeard/webserve.py:1396 msgid "Force Full Update" msgstr "Tving full oppdatering" -#: sickbeard/webserve.py:1398 +#: sickbeard/webserve.py:1397 msgid "Update show in KODI" msgstr "Oppdater serie i KODI" -#: sickbeard/webserve.py:1399 +#: sickbeard/webserve.py:1398 msgid "Update show in Emby" msgstr "Oppdater serie i Emby" -#: sickbeard/webserve.py:1402 +#: sickbeard/webserve.py:1401 msgid "Hide specials" msgstr "Skjul specials" -#: sickbeard/webserve.py:1404 +#: sickbeard/webserve.py:1403 msgid "Show specials" msgstr "Vis specials" -#: sickbeard/webserve.py:1406 sickbeard/webserve.py:2030 sickbeard/webserve.py:2031 +#: sickbeard/webserve.py:1405 sickbeard/webserve.py:2029 sickbeard/webserve.py:2030 msgid "Preview Rename" msgstr "Forhåndsvis navnendring" -#: sickbeard/webserve.py:1409 +#: sickbeard/webserve.py:1408 msgid "Download Subtitles" msgstr "Last ned undertekster" -#: sickbeard/webserve.py:1498 +#: sickbeard/webserve.py:1497 msgid "No scene exceptions" msgstr "Ingen \"scene\"-unntak" -#: sickbeard/webserve.py:1516 sickbeard/webserve.py:1764 sickbeard/webserve.py:1785 +#: sickbeard/webserve.py:1515 sickbeard/webserve.py:1763 sickbeard/webserve.py:1784 msgid "Invalid show ID" msgstr "Ugyldig serie ID" -#: sickbeard/webserve.py:1525 sickbeard/webserve.py:1769 sickbeard/webserve.py:1790 +#: sickbeard/webserve.py:1524 sickbeard/webserve.py:1768 sickbeard/webserve.py:1789 msgid "Unable to find the specified show" msgstr "Finner ikke den angitte serien" -#: sickbeard/webserve.py:1550 +#: sickbeard/webserve.py:1549 msgid "Unable to retreive Fansub Groups from AniDB." msgstr "Kan ikke hente Fansub Groups fra AniDB." -#: sickbeard/webserve.py:1559 sickbeard/webserve.py:1561 +#: sickbeard/webserve.py:1558 sickbeard/webserve.py:1560 msgid "Edit Show" msgstr "Endre serie" -#: sickbeard/webserve.py:1637 sickbeard/webserve.py:1671 +#: sickbeard/webserve.py:1636 sickbeard/webserve.py:1670 msgid "Unable to refresh this show: {error}" msgstr "Kan ikke oppdatere denne serien: {error}" -#: sickbeard/webserve.py:1663 +#: sickbeard/webserve.py:1662 msgid "New location <tt>{location}</tt> does not exist" msgstr "Ny plassering <tt>{location}</tt> eksisterer ikke" -#: sickbeard/webserve.py:1688 +#: sickbeard/webserve.py:1687 msgid "Unable to update show: {error}" msgstr "Kan ikke oppdatere serie: {error}" -#: sickbeard/webserve.py:1695 +#: sickbeard/webserve.py:1694 msgid "Unable to force an update on scene exceptions of the show." msgstr "Kan ikke fremtvinge en oppdatering for \"scene\"-unntak av serien." -#: sickbeard/webserve.py:1702 +#: sickbeard/webserve.py:1701 msgid "Unable to force an update on scene numbering of the show." msgstr "Kan ikke fremtvinge en oppdatering for \"scene\"-nummerering av serien." -#: sickbeard/webserve.py:1708 sickbeard/webserve.py:3540 +#: sickbeard/webserve.py:1707 sickbeard/webserve.py:3539 msgid "{num_errors:d} error{plural} while saving changes:" msgstr "{num_errors:d} feil{plural} under lagring av endringer:" -#: sickbeard/webserve.py:1719 +#: sickbeard/webserve.py:1718 msgid "{show_name} has been {paused_resumed}" msgstr "{show_name} er {paused_resumed}" -#: sickbeard/webserve.py:1719 +#: sickbeard/webserve.py:1718 msgid "resumed" msgstr "gjenopptatt" -#: sickbeard/webserve.py:1719 +#: sickbeard/webserve.py:1718 msgid "paused" msgstr "pauset" -#: sickbeard/webserve.py:1731 +#: sickbeard/webserve.py:1730 msgid "{show_name} has been {deleted_trashed} {was_deleted}" msgstr "{show_name} er blitt {deleted_trashed} {was_deleted}" -#: sickbeard/webserve.py:1733 +#: sickbeard/webserve.py:1732 msgid "deleted" msgstr "slettet" -#: sickbeard/webserve.py:1733 +#: sickbeard/webserve.py:1732 msgid "trashed" msgstr "kastet" -#: sickbeard/webserve.py:1734 +#: sickbeard/webserve.py:1733 msgid "(media untouched)" msgstr "(media urørt)" -#: sickbeard/webserve.py:1734 +#: sickbeard/webserve.py:1733 msgid "(with all related media)" msgstr "(med all relatert media)" -#: sickbeard/webserve.py:1755 +#: sickbeard/webserve.py:1754 msgid "Unable to refresh this show." msgstr "Kan ikke oppdatere denne serien." -#: sickbeard/webserve.py:1775 +#: sickbeard/webserve.py:1774 msgid "Unable to update this show." msgstr "Kan ikke oppdatere denne serien." -#: sickbeard/webserve.py:1814 +#: sickbeard/webserve.py:1813 msgid "Library update command sent to KODI host(s)): {kodi_hosts}" msgstr "Kommando for biblioteks-oppdatering sent til KODI vert(er): {kodi_hosts}" -#: sickbeard/webserve.py:1816 +#: sickbeard/webserve.py:1815 msgid "Unable to contact one or more KODI host(s)): {kodi_hosts}" msgstr "Kan ikke kontakte en eller flere KODI vert(er)): {kodi_hosts}" -#: sickbeard/webserve.py:1825 +#: sickbeard/webserve.py:1824 msgid "Library update command sent to Plex Media Server host: {plex_server}" msgstr "Kommando for biblioteks-oppdatering sent til Plex Media Server vert: {plex_server}" -#: sickbeard/webserve.py:1828 +#: sickbeard/webserve.py:1827 msgid "Unable to contact Plex Media Server host: {plex_server}" msgstr "Kan ikke kontakte Plex Media Server vert: {plex_server}" -#: sickbeard/webserve.py:1840 +#: sickbeard/webserve.py:1839 msgid "Library update command sent to Emby host: {emby_host}" msgstr "Kommando for biblioteks-oppdatering sent til Emby vert: {emby_host}" -#: sickbeard/webserve.py:1842 +#: sickbeard/webserve.py:1841 msgid "Unable to contact Emby host: {emby_host}" msgstr "Kan ikke kontakte Emby vert: {emby_host}" -#: sickbeard/webserve.py:1852 sickbeard/webserve.py:2036 +#: sickbeard/webserve.py:1851 sickbeard/webserve.py:2035 msgid "You must specify a show and at least one episode" msgstr "Du må angi en serie og minst én episode" -#: sickbeard/webserve.py:1861 +#: sickbeard/webserve.py:1860 msgid "Invalid status" msgstr "Ugyldig status" -#: sickbeard/webserve.py:1954 +#: sickbeard/webserve.py:1953 msgid "Backlog was automatically started for the following seasons of <b>{show_name}</b>" msgstr "Backlog ble automatisk startet for følgende sesonger av <b>{show_name}</b>" #: gui/slick/views/displayShow.mako:74 gui/slick/views/displayShow.mako:79 -#: gui/slick/views/displayShow.mako:404 sickbeard/webserve.py:1961 -#: sickbeard/webserve.py:1980 +#: gui/slick/views/displayShow.mako:404 sickbeard/webserve.py:1960 +#: sickbeard/webserve.py:1979 msgid "Season" msgstr "Sesong" -#: sickbeard/webserve.py:1968 +#: sickbeard/webserve.py:1967 msgid "Backlog started" msgstr "Søk etter gjenværende episoder startet" -#: sickbeard/webserve.py:1973 +#: sickbeard/webserve.py:1972 msgid "Retrying Search was automatically started for the following season of <b>{show_name}</b>" msgstr "Prøver å søke på nytt ble automatisk startet for følgende sesong av <b>{show_name}</b>" -#: sickbeard/webserve.py:1987 +#: sickbeard/webserve.py:1986 msgid "Retry Search started" msgstr "Prøver å søke på nytt startet" -#: sickbeard/webserve.py:1997 +#: sickbeard/webserve.py:1996 msgid "You must specify a show" msgstr "Du må spesifisere en serie" -#: sickbeard/webserve.py:2007 sickbeard/webserve.py:2045 +#: sickbeard/webserve.py:2006 sickbeard/webserve.py:2044 msgid "Can't rename episodes when the show dir is missing." msgstr "Kan ikke gi nytt navn på episode når seriemappe mangler." -#: sickbeard/webserve.py:2212 sickbeard/webserve.py:2233 +#: sickbeard/webserve.py:2211 sickbeard/webserve.py:2232 msgid "New subtitles downloaded: {new_subtitle_languages}" msgstr "Nye undertekster er lastet ned: {new_subtitle_languages}" -#: sickbeard/webserve.py:2215 sickbeard/webserve.py:2236 +#: sickbeard/webserve.py:2214 sickbeard/webserve.py:2235 msgid "No subtitles downloaded" msgstr "Ingen undertekster ble lastet ned" #: gui/slick/views/config_general.mako:80 gui/slick/views/layouts/main.mako:222 -#: sickbeard/webserve.py:2363 +#: sickbeard/webserve.py:2362 msgid "IRC" msgstr "IRC" -#: sickbeard/webserve.py:2376 +#: sickbeard/webserve.py:2375 msgid "Could not load news from the repo. [Click here for news.md])({news_url})" msgstr "Kan ikke laste nyheter fra repo. [Klikk her for news.md]) ({news_url})" -#: sickbeard/webserve.py:2383 sickbeard/webserve.py:2401 +#: sickbeard/webserve.py:2382 sickbeard/webserve.py:2400 msgid "The was a problem connecting to github, please refresh and try again" msgstr "Det oppstod et problem under tilkoblingen til github. Vennligst last inn siden på nytt, og prøv igjen" -#: sickbeard/webserve.py:2398 +#: sickbeard/webserve.py:2397 msgid "Could not load changes from the repo. [Click here for CHANGES.md]({changes_url})" msgstr "Kan ikke laste endringer fra repo. [Klikk her for CHANGES.md] ({changes_url})" -#: gui/slick/views/layouts/main.mako:223 sickbeard/webserve.py:2403 +#: gui/slick/views/layouts/main.mako:223 sickbeard/webserve.py:2402 msgid "Changelog" msgstr "Endringslogg" -#: gui/slick/views/layouts/main.mako:190 sickbeard/webserve.py:2413 -#: sickbeard/webserve.py:3855 sickbeard/webserve.py:4341 +#: gui/slick/views/layouts/main.mako:190 sickbeard/webserve.py:2412 +#: sickbeard/webserve.py:3826 sickbeard/webserve.py:4312 msgid "Post Processing" msgstr "Etterbehandling" -#: gui/slick/views/layouts/main.mako:128 sickbeard/webserve.py:2445 +#: gui/slick/views/layouts/main.mako:128 sickbeard/webserve.py:2444 msgid "Add Shows" msgstr "Legg til serier" -#: sickbeard/webserve.py:2510 +#: sickbeard/webserve.py:2509 msgid "No folders selected." msgstr "Ingen valgte mapper." -#: sickbeard/webserve.py:2632 +#: sickbeard/webserve.py:2631 msgid "New Show" msgstr "Ny serie" -#: sickbeard/webserve.py:2647 +#: sickbeard/webserve.py:2646 msgid "Trending Shows" msgstr "Populære serier" -#: sickbeard/webserve.py:2649 sickbeard/webserve.py:2772 +#: sickbeard/webserve.py:2648 sickbeard/webserve.py:2771 msgid "Popular Shows" msgstr "Populære serier" -#: sickbeard/webserve.py:2651 sickbeard/webserve.py:2665 +#: sickbeard/webserve.py:2650 sickbeard/webserve.py:2664 msgid "Most Anticipated Shows" msgstr "Mest etterlengtede serier" -#: sickbeard/webserve.py:2653 +#: sickbeard/webserve.py:2652 msgid "Most Collected Shows" msgstr "Serier flest samler på" -#: sickbeard/webserve.py:2655 +#: sickbeard/webserve.py:2654 msgid "Most Watched Shows" msgstr "Serier med flest visninger" -#: sickbeard/webserve.py:2657 +#: sickbeard/webserve.py:2656 msgid "Most Played Shows" msgstr "Serier som er mest spilt" -#: sickbeard/webserve.py:2659 +#: sickbeard/webserve.py:2658 msgid "Recommended Shows" msgstr "Anbefalte serier" -#: gui/slick/views/addShows_trendingShows.mako:60 sickbeard/webserve.py:2661 +#: gui/slick/views/addShows_trendingShows.mako:60 sickbeard/webserve.py:2660 msgid "New Shows" msgstr "Nye serier" -#: gui/slick/views/addShows_trendingShows.mako:61 sickbeard/webserve.py:2663 +#: gui/slick/views/addShows_trendingShows.mako:61 sickbeard/webserve.py:2662 msgid "Season Premieres" msgstr "Sesongpremierer" -#: sickbeard/webserve.py:2792 sickbeard/webserve.py:2793 +#: sickbeard/webserve.py:2791 sickbeard/webserve.py:2792 msgid "Existing Show" msgstr "Eksisterende serier" -#: sickbeard/webserve.py:2871 +#: sickbeard/webserve.py:2870 msgid "No root directories setup, please go back and add one." msgstr "Ingen rotmappe konfigurert, vennligst gå tilbake og legg til en." -#: sickbeard/webserve.py:2883 sickbeard/webserve.py:3002 +#: sickbeard/webserve.py:2882 sickbeard/webserve.py:3001 msgid "Show added" msgstr "Serie lagt til" -#: sickbeard/webserve.py:2883 +#: sickbeard/webserve.py:2882 msgid "Adding the specified show {show_name}" msgstr "Legger til serie {show_name}" -#: sickbeard/webserve.py:2924 +#: sickbeard/webserve.py:2923 msgid "Missing params, no Indexer ID or folder: {show_to_add} and {root_dir}/{show_path}" msgstr "Manglende parametere, ingen indekserer-ID eller mappe: {show_to_add} og {root_dir}/{show_path}" -#: sickbeard/webserve.py:2933 +#: sickbeard/webserve.py:2932 msgid "Unknown error. Unable to add show due to problem with show selection." msgstr "Ukjent feil. Kan ikke legge til serie på grunn av problem med serie-valg." -#: sickbeard/webserve.py:2957 sickbeard/webserve.py:2967 +#: sickbeard/webserve.py:2956 sickbeard/webserve.py:2966 msgid "Unable to add show" msgstr "Kan ikke legge til serie" -#: sickbeard/webserve.py:2957 +#: sickbeard/webserve.py:2956 msgid "Folder {show_dir} exists already" msgstr "Mappe {show_dir} finnes allerede" -#: sickbeard/webserve.py:2968 +#: sickbeard/webserve.py:2967 msgid "Unable to create the folder {show_dir}, can't add the show" msgstr "Kan ikke lage mappe {show_dir}, kan ikke legge til serie" -#: sickbeard/webserve.py:3002 +#: sickbeard/webserve.py:3001 msgid "Adding the specified show into {show_dir}" msgstr "Legger til serie i mappe {show_dir}" -#: sickbeard/webserve.py:3078 +#: sickbeard/webserve.py:3077 msgid "Shows Added" msgstr "Serie lagt til" -#: sickbeard/webserve.py:3079 +#: sickbeard/webserve.py:3078 msgid "Automatically added {num_shows} from their existing metadata files" msgstr "Automatisk lagt til {num_shows} fra eksisterende metadatafiler" -#: gui/slick/views/layouts/main.mako:153 sickbeard/webserve.py:3096 +#: gui/slick/views/layouts/main.mako:153 sickbeard/webserve.py:3095 msgid "Mass Update" msgstr "Masseoppdatering" -#: sickbeard/webserve.py:3134 sickbeard/webserve.py:3161 sickbeard/webserve.py:3237 -#: sickbeard/webserve.py:3238 +#: sickbeard/webserve.py:3133 sickbeard/webserve.py:3160 sickbeard/webserve.py:3236 +#: sickbeard/webserve.py:3237 msgid "Episode Overview" msgstr "Episodeoversikt" -#: sickbeard/webserve.py:3270 +#: sickbeard/webserve.py:3269 msgid "Missing Subtitles" msgstr "Mangler undertekster" -#: gui/slick/views/layouts/main.mako:154 sickbeard/webserve.py:3356 -#: sickbeard/webserve.py:3357 +#: gui/slick/views/layouts/main.mako:154 sickbeard/webserve.py:3355 +#: sickbeard/webserve.py:3356 msgid "Backlog Overview" msgstr "Backlog Oversikt" -#: sickbeard/webserve.py:3481 +#: sickbeard/webserve.py:3480 msgid "Mass Edit" msgstr "Masseredigering" -#: sickbeard/webserve.py:3586 +#: sickbeard/webserve.py:3585 msgid "Unable to update show: {excption_format}" msgstr "Kan ikke oppdatere serie: {excption_format}" -#: sickbeard/webserve.py:3594 +#: sickbeard/webserve.py:3593 msgid "Unable to refresh show {show_name}: {excption_format}" msgstr "Kan ikke oppdatere serie {show_name}: {excption_format}" -#: sickbeard/webserve.py:3605 +#: sickbeard/webserve.py:3604 msgid "Errors encountered" msgstr "Feil oppstått" -#: gui/slick/views/config_general.mako:261 sickbeard/webserve.py:3611 +#: gui/slick/views/config_general.mako:261 sickbeard/webserve.py:3610 msgid "Updates" msgstr "Oppdateringer" -#: sickbeard/webserve.py:3616 +#: sickbeard/webserve.py:3615 msgid "Refreshes" msgstr "Oppfrisker" -#: sickbeard/webserve.py:3621 +#: sickbeard/webserve.py:3620 msgid "Renames" msgstr "Navneendringer" #: gui/slick/views/displayShow.mako:260 gui/slick/views/displayShow.mako:435 #: gui/slick/views/editShow.mako:119 gui/slick/views/inc_addShowOptions.mako:20 -#: gui/slick/views/manage_massEdit.mako:262 sickbeard/webserve.py:3626 -#: sickbeard/webserve.py:5244 +#: gui/slick/views/manage_massEdit.mako:262 sickbeard/webserve.py:3625 +#: sickbeard/webserve.py:5215 msgid "Subtitles" msgstr "Undertekster" -#: sickbeard/webserve.py:3631 +#: sickbeard/webserve.py:3630 msgid "The following actions were queued" msgstr "Følgende handlinger ble lagt i kø" -#: sickbeard/webserve.py:3651 -msgid "For best results please set the Download Station alias as" -msgstr "For best resultat bør du sette Download Station alias til" - -#: sickbeard/webserve.py:3652 -msgid "You can check this setting in the Synology DSM" -msgstr "Du kan kontrollere denne innstillingen i Synology DSM" - -#: sickbeard/webserve.py:3652 sickbeard/webserve.py:3654 -msgid "Control Panel" -msgstr "Kontrollpanel" - -#: sickbeard/webserve.py:3652 -msgid "Application Portal" -msgstr "Applikasjonsportal" - -#: sickbeard/webserve.py:3653 -msgid "Make sure you allow DSM to be embedded with iFrames too in" -msgstr "Sørg for at du tillater at DSM kan bygges inn med iFrames også i" - -#: sickbeard/webserve.py:3654 -msgid "DSM Settings" -msgstr "DSM innstillinger" - -#: sickbeard/webserve.py:3654 -msgid "Security" -msgstr "Sikkerhet" - -#: gui/slick/views/layouts/main.mako:167 sickbeard/webserve.py:3662 -msgid "Manage Torrents" -msgstr "Behandle torrents" - -#: gui/slick/views/layouts/main.mako:170 sickbeard/webserve.py:3683 +#: gui/slick/views/layouts/main.mako:170 sickbeard/webserve.py:3654 msgid "Failed Downloads" msgstr "Mislykkede nedlastinger" -#: gui/slick/views/layouts/main.mako:155 sickbeard/webserve.py:3701 +#: gui/slick/views/layouts/main.mako:155 sickbeard/webserve.py:3672 msgid "Manage Searches" msgstr "Behandle søk" -#: sickbeard/webserve.py:3709 +#: sickbeard/webserve.py:3680 msgid "Backlog search started" msgstr "Backlog-søk startet" -#: sickbeard/webserve.py:3719 +#: sickbeard/webserve.py:3690 msgid "Daily search started" msgstr "Daglig søk startet" -#: sickbeard/webserve.py:3728 +#: sickbeard/webserve.py:3699 msgid "Find propers search started" msgstr "Finn Propers-søk startet" -#: sickbeard/webserve.py:3737 +#: sickbeard/webserve.py:3708 msgid "Subtitle search started" msgstr "Undertekstsøk startet" -#: sickbeard/webserve.py:3801 +#: sickbeard/webserve.py:3772 msgid "Remove Selected" msgstr "Fjern markerte" -#: sickbeard/webserve.py:3802 +#: sickbeard/webserve.py:3773 msgid "Clear History" msgstr "Tøm historikken" -#: sickbeard/webserve.py:3803 +#: sickbeard/webserve.py:3774 msgid "Trim History" msgstr "Trim historikk" -#: sickbeard/webserve.py:3823 +#: sickbeard/webserve.py:3794 msgid "Selected history entries removed" msgstr "De markerte historikklinjene ble slettet" -#: sickbeard/webserve.py:3830 +#: sickbeard/webserve.py:3801 msgid "History cleared" msgstr "Historikk tømt" -#: sickbeard/webserve.py:3837 +#: sickbeard/webserve.py:3808 msgid "Removed history entries older than 30 days" msgstr "Fjernet historikk som er eldre enn 30 dager" -#: gui/slick/views/layouts/main.mako:185 sickbeard/webserve.py:3850 +#: gui/slick/views/layouts/main.mako:185 sickbeard/webserve.py:3821 msgid "General" msgstr "Generelt" -#: sickbeard/webserve.py:3851 sickbeard/webserve.py:4143 +#: sickbeard/webserve.py:3822 sickbeard/webserve.py:4114 msgid "Backup/Restore" msgstr "Sikkerhetskopier/Gjenopprett" -#: gui/slick/views/layouts/main.mako:187 sickbeard/webserve.py:3852 -#: sickbeard/webserve.py:4206 +#: gui/slick/views/layouts/main.mako:187 sickbeard/webserve.py:3823 +#: sickbeard/webserve.py:4177 msgid "Search Settings" msgstr "Søke instillinger" -#: gui/slick/views/layouts/main.mako:188 sickbeard/webserve.py:3853 -#: sickbeard/webserve.py:4518 +#: gui/slick/views/layouts/main.mako:188 sickbeard/webserve.py:3824 +#: sickbeard/webserve.py:4489 msgid "Search Providers" msgstr "Søkeleverandører" -#: gui/slick/views/layouts/main.mako:189 sickbeard/webserve.py:3854 +#: gui/slick/views/layouts/main.mako:189 sickbeard/webserve.py:3825 msgid "Subtitles Settings" msgstr "Undertekst innstillinger" -#: gui/slick/views/layouts/main.mako:191 sickbeard/webserve.py:3856 -#: sickbeard/webserve.py:4964 +#: gui/slick/views/layouts/main.mako:191 sickbeard/webserve.py:3827 +#: sickbeard/webserve.py:4935 msgid "Notifications" msgstr "Varsler" @@ -1240,142 +1237,142 @@ msgstr "Varsler" #: gui/slick/views/home.mako:35 gui/slick/views/inc_addShowOptions.mako:79 #: gui/slick/views/inc_home_showList.mako:179 gui/slick/views/layouts/main.mako:192 #: gui/slick/views/manage.mako:44 gui/slick/views/manage_massEdit.mako:202 -#: sickbeard/webserve.py:3857 sickbeard/webserve.py:5309 +#: sickbeard/webserve.py:3828 sickbeard/webserve.py:5280 msgid "Anime" msgstr "Anime" -#: sickbeard/webserve.py:3895 sickbeard/webserve.py:3896 +#: sickbeard/webserve.py:3866 sickbeard/webserve.py:3867 msgid "SickRage Configuration" msgstr "SickRage konfigurasjon" -#: sickbeard/webserve.py:3910 +#: sickbeard/webserve.py:3881 msgid "Config - Shares" -msgstr "" +msgstr "Konfigurasjon - Delte ressurser" -#: sickbeard/webserve.py:3910 +#: sickbeard/webserve.py:3881 msgid "Windows Shares Configuration" -msgstr "" +msgstr "Windows - Konfigurasjon av delte ressurser" -#: sickbeard/webserve.py:3937 +#: sickbeard/webserve.py:3908 msgid "Saved Shares" -msgstr "" +msgstr "Lagrede delte ressurser" -#: sickbeard/webserve.py:3937 +#: sickbeard/webserve.py:3908 msgid "Your Windows share settings have been saved" -msgstr "" +msgstr "Dine innstillinger for delte ressurser har blitt lagret" -#: sickbeard/webserve.py:3948 +#: sickbeard/webserve.py:3919 msgid "Config - General" msgstr "Konfigurasjon - Generelt" -#: sickbeard/webserve.py:3948 +#: sickbeard/webserve.py:3919 msgid "General Configuration" msgstr "Generell Konfigurasjon" -#: sickbeard/webserve.py:3988 +#: sickbeard/webserve.py:3959 msgid "Saved Defaults" msgstr "Standardinnstillinger lagret" -#: sickbeard/webserve.py:3988 +#: sickbeard/webserve.py:3959 msgid "Your \"add show\" defaults have been set to your current selections." msgstr "Standardinnstillinger for \"Legg til serie\" har blitt satt til ditt nåværende valg." -#: sickbeard/webserve.py:4095 +#: sickbeard/webserve.py:4066 msgid "Unable to create directory {directory}, log directory not changed." msgstr "Kan ikke opprette mappen {directory}, loggmappen ikke endret." -#: sickbeard/webserve.py:4103 +#: sickbeard/webserve.py:4074 msgid "Unable to create directory {directory}, https cert directory not changed." msgstr "Kan ikke opprette mappen {directory}, https sertifikat-mappe ikke endret." -#: sickbeard/webserve.py:4107 +#: sickbeard/webserve.py:4078 msgid "Unable to create directory {directory}, https key directory not changed." msgstr "Kan ikke opprette mappen {directory}, https nøkkel-mappe ikke endret." -#: sickbeard/webserve.py:4126 sickbeard/webserve.py:4324 sickbeard/webserve.py:4456 -#: sickbeard/webserve.py:5227 +#: sickbeard/webserve.py:4097 sickbeard/webserve.py:4295 sickbeard/webserve.py:4427 +#: sickbeard/webserve.py:5198 msgid "Error(s) Saving Configuration" msgstr "Feil ved lagring av konfigurasjon" -#: sickbeard/webserve.py:4129 sickbeard/webserve.py:4327 sickbeard/webserve.py:4458 -#: sickbeard/webserve.py:4950 sickbeard/webserve.py:5230 sickbeard/webserve.py:5294 -#: sickbeard/webserve.py:5323 +#: sickbeard/webserve.py:4100 sickbeard/webserve.py:4298 sickbeard/webserve.py:4429 +#: sickbeard/webserve.py:4921 sickbeard/webserve.py:5201 sickbeard/webserve.py:5265 +#: sickbeard/webserve.py:5294 msgid "Configuration Saved" msgstr "Konfigurasjon lagret" -#: sickbeard/webserve.py:4142 +#: sickbeard/webserve.py:4113 msgid "Config - Backup/Restore" msgstr "Konfigurasjon - sikkerhetskopiering/gjenoppretting" -#: sickbeard/webserve.py:4205 +#: sickbeard/webserve.py:4176 msgid "Config - Episode Search" msgstr "Konfigurasjon - Episodesøk" -#: sickbeard/webserve.py:4340 +#: sickbeard/webserve.py:4311 msgid "Config - Post Processing" msgstr "Konfigurasjon - etterbehandling" -#: sickbeard/webserve.py:4380 +#: sickbeard/webserve.py:4351 msgid "Unpacking Not Supported, disabling unpack setting" msgstr "Utpakking støttes ikke, deaktiverer innstilling for utpakking" -#: sickbeard/webserve.py:4431 +#: sickbeard/webserve.py:4402 msgid "You tried saving an invalid normal naming config, not saving your naming settings" msgstr "Du prøvde å lagre en ugyldig navngivingskonfigurasjon, lagrer ikke innstillingene for navngiving" -#: sickbeard/webserve.py:4439 +#: sickbeard/webserve.py:4410 msgid "You tried saving an invalid anime naming config, not saving your naming settings" msgstr "Du prøvde å lagre en ugyldig anime navngivingskonfigurasjon, lagrer ikke innstillingene for navngiving" -#: sickbeard/webserve.py:4517 +#: sickbeard/webserve.py:4488 msgid "Config - Providers" msgstr "Konfigurasjon - søkeleverandører" -#: sickbeard/webserve.py:4547 +#: sickbeard/webserve.py:4518 msgid "No Provider Name specified" msgstr "Ingen søkeleverandør spesifisert" -#: sickbeard/webserve.py:4549 +#: sickbeard/webserve.py:4520 msgid "No Provider Url specified" msgstr "Ingen søkeleverandør url spesifisert" -#: sickbeard/webserve.py:4551 +#: sickbeard/webserve.py:4522 msgid "No Provider Api key specified" msgstr "Ingen søkeleverandør API-nøkkel spesifisert" -#: sickbeard/webserve.py:4963 +#: sickbeard/webserve.py:4934 msgid "Config - Notifications" msgstr "Konfiguration - meldinger" -#: sickbeard/webserve.py:5243 +#: sickbeard/webserve.py:5214 msgid "Config - Subtitles" msgstr "Konfigurasjon - Undertekster" -#: sickbeard/webserve.py:5308 +#: sickbeard/webserve.py:5279 msgid "Config - Anime" msgstr "Konfigurasjon - Anime" -#: sickbeard/webserve.py:5336 +#: sickbeard/webserve.py:5307 msgid "Clear Errors" msgstr "Fjern feilmeldinger" -#: sickbeard/webserve.py:5342 +#: sickbeard/webserve.py:5313 msgid "Clear Warnings" msgstr "Fjern advarsler" -#: sickbeard/webserve.py:5348 +#: sickbeard/webserve.py:5319 msgid "Submit Errors" msgstr "Send inn feil" -#: sickbeard/webserve.py:5363 +#: sickbeard/webserve.py:5334 msgid "Logs & Errors" msgstr "Logger & feil" -#: sickbeard/webserve.py:5388 +#: sickbeard/webserve.py:5359 msgid "Log File" msgstr "Loggfil" -#: sickbeard/webserve.py:5388 +#: sickbeard/webserve.py:5359 msgid "Logs" msgstr "Logg" @@ -1383,30 +1380,166 @@ msgstr "Logg" msgid "This is a test notification from SickRage" msgstr "Dette er en testmelding fra SickRage" -#: gui/slick/js/core.js:481 gui/slick/js/core.js:502 gui/slick/js/core.js:524 -#: gui/slick/js/core.js:548 gui/slick/js/core.js:573 gui/slick/js/core.js:596 -#: gui/slick/js/core.js:625 gui/slick/js/core.js:645 gui/slick/js/core.js:690 -#: gui/slick/js/core.js:769 gui/slick/js/core.js:829 gui/slick/js/core.js:849 -#: gui/slick/js/core.js:879 gui/slick/js/core.js:909 gui/slick/js/core.js:969 -#: gui/slick/js/core.js:1046 gui/slick/js/core.js:1066 gui/slick/js/core.js:1085 +#: gui/slick/js/browser.js:6 +msgid "Choose Directory" +msgstr "" + +#: gui/slick/js/core.js:443 +msgid "Select log file folder location" +msgstr "" + +#: gui/slick/js/core.js:445 +msgid "Select CSS file" +msgstr "" + +#: gui/slick/js/core.js:469 +msgid "Select backup folder to save to" +msgstr "" + +#: gui/slick/js/core.js:470 +msgid "Select backup files to restore" +msgstr "" + +#: gui/slick/js/core.js:479 gui/slick/js/core.js:500 gui/slick/js/core.js:522 +#: gui/slick/js/core.js:546 gui/slick/js/core.js:571 gui/slick/js/core.js:594 +#: gui/slick/js/core.js:623 gui/slick/js/core.js:643 gui/slick/js/core.js:688 +#: gui/slick/js/core.js:767 gui/slick/js/core.js:827 gui/slick/js/core.js:847 +#: gui/slick/js/core.js:877 gui/slick/js/core.js:907 gui/slick/js/core.js:967 +#: gui/slick/js/core.js:1044 gui/slick/js/core.js:1064 gui/slick/js/core.js:1083 msgid "Please fill out the necessary fields above." +msgstr "Vennligst fyll ut de nødvendige feltene over." + +#: gui/slick/js/core.js:680 +msgid "<b>Step 1:</b> Confirm Authorization" +msgstr "" + +#: gui/slick/js/core.js:977 +msgid "Check blacklist name; the value needs to be a trakt slug" +msgstr "" + +#: gui/slick/js/core.js:1022 +msgid "You must provide a recipient email address!" +msgstr "" + +#: gui/slick/js/core.js:1107 +msgid "You didn't supply a Pushbullet api key" +msgstr "" + +#: gui/slick/js/core.js:1133 gui/slick/js/core.js:1162 +msgid "Don't forget to save your new pushbullet settings." +msgstr "" + +#: gui/slick/js/core.js:1262 +msgid "Select TV Download Directory" msgstr "" -#: gui/slick/js/core.js:1328 gui/slick/js/core.js:1378 gui/slick/js/core.js:1427 -#: gui/slick/js/core.js:1493 +#: gui/slick/js/core.js:1263 +msgid "Select Unpack Directory" +msgstr "" + +#: gui/slick/js/core.js:1326 gui/slick/js/core.js:1376 gui/slick/js/core.js:1425 +#: gui/slick/js/core.js:1491 msgid "This pattern is invalid." msgstr "Dette mønsteret er ugyldig." -#: gui/slick/js/core.js:1336 gui/slick/js/core.js:1386 gui/slick/js/core.js:1435 -#: gui/slick/js/core.js:1501 +#: gui/slick/js/core.js:1334 gui/slick/js/core.js:1384 gui/slick/js/core.js:1433 +#: gui/slick/js/core.js:1499 msgid "This pattern would be invalid without the folders, using it will force \"Season Folders\" on for all shows." msgstr "Dette mønsteret vil kun fungere uten mapper, bruker du det vil det slå på \"Sesongmapper\" for alle serier." -#: gui/slick/js/core.js:1344 gui/slick/js/core.js:1394 gui/slick/js/core.js:1443 -#: gui/slick/js/core.js:1509 +#: gui/slick/js/core.js:1342 gui/slick/js/core.js:1392 gui/slick/js/core.js:1441 +#: gui/slick/js/core.js:1507 msgid "This pattern is valid." msgstr "Dette mønsteret er gyldig." +#: gui/slick/js/core.js:1818 +msgid "Select .nzb black hole/watch location" +msgstr "" + +#: gui/slick/js/core.js:1819 +msgid "Select .torrent black hole/watch location" +msgstr "" + +#: gui/slick/js/core.js:1820 +msgid "Select .torrent download location" +msgstr "" + +#: gui/slick/js/core.js:1900 +msgid "Minimum seeding time is" +msgstr "" + +#: gui/slick/js/core.js:1902 +msgid "URL to your uTorrent client (e.g. http://localhost:8000)" +msgstr "" + +#: gui/slick/js/core.js:1905 +msgid "Stop seeding when inactive for" +msgstr "" + +#: gui/slick/js/core.js:1911 +msgid "URL to your Transmission client (e.g. http://localhost:9091)" +msgstr "" + +#: gui/slick/js/core.js:1921 +msgid "URL to your Deluge client (e.g. http://localhost:8112)" +msgstr "" + +#: gui/slick/js/core.js:1930 +msgid "IP or Hostname of your Deluge Daemon (e.g. scgi://localhost:58846)" +msgstr "" + +#: gui/slick/js/core.js:1937 +msgid "URL to your Synology DS client (e.g. http://localhost:5000)" +msgstr "" + +#: gui/slick/js/core.js:1941 +msgid "URL to your rTorrent client (e.g. scgi://localhost:5000 <br> or https://localhost/rutorrent/plugins/httprpc/action.php)" +msgstr "" + +#: gui/slick/js/core.js:1952 +msgid "URL to your qBittorrent client (e.g. http://localhost:8080)" +msgstr "" + +#: gui/slick/js/core.js:1962 +msgid "URL to your MLDonkey (e.g. http://localhost:4080)" +msgstr "" + +#: gui/slick/js/core.js:1974 +msgid "URL to your putio client (e.g. http://localhost:8080)" +msgstr "" + +#: gui/slick/js/core.js:1975 +msgid "<a herf=\"https://app.put.io/oauth/apps/new\" target=\"_blank\"> Create a new OAuth app for put.io</a>" +msgstr "" + +#: gui/slick/js/core.js:1977 +msgid "Put.io Parent Folder" +msgstr "" + +#: gui/slick/js/core.js:1978 +msgid "Put.io OAuth Token" +msgstr "" + +#: gui/slick/js/core.js:3383 gui/slick/views/displayShow.mako:410 +msgid "Show Episodes" +msgstr "Episoder" + +#: gui/slick/js/core.js:3388 gui/slick/views/displayShow.mako:408 +msgid "Hide Episodes" +msgstr "Skjul episoder" + +#: gui/slick/js/core.js:3396 +msgid "Select Show Location" +msgstr "" + +#: gui/slick/js/core.js:3460 +msgid "Select Unprocessed Episode Folder" +msgstr "" + +#: gui/slick/js/core.js:3790 +msgid "DELETED" +msgstr "" + #: gui/slick/js/core.js:4082 msgid "Resume updating the log on this page." msgstr "Gjenoppta loggoppdatering på denne siden." @@ -1415,6 +1548,26 @@ msgstr "Gjenoppta loggoppdatering på denne siden." msgid "Pause updating the log on this page." msgstr "Sett loggoppdatering på denne siden på pause." +#: gui/slick/js/core.js:4323 +msgid "searching {searchingFor}..." +msgstr "" + +#: gui/slick/js/core.js:4334 +msgid "search timed out, try again or try another indexer" +msgstr "" + +#: gui/slick/js/core.js:4503 +msgid "loading folders..." +msgstr "" + +#: gui/slick/js/parsers.js:7 gui/slick/js/parsers.js:8 +#: gui/slick/js/plotTooltip.js:6 gui/slick/js/sceneExceptionsTooltip.js:6 +#: gui/slick/views/inc_home_showList.mako:209 +#: gui/slick/views/inc_home_showList.mako:215 +#: gui/slick/views/inc_home_showList.mako:231 +msgid "Loading..." +msgstr "Laster..." + #: gui/slick/views/404.mako:5 msgid "You have reached this page by accident, please check the url." msgstr "Du har kommet til denne siden ved en tilfeldighet, vennligst kontroller URL-adressen." @@ -2174,19 +2327,19 @@ msgstr "gjennomsiktighet til fanart-bakgrunnen" #: gui/slick/views/config_general.mako:446 msgid "Use a custom stylesheet file" -msgstr "" +msgstr "Bruk en egendefinert stilark-fil" #: gui/slick/views/config_general.mako:451 msgid "use a custom .css file to style SickRage (for advanced users)" -msgstr "" +msgstr "bruk en egendefinert CSS-fil for å forandre utseende på SickRage (for avanserte brukere)" #: gui/slick/views/config_general.mako:457 msgid "Stylesheet File Path" -msgstr "" +msgstr "Stilark filbane" #: gui/slick/views/config_general.mako:468 msgid "Path to the stylesheet (.css) file" -msgstr "" +msgstr "Bane til stilark (CSS-filen)" #: gui/slick/views/config_general.mako:477 msgid "Show all seasons" @@ -3272,11 +3425,11 @@ msgstr "Pushover API-nøkkel" #: gui/slick/views/config_notifications.mako:1444 #: gui/slick/views/config_notifications.mako:2297 msgid "click here" -msgstr "" +msgstr "klikk her" #: gui/slick/views/config_notifications.mako:1444 msgid " to create a Pushover API key" -msgstr "" +msgstr " for å lage en Pushover API-nøkkel" #: gui/slick/views/config_notifications.mako:1452 msgid "Pushover devices" @@ -3607,7 +3760,7 @@ msgstr "spesifikk enhets-id" #: gui/slick/views/config_notifications.mako:2297 msgid " to create a Join API key" -msgstr "" +msgstr " for å lage en Delta API-nøkkel" #: gui/slick/views/config_notifications.mako:2328 msgid "Twilio" @@ -5378,27 +5531,27 @@ msgstr "Test tilkoblingen" #: gui/slick/views/config_shares.mako:11 msgid "Windows Shares" -msgstr "" +msgstr "Windows delte ressurser" #: gui/slick/views/config_shares.mako:12 msgid "Defines your existing windows shares so that we can add them to the browse dialog" -msgstr "" +msgstr "Definerer de eksisterende windows ressursene slik at vi kan legge dem til søkedialogboksen" #: gui/slick/views/config_shares.mako:22 msgid "Share #{number}" -msgstr "" +msgstr "Ressurs #{number}" #: gui/slick/views/config_shares.mako:27 msgid "Share label" -msgstr "" +msgstr "Ressurs etikett" #: gui/slick/views/config_shares.mako:31 msgid "Hostname or IP" -msgstr "" +msgstr "Vertsnavn eller IP" #: gui/slick/views/config_shares.mako:35 msgid "Share path" -msgstr "" +msgstr "Bane til ressurs" #: gui/slick/views/config_subtitles.mako:30 #: gui/slick/views/config_subtitles.mako:43 @@ -5719,14 +5872,6 @@ msgstr "Endre valgte episoder til" msgid "Select Columns" msgstr "Velg Kolonner" -#: gui/slick/views/displayShow.mako:408 -msgid "Hide Episodes" -msgstr "Skjul episoder" - -#: gui/slick/views/displayShow.mako:410 -msgid "Show Episodes" -msgstr "Episoder" - #: gui/slick/views/displayShow.mako:424 msgid "NFO" msgstr "NFO" @@ -6245,12 +6390,6 @@ msgstr "Aktiv" msgid "loading" msgstr "laster inn" -#: gui/slick/views/inc_home_showList.mako:209 -#: gui/slick/views/inc_home_showList.mako:215 -#: gui/slick/views/inc_home_showList.mako:231 -msgid "Loading..." -msgstr "Laster..." - #: gui/slick/views/inc_qualityChooser.mako:31 msgid "<p><b><u>Preferred</u></b> qualities will replace those in <b><u>allowed</u></b>, even if they are lower.</p>" msgstr "<p><b><u>Foretrukne</u></b> kvaliteter erstatter de i <b><u>tillate</u></b> kvaliteter, selv om de er lavere.</p>" @@ -6788,6 +6927,10 @@ msgstr "Oppdater KODI" msgid "Update Emby" msgstr "Oppdater Emby" +#: gui/slick/views/layouts/main.mako:167 +msgid "Manage Torrents" +msgstr "Behandle torrents" + #: gui/slick/views/layouts/main.mako:173 msgid "Missed Subtitle Management" msgstr "Manglende undertekst håndtering" diff --git a/locale/pl_PL/LC_MESSAGES/messages.json b/locale/pl_PL/LC_MESSAGES/messages.json index 9d91e4e673a112795f4c96ba3fda33c8526cfd61..fec45ad5ee97aa72199f63f2425cca7b3b36ab9e 100644 --- a/locale/pl_PL/LC_MESSAGES/messages.json +++ b/locale/pl_PL/LC_MESSAGES/messages.json @@ -1 +1 @@ -{"messages":{"domain":"messages","locale_data":{"messages":{"100":[null,"100"],"250":[null,"250"],"500":[null,"500"],"":{"domain":"messages","plural_forms":"nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);","lang":"pl_PL"},"Drama":[null,"Dramat"],"Mystery":[null,"Tajemnica"],"Science-Fiction":[null,"Science-Fiction"],"Crime":[null,"Kryminał"],"Action":[null,"Akcja"],"Comedy":[null,"Komedia"],"Thriller":[null,"Dreszczowiec"],"Animation":[null,"Animacja"],"Family":[null,"Rodzinny"],"Fantasy":[null,"Fantastyka"],"Adventure":[null,"Przygodowy"],"Horror":[null,"Horror"],"Film-Noir":[null,"Film Noir"],"Sci-Fi":[null,"Sci-Fi"],"Romance":[null,"Romans"],"Sport":[null,"Sport"],"War":[null,"Wojenny"],"Biography":[null,"Biograficzny"],"History":[null,"Historia"],"Music":[null,"Muzyczny"],"Western":[null,"Western"],"News":[null,"Aktualności"],"Sitcom":[null,"Serial"],"Reality-TV":[null,"Reality-TV"],"Documentary":[null,"Dokumentalny"],"Game-Show":[null,"Teleturniej"],"Musical":[null,"Muzykal"],"Talk-Show":[null,"Talkshow"],"Started Download":[null,"Rozpoczęto pobieranie"],"Download Finished":[null,"Pobieranie zakończone"],"Subtitle Download Finished":[null,"Pobieranie napisów zakończono"],"SickRage Updated":[null,"Zaktualizowano SickRage"],"SickRage Updated To Commit#: ":[null,"SickRage zaktualizowany do Commit#: "],"SickRage new login":[null,"Nowy login SickRage"],"New login from IP: {0}. http://geomaplookup.net/?ip={0}":[null,"Nowe logowanie z IP: {0}. http://geomaplookup.net/?ip={0}"],"Repeat":[null,"Powrórka"],"Repeat (Separated)":[null,"Powtórka (podzielona)"],"Extend":[null,"Rozszerzony"],"Extend (Limited)":[null,"Rozszerzony (Ograniczony)"],"Extend (Limited, E-prefixed)":[null,"Rozszerz (ograniczone, poprzedzone E)"],"Downloaded":[null,"Pobrano"],"Snatched":[null,"Złapano"],"Snatched (Proper)":[null,"Złapano (Proper)"],"Failed":[null,"Nie powiodło się"],"Snatched (Best)":[null,"Złapano (Best)"],"Archived":[null,"Zarchiwizowano"],"Unknown":[null,"Nieznane"],"Unaired":[null,"Nie emitowany"],"Skipped":[null,"Pominięto"],"Wanted":[null,"Porządany"],"Ignored":[null,"Zignorowano"],"Subtitled":[null,"Z napisami"],"<No Filter>":[null,"< brak filtra >"],"Daily Searcher":[null,"Codzienne wyszukiwanie"],"Backlog":[null,"Zaległości"],"Show Updater":[null,"Aktualizator serialu"],"Check Version":[null,"Sprawdzanie wersji"],"Show Queue":[null,"Kolejka programów"],"Search Queue (All)":[null,"Przeszukaj kolejkę (wszystkie)"],"Search Queue (Daily Searcher)":[null,"Przeszukaj kolejkę (codzienne wyszukiwanie)"],"Search Queue (Backlog)":[null,"Przeszukaj kolejkę (zaległości)"],"Search Queue (Manual)":[null,"Przeszukaj kolejkę (ręcznie)"],"Search Queue (Retry/Failed)":[null,"Kolejka wyszukiwania (Prób/Porażek)"],"Search Queue (RSS)":[null,"Kolejka wyszukiwania (RSS)"],"Find Propers":[null,"Znajdź właściwe"],"Postprocessor":[null,""],"Find Subtitles":[null,"Znajdź napisy"],"Trakt Checker":[null,"Sprawdź na Trakt"],"Event":[null,"Zdarzenie"],"Error":[null,"Błąd"],"Tornado":[null,"Tornado"],"Thread":[null,"Wątek"],"Main":[null,"Główny"],"Loading":[null,""],"New update found for SickRage, starting auto-updater":[null,"Znaleziono nową wersję SickRage, uruchamianie automatycznej aktualizacji"],"Update was successful":[null,"Aktualizacja przebiegła pomyślne"],"Update failed!":[null,"Aktualizacja nie powiodła się!"],"Backup":[null,"Kopia zapasowa"],"Config backup in progress...":[null,"Zapisywanie kopii zapasowej konfiguracji..."],"Config backup successful, updating...":[null,"Zapisano kopię zapasową konfiguracji, aktualizowanie..."],"Config backup failed, aborting update":[null,"Nie udało się zapisać kopii zapasowej konfiguracji, przerywanie aktualizacji"],"No update needed":[null,"Aktualizacja nie jest potrzebna"],"Mako Error":[null,"Błąd mako"],"Oops":[null,"Ups"],"Wrong API key used":[null,"Używano nieprawidłowego klucza API"],"Login":[null,"Logowanie"],"API Key not generated":[null,"Nie wygenerowano klucza API"],"API Builder":[null,"API Builder"],"Schedule":[null,"Harmonogram"],"Test 1":[null,"Test 1"],"This is test number 1":[null,"To jest test numer 1"],"Test 2":[null,"Test 2"],"This is test number 2":[null,"To jest test numer 2"],"You're using the {branch} branch. Please use 'master' unless specifically asked":[null,"Korzystasz z gałęzi {branch}. Proszę użyć gałęzi 'master' jeśli nie zostałeś specjalnie poproszony"],"Invalid show parameters":[null,"Nieprawidłowe parametry serialu"],"Invalid parameters":[null,""],"Episode couldn't be retrieved":[null,"Odcinek nie mógł zostać znaleziony"],"Home":[null,"Główna"],"Show List":[null,"Pokaż listę"],"Error: Unsupported Request. Send jsonp request with 'callback' variable in the query string.":[null,"Błąd: Nieobsługiwany typ żądania. Wyślij żądanie JSONP ze zmienną \"zwrotną\" w ciągu kwerendy."],"Success. Connected and authenticated":[null,"Powodzenie. Połączony i uwierzytelniony"],"Authentication failed. SABnzbd expects":[null,"Uwierzytelnianie nie powiodło się. SABnzbd wymaga"],"as authentication method":[null,"jako metoda uwierzytelniania"],"Unable to connect to host":[null,"Nie można połączyć się z hostem"],"SMS sent successfully":[null,"SMS wysłany pomyślnie"],"Problem sending SMS: {message}":[null,"Problem z wysyłaniem SMS: {message}"],"Telegram notification succeeded. Check your Telegram clients to make sure it worked":[null,"Wysłano powiadomienie Telegram. Sprawdź klienta Telegram by upewnić się że działa"],"Error sending Telegram notification: {message}":[null,"Wystąpił błąd podczas wysyłania powiadomienia Telegram: {message}"],"join notification succeeded. Check your join clients to make sure it worked":[null,"wysłano powiadomienie połączenia. Sprawdź podłączonego klienta by upewnić się że działa"],"Error sending join notification: {message}":[null,"Błąd podczas wysyłania powiadomienia podłączenia: {message}"]," with password":[null," z hasłem"],"Registered and Tested growl successfully {growl_host}":[null,"Zarejestrowano i przetestowano Growl z powodzeniem {growl_host}"],"Registration and Testing of growl failed {growl_host}":[null,"Niepowodzenie w rejestracji i testowaniu Growl {growl_host}"],"Test prowl notice sent successfully":[null,"Testowe powiadomienie Prowl wysłano pomyślnie"],"Test prowl notice failed":[null,"Niepowodzenie testowego powiadomienia Prowl"],"Boxcar2 notification succeeded. Check your Boxcar2 clients to make sure it worked":[null,"Wysłano powiadomienie Boxcar2. Sprawdź klienta Boxcar2 by upewnić się że działa"],"Error sending Boxcar2 notification":[null,"Wystąpił błąd podczas wysyłania powiadomienia Boxcar2"],"Pushover notification succeeded. Check your Pushover clients to make sure it worked":[null,"Wysłano powiadomienie Pushover. Sprawdź klienta Pushover by upewnić się że działa"],"Error sending Pushover notification":[null,"Wystąpił błąd podczas wysyłania powiadomienia Pushover"],"Key verification successful":[null,"Powodzenie weryfikacji klucza"],"Unable to verify key":[null,"Nie można zweryfikować klucza"],"Tweet successful, check your twitter to make sure it worked":[null,"Wysłano tweeta. Sprawdź swojego Twittera by upewnić się że działa"],"Error sending tweet":[null,"Błąd w wysyłaniu tweeta"],"Please enter a valid account sid":[null,""],"Please enter a valid auth token":[null,""],"Please enter a valid phone sid":[null,""],"Please format the phone number as \"+1-###-###-####\"":[null,""],"Authorization successful and number ownership verified":[null,""],"Error sending sms":[null,"Wystąpił błąd podczas wysyłania SMS"],"Slack message successful":[null,"Wysłano wadomości Slack"],"Slack message failed":[null,"Wysłanie wiadomości Slack nie powiodło się"],"Discord message successful":[null,""],"Discord message failed":[null,""],"Test KODI notice sent successfully to {kodi_host}":[null,"Test notyfikacji KODI wysłano pomyślnie do {kodi_host}"],"Test KODI notice failed to {kodi_host}":[null,"Test notyfikacji do KODI {kodi_host} nie powiódł się"],"Successful test notice sent to Plex Home Theater ... {plex_clients}":[null,"Udało się wysłać notyfikacje testową do Plex Home Theater ... {plex_clients}"],"Test failed for Plex Home Theater ... {plex_clients}":[null,"Test nie powiódł się dla Plex Home Theater ... {plex_clients}"],"Tested Plex Home Theater(s)":[null,"Przetestowano Plex Home Theater"],"Successful test of Plex Media Server(s) ... {plex_servers}":[null,"Udał się test Plex Media Server(s) ... {plex_servers}"],"Test failed, No Plex Media Server host specified":[null,"Test nie powiódł się, nie określono serwera Plex Media"],"Test failed for Plex Media Server(s) ... {plex_servers}":[null,"Test nie powiódł się dla Plex Media Server(s) ... {plex_servers}"],"Tested Plex Media Server host(s)":[null,"Przetestowano Plex Media Server host(y)"],"Tried sending desktop notification via libnotify":[null,"Próbowano wysłać notyfikacją desktop-ową przez libnotify"],"Test notice sent successfully to {emby_host}":[null,"Wysłano pomyślnie powiadomienie testowe do {emby_host}"],"Test notice failed to {emby_host}":[null,"Wiadomość testowa nie dotarła do {emby_host}"],"Successfully started the scan update":[null,"Pomyślnie wystartowano aktualizacje skanowania"],"Test failed to start the scan update":[null,"Nie udało się uruchomić aktualizacji skanowania"],"Test notice sent successfully to {nmj2_host}":[null,"Test notyfikacji wysłano pomyślnie do {nmj2_host}"],"Test notice failed to {nmj2_host}":[null,"Test notyfikacji do {nmj2_host} nie powiódł się"],"Trakt Authorized":[null,"Trakt autoryzowany"],"Trakt Not Authorized!":[null,"Trakt nie autoryzowany!"],"Test email sent successfully! Check inbox.":[null,"Wiadomość testowa wysłana pomyślnie! Sprawdź skrzynkę."],"ERROR: {last_error}":[null,"BŁĄD: {last_error}"],"Test NMA notice sent successfully":[null,"Wysłano pomyślnie notyfikacje testową NMA"],"Test NMA notice failed":[null,"Test notyfikacji NMA nie powiódł się"],"Pushalot notification succeeded. Check your Pushalot clients to make sure it worked":[null,"Notyfikacja Pushalot powiodła się. Sprawdź swoich klientów Pushalot w celu upewnienia się"],"Error sending Pushalot notification":[null,"Wystąpił błąd podczas wysyłania notyfikacji Pushalot"],"Pushbullet notification succeeded. Check your device to make sure it worked":[null,"Notyfikacja Pushbullet powiodła się. Sprawdź swoje urządzenie w celu upewnienia się"],"Error sending Pushbullet notification":[null,"Wystąpił błąd podczas wysyłania notyfikacji Pushbullet"],"Status":[null,"Stan"],"Restarting SickRage":[null,"Restartowanie SickRage"],"Update Failed":[null,"Aktualizacja nie powiodła się"],"Update wasn't successful, not restarting. Check your log for more information.":[null,"Aktualizacja nie powiodła się, nie restartuje. Sprawdź swoje logi w celu uzyskania więcej informacji."],"Checking out branch":[null,"Sprawdzam branch"],"Already on branch":[null,"Już na branch"],"Invalid show ID: {show}":[null,"Nieprawidłowe ID programu: {show}"],"Show not in show list":[null,"Programu nie ma na liście programów"],"Edit":[null,"Edytuj"],"This show is in the process of being downloaded - the info below is incomplete.":[null,"Dane programu są pobierane - poniższe informacje mogą być niepełne."],"The information on this page is in the process of being updated.":[null,"Informacje na tej stronie są właśnie aktualizowane."],"The episodes below are currently being refreshed from disk":[null,""],"Currently downloading subtitles for this show":[null,"Obecnie pobieram napisy do tego serialu"],"This show is queued to be refreshed.":[null,"Ten serial jest w kolejce do odświeżenia."],"This show is queued and awaiting an update.":[null,"Serial w kolejce, oczekuje na aktualizację."],"This show is queued and awaiting subtitles download.":[null,"Ten serial jest w kolejce i oczekuje na pobranie napisów."],"Resume":[null,"Wznów"],"Pause":[null,"Wstrzymaj"],"Remove":[null,"Usuń"],"Re-scan files":[null,"Ponownie przeskanuj pliki"],"Force Full Update":[null,"Wymuś Pełen Update"],"Update show in KODI":[null,"Aktualizuj program w KODI"],"Update show in Emby":[null,"Aktualizuj program w Emby"],"Hide specials":[null,"Chowaj specjalne"],"Show specials":[null,"Pokazuj odcinki specjalne"],"Preview Rename":[null,"Podgląd zmiany nazwy"],"Download Subtitles":[null,"Pobierz napisy"],"No scene exceptions":[null,"Bez wyjątków sceny"],"Invalid show ID":[null,"Nieprawidłowe ID programu"],"Unable to find the specified show":[null,"Nie można odnaleźć określonego programu"],"Unable to retreive Fansub Groups from AniDB.":[null,"Nie można pobrać grupy Fansub z AniDB."],"Edit Show":[null,"Edycja programu"],"Unable to refresh this show: {error}":[null,"Nie można odświeżyć tego serialu: {error}"],"New location <tt>{location}</tt> does not exist":[null,"Nowa lokalizacja <tt>{location}</tt> nie istnieje"],"Unable to update show: {error}":[null,"Nie można zaktualizować serialu: {error}"],"Unable to force an update on scene exceptions of the show.":[null,"Nie można wymusić aktualizacji wyjątkami sceny serialu."],"Unable to force an update on scene numbering of the show.":[null,"Nie można wymusić aktualizacji numeracji scen serialu."],"{num_errors:d} error{plural} while saving changes:":[null,"{num_errors:d} błędów{plural} podczas zapisywania zmian:"],"{show_name} has been {paused_resumed}":[null,"{show_name} został {paused_resumed}"],"resumed":[null,"wznowione"],"paused":[null,"wstrzymane"],"{show_name} has been {deleted_trashed} {was_deleted}":[null,"{show_name} został {deleted_trashed} {was_deleted}"],"deleted":[null,"usunięty"],"trashed":[null,"przeniesiony do kosza"],"(media untouched)":[null,"(media nietknięte)"],"(with all related media)":[null,"(z wszystkimi powiązanymi mediami)"],"Unable to refresh this show.":[null,"Nie można odświeżyć programu."],"Unable to update this show.":[null,"Nie można zaktualizować programu."],"Library update command sent to KODI host(s)): {kodi_hosts}":[null,"Komenda do odświeżenia biblioteki została wysłana do KODI host: {kodi_hosts}"],"Unable to contact one or more KODI host(s)): {kodi_hosts}":[null,"Nie można skontaktować się z jednym lub więcej hostami KODI: {kodi_hosts}"],"Library update command sent to Plex Media Server host: {plex_server}":[null,"Komenda do odświeżenia biblioteki została wysłana do Plex Media Server host: {plex_server}"],"Unable to contact Plex Media Server host: {plex_server}":[null,"Nie można skontaktować się z Plex Media Server: {plex_server}"],"Library update command sent to Emby host: {emby_host}":[null,"Polecenie aktualizacji biblioteki wysłane do serwera Emby: {emby_host}"],"Unable to contact Emby host: {emby_host}":[null,"Nie można skontaktować się z serwerem Emby: {emby_host}"],"You must specify a show and at least one episode":[null,"Musisz określić program i co najmniej jeden odcinek"],"Invalid status":[null,"Niepoprawny status"],"Backlog was automatically started for the following seasons of <b>{show_name}</b>":[null,"Ponowne wyszukiwanie zostało automatycznie uruchomione dla następujących sezonów <b>{show_name}</b>"],"Season":[null,"Sezon"],"Backlog started":[null,"Rozpoczęto wykonywanie zaległych zadań"],"Retrying Search was automatically started for the following season of <b>{show_name}</b>":[null,"Ponowna próba wyszukiwania została automatycznie uruchomiona dla następujących sezonów <b>{show_name}</b>"],"Retry Search started":[null,"Ponowne wyszukiwanie rozpoczęte"],"You must specify a show":[null,"Musisz określić program"],"Can't rename episodes when the show dir is missing.":[null,"Nie można zmienić nazwy odcinków, kiedy brakuje lokalizacji programu."],"New subtitles downloaded: {new_subtitle_languages}":[null,"Pobrano nowe napisy: {new_subtitle_languages}"],"No subtitles downloaded":[null,"Brak pobranych napisów"],"IRC":[null,"IRC"],"Could not load news from the repo. [Click here for news.md])({news_url})":[null,"Nie można załadować wiadomości z repozytorium. [Kliknij tutaj news.md]) ({news_url})"],"The was a problem connecting to github, please refresh and try again":[null,"Wystąpił problem z połączeniem z Github, proszę odświeżyć i spróbować ponownie"],"Could not load changes from the repo. [Click here for CHANGES.md]({changes_url})":[null,"Nie można załadować zmian z repozytorium. [Kliknij tutaj CHANGES.md]({changes_url})"],"Changelog":[null,"Rejestr zmian"],"Post Processing":[null,"Przetwarzanie końcowe"],"Add Shows":[null,"Dodanie serialu"],"No folders selected.":[null,"Nie wybrano folderów."],"New Show":[null,"Nowy program"],"Trending Shows":[null,"Popularne seriale"],"Popular Shows":[null,"Popularne programy"],"Most Anticipated Shows":[null,"Najbardziej oczekiwane seriale"],"Most Collected Shows":[null,""],"Most Watched Shows":[null,""],"Most Played Shows":[null,""],"Recommended Shows":[null,""],"New Shows":[null,"Nowe seriale"],"Season Premieres":[null,"Premiery sezonu"],"Existing Show":[null,"Istniejące programy"],"No root directories setup, please go back and add one.":[null,"Brak katalogu głównego, Proszę wrócić i go dodać."],"Show added":[null,"Dodano program"],"Adding the specified show {show_name}":[null,"Dodaje program {show_name}"],"Missing params, no Indexer ID or folder: {show_to_add} and {root_dir}/{show_path}":[null,"Brakujące parametry, brak ID indeksu lub folderu: {show_to_add} i {root_dir}/{show_path}"],"Unknown error. Unable to add show due to problem with show selection.":[null,"Nieznany błąd. Nie można dodać serialu ze względu na problem z wyborem serialu."],"Unable to add show":[null,"Nie można dodać programu"],"Folder {show_dir} exists already":[null,"Folder {show_dir} już istnieje"],"Unable to create the folder {show_dir}, can't add the show":[null,"Nie można utworzyć folderu {show_dir}, tym samym nie można dodać programu"],"Adding the specified show into {show_dir}":[null,"Dodaje określony program do {show_dir}"],"Shows Added":[null,"Dodano program"],"Automatically added {num_shows} from their existing metadata files":[null,"Automatycznie dodano {num_shows} z ich istniejących plików metadata"],"Mass Update":[null,"Masowa aktualizacja"],"Episode Overview":[null,"Informacje o odcinku"],"Missing Subtitles":[null,"Brak napisów"],"Backlog Overview":[null,"Przegląd zaległości"],"Mass Edit":[null,"Masowa edycji"],"Unable to update show: {excption_format}":[null,"Nie można zaktualizować programu: {excption_format}"],"Unable to refresh show {show_name}: {excption_format}":[null,"Nie można odświeżyć programu {show_name}: {excption_format}"],"Errors encountered":[null,"Napotkano błąd"],"Updates":[null,"Aktualizacje"],"Refreshes":[null,"Odśwież"],"Renames":[null,"Zmień nazwę"],"Subtitles":[null,"Napisy"],"The following actions were queued":[null,"Następujące akcje zostały skolejkowane"],"For best results please set the Download Station alias as":[null,"Aby uzyskać najlepsze wyniki, należy ustawić alias Download Station jako"],"You can check this setting in the Synology DSM":[null,"Możesz sprawdzić to ustawienie w Synology DSM"],"Control Panel":[null,"Panel zarządzania"],"Application Portal":[null,"Portal aplikacji"],"Make sure you allow DSM to be embedded with iFrames too in":[null,"Upewnij się, że pozwalasz by DSM zostało osadzone w iFrame także w"],"DSM Settings":[null,"Ustawienia DSM"],"Security":[null,"Bezpieczeństwo"],"Manage Torrents":[null,"Zarządzaj torrentami"],"Failed Downloads":[null,"Nieudane pobrania"],"Manage Searches":[null,"Zarządzaj wyszukiwaniem"],"Backlog search started":[null,"Rozpoczęto wyszukiwanie zaległości"],"Daily search started":[null,"Rozpoczęto dzienne wyszukiwanie"],"Find propers search started":[null,"Rozpoczęto wyszukiwanie Proper"],"Subtitle search started":[null,"Rozpoczęto wyszukiwanie napisów"],"Remove Selected":[null,""],"Clear History":[null,"Wyczyść historię"],"Trim History":[null,"Przytnij historie"],"Selected history entries removed":[null,""],"History cleared":[null,"Wyczyszczona historia"],"Removed history entries older than 30 days":[null,"Usunięto z historii wpisy starsze niż 30 dni"],"General":[null,"Ogólne"],"Backup/Restore":[null,"Kopia zapasowa/przywracanie"],"Search Settings":[null,"Ustawienia wyszukiwania"],"Search Providers":[null,"Dostawcy wyszukiwania"],"Subtitles Settings":[null,"Ustawienia napisów"],"Notifications":[null,"Powiadomienia"],"Anime":[null,"Anime"],"SickRage Configuration":[null,"Konfiguracja SickRage"],"Config - Shares":[null,""],"Windows Shares Configuration":[null,""],"Saved Shares":[null,""],"Your Windows share settings have been saved":[null,""],"Config - General":[null,"Konfiguracja - Ogólne"],"General Configuration":[null,"Ogólna konfiguracja"],"Saved Defaults":[null,""],"Your \"add show\" defaults have been set to your current selections.":[null,""],"Unable to create directory {directory}, log directory not changed.":[null,"Nie można utworzyć katalogu {directory}, katalog dziennika nie został zmieniony."],"Unable to create directory {directory}, https cert directory not changed.":[null,"Nie można utworzyć katalogu {directory}, nie zmieniono katalogu klucza https."],"Unable to create directory {directory}, https key directory not changed.":[null,"Nie można utworzyć katalogu {directory}, klucz https katalogu nie zmieniono."],"Error(s) Saving Configuration":[null,"Błąd przy zapisywaniu konfiguracji"],"Configuration Saved":[null,"Konfiguracja zapisana"],"Config - Backup/Restore":[null,"Konfiguracja - kopia zapasowa/przywracanie"],"Config - Episode Search":[null,"Ustawienia - wyszukiwanie odcinka"],"Config - Post Processing":[null,"Ustawienia - przetwarzanie końcowe"],"Unpacking Not Supported, disabling unpack setting":[null,"Rozpakowanie nie obsługiwane, wyłączanie ustawień rozpakowywania"],"You tried saving an invalid normal naming config, not saving your naming settings":[null,""],"You tried saving an invalid anime naming config, not saving your naming settings":[null,"Próbowałeś zapisać ustawienia anime niepoprawną nazwą, nie zapiszę twoich ustawień"],"Config - Providers":[null,"Ustawienia - dostawcy"],"No Provider Name specified":[null,"Nie określono nazwy dostawcy"],"No Provider Url specified":[null,"Nie określono Url dostawcy"],"No Provider Api key specified":[null,"Nie określono klucza Api dostawcy"],"Config - Notifications":[null,"Ustawienia - powiadomienia"],"Config - Subtitles":[null,"Ustawienie - napisy"],"Config - Anime":[null,"Ustawienia - Anime"],"Clear Errors":[null,"Wyczyść Błędy"],"Clear Warnings":[null,"Wyczyść Ostrzeżenia"],"Submit Errors":[null,"Zgłoś błędy"],"Logs & Errors":[null,"Dzienniki i błędy"],"Log File":[null,"Plik dziennika"],"Logs":[null,"Dziennik"],"This is a test notification from SickRage":[null,""],"Please fill out the necessary fields above.":[null,""],"This pattern is invalid.":[null,""],"This pattern would be invalid without the folders, using it will force \"Season Folders\" on for all shows.":[null,""],"This pattern is valid.":[null,""],"Resume updating the log on this page.":[null,""],"Pause updating the log on this page.":[null,""],"You have reached this page by accident, please check the url.":[null,"Osiągnięto tę stronę przez przypadek, prosimy o sprawdzenie adresu URL."],"A mako error has occured.<br>\n If this happened during an update a simple page refresh may be the solution.<br>\n Mako errors that happen during updates may be a one time error if there were significant ui changes.":[null,"Wystąpił błąd przy uruchomieniu makra.<br>\n Jeżeli sytuacja się powtórzy odświeżenie strony powinno być rozwiązaniem.<br>\n Błędy przy inicjacji makra podczas aktualizacji mogą być jednorazowym zdarzeniem jeśli były robione znaczne zmiany w interfejsie użytkownika."],"Show/Hide Error":[null,"Pokaż/Ukryj błąd"],"Add New Show":[null,"Dodaj nowy serial"],"For shows that you haven't downloaded yet, this option finds a show on theTVDB.com, creates a directory for it's episodes, and adds it to SickRage.":[null,"W przypadku seriali które nie zostały jeszcze pobrane, opcja ta znajdzie go na TVDB.com, utworzy nowe katalogi dla epizodów i doda go do SickRage."],"Add From Trakt Lists":[null,"Dodaj z listy Trakt"],"For shows that you haven't downloaded yet, this option lets you choose from a show from one of the Trakt lists to add to SickRage.":[null,"W przypadku programów, które nie zostały jeszcze pobrane, opcja ta pozwala wybrać z program z listy Trakt do SickRage."],"Add From IMDB's Popular Shows":[null,"Dodać z popularnych seriali na IMDB"],"View IMDB's list of the most popular shows. This feature uses IMDB's MOVIEMeter algorithm to identify popular TV Series.":[null,"Zobacz na IMDB listę najbardziej popularnych seriali. Ta funkcja wykorzystuje algorytm IMDB MOVIEMeter do identyfikacja popularnych seriali TV."],"Add Existing Shows":[null,"Dodaj istniejące seriale"],"Use this option to add shows that already have a folder created on your hard drive. SickRage will scan your existing metadata/episodes and add the show accordingly.":[null,"Użyj tej opcji, aby dodać programy które mają już utworzony folder na dysku twardym. SickRage skanuje istniejące metadane/epizody i dodaje odpowiednio serial."],"Add Existing Show":[null,"Dodaj istniejące seriale"],"Manage Directories":[null,"Zarządzanie katalogami"],"Customize Options":[null,"Dostosuj opcje"],"SickRage can add existing shows, using the current options, by using locally stored NFO/XML metadata to eliminate user interaction. If you would rather have SickRage prompt you to customize each show, then use the checkbox below.":[null,"SickRage może dodać istniejące seriale wykorzystując lokalnie przechowywane metadane NFO/XML w celu wyeliminowania interakcji z użytkownikiem.\n Jeżeli wolisz sam dostosować każdy serial, zaznacz poniższe pole wyboru."],"Prompt me to set settings for each show":[null,"Monituj mnie do ustawienia opcji dla każdego serialu"],"Displaying folders within these directories which aren't already added to SickRage":[null,"Wyświetlanie folderów w obrębie tych katalogów, które nie zostały jeszcze dodane do SickRage"],"Submit":[null,"Zatwierdź"],"Find a show on theTVDB":[null,"Znajdź seriale na theTVDB"],"Show retrieved from existing metadata":[null,"Seriale pobrane z istniejących metadanych (?)"],"All Indexers":[null,"Wszystkie indeksatory"],"Search":[null,"Szukaj"],"This will only affect the language of the retrieved metadata file contents and episode filenames.":[null,"Będzie miało wpływ tylko na język pobieranych metadanych i nazwę odcinku."],"This <b>DOES NOT</b> allow SickRage to download non-english TV episodes!":[null,"To <b>NIE</b> pozwala na pobieranie nie anglojęzycznych odcinków!"],"Pick the parent folder":[null,"Wybierz folder nadrzędny"],"Pre-chosen Destination Folder":[null,"Wstępnie wybrany docelowy folder"],"Customize options":[null,"Dostosuj opcje"],"Add Show":[null,"Dodaj program"],"Skip Show":[null,"Pomiń Program"],"Sort By":[null,"Sortuj wg"],"Name":[null,"Nazwa"],"Original":[null,"Oryginał"],"Votes":[null,"Głosów"],"Rating":[null,"Ocena"],"Rating > Votes":[null,"Ocena > głosy"],"Sort Order":[null,"Kolejność sortowania"],"Asc":[null,"Rosnąco"],"Desc":[null,"Malejąco"],"Fetching of IMDB Data failed. Are you online?":[null,"Pobieranie danych z IMDB nie powiodło się. Czy jesteś online?"],"Exception":[null,"Wyjątek"],"Select Trakt List":[null,"Wybierz listę Trakt"],"Most Anticipated":[null,"Najbardziej oczekiwany"],"Trending":[null,"Trendy"],"Popular":[null,"Popularne"],"Most Watched":[null,"Najczęściej oglądane"],"Most Played":[null,"Najczęściej odtwarzane"],"Most Collected":[null,"Najczęściej pobierane"],"Recommended":[null,"Polecane"],"Toggle navigation":[null,"Przełącz nawigację"],"Profile":[null,"Profil"],"JSONP":[null,"JSONP"],"Back to SickRage":[null,"Powrót do SickRage"],"Parameters":[null,"Parametry"],"Required":[null,"Wymagane"],"Description":[null,"Opis"],"Type":[null,"Typ"],"Default value":[null,"Warość domyślna"],"Allowed values":[null,"Dopuszczalne wartości"],"Playground":[null,"Plac zabaw"],"Clear":[null,"Wyczyść"],"Yes":[null,"Tak"],"No":[null,"Nie"],"season":[null,"sezon"],"episode":[null,"odcinek"],"Python Version":[null,"Wersja Pythona"],"SSL Version":[null,"Wersja SSL"],"OS":[null,"System operacyjny"],"Locale":[null,"Język"],"User":[null,"Użytkownik"],"Program Folder":[null,"Folder programu"],"Config File":[null,"Plik konfiguracyjny"],"Database File":[null,"Plik bazy danych"],"Cache Folder":[null,"Folder pamięci podręcznej"],"Log Folder":[null,"Folder dziennika"],"Arguments":[null,"Argumenty"],"Web Root":[null,"Web Root"],"Website":[null,"Strona internetowa"],"Wiki":[null,"Wiki"],"Source":[null,"Źródło"],"IRC Chat":[null,"Chat IRC"],"AnimeDB Settings":[null,"Ustawienia AnimeDB"],"Look & Feel":[null,"Wygląd i funkcjonalność"],"AniDB is non-profit database of anime information that is freely open to the public":[null,"AniDB jest swobodnie dostępną dla każdego, niezyskowną (non-profit), bazą informacji o anime"],"Enable":[null,"Włącz"],"should SickRage use data from AniDB?":[null,""],"AniDB Username":[null,"Nazwa użytkownika AniDB"],"username of your AniDB account":[null,""],"AniDB Password":[null,"Hasło AniDB"],"password of your AniDB account":[null,""],"AniDB MyList":[null,"AniDB MyList"],"do you want to add the PostProcessed episodes to the MyList?":[null,""],"Look and Feel":[null,"Widzieć i czuć"],"How should the anime functions show and behave.":[null,"Jak powinny funkcje anime się pokazywać i zachowywać."],"Split show lists":[null,"Podziel listy seriali"],"separate anime and normal shows in groups":[null,""],"Split in tabs":[null,""],"use tabs for when splitting show lists":[null,""],"Restore":[null,"Przywróć"],"Backup your main database file and config.":[null,"Kopia bazy danych i pliku konfiguracyjnego."],"Select the folder you wish to save your backup file to":[null,"Wybierz folder do którego chcesz zapisać pliki kopii"],"Restore your main database file and config.":[null,"Przywróć plik głównej bazy oraz ustawienia."],"Select the backup file you wish to restore":[null,"Wybierz plik kopii zapasowej którą chcesz przywrócić"],"Misc":[null,"Różne"],"Interface":[null,"Interfejs"],"Advanced Settings":[null,"Ustawienia zaawansowane"],"Startup options. Indexer options. Log and show file locations.":[null,"Opcje uruchamiania. Opcje indeksowania. Lokalizacje plików dziennika i seriali."],"Some options may require a manual restart to take effect.":[null,"Niektóre opcje mogą wymagać manualnego ponownego uruchomienia."],"Default Indexer Language":[null,"Domyślny język indeksowania"],"for adding shows and metadata providers":[null,"do dodawania serialu i dostawców metadanych"],"Launch browser":[null,"Uruchom przeglądarkę"],"open the SickRage home page on startup":[null,"uruchom stronę domową SickRage przy uruchomieniu"],"Initial page":[null,"Strona początkowa"],"Shows":[null,"Serial"],"when launching SickRage interface":[null,"przy uruchamianiu interfejsu SickRage"],"Choose hour to update shows":[null,"Wybierz godzinę aktualizacji seriali"],"with information such as next air dates, show ended, etc. Use 15 for 3pm, 4 for 4am etc.":[null,"dla informacji takich jak następna data emisji, zakończenia serialu itp. używaj 15 zamiast 3pm, 4 zamiast 4am itp."],"note":[null,""],"minutes are randomized each time SickRage is started":[null,""],"Send to trash for actions":[null,"Wyślij do kosza dla akcji"],"when using show \"Remove\" and delete files":[null,"podczas użycia \"Usuń\" i kasowania plików serialu"],"on scheduled deletes of the oldest log files":[null,"na zaplanowanym usunięciu najstarszych plików logu"],"selected actions use trash (recycle bin) instead of the default permanent delete":[null,"wybrana opcja używa kosza zamiast domyślnego trwałego usuwania"],"Log file folder location":[null,"Lokalizacja pliku z logami"],"Number of Log files saved":[null,"Ilość zapisanych logów"],"number of log files saved when rotating logs (default: 5) (REQUIRES RESTART)":[null,"liczba zapisanych logów podczas ich rotacji (domyślnie: 5) (POTRZEBNY RESTART)"],"Size of Log files saved":[null,"Rozmiar zapisywanych plików dziennika"],"maximum size in MB of the log file (default: 1MB) (REQUIRES RESTART)":[null,"maksymalny rozmiar w MB pliku z logami (domyślnie: 1MB) (POTRZEBNY RESTART)"],"Use initial indexer set to":[null,"Użyj wstępnego zestawu indeksowania do"],"as the default selection when adding new shows":[null,"jako domyślny wybór gdy dodajesz nowy program"],"Timeout show indexer at":[null,"Limit czasu indeksowania programu"],"seconds of inactivity when finding new shows (default:20)":[null,"sekund nieaktywności podczas szukania nowego programu (domyślnie: 20)"],"Show root directories":[null,"Pokaż główne katalogi"],"where the files of shows are located":[null,"gdzie pliki znajdują się pliki programów"],"Save Changes":[null,"Zapisz zmiany"],"Options for software updates.":[null,"Opcje aktualizacji oprogramowania."],"Check software updates":[null,"Sprawdź aktualizacje oprogramowania"],"and display notifications when updates are available. Checks are run on startup and at the frequency set below*":[null,"i wyświetla powiadomienia, gdy aktualizacje są dostępne. Kontrole są uruchamiane przy starcie i z częstotliwością ustawioną poniżej*"],"Automatically update":[null,"Aktualizuj automatycznie"],"fetch and install software updates. Updates are run on startup and in the background at the frequency set below*":[null,"pobiorę i zainstaluje aktualizacje oprogramowania. Aktualizacje są uruchamiane przy starcie i działają w tle z częstotliwością ustawioną poniżej*"],"Check the server every*":[null,"Sprawdzaj serwer co*"],"hours for software updates (default:1)":[null,"godziny dla aktualizacji oprogramowania (domyślnie: 1)"],"Notify on software update":[null,"Powiadomienia o aktualizacji oprogramowania"],"send a message to all enabled notifiers when SickRage has been updated":[null,"wyślij wiadomość do wszystkich włączonych powiadamiaczy, po aktualizacji SickRage"],"User Interface":[null,"Interfejs użytkownika"],"Options for visual appearance.":[null,"Opcje wyglądu."],"Interface Language":[null,"Język interfejsu"],"System Language":[null,"Język systemu"],"for appearance to take effect, save then refresh your browser":[null,"żeby motyw został uruchomiony, zapisz a potem odśwież przeglądarkę"],"Display theme":[null,"Wyświetl motyw"],"Dark":[null,"Ciemny"],"Light":[null,"Jasny"],"Use a background image":[null,""],"use a custom image as background for SickRage":[null,""],"Background Path":[null,""],"Path to the background image":[null,""],"Show fanart in the background":[null,"Pokaż \"fanart\" w tle"],"on the show summary page":[null,"na stronie z podsumowaniem programu"],"Fanart transparency":[null,"Przeźroczystość \"fanart\""],"transparency of the fanart in the background":[null,""],"Use a custom stylesheet file":[null,""],"use a custom .css file to style SickRage (for advanced users)":[null,""],"Stylesheet File Path":[null,""],"Path to the stylesheet (.css) file":[null,""],"Show all seasons":[null,"Pokaż wszystkie sezony"],"Sort with \"The\", \"A\", \"An\"":[null,"Sortuj z \"The\", \"A\", \"An\""],"include articles (\"The\", \"A\", \"An\") when sorting show lists":[null,"obejmij przedimki (\"The\", \"A\", \"An\") gdy sortujesz listę programów"],"Missed episodes range":[null,"Zakres przegapionych odcinków"],"set the range in days of the missed episodes in the Schedule page":[null,""],"Display fuzzy dates":[null,"Wyświetlaj niepełne daty"],"move absolute dates into tooltips and display e.g. \"Last Thu\", \"On Tue\"":[null,"przełóż na daty absolutne w podpowiedziach i wyświetl np. \"Ostatni czwartek\", \"We wtorek\""],"Trim zero padding":[null,"Usuń uzupełnienia zero"],"remove the leading number \"0\" shown on hour of day, and date of month":[null,"usuń wiodącą cyfrę \"0\" z godziny dnia oraz dnia miesiąca"],"Date style":[null,"Styl wyświetlania daty"],"Use System Default":[null,"Użyj domyślnych ustawień systemowych"],"Time style":[null,"Styl wyświetlania czasu"],"seconds are only shown on the History page":[null,"sekundy są widoczne jedynie na stronie Historii"],"Timezone":[null,"Strefa czasowa"],"Local":[null,"Lokalny"],"Network":[null,"Sieć"],"display dates and times in either your timezone or the shows network timezone":[null,"wyświetl daty i czas albo twojej strefy czasowej lub strefy czasowej programu"],"use local timezone to start searching for episodes minutes after show ends (depends on your dailysearch frequency)":[null,""],"Download url":[null,"Adres url do pobrania"],"URL where the shows can be downloaded.":[null,"URL skąd można pobrać programy."],"Web Interface":[null,"Interfejs www"],"it is recommended that you enable a username and password to secure SickRage from being tampered with remotely.":[null,""],"these options require a manual restart to take effect.":[null,""],"API key":[null,"Klucz API"],"used to give 3rd party programs limited access to SickRage":[null,"wykorzystywany do dawanie programom trzecim ograniczonego dostępu do SickRage"],"you can try all the features of the API":[null,"możesz wypróbować wszystkie funkcje API"],"here":[null,"tutaj"],"HTTP logs":[null,"Dzienniki HTTP"],"enable logs from the internal Tornado web server":[null,"uruchom logi z wewnętrznego serwera Tornado"],"HTTP username":[null,"Nazwa użytkownika HTTP"],"set blank for no login":[null,"zostaw puste dla braku logowania"],"HTTP password":[null,"Hasło HTTP"],"blank = no authentication":[null,"puste = brak uwierzytelniania"],"HTTP port":[null,"HTTP port"],"web port to browse and access SickRage (default:8081)":[null,"port webowy do przeglądania i dostępu do SickRage (domyślnie: 8081)"],"Notify on login":[null,"Poinformuj przy logowaniu"],"enable to be notified when a new login happens in webserver":[null,"uruchom powiadomienie, gdy nastąpi nowe logowanie do serwera www"],"Listen on IPv6":[null,"Nasłuchuj po IPv6"],"attempt binding to any available IPv6 address":[null,"spróbuj powiązać z każdym wolnym adresem IPv6"],"Enable HTTPS":[null,"Włącz HTTPS"],"enable access to the web interface using a HTTPS address":[null,"włącz dostęp do interfejsu webowego używając adresu HTTPS"],"HTTPS certificate":[null,"Certyfikat HTTPS"],"file name or path to HTTPS certificate":[null,"nazwa pliku lub ścieżka do certyfikatu HTTPS"],"HTTPS key":[null,"Klucz HTTPS"],"file name or path to HTTPS key":[null,"nazwa pliku lub ścieżka do klucza HTTPS"],"Reverse proxy headers":[null,"Nagłówki Reverse Proxy"],"accept the following reverse proxy headers (advanced)...":[null,""],"(X-Forwarded-For, X-Forwarded-Host, and X-Forwarded-Proto)":[null,""],"CPU throttling":[null,"Ograniczanie CPU"],"Normal (default). High is lower and Low is higher CPU use":[null,"Normalne (domyślny). Wysokie jest niższe a niskie to wyższe wykorzystanie CPU"],"Anonymous redirect":[null,"Anonimowe przekierowanie"],"backlink protection via anonymizer service, must end in \"?\"":[null,"ochrona wsteczna (backlink protection) poprzez serwis anonimizujący musi zakończyć się \"?\""],"Enable debug":[null,"Włączenie debugowania"],"enable debug logs":[null,""],"Verify SSL Certs":[null,"Weryfikuj certyfikaty SSL"],"verify SSL Certificates (Disable this for broken SSL installs (Like QNAP))":[null,""],"No Restart":[null,"Brak restartu"],"only shutdown when restarting SR":[null,""],"only select this when you have external software restarting SR automatically when it stops (like FireDaemon)":[null,""],"Encrypt passwords":[null,"Zaszyfruj hasło"],"in the <code>config.ini</code> file":[null,""],"warning":[null,""],"passwords must only contain":[null,""],"ASCII characters":[null,"Znaki ASCII"],"Unprotected calendar":[null,"Niechroniony kalendarz"],"allow subscribing to the calendar without user and password":[null,""],"some services like Google Calendar only work this way":[null,""],"Google Calendar Icons":[null,"Ikony kalendarza Google"],"show an icon next to exported calendar events in Google Calendar":[null,""],"Proxy host":[null,"Serwer proxy"],"blank to disable or proxy to use when connecting to providers":[null,"zostaw puste, aby wyłączyć lub używać proxy do łączenia z dostawcami"],"also use global proxy setting for indexers (tvdb, xem, anidb, etc.)":[null,""],"Skip Remove Detection":[null,"Pomiń usunięcie wykrywania"],"skip detection of removed files":[null,""],"if disabled the episode will be set to the default deleted status":[null,""],"Default deleted episode status":[null,"Domyślny status usuniętych odcinków"],"define the status to be set for media file that has been deleted.":[null,""],"Archived option will keep previous downloaded quality":[null,"Opcja archiwizacji pozostawi poprzednio pobraną jakość"],"example: Downloaded (1080p WEB-DL) ==> Archived (1080p WEB-DL)":[null,""],"Options for github related features.":[null,"Opcje związane z funkcjami github."],"Branch version":[null,"Wersja branch"],"error: No branches found.":[null,""],"select branch to use (restart required)":[null,"wybierz branch to użycia (wymagany restart)"],"Authorization Type":[null,""],"Username and password":[null,""],"Personal access token":[null,""],"You must use a personal access token if you're using \"two-factor authentication\" on GitHub.":[null,""],"GitHub username":[null,"Nazwa użytkownika GitHub"],"*** (REQUIRED FOR SUBMITTING ISSUES) ***":[null,"*** (WYMAGANE DLA ZGŁASZANIA BŁĘDÓW) ***"],"GitHub password":[null,"Hasło GitHub"],"GitHub personal access token":[null,""],"Generate Token":[null,""],"Manage Tokens":[null,""],"GitHub remote for branch":[null,"Zdalny GitHub dla branch"],"access repo configured remotes (save then refresh browser)":[null,""],"default":[null,""],"origin":[null,""],"Git executable path":[null,"Ścieżka pliku wykonywalnego Git"],"only needed if OS is unable to locate git from env":[null,"potrzebne tylko jeśli OS nie jest w stanie zlokalizować git z env"],"Git reset":[null,"Git reset"],"removes untracked files and performs a hard reset on git branch automatically to help resolve update issues":[null,"usuwa nieśledzone pliki i aby pomóc rozwiązać problem z aktualizacją przeprowadza automatycznie twardy reset na git branch"],"Home Theater / NAS":[null,"Kino domowe / NAS"],"Devices":[null,"Urządzenia"],"Social":[null,"Społeczność"],"A free and open source cross-platform media center and home entertainment system software with a 10-foot user interface designed for the living-room TV.":[null,"Darmowe i na licencji open source, wielo-platformowe centrum multimedialne oraz domowe centrum rozrywki z interfejsem użytkownika stworzonym dla dużego ekranu, zaprojektowane dla pokoju telewizyjnego."],"send KODI commands?":[null,""],"Always on":[null,"Zawsze włączony"],"log errors when unreachable?":[null,"zalogować błąd gdy nieosiągalny?"],"Notify on snatch":[null,"Informuj po zlokalizowaniu"],"send a notification when a download starts?":[null,"wyślij informację po rozpoczęciu pobierania?"],"Notify on download":[null,"Informuj po pobraniu"],"send a notification when a download finishes?":[null,"wyślij informację o zakończeniu pobierania?"],"Notify on subtitle download":[null,"Informuj o pobraniu napisów"],"send a notification when subtitles are downloaded?":[null,"wyślij informację po pobraniu napisów?"],"Update library":[null,"Aktualizuj bibliotekę"],"update KODI library when a download finishes?":[null,"aktualizacja biblioteki KODI, po zakończeniu pobierania?"],"Full library update":[null,"Pełna aktualizacja biblioteki"],"perform a full library update if update per-show fails?":[null,"wykonaj pełną aktualizacje biblioteki jeśli aktualizacja pojedynczych programów się nie powiedzie?"],"Only update first host":[null,"Tylko zaktualizuj pierwszego hosta"],"only send library updates to the first active host?":[null,"wysyłaj aktualizacje bibliotek tylko do pierwszego hosta?"],"KODI IP:Port":[null,"KODI IP: Port"],"host running KODI (eg. 192.168.1.100:8080)":[null,"host na którym działa KODI (np. 192.168.1.100:8080)"],"(multiple host strings must be separated by commas)":[null,"(wiele hostów musi być oddzielone przecinkami)"],"Username":[null,"Użytkownik"],"username for your KODI server (blank for none)":[null,"nazwa użytkownika na serwerze KODI (puste jeżeli brak)"],"Password":[null,"Hasło"],"password for your KODI server (blank for none)":[null,"hasło do serwera KODI (puste jeżeli brak)"],"Click below to test.":[null,"Kliknij poniżej, aby przetestować."],"Experience your media on a visually stunning, easy to use interface on your Mac connected to your TV. Your media library has never looked this good!":[null,"Doświadcz swoich mediów na wizualnie olśniewającym, łatwym w użyciu interfejsie na swoim Mac-u podłączonym do TV. Twoja biblioteka mediów nigdy nie wyglądała tak dobrze!"],"For sending notifications to Plex Home Theater (PHT) clients, use the KODI notifier with port <b>3005</b>.":[null,"W celu wysyłania notyfikacji do klientów Plex Home Theater (PHT), używaj powiadamiacza KODI z portem <b>3005</b>."],"send Plex Media Server library updates?":[null,""],"Plex Media Server Auth Token":[null,"Plex Media Server Auth Token"],"auth token used by Plex":[null,""],"Update Library":[null,"Aktualizuj bibliotekę"],"update Plex Media Server library when a download finishes":[null,"aktualizuj bibliotekę Plex Media Server po zakończeniu pobierania"],"Plex Media Server IP:Port":[null,"Plex Media Server IP:Port"],"one or more hosts running Plex Media Server<br/>(eg. 192.168.1.1:32400, 192.168.1.2:32400)":[null,"jeden lub więcej działający hostów Plex Media Server<br>(eg. 192.168.1.1:32400, 192.168.1.2:32400)"],"HTTPS":[null,"HTTPS"],"use https for plex media server requests?":[null,"używać https dla żądań Plex Media Server?"],"Click below to test Plex Media Server(s)":[null,"Kliknij poniżej, aby przetestować Plex Media Server"],"Test Plex Media Server":[null,"Test Plex Media Server"],"Plex Home Theater":[null,"Plex Home Theater"],"send Plex Home Theater notifications?":[null,""],"Plex Home Theater IP:Port":[null,"Plex Home Theater IP:Port"],"one or more hosts running Plex Home Theater<br>(eg. 192.168.1.100:3000, 192.168.1.101:3000)":[null,"jeden lub więcej hostów Plex Home Theater<br>(eg. 192.168.1.100:3000, 192.168.1.101:3000)"],"Click below to test Plex Home Theater(s)":[null,"Kliknij poniżej, aby przetestować Plex domu Theater"],"Test Plex Home Theater":[null,"Test Plex Home Theater"],"some Plex Home Theaters <b class=\"boldest\">do not</b> support notifications e.g. Plexapp for Samsung TVs":[null,""],"Emby":[null,"Emby"],"A home media server built using other popular open source technologies.":[null,"Domowe centrum mediów zbudowane z użyciem innych popularnych technologii open source."],"send update commands to Emby?":[null,""],"Emby IP:Port":[null,"Emby IP: Port"],"host running Emby (eg. 192.168.1.100:8096)":[null,"host na którym działa Emby (np. 192.168.1.100:23053)"],"Emby API Key":[null,"Klucz API Emby"],"Networked Media Jukebox":[null,"Networked Media Jukebox"],"The Networked Media Jukebox, or NMJ, is the official media jukebox interface made available for the Popcorn Hour 200-series.":[null,"Networked Media Jukebox lub NMJv2, są oficjalnymi interfejsami media jukebox stworzonymi dla serii 300 i 400 Popcorn Hour."],"send update commands to NMJ?":[null,""],"Popcorn IP address":[null,"Adres IP Popcorn"],"IP address of Popcorn 200-series (eg. 192.168.1.100)":[null,"Adres IP Popcorn serii 200 (np. 192.168.1.100)"],"Get settings":[null,"Pobierz ustawienia"],"Get Settings":[null,"Pobierz ustawienia"],"the Popcorn Hour device must be powered on and NMJ running.":[null,"urządzenie Popcorn Hour musi być włączone i NMJ musi być uruchomiony."],"NMJ database":[null,"Baza danych NMJ"],"automatically filled via the 'Get Settings' button.":[null,"automatycznie wypełnij poprzez guzik \"Pobierz ustawienia\"."],"NMJ mount url":[null,"URL montowanego NMJ"],"Networked Media Jukebox v2":[null,"Networked Media Jukebox v2"],"The Networked Media Jukebox, or NMJv2, is the official media jukebox interface made available for the Popcorn Hour 300 & 400-series.":[null,"Networked Media Jukebox lub NMJv2, są oficjalnymi interfejsami media jukebox stworzonymi dla serii 300 i 400 Popcorn Hour."],"send update commands to NMJv2?":[null,""],"IP address of Popcorn 300/400-series (eg. 192.168.1.100)":[null,"Adres IP Popcorn serii 300/400 (np. 192.168.1.100)"],"Database location":[null,"Lokalizacja bazy danych"],"Database instance":[null,"Instancja bazy danych"],"adjust this value if the wrong database is selected.":[null,"dostosuj tą wartość jeśli została wybrana zła baza danych."],"Find database":[null,"Znajdź bazę danych"],"Find Database":[null,"Znajdź bazę danych"],"the Popcorn Hour device must be powered on.":[null,"urządzenie Popcorn Hour musi być włączone."],"NMJv2 database":[null,"Baza danych NMJv2"],"automatically filled via the 'Find Database' buttons.":[null,"automatycznie wypełnione poprzez przycisk \"Znajdź bazę danych\"."],"Synology":[null,"Synology"],"The Synology DiskStation NAS.":[null,"Synology DiskStation NAS."],"Synology Indexer is the daemon running on the Synology NAS to build its media database.":[null,"Indekser Synology jest serwisem działającym na NAS'ie Synology do budowania swojej multimedialnej bazy danych."],"send Synology notifications?":[null,""],"requires SickRage to be running on your Synology NAS.":[null,"wymaga działającego Sickrage na twoim Synology."],"Synology Indexer":[null,"Indekser Synology"],"Synology Notifier is the notification system of Synology DSM":[null,"Powiadamiacz Synology jest systemem powiadomień w DSM Synology"],"send notifications to the Synology Notifier?":[null,""],"pyTivo":[null,"pyTivo"],"pyTivo is both an HMO and GoBack server. This notifier will load the completed downloads to your Tivo.":[null,"pyTivo jest zarówno HMO jak i serwerem GoBack. Ten powiadamiacz załaduje zakończone pobrania do twojego Tivo."],"send notifications to pyTivo?":[null,""],"requires the downloaded files to be accessible by pyTivo.":[null,"wymaga aby pobrane pliki były dostępne przez pyTivo."],"pyTivo IP:Port":[null,"pyTivo IP:Port"],"host running pyTivo (eg. 192.168.1.1:9032)":[null,"host, na którym działa pyTivo (np. 192.168.1.1:9032)"],"pyTivo share name":[null,"nazwa udziału pyTivo"],"value used in pyTivo Web Configuration to name the share.":[null,"wartość używana w konfiguracji web pyTivo do nazwania udziału."],"Tivo name":[null,"Nazwa TiVo"],"(Messages & Settings > Account & System Information > System Information > DVR name)":[null,"(Wiadomości i Ustawienia> Konto i Informacje o systemie> Informacje o systemie> nazwa DVR)"],"Growl":[null,"Growl"],"A cross-platform unobtrusive global notification system.":[null,"Wieloplatformowy, dyskretny i globalny system powiadomień."],"send Growl notifications?":[null,""],"Growl IP:Port":[null,"Growl IP:Port"],"host running Growl (eg. 192.168.1.100:23053)":[null,"host na którym działa Growl (np. 192.168.1.100:23053)"],"may leave blank if SickRage is on the same host.":[null,"można zostawić puste gdy SickRage działa na tym samym hoście."],"otherwise Growl <b>requires</b> a password to be used.":[null,"w przeciwnym wypadku Growl <b>wymaga</b> użycia hasła."],"Click below to register and test Growl, this is required for Growl notifications to work.":[null,"Kliknij poniżej aby zarejestrować i przetestować Growl, jest to wymagane dla działania notyfikacji Growl."],"Register Growl":[null,"Zarejestruj Growl"],"Prowl":[null,"Prowl"],"A Growl client for iOS.":[null,"Klient Growl dla iOS."],"send Prowl notifications?":[null,""],"Prowl Message Title":[null,"Tytuł wiadomości Prowl"],"Global Prowl API key(s)":[null,"Globalny klucz (klucze) dla API Prowl"],"Prowl API(s) listed here, separated by commas if applicable, will<br> receive notifications for <b>all</b> shows. Your Prowl API key is available at:":[null,"Prowl API wymienione tutaj, oddzielone przecinkami, jeśli jest taka potrzeba, będą <br>otrzymywać powiadomienia o<b>wszystkich</b> serialach. Twój klucz API jest dostępny na:"],"(this field may be blank except when testing.)":[null,""],"Show notification list":[null,"Pokaż listę powiadomień"],"-- Select a Show --":[null,"-- Wybierz program --"],"Configure per-show notifications here by entering Prowl API key(s), separated by commas, '\n 'after selecting a show in the drop-down box. Be sure to activate the 'Save for this show' '\n 'button below after each entry.":[null,"Skonfiguruj powiadomienia na poszczególne seriale wprowadzając tutaj klucz Prowl API, oddzielone przecinkami, '\n 'po wybraniu serialu w polu listy rozwijanej. Pamiętaj by aktywować 'Zapisz dla tego serialu' '\n ' przycisk poniżej dla każdego wpisu."],"Save for this show":[null,"Zapisz dla tego serialu"],"Prowl priority":[null,"Priorytet Prowl"],"Very Low":[null,"Bardzo niski"],"Moderate":[null,"Umiarkowany"],"Normal":[null,"Normalny"],"High":[null,"Wysoki"],"Emergency":[null,"Awaryjny"],"priority of Prowl messages from SickRage.":[null,"priorytet wiadomości Prowl od SickRage."],"Libnotify":[null,"Libnotify"],"The standard desktop notification API for Linux/*nix systems. This notifier will only function if the pynotify module is installed (Ubuntu/Debian package <a href=\"apt:python-notify\">python-notify</a>).":[null,"Standardowe API powiadomień dla systemów Linux/*nix. Notyfikacje zadziałają tylko wtedy, gdy moduł pynotify będzie zainstalowany (paczka dla Ubuntu/Debiana <a href=\"apt:python-notify\">python-notify</a>)."],"send Libnotify notifications?":[null,""],"Pushover":[null,"Pushover"],"Pushover makes it easy to send real-time notifications to your Android and iOS devices.":[null,"Pushover pozwala w łatwy sposób wysyłanie w czasie rzeczywistym notyfikacji do Twoich urządzeń Android i iOS."],"send Pushover notifications?":[null,""],"Pushover key":[null,"Klucz Pushover"],"user key of your Pushover account":[null,"klucz użytkownika Twojego konta Pushover"],"Pushover API key":[null,"Klucz API Pushover"],"click here":[null,""]," to create a Pushover API key":[null,""],"Pushover devices":[null,"Urządzenia Pushover"],"comma separated list of pushover devices you want to send notifications to":[null,"oddzielona przecinkami lista urządzeń Pushover, do których chcesz wysyłać notifykacje"],"Pushover notification sound":[null,"Dźwięk notyfikacji Pushover"],"Bike":[null,"Bike"],"Bugle":[null,"Bugle"],"Cash Register":[null,"Cash Register"],"Classical":[null,"Classical"],"Cosmic":[null,"Cosmic"],"Falling":[null,"Falling"],"Gamelan":[null,"Gamelan"],"Incoming":[null,"Incoming"],"Intermission":[null,"Intermission"],"Magic":[null,"Magic"],"Mechanical":[null,"Mechanical"],"Piano Bar":[null,"Piano Bar"],"Siren":[null,"Siren"],"Space Alarm":[null,"Space Alarm"],"Tug Boat":[null,"Tug Boat"],"Alien Alarm (long)":[null,"Alien Alarm (long)"],"Climb (long)":[null,"Climb (long)"],"Persistent (long)":[null,"Persistent (long)"],"Pushover Echo (long)":[null,"Pushover Echo (long)"],"Up Down (long)":[null,"Up Down (long)"],"None (silent)":[null,"None (silent)"],"Device specific":[null,"Zależne od urządzenia"],"choose notification sound to use":[null,""],"Pushover priority":[null,""],"Choose priority to use":[null,""],"Boxcar 2":[null,"Boxcar 2"],"Read your messages where and when you want them!":[null,"Czytaj swoje wiadomości gdzie i kiedy chcesz!"],"send Boxcar notifications?":[null,""],"Boxcar2 access token":[null,"Token dostępu Boxcar2"],"access token for your Boxcar account.":[null,"token dostępu dla twojego konta Boxcar."],"NMA":[null,"NMA"],"Notify My Android":[null,"Notify My Android"],"Notify My Android is a Prowl-like Android App and API that offers an easy way to send notifications from your application directly to your Android device.":[null,"Notify My Android jest to aplikacja i API na Androida, która oferuje łatwy sposób na wysyłanie powiadomień z Twoich aplikacji bezpośrednio do Twojego urządzenia Android."],"send NMA notifications?":[null,""],"NMA API key":[null,"Użyj klucza API NMA"],"(multiple keys must be separated by commas, up to a maximum of 5)":[null,"(więcej kluczy musi być odseparowanych przecinkami, maksymalnie 5)"],"NMA priority":[null,"Priorytet NMA"],"priority of NMA messages from SickRage.":[null,"priorytet wiadomości NMA od SickRage."],"Pushalot":[null,"Pushalot"],"Pushalot is a platform for receiving custom push notifications to connected devices running Windows Phone or Windows 8.":[null,"Pushalot to platforma do odbierania powiadomień w trybie push przez podłączone urządzenia z systemem Windows Phone lub Windows 8."],"send Pushalot notifications ?":[null,""],"Pushalot authorization token":[null,"Token autoryzujący Pushalot"],"authorization token of your Pushalot account.":[null,"autoryzujacy token Twojego konta Pushalot."],"Pushbullet":[null,"Pushbullet"],"Pushbullet is a platform for receiving custom push notifications to connected devices running Android/iOS and desktop browsers such as Chrome, Firefox or Opera.":[null,"Pushbullet to platforma do odbierania powiadomień w trybie push przez urządzenia Android/iOS i przeglądarki takie jak Chrome, Firefox albo Opera."],"send Pushbullet notifications?":[null,""],"Pushbullet API key":[null,"Klucz API Pushbullet"],"API key of your Pushbullet account":[null,"Klucz użytkownika Twojego konta Pushbullet"],"Pushbullet devices":[null,"Urządzenia Pushbullet"],"Update device list":[null,"Aktualizuj listę urządzeń"],"Pushbullet channels":[null,"Kanały Pushbullet"],"Free Mobile":[null,"Free Mobile"],"Free Mobile is a famous French cellular network provider.<br> It provides to their customer a free SMS API.":[null,"Free Mobile to znany francuski operator sieci komórkowej. <br> Udostępnia dla swoich klientów darmowy API do wysyłania SMS'ów."],"send SMS notifications?":[null,""],"send a SMS when a download starts?":[null,"wyślij SMS po rozpoczęciu pobierania?"],"send a SMS when a download finishes?":[null,"wyślij SMS, po zakończeniu pobierania?"],"send a SMS when subtitles are downloaded?":[null,"wysyłaj SMS, gdy zostaną pobrane napisy?"],"Free Mobile customer ID":[null,"Free Mobile ID klienta"],"it's your Free Mobile customer ID (8 digits)":[null,""],"Free Mobile API key":[null,""],"find your API key in your customer portal.":[null,""],"Click below to test your settings.":[null,"Kliknij poniżej, aby przetestować ustawienia."],"Telegram":[null,"Telegram"],"Telegram is a cloud-based instant messaging service.":[null,"Telegram jest usługą natychmiastowych wiadomości w chmurze."],"send Telegram notifications?":[null,""],"send a message when a download starts?":[null,""],"send a message when a download finishes?":[null,""],"send a message when subtitles are downloaded?":[null,""],"User/group ID":[null,"ID użytkownika/grupy"],"contact @myidbot on Telegram to get an ID":[null,""],"Bot API token":[null,"Token bota API"],"contact @BotFather on Telegram to set up one":[null,""],"Join":[null,"Dołącz"],"Join all of your devices together!":[null,"Połącz wszystkie urządzenia razem!"],"send Join notifications?":[null,""],"Device ID":[null,"ID urządzenia"],"per device specific id":[null,""]," to create a Join API key":[null,""],"Twilio":[null,""],"Twilio is a webservice API that allows you to communicate directly with a mobile number. This notifier will send a text directly to your mobile device.":[null,""],"should SickRage text your mobile device?":[null,""],"Twilio Account SID":[null,""],"account SID of your Twilio account.":[null,""],"Twilio Auth Token":[null,""],"Twilio Phone SID":[null,""],"phone SID that you would like to send the sms from":[null,""],"Your phone number":[null,""],"phone number that will receive the sms. Please use the format +1-###-###-####":[null,""],"Twitter":[null,"Twitter"],"A social networking and microblogging service, enabling its users to send and read other users' messages called tweets.":[null,"Serwis społecznościowy udostępniający usługę mikroblogowania, umożliwiająca swoim użytkownikom wysyłanie i odbieranie wiadomości (zwane tweetami) od innych użytkowników."],"should SickRage post tweets on Twitter?":[null,""],"you may want to use a secondary account.":[null,"powinieneś używać drugiego konta."],"send direct message":[null,""],"send a notification via Direct Message, not via status update":[null,"wyślij notyfikacje przez wiadomość bezpośrednią, a nie przez aktualizacje statusu"],"send DM to":[null,""],"Twitter account to send Direct Messages to (must follow you)":[null,"Konto Twitter do wysyłania bezpośrednich wiadomości (musi Ciebie obserwować)"],"Step One":[null,"Krok pierwszy"],"Request Authorization":[null,"Żądanie autoryzacji"],"Click the \"Request Authorization\" button.<br> This will open a new page containing an auth key.<br> <b>note:</b> if nothing happens check your popup blocker.":[null,""],"Step Two":[null,"Krok drugi"],"Enter the key Twitter gave you below, and click \"Verify Key\".":[null,"Wprowadź klucz, który otrzymałeś od Twittera poniżej i kliknij \"Weryfikuj klucz\"."],"Trakt":[null,"Trakt"],"Trakt helps keep a record of what TV shows and movies you are watching. Based on your favorites, Trakt recommends additional shows and movies you'll enjoy!":[null,""],"send Trakt.tv notifications?":[null,""],"username of your Trakt account.":[null,"nazwa użytkownika konta Trakt."],"Trakt PIN":[null,"Trakt PIN"],"Get Trakt PIN":[null,"Pobierz Trakt PIN"],"PIN code to authorize SickRage to access Trakt on your behalf.":[null,"Kod PIN do autoryzacji dostępu SickRage do Trakt w Twoim imieniu."],"API Timeout":[null,"API Timeout"],"seconds to wait for Trakt API to respond. (Use 0 to wait forever)":[null,""],"Default indexer":[null,"Domyślny indekser"],"Sync libraries":[null,"Synchronizuj biblioteke"],"sync your SickRage show library with your trakt show library.":[null,"synchronizuj swoją bibliotekę programów SickRage ze swoją biblioteką programów trakt."],"Remove Episodes From Collection":[null,"Usuń odcinki z kolekcji"],"remove an episode from your Trakt Collection if it is not in your SickRage Library.":[null,""],"Sync watchlist":[null,"Synchronizuj listę obserwowanych"],"sync your SickRage show watchlist with your trakt show watchlist (either Show and Episode).":[null,"synchronizuj listę obserwowanych programów w Sickrage z listą obserwowanych programów w trakt (zarówno całe programy jak i odcinki)."],"episode will be added on watch list when wanted or snatched and will be removed when downloaded ":[null,""],"Watchlist add method":[null,"Dodaj method do listy obserwowanych"],"Skip All":[null,"Pomiń wszystkie"],"Download Pilot Only":[null,"Pobierz tylko odcinek pilotażowy"],"Get whole show":[null,"Pobierz cały program"],"method in which to download episodes for new shows.":[null,"metoda pobierania odcinków dla nowych programów."],"Remove episode":[null,"Usuń odcinek"],"remove an episode from your watchlist after it is downloaded.":[null,"usuń odcinek z listy obserwowanych po zakończonym pobieraniu."],"Remove series":[null,"Usuń program"],"remove the whole series from your watchlist after any download.":[null,"usuń cały program z listy obserwowanych po zakończeniu pobierania."],"Remove watched show":[null,"Usuń obejrzane programy"],"remove the show from sickrage if it's ended and completely watched":[null,"usuń program z SickRage, gdy zakończył się i został całkowicie obejrzany"],"Start paused":[null,"Zatrzymano start"],"shows grabbed from your trakt watchlist start paused.":[null,"zatrzymano start programów pobranych z Twojej listy obserwowanych Trakt."],"Trakt blackList name":[null,"Czarna lista Trakt"],"name (slug) of list on Trakt for blacklisting show on 'Add Trending Show' & 'Add Recommended Shows' pages":[null,""],"Email":[null,"Email"],"Allows configuration of email notifications on a per show basis.":[null,"Umożliwia konfiguracje notyfikacji mailowych na zasadzie per program."],"send email notifications?":[null,""],"SMTP host":[null,"Serwer SMTP"],"hostname of your SMTP email server.":[null,"nazwa serwera poczty SMTP."],"SMTP port":[null,"port SMTP"],"port number used to connect to your SMTP host.":[null,"numer portu używany do łączenia się z serwerem SMTP."],"SMTP from":[null,"SMTP od"],"sender email address, some hosts require a real address.":[null,"adres e-mail nadawcy, niektóre serwery wymagają podania prawdziwego adresu."],"Use TLS":[null,"Używaj TLS"],"check to use TLS encryption.":[null,"zaznacz by używać szyfrowania TLS."],"SMTP user":[null,"Użytkownik SMTP"],"(optional) your SMTP server username.":[null,"(opcjonalnie) nazwa użytkownika serwera SMTP."],"SMTP password":[null,"Hasło SMTP"],"(optional) your SMTP server password.":[null,"(opcjonalnie) hasło serwera SMTP."],"Global email list":[null,"Globalna lista e-mail"],"email addresses listed here, separated by commas if applicable, will<br> receive notifications for <b>all</b> shows.":[null,""],"(This field may be blank except when testing.)":[null,"(To pole może pozostać puste, za wyjątkiem przeprowadzania testów)"],"Email Subject":[null,"Temat wiadomości"],"use a custom subject for some privacy protection?":[null,""],"(leave blank for the default SickRage subject)":[null,""],"configure per-show notifications here by entering email address(es), separated by commas,":[null,""],"after selecting a show in the drop-down box. Be sure to activate the 'Save for this show'":[null,"po wybraniu serialu z rozwijanej listy. Pamiętaj aby aktywować przycisk 'Zapisz dla tego serialu'"],"button below after each entry.":[null,"poniżej dla każdego wpisu."],"Slack":[null,"Slack"],"Slack brings all your communication together in one place. It's real-time messaging, archiving and search for modern teams.":[null,""],"should SickRage post messages on Slack?":[null,""],"Slack Incoming Webhook":[null,""],"Discord":[null,""],"All-in-one voice and text chat for gamers that's free, secure, and works on both your desktop and phone.":[null,""],"Should SickRage post messages on Discord?":[null,""],"Discord Incoming Webhook":[null,""],"Create webhook under channel settings.":[null,""],"Discord Bot Name":[null,""],"Blank will use webhook default Name.":[null,""],"Discord Avatar URL":[null,""],"Blank will use webhook default Avatar.":[null,""],"Discord TTS":[null,""],"Send notifications using text-to-speech":[null,""],"Post-Processing":[null,"Przetwarzanie końcowe"],"Episode Naming":[null,"Nazewnictwo odcinków"],"Metadata":[null,"Metadata"],"Settings that dictate how SickRage should process completed downloads.":[null,"Ustawienia, które mówią jak SickRage powinien procesować zakończone pobrania."],"enable the automatic post processor to scan and process any files in your Post Processing Dir":[null,""],"do not use if you use an external Post Processing script":[null,""],"Post Processing Dir":[null,"Lokalizacja przetwarzania końcowego"],"the folder where your download client puts the completed TV downloads.":[null,""],"please use seperate downloading and completed folders in your download client if possible.":[null,""],"Processing Method":[null,"Metoda przetwarzania"],"what method should be used to put files into the library?":[null,""],"if you keep seeding torrents after they finish, please avoid the 'move' processing method to prevent errors.":[null,""],"Auto Post-Processing Frequency":[null,"Frekwencja auto-przetwarzania końcowego"],"time in minutes to check for new files to auto post-process (min 10)":[null,""],"Postpone post processing":[null,"Odraczaj przetwarzanie końcowe"],"wait to process a folder if sync files are present.":[null,""],"Sync File Extensions":[null,"Synchronizuj rozszerzenia plików"],"comma seperated list of extensions or filename globs SickRage ignores when Post Processing":[null,"lista rozszerzeń lub nazw plików rozdzielonych przecinkami, które SickRage ma ignorować podczas przetwarzania końcowego"],"Rename Episodes":[null,"Zmień nazwę odcinków"],"rename episode using the Episode Naming settings?":[null,""],"Create missing show directories":[null,"Stwórz brakujące katalogi programów"],"create missing show directories when they get deleted":[null,""],"Add shows without directory":[null,"Dodaj program bez katalogów"],"add shows without creating a directory (not recommended)":[null,""],"Move associated files":[null,""],"move associated (srt/srr/sfv/etc) files while post processing?":[null,""],"Rename .nfo file":[null,"Zmień nazwę pliku .nfo"],"rename the original .nfo file to .nfo-orig to avoid conflicts?":[null,""],"Associated file extensions":[null,""],"comma separated list of associated file extensions SickRage should keep while post processing.":[null,""],"leaving it empty means no associated files will be post processed":[null,""],"Delete non associated files":[null,""],"delete non associated files while post processing?":[null,""],"Change File Date":[null,"Zmień datę pliku"],"set last modified filedate to the date that the episode aired?":[null,""],"some systems may ignore this feature.":[null,""],"Timezone for File Date":[null,"Strefa czasowa dla daty pliku"],"local":[null,"sieć lokalna"],"network":[null,"sieć"],"what timezone should be used to change File Date?":[null,""],"Unpack":[null,"Rozpakować"],"What to do with archived releases found in your <i>TV Download Dir</i>?":[null,""],"Ignore (do not process contents)":[null,""],"Unpack (process contents)":[null,""],"Treat as video (process archive as-is)":[null,""],"'Unpack' only works with RAR archives":[null,""],"Windows":[null,""],"WinRar is required on windows":[null,""],"Unpack Directory":[null,""],"Choose a path to unpack files, leave blank to unpack in download dir":[null,""],"Unrar Location":[null,""],"add the path to unrar if it is not in the system path":[null,""],"Alternate Unrar Tool":[null,""],"add the path to an alternate unrar tool if it is not in the system path":[null,""],"Delete RAR contents":[null,"Usuń zawartość RAR"],"delete content of RAR files, even if Process Method not set to move?":[null,""],"only working with RAR archive":[null,""],"Don't delete empty folders":[null,"Nie usuwaj pustych folderów"],"leave empty folders when Post Processing?":[null,""],"can be overridden using manual Post Processing":[null,""],"Follow symbolic-links":[null,""],"follow down symbolic links in download directory?":[null,""],"<b>EXPERTS ONLY.</b><br>Enable only if you know what <b>circular symbolic links</b> are,<br>and can <b>verify that you have none</b>.":[null,""],"Use icacls":[null,""],"Windows only":[null,""],"sets video permissions after using the move method in post processing":[null,""],"Extra Scripts":[null,"Dodatkowe skrypty"],"see":[null,""],"for script arguments description and usage.":[null,"dla opisu argumentów skryptu i jego stosowania."],"How SickRage will name and sort your episodes.":[null,"Jak SickRage bedzie nazywal i sortowal Twoje odcinki."],"Name Pattern":[null,"Wzór nazewnictwa"],"Toggle Naming Legend":[null,""],"don't forget to add quality pattern. Otherwise after post-processing the episode will have UNKNOWN quality":[null,""],"Meaning":[null,"Znaczenie"],"Pattern":[null,"Wzorzec"],"Result":[null,"Wynik"],"Use lower case if you want lower case names (eg. %sn, %e.n, %q_n etc)":[null,"W celu nazw z małej litery użyj małej czcionki (np. %sn, %e.n, %q_n itd.)"],"Show Name":[null,"Nazwa Programu"],"Show.Name":[null,"Nazwa.Programu"],"Show_Name":[null,"Nazwa_Programu"],"Season Number":[null,"Numer Sezonu"],"XEM Season Number":[null,"Numer Sezonu XEM"],"Episode Number":[null,"Numer Odcinka"],"XEM Episode Number":[null,"Numer Odcinka XEM"],"Episode Name":[null,"Nazwa Odcinka"],"Episode.Name":[null,"Nazwa.Odcinka"],"Episode_Name":[null,"Nazwa_Odcinka"],"Air Date":[null,"Data Emisji"],"Post-Processing Date":[null,"Data przetwarzania końcowego"],"Quality":[null,"Jakość"],"Scene Quality":[null,"Jakość scenowa"],"Release Name":[null,"Nazwa wydania"],"SickRage' is used in place of RLSGROUP if it could not be properly detected":[null,"SickRage jest używany zamiast RLSGROUP, w sytuacji której nie mógł zostać poprawnie wykryty"],"Release Group":[null,"Grupa wydawcza"],"If episode is proper/repack add 'proper' to name.":[null,"Jeśli odcinek jest proper/repack dodaj 'proper' do nazwy."],"Release Type":[null,"Typ wydania"],"Multi-Episode Style":[null,"Styl multi odcinka"],"Single-EP Sample":[null,"Próbka pojedynczego odcinka"],"Multi-EP sample":[null,"Próbka multi odcinka"],"Strip Show Year":[null,"Usuń rok programu"],"remove the TV show's year when renaming the file?":[null,""],"only applies to shows that have year inside parentheses":[null,""],"Custom Air-By-Date":[null,"Niestandardowy termin emisji"],"name air-by-date shows differently than regular shows?":[null,""],"Toggle ABD Naming Legend":[null,""],"Regular Air Date":[null,"Regularna data emisji"],"Year":[null,"Rok"],"Month":[null,"Miesiąc"],"Day":[null,"Dzień"],"Multi-EP style is ignored":[null,"Styl multi odcinka jest ignorowany"],"Custom Sports":[null,"Niestandardowe Sport"],"name sports shows differently than regular shows?":[null,""],"Toggle Sports Naming Legend":[null,""],"Sports Air Date":[null,"Data emisji Sportu"],"Custom Anime":[null,"Niestandardowe Anime"],"name anime shows differently than regular shows?":[null,""],"Toggle Anime Naming Legend":[null,"Przełącz nazewnictwo legend Anime"],">XEM Season Number":[null,">Numer Sezonu XEM"],"Single-EP Anime Sample":[null,"Próbka pojedynczego odcinka Anime"],"Multi-EP Anime sample":[null,"Próbka multi odcinka Anime"],"Add Absolute Number":[null,"Dodaj liczbę bezwzględną"],"add the absolute number to the season/episode format?":[null,""],"only applies to anime. (eg. S15E45 - 310 vs S15E45)":[null,""],"Only Absolute Number":[null,"Tylko liczby bezwzględne"],"replace season/episode format with absolute number":[null,""],"only applies to anime.":[null,""],"No Absolute Number":[null,"Brak liczby bezwzględnej"],"don't include the absolute number":[null,""],"The data associated to the data. These are files associated to a TV show in the form of images and text that, when supported, will enhance the viewing experience.":[null,"Dane związane z danymi. Są to pliki powiązane z serialem w postaci obrazów i tekstu, gdy obsługiwane wzmocnią wrażenia wizualne."],"Metadata Type":[null,"Typ metadanych"],"toggle metadata options that you wish to be created":[null,""],"multiple targets may be used":[null,""],"Select Metadata":[null,"Wybierz metadane"],"Provider Priorities":[null,"Priorytet dostawców"],"Provider Options":[null,"Opcje dostawców"],"Configure Custom Newznab Providers":[null,"Skonfiguruj niestandardowych dostawców Newznab"],"Configure Custom Torrent Providers":[null,"Skonfiguruj niestandardowych dostawców Torrent"],"Check off and drag the providers into the order you want them to be used.":[null,"Zaznacz i przeciągnij dostawcę w kolejności w jakiej mają być używani."],"At least one provider is required but two are recommended.":[null,"Wymagany jest co najmniej jeden dostawca, ale co najmniej dwóch jest zalecanych."],"Torrent providers can be toggled in ":[null,"Torrent: dostawcy mogą być przełączani w "],"Provider does not support backlog searches at this time.":[null,"W tym momencie dostawca nie obsługuje wyszukiwania zaległości."],"Provider is <b>NOT WORKING</b>.":[null,"Dostawca <b>NIE DZIAŁA</b>."],"Configure individual provider settings here.":[null,"Tutaj skonfiguruj poszczególne ustawienia dostawców."],"Check with provider's website on how to obtain an API key if needed.":[null,"Sprawdź z dostawcą strony jak uzyskać klucz API jeśli jest potrzebny."],"Configure provider":[null,"Konfigurowanie dostawcy"],"no providers available to configure.":[null,""],"URL":[null,"adres zasobu URL"],"Enable daily searches":[null,"Włącz codzienne wyszukiwanie"],"enable provider to perform daily searches.":[null,"umożliwienie dostawcy możliwości wykonywania codziennych poszukiwań."],"Enable backlog searches":[null,"Włącz wyszukiwanie zaległości"],"enable provider to perform backlog searches.":[null,"umożliwienie dostawcy wyszukiwania w zaległości."],"Season search mode":[null,"Tryb wyszukiwania sezonu"],"when searching for complete seasons you can choose to have it look for season packs only, or choose to have it build a complete season from just single episodes.":[null,"przy szukaniu całego sezonu, możesz wybrać czy szukać tylko całej paczki z sezonem czy też pobrać kompletny sezon używając pojedynczych epizodów."],"season packs only.":[null,"całe sezony tylko."],"episodes only.":[null,"odcinki tylko."],"Enable fallback":[null,"Włącz awaryjne wyszukiwanie"],"when searching for a complete season depending on search mode you may return no results, this helps by restarting the search using the opposite search mode.":[null,"przy szukaniu całego sezonu, w zależności od trybu wyszukiwania, możesz nie otrzymać żadnych wyników. Opcja ta pomaga poprzez ponowne uruchomienie wyszukiwania przy użyciu drugiego trybu wyszukiwania."],"Custom URL":[null,"Niestandardowy adres URL"],"the URL should include the protocol (and port if applicable). Examples: http://192.168.1.4/ or http://localhost:3000/":[null,""],"Api key":[null,"Klucz Api"],"Digest":[null,"Digest"],"Hash":[null,"Hasz"],"Passkey":[null,"Klucz dostępu"],"Cookies":[null,"Ciasteczka"],"example: uid=1234;pass=567845439634987<br>note: uid and pass are not your username/password.<br>use DevTools or Firebug to get these values after logging in on your browser.":[null,""],"Pin":[null,"Pin"],"Seed ratio":[null,"Współczynnik udostępniania"],"stop transfer when ratio is reached<br>(-1 SickRage default to seed forever, or leave blank for downloader default)":[null,"zatrzymaj transfer po osiągnięciu współczynnika<br>(-1 by domyślnie SickRage zawsze udostępniał lub pozostaw puste dla domyślnych wartości programu pobierającego)"],"Minimum seeders":[null,"Minimum wysyłających"],"Minimum leechers":[null,"Minimum pobierających"],"Confirmed download":[null,"Potwierdzone pobrania"],"only download torrents from trusted or verified uploaders ?":[null,"pobieraj torrentu tylko z zaufanych i sprawdzonych uploaderów?"],"Ranked torrents":[null,"Ranking torrentów"],"only download ranked torrents (trusted releases)":[null,"pobieraj tylko rankingowe torrenty (zaufane wydania)"],"English torrents":[null,"Angielskie torrenty"],"only download english torrents, or torrents containing english subtitles":[null,"pobieraj tylko angielskie torrenty, lub torrenty zawierające angielskie napisy"],"For Spanish torrents":[null,"Dla hiszpańskich torrentów"],"ONLY search on this provider if show info is defined as \"Spanish\" (avoid provider's use for VOS shows)":[null,"Szukaj TYLKO u tego dostawcy, który zawiera informacje \"Hiszpański\" w programie (unikaj dostawców, którzy używają VOS)"],"Sorting results by":[null,"Sortuj wg"],"Freeleech":[null,"FreeLeech"],"only download <b>\"FreeLeech\"</b> torrents.":[null,"pobieraj tylko torrenty <b>\"FreeLeech\"</b>"],"Category":[null,"Kategorie"],"select torrent with Italian subtitle":[null,"wybierz torrenty z włoskimi napisami"],"Configure Custom<br>Newznab Providers":[null,"Skonfiguruj niestandardowych <br>dostawców Newznab"],"Add and setup or remove custom Newznab providers.":[null,"Dodaj, ustaw lub usuń niestandardowych dostawców Newznab."],"Select provider":[null,"Wybierz dostawcę"],"-- add new provider --":[null,"-- dodaj nowego dostawcę --"],"Provider name":[null,"Nazwa dostawcy"],"Site URL":[null,"Adres URL"],"Newznab search categories":[null,"Newznab Kategorie wyszukiwania"],"select your Newznab categories on the left, and click the \"update categories\" button to use them for searching.) <b>don't forget to to save the form!":[null,"(Wybierz kategorię Newznab po lewej stronie, a następnie kliknij przycisk \"aktualizuj kategorie\", aby wykorzystać je do wyszukiwania.<b>Nie zapomnij zapisać formularza!</b>"],"Update Categories":[null,"Aktualizuj kategorie"],"Add":[null,"Dodaj"],"Delete":[null,"Usuń"],"Add and setup or remove custom RSS providers.":[null,"Dodaj, ustaw lub usuń niestandardowych dostawców RSS."],"RSS URL":[null,"adres URL Kanału RSS "],"Search element":[null,"Wyszukiwanie elementu"],"eg: title":[null,"np.: tytuł"],"Episode Search":[null,"Szukaj odcinka"],"NZB Search":[null,"Szukaj NZB"],"Torrent Search":[null,"Szukaj Torrent"],"How to manage searching with":[null,"Jak zarządzać wyszukiwanie z"],"Randomize Providers":[null,"Losowi dostawcy"],"randomize the provider search order instead of going in order of placement":[null,"losowa kolejność wyszukiwania dostawców zamiast w kolejności ułożenia"],"Download propers":[null,"Pobieraj Proper"],"replace original download with \"Proper\" or \"Repack\" if nuked":[null,"zastąp oryginalne pobranie: \"Proper\" lub \"Repack\" Jeśli uszkodzone"],"Check propers every":[null,"Sprawdzaj Proper co"],"24 hours":[null,"24 godziny"],"4 hours":[null,"4 godziny"],"90 mins":[null,"90 minut"],"45 mins":[null,"45 minut"],"15 mins":[null,"15 minut"],"Backlog search day(s)":[null,"Wyszukiwanie zaległości"],"number of day(s) that the \"Forced Backlog Search\" will cover (e.g. 7 Days)":[null,"liczba dni, które pokryje \"Wymuszone wyszukiwanie zaległości\" (np. 7 dni)"],"Backlog search frequency":[null,"Częstotliwość wyszukiwania zaległości"],"time in minutes between searches (min.":[null,"czas w minutach pomiędzy wyszukiwaniem (min. 10)"],"Daily search frequency":[null,"Częstotliwość dzienna wyszukiwania"],"Usenet retention":[null,"Retencja usenet"],"age limit in days for usenet articles to be used (e.g. 500)":[null,"granica wieku w dniach kiedy artykuły usenet mogą być użyte (np. 500)"],"Ignore words":[null,"Ignoruj wyrazy"],"results with one or more word from this list will be ignored<br>separate words with a comma, e.g. \"word1,word2,word3\"":[null,"wyniki jednego lub więcej słów z tej listy będzie zignorowany <br>oddziel słowa przecinkami, np. \"słowo1, słowo2, słowo3\""],"Require words":[null,"Wymagane słowa"],"results with no word from this list will be ignored<br>separate words with a comma, e.g. \"word1,word2,word3\"":[null,"wyniki bez słów z tej listy będzie zignorowany <br>oddziel słowa przecinkami, np. \"słowo1, słowo2, słowo3\""],"Trackers list":[null,"Lista tracker'ów"],"trackers that will be added to magnets without trackers<br>separate trackers with a comma, e.g. \"tracker1,tracker2,tracker3\"":[null,""],"Ignore language names in subbed results":[null,"Zignoruj nazwy języków w wynikach wyszukiwania napisów"],"ignore subbed releases based on language names <br>\n Example: \"dk\" will ignore words: dksub, dksubs, dksubbed, dksubed <br>\n separate languages with a comma, e.g. \"lang1,lang2,lang3":[null,""],"Allow high priority":[null,"Pozwól na wysoki priorytet"],"set downloads of recently aired episodes to high priority":[null,"ustaw wysoki priorytet pobierania dla niedawno wyemitowanego odcinka"],"Use Failed Downloads":[null,"Używaj nieudanych pobrań"],"use Failed Download Handling?":[null,""],"will only work with snatched/downloaded episodes after enabling this":[null,""],"Delete Failed":[null,"Usunięcie nie powiodło się"],"delete files left over from a failed download?":[null,""],"this only works if Use Failed Downloads is enabled.":[null,""],"How to handle NZB search results.":[null,"Jak traktować wyniki wyszukiwań NZB."],"Search NZBs":[null,"Szukaj NZB"],"enable NZB search providers":[null,""],"Send .nzb files to":[null,"Wysyłaj pliki .nzb do"],"SABnzbd server URL":[null,"Adres URL serwera SABnzbd"],"URL to your SABnzbd server (e.g. http://localhost:8080/)":[null,"Adres URL Twojego serwera SABnzbd (np. localhost8080: /)"],"SABnzbd username":[null,"Nazwa użytkownika SABnzbd"],"(blank for none)":[null,"(puste dla niczego)"],"SABnzbd password":[null,"Hasło SABnzbd"],"SABnzbd API key":[null,"Klucz API SABnzbd"],"locate at... SABnzbd Config -> General -> API Key":[null,"zlokalizowany w... Ustawienia SABnzbd -> Ogólne -> Klucz API"],"Use SABnzbd category":[null,"Użyj kategorii SABnzbd"],"add downloads to this category (e.g. TV)":[null,"dodaj pobierane do kategorii (np. TV)"],"Use SABnzbd category (backlog episodes)":[null,"Użyj kategorii SABnzbd (zaległe odcinki)"],"add downloads of old episodes to this category (e.g. TV)":[null,"dodaj do pobrania starych odcinków do tej kategorii (np. TV)"],"Use SABnzbd category for anime":[null,"Użyj SABnzbd dla kategorii anime"],"add anime downloads to this category (e.g. anime)":[null,"dodaj pobierane anime do tej kategorii (np. anime)"],"Use SABnzbd category for anime (backlog episodes)":[null,"Użyj kategorii SABnzbd dla anime (zaległe odcinki)"],"add anime downloads of old episodes to this category (e.g. anime)":[null,"dodaj do pobrania starych odcinków anime do tej kategorii (np. anime)"],"Use forced priority":[null,"Użyj wymuszonego priorytetu"],"enable to change priority from HIGH to FORCED":[null,"włącz, aby zmienić priorytet z WYSOKI na WYMUSZONY"],"Black hole folder location":[null,"Lokalizacja Black hole"],"<b>.nzb</b> files are stored at this location for external software to find and use":[null,"<b>.nzb</b> pliki w tej lokalizacji są przetrzymywane do użytku dla zewnętrznych aplikacji"],"Connect using HTTPS":[null,"Połącz korzystając z HTTPS"],"enable Secure control in NZBGet and set the correct Secure Port here":[null,"włącz bezpieczne sterowanie w NZBGet i ustaw tutaj prawidłowy bezpieczny port"],"NZBget host:port":[null,"NZBget host:port"],"(e.g. localhost:6789)":[null,"(np. localhost:6789)"],"NZBget RPC host name and port number (not NZBgetweb!)":[null,"Nazwa serwera i portu NZBget RPC (nieNZBgetweb!)"],"NZBget username":[null,"Nazwa użytkownika NZBget"],"locate in nzbget.conf (default:nzbget)":[null,"zlokalizuj w nzbget.conf (domyślnie: nzbget)"],"NZBget password":[null,"Hasło NZBget"],"locate in nzbget.conf (default:tegbzn6789)":[null,"zlokalizuj w nzbget.conf (domyślnie: tegbzn6789)"],"Use NZBget category":[null,"Użyj kategorii NZBget"],"send downloads marked this category (e.g. TV)":[null,"wyślij oznaczone pobranie do tej kategorii (np. TV)"],"Use NZBget category (backlog episodes)":[null,"Użyj kategorii NZBget (zaległe odcinki)"],"send downloads of old episodes marked this category (e.g. TV)":[null,"wyślij pobranie starych odcinków do tej kategorii (np. TV)"],"Use NZBget category for anime":[null,"Użyj NZBget dla kategorii anime"],"send anime downloads marked this category (e.g. anime)":[null,"wyślij pobranie anime do tej kategorii (np. anime)"],"Use NZBget category for anime (backlog episodes)":[null,"Użyj kategorii NZBget dla anime (zaległe odcinki)"],"send anime downloads of old episodes marked this category (e.g. anime)":[null,"wyślij pobranie starych odcinków anime do tej kategorii (np. anime)"],"NZBget priority":[null,"Priorytet NZBget"],"Very low":[null,"Bardzo niski"],"Low":[null,"Niski"],"Very high":[null,"Bardzo wysoki"],"Force":[null,"Wymuś"],"priority for daily snatches (no backlog)":[null,"priorytet dla codziennych łapań (bez zaległości)"],"Torrent host:port":[null,"Torrent host:port"],"URL to your Synology DSM (e.g. http://localhost:5000/)":[null,""],"Client username":[null,"Nazwa klienta"],"Client password":[null,"Hasło klienta"],"Downloaded files location":[null,"Lokalizacja plików pobranych"],"where Synology Download Station will save downloaded files (blank for client default)":[null,"gdzie Synology Download Station będzie zapisywać pobrane pliki (puste dla domyślnej ścieżki klienta)"],"the destination has to be a shared folder for Synology DS":[null,"lokalizacja musi być udostępnionym folderem dla Synology DS"],"Click below to test":[null,"Kliknij poniżej, aby przetestować"],"How to handle Torrent search results.":[null,"Jak traktować wyniki wyszukiwań Torrent."],"Search torrents":[null,"Szukaj torrentów"],"enable torrent search providers":[null,"umożliwia wyszukiwanie w torrentach"],"Send .torrent files to":[null,"Wyślij pliki .torrent do"],"<b>.torrent</b> files are stored at this location for external software to find and use":[null,"<b>.torrent</b> pliki w tej lokalizacji są przetrzymywane do użytku dla zewnętrznych aplikacji"],"URL to your torrent client (e.g. http://localhost:8000/)":[null,"Adress twojego klienta torrentów (np. http://localhost:8000/)"],"Torrent RPC URL":[null,"Torrent RPC URL"],"the path without leading and trailing slashes (e.g. transmission)":[null,""],"Http Authentication":[null,"Uwierzytelnianie HTTP"],"Verify certificate":[null,"Sprawdź certyfikat"],"disable if you get \"Deluge: Authentication Error\" in your log":[null,"wyłącz jesli zauważysz w logu \"Deluge: Authentication Error\""],"verify SSL certificates for HTTPS requests":[null,""],"Add label to torrent":[null,"Dodaj etykietę do torrentów"],"(blank spaces are not allowed)":[null,"(spacje nie są dozwolone)"],"label plugin must be enabled in Deluge clients":[null,""],"for QBitTorrent 3.3.1 and up":[null,""],"Add label to torrent for anime":[null,"Dodaj etykietę w torrentach dla anime"],"for QBitTorrent 3.3.1 and up ":[null,""],"where <span id=\"torrent_client\">the torrent client</span> will save downloaded files (blank for client default)":[null,""],"the destination has to be a shared folder for Synology DS</span>":[null,"miejsce docelowe musi być udziałem udostępnionym w Synology DS</span>"],"Minimum seeding time":[null,""],"time in hours":[null,""],"(default:'0' passes blank to client and '-1' passes nothing)":[null,""],"Start torrent paused":[null,"Wystartuj zatrzymane torrenty"],"add .torrent to client but do <b style=\"font-weight:900\">not</b> start downloading":[null,"dodaj .torrent do klienta ale<b style=\"font-weight:900\">nie</b>zaczynaj pobierać"],"Allow high bandwidth":[null,"Zezwalaj na dużą przepustowość"],"use high bandwidth allocation if priority is high":[null,"używaj alokacji dużej przepustowości jeśli priorytet jest wysoki"],"Test Connection":[null,"Testuj połączenie"],"Windows Shares":[null,""],"Defines your existing windows shares so that we can add them to the browse dialog":[null,""],"Share #{number}":[null,""],"Share label":[null,""],"Hostname or IP":[null,""],"Share path":[null,""],"Subtitles Search":[null,"Wyszukiwanie napisów"],"Subtitles Plugin":[null,"Wtyczki napisów"],"Plugin Settings":[null,"Ustawienia wtyczki"],"Settings that dictate how SickRage handles subtitles search results.":[null,"Ustawienia które narzucają jak SickRage obsługuje wyniki wyszukiwania napisów."],"Search Subtitles":[null,"Szukaj napisów"],"Subtitle Languages":[null,"Języki napisów"],"Subtitle Directory":[null,"Katalog napisów"],"the directory where SickRage should store your <i>Subtitles</i> files.":[null,""],"leave empty if you want store subtitle in episode path.":[null,""],"Subtitle Find Frequency":[null,"Częstotliwość szukania napisów"],"time in hours between scans (default: 1)":[null,"czas w godzinach między skanowaniem (domyślnie: 1)"],"Include Specials":[null,""],"include the show's specials when searching for subtitles?":[null,""],"Perfect matches":[null,"Idealne dopasowanie"],"only download subtitles that match: release group, video codec, audio codec and resolution":[null,""],"if disabled you may get out of sync subtitles":[null,""],"Subtitles History":[null,"Historia napisów"],"log downloaded Subtitle on History page?":[null,""],"Subtitles Multi-Language":[null,"Wielojęzyczne napisy"],"append language codes to subtitle filenames?":[null,""],"this option is required if you use multiple subtitle languages":[null,""],"Delete unwanted subtitles":[null,"Usuń niepotrzebne napisy"],"enable to delete unwanted subtitle languages bundled with release":[null,""],"Embedded Subtitles":[null,"Wbudowane napisy"],"ignore subtitles embedded inside video file?":[null,""],"this will ignore <u>all</u> embedded subtitles for every video file!":[null,"to zignoruje <u>wszystkie</u> wbudowane napisy dla każdego pliku video!"],"Hearing Impaired Subtitles":[null,"Napisy dla niedosłyszących"],"download hearing impaired style subtitles?":[null,""],"See":[null,"Zobacz"],"for a script arguments description.":[null,"dla opisu argumentów skryptu."],"Additional scripts separated by <b>|</b>.":[null,"Dodatkowe skrypty oddzielane poprzez <b>|</b>."],"Scripts are called after each episode has searched and downloaded subtitles.":[null,"Skrypty są wywoływane po każdym odnalezieniu odcinka i pobraniu napisów."],"For any scripted languages, include the interpreter executable before the script. See the following example":[null,"Dla każdego języka skryptów, przed skryptem dołącz wykonywalny interpreter. Zobacz poniższy przykład"],"For Windows:":[null,"Dla Windows:"],"For Linux / OS X:":[null,"Dla Linux / OS X:"],"Subtitle Providers":[null,"Dostawcy napisów"],"Check off and drag the plugins into the order you want them to be used.":[null,"Zaznacz i przeciągnij wtyczkę w kolejności w jakiej mają być używane."],"At least one plugin is required.":[null,"Wymagana jest co najmniej jedna wtyczka."]," Web-scraping plugin":[null,"Plugin \"web-scraping\""],"Provider Settings":[null,"Ustawienia dostawcy"],"Set user and password for each provider":[null,"Ustaw użytkownika i hasło dla każdego dostawcy"],"User Name":[null,"Nazwa użytkownika"],"Change Show":[null,"Zmień program"],"Prev Show":[null,"Poprzedni program"],"Next Show":[null,"Następny program"],"Jump to Season":[null,"Skok do sezonu"],"Specials":[null,"Dodatki"],"Poster for":[null,"Plakat dla"],"Stars":[null,"gwiazdek"],"minutes":[null,"minut"],"View other popular {genre} shows on trakt.tv.":[null,"Pokaż inne popularne {genre} seriale z trakt.tv."],"View other popular {imdbgenre} shows on IMDB.":[null,"Pokaż inne popularne {imdbgenre} seriale z IMDB."],"Allowed":[null,"Dozwolony"],"Preferred":[null,"Preferowany"],"Originally Airs":[null,"Pierwotnie zaplanowany"],"Show Status":[null,"Pokaż Status"],"Default EP Status":[null,"Domyślny status odcinka"],"Location":[null,"Lolalizacja"],"Missing":[null,"Brakujące"],"Scene Name":[null,"Nazwa sceny"],"Required Words":[null,"Wymagane słowa"],"Ignored Words":[null,"Ignorowane słowa"],"Size":[null,"Rozmiar"],"Info Language":[null,"Informacja o języku"],"Subtitles SR Metadata":[null,""],"Season Folders":[null,"Foldery sezonów"],"Paused":[null,"Wstrzymany"],"Air-by-Date":[null,"wg daty premiery w TV"],"Sports":[null,"Sport"],"DVD Order":[null,"Kolejność DVD"],"Scene Numbering":[null,"Numeracja scen"],"Select Filtered Episodes":[null,"Zaznacz filtrowane odcinki"],"Clear All":[null,"Wyczyść wszystko"],"Change selected episodes to":[null,"Zmień wybrany odcinek na"],"Select Columns":[null,"Wybierz kolumny"],"Hide Episodes":[null,""],"Show Episodes":[null,"Pokaż Odcinki"],"NFO":[null,"NFO"],"TBN":[null,"TBN"],"Episode":[null,"Odcinek"],"Absolute":[null,"Bezwzględny"],"Scene":[null,"Scena"],"Scene Absolute":[null,"Serial wg Indeksu"],"File Name":[null,"Nazwa pliku"],"Airdate":[null,"Data emisji"],"Download":[null,"Pobierz"],"Change the value here if scene numbering differs from the indexer episode numbering":[null,"Zmień wartość tutaj, jeśli Serial wg Indeksu różni się od numerów indeksowych serialu"],"Change the value here if scene absolute numbering differs from the indexer absolute numbering":[null,"Zmień wartość tutaj, jeśli Serial wg Indeksu różni się od indeksowej numeracji serialu"],"Manual Search":[null,"Ręczne wyszukiwanie"],"Do you want to mark this episode as failed?":[null,"Czy chcesz oznaczyć ten odcinek jako nieudany?"],"The episode release name will be added to the failed history, preventing it to be downloaded again.":[null,"Imię wydanego odcinku będzie dodana do listy \"historia nieudanych\", aby zapobiec ponownemu sciąganiu."],"Do you want to include the current episode quality in the search?":[null,"Czy chcesz użyć obecnej jakości odcinku w wyszukiwaniach?"],"Choosing No will ignore any releases with the same episode quality as the one currently downloaded/snatched.":[null,"Wybór \"NIE\" zignoruje każde wydanie odcinka o takiej samej jakości który jest już ściągnięty lub znaleźiony."],"Download subtitle":[null,"Pobierz napisy"],"Do you want to re-download the subtitle for this language?":[null,""],"It will overwrite your current subtitle":[null,""],"Format":[null,"Format"],"Advanced":[null,"Zaawansowane"],"Main Settings":[null,"Ustawienia główne"],"Show Location":[null,"Pokaż lokalizację"],"Preferred Quality":[null,"Preferowana jakość"],"Default Episode Status":[null,"Domyślny stan odcinek"],"this will set the status for future episodes.":[null,""],"this only applies to episode filenames and the contents of metadata files.":[null,""],"search for subtitles":[null,"szukaj napisów"],"Use SR Metdata":[null,""],"use SickRage metadata when searching for subtitle, this will override the autodiscovered metadata":[null,""],"pause this show (SickRage will not download episodes)":[null,"wstrzymaj ten program (SickRage nie będzie pobierał odcinków)"],"Format Settings":[null,"Ustawienia formatu"],"Air by date":[null,"data premiery"],"check if the show is released as Show.03.02.2010 rather than Show.S02E03.":[null,"sprawdź czy show jest w formacie \"Show.03.02.2010\" zamiast \"Show.S02E03\""],"in case of an air date conflict between regular and special episodes, the later will be ignored.":[null,""],"check if the show is Anime and episodes are released as Show.265 rather than Show.S02E03":[null,"sprawdź czy show jest \"Anime\" i czy jest w formacie \"Show.265\" zamiast \"Show.S02E03\""],"check if the show is a sporting or MMA event released as Show.03.02.2010 rather than Show.S02E03":[null,"sprawdź czy show jest wydażeniem \"sportowym\" czy \"MMA\" wydanym w formacie \"Show.03.02.2010\" zamiast \"Show.S02E03\""],"Season folders":[null,"Foldery sezonów"],"group episodes by season folder (uncheck to store in a single folder)":[null,"grupuj odcinki wg sezonu (odznacz aby zapisać w jednym folderze)"],"search by scene numbering (uncheck to search by indexer numbering)":[null,"szukaj wg numeru sceny (odznacz aby szukać wg numeru indeksu)"],"use the DVD order instead of the air order":[null,"użyj kolejności DVD zamiast emisji"],"a \"Force Full Update\" is necessary, and if you have existing episodes you need to sort them manually.":[null,""],"comma-separated <i>e.g. \"word1,word2,word3</i>\"":[null,"oddzielone przecinkami, <i>np. \"wyraz1,wyraz2,wyraz3</i>\""],"search results with one or more words from this list will be ignored.":[null,""],"e.g. \"word1,word2,word3\"":[null,"np. \"wyraz1,wyraz2,wyraz3\""],"search results with no words from this list will be ignored.":[null,""],"Scene Exception":[null,"Wyjątki sceny"],"this will affect episode search on NZB and torrent providers.":[null,""],"this list appends to the original show name.":[null,""],"WARNING logs":[null,"Dziennik ostrzeżeń"],"ERROR logs":[null,"Dziennik błędów"],"There are no events to display.":[null,"Brak wydarzeń do wyświetlenia."],"Limit":[null,"Limit"],"Layout":[null,"Układ"],"HistoryLayout":[null,"Historia"],"Compact":[null,"Kompaktowy"],"Detailed":[null,"Szczegółowy"],"Time":[null,"Czas"],"Provider":[null,"Dostawca"],"Missing Provider":[null,"Brakujący dostawca"],"missing provider":[null,"brakujący dostawca"],"Directory":[null,"Katalog"],"Show Name (tvshow.nfo)":[null,"Nazwa odcinka (tvshow.nfo)"],"Indexer":[null,"Indeksy"],"Enter the folder containing the episode":[null,"Wpisz nazwę folderu zawierającego odcinek"],"Process Method to be used":[null,"Metoda procesowania, która ma być użyta"],"Copy":[null,"Kopiuj"],"Move":[null,"Przenieś"],"Hard Link":[null,"Dowiązanie twarde"],"Symbolic Link":[null,"Dowiązanie symboliczne"],"Symbolic Link Reversed":[null,""],"Force already Post Processed Dir/Files":[null,"Wymuś na przetworzonych już katalogach/plikach"],"Mark Dir/Files as priority download":[null,"Oznacz foldery/pliki na priorytetowe pobieranie"],"(Check it to replace the file even if it exists at higher quality)":[null,"(zaznacz aby podmienić plik nawet jeśli istnieje w wyższej jakości)"],"Delete files and folders":[null,"Usuń pliki i foldery"],"(Check it to delete files and folders like auto processing)":[null,"(Zaznacz by usunąć pliki i foldery, jak w przetwarzaniu automatycznym)"],"Don't use processing queue":[null,""],"(If checked this will return the result of the process here, but may be slow!)":[null,""],"Mark download as failed":[null,"Oznacz pobieranie jako nieudane"],"Process":[null,"Proces"],"Download subtitles for this show?":[null,"Pobierz napisy do tego programu?"],"use SickRage metadata when searching for subtitle, <br />this will override the autodiscovered metadata":[null,"Podczas szukania napisów użyj metadanych SickRage.<br />\nTo ustawienie zastąpi automatycznie wykryte metadane"],"Status for previously aired episodes":[null,"Status dla już wyemitowanych odcinków"],"Status for all future episodes":[null,"Status dla wszystkich przyszłych odcinków"],"Group episodes by season folder?":[null,""],"Is this show an Anime?":[null,"Czy jest to Anime?"],"Is this show scene numbered?":[null,"Czy ten Serial jest ponumerowany wg scen?"],"Save Defaults":[null,"Zapisz ustawienia domyślne"],"Use current values as the defaults":[null,"Użyj obecnych wartości jako domyślne ustawienia"],"<p>Select your preferred fansub groups from the <b>Available Groups</b> and add them to the <b>Whitelist</b>. Add groups to the <b>Blacklist</b> to ignore them.</p>\n <p>The <b>Whitelist</b> is checked <i>before</i> the <b>Blacklist</b>.</p>\n <p>Groups are shown as <b>Name</b> | <b>Rating</b> | <b>Number of subbed episodes</b>.</p>\n <p>You may also add any fansub group not listed to either list manually.</p>\n <p>When doing this please note that you can only use groups listed on anidb for this anime.\n <br>If a group is not listed on anidb but subbed this anime, please correct anidb's data.</p>":[null,"<p>Wybierz preferowane grupy tłumaczy z <b>Dostępnych Grup</b> i dodaj je do <b>Białej listy</b>. Dodaj grupy do <b>Czarnej listy</b>, by je ignorować.</p>\n <p><b>Biała lista</b> jest sprawdzana <i>przed </i> <b>Czarną listą</b>.</p>\n <p>Grupy są wyświetlane jako <b>Nazwa</b> | <b>Ocena</b> | <b>Liczba odcinków z napisami</b>.</p>\n <p>Można równiej dodać nową grupę ręcznie.</p>\n <p>Podczas tego pamiętaj, że grupa musi być dostępna w anidb dla tego anime.\n <br> Jeżeli anidb nie zawiera danej grupy tłumaczy, ale dostarczają oni napisy do tego anime, proszę popraw dane anidb.</p>"],"Whitelist":[null,"Biała lista"],"Available Groups":[null,"Dostępne grupy"],"Add to Whitelist":[null,"Dodaj do białej listy"],"Add to Blacklist":[null,"Dodaj do czarnej listy"],"Blacklist":[null,"Czarna lista"],"Custom Group":[null,""],"Allowed Quality:":[null,"Dozwolona jakość:"],"Preferred Quality:":[null,"Preferowana jakość:"],"Filter Show Name":[null,"Filtruj nazwę odcinka"],"Root":[null,""],"All":[null,"Wszytko"],"Clear Filter(s)":[null,"Wyczyść Filtr"],"Poster":[null,"Plakat"],"Small Poster":[null,"Mały plakat"],"Banner":[null,"Baner"],"Simple":[null,"Proste"],"Next Episode":[null,"Następny odcinek"],"Progress":[null,"Postęp"],"Direction":[null,"Kierunek"],"Ascending":[null,"Rosnąco"],"Descending":[null,"Malejąco"],"Poster Size":[null,"Rozmiar plakatu"],"Continuing":[null,"Kontynuuje"],"Ended":[null,"Zakończył się"],"Total":[null,"Suma"],"Invalid date":[null,"Nieprawidłowe dane"],"No Network":[null,"Brak Sieci"],"Next Ep":[null,"Następny Odczinek"],"Prev Ep":[null,"Poprzedni odcinek"],"Show":[null,"Program"],"Downloads":[null,"Pobrania"],"Active":[null,"Aktywny"],"loading":[null,"trwa ładowanie"],"Loading...":[null,"Trwa ładowanie..."],"<p><b><u>Preferred</u></b> qualities will replace those in <b><u>allowed</u></b>, even if they are lower.</p>":[null,"<p><b><u>Preferowane</u></b> jakości zastąpią te z <b><u>dozwolonych</u></b>, nawet jeżeli są niższe.</p>"],"New":[null,"Nowy"],"Set as Default":[null,"Ustaw jako domyślne"],"Remember me":[null,"Zapamiętaj mnie"],"Edit Selected":[null,"Edytuj zaznaczone"],"Subtitle":[null,"Napisy"],"Default Ep Status":[null,"Domyślny stan odcinka"],"Update":[null,"Aktualizuj"],"Rescan":[null,"Przeskanuj"],"Rename":[null,"Zmień nazwę"],"Search Subtitle":[null,"Szukaj napisów"],"Force Metadata Regen":[null,"Wymuś odświeżenie metadanych"],"Snatched (Allowed)":[null,"Złapano (Dozwolone)"],"Jump to Show":[null,"Skocz do Serialu"],"Force Backlog":[null,"Wymuś zaległości"],"Manage episodes with status":[null,"Zarządzaj odcinkami ze stanem"],"Manage":[null,"Zarządzaj"],"None of your episodes have status":[null,"Żadne odcinki nie mają stanu"],"Shows containing":[null,"Programy zawierające"],"episodes":[null,"odcinki"],"Set checked shows/episodes to":[null,"Ustaw sprawdzone programy/odcinki do"],"Go":[null,"Dalej"],"Select all":[null,"Zaznacz wszystko"],"Clear all":[null,"Wyczyść wszystko"],"Release":[null,"Wydanie"],"Backlog Search":[null,"Szukaj zaległości"],"Not in progress":[null,"Nie w toku"],"In Progress":[null,"W trakcie"],"Daily Search":[null,"Dzienne wyszukiwanie"],"Find Propers Search":[null,"Znajdź wyszukiwanie Proper"],"Propers search disabled":[null,"Wyłącz wyszukiwanie Proper"],"Subtitle Search":[null,"Wyszukiwanie napisów"],"Subtitle search disabled":[null,"Wyszukiwanie napisów wyłączone"],"Search Queue":[null,"Kolejka szukania"],"pending items":[null,"oczekujące elementy"],"Daily":[null,"Dziennie"],"Manual":[null,"Ręcznie"],"Changing any settings marked with (<span class=\"separator\">*</span>) will force a refresh of the selected shows.":[null,"Zmiana każdego ustawienia oznaczonego (<span class=\"separator\">*</span>) wymuśi odświerzenie zaznaczonych Serialów."],"Selected Shows":[null,"Wybrane programy"],"Root Directories":[null,"Katalogi główne"],"Current":[null,"Bierzący"],"Keep":[null,"Zachowaj"],"Custom":[null,"Niestandardowa"],"Group episodes by season folder (set to \"No\" to store in a single folder).":[null,"Grupuj odcinki po folderach sezonów (ustaw \"Nie\" żeby przechowywać w jednym folderze)."],"Pause these shows (SickRage will not download episodes).":[null,"Wstrzymaj te programy (SickRage nie będzie ściągał odcinków)."],"This will set the status for future episodes.":[null,"To ustawi status dla przyszłych odcinków."],"Search by scene numbering (set to \"No\" to search by indexer numbering).":[null,"Szukaj wg numeru sceny (wybierz \"Nie\" aby szukać wg numeru indeksu)."],"Set if these shows are Anime and episodes are released as Show.265 rather than Show.S02E03":[null,"Ustaw jeśli te seriale są Anime i odcinki są wypuszczone jako Show.265 zamiast Show.S02E03"],"Set if these shows are sporting or MMA events released as Show.03.02.2010 rather than Show.S02E03.":[null,"Wybierz jeżeli program jest wydarzeniem \"sportowym\" czy \"MMA\" wydanym w formacie \"Show.03.02.2010\" zamiast \"Show.S02E03\"."],"In case of an air date conflict between regular and special episodes, the later will be ignored.":[null,"W razie konfliktu daty wydania pomiędzy zwykłymi i specjalnymi odcinkami, kolejne będą ignorowane."],"Set if these shows are released as Show.03.02.2010 rather than Show.S02E03.":[null,"Ustaw jeśli te Seriale są wypuszczone jako Show.03.02.2010 niżeli Show.S02E03."],"Search for subtitles.":[null,"Szukaj napisów."],"All of your episodes have {subsLanguage} subtitles.":[null,"Twoje Wszystkie odcinki mają {subsLanguage} napisy."],"Manage episodes without":[null,"Zarządzaj odcinkami bez"],"Episodes without {subsLanguage} subtitles.":[null,"Odcinki bez {subsLanguage} napisów."],"Episodes without {subtitleLanguage} (undefined) subtitles.":[null,"Odcinki bez {subtitleLanguage} (nieokreślonych) napisów."],"Download missed subtitles for selected episodes":[null,"Pobierz brakujące napisy do wybranych odcinków"],"Performing Restart":[null,"Wykonuje restart"],"Waiting for SickRage to shut down":[null,"Czekam na zamknięcie SickRage"],"Waiting for SickRage to start again":[null,"Czekam na ponowny start SickRage"],"Loading the default page":[null,"Ładowanie strony domyślnej"],"Error: The restart has timed out, perhaps something prevented SickRage from starting again?":[null,"Błąd: Upłyną limit czasu restartu, może coś uniemożliwia ponowne uruchomienie SickRage?"],"Key":[null,"Klucz"],"Missed":[null,"Brakujące"],"Today":[null,"Dzisiaj"],"Soon":[null,"Wkrótce"],"Later":[null,"Poźniej"],"Subscribe":[null,"Subskrybuj"],"Date":[null,"Data"],"View Paused":[null,"Pokaż Wstrzymane"],"Hidden":[null,"Ukryte"],"Shown":[null,"Pokazane"],"Calendar":[null,"Kalendarz"],"List":[null,"Lista"],"Ends":[null,"Kończy się"],"Next Ep Name":[null,"Następna nazwa odcinka"],"Run time":[null,"Czas odcinka"],"Indexers":[null,"Indeksy"],"No shows for this day":[null,"Żadnych programów dla tego dnia"],"Airs":[null,"Emisja"],"Plot":[null,"Fabuła"],"Show Update":[null,"Aktualizacja Programu"],"Version Check":[null,"Sprawdź wersję"],"Proper Finder":[null,"Wyszukiwarka Poprawnych Seriali"],"Post Process":[null,"Przetwarzanie końcowe"],"Subtitles Finder":[null,"Wyszukiwarka napisów"],"Scheduler":[null,"Harmonogram"],"Alive":[null,"Żywy"],"Start Time":[null,"Czas rozpoczęcia"],"Cycle Time":[null,"Czas cyklu"],"Next Run":[null,"Następne Uruchomienie"],"Last Run":[null,"Ostatnie uruchomienie"],"Silent":[null,"Wyciszony"],"True":[null,"Prawda"],"N/A":[null,"N/A"],"Show id":[null,"Pokaż id"],"Show name":[null,"Nazwa programu"],"Priority":[null,"Priorytet"],"Added":[null,"Dodane"],"Queue type":[null,"Typ kolejki"],"LOW":[null,"NISKI"],"NORMAL":[null,"NORMALNY"],"HIGH":[null,"WYSOKI"],"Disk Space":[null,"Miejsce na dysku"],"Free space":[null,"Wolne miejsce na dysku"],"TV Download Directory":[null,"Katalog pobierania TV"],"Media Root Directories":[null,"Katalogi główne mediów"],"Preview of the proposed name changes":[null,"Podgląd proponowanych zmian nazw"],"All Seasons":[null,"Wszystkie sezony"],"select all":[null,""],"Rename Selected":[null,"Zmień nazwę zaznaczonych"],"Cancel Rename":[null,"Anuluj zmianę nazwy"],"Old Location":[null,"Stara lokalizacja"],"New Location":[null,"Nowa lokalizacja"],"Trakt API did not return any results, please check your config.":[null,"Trakt API nie zwraca żadnych wyników, sprawdź konfiguracje."],"votes":[null,"głosy"],"Remove Show":[null,"Usuń program"],"Level":[null,""],"Filter":[null,""],"All non-absolute folder locations are relative to ":[null,"Wszystkie nie-absolutne lokalizacje folderów są powiązane z "],"Manual Post-Processing":[null,"Ręczne przetwarzanie końcowe"],"Episode Status Management":[null,"Zarządzanie Statusem Odcinków"],"Update PLEX":[null,"Aktualizuj PLEX"],"Update KODI":[null,"Aktualizuj KODI"],"Update Emby":[null,"Aktualizuj Emby"],"Missed Subtitle Management":[null,"Zarządzanie Nieznalezionymi Napisami"],"Help & Info":[null,"Informacje i pomoc"],"Backup & Restore":[null,"Kopia zapasowa / przywracanie"],"Tools":[null,"Narzędzia"],"Support SickRage":[null,"Wesprzyj SickRage"],"View Errors":[null,"Pokaż błędy"],"View Warnings":[null,"Pokaż ostrzeżenia"],"View Log":[null,"Pokaż logi"],"Check For Updates":[null,"Sprawdź aktualizacje"],"Restart":[null,"Restart"],"Shutdown":[null,"Zamknij"],"Logout":[null,"Wyloguj"],"Server Status":[null,"Status serwera"],"View overview of snatched episodes":[null,"Przegląd złapanych odcinków"],"Episodes Downloaded":[null,"Pobrane Odcinki"],"Memory used":[null,"Pamięć używana"],"Load time":[null,"Czas ładowania"],"Branch":[null,"Branch"],"Now":[null,"Teraz"]}}}} \ No newline at end of file +{"messages":{"domain":"messages","locale_data":{"messages":{"100":[null,"100"],"250":[null,"250"],"500":[null,"500"],"":{"domain":"messages","plural_forms":"nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);","lang":"pl_PL"},"Drama":[null,"Dramat"],"Mystery":[null,"Tajemnica"],"Science-Fiction":[null,"Science-Fiction"],"Crime":[null,"Kryminał"],"Action":[null,"Akcja"],"Comedy":[null,"Komedia"],"Thriller":[null,"Dreszczowiec"],"Animation":[null,"Animacja"],"Family":[null,"Rodzinny"],"Fantasy":[null,"Fantastyka"],"Adventure":[null,"Przygodowy"],"Horror":[null,"Horror"],"Film-Noir":[null,"Film Noir"],"Sci-Fi":[null,"Sci-Fi"],"Romance":[null,"Romans"],"Sport":[null,"Sport"],"War":[null,"Wojenny"],"Biography":[null,"Biograficzny"],"History":[null,"Historia"],"Music":[null,"Muzyczny"],"Western":[null,"Western"],"News":[null,"Aktualności"],"Sitcom":[null,"Serial"],"Reality-TV":[null,"Reality-TV"],"Documentary":[null,"Dokumentalny"],"Game-Show":[null,"Teleturniej"],"Musical":[null,"Muzykal"],"Talk-Show":[null,"Talkshow"],"Started Download":[null,"Rozpoczęto pobieranie"],"Download Finished":[null,"Pobieranie zakończone"],"Subtitle Download Finished":[null,"Pobieranie napisów zakończono"],"SickRage Updated":[null,"Zaktualizowano SickRage"],"SickRage Updated To Commit#: ":[null,"SickRage zaktualizowany do Commit#: "],"SickRage new login":[null,"Nowy login SickRage"],"New login from IP: {0}. http://geomaplookup.net/?ip={0}":[null,"Nowe logowanie z IP: {0}. http://geomaplookup.net/?ip={0}"],"Repeat":[null,"Powrórka"],"Repeat (Separated)":[null,"Powtórka (podzielona)"],"Extend":[null,"Rozszerzony"],"Extend (Limited)":[null,"Rozszerzony (Ograniczony)"],"Extend (Limited, E-prefixed)":[null,"Rozszerz (ograniczone, poprzedzone E)"],"Downloaded":[null,"Pobrano"],"Snatched":[null,"Złapano"],"Snatched (Proper)":[null,"Złapano (Proper)"],"Failed":[null,"Nie powiodło się"],"Snatched (Best)":[null,"Złapano (Best)"],"Archived":[null,"Zarchiwizowano"],"Unknown":[null,"Nieznane"],"Unaired":[null,"Nie emitowany"],"Skipped":[null,"Pominięto"],"Wanted":[null,"Porządany"],"Ignored":[null,"Zignorowano"],"Subtitled":[null,"Z napisami"],"For best results please set the Download Station alias as":[null,"Aby uzyskać najlepsze wyniki, należy ustawić alias Download Station jako"],"You can check this setting in the Synology DSM":[null,"Możesz sprawdzić to ustawienie w Synology DSM"],"Control Panel":[null,"Panel zarządzania"],"Application Portal":[null,"Portal aplikacji"],"Make sure you allow DSM to be embedded with iFrames too in":[null,"Upewnij się, że pozwalasz by DSM zostało osadzone w iFrame także w"],"DSM Settings":[null,"Ustawienia DSM"],"Security":[null,"Bezpieczeństwo"],"<No Filter>":[null,"< brak filtra >"],"Daily Searcher":[null,"Codzienne wyszukiwanie"],"Backlog":[null,"Zaległości"],"Show Updater":[null,"Aktualizator serialu"],"Check Version":[null,"Sprawdzanie wersji"],"Show Queue":[null,"Kolejka programów"],"Search Queue (All)":[null,"Przeszukaj kolejkę (wszystkie)"],"Search Queue (Daily Searcher)":[null,"Przeszukaj kolejkę (codzienne wyszukiwanie)"],"Search Queue (Backlog)":[null,"Przeszukaj kolejkę (zaległości)"],"Search Queue (Manual)":[null,"Przeszukaj kolejkę (ręcznie)"],"Search Queue (Retry/Failed)":[null,"Kolejka wyszukiwania (Prób/Porażek)"],"Search Queue (RSS)":[null,"Kolejka wyszukiwania (RSS)"],"Find Propers":[null,"Znajdź właściwe"],"Postprocessor":[null,""],"Find Subtitles":[null,"Znajdź napisy"],"Trakt Checker":[null,"Sprawdź na Trakt"],"Event":[null,"Zdarzenie"],"Error":[null,"Błąd"],"Tornado":[null,"Tornado"],"Thread":[null,"Wątek"],"Main":[null,"Główny"],"Loading":[null,""],"New update found for SickRage, starting auto-updater":[null,"Znaleziono nową wersję SickRage, uruchamianie automatycznej aktualizacji"],"Update was successful":[null,"Aktualizacja przebiegła pomyślne"],"Update failed!":[null,"Aktualizacja nie powiodła się!"],"Backup":[null,"Kopia zapasowa"],"Config backup in progress...":[null,"Zapisywanie kopii zapasowej konfiguracji..."],"Config backup successful, updating...":[null,"Zapisano kopię zapasową konfiguracji, aktualizowanie..."],"Config backup failed, aborting update":[null,"Nie udało się zapisać kopii zapasowej konfiguracji, przerywanie aktualizacji"],"No update needed":[null,"Aktualizacja nie jest potrzebna"],"Mako Error":[null,"Błąd mako"],"Oops":[null,"Ups"],"Wrong API key used":[null,"Używano nieprawidłowego klucza API"],"Login":[null,"Logowanie"],"API Key not generated":[null,"Nie wygenerowano klucza API"],"API Builder":[null,"API Builder"],"Schedule":[null,"Harmonogram"],"Test 1":[null,"Test 1"],"This is test number 1":[null,"To jest test numer 1"],"Test 2":[null,"Test 2"],"This is test number 2":[null,"To jest test numer 2"],"You're using the {branch} branch. Please use 'master' unless specifically asked":[null,"Korzystasz z gałęzi {branch}. Proszę użyć gałęzi 'master' jeśli nie zostałeś specjalnie poproszony"],"Invalid show parameters":[null,"Nieprawidłowe parametry serialu"],"Invalid parameters":[null,""],"Episode couldn't be retrieved":[null,"Odcinek nie mógł zostać znaleziony"],"Home":[null,"Główna"],"Show List":[null,"Pokaż listę"],"Error: Unsupported Request. Send jsonp request with 'callback' variable in the query string.":[null,"Błąd: Nieobsługiwany typ żądania. Wyślij żądanie JSONP ze zmienną \"zwrotną\" w ciągu kwerendy."],"Success. Connected and authenticated":[null,"Powodzenie. Połączony i uwierzytelniony"],"Authentication failed. SABnzbd expects":[null,"Uwierzytelnianie nie powiodło się. SABnzbd wymaga"],"as authentication method":[null,"jako metoda uwierzytelniania"],"Unable to connect to host":[null,"Nie można połączyć się z hostem"],"SMS sent successfully":[null,"SMS wysłany pomyślnie"],"Problem sending SMS: {message}":[null,"Problem z wysyłaniem SMS: {message}"],"Telegram notification succeeded. Check your Telegram clients to make sure it worked":[null,"Wysłano powiadomienie Telegram. Sprawdź klienta Telegram by upewnić się że działa"],"Error sending Telegram notification: {message}":[null,"Wystąpił błąd podczas wysyłania powiadomienia Telegram: {message}"],"join notification succeeded. Check your join clients to make sure it worked":[null,"wysłano powiadomienie połączenia. Sprawdź podłączonego klienta by upewnić się że działa"],"Error sending join notification: {message}":[null,"Błąd podczas wysyłania powiadomienia podłączenia: {message}"]," with password":[null," z hasłem"],"Registered and Tested growl successfully {growl_host}":[null,"Zarejestrowano i przetestowano Growl z powodzeniem {growl_host}"],"Registration and Testing of growl failed {growl_host}":[null,"Niepowodzenie w rejestracji i testowaniu Growl {growl_host}"],"Test prowl notice sent successfully":[null,"Testowe powiadomienie Prowl wysłano pomyślnie"],"Test prowl notice failed":[null,"Niepowodzenie testowego powiadomienia Prowl"],"Boxcar2 notification succeeded. Check your Boxcar2 clients to make sure it worked":[null,"Wysłano powiadomienie Boxcar2. Sprawdź klienta Boxcar2 by upewnić się że działa"],"Error sending Boxcar2 notification":[null,"Wystąpił błąd podczas wysyłania powiadomienia Boxcar2"],"Pushover notification succeeded. Check your Pushover clients to make sure it worked":[null,"Wysłano powiadomienie Pushover. Sprawdź klienta Pushover by upewnić się że działa"],"Error sending Pushover notification":[null,"Wystąpił błąd podczas wysyłania powiadomienia Pushover"],"Key verification successful":[null,"Powodzenie weryfikacji klucza"],"Unable to verify key":[null,"Nie można zweryfikować klucza"],"Tweet successful, check your twitter to make sure it worked":[null,"Wysłano tweeta. Sprawdź swojego Twittera by upewnić się że działa"],"Error sending tweet":[null,"Błąd w wysyłaniu tweeta"],"Please enter a valid account sid":[null,""],"Please enter a valid auth token":[null,""],"Please enter a valid phone sid":[null,""],"Please format the phone number as \"+1-###-###-####\"":[null,""],"Authorization successful and number ownership verified":[null,""],"Error sending sms":[null,"Wystąpił błąd podczas wysyłania SMS"],"Slack message successful":[null,"Wysłano wadomości Slack"],"Slack message failed":[null,"Wysłanie wiadomości Slack nie powiodło się"],"Discord message successful":[null,""],"Discord message failed":[null,""],"Test KODI notice sent successfully to {kodi_host}":[null,"Test notyfikacji KODI wysłano pomyślnie do {kodi_host}"],"Test KODI notice failed to {kodi_host}":[null,"Test notyfikacji do KODI {kodi_host} nie powiódł się"],"Successful test notice sent to Plex Home Theater ... {plex_clients}":[null,"Udało się wysłać notyfikacje testową do Plex Home Theater ... {plex_clients}"],"Test failed for Plex Home Theater ... {plex_clients}":[null,"Test nie powiódł się dla Plex Home Theater ... {plex_clients}"],"Tested Plex Home Theater(s)":[null,"Przetestowano Plex Home Theater"],"Successful test of Plex Media Server(s) ... {plex_servers}":[null,"Udał się test Plex Media Server(s) ... {plex_servers}"],"Test failed, No Plex Media Server host specified":[null,"Test nie powiódł się, nie określono serwera Plex Media"],"Test failed for Plex Media Server(s) ... {plex_servers}":[null,"Test nie powiódł się dla Plex Media Server(s) ... {plex_servers}"],"Tested Plex Media Server host(s)":[null,"Przetestowano Plex Media Server host(y)"],"Tried sending desktop notification via libnotify":[null,"Próbowano wysłać notyfikacją desktop-ową przez libnotify"],"Test notice sent successfully to {emby_host}":[null,"Wysłano pomyślnie powiadomienie testowe do {emby_host}"],"Test notice failed to {emby_host}":[null,"Wiadomość testowa nie dotarła do {emby_host}"],"Successfully started the scan update":[null,"Pomyślnie wystartowano aktualizacje skanowania"],"Test failed to start the scan update":[null,"Nie udało się uruchomić aktualizacji skanowania"],"Test notice sent successfully to {nmj2_host}":[null,"Test notyfikacji wysłano pomyślnie do {nmj2_host}"],"Test notice failed to {nmj2_host}":[null,"Test notyfikacji do {nmj2_host} nie powiódł się"],"Trakt Authorized":[null,"Trakt autoryzowany"],"Trakt Not Authorized!":[null,"Trakt nie autoryzowany!"],"Test email sent successfully! Check inbox.":[null,"Wiadomość testowa wysłana pomyślnie! Sprawdź skrzynkę."],"ERROR: {last_error}":[null,"BŁĄD: {last_error}"],"Test NMA notice sent successfully":[null,"Wysłano pomyślnie notyfikacje testową NMA"],"Test NMA notice failed":[null,"Test notyfikacji NMA nie powiódł się"],"Pushalot notification succeeded. Check your Pushalot clients to make sure it worked":[null,"Notyfikacja Pushalot powiodła się. Sprawdź swoich klientów Pushalot w celu upewnienia się"],"Error sending Pushalot notification":[null,"Wystąpił błąd podczas wysyłania notyfikacji Pushalot"],"Pushbullet notification succeeded. Check your device to make sure it worked":[null,"Notyfikacja Pushbullet powiodła się. Sprawdź swoje urządzenie w celu upewnienia się"],"Error sending Pushbullet notification":[null,"Wystąpił błąd podczas wysyłania notyfikacji Pushbullet"],"Status":[null,"Stan"],"Restarting SickRage":[null,"Restartowanie SickRage"],"Update Failed":[null,"Aktualizacja nie powiodła się"],"Update wasn't successful, not restarting. Check your log for more information.":[null,"Aktualizacja nie powiodła się, nie restartuje. Sprawdź swoje logi w celu uzyskania więcej informacji."],"Checking out branch":[null,"Sprawdzam branch"],"Already on branch":[null,"Już na branch"],"Invalid show ID: {show}":[null,"Nieprawidłowe ID programu: {show}"],"Show not in show list":[null,"Programu nie ma na liście programów"],"Edit":[null,"Edytuj"],"This show is in the process of being downloaded - the info below is incomplete.":[null,"Dane programu są pobierane - poniższe informacje mogą być niepełne."],"The information on this page is in the process of being updated.":[null,"Informacje na tej stronie są właśnie aktualizowane."],"The episodes below are currently being refreshed from disk":[null,""],"Currently downloading subtitles for this show":[null,"Obecnie pobieram napisy do tego serialu"],"This show is queued to be refreshed.":[null,"Ten serial jest w kolejce do odświeżenia."],"This show is queued and awaiting an update.":[null,"Serial w kolejce, oczekuje na aktualizację."],"This show is queued and awaiting subtitles download.":[null,"Ten serial jest w kolejce i oczekuje na pobranie napisów."],"Resume":[null,"Wznów"],"Pause":[null,"Wstrzymaj"],"Remove":[null,"Usuń"],"Re-scan files":[null,"Ponownie przeskanuj pliki"],"Force Full Update":[null,"Wymuś Pełen Update"],"Update show in KODI":[null,"Aktualizuj program w KODI"],"Update show in Emby":[null,"Aktualizuj program w Emby"],"Hide specials":[null,"Chowaj specjalne"],"Show specials":[null,"Pokazuj odcinki specjalne"],"Preview Rename":[null,"Podgląd zmiany nazwy"],"Download Subtitles":[null,"Pobierz napisy"],"No scene exceptions":[null,"Bez wyjątków sceny"],"Invalid show ID":[null,"Nieprawidłowe ID programu"],"Unable to find the specified show":[null,"Nie można odnaleźć określonego programu"],"Unable to retreive Fansub Groups from AniDB.":[null,"Nie można pobrać grupy Fansub z AniDB."],"Edit Show":[null,"Edycja programu"],"Unable to refresh this show: {error}":[null,"Nie można odświeżyć tego serialu: {error}"],"New location <tt>{location}</tt> does not exist":[null,"Nowa lokalizacja <tt>{location}</tt> nie istnieje"],"Unable to update show: {error}":[null,"Nie można zaktualizować serialu: {error}"],"Unable to force an update on scene exceptions of the show.":[null,"Nie można wymusić aktualizacji wyjątkami sceny serialu."],"Unable to force an update on scene numbering of the show.":[null,"Nie można wymusić aktualizacji numeracji scen serialu."],"{num_errors:d} error{plural} while saving changes:":[null,"{num_errors:d} błędów{plural} podczas zapisywania zmian:"],"{show_name} has been {paused_resumed}":[null,"{show_name} został {paused_resumed}"],"resumed":[null,"wznowione"],"paused":[null,"wstrzymane"],"{show_name} has been {deleted_trashed} {was_deleted}":[null,"{show_name} został {deleted_trashed} {was_deleted}"],"deleted":[null,"usunięty"],"trashed":[null,"przeniesiony do kosza"],"(media untouched)":[null,"(media nietknięte)"],"(with all related media)":[null,"(z wszystkimi powiązanymi mediami)"],"Unable to refresh this show.":[null,"Nie można odświeżyć programu."],"Unable to update this show.":[null,"Nie można zaktualizować programu."],"Library update command sent to KODI host(s)): {kodi_hosts}":[null,"Komenda do odświeżenia biblioteki została wysłana do KODI host: {kodi_hosts}"],"Unable to contact one or more KODI host(s)): {kodi_hosts}":[null,"Nie można skontaktować się z jednym lub więcej hostami KODI: {kodi_hosts}"],"Library update command sent to Plex Media Server host: {plex_server}":[null,"Komenda do odświeżenia biblioteki została wysłana do Plex Media Server host: {plex_server}"],"Unable to contact Plex Media Server host: {plex_server}":[null,"Nie można skontaktować się z Plex Media Server: {plex_server}"],"Library update command sent to Emby host: {emby_host}":[null,"Polecenie aktualizacji biblioteki wysłane do serwera Emby: {emby_host}"],"Unable to contact Emby host: {emby_host}":[null,"Nie można skontaktować się z serwerem Emby: {emby_host}"],"You must specify a show and at least one episode":[null,"Musisz określić program i co najmniej jeden odcinek"],"Invalid status":[null,"Niepoprawny status"],"Backlog was automatically started for the following seasons of <b>{show_name}</b>":[null,"Ponowne wyszukiwanie zostało automatycznie uruchomione dla następujących sezonów <b>{show_name}</b>"],"Season":[null,"Sezon"],"Backlog started":[null,"Rozpoczęto wykonywanie zaległych zadań"],"Retrying Search was automatically started for the following season of <b>{show_name}</b>":[null,"Ponowna próba wyszukiwania została automatycznie uruchomiona dla następujących sezonów <b>{show_name}</b>"],"Retry Search started":[null,"Ponowne wyszukiwanie rozpoczęte"],"You must specify a show":[null,"Musisz określić program"],"Can't rename episodes when the show dir is missing.":[null,"Nie można zmienić nazwy odcinków, kiedy brakuje lokalizacji programu."],"New subtitles downloaded: {new_subtitle_languages}":[null,"Pobrano nowe napisy: {new_subtitle_languages}"],"No subtitles downloaded":[null,"Brak pobranych napisów"],"IRC":[null,"IRC"],"Could not load news from the repo. [Click here for news.md])({news_url})":[null,"Nie można załadować wiadomości z repozytorium. [Kliknij tutaj news.md]) ({news_url})"],"The was a problem connecting to github, please refresh and try again":[null,"Wystąpił problem z połączeniem z Github, proszę odświeżyć i spróbować ponownie"],"Could not load changes from the repo. [Click here for CHANGES.md]({changes_url})":[null,"Nie można załadować zmian z repozytorium. [Kliknij tutaj CHANGES.md]({changes_url})"],"Changelog":[null,"Rejestr zmian"],"Post Processing":[null,"Przetwarzanie końcowe"],"Add Shows":[null,"Dodanie serialu"],"No folders selected.":[null,"Nie wybrano folderów."],"New Show":[null,"Nowy program"],"Trending Shows":[null,"Popularne seriale"],"Popular Shows":[null,"Popularne programy"],"Most Anticipated Shows":[null,"Najbardziej oczekiwane seriale"],"Most Collected Shows":[null,""],"Most Watched Shows":[null,""],"Most Played Shows":[null,""],"Recommended Shows":[null,""],"New Shows":[null,"Nowe seriale"],"Season Premieres":[null,"Premiery sezonu"],"Existing Show":[null,"Istniejące programy"],"No root directories setup, please go back and add one.":[null,"Brak katalogu głównego, Proszę wrócić i go dodać."],"Show added":[null,"Dodano program"],"Adding the specified show {show_name}":[null,"Dodaje program {show_name}"],"Missing params, no Indexer ID or folder: {show_to_add} and {root_dir}/{show_path}":[null,"Brakujące parametry, brak ID indeksu lub folderu: {show_to_add} i {root_dir}/{show_path}"],"Unknown error. Unable to add show due to problem with show selection.":[null,"Nieznany błąd. Nie można dodać serialu ze względu na problem z wyborem serialu."],"Unable to add show":[null,"Nie można dodać programu"],"Folder {show_dir} exists already":[null,"Folder {show_dir} już istnieje"],"Unable to create the folder {show_dir}, can't add the show":[null,"Nie można utworzyć folderu {show_dir}, tym samym nie można dodać programu"],"Adding the specified show into {show_dir}":[null,"Dodaje określony program do {show_dir}"],"Shows Added":[null,"Dodano program"],"Automatically added {num_shows} from their existing metadata files":[null,"Automatycznie dodano {num_shows} z ich istniejących plików metadata"],"Mass Update":[null,"Masowa aktualizacja"],"Episode Overview":[null,"Informacje o odcinku"],"Missing Subtitles":[null,"Brak napisów"],"Backlog Overview":[null,"Przegląd zaległości"],"Mass Edit":[null,"Masowa edycji"],"Unable to update show: {excption_format}":[null,"Nie można zaktualizować programu: {excption_format}"],"Unable to refresh show {show_name}: {excption_format}":[null,"Nie można odświeżyć programu {show_name}: {excption_format}"],"Errors encountered":[null,"Napotkano błąd"],"Updates":[null,"Aktualizacje"],"Refreshes":[null,"Odśwież"],"Renames":[null,"Zmień nazwę"],"Subtitles":[null,"Napisy"],"The following actions were queued":[null,"Następujące akcje zostały skolejkowane"],"Failed Downloads":[null,"Nieudane pobrania"],"Manage Searches":[null,"Zarządzaj wyszukiwaniem"],"Backlog search started":[null,"Rozpoczęto wyszukiwanie zaległości"],"Daily search started":[null,"Rozpoczęto dzienne wyszukiwanie"],"Find propers search started":[null,"Rozpoczęto wyszukiwanie Proper"],"Subtitle search started":[null,"Rozpoczęto wyszukiwanie napisów"],"Remove Selected":[null,""],"Clear History":[null,"Wyczyść historię"],"Trim History":[null,"Przytnij historie"],"Selected history entries removed":[null,""],"History cleared":[null,"Wyczyszczona historia"],"Removed history entries older than 30 days":[null,"Usunięto z historii wpisy starsze niż 30 dni"],"General":[null,"Ogólne"],"Backup/Restore":[null,"Kopia zapasowa/przywracanie"],"Search Settings":[null,"Ustawienia wyszukiwania"],"Search Providers":[null,"Dostawcy wyszukiwania"],"Subtitles Settings":[null,"Ustawienia napisów"],"Notifications":[null,"Powiadomienia"],"Anime":[null,"Anime"],"SickRage Configuration":[null,"Konfiguracja SickRage"],"Config - Shares":[null,""],"Windows Shares Configuration":[null,""],"Saved Shares":[null,""],"Your Windows share settings have been saved":[null,""],"Config - General":[null,"Konfiguracja - Ogólne"],"General Configuration":[null,"Ogólna konfiguracja"],"Saved Defaults":[null,""],"Your \"add show\" defaults have been set to your current selections.":[null,""],"Unable to create directory {directory}, log directory not changed.":[null,"Nie można utworzyć katalogu {directory}, katalog dziennika nie został zmieniony."],"Unable to create directory {directory}, https cert directory not changed.":[null,"Nie można utworzyć katalogu {directory}, nie zmieniono katalogu klucza https."],"Unable to create directory {directory}, https key directory not changed.":[null,"Nie można utworzyć katalogu {directory}, klucz https katalogu nie zmieniono."],"Error(s) Saving Configuration":[null,"Błąd przy zapisywaniu konfiguracji"],"Configuration Saved":[null,"Konfiguracja zapisana"],"Config - Backup/Restore":[null,"Konfiguracja - kopia zapasowa/przywracanie"],"Config - Episode Search":[null,"Ustawienia - wyszukiwanie odcinka"],"Config - Post Processing":[null,"Ustawienia - przetwarzanie końcowe"],"Unpacking Not Supported, disabling unpack setting":[null,"Rozpakowanie nie obsługiwane, wyłączanie ustawień rozpakowywania"],"You tried saving an invalid normal naming config, not saving your naming settings":[null,""],"You tried saving an invalid anime naming config, not saving your naming settings":[null,"Próbowałeś zapisać ustawienia anime niepoprawną nazwą, nie zapiszę twoich ustawień"],"Config - Providers":[null,"Ustawienia - dostawcy"],"No Provider Name specified":[null,"Nie określono nazwy dostawcy"],"No Provider Url specified":[null,"Nie określono Url dostawcy"],"No Provider Api key specified":[null,"Nie określono klucza Api dostawcy"],"Config - Notifications":[null,"Ustawienia - powiadomienia"],"Config - Subtitles":[null,"Ustawienie - napisy"],"Config - Anime":[null,"Ustawienia - Anime"],"Clear Errors":[null,"Wyczyść Błędy"],"Clear Warnings":[null,"Wyczyść Ostrzeżenia"],"Submit Errors":[null,"Zgłoś błędy"],"Logs & Errors":[null,"Dzienniki i błędy"],"Log File":[null,"Plik dziennika"],"Logs":[null,"Dziennik"],"This is a test notification from SickRage":[null,""],"Choose Directory":[null,""],"Select log file folder location":[null,""],"Select CSS file":[null,""],"Select backup folder to save to":[null,""],"Select backup files to restore":[null,""],"Please fill out the necessary fields above.":[null,""],"<b>Step 1:</b> Confirm Authorization":[null,""],"Check blacklist name; the value needs to be a trakt slug":[null,""],"You must provide a recipient email address!":[null,""],"You didn't supply a Pushbullet api key":[null,""],"Don't forget to save your new pushbullet settings.":[null,""],"Select TV Download Directory":[null,""],"Select Unpack Directory":[null,""],"This pattern is invalid.":[null,""],"This pattern would be invalid without the folders, using it will force \"Season Folders\" on for all shows.":[null,""],"This pattern is valid.":[null,""],"Select .nzb black hole/watch location":[null,""],"Select .torrent black hole/watch location":[null,""],"Select .torrent download location":[null,""],"Minimum seeding time is":[null,""],"URL to your uTorrent client (e.g. http://localhost:8000)":[null,""],"Stop seeding when inactive for":[null,""],"URL to your Transmission client (e.g. http://localhost:9091)":[null,""],"URL to your Deluge client (e.g. http://localhost:8112)":[null,""],"IP or Hostname of your Deluge Daemon (e.g. scgi://localhost:58846)":[null,""],"URL to your Synology DS client (e.g. http://localhost:5000)":[null,""],"URL to your rTorrent client (e.g. scgi://localhost:5000 <br> or https://localhost/rutorrent/plugins/httprpc/action.php)":[null,""],"URL to your qBittorrent client (e.g. http://localhost:8080)":[null,""],"URL to your MLDonkey (e.g. http://localhost:4080)":[null,""],"URL to your putio client (e.g. http://localhost:8080)":[null,""],"<a herf=\"https://app.put.io/oauth/apps/new\" target=\"_blank\"> Create a new OAuth app for put.io</a>":[null,""],"Put.io Parent Folder":[null,""],"Put.io OAuth Token":[null,""],"Show Episodes":[null,"Pokaż Odcinki"],"Hide Episodes":[null,""],"Select Show Location":[null,""],"Select Unprocessed Episode Folder":[null,""],"DELETED":[null,""],"Resume updating the log on this page.":[null,""],"Pause updating the log on this page.":[null,""],"searching {searchingFor}...":[null,""],"search timed out, try again or try another indexer":[null,""],"loading folders...":[null,""],"Loading...":[null,"Trwa ładowanie..."],"You have reached this page by accident, please check the url.":[null,"Osiągnięto tę stronę przez przypadek, prosimy o sprawdzenie adresu URL."],"A mako error has occured.<br>\n If this happened during an update a simple page refresh may be the solution.<br>\n Mako errors that happen during updates may be a one time error if there were significant ui changes.":[null,"Wystąpił błąd przy uruchomieniu makra.<br>\n Jeżeli sytuacja się powtórzy odświeżenie strony powinno być rozwiązaniem.<br>\n Błędy przy inicjacji makra podczas aktualizacji mogą być jednorazowym zdarzeniem jeśli były robione znaczne zmiany w interfejsie użytkownika."],"Show/Hide Error":[null,"Pokaż/Ukryj błąd"],"Add New Show":[null,"Dodaj nowy serial"],"For shows that you haven't downloaded yet, this option finds a show on theTVDB.com, creates a directory for it's episodes, and adds it to SickRage.":[null,"W przypadku seriali które nie zostały jeszcze pobrane, opcja ta znajdzie go na TVDB.com, utworzy nowe katalogi dla epizodów i doda go do SickRage."],"Add From Trakt Lists":[null,"Dodaj z listy Trakt"],"For shows that you haven't downloaded yet, this option lets you choose from a show from one of the Trakt lists to add to SickRage.":[null,"W przypadku programów, które nie zostały jeszcze pobrane, opcja ta pozwala wybrać z program z listy Trakt do SickRage."],"Add From IMDB's Popular Shows":[null,"Dodać z popularnych seriali na IMDB"],"View IMDB's list of the most popular shows. This feature uses IMDB's MOVIEMeter algorithm to identify popular TV Series.":[null,"Zobacz na IMDB listę najbardziej popularnych seriali. Ta funkcja wykorzystuje algorytm IMDB MOVIEMeter do identyfikacja popularnych seriali TV."],"Add Existing Shows":[null,"Dodaj istniejące seriale"],"Use this option to add shows that already have a folder created on your hard drive. SickRage will scan your existing metadata/episodes and add the show accordingly.":[null,"Użyj tej opcji, aby dodać programy które mają już utworzony folder na dysku twardym. SickRage skanuje istniejące metadane/epizody i dodaje odpowiednio serial."],"Add Existing Show":[null,"Dodaj istniejące seriale"],"Manage Directories":[null,"Zarządzanie katalogami"],"Customize Options":[null,"Dostosuj opcje"],"SickRage can add existing shows, using the current options, by using locally stored NFO/XML metadata to eliminate user interaction. If you would rather have SickRage prompt you to customize each show, then use the checkbox below.":[null,"SickRage może dodać istniejące seriale wykorzystując lokalnie przechowywane metadane NFO/XML w celu wyeliminowania interakcji z użytkownikiem.\n Jeżeli wolisz sam dostosować każdy serial, zaznacz poniższe pole wyboru."],"Prompt me to set settings for each show":[null,"Monituj mnie do ustawienia opcji dla każdego serialu"],"Displaying folders within these directories which aren't already added to SickRage":[null,"Wyświetlanie folderów w obrębie tych katalogów, które nie zostały jeszcze dodane do SickRage"],"Submit":[null,"Zatwierdź"],"Find a show on theTVDB":[null,"Znajdź seriale na theTVDB"],"Show retrieved from existing metadata":[null,"Seriale pobrane z istniejących metadanych (?)"],"All Indexers":[null,"Wszystkie indeksatory"],"Search":[null,"Szukaj"],"This will only affect the language of the retrieved metadata file contents and episode filenames.":[null,"Będzie miało wpływ tylko na język pobieranych metadanych i nazwę odcinku."],"This <b>DOES NOT</b> allow SickRage to download non-english TV episodes!":[null,"To <b>NIE</b> pozwala na pobieranie nie anglojęzycznych odcinków!"],"Pick the parent folder":[null,"Wybierz folder nadrzędny"],"Pre-chosen Destination Folder":[null,"Wstępnie wybrany docelowy folder"],"Customize options":[null,"Dostosuj opcje"],"Add Show":[null,"Dodaj program"],"Skip Show":[null,"Pomiń Program"],"Sort By":[null,"Sortuj wg"],"Name":[null,"Nazwa"],"Original":[null,"Oryginał"],"Votes":[null,"Głosów"],"Rating":[null,"Ocena"],"Rating > Votes":[null,"Ocena > głosy"],"Sort Order":[null,"Kolejność sortowania"],"Asc":[null,"Rosnąco"],"Desc":[null,"Malejąco"],"Fetching of IMDB Data failed. Are you online?":[null,"Pobieranie danych z IMDB nie powiodło się. Czy jesteś online?"],"Exception":[null,"Wyjątek"],"Select Trakt List":[null,"Wybierz listę Trakt"],"Most Anticipated":[null,"Najbardziej oczekiwany"],"Trending":[null,"Trendy"],"Popular":[null,"Popularne"],"Most Watched":[null,"Najczęściej oglądane"],"Most Played":[null,"Najczęściej odtwarzane"],"Most Collected":[null,"Najczęściej pobierane"],"Recommended":[null,"Polecane"],"Toggle navigation":[null,"Przełącz nawigację"],"Profile":[null,"Profil"],"JSONP":[null,"JSONP"],"Back to SickRage":[null,"Powrót do SickRage"],"Parameters":[null,"Parametry"],"Required":[null,"Wymagane"],"Description":[null,"Opis"],"Type":[null,"Typ"],"Default value":[null,"Warość domyślna"],"Allowed values":[null,"Dopuszczalne wartości"],"Playground":[null,"Plac zabaw"],"Clear":[null,"Wyczyść"],"Yes":[null,"Tak"],"No":[null,"Nie"],"season":[null,"sezon"],"episode":[null,"odcinek"],"Python Version":[null,"Wersja Pythona"],"SSL Version":[null,"Wersja SSL"],"OS":[null,"System operacyjny"],"Locale":[null,"Język"],"User":[null,"Użytkownik"],"Program Folder":[null,"Folder programu"],"Config File":[null,"Plik konfiguracyjny"],"Database File":[null,"Plik bazy danych"],"Cache Folder":[null,"Folder pamięci podręcznej"],"Log Folder":[null,"Folder dziennika"],"Arguments":[null,"Argumenty"],"Web Root":[null,"Web Root"],"Website":[null,"Strona internetowa"],"Wiki":[null,"Wiki"],"Source":[null,"Źródło"],"IRC Chat":[null,"Chat IRC"],"AnimeDB Settings":[null,"Ustawienia AnimeDB"],"Look & Feel":[null,"Wygląd i funkcjonalność"],"AniDB is non-profit database of anime information that is freely open to the public":[null,"AniDB jest swobodnie dostępną dla każdego, niezyskowną (non-profit), bazą informacji o anime"],"Enable":[null,"Włącz"],"should SickRage use data from AniDB?":[null,""],"AniDB Username":[null,"Nazwa użytkownika AniDB"],"username of your AniDB account":[null,""],"AniDB Password":[null,"Hasło AniDB"],"password of your AniDB account":[null,""],"AniDB MyList":[null,"AniDB MyList"],"do you want to add the PostProcessed episodes to the MyList?":[null,""],"Look and Feel":[null,"Widzieć i czuć"],"How should the anime functions show and behave.":[null,"Jak powinny funkcje anime się pokazywać i zachowywać."],"Split show lists":[null,"Podziel listy seriali"],"separate anime and normal shows in groups":[null,""],"Split in tabs":[null,""],"use tabs for when splitting show lists":[null,""],"Restore":[null,"Przywróć"],"Backup your main database file and config.":[null,"Kopia bazy danych i pliku konfiguracyjnego."],"Select the folder you wish to save your backup file to":[null,"Wybierz folder do którego chcesz zapisać pliki kopii"],"Restore your main database file and config.":[null,"Przywróć plik głównej bazy oraz ustawienia."],"Select the backup file you wish to restore":[null,"Wybierz plik kopii zapasowej którą chcesz przywrócić"],"Misc":[null,"Różne"],"Interface":[null,"Interfejs"],"Advanced Settings":[null,"Ustawienia zaawansowane"],"Startup options. Indexer options. Log and show file locations.":[null,"Opcje uruchamiania. Opcje indeksowania. Lokalizacje plików dziennika i seriali."],"Some options may require a manual restart to take effect.":[null,"Niektóre opcje mogą wymagać manualnego ponownego uruchomienia."],"Default Indexer Language":[null,"Domyślny język indeksowania"],"for adding shows and metadata providers":[null,"do dodawania serialu i dostawców metadanych"],"Launch browser":[null,"Uruchom przeglądarkę"],"open the SickRage home page on startup":[null,"uruchom stronę domową SickRage przy uruchomieniu"],"Initial page":[null,"Strona początkowa"],"Shows":[null,"Serial"],"when launching SickRage interface":[null,"przy uruchamianiu interfejsu SickRage"],"Choose hour to update shows":[null,"Wybierz godzinę aktualizacji seriali"],"with information such as next air dates, show ended, etc. Use 15 for 3pm, 4 for 4am etc.":[null,"dla informacji takich jak następna data emisji, zakończenia serialu itp. używaj 15 zamiast 3pm, 4 zamiast 4am itp."],"note":[null,""],"minutes are randomized each time SickRage is started":[null,""],"Send to trash for actions":[null,"Wyślij do kosza dla akcji"],"when using show \"Remove\" and delete files":[null,"podczas użycia \"Usuń\" i kasowania plików serialu"],"on scheduled deletes of the oldest log files":[null,"na zaplanowanym usunięciu najstarszych plików logu"],"selected actions use trash (recycle bin) instead of the default permanent delete":[null,"wybrana opcja używa kosza zamiast domyślnego trwałego usuwania"],"Log file folder location":[null,"Lokalizacja pliku z logami"],"Number of Log files saved":[null,"Ilość zapisanych logów"],"number of log files saved when rotating logs (default: 5) (REQUIRES RESTART)":[null,"liczba zapisanych logów podczas ich rotacji (domyślnie: 5) (POTRZEBNY RESTART)"],"Size of Log files saved":[null,"Rozmiar zapisywanych plików dziennika"],"maximum size in MB of the log file (default: 1MB) (REQUIRES RESTART)":[null,"maksymalny rozmiar w MB pliku z logami (domyślnie: 1MB) (POTRZEBNY RESTART)"],"Use initial indexer set to":[null,"Użyj wstępnego zestawu indeksowania do"],"as the default selection when adding new shows":[null,"jako domyślny wybór gdy dodajesz nowy program"],"Timeout show indexer at":[null,"Limit czasu indeksowania programu"],"seconds of inactivity when finding new shows (default:20)":[null,"sekund nieaktywności podczas szukania nowego programu (domyślnie: 20)"],"Show root directories":[null,"Pokaż główne katalogi"],"where the files of shows are located":[null,"gdzie pliki znajdują się pliki programów"],"Save Changes":[null,"Zapisz zmiany"],"Options for software updates.":[null,"Opcje aktualizacji oprogramowania."],"Check software updates":[null,"Sprawdź aktualizacje oprogramowania"],"and display notifications when updates are available. Checks are run on startup and at the frequency set below*":[null,"i wyświetla powiadomienia, gdy aktualizacje są dostępne. Kontrole są uruchamiane przy starcie i z częstotliwością ustawioną poniżej*"],"Automatically update":[null,"Aktualizuj automatycznie"],"fetch and install software updates. Updates are run on startup and in the background at the frequency set below*":[null,"pobiorę i zainstaluje aktualizacje oprogramowania. Aktualizacje są uruchamiane przy starcie i działają w tle z częstotliwością ustawioną poniżej*"],"Check the server every*":[null,"Sprawdzaj serwer co*"],"hours for software updates (default:1)":[null,"godziny dla aktualizacji oprogramowania (domyślnie: 1)"],"Notify on software update":[null,"Powiadomienia o aktualizacji oprogramowania"],"send a message to all enabled notifiers when SickRage has been updated":[null,"wyślij wiadomość do wszystkich włączonych powiadamiaczy, po aktualizacji SickRage"],"User Interface":[null,"Interfejs użytkownika"],"Options for visual appearance.":[null,"Opcje wyglądu."],"Interface Language":[null,"Język interfejsu"],"System Language":[null,"Język systemu"],"for appearance to take effect, save then refresh your browser":[null,"żeby motyw został uruchomiony, zapisz a potem odśwież przeglądarkę"],"Display theme":[null,"Wyświetl motyw"],"Dark":[null,"Ciemny"],"Light":[null,"Jasny"],"Use a background image":[null,""],"use a custom image as background for SickRage":[null,""],"Background Path":[null,""],"Path to the background image":[null,""],"Show fanart in the background":[null,"Pokaż \"fanart\" w tle"],"on the show summary page":[null,"na stronie z podsumowaniem programu"],"Fanart transparency":[null,"Przeźroczystość \"fanart\""],"transparency of the fanart in the background":[null,""],"Use a custom stylesheet file":[null,""],"use a custom .css file to style SickRage (for advanced users)":[null,""],"Stylesheet File Path":[null,""],"Path to the stylesheet (.css) file":[null,""],"Show all seasons":[null,"Pokaż wszystkie sezony"],"Sort with \"The\", \"A\", \"An\"":[null,"Sortuj z \"The\", \"A\", \"An\""],"include articles (\"The\", \"A\", \"An\") when sorting show lists":[null,"obejmij przedimki (\"The\", \"A\", \"An\") gdy sortujesz listę programów"],"Missed episodes range":[null,"Zakres przegapionych odcinków"],"set the range in days of the missed episodes in the Schedule page":[null,""],"Display fuzzy dates":[null,"Wyświetlaj niepełne daty"],"move absolute dates into tooltips and display e.g. \"Last Thu\", \"On Tue\"":[null,"przełóż na daty absolutne w podpowiedziach i wyświetl np. \"Ostatni czwartek\", \"We wtorek\""],"Trim zero padding":[null,"Usuń uzupełnienia zero"],"remove the leading number \"0\" shown on hour of day, and date of month":[null,"usuń wiodącą cyfrę \"0\" z godziny dnia oraz dnia miesiąca"],"Date style":[null,"Styl wyświetlania daty"],"Use System Default":[null,"Użyj domyślnych ustawień systemowych"],"Time style":[null,"Styl wyświetlania czasu"],"seconds are only shown on the History page":[null,"sekundy są widoczne jedynie na stronie Historii"],"Timezone":[null,"Strefa czasowa"],"Local":[null,"Lokalny"],"Network":[null,"Sieć"],"display dates and times in either your timezone or the shows network timezone":[null,"wyświetl daty i czas albo twojej strefy czasowej lub strefy czasowej programu"],"use local timezone to start searching for episodes minutes after show ends (depends on your dailysearch frequency)":[null,""],"Download url":[null,"Adres url do pobrania"],"URL where the shows can be downloaded.":[null,"URL skąd można pobrać programy."],"Web Interface":[null,"Interfejs www"],"it is recommended that you enable a username and password to secure SickRage from being tampered with remotely.":[null,""],"these options require a manual restart to take effect.":[null,""],"API key":[null,"Klucz API"],"used to give 3rd party programs limited access to SickRage":[null,"wykorzystywany do dawanie programom trzecim ograniczonego dostępu do SickRage"],"you can try all the features of the API":[null,"możesz wypróbować wszystkie funkcje API"],"here":[null,"tutaj"],"HTTP logs":[null,"Dzienniki HTTP"],"enable logs from the internal Tornado web server":[null,"uruchom logi z wewnętrznego serwera Tornado"],"HTTP username":[null,"Nazwa użytkownika HTTP"],"set blank for no login":[null,"zostaw puste dla braku logowania"],"HTTP password":[null,"Hasło HTTP"],"blank = no authentication":[null,"puste = brak uwierzytelniania"],"HTTP port":[null,"HTTP port"],"web port to browse and access SickRage (default:8081)":[null,"port webowy do przeglądania i dostępu do SickRage (domyślnie: 8081)"],"Notify on login":[null,"Poinformuj przy logowaniu"],"enable to be notified when a new login happens in webserver":[null,"uruchom powiadomienie, gdy nastąpi nowe logowanie do serwera www"],"Listen on IPv6":[null,"Nasłuchuj po IPv6"],"attempt binding to any available IPv6 address":[null,"spróbuj powiązać z każdym wolnym adresem IPv6"],"Enable HTTPS":[null,"Włącz HTTPS"],"enable access to the web interface using a HTTPS address":[null,"włącz dostęp do interfejsu webowego używając adresu HTTPS"],"HTTPS certificate":[null,"Certyfikat HTTPS"],"file name or path to HTTPS certificate":[null,"nazwa pliku lub ścieżka do certyfikatu HTTPS"],"HTTPS key":[null,"Klucz HTTPS"],"file name or path to HTTPS key":[null,"nazwa pliku lub ścieżka do klucza HTTPS"],"Reverse proxy headers":[null,"Nagłówki Reverse Proxy"],"accept the following reverse proxy headers (advanced)...":[null,""],"(X-Forwarded-For, X-Forwarded-Host, and X-Forwarded-Proto)":[null,""],"CPU throttling":[null,"Ograniczanie CPU"],"Normal (default). High is lower and Low is higher CPU use":[null,"Normalne (domyślny). Wysokie jest niższe a niskie to wyższe wykorzystanie CPU"],"Anonymous redirect":[null,"Anonimowe przekierowanie"],"backlink protection via anonymizer service, must end in \"?\"":[null,"ochrona wsteczna (backlink protection) poprzez serwis anonimizujący musi zakończyć się \"?\""],"Enable debug":[null,"Włączenie debugowania"],"enable debug logs":[null,""],"Verify SSL Certs":[null,"Weryfikuj certyfikaty SSL"],"verify SSL Certificates (Disable this for broken SSL installs (Like QNAP))":[null,""],"No Restart":[null,"Brak restartu"],"only shutdown when restarting SR":[null,""],"only select this when you have external software restarting SR automatically when it stops (like FireDaemon)":[null,""],"Encrypt passwords":[null,"Zaszyfruj hasło"],"in the <code>config.ini</code> file":[null,""],"warning":[null,""],"passwords must only contain":[null,""],"ASCII characters":[null,"Znaki ASCII"],"Unprotected calendar":[null,"Niechroniony kalendarz"],"allow subscribing to the calendar without user and password":[null,""],"some services like Google Calendar only work this way":[null,""],"Google Calendar Icons":[null,"Ikony kalendarza Google"],"show an icon next to exported calendar events in Google Calendar":[null,""],"Proxy host":[null,"Serwer proxy"],"blank to disable or proxy to use when connecting to providers":[null,"zostaw puste, aby wyłączyć lub używać proxy do łączenia z dostawcami"],"also use global proxy setting for indexers (tvdb, xem, anidb, etc.)":[null,""],"Skip Remove Detection":[null,"Pomiń usunięcie wykrywania"],"skip detection of removed files":[null,""],"if disabled the episode will be set to the default deleted status":[null,""],"Default deleted episode status":[null,"Domyślny status usuniętych odcinków"],"define the status to be set for media file that has been deleted.":[null,""],"Archived option will keep previous downloaded quality":[null,"Opcja archiwizacji pozostawi poprzednio pobraną jakość"],"example: Downloaded (1080p WEB-DL) ==> Archived (1080p WEB-DL)":[null,""],"Options for github related features.":[null,"Opcje związane z funkcjami github."],"Branch version":[null,"Wersja branch"],"error: No branches found.":[null,""],"select branch to use (restart required)":[null,"wybierz branch to użycia (wymagany restart)"],"Authorization Type":[null,""],"Username and password":[null,""],"Personal access token":[null,""],"You must use a personal access token if you're using \"two-factor authentication\" on GitHub.":[null,""],"GitHub username":[null,"Nazwa użytkownika GitHub"],"*** (REQUIRED FOR SUBMITTING ISSUES) ***":[null,"*** (WYMAGANE DLA ZGŁASZANIA BŁĘDÓW) ***"],"GitHub password":[null,"Hasło GitHub"],"GitHub personal access token":[null,""],"Generate Token":[null,""],"Manage Tokens":[null,""],"GitHub remote for branch":[null,"Zdalny GitHub dla branch"],"access repo configured remotes (save then refresh browser)":[null,""],"default":[null,""],"origin":[null,""],"Git executable path":[null,"Ścieżka pliku wykonywalnego Git"],"only needed if OS is unable to locate git from env":[null,"potrzebne tylko jeśli OS nie jest w stanie zlokalizować git z env"],"Git reset":[null,"Git reset"],"removes untracked files and performs a hard reset on git branch automatically to help resolve update issues":[null,"usuwa nieśledzone pliki i aby pomóc rozwiązać problem z aktualizacją przeprowadza automatycznie twardy reset na git branch"],"Home Theater / NAS":[null,"Kino domowe / NAS"],"Devices":[null,"Urządzenia"],"Social":[null,"Społeczność"],"A free and open source cross-platform media center and home entertainment system software with a 10-foot user interface designed for the living-room TV.":[null,"Darmowe i na licencji open source, wielo-platformowe centrum multimedialne oraz domowe centrum rozrywki z interfejsem użytkownika stworzonym dla dużego ekranu, zaprojektowane dla pokoju telewizyjnego."],"send KODI commands?":[null,""],"Always on":[null,"Zawsze włączony"],"log errors when unreachable?":[null,"zalogować błąd gdy nieosiągalny?"],"Notify on snatch":[null,"Informuj po zlokalizowaniu"],"send a notification when a download starts?":[null,"wyślij informację po rozpoczęciu pobierania?"],"Notify on download":[null,"Informuj po pobraniu"],"send a notification when a download finishes?":[null,"wyślij informację o zakończeniu pobierania?"],"Notify on subtitle download":[null,"Informuj o pobraniu napisów"],"send a notification when subtitles are downloaded?":[null,"wyślij informację po pobraniu napisów?"],"Update library":[null,"Aktualizuj bibliotekę"],"update KODI library when a download finishes?":[null,"aktualizacja biblioteki KODI, po zakończeniu pobierania?"],"Full library update":[null,"Pełna aktualizacja biblioteki"],"perform a full library update if update per-show fails?":[null,"wykonaj pełną aktualizacje biblioteki jeśli aktualizacja pojedynczych programów się nie powiedzie?"],"Only update first host":[null,"Tylko zaktualizuj pierwszego hosta"],"only send library updates to the first active host?":[null,"wysyłaj aktualizacje bibliotek tylko do pierwszego hosta?"],"KODI IP:Port":[null,"KODI IP: Port"],"host running KODI (eg. 192.168.1.100:8080)":[null,"host na którym działa KODI (np. 192.168.1.100:8080)"],"(multiple host strings must be separated by commas)":[null,"(wiele hostów musi być oddzielone przecinkami)"],"Username":[null,"Użytkownik"],"username for your KODI server (blank for none)":[null,"nazwa użytkownika na serwerze KODI (puste jeżeli brak)"],"Password":[null,"Hasło"],"password for your KODI server (blank for none)":[null,"hasło do serwera KODI (puste jeżeli brak)"],"Click below to test.":[null,"Kliknij poniżej, aby przetestować."],"Experience your media on a visually stunning, easy to use interface on your Mac connected to your TV. Your media library has never looked this good!":[null,"Doświadcz swoich mediów na wizualnie olśniewającym, łatwym w użyciu interfejsie na swoim Mac-u podłączonym do TV. Twoja biblioteka mediów nigdy nie wyglądała tak dobrze!"],"For sending notifications to Plex Home Theater (PHT) clients, use the KODI notifier with port <b>3005</b>.":[null,"W celu wysyłania notyfikacji do klientów Plex Home Theater (PHT), używaj powiadamiacza KODI z portem <b>3005</b>."],"send Plex Media Server library updates?":[null,""],"Plex Media Server Auth Token":[null,"Plex Media Server Auth Token"],"auth token used by Plex":[null,""],"Update Library":[null,"Aktualizuj bibliotekę"],"update Plex Media Server library when a download finishes":[null,"aktualizuj bibliotekę Plex Media Server po zakończeniu pobierania"],"Plex Media Server IP:Port":[null,"Plex Media Server IP:Port"],"one or more hosts running Plex Media Server<br/>(eg. 192.168.1.1:32400, 192.168.1.2:32400)":[null,"jeden lub więcej działający hostów Plex Media Server<br>(eg. 192.168.1.1:32400, 192.168.1.2:32400)"],"HTTPS":[null,"HTTPS"],"use https for plex media server requests?":[null,"używać https dla żądań Plex Media Server?"],"Click below to test Plex Media Server(s)":[null,"Kliknij poniżej, aby przetestować Plex Media Server"],"Test Plex Media Server":[null,"Test Plex Media Server"],"Plex Home Theater":[null,"Plex Home Theater"],"send Plex Home Theater notifications?":[null,""],"Plex Home Theater IP:Port":[null,"Plex Home Theater IP:Port"],"one or more hosts running Plex Home Theater<br>(eg. 192.168.1.100:3000, 192.168.1.101:3000)":[null,"jeden lub więcej hostów Plex Home Theater<br>(eg. 192.168.1.100:3000, 192.168.1.101:3000)"],"Click below to test Plex Home Theater(s)":[null,"Kliknij poniżej, aby przetestować Plex domu Theater"],"Test Plex Home Theater":[null,"Test Plex Home Theater"],"some Plex Home Theaters <b class=\"boldest\">do not</b> support notifications e.g. Plexapp for Samsung TVs":[null,""],"Emby":[null,"Emby"],"A home media server built using other popular open source technologies.":[null,"Domowe centrum mediów zbudowane z użyciem innych popularnych technologii open source."],"send update commands to Emby?":[null,""],"Emby IP:Port":[null,"Emby IP: Port"],"host running Emby (eg. 192.168.1.100:8096)":[null,"host na którym działa Emby (np. 192.168.1.100:23053)"],"Emby API Key":[null,"Klucz API Emby"],"Networked Media Jukebox":[null,"Networked Media Jukebox"],"The Networked Media Jukebox, or NMJ, is the official media jukebox interface made available for the Popcorn Hour 200-series.":[null,"Networked Media Jukebox lub NMJv2, są oficjalnymi interfejsami media jukebox stworzonymi dla serii 300 i 400 Popcorn Hour."],"send update commands to NMJ?":[null,""],"Popcorn IP address":[null,"Adres IP Popcorn"],"IP address of Popcorn 200-series (eg. 192.168.1.100)":[null,"Adres IP Popcorn serii 200 (np. 192.168.1.100)"],"Get settings":[null,"Pobierz ustawienia"],"Get Settings":[null,"Pobierz ustawienia"],"the Popcorn Hour device must be powered on and NMJ running.":[null,"urządzenie Popcorn Hour musi być włączone i NMJ musi być uruchomiony."],"NMJ database":[null,"Baza danych NMJ"],"automatically filled via the 'Get Settings' button.":[null,"automatycznie wypełnij poprzez guzik \"Pobierz ustawienia\"."],"NMJ mount url":[null,"URL montowanego NMJ"],"Networked Media Jukebox v2":[null,"Networked Media Jukebox v2"],"The Networked Media Jukebox, or NMJv2, is the official media jukebox interface made available for the Popcorn Hour 300 & 400-series.":[null,"Networked Media Jukebox lub NMJv2, są oficjalnymi interfejsami media jukebox stworzonymi dla serii 300 i 400 Popcorn Hour."],"send update commands to NMJv2?":[null,""],"IP address of Popcorn 300/400-series (eg. 192.168.1.100)":[null,"Adres IP Popcorn serii 300/400 (np. 192.168.1.100)"],"Database location":[null,"Lokalizacja bazy danych"],"Database instance":[null,"Instancja bazy danych"],"adjust this value if the wrong database is selected.":[null,"dostosuj tą wartość jeśli została wybrana zła baza danych."],"Find database":[null,"Znajdź bazę danych"],"Find Database":[null,"Znajdź bazę danych"],"the Popcorn Hour device must be powered on.":[null,"urządzenie Popcorn Hour musi być włączone."],"NMJv2 database":[null,"Baza danych NMJv2"],"automatically filled via the 'Find Database' buttons.":[null,"automatycznie wypełnione poprzez przycisk \"Znajdź bazę danych\"."],"Synology":[null,"Synology"],"The Synology DiskStation NAS.":[null,"Synology DiskStation NAS."],"Synology Indexer is the daemon running on the Synology NAS to build its media database.":[null,"Indekser Synology jest serwisem działającym na NAS'ie Synology do budowania swojej multimedialnej bazy danych."],"send Synology notifications?":[null,""],"requires SickRage to be running on your Synology NAS.":[null,"wymaga działającego Sickrage na twoim Synology."],"Synology Indexer":[null,"Indekser Synology"],"Synology Notifier is the notification system of Synology DSM":[null,"Powiadamiacz Synology jest systemem powiadomień w DSM Synology"],"send notifications to the Synology Notifier?":[null,""],"pyTivo":[null,"pyTivo"],"pyTivo is both an HMO and GoBack server. This notifier will load the completed downloads to your Tivo.":[null,"pyTivo jest zarówno HMO jak i serwerem GoBack. Ten powiadamiacz załaduje zakończone pobrania do twojego Tivo."],"send notifications to pyTivo?":[null,""],"requires the downloaded files to be accessible by pyTivo.":[null,"wymaga aby pobrane pliki były dostępne przez pyTivo."],"pyTivo IP:Port":[null,"pyTivo IP:Port"],"host running pyTivo (eg. 192.168.1.1:9032)":[null,"host, na którym działa pyTivo (np. 192.168.1.1:9032)"],"pyTivo share name":[null,"nazwa udziału pyTivo"],"value used in pyTivo Web Configuration to name the share.":[null,"wartość używana w konfiguracji web pyTivo do nazwania udziału."],"Tivo name":[null,"Nazwa TiVo"],"(Messages & Settings > Account & System Information > System Information > DVR name)":[null,"(Wiadomości i Ustawienia> Konto i Informacje o systemie> Informacje o systemie> nazwa DVR)"],"Growl":[null,"Growl"],"A cross-platform unobtrusive global notification system.":[null,"Wieloplatformowy, dyskretny i globalny system powiadomień."],"send Growl notifications?":[null,""],"Growl IP:Port":[null,"Growl IP:Port"],"host running Growl (eg. 192.168.1.100:23053)":[null,"host na którym działa Growl (np. 192.168.1.100:23053)"],"may leave blank if SickRage is on the same host.":[null,"można zostawić puste gdy SickRage działa na tym samym hoście."],"otherwise Growl <b>requires</b> a password to be used.":[null,"w przeciwnym wypadku Growl <b>wymaga</b> użycia hasła."],"Click below to register and test Growl, this is required for Growl notifications to work.":[null,"Kliknij poniżej aby zarejestrować i przetestować Growl, jest to wymagane dla działania notyfikacji Growl."],"Register Growl":[null,"Zarejestruj Growl"],"Prowl":[null,"Prowl"],"A Growl client for iOS.":[null,"Klient Growl dla iOS."],"send Prowl notifications?":[null,""],"Prowl Message Title":[null,"Tytuł wiadomości Prowl"],"Global Prowl API key(s)":[null,"Globalny klucz (klucze) dla API Prowl"],"Prowl API(s) listed here, separated by commas if applicable, will<br> receive notifications for <b>all</b> shows. Your Prowl API key is available at:":[null,"Prowl API wymienione tutaj, oddzielone przecinkami, jeśli jest taka potrzeba, będą <br>otrzymywać powiadomienia o<b>wszystkich</b> serialach. Twój klucz API jest dostępny na:"],"(this field may be blank except when testing.)":[null,""],"Show notification list":[null,"Pokaż listę powiadomień"],"-- Select a Show --":[null,"-- Wybierz program --"],"Configure per-show notifications here by entering Prowl API key(s), separated by commas, '\n 'after selecting a show in the drop-down box. Be sure to activate the 'Save for this show' '\n 'button below after each entry.":[null,"Skonfiguruj powiadomienia na poszczególne seriale wprowadzając tutaj klucz Prowl API, oddzielone przecinkami, '\n 'po wybraniu serialu w polu listy rozwijanej. Pamiętaj by aktywować 'Zapisz dla tego serialu' '\n ' przycisk poniżej dla każdego wpisu."],"Save for this show":[null,"Zapisz dla tego serialu"],"Prowl priority":[null,"Priorytet Prowl"],"Very Low":[null,"Bardzo niski"],"Moderate":[null,"Umiarkowany"],"Normal":[null,"Normalny"],"High":[null,"Wysoki"],"Emergency":[null,"Awaryjny"],"priority of Prowl messages from SickRage.":[null,"priorytet wiadomości Prowl od SickRage."],"Libnotify":[null,"Libnotify"],"The standard desktop notification API for Linux/*nix systems. This notifier will only function if the pynotify module is installed (Ubuntu/Debian package <a href=\"apt:python-notify\">python-notify</a>).":[null,"Standardowe API powiadomień dla systemów Linux/*nix. Notyfikacje zadziałają tylko wtedy, gdy moduł pynotify będzie zainstalowany (paczka dla Ubuntu/Debiana <a href=\"apt:python-notify\">python-notify</a>)."],"send Libnotify notifications?":[null,""],"Pushover":[null,"Pushover"],"Pushover makes it easy to send real-time notifications to your Android and iOS devices.":[null,"Pushover pozwala w łatwy sposób wysyłanie w czasie rzeczywistym notyfikacji do Twoich urządzeń Android i iOS."],"send Pushover notifications?":[null,""],"Pushover key":[null,"Klucz Pushover"],"user key of your Pushover account":[null,"klucz użytkownika Twojego konta Pushover"],"Pushover API key":[null,"Klucz API Pushover"],"click here":[null,""]," to create a Pushover API key":[null,""],"Pushover devices":[null,"Urządzenia Pushover"],"comma separated list of pushover devices you want to send notifications to":[null,"oddzielona przecinkami lista urządzeń Pushover, do których chcesz wysyłać notifykacje"],"Pushover notification sound":[null,"Dźwięk notyfikacji Pushover"],"Bike":[null,"Bike"],"Bugle":[null,"Bugle"],"Cash Register":[null,"Cash Register"],"Classical":[null,"Classical"],"Cosmic":[null,"Cosmic"],"Falling":[null,"Falling"],"Gamelan":[null,"Gamelan"],"Incoming":[null,"Incoming"],"Intermission":[null,"Intermission"],"Magic":[null,"Magic"],"Mechanical":[null,"Mechanical"],"Piano Bar":[null,"Piano Bar"],"Siren":[null,"Siren"],"Space Alarm":[null,"Space Alarm"],"Tug Boat":[null,"Tug Boat"],"Alien Alarm (long)":[null,"Alien Alarm (long)"],"Climb (long)":[null,"Climb (long)"],"Persistent (long)":[null,"Persistent (long)"],"Pushover Echo (long)":[null,"Pushover Echo (long)"],"Up Down (long)":[null,"Up Down (long)"],"None (silent)":[null,"None (silent)"],"Device specific":[null,"Zależne od urządzenia"],"choose notification sound to use":[null,""],"Pushover priority":[null,""],"Choose priority to use":[null,""],"Boxcar 2":[null,"Boxcar 2"],"Read your messages where and when you want them!":[null,"Czytaj swoje wiadomości gdzie i kiedy chcesz!"],"send Boxcar notifications?":[null,""],"Boxcar2 access token":[null,"Token dostępu Boxcar2"],"access token for your Boxcar account.":[null,"token dostępu dla twojego konta Boxcar."],"NMA":[null,"NMA"],"Notify My Android":[null,"Notify My Android"],"Notify My Android is a Prowl-like Android App and API that offers an easy way to send notifications from your application directly to your Android device.":[null,"Notify My Android jest to aplikacja i API na Androida, która oferuje łatwy sposób na wysyłanie powiadomień z Twoich aplikacji bezpośrednio do Twojego urządzenia Android."],"send NMA notifications?":[null,""],"NMA API key":[null,"Użyj klucza API NMA"],"(multiple keys must be separated by commas, up to a maximum of 5)":[null,"(więcej kluczy musi być odseparowanych przecinkami, maksymalnie 5)"],"NMA priority":[null,"Priorytet NMA"],"priority of NMA messages from SickRage.":[null,"priorytet wiadomości NMA od SickRage."],"Pushalot":[null,"Pushalot"],"Pushalot is a platform for receiving custom push notifications to connected devices running Windows Phone or Windows 8.":[null,"Pushalot to platforma do odbierania powiadomień w trybie push przez podłączone urządzenia z systemem Windows Phone lub Windows 8."],"send Pushalot notifications ?":[null,""],"Pushalot authorization token":[null,"Token autoryzujący Pushalot"],"authorization token of your Pushalot account.":[null,"autoryzujacy token Twojego konta Pushalot."],"Pushbullet":[null,"Pushbullet"],"Pushbullet is a platform for receiving custom push notifications to connected devices running Android/iOS and desktop browsers such as Chrome, Firefox or Opera.":[null,"Pushbullet to platforma do odbierania powiadomień w trybie push przez urządzenia Android/iOS i przeglądarki takie jak Chrome, Firefox albo Opera."],"send Pushbullet notifications?":[null,""],"Pushbullet API key":[null,"Klucz API Pushbullet"],"API key of your Pushbullet account":[null,"Klucz użytkownika Twojego konta Pushbullet"],"Pushbullet devices":[null,"Urządzenia Pushbullet"],"Update device list":[null,"Aktualizuj listę urządzeń"],"Pushbullet channels":[null,"Kanały Pushbullet"],"Free Mobile":[null,"Free Mobile"],"Free Mobile is a famous French cellular network provider.<br> It provides to their customer a free SMS API.":[null,"Free Mobile to znany francuski operator sieci komórkowej. <br> Udostępnia dla swoich klientów darmowy API do wysyłania SMS'ów."],"send SMS notifications?":[null,""],"send a SMS when a download starts?":[null,"wyślij SMS po rozpoczęciu pobierania?"],"send a SMS when a download finishes?":[null,"wyślij SMS, po zakończeniu pobierania?"],"send a SMS when subtitles are downloaded?":[null,"wysyłaj SMS, gdy zostaną pobrane napisy?"],"Free Mobile customer ID":[null,"Free Mobile ID klienta"],"it's your Free Mobile customer ID (8 digits)":[null,""],"Free Mobile API key":[null,""],"find your API key in your customer portal.":[null,""],"Click below to test your settings.":[null,"Kliknij poniżej, aby przetestować ustawienia."],"Telegram":[null,"Telegram"],"Telegram is a cloud-based instant messaging service.":[null,"Telegram jest usługą natychmiastowych wiadomości w chmurze."],"send Telegram notifications?":[null,""],"send a message when a download starts?":[null,""],"send a message when a download finishes?":[null,""],"send a message when subtitles are downloaded?":[null,""],"User/group ID":[null,"ID użytkownika/grupy"],"contact @myidbot on Telegram to get an ID":[null,""],"Bot API token":[null,"Token bota API"],"contact @BotFather on Telegram to set up one":[null,""],"Join":[null,"Dołącz"],"Join all of your devices together!":[null,"Połącz wszystkie urządzenia razem!"],"send Join notifications?":[null,""],"Device ID":[null,"ID urządzenia"],"per device specific id":[null,""]," to create a Join API key":[null,""],"Twilio":[null,""],"Twilio is a webservice API that allows you to communicate directly with a mobile number. This notifier will send a text directly to your mobile device.":[null,""],"should SickRage text your mobile device?":[null,""],"Twilio Account SID":[null,""],"account SID of your Twilio account.":[null,""],"Twilio Auth Token":[null,""],"Twilio Phone SID":[null,""],"phone SID that you would like to send the sms from":[null,""],"Your phone number":[null,""],"phone number that will receive the sms. Please use the format +1-###-###-####":[null,""],"Twitter":[null,"Twitter"],"A social networking and microblogging service, enabling its users to send and read other users' messages called tweets.":[null,"Serwis społecznościowy udostępniający usługę mikroblogowania, umożliwiająca swoim użytkownikom wysyłanie i odbieranie wiadomości (zwane tweetami) od innych użytkowników."],"should SickRage post tweets on Twitter?":[null,""],"you may want to use a secondary account.":[null,"powinieneś używać drugiego konta."],"send direct message":[null,""],"send a notification via Direct Message, not via status update":[null,"wyślij notyfikacje przez wiadomość bezpośrednią, a nie przez aktualizacje statusu"],"send DM to":[null,""],"Twitter account to send Direct Messages to (must follow you)":[null,"Konto Twitter do wysyłania bezpośrednich wiadomości (musi Ciebie obserwować)"],"Step One":[null,"Krok pierwszy"],"Request Authorization":[null,"Żądanie autoryzacji"],"Click the \"Request Authorization\" button.<br> This will open a new page containing an auth key.<br> <b>note:</b> if nothing happens check your popup blocker.":[null,""],"Step Two":[null,"Krok drugi"],"Enter the key Twitter gave you below, and click \"Verify Key\".":[null,"Wprowadź klucz, który otrzymałeś od Twittera poniżej i kliknij \"Weryfikuj klucz\"."],"Trakt":[null,"Trakt"],"Trakt helps keep a record of what TV shows and movies you are watching. Based on your favorites, Trakt recommends additional shows and movies you'll enjoy!":[null,""],"send Trakt.tv notifications?":[null,""],"username of your Trakt account.":[null,"nazwa użytkownika konta Trakt."],"Trakt PIN":[null,"Trakt PIN"],"Get Trakt PIN":[null,"Pobierz Trakt PIN"],"PIN code to authorize SickRage to access Trakt on your behalf.":[null,"Kod PIN do autoryzacji dostępu SickRage do Trakt w Twoim imieniu."],"API Timeout":[null,"API Timeout"],"seconds to wait for Trakt API to respond. (Use 0 to wait forever)":[null,""],"Default indexer":[null,"Domyślny indekser"],"Sync libraries":[null,"Synchronizuj biblioteke"],"sync your SickRage show library with your trakt show library.":[null,"synchronizuj swoją bibliotekę programów SickRage ze swoją biblioteką programów trakt."],"Remove Episodes From Collection":[null,"Usuń odcinki z kolekcji"],"remove an episode from your Trakt Collection if it is not in your SickRage Library.":[null,""],"Sync watchlist":[null,"Synchronizuj listę obserwowanych"],"sync your SickRage show watchlist with your trakt show watchlist (either Show and Episode).":[null,"synchronizuj listę obserwowanych programów w Sickrage z listą obserwowanych programów w trakt (zarówno całe programy jak i odcinki)."],"episode will be added on watch list when wanted or snatched and will be removed when downloaded ":[null,""],"Watchlist add method":[null,"Dodaj method do listy obserwowanych"],"Skip All":[null,"Pomiń wszystkie"],"Download Pilot Only":[null,"Pobierz tylko odcinek pilotażowy"],"Get whole show":[null,"Pobierz cały program"],"method in which to download episodes for new shows.":[null,"metoda pobierania odcinków dla nowych programów."],"Remove episode":[null,"Usuń odcinek"],"remove an episode from your watchlist after it is downloaded.":[null,"usuń odcinek z listy obserwowanych po zakończonym pobieraniu."],"Remove series":[null,"Usuń program"],"remove the whole series from your watchlist after any download.":[null,"usuń cały program z listy obserwowanych po zakończeniu pobierania."],"Remove watched show":[null,"Usuń obejrzane programy"],"remove the show from sickrage if it's ended and completely watched":[null,"usuń program z SickRage, gdy zakończył się i został całkowicie obejrzany"],"Start paused":[null,"Zatrzymano start"],"shows grabbed from your trakt watchlist start paused.":[null,"zatrzymano start programów pobranych z Twojej listy obserwowanych Trakt."],"Trakt blackList name":[null,"Czarna lista Trakt"],"name (slug) of list on Trakt for blacklisting show on 'Add Trending Show' & 'Add Recommended Shows' pages":[null,""],"Email":[null,"Email"],"Allows configuration of email notifications on a per show basis.":[null,"Umożliwia konfiguracje notyfikacji mailowych na zasadzie per program."],"send email notifications?":[null,""],"SMTP host":[null,"Serwer SMTP"],"hostname of your SMTP email server.":[null,"nazwa serwera poczty SMTP."],"SMTP port":[null,"port SMTP"],"port number used to connect to your SMTP host.":[null,"numer portu używany do łączenia się z serwerem SMTP."],"SMTP from":[null,"SMTP od"],"sender email address, some hosts require a real address.":[null,"adres e-mail nadawcy, niektóre serwery wymagają podania prawdziwego adresu."],"Use TLS":[null,"Używaj TLS"],"check to use TLS encryption.":[null,"zaznacz by używać szyfrowania TLS."],"SMTP user":[null,"Użytkownik SMTP"],"(optional) your SMTP server username.":[null,"(opcjonalnie) nazwa użytkownika serwera SMTP."],"SMTP password":[null,"Hasło SMTP"],"(optional) your SMTP server password.":[null,"(opcjonalnie) hasło serwera SMTP."],"Global email list":[null,"Globalna lista e-mail"],"email addresses listed here, separated by commas if applicable, will<br> receive notifications for <b>all</b> shows.":[null,""],"(This field may be blank except when testing.)":[null,"(To pole może pozostać puste, za wyjątkiem przeprowadzania testów)"],"Email Subject":[null,"Temat wiadomości"],"use a custom subject for some privacy protection?":[null,""],"(leave blank for the default SickRage subject)":[null,""],"configure per-show notifications here by entering email address(es), separated by commas,":[null,""],"after selecting a show in the drop-down box. Be sure to activate the 'Save for this show'":[null,"po wybraniu serialu z rozwijanej listy. Pamiętaj aby aktywować przycisk 'Zapisz dla tego serialu'"],"button below after each entry.":[null,"poniżej dla każdego wpisu."],"Slack":[null,"Slack"],"Slack brings all your communication together in one place. It's real-time messaging, archiving and search for modern teams.":[null,""],"should SickRage post messages on Slack?":[null,""],"Slack Incoming Webhook":[null,""],"Discord":[null,""],"All-in-one voice and text chat for gamers that's free, secure, and works on both your desktop and phone.":[null,""],"Should SickRage post messages on Discord?":[null,""],"Discord Incoming Webhook":[null,""],"Create webhook under channel settings.":[null,""],"Discord Bot Name":[null,""],"Blank will use webhook default Name.":[null,""],"Discord Avatar URL":[null,""],"Blank will use webhook default Avatar.":[null,""],"Discord TTS":[null,""],"Send notifications using text-to-speech":[null,""],"Post-Processing":[null,"Przetwarzanie końcowe"],"Episode Naming":[null,"Nazewnictwo odcinków"],"Metadata":[null,"Metadata"],"Settings that dictate how SickRage should process completed downloads.":[null,"Ustawienia, które mówią jak SickRage powinien procesować zakończone pobrania."],"enable the automatic post processor to scan and process any files in your Post Processing Dir":[null,""],"do not use if you use an external Post Processing script":[null,""],"Post Processing Dir":[null,"Lokalizacja przetwarzania końcowego"],"the folder where your download client puts the completed TV downloads.":[null,""],"please use seperate downloading and completed folders in your download client if possible.":[null,""],"Processing Method":[null,"Metoda przetwarzania"],"what method should be used to put files into the library?":[null,""],"if you keep seeding torrents after they finish, please avoid the 'move' processing method to prevent errors.":[null,""],"Auto Post-Processing Frequency":[null,"Frekwencja auto-przetwarzania końcowego"],"time in minutes to check for new files to auto post-process (min 10)":[null,""],"Postpone post processing":[null,"Odraczaj przetwarzanie końcowe"],"wait to process a folder if sync files are present.":[null,""],"Sync File Extensions":[null,"Synchronizuj rozszerzenia plików"],"comma seperated list of extensions or filename globs SickRage ignores when Post Processing":[null,"lista rozszerzeń lub nazw plików rozdzielonych przecinkami, które SickRage ma ignorować podczas przetwarzania końcowego"],"Rename Episodes":[null,"Zmień nazwę odcinków"],"rename episode using the Episode Naming settings?":[null,""],"Create missing show directories":[null,"Stwórz brakujące katalogi programów"],"create missing show directories when they get deleted":[null,""],"Add shows without directory":[null,"Dodaj program bez katalogów"],"add shows without creating a directory (not recommended)":[null,""],"Move associated files":[null,""],"move associated (srt/srr/sfv/etc) files while post processing?":[null,""],"Rename .nfo file":[null,"Zmień nazwę pliku .nfo"],"rename the original .nfo file to .nfo-orig to avoid conflicts?":[null,""],"Associated file extensions":[null,""],"comma separated list of associated file extensions SickRage should keep while post processing.":[null,""],"leaving it empty means no associated files will be post processed":[null,""],"Delete non associated files":[null,""],"delete non associated files while post processing?":[null,""],"Change File Date":[null,"Zmień datę pliku"],"set last modified filedate to the date that the episode aired?":[null,""],"some systems may ignore this feature.":[null,""],"Timezone for File Date":[null,"Strefa czasowa dla daty pliku"],"local":[null,"sieć lokalna"],"network":[null,"sieć"],"what timezone should be used to change File Date?":[null,""],"Unpack":[null,"Rozpakować"],"What to do with archived releases found in your <i>TV Download Dir</i>?":[null,""],"Ignore (do not process contents)":[null,""],"Unpack (process contents)":[null,""],"Treat as video (process archive as-is)":[null,""],"'Unpack' only works with RAR archives":[null,""],"Windows":[null,""],"WinRar is required on windows":[null,""],"Unpack Directory":[null,""],"Choose a path to unpack files, leave blank to unpack in download dir":[null,""],"Unrar Location":[null,""],"add the path to unrar if it is not in the system path":[null,""],"Alternate Unrar Tool":[null,""],"add the path to an alternate unrar tool if it is not in the system path":[null,""],"Delete RAR contents":[null,"Usuń zawartość RAR"],"delete content of RAR files, even if Process Method not set to move?":[null,""],"only working with RAR archive":[null,""],"Don't delete empty folders":[null,"Nie usuwaj pustych folderów"],"leave empty folders when Post Processing?":[null,""],"can be overridden using manual Post Processing":[null,""],"Follow symbolic-links":[null,""],"follow down symbolic links in download directory?":[null,""],"<b>EXPERTS ONLY.</b><br>Enable only if you know what <b>circular symbolic links</b> are,<br>and can <b>verify that you have none</b>.":[null,""],"Use icacls":[null,""],"Windows only":[null,""],"sets video permissions after using the move method in post processing":[null,""],"Extra Scripts":[null,"Dodatkowe skrypty"],"see":[null,""],"for script arguments description and usage.":[null,"dla opisu argumentów skryptu i jego stosowania."],"How SickRage will name and sort your episodes.":[null,"Jak SickRage bedzie nazywal i sortowal Twoje odcinki."],"Name Pattern":[null,"Wzór nazewnictwa"],"Toggle Naming Legend":[null,""],"don't forget to add quality pattern. Otherwise after post-processing the episode will have UNKNOWN quality":[null,""],"Meaning":[null,"Znaczenie"],"Pattern":[null,"Wzorzec"],"Result":[null,"Wynik"],"Use lower case if you want lower case names (eg. %sn, %e.n, %q_n etc)":[null,"W celu nazw z małej litery użyj małej czcionki (np. %sn, %e.n, %q_n itd.)"],"Show Name":[null,"Nazwa Programu"],"Show.Name":[null,"Nazwa.Programu"],"Show_Name":[null,"Nazwa_Programu"],"Season Number":[null,"Numer Sezonu"],"XEM Season Number":[null,"Numer Sezonu XEM"],"Episode Number":[null,"Numer Odcinka"],"XEM Episode Number":[null,"Numer Odcinka XEM"],"Episode Name":[null,"Nazwa Odcinka"],"Episode.Name":[null,"Nazwa.Odcinka"],"Episode_Name":[null,"Nazwa_Odcinka"],"Air Date":[null,"Data Emisji"],"Post-Processing Date":[null,"Data przetwarzania końcowego"],"Quality":[null,"Jakość"],"Scene Quality":[null,"Jakość scenowa"],"Release Name":[null,"Nazwa wydania"],"SickRage' is used in place of RLSGROUP if it could not be properly detected":[null,"SickRage jest używany zamiast RLSGROUP, w sytuacji której nie mógł zostać poprawnie wykryty"],"Release Group":[null,"Grupa wydawcza"],"If episode is proper/repack add 'proper' to name.":[null,"Jeśli odcinek jest proper/repack dodaj 'proper' do nazwy."],"Release Type":[null,"Typ wydania"],"Multi-Episode Style":[null,"Styl multi odcinka"],"Single-EP Sample":[null,"Próbka pojedynczego odcinka"],"Multi-EP sample":[null,"Próbka multi odcinka"],"Strip Show Year":[null,"Usuń rok programu"],"remove the TV show's year when renaming the file?":[null,""],"only applies to shows that have year inside parentheses":[null,""],"Custom Air-By-Date":[null,"Niestandardowy termin emisji"],"name air-by-date shows differently than regular shows?":[null,""],"Toggle ABD Naming Legend":[null,""],"Regular Air Date":[null,"Regularna data emisji"],"Year":[null,"Rok"],"Month":[null,"Miesiąc"],"Day":[null,"Dzień"],"Multi-EP style is ignored":[null,"Styl multi odcinka jest ignorowany"],"Custom Sports":[null,"Niestandardowe Sport"],"name sports shows differently than regular shows?":[null,""],"Toggle Sports Naming Legend":[null,""],"Sports Air Date":[null,"Data emisji Sportu"],"Custom Anime":[null,"Niestandardowe Anime"],"name anime shows differently than regular shows?":[null,""],"Toggle Anime Naming Legend":[null,"Przełącz nazewnictwo legend Anime"],">XEM Season Number":[null,">Numer Sezonu XEM"],"Single-EP Anime Sample":[null,"Próbka pojedynczego odcinka Anime"],"Multi-EP Anime sample":[null,"Próbka multi odcinka Anime"],"Add Absolute Number":[null,"Dodaj liczbę bezwzględną"],"add the absolute number to the season/episode format?":[null,""],"only applies to anime. (eg. S15E45 - 310 vs S15E45)":[null,""],"Only Absolute Number":[null,"Tylko liczby bezwzględne"],"replace season/episode format with absolute number":[null,""],"only applies to anime.":[null,""],"No Absolute Number":[null,"Brak liczby bezwzględnej"],"don't include the absolute number":[null,""],"The data associated to the data. These are files associated to a TV show in the form of images and text that, when supported, will enhance the viewing experience.":[null,"Dane związane z danymi. Są to pliki powiązane z serialem w postaci obrazów i tekstu, gdy obsługiwane wzmocnią wrażenia wizualne."],"Metadata Type":[null,"Typ metadanych"],"toggle metadata options that you wish to be created":[null,""],"multiple targets may be used":[null,""],"Select Metadata":[null,"Wybierz metadane"],"Provider Priorities":[null,"Priorytet dostawców"],"Provider Options":[null,"Opcje dostawców"],"Configure Custom Newznab Providers":[null,"Skonfiguruj niestandardowych dostawców Newznab"],"Configure Custom Torrent Providers":[null,"Skonfiguruj niestandardowych dostawców Torrent"],"Check off and drag the providers into the order you want them to be used.":[null,"Zaznacz i przeciągnij dostawcę w kolejności w jakiej mają być używani."],"At least one provider is required but two are recommended.":[null,"Wymagany jest co najmniej jeden dostawca, ale co najmniej dwóch jest zalecanych."],"Torrent providers can be toggled in ":[null,"Torrent: dostawcy mogą być przełączani w "],"Provider does not support backlog searches at this time.":[null,"W tym momencie dostawca nie obsługuje wyszukiwania zaległości."],"Provider is <b>NOT WORKING</b>.":[null,"Dostawca <b>NIE DZIAŁA</b>."],"Configure individual provider settings here.":[null,"Tutaj skonfiguruj poszczególne ustawienia dostawców."],"Check with provider's website on how to obtain an API key if needed.":[null,"Sprawdź z dostawcą strony jak uzyskać klucz API jeśli jest potrzebny."],"Configure provider":[null,"Konfigurowanie dostawcy"],"no providers available to configure.":[null,""],"URL":[null,"adres zasobu URL"],"Enable daily searches":[null,"Włącz codzienne wyszukiwanie"],"enable provider to perform daily searches.":[null,"umożliwienie dostawcy możliwości wykonywania codziennych poszukiwań."],"Enable backlog searches":[null,"Włącz wyszukiwanie zaległości"],"enable provider to perform backlog searches.":[null,"umożliwienie dostawcy wyszukiwania w zaległości."],"Season search mode":[null,"Tryb wyszukiwania sezonu"],"when searching for complete seasons you can choose to have it look for season packs only, or choose to have it build a complete season from just single episodes.":[null,"przy szukaniu całego sezonu, możesz wybrać czy szukać tylko całej paczki z sezonem czy też pobrać kompletny sezon używając pojedynczych epizodów."],"season packs only.":[null,"całe sezony tylko."],"episodes only.":[null,"odcinki tylko."],"Enable fallback":[null,"Włącz awaryjne wyszukiwanie"],"when searching for a complete season depending on search mode you may return no results, this helps by restarting the search using the opposite search mode.":[null,"przy szukaniu całego sezonu, w zależności od trybu wyszukiwania, możesz nie otrzymać żadnych wyników. Opcja ta pomaga poprzez ponowne uruchomienie wyszukiwania przy użyciu drugiego trybu wyszukiwania."],"Custom URL":[null,"Niestandardowy adres URL"],"the URL should include the protocol (and port if applicable). Examples: http://192.168.1.4/ or http://localhost:3000/":[null,""],"Api key":[null,"Klucz Api"],"Digest":[null,"Digest"],"Hash":[null,"Hasz"],"Passkey":[null,"Klucz dostępu"],"Cookies":[null,"Ciasteczka"],"example: uid=1234;pass=567845439634987<br>note: uid and pass are not your username/password.<br>use DevTools or Firebug to get these values after logging in on your browser.":[null,""],"Pin":[null,"Pin"],"Seed ratio":[null,"Współczynnik udostępniania"],"stop transfer when ratio is reached<br>(-1 SickRage default to seed forever, or leave blank for downloader default)":[null,"zatrzymaj transfer po osiągnięciu współczynnika<br>(-1 by domyślnie SickRage zawsze udostępniał lub pozostaw puste dla domyślnych wartości programu pobierającego)"],"Minimum seeders":[null,"Minimum wysyłających"],"Minimum leechers":[null,"Minimum pobierających"],"Confirmed download":[null,"Potwierdzone pobrania"],"only download torrents from trusted or verified uploaders ?":[null,"pobieraj torrentu tylko z zaufanych i sprawdzonych uploaderów?"],"Ranked torrents":[null,"Ranking torrentów"],"only download ranked torrents (trusted releases)":[null,"pobieraj tylko rankingowe torrenty (zaufane wydania)"],"English torrents":[null,"Angielskie torrenty"],"only download english torrents, or torrents containing english subtitles":[null,"pobieraj tylko angielskie torrenty, lub torrenty zawierające angielskie napisy"],"For Spanish torrents":[null,"Dla hiszpańskich torrentów"],"ONLY search on this provider if show info is defined as \"Spanish\" (avoid provider's use for VOS shows)":[null,"Szukaj TYLKO u tego dostawcy, który zawiera informacje \"Hiszpański\" w programie (unikaj dostawców, którzy używają VOS)"],"Sorting results by":[null,"Sortuj wg"],"Freeleech":[null,"FreeLeech"],"only download <b>\"FreeLeech\"</b> torrents.":[null,"pobieraj tylko torrenty <b>\"FreeLeech\"</b>"],"Category":[null,"Kategorie"],"select torrent with Italian subtitle":[null,"wybierz torrenty z włoskimi napisami"],"Configure Custom<br>Newznab Providers":[null,"Skonfiguruj niestandardowych <br>dostawców Newznab"],"Add and setup or remove custom Newznab providers.":[null,"Dodaj, ustaw lub usuń niestandardowych dostawców Newznab."],"Select provider":[null,"Wybierz dostawcę"],"-- add new provider --":[null,"-- dodaj nowego dostawcę --"],"Provider name":[null,"Nazwa dostawcy"],"Site URL":[null,"Adres URL"],"Newznab search categories":[null,"Newznab Kategorie wyszukiwania"],"select your Newznab categories on the left, and click the \"update categories\" button to use them for searching.) <b>don't forget to to save the form!":[null,"(Wybierz kategorię Newznab po lewej stronie, a następnie kliknij przycisk \"aktualizuj kategorie\", aby wykorzystać je do wyszukiwania.<b>Nie zapomnij zapisać formularza!</b>"],"Update Categories":[null,"Aktualizuj kategorie"],"Add":[null,"Dodaj"],"Delete":[null,"Usuń"],"Add and setup or remove custom RSS providers.":[null,"Dodaj, ustaw lub usuń niestandardowych dostawców RSS."],"RSS URL":[null,"adres URL Kanału RSS "],"Search element":[null,"Wyszukiwanie elementu"],"eg: title":[null,"np.: tytuł"],"Episode Search":[null,"Szukaj odcinka"],"NZB Search":[null,"Szukaj NZB"],"Torrent Search":[null,"Szukaj Torrent"],"How to manage searching with":[null,"Jak zarządzać wyszukiwanie z"],"Randomize Providers":[null,"Losowi dostawcy"],"randomize the provider search order instead of going in order of placement":[null,"losowa kolejność wyszukiwania dostawców zamiast w kolejności ułożenia"],"Download propers":[null,"Pobieraj Proper"],"replace original download with \"Proper\" or \"Repack\" if nuked":[null,"zastąp oryginalne pobranie: \"Proper\" lub \"Repack\" Jeśli uszkodzone"],"Check propers every":[null,"Sprawdzaj Proper co"],"24 hours":[null,"24 godziny"],"4 hours":[null,"4 godziny"],"90 mins":[null,"90 minut"],"45 mins":[null,"45 minut"],"15 mins":[null,"15 minut"],"Backlog search day(s)":[null,"Wyszukiwanie zaległości"],"number of day(s) that the \"Forced Backlog Search\" will cover (e.g. 7 Days)":[null,"liczba dni, które pokryje \"Wymuszone wyszukiwanie zaległości\" (np. 7 dni)"],"Backlog search frequency":[null,"Częstotliwość wyszukiwania zaległości"],"time in minutes between searches (min.":[null,"czas w minutach pomiędzy wyszukiwaniem (min. 10)"],"Daily search frequency":[null,"Częstotliwość dzienna wyszukiwania"],"Usenet retention":[null,"Retencja usenet"],"age limit in days for usenet articles to be used (e.g. 500)":[null,"granica wieku w dniach kiedy artykuły usenet mogą być użyte (np. 500)"],"Ignore words":[null,"Ignoruj wyrazy"],"results with one or more word from this list will be ignored<br>separate words with a comma, e.g. \"word1,word2,word3\"":[null,"wyniki jednego lub więcej słów z tej listy będzie zignorowany <br>oddziel słowa przecinkami, np. \"słowo1, słowo2, słowo3\""],"Require words":[null,"Wymagane słowa"],"results with no word from this list will be ignored<br>separate words with a comma, e.g. \"word1,word2,word3\"":[null,"wyniki bez słów z tej listy będzie zignorowany <br>oddziel słowa przecinkami, np. \"słowo1, słowo2, słowo3\""],"Trackers list":[null,"Lista tracker'ów"],"trackers that will be added to magnets without trackers<br>separate trackers with a comma, e.g. \"tracker1,tracker2,tracker3\"":[null,""],"Ignore language names in subbed results":[null,"Zignoruj nazwy języków w wynikach wyszukiwania napisów"],"ignore subbed releases based on language names <br>\n Example: \"dk\" will ignore words: dksub, dksubs, dksubbed, dksubed <br>\n separate languages with a comma, e.g. \"lang1,lang2,lang3":[null,""],"Allow high priority":[null,"Pozwól na wysoki priorytet"],"set downloads of recently aired episodes to high priority":[null,"ustaw wysoki priorytet pobierania dla niedawno wyemitowanego odcinka"],"Use Failed Downloads":[null,"Używaj nieudanych pobrań"],"use Failed Download Handling?":[null,""],"will only work with snatched/downloaded episodes after enabling this":[null,""],"Delete Failed":[null,"Usunięcie nie powiodło się"],"delete files left over from a failed download?":[null,""],"this only works if Use Failed Downloads is enabled.":[null,""],"How to handle NZB search results.":[null,"Jak traktować wyniki wyszukiwań NZB."],"Search NZBs":[null,"Szukaj NZB"],"enable NZB search providers":[null,""],"Send .nzb files to":[null,"Wysyłaj pliki .nzb do"],"SABnzbd server URL":[null,"Adres URL serwera SABnzbd"],"URL to your SABnzbd server (e.g. http://localhost:8080/)":[null,"Adres URL Twojego serwera SABnzbd (np. localhost8080: /)"],"SABnzbd username":[null,"Nazwa użytkownika SABnzbd"],"(blank for none)":[null,"(puste dla niczego)"],"SABnzbd password":[null,"Hasło SABnzbd"],"SABnzbd API key":[null,"Klucz API SABnzbd"],"locate at... SABnzbd Config -> General -> API Key":[null,"zlokalizowany w... Ustawienia SABnzbd -> Ogólne -> Klucz API"],"Use SABnzbd category":[null,"Użyj kategorii SABnzbd"],"add downloads to this category (e.g. TV)":[null,"dodaj pobierane do kategorii (np. TV)"],"Use SABnzbd category (backlog episodes)":[null,"Użyj kategorii SABnzbd (zaległe odcinki)"],"add downloads of old episodes to this category (e.g. TV)":[null,"dodaj do pobrania starych odcinków do tej kategorii (np. TV)"],"Use SABnzbd category for anime":[null,"Użyj SABnzbd dla kategorii anime"],"add anime downloads to this category (e.g. anime)":[null,"dodaj pobierane anime do tej kategorii (np. anime)"],"Use SABnzbd category for anime (backlog episodes)":[null,"Użyj kategorii SABnzbd dla anime (zaległe odcinki)"],"add anime downloads of old episodes to this category (e.g. anime)":[null,"dodaj do pobrania starych odcinków anime do tej kategorii (np. anime)"],"Use forced priority":[null,"Użyj wymuszonego priorytetu"],"enable to change priority from HIGH to FORCED":[null,"włącz, aby zmienić priorytet z WYSOKI na WYMUSZONY"],"Black hole folder location":[null,"Lokalizacja Black hole"],"<b>.nzb</b> files are stored at this location for external software to find and use":[null,"<b>.nzb</b> pliki w tej lokalizacji są przetrzymywane do użytku dla zewnętrznych aplikacji"],"Connect using HTTPS":[null,"Połącz korzystając z HTTPS"],"enable Secure control in NZBGet and set the correct Secure Port here":[null,"włącz bezpieczne sterowanie w NZBGet i ustaw tutaj prawidłowy bezpieczny port"],"NZBget host:port":[null,"NZBget host:port"],"(e.g. localhost:6789)":[null,"(np. localhost:6789)"],"NZBget RPC host name and port number (not NZBgetweb!)":[null,"Nazwa serwera i portu NZBget RPC (nieNZBgetweb!)"],"NZBget username":[null,"Nazwa użytkownika NZBget"],"locate in nzbget.conf (default:nzbget)":[null,"zlokalizuj w nzbget.conf (domyślnie: nzbget)"],"NZBget password":[null,"Hasło NZBget"],"locate in nzbget.conf (default:tegbzn6789)":[null,"zlokalizuj w nzbget.conf (domyślnie: tegbzn6789)"],"Use NZBget category":[null,"Użyj kategorii NZBget"],"send downloads marked this category (e.g. TV)":[null,"wyślij oznaczone pobranie do tej kategorii (np. TV)"],"Use NZBget category (backlog episodes)":[null,"Użyj kategorii NZBget (zaległe odcinki)"],"send downloads of old episodes marked this category (e.g. TV)":[null,"wyślij pobranie starych odcinków do tej kategorii (np. TV)"],"Use NZBget category for anime":[null,"Użyj NZBget dla kategorii anime"],"send anime downloads marked this category (e.g. anime)":[null,"wyślij pobranie anime do tej kategorii (np. anime)"],"Use NZBget category for anime (backlog episodes)":[null,"Użyj kategorii NZBget dla anime (zaległe odcinki)"],"send anime downloads of old episodes marked this category (e.g. anime)":[null,"wyślij pobranie starych odcinków anime do tej kategorii (np. anime)"],"NZBget priority":[null,"Priorytet NZBget"],"Very low":[null,"Bardzo niski"],"Low":[null,"Niski"],"Very high":[null,"Bardzo wysoki"],"Force":[null,"Wymuś"],"priority for daily snatches (no backlog)":[null,"priorytet dla codziennych łapań (bez zaległości)"],"Torrent host:port":[null,"Torrent host:port"],"URL to your Synology DSM (e.g. http://localhost:5000/)":[null,""],"Client username":[null,"Nazwa klienta"],"Client password":[null,"Hasło klienta"],"Downloaded files location":[null,"Lokalizacja plików pobranych"],"where Synology Download Station will save downloaded files (blank for client default)":[null,"gdzie Synology Download Station będzie zapisywać pobrane pliki (puste dla domyślnej ścieżki klienta)"],"the destination has to be a shared folder for Synology DS":[null,"lokalizacja musi być udostępnionym folderem dla Synology DS"],"Click below to test":[null,"Kliknij poniżej, aby przetestować"],"How to handle Torrent search results.":[null,"Jak traktować wyniki wyszukiwań Torrent."],"Search torrents":[null,"Szukaj torrentów"],"enable torrent search providers":[null,"umożliwia wyszukiwanie w torrentach"],"Send .torrent files to":[null,"Wyślij pliki .torrent do"],"<b>.torrent</b> files are stored at this location for external software to find and use":[null,"<b>.torrent</b> pliki w tej lokalizacji są przetrzymywane do użytku dla zewnętrznych aplikacji"],"URL to your torrent client (e.g. http://localhost:8000/)":[null,"Adress twojego klienta torrentów (np. http://localhost:8000/)"],"Torrent RPC URL":[null,"Torrent RPC URL"],"the path without leading and trailing slashes (e.g. transmission)":[null,""],"Http Authentication":[null,"Uwierzytelnianie HTTP"],"Verify certificate":[null,"Sprawdź certyfikat"],"disable if you get \"Deluge: Authentication Error\" in your log":[null,"wyłącz jesli zauważysz w logu \"Deluge: Authentication Error\""],"verify SSL certificates for HTTPS requests":[null,""],"Add label to torrent":[null,"Dodaj etykietę do torrentów"],"(blank spaces are not allowed)":[null,"(spacje nie są dozwolone)"],"label plugin must be enabled in Deluge clients":[null,""],"for QBitTorrent 3.3.1 and up":[null,""],"Add label to torrent for anime":[null,"Dodaj etykietę w torrentach dla anime"],"for QBitTorrent 3.3.1 and up ":[null,""],"where <span id=\"torrent_client\">the torrent client</span> will save downloaded files (blank for client default)":[null,""],"the destination has to be a shared folder for Synology DS</span>":[null,"miejsce docelowe musi być udziałem udostępnionym w Synology DS</span>"],"Minimum seeding time":[null,""],"time in hours":[null,""],"(default:'0' passes blank to client and '-1' passes nothing)":[null,""],"Start torrent paused":[null,"Wystartuj zatrzymane torrenty"],"add .torrent to client but do <b style=\"font-weight:900\">not</b> start downloading":[null,"dodaj .torrent do klienta ale<b style=\"font-weight:900\">nie</b>zaczynaj pobierać"],"Allow high bandwidth":[null,"Zezwalaj na dużą przepustowość"],"use high bandwidth allocation if priority is high":[null,"używaj alokacji dużej przepustowości jeśli priorytet jest wysoki"],"Test Connection":[null,"Testuj połączenie"],"Windows Shares":[null,""],"Defines your existing windows shares so that we can add them to the browse dialog":[null,""],"Share #{number}":[null,""],"Share label":[null,""],"Hostname or IP":[null,""],"Share path":[null,""],"Subtitles Search":[null,"Wyszukiwanie napisów"],"Subtitles Plugin":[null,"Wtyczki napisów"],"Plugin Settings":[null,"Ustawienia wtyczki"],"Settings that dictate how SickRage handles subtitles search results.":[null,"Ustawienia które narzucają jak SickRage obsługuje wyniki wyszukiwania napisów."],"Search Subtitles":[null,"Szukaj napisów"],"Subtitle Languages":[null,"Języki napisów"],"Subtitle Directory":[null,"Katalog napisów"],"the directory where SickRage should store your <i>Subtitles</i> files.":[null,""],"leave empty if you want store subtitle in episode path.":[null,""],"Subtitle Find Frequency":[null,"Częstotliwość szukania napisów"],"time in hours between scans (default: 1)":[null,"czas w godzinach między skanowaniem (domyślnie: 1)"],"Include Specials":[null,""],"include the show's specials when searching for subtitles?":[null,""],"Perfect matches":[null,"Idealne dopasowanie"],"only download subtitles that match: release group, video codec, audio codec and resolution":[null,""],"if disabled you may get out of sync subtitles":[null,""],"Subtitles History":[null,"Historia napisów"],"log downloaded Subtitle on History page?":[null,""],"Subtitles Multi-Language":[null,"Wielojęzyczne napisy"],"append language codes to subtitle filenames?":[null,""],"this option is required if you use multiple subtitle languages":[null,""],"Delete unwanted subtitles":[null,"Usuń niepotrzebne napisy"],"enable to delete unwanted subtitle languages bundled with release":[null,""],"Embedded Subtitles":[null,"Wbudowane napisy"],"ignore subtitles embedded inside video file?":[null,""],"this will ignore <u>all</u> embedded subtitles for every video file!":[null,"to zignoruje <u>wszystkie</u> wbudowane napisy dla każdego pliku video!"],"Hearing Impaired Subtitles":[null,"Napisy dla niedosłyszących"],"download hearing impaired style subtitles?":[null,""],"See":[null,"Zobacz"],"for a script arguments description.":[null,"dla opisu argumentów skryptu."],"Additional scripts separated by <b>|</b>.":[null,"Dodatkowe skrypty oddzielane poprzez <b>|</b>."],"Scripts are called after each episode has searched and downloaded subtitles.":[null,"Skrypty są wywoływane po każdym odnalezieniu odcinka i pobraniu napisów."],"For any scripted languages, include the interpreter executable before the script. See the following example":[null,"Dla każdego języka skryptów, przed skryptem dołącz wykonywalny interpreter. Zobacz poniższy przykład"],"For Windows:":[null,"Dla Windows:"],"For Linux / OS X:":[null,"Dla Linux / OS X:"],"Subtitle Providers":[null,"Dostawcy napisów"],"Check off and drag the plugins into the order you want them to be used.":[null,"Zaznacz i przeciągnij wtyczkę w kolejności w jakiej mają być używane."],"At least one plugin is required.":[null,"Wymagana jest co najmniej jedna wtyczka."]," Web-scraping plugin":[null,"Plugin \"web-scraping\""],"Provider Settings":[null,"Ustawienia dostawcy"],"Set user and password for each provider":[null,"Ustaw użytkownika i hasło dla każdego dostawcy"],"User Name":[null,"Nazwa użytkownika"],"Change Show":[null,"Zmień program"],"Prev Show":[null,"Poprzedni program"],"Next Show":[null,"Następny program"],"Jump to Season":[null,"Skok do sezonu"],"Specials":[null,"Dodatki"],"Poster for":[null,"Plakat dla"],"Stars":[null,"gwiazdek"],"minutes":[null,"minut"],"View other popular {genre} shows on trakt.tv.":[null,"Pokaż inne popularne {genre} seriale z trakt.tv."],"View other popular {imdbgenre} shows on IMDB.":[null,"Pokaż inne popularne {imdbgenre} seriale z IMDB."],"Allowed":[null,"Dozwolony"],"Preferred":[null,"Preferowany"],"Originally Airs":[null,"Pierwotnie zaplanowany"],"Show Status":[null,"Pokaż Status"],"Default EP Status":[null,"Domyślny status odcinka"],"Location":[null,"Lolalizacja"],"Missing":[null,"Brakujące"],"Scene Name":[null,"Nazwa sceny"],"Required Words":[null,"Wymagane słowa"],"Ignored Words":[null,"Ignorowane słowa"],"Size":[null,"Rozmiar"],"Info Language":[null,"Informacja o języku"],"Subtitles SR Metadata":[null,""],"Season Folders":[null,"Foldery sezonów"],"Paused":[null,"Wstrzymany"],"Air-by-Date":[null,"wg daty premiery w TV"],"Sports":[null,"Sport"],"DVD Order":[null,"Kolejność DVD"],"Scene Numbering":[null,"Numeracja scen"],"Select Filtered Episodes":[null,"Zaznacz filtrowane odcinki"],"Clear All":[null,"Wyczyść wszystko"],"Change selected episodes to":[null,"Zmień wybrany odcinek na"],"Select Columns":[null,"Wybierz kolumny"],"NFO":[null,"NFO"],"TBN":[null,"TBN"],"Episode":[null,"Odcinek"],"Absolute":[null,"Bezwzględny"],"Scene":[null,"Scena"],"Scene Absolute":[null,"Serial wg Indeksu"],"File Name":[null,"Nazwa pliku"],"Airdate":[null,"Data emisji"],"Download":[null,"Pobierz"],"Change the value here if scene numbering differs from the indexer episode numbering":[null,"Zmień wartość tutaj, jeśli Serial wg Indeksu różni się od numerów indeksowych serialu"],"Change the value here if scene absolute numbering differs from the indexer absolute numbering":[null,"Zmień wartość tutaj, jeśli Serial wg Indeksu różni się od indeksowej numeracji serialu"],"Manual Search":[null,"Ręczne wyszukiwanie"],"Do you want to mark this episode as failed?":[null,"Czy chcesz oznaczyć ten odcinek jako nieudany?"],"The episode release name will be added to the failed history, preventing it to be downloaded again.":[null,"Imię wydanego odcinku będzie dodana do listy \"historia nieudanych\", aby zapobiec ponownemu sciąganiu."],"Do you want to include the current episode quality in the search?":[null,"Czy chcesz użyć obecnej jakości odcinku w wyszukiwaniach?"],"Choosing No will ignore any releases with the same episode quality as the one currently downloaded/snatched.":[null,"Wybór \"NIE\" zignoruje każde wydanie odcinka o takiej samej jakości który jest już ściągnięty lub znaleźiony."],"Download subtitle":[null,"Pobierz napisy"],"Do you want to re-download the subtitle for this language?":[null,""],"It will overwrite your current subtitle":[null,""],"Format":[null,"Format"],"Advanced":[null,"Zaawansowane"],"Main Settings":[null,"Ustawienia główne"],"Show Location":[null,"Pokaż lokalizację"],"Preferred Quality":[null,"Preferowana jakość"],"Default Episode Status":[null,"Domyślny stan odcinek"],"this will set the status for future episodes.":[null,""],"this only applies to episode filenames and the contents of metadata files.":[null,""],"search for subtitles":[null,"szukaj napisów"],"Use SR Metdata":[null,""],"use SickRage metadata when searching for subtitle, this will override the autodiscovered metadata":[null,""],"pause this show (SickRage will not download episodes)":[null,"wstrzymaj ten program (SickRage nie będzie pobierał odcinków)"],"Format Settings":[null,"Ustawienia formatu"],"Air by date":[null,"data premiery"],"check if the show is released as Show.03.02.2010 rather than Show.S02E03.":[null,"sprawdź czy show jest w formacie \"Show.03.02.2010\" zamiast \"Show.S02E03\""],"in case of an air date conflict between regular and special episodes, the later will be ignored.":[null,""],"check if the show is Anime and episodes are released as Show.265 rather than Show.S02E03":[null,"sprawdź czy show jest \"Anime\" i czy jest w formacie \"Show.265\" zamiast \"Show.S02E03\""],"check if the show is a sporting or MMA event released as Show.03.02.2010 rather than Show.S02E03":[null,"sprawdź czy show jest wydażeniem \"sportowym\" czy \"MMA\" wydanym w formacie \"Show.03.02.2010\" zamiast \"Show.S02E03\""],"Season folders":[null,"Foldery sezonów"],"group episodes by season folder (uncheck to store in a single folder)":[null,"grupuj odcinki wg sezonu (odznacz aby zapisać w jednym folderze)"],"search by scene numbering (uncheck to search by indexer numbering)":[null,"szukaj wg numeru sceny (odznacz aby szukać wg numeru indeksu)"],"use the DVD order instead of the air order":[null,"użyj kolejności DVD zamiast emisji"],"a \"Force Full Update\" is necessary, and if you have existing episodes you need to sort them manually.":[null,""],"comma-separated <i>e.g. \"word1,word2,word3</i>\"":[null,"oddzielone przecinkami, <i>np. \"wyraz1,wyraz2,wyraz3</i>\""],"search results with one or more words from this list will be ignored.":[null,""],"e.g. \"word1,word2,word3\"":[null,"np. \"wyraz1,wyraz2,wyraz3\""],"search results with no words from this list will be ignored.":[null,""],"Scene Exception":[null,"Wyjątki sceny"],"this will affect episode search on NZB and torrent providers.":[null,""],"this list appends to the original show name.":[null,""],"WARNING logs":[null,"Dziennik ostrzeżeń"],"ERROR logs":[null,"Dziennik błędów"],"There are no events to display.":[null,"Brak wydarzeń do wyświetlenia."],"Limit":[null,"Limit"],"Layout":[null,"Układ"],"HistoryLayout":[null,"Historia"],"Compact":[null,"Kompaktowy"],"Detailed":[null,"Szczegółowy"],"Time":[null,"Czas"],"Provider":[null,"Dostawca"],"Missing Provider":[null,"Brakujący dostawca"],"missing provider":[null,"brakujący dostawca"],"Directory":[null,"Katalog"],"Show Name (tvshow.nfo)":[null,"Nazwa odcinka (tvshow.nfo)"],"Indexer":[null,"Indeksy"],"Enter the folder containing the episode":[null,"Wpisz nazwę folderu zawierającego odcinek"],"Process Method to be used":[null,"Metoda procesowania, która ma być użyta"],"Copy":[null,"Kopiuj"],"Move":[null,"Przenieś"],"Hard Link":[null,"Dowiązanie twarde"],"Symbolic Link":[null,"Dowiązanie symboliczne"],"Symbolic Link Reversed":[null,""],"Force already Post Processed Dir/Files":[null,"Wymuś na przetworzonych już katalogach/plikach"],"Mark Dir/Files as priority download":[null,"Oznacz foldery/pliki na priorytetowe pobieranie"],"(Check it to replace the file even if it exists at higher quality)":[null,"(zaznacz aby podmienić plik nawet jeśli istnieje w wyższej jakości)"],"Delete files and folders":[null,"Usuń pliki i foldery"],"(Check it to delete files and folders like auto processing)":[null,"(Zaznacz by usunąć pliki i foldery, jak w przetwarzaniu automatycznym)"],"Don't use processing queue":[null,""],"(If checked this will return the result of the process here, but may be slow!)":[null,""],"Mark download as failed":[null,"Oznacz pobieranie jako nieudane"],"Process":[null,"Proces"],"Download subtitles for this show?":[null,"Pobierz napisy do tego programu?"],"use SickRage metadata when searching for subtitle, <br />this will override the autodiscovered metadata":[null,"Podczas szukania napisów użyj metadanych SickRage.<br />\nTo ustawienie zastąpi automatycznie wykryte metadane"],"Status for previously aired episodes":[null,"Status dla już wyemitowanych odcinków"],"Status for all future episodes":[null,"Status dla wszystkich przyszłych odcinków"],"Group episodes by season folder?":[null,""],"Is this show an Anime?":[null,"Czy jest to Anime?"],"Is this show scene numbered?":[null,"Czy ten Serial jest ponumerowany wg scen?"],"Save Defaults":[null,"Zapisz ustawienia domyślne"],"Use current values as the defaults":[null,"Użyj obecnych wartości jako domyślne ustawienia"],"<p>Select your preferred fansub groups from the <b>Available Groups</b> and add them to the <b>Whitelist</b>. Add groups to the <b>Blacklist</b> to ignore them.</p>\n <p>The <b>Whitelist</b> is checked <i>before</i> the <b>Blacklist</b>.</p>\n <p>Groups are shown as <b>Name</b> | <b>Rating</b> | <b>Number of subbed episodes</b>.</p>\n <p>You may also add any fansub group not listed to either list manually.</p>\n <p>When doing this please note that you can only use groups listed on anidb for this anime.\n <br>If a group is not listed on anidb but subbed this anime, please correct anidb's data.</p>":[null,"<p>Wybierz preferowane grupy tłumaczy z <b>Dostępnych Grup</b> i dodaj je do <b>Białej listy</b>. Dodaj grupy do <b>Czarnej listy</b>, by je ignorować.</p>\n <p><b>Biała lista</b> jest sprawdzana <i>przed </i> <b>Czarną listą</b>.</p>\n <p>Grupy są wyświetlane jako <b>Nazwa</b> | <b>Ocena</b> | <b>Liczba odcinków z napisami</b>.</p>\n <p>Można równiej dodać nową grupę ręcznie.</p>\n <p>Podczas tego pamiętaj, że grupa musi być dostępna w anidb dla tego anime.\n <br> Jeżeli anidb nie zawiera danej grupy tłumaczy, ale dostarczają oni napisy do tego anime, proszę popraw dane anidb.</p>"],"Whitelist":[null,"Biała lista"],"Available Groups":[null,"Dostępne grupy"],"Add to Whitelist":[null,"Dodaj do białej listy"],"Add to Blacklist":[null,"Dodaj do czarnej listy"],"Blacklist":[null,"Czarna lista"],"Custom Group":[null,""],"Allowed Quality:":[null,"Dozwolona jakość:"],"Preferred Quality:":[null,"Preferowana jakość:"],"Filter Show Name":[null,"Filtruj nazwę odcinka"],"Root":[null,""],"All":[null,"Wszytko"],"Clear Filter(s)":[null,"Wyczyść Filtr"],"Poster":[null,"Plakat"],"Small Poster":[null,"Mały plakat"],"Banner":[null,"Baner"],"Simple":[null,"Proste"],"Next Episode":[null,"Następny odcinek"],"Progress":[null,"Postęp"],"Direction":[null,"Kierunek"],"Ascending":[null,"Rosnąco"],"Descending":[null,"Malejąco"],"Poster Size":[null,"Rozmiar plakatu"],"Continuing":[null,"Kontynuuje"],"Ended":[null,"Zakończył się"],"Total":[null,"Suma"],"Invalid date":[null,"Nieprawidłowe dane"],"No Network":[null,"Brak Sieci"],"Next Ep":[null,"Następny Odczinek"],"Prev Ep":[null,"Poprzedni odcinek"],"Show":[null,"Program"],"Downloads":[null,"Pobrania"],"Active":[null,"Aktywny"],"loading":[null,"trwa ładowanie"],"<p><b><u>Preferred</u></b> qualities will replace those in <b><u>allowed</u></b>, even if they are lower.</p>":[null,"<p><b><u>Preferowane</u></b> jakości zastąpią te z <b><u>dozwolonych</u></b>, nawet jeżeli są niższe.</p>"],"New":[null,"Nowy"],"Set as Default":[null,"Ustaw jako domyślne"],"Remember me":[null,"Zapamiętaj mnie"],"Edit Selected":[null,"Edytuj zaznaczone"],"Subtitle":[null,"Napisy"],"Default Ep Status":[null,"Domyślny stan odcinka"],"Update":[null,"Aktualizuj"],"Rescan":[null,"Przeskanuj"],"Rename":[null,"Zmień nazwę"],"Search Subtitle":[null,"Szukaj napisów"],"Force Metadata Regen":[null,"Wymuś odświeżenie metadanych"],"Snatched (Allowed)":[null,"Złapano (Dozwolone)"],"Jump to Show":[null,"Skocz do Serialu"],"Force Backlog":[null,"Wymuś zaległości"],"Manage episodes with status":[null,"Zarządzaj odcinkami ze stanem"],"Manage":[null,"Zarządzaj"],"None of your episodes have status":[null,"Żadne odcinki nie mają stanu"],"Shows containing":[null,"Programy zawierające"],"episodes":[null,"odcinki"],"Set checked shows/episodes to":[null,"Ustaw sprawdzone programy/odcinki do"],"Go":[null,"Dalej"],"Select all":[null,"Zaznacz wszystko"],"Clear all":[null,"Wyczyść wszystko"],"Release":[null,"Wydanie"],"Backlog Search":[null,"Szukaj zaległości"],"Not in progress":[null,"Nie w toku"],"In Progress":[null,"W trakcie"],"Daily Search":[null,"Dzienne wyszukiwanie"],"Find Propers Search":[null,"Znajdź wyszukiwanie Proper"],"Propers search disabled":[null,"Wyłącz wyszukiwanie Proper"],"Subtitle Search":[null,"Wyszukiwanie napisów"],"Subtitle search disabled":[null,"Wyszukiwanie napisów wyłączone"],"Search Queue":[null,"Kolejka szukania"],"pending items":[null,"oczekujące elementy"],"Daily":[null,"Dziennie"],"Manual":[null,"Ręcznie"],"Changing any settings marked with (<span class=\"separator\">*</span>) will force a refresh of the selected shows.":[null,"Zmiana każdego ustawienia oznaczonego (<span class=\"separator\">*</span>) wymuśi odświerzenie zaznaczonych Serialów."],"Selected Shows":[null,"Wybrane programy"],"Root Directories":[null,"Katalogi główne"],"Current":[null,"Bierzący"],"Keep":[null,"Zachowaj"],"Custom":[null,"Niestandardowa"],"Group episodes by season folder (set to \"No\" to store in a single folder).":[null,"Grupuj odcinki po folderach sezonów (ustaw \"Nie\" żeby przechowywać w jednym folderze)."],"Pause these shows (SickRage will not download episodes).":[null,"Wstrzymaj te programy (SickRage nie będzie ściągał odcinków)."],"This will set the status for future episodes.":[null,"To ustawi status dla przyszłych odcinków."],"Search by scene numbering (set to \"No\" to search by indexer numbering).":[null,"Szukaj wg numeru sceny (wybierz \"Nie\" aby szukać wg numeru indeksu)."],"Set if these shows are Anime and episodes are released as Show.265 rather than Show.S02E03":[null,"Ustaw jeśli te seriale są Anime i odcinki są wypuszczone jako Show.265 zamiast Show.S02E03"],"Set if these shows are sporting or MMA events released as Show.03.02.2010 rather than Show.S02E03.":[null,"Wybierz jeżeli program jest wydarzeniem \"sportowym\" czy \"MMA\" wydanym w formacie \"Show.03.02.2010\" zamiast \"Show.S02E03\"."],"In case of an air date conflict between regular and special episodes, the later will be ignored.":[null,"W razie konfliktu daty wydania pomiędzy zwykłymi i specjalnymi odcinkami, kolejne będą ignorowane."],"Set if these shows are released as Show.03.02.2010 rather than Show.S02E03.":[null,"Ustaw jeśli te Seriale są wypuszczone jako Show.03.02.2010 niżeli Show.S02E03."],"Search for subtitles.":[null,"Szukaj napisów."],"All of your episodes have {subsLanguage} subtitles.":[null,"Twoje Wszystkie odcinki mają {subsLanguage} napisy."],"Manage episodes without":[null,"Zarządzaj odcinkami bez"],"Episodes without {subsLanguage} subtitles.":[null,"Odcinki bez {subsLanguage} napisów."],"Episodes without {subtitleLanguage} (undefined) subtitles.":[null,"Odcinki bez {subtitleLanguage} (nieokreślonych) napisów."],"Download missed subtitles for selected episodes":[null,"Pobierz brakujące napisy do wybranych odcinków"],"Performing Restart":[null,"Wykonuje restart"],"Waiting for SickRage to shut down":[null,"Czekam na zamknięcie SickRage"],"Waiting for SickRage to start again":[null,"Czekam na ponowny start SickRage"],"Loading the default page":[null,"Ładowanie strony domyślnej"],"Error: The restart has timed out, perhaps something prevented SickRage from starting again?":[null,"Błąd: Upłyną limit czasu restartu, może coś uniemożliwia ponowne uruchomienie SickRage?"],"Key":[null,"Klucz"],"Missed":[null,"Brakujące"],"Today":[null,"Dzisiaj"],"Soon":[null,"Wkrótce"],"Later":[null,"Poźniej"],"Subscribe":[null,"Subskrybuj"],"Date":[null,"Data"],"View Paused":[null,"Pokaż Wstrzymane"],"Hidden":[null,"Ukryte"],"Shown":[null,"Pokazane"],"Calendar":[null,"Kalendarz"],"List":[null,"Lista"],"Ends":[null,"Kończy się"],"Next Ep Name":[null,"Następna nazwa odcinka"],"Run time":[null,"Czas odcinka"],"Indexers":[null,"Indeksy"],"No shows for this day":[null,"Żadnych programów dla tego dnia"],"Airs":[null,"Emisja"],"Plot":[null,"Fabuła"],"Show Update":[null,"Aktualizacja Programu"],"Version Check":[null,"Sprawdź wersję"],"Proper Finder":[null,"Wyszukiwarka Poprawnych Seriali"],"Post Process":[null,"Przetwarzanie końcowe"],"Subtitles Finder":[null,"Wyszukiwarka napisów"],"Scheduler":[null,"Harmonogram"],"Alive":[null,"Żywy"],"Start Time":[null,"Czas rozpoczęcia"],"Cycle Time":[null,"Czas cyklu"],"Next Run":[null,"Następne Uruchomienie"],"Last Run":[null,"Ostatnie uruchomienie"],"Silent":[null,"Wyciszony"],"True":[null,"Prawda"],"N/A":[null,"N/A"],"Show id":[null,"Pokaż id"],"Show name":[null,"Nazwa programu"],"Priority":[null,"Priorytet"],"Added":[null,"Dodane"],"Queue type":[null,"Typ kolejki"],"LOW":[null,"NISKI"],"NORMAL":[null,"NORMALNY"],"HIGH":[null,"WYSOKI"],"Disk Space":[null,"Miejsce na dysku"],"Free space":[null,"Wolne miejsce na dysku"],"TV Download Directory":[null,"Katalog pobierania TV"],"Media Root Directories":[null,"Katalogi główne mediów"],"Preview of the proposed name changes":[null,"Podgląd proponowanych zmian nazw"],"All Seasons":[null,"Wszystkie sezony"],"select all":[null,""],"Rename Selected":[null,"Zmień nazwę zaznaczonych"],"Cancel Rename":[null,"Anuluj zmianę nazwy"],"Old Location":[null,"Stara lokalizacja"],"New Location":[null,"Nowa lokalizacja"],"Trakt API did not return any results, please check your config.":[null,"Trakt API nie zwraca żadnych wyników, sprawdź konfiguracje."],"votes":[null,"głosy"],"Remove Show":[null,"Usuń program"],"Level":[null,""],"Filter":[null,""],"All non-absolute folder locations are relative to ":[null,"Wszystkie nie-absolutne lokalizacje folderów są powiązane z "],"Manual Post-Processing":[null,"Ręczne przetwarzanie końcowe"],"Episode Status Management":[null,"Zarządzanie Statusem Odcinków"],"Update PLEX":[null,"Aktualizuj PLEX"],"Update KODI":[null,"Aktualizuj KODI"],"Update Emby":[null,"Aktualizuj Emby"],"Manage Torrents":[null,"Zarządzaj torrentami"],"Missed Subtitle Management":[null,"Zarządzanie Nieznalezionymi Napisami"],"Help & Info":[null,"Informacje i pomoc"],"Backup & Restore":[null,"Kopia zapasowa / przywracanie"],"Tools":[null,"Narzędzia"],"Support SickRage":[null,"Wesprzyj SickRage"],"View Errors":[null,"Pokaż błędy"],"View Warnings":[null,"Pokaż ostrzeżenia"],"View Log":[null,"Pokaż logi"],"Check For Updates":[null,"Sprawdź aktualizacje"],"Restart":[null,"Restart"],"Shutdown":[null,"Zamknij"],"Logout":[null,"Wyloguj"],"Server Status":[null,"Status serwera"],"View overview of snatched episodes":[null,"Przegląd złapanych odcinków"],"Episodes Downloaded":[null,"Pobrane Odcinki"],"Memory used":[null,"Pamięć używana"],"Load time":[null,"Czas ładowania"],"Branch":[null,"Branch"],"Now":[null,"Teraz"]}}}} \ No newline at end of file diff --git a/locale/pl_PL/LC_MESSAGES/messages.mo b/locale/pl_PL/LC_MESSAGES/messages.mo index 4297e8caba59375278b715e52b1342f63e1e6b9b..bbc57a18b8810452e0fdae08e4d011a04729783f 100644 Binary files a/locale/pl_PL/LC_MESSAGES/messages.mo and b/locale/pl_PL/LC_MESSAGES/messages.mo differ diff --git a/locale/pl_PL/LC_MESSAGES/messages.po b/locale/pl_PL/LC_MESSAGES/messages.po index 8be1c9c7167baf14b7856c9272f9e2b03f91d75f..409e5c57adc96165a546aa88aeaef063c80078db 100644 --- a/locale/pl_PL/LC_MESSAGES/messages.po +++ b/locale/pl_PL/LC_MESSAGES/messages.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: sickrage\n" "Report-Msgid-Bugs-To: miigotu@gmail.com\n" -"POT-Creation-Date: 2017-03-25 09:28-0700\n" -"PO-Revision-Date: 2017-03-25 12:30-0400\n" +"POT-Creation-Date: 2017-03-28 09:10-0700\n" +"PO-Revision-Date: 2017-03-28 12:12-0400\n" "Last-Translator: miigotu <miigotu@gmail.com>\n" "Language-Team: Polish\n" "MIME-Version: 1.0\n" @@ -90,7 +90,7 @@ msgid "Biography" msgstr "Biograficzny" #: gui/slick/views/config_general.mako:78 gui/slick/views/layouts/main.mako:145 -#: sickbeard/__init__.py:79 sickbeard/webserve.py:3807 +#: sickbeard/__init__.py:79 sickbeard/webserve.py:3778 msgid "History" msgstr "Historia" @@ -103,7 +103,7 @@ msgid "Western" msgstr "Western" #: gui/slick/views/config_general.mako:79 gui/slick/views/layouts/main.mako:221 -#: sickbeard/__init__.py:80 sickbeard/webserve.py:2385 +#: sickbeard/__init__.py:80 sickbeard/webserve.py:2384 msgid "News" msgstr "Aktualności" @@ -238,6 +238,34 @@ msgstr "Zignorowano" msgid "Subtitled" msgstr "Z napisami" +#: sickbeard/helpers.py:1887 +msgid "For best results please set the Download Station alias as" +msgstr "Aby uzyskać najlepsze wyniki, należy ustawić alias Download Station jako" + +#: sickbeard/helpers.py:1888 +msgid "You can check this setting in the Synology DSM" +msgstr "Możesz sprawdzić to ustawienie w Synology DSM" + +#: sickbeard/helpers.py:1888 sickbeard/helpers.py:1890 +msgid "Control Panel" +msgstr "Panel zarządzania" + +#: sickbeard/helpers.py:1888 +msgid "Application Portal" +msgstr "Portal aplikacji" + +#: sickbeard/helpers.py:1889 +msgid "Make sure you allow DSM to be embedded with iFrames too in" +msgstr "Upewnij się, że pozwalasz by DSM zostało osadzone w iFrame także w" + +#: sickbeard/helpers.py:1890 +msgid "DSM Settings" +msgstr "Ustawienia DSM" + +#: sickbeard/helpers.py:1890 +msgid "Security" +msgstr "Bezpieczeństwo" + #: sickbeard/logger.py:474 msgid "<No Filter>" msgstr "< brak filtra >" @@ -308,15 +336,15 @@ msgstr "Sprawdź na Trakt" msgid "Event" msgstr "Zdarzenie" -#: sickbeard/logger.py:491 sickbeard/webserve.py:1339 sickbeard/webserve.py:1342 -#: sickbeard/webserve.py:1520 sickbeard/webserve.py:1529 sickbeard/webserve.py:1717 -#: sickbeard/webserve.py:1728 sickbeard/webserve.py:1751 sickbeard/webserve.py:1764 -#: sickbeard/webserve.py:1769 sickbeard/webserve.py:1785 sickbeard/webserve.py:1790 -#: sickbeard/webserve.py:1854 sickbeard/webserve.py:1857 sickbeard/webserve.py:1863 -#: sickbeard/webserve.py:1866 sickbeard/webserve.py:1873 sickbeard/webserve.py:1876 -#: sickbeard/webserve.py:1899 sickbeard/webserve.py:1997 sickbeard/webserve.py:2002 -#: sickbeard/webserve.py:2007 sickbeard/webserve.py:2036 sickbeard/webserve.py:2040 -#: sickbeard/webserve.py:2045 +#: sickbeard/logger.py:491 sickbeard/webserve.py:1338 sickbeard/webserve.py:1341 +#: sickbeard/webserve.py:1519 sickbeard/webserve.py:1528 sickbeard/webserve.py:1716 +#: sickbeard/webserve.py:1727 sickbeard/webserve.py:1750 sickbeard/webserve.py:1763 +#: sickbeard/webserve.py:1768 sickbeard/webserve.py:1784 sickbeard/webserve.py:1789 +#: sickbeard/webserve.py:1853 sickbeard/webserve.py:1856 sickbeard/webserve.py:1862 +#: sickbeard/webserve.py:1865 sickbeard/webserve.py:1872 sickbeard/webserve.py:1875 +#: sickbeard/webserve.py:1898 sickbeard/webserve.py:1996 sickbeard/webserve.py:2001 +#: sickbeard/webserve.py:2006 sickbeard/webserve.py:2035 sickbeard/webserve.py:2039 +#: sickbeard/webserve.py:2044 msgid "Error" msgstr "Błąd" @@ -333,6 +361,7 @@ msgstr "Wątek" msgid "Main" msgstr "Główny" +#: gui/slick/js/ajaxEpSearch.js:146 gui/slick/js/ajaxEpSearch.js:147 #: gui/slick/views/inc_home_showList.mako:27 sickbeard/show_queue.py:298 msgid "Loading" msgstr "" @@ -372,867 +401,835 @@ msgstr "Nie udało się zapisać kopii zapasowej konfiguracji, przerywanie aktua msgid "No update needed" msgstr "Aktualizacja nie jest potrzebna" -#: sickbeard/webserve.py:170 +#: sickbeard/webserve.py:171 msgid "Mako Error" msgstr "Błąd mako" -#: sickbeard/webserve.py:195 +#: sickbeard/webserve.py:196 msgid "Oops" msgstr "Ups" -#: sickbeard/webserve.py:197 +#: sickbeard/webserve.py:198 msgid "Wrong API key used" msgstr "Używano nieprawidłowego klucza API" -#: gui/slick/views/login.mako:34 sickbeard/webserve.py:302 +#: gui/slick/views/login.mako:34 sickbeard/webserve.py:303 msgid "Login" msgstr "Logowanie" -#: sickbeard/webserve.py:406 +#: sickbeard/webserve.py:392 msgid "API Key not generated" msgstr "Nie wygenerowano klucza API" -#: sickbeard/webserve.py:409 +#: sickbeard/webserve.py:395 msgid "API Builder" msgstr "API Builder" #: gui/slick/views/config_general.mako:77 gui/slick/views/layouts/main.mako:141 -#: sickbeard/webserve.py:512 +#: sickbeard/webserve.py:498 msgid "Schedule" msgstr "Harmonogram" -#: sickbeard/webserve.py:610 +#: sickbeard/webserve.py:609 msgid "Test 1" msgstr "Test 1" -#: sickbeard/webserve.py:610 +#: sickbeard/webserve.py:609 msgid "This is test number 1" msgstr "To jest test numer 1" -#: sickbeard/webserve.py:611 +#: sickbeard/webserve.py:610 msgid "Test 2" msgstr "Test 2" -#: sickbeard/webserve.py:611 +#: sickbeard/webserve.py:610 msgid "This is test number 2" msgstr "To jest test numer 2" -#: sickbeard/webserve.py:634 +#: sickbeard/webserve.py:633 msgid "You're using the {branch} branch. Please use 'master' unless specifically asked" msgstr "Korzystasz z gałęzi {branch}. Proszę użyć gałęzi 'master' jeśli nie zostałeś specjalnie poproszony" -#: sickbeard/webserve.py:698 sickbeard/webserve.py:703 +#: sickbeard/webserve.py:697 sickbeard/webserve.py:702 msgid "Invalid show parameters" msgstr "Nieprawidłowe parametry serialu" -#: sickbeard/webserve.py:710 +#: sickbeard/webserve.py:709 msgid "Invalid parameters" msgstr "" -#: sickbeard/webserve.py:713 sickbeard/webserve.py:1899 +#: sickbeard/webserve.py:712 sickbeard/webserve.py:1898 msgid "Episode couldn't be retrieved" msgstr "Odcinek nie mógł zostać znaleziony" -#: sickbeard/webserve.py:759 sickbeard/webserve.py:1268 sickbeard/webserve.py:1297 +#: sickbeard/webserve.py:758 sickbeard/webserve.py:1267 sickbeard/webserve.py:1296 msgid "Home" msgstr "Główna" -#: gui/slick/views/layouts/main.mako:127 sickbeard/webserve.py:759 +#: gui/slick/views/layouts/main.mako:127 sickbeard/webserve.py:758 msgid "Show List" msgstr "Pokaż listę" -#: sickbeard/webserve.py:807 +#: sickbeard/webserve.py:806 msgid "Error: Unsupported Request. Send jsonp request with 'callback' variable in the query string." msgstr "Błąd: Nieobsługiwany typ żądania. Wyślij żądanie JSONP ze zmienną \"zwrotną\" w ciągu kwerendy." -#: sickbeard/webserve.py:851 +#: sickbeard/webserve.py:850 msgid "Success. Connected and authenticated" msgstr "Powodzenie. Połączony i uwierzytelniony" -#: sickbeard/webserve.py:853 +#: sickbeard/webserve.py:852 msgid "Authentication failed. SABnzbd expects" msgstr "Uwierzytelnianie nie powiodło się. SABnzbd wymaga" -#: sickbeard/webserve.py:853 +#: sickbeard/webserve.py:852 msgid "as authentication method" msgstr "jako metoda uwierzytelniania" -#: sickbeard/webserve.py:855 +#: sickbeard/webserve.py:854 msgid "Unable to connect to host" msgstr "Nie można połączyć się z hostem" -#: sickbeard/webserve.py:876 +#: sickbeard/webserve.py:875 msgid "SMS sent successfully" msgstr "SMS wysłany pomyślnie" -#: sickbeard/webserve.py:878 +#: sickbeard/webserve.py:877 msgid "Problem sending SMS: {message}" msgstr "Problem z wysyłaniem SMS: {message}" -#: sickbeard/webserve.py:885 +#: sickbeard/webserve.py:884 msgid "Telegram notification succeeded. Check your Telegram clients to make sure it worked" msgstr "Wysłano powiadomienie Telegram. Sprawdź klienta Telegram by upewnić się że działa" -#: sickbeard/webserve.py:887 +#: sickbeard/webserve.py:886 msgid "Error sending Telegram notification: {message}" msgstr "Wystąpił błąd podczas wysyłania powiadomienia Telegram: {message}" -#: sickbeard/webserve.py:894 +#: sickbeard/webserve.py:893 msgid "join notification succeeded. Check your join clients to make sure it worked" msgstr "wysłano powiadomienie połączenia. Sprawdź podłączonego klienta by upewnić się że działa" -#: sickbeard/webserve.py:896 +#: sickbeard/webserve.py:895 msgid "Error sending join notification: {message}" msgstr "Błąd podczas wysyłania powiadomienia podłączenia: {message}" -#: sickbeard/webserve.py:906 +#: sickbeard/webserve.py:905 msgid " with password" msgstr " z hasłem" -#: sickbeard/webserve.py:908 +#: sickbeard/webserve.py:907 msgid "Registered and Tested growl successfully {growl_host}" msgstr "Zarejestrowano i przetestowano Growl z powodzeniem {growl_host}" -#: sickbeard/webserve.py:910 +#: sickbeard/webserve.py:909 msgid "Registration and Testing of growl failed {growl_host}" msgstr "Niepowodzenie w rejestracji i testowaniu Growl {growl_host}" -#: sickbeard/webserve.py:917 +#: sickbeard/webserve.py:916 msgid "Test prowl notice sent successfully" msgstr "Testowe powiadomienie Prowl wysłano pomyślnie" -#: sickbeard/webserve.py:919 +#: sickbeard/webserve.py:918 msgid "Test prowl notice failed" msgstr "Niepowodzenie testowego powiadomienia Prowl" -#: sickbeard/webserve.py:926 +#: sickbeard/webserve.py:925 msgid "Boxcar2 notification succeeded. Check your Boxcar2 clients to make sure it worked" msgstr "Wysłano powiadomienie Boxcar2. Sprawdź klienta Boxcar2 by upewnić się że działa" -#: sickbeard/webserve.py:928 +#: sickbeard/webserve.py:927 msgid "Error sending Boxcar2 notification" msgstr "Wystąpił błąd podczas wysyłania powiadomienia Boxcar2" -#: sickbeard/webserve.py:935 +#: sickbeard/webserve.py:934 msgid "Pushover notification succeeded. Check your Pushover clients to make sure it worked" msgstr "Wysłano powiadomienie Pushover. Sprawdź klienta Pushover by upewnić się że działa" -#: sickbeard/webserve.py:937 +#: sickbeard/webserve.py:936 msgid "Error sending Pushover notification" msgstr "Wystąpił błąd podczas wysyłania powiadomienia Pushover" -#: sickbeard/webserve.py:949 +#: sickbeard/webserve.py:948 msgid "Key verification successful" msgstr "Powodzenie weryfikacji klucza" -#: sickbeard/webserve.py:951 +#: sickbeard/webserve.py:950 msgid "Unable to verify key" msgstr "Nie można zweryfikować klucza" -#: sickbeard/webserve.py:958 +#: sickbeard/webserve.py:957 msgid "Tweet successful, check your twitter to make sure it worked" msgstr "Wysłano tweeta. Sprawdź swojego Twittera by upewnić się że działa" -#: sickbeard/webserve.py:960 +#: sickbeard/webserve.py:959 msgid "Error sending tweet" msgstr "Błąd w wysyłaniu tweeta" -#: sickbeard/webserve.py:965 +#: sickbeard/webserve.py:964 msgid "Please enter a valid account sid" msgstr "" -#: sickbeard/webserve.py:968 +#: sickbeard/webserve.py:967 msgid "Please enter a valid auth token" msgstr "" -#: sickbeard/webserve.py:971 +#: sickbeard/webserve.py:970 msgid "Please enter a valid phone sid" msgstr "" -#: sickbeard/webserve.py:974 +#: sickbeard/webserve.py:973 msgid "Please format the phone number as \"+1-###-###-####\"" msgstr "" -#: sickbeard/webserve.py:978 +#: sickbeard/webserve.py:977 msgid "Authorization successful and number ownership verified" msgstr "" -#: sickbeard/webserve.py:980 +#: sickbeard/webserve.py:979 msgid "Error sending sms" msgstr "Wystąpił błąd podczas wysyłania SMS" -#: sickbeard/webserve.py:986 +#: sickbeard/webserve.py:985 msgid "Slack message successful" msgstr "Wysłano wadomości Slack" -#: sickbeard/webserve.py:988 +#: sickbeard/webserve.py:987 msgid "Slack message failed" msgstr "Wysłanie wiadomości Slack nie powiodło się" -#: sickbeard/webserve.py:994 +#: sickbeard/webserve.py:993 msgid "Discord message successful" msgstr "" -#: sickbeard/webserve.py:996 +#: sickbeard/webserve.py:995 msgid "Discord message failed" msgstr "" -#: sickbeard/webserve.py:1006 +#: sickbeard/webserve.py:1005 msgid "Test KODI notice sent successfully to {kodi_host}" msgstr "Test notyfikacji KODI wysłano pomyślnie do {kodi_host}" -#: sickbeard/webserve.py:1008 +#: sickbeard/webserve.py:1007 msgid "Test KODI notice failed to {kodi_host}" msgstr "Test notyfikacji do KODI {kodi_host} nie powiódł się" -#: sickbeard/webserve.py:1023 +#: sickbeard/webserve.py:1022 msgid "Successful test notice sent to Plex Home Theater ... {plex_clients}" msgstr "Udało się wysłać notyfikacje testową do Plex Home Theater ... {plex_clients}" -#: sickbeard/webserve.py:1025 +#: sickbeard/webserve.py:1024 msgid "Test failed for Plex Home Theater ... {plex_clients}" msgstr "Test nie powiódł się dla Plex Home Theater ... {plex_clients}" -#: sickbeard/webserve.py:1028 +#: sickbeard/webserve.py:1027 msgid "Tested Plex Home Theater(s)" msgstr "Przetestowano Plex Home Theater" -#: sickbeard/webserve.py:1042 +#: sickbeard/webserve.py:1041 msgid "Successful test of Plex Media Server(s) ... {plex_servers}" msgstr "Udał się test Plex Media Server(s) ... {plex_servers}" -#: sickbeard/webserve.py:1044 +#: sickbeard/webserve.py:1043 msgid "Test failed, No Plex Media Server host specified" msgstr "Test nie powiódł się, nie określono serwera Plex Media" -#: sickbeard/webserve.py:1046 +#: sickbeard/webserve.py:1045 msgid "Test failed for Plex Media Server(s) ... {plex_servers}" msgstr "Test nie powiódł się dla Plex Media Server(s) ... {plex_servers}" -#: sickbeard/webserve.py:1049 +#: sickbeard/webserve.py:1048 msgid "Tested Plex Media Server host(s)" msgstr "Przetestowano Plex Media Server host(y)" -#: sickbeard/webserve.py:1057 +#: sickbeard/webserve.py:1056 msgid "Tried sending desktop notification via libnotify" msgstr "Próbowano wysłać notyfikacją desktop-ową przez libnotify" -#: sickbeard/webserve.py:1066 +#: sickbeard/webserve.py:1065 msgid "Test notice sent successfully to {emby_host}" msgstr "Wysłano pomyślnie powiadomienie testowe do {emby_host}" -#: sickbeard/webserve.py:1068 +#: sickbeard/webserve.py:1067 msgid "Test notice failed to {emby_host}" msgstr "Wiadomość testowa nie dotarła do {emby_host}" -#: sickbeard/webserve.py:1076 +#: sickbeard/webserve.py:1075 msgid "Successfully started the scan update" msgstr "Pomyślnie wystartowano aktualizacje skanowania" -#: sickbeard/webserve.py:1078 +#: sickbeard/webserve.py:1077 msgid "Test failed to start the scan update" msgstr "Nie udało się uruchomić aktualizacji skanowania" -#: sickbeard/webserve.py:1097 +#: sickbeard/webserve.py:1096 msgid "Test notice sent successfully to {nmj2_host}" msgstr "Test notyfikacji wysłano pomyślnie do {nmj2_host}" -#: sickbeard/webserve.py:1099 +#: sickbeard/webserve.py:1098 msgid "Test notice failed to {nmj2_host}" msgstr "Test notyfikacji do {nmj2_host} nie powiódł się" -#: sickbeard/webserve.py:1119 +#: sickbeard/webserve.py:1118 msgid "Trakt Authorized" msgstr "Trakt autoryzowany" -#: sickbeard/webserve.py:1120 +#: sickbeard/webserve.py:1119 msgid "Trakt Not Authorized!" msgstr "Trakt nie autoryzowany!" -#: sickbeard/webserve.py:1184 +#: sickbeard/webserve.py:1183 msgid "Test email sent successfully! Check inbox." msgstr "Wiadomość testowa wysłana pomyślnie! Sprawdź skrzynkę." -#: sickbeard/webserve.py:1186 +#: sickbeard/webserve.py:1185 msgid "ERROR: {last_error}" msgstr "BŁĄD: {last_error}" -#: sickbeard/webserve.py:1193 +#: sickbeard/webserve.py:1192 msgid "Test NMA notice sent successfully" msgstr "Wysłano pomyślnie notyfikacje testową NMA" -#: sickbeard/webserve.py:1195 +#: sickbeard/webserve.py:1194 msgid "Test NMA notice failed" msgstr "Test notyfikacji NMA nie powiódł się" -#: sickbeard/webserve.py:1202 +#: sickbeard/webserve.py:1201 msgid "Pushalot notification succeeded. Check your Pushalot clients to make sure it worked" msgstr "Notyfikacja Pushalot powiodła się. Sprawdź swoich klientów Pushalot w celu upewnienia się" -#: sickbeard/webserve.py:1204 +#: sickbeard/webserve.py:1203 msgid "Error sending Pushalot notification" msgstr "Wystąpił błąd podczas wysyłania notyfikacji Pushalot" -#: sickbeard/webserve.py:1211 +#: sickbeard/webserve.py:1210 msgid "Pushbullet notification succeeded. Check your device to make sure it worked" msgstr "Notyfikacja Pushbullet powiodła się. Sprawdź swoje urządzenie w celu upewnienia się" -#: sickbeard/webserve.py:1213 sickbeard/webserve.py:1223 sickbeard/webserve.py:1232 +#: sickbeard/webserve.py:1212 sickbeard/webserve.py:1222 sickbeard/webserve.py:1231 msgid "Error sending Pushbullet notification" msgstr "Wystąpił błąd podczas wysyłania notyfikacji Pushbullet" #: gui/slick/views/displayShow.mako:436 gui/slick/views/inc_home_showList.mako:174 -#: gui/slick/views/manage.mako:49 sickbeard/webserve.py:1249 +#: gui/slick/views/manage.mako:49 sickbeard/webserve.py:1248 msgid "Status" msgstr "Stan" -#: sickbeard/webserve.py:1268 sickbeard/webserve.py:1297 +#: sickbeard/webserve.py:1267 sickbeard/webserve.py:1296 msgid "Restarting SickRage" msgstr "Restartowanie SickRage" -#: sickbeard/webserve.py:1300 +#: sickbeard/webserve.py:1299 msgid "Update Failed" msgstr "Aktualizacja nie powiodła się" -#: sickbeard/webserve.py:1301 +#: sickbeard/webserve.py:1300 msgid "Update wasn't successful, not restarting. Check your log for more information." msgstr "Aktualizacja nie powiodła się, nie restartuje. Sprawdź swoje logi w celu uzyskania więcej informacji." -#: sickbeard/webserve.py:1308 +#: sickbeard/webserve.py:1307 msgid "Checking out branch" msgstr "Sprawdzam branch" -#: sickbeard/webserve.py:1311 +#: sickbeard/webserve.py:1310 msgid "Already on branch" msgstr "Już na branch" -#: sickbeard/webserve.py:1339 +#: sickbeard/webserve.py:1338 msgid "Invalid show ID: {show}" msgstr "Nieprawidłowe ID programu: {show}" -#: sickbeard/webserve.py:1342 sickbeard/webserve.py:1871 sickbeard/webserve.py:2002 -#: sickbeard/webserve.py:2040 +#: sickbeard/webserve.py:1341 sickbeard/webserve.py:1870 sickbeard/webserve.py:2001 +#: sickbeard/webserve.py:2039 msgid "Show not in show list" msgstr "Programu nie ma na liście programów" #: gui/slick/views/inc_rootDirs.mako:31 gui/slick/views/manage.mako:38 -#: gui/slick/views/manage_massEdit.mako:74 sickbeard/webserve.py:1358 -#: sickbeard/webserve.py:2027 +#: gui/slick/views/manage_massEdit.mako:74 sickbeard/webserve.py:1357 +#: sickbeard/webserve.py:2026 msgid "Edit" msgstr "Edytuj" -#: sickbeard/webserve.py:1368 +#: sickbeard/webserve.py:1367 msgid "This show is in the process of being downloaded - the info below is incomplete." msgstr "Dane programu są pobierane - poniższe informacje mogą być niepełne." -#: sickbeard/webserve.py:1371 +#: sickbeard/webserve.py:1370 msgid "The information on this page is in the process of being updated." msgstr "Informacje na tej stronie są właśnie aktualizowane." -#: sickbeard/webserve.py:1374 +#: sickbeard/webserve.py:1373 msgid "The episodes below are currently being refreshed from disk" msgstr "" -#: sickbeard/webserve.py:1377 +#: sickbeard/webserve.py:1376 msgid "Currently downloading subtitles for this show" msgstr "Obecnie pobieram napisy do tego serialu" -#: sickbeard/webserve.py:1380 +#: sickbeard/webserve.py:1379 msgid "This show is queued to be refreshed." msgstr "Ten serial jest w kolejce do odświeżenia." -#: sickbeard/webserve.py:1383 +#: sickbeard/webserve.py:1382 msgid "This show is queued and awaiting an update." msgstr "Serial w kolejce, oczekuje na aktualizację." -#: sickbeard/webserve.py:1386 +#: sickbeard/webserve.py:1385 msgid "This show is queued and awaiting subtitles download." msgstr "Ten serial jest w kolejce i oczekuje na pobranie napisów." -#: gui/slick/js/core.js:4081 sickbeard/webserve.py:1391 +#: gui/slick/js/core.js:4081 sickbeard/webserve.py:1390 msgid "Resume" msgstr "Wznów" #: gui/slick/js/core.js:4081 gui/slick/views/viewlogs.mako:12 -#: sickbeard/webserve.py:1393 +#: sickbeard/webserve.py:1392 msgid "Pause" msgstr "Wstrzymaj" #: gui/slick/views/editShow.mako:345 gui/slick/views/inc_blackwhitelist.mako:40 #: gui/slick/views/inc_blackwhitelist.mako:85 gui/slick/views/manage.mako:58 -#: gui/slick/views/manage_failedDownloads.mako:43 sickbeard/webserve.py:1395 +#: gui/slick/views/manage_failedDownloads.mako:43 sickbeard/webserve.py:1394 msgid "Remove" msgstr "Usuń" -#: sickbeard/webserve.py:1396 +#: sickbeard/webserve.py:1395 msgid "Re-scan files" msgstr "Ponownie przeskanuj pliki" -#: sickbeard/webserve.py:1397 +#: sickbeard/webserve.py:1396 msgid "Force Full Update" msgstr "Wymuś Pełen Update" -#: sickbeard/webserve.py:1398 +#: sickbeard/webserve.py:1397 msgid "Update show in KODI" msgstr "Aktualizuj program w KODI" -#: sickbeard/webserve.py:1399 +#: sickbeard/webserve.py:1398 msgid "Update show in Emby" msgstr "Aktualizuj program w Emby" -#: sickbeard/webserve.py:1402 +#: sickbeard/webserve.py:1401 msgid "Hide specials" msgstr "Chowaj specjalne" -#: sickbeard/webserve.py:1404 +#: sickbeard/webserve.py:1403 msgid "Show specials" msgstr "Pokazuj odcinki specjalne" -#: sickbeard/webserve.py:1406 sickbeard/webserve.py:2030 sickbeard/webserve.py:2031 +#: sickbeard/webserve.py:1405 sickbeard/webserve.py:2029 sickbeard/webserve.py:2030 msgid "Preview Rename" msgstr "Podgląd zmiany nazwy" -#: sickbeard/webserve.py:1409 +#: sickbeard/webserve.py:1408 msgid "Download Subtitles" msgstr "Pobierz napisy" -#: sickbeard/webserve.py:1498 +#: sickbeard/webserve.py:1497 msgid "No scene exceptions" msgstr "Bez wyjątków sceny" -#: sickbeard/webserve.py:1516 sickbeard/webserve.py:1764 sickbeard/webserve.py:1785 +#: sickbeard/webserve.py:1515 sickbeard/webserve.py:1763 sickbeard/webserve.py:1784 msgid "Invalid show ID" msgstr "Nieprawidłowe ID programu" -#: sickbeard/webserve.py:1525 sickbeard/webserve.py:1769 sickbeard/webserve.py:1790 +#: sickbeard/webserve.py:1524 sickbeard/webserve.py:1768 sickbeard/webserve.py:1789 msgid "Unable to find the specified show" msgstr "Nie można odnaleźć określonego programu" -#: sickbeard/webserve.py:1550 +#: sickbeard/webserve.py:1549 msgid "Unable to retreive Fansub Groups from AniDB." msgstr "Nie można pobrać grupy Fansub z AniDB." -#: sickbeard/webserve.py:1559 sickbeard/webserve.py:1561 +#: sickbeard/webserve.py:1558 sickbeard/webserve.py:1560 msgid "Edit Show" msgstr "Edycja programu" -#: sickbeard/webserve.py:1637 sickbeard/webserve.py:1671 +#: sickbeard/webserve.py:1636 sickbeard/webserve.py:1670 msgid "Unable to refresh this show: {error}" msgstr "Nie można odświeżyć tego serialu: {error}" -#: sickbeard/webserve.py:1663 +#: sickbeard/webserve.py:1662 msgid "New location <tt>{location}</tt> does not exist" msgstr "Nowa lokalizacja <tt>{location}</tt> nie istnieje" -#: sickbeard/webserve.py:1688 +#: sickbeard/webserve.py:1687 msgid "Unable to update show: {error}" msgstr "Nie można zaktualizować serialu: {error}" -#: sickbeard/webserve.py:1695 +#: sickbeard/webserve.py:1694 msgid "Unable to force an update on scene exceptions of the show." msgstr "Nie można wymusić aktualizacji wyjątkami sceny serialu." -#: sickbeard/webserve.py:1702 +#: sickbeard/webserve.py:1701 msgid "Unable to force an update on scene numbering of the show." msgstr "Nie można wymusić aktualizacji numeracji scen serialu." -#: sickbeard/webserve.py:1708 sickbeard/webserve.py:3540 +#: sickbeard/webserve.py:1707 sickbeard/webserve.py:3539 msgid "{num_errors:d} error{plural} while saving changes:" msgstr "{num_errors:d} błędów{plural} podczas zapisywania zmian:" -#: sickbeard/webserve.py:1719 +#: sickbeard/webserve.py:1718 msgid "{show_name} has been {paused_resumed}" msgstr "{show_name} został {paused_resumed}" -#: sickbeard/webserve.py:1719 +#: sickbeard/webserve.py:1718 msgid "resumed" msgstr "wznowione" -#: sickbeard/webserve.py:1719 +#: sickbeard/webserve.py:1718 msgid "paused" msgstr "wstrzymane" -#: sickbeard/webserve.py:1731 +#: sickbeard/webserve.py:1730 msgid "{show_name} has been {deleted_trashed} {was_deleted}" msgstr "{show_name} został {deleted_trashed} {was_deleted}" -#: sickbeard/webserve.py:1733 +#: sickbeard/webserve.py:1732 msgid "deleted" msgstr "usunięty" -#: sickbeard/webserve.py:1733 +#: sickbeard/webserve.py:1732 msgid "trashed" msgstr "przeniesiony do kosza" -#: sickbeard/webserve.py:1734 +#: sickbeard/webserve.py:1733 msgid "(media untouched)" msgstr "(media nietknięte)" -#: sickbeard/webserve.py:1734 +#: sickbeard/webserve.py:1733 msgid "(with all related media)" msgstr "(z wszystkimi powiązanymi mediami)" -#: sickbeard/webserve.py:1755 +#: sickbeard/webserve.py:1754 msgid "Unable to refresh this show." msgstr "Nie można odświeżyć programu." -#: sickbeard/webserve.py:1775 +#: sickbeard/webserve.py:1774 msgid "Unable to update this show." msgstr "Nie można zaktualizować programu." -#: sickbeard/webserve.py:1814 +#: sickbeard/webserve.py:1813 msgid "Library update command sent to KODI host(s)): {kodi_hosts}" msgstr "Komenda do odświeżenia biblioteki została wysłana do KODI host: {kodi_hosts}" -#: sickbeard/webserve.py:1816 +#: sickbeard/webserve.py:1815 msgid "Unable to contact one or more KODI host(s)): {kodi_hosts}" msgstr "Nie można skontaktować się z jednym lub więcej hostami KODI: {kodi_hosts}" -#: sickbeard/webserve.py:1825 +#: sickbeard/webserve.py:1824 msgid "Library update command sent to Plex Media Server host: {plex_server}" msgstr "Komenda do odświeżenia biblioteki została wysłana do Plex Media Server host: {plex_server}" -#: sickbeard/webserve.py:1828 +#: sickbeard/webserve.py:1827 msgid "Unable to contact Plex Media Server host: {plex_server}" msgstr "Nie można skontaktować się z Plex Media Server: {plex_server}" -#: sickbeard/webserve.py:1840 +#: sickbeard/webserve.py:1839 msgid "Library update command sent to Emby host: {emby_host}" msgstr "Polecenie aktualizacji biblioteki wysłane do serwera Emby: {emby_host}" -#: sickbeard/webserve.py:1842 +#: sickbeard/webserve.py:1841 msgid "Unable to contact Emby host: {emby_host}" msgstr "Nie można skontaktować się z serwerem Emby: {emby_host}" -#: sickbeard/webserve.py:1852 sickbeard/webserve.py:2036 +#: sickbeard/webserve.py:1851 sickbeard/webserve.py:2035 msgid "You must specify a show and at least one episode" msgstr "Musisz określić program i co najmniej jeden odcinek" -#: sickbeard/webserve.py:1861 +#: sickbeard/webserve.py:1860 msgid "Invalid status" msgstr "Niepoprawny status" -#: sickbeard/webserve.py:1954 +#: sickbeard/webserve.py:1953 msgid "Backlog was automatically started for the following seasons of <b>{show_name}</b>" msgstr "Ponowne wyszukiwanie zostało automatycznie uruchomione dla następujących sezonów <b>{show_name}</b>" #: gui/slick/views/displayShow.mako:74 gui/slick/views/displayShow.mako:79 -#: gui/slick/views/displayShow.mako:404 sickbeard/webserve.py:1961 -#: sickbeard/webserve.py:1980 +#: gui/slick/views/displayShow.mako:404 sickbeard/webserve.py:1960 +#: sickbeard/webserve.py:1979 msgid "Season" msgstr "Sezon" -#: sickbeard/webserve.py:1968 +#: sickbeard/webserve.py:1967 msgid "Backlog started" msgstr "Rozpoczęto wykonywanie zaległych zadań" -#: sickbeard/webserve.py:1973 +#: sickbeard/webserve.py:1972 msgid "Retrying Search was automatically started for the following season of <b>{show_name}</b>" msgstr "Ponowna próba wyszukiwania została automatycznie uruchomiona dla następujących sezonów <b>{show_name}</b>" -#: sickbeard/webserve.py:1987 +#: sickbeard/webserve.py:1986 msgid "Retry Search started" msgstr "Ponowne wyszukiwanie rozpoczęte" -#: sickbeard/webserve.py:1997 +#: sickbeard/webserve.py:1996 msgid "You must specify a show" msgstr "Musisz określić program" -#: sickbeard/webserve.py:2007 sickbeard/webserve.py:2045 +#: sickbeard/webserve.py:2006 sickbeard/webserve.py:2044 msgid "Can't rename episodes when the show dir is missing." msgstr "Nie można zmienić nazwy odcinków, kiedy brakuje lokalizacji programu." -#: sickbeard/webserve.py:2212 sickbeard/webserve.py:2233 +#: sickbeard/webserve.py:2211 sickbeard/webserve.py:2232 msgid "New subtitles downloaded: {new_subtitle_languages}" msgstr "Pobrano nowe napisy: {new_subtitle_languages}" -#: sickbeard/webserve.py:2215 sickbeard/webserve.py:2236 +#: sickbeard/webserve.py:2214 sickbeard/webserve.py:2235 msgid "No subtitles downloaded" msgstr "Brak pobranych napisów" #: gui/slick/views/config_general.mako:80 gui/slick/views/layouts/main.mako:222 -#: sickbeard/webserve.py:2363 +#: sickbeard/webserve.py:2362 msgid "IRC" msgstr "IRC" -#: sickbeard/webserve.py:2376 +#: sickbeard/webserve.py:2375 msgid "Could not load news from the repo. [Click here for news.md])({news_url})" msgstr "Nie można załadować wiadomości z repozytorium. [Kliknij tutaj news.md]) ({news_url})" -#: sickbeard/webserve.py:2383 sickbeard/webserve.py:2401 +#: sickbeard/webserve.py:2382 sickbeard/webserve.py:2400 msgid "The was a problem connecting to github, please refresh and try again" msgstr "Wystąpił problem z połączeniem z Github, proszę odświeżyć i spróbować ponownie" -#: sickbeard/webserve.py:2398 +#: sickbeard/webserve.py:2397 msgid "Could not load changes from the repo. [Click here for CHANGES.md]({changes_url})" msgstr "Nie można załadować zmian z repozytorium. [Kliknij tutaj CHANGES.md]({changes_url})" -#: gui/slick/views/layouts/main.mako:223 sickbeard/webserve.py:2403 +#: gui/slick/views/layouts/main.mako:223 sickbeard/webserve.py:2402 msgid "Changelog" msgstr "Rejestr zmian" -#: gui/slick/views/layouts/main.mako:190 sickbeard/webserve.py:2413 -#: sickbeard/webserve.py:3855 sickbeard/webserve.py:4341 +#: gui/slick/views/layouts/main.mako:190 sickbeard/webserve.py:2412 +#: sickbeard/webserve.py:3826 sickbeard/webserve.py:4312 msgid "Post Processing" msgstr "Przetwarzanie końcowe" -#: gui/slick/views/layouts/main.mako:128 sickbeard/webserve.py:2445 +#: gui/slick/views/layouts/main.mako:128 sickbeard/webserve.py:2444 msgid "Add Shows" msgstr "Dodanie serialu" -#: sickbeard/webserve.py:2510 +#: sickbeard/webserve.py:2509 msgid "No folders selected." msgstr "Nie wybrano folderów." -#: sickbeard/webserve.py:2632 +#: sickbeard/webserve.py:2631 msgid "New Show" msgstr "Nowy program" -#: sickbeard/webserve.py:2647 +#: sickbeard/webserve.py:2646 msgid "Trending Shows" msgstr "Popularne seriale" -#: sickbeard/webserve.py:2649 sickbeard/webserve.py:2772 +#: sickbeard/webserve.py:2648 sickbeard/webserve.py:2771 msgid "Popular Shows" msgstr "Popularne programy" -#: sickbeard/webserve.py:2651 sickbeard/webserve.py:2665 +#: sickbeard/webserve.py:2650 sickbeard/webserve.py:2664 msgid "Most Anticipated Shows" msgstr "Najbardziej oczekiwane seriale" -#: sickbeard/webserve.py:2653 +#: sickbeard/webserve.py:2652 msgid "Most Collected Shows" msgstr "" -#: sickbeard/webserve.py:2655 +#: sickbeard/webserve.py:2654 msgid "Most Watched Shows" msgstr "" -#: sickbeard/webserve.py:2657 +#: sickbeard/webserve.py:2656 msgid "Most Played Shows" msgstr "" -#: sickbeard/webserve.py:2659 +#: sickbeard/webserve.py:2658 msgid "Recommended Shows" msgstr "" -#: gui/slick/views/addShows_trendingShows.mako:60 sickbeard/webserve.py:2661 +#: gui/slick/views/addShows_trendingShows.mako:60 sickbeard/webserve.py:2660 msgid "New Shows" msgstr "Nowe seriale" -#: gui/slick/views/addShows_trendingShows.mako:61 sickbeard/webserve.py:2663 +#: gui/slick/views/addShows_trendingShows.mako:61 sickbeard/webserve.py:2662 msgid "Season Premieres" msgstr "Premiery sezonu" -#: sickbeard/webserve.py:2792 sickbeard/webserve.py:2793 +#: sickbeard/webserve.py:2791 sickbeard/webserve.py:2792 msgid "Existing Show" msgstr "Istniejące programy" -#: sickbeard/webserve.py:2871 +#: sickbeard/webserve.py:2870 msgid "No root directories setup, please go back and add one." msgstr "Brak katalogu głównego, Proszę wrócić i go dodać." -#: sickbeard/webserve.py:2883 sickbeard/webserve.py:3002 +#: sickbeard/webserve.py:2882 sickbeard/webserve.py:3001 msgid "Show added" msgstr "Dodano program" -#: sickbeard/webserve.py:2883 +#: sickbeard/webserve.py:2882 msgid "Adding the specified show {show_name}" msgstr "Dodaje program {show_name}" -#: sickbeard/webserve.py:2924 +#: sickbeard/webserve.py:2923 msgid "Missing params, no Indexer ID or folder: {show_to_add} and {root_dir}/{show_path}" msgstr "Brakujące parametry, brak ID indeksu lub folderu: {show_to_add} i {root_dir}/{show_path}" -#: sickbeard/webserve.py:2933 +#: sickbeard/webserve.py:2932 msgid "Unknown error. Unable to add show due to problem with show selection." msgstr "Nieznany błąd. Nie można dodać serialu ze względu na problem z wyborem serialu." -#: sickbeard/webserve.py:2957 sickbeard/webserve.py:2967 +#: sickbeard/webserve.py:2956 sickbeard/webserve.py:2966 msgid "Unable to add show" msgstr "Nie można dodać programu" -#: sickbeard/webserve.py:2957 +#: sickbeard/webserve.py:2956 msgid "Folder {show_dir} exists already" msgstr "Folder {show_dir} już istnieje" -#: sickbeard/webserve.py:2968 +#: sickbeard/webserve.py:2967 msgid "Unable to create the folder {show_dir}, can't add the show" msgstr "Nie można utworzyć folderu {show_dir}, tym samym nie można dodać programu" -#: sickbeard/webserve.py:3002 +#: sickbeard/webserve.py:3001 msgid "Adding the specified show into {show_dir}" msgstr "Dodaje określony program do {show_dir}" -#: sickbeard/webserve.py:3078 +#: sickbeard/webserve.py:3077 msgid "Shows Added" msgstr "Dodano program" -#: sickbeard/webserve.py:3079 +#: sickbeard/webserve.py:3078 msgid "Automatically added {num_shows} from their existing metadata files" msgstr "Automatycznie dodano {num_shows} z ich istniejących plików metadata" -#: gui/slick/views/layouts/main.mako:153 sickbeard/webserve.py:3096 +#: gui/slick/views/layouts/main.mako:153 sickbeard/webserve.py:3095 msgid "Mass Update" msgstr "Masowa aktualizacja" -#: sickbeard/webserve.py:3134 sickbeard/webserve.py:3161 sickbeard/webserve.py:3237 -#: sickbeard/webserve.py:3238 +#: sickbeard/webserve.py:3133 sickbeard/webserve.py:3160 sickbeard/webserve.py:3236 +#: sickbeard/webserve.py:3237 msgid "Episode Overview" msgstr "Informacje o odcinku" -#: sickbeard/webserve.py:3270 +#: sickbeard/webserve.py:3269 msgid "Missing Subtitles" msgstr "Brak napisów" -#: gui/slick/views/layouts/main.mako:154 sickbeard/webserve.py:3356 -#: sickbeard/webserve.py:3357 +#: gui/slick/views/layouts/main.mako:154 sickbeard/webserve.py:3355 +#: sickbeard/webserve.py:3356 msgid "Backlog Overview" msgstr "Przegląd zaległości" -#: sickbeard/webserve.py:3481 +#: sickbeard/webserve.py:3480 msgid "Mass Edit" msgstr "Masowa edycji" -#: sickbeard/webserve.py:3586 +#: sickbeard/webserve.py:3585 msgid "Unable to update show: {excption_format}" msgstr "Nie można zaktualizować programu: {excption_format}" -#: sickbeard/webserve.py:3594 +#: sickbeard/webserve.py:3593 msgid "Unable to refresh show {show_name}: {excption_format}" msgstr "Nie można odświeżyć programu {show_name}: {excption_format}" -#: sickbeard/webserve.py:3605 +#: sickbeard/webserve.py:3604 msgid "Errors encountered" msgstr "Napotkano błąd" -#: gui/slick/views/config_general.mako:261 sickbeard/webserve.py:3611 +#: gui/slick/views/config_general.mako:261 sickbeard/webserve.py:3610 msgid "Updates" msgstr "Aktualizacje" -#: sickbeard/webserve.py:3616 +#: sickbeard/webserve.py:3615 msgid "Refreshes" msgstr "Odśwież" -#: sickbeard/webserve.py:3621 +#: sickbeard/webserve.py:3620 msgid "Renames" msgstr "Zmień nazwę" #: gui/slick/views/displayShow.mako:260 gui/slick/views/displayShow.mako:435 #: gui/slick/views/editShow.mako:119 gui/slick/views/inc_addShowOptions.mako:20 -#: gui/slick/views/manage_massEdit.mako:262 sickbeard/webserve.py:3626 -#: sickbeard/webserve.py:5244 +#: gui/slick/views/manage_massEdit.mako:262 sickbeard/webserve.py:3625 +#: sickbeard/webserve.py:5215 msgid "Subtitles" msgstr "Napisy" -#: sickbeard/webserve.py:3631 +#: sickbeard/webserve.py:3630 msgid "The following actions were queued" msgstr "Następujące akcje zostały skolejkowane" -#: sickbeard/webserve.py:3651 -msgid "For best results please set the Download Station alias as" -msgstr "Aby uzyskać najlepsze wyniki, należy ustawić alias Download Station jako" - -#: sickbeard/webserve.py:3652 -msgid "You can check this setting in the Synology DSM" -msgstr "Możesz sprawdzić to ustawienie w Synology DSM" - -#: sickbeard/webserve.py:3652 sickbeard/webserve.py:3654 -msgid "Control Panel" -msgstr "Panel zarządzania" - -#: sickbeard/webserve.py:3652 -msgid "Application Portal" -msgstr "Portal aplikacji" - -#: sickbeard/webserve.py:3653 -msgid "Make sure you allow DSM to be embedded with iFrames too in" -msgstr "Upewnij się, że pozwalasz by DSM zostało osadzone w iFrame także w" - -#: sickbeard/webserve.py:3654 -msgid "DSM Settings" -msgstr "Ustawienia DSM" - -#: sickbeard/webserve.py:3654 -msgid "Security" -msgstr "Bezpieczeństwo" - -#: gui/slick/views/layouts/main.mako:167 sickbeard/webserve.py:3662 -msgid "Manage Torrents" -msgstr "Zarządzaj torrentami" - -#: gui/slick/views/layouts/main.mako:170 sickbeard/webserve.py:3683 +#: gui/slick/views/layouts/main.mako:170 sickbeard/webserve.py:3654 msgid "Failed Downloads" msgstr "Nieudane pobrania" -#: gui/slick/views/layouts/main.mako:155 sickbeard/webserve.py:3701 +#: gui/slick/views/layouts/main.mako:155 sickbeard/webserve.py:3672 msgid "Manage Searches" msgstr "Zarządzaj wyszukiwaniem" -#: sickbeard/webserve.py:3709 +#: sickbeard/webserve.py:3680 msgid "Backlog search started" msgstr "Rozpoczęto wyszukiwanie zaległości" -#: sickbeard/webserve.py:3719 +#: sickbeard/webserve.py:3690 msgid "Daily search started" msgstr "Rozpoczęto dzienne wyszukiwanie" -#: sickbeard/webserve.py:3728 +#: sickbeard/webserve.py:3699 msgid "Find propers search started" msgstr "Rozpoczęto wyszukiwanie Proper" -#: sickbeard/webserve.py:3737 +#: sickbeard/webserve.py:3708 msgid "Subtitle search started" msgstr "Rozpoczęto wyszukiwanie napisów" -#: sickbeard/webserve.py:3801 +#: sickbeard/webserve.py:3772 msgid "Remove Selected" msgstr "" -#: sickbeard/webserve.py:3802 +#: sickbeard/webserve.py:3773 msgid "Clear History" msgstr "Wyczyść historię" -#: sickbeard/webserve.py:3803 +#: sickbeard/webserve.py:3774 msgid "Trim History" msgstr "Przytnij historie" -#: sickbeard/webserve.py:3823 +#: sickbeard/webserve.py:3794 msgid "Selected history entries removed" msgstr "" -#: sickbeard/webserve.py:3830 +#: sickbeard/webserve.py:3801 msgid "History cleared" msgstr "Wyczyszczona historia" -#: sickbeard/webserve.py:3837 +#: sickbeard/webserve.py:3808 msgid "Removed history entries older than 30 days" msgstr "Usunięto z historii wpisy starsze niż 30 dni" -#: gui/slick/views/layouts/main.mako:185 sickbeard/webserve.py:3850 +#: gui/slick/views/layouts/main.mako:185 sickbeard/webserve.py:3821 msgid "General" msgstr "Ogólne" -#: sickbeard/webserve.py:3851 sickbeard/webserve.py:4143 +#: sickbeard/webserve.py:3822 sickbeard/webserve.py:4114 msgid "Backup/Restore" msgstr "Kopia zapasowa/przywracanie" -#: gui/slick/views/layouts/main.mako:187 sickbeard/webserve.py:3852 -#: sickbeard/webserve.py:4206 +#: gui/slick/views/layouts/main.mako:187 sickbeard/webserve.py:3823 +#: sickbeard/webserve.py:4177 msgid "Search Settings" msgstr "Ustawienia wyszukiwania" -#: gui/slick/views/layouts/main.mako:188 sickbeard/webserve.py:3853 -#: sickbeard/webserve.py:4518 +#: gui/slick/views/layouts/main.mako:188 sickbeard/webserve.py:3824 +#: sickbeard/webserve.py:4489 msgid "Search Providers" msgstr "Dostawcy wyszukiwania" -#: gui/slick/views/layouts/main.mako:189 sickbeard/webserve.py:3854 +#: gui/slick/views/layouts/main.mako:189 sickbeard/webserve.py:3825 msgid "Subtitles Settings" msgstr "Ustawienia napisów" -#: gui/slick/views/layouts/main.mako:191 sickbeard/webserve.py:3856 -#: sickbeard/webserve.py:4964 +#: gui/slick/views/layouts/main.mako:191 sickbeard/webserve.py:3827 +#: sickbeard/webserve.py:4935 msgid "Notifications" msgstr "Powiadomienia" @@ -1240,142 +1237,142 @@ msgstr "Powiadomienia" #: gui/slick/views/home.mako:35 gui/slick/views/inc_addShowOptions.mako:79 #: gui/slick/views/inc_home_showList.mako:179 gui/slick/views/layouts/main.mako:192 #: gui/slick/views/manage.mako:44 gui/slick/views/manage_massEdit.mako:202 -#: sickbeard/webserve.py:3857 sickbeard/webserve.py:5309 +#: sickbeard/webserve.py:3828 sickbeard/webserve.py:5280 msgid "Anime" msgstr "Anime" -#: sickbeard/webserve.py:3895 sickbeard/webserve.py:3896 +#: sickbeard/webserve.py:3866 sickbeard/webserve.py:3867 msgid "SickRage Configuration" msgstr "Konfiguracja SickRage" -#: sickbeard/webserve.py:3910 +#: sickbeard/webserve.py:3881 msgid "Config - Shares" msgstr "" -#: sickbeard/webserve.py:3910 +#: sickbeard/webserve.py:3881 msgid "Windows Shares Configuration" msgstr "" -#: sickbeard/webserve.py:3937 +#: sickbeard/webserve.py:3908 msgid "Saved Shares" msgstr "" -#: sickbeard/webserve.py:3937 +#: sickbeard/webserve.py:3908 msgid "Your Windows share settings have been saved" msgstr "" -#: sickbeard/webserve.py:3948 +#: sickbeard/webserve.py:3919 msgid "Config - General" msgstr "Konfiguracja - Ogólne" -#: sickbeard/webserve.py:3948 +#: sickbeard/webserve.py:3919 msgid "General Configuration" msgstr "Ogólna konfiguracja" -#: sickbeard/webserve.py:3988 +#: sickbeard/webserve.py:3959 msgid "Saved Defaults" msgstr "" -#: sickbeard/webserve.py:3988 +#: sickbeard/webserve.py:3959 msgid "Your \"add show\" defaults have been set to your current selections." msgstr "" -#: sickbeard/webserve.py:4095 +#: sickbeard/webserve.py:4066 msgid "Unable to create directory {directory}, log directory not changed." msgstr "Nie można utworzyć katalogu {directory}, katalog dziennika nie został zmieniony." -#: sickbeard/webserve.py:4103 +#: sickbeard/webserve.py:4074 msgid "Unable to create directory {directory}, https cert directory not changed." msgstr "Nie można utworzyć katalogu {directory}, nie zmieniono katalogu klucza https." -#: sickbeard/webserve.py:4107 +#: sickbeard/webserve.py:4078 msgid "Unable to create directory {directory}, https key directory not changed." msgstr "Nie można utworzyć katalogu {directory}, klucz https katalogu nie zmieniono." -#: sickbeard/webserve.py:4126 sickbeard/webserve.py:4324 sickbeard/webserve.py:4456 -#: sickbeard/webserve.py:5227 +#: sickbeard/webserve.py:4097 sickbeard/webserve.py:4295 sickbeard/webserve.py:4427 +#: sickbeard/webserve.py:5198 msgid "Error(s) Saving Configuration" msgstr "Błąd przy zapisywaniu konfiguracji" -#: sickbeard/webserve.py:4129 sickbeard/webserve.py:4327 sickbeard/webserve.py:4458 -#: sickbeard/webserve.py:4950 sickbeard/webserve.py:5230 sickbeard/webserve.py:5294 -#: sickbeard/webserve.py:5323 +#: sickbeard/webserve.py:4100 sickbeard/webserve.py:4298 sickbeard/webserve.py:4429 +#: sickbeard/webserve.py:4921 sickbeard/webserve.py:5201 sickbeard/webserve.py:5265 +#: sickbeard/webserve.py:5294 msgid "Configuration Saved" msgstr "Konfiguracja zapisana" -#: sickbeard/webserve.py:4142 +#: sickbeard/webserve.py:4113 msgid "Config - Backup/Restore" msgstr "Konfiguracja - kopia zapasowa/przywracanie" -#: sickbeard/webserve.py:4205 +#: sickbeard/webserve.py:4176 msgid "Config - Episode Search" msgstr "Ustawienia - wyszukiwanie odcinka" -#: sickbeard/webserve.py:4340 +#: sickbeard/webserve.py:4311 msgid "Config - Post Processing" msgstr "Ustawienia - przetwarzanie końcowe" -#: sickbeard/webserve.py:4380 +#: sickbeard/webserve.py:4351 msgid "Unpacking Not Supported, disabling unpack setting" msgstr "Rozpakowanie nie obsługiwane, wyłączanie ustawień rozpakowywania" -#: sickbeard/webserve.py:4431 +#: sickbeard/webserve.py:4402 msgid "You tried saving an invalid normal naming config, not saving your naming settings" msgstr "" -#: sickbeard/webserve.py:4439 +#: sickbeard/webserve.py:4410 msgid "You tried saving an invalid anime naming config, not saving your naming settings" msgstr "Próbowałeś zapisać ustawienia anime niepoprawną nazwą, nie zapiszę twoich ustawień" -#: sickbeard/webserve.py:4517 +#: sickbeard/webserve.py:4488 msgid "Config - Providers" msgstr "Ustawienia - dostawcy" -#: sickbeard/webserve.py:4547 +#: sickbeard/webserve.py:4518 msgid "No Provider Name specified" msgstr "Nie określono nazwy dostawcy" -#: sickbeard/webserve.py:4549 +#: sickbeard/webserve.py:4520 msgid "No Provider Url specified" msgstr "Nie określono Url dostawcy" -#: sickbeard/webserve.py:4551 +#: sickbeard/webserve.py:4522 msgid "No Provider Api key specified" msgstr "Nie określono klucza Api dostawcy" -#: sickbeard/webserve.py:4963 +#: sickbeard/webserve.py:4934 msgid "Config - Notifications" msgstr "Ustawienia - powiadomienia" -#: sickbeard/webserve.py:5243 +#: sickbeard/webserve.py:5214 msgid "Config - Subtitles" msgstr "Ustawienie - napisy" -#: sickbeard/webserve.py:5308 +#: sickbeard/webserve.py:5279 msgid "Config - Anime" msgstr "Ustawienia - Anime" -#: sickbeard/webserve.py:5336 +#: sickbeard/webserve.py:5307 msgid "Clear Errors" msgstr "Wyczyść Błędy" -#: sickbeard/webserve.py:5342 +#: sickbeard/webserve.py:5313 msgid "Clear Warnings" msgstr "Wyczyść Ostrzeżenia" -#: sickbeard/webserve.py:5348 +#: sickbeard/webserve.py:5319 msgid "Submit Errors" msgstr "Zgłoś błędy" -#: sickbeard/webserve.py:5363 +#: sickbeard/webserve.py:5334 msgid "Logs & Errors" msgstr "Dzienniki i błędy" -#: sickbeard/webserve.py:5388 +#: sickbeard/webserve.py:5359 msgid "Log File" msgstr "Plik dziennika" -#: sickbeard/webserve.py:5388 +#: sickbeard/webserve.py:5359 msgid "Logs" msgstr "Dziennik" @@ -1383,30 +1380,166 @@ msgstr "Dziennik" msgid "This is a test notification from SickRage" msgstr "" -#: gui/slick/js/core.js:481 gui/slick/js/core.js:502 gui/slick/js/core.js:524 -#: gui/slick/js/core.js:548 gui/slick/js/core.js:573 gui/slick/js/core.js:596 -#: gui/slick/js/core.js:625 gui/slick/js/core.js:645 gui/slick/js/core.js:690 -#: gui/slick/js/core.js:769 gui/slick/js/core.js:829 gui/slick/js/core.js:849 -#: gui/slick/js/core.js:879 gui/slick/js/core.js:909 gui/slick/js/core.js:969 -#: gui/slick/js/core.js:1046 gui/slick/js/core.js:1066 gui/slick/js/core.js:1085 +#: gui/slick/js/browser.js:6 +msgid "Choose Directory" +msgstr "" + +#: gui/slick/js/core.js:443 +msgid "Select log file folder location" +msgstr "" + +#: gui/slick/js/core.js:445 +msgid "Select CSS file" +msgstr "" + +#: gui/slick/js/core.js:469 +msgid "Select backup folder to save to" +msgstr "" + +#: gui/slick/js/core.js:470 +msgid "Select backup files to restore" +msgstr "" + +#: gui/slick/js/core.js:479 gui/slick/js/core.js:500 gui/slick/js/core.js:522 +#: gui/slick/js/core.js:546 gui/slick/js/core.js:571 gui/slick/js/core.js:594 +#: gui/slick/js/core.js:623 gui/slick/js/core.js:643 gui/slick/js/core.js:688 +#: gui/slick/js/core.js:767 gui/slick/js/core.js:827 gui/slick/js/core.js:847 +#: gui/slick/js/core.js:877 gui/slick/js/core.js:907 gui/slick/js/core.js:967 +#: gui/slick/js/core.js:1044 gui/slick/js/core.js:1064 gui/slick/js/core.js:1083 msgid "Please fill out the necessary fields above." msgstr "" -#: gui/slick/js/core.js:1328 gui/slick/js/core.js:1378 gui/slick/js/core.js:1427 -#: gui/slick/js/core.js:1493 +#: gui/slick/js/core.js:680 +msgid "<b>Step 1:</b> Confirm Authorization" +msgstr "" + +#: gui/slick/js/core.js:977 +msgid "Check blacklist name; the value needs to be a trakt slug" +msgstr "" + +#: gui/slick/js/core.js:1022 +msgid "You must provide a recipient email address!" +msgstr "" + +#: gui/slick/js/core.js:1107 +msgid "You didn't supply a Pushbullet api key" +msgstr "" + +#: gui/slick/js/core.js:1133 gui/slick/js/core.js:1162 +msgid "Don't forget to save your new pushbullet settings." +msgstr "" + +#: gui/slick/js/core.js:1262 +msgid "Select TV Download Directory" +msgstr "" + +#: gui/slick/js/core.js:1263 +msgid "Select Unpack Directory" +msgstr "" + +#: gui/slick/js/core.js:1326 gui/slick/js/core.js:1376 gui/slick/js/core.js:1425 +#: gui/slick/js/core.js:1491 msgid "This pattern is invalid." msgstr "" -#: gui/slick/js/core.js:1336 gui/slick/js/core.js:1386 gui/slick/js/core.js:1435 -#: gui/slick/js/core.js:1501 +#: gui/slick/js/core.js:1334 gui/slick/js/core.js:1384 gui/slick/js/core.js:1433 +#: gui/slick/js/core.js:1499 msgid "This pattern would be invalid without the folders, using it will force \"Season Folders\" on for all shows." msgstr "" -#: gui/slick/js/core.js:1344 gui/slick/js/core.js:1394 gui/slick/js/core.js:1443 -#: gui/slick/js/core.js:1509 +#: gui/slick/js/core.js:1342 gui/slick/js/core.js:1392 gui/slick/js/core.js:1441 +#: gui/slick/js/core.js:1507 msgid "This pattern is valid." msgstr "" +#: gui/slick/js/core.js:1818 +msgid "Select .nzb black hole/watch location" +msgstr "" + +#: gui/slick/js/core.js:1819 +msgid "Select .torrent black hole/watch location" +msgstr "" + +#: gui/slick/js/core.js:1820 +msgid "Select .torrent download location" +msgstr "" + +#: gui/slick/js/core.js:1900 +msgid "Minimum seeding time is" +msgstr "" + +#: gui/slick/js/core.js:1902 +msgid "URL to your uTorrent client (e.g. http://localhost:8000)" +msgstr "" + +#: gui/slick/js/core.js:1905 +msgid "Stop seeding when inactive for" +msgstr "" + +#: gui/slick/js/core.js:1911 +msgid "URL to your Transmission client (e.g. http://localhost:9091)" +msgstr "" + +#: gui/slick/js/core.js:1921 +msgid "URL to your Deluge client (e.g. http://localhost:8112)" +msgstr "" + +#: gui/slick/js/core.js:1930 +msgid "IP or Hostname of your Deluge Daemon (e.g. scgi://localhost:58846)" +msgstr "" + +#: gui/slick/js/core.js:1937 +msgid "URL to your Synology DS client (e.g. http://localhost:5000)" +msgstr "" + +#: gui/slick/js/core.js:1941 +msgid "URL to your rTorrent client (e.g. scgi://localhost:5000 <br> or https://localhost/rutorrent/plugins/httprpc/action.php)" +msgstr "" + +#: gui/slick/js/core.js:1952 +msgid "URL to your qBittorrent client (e.g. http://localhost:8080)" +msgstr "" + +#: gui/slick/js/core.js:1962 +msgid "URL to your MLDonkey (e.g. http://localhost:4080)" +msgstr "" + +#: gui/slick/js/core.js:1974 +msgid "URL to your putio client (e.g. http://localhost:8080)" +msgstr "" + +#: gui/slick/js/core.js:1975 +msgid "<a herf=\"https://app.put.io/oauth/apps/new\" target=\"_blank\"> Create a new OAuth app for put.io</a>" +msgstr "" + +#: gui/slick/js/core.js:1977 +msgid "Put.io Parent Folder" +msgstr "" + +#: gui/slick/js/core.js:1978 +msgid "Put.io OAuth Token" +msgstr "" + +#: gui/slick/js/core.js:3383 gui/slick/views/displayShow.mako:410 +msgid "Show Episodes" +msgstr "Pokaż Odcinki" + +#: gui/slick/js/core.js:3388 gui/slick/views/displayShow.mako:408 +msgid "Hide Episodes" +msgstr "" + +#: gui/slick/js/core.js:3396 +msgid "Select Show Location" +msgstr "" + +#: gui/slick/js/core.js:3460 +msgid "Select Unprocessed Episode Folder" +msgstr "" + +#: gui/slick/js/core.js:3790 +msgid "DELETED" +msgstr "" + #: gui/slick/js/core.js:4082 msgid "Resume updating the log on this page." msgstr "" @@ -1415,6 +1548,26 @@ msgstr "" msgid "Pause updating the log on this page." msgstr "" +#: gui/slick/js/core.js:4323 +msgid "searching {searchingFor}..." +msgstr "" + +#: gui/slick/js/core.js:4334 +msgid "search timed out, try again or try another indexer" +msgstr "" + +#: gui/slick/js/core.js:4503 +msgid "loading folders..." +msgstr "" + +#: gui/slick/js/parsers.js:7 gui/slick/js/parsers.js:8 +#: gui/slick/js/plotTooltip.js:6 gui/slick/js/sceneExceptionsTooltip.js:6 +#: gui/slick/views/inc_home_showList.mako:209 +#: gui/slick/views/inc_home_showList.mako:215 +#: gui/slick/views/inc_home_showList.mako:231 +msgid "Loading..." +msgstr "Trwa ładowanie..." + #: gui/slick/views/404.mako:5 msgid "You have reached this page by accident, please check the url." msgstr "Osiągnięto tę stronę przez przypadek, prosimy o sprawdzenie adresu URL." @@ -5716,14 +5869,6 @@ msgstr "Zmień wybrany odcinek na" msgid "Select Columns" msgstr "Wybierz kolumny" -#: gui/slick/views/displayShow.mako:408 -msgid "Hide Episodes" -msgstr "" - -#: gui/slick/views/displayShow.mako:410 -msgid "Show Episodes" -msgstr "Pokaż Odcinki" - #: gui/slick/views/displayShow.mako:424 msgid "NFO" msgstr "NFO" @@ -6243,12 +6388,6 @@ msgstr "Aktywny" msgid "loading" msgstr "trwa ładowanie" -#: gui/slick/views/inc_home_showList.mako:209 -#: gui/slick/views/inc_home_showList.mako:215 -#: gui/slick/views/inc_home_showList.mako:231 -msgid "Loading..." -msgstr "Trwa ładowanie..." - #: gui/slick/views/inc_qualityChooser.mako:31 msgid "<p><b><u>Preferred</u></b> qualities will replace those in <b><u>allowed</u></b>, even if they are lower.</p>" msgstr "<p><b><u>Preferowane</u></b> jakości zastąpią te z <b><u>dozwolonych</u></b>, nawet jeżeli są niższe.</p>" @@ -6786,6 +6925,10 @@ msgstr "Aktualizuj KODI" msgid "Update Emby" msgstr "Aktualizuj Emby" +#: gui/slick/views/layouts/main.mako:167 +msgid "Manage Torrents" +msgstr "Zarządzaj torrentami" + #: gui/slick/views/layouts/main.mako:173 msgid "Missed Subtitle Management" msgstr "Zarządzanie Nieznalezionymi Napisami" diff --git a/locale/pt_BR/LC_MESSAGES/messages.json b/locale/pt_BR/LC_MESSAGES/messages.json index 6eacae61cd30a238705ef1f85f878d449570a78a..495140b2b44c4cfea7b3b4f3627e33ef794079b8 100644 --- a/locale/pt_BR/LC_MESSAGES/messages.json +++ b/locale/pt_BR/LC_MESSAGES/messages.json @@ -1 +1 @@ -{"messages":{"domain":"messages","locale_data":{"messages":{"100":[null,"100"],"250":[null,"250"],"500":[null,"500"],"":{"domain":"messages","plural_forms":"nplurals=2; plural=(n != 1);","lang":"pt_BR"},"Drama":[null,"Drama"],"Mystery":[null,"Mistério"],"Science-Fiction":[null,"Ficção científica"],"Crime":[null,"Crime"],"Action":[null,"Ação"],"Comedy":[null,"Comédia"],"Thriller":[null,"Suspense"],"Animation":[null,"Animação"],"Family":[null,"Família"],"Fantasy":[null,"Fantasia"],"Adventure":[null,"Aventura"],"Horror":[null,"Terror"],"Film-Noir":[null,"Filme Noir"],"Sci-Fi":[null,"Ficção Científica"],"Romance":[null,"Romance"],"Sport":[null,"Esporte"],"War":[null,"Guerra"],"Biography":[null,"Biografia"],"History":[null,"Histórico"],"Music":[null,"Música"],"Western":[null,"Faroeste"],"News":[null,"Notícias"],"Sitcom":[null,"Seriado"],"Reality-TV":[null,"Reality Show"],"Documentary":[null,"Documentário"],"Game-Show":[null,"Game-Show"],"Musical":[null,"Musical"],"Talk-Show":[null,"Talk Show"],"Started Download":[null,"Download iniciado"],"Download Finished":[null,"Download concluído"],"Subtitle Download Finished":[null,"Download de legenda concluída"],"SickRage Updated":[null,"SickRage atualizado"],"SickRage Updated To Commit#: ":[null,"SickRage atualizado para o commit#: "],"SickRage new login":[null,"Novo Login no Sickrage"],"New login from IP: {0}. http://geomaplookup.net/?ip={0}":[null,"Novo login do Ip: {0}. http://geomaplookup.net/?ip={0}"],"Repeat":[null,"Repetir"],"Repeat (Separated)":[null,"Repetição (separada)"],"Extend":[null,"Estender"],"Extend (Limited)":[null,"Estender (limitado)"],"Extend (Limited, E-prefixed)":[null,"Estender (limitado, E-prefixo)"],"Downloaded":[null,"Baixado"],"Snatched":[null,"Encontrado"],"Snatched (Proper)":[null,"Encontrado (Proper)"],"Failed":[null,"Falhou"],"Snatched (Best)":[null,"Encontrado (Melhor)"],"Archived":[null,"Arquivado"],"Unknown":[null,"Desconhecido"],"Unaired":[null,"Não Exibido"],"Skipped":[null,"Ignorado"],"Wanted":[null,"Procurado"],"Ignored":[null,"Ignorado"],"Subtitled":[null,"Legendado"],"<No Filter>":[null,"< Nenhum filtro >"],"Daily Searcher":[null,"Buscador Diário"],"Backlog":[null,"Pendência"],"Show Updater":[null,"Mostrar atualizações"],"Check Version":[null,"Verifique a versão"],"Show Queue":[null,"Mostrar a fila"],"Search Queue (All)":[null,"Fila de pesquisa (todos)"],"Search Queue (Daily Searcher)":[null,"Fila de pesquisa (pesquisa diária)"],"Search Queue (Backlog)":[null,"Fila de pesquisa (Backlog)"],"Search Queue (Manual)":[null,"Fila de pesquisa (Backlog)"],"Search Queue (Retry/Failed)":[null,"Fila de pesquisa (repetição/falha)"],"Search Queue (RSS)":[null,"Fila de Pesquisa (RSS)"],"Find Propers":[null,"Encontrar mensagens"],"Postprocessor":[null,"Pós-processador"],"Find Subtitles":[null,"Encontrar legendas"],"Trakt Checker":[null,"Verificador de Trakt"],"Event":[null,"Evento"],"Error":[null,"Erro"],"Tornado":[null,"Tornado"],"Thread":[null,"Tópico"],"Main":[null,"Principal"],"Loading":[null,"Carregando"],"New update found for SickRage, starting auto-updater":[null,"Nova atualização do SikRage encontrada, iniciando a atualização automática"],"Update was successful":[null,"A atualização concluída com sucesso"],"Update failed!":[null,"A atualização falhou!"],"Backup":[null,"Backup"],"Config backup in progress...":[null,"Backup das configurações em andamento..."],"Config backup successful, updating...":[null,"Backup das configurações concluído, atualizando..."],"Config backup failed, aborting update":[null,"Backup das configurações falhou, atualização abortada"],"No update needed":[null,"Nenhuma atualização necessária"],"Mako Error":[null,"Erro do Mako"],"Oops":[null,"Opa"],"Wrong API key used":[null,"Chave API errada"],"Login":[null,"Login"],"API Key not generated":[null,"Chave API não gerada"],"API Builder":[null,"Construtor de API"],"Schedule":[null,"Agenda"],"Test 1":[null,"Teste 1"],"This is test number 1":[null,"Este é o teste número 1"],"Test 2":[null,"Teste 2"],"This is test number 2":[null,"Este é o teste número 2"],"You're using the {branch} branch. Please use 'master' unless specifically asked":[null,"Você está usando o \"branch\" {branch}. Por favor, use o 'master', a menos que especificamente solicitado"],"Invalid show parameters":[null,"Parâmetros inválidos para a série"],"Invalid parameters":[null,"Parâmetros inválidos"],"Episode couldn't be retrieved":[null,"Episódio não pôde ser obtido"],"Home":[null,"Página Inicial"],"Show List":[null,"Lista de séries"],"Error: Unsupported Request. Send jsonp request with 'callback' variable in the query string.":[null,"Erro: Pedido não Suportado. Envie um pedido jsonp com a variaável 'callback' na string."],"Success. Connected and authenticated":[null,"Sucesso. Conectado e autenticado"],"Authentication failed. SABnzbd expects":[null,"Falha na Autenticação. SABnzbd espera"],"as authentication method":[null,"método de autenticação"],"Unable to connect to host":[null,"Não é possível conectar ao host"],"SMS sent successfully":[null,"SMS enviado com sucesso"],"Problem sending SMS: {message}":[null,"Problema ao enviar SMS: {message}"],"Telegram notification succeeded. Check your Telegram clients to make sure it worked":[null,"Notificação ao Telegram enviada. Verifique o Telegram para ver se funcionou"],"Error sending Telegram notification: {message}":[null,"Erro enviando notificação ao Telegram: {message}"],"join notification succeeded. Check your join clients to make sure it worked":[null,"notificação de Boxcar2 bem sucedida. Verifique os clientes Boxcar2 para ter certeza que funcionou"],"Error sending join notification: {message}":[null,"Erro ao enviar notificação do Telegram: {message}"]," with password":[null,"com senha"],"Registered and Tested growl successfully {growl_host}":[null,"Growl registrado e testado com sucesso {growl_host}"],"Registration and Testing of growl failed {growl_host}":[null,"Falha no Registro e Teste do Growl {growl_host}"],"Test prowl notice sent successfully":[null,"Aviso de teste prowl enviado com sucesso"],"Test prowl notice failed":[null,"Aviso de teste prowl falhou"],"Boxcar2 notification succeeded. Check your Boxcar2 clients to make sure it worked":[null,"Notificação Boxcar2 enviada com sucesso. Verifique o cliente Boxcar2 para ver se funcionou"],"Error sending Boxcar2 notification":[null,"Erro enviando notificação Boxcar2"],"Pushover notification succeeded. Check your Pushover clients to make sure it worked":[null,"Notificação Pushover enviada com sucesso. Verifique o cliente Pushover para ver se funcionou"],"Error sending Pushover notification":[null,"Erro enviando notificação Pushover"],"Key verification successful":[null,"Verificação da chave com sucesso"],"Unable to verify key":[null,"Impossível verificar a chave"],"Tweet successful, check your twitter to make sure it worked":[null,"Tweet com sucesso, verifique o seu twitter para ver se funcionou"],"Error sending tweet":[null,"Erro ao enviar tweet"],"Please enter a valid account sid":[null,"Por favor digite uma conta sid válida"],"Please enter a valid auth token":[null,"Por favor, insira um código de validação correto"],"Please enter a valid phone sid":[null,"Por favor entre um telefone sid válido"],"Please format the phone number as \"+1-###-###-####\"":[null,"Por favor formatar o número de telefone como \"+ 1-# # #-# # #-# # #\""],"Authorization successful and number ownership verified":[null,"Autorizado com sucesso e número do dono verificado"],"Error sending sms":[null,"Erro ao enviar sms"],"Slack message successful":[null,"Mensagem do Slack enviada com sucesso"],"Slack message failed":[null,"Falha no envio de mensagem do Slack"],"Discord message successful":[null,"Mensagem do Discord enviada com sucesso"],"Discord message failed":[null,"Falha no envio de mensagem do Discord"],"Test KODI notice sent successfully to {kodi_host}":[null,"Aviso de teste enviado ao KODI com êxito para {kodi_host}"],"Test KODI notice failed to {kodi_host}":[null,"Aviso de teste do KODI falhou ao ser enviado para {kodi_host}"],"Successful test notice sent to Plex Home Theater ... {plex_clients}":[null,"Aviso de teste enviado com sucesso ao Plex Home Theater ... {plex_clients}"],"Test failed for Plex Home Theater ... {plex_clients}":[null,"Falha teste para o Plex Home Theater ... {plex_clients}"],"Tested Plex Home Theater(s)":[null,"Plex Home Theater(s) testado"],"Successful test of Plex Media Server(s) ... {plex_servers}":[null,"Plex Home Theater(s) testados com sucesso ... {plex_servers}"],"Test failed, No Plex Media Server host specified":[null,"Teste falhou. Não foi especificado um servidor Plex"],"Test failed for Plex Media Server(s) ... {plex_servers}":[null,"Falha no teste do Plex Media Server... {plex_servers}"],"Tested Plex Media Server host(s)":[null,"Teste completo para o(s) host(s) do Servidor Plex"],"Tried sending desktop notification via libnotify":[null,"Tentativa de envio notificação desktop via libnotify"],"Test notice sent successfully to {emby_host}":[null,"Aviso de teste enviado com êxito para {emby_host}"],"Test notice failed to {emby_host}":[null,"Falha no aviso de teste para {emby_host}"],"Successfully started the scan update":[null,"Iniciada com sucesso a atualização de varredura"],"Test failed to start the scan update":[null,"Falha ao iniciar atualização de varredura"],"Test notice sent successfully to {nmj2_host}":[null,"Aviso de teste enviado com sucesso para {nmj2_host}"],"Test notice failed to {nmj2_host}":[null,"Aviso de teste falhou para {nmj2_host}"],"Trakt Authorized":[null,"Trakt Autorizado"],"Trakt Not Authorized!":[null,"Trakt Não Autorizado!"],"Test email sent successfully! Check inbox.":[null,"E-mail de teste enviado com sucesso! Verifique a caixa de entrada."],"ERROR: {last_error}":[null,"ERRO: {last_error}"],"Test NMA notice sent successfully":[null,"Aviso de teste NMA enviado com sucesso"],"Test NMA notice failed":[null,"Falha no envio de teste NMA"],"Pushalot notification succeeded. Check your Pushalot clients to make sure it worked":[null,"Notificação Pushalot enviada com sucesso. Verifique o cliente Pushalot para ver se funcionou"],"Error sending Pushalot notification":[null,"Erro ao enviar notificação Pushalot"],"Pushbullet notification succeeded. Check your device to make sure it worked":[null,"Notificação de Pushbullet bem sucedida. Verificar seu dispositivo para ter certeza que funcionou"],"Error sending Pushbullet notification":[null,"Erro ao enviar notificação de Pushbullet"],"Status":[null,"Status"],"Restarting SickRage":[null,"Reiniciando o SickRage"],"Update Failed":[null,"Falha na Atualização"],"Update wasn't successful, not restarting. Check your log for more information.":[null,"Atualização falhou, não reiniciar. Verifique os registros para obter mais informações."],"Checking out branch":[null,"Verificando versão"],"Already on branch":[null,"Última versão instalada"],"Invalid show ID: {show}":[null,"ID da série inválida: {show}"],"Show not in show list":[null,"Série não encontrada na lista"],"Edit":[null,"Editar"],"This show is in the process of being downloaded - the info below is incomplete.":[null,"Esta serie está em processo de download - as informações abaixo estão incompletas."],"The information on this page is in the process of being updated.":[null,"A informação nesta página está sendo atualizada."],"The episodes below are currently being refreshed from disk":[null,"Os episódios abaixo estão atualmente sendo atualizados no disco"],"Currently downloading subtitles for this show":[null,"Neste momento estão sendo baixados legendas para esta serie"],"This show is queued to be refreshed.":[null,"Esta série está na fila para ser atualizado."],"This show is queued and awaiting an update.":[null,"Essa série esta na fila e aguardando uma atualização."],"This show is queued and awaiting subtitles download.":[null,"Essa série esta na fila e aguardando legendas para download."],"Resume":[null,"Continuar"],"Pause":[null,"Pausar"],"Remove":[null,"Remover"],"Re-scan files":[null,"Re-escanear Arquivos"],"Force Full Update":[null,"Forçar a atualização completa"],"Update show in KODI":[null,"Atualizar série no KODI"],"Update show in Emby":[null,"Atualizar Série no Emby"],"Hide specials":[null,"Ocultar especiais"],"Show specials":[null,"Mostrar especiais"],"Preview Rename":[null,"Prever renomeação"],"Download Subtitles":[null,"Baixar legendas"],"No scene exceptions":[null,"Sem exceções da \"Scene\""],"Invalid show ID":[null,"ID da série inválida"],"Unable to find the specified show":[null,"Não é possível encontrar a série especificada"],"Unable to retreive Fansub Groups from AniDB.":[null,"Não é possível recuperar grupos de \"Fansubs\" do AniDB."],"Edit Show":[null,"Editar Série"],"Unable to refresh this show: {error}":[null,"Não foi possível atualizar a série: {error}"],"New location <tt>{location}</tt> does not exist":[null,"Não existe a nova localização <tt>{location}</tt>"],"Unable to update show: {error}":[null,"Não foi possível atualizar a série: {error}"],"Unable to force an update on scene exceptions of the show.":[null,"Não é possível forçar uma atualização das exceções da \"Scene\" do seriado."],"Unable to force an update on scene numbering of the show.":[null,"Não é possível forçar uma atualização das numerações da \"Scene\" do seriado."],"{num_errors:d} error{plural} while saving changes:":[null,"{num_errors:d} erro{plural} ao gravar as alterações:"],"{show_name} has been {paused_resumed}":[null,"{show_name} foi {paused_resumed}"],"resumed":[null,"reiniciado"],"paused":[null,"em pausa"],"{show_name} has been {deleted_trashed} {was_deleted}":[null,"{show_name} foi {deleted_trashed} {was_deleted}"],"deleted":[null,"excluído"],"trashed":[null,"eliminado"],"(media untouched)":[null,"(mídia não tocada)"],"(with all related media)":[null,"(com tudo relacionado a mídia)"],"Unable to refresh this show.":[null,"Não foi possível atualizar este seriado."],"Unable to update this show.":[null,"Não foi possível atualizar este seriado."],"Library update command sent to KODI host(s)): {kodi_hosts}":[null,"Comando de atualização de biblioteca enviado para KODI host(s)): {kodi_hosts}"],"Unable to contact one or more KODI host(s)): {kodi_hosts}":[null,"Não é possível conectar com um ou mais host(s)) KODI: {kodi_hosts}"],"Library update command sent to Plex Media Server host: {plex_server}":[null,"Comando de atualização de biblioteca enviado para Plex Media Server host: {plex_server}"],"Unable to contact Plex Media Server host: {plex_server}":[null,"Não é possível conectar ao Plex Media Server host: {plex_server}"],"Library update command sent to Emby host: {emby_host}":[null,"Comando de atualização de biblioteca enviado para Emby host: {emby_host}"],"Unable to contact Emby host: {emby_host}":[null,"Não é possível conectar Emby host: {emby_host}"],"You must specify a show and at least one episode":[null,"Você deve especificar um Seriado de pelo menos um episódio"],"Invalid status":[null,"Status inválido"],"Backlog was automatically started for the following seasons of <b>{show_name}</b>":[null,"Lista de pendências foi iniciada automaticamente para os seguintes seriados de <b>{show_name}</b>"],"Season":[null,"Temporada"],"Backlog started":[null,"Lista de pendências foi iniciada"],"Retrying Search was automatically started for the following season of <b>{show_name}</b>":[null,"Nova tentativa de pesquisa foi iniciado automaticamente para a temporada seguinte de <b>{show_name}</b>"],"Retry Search started":[null,"Nova tentativa de busca iniciada"],"You must specify a show":[null,"Você deve especificar uma série"],"Can't rename episodes when the show dir is missing.":[null,"Não é possível renomear episódios quando o diretório do seriado dir está faltando."],"New subtitles downloaded: {new_subtitle_languages}":[null,"Novas Legendas baixadas: {new_subtitle_languages}"],"No subtitles downloaded":[null,"Nenhuma legenda baixada"],"IRC":[null,"IRC"],"Could not load news from the repo. [Click here for news.md])({news_url})":[null,"Não foi possível carregar as notícias do repo. [Clique aqui para news.md]) ({news_url})"],"The was a problem connecting to github, please refresh and try again":[null,"Ouve um problema na conexão com o github, por favor atualize e tente novamente"],"Could not load changes from the repo. [Click here for CHANGES.md]({changes_url})":[null,"Não foi possível carregar alterações do repo. [Clique aqui para CHANGES.md] ({changes_url})"],"Changelog":[null,"Registro de alterações"],"Post Processing":[null,"Pós-processamento"],"Add Shows":[null,"Adicionar séries"],"No folders selected.":[null,"Nenhuma pasta selecionada."],"New Show":[null,"Nova Série"],"Trending Shows":[null,"Séries em alta"],"Popular Shows":[null,"Séries populares"],"Most Anticipated Shows":[null,"Séries mais aguardados aguardadas"],"Most Collected Shows":[null,"Séries mais baixadas"],"Most Watched Shows":[null,"Séries mais assistidas"],"Most Played Shows":[null,"Séries mais vistas"],"Recommended Shows":[null,"Séries recomendadas"],"New Shows":[null,"Novas séries"],"Season Premieres":[null,"Temporada de estréia"],"Existing Show":[null,"Show existente"],"No root directories setup, please go back and add one.":[null,"Nenhum diretório raiz de instalação, por favor volte e adiciona um."],"Show added":[null,"Série adicionada"],"Adding the specified show {show_name}":[null,"Adicionando a série especificada {show_name}"],"Missing params, no Indexer ID or folder: {show_to_add} and {root_dir}/{show_path}":[null,"Faltando parâmetros, nenhum ID de indexador ou pasta: {show_to_add} e {root_dir}/{show_path}"],"Unknown error. Unable to add show due to problem with show selection.":[null,"Erro desconhecido. Não é possível adicionar a série devido a um problema com a série escolhida."],"Unable to add show":[null,"Não é possível adicionar série"],"Folder {show_dir} exists already":[null,"Diretório {show_dir} já existe"],"Unable to create the folder {show_dir}, can't add the show":[null,"Não foi possível criar a pasta {show_dir}, série não adicionada"],"Adding the specified show into {show_dir}":[null,"Adicionando a série especificada em {show_dir}"],"Shows Added":[null,"Séries adicionadas"],"Automatically added {num_shows} from their existing metadata files":[null,"Adicionado automaticamente {num_shows} de seus arquivos de metadados existentes"],"Mass Update":[null,"Atualização em massa"],"Episode Overview":[null,"Visão geral do episódio"],"Missing Subtitles":[null,"Legendas em falta"],"Backlog Overview":[null,"Visão geral de dependências"],"Mass Edit":[null,"Editor em massa"],"Unable to update show: {excption_format}":[null,"Não é possível atualizar a série: {excption_format}"],"Unable to refresh show {show_name}: {excption_format}":[null,"Não é possível atualizar o seriado {show_name}: {excption_format}"],"Errors encountered":[null,"Erros encontrados"],"Updates":[null,"Atualizações"],"Refreshes":[null,"Atualizações"],"Renames":[null,"Renomeações"],"Subtitles":[null,"Legendas"],"The following actions were queued":[null,"As seguintes ações foram adicionadas à fila"],"For best results please set the Download Station alias as":[null,"Para obter melhores resultados, por favor, configurar o alias da estação de Download como"],"You can check this setting in the Synology DSM":[null,"Você pode verificar essa configuração no DSM Synology"],"Control Panel":[null,"Painel de Controle"],"Application Portal":[null,"Portal da aplicação"],"Make sure you allow DSM to be embedded with iFrames too in":[null,"Certifique-se de permitir que o DSM seja incorporado com iFrames também em"],"DSM Settings":[null,"Configurações do DSM"],"Security":[null,"Segurança"],"Manage Torrents":[null,"Gerenciar Torrents"],"Failed Downloads":[null,"Downloads Falhados"],"Manage Searches":[null,"Gerenciar as buscas"],"Backlog search started":[null,"Início de pesquisa de lista de dependências"],"Daily search started":[null,"Iniciado a busca diária"],"Find propers search started":[null,"Pesquisa iniciada"],"Subtitle search started":[null,"Pesquisa de legendas iniciada"],"Remove Selected":[null,"Remover selecionados"],"Clear History":[null,"Limpar histórico"],"Trim History":[null,"Encurtar histórico"],"Selected history entries removed":[null,"Os dados do histórico selecionados foram removidos"],"History cleared":[null,"Histórico apagado"],"Removed history entries older than 30 days":[null,"Remover entradas do histórico mais antigas do que 30 dias"],"General":[null,"Geral"],"Backup/Restore":[null,"Backup/Restaurar"],"Search Settings":[null,"Configurações de pesquisa"],"Search Providers":[null,"Provedores de pesquisa"],"Subtitles Settings":[null,"Configurações de legendas"],"Notifications":[null,"Notificações"],"Anime":[null,"Anime"],"SickRage Configuration":[null,"Configuração do SickRage"],"Config - Shares":[null,""],"Windows Shares Configuration":[null,""],"Saved Shares":[null,""],"Your Windows share settings have been saved":[null,""],"Config - General":[null,"Configuração - geral"],"General Configuration":[null,"Configuração geral"],"Saved Defaults":[null,"Padrões salvos"],"Your \"add show\" defaults have been set to your current selections.":[null,"Os padrões de \"adicionar série\" foram definidos para suas seleções atuais."],"Unable to create directory {directory}, log directory not changed.":[null,"Não é possível criar o diretório {directory}, diretório de log não alterado."],"Unable to create directory {directory}, https cert directory not changed.":[null,"Não é possível criar o diretório {directory}, o diretório da chave https não foi mudado."],"Unable to create directory {directory}, https key directory not changed.":[null,"Não é possível criar o diretório {directory}, o diretório da chave https não foi mudado."],"Error(s) Saving Configuration":[null,"Erro (s) a guardar a configuração"],"Configuration Saved":[null,"Configuração salva"],"Config - Backup/Restore":[null,"Config - Backup/Restaurar"],"Config - Episode Search":[null,"Config - Busca de episódios"],"Config - Post Processing":[null,"Config - pós-processamento"],"Unpacking Not Supported, disabling unpack setting":[null,"Descompactação não suportado, desabilitando configuração de descompactar"],"You tried saving an invalid normal naming config, not saving your naming settings":[null,"Você tentou salvar uma configuração de nomeação inválida, suas configurações de nomeação não foram salvas"],"You tried saving an invalid anime naming config, not saving your naming settings":[null,"Você tentou salvar um arquivo de configuração de nomeação de anime inválido, Suas configurações não serão salvas"],"Config - Providers":[null,"Config - Provedores"],"No Provider Name specified":[null,"Nenhum nome de provedor especificado"],"No Provider Url specified":[null,"Nenhuma URL de provedor especificado"],"No Provider Api key specified":[null,"Nenhuma chave Api para o provedor especificado"],"Config - Notifications":[null,"Config - notificações"],"Config - Subtitles":[null,"Config - legendas"],"Config - Anime":[null,"Config - Anime"],"Clear Errors":[null,"Limpar erros"],"Clear Warnings":[null,"Limpar avisos"],"Submit Errors":[null,"Enviar erros"],"Logs & Errors":[null,"Logs & erros"],"Log File":[null,"Arquivo de log"],"Logs":[null,"Logs"],"This is a test notification from SickRage":[null,"Esta é uma notificação de teste do SickRage"],"Please fill out the necessary fields above.":[null,""],"This pattern is invalid.":[null,"Esse padrão é inválido."],"This pattern would be invalid without the folders, using it will force \"Season Folders\" on for all shows.":[null,"Esse padrão seria inválido sem as pastas, usá-lo irá forçar \"pastas de Temporadas\" para todos as séries."],"This pattern is valid.":[null,"Este padrão é válido."],"Resume updating the log on this page.":[null,"Retomar a atualização do log nessa página."],"Pause updating the log on this page.":[null,"Pausar a atualização do log nessa página."],"You have reached this page by accident, please check the url.":[null,"Chegou a esta página por acidente, por favor, verifique o url."],"A mako error has occured.<br>\n If this happened during an update a simple page refresh may be the solution.<br>\n Mako errors that happen during updates may be a one time error if there were significant ui changes.":[null,"Ocorreu um erro de \"Mako\". <br>\nSe isto aconteceu durante uma atualização, atualizar a página deve solucionar. <br>\nOs erros de \"Mako\" que ocorrem durante as atualizações podem ser uma ocorrência sozinha se houve mudanças significativas na interface do usuário."],"Show/Hide Error":[null,"Mostrar/ocultar erro"],"Add New Show":[null,"Adicionar um novo seriado"],"For shows that you haven't downloaded yet, this option finds a show on theTVDB.com, creates a directory for it's episodes, and adds it to SickRage.":[null,"Para séries ainda não transferidas, esta opção encontra uma série no theTVDB.com, cria a pasta para seus episódios, e adiciona-a ao SickRage."],"Add From Trakt Lists":[null,"Adicionar de uma lista do Trakt"],"For shows that you haven't downloaded yet, this option lets you choose from a show from one of the Trakt lists to add to SickRage.":[null,"Para séries ainda não transferidas, essa opção deixa você escolher um programa da lista do Trakt e adiciona ao SickRage."],"Add From IMDB's Popular Shows":[null,"Adicionar a partir das séries populares do IMDb"],"View IMDB's list of the most popular shows. This feature uses IMDB's MOVIEMeter algorithm to identify popular TV Series.":[null,"Ver lista das séries mais populares do IMDB. Esse recurso usa algoritmo MOVIEMeter do IMDB para identificar séries de TV popularares."],"Add Existing Shows":[null,"Adicionar séries existentes"],"Use this option to add shows that already have a folder created on your hard drive. SickRage will scan your existing metadata/episodes and add the show accordingly.":[null,"Use esta opção para adicionar séries que já possuem uma pasta criada no seu disco rígido. O SickRage irá verificar os seus metadados/episódios existentes e adicionara a série de acordo."],"Add Existing Show":[null,"Adicionar série existente"],"Manage Directories":[null,"Gerenciar diretórios"],"Customize Options":[null,"Personalização"],"SickRage can add existing shows, using the current options, by using locally stored NFO/XML metadata to eliminate user interaction. If you would rather have SickRage prompt you to customize each show, then use the checkbox below.":[null,"SickRage pode adicionar séries existentes, usando as opções atuais, usando metadados NFO/XML armazenados localmente para eliminar a interação do usuário. Se você prefere que o SickRage lhe pergunte para personalizar cada série, marque a caixa de dialogo seguinte."],"Prompt me to set settings for each show":[null,"Pedir-me para definir as configurações para cada seriado"],"Displaying folders within these directories which aren't already added to SickRage":[null,"Exibindo pastas dentro desses diretórios que ainda não estão adicionados ao SickRage"],"Submit":[null,"Confirmar"],"Find a show on theTVDB":[null,"Encontrar um seriado no theTVDB"],"Show retrieved from existing metadata":[null,"Série recuperada apartir do metadado existente"],"All Indexers":[null,"Todos os indexadores"],"Search":[null,"Procurar"],"This will only affect the language of the retrieved metadata file contents and episode filenames.":[null,"Isto apenas afetará o idioma do conteúdo do arquivo de metadados e nomes de episódios obtidos."],"This <b>DOES NOT</b> allow SickRage to download non-english TV episodes!":[null,"Isto <b>Não permite</b> o SickRage transferir episódios que não estejam em inglês!"],"Pick the parent folder":[null,"Escolher a pasta mãe"],"Pre-chosen Destination Folder":[null,"Pasta de destino previamente escolhida"],"Customize options":[null,"Personalização"],"Add Show":[null,"Adicionar série"],"Skip Show":[null,"Ignorar seriado"],"Sort By":[null,"Ordenar por"],"Name":[null,"Nome"],"Original":[null,"Original"],"Votes":[null,"Votos"],"Rating":[null,"Classificações"],"Rating > Votes":[null,"Classificação > votos"],"Sort Order":[null,"Ordem de classificação"],"Asc":[null,"Asc"],"Desc":[null,"Desc"],"Fetching of IMDB Data failed. Are you online?":[null,"A busca de dados do IMDB falhou. Está online?"],"Exception":[null,"Exceção"],"Select Trakt List":[null,"Selecione a lista do Trakt"],"Most Anticipated":[null,"Mais antecipadas"],"Trending":[null,"Tendência"],"Popular":[null,"Popular"],"Most Watched":[null,"Mais assistidas"],"Most Played":[null,"Mais reproduzidas"],"Most Collected":[null,"Maioria coletados"],"Recommended":[null,"Recomendadas"],"Toggle navigation":[null,"Ativar/desativar navegação"],"Profile":[null,"Perfil"],"JSONP":[null,"JSONP"],"Back to SickRage":[null,"Voltar para o SickRage"],"Parameters":[null,"Parâmetros"],"Required":[null,"Obrigatário"],"Description":[null,"Descrição"],"Type":[null,"Tipo"],"Default value":[null,"Valor Padrão"],"Allowed values":[null,"Valores permitidos"],"Playground":[null,"Playground"],"Clear":[null,"Apagar"],"Yes":[null,"Sim"],"No":[null,"Não"],"season":[null,"temporada"],"episode":[null,"episódio"],"Python Version":[null,"Versão do Python"],"SSL Version":[null,"Versão SSL"],"OS":[null,"Sistema operacional"],"Locale":[null,"Idioma"],"User":[null,"Usuário"],"Program Folder":[null,"Pasta da série"],"Config File":[null,"Arquivo de configuração"],"Database File":[null,"Arquivo da base de dados"],"Cache Folder":[null,"Pasta de cache"],"Log Folder":[null,"Pasta do \"log\""],"Arguments":[null,"Argumentos"],"Web Root":[null,"Web Root"],"Website":[null,"Site"],"Wiki":[null,"Wiki"],"Source":[null,"Fonte"],"IRC Chat":[null,"Chat IRC"],"AnimeDB Settings":[null,"Configurações do AnimeDB"],"Look & Feel":[null,"Aparência"],"AniDB is non-profit database of anime information that is freely open to the public":[null,"AniDB uma base de dados sem fins lucrativos de informações de anime que é aberta ao público"],"Enable":[null,"Habilitar"],"should SickRage use data from AniDB?":[null,"o SickRage deve usar dados do AniDB?"],"AniDB Username":[null,"Nome de usuário da AniDB"],"username of your AniDB account":[null,"usuário da sua conta do AniDB"],"AniDB Password":[null,"Senha da AniDB"],"password of your AniDB account":[null,"senha da sua conta do AniDB"],"AniDB MyList":[null,"AniDB MyList"],"do you want to add the PostProcessed episodes to the MyList?":[null,"você quer adicionar os episódios pós-processados para o \"MyList\"?"],"Look and Feel":[null,"Aparência"],"How should the anime functions show and behave.":[null,"Como as funções do anime devem se comportar e ser exibidas."],"Split show lists":[null,"Separar séries em listas"],"separate anime and normal shows in groups":[null,"separar anime e séries em grupos diferentes"],"Split in tabs":[null,"Dividido em abas"],"use tabs for when splitting show lists":[null,"usar as abas para dividir as listas de séries"],"Restore":[null,"Restaurar"],"Backup your main database file and config.":[null,"Fazer backup do seu arquivo de base de dados principal e configurações."],"Select the folder you wish to save your backup file to":[null,"Selecione a pasta que você deseja salvar seu arquivo de backup"],"Restore your main database file and config.":[null,"Restaurar seu arquivo de banco de dados e configuração."],"Select the backup file you wish to restore":[null,"Selecione o arquivo de backup que você deseja restaurar"],"Misc":[null,"Diversos"],"Interface":[null,"Interface"],"Advanced Settings":[null,"Configurações avançadas"],"Startup options. Indexer options. Log and show file locations.":[null,"Opções de inicialização. Opções de indexador. Locais de arquivo de log e série."],"Some options may require a manual restart to take effect.":[null,"Algumas opções podem requerer uma reinicialização manual para terem efeito."],"Default Indexer Language":[null,"Idioma de indexador padrão"],"for adding shows and metadata providers":[null,"para adicionar séries e provedores de metadados"],"Launch browser":[null,"Iniciar navegador"],"open the SickRage home page on startup":[null,"abrir a página inicial do SickRage na inicialização"],"Initial page":[null,"Página inicial"],"Shows":[null,"Séries"],"when launching SickRage interface":[null,"ao iniciar a interface do SickRage"],"Choose hour to update shows":[null,"Escolher a hora que deseja atualizar as séries"],"with information such as next air dates, show ended, etc. Use 15 for 3pm, 4 for 4am etc.":[null,"com informações como datas de próxima exibição, show terminado, etc. Use 15 para 3pm, 4 para 4am etc."],"note":[null,"nota"],"minutes are randomized each time SickRage is started":[null,"os minutos são randomizados cada vez que SickRage é iniciado"],"Send to trash for actions":[null,"Enviar para o lixo por ações"],"when using show \"Remove\" and delete files":[null,"quando se usa \"Excluir\" de uma série e excluir arquivos"],"on scheduled deletes of the oldest log files":[null,"em atualizações programadas dos arquivos de log mais antigos"],"selected actions use trash (recycle bin) instead of the default permanent delete":[null,"acções seleccionadas usar lixo (lixeira) em vez do padrão permanente de exclusão"],"Log file folder location":[null,"Local de pasta de arquivo de log"],"Number of Log files saved":[null,"Número de arquivos de Log salvos"],"number of log files saved when rotating logs (default: 5) (REQUIRES RESTART)":[null,"número de arquivos de log, salvados quando os logs de giro (padrão: 5) (requer reinicialização)"],"Size of Log files saved":[null,"Tamanho dos arquivos de Log salvos"],"maximum size in MB of the log file (default: 1MB) (REQUIRES RESTART)":[null,"tamanho máximo em MB do arquivo de log (padrão: 1MB) (REQUER REINICIALIZAÇÃO)"],"Use initial indexer set to":[null,"Indexador inicial de uso definido predefenido"],"as the default selection when adding new shows":[null,"como a seleção padrão ao adicionar novas séries"],"Timeout show indexer at":[null,"Valor de \"Time Out\" do indexador"],"seconds of inactivity when finding new shows (default:20)":[null,"segundos de inatividade quando encontrar novas séries (padrão: 20)"],"Show root directories":[null,"Diretórios raiz do Seriado"],"where the files of shows are located":[null,"onde se encontram os arquivos dos seriados"],"Save Changes":[null,"Salvar alterações"],"Options for software updates.":[null,"Opções para atualizações de software."],"Check software updates":[null,"Procurar por atualizações"],"and display notifications when updates are available. Checks are run on startup and at the frequency set below*":[null,"e exibir notificações quando as atualizações estiverem disponíveis. Verificações são executados na inicialização e na frequência definida abaixo*"],"Automatically update":[null,"Atualizar automaticamente"],"fetch and install software updates. Updates are run on startup and in the background at the frequency set below*":[null,"buscar e instalar atualizações de software. Atualizações são executadas na inicialização e em segundo plano na frequência definida abaixo*"],"Check the server every*":[null,"Verifique o servidor a cada*"],"hours for software updates (default:1)":[null,"horas para procurar atualizações de software (padrão: 1)"],"Notify on software update":[null,"Notificar sobre a atualização de software"],"send a message to all enabled notifiers when SickRage has been updated":[null,"enviar uma mensagem para todos os notificadores habilitados quando SickRage foi atualizado"],"User Interface":[null,"Interface de usuário"],"Options for visual appearance.":[null,"Opções para aparência visual."],"Interface Language":[null,"Idioma da Interface"],"System Language":[null,"Idioma do sistema"],"for appearance to take effect, save then refresh your browser":[null,"para que a aparência seja efetivada, salvar e em seguida, atualize seu navegador"],"Display theme":[null,"Tema"],"Dark":[null,"Escuro"],"Light":[null,"Claro"],"Use a background image":[null,"Usar uma imagem de fundo"],"use a custom image as background for SickRage":[null,"usar uma imagem personalizada como plano de fundo do SickRage"],"Background Path":[null,"Diretório do plano de fundo"],"Path to the background image":[null,"Diretório para a imagem de plano de fundo"],"Show fanart in the background":[null,"Fanart do seriado no fundo"],"on the show summary page":[null,"na página de resumo do seriado"],"Fanart transparency":[null,"Transparência da FanArt"],"transparency of the fanart in the background":[null,"transparência da arte no plano de fundo"],"Use a custom stylesheet file":[null,""],"use a custom .css file to style SickRage (for advanced users)":[null,""],"Stylesheet File Path":[null,""],"Path to the stylesheet (.css) file":[null,""],"Show all seasons":[null,"Mostrar todas as temporadas"],"Sort with \"The\", \"A\", \"An\"":[null,"Ordenar usando \"The\", \"A\", \"An\""],"include articles (\"The\", \"A\", \"An\") when sorting show lists":[null,"incluir (\"The\", \"A\", \"An\") quando ordenar as listas de séries"],"Missed episodes range":[null,"Gama de episódios perdidos"],"set the range in days of the missed episodes in the Schedule page":[null,"definir o intervalo em dias dos episódios perdidos na Agenda"],"Display fuzzy dates":[null,"Exibir datas difusos"],"move absolute dates into tooltips and display e.g. \"Last Thu\", \"On Tue\"":[null,"mover datas absolutas em dicas de ferramentas e exibir, por exemplo, \"última quinta-feira\", \"Na terça-feira\""],"Trim zero padding":[null,"Apagar espaços"],"remove the leading number \"0\" shown on hour of day, and date of month":[null,"remover o número \"0\" à mostrada na hora do dia e data de mês"],"Date style":[null,"Estilo da data"],"Use System Default":[null,"Usar padrão do sistema"],"Time style":[null,"Estilo do tempo"],"seconds are only shown on the History page":[null,"segundos são mostrado apenas na página de Histórico"],"Timezone":[null,"Fuso horário"],"Local":[null,"Local"],"Network":[null,"Emissora"],"display dates and times in either your timezone or the shows network timezone":[null,"exibir datas e horas em seu fuso horário ou o fuso de horário da rede"],"use local timezone to start searching for episodes minutes after show ends (depends on your dailysearch frequency)":[null,"usar o fuso horário local para começar a procurar episódios minutos após o programa terminar (depende de sua frequência de busca diária)"],"Download url":[null,"URL de Download"],"URL where the shows can be downloaded.":[null,"URL onde as séries podem ser baixadas."],"Web Interface":[null,"Interface Web"],"it is recommended that you enable a username and password to secure SickRage from being tampered with remotely.":[null,"é recomendável que você habilite um usuário e senha para proteger o SickRage de ser alterado remotamente."],"these options require a manual restart to take effect.":[null,"essas opções são necessárias para que uma reinicialização manual seja realizada."],"API key":[null,"Chave de API"],"used to give 3rd party programs limited access to SickRage":[null,"usado por programas de terceiros para acesso limitado ao SickRage"],"you can try all the features of the API":[null,"você pode tentar todos os recursos da API"],"here":[null,"aqui"],"HTTP logs":[null,"Logs de HTTP"],"enable logs from the internal Tornado web server":[null,"ativar logs do servidor de web interno do Tornado"],"HTTP username":[null,"Usuário HTTP"],"set blank for no login":[null,"deixe em branco se não quiser login"],"HTTP password":[null,"Senha HTTP"],"blank = no authentication":[null,"em branco = sem autenticação"],"HTTP port":[null,"Porta HTTP"],"web port to browse and access SickRage (default:8081)":[null,"porta Web para navegar e acessar SickRage (padrão: 8081)"],"Notify on login":[null,"Notificar no login"],"enable to be notified when a new login happens in webserver":[null,"marque se quiser ser notificado quando ocorrer um novo login"],"Listen on IPv6":[null,"Habilitar IPv6"],"attempt binding to any available IPv6 address":[null,"tentativa de ligação para qualquer endereço IPv6 disponível"],"Enable HTTPS":[null,"Habilitar HTTPS"],"enable access to the web interface using a HTTPS address":[null,"permitir acesso à interface web utilizando um endereço HTTPS"],"HTTPS certificate":[null,"Certificado HTTPS"],"file name or path to HTTPS certificate":[null,"nome do arquivo ou caminho do certificado HTTPS"],"HTTPS key":[null,"Chave HTTPS"],"file name or path to HTTPS key":[null,"nome do arquivo ou caminho para chave HTTPS"],"Reverse proxy headers":[null,"Cabeçalhos de proxy reverso"],"accept the following reverse proxy headers (advanced)...":[null,"aceitar os seguintes cabeçalhos de proxy reverso (avançados)..."],"(X-Forwarded-For, X-Forwarded-Host, and X-Forwarded-Proto)":[null,""],"CPU throttling":[null,"Otimização de CPU"],"Normal (default). High is lower and Low is higher CPU use":[null,"Normal (padrão). Alto é maior e Baixo é menor uso de CPU"],"Anonymous redirect":[null,"Redirecionamento anônimo"],"backlink protection via anonymizer service, must end in \"?\"":[null,"proteção de backlink via serviço anonymizer, deve terminar em \"?\""],"Enable debug":[null,"Ativar debug"],"enable debug logs":[null,"ativar logs de debug"],"Verify SSL Certs":[null,"Verificar os certificados SSL"],"verify SSL Certificates (Disable this for broken SSL installs (Like QNAP))":[null,"verificar certificados SSL (desativar isso em instalações SSL não funcionais (como no QNAP))"],"No Restart":[null,"Sem reinicialização"],"only shutdown when restarting SR":[null,"só desligar quando reiniciar o SR"],"only select this when you have external software restarting SR automatically when it stops (like FireDaemon)":[null,"apenas selecione isso se você tiver um software externo reinicializando SR automaticamente quando ele parar (como FireDaemon)"],"Encrypt passwords":[null,"Criptografar senhas"],"in the <code>config.ini</code> file":[null,"no arquivo <code>config.ini</code>"],"warning":[null,"aviso"],"passwords must only contain":[null,"senhas devem conter somente"],"ASCII characters":[null,"Caracteres ASCII"],"Unprotected calendar":[null,"Calendário desprotegido"],"allow subscribing to the calendar without user and password":[null,"permitir o acesso ao calendário sem usuário e senha"],"some services like Google Calendar only work this way":[null,"alguns serviços como o Calendário da Google funcionam dessa maneira"],"Google Calendar Icons":[null,"Ícones do Calendário Google"],"show an icon next to exported calendar events in Google Calendar":[null,"mostrar um ícone ao lado dos eventos exportados do calendário no Calendário Google"],"Proxy host":[null,"Servidor proxy"],"blank to disable or proxy to use when connecting to providers":[null,"em branco para desabilitar ou proxy para usar ao se conectar a provedores"],"also use global proxy setting for indexers (tvdb, xem, anidb, etc.)":[null,"adicionalmente usar configurações de proxy global para indexadores (tvdb, xem, anidb, etc.)"],"Skip Remove Detection":[null,"Pular detecção de removidos"],"skip detection of removed files":[null,"ignorar a detecção de arquivos deletados"],"if disabled the episode will be set to the default deleted status":[null,"se desativado os episódios serão selecionados por padrão como deletados"],"Default deleted episode status":[null,"Status padrão de episódios excluídos"],"define the status to be set for media file that has been deleted.":[null,"seleciona o status a ser definido como o arquivo de mídia que foi excluído."],"Archived option will keep previous downloaded quality":[null,"A opção Arquivado manterá a qualidade transferida anteriormente"],"example: Downloaded (1080p WEB-DL) ==> Archived (1080p WEB-DL)":[null,"exemplo: Baixado (1080p WEB-DL) ==> Arquivado (1080p WEB-DL)"],"Options for github related features.":[null,"Opções relacionadas ao github."],"Branch version":[null,"Versão do Branch"],"error: No branches found.":[null,"Erro: Nenhum Branch encontrado."],"select branch to use (restart required)":[null,"selecione o Branch para usar (é necessário reiniciar)"],"Authorization Type":[null,"Tipo da Autorização"],"Username and password":[null,"Usuário e senha"],"Personal access token":[null,"Token de acesso de pessoal"],"You must use a personal access token if you're using \"two-factor authentication\" on GitHub.":[null,"Você deve usar um código token de acesso pessoal se você estiver utilizando a autentificação de dois fatores no GitHub."],"GitHub username":[null,"Usuário GitHub"],"*** (REQUIRED FOR SUBMITTING ISSUES) ***":[null,"*** (NECESSÁRIO PARA SUBMETER ERROS) ***"],"GitHub password":[null,"Senha do GitHub"],"GitHub personal access token":[null,"Código token de acesso pessoal do GitHub"],"Generate Token":[null,"Criar Token"],"Manage Tokens":[null,"Gerenciar Tokens"],"GitHub remote for branch":[null,"GitHub remoto para branch"],"access repo configured remotes (save then refresh browser)":[null,"acesso remoto de repositório de cofigurado (salve e em seguida atualize o navegador)"],"default":[null,"padrão"],"origin":[null,"origin"],"Git executable path":[null,"Caminho do executável Git"],"only needed if OS is unable to locate git from env":[null,"somente necessário se o sistema operacional não localizar o git do env"],"Git reset":[null,"Git reset"],"removes untracked files and performs a hard reset on git branch automatically to help resolve update issues":[null,"remover arquivos não rastreados e executa um hard reset no git automaticamente para ajudar a resolver problemas de atualização"],"Home Theater / NAS":[null,"Home Theater / NAS"],"Devices":[null,"Dispositivos"],"Social":[null,"Social"],"A free and open source cross-platform media center and home entertainment system software with a 10-foot user interface designed for the living-room TV.":[null,"Um sistema multi-plataforma de mídia e entretenimento doméstico de código livre e com interface de usuário designada para a sua sala de TV."],"send KODI commands?":[null,"Enviar comandos para o KODI?"],"Always on":[null,"Sempre ligado"],"log errors when unreachable?":[null,"registrar erros quando inacessível?"],"Notify on snatch":[null,"Notificar no \"Snatch\""],"send a notification when a download starts?":[null,"enviar uma notificação quando um download começar?"],"Notify on download":[null,"Notificar no download"],"send a notification when a download finishes?":[null,"enviar uma notificação quando um download termina?"],"Notify on subtitle download":[null,"Notificar quando baixar a legenda"],"send a notification when subtitles are downloaded?":[null,"enviar uma notificação quando legendas forem baixadas?"],"Update library":[null,"Atualizar a biblioteca"],"update KODI library when a download finishes?":[null,"atualizar a biblioteca KODI quando termina um download?"],"Full library update":[null,"Atualização completa da biblioteca"],"perform a full library update if update per-show fails?":[null,"atualizar toda a biblioteca se a atualização da serie falhar?"],"Only update first host":[null,"Só atualizar o primeiro host"],"only send library updates to the first active host?":[null,"só enviar atualizações de biblioteca para o primeiro host ativo?"],"KODI IP:Port":[null,"KODI IP:Porta"],"host running KODI (eg. 192.168.1.100:8080)":[null,"servidor executando o KODI (ex: 192.168.1.100:8080)"],"(multiple host strings must be separated by commas)":[null,"(várias cadeias de caracteres do host devem ser separadas por vírgulas)"],"Username":[null,"Usuário"],"username for your KODI server (blank for none)":[null,"nome de usuário para seu servidor KODI (em branco para nenhum)"],"Password":[null,"Senha"],"password for your KODI server (blank for none)":[null,"senha para seu servidor KODI (em branco para nenhuma)"],"Click below to test.":[null,"Clique abaixo para testar."],"Experience your media on a visually stunning, easy to use interface on your Mac connected to your TV. Your media library has never looked this good!":[null,"Experimente a sua mídia em uma interface visualmente impressionante e fácil de usar no seu PC conectado à sua TV. Sua biblioteca de mídia nunca pareceu tão boa!"],"For sending notifications to Plex Home Theater (PHT) clients, use the KODI notifier with port <b>3005</b>.":[null,"Para enviar notificações para clientes Plex Home Theater (PHT), use o notificador KODI com porta <b>3005</b>."],"send Plex Media Server library updates?":[null,"Enviar atualizações de biblioteca ao Plex Media Server?"],"Plex Media Server Auth Token":[null,"Token de autenticação para Plex Media Server"],"auth token used by Plex":[null,"token de autentificação usado por Plex"],"Update Library":[null,"Atualizar a biblioteca"],"update Plex Media Server library when a download finishes":[null,"atualizar a biblioteca Plex Media Server quando termina o download"],"Plex Media Server IP:Port":[null,"Plex Media Server IP:Porta"],"one or more hosts running Plex Media Server<br/>(eg. 192.168.1.1:32400, 192.168.1.2:32400)":[null,"um ou mais hosts executando o Plex Media Server<br/>(exemplo: 192.168.1.1:32400, 192.168.1.2:32400)"],"HTTPS":[null,"HTTPS"],"use https for plex media server requests?":[null,"usar https para solicitações de servidor de mídia plex?"],"Click below to test Plex Media Server(s)":[null,"Clique abaixo para testar o Plex Media Server(s)"],"Test Plex Media Server":[null,"Testar Plex Media Server"],"Plex Home Theater":[null,"Plex Home Theater"],"send Plex Home Theater notifications?":[null,"enviar notificações para o Home Theater Plex?"],"Plex Home Theater IP:Port":[null,"Plex Home Theater IP:Porta"],"one or more hosts running Plex Home Theater<br>(eg. 192.168.1.100:3000, 192.168.1.101:3000)":[null,"um ou mais hosts executando o Plex Home Theater <br>(por exemplo,. 192.168.1.100:3000, 192.168.1.101:3000)"],"Click below to test Plex Home Theater(s)":[null,"Clique abaixo para testar o Plex Home Theater(s)"],"Test Plex Home Theater":[null,"Testar Plex Home Theater"],"some Plex Home Theaters <b class=\"boldest\">do not</b> support notifications e.g. Plexapp for Samsung TVs":[null,"alguns Home Theaters Plex <b class=\"boldest\"> não </b> suportam notificações, por exemplo Plexapp para TVs Samsung"],"Emby":[null,"Emby"],"A home media server built using other popular open source technologies.":[null,"Um servidor doméstico de mídia construído usando outras tecnologias populares de código-fonte aberto."],"send update commands to Emby?":[null,"enviar comandos de atualização para o Emby?"],"Emby IP:Port":[null,"Emby IP:Porta"],"host running Emby (eg. 192.168.1.100:8096)":[null,"host a executar Emby (ex: 192.168.1.100:8096)"],"Emby API Key":[null,"Chave de API do Emby"],"Networked Media Jukebox":[null,"Media Jukebox em rede"],"The Networked Media Jukebox, or NMJ, is the official media jukebox interface made available for the Popcorn Hour 200-series.":[null,"Networked Media Jukebox, o MNJ, é a interface de jukebox de meios de comunicação oficiais disponibilizada para o Popcorn Hour 200-série."],"send update commands to NMJ?":[null,"enviar comandos de atualização para NMJ?"],"Popcorn IP address":[null,"Endereço IP do Popcorn"],"IP address of Popcorn 200-series (eg. 192.168.1.100)":[null,"Endereço IP da Popcorn 200-series (eg. 192.168.1.100)"],"Get settings":[null,"Obter configurações"],"Get Settings":[null,"Obter configurações"],"the Popcorn Hour device must be powered on and NMJ running.":[null,"o dispositivo conectado deve ter Popcorn Hour e NMJ também deve estar em funcionamento."],"NMJ database":[null,"Base de dados NMJ"],"automatically filled via the 'Get Settings' button.":[null,"preenchida automaticamente através do botão 'Obter configurações'."],"NMJ mount url":[null,"MNJ montagem de url"],"Networked Media Jukebox v2":[null,"Rede Jukebox v2"],"The Networked Media Jukebox, or NMJv2, is the official media jukebox interface made available for the Popcorn Hour 300 & 400-series.":[null,"Networked Media Jukebox, o MNJ, é a interface de jukebox de meios de comunicação oficiais disponibilizada para o Popcorn Hour 200-série."],"send update commands to NMJv2?":[null,"enviar comandos de atualização para NMJv2?"],"IP address of Popcorn 300/400-series (eg. 192.168.1.100)":[null,"Endereço IP do Popcorn 300/400-series (eg. 192.168.1.100)"],"Database location":[null,"Localização da base de dados"],"Database instance":[null,"Uso do Banco de Dados"],"adjust this value if the wrong database is selected.":[null,"ajuste esse valor, se for selecionado o banco de dados errado."],"Find database":[null,"Encontrar a base de dados"],"Find Database":[null,"Encontrar a base de dados"],"the Popcorn Hour device must be powered on.":[null,"o dispositivo Popcorn Hour deve ser ligado e está funcionando com o Mnj."],"NMJv2 database":[null,"Base de dados NMJv2"],"automatically filled via the 'Find Database' buttons.":[null,"preenchida automaticamente através do botão 'Obter configurações'."],"Synology":[null,"Synology"],"The Synology DiskStation NAS.":[null,"A Synology DiskStation NAS."],"Synology Indexer is the daemon running on the Synology NAS to build its media database.":[null,"Synology indexador é o daemon rodando sobre o Synology para construir sua base de dados de mídia."],"send Synology notifications?":[null,"Enviar notificações Synology?"],"requires SickRage to be running on your Synology NAS.":[null,"requer que seu SickRage seja executado no NAS Synology."],"Synology Indexer":[null,"Synology indexador"],"Synology Notifier is the notification system of Synology DSM":[null,"Synology notificador é o sistema de notificação de Synology DSM"],"send notifications to the Synology Notifier?":[null,"Enviar notificações para o notificador Synology?"],"pyTivo":[null,"pyTivo"],"pyTivo is both an HMO and GoBack server. This notifier will load the completed downloads to your Tivo.":[null,"pyTivo é o servidor de um HMO e o GoBack. Este notificador carregará os downloads concluídos para seu Tivo."],"send notifications to pyTivo?":[null,"Enviar notificações para o pyTivo?"],"requires the downloaded files to be accessible by pyTivo.":[null,"requer os arquivos baixados para ser acessar pelo pyTivo."],"pyTivo IP:Port":[null,"pyTivo IP:Porta"],"host running pyTivo (eg. 192.168.1.1:9032)":[null,"servidor executando pyTivo (ex. 192.168.1.1:9032)"],"pyTivo share name":[null,"pyTivo nome do compartilhamento"],"value used in pyTivo Web Configuration to name the share.":[null,"valor usado no pyTivo Web configuração para nomear o compartilhamento."],"Tivo name":[null,"Nome do TiVo"],"(Messages & Settings > Account & System Information > System Information > DVR name)":[null,"(Mensagens & configurações > conta & sistema informações > sistema informações > nome DVR)"],"Growl":[null,"Growl"],"A cross-platform unobtrusive global notification system.":[null,"Um sistema de notificação global discreto e de multi-plantaforma."],"send Growl notifications?":[null,"Enviar notificações Growl?"],"Growl IP:Port":[null,"Growl IP:Porta"],"host running Growl (eg. 192.168.1.100:23053)":[null,"servidor executando Growl (ex. 192.168.1.100:23053)"],"may leave blank if SickRage is on the same host.":[null,"pode deixar em branco se SickRage está no mesmo host."],"otherwise Growl <b>requires</b> a password to be used.":[null,"caso contrário, Growl <b>requer</b> uma senha a ser usada."],"Click below to register and test Growl, this is required for Growl notifications to work.":[null,"Clique abaixo para cadastrar e testar o Growl, isso é necessário para as notificações do Growl funcionarem."],"Register Growl":[null,"Registrar o Growl"],"Prowl":[null,"Prowl"],"A Growl client for iOS.":[null,"Cliente Growl para iOS."],"send Prowl notifications?":[null,"Enviar notificações Prowl?"],"Prowl Message Title":[null,"Título da mensagem Prowl"],"Global Prowl API key(s)":[null,"Chave de API Prowl global (s)"],"Prowl API(s) listed here, separated by commas if applicable, will<br> receive notifications for <b>all</b> shows. Your Prowl API key is available at:":[null,"Espreita API(s) listados aqui, separados por vírgulas, se for o caso, serão <br>receber notificações para <b>todos os</b> shows. Sua chave de API Prowl está disponível em:"],"(this field may be blank except when testing.)":[null,"(este campo ficar em branco, exceto quando estiver sendo testado.)"],"Show notification list":[null,"Mostrar a lista de notificação"],"-- Select a Show --":[null,"-- Selecione uma Série --"],"Configure per-show notifications here by entering Prowl API key(s), separated by commas, '\n 'after selecting a show in the drop-down box. Be sure to activate the 'Save for this show' '\n 'button below after each entry.":[null,"Configurar notificações por série aqui digitando a chave de API Prowl (s), separando por vírgulas, ' \n ' após selecionar uma série na caixa suspensa. Não se esqueça de ativar o 'salvar para esta série' ' \n ' botão abaixo após cada entrada."],"Save for this show":[null,"Salver para esta série"],"Prowl priority":[null,"Prioridade do Prowl"],"Very Low":[null,"Muito baixo"],"Moderate":[null,"Moderado"],"Normal":[null,"Normal"],"High":[null,"Alto"],"Emergency":[null,"Emergência"],"priority of Prowl messages from SickRage.":[null,"prioridade de mensagens de Prowl para o SickRage."],"Libnotify":[null,"Libnotify"],"The standard desktop notification API for Linux/*nix systems. This notifier will only function if the pynotify module is installed (Ubuntu/Debian package <a href=\"apt:python-notify\">python-notify</a>).":[null,"A notificação de área de trabalho padrão API para Linux / * nix sistemas. Este notificador somente funcionará se o módulo pynotify estiver instalado (Debian/Ubuntu pacote <a href=\"apt:python-notify\"> python-notify</a>)."],"send Libnotify notifications?":[null,"Enviar notificações Libnotify?"],"Pushover":[null,"Pushover"],"Pushover makes it easy to send real-time notifications to your Android and iOS devices.":[null,"Pushover torna mais fácil o enviar de notificações em tempo real para seus dispositivos iOS e Android."],"send Pushover notifications?":[null,"Enviar notificações Pushhover?"],"Pushover key":[null,"Chave Pushover"],"user key of your Pushover account":[null,"chave da Api de sua conta Pushbullet"],"Pushover API key":[null,"Chave API Pushover"],"click here":[null,""]," to create a Pushover API key":[null,""],"Pushover devices":[null,"Dispositivos Pushover"],"comma separated list of pushover devices you want to send notifications to":[null,"vírgula separados a lista de dispositivos de pushover para enviar notificações para"],"Pushover notification sound":[null,"Som de notificação do Pushover"],"Bike":[null,"Bicicleta"],"Bugle":[null,"Bugle"],"Cash Register":[null,"Caixa registradora"],"Classical":[null,"Clássica"],"Cosmic":[null,"Cósmica"],"Falling":[null,"Caindo"],"Gamelan":[null,"Gamelan"],"Incoming":[null,"Entrando"],"Intermission":[null,"Intervalo"],"Magic":[null,"Magia"],"Mechanical":[null,"Mecânico"],"Piano Bar":[null,"Piano Bar"],"Siren":[null,"Sirene"],"Space Alarm":[null,"Space alarm"],"Tug Boat":[null,"Tug Boat"],"Alien Alarm (long)":[null,"Alarme alienígena (longo)"],"Climb (long)":[null,"Subir (longo)"],"Persistent (long)":[null,"Persistente (longo)"],"Pushover Echo (long)":[null,"Pushover Echo (long)"],"Up Down (long)":[null,"Cima para baixo (longo)"],"None (silent)":[null,"Nenhum (silêncio)"],"Device specific":[null,"Dispositivo específico"],"choose notification sound to use":[null,"Escolher o som de notificação para usar"],"Pushover priority":[null,"Prioridade Pushover"],"Choose priority to use":[null,"Escolher a prioridade para usar"],"Boxcar 2":[null,"Boxcar 2"],"Read your messages where and when you want them!":[null,"Leia suas mensagens onde e quando quiser!"],"send Boxcar notifications?":[null,"Enviar notificações BoxCar?"],"Boxcar2 access token":[null,"Token de acesso a Boxcar2"],"access token for your Boxcar account.":[null,"token de acesso para sua conta Boxcar."],"NMA":[null,"NMA"],"Notify My Android":[null,"Notify My Android"],"Notify My Android is a Prowl-like Android App and API that offers an easy way to send notifications from your application directly to your Android device.":[null,"Notify My Android é uma applicação Android e API como o Prowl, que oferece uma maneira fácil para enviar notificações de seu aplicativo diretamente para seu dispositivo Android."],"send NMA notifications?":[null,"Enviar notificações NMA?"],"NMA API key":[null,"Chave API do NMA"],"(multiple keys must be separated by commas, up to a maximum of 5)":[null,"(várias teclas devem ser separadas por vírgulas, até um máximo de 5)"],"NMA priority":[null,"Prioridade NMA"],"priority of NMA messages from SickRage.":[null,"prioridade de mensagens NMA do SickRage."],"Pushalot":[null,"Pushalot"],"Pushalot is a platform for receiving custom push notifications to connected devices running Windows Phone or Windows 8.":[null,"Pushalot é uma plataforma para receber notificações de push personalizada para dispositivos conectados, rodando Windows Phone ou Windows 8."],"send Pushalot notifications ?":[null,"Enviar notificações Pushalot?"],"Pushalot authorization token":[null,"Token de autorização Pushalot"],"authorization token of your Pushalot account.":[null,"token de autorização da sua conta Pushalot."],"Pushbullet":[null,"Pushbullet"],"Pushbullet is a platform for receiving custom push notifications to connected devices running Android/iOS and desktop browsers such as Chrome, Firefox or Opera.":[null,"Pushbullet é uma plataforma para receber notificações de push personalizada para dispositivos que rodam Android/iOS, e navegadores para desktop, como o Chrome, Firefox ou Opera."],"send Pushbullet notifications?":[null,"Enviar notificações Pushbullet?"],"Pushbullet API key":[null,"Chave da API Pushbullet"],"API key of your Pushbullet account":[null,"Chave da API de sua conta Pushbullet"],"Pushbullet devices":[null,"Dispositivos de Pushbullet"],"Update device list":[null,"Atualização da lista de dispositivos"],"Pushbullet channels":[null,"Canais de Pushbullet"],"Free Mobile":[null,"Free Mobile"],"Free Mobile is a famous French cellular network provider.<br> It provides to their customer a free SMS API.":[null,"Free Mobile é um provedor de rede francês famoso.<br>Fornece aos seus clientes um API de SMS gratuito."],"send SMS notifications?":[null,"Enviar notificações por SMS?"],"send a SMS when a download starts?":[null,"enviar um SMS quando iniciar um download?"],"send a SMS when a download finishes?":[null,"enviar um SMS quando um download terminar?"],"send a SMS when subtitles are downloaded?":[null,"envie um SMS quando uma legendas for baixada?"],"Free Mobile customer ID":[null,"ID de usuário Free Mobile"],"it's your Free Mobile customer ID (8 digits)":[null,"É o seu ID de cliente Free Mobile (8 dígitos)"],"Free Mobile API key":[null,"Chave de API Free Mobile"],"find your API key in your customer portal.":[null,"Encontre sua chave de API no seu portal do cliente."],"Click below to test your settings.":[null,"Clique abaixo para testar suas configurações."],"Telegram":[null,"Telegram"],"Telegram is a cloud-based instant messaging service.":[null,"Telegram é um serviço de mensagens instantâneas baseado na nuvem."],"send Telegram notifications?":[null,"Enviar notificações do Telegram?"],"send a message when a download starts?":[null,"Enviar uma mensagem quando um download começar?"],"send a message when a download finishes?":[null,"Enviar uma mensagem quando um download terminar?"],"send a message when subtitles are downloaded?":[null,"enviar uma mensagem quando as legendas forem baixadas?"],"User/group ID":[null,"ID de usuário/grupo"],"contact @myidbot on Telegram to get an ID":[null,"entre em contato com @myidbot pelo Telegram para obter um ID"],"Bot API token":[null,"Token de API do bot"],"contact @BotFather on Telegram to set up one":[null,"entre em contato com @BotFather através Telegram para configurar uma"],"Join":[null,"Join"],"Join all of your devices together!":[null,"Join, todos os seus dispositivos juntos!"],"send Join notifications?":[null,"Enviar notificações ao Join?"],"Device ID":[null,"ID do dispositivo"],"per device specific id":[null,"ID específico por dispositivo"]," to create a Join API key":[null,""],"Twilio":[null,"Twilio"],"Twilio is a webservice API that allows you to communicate directly with a mobile number. This notifier will send a text directly to your mobile device.":[null,"Twilio é um API de webservice que permite a você se comunicar diretamente com um número de celular. Este notificador, enviará um texto diretamente para seu dispositivo móvel."],"should SickRage text your mobile device?":[null,"o SickRage pode enviar uma mensagem para o seu celular?"],"Twilio Account SID":[null,""],"account SID of your Twilio account.":[null,""],"Twilio Auth Token":[null,"Token de autenticação Twilio"],"Twilio Phone SID":[null,""],"phone SID that you would like to send the sms from":[null,""],"Your phone number":[null,"Seu número de telefone"],"phone number that will receive the sms. Please use the format +1-###-###-####":[null,""],"Twitter":[null,"Twitter"],"A social networking and microblogging service, enabling its users to send and read other users' messages called tweets.":[null,"Uma rede social e serviço de microblogging, permitindo a seus usuários enviar e ler mensagens de outros usuários chamados tweets."],"should SickRage post tweets on Twitter?":[null,"o SickRage deve postar tweets no Twitter?"],"you may want to use a secondary account.":[null,"você pode querer usar uma conta secundária."],"send direct message":[null,"enviar mensagem direta"],"send a notification via Direct Message, not via status update":[null,"enviar uma notificação via mensagem direta, não através de atualização de status"],"send DM to":[null,"enviar DM para"],"Twitter account to send Direct Messages to (must follow you)":[null,"A conta Twitter para qual enviar mensagens diretas (Tem de segui-lo)"],"Step One":[null,"Primeiro passo"],"Request Authorization":[null,"Solicitar autorização"],"Click the \"Request Authorization\" button.<br> This will open a new page containing an auth key.<br> <b>note:</b> if nothing happens check your popup blocker.":[null,"Clique no botão \"Solicitar autorização\". <br>Isto irá abrir uma nova página que contém uma chave de autenticação. <br><b>Nota:</b> se não acontecer nada, verifique o seu bloqueador de pop-ups."],"Step Two":[null,"Segundo Passo"],"Enter the key Twitter gave you below, and click \"Verify Key\".":[null,"Insira a chave do Twitter abaixo e clique em \"Verificar chave\"."],"Trakt":[null,"Trakt"],"Trakt helps keep a record of what TV shows and movies you are watching. Based on your favorites, Trakt recommends additional shows and movies you'll enjoy!":[null,""],"send Trakt.tv notifications?":[null,""],"username of your Trakt account.":[null,"nome de usuário de sua conta Trakt."],"Trakt PIN":[null,"PIN do Trakt"],"Get Trakt PIN":[null,"Obter Trakt PIN"],"PIN code to authorize SickRage to access Trakt on your behalf.":[null,"Código PIN para autorizar o SickRage a acessar Trakt em seu nome."],"API Timeout":[null,"Tempo limite do API"],"seconds to wait for Trakt API to respond. (Use 0 to wait forever)":[null,""],"Default indexer":[null,"Indexador padrão"],"Sync libraries":[null,"Sincronizar as bibliotecas"],"sync your SickRage show library with your trakt show library.":[null,"sincronize sua biblioteca do SickRage com a sua biblioteca que mostrar o trakt."],"Remove Episodes From Collection":[null,"Remover episódios da coleção"],"remove an episode from your Trakt Collection if it is not in your SickRage Library.":[null,""],"Sync watchlist":[null,"Sincronizar a lista de desejos"],"sync your SickRage show watchlist with your trakt show watchlist (either Show and Episode).":[null,"sincronize sua lista de desejos do SickRage com a sua lista do trakt (série e episódio)."],"episode will be added on watch list when wanted or snatched and will be removed when downloaded ":[null,""],"Watchlist add method":[null,"Método de adicionar a lista de desejos"],"Skip All":[null,"Ignorar todos"],"Download Pilot Only":[null,"Transferir apenas o Ep. Piloto"],"Get whole show":[null,"Obter a série inteira"],"method in which to download episodes for new shows.":[null,"método baixar episódios para novas séries."],"Remove episode":[null,"Remover o episódio"],"remove an episode from your watchlist after it is downloaded.":[null,"remova o episódio da sua lista de desejos depois de baixado"],"Remove series":[null,"Remover a série"],"remove the whole series from your watchlist after any download.":[null,"remova toda a série da sua lista de desejos após qualquer download."],"Remove watched show":[null,"Remover série assistida"],"remove the show from sickrage if it's ended and completely watched":[null,"remover a série do sickrage, se ele estiver terminado e assistido completamente"],"Start paused":[null,"Iniciar pausado"],"shows grabbed from your trakt watchlist start paused.":[null,"mostra que pegou da sua lista de procura trakt começa em pausa."],"Trakt blackList name":[null,"Nome da lista negra do Trakt"],"name (slug) of list on Trakt for blacklisting show on 'Add Trending Show' & 'Add Recommended Shows' pages":[null,""],"Email":[null,"Endereço de e-mail"],"Allows configuration of email notifications on a per show basis.":[null,"Permite a configuração de notificações de e-mail com base em uma série."],"send email notifications?":[null,""],"SMTP host":[null,"Host SMTP"],"hostname of your SMTP email server.":[null,"nome do host do seu servidor de email SMTP."],"SMTP port":[null,"Porta SMTP"],"port number used to connect to your SMTP host.":[null,"número da porta usada para conexão com seu host de SMTP."],"SMTP from":[null,"SMTP de"],"sender email address, some hosts require a real address.":[null,"endereço de e-mail do remetente, alguns hosts exigem um endereço real."],"Use TLS":[null,"Usar TLS"],"check to use TLS encryption.":[null,"seleção para usar criptografia TLS."],"SMTP user":[null,"Usuário do SMTP"],"(optional) your SMTP server username.":[null,"(opcional) seu nome de usuário do servidor SMTP."],"SMTP password":[null,"Senha de SMTP"],"(optional) your SMTP server password.":[null,"(opcional) sua senha do servidor SMTP."],"Global email list":[null,"Lista de e-mail global"],"email addresses listed here, separated by commas if applicable, will<br> receive notifications for <b>all</b> shows.":[null,""],"(This field may be blank except when testing.)":[null,"(Neste campo ficar em branco, exceto quando for um testes.)"],"Email Subject":[null,"Assunto do Email"],"use a custom subject for some privacy protection?":[null,""],"(leave blank for the default SickRage subject)":[null,""],"configure per-show notifications here by entering email address(es), separated by commas,":[null,""],"after selecting a show in the drop-down box. Be sure to activate the 'Save for this show'":[null,"depois de selecionar uma série na caixa suspensa. Não se esqueça de ativar o 'salvar para esta série'"],"button below after each entry.":[null,"botão abaixo depois de cada entrada."],"Slack":[null,"Slack"],"Slack brings all your communication together in one place. It's real-time messaging, archiving and search for modern teams.":[null,"Slack reúne toda a sua comunicação em um só lugar. Mensageiro em tempo real."],"should SickRage post messages on Slack?":[null,""],"Slack Incoming Webhook":[null,""],"Discord":[null,"Discord"],"All-in-one voice and text chat for gamers that's free, secure, and works on both your desktop and phone.":[null,""],"Should SickRage post messages on Discord?":[null,""],"Discord Incoming Webhook":[null,""],"Create webhook under channel settings.":[null,""],"Discord Bot Name":[null,""],"Blank will use webhook default Name.":[null,""],"Discord Avatar URL":[null,"URL do avatar Discord"],"Blank will use webhook default Avatar.":[null,""],"Discord TTS":[null,""],"Send notifications using text-to-speech":[null,""],"Post-Processing":[null,"Pós-processamento"],"Episode Naming":[null,"Renomear Episódio"],"Metadata":[null,"Metadados"],"Settings that dictate how SickRage should process completed downloads.":[null,"Configurações que determinam como o SickRage deve processar transferências concluídas."],"enable the automatic post processor to scan and process any files in your Post Processing Dir":[null,""],"do not use if you use an external Post Processing script":[null,""],"Post Processing Dir":[null,"Diretório de Pós-processamento"],"the folder where your download client puts the completed TV downloads.":[null,""],"please use seperate downloading and completed folders in your download client if possible.":[null,""],"Processing Method":[null,"Método de processamento"],"what method should be used to put files into the library?":[null,""],"if you keep seeding torrents after they finish, please avoid the 'move' processing method to prevent errors.":[null,""],"Auto Post-Processing Frequency":[null,"Frequência de pós-processamento"],"time in minutes to check for new files to auto post-process (min 10)":[null,""],"Postpone post processing":[null,"Adiar o pós-processamento"],"wait to process a folder if sync files are present.":[null,""],"Sync File Extensions":[null,"Extensões de arquivos Sync"],"comma seperated list of extensions or filename globs SickRage ignores when Post Processing":[null,"lista de extensões ou arquivos globs separados por vírgula para o SickRage ignorar no pós-processamento"],"Rename Episodes":[null,"Renomear episódios"],"rename episode using the Episode Naming settings?":[null,""],"Create missing show directories":[null,"Criar diretórios para as séries que estão faltando"],"create missing show directories when they get deleted":[null,""],"Add shows without directory":[null,"Adicionar séries sem diretório"],"add shows without creating a directory (not recommended)":[null,""],"Move associated files":[null,"Mover arquivos associados"],"move associated (srt/srr/sfv/etc) files while post processing?":[null,""],"Rename .nfo file":[null,"Renomear o arquivo .nfo"],"rename the original .nfo file to .nfo-orig to avoid conflicts?":[null,"renomear o arquivo .nfo original para .nfo-orig para evitar conflitos?"],"Associated file extensions":[null,"Extensões de arquivo associadas"],"comma separated list of associated file extensions SickRage should keep while post processing.":[null,""],"leaving it empty means no associated files will be post processed":[null,""],"Delete non associated files":[null,""],"delete non associated files while post processing?":[null,""],"Change File Date":[null,"Alterar data do arquivo"],"set last modified filedate to the date that the episode aired?":[null,""],"some systems may ignore this feature.":[null,""],"Timezone for File Date":[null,"Fuso horário para a data do arquivo"],"local":[null,"local"],"network":[null,"rede"],"what timezone should be used to change File Date?":[null,""],"Unpack":[null,"Descompactar"],"What to do with archived releases found in your <i>TV Download Dir</i>?":[null,""],"Ignore (do not process contents)":[null,""],"Unpack (process contents)":[null,""],"Treat as video (process archive as-is)":[null,""],"'Unpack' only works with RAR archives":[null,""],"Windows":[null,"Windows"],"WinRar is required on windows":[null,"WinRar é necessário no windows"],"Unpack Directory":[null,""],"Choose a path to unpack files, leave blank to unpack in download dir":[null,""],"Unrar Location":[null,""],"add the path to unrar if it is not in the system path":[null,""],"Alternate Unrar Tool":[null,""],"add the path to an alternate unrar tool if it is not in the system path":[null,""],"Delete RAR contents":[null,"Eliminar o conteúdo dos arquivos RAR"],"delete content of RAR files, even if Process Method not set to move?":[null,""],"only working with RAR archive":[null,"funcionando apenas com arquivos RAR"],"Don't delete empty folders":[null,"Não excluir pastas vazias"],"leave empty folders when Post Processing?":[null,""],"can be overridden using manual Post Processing":[null,""],"Follow symbolic-links":[null,""],"follow down symbolic links in download directory?":[null,""],"<b>EXPERTS ONLY.</b><br>Enable only if you know what <b>circular symbolic links</b> are,<br>and can <b>verify that you have none</b>.":[null,""],"Use icacls":[null,""],"Windows only":[null,"Somente para Windows"],"sets video permissions after using the move method in post processing":[null,""],"Extra Scripts":[null,"Scripts extras"],"see":[null,""],"for script arguments description and usage.":[null,"para a descrição de argumentos de script e uso."],"How SickRage will name and sort your episodes.":[null,"Como SickRage vai nomear e classificar seus episódios."],"Name Pattern":[null,"Nome padrão"],"Toggle Naming Legend":[null,"Alternar a lenda de nomeação"],"don't forget to add quality pattern. Otherwise after post-processing the episode will have UNKNOWN quality":[null,""],"Meaning":[null,"Significado"],"Pattern":[null,"Padrão"],"Result":[null,"Resultado"],"Use lower case if you want lower case names (eg. %sn, %e.n, %q_n etc)":[null,"Use letras minúsculas se você quer nomes em minúsculas (por exemplo,. %sn, %e.n, % q_n etc)"],"Show Name":[null,"Nome da Série"],"Show.Name":[null,"Nome.da.Série"],"Show_Name":[null,"Série_Nome"],"Season Number":[null,"Número da temporada"],"XEM Season Number":[null,"Número de Temporada XEM"],"Episode Number":[null,"Número do episódio"],"XEM Episode Number":[null,"Número XEM do episódio"],"Episode Name":[null,"Nome do episódio"],"Episode.Name":[null,"Nome.do.episódio"],"Episode_Name":[null,"Nome_do_episódio"],"Air Date":[null,"Data de exibição"],"Post-Processing Date":[null,"Data de pós-processamento"],"Quality":[null,"Qualidade"],"Scene Quality":[null,"Qualidade da cena"],"Release Name":[null,"Nome do \"release\""],"SickRage' is used in place of RLSGROUP if it could not be properly detected":[null,"SickRage' é usado no lugar de RLSGROUP, se ele não pudesse ser detectado corretamente"],"Release Group":[null,"Grupo de lançamento"],"If episode is proper/repack add 'proper' to name.":[null,"Se o episódio é apropriado/repack adicionar 'adequada' ao nome."],"Release Type":[null,"Tipo de lançamento"],"Multi-Episode Style":[null,"Estilo episódio múltiplo"],"Single-EP Sample":[null,"Exemplo de apenas um episódio"],"Multi-EP sample":[null,"Amostra de multiplos episiodios"],"Strip Show Year":[null,"Remover ano do nome"],"remove the TV show's year when renaming the file?":[null,""],"only applies to shows that have year inside parentheses":[null,""],"Custom Air-By-Date":[null,"Data de publicação costumizada"],"name air-by-date shows differently than regular shows?":[null,""],"Toggle ABD Naming Legend":[null,""],"Regular Air Date":[null,"Data de publicação normal"],"Year":[null,"Ano"],"Month":[null,"Mês"],"Day":[null,"Dia"],"Multi-EP style is ignored":[null,"Ignorar multi-episódios"],"Custom Sports":[null,"Esportes personalizados"],"name sports shows differently than regular shows?":[null,""],"Toggle Sports Naming Legend":[null,""],"Sports Air Date":[null,"Data de estréia de esportes"],"Custom Anime":[null,"Anime personalizado"],"name anime shows differently than regular shows?":[null,""],"Toggle Anime Naming Legend":[null,""],">XEM Season Number":[null,"> Número de temporada XEM"],"Single-EP Anime Sample":[null,"Exemplo de apenas um episódio de Anime"],"Multi-EP Anime sample":[null,"Amostra de multiplos episiodios"],"Add Absolute Number":[null,"Adicionar Número Absoluto"],"add the absolute number to the season/episode format?":[null,""],"only applies to anime. (eg. S15E45 - 310 vs S15E45)":[null,""],"Only Absolute Number":[null,"Apenas o número absoluto"],"replace season/episode format with absolute number":[null,""],"only applies to anime.":[null,""],"No Absolute Number":[null,"Nenhum número absoluto"],"don't include the absolute number":[null,""],"The data associated to the data. These are files associated to a TV show in the form of images and text that, when supported, will enhance the viewing experience.":[null,"Os dados associados aos dados. Estes são arquivos associados a uma série de TV na forma de imagens e texto, que quando suportada, irá melhorar a experiência de visualização."],"Metadata Type":[null,"Tipo de Metadados"],"toggle metadata options that you wish to be created":[null,""],"multiple targets may be used":[null,""],"Select Metadata":[null,"Selecione metadados"],"Provider Priorities":[null,"Prioridades do provedor"],"Provider Options":[null,"Opções de provedor"],"Configure Custom Newznab Providers":[null,"Configurar provedores personalizados Newznab"],"Configure Custom Torrent Providers":[null,"Configurar provedores personalizados Torrent"],"Check off and drag the providers into the order you want them to be used.":[null,"Marcar e arrastar os provedores na ordem em que deseja que sejam usadas."],"At least one provider is required but two are recommended.":[null,"Pelo menos um provedor é necessário, mas dois são recomendados."],"Torrent providers can be toggled in ":[null,"Provedores de torrent podem ser alternados em "],"Provider does not support backlog searches at this time.":[null,"Provedor não dá suporte a lista de pendências de buscas neste momento."],"Provider is <b>NOT WORKING</b>.":[null,"O provedor <b>NÃO ESTÁ FUNCIONANDO</b>."],"Configure individual provider settings here.":[null,"Defina as configurações individuais de provedores aqui."],"Check with provider's website on how to obtain an API key if needed.":[null,"Verifique com o site do provedor sobre como obter uma chave de API, se necessário."],"Configure provider":[null,"Config - Provedores"],"no providers available to configure.":[null,""],"URL":[null,"URL"],"Enable daily searches":[null,"Permitir buscas diárias"],"enable provider to perform daily searches.":[null,"habilite o provedor para realizar buscas diárias."],"Enable backlog searches":[null,"Habilitar buscas no backlog"],"enable provider to perform backlog searches.":[null,"habilita o provedor para executar pesquisas de pendências."],"Season search mode":[null,"Modo de busca de temporada"],"when searching for complete seasons you can choose to have it look for season packs only, or choose to have it build a complete season from just single episodes.":[null,"ao procurar por temporadas completas você também pode escolher procurar pacotes de temporada apenas, ou optar construir uma unica temporada completa de episódios."],"season packs only.":[null,"apenas pacotes de temporada."],"episodes only.":[null,"apenas episódios."],"Enable fallback":[null,"Ativar fallback"],"when searching for a complete season depending on search mode you may return no results, this helps by restarting the search using the opposite search mode.":[null,"quando procurando por uma temporada completa, dependendo do modo de busca pode retornar nenhum resultado, isso ajuda reiniciando a busca usando o modo de busca oposta."],"Custom URL":[null,"URL personalizada"],"the URL should include the protocol (and port if applicable). Examples: http://192.168.1.4/ or http://localhost:3000/":[null,""],"Api key":[null,"Chave de API"],"Digest":[null,"Digest"],"Hash":[null,"Hash"],"Passkey":[null,"Código de acesso"],"Cookies":[null,"Cookies"],"example: uid=1234;pass=567845439634987<br>note: uid and pass are not your username/password.<br>use DevTools or Firebug to get these values after logging in on your browser.":[null,""],"Pin":[null,"PIN"],"Seed ratio":[null,"Seed ratio"],"stop transfer when ratio is reached<br>(-1 SickRage default to seed forever, or leave blank for downloader default)":[null,"parar de transferir quando a taxa atingir <br>(-1 padrão do SickRage para semear para sempre, ou deixe em branco para usar o padrão do downloader)"],"Minimum seeders":[null,"Minimo de seeders"],"Minimum leechers":[null,"Minimo de leechers"],"Confirmed download":[null,"Downloads confirmados"],"only download torrents from trusted or verified uploaders ?":[null,"só baixar torrents de uploaders confiáveis ou verificados?"],"Ranked torrents":[null,"Classificado de torrentes"],"only download ranked torrents (trusted releases)":[null,"só baixar torrents classificados (releases confiáveis)"],"English torrents":[null,"Torrentes em inglês"],"only download english torrents, or torrents containing english subtitles":[null,"só baixar torrentesem inglês, ou torrents contendo legendas em inglês"],"For Spanish torrents":[null,"Para torrents espanhois"],"ONLY search on this provider if show info is defined as \"Spanish\" (avoid provider's use for VOS shows)":[null,"SOMENTE pesquisar sobre este provedor se a informação da série for definida como \"Espanhol\" (evitar o uso do provedor para VOS shows)"],"Sorting results by":[null,"Classificar resultados por"],"Freeleech":[null,"FreeLeech"],"only download <b>\"FreeLeech\"</b> torrents.":[null,"só transferir torrents <b>\"FreeLeech\"</b>."],"Category":[null,"Categoria"],"select torrent with Italian subtitle":[null,"selecione torrent com legendas italiana"],"Configure Custom<br>Newznab Providers":[null,"Configurar provedores<br>personalizados Newznab"],"Add and setup or remove custom Newznab providers.":[null,"Adicionar e configurar ou remover provedores personalizados de Newznab."],"Select provider":[null,"Selecione o provedor"],"-- add new provider --":[null,"-- Adicionar novo provedor --"],"Provider name":[null,"Nome do provedor"],"Site URL":[null,"URL do site"],"Newznab search categories":[null,"Categorias de pesquisa do Newznab"],"select your Newznab categories on the left, and click the \"update categories\" button to use them for searching.) <b>don't forget to to save the form!":[null,"(selecione suas categorias de Newznab à esquerda e clique no botão \"atualizar categorias\" (para usá-los para pesquisa.) <b>não se esqueça de salvar o formulário!"],"Update Categories":[null,"Atualizar Categorias"],"Add":[null,"Adicionar"],"Delete":[null,"Excluir"],"Add and setup or remove custom RSS providers.":[null,"Adicionar e configurar ou remover provedores personalizados de RSS."],"RSS URL":[null,"URL do RSS"],"Search element":[null,"Elemento de pesquisa"],"eg: title":[null,"p. ex.: título"],"Episode Search":[null,"Busca por episódio"],"NZB Search":[null,"Busca NZB"],"Torrent Search":[null,"Busca Torrent"],"How to manage searching with":[null,"Como gerenciar a busca com"],"Randomize Providers":[null,"Randomize provedores"],"randomize the provider search order instead of going in order of placement":[null,"randomize a ordem de pesquisa do provedor em vez de ir por ordem de colocação"],"Download propers":[null,"Baixar propers"],"replace original download with \"Proper\" or \"Repack\" if nuked":[null,"substituir arquivo original por uma versão \"Proper\" ou \"Repack\" se lançado"],"Check propers every":[null,"Verificar versões Proper a cada"],"24 hours":[null,"24 horas"],"4 hours":[null,"4 horas"],"90 mins":[null,"90 minutos"],"45 mins":[null,"45 minutos"],"15 mins":[null,"15 min"],"Backlog search day(s)":[null,"Dia(s) pesquisa de pendências"],"number of day(s) that the \"Forced Backlog Search\" will cover (e.g. 7 Days)":[null,"número de dia(s) que a \"Busca de pendências forçada\" cobrirá (por exemplo, 7 dias)"],"Backlog search frequency":[null,"Frequência de buscas no backlog"],"time in minutes between searches (min.":[null,"tempo em minutos entre pesquisas (min."],"Daily search frequency":[null,"Frequência de busca diária"],"Usenet retention":[null,"Retenção de Usenet"],"age limit in days for usenet articles to be used (e.g. 500)":[null,"limite de idade em dias para artigos usenet para serem usados (por exemplo, 500)"],"Ignore words":[null,"Ignorar palavras"],"results with one or more word from this list will be ignored<br>separate words with a comma, e.g. \"word1,word2,word3\"":[null,"resultados com um ou mais palavrsa desta lista serão ignorados<br>separe as palavras por vírgula, por exemplo: \"palavra1, palavra2, palavra3\""],"Require words":[null,"Palavras requeridas"],"results with no word from this list will be ignored<br>separate words with a comma, e.g. \"word1,word2,word3\"":[null,"resultados sem palavras desta lista serão ignorados<br>separe as palavras por vírgula, por exemplo, \"palavra1, palavra2, palavra3\""],"Trackers list":[null,"Lista de Trackers"],"trackers that will be added to magnets without trackers<br>separate trackers with a comma, e.g. \"tracker1,tracker2,tracker3\"":[null,""],"Ignore language names in subbed results":[null,"Ignorar nomes de idiomas em resultados de legendas"],"ignore subbed releases based on language names <br>\n Example: \"dk\" will ignore words: dksub, dksubs, dksubbed, dksubed <br>\n separate languages with a comma, e.g. \"lang1,lang2,lang3":[null,""],"Allow high priority":[null,"Permitir alta prioridade"],"set downloads of recently aired episodes to high priority":[null,"definir transferências de episódios recém-exibidos para alta prioridade"],"Use Failed Downloads":[null,"Usar Downloads Falhados"],"use Failed Download Handling?":[null,""],"will only work with snatched/downloaded episodes after enabling this":[null,""],"Delete Failed":[null,"Falha ao excluir"],"delete files left over from a failed download?":[null,""],"this only works if Use Failed Downloads is enabled.":[null,""],"How to handle NZB search results.":[null,"Como lidar com os resultados da pesquisa NZB."],"Search NZBs":[null,"Pesquisar NZBs"],"enable NZB search providers":[null,""],"Send .nzb files to":[null,"Enviar arquivos .nzb para"],"SABnzbd server URL":[null,"URL do servidor SABnzbd"],"URL to your SABnzbd server (e.g. http://localhost:8080/)":[null,"URL para seu servidor SABnzbd (ex. http://localhost:8000/)"],"SABnzbd username":[null,"Nome de utilizador SABnzbd"],"(blank for none)":[null,"(em branco para nenhum)"],"SABnzbd password":[null,"Senha do SABnzbd"],"SABnzbd API key":[null,"Chave da API SABnzbd"],"locate at... SABnzbd Config -> General -> API Key":[null,"localizado em... SABnzbd Config-> Geral-> Chave de API"],"Use SABnzbd category":[null,"Usar categoria SABnzbd"],"add downloads to this category (e.g. TV)":[null,"enviar downloads para esta categoria (por exemplo, TV)"],"Use SABnzbd category (backlog episodes)":[null,"Categoria de uso SABnzbd (lista de pendências de episódios)"],"add downloads of old episodes to this category (e.g. TV)":[null,"adicionar downloads de episódios antigos para esta categoria (por exemplo, TV)"],"Use SABnzbd category for anime":[null,"Usar categoria SABnzbd para anime"],"add anime downloads to this category (e.g. anime)":[null,"adicionar downloads de anime para esta categoria (ex: anime)"],"Use SABnzbd category for anime (backlog episodes)":[null,"Categoria de uso SABnzbd para anime (episódios de atraso)"],"add anime downloads of old episodes to this category (e.g. anime)":[null,"adicionar anime downloads antigos episódios para esta categoria (por exemplo, anime)"],"Use forced priority":[null,"Usar prioridade forçada"],"enable to change priority from HIGH to FORCED":[null,"habilite para alterar a prioridade de ALTA para FORÇADA"],"Black hole folder location":[null,"Localização da pasta de Black hole"],"<b>.nzb</b> files are stored at this location for external software to find and use":[null,"arquivos <b>.nzb</b> são armazenados neste local para programas externos encontrar e usar"],"Connect using HTTPS":[null,"Conectar usando HTTPS"],"enable Secure control in NZBGet and set the correct Secure Port here":[null,""],"NZBget host:port":[null,"NZBget servirdor:porta"],"(e.g. localhost:6789)":[null,"(ex. localhost:6789)"],"NZBget RPC host name and port number (not NZBgetweb!)":[null,"Nome do servidor NZBget RPC e número da porta (não é o NZBgetweb!)"],"NZBget username":[null,"Nome de usuário NZBget"],"locate in nzbget.conf (default:nzbget)":[null,"localizado no nzbget.conf (padrão: nzbget)"],"NZBget password":[null,"Senha NZBget"],"locate in nzbget.conf (default:tegbzn6789)":[null,"localizado no nzbget.conf (padrão: tegbzn6789)"],"Use NZBget category":[null,"Usar categoria NZBget"],"send downloads marked this category (e.g. TV)":[null,"enviar downloads marcado nesta categoria (por exemplo, TV)"],"Use NZBget category (backlog episodes)":[null,"Categoria de uso NZBget (lista de pendências de episódios)"],"send downloads of old episodes marked this category (e.g. TV)":[null,"enviar downloads de episódios antigos marcado nesta categoria (por exemplo, TV)"],"Use NZBget category for anime":[null,"Usar categoria SABnzbd para anime"],"send anime downloads marked this category (e.g. anime)":[null,""],"Use NZBget category for anime (backlog episodes)":[null,"Categoria de uso NZBget (lista de pendências de episódios)"],"send anime downloads of old episodes marked this category (e.g. anime)":[null,"envie anime downloads antigos episódios marcados nesta categoria (por exemplo, anime)"],"NZBget priority":[null,"Prioridade NZBget"],"Very low":[null,"Muito baixa"],"Low":[null,"Baixo"],"Very high":[null,"Muito alta"],"Force":[null,"Forçar"],"priority for daily snatches (no backlog)":[null,""],"Torrent host:port":[null,"Torrent servidor:porta"],"URL to your Synology DSM (e.g. http://localhost:5000/)":[null,""],"Client username":[null,"Login do cliente"],"Client password":[null,"Senha do cliente"],"Downloaded files location":[null,"Localização de arquivos baixados"],"where Synology Download Station will save downloaded files (blank for client default)":[null,"onde o Synology Download Station irá salvar o arquivos baixados (em branco para o padrão do cliente)"],"the destination has to be a shared folder for Synology DS":[null,"o destino tem que ser uma pasta compartilhada para o servidor Synology DS"],"Click below to test":[null,"Clique abaixo para testar"],"How to handle Torrent search results.":[null,"Como lidar com os resultados de busca de Torrent."],"Search torrents":[null,"Buscar torrents"],"enable torrent search providers":[null,"habilitar provedores de busca torrent"],"Send .torrent files to":[null,"Enviar arquivos .torrent para"],"<b>.torrent</b> files are stored at this location for external software to find and use":[null,"arquivos <b>.torrent</b> são armazenados neste local para programas externos encontrar e usar"],"URL to your torrent client (e.g. http://localhost:8000/)":[null,"URL para o seu cliente torrent (ex. http://localhost:8000/)"],"Torrent RPC URL":[null,"URL de RPC torrent"],"the path without leading and trailing slashes (e.g. transmission)":[null,""],"Http Authentication":[null,"Autenticação HTTP"],"Verify certificate":[null,"Verificar certificado"],"disable if you get \"Deluge: Authentication Error\" in your log":[null,"desabilitar se você receber \"Deluge: erro de autenticação\" no seu log"],"verify SSL certificates for HTTPS requests":[null,""],"Add label to torrent":[null,"Adicionar um rótulo ao torrent"],"(blank spaces are not allowed)":[null,"(não são permitidos espaços em branco)"],"label plugin must be enabled in Deluge clients":[null,""],"for QBitTorrent 3.3.1 and up":[null,"para QBitTorrent 3.3.1 e acima"],"Add label to torrent for anime":[null,"Adicionar um rótulo de torrent para anime"],"for QBitTorrent 3.3.1 and up ":[null,"para QBitTorrent 3.3.1 e acima "],"where <span id=\"torrent_client\">the torrent client</span> will save downloaded files (blank for client default)":[null,""],"the destination has to be a shared folder for Synology DS</span>":[null,"o destino tem que ser uma pasta compartilhada para o servidor Synology DS</span>"],"Minimum seeding time":[null,""],"time in hours":[null,"tempo em horas"],"(default:'0' passes blank to client and '-1' passes nothing)":[null,""],"Start torrent paused":[null,"Iniciar o torrent em pausa"],"add .torrent to client but do <b style=\"font-weight:900\">not</b> start downloading":[null,"adicionar .torrent para o cliente mas <b style=\"font-weight:900\">não</b> iniciar o download"],"Allow high bandwidth":[null,"Permitir largura de banda alta"],"use high bandwidth allocation if priority is high":[null,"usar a alocação de largura de banda alta se a prioridade é alta"],"Test Connection":[null,"Testar conexão"],"Windows Shares":[null,""],"Defines your existing windows shares so that we can add them to the browse dialog":[null,""],"Share #{number}":[null,""],"Share label":[null,""],"Hostname or IP":[null,""],"Share path":[null,""],"Subtitles Search":[null,"Pesquisa de Legendas"],"Subtitles Plugin":[null,"Plugin de Legendas"],"Plugin Settings":[null,"Configurações de plugin"],"Settings that dictate how SickRage handles subtitles search results.":[null,""],"Search Subtitles":[null,"Pesquisar legendas"],"Subtitle Languages":[null,"Idioma das Legendas"],"Subtitle Directory":[null,"Diretório de legendas"],"the directory where SickRage should store your <i>Subtitles</i> files.":[null,""],"leave empty if you want store subtitle in episode path.":[null,""],"Subtitle Find Frequency":[null,"Frequência de buscas por legendas"],"time in hours between scans (default: 1)":[null,"tempo em horas entre as pesquisas (padrão: 1)"],"Include Specials":[null,""],"include the show's specials when searching for subtitles?":[null,""],"Perfect matches":[null,"Correspondências perfeitas"],"only download subtitles that match: release group, video codec, audio codec and resolution":[null,""],"if disabled you may get out of sync subtitles":[null,""],"Subtitles History":[null,"Histórico de Legendas"],"log downloaded Subtitle on History page?":[null,""],"Subtitles Multi-Language":[null,"Legendas Multi-Idioma"],"append language codes to subtitle filenames?":[null,""],"this option is required if you use multiple subtitle languages":[null,""],"Delete unwanted subtitles":[null,"Excluir legendas indesejadas"],"enable to delete unwanted subtitle languages bundled with release":[null,""],"Embedded Subtitles":[null,"Legendas Embutidas"],"ignore subtitles embedded inside video file?":[null,""],"this will ignore <u>all</u> embedded subtitles for every video file!":[null,"isto irá ignorar <u>todas</u> as legendas incorporadas para todos os arquivos de vídeo!"],"Hearing Impaired Subtitles":[null,"Legendas para deficientes auditivos"],"download hearing impaired style subtitles?":[null,""],"See":[null,"Ver"],"for a script arguments description.":[null,"para uma descrição de argumentos de script."],"Additional scripts separated by <b>|</b>.":[null,"Scripts adicionais separados por <b>|</b>."],"Scripts are called after each episode has searched and downloaded subtitles.":[null,"Scripts são chamados após cada episódio tem pesquisado e baixei as legendas."],"For any scripted languages, include the interpreter executable before the script. See the following example":[null,"Para quaisquer linguagens de script, incluir o executável do intérprete antes do script. Ver o seguinte exemplo"],"For Windows:":[null,"Para Windows:"],"For Linux / OS X:":[null,"Para Linux / OS X:"],"Subtitle Providers":[null,"Provedores de legendas"],"Check off and drag the plugins into the order you want them to be used.":[null,"Marcar e arrastar os plugins pela ordem que você quer que sejam usados."],"At least one plugin is required.":[null,"Pelo menos um plugin é necessário."]," Web-scraping plugin":[null," Plugin de Web-Scraping"],"Provider Settings":[null,"Configurações do provedor"],"Set user and password for each provider":[null,"Definir o usuário e senha para cada provedor"],"User Name":[null,"Nome do usuário"],"Change Show":[null,"Alterar Série"],"Prev Show":[null,"Série Anterior"],"Next Show":[null,"Próxima Série"],"Jump to Season":[null,"Pular para a temporada"],"Specials":[null,"Especiais"],"Poster for":[null,"Cartaz para"],"Stars":[null,"Estrelas"],"minutes":[null,"minutos"],"View other popular {genre} shows on trakt.tv.":[null,"Ver os outras séries populares {genre} na trakt.tv."],"View other popular {imdbgenre} shows on IMDB.":[null,"Ver os outras séries populares {imdbgenre} no IMDB."],"Allowed":[null,"Permitido"],"Preferred":[null,"Favoritos"],"Originally Airs":[null,"Originalmente exibido"],"Show Status":[null,"Status de exibição"],"Default EP Status":[null,"Status padrão do EP"],"Location":[null,"Localização"],"Missing":[null,"Faltando"],"Scene Name":[null,"Nome da cena"],"Required Words":[null,"Palavras requeridas"],"Ignored Words":[null,"Ignorar palavras"],"Size":[null,"Tamanho"],"Info Language":[null,"Informação da Língua"],"Subtitles SR Metadata":[null,"Legendas metadados SickRage"],"Season Folders":[null,"Pastas das temporadas"],"Paused":[null,"Em pausa"],"Air-by-Date":[null,"Ao ar na Data"],"Sports":[null,"Esportes"],"DVD Order":[null,"Ordem de DVD"],"Scene Numbering":[null,"Numeração da cena"],"Select Filtered Episodes":[null,"Selecionar episódios filtrados"],"Clear All":[null,"Limpar tudo"],"Change selected episodes to":[null,"Alterar episódios selecionados para"],"Select Columns":[null,"Selecionar colunas"],"Hide Episodes":[null,""],"Show Episodes":[null,"Mostrar episódios"],"NFO":[null,"NFO"],"TBN":[null,"TBN"],"Episode":[null,"Episódio"],"Absolute":[null,"Absoluto"],"Scene":[null,"Cena"],"Scene Absolute":[null,"Cena absoluta"],"File Name":[null,"Nome do arquivo"],"Airdate":[null,"Data de exibição"],"Download":[null,"Download"],"Change the value here if scene numbering differs from the indexer episode numbering":[null,"Altere o valor aqui se cena numeração difere a numeração do episódio de indexador"],"Change the value here if scene absolute numbering differs from the indexer absolute numbering":[null,"Altere o valor aqui se a numeração absoluta da Scene for diferente da numeração absoluta do indexador"],"Manual Search":[null,"Pesquisa manual"],"Do you want to mark this episode as failed?":[null,"Você quer marcar este episódio como falha?"],"The episode release name will be added to the failed history, preventing it to be downloaded again.":[null,"A release do episódio será adicionado ao histórico de falha, impedindo-o de ser baixado novamente."],"Do you want to include the current episode quality in the search?":[null,"Você quer incluir a qualidade episódio atual na pesquisa?"],"Choosing No will ignore any releases with the same episode quality as the one currently downloaded/snatched.":[null,"Escolhendo não irá ignorar qualquer lançamentos com a mesma qualidade do episódio atualmente baixado/encontrado."],"Download subtitle":[null,"Baixar legenda"],"Do you want to re-download the subtitle for this language?":[null,""],"It will overwrite your current subtitle":[null,"Isto irá substituir sua legenda atual"],"Format":[null,"Formato"],"Advanced":[null,"Avançado"],"Main Settings":[null,"Configurações principais"],"Show Location":[null,"Local da Série"],"Preferred Quality":[null,"Qualidade preferencial"],"Default Episode Status":[null,"Status padrão do episódio"],"this will set the status for future episodes.":[null,""],"this only applies to episode filenames and the contents of metadata files.":[null,""],"search for subtitles":[null,"procurar por legendas"],"Use SR Metdata":[null,"Usar Metadados SickRage"],"use SickRage metadata when searching for subtitle, this will override the autodiscovered metadata":[null,"use metadados SickRage quando procurar legendas, isto irá substituir o metadados de autodescobrimento"],"pause this show (SickRage will not download episodes)":[null,"pausar esta série (SickRage não irá mais baixar os episódios)"],"Format Settings":[null,"Configurações de formatação"],"Air by date":[null,"Ao ar em"],"check if the show is released as Show.03.02.2010 rather than Show.S02E03.":[null,"verifique se a série é lançada como Série.03.02.2010 ao invés de Série.S02E03."],"in case of an air date conflict between regular and special episodes, the later will be ignored.":[null,""],"check if the show is Anime and episodes are released as Show.265 rather than Show.S02E03":[null,"verifique se a série é Anime e episódios são liberados como Série.265 ao invés de Série.S02E03"],"check if the show is a sporting or MMA event released as Show.03.02.2010 rather than Show.S02E03":[null,"verifique se o série é um esportivo ou evento MMA, lançado como Série.03.02.2010 ao invés de Série.S02E03"],"Season folders":[null,"Pastas das temporadas"],"group episodes by season folder (uncheck to store in a single folder)":[null,"agrupar episódios por pasta de temporada (coloque \"No\" para armazenar em uma única pasta)"],"search by scene numbering (uncheck to search by indexer numbering)":[null,"pesquisar por numeração da Scene (desmarcar para pesquisar por numeração do indexador)"],"use the DVD order instead of the air order":[null,"use a ordem de DVD em vez da ordem que foi ao ar"],"a \"Force Full Update\" is necessary, and if you have existing episodes you need to sort them manually.":[null,""],"comma-separated <i>e.g. \"word1,word2,word3</i>\"":[null,"separados por vírgula, <i>por exemplo: \"palavra1, palavra2, palavra3</i>\""],"search results with one or more words from this list will be ignored.":[null,""],"e.g. \"word1,word2,word3\"":[null,"separadas por vírgula, ex: \"palavra1, palavra2, palavra3\""],"search results with no words from this list will be ignored.":[null,""],"Scene Exception":[null,"Exceção da Scene"],"this will affect episode search on NZB and torrent providers.":[null,""],"this list appends to the original show name.":[null,""],"WARNING logs":[null,"ALERTA de aviso"],"ERROR logs":[null,"Logs de erro"],"There are no events to display.":[null,"Nenhum registro para exibir."],"Limit":[null,"Limite"],"Layout":[null,"Layout"],"HistoryLayout":[null,""],"Compact":[null,"Compacto"],"Detailed":[null,"Detalhado"],"Time":[null,"Tempo"],"Provider":[null,"Provedor"],"Missing Provider":[null,"Provedor ausente"],"missing provider":[null,"provedor ausente"],"Directory":[null,"Diretório"],"Show Name (tvshow.nfo)":[null,"Série nome (tvshow.nfo)"],"Indexer":[null,"Indexador"],"Enter the folder containing the episode":[null,"Entre com a pasta que contém o episódio"],"Process Method to be used":[null,"Método de processamento usado"],"Copy":[null,"Copiar"],"Move":[null,"Mover"],"Hard Link":[null,"Link Físico"],"Symbolic Link":[null,"Link Simbólico"],"Symbolic Link Reversed":[null,""],"Force already Post Processed Dir/Files":[null,"Forçar diretórios e arquivos já pós-processado"],"Mark Dir/Files as priority download":[null,"Marcar diretórios / arquivos como downloads prioritários"],"(Check it to replace the file even if it exists at higher quality)":[null,"(Marque para substituir o arquivo, mesmo que já exista em uma qualidade superior)"],"Delete files and folders":[null,"Excluir arquivos e pastas"],"(Check it to delete files and folders like auto processing)":[null,"(Marque para excluir arquivos e pastas como no processamento automático)"],"Don't use processing queue":[null,""],"(If checked this will return the result of the process here, but may be slow!)":[null,""],"Mark download as failed":[null,"Marcar download como falhado"],"Process":[null,"Processar"],"Download subtitles for this show?":[null,"Baixar legendas para esta série?"],"use SickRage metadata when searching for subtitle, <br />this will override the autodiscovered metadata":[null,"use o metadados do SickRage quando procurar por legendas, <br />isto irá substituir o metadados de autodescobrimento"],"Status for previously aired episodes":[null,"Status de episódios exibidos anteriormente"],"Status for all future episodes":[null,"Status de todos os episódios futuros"],"Group episodes by season folder?":[null,""],"Is this show an Anime?":[null,"Isso é um Anime?"],"Is this show scene numbered?":[null,"Esta cena da série é numerada?"],"Save Defaults":[null,"Salvar padrões"],"Use current values as the defaults":[null,"Usar valores atuais como padrão"],"<p>Select your preferred fansub groups from the <b>Available Groups</b> and add them to the <b>Whitelist</b>. Add groups to the <b>Blacklist</b> to ignore them.</p>\n <p>The <b>Whitelist</b> is checked <i>before</i> the <b>Blacklist</b>.</p>\n <p>Groups are shown as <b>Name</b> | <b>Rating</b> | <b>Number of subbed episodes</b>.</p>\n <p>You may also add any fansub group not listed to either list manually.</p>\n <p>When doing this please note that you can only use groups listed on anidb for this anime.\n <br>If a group is not listed on anidb but subbed this anime, please correct anidb's data.</p>":[null,"<p>, Selecione os grupos do fansub preferencial dos <b>Grupos disponíveis</b> e adicioná-los à <b>lista branca</b>. Adicionar grupos para a <b>lista negra</b>, ignorá-los.</p> \n <p><b>lista brancat</b> é verificado <i>antes</i> da <b>lista negra</b>.</p> \n <p>grupos são mostrados como <b>nome</b> | <b>Classificação</b> | <b>Número de episódios subbed</b>.</p> \n <p>você também pode adicionar qualquer grupo de fansub não listado para qualquer lista manualmente.</p> \n <p>ao fazer esta por favor, note que você só pode usar grupos listados na anidb para este anime.\n <br>, se um grupo não está listado na anidb mas substituiu este anime, por favor corrigir dados do anidb.</p>"],"Whitelist":[null,"Lista branca"],"Available Groups":[null,"Grupos disponíveis"],"Add to Whitelist":[null,"Adicionar à lista branca"],"Add to Blacklist":[null,"Adicionar à lista negra"],"Blacklist":[null,"Lista Negra"],"Custom Group":[null,""],"Allowed Quality:":[null,"Qualidade permitida:"],"Preferred Quality:":[null,"Qualidade preferencial:"],"Filter Show Name":[null,"Filtro por nome de série"],"Root":[null,""],"All":[null,"Todos"],"Clear Filter(s)":[null,"Limpar filtro(s)"],"Poster":[null,"Cartaz"],"Small Poster":[null,"Poster pequeno"],"Banner":[null,"Banner"],"Simple":[null,"Simples"],"Next Episode":[null,"Próximo Episódio"],"Progress":[null,"Progresso"],"Direction":[null,"Direção"],"Ascending":[null,"Ascendente"],"Descending":[null,"Descendente"],"Poster Size":[null,"Tamanho do poster"],"Continuing":[null,"Continuando"],"Ended":[null,"Terminada"],"Total":[null,"Total"],"Invalid date":[null,"Data inválida"],"No Network":[null,"Sem emissora"],"Next Ep":[null,"Próximo Ep"],"Prev Ep":[null,"Ep Anterior"],"Show":[null,"Série"],"Downloads":[null,"Downloads"],"Active":[null,"Ativos"],"loading":[null,"carregando"],"Loading...":[null,"Carregando..."],"<p><b><u>Preferred</u></b> qualities will replace those in <b><u>allowed</u></b>, even if they are lower.</p>":[null,"<p>Qualidades <b><u>preferidas</u></b> irão substituir aqueles em <b><u>permitido</u></b>, mesmo que sejam inferiores.</p>"],"New":[null,"Novo"],"Set as Default":[null,"Definir como Padrão"],"Remember me":[null,"Lembrar-me"],"Edit Selected":[null,"Editar Selecionado"],"Subtitle":[null,"Legenda"],"Default Ep Status":[null,"Status padrão do Ep"],"Update":[null,"Atualizar"],"Rescan":[null,"Reescanear"],"Rename":[null,"Renomear"],"Search Subtitle":[null,"Procurar legenda"],"Force Metadata Regen":[null,""],"Snatched (Allowed)":[null,"Encontrado (Permitido)"],"Jump to Show":[null,"Saltar para a série"],"Force Backlog":[null,"Forçar pendências"],"Manage episodes with status":[null,"Gerenciar episódios com status"],"Manage":[null,"Gerenciar"],"None of your episodes have status":[null,"Nenhum dos seus episódios têm status"],"Shows containing":[null,"Mostra que contém"],"episodes":[null,"episódios"],"Set checked shows/episodes to":[null,"Conjunto de séries/episódios marcados para"],"Go":[null,"Ir"],"Select all":[null,"Selecioner tudo"],"Clear all":[null,"Limpar tudo"],"Release":[null,"Release"],"Backlog Search":[null,"Pesquisa de pendências"],"Not in progress":[null,""],"In Progress":[null,"Em progresso"],"Daily Search":[null,"Busca diária"],"Find Propers Search":[null,""],"Propers search disabled":[null,"Pesquisa de versões Proper desativada"],"Subtitle Search":[null,"Busca de legendas"],"Subtitle search disabled":[null,"Pesquisa de legendas desativada"],"Search Queue":[null,"Fila de pesquisa"],"pending items":[null,"itens pendentes"],"Daily":[null,"Diariamente"],"Manual":[null,"Manual"],"Changing any settings marked with (<span class=\"separator\">*</span>) will force a refresh of the selected shows.":[null,"Alterar quaisquer configurações marcadas com (<span class=\"separator\"> *</span>) irá forçar uma atualização das séries selecionadas."],"Selected Shows":[null,"Séries selecionadas"],"Root Directories":[null,"Diretórios raiz"],"Current":[null,"Atuais"],"Keep":[null,"Manter"],"Custom":[null,"Personalizado"],"Group episodes by season folder (set to \"No\" to store in a single folder).":[null,"Agrupar episódios por pasta de temporada (coloque \"No\" para armazenar em uma única pasta)."],"Pause these shows (SickRage will not download episodes).":[null,"Pause essas séries (SickRage não vai baixar episódios)."],"This will set the status for future episodes.":[null,"Isto irá definir o status para futuros episódios."],"Search by scene numbering (set to \"No\" to search by indexer numbering).":[null,"Pesquisar por numeração da scene (selecionar \"Não\" para pesquisar por numeração do indexador)."],"Set if these shows are Anime and episodes are released as Show.265 rather than Show.S02E03":[null,"Verifique se a série é Anime e episódios são liberados como Série.265 ao invés de Série.S02E03"],"Set if these shows are sporting or MMA events released as Show.03.02.2010 rather than Show.S02E03.":[null,"Verifique se o série é um esportivo ou evento MMA, lançado como Série.03.02.2010 ao invés de Série.S02E03."],"In case of an air date conflict between regular and special episodes, the later will be ignored.":[null,"No caso de um conflito de data de ar entre os episódios regular e especial, a tarde será ignorada."],"Set if these shows are released as Show.03.02.2010 rather than Show.S02E03.":[null,"Defina se a série é lançado como Série.03.02.2010 ao invés de Série.S02E03."],"Search for subtitles.":[null,"Procurar por legendas."],"All of your episodes have {subsLanguage} subtitles.":[null,"Todos os episódios tem {subsLanguage} legendas."],"Manage episodes without":[null,"Gerenciar episódios sem"],"Episodes without {subsLanguage} subtitles.":[null,"Episódios sem legendas em {subsLanguage}."],"Episodes without {subtitleLanguage} (undefined) subtitles.":[null,"Episódios sem {subtitleLanguage} (indefinido) legendas."],"Download missed subtitles for selected episodes":[null,"Baixar legendas em falta para os episódios selecionados"],"Performing Restart":[null,"Reinicializando"],"Waiting for SickRage to shut down":[null,"Esperando o SickRage desligar"],"Waiting for SickRage to start again":[null,"Esperando o SickRage começar novamente"],"Loading the default page":[null,"Carregando a página padrão"],"Error: The restart has timed out, perhaps something prevented SickRage from starting again?":[null,"Erro: O tempo para o SickRage reiniciar acabou, talvez algo impediu o SickRage de reiniciar novamente?"],"Key":[null,"Chave"],"Missed":[null,"Perdido"],"Today":[null,"Hoje"],"Soon":[null,"Em breve"],"Later":[null,"Depois"],"Subscribe":[null,"Subscrever"],"Date":[null,"Data"],"View Paused":[null,"Mostrar pausado"],"Hidden":[null,"Ocultar"],"Shown":[null,"Mostrar"],"Calendar":[null,"Calendário"],"List":[null,"Lista"],"Ends":[null,"Termina"],"Next Ep Name":[null,"Nome do próximo Ep"],"Run time":[null,"Duração"],"Indexers":[null,"Indexadores"],"No shows for this day":[null,"Não terá serie neste dia"],"Airs":[null,"Vai ao ar"],"Plot":[null,"Sinopse"],"Show Update":[null,"Atualizar Série"],"Version Check":[null,"Verificar versão"],"Proper Finder":[null,"Pesquisa de Proper"],"Post Process":[null,"Pós-processamento"],"Subtitles Finder":[null,"Localizador de legendas"],"Scheduler":[null,""],"Alive":[null,""],"Start Time":[null,"Hora de início"],"Cycle Time":[null,""],"Next Run":[null,""],"Last Run":[null,"Última execução"],"Silent":[null,"Silencioso"],"True":[null,"Verdadeiro"],"N/A":[null,"N/D"],"Show id":[null,"Série id"],"Show name":[null,"Série nome"],"Priority":[null,"Prioridade"],"Added":[null,"Adicionado"],"Queue type":[null,"Tipo de fila"],"LOW":[null,"BAIXA"],"NORMAL":[null,"NORMAL"],"HIGH":[null,"ALTA"],"Disk Space":[null,"Espaço em disco"],"Free space":[null,"Espaço livre"],"TV Download Directory":[null,"Diretório de Download para as séries"],"Media Root Directories":[null,"Diretórios raiz de mídia"],"Preview of the proposed name changes":[null,"Pré-visualização das alterações de nome propostas"],"All Seasons":[null,"Todas as temporadas"],"select all":[null,""],"Rename Selected":[null,"Renomear selecionado"],"Cancel Rename":[null,"Cancelar Renomeação"],"Old Location":[null,"Localização antiga"],"New Location":[null,"Nova localização"],"Trakt API did not return any results, please check your config.":[null,"A API do Trakt não retornou nenhum resultado, por favor, verifique sua configuração."],"votes":[null,"votos"],"Remove Show":[null,"Remover Série"],"Level":[null,"Nível"],"Filter":[null,""],"All non-absolute folder locations are relative to ":[null,""],"Manual Post-Processing":[null,"Pós-processamento manual"],"Episode Status Management":[null,"Gerenciamento de status do episódio"],"Update PLEX":[null,"Atualizar o PLEX"],"Update KODI":[null,"Atualizar o KODI"],"Update Emby":[null,"Atualizar o Emby"],"Missed Subtitle Management":[null,"Gerenciar legendas em falta"],"Help & Info":[null,"Ajuda & informação"],"Backup & Restore":[null,"Fazer um backup & restaurar"],"Tools":[null,"Ferramentas"],"Support SickRage":[null,"Suporte SickRage"],"View Errors":[null,"Ver erros"],"View Warnings":[null,"Ver avisos"],"View Log":[null,"Ver registro"],"Check For Updates":[null,"Verificar atualizações"],"Restart":[null,"Reiniciar"],"Shutdown":[null,"Desligar"],"Logout":[null,"Encerrar sessão"],"Server Status":[null,"Status do servidor"],"View overview of snatched episodes":[null,"Visão geral de episódios \"snatched\""],"Episodes Downloaded":[null,"Episódios baixados"],"Memory used":[null,"Memória usada"],"Load time":[null,"Tempo gasto"],"Branch":[null,"Branch"],"Now":[null,"Agora"]}}}} \ No newline at end of file +{"messages":{"domain":"messages","locale_data":{"messages":{"100":[null,"100"],"250":[null,"250"],"500":[null,"500"],"":{"domain":"messages","plural_forms":"nplurals=2; plural=(n != 1);","lang":"pt_BR"},"Drama":[null,"Drama"],"Mystery":[null,"Mistério"],"Science-Fiction":[null,"Ficção científica"],"Crime":[null,"Crime"],"Action":[null,"Ação"],"Comedy":[null,"Comédia"],"Thriller":[null,"Suspense"],"Animation":[null,"Animação"],"Family":[null,"Família"],"Fantasy":[null,"Fantasia"],"Adventure":[null,"Aventura"],"Horror":[null,"Terror"],"Film-Noir":[null,"Filme Noir"],"Sci-Fi":[null,"Ficção Científica"],"Romance":[null,"Romance"],"Sport":[null,"Esporte"],"War":[null,"Guerra"],"Biography":[null,"Biografia"],"History":[null,"Histórico"],"Music":[null,"Música"],"Western":[null,"Faroeste"],"News":[null,"Notícias"],"Sitcom":[null,"Seriado"],"Reality-TV":[null,"Reality Show"],"Documentary":[null,"Documentário"],"Game-Show":[null,"Game-Show"],"Musical":[null,"Musical"],"Talk-Show":[null,"Talk Show"],"Started Download":[null,"Download iniciado"],"Download Finished":[null,"Download concluído"],"Subtitle Download Finished":[null,"Download de legenda concluída"],"SickRage Updated":[null,"SickRage atualizado"],"SickRage Updated To Commit#: ":[null,"SickRage atualizado para o commit#: "],"SickRage new login":[null,"Novo Login no Sickrage"],"New login from IP: {0}. http://geomaplookup.net/?ip={0}":[null,"Novo login do Ip: {0}. http://geomaplookup.net/?ip={0}"],"Repeat":[null,"Repetir"],"Repeat (Separated)":[null,"Repetição (separada)"],"Extend":[null,"Estender"],"Extend (Limited)":[null,"Estender (limitado)"],"Extend (Limited, E-prefixed)":[null,"Estender (limitado, E-prefixo)"],"Downloaded":[null,"Baixado"],"Snatched":[null,"Encontrado"],"Snatched (Proper)":[null,"Encontrado (Proper)"],"Failed":[null,"Falhou"],"Snatched (Best)":[null,"Encontrado (Melhor)"],"Archived":[null,"Arquivado"],"Unknown":[null,"Desconhecido"],"Unaired":[null,"Não Exibido"],"Skipped":[null,"Ignorado"],"Wanted":[null,"Procurado"],"Ignored":[null,"Ignorado"],"Subtitled":[null,"Legendado"],"For best results please set the Download Station alias as":[null,"Para obter melhores resultados, por favor, configurar o alias da estação de Download como"],"You can check this setting in the Synology DSM":[null,"Você pode verificar essa configuração no DSM Synology"],"Control Panel":[null,"Painel de Controle"],"Application Portal":[null,"Portal da aplicação"],"Make sure you allow DSM to be embedded with iFrames too in":[null,"Certifique-se de permitir que o DSM seja incorporado com iFrames também em"],"DSM Settings":[null,"Configurações do DSM"],"Security":[null,"Segurança"],"<No Filter>":[null,"< Nenhum filtro >"],"Daily Searcher":[null,"Buscador Diário"],"Backlog":[null,"Pendência"],"Show Updater":[null,"Mostrar atualizações"],"Check Version":[null,"Verifique a versão"],"Show Queue":[null,"Mostrar a fila"],"Search Queue (All)":[null,"Fila de pesquisa (todos)"],"Search Queue (Daily Searcher)":[null,"Fila de pesquisa (pesquisa diária)"],"Search Queue (Backlog)":[null,"Fila de pesquisa (Backlog)"],"Search Queue (Manual)":[null,"Fila de pesquisa (Backlog)"],"Search Queue (Retry/Failed)":[null,"Fila de pesquisa (repetição/falha)"],"Search Queue (RSS)":[null,"Fila de Pesquisa (RSS)"],"Find Propers":[null,"Encontrar mensagens"],"Postprocessor":[null,"Pós-processador"],"Find Subtitles":[null,"Encontrar legendas"],"Trakt Checker":[null,"Verificador de Trakt"],"Event":[null,"Evento"],"Error":[null,"Erro"],"Tornado":[null,"Tornado"],"Thread":[null,"Tópico"],"Main":[null,"Principal"],"Loading":[null,"Carregando"],"New update found for SickRage, starting auto-updater":[null,"Nova atualização do SikRage encontrada, iniciando a atualização automática"],"Update was successful":[null,"A atualização concluída com sucesso"],"Update failed!":[null,"A atualização falhou!"],"Backup":[null,"Backup"],"Config backup in progress...":[null,"Backup das configurações em andamento..."],"Config backup successful, updating...":[null,"Backup das configurações concluído, atualizando..."],"Config backup failed, aborting update":[null,"Backup das configurações falhou, atualização abortada"],"No update needed":[null,"Nenhuma atualização necessária"],"Mako Error":[null,"Erro do Mako"],"Oops":[null,"Opa"],"Wrong API key used":[null,"Chave API errada"],"Login":[null,"Login"],"API Key not generated":[null,"Chave API não gerada"],"API Builder":[null,"Construtor de API"],"Schedule":[null,"Agenda"],"Test 1":[null,"Teste 1"],"This is test number 1":[null,"Este é o teste número 1"],"Test 2":[null,"Teste 2"],"This is test number 2":[null,"Este é o teste número 2"],"You're using the {branch} branch. Please use 'master' unless specifically asked":[null,"Você está usando o \"branch\" {branch}. Por favor, use o 'master', a menos que especificamente solicitado"],"Invalid show parameters":[null,"Parâmetros inválidos para a série"],"Invalid parameters":[null,"Parâmetros inválidos"],"Episode couldn't be retrieved":[null,"Episódio não pôde ser obtido"],"Home":[null,"Página Inicial"],"Show List":[null,"Lista de séries"],"Error: Unsupported Request. Send jsonp request with 'callback' variable in the query string.":[null,"Erro: Pedido não Suportado. Envie um pedido jsonp com a variaável 'callback' na string."],"Success. Connected and authenticated":[null,"Sucesso. Conectado e autenticado"],"Authentication failed. SABnzbd expects":[null,"Falha na Autenticação. SABnzbd espera"],"as authentication method":[null,"método de autenticação"],"Unable to connect to host":[null,"Não é possível conectar ao host"],"SMS sent successfully":[null,"SMS enviado com sucesso"],"Problem sending SMS: {message}":[null,"Problema ao enviar SMS: {message}"],"Telegram notification succeeded. Check your Telegram clients to make sure it worked":[null,"Notificação ao Telegram enviada. Verifique o Telegram para ver se funcionou"],"Error sending Telegram notification: {message}":[null,"Erro enviando notificação ao Telegram: {message}"],"join notification succeeded. Check your join clients to make sure it worked":[null,"notificação de Boxcar2 bem sucedida. Verifique os clientes Boxcar2 para ter certeza que funcionou"],"Error sending join notification: {message}":[null,"Erro ao enviar notificação do Telegram: {message}"]," with password":[null,"com senha"],"Registered and Tested growl successfully {growl_host}":[null,"Growl registrado e testado com sucesso {growl_host}"],"Registration and Testing of growl failed {growl_host}":[null,"Falha no Registro e Teste do Growl {growl_host}"],"Test prowl notice sent successfully":[null,"Aviso de teste prowl enviado com sucesso"],"Test prowl notice failed":[null,"Aviso de teste prowl falhou"],"Boxcar2 notification succeeded. Check your Boxcar2 clients to make sure it worked":[null,"Notificação Boxcar2 enviada com sucesso. Verifique o cliente Boxcar2 para ver se funcionou"],"Error sending Boxcar2 notification":[null,"Erro enviando notificação Boxcar2"],"Pushover notification succeeded. Check your Pushover clients to make sure it worked":[null,"Notificação Pushover enviada com sucesso. Verifique o cliente Pushover para ver se funcionou"],"Error sending Pushover notification":[null,"Erro enviando notificação Pushover"],"Key verification successful":[null,"Verificação da chave com sucesso"],"Unable to verify key":[null,"Impossível verificar a chave"],"Tweet successful, check your twitter to make sure it worked":[null,"Tweet com sucesso, verifique o seu twitter para ver se funcionou"],"Error sending tweet":[null,"Erro ao enviar tweet"],"Please enter a valid account sid":[null,"Por favor digite uma conta sid válida"],"Please enter a valid auth token":[null,"Por favor, insira um código de validação correto"],"Please enter a valid phone sid":[null,"Por favor entre um telefone sid válido"],"Please format the phone number as \"+1-###-###-####\"":[null,"Por favor formatar o número de telefone como \"+ 1-# # #-# # #-# # #\""],"Authorization successful and number ownership verified":[null,"Autorizado com sucesso e número do dono verificado"],"Error sending sms":[null,"Erro ao enviar sms"],"Slack message successful":[null,"Mensagem do Slack enviada com sucesso"],"Slack message failed":[null,"Falha no envio de mensagem do Slack"],"Discord message successful":[null,"Mensagem do Discord enviada com sucesso"],"Discord message failed":[null,"Falha no envio de mensagem do Discord"],"Test KODI notice sent successfully to {kodi_host}":[null,"Aviso de teste enviado ao KODI com êxito para {kodi_host}"],"Test KODI notice failed to {kodi_host}":[null,"Aviso de teste do KODI falhou ao ser enviado para {kodi_host}"],"Successful test notice sent to Plex Home Theater ... {plex_clients}":[null,"Aviso de teste enviado com sucesso ao Plex Home Theater ... {plex_clients}"],"Test failed for Plex Home Theater ... {plex_clients}":[null,"Falha teste para o Plex Home Theater ... {plex_clients}"],"Tested Plex Home Theater(s)":[null,"Plex Home Theater(s) testado"],"Successful test of Plex Media Server(s) ... {plex_servers}":[null,"Plex Home Theater(s) testados com sucesso ... {plex_servers}"],"Test failed, No Plex Media Server host specified":[null,"Teste falhou. Não foi especificado um servidor Plex"],"Test failed for Plex Media Server(s) ... {plex_servers}":[null,"Falha no teste do Plex Media Server... {plex_servers}"],"Tested Plex Media Server host(s)":[null,"Teste completo para o(s) host(s) do Servidor Plex"],"Tried sending desktop notification via libnotify":[null,"Tentativa de envio notificação desktop via libnotify"],"Test notice sent successfully to {emby_host}":[null,"Aviso de teste enviado com êxito para {emby_host}"],"Test notice failed to {emby_host}":[null,"Falha no aviso de teste para {emby_host}"],"Successfully started the scan update":[null,"Iniciada com sucesso a atualização de varredura"],"Test failed to start the scan update":[null,"Falha ao iniciar atualização de varredura"],"Test notice sent successfully to {nmj2_host}":[null,"Aviso de teste enviado com sucesso para {nmj2_host}"],"Test notice failed to {nmj2_host}":[null,"Aviso de teste falhou para {nmj2_host}"],"Trakt Authorized":[null,"Trakt Autorizado"],"Trakt Not Authorized!":[null,"Trakt Não Autorizado!"],"Test email sent successfully! Check inbox.":[null,"E-mail de teste enviado com sucesso! Verifique a caixa de entrada."],"ERROR: {last_error}":[null,"ERRO: {last_error}"],"Test NMA notice sent successfully":[null,"Aviso de teste NMA enviado com sucesso"],"Test NMA notice failed":[null,"Falha no envio de teste NMA"],"Pushalot notification succeeded. Check your Pushalot clients to make sure it worked":[null,"Notificação Pushalot enviada com sucesso. Verifique o cliente Pushalot para ver se funcionou"],"Error sending Pushalot notification":[null,"Erro ao enviar notificação Pushalot"],"Pushbullet notification succeeded. Check your device to make sure it worked":[null,"Notificação de Pushbullet bem sucedida. Verificar seu dispositivo para ter certeza que funcionou"],"Error sending Pushbullet notification":[null,"Erro ao enviar notificação de Pushbullet"],"Status":[null,"Status"],"Restarting SickRage":[null,"Reiniciando o SickRage"],"Update Failed":[null,"Falha na Atualização"],"Update wasn't successful, not restarting. Check your log for more information.":[null,"Atualização falhou, não reiniciar. Verifique os registros para obter mais informações."],"Checking out branch":[null,"Verificando versão"],"Already on branch":[null,"Última versão instalada"],"Invalid show ID: {show}":[null,"ID da série inválida: {show}"],"Show not in show list":[null,"Série não encontrada na lista"],"Edit":[null,"Editar"],"This show is in the process of being downloaded - the info below is incomplete.":[null,"Esta serie está em processo de download - as informações abaixo estão incompletas."],"The information on this page is in the process of being updated.":[null,"A informação nesta página está sendo atualizada."],"The episodes below are currently being refreshed from disk":[null,"Os episódios abaixo estão atualmente sendo atualizados no disco"],"Currently downloading subtitles for this show":[null,"Neste momento estão sendo baixados legendas para esta serie"],"This show is queued to be refreshed.":[null,"Esta série está na fila para ser atualizado."],"This show is queued and awaiting an update.":[null,"Essa série esta na fila e aguardando uma atualização."],"This show is queued and awaiting subtitles download.":[null,"Essa série esta na fila e aguardando legendas para download."],"Resume":[null,"Continuar"],"Pause":[null,"Pausar"],"Remove":[null,"Remover"],"Re-scan files":[null,"Re-escanear Arquivos"],"Force Full Update":[null,"Forçar a atualização completa"],"Update show in KODI":[null,"Atualizar série no KODI"],"Update show in Emby":[null,"Atualizar Série no Emby"],"Hide specials":[null,"Ocultar especiais"],"Show specials":[null,"Mostrar especiais"],"Preview Rename":[null,"Prever renomeação"],"Download Subtitles":[null,"Baixar legendas"],"No scene exceptions":[null,"Sem exceções da \"Scene\""],"Invalid show ID":[null,"ID da série inválida"],"Unable to find the specified show":[null,"Não é possível encontrar a série especificada"],"Unable to retreive Fansub Groups from AniDB.":[null,"Não é possível recuperar grupos de \"Fansubs\" do AniDB."],"Edit Show":[null,"Editar Série"],"Unable to refresh this show: {error}":[null,"Não foi possível atualizar a série: {error}"],"New location <tt>{location}</tt> does not exist":[null,"Não existe a nova localização <tt>{location}</tt>"],"Unable to update show: {error}":[null,"Não foi possível atualizar a série: {error}"],"Unable to force an update on scene exceptions of the show.":[null,"Não é possível forçar uma atualização das exceções da \"Scene\" do seriado."],"Unable to force an update on scene numbering of the show.":[null,"Não é possível forçar uma atualização das numerações da \"Scene\" do seriado."],"{num_errors:d} error{plural} while saving changes:":[null,"{num_errors:d} erro{plural} ao gravar as alterações:"],"{show_name} has been {paused_resumed}":[null,"{show_name} foi {paused_resumed}"],"resumed":[null,"reiniciado"],"paused":[null,"em pausa"],"{show_name} has been {deleted_trashed} {was_deleted}":[null,"{show_name} foi {deleted_trashed} {was_deleted}"],"deleted":[null,"excluído"],"trashed":[null,"eliminado"],"(media untouched)":[null,"(mídia não tocada)"],"(with all related media)":[null,"(com tudo relacionado a mídia)"],"Unable to refresh this show.":[null,"Não foi possível atualizar este seriado."],"Unable to update this show.":[null,"Não foi possível atualizar este seriado."],"Library update command sent to KODI host(s)): {kodi_hosts}":[null,"Comando de atualização de biblioteca enviado para KODI host(s)): {kodi_hosts}"],"Unable to contact one or more KODI host(s)): {kodi_hosts}":[null,"Não é possível conectar com um ou mais host(s)) KODI: {kodi_hosts}"],"Library update command sent to Plex Media Server host: {plex_server}":[null,"Comando de atualização de biblioteca enviado para Plex Media Server host: {plex_server}"],"Unable to contact Plex Media Server host: {plex_server}":[null,"Não é possível conectar ao Plex Media Server host: {plex_server}"],"Library update command sent to Emby host: {emby_host}":[null,"Comando de atualização de biblioteca enviado para Emby host: {emby_host}"],"Unable to contact Emby host: {emby_host}":[null,"Não é possível conectar Emby host: {emby_host}"],"You must specify a show and at least one episode":[null,"Você deve especificar um Seriado de pelo menos um episódio"],"Invalid status":[null,"Status inválido"],"Backlog was automatically started for the following seasons of <b>{show_name}</b>":[null,"Lista de pendências foi iniciada automaticamente para os seguintes seriados de <b>{show_name}</b>"],"Season":[null,"Temporada"],"Backlog started":[null,"Lista de pendências foi iniciada"],"Retrying Search was automatically started for the following season of <b>{show_name}</b>":[null,"Nova tentativa de pesquisa foi iniciado automaticamente para a temporada seguinte de <b>{show_name}</b>"],"Retry Search started":[null,"Nova tentativa de busca iniciada"],"You must specify a show":[null,"Você deve especificar uma série"],"Can't rename episodes when the show dir is missing.":[null,"Não é possível renomear episódios quando o diretório do seriado dir está faltando."],"New subtitles downloaded: {new_subtitle_languages}":[null,"Novas Legendas baixadas: {new_subtitle_languages}"],"No subtitles downloaded":[null,"Nenhuma legenda baixada"],"IRC":[null,"IRC"],"Could not load news from the repo. [Click here for news.md])({news_url})":[null,"Não foi possível carregar as notícias do repo. [Clique aqui para news.md]) ({news_url})"],"The was a problem connecting to github, please refresh and try again":[null,"Ouve um problema na conexão com o github, por favor atualize e tente novamente"],"Could not load changes from the repo. [Click here for CHANGES.md]({changes_url})":[null,"Não foi possível carregar alterações do repo. [Clique aqui para CHANGES.md] ({changes_url})"],"Changelog":[null,"Registro de alterações"],"Post Processing":[null,"Pós-processamento"],"Add Shows":[null,"Adicionar séries"],"No folders selected.":[null,"Nenhuma pasta selecionada."],"New Show":[null,"Nova Série"],"Trending Shows":[null,"Séries em alta"],"Popular Shows":[null,"Séries populares"],"Most Anticipated Shows":[null,"Séries mais aguardados aguardadas"],"Most Collected Shows":[null,"Séries mais baixadas"],"Most Watched Shows":[null,"Séries mais assistidas"],"Most Played Shows":[null,"Séries mais vistas"],"Recommended Shows":[null,"Séries recomendadas"],"New Shows":[null,"Novas séries"],"Season Premieres":[null,"Temporada de estréia"],"Existing Show":[null,"Show existente"],"No root directories setup, please go back and add one.":[null,"Nenhum diretório raiz de instalação, por favor volte e adiciona um."],"Show added":[null,"Série adicionada"],"Adding the specified show {show_name}":[null,"Adicionando a série especificada {show_name}"],"Missing params, no Indexer ID or folder: {show_to_add} and {root_dir}/{show_path}":[null,"Faltando parâmetros, nenhum ID de indexador ou pasta: {show_to_add} e {root_dir}/{show_path}"],"Unknown error. Unable to add show due to problem with show selection.":[null,"Erro desconhecido. Não é possível adicionar a série devido a um problema com a série escolhida."],"Unable to add show":[null,"Não é possível adicionar série"],"Folder {show_dir} exists already":[null,"Diretório {show_dir} já existe"],"Unable to create the folder {show_dir}, can't add the show":[null,"Não foi possível criar a pasta {show_dir}, série não adicionada"],"Adding the specified show into {show_dir}":[null,"Adicionando a série especificada em {show_dir}"],"Shows Added":[null,"Séries adicionadas"],"Automatically added {num_shows} from their existing metadata files":[null,"Adicionado automaticamente {num_shows} de seus arquivos de metadados existentes"],"Mass Update":[null,"Atualização em massa"],"Episode Overview":[null,"Visão geral do episódio"],"Missing Subtitles":[null,"Legendas em falta"],"Backlog Overview":[null,"Visão geral de dependências"],"Mass Edit":[null,"Editor em massa"],"Unable to update show: {excption_format}":[null,"Não é possível atualizar a série: {excption_format}"],"Unable to refresh show {show_name}: {excption_format}":[null,"Não é possível atualizar o seriado {show_name}: {excption_format}"],"Errors encountered":[null,"Erros encontrados"],"Updates":[null,"Atualizações"],"Refreshes":[null,"Atualizações"],"Renames":[null,"Renomeações"],"Subtitles":[null,"Legendas"],"The following actions were queued":[null,"As seguintes ações foram adicionadas à fila"],"Failed Downloads":[null,"Downloads Falhados"],"Manage Searches":[null,"Gerenciar as buscas"],"Backlog search started":[null,"Início de pesquisa de lista de dependências"],"Daily search started":[null,"Iniciado a busca diária"],"Find propers search started":[null,"Pesquisa iniciada"],"Subtitle search started":[null,"Pesquisa de legendas iniciada"],"Remove Selected":[null,"Remover selecionados"],"Clear History":[null,"Limpar histórico"],"Trim History":[null,"Encurtar histórico"],"Selected history entries removed":[null,"Os dados do histórico selecionados foram removidos"],"History cleared":[null,"Histórico apagado"],"Removed history entries older than 30 days":[null,"Remover entradas do histórico mais antigas do que 30 dias"],"General":[null,"Geral"],"Backup/Restore":[null,"Backup/Restaurar"],"Search Settings":[null,"Configurações de pesquisa"],"Search Providers":[null,"Provedores de pesquisa"],"Subtitles Settings":[null,"Configurações de legendas"],"Notifications":[null,"Notificações"],"Anime":[null,"Anime"],"SickRage Configuration":[null,"Configuração do SickRage"],"Config - Shares":[null,""],"Windows Shares Configuration":[null,""],"Saved Shares":[null,""],"Your Windows share settings have been saved":[null,""],"Config - General":[null,"Configuração - geral"],"General Configuration":[null,"Configuração geral"],"Saved Defaults":[null,"Padrões salvos"],"Your \"add show\" defaults have been set to your current selections.":[null,"Os padrões de \"adicionar série\" foram definidos para suas seleções atuais."],"Unable to create directory {directory}, log directory not changed.":[null,"Não é possível criar o diretório {directory}, diretório de log não alterado."],"Unable to create directory {directory}, https cert directory not changed.":[null,"Não é possível criar o diretório {directory}, o diretório da chave https não foi mudado."],"Unable to create directory {directory}, https key directory not changed.":[null,"Não é possível criar o diretório {directory}, o diretório da chave https não foi mudado."],"Error(s) Saving Configuration":[null,"Erro (s) a guardar a configuração"],"Configuration Saved":[null,"Configuração salva"],"Config - Backup/Restore":[null,"Config - Backup/Restaurar"],"Config - Episode Search":[null,"Config - Busca de episódios"],"Config - Post Processing":[null,"Config - pós-processamento"],"Unpacking Not Supported, disabling unpack setting":[null,"Descompactação não suportado, desabilitando configuração de descompactar"],"You tried saving an invalid normal naming config, not saving your naming settings":[null,"Você tentou salvar uma configuração de nomeação inválida, suas configurações de nomeação não foram salvas"],"You tried saving an invalid anime naming config, not saving your naming settings":[null,"Você tentou salvar um arquivo de configuração de nomeação de anime inválido, Suas configurações não serão salvas"],"Config - Providers":[null,"Config - Provedores"],"No Provider Name specified":[null,"Nenhum nome de provedor especificado"],"No Provider Url specified":[null,"Nenhuma URL de provedor especificado"],"No Provider Api key specified":[null,"Nenhuma chave Api para o provedor especificado"],"Config - Notifications":[null,"Config - notificações"],"Config - Subtitles":[null,"Config - legendas"],"Config - Anime":[null,"Config - Anime"],"Clear Errors":[null,"Limpar erros"],"Clear Warnings":[null,"Limpar avisos"],"Submit Errors":[null,"Enviar erros"],"Logs & Errors":[null,"Logs & erros"],"Log File":[null,"Arquivo de log"],"Logs":[null,"Logs"],"This is a test notification from SickRage":[null,"Esta é uma notificação de teste do SickRage"],"Choose Directory":[null,""],"Select log file folder location":[null,""],"Select CSS file":[null,""],"Select backup folder to save to":[null,""],"Select backup files to restore":[null,""],"Please fill out the necessary fields above.":[null,""],"<b>Step 1:</b> Confirm Authorization":[null,""],"Check blacklist name; the value needs to be a trakt slug":[null,""],"You must provide a recipient email address!":[null,""],"You didn't supply a Pushbullet api key":[null,""],"Don't forget to save your new pushbullet settings.":[null,""],"Select TV Download Directory":[null,""],"Select Unpack Directory":[null,""],"This pattern is invalid.":[null,"Esse padrão é inválido."],"This pattern would be invalid without the folders, using it will force \"Season Folders\" on for all shows.":[null,"Esse padrão seria inválido sem as pastas, usá-lo irá forçar \"pastas de Temporadas\" para todos as séries."],"This pattern is valid.":[null,"Este padrão é válido."],"Select .nzb black hole/watch location":[null,""],"Select .torrent black hole/watch location":[null,""],"Select .torrent download location":[null,""],"Minimum seeding time is":[null,""],"URL to your uTorrent client (e.g. http://localhost:8000)":[null,""],"Stop seeding when inactive for":[null,""],"URL to your Transmission client (e.g. http://localhost:9091)":[null,""],"URL to your Deluge client (e.g. http://localhost:8112)":[null,""],"IP or Hostname of your Deluge Daemon (e.g. scgi://localhost:58846)":[null,""],"URL to your Synology DS client (e.g. http://localhost:5000)":[null,""],"URL to your rTorrent client (e.g. scgi://localhost:5000 <br> or https://localhost/rutorrent/plugins/httprpc/action.php)":[null,""],"URL to your qBittorrent client (e.g. http://localhost:8080)":[null,""],"URL to your MLDonkey (e.g. http://localhost:4080)":[null,""],"URL to your putio client (e.g. http://localhost:8080)":[null,""],"<a herf=\"https://app.put.io/oauth/apps/new\" target=\"_blank\"> Create a new OAuth app for put.io</a>":[null,""],"Put.io Parent Folder":[null,""],"Put.io OAuth Token":[null,""],"Show Episodes":[null,"Mostrar episódios"],"Hide Episodes":[null,""],"Select Show Location":[null,""],"Select Unprocessed Episode Folder":[null,""],"DELETED":[null,""],"Resume updating the log on this page.":[null,"Retomar a atualização do log nessa página."],"Pause updating the log on this page.":[null,"Pausar a atualização do log nessa página."],"searching {searchingFor}...":[null,""],"search timed out, try again or try another indexer":[null,""],"loading folders...":[null,""],"Loading...":[null,"Carregando..."],"You have reached this page by accident, please check the url.":[null,"Chegou a esta página por acidente, por favor, verifique o url."],"A mako error has occured.<br>\n If this happened during an update a simple page refresh may be the solution.<br>\n Mako errors that happen during updates may be a one time error if there were significant ui changes.":[null,"Ocorreu um erro de \"Mako\". <br>\nSe isto aconteceu durante uma atualização, atualizar a página deve solucionar. <br>\nOs erros de \"Mako\" que ocorrem durante as atualizações podem ser uma ocorrência sozinha se houve mudanças significativas na interface do usuário."],"Show/Hide Error":[null,"Mostrar/ocultar erro"],"Add New Show":[null,"Adicionar um novo seriado"],"For shows that you haven't downloaded yet, this option finds a show on theTVDB.com, creates a directory for it's episodes, and adds it to SickRage.":[null,"Para séries ainda não transferidas, esta opção encontra uma série no theTVDB.com, cria a pasta para seus episódios, e adiciona-a ao SickRage."],"Add From Trakt Lists":[null,"Adicionar de uma lista do Trakt"],"For shows that you haven't downloaded yet, this option lets you choose from a show from one of the Trakt lists to add to SickRage.":[null,"Para séries ainda não transferidas, essa opção deixa você escolher um programa da lista do Trakt e adiciona ao SickRage."],"Add From IMDB's Popular Shows":[null,"Adicionar a partir das séries populares do IMDb"],"View IMDB's list of the most popular shows. This feature uses IMDB's MOVIEMeter algorithm to identify popular TV Series.":[null,"Ver lista das séries mais populares do IMDB. Esse recurso usa algoritmo MOVIEMeter do IMDB para identificar séries de TV popularares."],"Add Existing Shows":[null,"Adicionar séries existentes"],"Use this option to add shows that already have a folder created on your hard drive. SickRage will scan your existing metadata/episodes and add the show accordingly.":[null,"Use esta opção para adicionar séries que já possuem uma pasta criada no seu disco rígido. O SickRage irá verificar os seus metadados/episódios existentes e adicionara a série de acordo."],"Add Existing Show":[null,"Adicionar série existente"],"Manage Directories":[null,"Gerenciar diretórios"],"Customize Options":[null,"Personalização"],"SickRage can add existing shows, using the current options, by using locally stored NFO/XML metadata to eliminate user interaction. If you would rather have SickRage prompt you to customize each show, then use the checkbox below.":[null,"SickRage pode adicionar séries existentes, usando as opções atuais, usando metadados NFO/XML armazenados localmente para eliminar a interação do usuário. Se você prefere que o SickRage lhe pergunte para personalizar cada série, marque a caixa de dialogo seguinte."],"Prompt me to set settings for each show":[null,"Pedir-me para definir as configurações para cada seriado"],"Displaying folders within these directories which aren't already added to SickRage":[null,"Exibindo pastas dentro desses diretórios que ainda não estão adicionados ao SickRage"],"Submit":[null,"Confirmar"],"Find a show on theTVDB":[null,"Encontrar um seriado no theTVDB"],"Show retrieved from existing metadata":[null,"Série recuperada apartir do metadado existente"],"All Indexers":[null,"Todos os indexadores"],"Search":[null,"Procurar"],"This will only affect the language of the retrieved metadata file contents and episode filenames.":[null,"Isto apenas afetará o idioma do conteúdo do arquivo de metadados e nomes de episódios obtidos."],"This <b>DOES NOT</b> allow SickRage to download non-english TV episodes!":[null,"Isto <b>Não permite</b> o SickRage transferir episódios que não estejam em inglês!"],"Pick the parent folder":[null,"Escolher a pasta mãe"],"Pre-chosen Destination Folder":[null,"Pasta de destino previamente escolhida"],"Customize options":[null,"Personalização"],"Add Show":[null,"Adicionar série"],"Skip Show":[null,"Ignorar seriado"],"Sort By":[null,"Ordenar por"],"Name":[null,"Nome"],"Original":[null,"Original"],"Votes":[null,"Votos"],"Rating":[null,"Classificações"],"Rating > Votes":[null,"Classificação > votos"],"Sort Order":[null,"Ordem de classificação"],"Asc":[null,"Asc"],"Desc":[null,"Desc"],"Fetching of IMDB Data failed. Are you online?":[null,"A busca de dados do IMDB falhou. Está online?"],"Exception":[null,"Exceção"],"Select Trakt List":[null,"Selecione a lista do Trakt"],"Most Anticipated":[null,"Mais antecipadas"],"Trending":[null,"Tendência"],"Popular":[null,"Popular"],"Most Watched":[null,"Mais assistidas"],"Most Played":[null,"Mais reproduzidas"],"Most Collected":[null,"Maioria coletados"],"Recommended":[null,"Recomendadas"],"Toggle navigation":[null,"Ativar/desativar navegação"],"Profile":[null,"Perfil"],"JSONP":[null,"JSONP"],"Back to SickRage":[null,"Voltar para o SickRage"],"Parameters":[null,"Parâmetros"],"Required":[null,"Obrigatário"],"Description":[null,"Descrição"],"Type":[null,"Tipo"],"Default value":[null,"Valor Padrão"],"Allowed values":[null,"Valores permitidos"],"Playground":[null,"Playground"],"Clear":[null,"Apagar"],"Yes":[null,"Sim"],"No":[null,"Não"],"season":[null,"temporada"],"episode":[null,"episódio"],"Python Version":[null,"Versão do Python"],"SSL Version":[null,"Versão SSL"],"OS":[null,"Sistema operacional"],"Locale":[null,"Idioma"],"User":[null,"Usuário"],"Program Folder":[null,"Pasta da série"],"Config File":[null,"Arquivo de configuração"],"Database File":[null,"Arquivo da base de dados"],"Cache Folder":[null,"Pasta de cache"],"Log Folder":[null,"Pasta do \"log\""],"Arguments":[null,"Argumentos"],"Web Root":[null,"Web Root"],"Website":[null,"Site"],"Wiki":[null,"Wiki"],"Source":[null,"Fonte"],"IRC Chat":[null,"Chat IRC"],"AnimeDB Settings":[null,"Configurações do AnimeDB"],"Look & Feel":[null,"Aparência"],"AniDB is non-profit database of anime information that is freely open to the public":[null,"AniDB uma base de dados sem fins lucrativos de informações de anime que é aberta ao público"],"Enable":[null,"Habilitar"],"should SickRage use data from AniDB?":[null,"o SickRage deve usar dados do AniDB?"],"AniDB Username":[null,"Nome de usuário da AniDB"],"username of your AniDB account":[null,"usuário da sua conta do AniDB"],"AniDB Password":[null,"Senha da AniDB"],"password of your AniDB account":[null,"senha da sua conta do AniDB"],"AniDB MyList":[null,"AniDB MyList"],"do you want to add the PostProcessed episodes to the MyList?":[null,"você quer adicionar os episódios pós-processados para o \"MyList\"?"],"Look and Feel":[null,"Aparência"],"How should the anime functions show and behave.":[null,"Como as funções do anime devem se comportar e ser exibidas."],"Split show lists":[null,"Separar séries em listas"],"separate anime and normal shows in groups":[null,"separar anime e séries em grupos diferentes"],"Split in tabs":[null,"Dividido em abas"],"use tabs for when splitting show lists":[null,"usar as abas para dividir as listas de séries"],"Restore":[null,"Restaurar"],"Backup your main database file and config.":[null,"Fazer backup do seu arquivo de base de dados principal e configurações."],"Select the folder you wish to save your backup file to":[null,"Selecione a pasta que você deseja salvar seu arquivo de backup"],"Restore your main database file and config.":[null,"Restaurar seu arquivo de banco de dados e configuração."],"Select the backup file you wish to restore":[null,"Selecione o arquivo de backup que você deseja restaurar"],"Misc":[null,"Diversos"],"Interface":[null,"Interface"],"Advanced Settings":[null,"Configurações avançadas"],"Startup options. Indexer options. Log and show file locations.":[null,"Opções de inicialização. Opções de indexador. Locais de arquivo de log e série."],"Some options may require a manual restart to take effect.":[null,"Algumas opções podem requerer uma reinicialização manual para terem efeito."],"Default Indexer Language":[null,"Idioma de indexador padrão"],"for adding shows and metadata providers":[null,"para adicionar séries e provedores de metadados"],"Launch browser":[null,"Iniciar navegador"],"open the SickRage home page on startup":[null,"abrir a página inicial do SickRage na inicialização"],"Initial page":[null,"Página inicial"],"Shows":[null,"Séries"],"when launching SickRage interface":[null,"ao iniciar a interface do SickRage"],"Choose hour to update shows":[null,"Escolher a hora que deseja atualizar as séries"],"with information such as next air dates, show ended, etc. Use 15 for 3pm, 4 for 4am etc.":[null,"com informações como datas de próxima exibição, show terminado, etc. Use 15 para 3pm, 4 para 4am etc."],"note":[null,"nota"],"minutes are randomized each time SickRage is started":[null,"os minutos são randomizados cada vez que SickRage é iniciado"],"Send to trash for actions":[null,"Enviar para o lixo por ações"],"when using show \"Remove\" and delete files":[null,"quando se usa \"Excluir\" de uma série e excluir arquivos"],"on scheduled deletes of the oldest log files":[null,"em atualizações programadas dos arquivos de log mais antigos"],"selected actions use trash (recycle bin) instead of the default permanent delete":[null,"acções seleccionadas usar lixo (lixeira) em vez do padrão permanente de exclusão"],"Log file folder location":[null,"Local de pasta de arquivo de log"],"Number of Log files saved":[null,"Número de arquivos de Log salvos"],"number of log files saved when rotating logs (default: 5) (REQUIRES RESTART)":[null,"número de arquivos de log, salvados quando os logs de giro (padrão: 5) (requer reinicialização)"],"Size of Log files saved":[null,"Tamanho dos arquivos de Log salvos"],"maximum size in MB of the log file (default: 1MB) (REQUIRES RESTART)":[null,"tamanho máximo em MB do arquivo de log (padrão: 1MB) (REQUER REINICIALIZAÇÃO)"],"Use initial indexer set to":[null,"Indexador inicial de uso definido predefenido"],"as the default selection when adding new shows":[null,"como a seleção padrão ao adicionar novas séries"],"Timeout show indexer at":[null,"Valor de \"Time Out\" do indexador"],"seconds of inactivity when finding new shows (default:20)":[null,"segundos de inatividade quando encontrar novas séries (padrão: 20)"],"Show root directories":[null,"Diretórios raiz do Seriado"],"where the files of shows are located":[null,"onde se encontram os arquivos dos seriados"],"Save Changes":[null,"Salvar alterações"],"Options for software updates.":[null,"Opções para atualizações de software."],"Check software updates":[null,"Procurar por atualizações"],"and display notifications when updates are available. Checks are run on startup and at the frequency set below*":[null,"e exibir notificações quando as atualizações estiverem disponíveis. Verificações são executados na inicialização e na frequência definida abaixo*"],"Automatically update":[null,"Atualizar automaticamente"],"fetch and install software updates. Updates are run on startup and in the background at the frequency set below*":[null,"buscar e instalar atualizações de software. Atualizações são executadas na inicialização e em segundo plano na frequência definida abaixo*"],"Check the server every*":[null,"Verifique o servidor a cada*"],"hours for software updates (default:1)":[null,"horas para procurar atualizações de software (padrão: 1)"],"Notify on software update":[null,"Notificar sobre a atualização de software"],"send a message to all enabled notifiers when SickRage has been updated":[null,"enviar uma mensagem para todos os notificadores habilitados quando SickRage foi atualizado"],"User Interface":[null,"Interface de usuário"],"Options for visual appearance.":[null,"Opções para aparência visual."],"Interface Language":[null,"Idioma da Interface"],"System Language":[null,"Idioma do sistema"],"for appearance to take effect, save then refresh your browser":[null,"para que a aparência seja efetivada, salvar e em seguida, atualize seu navegador"],"Display theme":[null,"Tema"],"Dark":[null,"Escuro"],"Light":[null,"Claro"],"Use a background image":[null,"Usar uma imagem de fundo"],"use a custom image as background for SickRage":[null,"usar uma imagem personalizada como plano de fundo do SickRage"],"Background Path":[null,"Diretório do plano de fundo"],"Path to the background image":[null,"Diretório para a imagem de plano de fundo"],"Show fanart in the background":[null,"Fanart do seriado no fundo"],"on the show summary page":[null,"na página de resumo do seriado"],"Fanart transparency":[null,"Transparência da FanArt"],"transparency of the fanart in the background":[null,"transparência da arte no plano de fundo"],"Use a custom stylesheet file":[null,""],"use a custom .css file to style SickRage (for advanced users)":[null,""],"Stylesheet File Path":[null,""],"Path to the stylesheet (.css) file":[null,""],"Show all seasons":[null,"Mostrar todas as temporadas"],"Sort with \"The\", \"A\", \"An\"":[null,"Ordenar usando \"The\", \"A\", \"An\""],"include articles (\"The\", \"A\", \"An\") when sorting show lists":[null,"incluir (\"The\", \"A\", \"An\") quando ordenar as listas de séries"],"Missed episodes range":[null,"Gama de episódios perdidos"],"set the range in days of the missed episodes in the Schedule page":[null,"definir o intervalo em dias dos episódios perdidos na Agenda"],"Display fuzzy dates":[null,"Exibir datas difusos"],"move absolute dates into tooltips and display e.g. \"Last Thu\", \"On Tue\"":[null,"mover datas absolutas em dicas de ferramentas e exibir, por exemplo, \"última quinta-feira\", \"Na terça-feira\""],"Trim zero padding":[null,"Apagar espaços"],"remove the leading number \"0\" shown on hour of day, and date of month":[null,"remover o número \"0\" à mostrada na hora do dia e data de mês"],"Date style":[null,"Estilo da data"],"Use System Default":[null,"Usar padrão do sistema"],"Time style":[null,"Estilo do tempo"],"seconds are only shown on the History page":[null,"segundos são mostrado apenas na página de Histórico"],"Timezone":[null,"Fuso horário"],"Local":[null,"Local"],"Network":[null,"Emissora"],"display dates and times in either your timezone or the shows network timezone":[null,"exibir datas e horas em seu fuso horário ou o fuso de horário da rede"],"use local timezone to start searching for episodes minutes after show ends (depends on your dailysearch frequency)":[null,"usar o fuso horário local para começar a procurar episódios minutos após o programa terminar (depende de sua frequência de busca diária)"],"Download url":[null,"URL de Download"],"URL where the shows can be downloaded.":[null,"URL onde as séries podem ser baixadas."],"Web Interface":[null,"Interface Web"],"it is recommended that you enable a username and password to secure SickRage from being tampered with remotely.":[null,"é recomendável que você habilite um usuário e senha para proteger o SickRage de ser alterado remotamente."],"these options require a manual restart to take effect.":[null,"essas opções são necessárias para que uma reinicialização manual seja realizada."],"API key":[null,"Chave de API"],"used to give 3rd party programs limited access to SickRage":[null,"usado por programas de terceiros para acesso limitado ao SickRage"],"you can try all the features of the API":[null,"você pode tentar todos os recursos da API"],"here":[null,"aqui"],"HTTP logs":[null,"Logs de HTTP"],"enable logs from the internal Tornado web server":[null,"ativar logs do servidor de web interno do Tornado"],"HTTP username":[null,"Usuário HTTP"],"set blank for no login":[null,"deixe em branco se não quiser login"],"HTTP password":[null,"Senha HTTP"],"blank = no authentication":[null,"em branco = sem autenticação"],"HTTP port":[null,"Porta HTTP"],"web port to browse and access SickRage (default:8081)":[null,"porta Web para navegar e acessar SickRage (padrão: 8081)"],"Notify on login":[null,"Notificar no login"],"enable to be notified when a new login happens in webserver":[null,"marque se quiser ser notificado quando ocorrer um novo login"],"Listen on IPv6":[null,"Habilitar IPv6"],"attempt binding to any available IPv6 address":[null,"tentativa de ligação para qualquer endereço IPv6 disponível"],"Enable HTTPS":[null,"Habilitar HTTPS"],"enable access to the web interface using a HTTPS address":[null,"permitir acesso à interface web utilizando um endereço HTTPS"],"HTTPS certificate":[null,"Certificado HTTPS"],"file name or path to HTTPS certificate":[null,"nome do arquivo ou caminho do certificado HTTPS"],"HTTPS key":[null,"Chave HTTPS"],"file name or path to HTTPS key":[null,"nome do arquivo ou caminho para chave HTTPS"],"Reverse proxy headers":[null,"Cabeçalhos de proxy reverso"],"accept the following reverse proxy headers (advanced)...":[null,"aceitar os seguintes cabeçalhos de proxy reverso (avançados)..."],"(X-Forwarded-For, X-Forwarded-Host, and X-Forwarded-Proto)":[null,""],"CPU throttling":[null,"Otimização de CPU"],"Normal (default). High is lower and Low is higher CPU use":[null,"Normal (padrão). Alto é maior e Baixo é menor uso de CPU"],"Anonymous redirect":[null,"Redirecionamento anônimo"],"backlink protection via anonymizer service, must end in \"?\"":[null,"proteção de backlink via serviço anonymizer, deve terminar em \"?\""],"Enable debug":[null,"Ativar debug"],"enable debug logs":[null,"ativar logs de debug"],"Verify SSL Certs":[null,"Verificar os certificados SSL"],"verify SSL Certificates (Disable this for broken SSL installs (Like QNAP))":[null,"verificar certificados SSL (desativar isso em instalações SSL não funcionais (como no QNAP))"],"No Restart":[null,"Sem reinicialização"],"only shutdown when restarting SR":[null,"só desligar quando reiniciar o SR"],"only select this when you have external software restarting SR automatically when it stops (like FireDaemon)":[null,"apenas selecione isso se você tiver um software externo reinicializando SR automaticamente quando ele parar (como FireDaemon)"],"Encrypt passwords":[null,"Criptografar senhas"],"in the <code>config.ini</code> file":[null,"no arquivo <code>config.ini</code>"],"warning":[null,"aviso"],"passwords must only contain":[null,"senhas devem conter somente"],"ASCII characters":[null,"Caracteres ASCII"],"Unprotected calendar":[null,"Calendário desprotegido"],"allow subscribing to the calendar without user and password":[null,"permitir o acesso ao calendário sem usuário e senha"],"some services like Google Calendar only work this way":[null,"alguns serviços como o Calendário da Google funcionam dessa maneira"],"Google Calendar Icons":[null,"Ícones do Calendário Google"],"show an icon next to exported calendar events in Google Calendar":[null,"mostrar um ícone ao lado dos eventos exportados do calendário no Calendário Google"],"Proxy host":[null,"Servidor proxy"],"blank to disable or proxy to use when connecting to providers":[null,"em branco para desabilitar ou proxy para usar ao se conectar a provedores"],"also use global proxy setting for indexers (tvdb, xem, anidb, etc.)":[null,"adicionalmente usar configurações de proxy global para indexadores (tvdb, xem, anidb, etc.)"],"Skip Remove Detection":[null,"Pular detecção de removidos"],"skip detection of removed files":[null,"ignorar a detecção de arquivos deletados"],"if disabled the episode will be set to the default deleted status":[null,"se desativado os episódios serão selecionados por padrão como deletados"],"Default deleted episode status":[null,"Status padrão de episódios excluídos"],"define the status to be set for media file that has been deleted.":[null,"seleciona o status a ser definido como o arquivo de mídia que foi excluído."],"Archived option will keep previous downloaded quality":[null,"A opção Arquivado manterá a qualidade transferida anteriormente"],"example: Downloaded (1080p WEB-DL) ==> Archived (1080p WEB-DL)":[null,"exemplo: Baixado (1080p WEB-DL) ==> Arquivado (1080p WEB-DL)"],"Options for github related features.":[null,"Opções relacionadas ao github."],"Branch version":[null,"Versão do Branch"],"error: No branches found.":[null,"Erro: Nenhum Branch encontrado."],"select branch to use (restart required)":[null,"selecione o Branch para usar (é necessário reiniciar)"],"Authorization Type":[null,"Tipo da Autorização"],"Username and password":[null,"Usuário e senha"],"Personal access token":[null,"Token de acesso de pessoal"],"You must use a personal access token if you're using \"two-factor authentication\" on GitHub.":[null,"Você deve usar um código token de acesso pessoal se você estiver utilizando a autentificação de dois fatores no GitHub."],"GitHub username":[null,"Usuário GitHub"],"*** (REQUIRED FOR SUBMITTING ISSUES) ***":[null,"*** (NECESSÁRIO PARA SUBMETER ERROS) ***"],"GitHub password":[null,"Senha do GitHub"],"GitHub personal access token":[null,"Código token de acesso pessoal do GitHub"],"Generate Token":[null,"Criar Token"],"Manage Tokens":[null,"Gerenciar Tokens"],"GitHub remote for branch":[null,"GitHub remoto para branch"],"access repo configured remotes (save then refresh browser)":[null,"acesso remoto de repositório de cofigurado (salve e em seguida atualize o navegador)"],"default":[null,"padrão"],"origin":[null,"origin"],"Git executable path":[null,"Caminho do executável Git"],"only needed if OS is unable to locate git from env":[null,"somente necessário se o sistema operacional não localizar o git do env"],"Git reset":[null,"Git reset"],"removes untracked files and performs a hard reset on git branch automatically to help resolve update issues":[null,"remover arquivos não rastreados e executa um hard reset no git automaticamente para ajudar a resolver problemas de atualização"],"Home Theater / NAS":[null,"Home Theater / NAS"],"Devices":[null,"Dispositivos"],"Social":[null,"Social"],"A free and open source cross-platform media center and home entertainment system software with a 10-foot user interface designed for the living-room TV.":[null,"Um sistema multi-plataforma de mídia e entretenimento doméstico de código livre e com interface de usuário designada para a sua sala de TV."],"send KODI commands?":[null,"Enviar comandos para o KODI?"],"Always on":[null,"Sempre ligado"],"log errors when unreachable?":[null,"registrar erros quando inacessível?"],"Notify on snatch":[null,"Notificar no \"Snatch\""],"send a notification when a download starts?":[null,"enviar uma notificação quando um download começar?"],"Notify on download":[null,"Notificar no download"],"send a notification when a download finishes?":[null,"enviar uma notificação quando um download termina?"],"Notify on subtitle download":[null,"Notificar quando baixar a legenda"],"send a notification when subtitles are downloaded?":[null,"enviar uma notificação quando legendas forem baixadas?"],"Update library":[null,"Atualizar a biblioteca"],"update KODI library when a download finishes?":[null,"atualizar a biblioteca KODI quando termina um download?"],"Full library update":[null,"Atualização completa da biblioteca"],"perform a full library update if update per-show fails?":[null,"atualizar toda a biblioteca se a atualização da serie falhar?"],"Only update first host":[null,"Só atualizar o primeiro host"],"only send library updates to the first active host?":[null,"só enviar atualizações de biblioteca para o primeiro host ativo?"],"KODI IP:Port":[null,"KODI IP:Porta"],"host running KODI (eg. 192.168.1.100:8080)":[null,"servidor executando o KODI (ex: 192.168.1.100:8080)"],"(multiple host strings must be separated by commas)":[null,"(várias cadeias de caracteres do host devem ser separadas por vírgulas)"],"Username":[null,"Usuário"],"username for your KODI server (blank for none)":[null,"nome de usuário para seu servidor KODI (em branco para nenhum)"],"Password":[null,"Senha"],"password for your KODI server (blank for none)":[null,"senha para seu servidor KODI (em branco para nenhuma)"],"Click below to test.":[null,"Clique abaixo para testar."],"Experience your media on a visually stunning, easy to use interface on your Mac connected to your TV. Your media library has never looked this good!":[null,"Experimente a sua mídia em uma interface visualmente impressionante e fácil de usar no seu PC conectado à sua TV. Sua biblioteca de mídia nunca pareceu tão boa!"],"For sending notifications to Plex Home Theater (PHT) clients, use the KODI notifier with port <b>3005</b>.":[null,"Para enviar notificações para clientes Plex Home Theater (PHT), use o notificador KODI com porta <b>3005</b>."],"send Plex Media Server library updates?":[null,"Enviar atualizações de biblioteca ao Plex Media Server?"],"Plex Media Server Auth Token":[null,"Token de autenticação para Plex Media Server"],"auth token used by Plex":[null,"token de autentificação usado por Plex"],"Update Library":[null,"Atualizar a biblioteca"],"update Plex Media Server library when a download finishes":[null,"atualizar a biblioteca Plex Media Server quando termina o download"],"Plex Media Server IP:Port":[null,"Plex Media Server IP:Porta"],"one or more hosts running Plex Media Server<br/>(eg. 192.168.1.1:32400, 192.168.1.2:32400)":[null,"um ou mais hosts executando o Plex Media Server<br/>(exemplo: 192.168.1.1:32400, 192.168.1.2:32400)"],"HTTPS":[null,"HTTPS"],"use https for plex media server requests?":[null,"usar https para solicitações de servidor de mídia plex?"],"Click below to test Plex Media Server(s)":[null,"Clique abaixo para testar o Plex Media Server(s)"],"Test Plex Media Server":[null,"Testar Plex Media Server"],"Plex Home Theater":[null,"Plex Home Theater"],"send Plex Home Theater notifications?":[null,"enviar notificações para o Home Theater Plex?"],"Plex Home Theater IP:Port":[null,"Plex Home Theater IP:Porta"],"one or more hosts running Plex Home Theater<br>(eg. 192.168.1.100:3000, 192.168.1.101:3000)":[null,"um ou mais hosts executando o Plex Home Theater <br>(por exemplo,. 192.168.1.100:3000, 192.168.1.101:3000)"],"Click below to test Plex Home Theater(s)":[null,"Clique abaixo para testar o Plex Home Theater(s)"],"Test Plex Home Theater":[null,"Testar Plex Home Theater"],"some Plex Home Theaters <b class=\"boldest\">do not</b> support notifications e.g. Plexapp for Samsung TVs":[null,"alguns Home Theaters Plex <b class=\"boldest\"> não </b> suportam notificações, por exemplo Plexapp para TVs Samsung"],"Emby":[null,"Emby"],"A home media server built using other popular open source technologies.":[null,"Um servidor doméstico de mídia construído usando outras tecnologias populares de código-fonte aberto."],"send update commands to Emby?":[null,"enviar comandos de atualização para o Emby?"],"Emby IP:Port":[null,"Emby IP:Porta"],"host running Emby (eg. 192.168.1.100:8096)":[null,"host a executar Emby (ex: 192.168.1.100:8096)"],"Emby API Key":[null,"Chave de API do Emby"],"Networked Media Jukebox":[null,"Media Jukebox em rede"],"The Networked Media Jukebox, or NMJ, is the official media jukebox interface made available for the Popcorn Hour 200-series.":[null,"Networked Media Jukebox, o MNJ, é a interface de jukebox de meios de comunicação oficiais disponibilizada para o Popcorn Hour 200-série."],"send update commands to NMJ?":[null,"enviar comandos de atualização para NMJ?"],"Popcorn IP address":[null,"Endereço IP do Popcorn"],"IP address of Popcorn 200-series (eg. 192.168.1.100)":[null,"Endereço IP da Popcorn 200-series (eg. 192.168.1.100)"],"Get settings":[null,"Obter configurações"],"Get Settings":[null,"Obter configurações"],"the Popcorn Hour device must be powered on and NMJ running.":[null,"o dispositivo conectado deve ter Popcorn Hour e NMJ também deve estar em funcionamento."],"NMJ database":[null,"Base de dados NMJ"],"automatically filled via the 'Get Settings' button.":[null,"preenchida automaticamente através do botão 'Obter configurações'."],"NMJ mount url":[null,"MNJ montagem de url"],"Networked Media Jukebox v2":[null,"Rede Jukebox v2"],"The Networked Media Jukebox, or NMJv2, is the official media jukebox interface made available for the Popcorn Hour 300 & 400-series.":[null,"Networked Media Jukebox, o MNJ, é a interface de jukebox de meios de comunicação oficiais disponibilizada para o Popcorn Hour 200-série."],"send update commands to NMJv2?":[null,"enviar comandos de atualização para NMJv2?"],"IP address of Popcorn 300/400-series (eg. 192.168.1.100)":[null,"Endereço IP do Popcorn 300/400-series (eg. 192.168.1.100)"],"Database location":[null,"Localização da base de dados"],"Database instance":[null,"Uso do Banco de Dados"],"adjust this value if the wrong database is selected.":[null,"ajuste esse valor, se for selecionado o banco de dados errado."],"Find database":[null,"Encontrar a base de dados"],"Find Database":[null,"Encontrar a base de dados"],"the Popcorn Hour device must be powered on.":[null,"o dispositivo Popcorn Hour deve ser ligado e está funcionando com o Mnj."],"NMJv2 database":[null,"Base de dados NMJv2"],"automatically filled via the 'Find Database' buttons.":[null,"preenchida automaticamente através do botão 'Obter configurações'."],"Synology":[null,"Synology"],"The Synology DiskStation NAS.":[null,"A Synology DiskStation NAS."],"Synology Indexer is the daemon running on the Synology NAS to build its media database.":[null,"Synology indexador é o daemon rodando sobre o Synology para construir sua base de dados de mídia."],"send Synology notifications?":[null,"Enviar notificações Synology?"],"requires SickRage to be running on your Synology NAS.":[null,"requer que seu SickRage seja executado no NAS Synology."],"Synology Indexer":[null,"Synology indexador"],"Synology Notifier is the notification system of Synology DSM":[null,"Synology notificador é o sistema de notificação de Synology DSM"],"send notifications to the Synology Notifier?":[null,"Enviar notificações para o notificador Synology?"],"pyTivo":[null,"pyTivo"],"pyTivo is both an HMO and GoBack server. This notifier will load the completed downloads to your Tivo.":[null,"pyTivo é o servidor de um HMO e o GoBack. Este notificador carregará os downloads concluídos para seu Tivo."],"send notifications to pyTivo?":[null,"Enviar notificações para o pyTivo?"],"requires the downloaded files to be accessible by pyTivo.":[null,"requer os arquivos baixados para ser acessar pelo pyTivo."],"pyTivo IP:Port":[null,"pyTivo IP:Porta"],"host running pyTivo (eg. 192.168.1.1:9032)":[null,"servidor executando pyTivo (ex. 192.168.1.1:9032)"],"pyTivo share name":[null,"pyTivo nome do compartilhamento"],"value used in pyTivo Web Configuration to name the share.":[null,"valor usado no pyTivo Web configuração para nomear o compartilhamento."],"Tivo name":[null,"Nome do TiVo"],"(Messages & Settings > Account & System Information > System Information > DVR name)":[null,"(Mensagens & configurações > conta & sistema informações > sistema informações > nome DVR)"],"Growl":[null,"Growl"],"A cross-platform unobtrusive global notification system.":[null,"Um sistema de notificação global discreto e de multi-plantaforma."],"send Growl notifications?":[null,"Enviar notificações Growl?"],"Growl IP:Port":[null,"Growl IP:Porta"],"host running Growl (eg. 192.168.1.100:23053)":[null,"servidor executando Growl (ex. 192.168.1.100:23053)"],"may leave blank if SickRage is on the same host.":[null,"pode deixar em branco se SickRage está no mesmo host."],"otherwise Growl <b>requires</b> a password to be used.":[null,"caso contrário, Growl <b>requer</b> uma senha a ser usada."],"Click below to register and test Growl, this is required for Growl notifications to work.":[null,"Clique abaixo para cadastrar e testar o Growl, isso é necessário para as notificações do Growl funcionarem."],"Register Growl":[null,"Registrar o Growl"],"Prowl":[null,"Prowl"],"A Growl client for iOS.":[null,"Cliente Growl para iOS."],"send Prowl notifications?":[null,"Enviar notificações Prowl?"],"Prowl Message Title":[null,"Título da mensagem Prowl"],"Global Prowl API key(s)":[null,"Chave de API Prowl global (s)"],"Prowl API(s) listed here, separated by commas if applicable, will<br> receive notifications for <b>all</b> shows. Your Prowl API key is available at:":[null,"Espreita API(s) listados aqui, separados por vírgulas, se for o caso, serão <br>receber notificações para <b>todos os</b> shows. Sua chave de API Prowl está disponível em:"],"(this field may be blank except when testing.)":[null,"(este campo ficar em branco, exceto quando estiver sendo testado.)"],"Show notification list":[null,"Mostrar a lista de notificação"],"-- Select a Show --":[null,"-- Selecione uma Série --"],"Configure per-show notifications here by entering Prowl API key(s), separated by commas, '\n 'after selecting a show in the drop-down box. Be sure to activate the 'Save for this show' '\n 'button below after each entry.":[null,"Configurar notificações por série aqui digitando a chave de API Prowl (s), separando por vírgulas, ' \n ' após selecionar uma série na caixa suspensa. Não se esqueça de ativar o 'salvar para esta série' ' \n ' botão abaixo após cada entrada."],"Save for this show":[null,"Salver para esta série"],"Prowl priority":[null,"Prioridade do Prowl"],"Very Low":[null,"Muito baixo"],"Moderate":[null,"Moderado"],"Normal":[null,"Normal"],"High":[null,"Alto"],"Emergency":[null,"Emergência"],"priority of Prowl messages from SickRage.":[null,"prioridade de mensagens de Prowl para o SickRage."],"Libnotify":[null,"Libnotify"],"The standard desktop notification API for Linux/*nix systems. This notifier will only function if the pynotify module is installed (Ubuntu/Debian package <a href=\"apt:python-notify\">python-notify</a>).":[null,"A notificação de área de trabalho padrão API para Linux / * nix sistemas. Este notificador somente funcionará se o módulo pynotify estiver instalado (Debian/Ubuntu pacote <a href=\"apt:python-notify\"> python-notify</a>)."],"send Libnotify notifications?":[null,"Enviar notificações Libnotify?"],"Pushover":[null,"Pushover"],"Pushover makes it easy to send real-time notifications to your Android and iOS devices.":[null,"Pushover torna mais fácil o enviar de notificações em tempo real para seus dispositivos iOS e Android."],"send Pushover notifications?":[null,"Enviar notificações Pushhover?"],"Pushover key":[null,"Chave Pushover"],"user key of your Pushover account":[null,"chave da Api de sua conta Pushbullet"],"Pushover API key":[null,"Chave API Pushover"],"click here":[null,""]," to create a Pushover API key":[null,""],"Pushover devices":[null,"Dispositivos Pushover"],"comma separated list of pushover devices you want to send notifications to":[null,"vírgula separados a lista de dispositivos de pushover para enviar notificações para"],"Pushover notification sound":[null,"Som de notificação do Pushover"],"Bike":[null,"Bicicleta"],"Bugle":[null,"Bugle"],"Cash Register":[null,"Caixa registradora"],"Classical":[null,"Clássica"],"Cosmic":[null,"Cósmica"],"Falling":[null,"Caindo"],"Gamelan":[null,"Gamelan"],"Incoming":[null,"Entrando"],"Intermission":[null,"Intervalo"],"Magic":[null,"Magia"],"Mechanical":[null,"Mecânico"],"Piano Bar":[null,"Piano Bar"],"Siren":[null,"Sirene"],"Space Alarm":[null,"Space alarm"],"Tug Boat":[null,"Tug Boat"],"Alien Alarm (long)":[null,"Alarme alienígena (longo)"],"Climb (long)":[null,"Subir (longo)"],"Persistent (long)":[null,"Persistente (longo)"],"Pushover Echo (long)":[null,"Pushover Echo (long)"],"Up Down (long)":[null,"Cima para baixo (longo)"],"None (silent)":[null,"Nenhum (silêncio)"],"Device specific":[null,"Dispositivo específico"],"choose notification sound to use":[null,"Escolher o som de notificação para usar"],"Pushover priority":[null,"Prioridade Pushover"],"Choose priority to use":[null,"Escolher a prioridade para usar"],"Boxcar 2":[null,"Boxcar 2"],"Read your messages where and when you want them!":[null,"Leia suas mensagens onde e quando quiser!"],"send Boxcar notifications?":[null,"Enviar notificações BoxCar?"],"Boxcar2 access token":[null,"Token de acesso a Boxcar2"],"access token for your Boxcar account.":[null,"token de acesso para sua conta Boxcar."],"NMA":[null,"NMA"],"Notify My Android":[null,"Notify My Android"],"Notify My Android is a Prowl-like Android App and API that offers an easy way to send notifications from your application directly to your Android device.":[null,"Notify My Android é uma applicação Android e API como o Prowl, que oferece uma maneira fácil para enviar notificações de seu aplicativo diretamente para seu dispositivo Android."],"send NMA notifications?":[null,"Enviar notificações NMA?"],"NMA API key":[null,"Chave API do NMA"],"(multiple keys must be separated by commas, up to a maximum of 5)":[null,"(várias teclas devem ser separadas por vírgulas, até um máximo de 5)"],"NMA priority":[null,"Prioridade NMA"],"priority of NMA messages from SickRage.":[null,"prioridade de mensagens NMA do SickRage."],"Pushalot":[null,"Pushalot"],"Pushalot is a platform for receiving custom push notifications to connected devices running Windows Phone or Windows 8.":[null,"Pushalot é uma plataforma para receber notificações de push personalizada para dispositivos conectados, rodando Windows Phone ou Windows 8."],"send Pushalot notifications ?":[null,"Enviar notificações Pushalot?"],"Pushalot authorization token":[null,"Token de autorização Pushalot"],"authorization token of your Pushalot account.":[null,"token de autorização da sua conta Pushalot."],"Pushbullet":[null,"Pushbullet"],"Pushbullet is a platform for receiving custom push notifications to connected devices running Android/iOS and desktop browsers such as Chrome, Firefox or Opera.":[null,"Pushbullet é uma plataforma para receber notificações de push personalizada para dispositivos que rodam Android/iOS, e navegadores para desktop, como o Chrome, Firefox ou Opera."],"send Pushbullet notifications?":[null,"Enviar notificações Pushbullet?"],"Pushbullet API key":[null,"Chave da API Pushbullet"],"API key of your Pushbullet account":[null,"Chave da API de sua conta Pushbullet"],"Pushbullet devices":[null,"Dispositivos de Pushbullet"],"Update device list":[null,"Atualização da lista de dispositivos"],"Pushbullet channels":[null,"Canais de Pushbullet"],"Free Mobile":[null,"Free Mobile"],"Free Mobile is a famous French cellular network provider.<br> It provides to their customer a free SMS API.":[null,"Free Mobile é um provedor de rede francês famoso.<br>Fornece aos seus clientes um API de SMS gratuito."],"send SMS notifications?":[null,"Enviar notificações por SMS?"],"send a SMS when a download starts?":[null,"enviar um SMS quando iniciar um download?"],"send a SMS when a download finishes?":[null,"enviar um SMS quando um download terminar?"],"send a SMS when subtitles are downloaded?":[null,"envie um SMS quando uma legendas for baixada?"],"Free Mobile customer ID":[null,"ID de usuário Free Mobile"],"it's your Free Mobile customer ID (8 digits)":[null,"É o seu ID de cliente Free Mobile (8 dígitos)"],"Free Mobile API key":[null,"Chave de API Free Mobile"],"find your API key in your customer portal.":[null,"Encontre sua chave de API no seu portal do cliente."],"Click below to test your settings.":[null,"Clique abaixo para testar suas configurações."],"Telegram":[null,"Telegram"],"Telegram is a cloud-based instant messaging service.":[null,"Telegram é um serviço de mensagens instantâneas baseado na nuvem."],"send Telegram notifications?":[null,"Enviar notificações do Telegram?"],"send a message when a download starts?":[null,"Enviar uma mensagem quando um download começar?"],"send a message when a download finishes?":[null,"Enviar uma mensagem quando um download terminar?"],"send a message when subtitles are downloaded?":[null,"enviar uma mensagem quando as legendas forem baixadas?"],"User/group ID":[null,"ID de usuário/grupo"],"contact @myidbot on Telegram to get an ID":[null,"entre em contato com @myidbot pelo Telegram para obter um ID"],"Bot API token":[null,"Token de API do bot"],"contact @BotFather on Telegram to set up one":[null,"entre em contato com @BotFather através Telegram para configurar uma"],"Join":[null,"Join"],"Join all of your devices together!":[null,"Join, todos os seus dispositivos juntos!"],"send Join notifications?":[null,"Enviar notificações ao Join?"],"Device ID":[null,"ID do dispositivo"],"per device specific id":[null,"ID específico por dispositivo"]," to create a Join API key":[null,""],"Twilio":[null,"Twilio"],"Twilio is a webservice API that allows you to communicate directly with a mobile number. This notifier will send a text directly to your mobile device.":[null,"Twilio é um API de webservice que permite a você se comunicar diretamente com um número de celular. Este notificador, enviará um texto diretamente para seu dispositivo móvel."],"should SickRage text your mobile device?":[null,"o SickRage pode enviar uma mensagem para o seu celular?"],"Twilio Account SID":[null,""],"account SID of your Twilio account.":[null,""],"Twilio Auth Token":[null,"Token de autenticação Twilio"],"Twilio Phone SID":[null,""],"phone SID that you would like to send the sms from":[null,""],"Your phone number":[null,"Seu número de telefone"],"phone number that will receive the sms. Please use the format +1-###-###-####":[null,""],"Twitter":[null,"Twitter"],"A social networking and microblogging service, enabling its users to send and read other users' messages called tweets.":[null,"Uma rede social e serviço de microblogging, permitindo a seus usuários enviar e ler mensagens de outros usuários chamados tweets."],"should SickRage post tweets on Twitter?":[null,"o SickRage deve postar tweets no Twitter?"],"you may want to use a secondary account.":[null,"você pode querer usar uma conta secundária."],"send direct message":[null,"enviar mensagem direta"],"send a notification via Direct Message, not via status update":[null,"enviar uma notificação via mensagem direta, não através de atualização de status"],"send DM to":[null,"enviar DM para"],"Twitter account to send Direct Messages to (must follow you)":[null,"A conta Twitter para qual enviar mensagens diretas (Tem de segui-lo)"],"Step One":[null,"Primeiro passo"],"Request Authorization":[null,"Solicitar autorização"],"Click the \"Request Authorization\" button.<br> This will open a new page containing an auth key.<br> <b>note:</b> if nothing happens check your popup blocker.":[null,"Clique no botão \"Solicitar autorização\". <br>Isto irá abrir uma nova página que contém uma chave de autenticação. <br><b>Nota:</b> se não acontecer nada, verifique o seu bloqueador de pop-ups."],"Step Two":[null,"Segundo Passo"],"Enter the key Twitter gave you below, and click \"Verify Key\".":[null,"Insira a chave do Twitter abaixo e clique em \"Verificar chave\"."],"Trakt":[null,"Trakt"],"Trakt helps keep a record of what TV shows and movies you are watching. Based on your favorites, Trakt recommends additional shows and movies you'll enjoy!":[null,""],"send Trakt.tv notifications?":[null,""],"username of your Trakt account.":[null,"nome de usuário de sua conta Trakt."],"Trakt PIN":[null,"PIN do Trakt"],"Get Trakt PIN":[null,"Obter Trakt PIN"],"PIN code to authorize SickRage to access Trakt on your behalf.":[null,"Código PIN para autorizar o SickRage a acessar Trakt em seu nome."],"API Timeout":[null,"Tempo limite do API"],"seconds to wait for Trakt API to respond. (Use 0 to wait forever)":[null,""],"Default indexer":[null,"Indexador padrão"],"Sync libraries":[null,"Sincronizar as bibliotecas"],"sync your SickRage show library with your trakt show library.":[null,"sincronize sua biblioteca do SickRage com a sua biblioteca que mostrar o trakt."],"Remove Episodes From Collection":[null,"Remover episódios da coleção"],"remove an episode from your Trakt Collection if it is not in your SickRage Library.":[null,""],"Sync watchlist":[null,"Sincronizar a lista de desejos"],"sync your SickRage show watchlist with your trakt show watchlist (either Show and Episode).":[null,"sincronize sua lista de desejos do SickRage com a sua lista do trakt (série e episódio)."],"episode will be added on watch list when wanted or snatched and will be removed when downloaded ":[null,""],"Watchlist add method":[null,"Método de adicionar a lista de desejos"],"Skip All":[null,"Ignorar todos"],"Download Pilot Only":[null,"Transferir apenas o Ep. Piloto"],"Get whole show":[null,"Obter a série inteira"],"method in which to download episodes for new shows.":[null,"método baixar episódios para novas séries."],"Remove episode":[null,"Remover o episódio"],"remove an episode from your watchlist after it is downloaded.":[null,"remova o episódio da sua lista de desejos depois de baixado"],"Remove series":[null,"Remover a série"],"remove the whole series from your watchlist after any download.":[null,"remova toda a série da sua lista de desejos após qualquer download."],"Remove watched show":[null,"Remover série assistida"],"remove the show from sickrage if it's ended and completely watched":[null,"remover a série do sickrage, se ele estiver terminado e assistido completamente"],"Start paused":[null,"Iniciar pausado"],"shows grabbed from your trakt watchlist start paused.":[null,"mostra que pegou da sua lista de procura trakt começa em pausa."],"Trakt blackList name":[null,"Nome da lista negra do Trakt"],"name (slug) of list on Trakt for blacklisting show on 'Add Trending Show' & 'Add Recommended Shows' pages":[null,""],"Email":[null,"Endereço de e-mail"],"Allows configuration of email notifications on a per show basis.":[null,"Permite a configuração de notificações de e-mail com base em uma série."],"send email notifications?":[null,""],"SMTP host":[null,"Host SMTP"],"hostname of your SMTP email server.":[null,"nome do host do seu servidor de email SMTP."],"SMTP port":[null,"Porta SMTP"],"port number used to connect to your SMTP host.":[null,"número da porta usada para conexão com seu host de SMTP."],"SMTP from":[null,"SMTP de"],"sender email address, some hosts require a real address.":[null,"endereço de e-mail do remetente, alguns hosts exigem um endereço real."],"Use TLS":[null,"Usar TLS"],"check to use TLS encryption.":[null,"seleção para usar criptografia TLS."],"SMTP user":[null,"Usuário do SMTP"],"(optional) your SMTP server username.":[null,"(opcional) seu nome de usuário do servidor SMTP."],"SMTP password":[null,"Senha de SMTP"],"(optional) your SMTP server password.":[null,"(opcional) sua senha do servidor SMTP."],"Global email list":[null,"Lista de e-mail global"],"email addresses listed here, separated by commas if applicable, will<br> receive notifications for <b>all</b> shows.":[null,""],"(This field may be blank except when testing.)":[null,"(Neste campo ficar em branco, exceto quando for um testes.)"],"Email Subject":[null,"Assunto do Email"],"use a custom subject for some privacy protection?":[null,""],"(leave blank for the default SickRage subject)":[null,""],"configure per-show notifications here by entering email address(es), separated by commas,":[null,""],"after selecting a show in the drop-down box. Be sure to activate the 'Save for this show'":[null,"depois de selecionar uma série na caixa suspensa. Não se esqueça de ativar o 'salvar para esta série'"],"button below after each entry.":[null,"botão abaixo depois de cada entrada."],"Slack":[null,"Slack"],"Slack brings all your communication together in one place. It's real-time messaging, archiving and search for modern teams.":[null,"Slack reúne toda a sua comunicação em um só lugar. Mensageiro em tempo real."],"should SickRage post messages on Slack?":[null,""],"Slack Incoming Webhook":[null,""],"Discord":[null,"Discord"],"All-in-one voice and text chat for gamers that's free, secure, and works on both your desktop and phone.":[null,""],"Should SickRage post messages on Discord?":[null,""],"Discord Incoming Webhook":[null,""],"Create webhook under channel settings.":[null,""],"Discord Bot Name":[null,""],"Blank will use webhook default Name.":[null,""],"Discord Avatar URL":[null,"URL do avatar Discord"],"Blank will use webhook default Avatar.":[null,""],"Discord TTS":[null,""],"Send notifications using text-to-speech":[null,""],"Post-Processing":[null,"Pós-processamento"],"Episode Naming":[null,"Renomear Episódio"],"Metadata":[null,"Metadados"],"Settings that dictate how SickRage should process completed downloads.":[null,"Configurações que determinam como o SickRage deve processar transferências concluídas."],"enable the automatic post processor to scan and process any files in your Post Processing Dir":[null,""],"do not use if you use an external Post Processing script":[null,""],"Post Processing Dir":[null,"Diretório de Pós-processamento"],"the folder where your download client puts the completed TV downloads.":[null,""],"please use seperate downloading and completed folders in your download client if possible.":[null,""],"Processing Method":[null,"Método de processamento"],"what method should be used to put files into the library?":[null,""],"if you keep seeding torrents after they finish, please avoid the 'move' processing method to prevent errors.":[null,""],"Auto Post-Processing Frequency":[null,"Frequência de pós-processamento"],"time in minutes to check for new files to auto post-process (min 10)":[null,""],"Postpone post processing":[null,"Adiar o pós-processamento"],"wait to process a folder if sync files are present.":[null,""],"Sync File Extensions":[null,"Extensões de arquivos Sync"],"comma seperated list of extensions or filename globs SickRage ignores when Post Processing":[null,"lista de extensões ou arquivos globs separados por vírgula para o SickRage ignorar no pós-processamento"],"Rename Episodes":[null,"Renomear episódios"],"rename episode using the Episode Naming settings?":[null,""],"Create missing show directories":[null,"Criar diretórios para as séries que estão faltando"],"create missing show directories when they get deleted":[null,""],"Add shows without directory":[null,"Adicionar séries sem diretório"],"add shows without creating a directory (not recommended)":[null,""],"Move associated files":[null,"Mover arquivos associados"],"move associated (srt/srr/sfv/etc) files while post processing?":[null,""],"Rename .nfo file":[null,"Renomear o arquivo .nfo"],"rename the original .nfo file to .nfo-orig to avoid conflicts?":[null,"renomear o arquivo .nfo original para .nfo-orig para evitar conflitos?"],"Associated file extensions":[null,"Extensões de arquivo associadas"],"comma separated list of associated file extensions SickRage should keep while post processing.":[null,""],"leaving it empty means no associated files will be post processed":[null,""],"Delete non associated files":[null,""],"delete non associated files while post processing?":[null,""],"Change File Date":[null,"Alterar data do arquivo"],"set last modified filedate to the date that the episode aired?":[null,""],"some systems may ignore this feature.":[null,""],"Timezone for File Date":[null,"Fuso horário para a data do arquivo"],"local":[null,"local"],"network":[null,"rede"],"what timezone should be used to change File Date?":[null,""],"Unpack":[null,"Descompactar"],"What to do with archived releases found in your <i>TV Download Dir</i>?":[null,""],"Ignore (do not process contents)":[null,""],"Unpack (process contents)":[null,""],"Treat as video (process archive as-is)":[null,""],"'Unpack' only works with RAR archives":[null,""],"Windows":[null,"Windows"],"WinRar is required on windows":[null,"WinRar é necessário no windows"],"Unpack Directory":[null,""],"Choose a path to unpack files, leave blank to unpack in download dir":[null,""],"Unrar Location":[null,""],"add the path to unrar if it is not in the system path":[null,""],"Alternate Unrar Tool":[null,""],"add the path to an alternate unrar tool if it is not in the system path":[null,""],"Delete RAR contents":[null,"Eliminar o conteúdo dos arquivos RAR"],"delete content of RAR files, even if Process Method not set to move?":[null,""],"only working with RAR archive":[null,"funcionando apenas com arquivos RAR"],"Don't delete empty folders":[null,"Não excluir pastas vazias"],"leave empty folders when Post Processing?":[null,""],"can be overridden using manual Post Processing":[null,""],"Follow symbolic-links":[null,""],"follow down symbolic links in download directory?":[null,""],"<b>EXPERTS ONLY.</b><br>Enable only if you know what <b>circular symbolic links</b> are,<br>and can <b>verify that you have none</b>.":[null,""],"Use icacls":[null,""],"Windows only":[null,"Somente para Windows"],"sets video permissions after using the move method in post processing":[null,""],"Extra Scripts":[null,"Scripts extras"],"see":[null,""],"for script arguments description and usage.":[null,"para a descrição de argumentos de script e uso."],"How SickRage will name and sort your episodes.":[null,"Como SickRage vai nomear e classificar seus episódios."],"Name Pattern":[null,"Nome padrão"],"Toggle Naming Legend":[null,"Alternar a lenda de nomeação"],"don't forget to add quality pattern. Otherwise after post-processing the episode will have UNKNOWN quality":[null,""],"Meaning":[null,"Significado"],"Pattern":[null,"Padrão"],"Result":[null,"Resultado"],"Use lower case if you want lower case names (eg. %sn, %e.n, %q_n etc)":[null,"Use letras minúsculas se você quer nomes em minúsculas (por exemplo,. %sn, %e.n, % q_n etc)"],"Show Name":[null,"Nome da Série"],"Show.Name":[null,"Nome.da.Série"],"Show_Name":[null,"Série_Nome"],"Season Number":[null,"Número da temporada"],"XEM Season Number":[null,"Número de Temporada XEM"],"Episode Number":[null,"Número do episódio"],"XEM Episode Number":[null,"Número XEM do episódio"],"Episode Name":[null,"Nome do episódio"],"Episode.Name":[null,"Nome.do.episódio"],"Episode_Name":[null,"Nome_do_episódio"],"Air Date":[null,"Data de exibição"],"Post-Processing Date":[null,"Data de pós-processamento"],"Quality":[null,"Qualidade"],"Scene Quality":[null,"Qualidade da cena"],"Release Name":[null,"Nome do \"release\""],"SickRage' is used in place of RLSGROUP if it could not be properly detected":[null,"SickRage' é usado no lugar de RLSGROUP, se ele não pudesse ser detectado corretamente"],"Release Group":[null,"Grupo de lançamento"],"If episode is proper/repack add 'proper' to name.":[null,"Se o episódio é apropriado/repack adicionar 'adequada' ao nome."],"Release Type":[null,"Tipo de lançamento"],"Multi-Episode Style":[null,"Estilo episódio múltiplo"],"Single-EP Sample":[null,"Exemplo de apenas um episódio"],"Multi-EP sample":[null,"Amostra de multiplos episiodios"],"Strip Show Year":[null,"Remover ano do nome"],"remove the TV show's year when renaming the file?":[null,""],"only applies to shows that have year inside parentheses":[null,""],"Custom Air-By-Date":[null,"Data de publicação costumizada"],"name air-by-date shows differently than regular shows?":[null,""],"Toggle ABD Naming Legend":[null,""],"Regular Air Date":[null,"Data de publicação normal"],"Year":[null,"Ano"],"Month":[null,"Mês"],"Day":[null,"Dia"],"Multi-EP style is ignored":[null,"Ignorar multi-episódios"],"Custom Sports":[null,"Esportes personalizados"],"name sports shows differently than regular shows?":[null,""],"Toggle Sports Naming Legend":[null,""],"Sports Air Date":[null,"Data de estréia de esportes"],"Custom Anime":[null,"Anime personalizado"],"name anime shows differently than regular shows?":[null,""],"Toggle Anime Naming Legend":[null,""],">XEM Season Number":[null,"> Número de temporada XEM"],"Single-EP Anime Sample":[null,"Exemplo de apenas um episódio de Anime"],"Multi-EP Anime sample":[null,"Amostra de multiplos episiodios"],"Add Absolute Number":[null,"Adicionar Número Absoluto"],"add the absolute number to the season/episode format?":[null,""],"only applies to anime. (eg. S15E45 - 310 vs S15E45)":[null,""],"Only Absolute Number":[null,"Apenas o número absoluto"],"replace season/episode format with absolute number":[null,""],"only applies to anime.":[null,""],"No Absolute Number":[null,"Nenhum número absoluto"],"don't include the absolute number":[null,""],"The data associated to the data. These are files associated to a TV show in the form of images and text that, when supported, will enhance the viewing experience.":[null,"Os dados associados aos dados. Estes são arquivos associados a uma série de TV na forma de imagens e texto, que quando suportada, irá melhorar a experiência de visualização."],"Metadata Type":[null,"Tipo de Metadados"],"toggle metadata options that you wish to be created":[null,""],"multiple targets may be used":[null,""],"Select Metadata":[null,"Selecione metadados"],"Provider Priorities":[null,"Prioridades do provedor"],"Provider Options":[null,"Opções de provedor"],"Configure Custom Newznab Providers":[null,"Configurar provedores personalizados Newznab"],"Configure Custom Torrent Providers":[null,"Configurar provedores personalizados Torrent"],"Check off and drag the providers into the order you want them to be used.":[null,"Marcar e arrastar os provedores na ordem em que deseja que sejam usadas."],"At least one provider is required but two are recommended.":[null,"Pelo menos um provedor é necessário, mas dois são recomendados."],"Torrent providers can be toggled in ":[null,"Provedores de torrent podem ser alternados em "],"Provider does not support backlog searches at this time.":[null,"Provedor não dá suporte a lista de pendências de buscas neste momento."],"Provider is <b>NOT WORKING</b>.":[null,"O provedor <b>NÃO ESTÁ FUNCIONANDO</b>."],"Configure individual provider settings here.":[null,"Defina as configurações individuais de provedores aqui."],"Check with provider's website on how to obtain an API key if needed.":[null,"Verifique com o site do provedor sobre como obter uma chave de API, se necessário."],"Configure provider":[null,"Config - Provedores"],"no providers available to configure.":[null,""],"URL":[null,"URL"],"Enable daily searches":[null,"Permitir buscas diárias"],"enable provider to perform daily searches.":[null,"habilite o provedor para realizar buscas diárias."],"Enable backlog searches":[null,"Habilitar buscas no backlog"],"enable provider to perform backlog searches.":[null,"habilita o provedor para executar pesquisas de pendências."],"Season search mode":[null,"Modo de busca de temporada"],"when searching for complete seasons you can choose to have it look for season packs only, or choose to have it build a complete season from just single episodes.":[null,"ao procurar por temporadas completas você também pode escolher procurar pacotes de temporada apenas, ou optar construir uma unica temporada completa de episódios."],"season packs only.":[null,"apenas pacotes de temporada."],"episodes only.":[null,"apenas episódios."],"Enable fallback":[null,"Ativar fallback"],"when searching for a complete season depending on search mode you may return no results, this helps by restarting the search using the opposite search mode.":[null,"quando procurando por uma temporada completa, dependendo do modo de busca pode retornar nenhum resultado, isso ajuda reiniciando a busca usando o modo de busca oposta."],"Custom URL":[null,"URL personalizada"],"the URL should include the protocol (and port if applicable). Examples: http://192.168.1.4/ or http://localhost:3000/":[null,""],"Api key":[null,"Chave de API"],"Digest":[null,"Digest"],"Hash":[null,"Hash"],"Passkey":[null,"Código de acesso"],"Cookies":[null,"Cookies"],"example: uid=1234;pass=567845439634987<br>note: uid and pass are not your username/password.<br>use DevTools or Firebug to get these values after logging in on your browser.":[null,""],"Pin":[null,"PIN"],"Seed ratio":[null,"Seed ratio"],"stop transfer when ratio is reached<br>(-1 SickRage default to seed forever, or leave blank for downloader default)":[null,"parar de transferir quando a taxa atingir <br>(-1 padrão do SickRage para semear para sempre, ou deixe em branco para usar o padrão do downloader)"],"Minimum seeders":[null,"Minimo de seeders"],"Minimum leechers":[null,"Minimo de leechers"],"Confirmed download":[null,"Downloads confirmados"],"only download torrents from trusted or verified uploaders ?":[null,"só baixar torrents de uploaders confiáveis ou verificados?"],"Ranked torrents":[null,"Classificado de torrentes"],"only download ranked torrents (trusted releases)":[null,"só baixar torrents classificados (releases confiáveis)"],"English torrents":[null,"Torrentes em inglês"],"only download english torrents, or torrents containing english subtitles":[null,"só baixar torrentesem inglês, ou torrents contendo legendas em inglês"],"For Spanish torrents":[null,"Para torrents espanhois"],"ONLY search on this provider if show info is defined as \"Spanish\" (avoid provider's use for VOS shows)":[null,"SOMENTE pesquisar sobre este provedor se a informação da série for definida como \"Espanhol\" (evitar o uso do provedor para VOS shows)"],"Sorting results by":[null,"Classificar resultados por"],"Freeleech":[null,"FreeLeech"],"only download <b>\"FreeLeech\"</b> torrents.":[null,"só transferir torrents <b>\"FreeLeech\"</b>."],"Category":[null,"Categoria"],"select torrent with Italian subtitle":[null,"selecione torrent com legendas italiana"],"Configure Custom<br>Newznab Providers":[null,"Configurar provedores<br>personalizados Newznab"],"Add and setup or remove custom Newznab providers.":[null,"Adicionar e configurar ou remover provedores personalizados de Newznab."],"Select provider":[null,"Selecione o provedor"],"-- add new provider --":[null,"-- Adicionar novo provedor --"],"Provider name":[null,"Nome do provedor"],"Site URL":[null,"URL do site"],"Newznab search categories":[null,"Categorias de pesquisa do Newznab"],"select your Newznab categories on the left, and click the \"update categories\" button to use them for searching.) <b>don't forget to to save the form!":[null,"(selecione suas categorias de Newznab à esquerda e clique no botão \"atualizar categorias\" (para usá-los para pesquisa.) <b>não se esqueça de salvar o formulário!"],"Update Categories":[null,"Atualizar Categorias"],"Add":[null,"Adicionar"],"Delete":[null,"Excluir"],"Add and setup or remove custom RSS providers.":[null,"Adicionar e configurar ou remover provedores personalizados de RSS."],"RSS URL":[null,"URL do RSS"],"Search element":[null,"Elemento de pesquisa"],"eg: title":[null,"p. ex.: título"],"Episode Search":[null,"Busca por episódio"],"NZB Search":[null,"Busca NZB"],"Torrent Search":[null,"Busca Torrent"],"How to manage searching with":[null,"Como gerenciar a busca com"],"Randomize Providers":[null,"Randomize provedores"],"randomize the provider search order instead of going in order of placement":[null,"randomize a ordem de pesquisa do provedor em vez de ir por ordem de colocação"],"Download propers":[null,"Baixar propers"],"replace original download with \"Proper\" or \"Repack\" if nuked":[null,"substituir arquivo original por uma versão \"Proper\" ou \"Repack\" se lançado"],"Check propers every":[null,"Verificar versões Proper a cada"],"24 hours":[null,"24 horas"],"4 hours":[null,"4 horas"],"90 mins":[null,"90 minutos"],"45 mins":[null,"45 minutos"],"15 mins":[null,"15 min"],"Backlog search day(s)":[null,"Dia(s) pesquisa de pendências"],"number of day(s) that the \"Forced Backlog Search\" will cover (e.g. 7 Days)":[null,"número de dia(s) que a \"Busca de pendências forçada\" cobrirá (por exemplo, 7 dias)"],"Backlog search frequency":[null,"Frequência de buscas no backlog"],"time in minutes between searches (min.":[null,"tempo em minutos entre pesquisas (min."],"Daily search frequency":[null,"Frequência de busca diária"],"Usenet retention":[null,"Retenção de Usenet"],"age limit in days for usenet articles to be used (e.g. 500)":[null,"limite de idade em dias para artigos usenet para serem usados (por exemplo, 500)"],"Ignore words":[null,"Ignorar palavras"],"results with one or more word from this list will be ignored<br>separate words with a comma, e.g. \"word1,word2,word3\"":[null,"resultados com um ou mais palavrsa desta lista serão ignorados<br>separe as palavras por vírgula, por exemplo: \"palavra1, palavra2, palavra3\""],"Require words":[null,"Palavras requeridas"],"results with no word from this list will be ignored<br>separate words with a comma, e.g. \"word1,word2,word3\"":[null,"resultados sem palavras desta lista serão ignorados<br>separe as palavras por vírgula, por exemplo, \"palavra1, palavra2, palavra3\""],"Trackers list":[null,"Lista de Trackers"],"trackers that will be added to magnets without trackers<br>separate trackers with a comma, e.g. \"tracker1,tracker2,tracker3\"":[null,""],"Ignore language names in subbed results":[null,"Ignorar nomes de idiomas em resultados de legendas"],"ignore subbed releases based on language names <br>\n Example: \"dk\" will ignore words: dksub, dksubs, dksubbed, dksubed <br>\n separate languages with a comma, e.g. \"lang1,lang2,lang3":[null,""],"Allow high priority":[null,"Permitir alta prioridade"],"set downloads of recently aired episodes to high priority":[null,"definir transferências de episódios recém-exibidos para alta prioridade"],"Use Failed Downloads":[null,"Usar Downloads Falhados"],"use Failed Download Handling?":[null,""],"will only work with snatched/downloaded episodes after enabling this":[null,""],"Delete Failed":[null,"Falha ao excluir"],"delete files left over from a failed download?":[null,""],"this only works if Use Failed Downloads is enabled.":[null,""],"How to handle NZB search results.":[null,"Como lidar com os resultados da pesquisa NZB."],"Search NZBs":[null,"Pesquisar NZBs"],"enable NZB search providers":[null,""],"Send .nzb files to":[null,"Enviar arquivos .nzb para"],"SABnzbd server URL":[null,"URL do servidor SABnzbd"],"URL to your SABnzbd server (e.g. http://localhost:8080/)":[null,"URL para seu servidor SABnzbd (ex. http://localhost:8000/)"],"SABnzbd username":[null,"Nome de utilizador SABnzbd"],"(blank for none)":[null,"(em branco para nenhum)"],"SABnzbd password":[null,"Senha do SABnzbd"],"SABnzbd API key":[null,"Chave da API SABnzbd"],"locate at... SABnzbd Config -> General -> API Key":[null,"localizado em... SABnzbd Config-> Geral-> Chave de API"],"Use SABnzbd category":[null,"Usar categoria SABnzbd"],"add downloads to this category (e.g. TV)":[null,"enviar downloads para esta categoria (por exemplo, TV)"],"Use SABnzbd category (backlog episodes)":[null,"Categoria de uso SABnzbd (lista de pendências de episódios)"],"add downloads of old episodes to this category (e.g. TV)":[null,"adicionar downloads de episódios antigos para esta categoria (por exemplo, TV)"],"Use SABnzbd category for anime":[null,"Usar categoria SABnzbd para anime"],"add anime downloads to this category (e.g. anime)":[null,"adicionar downloads de anime para esta categoria (ex: anime)"],"Use SABnzbd category for anime (backlog episodes)":[null,"Categoria de uso SABnzbd para anime (episódios de atraso)"],"add anime downloads of old episodes to this category (e.g. anime)":[null,"adicionar anime downloads antigos episódios para esta categoria (por exemplo, anime)"],"Use forced priority":[null,"Usar prioridade forçada"],"enable to change priority from HIGH to FORCED":[null,"habilite para alterar a prioridade de ALTA para FORÇADA"],"Black hole folder location":[null,"Localização da pasta de Black hole"],"<b>.nzb</b> files are stored at this location for external software to find and use":[null,"arquivos <b>.nzb</b> são armazenados neste local para programas externos encontrar e usar"],"Connect using HTTPS":[null,"Conectar usando HTTPS"],"enable Secure control in NZBGet and set the correct Secure Port here":[null,""],"NZBget host:port":[null,"NZBget servirdor:porta"],"(e.g. localhost:6789)":[null,"(ex. localhost:6789)"],"NZBget RPC host name and port number (not NZBgetweb!)":[null,"Nome do servidor NZBget RPC e número da porta (não é o NZBgetweb!)"],"NZBget username":[null,"Nome de usuário NZBget"],"locate in nzbget.conf (default:nzbget)":[null,"localizado no nzbget.conf (padrão: nzbget)"],"NZBget password":[null,"Senha NZBget"],"locate in nzbget.conf (default:tegbzn6789)":[null,"localizado no nzbget.conf (padrão: tegbzn6789)"],"Use NZBget category":[null,"Usar categoria NZBget"],"send downloads marked this category (e.g. TV)":[null,"enviar downloads marcado nesta categoria (por exemplo, TV)"],"Use NZBget category (backlog episodes)":[null,"Categoria de uso NZBget (lista de pendências de episódios)"],"send downloads of old episodes marked this category (e.g. TV)":[null,"enviar downloads de episódios antigos marcado nesta categoria (por exemplo, TV)"],"Use NZBget category for anime":[null,"Usar categoria SABnzbd para anime"],"send anime downloads marked this category (e.g. anime)":[null,""],"Use NZBget category for anime (backlog episodes)":[null,"Categoria de uso NZBget (lista de pendências de episódios)"],"send anime downloads of old episodes marked this category (e.g. anime)":[null,"envie anime downloads antigos episódios marcados nesta categoria (por exemplo, anime)"],"NZBget priority":[null,"Prioridade NZBget"],"Very low":[null,"Muito baixa"],"Low":[null,"Baixo"],"Very high":[null,"Muito alta"],"Force":[null,"Forçar"],"priority for daily snatches (no backlog)":[null,""],"Torrent host:port":[null,"Torrent servidor:porta"],"URL to your Synology DSM (e.g. http://localhost:5000/)":[null,""],"Client username":[null,"Login do cliente"],"Client password":[null,"Senha do cliente"],"Downloaded files location":[null,"Localização de arquivos baixados"],"where Synology Download Station will save downloaded files (blank for client default)":[null,"onde o Synology Download Station irá salvar o arquivos baixados (em branco para o padrão do cliente)"],"the destination has to be a shared folder for Synology DS":[null,"o destino tem que ser uma pasta compartilhada para o servidor Synology DS"],"Click below to test":[null,"Clique abaixo para testar"],"How to handle Torrent search results.":[null,"Como lidar com os resultados de busca de Torrent."],"Search torrents":[null,"Buscar torrents"],"enable torrent search providers":[null,"habilitar provedores de busca torrent"],"Send .torrent files to":[null,"Enviar arquivos .torrent para"],"<b>.torrent</b> files are stored at this location for external software to find and use":[null,"arquivos <b>.torrent</b> são armazenados neste local para programas externos encontrar e usar"],"URL to your torrent client (e.g. http://localhost:8000/)":[null,"URL para o seu cliente torrent (ex. http://localhost:8000/)"],"Torrent RPC URL":[null,"URL de RPC torrent"],"the path without leading and trailing slashes (e.g. transmission)":[null,""],"Http Authentication":[null,"Autenticação HTTP"],"Verify certificate":[null,"Verificar certificado"],"disable if you get \"Deluge: Authentication Error\" in your log":[null,"desabilitar se você receber \"Deluge: erro de autenticação\" no seu log"],"verify SSL certificates for HTTPS requests":[null,""],"Add label to torrent":[null,"Adicionar um rótulo ao torrent"],"(blank spaces are not allowed)":[null,"(não são permitidos espaços em branco)"],"label plugin must be enabled in Deluge clients":[null,""],"for QBitTorrent 3.3.1 and up":[null,"para QBitTorrent 3.3.1 e acima"],"Add label to torrent for anime":[null,"Adicionar um rótulo de torrent para anime"],"for QBitTorrent 3.3.1 and up ":[null,"para QBitTorrent 3.3.1 e acima "],"where <span id=\"torrent_client\">the torrent client</span> will save downloaded files (blank for client default)":[null,""],"the destination has to be a shared folder for Synology DS</span>":[null,"o destino tem que ser uma pasta compartilhada para o servidor Synology DS</span>"],"Minimum seeding time":[null,""],"time in hours":[null,"tempo em horas"],"(default:'0' passes blank to client and '-1' passes nothing)":[null,""],"Start torrent paused":[null,"Iniciar o torrent em pausa"],"add .torrent to client but do <b style=\"font-weight:900\">not</b> start downloading":[null,"adicionar .torrent para o cliente mas <b style=\"font-weight:900\">não</b> iniciar o download"],"Allow high bandwidth":[null,"Permitir largura de banda alta"],"use high bandwidth allocation if priority is high":[null,"usar a alocação de largura de banda alta se a prioridade é alta"],"Test Connection":[null,"Testar conexão"],"Windows Shares":[null,""],"Defines your existing windows shares so that we can add them to the browse dialog":[null,""],"Share #{number}":[null,""],"Share label":[null,""],"Hostname or IP":[null,""],"Share path":[null,""],"Subtitles Search":[null,"Pesquisa de Legendas"],"Subtitles Plugin":[null,"Plugin de Legendas"],"Plugin Settings":[null,"Configurações de plugin"],"Settings that dictate how SickRage handles subtitles search results.":[null,""],"Search Subtitles":[null,"Pesquisar legendas"],"Subtitle Languages":[null,"Idioma das Legendas"],"Subtitle Directory":[null,"Diretório de legendas"],"the directory where SickRage should store your <i>Subtitles</i> files.":[null,""],"leave empty if you want store subtitle in episode path.":[null,""],"Subtitle Find Frequency":[null,"Frequência de buscas por legendas"],"time in hours between scans (default: 1)":[null,"tempo em horas entre as pesquisas (padrão: 1)"],"Include Specials":[null,""],"include the show's specials when searching for subtitles?":[null,""],"Perfect matches":[null,"Correspondências perfeitas"],"only download subtitles that match: release group, video codec, audio codec and resolution":[null,""],"if disabled you may get out of sync subtitles":[null,""],"Subtitles History":[null,"Histórico de Legendas"],"log downloaded Subtitle on History page?":[null,""],"Subtitles Multi-Language":[null,"Legendas Multi-Idioma"],"append language codes to subtitle filenames?":[null,""],"this option is required if you use multiple subtitle languages":[null,""],"Delete unwanted subtitles":[null,"Excluir legendas indesejadas"],"enable to delete unwanted subtitle languages bundled with release":[null,""],"Embedded Subtitles":[null,"Legendas Embutidas"],"ignore subtitles embedded inside video file?":[null,""],"this will ignore <u>all</u> embedded subtitles for every video file!":[null,"isto irá ignorar <u>todas</u> as legendas incorporadas para todos os arquivos de vídeo!"],"Hearing Impaired Subtitles":[null,"Legendas para deficientes auditivos"],"download hearing impaired style subtitles?":[null,""],"See":[null,"Ver"],"for a script arguments description.":[null,"para uma descrição de argumentos de script."],"Additional scripts separated by <b>|</b>.":[null,"Scripts adicionais separados por <b>|</b>."],"Scripts are called after each episode has searched and downloaded subtitles.":[null,"Scripts são chamados após cada episódio tem pesquisado e baixei as legendas."],"For any scripted languages, include the interpreter executable before the script. See the following example":[null,"Para quaisquer linguagens de script, incluir o executável do intérprete antes do script. Ver o seguinte exemplo"],"For Windows:":[null,"Para Windows:"],"For Linux / OS X:":[null,"Para Linux / OS X:"],"Subtitle Providers":[null,"Provedores de legendas"],"Check off and drag the plugins into the order you want them to be used.":[null,"Marcar e arrastar os plugins pela ordem que você quer que sejam usados."],"At least one plugin is required.":[null,"Pelo menos um plugin é necessário."]," Web-scraping plugin":[null," Plugin de Web-Scraping"],"Provider Settings":[null,"Configurações do provedor"],"Set user and password for each provider":[null,"Definir o usuário e senha para cada provedor"],"User Name":[null,"Nome do usuário"],"Change Show":[null,"Alterar Série"],"Prev Show":[null,"Série Anterior"],"Next Show":[null,"Próxima Série"],"Jump to Season":[null,"Pular para a temporada"],"Specials":[null,"Especiais"],"Poster for":[null,"Cartaz para"],"Stars":[null,"Estrelas"],"minutes":[null,"minutos"],"View other popular {genre} shows on trakt.tv.":[null,"Ver os outras séries populares {genre} na trakt.tv."],"View other popular {imdbgenre} shows on IMDB.":[null,"Ver os outras séries populares {imdbgenre} no IMDB."],"Allowed":[null,"Permitido"],"Preferred":[null,"Favoritos"],"Originally Airs":[null,"Originalmente exibido"],"Show Status":[null,"Status de exibição"],"Default EP Status":[null,"Status padrão do EP"],"Location":[null,"Localização"],"Missing":[null,"Faltando"],"Scene Name":[null,"Nome da cena"],"Required Words":[null,"Palavras requeridas"],"Ignored Words":[null,"Ignorar palavras"],"Size":[null,"Tamanho"],"Info Language":[null,"Informação da Língua"],"Subtitles SR Metadata":[null,"Legendas metadados SickRage"],"Season Folders":[null,"Pastas das temporadas"],"Paused":[null,"Em pausa"],"Air-by-Date":[null,"Ao ar na Data"],"Sports":[null,"Esportes"],"DVD Order":[null,"Ordem de DVD"],"Scene Numbering":[null,"Numeração da cena"],"Select Filtered Episodes":[null,"Selecionar episódios filtrados"],"Clear All":[null,"Limpar tudo"],"Change selected episodes to":[null,"Alterar episódios selecionados para"],"Select Columns":[null,"Selecionar colunas"],"NFO":[null,"NFO"],"TBN":[null,"TBN"],"Episode":[null,"Episódio"],"Absolute":[null,"Absoluto"],"Scene":[null,"Cena"],"Scene Absolute":[null,"Cena absoluta"],"File Name":[null,"Nome do arquivo"],"Airdate":[null,"Data de exibição"],"Download":[null,"Download"],"Change the value here if scene numbering differs from the indexer episode numbering":[null,"Altere o valor aqui se cena numeração difere a numeração do episódio de indexador"],"Change the value here if scene absolute numbering differs from the indexer absolute numbering":[null,"Altere o valor aqui se a numeração absoluta da Scene for diferente da numeração absoluta do indexador"],"Manual Search":[null,"Pesquisa manual"],"Do you want to mark this episode as failed?":[null,"Você quer marcar este episódio como falha?"],"The episode release name will be added to the failed history, preventing it to be downloaded again.":[null,"A release do episódio será adicionado ao histórico de falha, impedindo-o de ser baixado novamente."],"Do you want to include the current episode quality in the search?":[null,"Você quer incluir a qualidade episódio atual na pesquisa?"],"Choosing No will ignore any releases with the same episode quality as the one currently downloaded/snatched.":[null,"Escolhendo não irá ignorar qualquer lançamentos com a mesma qualidade do episódio atualmente baixado/encontrado."],"Download subtitle":[null,"Baixar legenda"],"Do you want to re-download the subtitle for this language?":[null,""],"It will overwrite your current subtitle":[null,"Isto irá substituir sua legenda atual"],"Format":[null,"Formato"],"Advanced":[null,"Avançado"],"Main Settings":[null,"Configurações principais"],"Show Location":[null,"Local da Série"],"Preferred Quality":[null,"Qualidade preferencial"],"Default Episode Status":[null,"Status padrão do episódio"],"this will set the status for future episodes.":[null,""],"this only applies to episode filenames and the contents of metadata files.":[null,""],"search for subtitles":[null,"procurar por legendas"],"Use SR Metdata":[null,"Usar Metadados SickRage"],"use SickRage metadata when searching for subtitle, this will override the autodiscovered metadata":[null,"use metadados SickRage quando procurar legendas, isto irá substituir o metadados de autodescobrimento"],"pause this show (SickRage will not download episodes)":[null,"pausar esta série (SickRage não irá mais baixar os episódios)"],"Format Settings":[null,"Configurações de formatação"],"Air by date":[null,"Ao ar em"],"check if the show is released as Show.03.02.2010 rather than Show.S02E03.":[null,"verifique se a série é lançada como Série.03.02.2010 ao invés de Série.S02E03."],"in case of an air date conflict between regular and special episodes, the later will be ignored.":[null,""],"check if the show is Anime and episodes are released as Show.265 rather than Show.S02E03":[null,"verifique se a série é Anime e episódios são liberados como Série.265 ao invés de Série.S02E03"],"check if the show is a sporting or MMA event released as Show.03.02.2010 rather than Show.S02E03":[null,"verifique se o série é um esportivo ou evento MMA, lançado como Série.03.02.2010 ao invés de Série.S02E03"],"Season folders":[null,"Pastas das temporadas"],"group episodes by season folder (uncheck to store in a single folder)":[null,"agrupar episódios por pasta de temporada (coloque \"No\" para armazenar em uma única pasta)"],"search by scene numbering (uncheck to search by indexer numbering)":[null,"pesquisar por numeração da Scene (desmarcar para pesquisar por numeração do indexador)"],"use the DVD order instead of the air order":[null,"use a ordem de DVD em vez da ordem que foi ao ar"],"a \"Force Full Update\" is necessary, and if you have existing episodes you need to sort them manually.":[null,""],"comma-separated <i>e.g. \"word1,word2,word3</i>\"":[null,"separados por vírgula, <i>por exemplo: \"palavra1, palavra2, palavra3</i>\""],"search results with one or more words from this list will be ignored.":[null,""],"e.g. \"word1,word2,word3\"":[null,"separadas por vírgula, ex: \"palavra1, palavra2, palavra3\""],"search results with no words from this list will be ignored.":[null,""],"Scene Exception":[null,"Exceção da Scene"],"this will affect episode search on NZB and torrent providers.":[null,""],"this list appends to the original show name.":[null,""],"WARNING logs":[null,"ALERTA de aviso"],"ERROR logs":[null,"Logs de erro"],"There are no events to display.":[null,"Nenhum registro para exibir."],"Limit":[null,"Limite"],"Layout":[null,"Layout"],"HistoryLayout":[null,""],"Compact":[null,"Compacto"],"Detailed":[null,"Detalhado"],"Time":[null,"Tempo"],"Provider":[null,"Provedor"],"Missing Provider":[null,"Provedor ausente"],"missing provider":[null,"provedor ausente"],"Directory":[null,"Diretório"],"Show Name (tvshow.nfo)":[null,"Série nome (tvshow.nfo)"],"Indexer":[null,"Indexador"],"Enter the folder containing the episode":[null,"Entre com a pasta que contém o episódio"],"Process Method to be used":[null,"Método de processamento usado"],"Copy":[null,"Copiar"],"Move":[null,"Mover"],"Hard Link":[null,"Link Físico"],"Symbolic Link":[null,"Link Simbólico"],"Symbolic Link Reversed":[null,""],"Force already Post Processed Dir/Files":[null,"Forçar diretórios e arquivos já pós-processado"],"Mark Dir/Files as priority download":[null,"Marcar diretórios / arquivos como downloads prioritários"],"(Check it to replace the file even if it exists at higher quality)":[null,"(Marque para substituir o arquivo, mesmo que já exista em uma qualidade superior)"],"Delete files and folders":[null,"Excluir arquivos e pastas"],"(Check it to delete files and folders like auto processing)":[null,"(Marque para excluir arquivos e pastas como no processamento automático)"],"Don't use processing queue":[null,""],"(If checked this will return the result of the process here, but may be slow!)":[null,""],"Mark download as failed":[null,"Marcar download como falhado"],"Process":[null,"Processar"],"Download subtitles for this show?":[null,"Baixar legendas para esta série?"],"use SickRage metadata when searching for subtitle, <br />this will override the autodiscovered metadata":[null,"use o metadados do SickRage quando procurar por legendas, <br />isto irá substituir o metadados de autodescobrimento"],"Status for previously aired episodes":[null,"Status de episódios exibidos anteriormente"],"Status for all future episodes":[null,"Status de todos os episódios futuros"],"Group episodes by season folder?":[null,""],"Is this show an Anime?":[null,"Isso é um Anime?"],"Is this show scene numbered?":[null,"Esta cena da série é numerada?"],"Save Defaults":[null,"Salvar padrões"],"Use current values as the defaults":[null,"Usar valores atuais como padrão"],"<p>Select your preferred fansub groups from the <b>Available Groups</b> and add them to the <b>Whitelist</b>. Add groups to the <b>Blacklist</b> to ignore them.</p>\n <p>The <b>Whitelist</b> is checked <i>before</i> the <b>Blacklist</b>.</p>\n <p>Groups are shown as <b>Name</b> | <b>Rating</b> | <b>Number of subbed episodes</b>.</p>\n <p>You may also add any fansub group not listed to either list manually.</p>\n <p>When doing this please note that you can only use groups listed on anidb for this anime.\n <br>If a group is not listed on anidb but subbed this anime, please correct anidb's data.</p>":[null,"<p>, Selecione os grupos do fansub preferencial dos <b>Grupos disponíveis</b> e adicioná-los à <b>lista branca</b>. Adicionar grupos para a <b>lista negra</b>, ignorá-los.</p> \n <p><b>lista brancat</b> é verificado <i>antes</i> da <b>lista negra</b>.</p> \n <p>grupos são mostrados como <b>nome</b> | <b>Classificação</b> | <b>Número de episódios subbed</b>.</p> \n <p>você também pode adicionar qualquer grupo de fansub não listado para qualquer lista manualmente.</p> \n <p>ao fazer esta por favor, note que você só pode usar grupos listados na anidb para este anime.\n <br>, se um grupo não está listado na anidb mas substituiu este anime, por favor corrigir dados do anidb.</p>"],"Whitelist":[null,"Lista branca"],"Available Groups":[null,"Grupos disponíveis"],"Add to Whitelist":[null,"Adicionar à lista branca"],"Add to Blacklist":[null,"Adicionar à lista negra"],"Blacklist":[null,"Lista Negra"],"Custom Group":[null,""],"Allowed Quality:":[null,"Qualidade permitida:"],"Preferred Quality:":[null,"Qualidade preferencial:"],"Filter Show Name":[null,"Filtro por nome de série"],"Root":[null,""],"All":[null,"Todos"],"Clear Filter(s)":[null,"Limpar filtro(s)"],"Poster":[null,"Cartaz"],"Small Poster":[null,"Poster pequeno"],"Banner":[null,"Banner"],"Simple":[null,"Simples"],"Next Episode":[null,"Próximo Episódio"],"Progress":[null,"Progresso"],"Direction":[null,"Direção"],"Ascending":[null,"Ascendente"],"Descending":[null,"Descendente"],"Poster Size":[null,"Tamanho do poster"],"Continuing":[null,"Continuando"],"Ended":[null,"Terminada"],"Total":[null,"Total"],"Invalid date":[null,"Data inválida"],"No Network":[null,"Sem emissora"],"Next Ep":[null,"Próximo Ep"],"Prev Ep":[null,"Ep Anterior"],"Show":[null,"Série"],"Downloads":[null,"Downloads"],"Active":[null,"Ativos"],"loading":[null,"carregando"],"<p><b><u>Preferred</u></b> qualities will replace those in <b><u>allowed</u></b>, even if they are lower.</p>":[null,"<p>Qualidades <b><u>preferidas</u></b> irão substituir aqueles em <b><u>permitido</u></b>, mesmo que sejam inferiores.</p>"],"New":[null,"Novo"],"Set as Default":[null,"Definir como Padrão"],"Remember me":[null,"Lembrar-me"],"Edit Selected":[null,"Editar Selecionado"],"Subtitle":[null,"Legenda"],"Default Ep Status":[null,"Status padrão do Ep"],"Update":[null,"Atualizar"],"Rescan":[null,"Reescanear"],"Rename":[null,"Renomear"],"Search Subtitle":[null,"Procurar legenda"],"Force Metadata Regen":[null,""],"Snatched (Allowed)":[null,"Encontrado (Permitido)"],"Jump to Show":[null,"Saltar para a série"],"Force Backlog":[null,"Forçar pendências"],"Manage episodes with status":[null,"Gerenciar episódios com status"],"Manage":[null,"Gerenciar"],"None of your episodes have status":[null,"Nenhum dos seus episódios têm status"],"Shows containing":[null,"Mostra que contém"],"episodes":[null,"episódios"],"Set checked shows/episodes to":[null,"Conjunto de séries/episódios marcados para"],"Go":[null,"Ir"],"Select all":[null,"Selecioner tudo"],"Clear all":[null,"Limpar tudo"],"Release":[null,"Release"],"Backlog Search":[null,"Pesquisa de pendências"],"Not in progress":[null,""],"In Progress":[null,"Em progresso"],"Daily Search":[null,"Busca diária"],"Find Propers Search":[null,""],"Propers search disabled":[null,"Pesquisa de versões Proper desativada"],"Subtitle Search":[null,"Busca de legendas"],"Subtitle search disabled":[null,"Pesquisa de legendas desativada"],"Search Queue":[null,"Fila de pesquisa"],"pending items":[null,"itens pendentes"],"Daily":[null,"Diariamente"],"Manual":[null,"Manual"],"Changing any settings marked with (<span class=\"separator\">*</span>) will force a refresh of the selected shows.":[null,"Alterar quaisquer configurações marcadas com (<span class=\"separator\"> *</span>) irá forçar uma atualização das séries selecionadas."],"Selected Shows":[null,"Séries selecionadas"],"Root Directories":[null,"Diretórios raiz"],"Current":[null,"Atuais"],"Keep":[null,"Manter"],"Custom":[null,"Personalizado"],"Group episodes by season folder (set to \"No\" to store in a single folder).":[null,"Agrupar episódios por pasta de temporada (coloque \"No\" para armazenar em uma única pasta)."],"Pause these shows (SickRage will not download episodes).":[null,"Pause essas séries (SickRage não vai baixar episódios)."],"This will set the status for future episodes.":[null,"Isto irá definir o status para futuros episódios."],"Search by scene numbering (set to \"No\" to search by indexer numbering).":[null,"Pesquisar por numeração da scene (selecionar \"Não\" para pesquisar por numeração do indexador)."],"Set if these shows are Anime and episodes are released as Show.265 rather than Show.S02E03":[null,"Verifique se a série é Anime e episódios são liberados como Série.265 ao invés de Série.S02E03"],"Set if these shows are sporting or MMA events released as Show.03.02.2010 rather than Show.S02E03.":[null,"Verifique se o série é um esportivo ou evento MMA, lançado como Série.03.02.2010 ao invés de Série.S02E03."],"In case of an air date conflict between regular and special episodes, the later will be ignored.":[null,"No caso de um conflito de data de ar entre os episódios regular e especial, a tarde será ignorada."],"Set if these shows are released as Show.03.02.2010 rather than Show.S02E03.":[null,"Defina se a série é lançado como Série.03.02.2010 ao invés de Série.S02E03."],"Search for subtitles.":[null,"Procurar por legendas."],"All of your episodes have {subsLanguage} subtitles.":[null,"Todos os episódios tem {subsLanguage} legendas."],"Manage episodes without":[null,"Gerenciar episódios sem"],"Episodes without {subsLanguage} subtitles.":[null,"Episódios sem legendas em {subsLanguage}."],"Episodes without {subtitleLanguage} (undefined) subtitles.":[null,"Episódios sem {subtitleLanguage} (indefinido) legendas."],"Download missed subtitles for selected episodes":[null,"Baixar legendas em falta para os episódios selecionados"],"Performing Restart":[null,"Reinicializando"],"Waiting for SickRage to shut down":[null,"Esperando o SickRage desligar"],"Waiting for SickRage to start again":[null,"Esperando o SickRage começar novamente"],"Loading the default page":[null,"Carregando a página padrão"],"Error: The restart has timed out, perhaps something prevented SickRage from starting again?":[null,"Erro: O tempo para o SickRage reiniciar acabou, talvez algo impediu o SickRage de reiniciar novamente?"],"Key":[null,"Chave"],"Missed":[null,"Perdido"],"Today":[null,"Hoje"],"Soon":[null,"Em breve"],"Later":[null,"Depois"],"Subscribe":[null,"Subscrever"],"Date":[null,"Data"],"View Paused":[null,"Mostrar pausado"],"Hidden":[null,"Ocultar"],"Shown":[null,"Mostrar"],"Calendar":[null,"Calendário"],"List":[null,"Lista"],"Ends":[null,"Termina"],"Next Ep Name":[null,"Nome do próximo Ep"],"Run time":[null,"Duração"],"Indexers":[null,"Indexadores"],"No shows for this day":[null,"Não terá serie neste dia"],"Airs":[null,"Vai ao ar"],"Plot":[null,"Sinopse"],"Show Update":[null,"Atualizar Série"],"Version Check":[null,"Verificar versão"],"Proper Finder":[null,"Pesquisa de Proper"],"Post Process":[null,"Pós-processamento"],"Subtitles Finder":[null,"Localizador de legendas"],"Scheduler":[null,""],"Alive":[null,""],"Start Time":[null,"Hora de início"],"Cycle Time":[null,""],"Next Run":[null,""],"Last Run":[null,"Última execução"],"Silent":[null,"Silencioso"],"True":[null,"Verdadeiro"],"N/A":[null,"N/D"],"Show id":[null,"Série id"],"Show name":[null,"Série nome"],"Priority":[null,"Prioridade"],"Added":[null,"Adicionado"],"Queue type":[null,"Tipo de fila"],"LOW":[null,"BAIXA"],"NORMAL":[null,"NORMAL"],"HIGH":[null,"ALTA"],"Disk Space":[null,"Espaço em disco"],"Free space":[null,"Espaço livre"],"TV Download Directory":[null,"Diretório de Download para as séries"],"Media Root Directories":[null,"Diretórios raiz de mídia"],"Preview of the proposed name changes":[null,"Pré-visualização das alterações de nome propostas"],"All Seasons":[null,"Todas as temporadas"],"select all":[null,""],"Rename Selected":[null,"Renomear selecionado"],"Cancel Rename":[null,"Cancelar Renomeação"],"Old Location":[null,"Localização antiga"],"New Location":[null,"Nova localização"],"Trakt API did not return any results, please check your config.":[null,"A API do Trakt não retornou nenhum resultado, por favor, verifique sua configuração."],"votes":[null,"votos"],"Remove Show":[null,"Remover Série"],"Level":[null,"Nível"],"Filter":[null,""],"All non-absolute folder locations are relative to ":[null,""],"Manual Post-Processing":[null,"Pós-processamento manual"],"Episode Status Management":[null,"Gerenciamento de status do episódio"],"Update PLEX":[null,"Atualizar o PLEX"],"Update KODI":[null,"Atualizar o KODI"],"Update Emby":[null,"Atualizar o Emby"],"Manage Torrents":[null,"Gerenciar Torrents"],"Missed Subtitle Management":[null,"Gerenciar legendas em falta"],"Help & Info":[null,"Ajuda & informação"],"Backup & Restore":[null,"Fazer um backup & restaurar"],"Tools":[null,"Ferramentas"],"Support SickRage":[null,"Suporte SickRage"],"View Errors":[null,"Ver erros"],"View Warnings":[null,"Ver avisos"],"View Log":[null,"Ver registro"],"Check For Updates":[null,"Verificar atualizações"],"Restart":[null,"Reiniciar"],"Shutdown":[null,"Desligar"],"Logout":[null,"Encerrar sessão"],"Server Status":[null,"Status do servidor"],"View overview of snatched episodes":[null,"Visão geral de episódios \"snatched\""],"Episodes Downloaded":[null,"Episódios baixados"],"Memory used":[null,"Memória usada"],"Load time":[null,"Tempo gasto"],"Branch":[null,"Branch"],"Now":[null,"Agora"]}}}} \ No newline at end of file diff --git a/locale/pt_BR/LC_MESSAGES/messages.mo b/locale/pt_BR/LC_MESSAGES/messages.mo index 05da10de414e225a759db4a095bf9998e8ad7242..e8c5a4c3497de8990d1bf46493620f1602575487 100644 Binary files a/locale/pt_BR/LC_MESSAGES/messages.mo and b/locale/pt_BR/LC_MESSAGES/messages.mo differ diff --git a/locale/pt_BR/LC_MESSAGES/messages.po b/locale/pt_BR/LC_MESSAGES/messages.po index c57a770e3d03f7bf2bf92fe8377c32efafe99fca..3527fe445d3bdee99e52b535bdc856add71b6f13 100644 --- a/locale/pt_BR/LC_MESSAGES/messages.po +++ b/locale/pt_BR/LC_MESSAGES/messages.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: sickrage\n" "Report-Msgid-Bugs-To: miigotu@gmail.com\n" -"POT-Creation-Date: 2017-03-25 09:28-0700\n" -"PO-Revision-Date: 2017-03-25 12:30-0400\n" +"POT-Creation-Date: 2017-03-28 09:10-0700\n" +"PO-Revision-Date: 2017-03-28 12:13-0400\n" "Last-Translator: miigotu <miigotu@gmail.com>\n" "Language-Team: Portuguese, Brazilian\n" "MIME-Version: 1.0\n" @@ -90,7 +90,7 @@ msgid "Biography" msgstr "Biografia" #: gui/slick/views/config_general.mako:78 gui/slick/views/layouts/main.mako:145 -#: sickbeard/__init__.py:79 sickbeard/webserve.py:3807 +#: sickbeard/__init__.py:79 sickbeard/webserve.py:3778 msgid "History" msgstr "Histórico" @@ -103,7 +103,7 @@ msgid "Western" msgstr "Faroeste" #: gui/slick/views/config_general.mako:79 gui/slick/views/layouts/main.mako:221 -#: sickbeard/__init__.py:80 sickbeard/webserve.py:2385 +#: sickbeard/__init__.py:80 sickbeard/webserve.py:2384 msgid "News" msgstr "Notícias" @@ -238,6 +238,34 @@ msgstr "Ignorado" msgid "Subtitled" msgstr "Legendado" +#: sickbeard/helpers.py:1887 +msgid "For best results please set the Download Station alias as" +msgstr "Para obter melhores resultados, por favor, configurar o alias da estação de Download como" + +#: sickbeard/helpers.py:1888 +msgid "You can check this setting in the Synology DSM" +msgstr "Você pode verificar essa configuração no DSM Synology" + +#: sickbeard/helpers.py:1888 sickbeard/helpers.py:1890 +msgid "Control Panel" +msgstr "Painel de Controle" + +#: sickbeard/helpers.py:1888 +msgid "Application Portal" +msgstr "Portal da aplicação" + +#: sickbeard/helpers.py:1889 +msgid "Make sure you allow DSM to be embedded with iFrames too in" +msgstr "Certifique-se de permitir que o DSM seja incorporado com iFrames também em" + +#: sickbeard/helpers.py:1890 +msgid "DSM Settings" +msgstr "Configurações do DSM" + +#: sickbeard/helpers.py:1890 +msgid "Security" +msgstr "Segurança" + #: sickbeard/logger.py:474 msgid "<No Filter>" msgstr "< Nenhum filtro >" @@ -308,15 +336,15 @@ msgstr "Verificador de Trakt" msgid "Event" msgstr "Evento" -#: sickbeard/logger.py:491 sickbeard/webserve.py:1339 sickbeard/webserve.py:1342 -#: sickbeard/webserve.py:1520 sickbeard/webserve.py:1529 sickbeard/webserve.py:1717 -#: sickbeard/webserve.py:1728 sickbeard/webserve.py:1751 sickbeard/webserve.py:1764 -#: sickbeard/webserve.py:1769 sickbeard/webserve.py:1785 sickbeard/webserve.py:1790 -#: sickbeard/webserve.py:1854 sickbeard/webserve.py:1857 sickbeard/webserve.py:1863 -#: sickbeard/webserve.py:1866 sickbeard/webserve.py:1873 sickbeard/webserve.py:1876 -#: sickbeard/webserve.py:1899 sickbeard/webserve.py:1997 sickbeard/webserve.py:2002 -#: sickbeard/webserve.py:2007 sickbeard/webserve.py:2036 sickbeard/webserve.py:2040 -#: sickbeard/webserve.py:2045 +#: sickbeard/logger.py:491 sickbeard/webserve.py:1338 sickbeard/webserve.py:1341 +#: sickbeard/webserve.py:1519 sickbeard/webserve.py:1528 sickbeard/webserve.py:1716 +#: sickbeard/webserve.py:1727 sickbeard/webserve.py:1750 sickbeard/webserve.py:1763 +#: sickbeard/webserve.py:1768 sickbeard/webserve.py:1784 sickbeard/webserve.py:1789 +#: sickbeard/webserve.py:1853 sickbeard/webserve.py:1856 sickbeard/webserve.py:1862 +#: sickbeard/webserve.py:1865 sickbeard/webserve.py:1872 sickbeard/webserve.py:1875 +#: sickbeard/webserve.py:1898 sickbeard/webserve.py:1996 sickbeard/webserve.py:2001 +#: sickbeard/webserve.py:2006 sickbeard/webserve.py:2035 sickbeard/webserve.py:2039 +#: sickbeard/webserve.py:2044 msgid "Error" msgstr "Erro" @@ -333,6 +361,7 @@ msgstr "Tópico" msgid "Main" msgstr "Principal" +#: gui/slick/js/ajaxEpSearch.js:146 gui/slick/js/ajaxEpSearch.js:147 #: gui/slick/views/inc_home_showList.mako:27 sickbeard/show_queue.py:298 msgid "Loading" msgstr "Carregando" @@ -372,867 +401,835 @@ msgstr "Backup das configurações falhou, atualização abortada" msgid "No update needed" msgstr "Nenhuma atualização necessária" -#: sickbeard/webserve.py:170 +#: sickbeard/webserve.py:171 msgid "Mako Error" msgstr "Erro do Mako" -#: sickbeard/webserve.py:195 +#: sickbeard/webserve.py:196 msgid "Oops" msgstr "Opa" -#: sickbeard/webserve.py:197 +#: sickbeard/webserve.py:198 msgid "Wrong API key used" msgstr "Chave API errada" -#: gui/slick/views/login.mako:34 sickbeard/webserve.py:302 +#: gui/slick/views/login.mako:34 sickbeard/webserve.py:303 msgid "Login" msgstr "Login" -#: sickbeard/webserve.py:406 +#: sickbeard/webserve.py:392 msgid "API Key not generated" msgstr "Chave API não gerada" -#: sickbeard/webserve.py:409 +#: sickbeard/webserve.py:395 msgid "API Builder" msgstr "Construtor de API" #: gui/slick/views/config_general.mako:77 gui/slick/views/layouts/main.mako:141 -#: sickbeard/webserve.py:512 +#: sickbeard/webserve.py:498 msgid "Schedule" msgstr "Agenda" -#: sickbeard/webserve.py:610 +#: sickbeard/webserve.py:609 msgid "Test 1" msgstr "Teste 1" -#: sickbeard/webserve.py:610 +#: sickbeard/webserve.py:609 msgid "This is test number 1" msgstr "Este é o teste número 1" -#: sickbeard/webserve.py:611 +#: sickbeard/webserve.py:610 msgid "Test 2" msgstr "Teste 2" -#: sickbeard/webserve.py:611 +#: sickbeard/webserve.py:610 msgid "This is test number 2" msgstr "Este é o teste número 2" -#: sickbeard/webserve.py:634 +#: sickbeard/webserve.py:633 msgid "You're using the {branch} branch. Please use 'master' unless specifically asked" msgstr "Você está usando o \"branch\" {branch}. Por favor, use o 'master', a menos que especificamente solicitado" -#: sickbeard/webserve.py:698 sickbeard/webserve.py:703 +#: sickbeard/webserve.py:697 sickbeard/webserve.py:702 msgid "Invalid show parameters" msgstr "Parâmetros inválidos para a série" -#: sickbeard/webserve.py:710 +#: sickbeard/webserve.py:709 msgid "Invalid parameters" msgstr "Parâmetros inválidos" -#: sickbeard/webserve.py:713 sickbeard/webserve.py:1899 +#: sickbeard/webserve.py:712 sickbeard/webserve.py:1898 msgid "Episode couldn't be retrieved" msgstr "Episódio não pôde ser obtido" -#: sickbeard/webserve.py:759 sickbeard/webserve.py:1268 sickbeard/webserve.py:1297 +#: sickbeard/webserve.py:758 sickbeard/webserve.py:1267 sickbeard/webserve.py:1296 msgid "Home" msgstr "Página Inicial" -#: gui/slick/views/layouts/main.mako:127 sickbeard/webserve.py:759 +#: gui/slick/views/layouts/main.mako:127 sickbeard/webserve.py:758 msgid "Show List" msgstr "Lista de séries" -#: sickbeard/webserve.py:807 +#: sickbeard/webserve.py:806 msgid "Error: Unsupported Request. Send jsonp request with 'callback' variable in the query string." msgstr "Erro: Pedido não Suportado. Envie um pedido jsonp com a variaável 'callback' na string." -#: sickbeard/webserve.py:851 +#: sickbeard/webserve.py:850 msgid "Success. Connected and authenticated" msgstr "Sucesso. Conectado e autenticado" -#: sickbeard/webserve.py:853 +#: sickbeard/webserve.py:852 msgid "Authentication failed. SABnzbd expects" msgstr "Falha na Autenticação. SABnzbd espera" -#: sickbeard/webserve.py:853 +#: sickbeard/webserve.py:852 msgid "as authentication method" msgstr "método de autenticação" -#: sickbeard/webserve.py:855 +#: sickbeard/webserve.py:854 msgid "Unable to connect to host" msgstr "Não é possível conectar ao host" -#: sickbeard/webserve.py:876 +#: sickbeard/webserve.py:875 msgid "SMS sent successfully" msgstr "SMS enviado com sucesso" -#: sickbeard/webserve.py:878 +#: sickbeard/webserve.py:877 msgid "Problem sending SMS: {message}" msgstr "Problema ao enviar SMS: {message}" -#: sickbeard/webserve.py:885 +#: sickbeard/webserve.py:884 msgid "Telegram notification succeeded. Check your Telegram clients to make sure it worked" msgstr "Notificação ao Telegram enviada. Verifique o Telegram para ver se funcionou" -#: sickbeard/webserve.py:887 +#: sickbeard/webserve.py:886 msgid "Error sending Telegram notification: {message}" msgstr "Erro enviando notificação ao Telegram: {message}" -#: sickbeard/webserve.py:894 +#: sickbeard/webserve.py:893 msgid "join notification succeeded. Check your join clients to make sure it worked" msgstr "notificação de Boxcar2 bem sucedida. Verifique os clientes Boxcar2 para ter certeza que funcionou" -#: sickbeard/webserve.py:896 +#: sickbeard/webserve.py:895 msgid "Error sending join notification: {message}" msgstr "Erro ao enviar notificação do Telegram: {message}" -#: sickbeard/webserve.py:906 +#: sickbeard/webserve.py:905 msgid " with password" msgstr "com senha" -#: sickbeard/webserve.py:908 +#: sickbeard/webserve.py:907 msgid "Registered and Tested growl successfully {growl_host}" msgstr "Growl registrado e testado com sucesso {growl_host}" -#: sickbeard/webserve.py:910 +#: sickbeard/webserve.py:909 msgid "Registration and Testing of growl failed {growl_host}" msgstr "Falha no Registro e Teste do Growl {growl_host}" -#: sickbeard/webserve.py:917 +#: sickbeard/webserve.py:916 msgid "Test prowl notice sent successfully" msgstr "Aviso de teste prowl enviado com sucesso" -#: sickbeard/webserve.py:919 +#: sickbeard/webserve.py:918 msgid "Test prowl notice failed" msgstr "Aviso de teste prowl falhou" -#: sickbeard/webserve.py:926 +#: sickbeard/webserve.py:925 msgid "Boxcar2 notification succeeded. Check your Boxcar2 clients to make sure it worked" msgstr "Notificação Boxcar2 enviada com sucesso. Verifique o cliente Boxcar2 para ver se funcionou" -#: sickbeard/webserve.py:928 +#: sickbeard/webserve.py:927 msgid "Error sending Boxcar2 notification" msgstr "Erro enviando notificação Boxcar2" -#: sickbeard/webserve.py:935 +#: sickbeard/webserve.py:934 msgid "Pushover notification succeeded. Check your Pushover clients to make sure it worked" msgstr "Notificação Pushover enviada com sucesso. Verifique o cliente Pushover para ver se funcionou" -#: sickbeard/webserve.py:937 +#: sickbeard/webserve.py:936 msgid "Error sending Pushover notification" msgstr "Erro enviando notificação Pushover" -#: sickbeard/webserve.py:949 +#: sickbeard/webserve.py:948 msgid "Key verification successful" msgstr "Verificação da chave com sucesso" -#: sickbeard/webserve.py:951 +#: sickbeard/webserve.py:950 msgid "Unable to verify key" msgstr "Impossível verificar a chave" -#: sickbeard/webserve.py:958 +#: sickbeard/webserve.py:957 msgid "Tweet successful, check your twitter to make sure it worked" msgstr "Tweet com sucesso, verifique o seu twitter para ver se funcionou" -#: sickbeard/webserve.py:960 +#: sickbeard/webserve.py:959 msgid "Error sending tweet" msgstr "Erro ao enviar tweet" -#: sickbeard/webserve.py:965 +#: sickbeard/webserve.py:964 msgid "Please enter a valid account sid" msgstr "Por favor digite uma conta sid válida" -#: sickbeard/webserve.py:968 +#: sickbeard/webserve.py:967 msgid "Please enter a valid auth token" msgstr "Por favor, insira um código de validação correto" -#: sickbeard/webserve.py:971 +#: sickbeard/webserve.py:970 msgid "Please enter a valid phone sid" msgstr "Por favor entre um telefone sid válido" -#: sickbeard/webserve.py:974 +#: sickbeard/webserve.py:973 msgid "Please format the phone number as \"+1-###-###-####\"" msgstr "Por favor formatar o número de telefone como \"+ 1-# # #-# # #-# # #\"" -#: sickbeard/webserve.py:978 +#: sickbeard/webserve.py:977 msgid "Authorization successful and number ownership verified" msgstr "Autorizado com sucesso e número do dono verificado" -#: sickbeard/webserve.py:980 +#: sickbeard/webserve.py:979 msgid "Error sending sms" msgstr "Erro ao enviar sms" -#: sickbeard/webserve.py:986 +#: sickbeard/webserve.py:985 msgid "Slack message successful" msgstr "Mensagem do Slack enviada com sucesso" -#: sickbeard/webserve.py:988 +#: sickbeard/webserve.py:987 msgid "Slack message failed" msgstr "Falha no envio de mensagem do Slack" -#: sickbeard/webserve.py:994 +#: sickbeard/webserve.py:993 msgid "Discord message successful" msgstr "Mensagem do Discord enviada com sucesso" -#: sickbeard/webserve.py:996 +#: sickbeard/webserve.py:995 msgid "Discord message failed" msgstr "Falha no envio de mensagem do Discord" -#: sickbeard/webserve.py:1006 +#: sickbeard/webserve.py:1005 msgid "Test KODI notice sent successfully to {kodi_host}" msgstr "Aviso de teste enviado ao KODI com êxito para {kodi_host}" -#: sickbeard/webserve.py:1008 +#: sickbeard/webserve.py:1007 msgid "Test KODI notice failed to {kodi_host}" msgstr "Aviso de teste do KODI falhou ao ser enviado para {kodi_host}" -#: sickbeard/webserve.py:1023 +#: sickbeard/webserve.py:1022 msgid "Successful test notice sent to Plex Home Theater ... {plex_clients}" msgstr "Aviso de teste enviado com sucesso ao Plex Home Theater ... {plex_clients}" -#: sickbeard/webserve.py:1025 +#: sickbeard/webserve.py:1024 msgid "Test failed for Plex Home Theater ... {plex_clients}" msgstr "Falha teste para o Plex Home Theater ... {plex_clients}" -#: sickbeard/webserve.py:1028 +#: sickbeard/webserve.py:1027 msgid "Tested Plex Home Theater(s)" msgstr "Plex Home Theater(s) testado" -#: sickbeard/webserve.py:1042 +#: sickbeard/webserve.py:1041 msgid "Successful test of Plex Media Server(s) ... {plex_servers}" msgstr "Plex Home Theater(s) testados com sucesso ... {plex_servers}" -#: sickbeard/webserve.py:1044 +#: sickbeard/webserve.py:1043 msgid "Test failed, No Plex Media Server host specified" msgstr "Teste falhou. Não foi especificado um servidor Plex" -#: sickbeard/webserve.py:1046 +#: sickbeard/webserve.py:1045 msgid "Test failed for Plex Media Server(s) ... {plex_servers}" msgstr "Falha no teste do Plex Media Server... {plex_servers}" -#: sickbeard/webserve.py:1049 +#: sickbeard/webserve.py:1048 msgid "Tested Plex Media Server host(s)" msgstr "Teste completo para o(s) host(s) do Servidor Plex" -#: sickbeard/webserve.py:1057 +#: sickbeard/webserve.py:1056 msgid "Tried sending desktop notification via libnotify" msgstr "Tentativa de envio notificação desktop via libnotify" -#: sickbeard/webserve.py:1066 +#: sickbeard/webserve.py:1065 msgid "Test notice sent successfully to {emby_host}" msgstr "Aviso de teste enviado com êxito para {emby_host}" -#: sickbeard/webserve.py:1068 +#: sickbeard/webserve.py:1067 msgid "Test notice failed to {emby_host}" msgstr "Falha no aviso de teste para {emby_host}" -#: sickbeard/webserve.py:1076 +#: sickbeard/webserve.py:1075 msgid "Successfully started the scan update" msgstr "Iniciada com sucesso a atualização de varredura" -#: sickbeard/webserve.py:1078 +#: sickbeard/webserve.py:1077 msgid "Test failed to start the scan update" msgstr "Falha ao iniciar atualização de varredura" -#: sickbeard/webserve.py:1097 +#: sickbeard/webserve.py:1096 msgid "Test notice sent successfully to {nmj2_host}" msgstr "Aviso de teste enviado com sucesso para {nmj2_host}" -#: sickbeard/webserve.py:1099 +#: sickbeard/webserve.py:1098 msgid "Test notice failed to {nmj2_host}" msgstr "Aviso de teste falhou para {nmj2_host}" -#: sickbeard/webserve.py:1119 +#: sickbeard/webserve.py:1118 msgid "Trakt Authorized" msgstr "Trakt Autorizado" -#: sickbeard/webserve.py:1120 +#: sickbeard/webserve.py:1119 msgid "Trakt Not Authorized!" msgstr "Trakt Não Autorizado!" -#: sickbeard/webserve.py:1184 +#: sickbeard/webserve.py:1183 msgid "Test email sent successfully! Check inbox." msgstr "E-mail de teste enviado com sucesso! Verifique a caixa de entrada." -#: sickbeard/webserve.py:1186 +#: sickbeard/webserve.py:1185 msgid "ERROR: {last_error}" msgstr "ERRO: {last_error}" -#: sickbeard/webserve.py:1193 +#: sickbeard/webserve.py:1192 msgid "Test NMA notice sent successfully" msgstr "Aviso de teste NMA enviado com sucesso" -#: sickbeard/webserve.py:1195 +#: sickbeard/webserve.py:1194 msgid "Test NMA notice failed" msgstr "Falha no envio de teste NMA" -#: sickbeard/webserve.py:1202 +#: sickbeard/webserve.py:1201 msgid "Pushalot notification succeeded. Check your Pushalot clients to make sure it worked" msgstr "Notificação Pushalot enviada com sucesso. Verifique o cliente Pushalot para ver se funcionou" -#: sickbeard/webserve.py:1204 +#: sickbeard/webserve.py:1203 msgid "Error sending Pushalot notification" msgstr "Erro ao enviar notificação Pushalot" -#: sickbeard/webserve.py:1211 +#: sickbeard/webserve.py:1210 msgid "Pushbullet notification succeeded. Check your device to make sure it worked" msgstr "Notificação de Pushbullet bem sucedida. Verificar seu dispositivo para ter certeza que funcionou" -#: sickbeard/webserve.py:1213 sickbeard/webserve.py:1223 sickbeard/webserve.py:1232 +#: sickbeard/webserve.py:1212 sickbeard/webserve.py:1222 sickbeard/webserve.py:1231 msgid "Error sending Pushbullet notification" msgstr "Erro ao enviar notificação de Pushbullet" #: gui/slick/views/displayShow.mako:436 gui/slick/views/inc_home_showList.mako:174 -#: gui/slick/views/manage.mako:49 sickbeard/webserve.py:1249 +#: gui/slick/views/manage.mako:49 sickbeard/webserve.py:1248 msgid "Status" msgstr "Status" -#: sickbeard/webserve.py:1268 sickbeard/webserve.py:1297 +#: sickbeard/webserve.py:1267 sickbeard/webserve.py:1296 msgid "Restarting SickRage" msgstr "Reiniciando o SickRage" -#: sickbeard/webserve.py:1300 +#: sickbeard/webserve.py:1299 msgid "Update Failed" msgstr "Falha na Atualização" -#: sickbeard/webserve.py:1301 +#: sickbeard/webserve.py:1300 msgid "Update wasn't successful, not restarting. Check your log for more information." msgstr "Atualização falhou, não reiniciar. Verifique os registros para obter mais informações." -#: sickbeard/webserve.py:1308 +#: sickbeard/webserve.py:1307 msgid "Checking out branch" msgstr "Verificando versão" -#: sickbeard/webserve.py:1311 +#: sickbeard/webserve.py:1310 msgid "Already on branch" msgstr "Última versão instalada" -#: sickbeard/webserve.py:1339 +#: sickbeard/webserve.py:1338 msgid "Invalid show ID: {show}" msgstr "ID da série inválida: {show}" -#: sickbeard/webserve.py:1342 sickbeard/webserve.py:1871 sickbeard/webserve.py:2002 -#: sickbeard/webserve.py:2040 +#: sickbeard/webserve.py:1341 sickbeard/webserve.py:1870 sickbeard/webserve.py:2001 +#: sickbeard/webserve.py:2039 msgid "Show not in show list" msgstr "Série não encontrada na lista" #: gui/slick/views/inc_rootDirs.mako:31 gui/slick/views/manage.mako:38 -#: gui/slick/views/manage_massEdit.mako:74 sickbeard/webserve.py:1358 -#: sickbeard/webserve.py:2027 +#: gui/slick/views/manage_massEdit.mako:74 sickbeard/webserve.py:1357 +#: sickbeard/webserve.py:2026 msgid "Edit" msgstr "Editar" -#: sickbeard/webserve.py:1368 +#: sickbeard/webserve.py:1367 msgid "This show is in the process of being downloaded - the info below is incomplete." msgstr "Esta serie está em processo de download - as informações abaixo estão incompletas." -#: sickbeard/webserve.py:1371 +#: sickbeard/webserve.py:1370 msgid "The information on this page is in the process of being updated." msgstr "A informação nesta página está sendo atualizada." -#: sickbeard/webserve.py:1374 +#: sickbeard/webserve.py:1373 msgid "The episodes below are currently being refreshed from disk" msgstr "Os episódios abaixo estão atualmente sendo atualizados no disco" -#: sickbeard/webserve.py:1377 +#: sickbeard/webserve.py:1376 msgid "Currently downloading subtitles for this show" msgstr "Neste momento estão sendo baixados legendas para esta serie" -#: sickbeard/webserve.py:1380 +#: sickbeard/webserve.py:1379 msgid "This show is queued to be refreshed." msgstr "Esta série está na fila para ser atualizado." -#: sickbeard/webserve.py:1383 +#: sickbeard/webserve.py:1382 msgid "This show is queued and awaiting an update." msgstr "Essa série esta na fila e aguardando uma atualização." -#: sickbeard/webserve.py:1386 +#: sickbeard/webserve.py:1385 msgid "This show is queued and awaiting subtitles download." msgstr "Essa série esta na fila e aguardando legendas para download." -#: gui/slick/js/core.js:4081 sickbeard/webserve.py:1391 +#: gui/slick/js/core.js:4081 sickbeard/webserve.py:1390 msgid "Resume" msgstr "Continuar" #: gui/slick/js/core.js:4081 gui/slick/views/viewlogs.mako:12 -#: sickbeard/webserve.py:1393 +#: sickbeard/webserve.py:1392 msgid "Pause" msgstr "Pausar" #: gui/slick/views/editShow.mako:345 gui/slick/views/inc_blackwhitelist.mako:40 #: gui/slick/views/inc_blackwhitelist.mako:85 gui/slick/views/manage.mako:58 -#: gui/slick/views/manage_failedDownloads.mako:43 sickbeard/webserve.py:1395 +#: gui/slick/views/manage_failedDownloads.mako:43 sickbeard/webserve.py:1394 msgid "Remove" msgstr "Remover" -#: sickbeard/webserve.py:1396 +#: sickbeard/webserve.py:1395 msgid "Re-scan files" msgstr "Re-escanear Arquivos" -#: sickbeard/webserve.py:1397 +#: sickbeard/webserve.py:1396 msgid "Force Full Update" msgstr "Forçar a atualização completa" -#: sickbeard/webserve.py:1398 +#: sickbeard/webserve.py:1397 msgid "Update show in KODI" msgstr "Atualizar série no KODI" -#: sickbeard/webserve.py:1399 +#: sickbeard/webserve.py:1398 msgid "Update show in Emby" msgstr "Atualizar Série no Emby" -#: sickbeard/webserve.py:1402 +#: sickbeard/webserve.py:1401 msgid "Hide specials" msgstr "Ocultar especiais" -#: sickbeard/webserve.py:1404 +#: sickbeard/webserve.py:1403 msgid "Show specials" msgstr "Mostrar especiais" -#: sickbeard/webserve.py:1406 sickbeard/webserve.py:2030 sickbeard/webserve.py:2031 +#: sickbeard/webserve.py:1405 sickbeard/webserve.py:2029 sickbeard/webserve.py:2030 msgid "Preview Rename" msgstr "Prever renomeação" -#: sickbeard/webserve.py:1409 +#: sickbeard/webserve.py:1408 msgid "Download Subtitles" msgstr "Baixar legendas" -#: sickbeard/webserve.py:1498 +#: sickbeard/webserve.py:1497 msgid "No scene exceptions" msgstr "Sem exceções da \"Scene\"" -#: sickbeard/webserve.py:1516 sickbeard/webserve.py:1764 sickbeard/webserve.py:1785 +#: sickbeard/webserve.py:1515 sickbeard/webserve.py:1763 sickbeard/webserve.py:1784 msgid "Invalid show ID" msgstr "ID da série inválida" -#: sickbeard/webserve.py:1525 sickbeard/webserve.py:1769 sickbeard/webserve.py:1790 +#: sickbeard/webserve.py:1524 sickbeard/webserve.py:1768 sickbeard/webserve.py:1789 msgid "Unable to find the specified show" msgstr "Não é possível encontrar a série especificada" -#: sickbeard/webserve.py:1550 +#: sickbeard/webserve.py:1549 msgid "Unable to retreive Fansub Groups from AniDB." msgstr "Não é possível recuperar grupos de \"Fansubs\" do AniDB." -#: sickbeard/webserve.py:1559 sickbeard/webserve.py:1561 +#: sickbeard/webserve.py:1558 sickbeard/webserve.py:1560 msgid "Edit Show" msgstr "Editar Série" -#: sickbeard/webserve.py:1637 sickbeard/webserve.py:1671 +#: sickbeard/webserve.py:1636 sickbeard/webserve.py:1670 msgid "Unable to refresh this show: {error}" msgstr "Não foi possível atualizar a série: {error}" -#: sickbeard/webserve.py:1663 +#: sickbeard/webserve.py:1662 msgid "New location <tt>{location}</tt> does not exist" msgstr "Não existe a nova localização <tt>{location}</tt>" -#: sickbeard/webserve.py:1688 +#: sickbeard/webserve.py:1687 msgid "Unable to update show: {error}" msgstr "Não foi possível atualizar a série: {error}" -#: sickbeard/webserve.py:1695 +#: sickbeard/webserve.py:1694 msgid "Unable to force an update on scene exceptions of the show." msgstr "Não é possível forçar uma atualização das exceções da \"Scene\" do seriado." -#: sickbeard/webserve.py:1702 +#: sickbeard/webserve.py:1701 msgid "Unable to force an update on scene numbering of the show." msgstr "Não é possível forçar uma atualização das numerações da \"Scene\" do seriado." -#: sickbeard/webserve.py:1708 sickbeard/webserve.py:3540 +#: sickbeard/webserve.py:1707 sickbeard/webserve.py:3539 msgid "{num_errors:d} error{plural} while saving changes:" msgstr "{num_errors:d} erro{plural} ao gravar as alterações:" -#: sickbeard/webserve.py:1719 +#: sickbeard/webserve.py:1718 msgid "{show_name} has been {paused_resumed}" msgstr "{show_name} foi {paused_resumed}" -#: sickbeard/webserve.py:1719 +#: sickbeard/webserve.py:1718 msgid "resumed" msgstr "reiniciado" -#: sickbeard/webserve.py:1719 +#: sickbeard/webserve.py:1718 msgid "paused" msgstr "em pausa" -#: sickbeard/webserve.py:1731 +#: sickbeard/webserve.py:1730 msgid "{show_name} has been {deleted_trashed} {was_deleted}" msgstr "{show_name} foi {deleted_trashed} {was_deleted}" -#: sickbeard/webserve.py:1733 +#: sickbeard/webserve.py:1732 msgid "deleted" msgstr "excluído" -#: sickbeard/webserve.py:1733 +#: sickbeard/webserve.py:1732 msgid "trashed" msgstr "eliminado" -#: sickbeard/webserve.py:1734 +#: sickbeard/webserve.py:1733 msgid "(media untouched)" msgstr "(mídia não tocada)" -#: sickbeard/webserve.py:1734 +#: sickbeard/webserve.py:1733 msgid "(with all related media)" msgstr "(com tudo relacionado a mídia)" -#: sickbeard/webserve.py:1755 +#: sickbeard/webserve.py:1754 msgid "Unable to refresh this show." msgstr "Não foi possível atualizar este seriado." -#: sickbeard/webserve.py:1775 +#: sickbeard/webserve.py:1774 msgid "Unable to update this show." msgstr "Não foi possível atualizar este seriado." -#: sickbeard/webserve.py:1814 +#: sickbeard/webserve.py:1813 msgid "Library update command sent to KODI host(s)): {kodi_hosts}" msgstr "Comando de atualização de biblioteca enviado para KODI host(s)): {kodi_hosts}" -#: sickbeard/webserve.py:1816 +#: sickbeard/webserve.py:1815 msgid "Unable to contact one or more KODI host(s)): {kodi_hosts}" msgstr "Não é possível conectar com um ou mais host(s)) KODI: {kodi_hosts}" -#: sickbeard/webserve.py:1825 +#: sickbeard/webserve.py:1824 msgid "Library update command sent to Plex Media Server host: {plex_server}" msgstr "Comando de atualização de biblioteca enviado para Plex Media Server host: {plex_server}" -#: sickbeard/webserve.py:1828 +#: sickbeard/webserve.py:1827 msgid "Unable to contact Plex Media Server host: {plex_server}" msgstr "Não é possível conectar ao Plex Media Server host: {plex_server}" -#: sickbeard/webserve.py:1840 +#: sickbeard/webserve.py:1839 msgid "Library update command sent to Emby host: {emby_host}" msgstr "Comando de atualização de biblioteca enviado para Emby host: {emby_host}" -#: sickbeard/webserve.py:1842 +#: sickbeard/webserve.py:1841 msgid "Unable to contact Emby host: {emby_host}" msgstr "Não é possível conectar Emby host: {emby_host}" -#: sickbeard/webserve.py:1852 sickbeard/webserve.py:2036 +#: sickbeard/webserve.py:1851 sickbeard/webserve.py:2035 msgid "You must specify a show and at least one episode" msgstr "Você deve especificar um Seriado de pelo menos um episódio" -#: sickbeard/webserve.py:1861 +#: sickbeard/webserve.py:1860 msgid "Invalid status" msgstr "Status inválido" -#: sickbeard/webserve.py:1954 +#: sickbeard/webserve.py:1953 msgid "Backlog was automatically started for the following seasons of <b>{show_name}</b>" msgstr "Lista de pendências foi iniciada automaticamente para os seguintes seriados de <b>{show_name}</b>" #: gui/slick/views/displayShow.mako:74 gui/slick/views/displayShow.mako:79 -#: gui/slick/views/displayShow.mako:404 sickbeard/webserve.py:1961 -#: sickbeard/webserve.py:1980 +#: gui/slick/views/displayShow.mako:404 sickbeard/webserve.py:1960 +#: sickbeard/webserve.py:1979 msgid "Season" msgstr "Temporada" -#: sickbeard/webserve.py:1968 +#: sickbeard/webserve.py:1967 msgid "Backlog started" msgstr "Lista de pendências foi iniciada" -#: sickbeard/webserve.py:1973 +#: sickbeard/webserve.py:1972 msgid "Retrying Search was automatically started for the following season of <b>{show_name}</b>" msgstr "Nova tentativa de pesquisa foi iniciado automaticamente para a temporada seguinte de <b>{show_name}</b>" -#: sickbeard/webserve.py:1987 +#: sickbeard/webserve.py:1986 msgid "Retry Search started" msgstr "Nova tentativa de busca iniciada" -#: sickbeard/webserve.py:1997 +#: sickbeard/webserve.py:1996 msgid "You must specify a show" msgstr "Você deve especificar uma série" -#: sickbeard/webserve.py:2007 sickbeard/webserve.py:2045 +#: sickbeard/webserve.py:2006 sickbeard/webserve.py:2044 msgid "Can't rename episodes when the show dir is missing." msgstr "Não é possível renomear episódios quando o diretório do seriado dir está faltando." -#: sickbeard/webserve.py:2212 sickbeard/webserve.py:2233 +#: sickbeard/webserve.py:2211 sickbeard/webserve.py:2232 msgid "New subtitles downloaded: {new_subtitle_languages}" msgstr "Novas Legendas baixadas: {new_subtitle_languages}" -#: sickbeard/webserve.py:2215 sickbeard/webserve.py:2236 +#: sickbeard/webserve.py:2214 sickbeard/webserve.py:2235 msgid "No subtitles downloaded" msgstr "Nenhuma legenda baixada" #: gui/slick/views/config_general.mako:80 gui/slick/views/layouts/main.mako:222 -#: sickbeard/webserve.py:2363 +#: sickbeard/webserve.py:2362 msgid "IRC" msgstr "IRC" -#: sickbeard/webserve.py:2376 +#: sickbeard/webserve.py:2375 msgid "Could not load news from the repo. [Click here for news.md])({news_url})" msgstr "Não foi possível carregar as notícias do repo. [Clique aqui para news.md]) ({news_url})" -#: sickbeard/webserve.py:2383 sickbeard/webserve.py:2401 +#: sickbeard/webserve.py:2382 sickbeard/webserve.py:2400 msgid "The was a problem connecting to github, please refresh and try again" msgstr "Ouve um problema na conexão com o github, por favor atualize e tente novamente" -#: sickbeard/webserve.py:2398 +#: sickbeard/webserve.py:2397 msgid "Could not load changes from the repo. [Click here for CHANGES.md]({changes_url})" msgstr "Não foi possível carregar alterações do repo. [Clique aqui para CHANGES.md] ({changes_url})" -#: gui/slick/views/layouts/main.mako:223 sickbeard/webserve.py:2403 +#: gui/slick/views/layouts/main.mako:223 sickbeard/webserve.py:2402 msgid "Changelog" msgstr "Registro de alterações" -#: gui/slick/views/layouts/main.mako:190 sickbeard/webserve.py:2413 -#: sickbeard/webserve.py:3855 sickbeard/webserve.py:4341 +#: gui/slick/views/layouts/main.mako:190 sickbeard/webserve.py:2412 +#: sickbeard/webserve.py:3826 sickbeard/webserve.py:4312 msgid "Post Processing" msgstr "Pós-processamento" -#: gui/slick/views/layouts/main.mako:128 sickbeard/webserve.py:2445 +#: gui/slick/views/layouts/main.mako:128 sickbeard/webserve.py:2444 msgid "Add Shows" msgstr "Adicionar séries" -#: sickbeard/webserve.py:2510 +#: sickbeard/webserve.py:2509 msgid "No folders selected." msgstr "Nenhuma pasta selecionada." -#: sickbeard/webserve.py:2632 +#: sickbeard/webserve.py:2631 msgid "New Show" msgstr "Nova Série" -#: sickbeard/webserve.py:2647 +#: sickbeard/webserve.py:2646 msgid "Trending Shows" msgstr "Séries em alta" -#: sickbeard/webserve.py:2649 sickbeard/webserve.py:2772 +#: sickbeard/webserve.py:2648 sickbeard/webserve.py:2771 msgid "Popular Shows" msgstr "Séries populares" -#: sickbeard/webserve.py:2651 sickbeard/webserve.py:2665 +#: sickbeard/webserve.py:2650 sickbeard/webserve.py:2664 msgid "Most Anticipated Shows" msgstr "Séries mais aguardados aguardadas" -#: sickbeard/webserve.py:2653 +#: sickbeard/webserve.py:2652 msgid "Most Collected Shows" msgstr "Séries mais baixadas" -#: sickbeard/webserve.py:2655 +#: sickbeard/webserve.py:2654 msgid "Most Watched Shows" msgstr "Séries mais assistidas" -#: sickbeard/webserve.py:2657 +#: sickbeard/webserve.py:2656 msgid "Most Played Shows" msgstr "Séries mais vistas" -#: sickbeard/webserve.py:2659 +#: sickbeard/webserve.py:2658 msgid "Recommended Shows" msgstr "Séries recomendadas" -#: gui/slick/views/addShows_trendingShows.mako:60 sickbeard/webserve.py:2661 +#: gui/slick/views/addShows_trendingShows.mako:60 sickbeard/webserve.py:2660 msgid "New Shows" msgstr "Novas séries" -#: gui/slick/views/addShows_trendingShows.mako:61 sickbeard/webserve.py:2663 +#: gui/slick/views/addShows_trendingShows.mako:61 sickbeard/webserve.py:2662 msgid "Season Premieres" msgstr "Temporada de estréia" -#: sickbeard/webserve.py:2792 sickbeard/webserve.py:2793 +#: sickbeard/webserve.py:2791 sickbeard/webserve.py:2792 msgid "Existing Show" msgstr "Show existente" -#: sickbeard/webserve.py:2871 +#: sickbeard/webserve.py:2870 msgid "No root directories setup, please go back and add one." msgstr "Nenhum diretório raiz de instalação, por favor volte e adiciona um." -#: sickbeard/webserve.py:2883 sickbeard/webserve.py:3002 +#: sickbeard/webserve.py:2882 sickbeard/webserve.py:3001 msgid "Show added" msgstr "Série adicionada" -#: sickbeard/webserve.py:2883 +#: sickbeard/webserve.py:2882 msgid "Adding the specified show {show_name}" msgstr "Adicionando a série especificada {show_name}" -#: sickbeard/webserve.py:2924 +#: sickbeard/webserve.py:2923 msgid "Missing params, no Indexer ID or folder: {show_to_add} and {root_dir}/{show_path}" msgstr "Faltando parâmetros, nenhum ID de indexador ou pasta: {show_to_add} e {root_dir}/{show_path}" -#: sickbeard/webserve.py:2933 +#: sickbeard/webserve.py:2932 msgid "Unknown error. Unable to add show due to problem with show selection." msgstr "Erro desconhecido. Não é possível adicionar a série devido a um problema com a série escolhida." -#: sickbeard/webserve.py:2957 sickbeard/webserve.py:2967 +#: sickbeard/webserve.py:2956 sickbeard/webserve.py:2966 msgid "Unable to add show" msgstr "Não é possível adicionar série" -#: sickbeard/webserve.py:2957 +#: sickbeard/webserve.py:2956 msgid "Folder {show_dir} exists already" msgstr "Diretório {show_dir} já existe" -#: sickbeard/webserve.py:2968 +#: sickbeard/webserve.py:2967 msgid "Unable to create the folder {show_dir}, can't add the show" msgstr "Não foi possível criar a pasta {show_dir}, série não adicionada" -#: sickbeard/webserve.py:3002 +#: sickbeard/webserve.py:3001 msgid "Adding the specified show into {show_dir}" msgstr "Adicionando a série especificada em {show_dir}" -#: sickbeard/webserve.py:3078 +#: sickbeard/webserve.py:3077 msgid "Shows Added" msgstr "Séries adicionadas" -#: sickbeard/webserve.py:3079 +#: sickbeard/webserve.py:3078 msgid "Automatically added {num_shows} from their existing metadata files" msgstr "Adicionado automaticamente {num_shows} de seus arquivos de metadados existentes" -#: gui/slick/views/layouts/main.mako:153 sickbeard/webserve.py:3096 +#: gui/slick/views/layouts/main.mako:153 sickbeard/webserve.py:3095 msgid "Mass Update" msgstr "Atualização em massa" -#: sickbeard/webserve.py:3134 sickbeard/webserve.py:3161 sickbeard/webserve.py:3237 -#: sickbeard/webserve.py:3238 +#: sickbeard/webserve.py:3133 sickbeard/webserve.py:3160 sickbeard/webserve.py:3236 +#: sickbeard/webserve.py:3237 msgid "Episode Overview" msgstr "Visão geral do episódio" -#: sickbeard/webserve.py:3270 +#: sickbeard/webserve.py:3269 msgid "Missing Subtitles" msgstr "Legendas em falta" -#: gui/slick/views/layouts/main.mako:154 sickbeard/webserve.py:3356 -#: sickbeard/webserve.py:3357 +#: gui/slick/views/layouts/main.mako:154 sickbeard/webserve.py:3355 +#: sickbeard/webserve.py:3356 msgid "Backlog Overview" msgstr "Visão geral de dependências" -#: sickbeard/webserve.py:3481 +#: sickbeard/webserve.py:3480 msgid "Mass Edit" msgstr "Editor em massa" -#: sickbeard/webserve.py:3586 +#: sickbeard/webserve.py:3585 msgid "Unable to update show: {excption_format}" msgstr "Não é possível atualizar a série: {excption_format}" -#: sickbeard/webserve.py:3594 +#: sickbeard/webserve.py:3593 msgid "Unable to refresh show {show_name}: {excption_format}" msgstr "Não é possível atualizar o seriado {show_name}: {excption_format}" -#: sickbeard/webserve.py:3605 +#: sickbeard/webserve.py:3604 msgid "Errors encountered" msgstr "Erros encontrados" -#: gui/slick/views/config_general.mako:261 sickbeard/webserve.py:3611 +#: gui/slick/views/config_general.mako:261 sickbeard/webserve.py:3610 msgid "Updates" msgstr "Atualizações" -#: sickbeard/webserve.py:3616 +#: sickbeard/webserve.py:3615 msgid "Refreshes" msgstr "Atualizações" -#: sickbeard/webserve.py:3621 +#: sickbeard/webserve.py:3620 msgid "Renames" msgstr "Renomeações" #: gui/slick/views/displayShow.mako:260 gui/slick/views/displayShow.mako:435 #: gui/slick/views/editShow.mako:119 gui/slick/views/inc_addShowOptions.mako:20 -#: gui/slick/views/manage_massEdit.mako:262 sickbeard/webserve.py:3626 -#: sickbeard/webserve.py:5244 +#: gui/slick/views/manage_massEdit.mako:262 sickbeard/webserve.py:3625 +#: sickbeard/webserve.py:5215 msgid "Subtitles" msgstr "Legendas" -#: sickbeard/webserve.py:3631 +#: sickbeard/webserve.py:3630 msgid "The following actions were queued" msgstr "As seguintes ações foram adicionadas à fila" -#: sickbeard/webserve.py:3651 -msgid "For best results please set the Download Station alias as" -msgstr "Para obter melhores resultados, por favor, configurar o alias da estação de Download como" - -#: sickbeard/webserve.py:3652 -msgid "You can check this setting in the Synology DSM" -msgstr "Você pode verificar essa configuração no DSM Synology" - -#: sickbeard/webserve.py:3652 sickbeard/webserve.py:3654 -msgid "Control Panel" -msgstr "Painel de Controle" - -#: sickbeard/webserve.py:3652 -msgid "Application Portal" -msgstr "Portal da aplicação" - -#: sickbeard/webserve.py:3653 -msgid "Make sure you allow DSM to be embedded with iFrames too in" -msgstr "Certifique-se de permitir que o DSM seja incorporado com iFrames também em" - -#: sickbeard/webserve.py:3654 -msgid "DSM Settings" -msgstr "Configurações do DSM" - -#: sickbeard/webserve.py:3654 -msgid "Security" -msgstr "Segurança" - -#: gui/slick/views/layouts/main.mako:167 sickbeard/webserve.py:3662 -msgid "Manage Torrents" -msgstr "Gerenciar Torrents" - -#: gui/slick/views/layouts/main.mako:170 sickbeard/webserve.py:3683 +#: gui/slick/views/layouts/main.mako:170 sickbeard/webserve.py:3654 msgid "Failed Downloads" msgstr "Downloads Falhados" -#: gui/slick/views/layouts/main.mako:155 sickbeard/webserve.py:3701 +#: gui/slick/views/layouts/main.mako:155 sickbeard/webserve.py:3672 msgid "Manage Searches" msgstr "Gerenciar as buscas" -#: sickbeard/webserve.py:3709 +#: sickbeard/webserve.py:3680 msgid "Backlog search started" msgstr "Início de pesquisa de lista de dependências" -#: sickbeard/webserve.py:3719 +#: sickbeard/webserve.py:3690 msgid "Daily search started" msgstr "Iniciado a busca diária" -#: sickbeard/webserve.py:3728 +#: sickbeard/webserve.py:3699 msgid "Find propers search started" msgstr "Pesquisa iniciada" -#: sickbeard/webserve.py:3737 +#: sickbeard/webserve.py:3708 msgid "Subtitle search started" msgstr "Pesquisa de legendas iniciada" -#: sickbeard/webserve.py:3801 +#: sickbeard/webserve.py:3772 msgid "Remove Selected" msgstr "Remover selecionados" -#: sickbeard/webserve.py:3802 +#: sickbeard/webserve.py:3773 msgid "Clear History" msgstr "Limpar histórico" -#: sickbeard/webserve.py:3803 +#: sickbeard/webserve.py:3774 msgid "Trim History" msgstr "Encurtar histórico" -#: sickbeard/webserve.py:3823 +#: sickbeard/webserve.py:3794 msgid "Selected history entries removed" msgstr "Os dados do histórico selecionados foram removidos" -#: sickbeard/webserve.py:3830 +#: sickbeard/webserve.py:3801 msgid "History cleared" msgstr "Histórico apagado" -#: sickbeard/webserve.py:3837 +#: sickbeard/webserve.py:3808 msgid "Removed history entries older than 30 days" msgstr "Remover entradas do histórico mais antigas do que 30 dias" -#: gui/slick/views/layouts/main.mako:185 sickbeard/webserve.py:3850 +#: gui/slick/views/layouts/main.mako:185 sickbeard/webserve.py:3821 msgid "General" msgstr "Geral" -#: sickbeard/webserve.py:3851 sickbeard/webserve.py:4143 +#: sickbeard/webserve.py:3822 sickbeard/webserve.py:4114 msgid "Backup/Restore" msgstr "Backup/Restaurar" -#: gui/slick/views/layouts/main.mako:187 sickbeard/webserve.py:3852 -#: sickbeard/webserve.py:4206 +#: gui/slick/views/layouts/main.mako:187 sickbeard/webserve.py:3823 +#: sickbeard/webserve.py:4177 msgid "Search Settings" msgstr "Configurações de pesquisa" -#: gui/slick/views/layouts/main.mako:188 sickbeard/webserve.py:3853 -#: sickbeard/webserve.py:4518 +#: gui/slick/views/layouts/main.mako:188 sickbeard/webserve.py:3824 +#: sickbeard/webserve.py:4489 msgid "Search Providers" msgstr "Provedores de pesquisa" -#: gui/slick/views/layouts/main.mako:189 sickbeard/webserve.py:3854 +#: gui/slick/views/layouts/main.mako:189 sickbeard/webserve.py:3825 msgid "Subtitles Settings" msgstr "Configurações de legendas" -#: gui/slick/views/layouts/main.mako:191 sickbeard/webserve.py:3856 -#: sickbeard/webserve.py:4964 +#: gui/slick/views/layouts/main.mako:191 sickbeard/webserve.py:3827 +#: sickbeard/webserve.py:4935 msgid "Notifications" msgstr "Notificações" @@ -1240,142 +1237,142 @@ msgstr "Notificações" #: gui/slick/views/home.mako:35 gui/slick/views/inc_addShowOptions.mako:79 #: gui/slick/views/inc_home_showList.mako:179 gui/slick/views/layouts/main.mako:192 #: gui/slick/views/manage.mako:44 gui/slick/views/manage_massEdit.mako:202 -#: sickbeard/webserve.py:3857 sickbeard/webserve.py:5309 +#: sickbeard/webserve.py:3828 sickbeard/webserve.py:5280 msgid "Anime" msgstr "Anime" -#: sickbeard/webserve.py:3895 sickbeard/webserve.py:3896 +#: sickbeard/webserve.py:3866 sickbeard/webserve.py:3867 msgid "SickRage Configuration" msgstr "Configuração do SickRage" -#: sickbeard/webserve.py:3910 +#: sickbeard/webserve.py:3881 msgid "Config - Shares" msgstr "" -#: sickbeard/webserve.py:3910 +#: sickbeard/webserve.py:3881 msgid "Windows Shares Configuration" msgstr "" -#: sickbeard/webserve.py:3937 +#: sickbeard/webserve.py:3908 msgid "Saved Shares" msgstr "" -#: sickbeard/webserve.py:3937 +#: sickbeard/webserve.py:3908 msgid "Your Windows share settings have been saved" msgstr "" -#: sickbeard/webserve.py:3948 +#: sickbeard/webserve.py:3919 msgid "Config - General" msgstr "Configuração - geral" -#: sickbeard/webserve.py:3948 +#: sickbeard/webserve.py:3919 msgid "General Configuration" msgstr "Configuração geral" -#: sickbeard/webserve.py:3988 +#: sickbeard/webserve.py:3959 msgid "Saved Defaults" msgstr "Padrões salvos" -#: sickbeard/webserve.py:3988 +#: sickbeard/webserve.py:3959 msgid "Your \"add show\" defaults have been set to your current selections." msgstr "Os padrões de \"adicionar série\" foram definidos para suas seleções atuais." -#: sickbeard/webserve.py:4095 +#: sickbeard/webserve.py:4066 msgid "Unable to create directory {directory}, log directory not changed." msgstr "Não é possível criar o diretório {directory}, diretório de log não alterado." -#: sickbeard/webserve.py:4103 +#: sickbeard/webserve.py:4074 msgid "Unable to create directory {directory}, https cert directory not changed." msgstr "Não é possível criar o diretório {directory}, o diretório da chave https não foi mudado." -#: sickbeard/webserve.py:4107 +#: sickbeard/webserve.py:4078 msgid "Unable to create directory {directory}, https key directory not changed." msgstr "Não é possível criar o diretório {directory}, o diretório da chave https não foi mudado." -#: sickbeard/webserve.py:4126 sickbeard/webserve.py:4324 sickbeard/webserve.py:4456 -#: sickbeard/webserve.py:5227 +#: sickbeard/webserve.py:4097 sickbeard/webserve.py:4295 sickbeard/webserve.py:4427 +#: sickbeard/webserve.py:5198 msgid "Error(s) Saving Configuration" msgstr "Erro (s) a guardar a configuração" -#: sickbeard/webserve.py:4129 sickbeard/webserve.py:4327 sickbeard/webserve.py:4458 -#: sickbeard/webserve.py:4950 sickbeard/webserve.py:5230 sickbeard/webserve.py:5294 -#: sickbeard/webserve.py:5323 +#: sickbeard/webserve.py:4100 sickbeard/webserve.py:4298 sickbeard/webserve.py:4429 +#: sickbeard/webserve.py:4921 sickbeard/webserve.py:5201 sickbeard/webserve.py:5265 +#: sickbeard/webserve.py:5294 msgid "Configuration Saved" msgstr "Configuração salva" -#: sickbeard/webserve.py:4142 +#: sickbeard/webserve.py:4113 msgid "Config - Backup/Restore" msgstr "Config - Backup/Restaurar" -#: sickbeard/webserve.py:4205 +#: sickbeard/webserve.py:4176 msgid "Config - Episode Search" msgstr "Config - Busca de episódios" -#: sickbeard/webserve.py:4340 +#: sickbeard/webserve.py:4311 msgid "Config - Post Processing" msgstr "Config - pós-processamento" -#: sickbeard/webserve.py:4380 +#: sickbeard/webserve.py:4351 msgid "Unpacking Not Supported, disabling unpack setting" msgstr "Descompactação não suportado, desabilitando configuração de descompactar" -#: sickbeard/webserve.py:4431 +#: sickbeard/webserve.py:4402 msgid "You tried saving an invalid normal naming config, not saving your naming settings" msgstr "Você tentou salvar uma configuração de nomeação inválida, suas configurações de nomeação não foram salvas" -#: sickbeard/webserve.py:4439 +#: sickbeard/webserve.py:4410 msgid "You tried saving an invalid anime naming config, not saving your naming settings" msgstr "Você tentou salvar um arquivo de configuração de nomeação de anime inválido, Suas configurações não serão salvas" -#: sickbeard/webserve.py:4517 +#: sickbeard/webserve.py:4488 msgid "Config - Providers" msgstr "Config - Provedores" -#: sickbeard/webserve.py:4547 +#: sickbeard/webserve.py:4518 msgid "No Provider Name specified" msgstr "Nenhum nome de provedor especificado" -#: sickbeard/webserve.py:4549 +#: sickbeard/webserve.py:4520 msgid "No Provider Url specified" msgstr "Nenhuma URL de provedor especificado" -#: sickbeard/webserve.py:4551 +#: sickbeard/webserve.py:4522 msgid "No Provider Api key specified" msgstr "Nenhuma chave Api para o provedor especificado" -#: sickbeard/webserve.py:4963 +#: sickbeard/webserve.py:4934 msgid "Config - Notifications" msgstr "Config - notificações" -#: sickbeard/webserve.py:5243 +#: sickbeard/webserve.py:5214 msgid "Config - Subtitles" msgstr "Config - legendas" -#: sickbeard/webserve.py:5308 +#: sickbeard/webserve.py:5279 msgid "Config - Anime" msgstr "Config - Anime" -#: sickbeard/webserve.py:5336 +#: sickbeard/webserve.py:5307 msgid "Clear Errors" msgstr "Limpar erros" -#: sickbeard/webserve.py:5342 +#: sickbeard/webserve.py:5313 msgid "Clear Warnings" msgstr "Limpar avisos" -#: sickbeard/webserve.py:5348 +#: sickbeard/webserve.py:5319 msgid "Submit Errors" msgstr "Enviar erros" -#: sickbeard/webserve.py:5363 +#: sickbeard/webserve.py:5334 msgid "Logs & Errors" msgstr "Logs & erros" -#: sickbeard/webserve.py:5388 +#: sickbeard/webserve.py:5359 msgid "Log File" msgstr "Arquivo de log" -#: sickbeard/webserve.py:5388 +#: sickbeard/webserve.py:5359 msgid "Logs" msgstr "Logs" @@ -1383,30 +1380,166 @@ msgstr "Logs" msgid "This is a test notification from SickRage" msgstr "Esta é uma notificação de teste do SickRage" -#: gui/slick/js/core.js:481 gui/slick/js/core.js:502 gui/slick/js/core.js:524 -#: gui/slick/js/core.js:548 gui/slick/js/core.js:573 gui/slick/js/core.js:596 -#: gui/slick/js/core.js:625 gui/slick/js/core.js:645 gui/slick/js/core.js:690 -#: gui/slick/js/core.js:769 gui/slick/js/core.js:829 gui/slick/js/core.js:849 -#: gui/slick/js/core.js:879 gui/slick/js/core.js:909 gui/slick/js/core.js:969 -#: gui/slick/js/core.js:1046 gui/slick/js/core.js:1066 gui/slick/js/core.js:1085 +#: gui/slick/js/browser.js:6 +msgid "Choose Directory" +msgstr "" + +#: gui/slick/js/core.js:443 +msgid "Select log file folder location" +msgstr "" + +#: gui/slick/js/core.js:445 +msgid "Select CSS file" +msgstr "" + +#: gui/slick/js/core.js:469 +msgid "Select backup folder to save to" +msgstr "" + +#: gui/slick/js/core.js:470 +msgid "Select backup files to restore" +msgstr "" + +#: gui/slick/js/core.js:479 gui/slick/js/core.js:500 gui/slick/js/core.js:522 +#: gui/slick/js/core.js:546 gui/slick/js/core.js:571 gui/slick/js/core.js:594 +#: gui/slick/js/core.js:623 gui/slick/js/core.js:643 gui/slick/js/core.js:688 +#: gui/slick/js/core.js:767 gui/slick/js/core.js:827 gui/slick/js/core.js:847 +#: gui/slick/js/core.js:877 gui/slick/js/core.js:907 gui/slick/js/core.js:967 +#: gui/slick/js/core.js:1044 gui/slick/js/core.js:1064 gui/slick/js/core.js:1083 msgid "Please fill out the necessary fields above." msgstr "" -#: gui/slick/js/core.js:1328 gui/slick/js/core.js:1378 gui/slick/js/core.js:1427 -#: gui/slick/js/core.js:1493 +#: gui/slick/js/core.js:680 +msgid "<b>Step 1:</b> Confirm Authorization" +msgstr "" + +#: gui/slick/js/core.js:977 +msgid "Check blacklist name; the value needs to be a trakt slug" +msgstr "" + +#: gui/slick/js/core.js:1022 +msgid "You must provide a recipient email address!" +msgstr "" + +#: gui/slick/js/core.js:1107 +msgid "You didn't supply a Pushbullet api key" +msgstr "" + +#: gui/slick/js/core.js:1133 gui/slick/js/core.js:1162 +msgid "Don't forget to save your new pushbullet settings." +msgstr "" + +#: gui/slick/js/core.js:1262 +msgid "Select TV Download Directory" +msgstr "" + +#: gui/slick/js/core.js:1263 +msgid "Select Unpack Directory" +msgstr "" + +#: gui/slick/js/core.js:1326 gui/slick/js/core.js:1376 gui/slick/js/core.js:1425 +#: gui/slick/js/core.js:1491 msgid "This pattern is invalid." msgstr "Esse padrão é inválido." -#: gui/slick/js/core.js:1336 gui/slick/js/core.js:1386 gui/slick/js/core.js:1435 -#: gui/slick/js/core.js:1501 +#: gui/slick/js/core.js:1334 gui/slick/js/core.js:1384 gui/slick/js/core.js:1433 +#: gui/slick/js/core.js:1499 msgid "This pattern would be invalid without the folders, using it will force \"Season Folders\" on for all shows." msgstr "Esse padrão seria inválido sem as pastas, usá-lo irá forçar \"pastas de Temporadas\" para todos as séries." -#: gui/slick/js/core.js:1344 gui/slick/js/core.js:1394 gui/slick/js/core.js:1443 -#: gui/slick/js/core.js:1509 +#: gui/slick/js/core.js:1342 gui/slick/js/core.js:1392 gui/slick/js/core.js:1441 +#: gui/slick/js/core.js:1507 msgid "This pattern is valid." msgstr "Este padrão é válido." +#: gui/slick/js/core.js:1818 +msgid "Select .nzb black hole/watch location" +msgstr "" + +#: gui/slick/js/core.js:1819 +msgid "Select .torrent black hole/watch location" +msgstr "" + +#: gui/slick/js/core.js:1820 +msgid "Select .torrent download location" +msgstr "" + +#: gui/slick/js/core.js:1900 +msgid "Minimum seeding time is" +msgstr "" + +#: gui/slick/js/core.js:1902 +msgid "URL to your uTorrent client (e.g. http://localhost:8000)" +msgstr "" + +#: gui/slick/js/core.js:1905 +msgid "Stop seeding when inactive for" +msgstr "" + +#: gui/slick/js/core.js:1911 +msgid "URL to your Transmission client (e.g. http://localhost:9091)" +msgstr "" + +#: gui/slick/js/core.js:1921 +msgid "URL to your Deluge client (e.g. http://localhost:8112)" +msgstr "" + +#: gui/slick/js/core.js:1930 +msgid "IP or Hostname of your Deluge Daemon (e.g. scgi://localhost:58846)" +msgstr "" + +#: gui/slick/js/core.js:1937 +msgid "URL to your Synology DS client (e.g. http://localhost:5000)" +msgstr "" + +#: gui/slick/js/core.js:1941 +msgid "URL to your rTorrent client (e.g. scgi://localhost:5000 <br> or https://localhost/rutorrent/plugins/httprpc/action.php)" +msgstr "" + +#: gui/slick/js/core.js:1952 +msgid "URL to your qBittorrent client (e.g. http://localhost:8080)" +msgstr "" + +#: gui/slick/js/core.js:1962 +msgid "URL to your MLDonkey (e.g. http://localhost:4080)" +msgstr "" + +#: gui/slick/js/core.js:1974 +msgid "URL to your putio client (e.g. http://localhost:8080)" +msgstr "" + +#: gui/slick/js/core.js:1975 +msgid "<a herf=\"https://app.put.io/oauth/apps/new\" target=\"_blank\"> Create a new OAuth app for put.io</a>" +msgstr "" + +#: gui/slick/js/core.js:1977 +msgid "Put.io Parent Folder" +msgstr "" + +#: gui/slick/js/core.js:1978 +msgid "Put.io OAuth Token" +msgstr "" + +#: gui/slick/js/core.js:3383 gui/slick/views/displayShow.mako:410 +msgid "Show Episodes" +msgstr "Mostrar episódios" + +#: gui/slick/js/core.js:3388 gui/slick/views/displayShow.mako:408 +msgid "Hide Episodes" +msgstr "" + +#: gui/slick/js/core.js:3396 +msgid "Select Show Location" +msgstr "" + +#: gui/slick/js/core.js:3460 +msgid "Select Unprocessed Episode Folder" +msgstr "" + +#: gui/slick/js/core.js:3790 +msgid "DELETED" +msgstr "" + #: gui/slick/js/core.js:4082 msgid "Resume updating the log on this page." msgstr "Retomar a atualização do log nessa página." @@ -1415,6 +1548,26 @@ msgstr "Retomar a atualização do log nessa página." msgid "Pause updating the log on this page." msgstr "Pausar a atualização do log nessa página." +#: gui/slick/js/core.js:4323 +msgid "searching {searchingFor}..." +msgstr "" + +#: gui/slick/js/core.js:4334 +msgid "search timed out, try again or try another indexer" +msgstr "" + +#: gui/slick/js/core.js:4503 +msgid "loading folders..." +msgstr "" + +#: gui/slick/js/parsers.js:7 gui/slick/js/parsers.js:8 +#: gui/slick/js/plotTooltip.js:6 gui/slick/js/sceneExceptionsTooltip.js:6 +#: gui/slick/views/inc_home_showList.mako:209 +#: gui/slick/views/inc_home_showList.mako:215 +#: gui/slick/views/inc_home_showList.mako:231 +msgid "Loading..." +msgstr "Carregando..." + #: gui/slick/views/404.mako:5 msgid "You have reached this page by accident, please check the url." msgstr "Chegou a esta página por acidente, por favor, verifique o url." @@ -5715,14 +5868,6 @@ msgstr "Alterar episódios selecionados para" msgid "Select Columns" msgstr "Selecionar colunas" -#: gui/slick/views/displayShow.mako:408 -msgid "Hide Episodes" -msgstr "" - -#: gui/slick/views/displayShow.mako:410 -msgid "Show Episodes" -msgstr "Mostrar episódios" - #: gui/slick/views/displayShow.mako:424 msgid "NFO" msgstr "NFO" @@ -6241,12 +6386,6 @@ msgstr "Ativos" msgid "loading" msgstr "carregando" -#: gui/slick/views/inc_home_showList.mako:209 -#: gui/slick/views/inc_home_showList.mako:215 -#: gui/slick/views/inc_home_showList.mako:231 -msgid "Loading..." -msgstr "Carregando..." - #: gui/slick/views/inc_qualityChooser.mako:31 msgid "<p><b><u>Preferred</u></b> qualities will replace those in <b><u>allowed</u></b>, even if they are lower.</p>" msgstr "<p>Qualidades <b><u>preferidas</u></b> irão substituir aqueles em <b><u>permitido</u></b>, mesmo que sejam inferiores.</p>" @@ -6784,6 +6923,10 @@ msgstr "Atualizar o KODI" msgid "Update Emby" msgstr "Atualizar o Emby" +#: gui/slick/views/layouts/main.mako:167 +msgid "Manage Torrents" +msgstr "Gerenciar Torrents" + #: gui/slick/views/layouts/main.mako:173 msgid "Missed Subtitle Management" msgstr "Gerenciar legendas em falta" diff --git a/locale/pt_PT/LC_MESSAGES/messages.json b/locale/pt_PT/LC_MESSAGES/messages.json index f32a2c199c46cdcbde5ba92f60021a8b725283ea..7cd1e2b5e0a71d9b269ae0f8641a288e08c8e9f2 100644 --- a/locale/pt_PT/LC_MESSAGES/messages.json +++ b/locale/pt_PT/LC_MESSAGES/messages.json @@ -1 +1 @@ -{"messages":{"domain":"messages","locale_data":{"messages":{"100":[null,"100"],"250":[null,"250"],"500":[null,"500"],"":{"domain":"messages","plural_forms":"nplurals=2; plural=(n != 1);","lang":"pt_PT"},"Drama":[null,"Drama"],"Mystery":[null,"Mistério"],"Science-Fiction":[null,"Ficção científica"],"Crime":[null,"Crime"],"Action":[null,"Acção"],"Comedy":[null,"Comédia"],"Thriller":[null,"Suspense"],"Animation":[null,"Animação"],"Family":[null,"Família"],"Fantasy":[null,"Fantasia"],"Adventure":[null,"Aventura"],"Horror":[null,"Terror"],"Film-Noir":[null,"Filme-Noir"],"Sci-Fi":[null,"Ficção Científica"],"Romance":[null,"Romance"],"Sport":[null,"Desporto"],"War":[null,"Guerra"],"Biography":[null,"Biografia"],"History":[null,"História"],"Music":[null,"Música"],"Western":[null,"Western"],"News":[null,"Notícias"],"Sitcom":[null,"Sitcom"],"Reality-TV":[null,"Reality Show"],"Documentary":[null,"Documentário"],"Game-Show":[null,"Concurso"],"Musical":[null,"Musical"],"Talk-Show":[null,"Talk Show"],"Started Download":[null,"Transferência Iniciada"],"Download Finished":[null,"Transferência Terminada"],"Subtitle Download Finished":[null,"Transferência de Legendas Terminada"],"SickRage Updated":[null,"SickRage atualizado"],"SickRage Updated To Commit#: ":[null,"SickRage atualizado para Commit #: "],"SickRage new login":[null,"SickRage novo login"],"New login from IP: {0}. http://geomaplookup.net/?ip={0}":[null,"Novo login do IP: {0}. http://geomaplookup.net/?IP={0}"],"Repeat":[null,"Repetir"],"Repeat (Separated)":[null,"Repetição (separada)"],"Extend":[null,"Estender"],"Extend (Limited)":[null,"Estender (limitado)"],"Extend (Limited, E-prefixed)":[null,"Estender (limitado, E-prefixo)"],"Downloaded":[null,"Transferido"],"Snatched":[null,"Encontrado"],"Snatched (Proper)":[null,"Encontrado (Proper)"],"Failed":[null,"Falhou"],"Snatched (Best)":[null,"Encontrado (Melhor)"],"Archived":[null,"Arquivado"],"Unknown":[null,"Desconhecido(a)"],"Unaired":[null,"Não exibido"],"Skipped":[null,"Ignorado"],"Wanted":[null,"Desejado"],"Ignored":[null,"Ignorado"],"Subtitled":[null,"Legendado"],"<No Filter>":[null,"< Nenhum Filtro >"],"Daily Searcher":[null,"Pesquisador Diário"],"Backlog":[null,"Backlog"],"Show Updater":[null,"Atualização do programa"],"Check Version":[null,"Verificar versão"],"Show Queue":[null,"Fila de espera de programas"],"Search Queue (All)":[null,"Fila de Pesquisa (Tudo)"],"Search Queue (Daily Searcher)":[null,"Fila de Pesquisa (Pesquisador Diário)"],"Search Queue (Backlog)":[null,"Fila de Pesquisa (Backlog)"],"Search Queue (Manual)":[null,"Fila de Pesquisa (Manual)"],"Search Queue (Retry/Failed)":[null,"Fila de Pesquisa (Tentar novamente/Falhado)"],"Search Queue (RSS)":[null,"Fila de Pesquisa (RSS)"],"Find Propers":[null,"Encontrar versões Proper"],"Postprocessor":[null,"Pós-processador"],"Find Subtitles":[null,"Procurar legendas"],"Trakt Checker":[null,"Verificador de Trakt"],"Event":[null,"Evento"],"Error":[null,"Erro"],"Tornado":[null,"Tornado"],"Thread":[null,"Thread"],"Main":[null,"Principal"],"Loading":[null,""],"New update found for SickRage, starting auto-updater":[null,"Nova atualização encontrada para o SickRage, iniciando o atualizador automático"],"Update was successful":[null,"Atualização foi bem-sucedida"],"Update failed!":[null,"A atualização falhou!"],"Backup":[null,"Cópia de segurança"],"Config backup in progress...":[null,"Cópia de segurança das configurações em andamento..."],"Config backup successful, updating...":[null,"A cópia de segurança das configurações bem-sucedida, a atualizar..."],"Config backup failed, aborting update":[null,"A cópia de segurança das configurações falhou, a abortar a atualização"],"No update needed":[null,"Nenhuma atualização necessária"],"Mako Error":[null,"Erro de Mako"],"Oops":[null,"Oops!"],"Wrong API key used":[null,"Chave de API errada usada"],"Login":[null,"Iníciar Sessão"],"API Key not generated":[null,"Chave da API não gerada"],"API Builder":[null,"Construtor de API"],"Schedule":[null,"Calendário"],"Test 1":[null,"Teste 1"],"This is test number 1":[null,"Este é o teste número 1"],"Test 2":[null,"Teste 2"],"This is test number 2":[null,"Este é o teste número 2"],"You're using the {branch} branch. Please use 'master' unless specifically asked":[null,"Você está usando o \"branch\" {branch}. Por favor, use o 'master', a menos que especificamente solicitado"],"Invalid show parameters":[null,"Parâmetros inválidos para o programa"],"Invalid parameters":[null,"Parâmetros inválidos"],"Episode couldn't be retrieved":[null,"Episódio não pôde ser obtido"],"Home":[null,"Página Inicial"],"Show List":[null,"Lista de programas"],"Error: Unsupported Request. Send jsonp request with 'callback' variable in the query string.":[null,"Erro: Pedido não suportado. Envie um request jsonp com variável 'callback' na \"string\"."],"Success. Connected and authenticated":[null,"Sucesso: Ligado e autenticado"],"Authentication failed. SABnzbd expects":[null,"Autenticação falhou. SABnzbd á espera"],"as authentication method":[null,"como método de autenticação"],"Unable to connect to host":[null,"Não foi possível ligar ao servidor"],"SMS sent successfully":[null,"SMS enviado com sucesso"],"Problem sending SMS: {message}":[null,"Problema ao enviar SMS: {message}"],"Telegram notification succeeded. Check your Telegram clients to make sure it worked":[null,"Notificação de Telegram enviada. Verifique o seu cliente Telegram para ter a certeza que funcionou"],"Error sending Telegram notification: {message}":[null,"Erro ao enviar notificação de Telegram: {message}"],"join notification succeeded. Check your join clients to make sure it worked":[null,"notificação de junção bem sucedida. Verifique os clientes para ter a certeza que funcionou"],"Error sending join notification: {message}":[null,"Erro ao enviar notificação de junção: {message}"]," with password":[null," com palavra passe"],"Registered and Tested growl successfully {growl_host}":[null,"Registo e teste em Growl finalizado com sucesso {growl_host}"],"Registration and Testing of growl failed {growl_host}":[null,"Registo e teste em Growl falharam {growl_host}"],"Test prowl notice sent successfully":[null,"Notificação de testes do Prowl enviada"],"Test prowl notice failed":[null,"Falha no envio da notificação de testes do Prowl"],"Boxcar2 notification succeeded. Check your Boxcar2 clients to make sure it worked":[null,"Notificação de Boxcar2 bem sucedida. Verifique os clientes Boxcar2 para ter certeza que funcionou"],"Error sending Boxcar2 notification":[null,"Erro ao enviar notificação de Boxcar2"],"Pushover notification succeeded. Check your Pushover clients to make sure it worked":[null,"Notificação de Push enviada. Verifique os seus clientes Push para ter certeza que funcionou"],"Error sending Pushover notification":[null,"Erro no envio da notificação de Push"],"Key verification successful":[null,"Chave verificada com sucesso"],"Unable to verify key":[null,"Não é possível verificar a chave"],"Tweet successful, check your twitter to make sure it worked":[null,"Twitter bem-sucedido, verifique o seu twitter para ter certeza que funcionou"],"Error sending tweet":[null,"Erro ao enfiar tweet"],"Please enter a valid account sid":[null,"Por favor insira uma conta conta sid válida"],"Please enter a valid auth token":[null,"Por favor insira um token de autenticação"],"Please enter a valid phone sid":[null,""],"Please format the phone number as \"+1-###-###-####\"":[null,""],"Authorization successful and number ownership verified":[null,""],"Error sending sms":[null,"Erro ao enviar sms"],"Slack message successful":[null,"Mensagem do Slack enviada com sucesso"],"Slack message failed":[null,"Falha no envio de mensagem do Slack"],"Discord message successful":[null,"Mensagem do Discord enviada com sucesso"],"Discord message failed":[null,"Falha no envio de mensagem do Discord"],"Test KODI notice sent successfully to {kodi_host}":[null,"Notificação de teste do Kodi enviado com êxito para {kodi_host}"],"Test KODI notice failed to {kodi_host}":[null,"Notificação de teste do Kodi falhada para {kodi_host}"],"Successful test notice sent to Plex Home Theater ... {plex_clients}":[null,"Aviso de teste bem-sucedido enviado para Plex Home Theater... {plex_clients}"],"Test failed for Plex Home Theater ... {plex_clients}":[null,"Falha no teste de Plex Home Theater... {plex_clients}"],"Tested Plex Home Theater(s)":[null,"Plex Home Theater(s) Testado"],"Successful test of Plex Media Server(s) ... {plex_servers}":[null,"Plex Media Server(s) teste sucedido... {plex_servers}"],"Test failed, No Plex Media Server host specified":[null,"Teste falhou. Não foi especificado um servidor Plex"],"Test failed for Plex Media Server(s) ... {plex_servers}":[null,"Plex Media Server(s) teste falhou... {plex_servers}"],"Tested Plex Media Server host(s)":[null,"Media Server Plex testado(s)"],"Tried sending desktop notification via libnotify":[null,"Tentou enviar notificação de desktop via libnotify"],"Test notice sent successfully to {emby_host}":[null,"Notificação teste enviada com êxito para {emby_host}"],"Test notice failed to {emby_host}":[null,"Notificação teste falhou para {emby_host}"],"Successfully started the scan update":[null,"Iniciado com êxito a atualização de scan"],"Test failed to start the scan update":[null,"Teste falhou a iniciar a atualização de scan"],"Test notice sent successfully to {nmj2_host}":[null,"Notificação teste enviada com êxito para {nmj2_host}"],"Test notice failed to {nmj2_host}":[null,"Notificação teste falhou para {nmj2_host}"],"Trakt Authorized":[null,"Trakt autorizado"],"Trakt Not Authorized!":[null,"Trakt não autorizado!"],"Test email sent successfully! Check inbox.":[null,"E-mail de teste enviado com sucesso! Verifique a caixa de entrada."],"ERROR: {last_error}":[null,"ERRO: {last_error}"],"Test NMA notice sent successfully":[null,"Notificação NMA teste enviado com sucesso"],"Test NMA notice failed":[null,"Falha na notificação de teste NMA"],"Pushalot notification succeeded. Check your Pushalot clients to make sure it worked":[null,"Notificação Pushalot enviada com sucesso. Verifique os seus clientes Pushalot para se certificar que funcionou"],"Error sending Pushalot notification":[null,"Erro ao enviar notificação de Pushalot"],"Pushbullet notification succeeded. Check your device to make sure it worked":[null,"Notificação de Pushbullet bem sucedida. Verifique o seu dispositivo para ter a certeza que funcionou"],"Error sending Pushbullet notification":[null,"Erro ao enviar notificação de Pushbullet"],"Status":[null,"Estado"],"Restarting SickRage":[null,"A reiniciar o SickRage"],"Update Failed":[null,"A Atualização Falhou"],"Update wasn't successful, not restarting. Check your log for more information.":[null,"A atualização não foi bem sucedida, não reiniciando. Verifique o log para obter mais informações."],"Checking out branch":[null,"A \"Checkout\" o \"Branch\""],"Already on branch":[null,"Já no branch"],"Invalid show ID: {show}":[null,"Inválido ID do programa: {show}"],"Show not in show list":[null,"Programa não encontrado na respectiva lista"],"Edit":[null,"Editar"],"This show is in the process of being downloaded - the info below is incomplete.":[null,"Este programa está a ser transferido - a informação abaixo está incompleta."],"The information on this page is in the process of being updated.":[null,"A informação nesta página está a ser atualizada."],"The episodes below are currently being refreshed from disk":[null,"Os episódios abaixo estão a ser atualizados a partir do disco"],"Currently downloading subtitles for this show":[null,"Atualmente a transferir legendas para este programa"],"This show is queued to be refreshed.":[null,"Esta série será atualizada em breve."],"This show is queued and awaiting an update.":[null,"Esta série já está a aguardar por uma atualização."],"This show is queued and awaiting subtitles download.":[null,"Esta série está a aguardar a transferência de legendas."],"Resume":[null,"Resumir"],"Pause":[null,"Pausar"],"Remove":[null,"Remover"],"Re-scan files":[null,"Reverificar ficheiros"],"Force Full Update":[null,"Forçar actualização completa"],"Update show in KODI":[null,"Atualizar série no Kodi"],"Update show in Emby":[null,"Atualizar série no Emby"],"Hide specials":[null,"Esconder especiais"],"Show specials":[null,"Mostrar especiais"],"Preview Rename":[null,"Prever renomeação"],"Download Subtitles":[null,"Transferir Legendas"],"No scene exceptions":[null,"Sem exceções da \"Scene\""],"Invalid show ID":[null,"ID de série inválido"],"Unable to find the specified show":[null,"Não é possível encontrar o programa especificado"],"Unable to retreive Fansub Groups from AniDB.":[null,"Não é possível recuperar groupos de \"Fansubs\" do AniDB."],"Edit Show":[null,"Editar Série"],"Unable to refresh this show: {error}":[null,"Não é possível atualizar esta série: {error}"],"New location <tt>{location}</tt> does not exist":[null,"Não existe nova localização <tt>{location}</tt>"],"Unable to update show: {error}":[null,"Não é possível atualizar a série: {error}"],"Unable to force an update on scene exceptions of the show.":[null,"Não é possível forçar uma atualização das exceções da Scene da série."],"Unable to force an update on scene numbering of the show.":[null,"Não é possível forçar uma atualização sobre a numeração da Scene da série."],"{num_errors:d} error{plural} while saving changes:":[null,"{num_errors:d} erro{plural} ao gravar as alterações:"],"{show_name} has been {paused_resumed}":[null,"{show_name} foi {paused_resumed}"],"resumed":[null,"retomado"],"paused":[null,"em pausa"],"{show_name} has been {deleted_trashed} {was_deleted}":[null,"{show_name} foi {deleted_trashed} {was_deleted}"],"deleted":[null,"eliminado"],"trashed":[null,"eliminado"],"(media untouched)":[null,"(mídia não toucada)"],"(with all related media)":[null,"(com tudo relacionado a mídia)"],"Unable to refresh this show.":[null,"Não foi possível atualizar este programa."],"Unable to update this show.":[null,"Não foi possível atualizar este programa."],"Library update command sent to KODI host(s)): {kodi_hosts}":[null,"Comando de atualização de biblioteca enviado para KODI host(s)): {kodi_hosts}"],"Unable to contact one or more KODI host(s)): {kodi_hosts}":[null,"Não é possível contactar com um ou mais anfitriões Kodi: {kodi_hosts}"],"Library update command sent to Plex Media Server host: {plex_server}":[null,"Comando de actualização da biblioteca enviado para o host de Servidor Multimédia Plex: {plex_server}"],"Unable to contact Plex Media Server host: {plex_server}":[null,"Não é possível contatar o Plex Media Server host: {plex_server}"],"Library update command sent to Emby host: {emby_host}":[null,"Comando de atualização de biblioteca enviado para Emby host: {emby_host}"],"Unable to contact Emby host: {emby_host}":[null,"Impossível contactar o anfitrião Emby: {emby_host}"],"You must specify a show and at least one episode":[null,"Você deve especificar um programa e pelo menos um episódio"],"Invalid status":[null,"Status inválido"],"Backlog was automatically started for the following seasons of <b>{show_name}</b>":[null,"Foi iniciado automaticamente o backlog para as temporadas seguintes de <b>{show_name}</b>"],"Season":[null,"Temporada"],"Backlog started":[null,"Backlog iniciado"],"Retrying Search was automatically started for the following season of <b>{show_name}</b>":[null,"Nova tentativa de pesquisa foi iniciado automaticamente para a temporada seguinte de <b>{show_name}</b>"],"Retry Search started":[null,"Tentativa de procura iniciada"],"You must specify a show":[null,"Você deve especificar um programa"],"Can't rename episodes when the show dir is missing.":[null,"Não é possível renomear episódios quando o diretório está faltando."],"New subtitles downloaded: {new_subtitle_languages}":[null,"Novas Legendas download: {new_subtitle_languages}"],"No subtitles downloaded":[null,"Nenhuma legenda transferida"],"IRC":[null,"IRC"],"Could not load news from the repo. [Click here for news.md])({news_url})":[null,"Não foi possível carregar as notícias do repo. [Clique aqui para news.md]) ({news_url})"],"The was a problem connecting to github, please refresh and try again":[null,"Houve um problema na conexão com o github, por favor atualizar e tente novamente"],"Could not load changes from the repo. [Click here for CHANGES.md]({changes_url})":[null,"Não foi possível carregar as alterações a partir do repositório [Clique aqui para ler o CHANGES.md]({changes_url})"],"Changelog":[null,"Registo de alterações"],"Post Processing":[null,"Pós-processamento"],"Add Shows":[null,"Adicionar programas"],"No folders selected.":[null,"Nenhuma pasta selecionada."],"New Show":[null,"Novo programa"],"Trending Shows":[null,"Shows Populares"],"Popular Shows":[null,"Programas populares"],"Most Anticipated Shows":[null,"Series Mais Aguardadas"],"Most Collected Shows":[null,""],"Most Watched Shows":[null,""],"Most Played Shows":[null,""],"Recommended Shows":[null,""],"New Shows":[null,"Novas Séries"],"Season Premieres":[null,"Estréias de temporadas"],"Existing Show":[null,"Programa existente"],"No root directories setup, please go back and add one.":[null,"Nenhum diretório raiz configurado, por favor volte e adiciona um."],"Show added":[null,"Programa adicionado"],"Adding the specified show {show_name}":[null,"Adicionando o show especificado {show_name}"],"Missing params, no Indexer ID or folder: {show_to_add} and {root_dir}/{show_path}":[null,"Faltando parâmetros, nenhum indexador ID ou pasta: {show_to_add} e {root_dir}/{show_path}"],"Unknown error. Unable to add show due to problem with show selection.":[null,"Erro desconhecido. Não é possível adicionar show devido a problema com a seleção do show."],"Unable to add show":[null,"Não é possível adicionar série"],"Folder {show_dir} exists already":[null,"A pasta {show_dir} já existe"],"Unable to create the folder {show_dir}, can't add the show":[null,"Não é possível criar a pasta {show_dir}, não é possível adicionar o show"],"Adding the specified show into {show_dir}":[null,"Adicionando o show especificado em {show_dir}"],"Shows Added":[null,"Programas Adicionados"],"Automatically added {num_shows} from their existing metadata files":[null,"Adicionado automaticamente {num_shows} de seus arquivos de metadados existentes"],"Mass Update":[null,"Atualização em massa"],"Episode Overview":[null,"Visão geral do episódio"],"Missing Subtitles":[null,"Legendas em falta"],"Backlog Overview":[null,"Visão geral de dependências"],"Mass Edit":[null,"Editor em massa"],"Unable to update show: {excption_format}":[null,"Não é possível actualizar o programa: {excption_format}"],"Unable to refresh show {show_name}: {excption_format}":[null,"Não é possível atualizar o show {show_name}: {excption_format}"],"Errors encountered":[null,"Erros encontrados"],"Updates":[null,"Atualizações"],"Refreshes":[null,"Atualizações"],"Renames":[null,"Renomeações"],"Subtitles":[null,"Legendas:"],"The following actions were queued":[null,"As seguintes ações foram adicionadas à fila"],"For best results please set the Download Station alias as":[null,"Para melhores resultados por favor defina o nome para a Estação de Download como"],"You can check this setting in the Synology DSM":[null,"Você pode verificar essa configuração no Synology DSM"],"Control Panel":[null,"Painel de controlo"],"Application Portal":[null,"Portal da aplicação"],"Make sure you allow DSM to be embedded with iFrames too in":[null,"Certifique-se que permite que o DSM seja incorporado com iFrames também em"],"DSM Settings":[null,"Configurações do DSM"],"Security":[null,"Segurança"],"Manage Torrents":[null,"Gerir Torrents"],"Failed Downloads":[null,"Downloads Falhados"],"Manage Searches":[null,"Gerenciar as pesquisas"],"Backlog search started":[null,"Início de pesquisa de lista de dependências"],"Daily search started":[null,"Iniciado a busca diária"],"Find propers search started":[null,"Pesquisa de versões proper iniciada"],"Subtitle search started":[null,"Pesquisa de legendas iniciada"],"Remove Selected":[null,"Remover Seleccionados"],"Clear History":[null,"Limpar o histórico"],"Trim History":[null,"Encolher história"],"Selected history entries removed":[null,""],"History cleared":[null,"Histórico apagado"],"Removed history entries older than 30 days":[null,"Remover entradas do histórico mais antigas do que 30 dias"],"General":[null,"Geral"],"Backup/Restore":[null,"Cópia de Segurança / Restauro"],"Search Settings":[null,"Configurações de pesquisa"],"Search Providers":[null,"Provedores de pesquisa"],"Subtitles Settings":[null,"Configurações de legendas"],"Notifications":[null,"Notificações"],"Anime":[null,"Anime"],"SickRage Configuration":[null,"Configuração do SickRage"],"Config - Shares":[null,""],"Windows Shares Configuration":[null,""],"Saved Shares":[null,""],"Your Windows share settings have been saved":[null,""],"Config - General":[null,"Configuração - geral"],"General Configuration":[null,"Configuração geral"],"Saved Defaults":[null,"Pré-Definições Gravadas"],"Your \"add show\" defaults have been set to your current selections.":[null,"As suas pré-definições para \"Adicionar Série\" foram atualizadas."],"Unable to create directory {directory}, log directory not changed.":[null,"Não é possível criar o diretório {directory}, diretório de log não mudado."],"Unable to create directory {directory}, https cert directory not changed.":[null,"Não é possível criar o diretório {directory}, o diretório da chave https não foi mudado."],"Unable to create directory {directory}, https key directory not changed.":[null,"Não é possível criar o diretório {directory}, o diretório da chave https não foi mudado."],"Error(s) Saving Configuration":[null,"Erro (s) a guardar a configuração"],"Configuration Saved":[null,"Configuração Gravada"],"Config - Backup/Restore":[null,"Configurar - Cópia de Segurança / Restauro"],"Config - Episode Search":[null,"Config - Pesquisa"],"Config - Post Processing":[null,"Config - pós-processamento"],"Unpacking Not Supported, disabling unpack setting":[null,"Descompactação não suportado, desabilitando configuração de descompactação"],"You tried saving an invalid normal naming config, not saving your naming settings":[null,""],"You tried saving an invalid anime naming config, not saving your naming settings":[null,"Tentou salvar uma configuração de nomeação de Anime inválida, suas configurações de nomeação não foram salvas"],"Config - Providers":[null,"Config - Provedores"],"No Provider Name specified":[null,"Nenhum nome de provedor especificado"],"No Provider Url specified":[null,"Nenhum URL de provedor especificado"],"No Provider Api key specified":[null,"Nenhuma chave Api para o provedor especificado"],"Config - Notifications":[null,"Config - notificações"],"Config - Subtitles":[null,"Config - legendas"],"Config - Anime":[null,"Config - Anime"],"Clear Errors":[null,"Limpar erros"],"Clear Warnings":[null,"Limpar avisos"],"Submit Errors":[null,"Enviar erros"],"Logs & Errors":[null,"Logs & erros"],"Log File":[null,"Arquivo de log"],"Logs":[null,"Logs:"],"This is a test notification from SickRage":[null,"Esta é uma notificação de teste do SickRage"],"Please fill out the necessary fields above.":[null,""],"This pattern is invalid.":[null,""],"This pattern would be invalid without the folders, using it will force \"Season Folders\" on for all shows.":[null,""],"This pattern is valid.":[null,"Este padrão é válido."],"Resume updating the log on this page.":[null,""],"Pause updating the log on this page.":[null,""],"You have reached this page by accident, please check the url.":[null,"Chegou a esta página por acidente, por favor, verifique o url."],"A mako error has occured.<br>\n If this happened during an update a simple page refresh may be the solution.<br>\n Mako errors that happen during updates may be a one time error if there were significant ui changes.":[null,"Ocorreu um erro de Mako.<br>\n Se isto aconteceu durante uma atualização, uma simples atualização de página pode ser a solução.<br>\n Erros de Mako que acontecem durante as atualizações podem acontecer apenas uma uma vez, se houver alterações significativas na interface de utilizador."],"Show/Hide Error":[null,"Mostrar/ocultar erro"],"Add New Show":[null,"Adicionar Nova Série"],"For shows that you haven't downloaded yet, this option finds a show on theTVDB.com, creates a directory for it's episodes, and adds it to SickRage.":[null,"Para séries ainda não transferidas, esta opção encontra uma série no theTVDB.com, cria a pasta para os seus episódios, e adiciona-a ao SickRage."],"Add From Trakt Lists":[null,"Adicionar de uma lista do Trakt"],"For shows that you haven't downloaded yet, this option lets you choose from a show from one of the Trakt lists to add to SickRage.":[null,"Para séries ainda não transferidas, esta opção deixa-te escolher uma série de uma lista do Trakt e adiciona-a ao SickRage."],"Add From IMDB's Popular Shows":[null,"Adicionar de Séries Populares no IMDB"],"View IMDB's list of the most popular shows. This feature uses IMDB's MOVIEMeter algorithm to identify popular TV Series.":[null,"Esta opção deixa-te ver uma lista das séries mais populares no IMDB permitindo adicioná-las ao SickRage."],"Add Existing Shows":[null,"Adicionar Séries Existentes"],"Use this option to add shows that already have a folder created on your hard drive. SickRage will scan your existing metadata/episodes and add the show accordingly.":[null,"Use esta opção para adicionar séries que já possuem uma pasta criada no seu disco rígido. O SickRage irá verificar os seus metadados/episódios existentes e adicionar a série em conformidade."],"Add Existing Show":[null,"Adicionar Série Existente"],"Manage Directories":[null,"Gerenciar diretórios"],"Customize Options":[null,"Personalizar as opções"],"SickRage can add existing shows, using the current options, by using locally stored NFO/XML metadata to eliminate user interaction. If you would rather have SickRage prompt you to customize each show, then use the checkbox below.":[null,"O SickRage pode adicionar séries existentes, usando as opções atuais, a partir dos metadados NFO/XML armazenados localmente para eliminar a interação com o utilizador. Se preferir que o SickRage lhe peça para personalizar cada programa, use a caixa de seleção abaixo."],"Prompt me to set settings for each show":[null,"Pedir-me para definir as configurações para cada série"],"Displaying folders within these directories which aren't already added to SickRage":[null,"Exibindo pastas dentro desses diretórios que ainda não estão adicionados ao SickRage"],"Submit":[null,"Submeter"],"Find a show on theTVDB":[null,"Encontrar uma série no theTVDB"],"Show retrieved from existing metadata":[null,"Série recuperada dos metadados existentes"],"All Indexers":[null,"Todos os indexadores"],"Search":[null,"Procurar"],"This will only affect the language of the retrieved metadata file contents and episode filenames.":[null,"Isto apenas afetará o idioma do conteúdo de ficheiro de metadados e nomes de episódios obtidos."],"This <b>DOES NOT</b> allow SickRage to download non-english TV episodes!":[null,"Isto <b>Não</b> permite o SickRage transferir episódios que não estejam em inglês!"],"Pick the parent folder":[null,"Escolher a pasta mãe"],"Pre-chosen Destination Folder":[null,"Pasta de destino previamente escolhido"],"Customize options":[null,"Personalização"],"Add Show":[null,"Adicionar Série"],"Skip Show":[null,"Ignorar Série"],"Sort By":[null,"Ordenar por"],"Name":[null,"Nome"],"Original":[null,"Original"],"Votes":[null,"Votos"],"Rating":[null,"Classificações"],"Rating > Votes":[null,"Classificação > votos"],"Sort Order":[null,"Ordem de classificação"],"Asc":[null,"Asc"],"Desc":[null,"Desc"],"Fetching of IMDB Data failed. Are you online?":[null,"A busca de dados do IMDB falhou. Está online?"],"Exception":[null,"Exceção:"],"Select Trakt List":[null,"Selecionar a lista do Trakt"],"Most Anticipated":[null,"Mais antecipado"],"Trending":[null,"Tendências"],"Popular":[null,"Popular"],"Most Watched":[null,"Mais assistido"],"Most Played":[null,"Mais reproduzidos"],"Most Collected":[null,"Maioria coletados"],"Recommended":[null,"Recomendado"],"Toggle navigation":[null,"Ativar/desativar navegação"],"Profile":[null,"Perfil"],"JSONP":[null,"JSONP"],"Back to SickRage":[null,"Voltar para o SickRage"],"Parameters":[null,"Parâmetros"],"Required":[null,"Requerido"],"Description":[null,"Descrição"],"Type":[null,"Tipo"],"Default value":[null,"Valores padrão"],"Allowed values":[null,"Valores permitidos"],"Playground":[null,"Recrieio"],"Clear":[null,"Limpar"],"Yes":[null,"Sim"],"No":[null,"Não"],"season":[null,"temporada"],"episode":[null,"episódio"],"Python Version":[null,"Versão do Python"],"SSL Version":[null,"Versão SSL"],"OS":[null,"SO"],"Locale":[null,"Idioma"],"User":[null,"Utilizador"],"Program Folder":[null,"Pasta do programa"],"Config File":[null,"Arquivo de configuração"],"Database File":[null,"Ficheiro de base de dados"],"Cache Folder":[null,"Pasta de cache"],"Log Folder":[null,"Pasta do registo verboso"],"Arguments":[null,"Argumentos"],"Web Root":[null,"Web Root"],"Website":[null,"Sítio"],"Wiki":[null,"Wiki:"],"Source":[null,"Source"],"IRC Chat":[null,"Chat IRC:"],"AnimeDB Settings":[null,"Configurações da AnimeDB"],"Look & Feel":[null,"Aparência"],"AniDB is non-profit database of anime information that is freely open to the public":[null,"AniDB uma base de dados sem fins lucrativos de informações de anime que é aberta ao público"],"Enable":[null,"Ativar"],"should SickRage use data from AniDB?":[null,"deve o SickRage usar dados do AniDB?"],"AniDB Username":[null,"Nome de usuário da AniDB"],"username of your AniDB account":[null,"nome de utilizador da sua conta do AniDB"],"AniDB Password":[null,"Senha da AniDB"],"password of your AniDB account":[null,"senha da sua conta do AniDB"],"AniDB MyList":[null,"AniDB MyList"],"do you want to add the PostProcessed episodes to the MyList?":[null,""],"Look and Feel":[null,"Aparência"],"How should the anime functions show and behave.":[null,"Como as funções de Anime devem aparecer e se comportar."],"Split show lists":[null,"Separar a vista dos programas"],"separate anime and normal shows in groups":[null,""],"Split in tabs":[null,""],"use tabs for when splitting show lists":[null,""],"Restore":[null,"Repor Cópia de Segurança"],"Backup your main database file and config.":[null,"Fazer backup do seu arquivo de base de dados principal e configurações."],"Select the folder you wish to save your backup file to":[null,"Selecione a pasta para a qual você deseja salvar o arquivo de backup para"],"Restore your main database file and config.":[null,"Restaure seu arquivo de banco de dados principal e de configuração."],"Select the backup file you wish to restore":[null,"Selecione o arquivo de backup que você deseja restaurar"],"Misc":[null,"Diversos"],"Interface":[null,"Interface"],"Advanced Settings":[null,"Opções avançadas"],"Startup options. Indexer options. Log and show file locations.":[null,"Opções de inicialização. Opções de indexador. Locais de arquivo de log e séries TV."],"Some options may require a manual restart to take effect.":[null,"Algumas opções podem requerer uma reinicialização manual antes de entrarem em efeito."],"Default Indexer Language":[null,"Idioma de indexador por padrão"],"for adding shows and metadata providers":[null,"para a adição de shows e provedores de metadados"],"Launch browser":[null,"Inicie o navegador"],"open the SickRage home page on startup":[null,"abrir a home page de SickRage na inicialização"],"Initial page":[null,"Página inicial"],"Shows":[null,"Programas"],"when launching SickRage interface":[null,"ao iniciar a interface de SickRage"],"Choose hour to update shows":[null,"Escolher a hora para actualizar series"],"with information such as next air dates, show ended, etc. Use 15 for 3pm, 4 for 4am etc.":[null,"com informações como próxima data de transmissão, série terminada, etc. Use 15 para 15:00, 4 para 04:00 etc."],"note":[null,"nota"],"minutes are randomized each time SickRage is started":[null,""],"Send to trash for actions":[null,"Enviar para o lixo para ações"],"when using show \"Remove\" and delete files":[null,""],"on scheduled deletes of the oldest log files":[null,"na supressão programada dos arquivos de log mais antigos"],"selected actions use trash (recycle bin) instead of the default permanent delete":[null,""],"Log file folder location":[null,"Local de pasta de arquivo de log"],"Number of Log files saved":[null,"Número de ficheiros log gravados"],"number of log files saved when rotating logs (default: 5) (REQUIRES RESTART)":[null,"número de ficheiros log gravados quando em gravação automática (por defeito: 5) (REQUER REINÍCIO)"],"Size of Log files saved":[null,"Tamanho dos ficheiros log gravados"],"maximum size in MB of the log file (default: 1MB) (REQUIRES RESTART)":[null,"tamanho maximoem MB do ficheiro de log (por defeito: 1MB) (REQUER REINICIALIZAÇÃO)"],"Use initial indexer set to":[null,"Indexador inicial de uso definido predefenido"],"as the default selection when adding new shows":[null,""],"Timeout show indexer at":[null,"Valor de \"Time Out\" do indexador"],"seconds of inactivity when finding new shows (default:20)":[null,"segundos de inactividade quando encontrar novos programas (padrão: 20)"],"Show root directories":[null,"Mostrar diretórios de raiz"],"where the files of shows are located":[null,"onde se encontram os ficheiros dos programas"],"Save Changes":[null,"Guardar Alterações"],"Options for software updates.":[null,"Opções para atualizações de software."],"Check software updates":[null,"Procurar por atualizações"],"and display notifications when updates are available. Checks are run on startup and at the frequency set below*":[null,"e mostrar notificações quando existem atualizações. As verificações ocorrem ao inicializar e na frequencia definida em baixo*"],"Automatically update":[null,"Actualizações automáticas"],"fetch and install software updates. Updates are run on startup and in the background at the frequency set below*":[null,""],"Check the server every*":[null,"Verifique o servidor cada*"],"hours for software updates (default:1)":[null,"horas para procurar actualizações de software (padrão: 1)"],"Notify on software update":[null,"Totificar sobre a atualização de software"],"send a message to all enabled notifiers when SickRage has been updated":[null,""],"User Interface":[null,"Interface de Utilizador"],"Options for visual appearance.":[null,"Opções para aparência visual."],"Interface Language":[null,"Idioma da Interface"],"System Language":[null,"Idioma do Sistema"],"for appearance to take effect, save then refresh your browser":[null,"para que as definições de aparência sejam activadas, guarde e actualize a pagina"],"Display theme":[null,"Tema de aparência"],"Dark":[null,"Escuro"],"Light":[null,"Claro"],"Use a background image":[null,""],"use a custom image as background for SickRage":[null,""],"Background Path":[null,""],"Path to the background image":[null,""],"Show fanart in the background":[null,"Mostrar fanart no fundo"],"on the show summary page":[null,"na página da descrição da série"],"Fanart transparency":[null,"Transparência da FanArt"],"transparency of the fanart in the background":[null,""],"Use a custom stylesheet file":[null,""],"use a custom .css file to style SickRage (for advanced users)":[null,""],"Stylesheet File Path":[null,""],"Path to the stylesheet (.css) file":[null,""],"Show all seasons":[null,"Mostrar todas as temporadas"],"Sort with \"The\", \"A\", \"An\"":[null,"Ordenar usando \"The\", \"A\", \"An\""],"include articles (\"The\", \"A\", \"An\") when sorting show lists":[null,"incluir artigos (\"The\", \"A\", \"An\") quando ordenar listas de programas"],"Missed episodes range":[null,"Alcance de episódios perdidos"],"set the range in days of the missed episodes in the Schedule page":[null,""],"Display fuzzy dates":[null,""],"move absolute dates into tooltips and display e.g. \"Last Thu\", \"On Tue\"":[null,""],"Trim zero padding":[null,"Apagar espaços"],"remove the leading number \"0\" shown on hour of day, and date of month":[null,"remover o primeiro número \"0\", mostrado na hora do dia e a data do mês"],"Date style":[null,"Estilo da data"],"Use System Default":[null,"Usar padrão do sistema"],"Time style":[null,"Estilo do tempo"],"seconds are only shown on the History page":[null,"segundos só são exibidos na página \"Histórico\""],"Timezone":[null,"Fuso horário"],"Local":[null,"Local"],"Network":[null,"Canal"],"display dates and times in either your timezone or the shows network timezone":[null,"exibir datas e horas em seu fuso horário ou o fuso de horário da rede"],"use local timezone to start searching for episodes minutes after show ends (depends on your dailysearch frequency)":[null,""],"Download url":[null,"Url de transferência"],"URL where the shows can be downloaded.":[null,"URL onde os shows podem ser baixados."],"Web Interface":[null,"Interface Web"],"it is recommended that you enable a username and password to secure SickRage from being tampered with remotely.":[null,""],"these options require a manual restart to take effect.":[null,""],"API key":[null,"Chave de API"],"used to give 3rd party programs limited access to SickRage":[null,"usado para dar acesso limitado a programas de 3o partido para SickRage"],"you can try all the features of the API":[null,""],"here":[null,"aqui"],"HTTP logs":[null,"Logs de HTTP"],"enable logs from the internal Tornado web server":[null,""],"HTTP username":[null,"Nome de usuário do HTTP"],"set blank for no login":[null,"deixar em branco para não definir autênticação"],"HTTP password":[null,"Senha HTTP"],"blank = no authentication":[null,"em branco = sem autenticação"],"HTTP port":[null,"Porta HTTP"],"web port to browse and access SickRage (default:8081)":[null,"porta de Web para navegar e acessar SickRage (padrão: 8081)"],"Notify on login":[null,"Notificar no login"],"enable to be notified when a new login happens in webserver":[null,""],"Listen on IPv6":[null,"Habilitar IPv6"],"attempt binding to any available IPv6 address":[null,""],"Enable HTTPS":[null,"Habilitar HTTPS"],"enable access to the web interface using a HTTPS address":[null,"permitir o acesso à interface web usando um endereço HTTPS"],"HTTPS certificate":[null,"Certificado HTTPS"],"file name or path to HTTPS certificate":[null,""],"HTTPS key":[null,"Chave HTTPS"],"file name or path to HTTPS key":[null,""],"Reverse proxy headers":[null,""],"accept the following reverse proxy headers (advanced)...":[null,""],"(X-Forwarded-For, X-Forwarded-Host, and X-Forwarded-Proto)":[null,""],"CPU throttling":[null,""],"Normal (default). High is lower and Low is higher CPU use":[null,""],"Anonymous redirect":[null,"Redirecionamento anônimo"],"backlink protection via anonymizer service, must end in \"?\"":[null,""],"Enable debug":[null,"Ativar depuração"],"enable debug logs":[null,""],"Verify SSL Certs":[null,"Verificar os certificados SSL"],"verify SSL Certificates (Disable this for broken SSL installs (Like QNAP))":[null,""],"No Restart":[null,"Sem reinicialização"],"only shutdown when restarting SR":[null,""],"only select this when you have external software restarting SR automatically when it stops (like FireDaemon)":[null,""],"Encrypt passwords":[null,"Criptografar senhas"],"in the <code>config.ini</code> file":[null,""],"warning":[null,""],"passwords must only contain":[null,""],"ASCII characters":[null,"Caracteres ASCII"],"Unprotected calendar":[null,"Calendário desprotegido"],"allow subscribing to the calendar without user and password":[null,""],"some services like Google Calendar only work this way":[null,""],"Google Calendar Icons":[null,"Ícones do Calendário Google"],"show an icon next to exported calendar events in Google Calendar":[null,""],"Proxy host":[null,"Host Proxy"],"blank to disable or proxy to use when connecting to providers":[null,"em branco para desativar ou proxy para usar ao ligar-se aos fornecedores"],"also use global proxy setting for indexers (tvdb, xem, anidb, etc.)":[null,""],"Skip Remove Detection":[null,""],"skip detection of removed files":[null,""],"if disabled the episode will be set to the default deleted status":[null,""],"Default deleted episode status":[null,"Status do episódio de padrão aquando eliminado"],"define the status to be set for media file that has been deleted.":[null,""],"Archived option will keep previous downloaded quality":[null,"A opção Arquivado manterá a qualidade transferida anteriormente"],"example: Downloaded (1080p WEB-DL) ==> Archived (1080p WEB-DL)":[null,""],"Options for github related features.":[null,"Opções para funcionalidades relacionadas com o GitHub."],"Branch version":[null,"Versão do Branch"],"error: No branches found.":[null,""],"select branch to use (restart required)":[null,"selecione o Branch a usar (é necessário reiniciar)"],"Authorization Type":[null,"Tipo de autorização"],"Username and password":[null,"Nome de usuário e senha"],"Personal access token":[null,""],"You must use a personal access token if you're using \"two-factor authentication\" on GitHub.":[null,""],"GitHub username":[null,"Nome de utilizador do GitHub"],"*** (REQUIRED FOR SUBMITTING ISSUES) ***":[null,"***(NECESSÁRIO PARA SUBMETER ERROS) ***"],"GitHub password":[null,"Palavra chave do GitHub"],"GitHub personal access token":[null,""],"Generate Token":[null,"Gerar Token"],"Manage Tokens":[null,"Gerir Tokens"],"GitHub remote for branch":[null,"GitHub remote para branch"],"access repo configured remotes (save then refresh browser)":[null,""],"default":[null,"predefinição"],"origin":[null,"origem"],"Git executable path":[null,"Caminho do executável \"git\""],"only needed if OS is unable to locate git from env":[null,"somente necessário se o SO não conseguir localizar o git"],"Git reset":[null,"Git reset"],"removes untracked files and performs a hard reset on git branch automatically to help resolve update issues":[null,""],"Home Theater / NAS":[null,"Home Theater / NAS"],"Devices":[null,"Dispositivos"],"Social":[null,"Social"],"A free and open source cross-platform media center and home entertainment system software with a 10-foot user interface designed for the living-room TV.":[null,"Um software de entretenimento doméstico (media center), cross-platform, grátis e open source, com um interface de utilizador de 3 metros concebido para a TV da sala de estar."],"send KODI commands?":[null,""],"Always on":[null,"Sempre ligado"],"log errors when unreachable?":[null,"registrar erros quando inacessível?"],"Notify on snatch":[null,"Notificar no \"Snatch\""],"send a notification when a download starts?":[null,"enviar uma notificação quando um download é iniciado?"],"Notify on download":[null,"Notificar no download"],"send a notification when a download finishes?":[null,"enviar uma notificação quando um download termina?"],"Notify on subtitle download":[null,"Notificar quando acontecer download de legendas"],"send a notification when subtitles are downloaded?":[null,"enviar uma notificação quando legendas são transferidas?"],"Update library":[null,"Atualizar a biblioteca"],"update KODI library when a download finishes?":[null,"atualizar a biblioteca KODI quando termina um download?"],"Full library update":[null,"Atualização completa da biblioteca"],"perform a full library update if update per-show fails?":[null,""],"Only update first host":[null,"Só atualizar o primeiro host"],"only send library updates to the first active host?":[null,""],"KODI IP:Port":[null,"KODI IP: Port"],"host running KODI (eg. 192.168.1.100:8080)":[null,"host a executar o KODI (ex: 192.168.1.100:8080)"],"(multiple host strings must be separated by commas)":[null,""],"Username":[null,"Nome de utilizador"],"username for your KODI server (blank for none)":[null,"nome de utilizador para o seu servidor KODI (em branco para nenhum)"],"Password":[null,"Senha"],"password for your KODI server (blank for none)":[null,"senha para o seu servidor KODI (em branco para nenhuma)"],"Click below to test.":[null,"Clique abaixo para testar."],"Experience your media on a visually stunning, easy to use interface on your Mac connected to your TV. Your media library has never looked this good!":[null,""],"For sending notifications to Plex Home Theater (PHT) clients, use the KODI notifier with port <b>3005</b>.":[null,""],"send Plex Media Server library updates?":[null,""],"Plex Media Server Auth Token":[null,"Token de Autenticação do Servidor Multimédia Plex"],"auth token used by Plex":[null,""],"Update Library":[null,"Atualizar a biblioteca"],"update Plex Media Server library when a download finishes":[null,"atualizar o Servidor Multimédia Plex quando uma transferência termina"],"Plex Media Server IP:Port":[null,"Servidor Multimédia Plex IP:Porta"],"one or more hosts running Plex Media Server<br/>(eg. 192.168.1.1:32400, 192.168.1.2:32400)":[null,"um ou mais hosts a correr o Servidor Multimédia Plex<br/>(p.ex.: 192.168.1.1:32400, 192.168.1.2:32400)"],"HTTPS":[null,"HTTPS"],"use https for plex media server requests?":[null,"usar https para pedidos do Servidor Multimédia Plex?"],"Click below to test Plex Media Server(s)":[null,"Clique abaixo para testar o Plex Media Server(s)"],"Test Plex Media Server":[null,"Teste Plex Media Server"],"Plex Home Theater":[null,"Plex Home Theater"],"send Plex Home Theater notifications?":[null,""],"Plex Home Theater IP:Port":[null,"Plex Home Theater IP:Port"],"one or more hosts running Plex Home Theater<br>(eg. 192.168.1.100:3000, 192.168.1.101:3000)":[null,""],"Click below to test Plex Home Theater(s)":[null,"Clique abaixo para testar o Plex Home Theater(s)"],"Test Plex Home Theater":[null,"Testar Plex Home Theater"],"some Plex Home Theaters <b class=\"boldest\">do not</b> support notifications e.g. Plexapp for Samsung TVs":[null,""],"Emby":[null,"Emby"],"A home media server built using other popular open source technologies.":[null,""],"send update commands to Emby?":[null,""],"Emby IP:Port":[null,"Emby IP: Port"],"host running Emby (eg. 192.168.1.100:8096)":[null,"host a executar Emby (ex: 192.168.1.100:8096)"],"Emby API Key":[null,"Chave de API do Emby"],"Networked Media Jukebox":[null,"Media Jukebox em rede"],"The Networked Media Jukebox, or NMJ, is the official media jukebox interface made available for the Popcorn Hour 200-series.":[null,""],"send update commands to NMJ?":[null,""],"Popcorn IP address":[null,"Endereço IP do Popcorn"],"IP address of Popcorn 200-series (eg. 192.168.1.100)":[null,"Endereço IP da Popcorn 200-series (eg. 192.168.1.100)"],"Get settings":[null,"Obter configurações"],"Get Settings":[null,"Obter configurações"],"the Popcorn Hour device must be powered on and NMJ running.":[null,"o dispositivo conectado deve ter Popcorn Hour e NMJ também deve estar em funcionamento."],"NMJ database":[null,"Base de dados NMJ"],"automatically filled via the 'Get Settings' button.":[null,"preenchido automaticamente através do botão 'Obter Definições'."],"NMJ mount url":[null,"Url de montagem NMJ"],"Networked Media Jukebox v2":[null,"Networked Media Jukebox v2"],"The Networked Media Jukebox, or NMJv2, is the official media jukebox interface made available for the Popcorn Hour 300 & 400-series.":[null,"O Networked Media Jukebox, ou NMJv2, é a interface oficial disponibilizada para os aparelhos Popcorn Hour, modelos das séries 300 & 400."],"send update commands to NMJv2?":[null,""],"IP address of Popcorn 300/400-series (eg. 192.168.1.100)":[null,""],"Database location":[null,"Localização da base de dados"],"Database instance":[null,""],"adjust this value if the wrong database is selected.":[null,""],"Find database":[null,"Encontrar a base de dados"],"Find Database":[null,"Encontrar a base de dados"],"the Popcorn Hour device must be powered on.":[null,""],"NMJv2 database":[null,"Base de dados NMJv2"],"automatically filled via the 'Find Database' buttons.":[null,""],"Synology":[null,"Synology"],"The Synology DiskStation NAS.":[null,""],"Synology Indexer is the daemon running on the Synology NAS to build its media database.":[null,""],"send Synology notifications?":[null,""],"requires SickRage to be running on your Synology NAS.":[null,""],"Synology Indexer":[null,""],"Synology Notifier is the notification system of Synology DSM":[null,""],"send notifications to the Synology Notifier?":[null,""],"pyTivo":[null,"pyTivo"],"pyTivo is both an HMO and GoBack server. This notifier will load the completed downloads to your Tivo.":[null,""],"send notifications to pyTivo?":[null,""],"requires the downloaded files to be accessible by pyTivo.":[null,"requer que os ficheiros transferidos sejam acessíveis pelo pyTivo."],"pyTivo IP:Port":[null,"IP:Porta do pyTivo"],"host running pyTivo (eg. 192.168.1.1:9032)":[null,""],"pyTivo share name":[null,""],"value used in pyTivo Web Configuration to name the share.":[null,""],"Tivo name":[null,"Nome do TiVo"],"(Messages & Settings > Account & System Information > System Information > DVR name)":[null,""],"Growl":[null,"Growl"],"A cross-platform unobtrusive global notification system.":[null,"Um sistema de notificação global discreta de multi-plantaforma."],"send Growl notifications?":[null,""],"Growl IP:Port":[null,"Growl IP:Porta"],"host running Growl (eg. 192.168.1.100:23053)":[null,"anfitrião a executar Growl (ex. 192.168.1.100:23053)"],"may leave blank if SickRage is on the same host.":[null,""],"otherwise Growl <b>requires</b> a password to be used.":[null,""],"Click below to register and test Growl, this is required for Growl notifications to work.":[null,""],"Register Growl":[null,"Registrar o Growl"],"Prowl":[null,"Prowl"],"A Growl client for iOS.":[null,"Um cliente Growl para o iOS."],"send Prowl notifications?":[null,""],"Prowl Message Title":[null,""],"Global Prowl API key(s)":[null,""],"Prowl API(s) listed here, separated by commas if applicable, will<br> receive notifications for <b>all</b> shows. Your Prowl API key is available at:":[null,""],"(this field may be blank except when testing.)":[null,""],"Show notification list":[null,"Mostrar a lista de notificação dos programas"],"-- Select a Show --":[null,"-- Selectione um programa -- "],"Configure per-show notifications here by entering Prowl API key(s), separated by commas, '\n 'after selecting a show in the drop-down box. Be sure to activate the 'Save for this show' '\n 'button below after each entry.":[null,""],"Save for this show":[null,"Salvar para este programa"],"Prowl priority":[null,"Proridade do Prowl"],"Very Low":[null,"Muito baixo"],"Moderate":[null,"Moderado"],"Normal":[null,"Normal"],"High":[null,"Alto"],"Emergency":[null,"Emergência"],"priority of Prowl messages from SickRage.":[null,""],"Libnotify":[null,"Libnotify"],"The standard desktop notification API for Linux/*nix systems. This notifier will only function if the pynotify module is installed (Ubuntu/Debian package <a href=\"apt:python-notify\">python-notify</a>).":[null,""],"send Libnotify notifications?":[null,""],"Pushover":[null,"Pushover"],"Pushover makes it easy to send real-time notifications to your Android and iOS devices.":[null,""],"send Pushover notifications?":[null,""],"Pushover key":[null,"Chave do Pushover"],"user key of your Pushover account":[null,""],"Pushover API key":[null,""],"click here":[null,""]," to create a Pushover API key":[null,""],"Pushover devices":[null,"Dispositivos Pushover"],"comma separated list of pushover devices you want to send notifications to":[null,""],"Pushover notification sound":[null,"Som de notificação do otário"],"Bike":[null,"Bicicleta"],"Bugle":[null,"Corneta"],"Cash Register":[null,"Caixa registradora"],"Classical":[null,"Clássica"],"Cosmic":[null,"Cósmica"],"Falling":[null,"A cair"],"Gamelan":[null,"Gamelan"],"Incoming":[null,"Entrada"],"Intermission":[null,"Intervalo"],"Magic":[null,"Magia"],"Mechanical":[null,"Mecânico"],"Piano Bar":[null,"Piano Bar"],"Siren":[null,"Sirene"],"Space Alarm":[null,"Alarme de espaço"],"Tug Boat":[null,"Barco Rebocador"],"Alien Alarm (long)":[null,"Alarme alienígena (longo)"],"Climb (long)":[null,"Escalada (longo)"],"Persistent (long)":[null,"Persistente (longo)"],"Pushover Echo (long)":[null,"Pushover Echo (longo)"],"Up Down (long)":[null,"Cima para baixo (longo)"],"None (silent)":[null,"Nenhum (silêncio)"],"Device specific":[null,"Dispositivo específico"],"choose notification sound to use":[null,""],"Pushover priority":[null,""],"Choose priority to use":[null,""],"Boxcar 2":[null,"Boxcar 2"],"Read your messages where and when you want them!":[null,""],"send Boxcar notifications?":[null,""],"Boxcar2 access token":[null,"Token de acesso de Boxcar2"],"access token for your Boxcar account.":[null,""],"NMA":[null,"NMA"],"Notify My Android":[null,"Notify My Android"],"Notify My Android is a Prowl-like Android App and API that offers an easy way to send notifications from your application directly to your Android device.":[null,"Notify My Android é uma applicação Android e API como o Prowl que oferece uma maneira fácil para enviar notificações de seu aplicativo diretamente para seu dispositivo Android."],"send NMA notifications?":[null,""],"NMA API key":[null,"Chave da API de NMA"],"(multiple keys must be separated by commas, up to a maximum of 5)":[null,""],"NMA priority":[null,"Prioridade NMA"],"priority of NMA messages from SickRage.":[null,"prioridade de mensagens NMA da SickRage."],"Pushalot":[null,"Pushalot"],"Pushalot is a platform for receiving custom push notifications to connected devices running Windows Phone or Windows 8.":[null,""],"send Pushalot notifications ?":[null,""],"Pushalot authorization token":[null,""],"authorization token of your Pushalot account.":[null,""],"Pushbullet":[null,"Pushbullet"],"Pushbullet is a platform for receiving custom push notifications to connected devices running Android/iOS and desktop browsers such as Chrome, Firefox or Opera.":[null,""],"send Pushbullet notifications?":[null,""],"Pushbullet API key":[null,""],"API key of your Pushbullet account":[null,""],"Pushbullet devices":[null,"Dispositivos de Pushbullet"],"Update device list":[null,"Atualização da lista de dispositivos"],"Pushbullet channels":[null,"Canais de Pushbullet"],"Free Mobile":[null,"Free Mobile"],"Free Mobile is a famous French cellular network provider.<br> It provides to their customer a free SMS API.":[null,"Free Mobile é um provedor de rede francês famoso. <br>Fornece aos seus clientes um API de SMS gratuito."],"send SMS notifications?":[null,""],"send a SMS when a download starts?":[null,"enviar um SMS quando se inicia um download?"],"send a SMS when a download finishes?":[null,""],"send a SMS when subtitles are downloaded?":[null,"envie um SMS quando legendas são baixadas?"],"Free Mobile customer ID":[null,""],"it's your Free Mobile customer ID (8 digits)":[null,""],"Free Mobile API key":[null,""],"find your API key in your customer portal.":[null,""],"Click below to test your settings.":[null,""],"Telegram":[null,"Telegram"],"Telegram is a cloud-based instant messaging service.":[null,"Telegram é um serviço de mensagens instantâneas baseado na nuvem."],"send Telegram notifications?":[null,""],"send a message when a download starts?":[null,""],"send a message when a download finishes?":[null,""],"send a message when subtitles are downloaded?":[null,""],"User/group ID":[null,"ID de utilizador/grupo"],"contact @myidbot on Telegram to get an ID":[null,""],"Bot API token":[null,"Token de API do bot"],"contact @BotFather on Telegram to set up one":[null,""],"Join":[null,"Aderir"],"Join all of your devices together!":[null,""],"send Join notifications?":[null,""],"Device ID":[null,"ID do dispositivo"],"per device specific id":[null,""]," to create a Join API key":[null,""],"Twilio":[null,"Twilio"],"Twilio is a webservice API that allows you to communicate directly with a mobile number. This notifier will send a text directly to your mobile device.":[null,""],"should SickRage text your mobile device?":[null,""],"Twilio Account SID":[null,""],"account SID of your Twilio account.":[null,""],"Twilio Auth Token":[null,""],"Twilio Phone SID":[null,""],"phone SID that you would like to send the sms from":[null,""],"Your phone number":[null,""],"phone number that will receive the sms. Please use the format +1-###-###-####":[null,""],"Twitter":[null,"Twitter"],"A social networking and microblogging service, enabling its users to send and read other users' messages called tweets.":[null,"Uma rede social e serviço de microblogging, que permite aos seus utilizadores enviar e ler mensagens de outros utilizadores chamados tweets."],"should SickRage post tweets on Twitter?":[null,"o SickRage deve postar tweets no Twitter?"],"you may want to use a secondary account.":[null,""],"send direct message":[null,"enviar mensagem direta"],"send a notification via Direct Message, not via status update":[null,""],"send DM to":[null,""],"Twitter account to send Direct Messages to (must follow you)":[null,"A conta Twitter para qual enviar mensagens diretas (Tem de segui-lo)"],"Step One":[null,"Primeiro passo"],"Request Authorization":[null,"Solicitar autorização"],"Click the \"Request Authorization\" button.<br> This will open a new page containing an auth key.<br> <b>note:</b> if nothing happens check your popup blocker.":[null,"Clique no botão \"Solicitar autorização\". <br>Isto irá abrir uma nova página que contém uma chave de autenticação. <br><b>Nota:</b> se não acontecer nada, verifique o seu bloqueador de pop-ups."],"Step Two":[null,"Passo dois"],"Enter the key Twitter gave you below, and click \"Verify Key\".":[null,"Inserir a chave do Twitter abaixo e clique em \"Verificar chave\"."],"Trakt":[null,"Trakt"],"Trakt helps keep a record of what TV shows and movies you are watching. Based on your favorites, Trakt recommends additional shows and movies you'll enjoy!":[null,""],"send Trakt.tv notifications?":[null,""],"username of your Trakt account.":[null,""],"Trakt PIN":[null,"Trakt PIN"],"Get Trakt PIN":[null,""],"PIN code to authorize SickRage to access Trakt on your behalf.":[null,"Código PIN para autorizar o SickRage para acessar Trakt em seu nome."],"API Timeout":[null,"Tempo limite do API"],"seconds to wait for Trakt API to respond. (Use 0 to wait forever)":[null,""],"Default indexer":[null,"Indexador padrão"],"Sync libraries":[null,"Sincronizar as bibliotecas"],"sync your SickRage show library with your trakt show library.":[null,""],"Remove Episodes From Collection":[null,"Remover episódios da coleção"],"remove an episode from your Trakt Collection if it is not in your SickRage Library.":[null,""],"Sync watchlist":[null,"Sincronizar a Watchlist"],"sync your SickRage show watchlist with your trakt show watchlist (either Show and Episode).":[null,""],"episode will be added on watch list when wanted or snatched and will be removed when downloaded ":[null,""],"Watchlist add method":[null,""],"Skip All":[null,"Ignorar todos"],"Download Pilot Only":[null,"Transferir apenas o Ep. Piloto"],"Get whole show":[null,"Obter o programa na integra"],"method in which to download episodes for new shows.":[null,""],"Remove episode":[null,"Remover o episódio"],"remove an episode from your watchlist after it is downloaded.":[null,""],"Remove series":[null,"Remover a série"],"remove the whole series from your watchlist after any download.":[null,""],"Remove watched show":[null,"Remover programa assistido"],"remove the show from sickrage if it's ended and completely watched":[null,""],"Start paused":[null,"Iniciar pausado"],"shows grabbed from your trakt watchlist start paused.":[null,""],"Trakt blackList name":[null,"Nome de lista negra do Trakt"],"name (slug) of list on Trakt for blacklisting show on 'Add Trending Show' & 'Add Recommended Shows' pages":[null,""],"Email":[null,"Endereço de e-mail"],"Allows configuration of email notifications on a per show basis.":[null,""],"send email notifications?":[null,""],"SMTP host":[null,"Anfitrião SMTP"],"hostname of your SMTP email server.":[null,"nome do host do seu servidor de email SMTP."],"SMTP port":[null,"Porta SMTP"],"port number used to connect to your SMTP host.":[null,""],"SMTP from":[null,"SMTP de"],"sender email address, some hosts require a real address.":[null,""],"Use TLS":[null,"Usar TLS"],"check to use TLS encryption.":[null,""],"SMTP user":[null,"Usuário do SMTP"],"(optional) your SMTP server username.":[null,""],"SMTP password":[null,"Palavra chave do SMTP"],"(optional) your SMTP server password.":[null,"(opcional) sua senha do servidor SMTP."],"Global email list":[null,"Lista global de e-mails"],"email addresses listed here, separated by commas if applicable, will<br> receive notifications for <b>all</b> shows.":[null,""],"(This field may be blank except when testing.)":[null,""],"Email Subject":[null,"Assunto do email"],"use a custom subject for some privacy protection?":[null,""],"(leave blank for the default SickRage subject)":[null,""],"configure per-show notifications here by entering email address(es), separated by commas,":[null,""],"after selecting a show in the drop-down box. Be sure to activate the 'Save for this show'":[null,""],"button below after each entry.":[null,""],"Slack":[null,"Slack"],"Slack brings all your communication together in one place. It's real-time messaging, archiving and search for modern teams.":[null,""],"should SickRage post messages on Slack?":[null,""],"Slack Incoming Webhook":[null,""],"Discord":[null,"Discord"],"All-in-one voice and text chat for gamers that's free, secure, and works on both your desktop and phone.":[null,""],"Should SickRage post messages on Discord?":[null,""],"Discord Incoming Webhook":[null,""],"Create webhook under channel settings.":[null,""],"Discord Bot Name":[null,""],"Blank will use webhook default Name.":[null,""],"Discord Avatar URL":[null,""],"Blank will use webhook default Avatar.":[null,""],"Discord TTS":[null,""],"Send notifications using text-to-speech":[null,""],"Post-Processing":[null,"Pós-processamento"],"Episode Naming":[null,"Nomeação de Episódios"],"Metadata":[null,"Metadata"],"Settings that dictate how SickRage should process completed downloads.":[null,"Configurações que determinam como o SickRage deve processar transferências concluídas."],"enable the automatic post processor to scan and process any files in your Post Processing Dir":[null,""],"do not use if you use an external Post Processing script":[null,""],"Post Processing Dir":[null,"Dirétorio de Pós-processamento"],"the folder where your download client puts the completed TV downloads.":[null,""],"please use seperate downloading and completed folders in your download client if possible.":[null,""],"Processing Method":[null,"Método de processamento"],"what method should be used to put files into the library?":[null,""],"if you keep seeding torrents after they finish, please avoid the 'move' processing method to prevent errors.":[null,""],"Auto Post-Processing Frequency":[null,"Frequência de Pós-processamento Automático"],"time in minutes to check for new files to auto post-process (min 10)":[null,""],"Postpone post processing":[null,"Adiar o pós-processamento"],"wait to process a folder if sync files are present.":[null,""],"Sync File Extensions":[null,"Extenções de ficheiro de \"Sync\""],"comma seperated list of extensions or filename globs SickRage ignores when Post Processing":[null,"lista separados por vírgulas de extensões ou nomes de ficheiro que o SickRage deva ignorar aquando do pós-processamento"],"Rename Episodes":[null,"Renomear episódios"],"rename episode using the Episode Naming settings?":[null,""],"Create missing show directories":[null,"Criar pastas de programas em falta"],"create missing show directories when they get deleted":[null,""],"Add shows without directory":[null,"Adicionar programas sem diretório"],"add shows without creating a directory (not recommended)":[null,""],"Move associated files":[null,"Mover ficheiros associados"],"move associated (srt/srr/sfv/etc) files while post processing?":[null,""],"Rename .nfo file":[null,"Renomear o ficheiro NFO"],"rename the original .nfo file to .nfo-orig to avoid conflicts?":[null,""],"Associated file extensions":[null,""],"comma separated list of associated file extensions SickRage should keep while post processing.":[null,""],"leaving it empty means no associated files will be post processed":[null,""],"Delete non associated files":[null,""],"delete non associated files while post processing?":[null,""],"Change File Date":[null,"Alterar Data de Ficheiro"],"set last modified filedate to the date that the episode aired?":[null,""],"some systems may ignore this feature.":[null,""],"Timezone for File Date":[null,"Fuso horário para a data do arquivo"],"local":[null,"local"],"network":[null,"rede"],"what timezone should be used to change File Date?":[null,""],"Unpack":[null,"Descompactar"],"What to do with archived releases found in your <i>TV Download Dir</i>?":[null,""],"Ignore (do not process contents)":[null,""],"Unpack (process contents)":[null,""],"Treat as video (process archive as-is)":[null,""],"'Unpack' only works with RAR archives":[null,""],"Windows":[null,""],"WinRar is required on windows":[null,""],"Unpack Directory":[null,""],"Choose a path to unpack files, leave blank to unpack in download dir":[null,""],"Unrar Location":[null,""],"add the path to unrar if it is not in the system path":[null,""],"Alternate Unrar Tool":[null,""],"add the path to an alternate unrar tool if it is not in the system path":[null,""],"Delete RAR contents":[null,"Eliminar o conteúdo dos arquivos RAR"],"delete content of RAR files, even if Process Method not set to move?":[null,""],"only working with RAR archive":[null,""],"Don't delete empty folders":[null,"Não eliminar pastas vazias"],"leave empty folders when Post Processing?":[null,""],"can be overridden using manual Post Processing":[null,""],"Follow symbolic-links":[null,""],"follow down symbolic links in download directory?":[null,""],"<b>EXPERTS ONLY.</b><br>Enable only if you know what <b>circular symbolic links</b> are,<br>and can <b>verify that you have none</b>.":[null,""],"Use icacls":[null,""],"Windows only":[null,""],"sets video permissions after using the move method in post processing":[null,""],"Extra Scripts":[null,"Scripts extras"],"see":[null,""],"for script arguments description and usage.":[null,"para a descrição dos argumentos do script e o seu uso."],"How SickRage will name and sort your episodes.":[null,"Como o SickRage vai nomear e ordenar o teus episódios."],"Name Pattern":[null,"Padrão do Nome"],"Toggle Naming Legend":[null,"Ativar/Desativar Legenda de Renomeação"],"don't forget to add quality pattern. Otherwise after post-processing the episode will have UNKNOWN quality":[null,""],"Meaning":[null,"Significado"],"Pattern":[null,"Padrão"],"Result":[null,"Resultado"],"Use lower case if you want lower case names (eg. %sn, %e.n, %q_n etc)":[null,"Use letras minúsculas se você quer nomes de minúsculas (por exemplo,. %sn, %e.n, % q_n etc)"],"Show Name":[null,"Nome da Série"],"Show.Name":[null,"Nome.do.Programa"],"Show_Name":[null,"Nome_do_Programa"],"Season Number":[null,"Número da temporada"],"XEM Season Number":[null,"Número da temporada do XEM"],"Episode Number":[null,"Número do episódio"],"XEM Episode Number":[null,"Número de episódio do XEM"],"Episode Name":[null,"Nome do episódio"],"Episode.Name":[null,"Nome.do.episódio"],"Episode_Name":[null,"Nome_do_episódio"],"Air Date":[null,"Data de publicação"],"Post-Processing Date":[null,"Data de pós-processamento"],"Quality":[null,"Qualidade"],"Scene Quality":[null,"Qualidade da \"Scene\""],"Release Name":[null,"Nome do \"release\""],"SickRage' is used in place of RLSGROUP if it could not be properly detected":[null,"SickRage' é usado no lugar de RLSGROUP, se ele não pudesse ser detectado corretamente"],"Release Group":[null,"Groupo"],"If episode is proper/repack add 'proper' to name.":[null,"Se o episódio for um proper/repack/real adicionar \"proper\" ao nome."],"Release Type":[null,"Tipo de publicação"],"Multi-Episode Style":[null,"Estilo muiplo episodio"],"Single-EP Sample":[null,"Amostra de apenas um episiodio"],"Multi-EP sample":[null,"Amostra de multiplos episiodios"],"Strip Show Year":[null,"Remover Ano do Nome"],"remove the TV show's year when renaming the file?":[null,""],"only applies to shows that have year inside parentheses":[null,""],"Custom Air-By-Date":[null,"Data de publicação costumizada"],"name air-by-date shows differently than regular shows?":[null,""],"Toggle ABD Naming Legend":[null,""],"Regular Air Date":[null,"Data de publicação normal"],"Year":[null,"Ano"],"Month":[null,"Mês"],"Day":[null,"Dia"],"Multi-EP style is ignored":[null,"Estilo multi-episódio é ignorado"],"Custom Sports":[null,"Desportos personalizados"],"name sports shows differently than regular shows?":[null,""],"Toggle Sports Naming Legend":[null,""],"Sports Air Date":[null,"Data de estréia de desportos"],"Custom Anime":[null,"Anime personalizado"],"name anime shows differently than regular shows?":[null,""],"Toggle Anime Naming Legend":[null,""],">XEM Season Number":[null,""],"Single-EP Anime Sample":[null,""],"Multi-EP Anime sample":[null,""],"Add Absolute Number":[null,"Adicionar Número Absoluto"],"add the absolute number to the season/episode format?":[null,""],"only applies to anime. (eg. S15E45 - 310 vs S15E45)":[null,""],"Only Absolute Number":[null,"Apenas Número Absoluto"],"replace season/episode format with absolute number":[null,""],"only applies to anime.":[null,""],"No Absolute Number":[null,"Nenhum número absoluto"],"don't include the absolute number":[null,""],"The data associated to the data. These are files associated to a TV show in the form of images and text that, when supported, will enhance the viewing experience.":[null,""],"Metadata Type":[null,"Tipo de Metadados"],"toggle metadata options that you wish to be created":[null,""],"multiple targets may be used":[null,""],"Select Metadata":[null,"Selecionar metadados"],"Provider Priorities":[null,"Prioridades dos Fornecedores"],"Provider Options":[null,"Opções dos Fornecedores"],"Configure Custom Newznab Providers":[null,"Configurar fornecedores personalizados Newznab"],"Configure Custom Torrent Providers":[null,"Configurar fornecedores personalizados Torrent"],"Check off and drag the providers into the order you want them to be used.":[null,""],"At least one provider is required but two are recommended.":[null,""],"Torrent providers can be toggled in ":[null,"Provedores de torrent podem ser alternados em "],"Provider does not support backlog searches at this time.":[null,""],"Provider is <b>NOT WORKING</b>.":[null,"O Fornecedor <b>NÃO ESTÁ A FUNCIONAR</b>."],"Configure individual provider settings here.":[null,"Defina configurações individuais de provedores aqui."],"Check with provider's website on how to obtain an API key if needed.":[null,""],"Configure provider":[null,"Configurar fornecedor"],"no providers available to configure.":[null,""],"URL":[null,"URL"],"Enable daily searches":[null,"Permitir buscas diárias"],"enable provider to perform daily searches.":[null,"permitir provedor para realizar pesquisas diárias."],"Enable backlog searches":[null,""],"enable provider to perform backlog searches.":[null,""],"Season search mode":[null,""],"when searching for complete seasons you can choose to have it look for season packs only, or choose to have it build a complete season from just single episodes.":[null,""],"season packs only.":[null,""],"episodes only.":[null,"episódios apenas."],"Enable fallback":[null,"Ativar fallback"],"when searching for a complete season depending on search mode you may return no results, this helps by restarting the search using the opposite search mode.":[null,""],"Custom URL":[null,"URL personalizado"],"the URL should include the protocol (and port if applicable). Examples: http://192.168.1.4/ or http://localhost:3000/":[null,""],"Api key":[null,"Chave de API"],"Digest":[null,"Digest"],"Hash":[null,"Hash"],"Passkey":[null,"Chave de acesso"],"Cookies":[null,"Cookies"],"example: uid=1234;pass=567845439634987<br>note: uid and pass are not your username/password.<br>use DevTools or Firebug to get these values after logging in on your browser.":[null,""],"Pin":[null,"PIN"],"Seed ratio":[null,"Relação de envio"],"stop transfer when ratio is reached<br>(-1 SickRage default to seed forever, or leave blank for downloader default)":[null,""],"Minimum seeders":[null,"Seeders mínimos"],"Minimum leechers":[null,"Leechers mínimos"],"Confirmed download":[null,"Downloads confirmados"],"only download torrents from trusted or verified uploaders ?":[null,"Só baixar torrents de uploaders confiáveis ou verificados?"],"Ranked torrents":[null,"Torrents de confiança"],"only download ranked torrents (trusted releases)":[null,""],"English torrents":[null,"Torrentes em inglês"],"only download english torrents, or torrents containing english subtitles":[null,""],"For Spanish torrents":[null,"Para torrents espanhois"],"ONLY search on this provider if show info is defined as \"Spanish\" (avoid provider's use for VOS shows)":[null,""],"Sorting results by":[null,"Classificar resultados por"],"Freeleech":[null,"FreeLeech"],"only download <b>\"FreeLeech\"</b> torrents.":[null,"só transferir torrents <b>\"FreeLeech\"</b>."],"Category":[null,"Categoria"],"select torrent with Italian subtitle":[null,""],"Configure Custom<br>Newznab Providers":[null,""],"Add and setup or remove custom Newznab providers.":[null,""],"Select provider":[null,"Selecione o provedor"],"-- add new provider --":[null,"-- Adicionar novo fornecedor --"],"Provider name":[null,"Nome do fornecedor"],"Site URL":[null,"URL do site"],"Newznab search categories":[null,"Categorias de pesquisa do Newznab"],"select your Newznab categories on the left, and click the \"update categories\" button to use them for searching.) <b>don't forget to to save the form!":[null,""],"Update Categories":[null,"Atualizar Categorias"],"Add":[null,"Adicionar"],"Delete":[null,"Eliminar"],"Add and setup or remove custom RSS providers.":[null,"Adicionar e configurar ou remover provedores personalizados de RSS."],"RSS URL":[null,"URL do RSS"],"Search element":[null,"Elemento de pesquisa"],"eg: title":[null,"p. ex.: título"],"Episode Search":[null,"Pesquisa por episódio"],"NZB Search":[null,"Pesquisa NZB"],"Torrent Search":[null,"Pesquisa de Torrents"],"How to manage searching with":[null,""],"Randomize Providers":[null,"Randomize provedores"],"randomize the provider search order instead of going in order of placement":[null,""],"Download propers":[null,"Transferir versões Proper"],"replace original download with \"Proper\" or \"Repack\" if nuked":[null,"substituir o ficheiro original por uma versão \"Proper\" ou \"Repack\" se nukado"],"Check propers every":[null,"Verificar versões Proper a cada"],"24 hours":[null,"24 horas"],"4 hours":[null,"4 horas"],"90 mins":[null,"90 mins"],"45 mins":[null,"45 mins"],"15 mins":[null,"15 mins"],"Backlog search day(s)":[null,""],"number of day(s) that the \"Forced Backlog Search\" will cover (e.g. 7 Days)":[null,""],"Backlog search frequency":[null,""],"time in minutes between searches (min.":[null,"tempo em minutos entre pesquisas (mín."],"Daily search frequency":[null,"Frequência de busca diária"],"Usenet retention":[null,"Retenção de Usenet"],"age limit in days for usenet articles to be used (e.g. 500)":[null,"limite de idade em dias para artigos usenet para ser usado (por exemplo, 500)"],"Ignore words":[null,"Palavras ignoradas"],"results with one or more word from this list will be ignored<br>separate words with a comma, e.g. \"word1,word2,word3\"":[null,""],"Require words":[null,"Palavras requeridas"],"results with no word from this list will be ignored<br>separate words with a comma, e.g. \"word1,word2,word3\"":[null,""],"Trackers list":[null,"Lista de Trackers"],"trackers that will be added to magnets without trackers<br>separate trackers with a comma, e.g. \"tracker1,tracker2,tracker3\"":[null,""],"Ignore language names in subbed results":[null,""],"ignore subbed releases based on language names <br>\n Example: \"dk\" will ignore words: dksub, dksubs, dksubbed, dksubed <br>\n separate languages with a comma, e.g. \"lang1,lang2,lang3":[null,""],"Allow high priority":[null,"Permitir alta prioridade"],"set downloads of recently aired episodes to high priority":[null,"definir transferências de episódios recém-exibidos para alta prioridade"],"Use Failed Downloads":[null,"Usar Downloads Falhados"],"use Failed Download Handling?":[null,""],"will only work with snatched/downloaded episodes after enabling this":[null,""],"Delete Failed":[null,"Falha ao Eliminar"],"delete files left over from a failed download?":[null,""],"this only works if Use Failed Downloads is enabled.":[null,""],"How to handle NZB search results.":[null,""],"Search NZBs":[null,"Pesquisar por NZBs"],"enable NZB search providers":[null,""],"Send .nzb files to":[null,"Enviar arquivos .nzb para"],"SABnzbd server URL":[null,""],"URL to your SABnzbd server (e.g. http://localhost:8080/)":[null,""],"SABnzbd username":[null,"Nome de utilizador SABnzbd"],"(blank for none)":[null,"(em branco para nenhum)"],"SABnzbd password":[null,"Palavra passe do SABnzbd"],"SABnzbd API key":[null,"Chave da API SABnzbd"],"locate at... SABnzbd Config -> General -> API Key":[null,"localizado em... SABnzbd Config-> geral-> chave de API"],"Use SABnzbd category":[null,"Categoria a usar no SABnzbd"],"add downloads to this category (e.g. TV)":[null,""],"Use SABnzbd category (backlog episodes)":[null,""],"add downloads of old episodes to this category (e.g. TV)":[null,""],"Use SABnzbd category for anime":[null,""],"add anime downloads to this category (e.g. anime)":[null,""],"Use SABnzbd category for anime (backlog episodes)":[null,""],"add anime downloads of old episodes to this category (e.g. anime)":[null,""],"Use forced priority":[null,"Usar prioridade forçada"],"enable to change priority from HIGH to FORCED":[null,""],"Black hole folder location":[null,"Localização da pasta de buraco negro"],"<b>.nzb</b> files are stored at this location for external software to find and use":[null,""],"Connect using HTTPS":[null,"Conectar usando HTTPS"],"enable Secure control in NZBGet and set the correct Secure Port here":[null,""],"NZBget host:port":[null,""],"(e.g. localhost:6789)":[null,"(p. ex. localhost:6789)"],"NZBget RPC host name and port number (not NZBgetweb!)":[null,""],"NZBget username":[null,""],"locate in nzbget.conf (default:nzbget)":[null,""],"NZBget password":[null,"Senha NZBget"],"locate in nzbget.conf (default:tegbzn6789)":[null,""],"Use NZBget category":[null,"Categoria a usar no NZBget"],"send downloads marked this category (e.g. TV)":[null,""],"Use NZBget category (backlog episodes)":[null,""],"send downloads of old episodes marked this category (e.g. TV)":[null,""],"Use NZBget category for anime":[null,""],"send anime downloads marked this category (e.g. anime)":[null,""],"Use NZBget category for anime (backlog episodes)":[null,""],"send anime downloads of old episodes marked this category (e.g. anime)":[null,""],"NZBget priority":[null,""],"Very low":[null,"Muito baixa"],"Low":[null,"Baixa"],"Very high":[null,"Muito alta"],"Force":[null,"Forçar"],"priority for daily snatches (no backlog)":[null,""],"Torrent host:port":[null,""],"URL to your Synology DSM (e.g. http://localhost:5000/)":[null,""],"Client username":[null,"Nome de utilizador do cliente"],"Client password":[null,"Palavra-passe do cliente"],"Downloaded files location":[null,"Localização de ficheiros transferidos"],"where Synology Download Station will save downloaded files (blank for client default)":[null,""],"the destination has to be a shared folder for Synology DS":[null,""],"Click below to test":[null,"Clicar abaixo para testar"],"How to handle Torrent search results.":[null,""],"Search torrents":[null,"Pesquisa de torrents"],"enable torrent search providers":[null,""],"Send .torrent files to":[null,""],"<b>.torrent</b> files are stored at this location for external software to find and use":[null,""],"URL to your torrent client (e.g. http://localhost:8000/)":[null,""],"Torrent RPC URL":[null,""],"the path without leading and trailing slashes (e.g. transmission)":[null,""],"Http Authentication":[null,""],"Verify certificate":[null,"Verificar certificado"],"disable if you get \"Deluge: Authentication Error\" in your log":[null,""],"verify SSL certificates for HTTPS requests":[null,""],"Add label to torrent":[null,"Adicionar um rótulo ao torrent"],"(blank spaces are not allowed)":[null,""],"label plugin must be enabled in Deluge clients":[null,""],"for QBitTorrent 3.3.1 and up":[null,""],"Add label to torrent for anime":[null,""],"for QBitTorrent 3.3.1 and up ":[null,""],"where <span id=\"torrent_client\">the torrent client</span> will save downloaded files (blank for client default)":[null,""],"the destination has to be a shared folder for Synology DS</span>":[null,""],"Minimum seeding time":[null,""],"time in hours":[null,""],"(default:'0' passes blank to client and '-1' passes nothing)":[null,""],"Start torrent paused":[null,""],"add .torrent to client but do <b style=\"font-weight:900\">not</b> start downloading":[null,""],"Allow high bandwidth":[null,"Permitir largura de banda alta"],"use high bandwidth allocation if priority is high":[null,""],"Test Connection":[null,"Testar Ligação"],"Windows Shares":[null,""],"Defines your existing windows shares so that we can add them to the browse dialog":[null,""],"Share #{number}":[null,""],"Share label":[null,""],"Hostname or IP":[null,""],"Share path":[null,""],"Subtitles Search":[null,"Pesquisa de Legendas"],"Subtitles Plugin":[null,"Plugin de Legendas"],"Plugin Settings":[null,"Configurações do plugin"],"Settings that dictate how SickRage handles subtitles search results.":[null,""],"Search Subtitles":[null,"Pesquisar legendas"],"Subtitle Languages":[null,"Idioma das Legendas"],"Subtitle Directory":[null,"Diretório de legendas"],"the directory where SickRage should store your <i>Subtitles</i> files.":[null,""],"leave empty if you want store subtitle in episode path.":[null,""],"Subtitle Find Frequency":[null,"Frequência de Pesquisa de Legendas"],"time in hours between scans (default: 1)":[null,"tempo em horas entre as pesquisas (padrão: 1)"],"Include Specials":[null,""],"include the show's specials when searching for subtitles?":[null,""],"Perfect matches":[null,"Correspondências perfeitas"],"only download subtitles that match: release group, video codec, audio codec and resolution":[null,""],"if disabled you may get out of sync subtitles":[null,""],"Subtitles History":[null,"Histórico de Legendas"],"log downloaded Subtitle on History page?":[null,""],"Subtitles Multi-Language":[null,"Legendas Multi-Idioma"],"append language codes to subtitle filenames?":[null,""],"this option is required if you use multiple subtitle languages":[null,""],"Delete unwanted subtitles":[null,"Excluir legendas indesejadas"],"enable to delete unwanted subtitle languages bundled with release":[null,""],"Embedded Subtitles":[null,"Legendas Incorporadas"],"ignore subtitles embedded inside video file?":[null,""],"this will ignore <u>all</u> embedded subtitles for every video file!":[null,"isto irá ignorar <u>todas</u> as legendas incorporadas para todos os ficheiros de vídeo!"],"Hearing Impaired Subtitles":[null,"Legendas para Deficientes Auditivos"],"download hearing impaired style subtitles?":[null,""],"See":[null,"Ver"],"for a script arguments description.":[null,"para uma descrição de argumentos de script."],"Additional scripts separated by <b>|</b>.":[null,"Scripts adicionais separados por <b>|</b>."],"Scripts are called after each episode has searched and downloaded subtitles.":[null,"Scripts são chamados após cada episódio ter pesquisado e transferido as legendas."],"For any scripted languages, include the interpreter executable before the script. See the following example":[null,"Para quaisquer linguagens de script, incluir o executável do intérprete antes do script. Ver o seguinte exemplo"],"For Windows:":[null,"Para Windows:"],"For Linux / OS X:":[null,"Para Linux / OS X:"],"Subtitle Providers":[null,"Origem das legendas"],"Check off and drag the plugins into the order you want them to be used.":[null,"Marcar e arrastar os plugins pela ordem que você quer que sejam usados."],"At least one plugin is required.":[null,"Pelo menos um plugin é necessário."]," Web-scraping plugin":[null," Plugin de Web-Scraping"],"Provider Settings":[null,"Opções dos Fornecedores"],"Set user and password for each provider":[null,"Definir o nome de utilizador e senha para cada fornecedor"],"User Name":[null,"Nome de utilizador"],"Change Show":[null,"Alterar Série"],"Prev Show":[null,"Série Anterior"],"Next Show":[null,"Próxima Série"],"Jump to Season":[null,"Saltar para a temporada"],"Specials":[null,"Especiais"],"Poster for":[null,"Poster para"],"Stars":[null,"Estrelas"],"minutes":[null,"minutos"],"View other popular {genre} shows on trakt.tv.":[null,"Ver outras séries populares de {genre} em trakt.tv."],"View other popular {imdbgenre} shows on IMDB.":[null,"Ver outras séries populares de {imdbgenre} no IMDB."],"Allowed":[null,"Permitido"],"Preferred":[null,"Preferida"],"Originally Airs":[null,"Estreia Originalmente"],"Show Status":[null,"Mostrar Estado"],"Default EP Status":[null,"Estado Predefinido de Ep"],"Location":[null,"Localização"],"Missing":[null,"Em falta"],"Scene Name":[null,"Nome na Scene"],"Required Words":[null,"Palavras requeridas"],"Ignored Words":[null,"Palavras ignoradas"],"Size":[null,"Tamaho"],"Info Language":[null,"Informação da Língua"],"Subtitles SR Metadata":[null,""],"Season Folders":[null,"Pastas das temporadas"],"Paused":[null,"Em pausa"],"Air-by-Date":[null,"Data de emissão"],"Sports":[null,"Desporto"],"DVD Order":[null,"Ordem de DVD"],"Scene Numbering":[null,"Numeração de cena"],"Select Filtered Episodes":[null,"Selecionar Episódios Filtrados"],"Clear All":[null,"Limpar tudo"],"Change selected episodes to":[null,"Alterar episódios selecionados para"],"Select Columns":[null,"Selecionar colunas"],"Hide Episodes":[null,""],"Show Episodes":[null,"Episódios do programa"],"NFO":[null,"NFO"],"TBN":[null,"TBN"],"Episode":[null,"Episódio"],"Absolute":[null,"Absoluto"],"Scene":[null,"Scene"],"Scene Absolute":[null,"Absoluto da Scene"],"File Name":[null,"Nome do ficheiro"],"Airdate":[null,"Data de Exibição"],"Download":[null,"Download"],"Change the value here if scene numbering differs from the indexer episode numbering":[null,"Altere o valor aqui se a numeração da Scene for diferente da numeração do indexador"],"Change the value here if scene absolute numbering differs from the indexer absolute numbering":[null,"Altere o valor aqui se a numeração absoluta da Scene for diferente da numeração absoluta do indexador"],"Manual Search":[null,"Pesquisa manual"],"Do you want to mark this episode as failed?":[null,""],"The episode release name will be added to the failed history, preventing it to be downloaded again.":[null,""],"Do you want to include the current episode quality in the search?":[null,""],"Choosing No will ignore any releases with the same episode quality as the one currently downloaded/snatched.":[null,""],"Download subtitle":[null,""],"Do you want to re-download the subtitle for this language?":[null,""],"It will overwrite your current subtitle":[null,""],"Format":[null,""],"Advanced":[null,"Preferências Avançadas"],"Main Settings":[null,"Configurações principais"],"Show Location":[null,"Mostrar a localização"],"Preferred Quality":[null,"Qualidade preferida"],"Default Episode Status":[null,""],"this will set the status for future episodes.":[null,""],"this only applies to episode filenames and the contents of metadata files.":[null,""],"search for subtitles":[null,""],"Use SR Metdata":[null,""],"use SickRage metadata when searching for subtitle, this will override the autodiscovered metadata":[null,""],"pause this show (SickRage will not download episodes)":[null,""],"Format Settings":[null,""],"Air by date":[null,""],"check if the show is released as Show.03.02.2010 rather than Show.S02E03.":[null,""],"in case of an air date conflict between regular and special episodes, the later will be ignored.":[null,""],"check if the show is Anime and episodes are released as Show.265 rather than Show.S02E03":[null,""],"check if the show is a sporting or MMA event released as Show.03.02.2010 rather than Show.S02E03":[null,""],"Season folders":[null,""],"group episodes by season folder (uncheck to store in a single folder)":[null,""],"search by scene numbering (uncheck to search by indexer numbering)":[null,"pesquisar por numeração da Scene (desmarcar para pesquisar por numeração do indexador)"],"use the DVD order instead of the air order":[null,""],"a \"Force Full Update\" is necessary, and if you have existing episodes you need to sort them manually.":[null,""],"comma-separated <i>e.g. \"word1,word2,word3</i>\"":[null,""],"search results with one or more words from this list will be ignored.":[null,""],"e.g. \"word1,word2,word3\"":[null,""],"search results with no words from this list will be ignored.":[null,""],"Scene Exception":[null,"Exceção da Scene"],"this will affect episode search on NZB and torrent providers.":[null,""],"this list appends to the original show name.":[null,""],"WARNING logs":[null,""],"ERROR logs":[null,""],"There are no events to display.":[null,""],"Limit":[null,""],"Layout":[null,""],"HistoryLayout":[null,""],"Compact":[null,""],"Detailed":[null,"Detalhado"],"Time":[null,"Data"],"Provider":[null,"Fornecedor"],"Missing Provider":[null,"Falta o fornecedor"],"missing provider":[null,"falta o fornecedor"],"Directory":[null,"Diretório"],"Show Name (tvshow.nfo)":[null,"Mostrar nome (tvshow.nfo)"],"Indexer":[null,"Indexador"],"Enter the folder containing the episode":[null,""],"Process Method to be used":[null,""],"Copy":[null,"Copiar"],"Move":[null,"Mover"],"Hard Link":[null,""],"Symbolic Link":[null,""],"Symbolic Link Reversed":[null,""],"Force already Post Processed Dir/Files":[null,""],"Mark Dir/Files as priority download":[null,""],"(Check it to replace the file even if it exists at higher quality)":[null,""],"Delete files and folders":[null,""],"(Check it to delete files and folders like auto processing)":[null,"(Marcar para eliminar ficheiros e pastas como no pós-processamento)"],"Don't use processing queue":[null,""],"(If checked this will return the result of the process here, but may be slow!)":[null,""],"Mark download as failed":[null,""],"Process":[null,""],"Download subtitles for this show?":[null,""],"use SickRage metadata when searching for subtitle, <br />this will override the autodiscovered metadata":[null,""],"Status for previously aired episodes":[null,""],"Status for all future episodes":[null,""],"Group episodes by season folder?":[null,""],"Is this show an Anime?":[null,""],"Is this show scene numbered?":[null,"Esta série tem numeração da Scene?"],"Save Defaults":[null,""],"Use current values as the defaults":[null,""],"<p>Select your preferred fansub groups from the <b>Available Groups</b> and add them to the <b>Whitelist</b>. Add groups to the <b>Blacklist</b> to ignore them.</p>\n <p>The <b>Whitelist</b> is checked <i>before</i> the <b>Blacklist</b>.</p>\n <p>Groups are shown as <b>Name</b> | <b>Rating</b> | <b>Number of subbed episodes</b>.</p>\n <p>You may also add any fansub group not listed to either list manually.</p>\n <p>When doing this please note that you can only use groups listed on anidb for this anime.\n <br>If a group is not listed on anidb but subbed this anime, please correct anidb's data.</p>":[null,""],"Whitelist":[null,""],"Available Groups":[null,"Grupos Disponíveis"],"Add to Whitelist":[null,""],"Add to Blacklist":[null,""],"Blacklist":[null,""],"Custom Group":[null,""],"Allowed Quality:":[null,""],"Preferred Quality:":[null,""],"Filter Show Name":[null,""],"Root":[null,""],"All":[null,"Todos"],"Clear Filter(s)":[null,""],"Poster":[null,"Cartaz"],"Small Poster":[null,""],"Banner":[null,"Faixa"],"Simple":[null,"Simples"],"Next Episode":[null,"Próximo Episódio"],"Progress":[null,"Progresso"],"Direction":[null,"Direção"],"Ascending":[null,"Ascendente"],"Descending":[null,"Descendente"],"Poster Size":[null,"Tamanho do poster"],"Continuing":[null,""],"Ended":[null,"Terminada"],"Total":[null,""],"Invalid date":[null,""],"No Network":[null,""],"Next Ep":[null,""],"Prev Ep":[null,""],"Show":[null,"Série"],"Downloads":[null,""],"Active":[null,""],"loading":[null,"a carregar"],"Loading...":[null,"A carregar..."],"<p><b><u>Preferred</u></b> qualities will replace those in <b><u>allowed</u></b>, even if they are lower.</p>":[null,""],"New":[null,""],"Set as Default":[null,""],"Remember me":[null,""],"Edit Selected":[null,""],"Subtitle":[null,""],"Default Ep Status":[null,""],"Update":[null,""],"Rescan":[null,""],"Rename":[null,""],"Search Subtitle":[null,""],"Force Metadata Regen":[null,""],"Snatched (Allowed)":[null,"Encontrado (Permitido)"],"Jump to Show":[null,"Ir para Programa"],"Force Backlog":[null,""],"Manage episodes with status":[null,""],"Manage":[null,""],"None of your episodes have status":[null,""],"Shows containing":[null,""],"episodes":[null,"episódios"],"Set checked shows/episodes to":[null,"Definir programas/episódios selecionados como"],"Go":[null,""],"Select all":[null,""],"Clear all":[null,""],"Release":[null,"Lançamento"],"Backlog Search":[null,""],"Not in progress":[null,""],"In Progress":[null,""],"Daily Search":[null,""],"Find Propers Search":[null,""],"Propers search disabled":[null,"Pesquisa de versões Proper desativada"],"Subtitle Search":[null,"Pesquisa de Legendas"],"Subtitle search disabled":[null,"Pesquisa de legendas desativada"],"Search Queue":[null,"Fila de Espera de Pesquisa"],"pending items":[null,"itens pendentes"],"Daily":[null,"Diária"],"Manual":[null,"Manual"],"Changing any settings marked with (<span class=\"separator\">*</span>) will force a refresh of the selected shows.":[null,"Alterar quaisquer configurações marcadas com (<span class=\"separator\"> *</span>) irá forçar uma atualização dos programas selecionados."],"Selected Shows":[null,"Programas Selecionados"],"Root Directories":[null,"Pastas de Raiz"],"Current":[null,"Atual"],"Keep":[null,"Manter"],"Custom":[null,"Personalizada"],"Group episodes by season folder (set to \"No\" to store in a single folder).":[null,"Agrupar episódios por pasta de temporada (selecionar \"Não\" para armazenar numa única pasta)."],"Pause these shows (SickRage will not download episodes).":[null,"Pausar estes programas (O SickRage não irá transferir episódios)."],"This will set the status for future episodes.":[null,""],"Search by scene numbering (set to \"No\" to search by indexer numbering).":[null,"Pesquisar por numeração da scene (selecionar \"Não\" para pesquisar por numeração do indexador)."],"Set if these shows are Anime and episodes are released as Show.265 rather than Show.S02E03":[null,"Selecionar se estes programas são Anime e os episódios são lançados como Programa.265 ao invés de Programa.S02E03"],"Set if these shows are sporting or MMA events released as Show.03.02.2010 rather than Show.S02E03.":[null,"Selecionar se estes programas são de desporto ou eventos MMA lançados como Programa.03.02.2010 ao invés de Programa.S02E03."],"In case of an air date conflict between regular and special episodes, the later will be ignored.":[null,""],"Set if these shows are released as Show.03.02.2010 rather than Show.S02E03.":[null,"Selecionar se estes programas são lançados como Programa.03.02.2010 ao invés de Programa.S02E03."],"Search for subtitles.":[null,"Pesquisar por legendas."],"All of your episodes have {subsLanguage} subtitles.":[null,"Todos os seus episódios têm legendas em {subsLanguage}."],"Manage episodes without":[null,"Gerir episódios sem"],"Episodes without {subsLanguage} subtitles.":[null,"Episódios sem legendas em {subsLanguage}."],"Episodes without {subtitleLanguage} (undefined) subtitles.":[null,"Episódios sem legendas em {subtitleLanguage} (indefinido)."],"Download missed subtitles for selected episodes":[null,"Transferir legendas em falta para os episódios selecionados"],"Performing Restart":[null,"A reiniciar"],"Waiting for SickRage to shut down":[null,"A aguardar que o SickRage encerre"],"Waiting for SickRage to start again":[null,"A aguardar que o SickRage inicie novamente"],"Loading the default page":[null,"A carregar a página predefinida"],"Error: The restart has timed out, perhaps something prevented SickRage from starting again?":[null,"Erro: O tempo para o SickRage reiniciar esgotou, talvez algo tenha impedido o SickRage de iniciar novamente?"],"Key":[null,"Etiqueta"],"Missed":[null,"Perdido"],"Today":[null,"Hoje"],"Soon":[null,"Brevemente"],"Later":[null,"Mais tarde"],"Subscribe":[null,"Subscrever"],"Date":[null,"Data"],"View Paused":[null,"Ver Pausados"],"Hidden":[null,"Ocultar"],"Shown":[null,"Mostrar"],"Calendar":[null,"Calendário"],"List":[null,"Lista"],"Ends":[null,"Termina"],"Next Ep Name":[null,"Nome do Próximo Ep"],"Run time":[null,"Duração"],"Indexers":[null,"Indexadores"],"No shows for this day":[null,"Sem programas para este dia"],"Airs":[null,"Estreia"],"Plot":[null,"Sinopse"],"Show Update":[null,"Atualização de Programas"],"Version Check":[null,"Verificação de Versão"],"Proper Finder":[null,"Pesquisa de Proper"],"Post Process":[null,""],"Subtitles Finder":[null,""],"Scheduler":[null,""],"Alive":[null,""],"Start Time":[null,""],"Cycle Time":[null,""],"Next Run":[null,""],"Last Run":[null,""],"Silent":[null,""],"True":[null,""],"N/A":[null,""],"Show id":[null,""],"Show name":[null,""],"Priority":[null,""],"Added":[null,""],"Queue type":[null,""],"LOW":[null,""],"NORMAL":[null,""],"HIGH":[null,""],"Disk Space":[null,"Espaço do Disco"],"Free space":[null,"Espaço Livre"],"TV Download Directory":[null,"Pasta de Transferências TV"],"Media Root Directories":[null,"Pastas de Raíz de Média"],"Preview of the proposed name changes":[null,"Pré-visualização das alterações de nome propostas"],"All Seasons":[null,"Todas as Temporadas"],"select all":[null,""],"Rename Selected":[null,"Renomear Selecionados"],"Cancel Rename":[null,"Cancelar Renomeação"],"Old Location":[null,"Localização Antiga"],"New Location":[null,"Nova Localização"],"Trakt API did not return any results, please check your config.":[null,"A API do Trakt não retornou nenhum resultado, por favor verifique a sua configuração."],"votes":[null,"votos"],"Remove Show":[null,"Remover Série"],"Level":[null,""],"Filter":[null,""],"All non-absolute folder locations are relative to ":[null,""],"Manual Post-Processing":[null,"Pós-processamento Manual"],"Episode Status Management":[null,""],"Update PLEX":[null,"Atualizar o PLEX"],"Update KODI":[null,"Atualizar o KODI"],"Update Emby":[null,"Atualizar o Emby"],"Missed Subtitle Management":[null,""],"Help & Info":[null,""],"Backup & Restore":[null,"Cópia de Segurança & Restauro"],"Tools":[null,"Ferramentas"],"Support SickRage":[null,"Suporte o SickRage"],"View Errors":[null,"Ver Erros"],"View Warnings":[null,"Ver avisos"],"View Log":[null,"Ver registro"],"Check For Updates":[null,"Procurar Atualizações"],"Restart":[null,"Reiniciar"],"Shutdown":[null,"Desligar"],"Logout":[null,"Terminar sessão"],"Server Status":[null,"Status do servidor"],"View overview of snatched episodes":[null,"Visão geral de episódios \"snatched\""],"Episodes Downloaded":[null,"Episódios transferidos"],"Memory used":[null,""],"Load time":[null,""],"Branch":[null,""],"Now":[null,""]}}}} \ No newline at end of file +{"messages":{"domain":"messages","locale_data":{"messages":{"100":[null,"100"],"250":[null,"250"],"500":[null,"500"],"":{"domain":"messages","plural_forms":"nplurals=2; plural=(n != 1);","lang":"pt_PT"},"Drama":[null,"Drama"],"Mystery":[null,"Mistério"],"Science-Fiction":[null,"Ficção científica"],"Crime":[null,"Crime"],"Action":[null,"Acção"],"Comedy":[null,"Comédia"],"Thriller":[null,"Suspense"],"Animation":[null,"Animação"],"Family":[null,"Família"],"Fantasy":[null,"Fantasia"],"Adventure":[null,"Aventura"],"Horror":[null,"Terror"],"Film-Noir":[null,"Filme-Noir"],"Sci-Fi":[null,"Ficção Científica"],"Romance":[null,"Romance"],"Sport":[null,"Desporto"],"War":[null,"Guerra"],"Biography":[null,"Biografia"],"History":[null,"História"],"Music":[null,"Música"],"Western":[null,"Western"],"News":[null,"Notícias"],"Sitcom":[null,"Sitcom"],"Reality-TV":[null,"Reality Show"],"Documentary":[null,"Documentário"],"Game-Show":[null,"Concurso"],"Musical":[null,"Musical"],"Talk-Show":[null,"Talk Show"],"Started Download":[null,"Transferência Iniciada"],"Download Finished":[null,"Transferência Terminada"],"Subtitle Download Finished":[null,"Transferência de Legendas Terminada"],"SickRage Updated":[null,"SickRage atualizado"],"SickRage Updated To Commit#: ":[null,"SickRage atualizado para Commit #: "],"SickRage new login":[null,"SickRage novo login"],"New login from IP: {0}. http://geomaplookup.net/?ip={0}":[null,"Novo login do IP: {0}. http://geomaplookup.net/?IP={0}"],"Repeat":[null,"Repetir"],"Repeat (Separated)":[null,"Repetição (separada)"],"Extend":[null,"Estender"],"Extend (Limited)":[null,"Estender (limitado)"],"Extend (Limited, E-prefixed)":[null,"Estender (limitado, E-prefixo)"],"Downloaded":[null,"Transferido"],"Snatched":[null,"Encontrado"],"Snatched (Proper)":[null,"Encontrado (Proper)"],"Failed":[null,"Falhou"],"Snatched (Best)":[null,"Encontrado (Melhor)"],"Archived":[null,"Arquivado"],"Unknown":[null,"Desconhecido(a)"],"Unaired":[null,"Não exibido"],"Skipped":[null,"Ignorado"],"Wanted":[null,"Desejado"],"Ignored":[null,"Ignorado"],"Subtitled":[null,"Legendado"],"For best results please set the Download Station alias as":[null,"Para melhores resultados por favor defina o nome para a Estação de Download como"],"You can check this setting in the Synology DSM":[null,"Você pode verificar essa configuração no Synology DSM"],"Control Panel":[null,"Painel de controlo"],"Application Portal":[null,"Portal da aplicação"],"Make sure you allow DSM to be embedded with iFrames too in":[null,"Certifique-se que permite que o DSM seja incorporado com iFrames também em"],"DSM Settings":[null,"Configurações do DSM"],"Security":[null,"Segurança"],"<No Filter>":[null,"< Nenhum Filtro >"],"Daily Searcher":[null,"Pesquisador Diário"],"Backlog":[null,"Backlog"],"Show Updater":[null,"Atualização do programa"],"Check Version":[null,"Verificar versão"],"Show Queue":[null,"Fila de espera de programas"],"Search Queue (All)":[null,"Fila de Pesquisa (Tudo)"],"Search Queue (Daily Searcher)":[null,"Fila de Pesquisa (Pesquisador Diário)"],"Search Queue (Backlog)":[null,"Fila de Pesquisa (Backlog)"],"Search Queue (Manual)":[null,"Fila de Pesquisa (Manual)"],"Search Queue (Retry/Failed)":[null,"Fila de Pesquisa (Tentar novamente/Falhado)"],"Search Queue (RSS)":[null,"Fila de Pesquisa (RSS)"],"Find Propers":[null,"Encontrar versões Proper"],"Postprocessor":[null,"Pós-processador"],"Find Subtitles":[null,"Procurar legendas"],"Trakt Checker":[null,"Verificador de Trakt"],"Event":[null,"Evento"],"Error":[null,"Erro"],"Tornado":[null,"Tornado"],"Thread":[null,"Thread"],"Main":[null,"Principal"],"Loading":[null,""],"New update found for SickRage, starting auto-updater":[null,"Nova atualização encontrada para o SickRage, iniciando o atualizador automático"],"Update was successful":[null,"Atualização foi bem-sucedida"],"Update failed!":[null,"A atualização falhou!"],"Backup":[null,"Cópia de segurança"],"Config backup in progress...":[null,"Cópia de segurança das configurações em andamento..."],"Config backup successful, updating...":[null,"A cópia de segurança das configurações bem-sucedida, a atualizar..."],"Config backup failed, aborting update":[null,"A cópia de segurança das configurações falhou, a abortar a atualização"],"No update needed":[null,"Nenhuma atualização necessária"],"Mako Error":[null,"Erro de Mako"],"Oops":[null,"Oops!"],"Wrong API key used":[null,"Chave de API errada usada"],"Login":[null,"Iníciar Sessão"],"API Key not generated":[null,"Chave da API não gerada"],"API Builder":[null,"Construtor de API"],"Schedule":[null,"Calendário"],"Test 1":[null,"Teste 1"],"This is test number 1":[null,"Este é o teste número 1"],"Test 2":[null,"Teste 2"],"This is test number 2":[null,"Este é o teste número 2"],"You're using the {branch} branch. Please use 'master' unless specifically asked":[null,"Você está usando o \"branch\" {branch}. Por favor, use o 'master', a menos que especificamente solicitado"],"Invalid show parameters":[null,"Parâmetros inválidos para o programa"],"Invalid parameters":[null,"Parâmetros inválidos"],"Episode couldn't be retrieved":[null,"Episódio não pôde ser obtido"],"Home":[null,"Página Inicial"],"Show List":[null,"Lista de programas"],"Error: Unsupported Request. Send jsonp request with 'callback' variable in the query string.":[null,"Erro: Pedido não suportado. Envie um request jsonp com variável 'callback' na \"string\"."],"Success. Connected and authenticated":[null,"Sucesso: Ligado e autenticado"],"Authentication failed. SABnzbd expects":[null,"Autenticação falhou. SABnzbd á espera"],"as authentication method":[null,"como método de autenticação"],"Unable to connect to host":[null,"Não foi possível ligar ao servidor"],"SMS sent successfully":[null,"SMS enviado com sucesso"],"Problem sending SMS: {message}":[null,"Problema ao enviar SMS: {message}"],"Telegram notification succeeded. Check your Telegram clients to make sure it worked":[null,"Notificação de Telegram enviada. Verifique o seu cliente Telegram para ter a certeza que funcionou"],"Error sending Telegram notification: {message}":[null,"Erro ao enviar notificação de Telegram: {message}"],"join notification succeeded. Check your join clients to make sure it worked":[null,"notificação de junção bem sucedida. Verifique os clientes para ter a certeza que funcionou"],"Error sending join notification: {message}":[null,"Erro ao enviar notificação de junção: {message}"]," with password":[null," com palavra passe"],"Registered and Tested growl successfully {growl_host}":[null,"Registo e teste em Growl finalizado com sucesso {growl_host}"],"Registration and Testing of growl failed {growl_host}":[null,"Registo e teste em Growl falharam {growl_host}"],"Test prowl notice sent successfully":[null,"Notificação de testes do Prowl enviada"],"Test prowl notice failed":[null,"Falha no envio da notificação de testes do Prowl"],"Boxcar2 notification succeeded. Check your Boxcar2 clients to make sure it worked":[null,"Notificação de Boxcar2 bem sucedida. Verifique os clientes Boxcar2 para ter certeza que funcionou"],"Error sending Boxcar2 notification":[null,"Erro ao enviar notificação de Boxcar2"],"Pushover notification succeeded. Check your Pushover clients to make sure it worked":[null,"Notificação de Push enviada. Verifique os seus clientes Push para ter certeza que funcionou"],"Error sending Pushover notification":[null,"Erro no envio da notificação de Push"],"Key verification successful":[null,"Chave verificada com sucesso"],"Unable to verify key":[null,"Não é possível verificar a chave"],"Tweet successful, check your twitter to make sure it worked":[null,"Twitter bem-sucedido, verifique o seu twitter para ter certeza que funcionou"],"Error sending tweet":[null,"Erro ao enfiar tweet"],"Please enter a valid account sid":[null,"Por favor insira uma conta conta sid válida"],"Please enter a valid auth token":[null,"Por favor insira um token de autenticação"],"Please enter a valid phone sid":[null,""],"Please format the phone number as \"+1-###-###-####\"":[null,""],"Authorization successful and number ownership verified":[null,""],"Error sending sms":[null,"Erro ao enviar sms"],"Slack message successful":[null,"Mensagem do Slack enviada com sucesso"],"Slack message failed":[null,"Falha no envio de mensagem do Slack"],"Discord message successful":[null,"Mensagem do Discord enviada com sucesso"],"Discord message failed":[null,"Falha no envio de mensagem do Discord"],"Test KODI notice sent successfully to {kodi_host}":[null,"Notificação de teste do Kodi enviado com êxito para {kodi_host}"],"Test KODI notice failed to {kodi_host}":[null,"Notificação de teste do Kodi falhada para {kodi_host}"],"Successful test notice sent to Plex Home Theater ... {plex_clients}":[null,"Aviso de teste bem-sucedido enviado para Plex Home Theater... {plex_clients}"],"Test failed for Plex Home Theater ... {plex_clients}":[null,"Falha no teste de Plex Home Theater... {plex_clients}"],"Tested Plex Home Theater(s)":[null,"Plex Home Theater(s) Testado"],"Successful test of Plex Media Server(s) ... {plex_servers}":[null,"Plex Media Server(s) teste sucedido... {plex_servers}"],"Test failed, No Plex Media Server host specified":[null,"Teste falhou. Não foi especificado um servidor Plex"],"Test failed for Plex Media Server(s) ... {plex_servers}":[null,"Plex Media Server(s) teste falhou... {plex_servers}"],"Tested Plex Media Server host(s)":[null,"Media Server Plex testado(s)"],"Tried sending desktop notification via libnotify":[null,"Tentou enviar notificação de desktop via libnotify"],"Test notice sent successfully to {emby_host}":[null,"Notificação teste enviada com êxito para {emby_host}"],"Test notice failed to {emby_host}":[null,"Notificação teste falhou para {emby_host}"],"Successfully started the scan update":[null,"Iniciado com êxito a atualização de scan"],"Test failed to start the scan update":[null,"Teste falhou a iniciar a atualização de scan"],"Test notice sent successfully to {nmj2_host}":[null,"Notificação teste enviada com êxito para {nmj2_host}"],"Test notice failed to {nmj2_host}":[null,"Notificação teste falhou para {nmj2_host}"],"Trakt Authorized":[null,"Trakt autorizado"],"Trakt Not Authorized!":[null,"Trakt não autorizado!"],"Test email sent successfully! Check inbox.":[null,"E-mail de teste enviado com sucesso! Verifique a caixa de entrada."],"ERROR: {last_error}":[null,"ERRO: {last_error}"],"Test NMA notice sent successfully":[null,"Notificação NMA teste enviado com sucesso"],"Test NMA notice failed":[null,"Falha na notificação de teste NMA"],"Pushalot notification succeeded. Check your Pushalot clients to make sure it worked":[null,"Notificação Pushalot enviada com sucesso. Verifique os seus clientes Pushalot para se certificar que funcionou"],"Error sending Pushalot notification":[null,"Erro ao enviar notificação de Pushalot"],"Pushbullet notification succeeded. Check your device to make sure it worked":[null,"Notificação de Pushbullet bem sucedida. Verifique o seu dispositivo para ter a certeza que funcionou"],"Error sending Pushbullet notification":[null,"Erro ao enviar notificação de Pushbullet"],"Status":[null,"Estado"],"Restarting SickRage":[null,"A reiniciar o SickRage"],"Update Failed":[null,"A Atualização Falhou"],"Update wasn't successful, not restarting. Check your log for more information.":[null,"A atualização não foi bem sucedida, não reiniciando. Verifique o log para obter mais informações."],"Checking out branch":[null,"A \"Checkout\" o \"Branch\""],"Already on branch":[null,"Já no branch"],"Invalid show ID: {show}":[null,"Inválido ID do programa: {show}"],"Show not in show list":[null,"Programa não encontrado na respectiva lista"],"Edit":[null,"Editar"],"This show is in the process of being downloaded - the info below is incomplete.":[null,"Este programa está a ser transferido - a informação abaixo está incompleta."],"The information on this page is in the process of being updated.":[null,"A informação nesta página está a ser atualizada."],"The episodes below are currently being refreshed from disk":[null,"Os episódios abaixo estão a ser atualizados a partir do disco"],"Currently downloading subtitles for this show":[null,"Atualmente a transferir legendas para este programa"],"This show is queued to be refreshed.":[null,"Esta série será atualizada em breve."],"This show is queued and awaiting an update.":[null,"Esta série já está a aguardar por uma atualização."],"This show is queued and awaiting subtitles download.":[null,"Esta série está a aguardar a transferência de legendas."],"Resume":[null,"Resumir"],"Pause":[null,"Pausar"],"Remove":[null,"Remover"],"Re-scan files":[null,"Reverificar ficheiros"],"Force Full Update":[null,"Forçar actualização completa"],"Update show in KODI":[null,"Atualizar série no Kodi"],"Update show in Emby":[null,"Atualizar série no Emby"],"Hide specials":[null,"Esconder especiais"],"Show specials":[null,"Mostrar especiais"],"Preview Rename":[null,"Prever renomeação"],"Download Subtitles":[null,"Transferir Legendas"],"No scene exceptions":[null,"Sem exceções da \"Scene\""],"Invalid show ID":[null,"ID de série inválido"],"Unable to find the specified show":[null,"Não é possível encontrar o programa especificado"],"Unable to retreive Fansub Groups from AniDB.":[null,"Não é possível recuperar groupos de \"Fansubs\" do AniDB."],"Edit Show":[null,"Editar Série"],"Unable to refresh this show: {error}":[null,"Não é possível atualizar esta série: {error}"],"New location <tt>{location}</tt> does not exist":[null,"Não existe nova localização <tt>{location}</tt>"],"Unable to update show: {error}":[null,"Não é possível atualizar a série: {error}"],"Unable to force an update on scene exceptions of the show.":[null,"Não é possível forçar uma atualização das exceções da Scene da série."],"Unable to force an update on scene numbering of the show.":[null,"Não é possível forçar uma atualização sobre a numeração da Scene da série."],"{num_errors:d} error{plural} while saving changes:":[null,"{num_errors:d} erro{plural} ao gravar as alterações:"],"{show_name} has been {paused_resumed}":[null,"{show_name} foi {paused_resumed}"],"resumed":[null,"retomado"],"paused":[null,"em pausa"],"{show_name} has been {deleted_trashed} {was_deleted}":[null,"{show_name} foi {deleted_trashed} {was_deleted}"],"deleted":[null,"eliminado"],"trashed":[null,"eliminado"],"(media untouched)":[null,"(mídia não toucada)"],"(with all related media)":[null,"(com tudo relacionado a mídia)"],"Unable to refresh this show.":[null,"Não foi possível atualizar este programa."],"Unable to update this show.":[null,"Não foi possível atualizar este programa."],"Library update command sent to KODI host(s)): {kodi_hosts}":[null,"Comando de atualização de biblioteca enviado para KODI host(s)): {kodi_hosts}"],"Unable to contact one or more KODI host(s)): {kodi_hosts}":[null,"Não é possível contactar com um ou mais anfitriões Kodi: {kodi_hosts}"],"Library update command sent to Plex Media Server host: {plex_server}":[null,"Comando de actualização da biblioteca enviado para o host de Servidor Multimédia Plex: {plex_server}"],"Unable to contact Plex Media Server host: {plex_server}":[null,"Não é possível contatar o Plex Media Server host: {plex_server}"],"Library update command sent to Emby host: {emby_host}":[null,"Comando de atualização de biblioteca enviado para Emby host: {emby_host}"],"Unable to contact Emby host: {emby_host}":[null,"Impossível contactar o anfitrião Emby: {emby_host}"],"You must specify a show and at least one episode":[null,"Você deve especificar um programa e pelo menos um episódio"],"Invalid status":[null,"Status inválido"],"Backlog was automatically started for the following seasons of <b>{show_name}</b>":[null,"Foi iniciado automaticamente o backlog para as temporadas seguintes de <b>{show_name}</b>"],"Season":[null,"Temporada"],"Backlog started":[null,"Backlog iniciado"],"Retrying Search was automatically started for the following season of <b>{show_name}</b>":[null,"Nova tentativa de pesquisa foi iniciado automaticamente para a temporada seguinte de <b>{show_name}</b>"],"Retry Search started":[null,"Tentativa de procura iniciada"],"You must specify a show":[null,"Você deve especificar um programa"],"Can't rename episodes when the show dir is missing.":[null,"Não é possível renomear episódios quando o diretório está faltando."],"New subtitles downloaded: {new_subtitle_languages}":[null,"Novas Legendas download: {new_subtitle_languages}"],"No subtitles downloaded":[null,"Nenhuma legenda transferida"],"IRC":[null,"IRC"],"Could not load news from the repo. [Click here for news.md])({news_url})":[null,"Não foi possível carregar as notícias do repo. [Clique aqui para news.md]) ({news_url})"],"The was a problem connecting to github, please refresh and try again":[null,"Houve um problema na conexão com o github, por favor atualizar e tente novamente"],"Could not load changes from the repo. [Click here for CHANGES.md]({changes_url})":[null,"Não foi possível carregar as alterações a partir do repositório [Clique aqui para ler o CHANGES.md]({changes_url})"],"Changelog":[null,"Registo de alterações"],"Post Processing":[null,"Pós-processamento"],"Add Shows":[null,"Adicionar programas"],"No folders selected.":[null,"Nenhuma pasta selecionada."],"New Show":[null,"Novo programa"],"Trending Shows":[null,"Shows Populares"],"Popular Shows":[null,"Programas populares"],"Most Anticipated Shows":[null,"Series Mais Aguardadas"],"Most Collected Shows":[null,""],"Most Watched Shows":[null,""],"Most Played Shows":[null,""],"Recommended Shows":[null,""],"New Shows":[null,"Novas Séries"],"Season Premieres":[null,"Estréias de temporadas"],"Existing Show":[null,"Programa existente"],"No root directories setup, please go back and add one.":[null,"Nenhum diretório raiz configurado, por favor volte e adiciona um."],"Show added":[null,"Programa adicionado"],"Adding the specified show {show_name}":[null,"Adicionando o show especificado {show_name}"],"Missing params, no Indexer ID or folder: {show_to_add} and {root_dir}/{show_path}":[null,"Faltando parâmetros, nenhum indexador ID ou pasta: {show_to_add} e {root_dir}/{show_path}"],"Unknown error. Unable to add show due to problem with show selection.":[null,"Erro desconhecido. Não é possível adicionar show devido a problema com a seleção do show."],"Unable to add show":[null,"Não é possível adicionar série"],"Folder {show_dir} exists already":[null,"A pasta {show_dir} já existe"],"Unable to create the folder {show_dir}, can't add the show":[null,"Não é possível criar a pasta {show_dir}, não é possível adicionar o show"],"Adding the specified show into {show_dir}":[null,"Adicionando o show especificado em {show_dir}"],"Shows Added":[null,"Programas Adicionados"],"Automatically added {num_shows} from their existing metadata files":[null,"Adicionado automaticamente {num_shows} de seus arquivos de metadados existentes"],"Mass Update":[null,"Atualização em massa"],"Episode Overview":[null,"Visão geral do episódio"],"Missing Subtitles":[null,"Legendas em falta"],"Backlog Overview":[null,"Visão geral de dependências"],"Mass Edit":[null,"Editor em massa"],"Unable to update show: {excption_format}":[null,"Não é possível actualizar o programa: {excption_format}"],"Unable to refresh show {show_name}: {excption_format}":[null,"Não é possível atualizar o show {show_name}: {excption_format}"],"Errors encountered":[null,"Erros encontrados"],"Updates":[null,"Atualizações"],"Refreshes":[null,"Atualizações"],"Renames":[null,"Renomeações"],"Subtitles":[null,"Legendas:"],"The following actions were queued":[null,"As seguintes ações foram adicionadas à fila"],"Failed Downloads":[null,"Downloads Falhados"],"Manage Searches":[null,"Gerenciar as pesquisas"],"Backlog search started":[null,"Início de pesquisa de lista de dependências"],"Daily search started":[null,"Iniciado a busca diária"],"Find propers search started":[null,"Pesquisa de versões proper iniciada"],"Subtitle search started":[null,"Pesquisa de legendas iniciada"],"Remove Selected":[null,"Remover Seleccionados"],"Clear History":[null,"Limpar o histórico"],"Trim History":[null,"Encolher história"],"Selected history entries removed":[null,""],"History cleared":[null,"Histórico apagado"],"Removed history entries older than 30 days":[null,"Remover entradas do histórico mais antigas do que 30 dias"],"General":[null,"Geral"],"Backup/Restore":[null,"Cópia de Segurança / Restauro"],"Search Settings":[null,"Configurações de pesquisa"],"Search Providers":[null,"Provedores de pesquisa"],"Subtitles Settings":[null,"Configurações de legendas"],"Notifications":[null,"Notificações"],"Anime":[null,"Anime"],"SickRage Configuration":[null,"Configuração do SickRage"],"Config - Shares":[null,""],"Windows Shares Configuration":[null,""],"Saved Shares":[null,""],"Your Windows share settings have been saved":[null,""],"Config - General":[null,"Configuração - geral"],"General Configuration":[null,"Configuração geral"],"Saved Defaults":[null,"Pré-Definições Gravadas"],"Your \"add show\" defaults have been set to your current selections.":[null,"As suas pré-definições para \"Adicionar Série\" foram atualizadas."],"Unable to create directory {directory}, log directory not changed.":[null,"Não é possível criar o diretório {directory}, diretório de log não mudado."],"Unable to create directory {directory}, https cert directory not changed.":[null,"Não é possível criar o diretório {directory}, o diretório da chave https não foi mudado."],"Unable to create directory {directory}, https key directory not changed.":[null,"Não é possível criar o diretório {directory}, o diretório da chave https não foi mudado."],"Error(s) Saving Configuration":[null,"Erro (s) a guardar a configuração"],"Configuration Saved":[null,"Configuração Gravada"],"Config - Backup/Restore":[null,"Configurar - Cópia de Segurança / Restauro"],"Config - Episode Search":[null,"Config - Pesquisa"],"Config - Post Processing":[null,"Config - pós-processamento"],"Unpacking Not Supported, disabling unpack setting":[null,"Descompactação não suportado, desabilitando configuração de descompactação"],"You tried saving an invalid normal naming config, not saving your naming settings":[null,""],"You tried saving an invalid anime naming config, not saving your naming settings":[null,"Tentou salvar uma configuração de nomeação de Anime inválida, suas configurações de nomeação não foram salvas"],"Config - Providers":[null,"Config - Provedores"],"No Provider Name specified":[null,"Nenhum nome de provedor especificado"],"No Provider Url specified":[null,"Nenhum URL de provedor especificado"],"No Provider Api key specified":[null,"Nenhuma chave Api para o provedor especificado"],"Config - Notifications":[null,"Config - notificações"],"Config - Subtitles":[null,"Config - legendas"],"Config - Anime":[null,"Config - Anime"],"Clear Errors":[null,"Limpar erros"],"Clear Warnings":[null,"Limpar avisos"],"Submit Errors":[null,"Enviar erros"],"Logs & Errors":[null,"Logs & erros"],"Log File":[null,"Arquivo de log"],"Logs":[null,"Logs:"],"This is a test notification from SickRage":[null,"Esta é uma notificação de teste do SickRage"],"Choose Directory":[null,""],"Select log file folder location":[null,""],"Select CSS file":[null,""],"Select backup folder to save to":[null,""],"Select backup files to restore":[null,""],"Please fill out the necessary fields above.":[null,""],"<b>Step 1:</b> Confirm Authorization":[null,""],"Check blacklist name; the value needs to be a trakt slug":[null,""],"You must provide a recipient email address!":[null,""],"You didn't supply a Pushbullet api key":[null,""],"Don't forget to save your new pushbullet settings.":[null,""],"Select TV Download Directory":[null,""],"Select Unpack Directory":[null,""],"This pattern is invalid.":[null,""],"This pattern would be invalid without the folders, using it will force \"Season Folders\" on for all shows.":[null,""],"This pattern is valid.":[null,"Este padrão é válido."],"Select .nzb black hole/watch location":[null,""],"Select .torrent black hole/watch location":[null,""],"Select .torrent download location":[null,""],"Minimum seeding time is":[null,""],"URL to your uTorrent client (e.g. http://localhost:8000)":[null,""],"Stop seeding when inactive for":[null,""],"URL to your Transmission client (e.g. http://localhost:9091)":[null,""],"URL to your Deluge client (e.g. http://localhost:8112)":[null,""],"IP or Hostname of your Deluge Daemon (e.g. scgi://localhost:58846)":[null,""],"URL to your Synology DS client (e.g. http://localhost:5000)":[null,""],"URL to your rTorrent client (e.g. scgi://localhost:5000 <br> or https://localhost/rutorrent/plugins/httprpc/action.php)":[null,""],"URL to your qBittorrent client (e.g. http://localhost:8080)":[null,""],"URL to your MLDonkey (e.g. http://localhost:4080)":[null,""],"URL to your putio client (e.g. http://localhost:8080)":[null,""],"<a herf=\"https://app.put.io/oauth/apps/new\" target=\"_blank\"> Create a new OAuth app for put.io</a>":[null,""],"Put.io Parent Folder":[null,""],"Put.io OAuth Token":[null,""],"Show Episodes":[null,"Episódios do programa"],"Hide Episodes":[null,""],"Select Show Location":[null,""],"Select Unprocessed Episode Folder":[null,""],"DELETED":[null,""],"Resume updating the log on this page.":[null,""],"Pause updating the log on this page.":[null,""],"searching {searchingFor}...":[null,""],"search timed out, try again or try another indexer":[null,""],"loading folders...":[null,""],"Loading...":[null,"A carregar..."],"You have reached this page by accident, please check the url.":[null,"Chegou a esta página por acidente, por favor, verifique o url."],"A mako error has occured.<br>\n If this happened during an update a simple page refresh may be the solution.<br>\n Mako errors that happen during updates may be a one time error if there were significant ui changes.":[null,"Ocorreu um erro de Mako.<br>\n Se isto aconteceu durante uma atualização, uma simples atualização de página pode ser a solução.<br>\n Erros de Mako que acontecem durante as atualizações podem acontecer apenas uma uma vez, se houver alterações significativas na interface de utilizador."],"Show/Hide Error":[null,"Mostrar/ocultar erro"],"Add New Show":[null,"Adicionar Nova Série"],"For shows that you haven't downloaded yet, this option finds a show on theTVDB.com, creates a directory for it's episodes, and adds it to SickRage.":[null,"Para séries ainda não transferidas, esta opção encontra uma série no theTVDB.com, cria a pasta para os seus episódios, e adiciona-a ao SickRage."],"Add From Trakt Lists":[null,"Adicionar de uma lista do Trakt"],"For shows that you haven't downloaded yet, this option lets you choose from a show from one of the Trakt lists to add to SickRage.":[null,"Para séries ainda não transferidas, esta opção deixa-te escolher uma série de uma lista do Trakt e adiciona-a ao SickRage."],"Add From IMDB's Popular Shows":[null,"Adicionar de Séries Populares no IMDB"],"View IMDB's list of the most popular shows. This feature uses IMDB's MOVIEMeter algorithm to identify popular TV Series.":[null,"Esta opção deixa-te ver uma lista das séries mais populares no IMDB permitindo adicioná-las ao SickRage."],"Add Existing Shows":[null,"Adicionar Séries Existentes"],"Use this option to add shows that already have a folder created on your hard drive. SickRage will scan your existing metadata/episodes and add the show accordingly.":[null,"Use esta opção para adicionar séries que já possuem uma pasta criada no seu disco rígido. O SickRage irá verificar os seus metadados/episódios existentes e adicionar a série em conformidade."],"Add Existing Show":[null,"Adicionar Série Existente"],"Manage Directories":[null,"Gerenciar diretórios"],"Customize Options":[null,"Personalizar as opções"],"SickRage can add existing shows, using the current options, by using locally stored NFO/XML metadata to eliminate user interaction. If you would rather have SickRage prompt you to customize each show, then use the checkbox below.":[null,"O SickRage pode adicionar séries existentes, usando as opções atuais, a partir dos metadados NFO/XML armazenados localmente para eliminar a interação com o utilizador. Se preferir que o SickRage lhe peça para personalizar cada programa, use a caixa de seleção abaixo."],"Prompt me to set settings for each show":[null,"Pedir-me para definir as configurações para cada série"],"Displaying folders within these directories which aren't already added to SickRage":[null,"Exibindo pastas dentro desses diretórios que ainda não estão adicionados ao SickRage"],"Submit":[null,"Submeter"],"Find a show on theTVDB":[null,"Encontrar uma série no theTVDB"],"Show retrieved from existing metadata":[null,"Série recuperada dos metadados existentes"],"All Indexers":[null,"Todos os indexadores"],"Search":[null,"Procurar"],"This will only affect the language of the retrieved metadata file contents and episode filenames.":[null,"Isto apenas afetará o idioma do conteúdo de ficheiro de metadados e nomes de episódios obtidos."],"This <b>DOES NOT</b> allow SickRage to download non-english TV episodes!":[null,"Isto <b>Não</b> permite o SickRage transferir episódios que não estejam em inglês!"],"Pick the parent folder":[null,"Escolher a pasta mãe"],"Pre-chosen Destination Folder":[null,"Pasta de destino previamente escolhido"],"Customize options":[null,"Personalização"],"Add Show":[null,"Adicionar Série"],"Skip Show":[null,"Ignorar Série"],"Sort By":[null,"Ordenar por"],"Name":[null,"Nome"],"Original":[null,"Original"],"Votes":[null,"Votos"],"Rating":[null,"Classificações"],"Rating > Votes":[null,"Classificação > votos"],"Sort Order":[null,"Ordem de classificação"],"Asc":[null,"Asc"],"Desc":[null,"Desc"],"Fetching of IMDB Data failed. Are you online?":[null,"A busca de dados do IMDB falhou. Está online?"],"Exception":[null,"Exceção:"],"Select Trakt List":[null,"Selecionar a lista do Trakt"],"Most Anticipated":[null,"Mais antecipado"],"Trending":[null,"Tendências"],"Popular":[null,"Popular"],"Most Watched":[null,"Mais assistido"],"Most Played":[null,"Mais reproduzidos"],"Most Collected":[null,"Maioria coletados"],"Recommended":[null,"Recomendado"],"Toggle navigation":[null,"Ativar/desativar navegação"],"Profile":[null,"Perfil"],"JSONP":[null,"JSONP"],"Back to SickRage":[null,"Voltar para o SickRage"],"Parameters":[null,"Parâmetros"],"Required":[null,"Requerido"],"Description":[null,"Descrição"],"Type":[null,"Tipo"],"Default value":[null,"Valores padrão"],"Allowed values":[null,"Valores permitidos"],"Playground":[null,"Recrieio"],"Clear":[null,"Limpar"],"Yes":[null,"Sim"],"No":[null,"Não"],"season":[null,"temporada"],"episode":[null,"episódio"],"Python Version":[null,"Versão do Python"],"SSL Version":[null,"Versão SSL"],"OS":[null,"SO"],"Locale":[null,"Idioma"],"User":[null,"Utilizador"],"Program Folder":[null,"Pasta do programa"],"Config File":[null,"Arquivo de configuração"],"Database File":[null,"Ficheiro de base de dados"],"Cache Folder":[null,"Pasta de cache"],"Log Folder":[null,"Pasta do registo verboso"],"Arguments":[null,"Argumentos"],"Web Root":[null,"Web Root"],"Website":[null,"Sítio"],"Wiki":[null,"Wiki:"],"Source":[null,"Source"],"IRC Chat":[null,"Chat IRC:"],"AnimeDB Settings":[null,"Configurações da AnimeDB"],"Look & Feel":[null,"Aparência"],"AniDB is non-profit database of anime information that is freely open to the public":[null,"AniDB uma base de dados sem fins lucrativos de informações de anime que é aberta ao público"],"Enable":[null,"Ativar"],"should SickRage use data from AniDB?":[null,"deve o SickRage usar dados do AniDB?"],"AniDB Username":[null,"Nome de usuário da AniDB"],"username of your AniDB account":[null,"nome de utilizador da sua conta do AniDB"],"AniDB Password":[null,"Senha da AniDB"],"password of your AniDB account":[null,"senha da sua conta do AniDB"],"AniDB MyList":[null,"AniDB MyList"],"do you want to add the PostProcessed episodes to the MyList?":[null,""],"Look and Feel":[null,"Aparência"],"How should the anime functions show and behave.":[null,"Como as funções de Anime devem aparecer e se comportar."],"Split show lists":[null,"Separar a vista dos programas"],"separate anime and normal shows in groups":[null,""],"Split in tabs":[null,""],"use tabs for when splitting show lists":[null,""],"Restore":[null,"Repor Cópia de Segurança"],"Backup your main database file and config.":[null,"Fazer backup do seu arquivo de base de dados principal e configurações."],"Select the folder you wish to save your backup file to":[null,"Selecione a pasta para a qual você deseja salvar o arquivo de backup para"],"Restore your main database file and config.":[null,"Restaure seu arquivo de banco de dados principal e de configuração."],"Select the backup file you wish to restore":[null,"Selecione o arquivo de backup que você deseja restaurar"],"Misc":[null,"Diversos"],"Interface":[null,"Interface"],"Advanced Settings":[null,"Opções avançadas"],"Startup options. Indexer options. Log and show file locations.":[null,"Opções de inicialização. Opções de indexador. Locais de arquivo de log e séries TV."],"Some options may require a manual restart to take effect.":[null,"Algumas opções podem requerer uma reinicialização manual antes de entrarem em efeito."],"Default Indexer Language":[null,"Idioma de indexador por padrão"],"for adding shows and metadata providers":[null,"para a adição de shows e provedores de metadados"],"Launch browser":[null,"Inicie o navegador"],"open the SickRage home page on startup":[null,"abrir a home page de SickRage na inicialização"],"Initial page":[null,"Página inicial"],"Shows":[null,"Programas"],"when launching SickRage interface":[null,"ao iniciar a interface de SickRage"],"Choose hour to update shows":[null,"Escolher a hora para actualizar series"],"with information such as next air dates, show ended, etc. Use 15 for 3pm, 4 for 4am etc.":[null,"com informações como próxima data de transmissão, série terminada, etc. Use 15 para 15:00, 4 para 04:00 etc."],"note":[null,"nota"],"minutes are randomized each time SickRage is started":[null,""],"Send to trash for actions":[null,"Enviar para o lixo para ações"],"when using show \"Remove\" and delete files":[null,""],"on scheduled deletes of the oldest log files":[null,"na supressão programada dos arquivos de log mais antigos"],"selected actions use trash (recycle bin) instead of the default permanent delete":[null,""],"Log file folder location":[null,"Local de pasta de arquivo de log"],"Number of Log files saved":[null,"Número de ficheiros log gravados"],"number of log files saved when rotating logs (default: 5) (REQUIRES RESTART)":[null,"número de ficheiros log gravados quando em gravação automática (por defeito: 5) (REQUER REINÍCIO)"],"Size of Log files saved":[null,"Tamanho dos ficheiros log gravados"],"maximum size in MB of the log file (default: 1MB) (REQUIRES RESTART)":[null,"tamanho maximoem MB do ficheiro de log (por defeito: 1MB) (REQUER REINICIALIZAÇÃO)"],"Use initial indexer set to":[null,"Indexador inicial de uso definido predefenido"],"as the default selection when adding new shows":[null,""],"Timeout show indexer at":[null,"Valor de \"Time Out\" do indexador"],"seconds of inactivity when finding new shows (default:20)":[null,"segundos de inactividade quando encontrar novos programas (padrão: 20)"],"Show root directories":[null,"Mostrar diretórios de raiz"],"where the files of shows are located":[null,"onde se encontram os ficheiros dos programas"],"Save Changes":[null,"Guardar Alterações"],"Options for software updates.":[null,"Opções para atualizações de software."],"Check software updates":[null,"Procurar por atualizações"],"and display notifications when updates are available. Checks are run on startup and at the frequency set below*":[null,"e mostrar notificações quando existem atualizações. As verificações ocorrem ao inicializar e na frequencia definida em baixo*"],"Automatically update":[null,"Actualizações automáticas"],"fetch and install software updates. Updates are run on startup and in the background at the frequency set below*":[null,""],"Check the server every*":[null,"Verifique o servidor cada*"],"hours for software updates (default:1)":[null,"horas para procurar actualizações de software (padrão: 1)"],"Notify on software update":[null,"Totificar sobre a atualização de software"],"send a message to all enabled notifiers when SickRage has been updated":[null,""],"User Interface":[null,"Interface de Utilizador"],"Options for visual appearance.":[null,"Opções para aparência visual."],"Interface Language":[null,"Idioma da Interface"],"System Language":[null,"Idioma do Sistema"],"for appearance to take effect, save then refresh your browser":[null,"para que as definições de aparência sejam activadas, guarde e actualize a pagina"],"Display theme":[null,"Tema de aparência"],"Dark":[null,"Escuro"],"Light":[null,"Claro"],"Use a background image":[null,""],"use a custom image as background for SickRage":[null,""],"Background Path":[null,""],"Path to the background image":[null,""],"Show fanart in the background":[null,"Mostrar fanart no fundo"],"on the show summary page":[null,"na página da descrição da série"],"Fanart transparency":[null,"Transparência da FanArt"],"transparency of the fanart in the background":[null,""],"Use a custom stylesheet file":[null,""],"use a custom .css file to style SickRage (for advanced users)":[null,""],"Stylesheet File Path":[null,""],"Path to the stylesheet (.css) file":[null,""],"Show all seasons":[null,"Mostrar todas as temporadas"],"Sort with \"The\", \"A\", \"An\"":[null,"Ordenar usando \"The\", \"A\", \"An\""],"include articles (\"The\", \"A\", \"An\") when sorting show lists":[null,"incluir artigos (\"The\", \"A\", \"An\") quando ordenar listas de programas"],"Missed episodes range":[null,"Alcance de episódios perdidos"],"set the range in days of the missed episodes in the Schedule page":[null,""],"Display fuzzy dates":[null,""],"move absolute dates into tooltips and display e.g. \"Last Thu\", \"On Tue\"":[null,""],"Trim zero padding":[null,"Apagar espaços"],"remove the leading number \"0\" shown on hour of day, and date of month":[null,"remover o primeiro número \"0\", mostrado na hora do dia e a data do mês"],"Date style":[null,"Estilo da data"],"Use System Default":[null,"Usar padrão do sistema"],"Time style":[null,"Estilo do tempo"],"seconds are only shown on the History page":[null,"segundos só são exibidos na página \"Histórico\""],"Timezone":[null,"Fuso horário"],"Local":[null,"Local"],"Network":[null,"Canal"],"display dates and times in either your timezone or the shows network timezone":[null,"exibir datas e horas em seu fuso horário ou o fuso de horário da rede"],"use local timezone to start searching for episodes minutes after show ends (depends on your dailysearch frequency)":[null,""],"Download url":[null,"Url de transferência"],"URL where the shows can be downloaded.":[null,"URL onde os shows podem ser baixados."],"Web Interface":[null,"Interface Web"],"it is recommended that you enable a username and password to secure SickRage from being tampered with remotely.":[null,""],"these options require a manual restart to take effect.":[null,""],"API key":[null,"Chave de API"],"used to give 3rd party programs limited access to SickRage":[null,"usado para dar acesso limitado a programas de 3o partido para SickRage"],"you can try all the features of the API":[null,""],"here":[null,"aqui"],"HTTP logs":[null,"Logs de HTTP"],"enable logs from the internal Tornado web server":[null,""],"HTTP username":[null,"Nome de usuário do HTTP"],"set blank for no login":[null,"deixar em branco para não definir autênticação"],"HTTP password":[null,"Senha HTTP"],"blank = no authentication":[null,"em branco = sem autenticação"],"HTTP port":[null,"Porta HTTP"],"web port to browse and access SickRage (default:8081)":[null,"porta de Web para navegar e acessar SickRage (padrão: 8081)"],"Notify on login":[null,"Notificar no login"],"enable to be notified when a new login happens in webserver":[null,""],"Listen on IPv6":[null,"Habilitar IPv6"],"attempt binding to any available IPv6 address":[null,""],"Enable HTTPS":[null,"Habilitar HTTPS"],"enable access to the web interface using a HTTPS address":[null,"permitir o acesso à interface web usando um endereço HTTPS"],"HTTPS certificate":[null,"Certificado HTTPS"],"file name or path to HTTPS certificate":[null,""],"HTTPS key":[null,"Chave HTTPS"],"file name or path to HTTPS key":[null,""],"Reverse proxy headers":[null,""],"accept the following reverse proxy headers (advanced)...":[null,""],"(X-Forwarded-For, X-Forwarded-Host, and X-Forwarded-Proto)":[null,""],"CPU throttling":[null,""],"Normal (default). High is lower and Low is higher CPU use":[null,""],"Anonymous redirect":[null,"Redirecionamento anônimo"],"backlink protection via anonymizer service, must end in \"?\"":[null,""],"Enable debug":[null,"Ativar depuração"],"enable debug logs":[null,""],"Verify SSL Certs":[null,"Verificar os certificados SSL"],"verify SSL Certificates (Disable this for broken SSL installs (Like QNAP))":[null,""],"No Restart":[null,"Sem reinicialização"],"only shutdown when restarting SR":[null,""],"only select this when you have external software restarting SR automatically when it stops (like FireDaemon)":[null,""],"Encrypt passwords":[null,"Criptografar senhas"],"in the <code>config.ini</code> file":[null,""],"warning":[null,""],"passwords must only contain":[null,""],"ASCII characters":[null,"Caracteres ASCII"],"Unprotected calendar":[null,"Calendário desprotegido"],"allow subscribing to the calendar without user and password":[null,""],"some services like Google Calendar only work this way":[null,""],"Google Calendar Icons":[null,"Ícones do Calendário Google"],"show an icon next to exported calendar events in Google Calendar":[null,""],"Proxy host":[null,"Host Proxy"],"blank to disable or proxy to use when connecting to providers":[null,"em branco para desativar ou proxy para usar ao ligar-se aos fornecedores"],"also use global proxy setting for indexers (tvdb, xem, anidb, etc.)":[null,""],"Skip Remove Detection":[null,""],"skip detection of removed files":[null,""],"if disabled the episode will be set to the default deleted status":[null,""],"Default deleted episode status":[null,"Status do episódio de padrão aquando eliminado"],"define the status to be set for media file that has been deleted.":[null,""],"Archived option will keep previous downloaded quality":[null,"A opção Arquivado manterá a qualidade transferida anteriormente"],"example: Downloaded (1080p WEB-DL) ==> Archived (1080p WEB-DL)":[null,""],"Options for github related features.":[null,"Opções para funcionalidades relacionadas com o GitHub."],"Branch version":[null,"Versão do Branch"],"error: No branches found.":[null,""],"select branch to use (restart required)":[null,"selecione o Branch a usar (é necessário reiniciar)"],"Authorization Type":[null,"Tipo de autorização"],"Username and password":[null,"Nome de usuário e senha"],"Personal access token":[null,""],"You must use a personal access token if you're using \"two-factor authentication\" on GitHub.":[null,""],"GitHub username":[null,"Nome de utilizador do GitHub"],"*** (REQUIRED FOR SUBMITTING ISSUES) ***":[null,"***(NECESSÁRIO PARA SUBMETER ERROS) ***"],"GitHub password":[null,"Palavra chave do GitHub"],"GitHub personal access token":[null,""],"Generate Token":[null,"Gerar Token"],"Manage Tokens":[null,"Gerir Tokens"],"GitHub remote for branch":[null,"GitHub remote para branch"],"access repo configured remotes (save then refresh browser)":[null,""],"default":[null,"predefinição"],"origin":[null,"origem"],"Git executable path":[null,"Caminho do executável \"git\""],"only needed if OS is unable to locate git from env":[null,"somente necessário se o SO não conseguir localizar o git"],"Git reset":[null,"Git reset"],"removes untracked files and performs a hard reset on git branch automatically to help resolve update issues":[null,""],"Home Theater / NAS":[null,"Home Theater / NAS"],"Devices":[null,"Dispositivos"],"Social":[null,"Social"],"A free and open source cross-platform media center and home entertainment system software with a 10-foot user interface designed for the living-room TV.":[null,"Um software de entretenimento doméstico (media center), cross-platform, grátis e open source, com um interface de utilizador de 3 metros concebido para a TV da sala de estar."],"send KODI commands?":[null,""],"Always on":[null,"Sempre ligado"],"log errors when unreachable?":[null,"registrar erros quando inacessível?"],"Notify on snatch":[null,"Notificar no \"Snatch\""],"send a notification when a download starts?":[null,"enviar uma notificação quando um download é iniciado?"],"Notify on download":[null,"Notificar no download"],"send a notification when a download finishes?":[null,"enviar uma notificação quando um download termina?"],"Notify on subtitle download":[null,"Notificar quando acontecer download de legendas"],"send a notification when subtitles are downloaded?":[null,"enviar uma notificação quando legendas são transferidas?"],"Update library":[null,"Atualizar a biblioteca"],"update KODI library when a download finishes?":[null,"atualizar a biblioteca KODI quando termina um download?"],"Full library update":[null,"Atualização completa da biblioteca"],"perform a full library update if update per-show fails?":[null,""],"Only update first host":[null,"Só atualizar o primeiro host"],"only send library updates to the first active host?":[null,""],"KODI IP:Port":[null,"KODI IP: Port"],"host running KODI (eg. 192.168.1.100:8080)":[null,"host a executar o KODI (ex: 192.168.1.100:8080)"],"(multiple host strings must be separated by commas)":[null,""],"Username":[null,"Nome de utilizador"],"username for your KODI server (blank for none)":[null,"nome de utilizador para o seu servidor KODI (em branco para nenhum)"],"Password":[null,"Senha"],"password for your KODI server (blank for none)":[null,"senha para o seu servidor KODI (em branco para nenhuma)"],"Click below to test.":[null,"Clique abaixo para testar."],"Experience your media on a visually stunning, easy to use interface on your Mac connected to your TV. Your media library has never looked this good!":[null,""],"For sending notifications to Plex Home Theater (PHT) clients, use the KODI notifier with port <b>3005</b>.":[null,""],"send Plex Media Server library updates?":[null,""],"Plex Media Server Auth Token":[null,"Token de Autenticação do Servidor Multimédia Plex"],"auth token used by Plex":[null,""],"Update Library":[null,"Atualizar a biblioteca"],"update Plex Media Server library when a download finishes":[null,"atualizar o Servidor Multimédia Plex quando uma transferência termina"],"Plex Media Server IP:Port":[null,"Servidor Multimédia Plex IP:Porta"],"one or more hosts running Plex Media Server<br/>(eg. 192.168.1.1:32400, 192.168.1.2:32400)":[null,"um ou mais hosts a correr o Servidor Multimédia Plex<br/>(p.ex.: 192.168.1.1:32400, 192.168.1.2:32400)"],"HTTPS":[null,"HTTPS"],"use https for plex media server requests?":[null,"usar https para pedidos do Servidor Multimédia Plex?"],"Click below to test Plex Media Server(s)":[null,"Clique abaixo para testar o Plex Media Server(s)"],"Test Plex Media Server":[null,"Teste Plex Media Server"],"Plex Home Theater":[null,"Plex Home Theater"],"send Plex Home Theater notifications?":[null,""],"Plex Home Theater IP:Port":[null,"Plex Home Theater IP:Port"],"one or more hosts running Plex Home Theater<br>(eg. 192.168.1.100:3000, 192.168.1.101:3000)":[null,""],"Click below to test Plex Home Theater(s)":[null,"Clique abaixo para testar o Plex Home Theater(s)"],"Test Plex Home Theater":[null,"Testar Plex Home Theater"],"some Plex Home Theaters <b class=\"boldest\">do not</b> support notifications e.g. Plexapp for Samsung TVs":[null,""],"Emby":[null,"Emby"],"A home media server built using other popular open source technologies.":[null,""],"send update commands to Emby?":[null,""],"Emby IP:Port":[null,"Emby IP: Port"],"host running Emby (eg. 192.168.1.100:8096)":[null,"host a executar Emby (ex: 192.168.1.100:8096)"],"Emby API Key":[null,"Chave de API do Emby"],"Networked Media Jukebox":[null,"Media Jukebox em rede"],"The Networked Media Jukebox, or NMJ, is the official media jukebox interface made available for the Popcorn Hour 200-series.":[null,""],"send update commands to NMJ?":[null,""],"Popcorn IP address":[null,"Endereço IP do Popcorn"],"IP address of Popcorn 200-series (eg. 192.168.1.100)":[null,"Endereço IP da Popcorn 200-series (eg. 192.168.1.100)"],"Get settings":[null,"Obter configurações"],"Get Settings":[null,"Obter configurações"],"the Popcorn Hour device must be powered on and NMJ running.":[null,"o dispositivo conectado deve ter Popcorn Hour e NMJ também deve estar em funcionamento."],"NMJ database":[null,"Base de dados NMJ"],"automatically filled via the 'Get Settings' button.":[null,"preenchido automaticamente através do botão 'Obter Definições'."],"NMJ mount url":[null,"Url de montagem NMJ"],"Networked Media Jukebox v2":[null,"Networked Media Jukebox v2"],"The Networked Media Jukebox, or NMJv2, is the official media jukebox interface made available for the Popcorn Hour 300 & 400-series.":[null,"O Networked Media Jukebox, ou NMJv2, é a interface oficial disponibilizada para os aparelhos Popcorn Hour, modelos das séries 300 & 400."],"send update commands to NMJv2?":[null,""],"IP address of Popcorn 300/400-series (eg. 192.168.1.100)":[null,""],"Database location":[null,"Localização da base de dados"],"Database instance":[null,""],"adjust this value if the wrong database is selected.":[null,""],"Find database":[null,"Encontrar a base de dados"],"Find Database":[null,"Encontrar a base de dados"],"the Popcorn Hour device must be powered on.":[null,""],"NMJv2 database":[null,"Base de dados NMJv2"],"automatically filled via the 'Find Database' buttons.":[null,""],"Synology":[null,"Synology"],"The Synology DiskStation NAS.":[null,""],"Synology Indexer is the daemon running on the Synology NAS to build its media database.":[null,""],"send Synology notifications?":[null,""],"requires SickRage to be running on your Synology NAS.":[null,""],"Synology Indexer":[null,""],"Synology Notifier is the notification system of Synology DSM":[null,""],"send notifications to the Synology Notifier?":[null,""],"pyTivo":[null,"pyTivo"],"pyTivo is both an HMO and GoBack server. This notifier will load the completed downloads to your Tivo.":[null,""],"send notifications to pyTivo?":[null,""],"requires the downloaded files to be accessible by pyTivo.":[null,"requer que os ficheiros transferidos sejam acessíveis pelo pyTivo."],"pyTivo IP:Port":[null,"IP:Porta do pyTivo"],"host running pyTivo (eg. 192.168.1.1:9032)":[null,""],"pyTivo share name":[null,""],"value used in pyTivo Web Configuration to name the share.":[null,""],"Tivo name":[null,"Nome do TiVo"],"(Messages & Settings > Account & System Information > System Information > DVR name)":[null,""],"Growl":[null,"Growl"],"A cross-platform unobtrusive global notification system.":[null,"Um sistema de notificação global discreta de multi-plantaforma."],"send Growl notifications?":[null,""],"Growl IP:Port":[null,"Growl IP:Porta"],"host running Growl (eg. 192.168.1.100:23053)":[null,"anfitrião a executar Growl (ex. 192.168.1.100:23053)"],"may leave blank if SickRage is on the same host.":[null,""],"otherwise Growl <b>requires</b> a password to be used.":[null,""],"Click below to register and test Growl, this is required for Growl notifications to work.":[null,""],"Register Growl":[null,"Registrar o Growl"],"Prowl":[null,"Prowl"],"A Growl client for iOS.":[null,"Um cliente Growl para o iOS."],"send Prowl notifications?":[null,""],"Prowl Message Title":[null,""],"Global Prowl API key(s)":[null,""],"Prowl API(s) listed here, separated by commas if applicable, will<br> receive notifications for <b>all</b> shows. Your Prowl API key is available at:":[null,""],"(this field may be blank except when testing.)":[null,""],"Show notification list":[null,"Mostrar a lista de notificação dos programas"],"-- Select a Show --":[null,"-- Selectione um programa -- "],"Configure per-show notifications here by entering Prowl API key(s), separated by commas, '\n 'after selecting a show in the drop-down box. Be sure to activate the 'Save for this show' '\n 'button below after each entry.":[null,""],"Save for this show":[null,"Salvar para este programa"],"Prowl priority":[null,"Proridade do Prowl"],"Very Low":[null,"Muito baixo"],"Moderate":[null,"Moderado"],"Normal":[null,"Normal"],"High":[null,"Alto"],"Emergency":[null,"Emergência"],"priority of Prowl messages from SickRage.":[null,""],"Libnotify":[null,"Libnotify"],"The standard desktop notification API for Linux/*nix systems. This notifier will only function if the pynotify module is installed (Ubuntu/Debian package <a href=\"apt:python-notify\">python-notify</a>).":[null,""],"send Libnotify notifications?":[null,""],"Pushover":[null,"Pushover"],"Pushover makes it easy to send real-time notifications to your Android and iOS devices.":[null,""],"send Pushover notifications?":[null,""],"Pushover key":[null,"Chave do Pushover"],"user key of your Pushover account":[null,""],"Pushover API key":[null,""],"click here":[null,""]," to create a Pushover API key":[null,""],"Pushover devices":[null,"Dispositivos Pushover"],"comma separated list of pushover devices you want to send notifications to":[null,""],"Pushover notification sound":[null,"Som de notificação do otário"],"Bike":[null,"Bicicleta"],"Bugle":[null,"Corneta"],"Cash Register":[null,"Caixa registradora"],"Classical":[null,"Clássica"],"Cosmic":[null,"Cósmica"],"Falling":[null,"A cair"],"Gamelan":[null,"Gamelan"],"Incoming":[null,"Entrada"],"Intermission":[null,"Intervalo"],"Magic":[null,"Magia"],"Mechanical":[null,"Mecânico"],"Piano Bar":[null,"Piano Bar"],"Siren":[null,"Sirene"],"Space Alarm":[null,"Alarme de espaço"],"Tug Boat":[null,"Barco Rebocador"],"Alien Alarm (long)":[null,"Alarme alienígena (longo)"],"Climb (long)":[null,"Escalada (longo)"],"Persistent (long)":[null,"Persistente (longo)"],"Pushover Echo (long)":[null,"Pushover Echo (longo)"],"Up Down (long)":[null,"Cima para baixo (longo)"],"None (silent)":[null,"Nenhum (silêncio)"],"Device specific":[null,"Dispositivo específico"],"choose notification sound to use":[null,""],"Pushover priority":[null,""],"Choose priority to use":[null,""],"Boxcar 2":[null,"Boxcar 2"],"Read your messages where and when you want them!":[null,""],"send Boxcar notifications?":[null,""],"Boxcar2 access token":[null,"Token de acesso de Boxcar2"],"access token for your Boxcar account.":[null,""],"NMA":[null,"NMA"],"Notify My Android":[null,"Notify My Android"],"Notify My Android is a Prowl-like Android App and API that offers an easy way to send notifications from your application directly to your Android device.":[null,"Notify My Android é uma applicação Android e API como o Prowl que oferece uma maneira fácil para enviar notificações de seu aplicativo diretamente para seu dispositivo Android."],"send NMA notifications?":[null,""],"NMA API key":[null,"Chave da API de NMA"],"(multiple keys must be separated by commas, up to a maximum of 5)":[null,""],"NMA priority":[null,"Prioridade NMA"],"priority of NMA messages from SickRage.":[null,"prioridade de mensagens NMA da SickRage."],"Pushalot":[null,"Pushalot"],"Pushalot is a platform for receiving custom push notifications to connected devices running Windows Phone or Windows 8.":[null,""],"send Pushalot notifications ?":[null,""],"Pushalot authorization token":[null,""],"authorization token of your Pushalot account.":[null,""],"Pushbullet":[null,"Pushbullet"],"Pushbullet is a platform for receiving custom push notifications to connected devices running Android/iOS and desktop browsers such as Chrome, Firefox or Opera.":[null,""],"send Pushbullet notifications?":[null,""],"Pushbullet API key":[null,""],"API key of your Pushbullet account":[null,""],"Pushbullet devices":[null,"Dispositivos de Pushbullet"],"Update device list":[null,"Atualização da lista de dispositivos"],"Pushbullet channels":[null,"Canais de Pushbullet"],"Free Mobile":[null,"Free Mobile"],"Free Mobile is a famous French cellular network provider.<br> It provides to their customer a free SMS API.":[null,"Free Mobile é um provedor de rede francês famoso. <br>Fornece aos seus clientes um API de SMS gratuito."],"send SMS notifications?":[null,""],"send a SMS when a download starts?":[null,"enviar um SMS quando se inicia um download?"],"send a SMS when a download finishes?":[null,""],"send a SMS when subtitles are downloaded?":[null,"envie um SMS quando legendas são baixadas?"],"Free Mobile customer ID":[null,""],"it's your Free Mobile customer ID (8 digits)":[null,""],"Free Mobile API key":[null,""],"find your API key in your customer portal.":[null,""],"Click below to test your settings.":[null,""],"Telegram":[null,"Telegram"],"Telegram is a cloud-based instant messaging service.":[null,"Telegram é um serviço de mensagens instantâneas baseado na nuvem."],"send Telegram notifications?":[null,""],"send a message when a download starts?":[null,""],"send a message when a download finishes?":[null,""],"send a message when subtitles are downloaded?":[null,""],"User/group ID":[null,"ID de utilizador/grupo"],"contact @myidbot on Telegram to get an ID":[null,""],"Bot API token":[null,"Token de API do bot"],"contact @BotFather on Telegram to set up one":[null,""],"Join":[null,"Aderir"],"Join all of your devices together!":[null,""],"send Join notifications?":[null,""],"Device ID":[null,"ID do dispositivo"],"per device specific id":[null,""]," to create a Join API key":[null,""],"Twilio":[null,"Twilio"],"Twilio is a webservice API that allows you to communicate directly with a mobile number. This notifier will send a text directly to your mobile device.":[null,""],"should SickRage text your mobile device?":[null,""],"Twilio Account SID":[null,""],"account SID of your Twilio account.":[null,""],"Twilio Auth Token":[null,""],"Twilio Phone SID":[null,""],"phone SID that you would like to send the sms from":[null,""],"Your phone number":[null,""],"phone number that will receive the sms. Please use the format +1-###-###-####":[null,""],"Twitter":[null,"Twitter"],"A social networking and microblogging service, enabling its users to send and read other users' messages called tweets.":[null,"Uma rede social e serviço de microblogging, que permite aos seus utilizadores enviar e ler mensagens de outros utilizadores chamados tweets."],"should SickRage post tweets on Twitter?":[null,"o SickRage deve postar tweets no Twitter?"],"you may want to use a secondary account.":[null,""],"send direct message":[null,"enviar mensagem direta"],"send a notification via Direct Message, not via status update":[null,""],"send DM to":[null,""],"Twitter account to send Direct Messages to (must follow you)":[null,"A conta Twitter para qual enviar mensagens diretas (Tem de segui-lo)"],"Step One":[null,"Primeiro passo"],"Request Authorization":[null,"Solicitar autorização"],"Click the \"Request Authorization\" button.<br> This will open a new page containing an auth key.<br> <b>note:</b> if nothing happens check your popup blocker.":[null,"Clique no botão \"Solicitar autorização\". <br>Isto irá abrir uma nova página que contém uma chave de autenticação. <br><b>Nota:</b> se não acontecer nada, verifique o seu bloqueador de pop-ups."],"Step Two":[null,"Passo dois"],"Enter the key Twitter gave you below, and click \"Verify Key\".":[null,"Inserir a chave do Twitter abaixo e clique em \"Verificar chave\"."],"Trakt":[null,"Trakt"],"Trakt helps keep a record of what TV shows and movies you are watching. Based on your favorites, Trakt recommends additional shows and movies you'll enjoy!":[null,""],"send Trakt.tv notifications?":[null,""],"username of your Trakt account.":[null,""],"Trakt PIN":[null,"Trakt PIN"],"Get Trakt PIN":[null,""],"PIN code to authorize SickRage to access Trakt on your behalf.":[null,"Código PIN para autorizar o SickRage para acessar Trakt em seu nome."],"API Timeout":[null,"Tempo limite do API"],"seconds to wait for Trakt API to respond. (Use 0 to wait forever)":[null,""],"Default indexer":[null,"Indexador padrão"],"Sync libraries":[null,"Sincronizar as bibliotecas"],"sync your SickRage show library with your trakt show library.":[null,""],"Remove Episodes From Collection":[null,"Remover episódios da coleção"],"remove an episode from your Trakt Collection if it is not in your SickRage Library.":[null,""],"Sync watchlist":[null,"Sincronizar a Watchlist"],"sync your SickRage show watchlist with your trakt show watchlist (either Show and Episode).":[null,""],"episode will be added on watch list when wanted or snatched and will be removed when downloaded ":[null,""],"Watchlist add method":[null,""],"Skip All":[null,"Ignorar todos"],"Download Pilot Only":[null,"Transferir apenas o Ep. Piloto"],"Get whole show":[null,"Obter o programa na integra"],"method in which to download episodes for new shows.":[null,""],"Remove episode":[null,"Remover o episódio"],"remove an episode from your watchlist after it is downloaded.":[null,""],"Remove series":[null,"Remover a série"],"remove the whole series from your watchlist after any download.":[null,""],"Remove watched show":[null,"Remover programa assistido"],"remove the show from sickrage if it's ended and completely watched":[null,""],"Start paused":[null,"Iniciar pausado"],"shows grabbed from your trakt watchlist start paused.":[null,""],"Trakt blackList name":[null,"Nome de lista negra do Trakt"],"name (slug) of list on Trakt for blacklisting show on 'Add Trending Show' & 'Add Recommended Shows' pages":[null,""],"Email":[null,"Endereço de e-mail"],"Allows configuration of email notifications on a per show basis.":[null,""],"send email notifications?":[null,""],"SMTP host":[null,"Anfitrião SMTP"],"hostname of your SMTP email server.":[null,"nome do host do seu servidor de email SMTP."],"SMTP port":[null,"Porta SMTP"],"port number used to connect to your SMTP host.":[null,""],"SMTP from":[null,"SMTP de"],"sender email address, some hosts require a real address.":[null,""],"Use TLS":[null,"Usar TLS"],"check to use TLS encryption.":[null,""],"SMTP user":[null,"Usuário do SMTP"],"(optional) your SMTP server username.":[null,""],"SMTP password":[null,"Palavra chave do SMTP"],"(optional) your SMTP server password.":[null,"(opcional) sua senha do servidor SMTP."],"Global email list":[null,"Lista global de e-mails"],"email addresses listed here, separated by commas if applicable, will<br> receive notifications for <b>all</b> shows.":[null,""],"(This field may be blank except when testing.)":[null,""],"Email Subject":[null,"Assunto do email"],"use a custom subject for some privacy protection?":[null,""],"(leave blank for the default SickRage subject)":[null,""],"configure per-show notifications here by entering email address(es), separated by commas,":[null,""],"after selecting a show in the drop-down box. Be sure to activate the 'Save for this show'":[null,""],"button below after each entry.":[null,""],"Slack":[null,"Slack"],"Slack brings all your communication together in one place. It's real-time messaging, archiving and search for modern teams.":[null,""],"should SickRage post messages on Slack?":[null,""],"Slack Incoming Webhook":[null,""],"Discord":[null,"Discord"],"All-in-one voice and text chat for gamers that's free, secure, and works on both your desktop and phone.":[null,""],"Should SickRage post messages on Discord?":[null,""],"Discord Incoming Webhook":[null,""],"Create webhook under channel settings.":[null,""],"Discord Bot Name":[null,""],"Blank will use webhook default Name.":[null,""],"Discord Avatar URL":[null,""],"Blank will use webhook default Avatar.":[null,""],"Discord TTS":[null,""],"Send notifications using text-to-speech":[null,""],"Post-Processing":[null,"Pós-processamento"],"Episode Naming":[null,"Nomeação de Episódios"],"Metadata":[null,"Metadata"],"Settings that dictate how SickRage should process completed downloads.":[null,"Configurações que determinam como o SickRage deve processar transferências concluídas."],"enable the automatic post processor to scan and process any files in your Post Processing Dir":[null,""],"do not use if you use an external Post Processing script":[null,""],"Post Processing Dir":[null,"Dirétorio de Pós-processamento"],"the folder where your download client puts the completed TV downloads.":[null,""],"please use seperate downloading and completed folders in your download client if possible.":[null,""],"Processing Method":[null,"Método de processamento"],"what method should be used to put files into the library?":[null,""],"if you keep seeding torrents after they finish, please avoid the 'move' processing method to prevent errors.":[null,""],"Auto Post-Processing Frequency":[null,"Frequência de Pós-processamento Automático"],"time in minutes to check for new files to auto post-process (min 10)":[null,""],"Postpone post processing":[null,"Adiar o pós-processamento"],"wait to process a folder if sync files are present.":[null,""],"Sync File Extensions":[null,"Extenções de ficheiro de \"Sync\""],"comma seperated list of extensions or filename globs SickRage ignores when Post Processing":[null,"lista separados por vírgulas de extensões ou nomes de ficheiro que o SickRage deva ignorar aquando do pós-processamento"],"Rename Episodes":[null,"Renomear episódios"],"rename episode using the Episode Naming settings?":[null,""],"Create missing show directories":[null,"Criar pastas de programas em falta"],"create missing show directories when they get deleted":[null,""],"Add shows without directory":[null,"Adicionar programas sem diretório"],"add shows without creating a directory (not recommended)":[null,""],"Move associated files":[null,"Mover ficheiros associados"],"move associated (srt/srr/sfv/etc) files while post processing?":[null,""],"Rename .nfo file":[null,"Renomear o ficheiro NFO"],"rename the original .nfo file to .nfo-orig to avoid conflicts?":[null,""],"Associated file extensions":[null,""],"comma separated list of associated file extensions SickRage should keep while post processing.":[null,""],"leaving it empty means no associated files will be post processed":[null,""],"Delete non associated files":[null,""],"delete non associated files while post processing?":[null,""],"Change File Date":[null,"Alterar Data de Ficheiro"],"set last modified filedate to the date that the episode aired?":[null,""],"some systems may ignore this feature.":[null,""],"Timezone for File Date":[null,"Fuso horário para a data do arquivo"],"local":[null,"local"],"network":[null,"rede"],"what timezone should be used to change File Date?":[null,""],"Unpack":[null,"Descompactar"],"What to do with archived releases found in your <i>TV Download Dir</i>?":[null,""],"Ignore (do not process contents)":[null,""],"Unpack (process contents)":[null,""],"Treat as video (process archive as-is)":[null,""],"'Unpack' only works with RAR archives":[null,""],"Windows":[null,""],"WinRar is required on windows":[null,""],"Unpack Directory":[null,""],"Choose a path to unpack files, leave blank to unpack in download dir":[null,""],"Unrar Location":[null,""],"add the path to unrar if it is not in the system path":[null,""],"Alternate Unrar Tool":[null,""],"add the path to an alternate unrar tool if it is not in the system path":[null,""],"Delete RAR contents":[null,"Eliminar o conteúdo dos arquivos RAR"],"delete content of RAR files, even if Process Method not set to move?":[null,""],"only working with RAR archive":[null,""],"Don't delete empty folders":[null,"Não eliminar pastas vazias"],"leave empty folders when Post Processing?":[null,""],"can be overridden using manual Post Processing":[null,""],"Follow symbolic-links":[null,""],"follow down symbolic links in download directory?":[null,""],"<b>EXPERTS ONLY.</b><br>Enable only if you know what <b>circular symbolic links</b> are,<br>and can <b>verify that you have none</b>.":[null,""],"Use icacls":[null,""],"Windows only":[null,""],"sets video permissions after using the move method in post processing":[null,""],"Extra Scripts":[null,"Scripts extras"],"see":[null,""],"for script arguments description and usage.":[null,"para a descrição dos argumentos do script e o seu uso."],"How SickRage will name and sort your episodes.":[null,"Como o SickRage vai nomear e ordenar o teus episódios."],"Name Pattern":[null,"Padrão do Nome"],"Toggle Naming Legend":[null,"Ativar/Desativar Legenda de Renomeação"],"don't forget to add quality pattern. Otherwise after post-processing the episode will have UNKNOWN quality":[null,""],"Meaning":[null,"Significado"],"Pattern":[null,"Padrão"],"Result":[null,"Resultado"],"Use lower case if you want lower case names (eg. %sn, %e.n, %q_n etc)":[null,"Use letras minúsculas se você quer nomes de minúsculas (por exemplo,. %sn, %e.n, % q_n etc)"],"Show Name":[null,"Nome da Série"],"Show.Name":[null,"Nome.do.Programa"],"Show_Name":[null,"Nome_do_Programa"],"Season Number":[null,"Número da temporada"],"XEM Season Number":[null,"Número da temporada do XEM"],"Episode Number":[null,"Número do episódio"],"XEM Episode Number":[null,"Número de episódio do XEM"],"Episode Name":[null,"Nome do episódio"],"Episode.Name":[null,"Nome.do.episódio"],"Episode_Name":[null,"Nome_do_episódio"],"Air Date":[null,"Data de publicação"],"Post-Processing Date":[null,"Data de pós-processamento"],"Quality":[null,"Qualidade"],"Scene Quality":[null,"Qualidade da \"Scene\""],"Release Name":[null,"Nome do \"release\""],"SickRage' is used in place of RLSGROUP if it could not be properly detected":[null,"SickRage' é usado no lugar de RLSGROUP, se ele não pudesse ser detectado corretamente"],"Release Group":[null,"Groupo"],"If episode is proper/repack add 'proper' to name.":[null,"Se o episódio for um proper/repack/real adicionar \"proper\" ao nome."],"Release Type":[null,"Tipo de publicação"],"Multi-Episode Style":[null,"Estilo muiplo episodio"],"Single-EP Sample":[null,"Amostra de apenas um episiodio"],"Multi-EP sample":[null,"Amostra de multiplos episiodios"],"Strip Show Year":[null,"Remover Ano do Nome"],"remove the TV show's year when renaming the file?":[null,""],"only applies to shows that have year inside parentheses":[null,""],"Custom Air-By-Date":[null,"Data de publicação costumizada"],"name air-by-date shows differently than regular shows?":[null,""],"Toggle ABD Naming Legend":[null,""],"Regular Air Date":[null,"Data de publicação normal"],"Year":[null,"Ano"],"Month":[null,"Mês"],"Day":[null,"Dia"],"Multi-EP style is ignored":[null,"Estilo multi-episódio é ignorado"],"Custom Sports":[null,"Desportos personalizados"],"name sports shows differently than regular shows?":[null,""],"Toggle Sports Naming Legend":[null,""],"Sports Air Date":[null,"Data de estréia de desportos"],"Custom Anime":[null,"Anime personalizado"],"name anime shows differently than regular shows?":[null,""],"Toggle Anime Naming Legend":[null,""],">XEM Season Number":[null,""],"Single-EP Anime Sample":[null,""],"Multi-EP Anime sample":[null,""],"Add Absolute Number":[null,"Adicionar Número Absoluto"],"add the absolute number to the season/episode format?":[null,""],"only applies to anime. (eg. S15E45 - 310 vs S15E45)":[null,""],"Only Absolute Number":[null,"Apenas Número Absoluto"],"replace season/episode format with absolute number":[null,""],"only applies to anime.":[null,""],"No Absolute Number":[null,"Nenhum número absoluto"],"don't include the absolute number":[null,""],"The data associated to the data. These are files associated to a TV show in the form of images and text that, when supported, will enhance the viewing experience.":[null,""],"Metadata Type":[null,"Tipo de Metadados"],"toggle metadata options that you wish to be created":[null,""],"multiple targets may be used":[null,""],"Select Metadata":[null,"Selecionar metadados"],"Provider Priorities":[null,"Prioridades dos Fornecedores"],"Provider Options":[null,"Opções dos Fornecedores"],"Configure Custom Newznab Providers":[null,"Configurar fornecedores personalizados Newznab"],"Configure Custom Torrent Providers":[null,"Configurar fornecedores personalizados Torrent"],"Check off and drag the providers into the order you want them to be used.":[null,""],"At least one provider is required but two are recommended.":[null,""],"Torrent providers can be toggled in ":[null,"Provedores de torrent podem ser alternados em "],"Provider does not support backlog searches at this time.":[null,""],"Provider is <b>NOT WORKING</b>.":[null,"O Fornecedor <b>NÃO ESTÁ A FUNCIONAR</b>."],"Configure individual provider settings here.":[null,"Defina configurações individuais de provedores aqui."],"Check with provider's website on how to obtain an API key if needed.":[null,""],"Configure provider":[null,"Configurar fornecedor"],"no providers available to configure.":[null,""],"URL":[null,"URL"],"Enable daily searches":[null,"Permitir buscas diárias"],"enable provider to perform daily searches.":[null,"permitir provedor para realizar pesquisas diárias."],"Enable backlog searches":[null,""],"enable provider to perform backlog searches.":[null,""],"Season search mode":[null,""],"when searching for complete seasons you can choose to have it look for season packs only, or choose to have it build a complete season from just single episodes.":[null,""],"season packs only.":[null,""],"episodes only.":[null,"episódios apenas."],"Enable fallback":[null,"Ativar fallback"],"when searching for a complete season depending on search mode you may return no results, this helps by restarting the search using the opposite search mode.":[null,""],"Custom URL":[null,"URL personalizado"],"the URL should include the protocol (and port if applicable). Examples: http://192.168.1.4/ or http://localhost:3000/":[null,""],"Api key":[null,"Chave de API"],"Digest":[null,"Digest"],"Hash":[null,"Hash"],"Passkey":[null,"Chave de acesso"],"Cookies":[null,"Cookies"],"example: uid=1234;pass=567845439634987<br>note: uid and pass are not your username/password.<br>use DevTools or Firebug to get these values after logging in on your browser.":[null,""],"Pin":[null,"PIN"],"Seed ratio":[null,"Relação de envio"],"stop transfer when ratio is reached<br>(-1 SickRage default to seed forever, or leave blank for downloader default)":[null,""],"Minimum seeders":[null,"Seeders mínimos"],"Minimum leechers":[null,"Leechers mínimos"],"Confirmed download":[null,"Downloads confirmados"],"only download torrents from trusted or verified uploaders ?":[null,"Só baixar torrents de uploaders confiáveis ou verificados?"],"Ranked torrents":[null,"Torrents de confiança"],"only download ranked torrents (trusted releases)":[null,""],"English torrents":[null,"Torrentes em inglês"],"only download english torrents, or torrents containing english subtitles":[null,""],"For Spanish torrents":[null,"Para torrents espanhois"],"ONLY search on this provider if show info is defined as \"Spanish\" (avoid provider's use for VOS shows)":[null,""],"Sorting results by":[null,"Classificar resultados por"],"Freeleech":[null,"FreeLeech"],"only download <b>\"FreeLeech\"</b> torrents.":[null,"só transferir torrents <b>\"FreeLeech\"</b>."],"Category":[null,"Categoria"],"select torrent with Italian subtitle":[null,""],"Configure Custom<br>Newznab Providers":[null,""],"Add and setup or remove custom Newznab providers.":[null,""],"Select provider":[null,"Selecione o provedor"],"-- add new provider --":[null,"-- Adicionar novo fornecedor --"],"Provider name":[null,"Nome do fornecedor"],"Site URL":[null,"URL do site"],"Newznab search categories":[null,"Categorias de pesquisa do Newznab"],"select your Newznab categories on the left, and click the \"update categories\" button to use them for searching.) <b>don't forget to to save the form!":[null,""],"Update Categories":[null,"Atualizar Categorias"],"Add":[null,"Adicionar"],"Delete":[null,"Eliminar"],"Add and setup or remove custom RSS providers.":[null,"Adicionar e configurar ou remover provedores personalizados de RSS."],"RSS URL":[null,"URL do RSS"],"Search element":[null,"Elemento de pesquisa"],"eg: title":[null,"p. ex.: título"],"Episode Search":[null,"Pesquisa por episódio"],"NZB Search":[null,"Pesquisa NZB"],"Torrent Search":[null,"Pesquisa de Torrents"],"How to manage searching with":[null,""],"Randomize Providers":[null,"Randomize provedores"],"randomize the provider search order instead of going in order of placement":[null,""],"Download propers":[null,"Transferir versões Proper"],"replace original download with \"Proper\" or \"Repack\" if nuked":[null,"substituir o ficheiro original por uma versão \"Proper\" ou \"Repack\" se nukado"],"Check propers every":[null,"Verificar versões Proper a cada"],"24 hours":[null,"24 horas"],"4 hours":[null,"4 horas"],"90 mins":[null,"90 mins"],"45 mins":[null,"45 mins"],"15 mins":[null,"15 mins"],"Backlog search day(s)":[null,""],"number of day(s) that the \"Forced Backlog Search\" will cover (e.g. 7 Days)":[null,""],"Backlog search frequency":[null,""],"time in minutes between searches (min.":[null,"tempo em minutos entre pesquisas (mín."],"Daily search frequency":[null,"Frequência de busca diária"],"Usenet retention":[null,"Retenção de Usenet"],"age limit in days for usenet articles to be used (e.g. 500)":[null,"limite de idade em dias para artigos usenet para ser usado (por exemplo, 500)"],"Ignore words":[null,"Palavras ignoradas"],"results with one or more word from this list will be ignored<br>separate words with a comma, e.g. \"word1,word2,word3\"":[null,""],"Require words":[null,"Palavras requeridas"],"results with no word from this list will be ignored<br>separate words with a comma, e.g. \"word1,word2,word3\"":[null,""],"Trackers list":[null,"Lista de Trackers"],"trackers that will be added to magnets without trackers<br>separate trackers with a comma, e.g. \"tracker1,tracker2,tracker3\"":[null,""],"Ignore language names in subbed results":[null,""],"ignore subbed releases based on language names <br>\n Example: \"dk\" will ignore words: dksub, dksubs, dksubbed, dksubed <br>\n separate languages with a comma, e.g. \"lang1,lang2,lang3":[null,""],"Allow high priority":[null,"Permitir alta prioridade"],"set downloads of recently aired episodes to high priority":[null,"definir transferências de episódios recém-exibidos para alta prioridade"],"Use Failed Downloads":[null,"Usar Downloads Falhados"],"use Failed Download Handling?":[null,""],"will only work with snatched/downloaded episodes after enabling this":[null,""],"Delete Failed":[null,"Falha ao Eliminar"],"delete files left over from a failed download?":[null,""],"this only works if Use Failed Downloads is enabled.":[null,""],"How to handle NZB search results.":[null,""],"Search NZBs":[null,"Pesquisar por NZBs"],"enable NZB search providers":[null,""],"Send .nzb files to":[null,"Enviar arquivos .nzb para"],"SABnzbd server URL":[null,""],"URL to your SABnzbd server (e.g. http://localhost:8080/)":[null,""],"SABnzbd username":[null,"Nome de utilizador SABnzbd"],"(blank for none)":[null,"(em branco para nenhum)"],"SABnzbd password":[null,"Palavra passe do SABnzbd"],"SABnzbd API key":[null,"Chave da API SABnzbd"],"locate at... SABnzbd Config -> General -> API Key":[null,"localizado em... SABnzbd Config-> geral-> chave de API"],"Use SABnzbd category":[null,"Categoria a usar no SABnzbd"],"add downloads to this category (e.g. TV)":[null,""],"Use SABnzbd category (backlog episodes)":[null,""],"add downloads of old episodes to this category (e.g. TV)":[null,""],"Use SABnzbd category for anime":[null,""],"add anime downloads to this category (e.g. anime)":[null,""],"Use SABnzbd category for anime (backlog episodes)":[null,""],"add anime downloads of old episodes to this category (e.g. anime)":[null,""],"Use forced priority":[null,"Usar prioridade forçada"],"enable to change priority from HIGH to FORCED":[null,""],"Black hole folder location":[null,"Localização da pasta de buraco negro"],"<b>.nzb</b> files are stored at this location for external software to find and use":[null,""],"Connect using HTTPS":[null,"Conectar usando HTTPS"],"enable Secure control in NZBGet and set the correct Secure Port here":[null,""],"NZBget host:port":[null,""],"(e.g. localhost:6789)":[null,"(p. ex. localhost:6789)"],"NZBget RPC host name and port number (not NZBgetweb!)":[null,""],"NZBget username":[null,""],"locate in nzbget.conf (default:nzbget)":[null,""],"NZBget password":[null,"Senha NZBget"],"locate in nzbget.conf (default:tegbzn6789)":[null,""],"Use NZBget category":[null,"Categoria a usar no NZBget"],"send downloads marked this category (e.g. TV)":[null,""],"Use NZBget category (backlog episodes)":[null,""],"send downloads of old episodes marked this category (e.g. TV)":[null,""],"Use NZBget category for anime":[null,""],"send anime downloads marked this category (e.g. anime)":[null,""],"Use NZBget category for anime (backlog episodes)":[null,""],"send anime downloads of old episodes marked this category (e.g. anime)":[null,""],"NZBget priority":[null,""],"Very low":[null,"Muito baixa"],"Low":[null,"Baixa"],"Very high":[null,"Muito alta"],"Force":[null,"Forçar"],"priority for daily snatches (no backlog)":[null,""],"Torrent host:port":[null,""],"URL to your Synology DSM (e.g. http://localhost:5000/)":[null,""],"Client username":[null,"Nome de utilizador do cliente"],"Client password":[null,"Palavra-passe do cliente"],"Downloaded files location":[null,"Localização de ficheiros transferidos"],"where Synology Download Station will save downloaded files (blank for client default)":[null,""],"the destination has to be a shared folder for Synology DS":[null,""],"Click below to test":[null,"Clicar abaixo para testar"],"How to handle Torrent search results.":[null,""],"Search torrents":[null,"Pesquisa de torrents"],"enable torrent search providers":[null,""],"Send .torrent files to":[null,""],"<b>.torrent</b> files are stored at this location for external software to find and use":[null,""],"URL to your torrent client (e.g. http://localhost:8000/)":[null,""],"Torrent RPC URL":[null,""],"the path without leading and trailing slashes (e.g. transmission)":[null,""],"Http Authentication":[null,""],"Verify certificate":[null,"Verificar certificado"],"disable if you get \"Deluge: Authentication Error\" in your log":[null,""],"verify SSL certificates for HTTPS requests":[null,""],"Add label to torrent":[null,"Adicionar um rótulo ao torrent"],"(blank spaces are not allowed)":[null,""],"label plugin must be enabled in Deluge clients":[null,""],"for QBitTorrent 3.3.1 and up":[null,""],"Add label to torrent for anime":[null,""],"for QBitTorrent 3.3.1 and up ":[null,""],"where <span id=\"torrent_client\">the torrent client</span> will save downloaded files (blank for client default)":[null,""],"the destination has to be a shared folder for Synology DS</span>":[null,""],"Minimum seeding time":[null,""],"time in hours":[null,""],"(default:'0' passes blank to client and '-1' passes nothing)":[null,""],"Start torrent paused":[null,""],"add .torrent to client but do <b style=\"font-weight:900\">not</b> start downloading":[null,""],"Allow high bandwidth":[null,"Permitir largura de banda alta"],"use high bandwidth allocation if priority is high":[null,""],"Test Connection":[null,"Testar Ligação"],"Windows Shares":[null,""],"Defines your existing windows shares so that we can add them to the browse dialog":[null,""],"Share #{number}":[null,""],"Share label":[null,""],"Hostname or IP":[null,""],"Share path":[null,""],"Subtitles Search":[null,"Pesquisa de Legendas"],"Subtitles Plugin":[null,"Plugin de Legendas"],"Plugin Settings":[null,"Configurações do plugin"],"Settings that dictate how SickRage handles subtitles search results.":[null,""],"Search Subtitles":[null,"Pesquisar legendas"],"Subtitle Languages":[null,"Idioma das Legendas"],"Subtitle Directory":[null,"Diretório de legendas"],"the directory where SickRage should store your <i>Subtitles</i> files.":[null,""],"leave empty if you want store subtitle in episode path.":[null,""],"Subtitle Find Frequency":[null,"Frequência de Pesquisa de Legendas"],"time in hours between scans (default: 1)":[null,"tempo em horas entre as pesquisas (padrão: 1)"],"Include Specials":[null,""],"include the show's specials when searching for subtitles?":[null,""],"Perfect matches":[null,"Correspondências perfeitas"],"only download subtitles that match: release group, video codec, audio codec and resolution":[null,""],"if disabled you may get out of sync subtitles":[null,""],"Subtitles History":[null,"Histórico de Legendas"],"log downloaded Subtitle on History page?":[null,""],"Subtitles Multi-Language":[null,"Legendas Multi-Idioma"],"append language codes to subtitle filenames?":[null,""],"this option is required if you use multiple subtitle languages":[null,""],"Delete unwanted subtitles":[null,"Excluir legendas indesejadas"],"enable to delete unwanted subtitle languages bundled with release":[null,""],"Embedded Subtitles":[null,"Legendas Incorporadas"],"ignore subtitles embedded inside video file?":[null,""],"this will ignore <u>all</u> embedded subtitles for every video file!":[null,"isto irá ignorar <u>todas</u> as legendas incorporadas para todos os ficheiros de vídeo!"],"Hearing Impaired Subtitles":[null,"Legendas para Deficientes Auditivos"],"download hearing impaired style subtitles?":[null,""],"See":[null,"Ver"],"for a script arguments description.":[null,"para uma descrição de argumentos de script."],"Additional scripts separated by <b>|</b>.":[null,"Scripts adicionais separados por <b>|</b>."],"Scripts are called after each episode has searched and downloaded subtitles.":[null,"Scripts são chamados após cada episódio ter pesquisado e transferido as legendas."],"For any scripted languages, include the interpreter executable before the script. See the following example":[null,"Para quaisquer linguagens de script, incluir o executável do intérprete antes do script. Ver o seguinte exemplo"],"For Windows:":[null,"Para Windows:"],"For Linux / OS X:":[null,"Para Linux / OS X:"],"Subtitle Providers":[null,"Origem das legendas"],"Check off and drag the plugins into the order you want them to be used.":[null,"Marcar e arrastar os plugins pela ordem que você quer que sejam usados."],"At least one plugin is required.":[null,"Pelo menos um plugin é necessário."]," Web-scraping plugin":[null," Plugin de Web-Scraping"],"Provider Settings":[null,"Opções dos Fornecedores"],"Set user and password for each provider":[null,"Definir o nome de utilizador e senha para cada fornecedor"],"User Name":[null,"Nome de utilizador"],"Change Show":[null,"Alterar Série"],"Prev Show":[null,"Série Anterior"],"Next Show":[null,"Próxima Série"],"Jump to Season":[null,"Saltar para a temporada"],"Specials":[null,"Especiais"],"Poster for":[null,"Poster para"],"Stars":[null,"Estrelas"],"minutes":[null,"minutos"],"View other popular {genre} shows on trakt.tv.":[null,"Ver outras séries populares de {genre} em trakt.tv."],"View other popular {imdbgenre} shows on IMDB.":[null,"Ver outras séries populares de {imdbgenre} no IMDB."],"Allowed":[null,"Permitido"],"Preferred":[null,"Preferida"],"Originally Airs":[null,"Estreia Originalmente"],"Show Status":[null,"Mostrar Estado"],"Default EP Status":[null,"Estado Predefinido de Ep"],"Location":[null,"Localização"],"Missing":[null,"Em falta"],"Scene Name":[null,"Nome na Scene"],"Required Words":[null,"Palavras requeridas"],"Ignored Words":[null,"Palavras ignoradas"],"Size":[null,"Tamaho"],"Info Language":[null,"Informação da Língua"],"Subtitles SR Metadata":[null,""],"Season Folders":[null,"Pastas das temporadas"],"Paused":[null,"Em pausa"],"Air-by-Date":[null,"Data de emissão"],"Sports":[null,"Desporto"],"DVD Order":[null,"Ordem de DVD"],"Scene Numbering":[null,"Numeração de cena"],"Select Filtered Episodes":[null,"Selecionar Episódios Filtrados"],"Clear All":[null,"Limpar tudo"],"Change selected episodes to":[null,"Alterar episódios selecionados para"],"Select Columns":[null,"Selecionar colunas"],"NFO":[null,"NFO"],"TBN":[null,"TBN"],"Episode":[null,"Episódio"],"Absolute":[null,"Absoluto"],"Scene":[null,"Scene"],"Scene Absolute":[null,"Absoluto da Scene"],"File Name":[null,"Nome do ficheiro"],"Airdate":[null,"Data de Exibição"],"Download":[null,"Download"],"Change the value here if scene numbering differs from the indexer episode numbering":[null,"Altere o valor aqui se a numeração da Scene for diferente da numeração do indexador"],"Change the value here if scene absolute numbering differs from the indexer absolute numbering":[null,"Altere o valor aqui se a numeração absoluta da Scene for diferente da numeração absoluta do indexador"],"Manual Search":[null,"Pesquisa manual"],"Do you want to mark this episode as failed?":[null,""],"The episode release name will be added to the failed history, preventing it to be downloaded again.":[null,""],"Do you want to include the current episode quality in the search?":[null,""],"Choosing No will ignore any releases with the same episode quality as the one currently downloaded/snatched.":[null,""],"Download subtitle":[null,""],"Do you want to re-download the subtitle for this language?":[null,""],"It will overwrite your current subtitle":[null,""],"Format":[null,""],"Advanced":[null,"Preferências Avançadas"],"Main Settings":[null,"Configurações principais"],"Show Location":[null,"Mostrar a localização"],"Preferred Quality":[null,"Qualidade preferida"],"Default Episode Status":[null,""],"this will set the status for future episodes.":[null,""],"this only applies to episode filenames and the contents of metadata files.":[null,""],"search for subtitles":[null,""],"Use SR Metdata":[null,""],"use SickRage metadata when searching for subtitle, this will override the autodiscovered metadata":[null,""],"pause this show (SickRage will not download episodes)":[null,""],"Format Settings":[null,""],"Air by date":[null,""],"check if the show is released as Show.03.02.2010 rather than Show.S02E03.":[null,""],"in case of an air date conflict between regular and special episodes, the later will be ignored.":[null,""],"check if the show is Anime and episodes are released as Show.265 rather than Show.S02E03":[null,""],"check if the show is a sporting or MMA event released as Show.03.02.2010 rather than Show.S02E03":[null,""],"Season folders":[null,""],"group episodes by season folder (uncheck to store in a single folder)":[null,""],"search by scene numbering (uncheck to search by indexer numbering)":[null,"pesquisar por numeração da Scene (desmarcar para pesquisar por numeração do indexador)"],"use the DVD order instead of the air order":[null,""],"a \"Force Full Update\" is necessary, and if you have existing episodes you need to sort them manually.":[null,""],"comma-separated <i>e.g. \"word1,word2,word3</i>\"":[null,""],"search results with one or more words from this list will be ignored.":[null,""],"e.g. \"word1,word2,word3\"":[null,""],"search results with no words from this list will be ignored.":[null,""],"Scene Exception":[null,"Exceção da Scene"],"this will affect episode search on NZB and torrent providers.":[null,""],"this list appends to the original show name.":[null,""],"WARNING logs":[null,""],"ERROR logs":[null,""],"There are no events to display.":[null,""],"Limit":[null,""],"Layout":[null,""],"HistoryLayout":[null,""],"Compact":[null,""],"Detailed":[null,"Detalhado"],"Time":[null,"Data"],"Provider":[null,"Fornecedor"],"Missing Provider":[null,"Falta o fornecedor"],"missing provider":[null,"falta o fornecedor"],"Directory":[null,"Diretório"],"Show Name (tvshow.nfo)":[null,"Mostrar nome (tvshow.nfo)"],"Indexer":[null,"Indexador"],"Enter the folder containing the episode":[null,""],"Process Method to be used":[null,""],"Copy":[null,"Copiar"],"Move":[null,"Mover"],"Hard Link":[null,""],"Symbolic Link":[null,""],"Symbolic Link Reversed":[null,""],"Force already Post Processed Dir/Files":[null,""],"Mark Dir/Files as priority download":[null,""],"(Check it to replace the file even if it exists at higher quality)":[null,""],"Delete files and folders":[null,""],"(Check it to delete files and folders like auto processing)":[null,"(Marcar para eliminar ficheiros e pastas como no pós-processamento)"],"Don't use processing queue":[null,""],"(If checked this will return the result of the process here, but may be slow!)":[null,""],"Mark download as failed":[null,""],"Process":[null,""],"Download subtitles for this show?":[null,""],"use SickRage metadata when searching for subtitle, <br />this will override the autodiscovered metadata":[null,""],"Status for previously aired episodes":[null,""],"Status for all future episodes":[null,""],"Group episodes by season folder?":[null,""],"Is this show an Anime?":[null,""],"Is this show scene numbered?":[null,"Esta série tem numeração da Scene?"],"Save Defaults":[null,""],"Use current values as the defaults":[null,""],"<p>Select your preferred fansub groups from the <b>Available Groups</b> and add them to the <b>Whitelist</b>. Add groups to the <b>Blacklist</b> to ignore them.</p>\n <p>The <b>Whitelist</b> is checked <i>before</i> the <b>Blacklist</b>.</p>\n <p>Groups are shown as <b>Name</b> | <b>Rating</b> | <b>Number of subbed episodes</b>.</p>\n <p>You may also add any fansub group not listed to either list manually.</p>\n <p>When doing this please note that you can only use groups listed on anidb for this anime.\n <br>If a group is not listed on anidb but subbed this anime, please correct anidb's data.</p>":[null,""],"Whitelist":[null,""],"Available Groups":[null,"Grupos Disponíveis"],"Add to Whitelist":[null,""],"Add to Blacklist":[null,""],"Blacklist":[null,""],"Custom Group":[null,""],"Allowed Quality:":[null,""],"Preferred Quality:":[null,""],"Filter Show Name":[null,""],"Root":[null,""],"All":[null,"Todos"],"Clear Filter(s)":[null,""],"Poster":[null,"Cartaz"],"Small Poster":[null,""],"Banner":[null,"Faixa"],"Simple":[null,"Simples"],"Next Episode":[null,"Próximo Episódio"],"Progress":[null,"Progresso"],"Direction":[null,"Direção"],"Ascending":[null,"Ascendente"],"Descending":[null,"Descendente"],"Poster Size":[null,"Tamanho do poster"],"Continuing":[null,""],"Ended":[null,"Terminada"],"Total":[null,""],"Invalid date":[null,""],"No Network":[null,""],"Next Ep":[null,""],"Prev Ep":[null,""],"Show":[null,"Série"],"Downloads":[null,""],"Active":[null,""],"loading":[null,"a carregar"],"<p><b><u>Preferred</u></b> qualities will replace those in <b><u>allowed</u></b>, even if they are lower.</p>":[null,""],"New":[null,""],"Set as Default":[null,""],"Remember me":[null,""],"Edit Selected":[null,""],"Subtitle":[null,""],"Default Ep Status":[null,""],"Update":[null,""],"Rescan":[null,""],"Rename":[null,""],"Search Subtitle":[null,""],"Force Metadata Regen":[null,""],"Snatched (Allowed)":[null,"Encontrado (Permitido)"],"Jump to Show":[null,"Ir para Programa"],"Force Backlog":[null,""],"Manage episodes with status":[null,""],"Manage":[null,""],"None of your episodes have status":[null,""],"Shows containing":[null,""],"episodes":[null,"episódios"],"Set checked shows/episodes to":[null,"Definir programas/episódios selecionados como"],"Go":[null,""],"Select all":[null,""],"Clear all":[null,""],"Release":[null,"Lançamento"],"Backlog Search":[null,""],"Not in progress":[null,""],"In Progress":[null,""],"Daily Search":[null,""],"Find Propers Search":[null,""],"Propers search disabled":[null,"Pesquisa de versões Proper desativada"],"Subtitle Search":[null,"Pesquisa de Legendas"],"Subtitle search disabled":[null,"Pesquisa de legendas desativada"],"Search Queue":[null,"Fila de Espera de Pesquisa"],"pending items":[null,"itens pendentes"],"Daily":[null,"Diária"],"Manual":[null,"Manual"],"Changing any settings marked with (<span class=\"separator\">*</span>) will force a refresh of the selected shows.":[null,"Alterar quaisquer configurações marcadas com (<span class=\"separator\"> *</span>) irá forçar uma atualização dos programas selecionados."],"Selected Shows":[null,"Programas Selecionados"],"Root Directories":[null,"Pastas de Raiz"],"Current":[null,"Atual"],"Keep":[null,"Manter"],"Custom":[null,"Personalizada"],"Group episodes by season folder (set to \"No\" to store in a single folder).":[null,"Agrupar episódios por pasta de temporada (selecionar \"Não\" para armazenar numa única pasta)."],"Pause these shows (SickRage will not download episodes).":[null,"Pausar estes programas (O SickRage não irá transferir episódios)."],"This will set the status for future episodes.":[null,""],"Search by scene numbering (set to \"No\" to search by indexer numbering).":[null,"Pesquisar por numeração da scene (selecionar \"Não\" para pesquisar por numeração do indexador)."],"Set if these shows are Anime and episodes are released as Show.265 rather than Show.S02E03":[null,"Selecionar se estes programas são Anime e os episódios são lançados como Programa.265 ao invés de Programa.S02E03"],"Set if these shows are sporting or MMA events released as Show.03.02.2010 rather than Show.S02E03.":[null,"Selecionar se estes programas são de desporto ou eventos MMA lançados como Programa.03.02.2010 ao invés de Programa.S02E03."],"In case of an air date conflict between regular and special episodes, the later will be ignored.":[null,""],"Set if these shows are released as Show.03.02.2010 rather than Show.S02E03.":[null,"Selecionar se estes programas são lançados como Programa.03.02.2010 ao invés de Programa.S02E03."],"Search for subtitles.":[null,"Pesquisar por legendas."],"All of your episodes have {subsLanguage} subtitles.":[null,"Todos os seus episódios têm legendas em {subsLanguage}."],"Manage episodes without":[null,"Gerir episódios sem"],"Episodes without {subsLanguage} subtitles.":[null,"Episódios sem legendas em {subsLanguage}."],"Episodes without {subtitleLanguage} (undefined) subtitles.":[null,"Episódios sem legendas em {subtitleLanguage} (indefinido)."],"Download missed subtitles for selected episodes":[null,"Transferir legendas em falta para os episódios selecionados"],"Performing Restart":[null,"A reiniciar"],"Waiting for SickRage to shut down":[null,"A aguardar que o SickRage encerre"],"Waiting for SickRage to start again":[null,"A aguardar que o SickRage inicie novamente"],"Loading the default page":[null,"A carregar a página predefinida"],"Error: The restart has timed out, perhaps something prevented SickRage from starting again?":[null,"Erro: O tempo para o SickRage reiniciar esgotou, talvez algo tenha impedido o SickRage de iniciar novamente?"],"Key":[null,"Etiqueta"],"Missed":[null,"Perdido"],"Today":[null,"Hoje"],"Soon":[null,"Brevemente"],"Later":[null,"Mais tarde"],"Subscribe":[null,"Subscrever"],"Date":[null,"Data"],"View Paused":[null,"Ver Pausados"],"Hidden":[null,"Ocultar"],"Shown":[null,"Mostrar"],"Calendar":[null,"Calendário"],"List":[null,"Lista"],"Ends":[null,"Termina"],"Next Ep Name":[null,"Nome do Próximo Ep"],"Run time":[null,"Duração"],"Indexers":[null,"Indexadores"],"No shows for this day":[null,"Sem programas para este dia"],"Airs":[null,"Estreia"],"Plot":[null,"Sinopse"],"Show Update":[null,"Atualização de Programas"],"Version Check":[null,"Verificação de Versão"],"Proper Finder":[null,"Pesquisa de Proper"],"Post Process":[null,""],"Subtitles Finder":[null,""],"Scheduler":[null,""],"Alive":[null,""],"Start Time":[null,""],"Cycle Time":[null,""],"Next Run":[null,""],"Last Run":[null,""],"Silent":[null,""],"True":[null,""],"N/A":[null,""],"Show id":[null,""],"Show name":[null,""],"Priority":[null,""],"Added":[null,""],"Queue type":[null,""],"LOW":[null,""],"NORMAL":[null,""],"HIGH":[null,""],"Disk Space":[null,"Espaço do Disco"],"Free space":[null,"Espaço Livre"],"TV Download Directory":[null,"Pasta de Transferências TV"],"Media Root Directories":[null,"Pastas de Raíz de Média"],"Preview of the proposed name changes":[null,"Pré-visualização das alterações de nome propostas"],"All Seasons":[null,"Todas as Temporadas"],"select all":[null,""],"Rename Selected":[null,"Renomear Selecionados"],"Cancel Rename":[null,"Cancelar Renomeação"],"Old Location":[null,"Localização Antiga"],"New Location":[null,"Nova Localização"],"Trakt API did not return any results, please check your config.":[null,"A API do Trakt não retornou nenhum resultado, por favor verifique a sua configuração."],"votes":[null,"votos"],"Remove Show":[null,"Remover Série"],"Level":[null,""],"Filter":[null,""],"All non-absolute folder locations are relative to ":[null,""],"Manual Post-Processing":[null,"Pós-processamento Manual"],"Episode Status Management":[null,""],"Update PLEX":[null,"Atualizar o PLEX"],"Update KODI":[null,"Atualizar o KODI"],"Update Emby":[null,"Atualizar o Emby"],"Manage Torrents":[null,"Gerir Torrents"],"Missed Subtitle Management":[null,""],"Help & Info":[null,""],"Backup & Restore":[null,"Cópia de Segurança & Restauro"],"Tools":[null,"Ferramentas"],"Support SickRage":[null,"Suporte o SickRage"],"View Errors":[null,"Ver Erros"],"View Warnings":[null,"Ver avisos"],"View Log":[null,"Ver registro"],"Check For Updates":[null,"Procurar Atualizações"],"Restart":[null,"Reiniciar"],"Shutdown":[null,"Desligar"],"Logout":[null,"Terminar sessão"],"Server Status":[null,"Status do servidor"],"View overview of snatched episodes":[null,"Visão geral de episódios \"snatched\""],"Episodes Downloaded":[null,"Episódios transferidos"],"Memory used":[null,""],"Load time":[null,""],"Branch":[null,""],"Now":[null,""]}}}} \ No newline at end of file diff --git a/locale/pt_PT/LC_MESSAGES/messages.mo b/locale/pt_PT/LC_MESSAGES/messages.mo index e511503fa4d1d563802de9962288e9c5beeac984..5e80b1d4809cf2dc4205911b9f55bf8b4524c9ae 100644 Binary files a/locale/pt_PT/LC_MESSAGES/messages.mo and b/locale/pt_PT/LC_MESSAGES/messages.mo differ diff --git a/locale/pt_PT/LC_MESSAGES/messages.po b/locale/pt_PT/LC_MESSAGES/messages.po index 5f530cc0bce892fdfe5e460ac3283221006fba0f..6a87057f7f53bdeafcb50d7d988ee554c3fbb70f 100644 --- a/locale/pt_PT/LC_MESSAGES/messages.po +++ b/locale/pt_PT/LC_MESSAGES/messages.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: sickrage\n" "Report-Msgid-Bugs-To: miigotu@gmail.com\n" -"POT-Creation-Date: 2017-03-25 09:28-0700\n" -"PO-Revision-Date: 2017-03-25 12:30-0400\n" +"POT-Creation-Date: 2017-03-28 09:10-0700\n" +"PO-Revision-Date: 2017-03-28 12:13-0400\n" "Last-Translator: miigotu <miigotu@gmail.com>\n" "Language-Team: Portuguese\n" "MIME-Version: 1.0\n" @@ -90,7 +90,7 @@ msgid "Biography" msgstr "Biografia" #: gui/slick/views/config_general.mako:78 gui/slick/views/layouts/main.mako:145 -#: sickbeard/__init__.py:79 sickbeard/webserve.py:3807 +#: sickbeard/__init__.py:79 sickbeard/webserve.py:3778 msgid "History" msgstr "História" @@ -103,7 +103,7 @@ msgid "Western" msgstr "Western" #: gui/slick/views/config_general.mako:79 gui/slick/views/layouts/main.mako:221 -#: sickbeard/__init__.py:80 sickbeard/webserve.py:2385 +#: sickbeard/__init__.py:80 sickbeard/webserve.py:2384 msgid "News" msgstr "Notícias" @@ -238,6 +238,34 @@ msgstr "Ignorado" msgid "Subtitled" msgstr "Legendado" +#: sickbeard/helpers.py:1887 +msgid "For best results please set the Download Station alias as" +msgstr "Para melhores resultados por favor defina o nome para a Estação de Download como" + +#: sickbeard/helpers.py:1888 +msgid "You can check this setting in the Synology DSM" +msgstr "Você pode verificar essa configuração no Synology DSM" + +#: sickbeard/helpers.py:1888 sickbeard/helpers.py:1890 +msgid "Control Panel" +msgstr "Painel de controlo" + +#: sickbeard/helpers.py:1888 +msgid "Application Portal" +msgstr "Portal da aplicação" + +#: sickbeard/helpers.py:1889 +msgid "Make sure you allow DSM to be embedded with iFrames too in" +msgstr "Certifique-se que permite que o DSM seja incorporado com iFrames também em" + +#: sickbeard/helpers.py:1890 +msgid "DSM Settings" +msgstr "Configurações do DSM" + +#: sickbeard/helpers.py:1890 +msgid "Security" +msgstr "Segurança" + #: sickbeard/logger.py:474 msgid "<No Filter>" msgstr "< Nenhum Filtro >" @@ -308,15 +336,15 @@ msgstr "Verificador de Trakt" msgid "Event" msgstr "Evento" -#: sickbeard/logger.py:491 sickbeard/webserve.py:1339 sickbeard/webserve.py:1342 -#: sickbeard/webserve.py:1520 sickbeard/webserve.py:1529 sickbeard/webserve.py:1717 -#: sickbeard/webserve.py:1728 sickbeard/webserve.py:1751 sickbeard/webserve.py:1764 -#: sickbeard/webserve.py:1769 sickbeard/webserve.py:1785 sickbeard/webserve.py:1790 -#: sickbeard/webserve.py:1854 sickbeard/webserve.py:1857 sickbeard/webserve.py:1863 -#: sickbeard/webserve.py:1866 sickbeard/webserve.py:1873 sickbeard/webserve.py:1876 -#: sickbeard/webserve.py:1899 sickbeard/webserve.py:1997 sickbeard/webserve.py:2002 -#: sickbeard/webserve.py:2007 sickbeard/webserve.py:2036 sickbeard/webserve.py:2040 -#: sickbeard/webserve.py:2045 +#: sickbeard/logger.py:491 sickbeard/webserve.py:1338 sickbeard/webserve.py:1341 +#: sickbeard/webserve.py:1519 sickbeard/webserve.py:1528 sickbeard/webserve.py:1716 +#: sickbeard/webserve.py:1727 sickbeard/webserve.py:1750 sickbeard/webserve.py:1763 +#: sickbeard/webserve.py:1768 sickbeard/webserve.py:1784 sickbeard/webserve.py:1789 +#: sickbeard/webserve.py:1853 sickbeard/webserve.py:1856 sickbeard/webserve.py:1862 +#: sickbeard/webserve.py:1865 sickbeard/webserve.py:1872 sickbeard/webserve.py:1875 +#: sickbeard/webserve.py:1898 sickbeard/webserve.py:1996 sickbeard/webserve.py:2001 +#: sickbeard/webserve.py:2006 sickbeard/webserve.py:2035 sickbeard/webserve.py:2039 +#: sickbeard/webserve.py:2044 msgid "Error" msgstr "Erro" @@ -333,6 +361,7 @@ msgstr "Thread" msgid "Main" msgstr "Principal" +#: gui/slick/js/ajaxEpSearch.js:146 gui/slick/js/ajaxEpSearch.js:147 #: gui/slick/views/inc_home_showList.mako:27 sickbeard/show_queue.py:298 msgid "Loading" msgstr "" @@ -372,867 +401,835 @@ msgstr "A cópia de segurança das configurações falhou, a abortar a atualiza msgid "No update needed" msgstr "Nenhuma atualização necessária" -#: sickbeard/webserve.py:170 +#: sickbeard/webserve.py:171 msgid "Mako Error" msgstr "Erro de Mako" -#: sickbeard/webserve.py:195 +#: sickbeard/webserve.py:196 msgid "Oops" msgstr "Oops!" -#: sickbeard/webserve.py:197 +#: sickbeard/webserve.py:198 msgid "Wrong API key used" msgstr "Chave de API errada usada" -#: gui/slick/views/login.mako:34 sickbeard/webserve.py:302 +#: gui/slick/views/login.mako:34 sickbeard/webserve.py:303 msgid "Login" msgstr "Iníciar Sessão" -#: sickbeard/webserve.py:406 +#: sickbeard/webserve.py:392 msgid "API Key not generated" msgstr "Chave da API não gerada" -#: sickbeard/webserve.py:409 +#: sickbeard/webserve.py:395 msgid "API Builder" msgstr "Construtor de API" #: gui/slick/views/config_general.mako:77 gui/slick/views/layouts/main.mako:141 -#: sickbeard/webserve.py:512 +#: sickbeard/webserve.py:498 msgid "Schedule" msgstr "Calendário" -#: sickbeard/webserve.py:610 +#: sickbeard/webserve.py:609 msgid "Test 1" msgstr "Teste 1" -#: sickbeard/webserve.py:610 +#: sickbeard/webserve.py:609 msgid "This is test number 1" msgstr "Este é o teste número 1" -#: sickbeard/webserve.py:611 +#: sickbeard/webserve.py:610 msgid "Test 2" msgstr "Teste 2" -#: sickbeard/webserve.py:611 +#: sickbeard/webserve.py:610 msgid "This is test number 2" msgstr "Este é o teste número 2" -#: sickbeard/webserve.py:634 +#: sickbeard/webserve.py:633 msgid "You're using the {branch} branch. Please use 'master' unless specifically asked" msgstr "Você está usando o \"branch\" {branch}. Por favor, use o 'master', a menos que especificamente solicitado" -#: sickbeard/webserve.py:698 sickbeard/webserve.py:703 +#: sickbeard/webserve.py:697 sickbeard/webserve.py:702 msgid "Invalid show parameters" msgstr "Parâmetros inválidos para o programa" -#: sickbeard/webserve.py:710 +#: sickbeard/webserve.py:709 msgid "Invalid parameters" msgstr "Parâmetros inválidos" -#: sickbeard/webserve.py:713 sickbeard/webserve.py:1899 +#: sickbeard/webserve.py:712 sickbeard/webserve.py:1898 msgid "Episode couldn't be retrieved" msgstr "Episódio não pôde ser obtido" -#: sickbeard/webserve.py:759 sickbeard/webserve.py:1268 sickbeard/webserve.py:1297 +#: sickbeard/webserve.py:758 sickbeard/webserve.py:1267 sickbeard/webserve.py:1296 msgid "Home" msgstr "Página Inicial" -#: gui/slick/views/layouts/main.mako:127 sickbeard/webserve.py:759 +#: gui/slick/views/layouts/main.mako:127 sickbeard/webserve.py:758 msgid "Show List" msgstr "Lista de programas" -#: sickbeard/webserve.py:807 +#: sickbeard/webserve.py:806 msgid "Error: Unsupported Request. Send jsonp request with 'callback' variable in the query string." msgstr "Erro: Pedido não suportado. Envie um request jsonp com variável 'callback' na \"string\"." -#: sickbeard/webserve.py:851 +#: sickbeard/webserve.py:850 msgid "Success. Connected and authenticated" msgstr "Sucesso: Ligado e autenticado" -#: sickbeard/webserve.py:853 +#: sickbeard/webserve.py:852 msgid "Authentication failed. SABnzbd expects" msgstr "Autenticação falhou. SABnzbd á espera" -#: sickbeard/webserve.py:853 +#: sickbeard/webserve.py:852 msgid "as authentication method" msgstr "como método de autenticação" -#: sickbeard/webserve.py:855 +#: sickbeard/webserve.py:854 msgid "Unable to connect to host" msgstr "Não foi possível ligar ao servidor" -#: sickbeard/webserve.py:876 +#: sickbeard/webserve.py:875 msgid "SMS sent successfully" msgstr "SMS enviado com sucesso" -#: sickbeard/webserve.py:878 +#: sickbeard/webserve.py:877 msgid "Problem sending SMS: {message}" msgstr "Problema ao enviar SMS: {message}" -#: sickbeard/webserve.py:885 +#: sickbeard/webserve.py:884 msgid "Telegram notification succeeded. Check your Telegram clients to make sure it worked" msgstr "Notificação de Telegram enviada. Verifique o seu cliente Telegram para ter a certeza que funcionou" -#: sickbeard/webserve.py:887 +#: sickbeard/webserve.py:886 msgid "Error sending Telegram notification: {message}" msgstr "Erro ao enviar notificação de Telegram: {message}" -#: sickbeard/webserve.py:894 +#: sickbeard/webserve.py:893 msgid "join notification succeeded. Check your join clients to make sure it worked" msgstr "notificação de junção bem sucedida. Verifique os clientes para ter a certeza que funcionou" -#: sickbeard/webserve.py:896 +#: sickbeard/webserve.py:895 msgid "Error sending join notification: {message}" msgstr "Erro ao enviar notificação de junção: {message}" -#: sickbeard/webserve.py:906 +#: sickbeard/webserve.py:905 msgid " with password" msgstr " com palavra passe" -#: sickbeard/webserve.py:908 +#: sickbeard/webserve.py:907 msgid "Registered and Tested growl successfully {growl_host}" msgstr "Registo e teste em Growl finalizado com sucesso {growl_host}" -#: sickbeard/webserve.py:910 +#: sickbeard/webserve.py:909 msgid "Registration and Testing of growl failed {growl_host}" msgstr "Registo e teste em Growl falharam {growl_host}" -#: sickbeard/webserve.py:917 +#: sickbeard/webserve.py:916 msgid "Test prowl notice sent successfully" msgstr "Notificação de testes do Prowl enviada" -#: sickbeard/webserve.py:919 +#: sickbeard/webserve.py:918 msgid "Test prowl notice failed" msgstr "Falha no envio da notificação de testes do Prowl" -#: sickbeard/webserve.py:926 +#: sickbeard/webserve.py:925 msgid "Boxcar2 notification succeeded. Check your Boxcar2 clients to make sure it worked" msgstr "Notificação de Boxcar2 bem sucedida. Verifique os clientes Boxcar2 para ter certeza que funcionou" -#: sickbeard/webserve.py:928 +#: sickbeard/webserve.py:927 msgid "Error sending Boxcar2 notification" msgstr "Erro ao enviar notificação de Boxcar2" -#: sickbeard/webserve.py:935 +#: sickbeard/webserve.py:934 msgid "Pushover notification succeeded. Check your Pushover clients to make sure it worked" msgstr "Notificação de Push enviada. Verifique os seus clientes Push para ter certeza que funcionou" -#: sickbeard/webserve.py:937 +#: sickbeard/webserve.py:936 msgid "Error sending Pushover notification" msgstr "Erro no envio da notificação de Push" -#: sickbeard/webserve.py:949 +#: sickbeard/webserve.py:948 msgid "Key verification successful" msgstr "Chave verificada com sucesso" -#: sickbeard/webserve.py:951 +#: sickbeard/webserve.py:950 msgid "Unable to verify key" msgstr "Não é possível verificar a chave" -#: sickbeard/webserve.py:958 +#: sickbeard/webserve.py:957 msgid "Tweet successful, check your twitter to make sure it worked" msgstr "Twitter bem-sucedido, verifique o seu twitter para ter certeza que funcionou" -#: sickbeard/webserve.py:960 +#: sickbeard/webserve.py:959 msgid "Error sending tweet" msgstr "Erro ao enfiar tweet" -#: sickbeard/webserve.py:965 +#: sickbeard/webserve.py:964 msgid "Please enter a valid account sid" msgstr "Por favor insira uma conta conta sid válida" -#: sickbeard/webserve.py:968 +#: sickbeard/webserve.py:967 msgid "Please enter a valid auth token" msgstr "Por favor insira um token de autenticação" -#: sickbeard/webserve.py:971 +#: sickbeard/webserve.py:970 msgid "Please enter a valid phone sid" msgstr "" -#: sickbeard/webserve.py:974 +#: sickbeard/webserve.py:973 msgid "Please format the phone number as \"+1-###-###-####\"" msgstr "" -#: sickbeard/webserve.py:978 +#: sickbeard/webserve.py:977 msgid "Authorization successful and number ownership verified" msgstr "" -#: sickbeard/webserve.py:980 +#: sickbeard/webserve.py:979 msgid "Error sending sms" msgstr "Erro ao enviar sms" -#: sickbeard/webserve.py:986 +#: sickbeard/webserve.py:985 msgid "Slack message successful" msgstr "Mensagem do Slack enviada com sucesso" -#: sickbeard/webserve.py:988 +#: sickbeard/webserve.py:987 msgid "Slack message failed" msgstr "Falha no envio de mensagem do Slack" -#: sickbeard/webserve.py:994 +#: sickbeard/webserve.py:993 msgid "Discord message successful" msgstr "Mensagem do Discord enviada com sucesso" -#: sickbeard/webserve.py:996 +#: sickbeard/webserve.py:995 msgid "Discord message failed" msgstr "Falha no envio de mensagem do Discord" -#: sickbeard/webserve.py:1006 +#: sickbeard/webserve.py:1005 msgid "Test KODI notice sent successfully to {kodi_host}" msgstr "Notificação de teste do Kodi enviado com êxito para {kodi_host}" -#: sickbeard/webserve.py:1008 +#: sickbeard/webserve.py:1007 msgid "Test KODI notice failed to {kodi_host}" msgstr "Notificação de teste do Kodi falhada para {kodi_host}" -#: sickbeard/webserve.py:1023 +#: sickbeard/webserve.py:1022 msgid "Successful test notice sent to Plex Home Theater ... {plex_clients}" msgstr "Aviso de teste bem-sucedido enviado para Plex Home Theater... {plex_clients}" -#: sickbeard/webserve.py:1025 +#: sickbeard/webserve.py:1024 msgid "Test failed for Plex Home Theater ... {plex_clients}" msgstr "Falha no teste de Plex Home Theater... {plex_clients}" -#: sickbeard/webserve.py:1028 +#: sickbeard/webserve.py:1027 msgid "Tested Plex Home Theater(s)" msgstr "Plex Home Theater(s) Testado" -#: sickbeard/webserve.py:1042 +#: sickbeard/webserve.py:1041 msgid "Successful test of Plex Media Server(s) ... {plex_servers}" msgstr "Plex Media Server(s) teste sucedido... {plex_servers}" -#: sickbeard/webserve.py:1044 +#: sickbeard/webserve.py:1043 msgid "Test failed, No Plex Media Server host specified" msgstr "Teste falhou. Não foi especificado um servidor Plex" -#: sickbeard/webserve.py:1046 +#: sickbeard/webserve.py:1045 msgid "Test failed for Plex Media Server(s) ... {plex_servers}" msgstr "Plex Media Server(s) teste falhou... {plex_servers}" -#: sickbeard/webserve.py:1049 +#: sickbeard/webserve.py:1048 msgid "Tested Plex Media Server host(s)" msgstr "Media Server Plex testado(s)" -#: sickbeard/webserve.py:1057 +#: sickbeard/webserve.py:1056 msgid "Tried sending desktop notification via libnotify" msgstr "Tentou enviar notificação de desktop via libnotify" -#: sickbeard/webserve.py:1066 +#: sickbeard/webserve.py:1065 msgid "Test notice sent successfully to {emby_host}" msgstr "Notificação teste enviada com êxito para {emby_host}" -#: sickbeard/webserve.py:1068 +#: sickbeard/webserve.py:1067 msgid "Test notice failed to {emby_host}" msgstr "Notificação teste falhou para {emby_host}" -#: sickbeard/webserve.py:1076 +#: sickbeard/webserve.py:1075 msgid "Successfully started the scan update" msgstr "Iniciado com êxito a atualização de scan" -#: sickbeard/webserve.py:1078 +#: sickbeard/webserve.py:1077 msgid "Test failed to start the scan update" msgstr "Teste falhou a iniciar a atualização de scan" -#: sickbeard/webserve.py:1097 +#: sickbeard/webserve.py:1096 msgid "Test notice sent successfully to {nmj2_host}" msgstr "Notificação teste enviada com êxito para {nmj2_host}" -#: sickbeard/webserve.py:1099 +#: sickbeard/webserve.py:1098 msgid "Test notice failed to {nmj2_host}" msgstr "Notificação teste falhou para {nmj2_host}" -#: sickbeard/webserve.py:1119 +#: sickbeard/webserve.py:1118 msgid "Trakt Authorized" msgstr "Trakt autorizado" -#: sickbeard/webserve.py:1120 +#: sickbeard/webserve.py:1119 msgid "Trakt Not Authorized!" msgstr "Trakt não autorizado!" -#: sickbeard/webserve.py:1184 +#: sickbeard/webserve.py:1183 msgid "Test email sent successfully! Check inbox." msgstr "E-mail de teste enviado com sucesso! Verifique a caixa de entrada." -#: sickbeard/webserve.py:1186 +#: sickbeard/webserve.py:1185 msgid "ERROR: {last_error}" msgstr "ERRO: {last_error}" -#: sickbeard/webserve.py:1193 +#: sickbeard/webserve.py:1192 msgid "Test NMA notice sent successfully" msgstr "Notificação NMA teste enviado com sucesso" -#: sickbeard/webserve.py:1195 +#: sickbeard/webserve.py:1194 msgid "Test NMA notice failed" msgstr "Falha na notificação de teste NMA" -#: sickbeard/webserve.py:1202 +#: sickbeard/webserve.py:1201 msgid "Pushalot notification succeeded. Check your Pushalot clients to make sure it worked" msgstr "Notificação Pushalot enviada com sucesso. Verifique os seus clientes Pushalot para se certificar que funcionou" -#: sickbeard/webserve.py:1204 +#: sickbeard/webserve.py:1203 msgid "Error sending Pushalot notification" msgstr "Erro ao enviar notificação de Pushalot" -#: sickbeard/webserve.py:1211 +#: sickbeard/webserve.py:1210 msgid "Pushbullet notification succeeded. Check your device to make sure it worked" msgstr "Notificação de Pushbullet bem sucedida. Verifique o seu dispositivo para ter a certeza que funcionou" -#: sickbeard/webserve.py:1213 sickbeard/webserve.py:1223 sickbeard/webserve.py:1232 +#: sickbeard/webserve.py:1212 sickbeard/webserve.py:1222 sickbeard/webserve.py:1231 msgid "Error sending Pushbullet notification" msgstr "Erro ao enviar notificação de Pushbullet" #: gui/slick/views/displayShow.mako:436 gui/slick/views/inc_home_showList.mako:174 -#: gui/slick/views/manage.mako:49 sickbeard/webserve.py:1249 +#: gui/slick/views/manage.mako:49 sickbeard/webserve.py:1248 msgid "Status" msgstr "Estado" -#: sickbeard/webserve.py:1268 sickbeard/webserve.py:1297 +#: sickbeard/webserve.py:1267 sickbeard/webserve.py:1296 msgid "Restarting SickRage" msgstr "A reiniciar o SickRage" -#: sickbeard/webserve.py:1300 +#: sickbeard/webserve.py:1299 msgid "Update Failed" msgstr "A Atualização Falhou" -#: sickbeard/webserve.py:1301 +#: sickbeard/webserve.py:1300 msgid "Update wasn't successful, not restarting. Check your log for more information." msgstr "A atualização não foi bem sucedida, não reiniciando. Verifique o log para obter mais informações." -#: sickbeard/webserve.py:1308 +#: sickbeard/webserve.py:1307 msgid "Checking out branch" msgstr "A \"Checkout\" o \"Branch\"" -#: sickbeard/webserve.py:1311 +#: sickbeard/webserve.py:1310 msgid "Already on branch" msgstr "Já no branch" -#: sickbeard/webserve.py:1339 +#: sickbeard/webserve.py:1338 msgid "Invalid show ID: {show}" msgstr "Inválido ID do programa: {show}" -#: sickbeard/webserve.py:1342 sickbeard/webserve.py:1871 sickbeard/webserve.py:2002 -#: sickbeard/webserve.py:2040 +#: sickbeard/webserve.py:1341 sickbeard/webserve.py:1870 sickbeard/webserve.py:2001 +#: sickbeard/webserve.py:2039 msgid "Show not in show list" msgstr "Programa não encontrado na respectiva lista" #: gui/slick/views/inc_rootDirs.mako:31 gui/slick/views/manage.mako:38 -#: gui/slick/views/manage_massEdit.mako:74 sickbeard/webserve.py:1358 -#: sickbeard/webserve.py:2027 +#: gui/slick/views/manage_massEdit.mako:74 sickbeard/webserve.py:1357 +#: sickbeard/webserve.py:2026 msgid "Edit" msgstr "Editar" -#: sickbeard/webserve.py:1368 +#: sickbeard/webserve.py:1367 msgid "This show is in the process of being downloaded - the info below is incomplete." msgstr "Este programa está a ser transferido - a informação abaixo está incompleta." -#: sickbeard/webserve.py:1371 +#: sickbeard/webserve.py:1370 msgid "The information on this page is in the process of being updated." msgstr "A informação nesta página está a ser atualizada." -#: sickbeard/webserve.py:1374 +#: sickbeard/webserve.py:1373 msgid "The episodes below are currently being refreshed from disk" msgstr "Os episódios abaixo estão a ser atualizados a partir do disco" -#: sickbeard/webserve.py:1377 +#: sickbeard/webserve.py:1376 msgid "Currently downloading subtitles for this show" msgstr "Atualmente a transferir legendas para este programa" -#: sickbeard/webserve.py:1380 +#: sickbeard/webserve.py:1379 msgid "This show is queued to be refreshed." msgstr "Esta série será atualizada em breve." -#: sickbeard/webserve.py:1383 +#: sickbeard/webserve.py:1382 msgid "This show is queued and awaiting an update." msgstr "Esta série já está a aguardar por uma atualização." -#: sickbeard/webserve.py:1386 +#: sickbeard/webserve.py:1385 msgid "This show is queued and awaiting subtitles download." msgstr "Esta série está a aguardar a transferência de legendas." -#: gui/slick/js/core.js:4081 sickbeard/webserve.py:1391 +#: gui/slick/js/core.js:4081 sickbeard/webserve.py:1390 msgid "Resume" msgstr "Resumir" #: gui/slick/js/core.js:4081 gui/slick/views/viewlogs.mako:12 -#: sickbeard/webserve.py:1393 +#: sickbeard/webserve.py:1392 msgid "Pause" msgstr "Pausar" #: gui/slick/views/editShow.mako:345 gui/slick/views/inc_blackwhitelist.mako:40 #: gui/slick/views/inc_blackwhitelist.mako:85 gui/slick/views/manage.mako:58 -#: gui/slick/views/manage_failedDownloads.mako:43 sickbeard/webserve.py:1395 +#: gui/slick/views/manage_failedDownloads.mako:43 sickbeard/webserve.py:1394 msgid "Remove" msgstr "Remover" -#: sickbeard/webserve.py:1396 +#: sickbeard/webserve.py:1395 msgid "Re-scan files" msgstr "Reverificar ficheiros" -#: sickbeard/webserve.py:1397 +#: sickbeard/webserve.py:1396 msgid "Force Full Update" msgstr "Forçar actualização completa" -#: sickbeard/webserve.py:1398 +#: sickbeard/webserve.py:1397 msgid "Update show in KODI" msgstr "Atualizar série no Kodi" -#: sickbeard/webserve.py:1399 +#: sickbeard/webserve.py:1398 msgid "Update show in Emby" msgstr "Atualizar série no Emby" -#: sickbeard/webserve.py:1402 +#: sickbeard/webserve.py:1401 msgid "Hide specials" msgstr "Esconder especiais" -#: sickbeard/webserve.py:1404 +#: sickbeard/webserve.py:1403 msgid "Show specials" msgstr "Mostrar especiais" -#: sickbeard/webserve.py:1406 sickbeard/webserve.py:2030 sickbeard/webserve.py:2031 +#: sickbeard/webserve.py:1405 sickbeard/webserve.py:2029 sickbeard/webserve.py:2030 msgid "Preview Rename" msgstr "Prever renomeação" -#: sickbeard/webserve.py:1409 +#: sickbeard/webserve.py:1408 msgid "Download Subtitles" msgstr "Transferir Legendas" -#: sickbeard/webserve.py:1498 +#: sickbeard/webserve.py:1497 msgid "No scene exceptions" msgstr "Sem exceções da \"Scene\"" -#: sickbeard/webserve.py:1516 sickbeard/webserve.py:1764 sickbeard/webserve.py:1785 +#: sickbeard/webserve.py:1515 sickbeard/webserve.py:1763 sickbeard/webserve.py:1784 msgid "Invalid show ID" msgstr "ID de série inválido" -#: sickbeard/webserve.py:1525 sickbeard/webserve.py:1769 sickbeard/webserve.py:1790 +#: sickbeard/webserve.py:1524 sickbeard/webserve.py:1768 sickbeard/webserve.py:1789 msgid "Unable to find the specified show" msgstr "Não é possível encontrar o programa especificado" -#: sickbeard/webserve.py:1550 +#: sickbeard/webserve.py:1549 msgid "Unable to retreive Fansub Groups from AniDB." msgstr "Não é possível recuperar groupos de \"Fansubs\" do AniDB." -#: sickbeard/webserve.py:1559 sickbeard/webserve.py:1561 +#: sickbeard/webserve.py:1558 sickbeard/webserve.py:1560 msgid "Edit Show" msgstr "Editar Série" -#: sickbeard/webserve.py:1637 sickbeard/webserve.py:1671 +#: sickbeard/webserve.py:1636 sickbeard/webserve.py:1670 msgid "Unable to refresh this show: {error}" msgstr "Não é possível atualizar esta série: {error}" -#: sickbeard/webserve.py:1663 +#: sickbeard/webserve.py:1662 msgid "New location <tt>{location}</tt> does not exist" msgstr "Não existe nova localização <tt>{location}</tt>" -#: sickbeard/webserve.py:1688 +#: sickbeard/webserve.py:1687 msgid "Unable to update show: {error}" msgstr "Não é possível atualizar a série: {error}" -#: sickbeard/webserve.py:1695 +#: sickbeard/webserve.py:1694 msgid "Unable to force an update on scene exceptions of the show." msgstr "Não é possível forçar uma atualização das exceções da Scene da série." -#: sickbeard/webserve.py:1702 +#: sickbeard/webserve.py:1701 msgid "Unable to force an update on scene numbering of the show." msgstr "Não é possível forçar uma atualização sobre a numeração da Scene da série." -#: sickbeard/webserve.py:1708 sickbeard/webserve.py:3540 +#: sickbeard/webserve.py:1707 sickbeard/webserve.py:3539 msgid "{num_errors:d} error{plural} while saving changes:" msgstr "{num_errors:d} erro{plural} ao gravar as alterações:" -#: sickbeard/webserve.py:1719 +#: sickbeard/webserve.py:1718 msgid "{show_name} has been {paused_resumed}" msgstr "{show_name} foi {paused_resumed}" -#: sickbeard/webserve.py:1719 +#: sickbeard/webserve.py:1718 msgid "resumed" msgstr "retomado" -#: sickbeard/webserve.py:1719 +#: sickbeard/webserve.py:1718 msgid "paused" msgstr "em pausa" -#: sickbeard/webserve.py:1731 +#: sickbeard/webserve.py:1730 msgid "{show_name} has been {deleted_trashed} {was_deleted}" msgstr "{show_name} foi {deleted_trashed} {was_deleted}" -#: sickbeard/webserve.py:1733 +#: sickbeard/webserve.py:1732 msgid "deleted" msgstr "eliminado" -#: sickbeard/webserve.py:1733 +#: sickbeard/webserve.py:1732 msgid "trashed" msgstr "eliminado" -#: sickbeard/webserve.py:1734 +#: sickbeard/webserve.py:1733 msgid "(media untouched)" msgstr "(mídia não toucada)" -#: sickbeard/webserve.py:1734 +#: sickbeard/webserve.py:1733 msgid "(with all related media)" msgstr "(com tudo relacionado a mídia)" -#: sickbeard/webserve.py:1755 +#: sickbeard/webserve.py:1754 msgid "Unable to refresh this show." msgstr "Não foi possível atualizar este programa." -#: sickbeard/webserve.py:1775 +#: sickbeard/webserve.py:1774 msgid "Unable to update this show." msgstr "Não foi possível atualizar este programa." -#: sickbeard/webserve.py:1814 +#: sickbeard/webserve.py:1813 msgid "Library update command sent to KODI host(s)): {kodi_hosts}" msgstr "Comando de atualização de biblioteca enviado para KODI host(s)): {kodi_hosts}" -#: sickbeard/webserve.py:1816 +#: sickbeard/webserve.py:1815 msgid "Unable to contact one or more KODI host(s)): {kodi_hosts}" msgstr "Não é possível contactar com um ou mais anfitriões Kodi: {kodi_hosts}" -#: sickbeard/webserve.py:1825 +#: sickbeard/webserve.py:1824 msgid "Library update command sent to Plex Media Server host: {plex_server}" msgstr "Comando de actualização da biblioteca enviado para o host de Servidor Multimédia Plex: {plex_server}" -#: sickbeard/webserve.py:1828 +#: sickbeard/webserve.py:1827 msgid "Unable to contact Plex Media Server host: {plex_server}" msgstr "Não é possível contatar o Plex Media Server host: {plex_server}" -#: sickbeard/webserve.py:1840 +#: sickbeard/webserve.py:1839 msgid "Library update command sent to Emby host: {emby_host}" msgstr "Comando de atualização de biblioteca enviado para Emby host: {emby_host}" -#: sickbeard/webserve.py:1842 +#: sickbeard/webserve.py:1841 msgid "Unable to contact Emby host: {emby_host}" msgstr "Impossível contactar o anfitrião Emby: {emby_host}" -#: sickbeard/webserve.py:1852 sickbeard/webserve.py:2036 +#: sickbeard/webserve.py:1851 sickbeard/webserve.py:2035 msgid "You must specify a show and at least one episode" msgstr "Você deve especificar um programa e pelo menos um episódio" -#: sickbeard/webserve.py:1861 +#: sickbeard/webserve.py:1860 msgid "Invalid status" msgstr "Status inválido" -#: sickbeard/webserve.py:1954 +#: sickbeard/webserve.py:1953 msgid "Backlog was automatically started for the following seasons of <b>{show_name}</b>" msgstr "Foi iniciado automaticamente o backlog para as temporadas seguintes de <b>{show_name}</b>" #: gui/slick/views/displayShow.mako:74 gui/slick/views/displayShow.mako:79 -#: gui/slick/views/displayShow.mako:404 sickbeard/webserve.py:1961 -#: sickbeard/webserve.py:1980 +#: gui/slick/views/displayShow.mako:404 sickbeard/webserve.py:1960 +#: sickbeard/webserve.py:1979 msgid "Season" msgstr "Temporada" -#: sickbeard/webserve.py:1968 +#: sickbeard/webserve.py:1967 msgid "Backlog started" msgstr "Backlog iniciado" -#: sickbeard/webserve.py:1973 +#: sickbeard/webserve.py:1972 msgid "Retrying Search was automatically started for the following season of <b>{show_name}</b>" msgstr "Nova tentativa de pesquisa foi iniciado automaticamente para a temporada seguinte de <b>{show_name}</b>" -#: sickbeard/webserve.py:1987 +#: sickbeard/webserve.py:1986 msgid "Retry Search started" msgstr "Tentativa de procura iniciada" -#: sickbeard/webserve.py:1997 +#: sickbeard/webserve.py:1996 msgid "You must specify a show" msgstr "Você deve especificar um programa" -#: sickbeard/webserve.py:2007 sickbeard/webserve.py:2045 +#: sickbeard/webserve.py:2006 sickbeard/webserve.py:2044 msgid "Can't rename episodes when the show dir is missing." msgstr "Não é possível renomear episódios quando o diretório está faltando." -#: sickbeard/webserve.py:2212 sickbeard/webserve.py:2233 +#: sickbeard/webserve.py:2211 sickbeard/webserve.py:2232 msgid "New subtitles downloaded: {new_subtitle_languages}" msgstr "Novas Legendas download: {new_subtitle_languages}" -#: sickbeard/webserve.py:2215 sickbeard/webserve.py:2236 +#: sickbeard/webserve.py:2214 sickbeard/webserve.py:2235 msgid "No subtitles downloaded" msgstr "Nenhuma legenda transferida" #: gui/slick/views/config_general.mako:80 gui/slick/views/layouts/main.mako:222 -#: sickbeard/webserve.py:2363 +#: sickbeard/webserve.py:2362 msgid "IRC" msgstr "IRC" -#: sickbeard/webserve.py:2376 +#: sickbeard/webserve.py:2375 msgid "Could not load news from the repo. [Click here for news.md])({news_url})" msgstr "Não foi possível carregar as notícias do repo. [Clique aqui para news.md]) ({news_url})" -#: sickbeard/webserve.py:2383 sickbeard/webserve.py:2401 +#: sickbeard/webserve.py:2382 sickbeard/webserve.py:2400 msgid "The was a problem connecting to github, please refresh and try again" msgstr "Houve um problema na conexão com o github, por favor atualizar e tente novamente" -#: sickbeard/webserve.py:2398 +#: sickbeard/webserve.py:2397 msgid "Could not load changes from the repo. [Click here for CHANGES.md]({changes_url})" msgstr "Não foi possível carregar as alterações a partir do repositório [Clique aqui para ler o CHANGES.md]({changes_url})" -#: gui/slick/views/layouts/main.mako:223 sickbeard/webserve.py:2403 +#: gui/slick/views/layouts/main.mako:223 sickbeard/webserve.py:2402 msgid "Changelog" msgstr "Registo de alterações" -#: gui/slick/views/layouts/main.mako:190 sickbeard/webserve.py:2413 -#: sickbeard/webserve.py:3855 sickbeard/webserve.py:4341 +#: gui/slick/views/layouts/main.mako:190 sickbeard/webserve.py:2412 +#: sickbeard/webserve.py:3826 sickbeard/webserve.py:4312 msgid "Post Processing" msgstr "Pós-processamento" -#: gui/slick/views/layouts/main.mako:128 sickbeard/webserve.py:2445 +#: gui/slick/views/layouts/main.mako:128 sickbeard/webserve.py:2444 msgid "Add Shows" msgstr "Adicionar programas" -#: sickbeard/webserve.py:2510 +#: sickbeard/webserve.py:2509 msgid "No folders selected." msgstr "Nenhuma pasta selecionada." -#: sickbeard/webserve.py:2632 +#: sickbeard/webserve.py:2631 msgid "New Show" msgstr "Novo programa" -#: sickbeard/webserve.py:2647 +#: sickbeard/webserve.py:2646 msgid "Trending Shows" msgstr "Shows Populares" -#: sickbeard/webserve.py:2649 sickbeard/webserve.py:2772 +#: sickbeard/webserve.py:2648 sickbeard/webserve.py:2771 msgid "Popular Shows" msgstr "Programas populares" -#: sickbeard/webserve.py:2651 sickbeard/webserve.py:2665 +#: sickbeard/webserve.py:2650 sickbeard/webserve.py:2664 msgid "Most Anticipated Shows" msgstr "Series Mais Aguardadas" -#: sickbeard/webserve.py:2653 +#: sickbeard/webserve.py:2652 msgid "Most Collected Shows" msgstr "" -#: sickbeard/webserve.py:2655 +#: sickbeard/webserve.py:2654 msgid "Most Watched Shows" msgstr "" -#: sickbeard/webserve.py:2657 +#: sickbeard/webserve.py:2656 msgid "Most Played Shows" msgstr "" -#: sickbeard/webserve.py:2659 +#: sickbeard/webserve.py:2658 msgid "Recommended Shows" msgstr "" -#: gui/slick/views/addShows_trendingShows.mako:60 sickbeard/webserve.py:2661 +#: gui/slick/views/addShows_trendingShows.mako:60 sickbeard/webserve.py:2660 msgid "New Shows" msgstr "Novas Séries" -#: gui/slick/views/addShows_trendingShows.mako:61 sickbeard/webserve.py:2663 +#: gui/slick/views/addShows_trendingShows.mako:61 sickbeard/webserve.py:2662 msgid "Season Premieres" msgstr "Estréias de temporadas" -#: sickbeard/webserve.py:2792 sickbeard/webserve.py:2793 +#: sickbeard/webserve.py:2791 sickbeard/webserve.py:2792 msgid "Existing Show" msgstr "Programa existente" -#: sickbeard/webserve.py:2871 +#: sickbeard/webserve.py:2870 msgid "No root directories setup, please go back and add one." msgstr "Nenhum diretório raiz configurado, por favor volte e adiciona um." -#: sickbeard/webserve.py:2883 sickbeard/webserve.py:3002 +#: sickbeard/webserve.py:2882 sickbeard/webserve.py:3001 msgid "Show added" msgstr "Programa adicionado" -#: sickbeard/webserve.py:2883 +#: sickbeard/webserve.py:2882 msgid "Adding the specified show {show_name}" msgstr "Adicionando o show especificado {show_name}" -#: sickbeard/webserve.py:2924 +#: sickbeard/webserve.py:2923 msgid "Missing params, no Indexer ID or folder: {show_to_add} and {root_dir}/{show_path}" msgstr "Faltando parâmetros, nenhum indexador ID ou pasta: {show_to_add} e {root_dir}/{show_path}" -#: sickbeard/webserve.py:2933 +#: sickbeard/webserve.py:2932 msgid "Unknown error. Unable to add show due to problem with show selection." msgstr "Erro desconhecido. Não é possível adicionar show devido a problema com a seleção do show." -#: sickbeard/webserve.py:2957 sickbeard/webserve.py:2967 +#: sickbeard/webserve.py:2956 sickbeard/webserve.py:2966 msgid "Unable to add show" msgstr "Não é possível adicionar série" -#: sickbeard/webserve.py:2957 +#: sickbeard/webserve.py:2956 msgid "Folder {show_dir} exists already" msgstr "A pasta {show_dir} já existe" -#: sickbeard/webserve.py:2968 +#: sickbeard/webserve.py:2967 msgid "Unable to create the folder {show_dir}, can't add the show" msgstr "Não é possível criar a pasta {show_dir}, não é possível adicionar o show" -#: sickbeard/webserve.py:3002 +#: sickbeard/webserve.py:3001 msgid "Adding the specified show into {show_dir}" msgstr "Adicionando o show especificado em {show_dir}" -#: sickbeard/webserve.py:3078 +#: sickbeard/webserve.py:3077 msgid "Shows Added" msgstr "Programas Adicionados" -#: sickbeard/webserve.py:3079 +#: sickbeard/webserve.py:3078 msgid "Automatically added {num_shows} from their existing metadata files" msgstr "Adicionado automaticamente {num_shows} de seus arquivos de metadados existentes" -#: gui/slick/views/layouts/main.mako:153 sickbeard/webserve.py:3096 +#: gui/slick/views/layouts/main.mako:153 sickbeard/webserve.py:3095 msgid "Mass Update" msgstr "Atualização em massa" -#: sickbeard/webserve.py:3134 sickbeard/webserve.py:3161 sickbeard/webserve.py:3237 -#: sickbeard/webserve.py:3238 +#: sickbeard/webserve.py:3133 sickbeard/webserve.py:3160 sickbeard/webserve.py:3236 +#: sickbeard/webserve.py:3237 msgid "Episode Overview" msgstr "Visão geral do episódio" -#: sickbeard/webserve.py:3270 +#: sickbeard/webserve.py:3269 msgid "Missing Subtitles" msgstr "Legendas em falta" -#: gui/slick/views/layouts/main.mako:154 sickbeard/webserve.py:3356 -#: sickbeard/webserve.py:3357 +#: gui/slick/views/layouts/main.mako:154 sickbeard/webserve.py:3355 +#: sickbeard/webserve.py:3356 msgid "Backlog Overview" msgstr "Visão geral de dependências" -#: sickbeard/webserve.py:3481 +#: sickbeard/webserve.py:3480 msgid "Mass Edit" msgstr "Editor em massa" -#: sickbeard/webserve.py:3586 +#: sickbeard/webserve.py:3585 msgid "Unable to update show: {excption_format}" msgstr "Não é possível actualizar o programa: {excption_format}" -#: sickbeard/webserve.py:3594 +#: sickbeard/webserve.py:3593 msgid "Unable to refresh show {show_name}: {excption_format}" msgstr "Não é possível atualizar o show {show_name}: {excption_format}" -#: sickbeard/webserve.py:3605 +#: sickbeard/webserve.py:3604 msgid "Errors encountered" msgstr "Erros encontrados" -#: gui/slick/views/config_general.mako:261 sickbeard/webserve.py:3611 +#: gui/slick/views/config_general.mako:261 sickbeard/webserve.py:3610 msgid "Updates" msgstr "Atualizações" -#: sickbeard/webserve.py:3616 +#: sickbeard/webserve.py:3615 msgid "Refreshes" msgstr "Atualizações" -#: sickbeard/webserve.py:3621 +#: sickbeard/webserve.py:3620 msgid "Renames" msgstr "Renomeações" #: gui/slick/views/displayShow.mako:260 gui/slick/views/displayShow.mako:435 #: gui/slick/views/editShow.mako:119 gui/slick/views/inc_addShowOptions.mako:20 -#: gui/slick/views/manage_massEdit.mako:262 sickbeard/webserve.py:3626 -#: sickbeard/webserve.py:5244 +#: gui/slick/views/manage_massEdit.mako:262 sickbeard/webserve.py:3625 +#: sickbeard/webserve.py:5215 msgid "Subtitles" msgstr "Legendas:" -#: sickbeard/webserve.py:3631 +#: sickbeard/webserve.py:3630 msgid "The following actions were queued" msgstr "As seguintes ações foram adicionadas à fila" -#: sickbeard/webserve.py:3651 -msgid "For best results please set the Download Station alias as" -msgstr "Para melhores resultados por favor defina o nome para a Estação de Download como" - -#: sickbeard/webserve.py:3652 -msgid "You can check this setting in the Synology DSM" -msgstr "Você pode verificar essa configuração no Synology DSM" - -#: sickbeard/webserve.py:3652 sickbeard/webserve.py:3654 -msgid "Control Panel" -msgstr "Painel de controlo" - -#: sickbeard/webserve.py:3652 -msgid "Application Portal" -msgstr "Portal da aplicação" - -#: sickbeard/webserve.py:3653 -msgid "Make sure you allow DSM to be embedded with iFrames too in" -msgstr "Certifique-se que permite que o DSM seja incorporado com iFrames também em" - -#: sickbeard/webserve.py:3654 -msgid "DSM Settings" -msgstr "Configurações do DSM" - -#: sickbeard/webserve.py:3654 -msgid "Security" -msgstr "Segurança" - -#: gui/slick/views/layouts/main.mako:167 sickbeard/webserve.py:3662 -msgid "Manage Torrents" -msgstr "Gerir Torrents" - -#: gui/slick/views/layouts/main.mako:170 sickbeard/webserve.py:3683 +#: gui/slick/views/layouts/main.mako:170 sickbeard/webserve.py:3654 msgid "Failed Downloads" msgstr "Downloads Falhados" -#: gui/slick/views/layouts/main.mako:155 sickbeard/webserve.py:3701 +#: gui/slick/views/layouts/main.mako:155 sickbeard/webserve.py:3672 msgid "Manage Searches" msgstr "Gerenciar as pesquisas" -#: sickbeard/webserve.py:3709 +#: sickbeard/webserve.py:3680 msgid "Backlog search started" msgstr "Início de pesquisa de lista de dependências" -#: sickbeard/webserve.py:3719 +#: sickbeard/webserve.py:3690 msgid "Daily search started" msgstr "Iniciado a busca diária" -#: sickbeard/webserve.py:3728 +#: sickbeard/webserve.py:3699 msgid "Find propers search started" msgstr "Pesquisa de versões proper iniciada" -#: sickbeard/webserve.py:3737 +#: sickbeard/webserve.py:3708 msgid "Subtitle search started" msgstr "Pesquisa de legendas iniciada" -#: sickbeard/webserve.py:3801 +#: sickbeard/webserve.py:3772 msgid "Remove Selected" msgstr "Remover Seleccionados" -#: sickbeard/webserve.py:3802 +#: sickbeard/webserve.py:3773 msgid "Clear History" msgstr "Limpar o histórico" -#: sickbeard/webserve.py:3803 +#: sickbeard/webserve.py:3774 msgid "Trim History" msgstr "Encolher história" -#: sickbeard/webserve.py:3823 +#: sickbeard/webserve.py:3794 msgid "Selected history entries removed" msgstr "" -#: sickbeard/webserve.py:3830 +#: sickbeard/webserve.py:3801 msgid "History cleared" msgstr "Histórico apagado" -#: sickbeard/webserve.py:3837 +#: sickbeard/webserve.py:3808 msgid "Removed history entries older than 30 days" msgstr "Remover entradas do histórico mais antigas do que 30 dias" -#: gui/slick/views/layouts/main.mako:185 sickbeard/webserve.py:3850 +#: gui/slick/views/layouts/main.mako:185 sickbeard/webserve.py:3821 msgid "General" msgstr "Geral" -#: sickbeard/webserve.py:3851 sickbeard/webserve.py:4143 +#: sickbeard/webserve.py:3822 sickbeard/webserve.py:4114 msgid "Backup/Restore" msgstr "Cópia de Segurança / Restauro" -#: gui/slick/views/layouts/main.mako:187 sickbeard/webserve.py:3852 -#: sickbeard/webserve.py:4206 +#: gui/slick/views/layouts/main.mako:187 sickbeard/webserve.py:3823 +#: sickbeard/webserve.py:4177 msgid "Search Settings" msgstr "Configurações de pesquisa" -#: gui/slick/views/layouts/main.mako:188 sickbeard/webserve.py:3853 -#: sickbeard/webserve.py:4518 +#: gui/slick/views/layouts/main.mako:188 sickbeard/webserve.py:3824 +#: sickbeard/webserve.py:4489 msgid "Search Providers" msgstr "Provedores de pesquisa" -#: gui/slick/views/layouts/main.mako:189 sickbeard/webserve.py:3854 +#: gui/slick/views/layouts/main.mako:189 sickbeard/webserve.py:3825 msgid "Subtitles Settings" msgstr "Configurações de legendas" -#: gui/slick/views/layouts/main.mako:191 sickbeard/webserve.py:3856 -#: sickbeard/webserve.py:4964 +#: gui/slick/views/layouts/main.mako:191 sickbeard/webserve.py:3827 +#: sickbeard/webserve.py:4935 msgid "Notifications" msgstr "Notificações" @@ -1240,142 +1237,142 @@ msgstr "Notificações" #: gui/slick/views/home.mako:35 gui/slick/views/inc_addShowOptions.mako:79 #: gui/slick/views/inc_home_showList.mako:179 gui/slick/views/layouts/main.mako:192 #: gui/slick/views/manage.mako:44 gui/slick/views/manage_massEdit.mako:202 -#: sickbeard/webserve.py:3857 sickbeard/webserve.py:5309 +#: sickbeard/webserve.py:3828 sickbeard/webserve.py:5280 msgid "Anime" msgstr "Anime" -#: sickbeard/webserve.py:3895 sickbeard/webserve.py:3896 +#: sickbeard/webserve.py:3866 sickbeard/webserve.py:3867 msgid "SickRage Configuration" msgstr "Configuração do SickRage" -#: sickbeard/webserve.py:3910 +#: sickbeard/webserve.py:3881 msgid "Config - Shares" msgstr "" -#: sickbeard/webserve.py:3910 +#: sickbeard/webserve.py:3881 msgid "Windows Shares Configuration" msgstr "" -#: sickbeard/webserve.py:3937 +#: sickbeard/webserve.py:3908 msgid "Saved Shares" msgstr "" -#: sickbeard/webserve.py:3937 +#: sickbeard/webserve.py:3908 msgid "Your Windows share settings have been saved" msgstr "" -#: sickbeard/webserve.py:3948 +#: sickbeard/webserve.py:3919 msgid "Config - General" msgstr "Configuração - geral" -#: sickbeard/webserve.py:3948 +#: sickbeard/webserve.py:3919 msgid "General Configuration" msgstr "Configuração geral" -#: sickbeard/webserve.py:3988 +#: sickbeard/webserve.py:3959 msgid "Saved Defaults" msgstr "Pré-Definições Gravadas" -#: sickbeard/webserve.py:3988 +#: sickbeard/webserve.py:3959 msgid "Your \"add show\" defaults have been set to your current selections." msgstr "As suas pré-definições para \"Adicionar Série\" foram atualizadas." -#: sickbeard/webserve.py:4095 +#: sickbeard/webserve.py:4066 msgid "Unable to create directory {directory}, log directory not changed." msgstr "Não é possível criar o diretório {directory}, diretório de log não mudado." -#: sickbeard/webserve.py:4103 +#: sickbeard/webserve.py:4074 msgid "Unable to create directory {directory}, https cert directory not changed." msgstr "Não é possível criar o diretório {directory}, o diretório da chave https não foi mudado." -#: sickbeard/webserve.py:4107 +#: sickbeard/webserve.py:4078 msgid "Unable to create directory {directory}, https key directory not changed." msgstr "Não é possível criar o diretório {directory}, o diretório da chave https não foi mudado." -#: sickbeard/webserve.py:4126 sickbeard/webserve.py:4324 sickbeard/webserve.py:4456 -#: sickbeard/webserve.py:5227 +#: sickbeard/webserve.py:4097 sickbeard/webserve.py:4295 sickbeard/webserve.py:4427 +#: sickbeard/webserve.py:5198 msgid "Error(s) Saving Configuration" msgstr "Erro (s) a guardar a configuração" -#: sickbeard/webserve.py:4129 sickbeard/webserve.py:4327 sickbeard/webserve.py:4458 -#: sickbeard/webserve.py:4950 sickbeard/webserve.py:5230 sickbeard/webserve.py:5294 -#: sickbeard/webserve.py:5323 +#: sickbeard/webserve.py:4100 sickbeard/webserve.py:4298 sickbeard/webserve.py:4429 +#: sickbeard/webserve.py:4921 sickbeard/webserve.py:5201 sickbeard/webserve.py:5265 +#: sickbeard/webserve.py:5294 msgid "Configuration Saved" msgstr "Configuração Gravada" -#: sickbeard/webserve.py:4142 +#: sickbeard/webserve.py:4113 msgid "Config - Backup/Restore" msgstr "Configurar - Cópia de Segurança / Restauro" -#: sickbeard/webserve.py:4205 +#: sickbeard/webserve.py:4176 msgid "Config - Episode Search" msgstr "Config - Pesquisa" -#: sickbeard/webserve.py:4340 +#: sickbeard/webserve.py:4311 msgid "Config - Post Processing" msgstr "Config - pós-processamento" -#: sickbeard/webserve.py:4380 +#: sickbeard/webserve.py:4351 msgid "Unpacking Not Supported, disabling unpack setting" msgstr "Descompactação não suportado, desabilitando configuração de descompactação" -#: sickbeard/webserve.py:4431 +#: sickbeard/webserve.py:4402 msgid "You tried saving an invalid normal naming config, not saving your naming settings" msgstr "" -#: sickbeard/webserve.py:4439 +#: sickbeard/webserve.py:4410 msgid "You tried saving an invalid anime naming config, not saving your naming settings" msgstr "Tentou salvar uma configuração de nomeação de Anime inválida, suas configurações de nomeação não foram salvas" -#: sickbeard/webserve.py:4517 +#: sickbeard/webserve.py:4488 msgid "Config - Providers" msgstr "Config - Provedores" -#: sickbeard/webserve.py:4547 +#: sickbeard/webserve.py:4518 msgid "No Provider Name specified" msgstr "Nenhum nome de provedor especificado" -#: sickbeard/webserve.py:4549 +#: sickbeard/webserve.py:4520 msgid "No Provider Url specified" msgstr "Nenhum URL de provedor especificado" -#: sickbeard/webserve.py:4551 +#: sickbeard/webserve.py:4522 msgid "No Provider Api key specified" msgstr "Nenhuma chave Api para o provedor especificado" -#: sickbeard/webserve.py:4963 +#: sickbeard/webserve.py:4934 msgid "Config - Notifications" msgstr "Config - notificações" -#: sickbeard/webserve.py:5243 +#: sickbeard/webserve.py:5214 msgid "Config - Subtitles" msgstr "Config - legendas" -#: sickbeard/webserve.py:5308 +#: sickbeard/webserve.py:5279 msgid "Config - Anime" msgstr "Config - Anime" -#: sickbeard/webserve.py:5336 +#: sickbeard/webserve.py:5307 msgid "Clear Errors" msgstr "Limpar erros" -#: sickbeard/webserve.py:5342 +#: sickbeard/webserve.py:5313 msgid "Clear Warnings" msgstr "Limpar avisos" -#: sickbeard/webserve.py:5348 +#: sickbeard/webserve.py:5319 msgid "Submit Errors" msgstr "Enviar erros" -#: sickbeard/webserve.py:5363 +#: sickbeard/webserve.py:5334 msgid "Logs & Errors" msgstr "Logs & erros" -#: sickbeard/webserve.py:5388 +#: sickbeard/webserve.py:5359 msgid "Log File" msgstr "Arquivo de log" -#: sickbeard/webserve.py:5388 +#: sickbeard/webserve.py:5359 msgid "Logs" msgstr "Logs:" @@ -1383,30 +1380,166 @@ msgstr "Logs:" msgid "This is a test notification from SickRage" msgstr "Esta é uma notificação de teste do SickRage" -#: gui/slick/js/core.js:481 gui/slick/js/core.js:502 gui/slick/js/core.js:524 -#: gui/slick/js/core.js:548 gui/slick/js/core.js:573 gui/slick/js/core.js:596 -#: gui/slick/js/core.js:625 gui/slick/js/core.js:645 gui/slick/js/core.js:690 -#: gui/slick/js/core.js:769 gui/slick/js/core.js:829 gui/slick/js/core.js:849 -#: gui/slick/js/core.js:879 gui/slick/js/core.js:909 gui/slick/js/core.js:969 -#: gui/slick/js/core.js:1046 gui/slick/js/core.js:1066 gui/slick/js/core.js:1085 +#: gui/slick/js/browser.js:6 +msgid "Choose Directory" +msgstr "" + +#: gui/slick/js/core.js:443 +msgid "Select log file folder location" +msgstr "" + +#: gui/slick/js/core.js:445 +msgid "Select CSS file" +msgstr "" + +#: gui/slick/js/core.js:469 +msgid "Select backup folder to save to" +msgstr "" + +#: gui/slick/js/core.js:470 +msgid "Select backup files to restore" +msgstr "" + +#: gui/slick/js/core.js:479 gui/slick/js/core.js:500 gui/slick/js/core.js:522 +#: gui/slick/js/core.js:546 gui/slick/js/core.js:571 gui/slick/js/core.js:594 +#: gui/slick/js/core.js:623 gui/slick/js/core.js:643 gui/slick/js/core.js:688 +#: gui/slick/js/core.js:767 gui/slick/js/core.js:827 gui/slick/js/core.js:847 +#: gui/slick/js/core.js:877 gui/slick/js/core.js:907 gui/slick/js/core.js:967 +#: gui/slick/js/core.js:1044 gui/slick/js/core.js:1064 gui/slick/js/core.js:1083 msgid "Please fill out the necessary fields above." msgstr "" -#: gui/slick/js/core.js:1328 gui/slick/js/core.js:1378 gui/slick/js/core.js:1427 -#: gui/slick/js/core.js:1493 +#: gui/slick/js/core.js:680 +msgid "<b>Step 1:</b> Confirm Authorization" +msgstr "" + +#: gui/slick/js/core.js:977 +msgid "Check blacklist name; the value needs to be a trakt slug" +msgstr "" + +#: gui/slick/js/core.js:1022 +msgid "You must provide a recipient email address!" +msgstr "" + +#: gui/slick/js/core.js:1107 +msgid "You didn't supply a Pushbullet api key" +msgstr "" + +#: gui/slick/js/core.js:1133 gui/slick/js/core.js:1162 +msgid "Don't forget to save your new pushbullet settings." +msgstr "" + +#: gui/slick/js/core.js:1262 +msgid "Select TV Download Directory" +msgstr "" + +#: gui/slick/js/core.js:1263 +msgid "Select Unpack Directory" +msgstr "" + +#: gui/slick/js/core.js:1326 gui/slick/js/core.js:1376 gui/slick/js/core.js:1425 +#: gui/slick/js/core.js:1491 msgid "This pattern is invalid." msgstr "" -#: gui/slick/js/core.js:1336 gui/slick/js/core.js:1386 gui/slick/js/core.js:1435 -#: gui/slick/js/core.js:1501 +#: gui/slick/js/core.js:1334 gui/slick/js/core.js:1384 gui/slick/js/core.js:1433 +#: gui/slick/js/core.js:1499 msgid "This pattern would be invalid without the folders, using it will force \"Season Folders\" on for all shows." msgstr "" -#: gui/slick/js/core.js:1344 gui/slick/js/core.js:1394 gui/slick/js/core.js:1443 -#: gui/slick/js/core.js:1509 +#: gui/slick/js/core.js:1342 gui/slick/js/core.js:1392 gui/slick/js/core.js:1441 +#: gui/slick/js/core.js:1507 msgid "This pattern is valid." msgstr "Este padrão é válido." +#: gui/slick/js/core.js:1818 +msgid "Select .nzb black hole/watch location" +msgstr "" + +#: gui/slick/js/core.js:1819 +msgid "Select .torrent black hole/watch location" +msgstr "" + +#: gui/slick/js/core.js:1820 +msgid "Select .torrent download location" +msgstr "" + +#: gui/slick/js/core.js:1900 +msgid "Minimum seeding time is" +msgstr "" + +#: gui/slick/js/core.js:1902 +msgid "URL to your uTorrent client (e.g. http://localhost:8000)" +msgstr "" + +#: gui/slick/js/core.js:1905 +msgid "Stop seeding when inactive for" +msgstr "" + +#: gui/slick/js/core.js:1911 +msgid "URL to your Transmission client (e.g. http://localhost:9091)" +msgstr "" + +#: gui/slick/js/core.js:1921 +msgid "URL to your Deluge client (e.g. http://localhost:8112)" +msgstr "" + +#: gui/slick/js/core.js:1930 +msgid "IP or Hostname of your Deluge Daemon (e.g. scgi://localhost:58846)" +msgstr "" + +#: gui/slick/js/core.js:1937 +msgid "URL to your Synology DS client (e.g. http://localhost:5000)" +msgstr "" + +#: gui/slick/js/core.js:1941 +msgid "URL to your rTorrent client (e.g. scgi://localhost:5000 <br> or https://localhost/rutorrent/plugins/httprpc/action.php)" +msgstr "" + +#: gui/slick/js/core.js:1952 +msgid "URL to your qBittorrent client (e.g. http://localhost:8080)" +msgstr "" + +#: gui/slick/js/core.js:1962 +msgid "URL to your MLDonkey (e.g. http://localhost:4080)" +msgstr "" + +#: gui/slick/js/core.js:1974 +msgid "URL to your putio client (e.g. http://localhost:8080)" +msgstr "" + +#: gui/slick/js/core.js:1975 +msgid "<a herf=\"https://app.put.io/oauth/apps/new\" target=\"_blank\"> Create a new OAuth app for put.io</a>" +msgstr "" + +#: gui/slick/js/core.js:1977 +msgid "Put.io Parent Folder" +msgstr "" + +#: gui/slick/js/core.js:1978 +msgid "Put.io OAuth Token" +msgstr "" + +#: gui/slick/js/core.js:3383 gui/slick/views/displayShow.mako:410 +msgid "Show Episodes" +msgstr "Episódios do programa" + +#: gui/slick/js/core.js:3388 gui/slick/views/displayShow.mako:408 +msgid "Hide Episodes" +msgstr "" + +#: gui/slick/js/core.js:3396 +msgid "Select Show Location" +msgstr "" + +#: gui/slick/js/core.js:3460 +msgid "Select Unprocessed Episode Folder" +msgstr "" + +#: gui/slick/js/core.js:3790 +msgid "DELETED" +msgstr "" + #: gui/slick/js/core.js:4082 msgid "Resume updating the log on this page." msgstr "" @@ -1415,6 +1548,26 @@ msgstr "" msgid "Pause updating the log on this page." msgstr "" +#: gui/slick/js/core.js:4323 +msgid "searching {searchingFor}..." +msgstr "" + +#: gui/slick/js/core.js:4334 +msgid "search timed out, try again or try another indexer" +msgstr "" + +#: gui/slick/js/core.js:4503 +msgid "loading folders..." +msgstr "" + +#: gui/slick/js/parsers.js:7 gui/slick/js/parsers.js:8 +#: gui/slick/js/plotTooltip.js:6 gui/slick/js/sceneExceptionsTooltip.js:6 +#: gui/slick/views/inc_home_showList.mako:209 +#: gui/slick/views/inc_home_showList.mako:215 +#: gui/slick/views/inc_home_showList.mako:231 +msgid "Loading..." +msgstr "A carregar..." + #: gui/slick/views/404.mako:5 msgid "You have reached this page by accident, please check the url." msgstr "Chegou a esta página por acidente, por favor, verifique o url." @@ -5713,14 +5866,6 @@ msgstr "Alterar episódios selecionados para" msgid "Select Columns" msgstr "Selecionar colunas" -#: gui/slick/views/displayShow.mako:408 -msgid "Hide Episodes" -msgstr "" - -#: gui/slick/views/displayShow.mako:410 -msgid "Show Episodes" -msgstr "Episódios do programa" - #: gui/slick/views/displayShow.mako:424 msgid "NFO" msgstr "NFO" @@ -6234,12 +6379,6 @@ msgstr "" msgid "loading" msgstr "a carregar" -#: gui/slick/views/inc_home_showList.mako:209 -#: gui/slick/views/inc_home_showList.mako:215 -#: gui/slick/views/inc_home_showList.mako:231 -msgid "Loading..." -msgstr "A carregar..." - #: gui/slick/views/inc_qualityChooser.mako:31 msgid "<p><b><u>Preferred</u></b> qualities will replace those in <b><u>allowed</u></b>, even if they are lower.</p>" msgstr "" @@ -6777,6 +6916,10 @@ msgstr "Atualizar o KODI" msgid "Update Emby" msgstr "Atualizar o Emby" +#: gui/slick/views/layouts/main.mako:167 +msgid "Manage Torrents" +msgstr "Gerir Torrents" + #: gui/slick/views/layouts/main.mako:173 msgid "Missed Subtitle Management" msgstr "" diff --git a/locale/ro_RO/LC_MESSAGES/messages.json b/locale/ro_RO/LC_MESSAGES/messages.json index 82efcc4f50a4ced9db75a398a730d62b74fa7b90..d4f9ffbfd79adfbab46d7b4269fa14368d58432a 100644 --- a/locale/ro_RO/LC_MESSAGES/messages.json +++ b/locale/ro_RO/LC_MESSAGES/messages.json @@ -1 +1 @@ -{"messages":{"domain":"messages","locale_data":{"messages":{"100":[null,""],"250":[null,""],"500":[null,""],"":{"domain":"messages","plural_forms":"nplurals=3; plural=(n==1 ? 0 : (n==0 || (n%100>0 && n%100<20)) ? 1 : 2);","lang":"ro_RO"},"Drama":[null,""],"Mystery":[null,""],"Science-Fiction":[null,""],"Crime":[null,""],"Action":[null,""],"Comedy":[null,""],"Thriller":[null,""],"Animation":[null,""],"Family":[null,""],"Fantasy":[null,""],"Adventure":[null,""],"Horror":[null,""],"Film-Noir":[null,""],"Sci-Fi":[null,""],"Romance":[null,""],"Sport":[null,""],"War":[null,""],"Biography":[null,""],"History":[null,""],"Music":[null,""],"Western":[null,""],"News":[null,""],"Sitcom":[null,""],"Reality-TV":[null,""],"Documentary":[null,""],"Game-Show":[null,""],"Musical":[null,""],"Talk-Show":[null,""],"Started Download":[null,"A început descărcarea"],"Download Finished":[null,"Descărcare terminată"],"Subtitle Download Finished":[null,"Descărcarea subtitrării s-a încheiat"],"SickRage Updated":[null,"SickRage a fost actualizat"],"SickRage Updated To Commit#: ":[null,"SickRage actualizat la commit-ul#: "],"SickRage new login":[null,"Autentificare nouă la SickRage"],"New login from IP: {0}. http://geomaplookup.net/?ip={0}":[null,"Autentificare nouă de la IP-ul: {0}. http://geomaplookup.net/?ip={0}"],"Repeat":[null,""],"Repeat (Separated)":[null,""],"Extend":[null,""],"Extend (Limited)":[null,""],"Extend (Limited, E-prefixed)":[null,""],"Downloaded":[null,"Descărcat"],"Snatched":[null,""],"Snatched (Proper)":[null,""],"Failed":[null,"Eșuat"],"Snatched (Best)":[null,""],"Archived":[null,"Arhivat"],"Unknown":[null,"Necunoscut"],"Unaired":[null,"Nedifuzat"],"Skipped":[null,"Sărit"],"Wanted":[null,"Dorit"],"Ignored":[null,"Ignorat"],"Subtitled":[null,"Subtitrat"],"<No Filter>":[null,""],"Daily Searcher":[null,""],"Backlog":[null,""],"Show Updater":[null,""],"Check Version":[null,""],"Show Queue":[null,""],"Search Queue (All)":[null,""],"Search Queue (Daily Searcher)":[null,""],"Search Queue (Backlog)":[null,""],"Search Queue (Manual)":[null,""],"Search Queue (Retry/Failed)":[null,""],"Search Queue (RSS)":[null,""],"Find Propers":[null,""],"Postprocessor":[null,""],"Find Subtitles":[null,""],"Trakt Checker":[null,""],"Event":[null,""],"Error":[null,""],"Tornado":[null,""],"Thread":[null,""],"Main":[null,""],"Loading":[null,""],"New update found for SickRage, starting auto-updater":[null,""],"Update was successful":[null,""],"Update failed!":[null,""],"Backup":[null,""],"Config backup in progress...":[null,""],"Config backup successful, updating...":[null,""],"Config backup failed, aborting update":[null,""],"No update needed":[null,""],"Mako Error":[null,"Eroare de mako"],"Oops":[null,"Oops"],"Wrong API key used":[null,"Cheie greșită pentru API"],"Login":[null,"Login"],"API Key not generated":[null,"Cheia pentru API nu este generată"],"API Builder":[null,"API Builder"],"Schedule":[null,"Program"],"Test 1":[null,"Test 1"],"This is test number 1":[null,"Acesta este testul numărul 1"],"Test 2":[null,"Test 2"],"This is test number 2":[null,"Acesta este testul numărul 2"],"You're using the {branch} branch. Please use 'master' unless specifically asked":[null,""],"Invalid show parameters":[null,"Parametri invalizi pentru serial"],"Invalid parameters":[null,""],"Episode couldn't be retrieved":[null,"Episodul nu a putut fi încărcat"],"Home":[null,"Acasă"],"Show List":[null,"Lista de seriale"],"Error: Unsupported Request. Send jsonp request with 'callback' variable in the query string.":[null,""],"Success. Connected and authenticated":[null,"Succes. Conectat și autentificat"],"Authentication failed. SABnzbd expects":[null,"Autentificare a eşuat. SABnzbd aşteaptă"],"as authentication method":[null,"ca metodă de autentificare"],"Unable to connect to host":[null,"Conectare nereușită la server"],"SMS sent successfully":[null,"SMS trimis cu succes"],"Problem sending SMS: {message}":[null,"Problemă la trimiterea SMS-ului: {message}"],"Telegram notification succeeded. Check your Telegram clients to make sure it worked":[null,""],"Error sending Telegram notification: {message}":[null,""],"join notification succeeded. Check your join clients to make sure it worked":[null,""],"Error sending join notification: {message}":[null,""]," with password":[null,""],"Registered and Tested growl successfully {growl_host}":[null,""],"Registration and Testing of growl failed {growl_host}":[null,""],"Test prowl notice sent successfully":[null,""],"Test prowl notice failed":[null,""],"Boxcar2 notification succeeded. Check your Boxcar2 clients to make sure it worked":[null,""],"Error sending Boxcar2 notification":[null,""],"Pushover notification succeeded. Check your Pushover clients to make sure it worked":[null,""],"Error sending Pushover notification":[null,""],"Key verification successful":[null,""],"Unable to verify key":[null,""],"Tweet successful, check your twitter to make sure it worked":[null,""],"Error sending tweet":[null,""],"Please enter a valid account sid":[null,""],"Please enter a valid auth token":[null,""],"Please enter a valid phone sid":[null,""],"Please format the phone number as \"+1-###-###-####\"":[null,""],"Authorization successful and number ownership verified":[null,""],"Error sending sms":[null,""],"Slack message successful":[null,""],"Slack message failed":[null,""],"Discord message successful":[null,""],"Discord message failed":[null,""],"Test KODI notice sent successfully to {kodi_host}":[null,""],"Test KODI notice failed to {kodi_host}":[null,""],"Successful test notice sent to Plex Home Theater ... {plex_clients}":[null,""],"Test failed for Plex Home Theater ... {plex_clients}":[null,""],"Tested Plex Home Theater(s)":[null,""],"Successful test of Plex Media Server(s) ... {plex_servers}":[null,""],"Test failed, No Plex Media Server host specified":[null,""],"Test failed for Plex Media Server(s) ... {plex_servers}":[null,""],"Tested Plex Media Server host(s)":[null,""],"Tried sending desktop notification via libnotify":[null,""],"Test notice sent successfully to {emby_host}":[null,""],"Test notice failed to {emby_host}":[null,""],"Successfully started the scan update":[null,""],"Test failed to start the scan update":[null,""],"Test notice sent successfully to {nmj2_host}":[null,""],"Test notice failed to {nmj2_host}":[null,""],"Trakt Authorized":[null,""],"Trakt Not Authorized!":[null,""],"Test email sent successfully! Check inbox.":[null,""],"ERROR: {last_error}":[null,""],"Test NMA notice sent successfully":[null,""],"Test NMA notice failed":[null,""],"Pushalot notification succeeded. Check your Pushalot clients to make sure it worked":[null,""],"Error sending Pushalot notification":[null,""],"Pushbullet notification succeeded. Check your device to make sure it worked":[null,""],"Error sending Pushbullet notification":[null,""],"Status":[null,""],"Restarting SickRage":[null,""],"Update Failed":[null,""],"Update wasn't successful, not restarting. Check your log for more information.":[null,""],"Checking out branch":[null,""],"Already on branch":[null,""],"Invalid show ID: {show}":[null,""],"Show not in show list":[null,""],"Edit":[null,""],"This show is in the process of being downloaded - the info below is incomplete.":[null,""],"The information on this page is in the process of being updated.":[null,""],"The episodes below are currently being refreshed from disk":[null,""],"Currently downloading subtitles for this show":[null,""],"This show is queued to be refreshed.":[null,""],"This show is queued and awaiting an update.":[null,""],"This show is queued and awaiting subtitles download.":[null,""],"Resume":[null,""],"Pause":[null,""],"Remove":[null,""],"Re-scan files":[null,""],"Force Full Update":[null,""],"Update show in KODI":[null,""],"Update show in Emby":[null,""],"Hide specials":[null,""],"Show specials":[null,""],"Preview Rename":[null,""],"Download Subtitles":[null,""],"No scene exceptions":[null,""],"Invalid show ID":[null,""],"Unable to find the specified show":[null,""],"Unable to retreive Fansub Groups from AniDB.":[null,""],"Edit Show":[null,""],"Unable to refresh this show: {error}":[null,""],"New location <tt>{location}</tt> does not exist":[null,""],"Unable to update show: {error}":[null,""],"Unable to force an update on scene exceptions of the show.":[null,""],"Unable to force an update on scene numbering of the show.":[null,""],"{num_errors:d} error{plural} while saving changes:":[null,""],"{show_name} has been {paused_resumed}":[null,""],"resumed":[null,""],"paused":[null,""],"{show_name} has been {deleted_trashed} {was_deleted}":[null,""],"deleted":[null,""],"trashed":[null,""],"(media untouched)":[null,""],"(with all related media)":[null,""],"Unable to refresh this show.":[null,""],"Unable to update this show.":[null,""],"Library update command sent to KODI host(s)): {kodi_hosts}":[null,""],"Unable to contact one or more KODI host(s)): {kodi_hosts}":[null,""],"Library update command sent to Plex Media Server host: {plex_server}":[null,""],"Unable to contact Plex Media Server host: {plex_server}":[null,""],"Library update command sent to Emby host: {emby_host}":[null,""],"Unable to contact Emby host: {emby_host}":[null,""],"You must specify a show and at least one episode":[null,""],"Invalid status":[null,""],"Backlog was automatically started for the following seasons of <b>{show_name}</b>":[null,""],"Season":[null,""],"Backlog started":[null,""],"Retrying Search was automatically started for the following season of <b>{show_name}</b>":[null,""],"Retry Search started":[null,""],"You must specify a show":[null,""],"Can't rename episodes when the show dir is missing.":[null,""],"New subtitles downloaded: {new_subtitle_languages}":[null,""],"No subtitles downloaded":[null,""],"IRC":[null,""],"Could not load news from the repo. [Click here for news.md])({news_url})":[null,""],"The was a problem connecting to github, please refresh and try again":[null,""],"Could not load changes from the repo. [Click here for CHANGES.md]({changes_url})":[null,""],"Changelog":[null,""],"Post Processing":[null,""],"Add Shows":[null,""],"No folders selected.":[null,""],"New Show":[null,""],"Trending Shows":[null,""],"Popular Shows":[null,""],"Most Anticipated Shows":[null,""],"Most Collected Shows":[null,""],"Most Watched Shows":[null,""],"Most Played Shows":[null,""],"Recommended Shows":[null,""],"New Shows":[null,""],"Season Premieres":[null,""],"Existing Show":[null,""],"No root directories setup, please go back and add one.":[null,""],"Show added":[null,""],"Adding the specified show {show_name}":[null,""],"Missing params, no Indexer ID or folder: {show_to_add} and {root_dir}/{show_path}":[null,""],"Unknown error. Unable to add show due to problem with show selection.":[null,""],"Unable to add show":[null,""],"Folder {show_dir} exists already":[null,""],"Unable to create the folder {show_dir}, can't add the show":[null,""],"Adding the specified show into {show_dir}":[null,""],"Shows Added":[null,""],"Automatically added {num_shows} from their existing metadata files":[null,""],"Mass Update":[null,""],"Episode Overview":[null,""],"Missing Subtitles":[null,""],"Backlog Overview":[null,""],"Mass Edit":[null,""],"Unable to update show: {excption_format}":[null,""],"Unable to refresh show {show_name}: {excption_format}":[null,""],"Errors encountered":[null,""],"Updates":[null,""],"Refreshes":[null,""],"Renames":[null,""],"Subtitles":[null,""],"The following actions were queued":[null,""],"For best results please set the Download Station alias as":[null,""],"You can check this setting in the Synology DSM":[null,""],"Control Panel":[null,""],"Application Portal":[null,""],"Make sure you allow DSM to be embedded with iFrames too in":[null,""],"DSM Settings":[null,""],"Security":[null,""],"Manage Torrents":[null,""],"Failed Downloads":[null,""],"Manage Searches":[null,""],"Backlog search started":[null,""],"Daily search started":[null,""],"Find propers search started":[null,""],"Subtitle search started":[null,""],"Remove Selected":[null,""],"Clear History":[null,""],"Trim History":[null,""],"Selected history entries removed":[null,""],"History cleared":[null,""],"Removed history entries older than 30 days":[null,""],"General":[null,""],"Backup/Restore":[null,""],"Search Settings":[null,""],"Search Providers":[null,""],"Subtitles Settings":[null,""],"Notifications":[null,""],"Anime":[null,""],"SickRage Configuration":[null,""],"Config - Shares":[null,""],"Windows Shares Configuration":[null,""],"Saved Shares":[null,""],"Your Windows share settings have been saved":[null,""],"Config - General":[null,""],"General Configuration":[null,""],"Saved Defaults":[null,""],"Your \"add show\" defaults have been set to your current selections.":[null,""],"Unable to create directory {directory}, log directory not changed.":[null,""],"Unable to create directory {directory}, https cert directory not changed.":[null,""],"Unable to create directory {directory}, https key directory not changed.":[null,""],"Error(s) Saving Configuration":[null,""],"Configuration Saved":[null,""],"Config - Backup/Restore":[null,""],"Config - Episode Search":[null,""],"Config - Post Processing":[null,""],"Unpacking Not Supported, disabling unpack setting":[null,""],"You tried saving an invalid normal naming config, not saving your naming settings":[null,""],"You tried saving an invalid anime naming config, not saving your naming settings":[null,""],"Config - Providers":[null,""],"No Provider Name specified":[null,""],"No Provider Url specified":[null,""],"No Provider Api key specified":[null,""],"Config - Notifications":[null,""],"Config - Subtitles":[null,""],"Config - Anime":[null,""],"Clear Errors":[null,""],"Clear Warnings":[null,""],"Submit Errors":[null,""],"Logs & Errors":[null,""],"Log File":[null,""],"Logs":[null,""],"This is a test notification from SickRage":[null,""],"Please fill out the necessary fields above.":[null,""],"This pattern is invalid.":[null,""],"This pattern would be invalid without the folders, using it will force \"Season Folders\" on for all shows.":[null,""],"This pattern is valid.":[null,""],"Resume updating the log on this page.":[null,""],"Pause updating the log on this page.":[null,""],"You have reached this page by accident, please check the url.":[null,""],"A mako error has occured.<br>\n If this happened during an update a simple page refresh may be the solution.<br>\n Mako errors that happen during updates may be a one time error if there were significant ui changes.":[null,""],"Show/Hide Error":[null,""],"Add New Show":[null,""],"For shows that you haven't downloaded yet, this option finds a show on theTVDB.com, creates a directory for it's episodes, and adds it to SickRage.":[null,""],"Add From Trakt Lists":[null,""],"For shows that you haven't downloaded yet, this option lets you choose from a show from one of the Trakt lists to add to SickRage.":[null,""],"Add From IMDB's Popular Shows":[null,""],"View IMDB's list of the most popular shows. This feature uses IMDB's MOVIEMeter algorithm to identify popular TV Series.":[null,""],"Add Existing Shows":[null,""],"Use this option to add shows that already have a folder created on your hard drive. SickRage will scan your existing metadata/episodes and add the show accordingly.":[null,""],"Add Existing Show":[null,""],"Manage Directories":[null,""],"Customize Options":[null,""],"SickRage can add existing shows, using the current options, by using locally stored NFO/XML metadata to eliminate user interaction. If you would rather have SickRage prompt you to customize each show, then use the checkbox below.":[null,""],"Prompt me to set settings for each show":[null,""],"Displaying folders within these directories which aren't already added to SickRage":[null,""],"Submit":[null,""],"Find a show on theTVDB":[null,""],"Show retrieved from existing metadata":[null,""],"All Indexers":[null,""],"Search":[null,""],"This will only affect the language of the retrieved metadata file contents and episode filenames.":[null,""],"This <b>DOES NOT</b> allow SickRage to download non-english TV episodes!":[null,""],"Pick the parent folder":[null,""],"Pre-chosen Destination Folder":[null,""],"Customize options":[null,""],"Add Show":[null,""],"Skip Show":[null,""],"Sort By":[null,""],"Name":[null,""],"Original":[null,""],"Votes":[null,""],"Rating":[null,""],"Rating > Votes":[null,""],"Sort Order":[null,""],"Asc":[null,""],"Desc":[null,""],"Fetching of IMDB Data failed. Are you online?":[null,""],"Exception":[null,""],"Select Trakt List":[null,""],"Most Anticipated":[null,""],"Trending":[null,""],"Popular":[null,""],"Most Watched":[null,""],"Most Played":[null,""],"Most Collected":[null,""],"Recommended":[null,""],"Toggle navigation":[null,""],"Profile":[null,""],"JSONP":[null,""],"Back to SickRage":[null,""],"Parameters":[null,""],"Required":[null,""],"Description":[null,""],"Type":[null,""],"Default value":[null,""],"Allowed values":[null,""],"Playground":[null,""],"Clear":[null,""],"Yes":[null,""],"No":[null,""],"season":[null,""],"episode":[null,""],"Python Version":[null,""],"SSL Version":[null,""],"OS":[null,""],"Locale":[null,""],"User":[null,""],"Program Folder":[null,""],"Config File":[null,""],"Database File":[null,""],"Cache Folder":[null,""],"Log Folder":[null,""],"Arguments":[null,""],"Web Root":[null,""],"Website":[null,""],"Wiki":[null,""],"Source":[null,""],"IRC Chat":[null,""],"AnimeDB Settings":[null,""],"Look & Feel":[null,""],"AniDB is non-profit database of anime information that is freely open to the public":[null,""],"Enable":[null,""],"should SickRage use data from AniDB?":[null,""],"AniDB Username":[null,""],"username of your AniDB account":[null,""],"AniDB Password":[null,""],"password of your AniDB account":[null,""],"AniDB MyList":[null,""],"do you want to add the PostProcessed episodes to the MyList?":[null,""],"Look and Feel":[null,""],"How should the anime functions show and behave.":[null,""],"Split show lists":[null,""],"separate anime and normal shows in groups":[null,""],"Split in tabs":[null,""],"use tabs for when splitting show lists":[null,""],"Restore":[null,""],"Backup your main database file and config.":[null,""],"Select the folder you wish to save your backup file to":[null,""],"Restore your main database file and config.":[null,""],"Select the backup file you wish to restore":[null,""],"Misc":[null,""],"Interface":[null,""],"Advanced Settings":[null,""],"Startup options. Indexer options. Log and show file locations.":[null,""],"Some options may require a manual restart to take effect.":[null,""],"Default Indexer Language":[null,""],"for adding shows and metadata providers":[null,""],"Launch browser":[null,""],"open the SickRage home page on startup":[null,""],"Initial page":[null,""],"Shows":[null,""],"when launching SickRage interface":[null,""],"Choose hour to update shows":[null,""],"with information such as next air dates, show ended, etc. Use 15 for 3pm, 4 for 4am etc.":[null,""],"note":[null,""],"minutes are randomized each time SickRage is started":[null,""],"Send to trash for actions":[null,""],"when using show \"Remove\" and delete files":[null,""],"on scheduled deletes of the oldest log files":[null,""],"selected actions use trash (recycle bin) instead of the default permanent delete":[null,""],"Log file folder location":[null,""],"Number of Log files saved":[null,""],"number of log files saved when rotating logs (default: 5) (REQUIRES RESTART)":[null,""],"Size of Log files saved":[null,""],"maximum size in MB of the log file (default: 1MB) (REQUIRES RESTART)":[null,""],"Use initial indexer set to":[null,""],"as the default selection when adding new shows":[null,""],"Timeout show indexer at":[null,""],"seconds of inactivity when finding new shows (default:20)":[null,""],"Show root directories":[null,""],"where the files of shows are located":[null,""],"Save Changes":[null,""],"Options for software updates.":[null,""],"Check software updates":[null,""],"and display notifications when updates are available. Checks are run on startup and at the frequency set below*":[null,""],"Automatically update":[null,""],"fetch and install software updates. Updates are run on startup and in the background at the frequency set below*":[null,""],"Check the server every*":[null,""],"hours for software updates (default:1)":[null,""],"Notify on software update":[null,""],"send a message to all enabled notifiers when SickRage has been updated":[null,""],"User Interface":[null,""],"Options for visual appearance.":[null,""],"Interface Language":[null,""],"System Language":[null,""],"for appearance to take effect, save then refresh your browser":[null,""],"Display theme":[null,""],"Dark":[null,""],"Light":[null,""],"Use a background image":[null,""],"use a custom image as background for SickRage":[null,""],"Background Path":[null,""],"Path to the background image":[null,""],"Show fanart in the background":[null,""],"on the show summary page":[null,""],"Fanart transparency":[null,""],"transparency of the fanart in the background":[null,""],"Use a custom stylesheet file":[null,""],"use a custom .css file to style SickRage (for advanced users)":[null,""],"Stylesheet File Path":[null,""],"Path to the stylesheet (.css) file":[null,""],"Show all seasons":[null,""],"Sort with \"The\", \"A\", \"An\"":[null,""],"include articles (\"The\", \"A\", \"An\") when sorting show lists":[null,""],"Missed episodes range":[null,""],"set the range in days of the missed episodes in the Schedule page":[null,""],"Display fuzzy dates":[null,""],"move absolute dates into tooltips and display e.g. \"Last Thu\", \"On Tue\"":[null,""],"Trim zero padding":[null,""],"remove the leading number \"0\" shown on hour of day, and date of month":[null,""],"Date style":[null,""],"Use System Default":[null,""],"Time style":[null,""],"seconds are only shown on the History page":[null,""],"Timezone":[null,""],"Local":[null,""],"Network":[null,""],"display dates and times in either your timezone or the shows network timezone":[null,""],"use local timezone to start searching for episodes minutes after show ends (depends on your dailysearch frequency)":[null,""],"Download url":[null,""],"URL where the shows can be downloaded.":[null,""],"Web Interface":[null,""],"it is recommended that you enable a username and password to secure SickRage from being tampered with remotely.":[null,""],"these options require a manual restart to take effect.":[null,""],"API key":[null,""],"used to give 3rd party programs limited access to SickRage":[null,""],"you can try all the features of the API":[null,""],"here":[null,""],"HTTP logs":[null,""],"enable logs from the internal Tornado web server":[null,""],"HTTP username":[null,""],"set blank for no login":[null,""],"HTTP password":[null,""],"blank = no authentication":[null,""],"HTTP port":[null,""],"web port to browse and access SickRage (default:8081)":[null,""],"Notify on login":[null,""],"enable to be notified when a new login happens in webserver":[null,""],"Listen on IPv6":[null,""],"attempt binding to any available IPv6 address":[null,""],"Enable HTTPS":[null,""],"enable access to the web interface using a HTTPS address":[null,""],"HTTPS certificate":[null,""],"file name or path to HTTPS certificate":[null,""],"HTTPS key":[null,""],"file name or path to HTTPS key":[null,""],"Reverse proxy headers":[null,""],"accept the following reverse proxy headers (advanced)...":[null,""],"(X-Forwarded-For, X-Forwarded-Host, and X-Forwarded-Proto)":[null,""],"CPU throttling":[null,""],"Normal (default). High is lower and Low is higher CPU use":[null,""],"Anonymous redirect":[null,""],"backlink protection via anonymizer service, must end in \"?\"":[null,""],"Enable debug":[null,""],"enable debug logs":[null,""],"Verify SSL Certs":[null,""],"verify SSL Certificates (Disable this for broken SSL installs (Like QNAP))":[null,""],"No Restart":[null,""],"only shutdown when restarting SR":[null,""],"only select this when you have external software restarting SR automatically when it stops (like FireDaemon)":[null,""],"Encrypt passwords":[null,""],"in the <code>config.ini</code> file":[null,""],"warning":[null,""],"passwords must only contain":[null,""],"ASCII characters":[null,""],"Unprotected calendar":[null,""],"allow subscribing to the calendar without user and password":[null,""],"some services like Google Calendar only work this way":[null,""],"Google Calendar Icons":[null,""],"show an icon next to exported calendar events in Google Calendar":[null,""],"Proxy host":[null,""],"blank to disable or proxy to use when connecting to providers":[null,""],"also use global proxy setting for indexers (tvdb, xem, anidb, etc.)":[null,""],"Skip Remove Detection":[null,""],"skip detection of removed files":[null,""],"if disabled the episode will be set to the default deleted status":[null,""],"Default deleted episode status":[null,""],"define the status to be set for media file that has been deleted.":[null,""],"Archived option will keep previous downloaded quality":[null,""],"example: Downloaded (1080p WEB-DL) ==> Archived (1080p WEB-DL)":[null,""],"Options for github related features.":[null,""],"Branch version":[null,""],"error: No branches found.":[null,""],"select branch to use (restart required)":[null,""],"Authorization Type":[null,""],"Username and password":[null,""],"Personal access token":[null,""],"You must use a personal access token if you're using \"two-factor authentication\" on GitHub.":[null,""],"GitHub username":[null,""],"*** (REQUIRED FOR SUBMITTING ISSUES) ***":[null,""],"GitHub password":[null,""],"GitHub personal access token":[null,""],"Generate Token":[null,""],"Manage Tokens":[null,""],"GitHub remote for branch":[null,""],"access repo configured remotes (save then refresh browser)":[null,""],"default":[null,""],"origin":[null,""],"Git executable path":[null,""],"only needed if OS is unable to locate git from env":[null,""],"Git reset":[null,""],"removes untracked files and performs a hard reset on git branch automatically to help resolve update issues":[null,""],"Home Theater / NAS":[null,""],"Devices":[null,""],"Social":[null,""],"A free and open source cross-platform media center and home entertainment system software with a 10-foot user interface designed for the living-room TV.":[null,""],"send KODI commands?":[null,""],"Always on":[null,""],"log errors when unreachable?":[null,""],"Notify on snatch":[null,""],"send a notification when a download starts?":[null,""],"Notify on download":[null,""],"send a notification when a download finishes?":[null,""],"Notify on subtitle download":[null,""],"send a notification when subtitles are downloaded?":[null,""],"Update library":[null,""],"update KODI library when a download finishes?":[null,""],"Full library update":[null,""],"perform a full library update if update per-show fails?":[null,""],"Only update first host":[null,""],"only send library updates to the first active host?":[null,""],"KODI IP:Port":[null,""],"host running KODI (eg. 192.168.1.100:8080)":[null,""],"(multiple host strings must be separated by commas)":[null,""],"Username":[null,""],"username for your KODI server (blank for none)":[null,""],"Password":[null,""],"password for your KODI server (blank for none)":[null,""],"Click below to test.":[null,""],"Experience your media on a visually stunning, easy to use interface on your Mac connected to your TV. Your media library has never looked this good!":[null,""],"For sending notifications to Plex Home Theater (PHT) clients, use the KODI notifier with port <b>3005</b>.":[null,""],"send Plex Media Server library updates?":[null,""],"Plex Media Server Auth Token":[null,""],"auth token used by Plex":[null,""],"Update Library":[null,""],"update Plex Media Server library when a download finishes":[null,""],"Plex Media Server IP:Port":[null,""],"one or more hosts running Plex Media Server<br/>(eg. 192.168.1.1:32400, 192.168.1.2:32400)":[null,""],"HTTPS":[null,""],"use https for plex media server requests?":[null,""],"Click below to test Plex Media Server(s)":[null,""],"Test Plex Media Server":[null,""],"Plex Home Theater":[null,""],"send Plex Home Theater notifications?":[null,""],"Plex Home Theater IP:Port":[null,""],"one or more hosts running Plex Home Theater<br>(eg. 192.168.1.100:3000, 192.168.1.101:3000)":[null,""],"Click below to test Plex Home Theater(s)":[null,""],"Test Plex Home Theater":[null,""],"some Plex Home Theaters <b class=\"boldest\">do not</b> support notifications e.g. Plexapp for Samsung TVs":[null,""],"Emby":[null,""],"A home media server built using other popular open source technologies.":[null,""],"send update commands to Emby?":[null,""],"Emby IP:Port":[null,""],"host running Emby (eg. 192.168.1.100:8096)":[null,""],"Emby API Key":[null,""],"Networked Media Jukebox":[null,""],"The Networked Media Jukebox, or NMJ, is the official media jukebox interface made available for the Popcorn Hour 200-series.":[null,""],"send update commands to NMJ?":[null,""],"Popcorn IP address":[null,""],"IP address of Popcorn 200-series (eg. 192.168.1.100)":[null,""],"Get settings":[null,""],"Get Settings":[null,""],"the Popcorn Hour device must be powered on and NMJ running.":[null,""],"NMJ database":[null,""],"automatically filled via the 'Get Settings' button.":[null,""],"NMJ mount url":[null,""],"Networked Media Jukebox v2":[null,""],"The Networked Media Jukebox, or NMJv2, is the official media jukebox interface made available for the Popcorn Hour 300 & 400-series.":[null,""],"send update commands to NMJv2?":[null,""],"IP address of Popcorn 300/400-series (eg. 192.168.1.100)":[null,""],"Database location":[null,""],"Database instance":[null,""],"adjust this value if the wrong database is selected.":[null,""],"Find database":[null,""],"Find Database":[null,""],"the Popcorn Hour device must be powered on.":[null,""],"NMJv2 database":[null,""],"automatically filled via the 'Find Database' buttons.":[null,""],"Synology":[null,""],"The Synology DiskStation NAS.":[null,""],"Synology Indexer is the daemon running on the Synology NAS to build its media database.":[null,""],"send Synology notifications?":[null,""],"requires SickRage to be running on your Synology NAS.":[null,""],"Synology Indexer":[null,""],"Synology Notifier is the notification system of Synology DSM":[null,""],"send notifications to the Synology Notifier?":[null,""],"pyTivo":[null,""],"pyTivo is both an HMO and GoBack server. This notifier will load the completed downloads to your Tivo.":[null,""],"send notifications to pyTivo?":[null,""],"requires the downloaded files to be accessible by pyTivo.":[null,""],"pyTivo IP:Port":[null,""],"host running pyTivo (eg. 192.168.1.1:9032)":[null,""],"pyTivo share name":[null,""],"value used in pyTivo Web Configuration to name the share.":[null,""],"Tivo name":[null,""],"(Messages & Settings > Account & System Information > System Information > DVR name)":[null,""],"Growl":[null,""],"A cross-platform unobtrusive global notification system.":[null,""],"send Growl notifications?":[null,""],"Growl IP:Port":[null,""],"host running Growl (eg. 192.168.1.100:23053)":[null,""],"may leave blank if SickRage is on the same host.":[null,""],"otherwise Growl <b>requires</b> a password to be used.":[null,""],"Click below to register and test Growl, this is required for Growl notifications to work.":[null,""],"Register Growl":[null,""],"Prowl":[null,""],"A Growl client for iOS.":[null,""],"send Prowl notifications?":[null,""],"Prowl Message Title":[null,""],"Global Prowl API key(s)":[null,""],"Prowl API(s) listed here, separated by commas if applicable, will<br> receive notifications for <b>all</b> shows. Your Prowl API key is available at:":[null,""],"(this field may be blank except when testing.)":[null,""],"Show notification list":[null,""],"-- Select a Show --":[null,""],"Configure per-show notifications here by entering Prowl API key(s), separated by commas, '\n 'after selecting a show in the drop-down box. Be sure to activate the 'Save for this show' '\n 'button below after each entry.":[null,""],"Save for this show":[null,""],"Prowl priority":[null,""],"Very Low":[null,""],"Moderate":[null,""],"Normal":[null,""],"High":[null,""],"Emergency":[null,""],"priority of Prowl messages from SickRage.":[null,""],"Libnotify":[null,""],"The standard desktop notification API for Linux/*nix systems. This notifier will only function if the pynotify module is installed (Ubuntu/Debian package <a href=\"apt:python-notify\">python-notify</a>).":[null,""],"send Libnotify notifications?":[null,""],"Pushover":[null,""],"Pushover makes it easy to send real-time notifications to your Android and iOS devices.":[null,""],"send Pushover notifications?":[null,""],"Pushover key":[null,""],"user key of your Pushover account":[null,""],"Pushover API key":[null,""],"click here":[null,""]," to create a Pushover API key":[null,""],"Pushover devices":[null,""],"comma separated list of pushover devices you want to send notifications to":[null,""],"Pushover notification sound":[null,""],"Bike":[null,""],"Bugle":[null,""],"Cash Register":[null,""],"Classical":[null,""],"Cosmic":[null,""],"Falling":[null,""],"Gamelan":[null,""],"Incoming":[null,""],"Intermission":[null,""],"Magic":[null,""],"Mechanical":[null,""],"Piano Bar":[null,""],"Siren":[null,""],"Space Alarm":[null,""],"Tug Boat":[null,""],"Alien Alarm (long)":[null,""],"Climb (long)":[null,""],"Persistent (long)":[null,""],"Pushover Echo (long)":[null,""],"Up Down (long)":[null,""],"None (silent)":[null,""],"Device specific":[null,""],"choose notification sound to use":[null,""],"Pushover priority":[null,""],"Choose priority to use":[null,""],"Boxcar 2":[null,""],"Read your messages where and when you want them!":[null,""],"send Boxcar notifications?":[null,""],"Boxcar2 access token":[null,""],"access token for your Boxcar account.":[null,""],"NMA":[null,""],"Notify My Android":[null,""],"Notify My Android is a Prowl-like Android App and API that offers an easy way to send notifications from your application directly to your Android device.":[null,""],"send NMA notifications?":[null,""],"NMA API key":[null,""],"(multiple keys must be separated by commas, up to a maximum of 5)":[null,""],"NMA priority":[null,""],"priority of NMA messages from SickRage.":[null,""],"Pushalot":[null,""],"Pushalot is a platform for receiving custom push notifications to connected devices running Windows Phone or Windows 8.":[null,""],"send Pushalot notifications ?":[null,""],"Pushalot authorization token":[null,""],"authorization token of your Pushalot account.":[null,""],"Pushbullet":[null,""],"Pushbullet is a platform for receiving custom push notifications to connected devices running Android/iOS and desktop browsers such as Chrome, Firefox or Opera.":[null,""],"send Pushbullet notifications?":[null,""],"Pushbullet API key":[null,""],"API key of your Pushbullet account":[null,""],"Pushbullet devices":[null,""],"Update device list":[null,""],"Pushbullet channels":[null,""],"Free Mobile":[null,""],"Free Mobile is a famous French cellular network provider.<br> It provides to their customer a free SMS API.":[null,""],"send SMS notifications?":[null,""],"send a SMS when a download starts?":[null,""],"send a SMS when a download finishes?":[null,""],"send a SMS when subtitles are downloaded?":[null,""],"Free Mobile customer ID":[null,""],"it's your Free Mobile customer ID (8 digits)":[null,""],"Free Mobile API key":[null,""],"find your API key in your customer portal.":[null,""],"Click below to test your settings.":[null,""],"Telegram":[null,""],"Telegram is a cloud-based instant messaging service.":[null,""],"send Telegram notifications?":[null,""],"send a message when a download starts?":[null,""],"send a message when a download finishes?":[null,""],"send a message when subtitles are downloaded?":[null,""],"User/group ID":[null,""],"contact @myidbot on Telegram to get an ID":[null,""],"Bot API token":[null,""],"contact @BotFather on Telegram to set up one":[null,""],"Join":[null,""],"Join all of your devices together!":[null,""],"send Join notifications?":[null,""],"Device ID":[null,""],"per device specific id":[null,""]," to create a Join API key":[null,""],"Twilio":[null,""],"Twilio is a webservice API that allows you to communicate directly with a mobile number. This notifier will send a text directly to your mobile device.":[null,""],"should SickRage text your mobile device?":[null,""],"Twilio Account SID":[null,""],"account SID of your Twilio account.":[null,""],"Twilio Auth Token":[null,""],"Twilio Phone SID":[null,""],"phone SID that you would like to send the sms from":[null,""],"Your phone number":[null,""],"phone number that will receive the sms. Please use the format +1-###-###-####":[null,""],"Twitter":[null,""],"A social networking and microblogging service, enabling its users to send and read other users' messages called tweets.":[null,""],"should SickRage post tweets on Twitter?":[null,""],"you may want to use a secondary account.":[null,""],"send direct message":[null,""],"send a notification via Direct Message, not via status update":[null,""],"send DM to":[null,""],"Twitter account to send Direct Messages to (must follow you)":[null,""],"Step One":[null,""],"Request Authorization":[null,""],"Click the \"Request Authorization\" button.<br> This will open a new page containing an auth key.<br> <b>note:</b> if nothing happens check your popup blocker.":[null,""],"Step Two":[null,""],"Enter the key Twitter gave you below, and click \"Verify Key\".":[null,""],"Trakt":[null,""],"Trakt helps keep a record of what TV shows and movies you are watching. Based on your favorites, Trakt recommends additional shows and movies you'll enjoy!":[null,""],"send Trakt.tv notifications?":[null,""],"username of your Trakt account.":[null,""],"Trakt PIN":[null,""],"Get Trakt PIN":[null,""],"PIN code to authorize SickRage to access Trakt on your behalf.":[null,""],"API Timeout":[null,""],"seconds to wait for Trakt API to respond. (Use 0 to wait forever)":[null,""],"Default indexer":[null,""],"Sync libraries":[null,""],"sync your SickRage show library with your trakt show library.":[null,""],"Remove Episodes From Collection":[null,""],"remove an episode from your Trakt Collection if it is not in your SickRage Library.":[null,""],"Sync watchlist":[null,""],"sync your SickRage show watchlist with your trakt show watchlist (either Show and Episode).":[null,""],"episode will be added on watch list when wanted or snatched and will be removed when downloaded ":[null,""],"Watchlist add method":[null,""],"Skip All":[null,""],"Download Pilot Only":[null,""],"Get whole show":[null,""],"method in which to download episodes for new shows.":[null,""],"Remove episode":[null,""],"remove an episode from your watchlist after it is downloaded.":[null,""],"Remove series":[null,""],"remove the whole series from your watchlist after any download.":[null,""],"Remove watched show":[null,""],"remove the show from sickrage if it's ended and completely watched":[null,""],"Start paused":[null,""],"shows grabbed from your trakt watchlist start paused.":[null,""],"Trakt blackList name":[null,""],"name (slug) of list on Trakt for blacklisting show on 'Add Trending Show' & 'Add Recommended Shows' pages":[null,""],"Email":[null,""],"Allows configuration of email notifications on a per show basis.":[null,""],"send email notifications?":[null,""],"SMTP host":[null,""],"hostname of your SMTP email server.":[null,""],"SMTP port":[null,""],"port number used to connect to your SMTP host.":[null,""],"SMTP from":[null,""],"sender email address, some hosts require a real address.":[null,""],"Use TLS":[null,""],"check to use TLS encryption.":[null,""],"SMTP user":[null,""],"(optional) your SMTP server username.":[null,""],"SMTP password":[null,""],"(optional) your SMTP server password.":[null,""],"Global email list":[null,""],"email addresses listed here, separated by commas if applicable, will<br> receive notifications for <b>all</b> shows.":[null,""],"(This field may be blank except when testing.)":[null,""],"Email Subject":[null,""],"use a custom subject for some privacy protection?":[null,""],"(leave blank for the default SickRage subject)":[null,""],"configure per-show notifications here by entering email address(es), separated by commas,":[null,""],"after selecting a show in the drop-down box. Be sure to activate the 'Save for this show'":[null,""],"button below after each entry.":[null,""],"Slack":[null,""],"Slack brings all your communication together in one place. It's real-time messaging, archiving and search for modern teams.":[null,""],"should SickRage post messages on Slack?":[null,""],"Slack Incoming Webhook":[null,""],"Discord":[null,""],"All-in-one voice and text chat for gamers that's free, secure, and works on both your desktop and phone.":[null,""],"Should SickRage post messages on Discord?":[null,""],"Discord Incoming Webhook":[null,""],"Create webhook under channel settings.":[null,""],"Discord Bot Name":[null,""],"Blank will use webhook default Name.":[null,""],"Discord Avatar URL":[null,""],"Blank will use webhook default Avatar.":[null,""],"Discord TTS":[null,""],"Send notifications using text-to-speech":[null,""],"Post-Processing":[null,""],"Episode Naming":[null,""],"Metadata":[null,""],"Settings that dictate how SickRage should process completed downloads.":[null,""],"enable the automatic post processor to scan and process any files in your Post Processing Dir":[null,""],"do not use if you use an external Post Processing script":[null,""],"Post Processing Dir":[null,""],"the folder where your download client puts the completed TV downloads.":[null,""],"please use seperate downloading and completed folders in your download client if possible.":[null,""],"Processing Method":[null,""],"what method should be used to put files into the library?":[null,""],"if you keep seeding torrents after they finish, please avoid the 'move' processing method to prevent errors.":[null,""],"Auto Post-Processing Frequency":[null,""],"time in minutes to check for new files to auto post-process (min 10)":[null,""],"Postpone post processing":[null,""],"wait to process a folder if sync files are present.":[null,""],"Sync File Extensions":[null,""],"comma seperated list of extensions or filename globs SickRage ignores when Post Processing":[null,""],"Rename Episodes":[null,""],"rename episode using the Episode Naming settings?":[null,""],"Create missing show directories":[null,""],"create missing show directories when they get deleted":[null,""],"Add shows without directory":[null,""],"add shows without creating a directory (not recommended)":[null,""],"Move associated files":[null,""],"move associated (srt/srr/sfv/etc) files while post processing?":[null,""],"Rename .nfo file":[null,""],"rename the original .nfo file to .nfo-orig to avoid conflicts?":[null,""],"Associated file extensions":[null,""],"comma separated list of associated file extensions SickRage should keep while post processing.":[null,""],"leaving it empty means no associated files will be post processed":[null,""],"Delete non associated files":[null,""],"delete non associated files while post processing?":[null,""],"Change File Date":[null,""],"set last modified filedate to the date that the episode aired?":[null,""],"some systems may ignore this feature.":[null,""],"Timezone for File Date":[null,""],"local":[null,""],"network":[null,""],"what timezone should be used to change File Date?":[null,""],"Unpack":[null,""],"What to do with archived releases found in your <i>TV Download Dir</i>?":[null,""],"Ignore (do not process contents)":[null,""],"Unpack (process contents)":[null,""],"Treat as video (process archive as-is)":[null,""],"'Unpack' only works with RAR archives":[null,""],"Windows":[null,""],"WinRar is required on windows":[null,""],"Unpack Directory":[null,""],"Choose a path to unpack files, leave blank to unpack in download dir":[null,""],"Unrar Location":[null,""],"add the path to unrar if it is not in the system path":[null,""],"Alternate Unrar Tool":[null,""],"add the path to an alternate unrar tool if it is not in the system path":[null,""],"Delete RAR contents":[null,""],"delete content of RAR files, even if Process Method not set to move?":[null,""],"only working with RAR archive":[null,""],"Don't delete empty folders":[null,""],"leave empty folders when Post Processing?":[null,""],"can be overridden using manual Post Processing":[null,""],"Follow symbolic-links":[null,""],"follow down symbolic links in download directory?":[null,""],"<b>EXPERTS ONLY.</b><br>Enable only if you know what <b>circular symbolic links</b> are,<br>and can <b>verify that you have none</b>.":[null,""],"Use icacls":[null,""],"Windows only":[null,""],"sets video permissions after using the move method in post processing":[null,""],"Extra Scripts":[null,""],"see":[null,""],"for script arguments description and usage.":[null,""],"How SickRage will name and sort your episodes.":[null,""],"Name Pattern":[null,""],"Toggle Naming Legend":[null,""],"don't forget to add quality pattern. Otherwise after post-processing the episode will have UNKNOWN quality":[null,""],"Meaning":[null,""],"Pattern":[null,""],"Result":[null,""],"Use lower case if you want lower case names (eg. %sn, %e.n, %q_n etc)":[null,""],"Show Name":[null,""],"Show.Name":[null,""],"Show_Name":[null,""],"Season Number":[null,""],"XEM Season Number":[null,""],"Episode Number":[null,""],"XEM Episode Number":[null,""],"Episode Name":[null,""],"Episode.Name":[null,""],"Episode_Name":[null,""],"Air Date":[null,""],"Post-Processing Date":[null,""],"Quality":[null,""],"Scene Quality":[null,""],"Release Name":[null,""],"SickRage' is used in place of RLSGROUP if it could not be properly detected":[null,""],"Release Group":[null,""],"If episode is proper/repack add 'proper' to name.":[null,""],"Release Type":[null,""],"Multi-Episode Style":[null,""],"Single-EP Sample":[null,""],"Multi-EP sample":[null,""],"Strip Show Year":[null,""],"remove the TV show's year when renaming the file?":[null,""],"only applies to shows that have year inside parentheses":[null,""],"Custom Air-By-Date":[null,""],"name air-by-date shows differently than regular shows?":[null,""],"Toggle ABD Naming Legend":[null,""],"Regular Air Date":[null,""],"Year":[null,""],"Month":[null,""],"Day":[null,""],"Multi-EP style is ignored":[null,""],"Custom Sports":[null,""],"name sports shows differently than regular shows?":[null,""],"Toggle Sports Naming Legend":[null,""],"Sports Air Date":[null,""],"Custom Anime":[null,""],"name anime shows differently than regular shows?":[null,""],"Toggle Anime Naming Legend":[null,""],">XEM Season Number":[null,""],"Single-EP Anime Sample":[null,""],"Multi-EP Anime sample":[null,""],"Add Absolute Number":[null,""],"add the absolute number to the season/episode format?":[null,""],"only applies to anime. (eg. S15E45 - 310 vs S15E45)":[null,""],"Only Absolute Number":[null,""],"replace season/episode format with absolute number":[null,""],"only applies to anime.":[null,""],"No Absolute Number":[null,""],"don't include the absolute number":[null,""],"The data associated to the data. These are files associated to a TV show in the form of images and text that, when supported, will enhance the viewing experience.":[null,""],"Metadata Type":[null,""],"toggle metadata options that you wish to be created":[null,""],"multiple targets may be used":[null,""],"Select Metadata":[null,""],"Provider Priorities":[null,""],"Provider Options":[null,""],"Configure Custom Newznab Providers":[null,""],"Configure Custom Torrent Providers":[null,""],"Check off and drag the providers into the order you want them to be used.":[null,""],"At least one provider is required but two are recommended.":[null,""],"Torrent providers can be toggled in ":[null,""],"Provider does not support backlog searches at this time.":[null,""],"Provider is <b>NOT WORKING</b>.":[null,""],"Configure individual provider settings here.":[null,""],"Check with provider's website on how to obtain an API key if needed.":[null,""],"Configure provider":[null,""],"no providers available to configure.":[null,""],"URL":[null,""],"Enable daily searches":[null,""],"enable provider to perform daily searches.":[null,""],"Enable backlog searches":[null,""],"enable provider to perform backlog searches.":[null,""],"Season search mode":[null,""],"when searching for complete seasons you can choose to have it look for season packs only, or choose to have it build a complete season from just single episodes.":[null,""],"season packs only.":[null,""],"episodes only.":[null,""],"Enable fallback":[null,""],"when searching for a complete season depending on search mode you may return no results, this helps by restarting the search using the opposite search mode.":[null,""],"Custom URL":[null,""],"the URL should include the protocol (and port if applicable). Examples: http://192.168.1.4/ or http://localhost:3000/":[null,""],"Api key":[null,""],"Digest":[null,""],"Hash":[null,""],"Passkey":[null,""],"Cookies":[null,""],"example: uid=1234;pass=567845439634987<br>note: uid and pass are not your username/password.<br>use DevTools or Firebug to get these values after logging in on your browser.":[null,""],"Pin":[null,""],"Seed ratio":[null,""],"stop transfer when ratio is reached<br>(-1 SickRage default to seed forever, or leave blank for downloader default)":[null,""],"Minimum seeders":[null,""],"Minimum leechers":[null,""],"Confirmed download":[null,""],"only download torrents from trusted or verified uploaders ?":[null,""],"Ranked torrents":[null,""],"only download ranked torrents (trusted releases)":[null,""],"English torrents":[null,""],"only download english torrents, or torrents containing english subtitles":[null,""],"For Spanish torrents":[null,""],"ONLY search on this provider if show info is defined as \"Spanish\" (avoid provider's use for VOS shows)":[null,""],"Sorting results by":[null,""],"Freeleech":[null,""],"only download <b>\"FreeLeech\"</b> torrents.":[null,""],"Category":[null,""],"select torrent with Italian subtitle":[null,""],"Configure Custom<br>Newznab Providers":[null,""],"Add and setup or remove custom Newznab providers.":[null,""],"Select provider":[null,""],"-- add new provider --":[null,""],"Provider name":[null,""],"Site URL":[null,""],"Newznab search categories":[null,""],"select your Newznab categories on the left, and click the \"update categories\" button to use them for searching.) <b>don't forget to to save the form!":[null,""],"Update Categories":[null,""],"Add":[null,""],"Delete":[null,""],"Add and setup or remove custom RSS providers.":[null,""],"RSS URL":[null,""],"Search element":[null,""],"eg: title":[null,""],"Episode Search":[null,""],"NZB Search":[null,""],"Torrent Search":[null,""],"How to manage searching with":[null,""],"Randomize Providers":[null,""],"randomize the provider search order instead of going in order of placement":[null,""],"Download propers":[null,""],"replace original download with \"Proper\" or \"Repack\" if nuked":[null,""],"Check propers every":[null,""],"24 hours":[null,""],"4 hours":[null,""],"90 mins":[null,""],"45 mins":[null,""],"15 mins":[null,""],"Backlog search day(s)":[null,""],"number of day(s) that the \"Forced Backlog Search\" will cover (e.g. 7 Days)":[null,""],"Backlog search frequency":[null,""],"time in minutes between searches (min.":[null,""],"Daily search frequency":[null,""],"Usenet retention":[null,""],"age limit in days for usenet articles to be used (e.g. 500)":[null,""],"Ignore words":[null,""],"results with one or more word from this list will be ignored<br>separate words with a comma, e.g. \"word1,word2,word3\"":[null,""],"Require words":[null,""],"results with no word from this list will be ignored<br>separate words with a comma, e.g. \"word1,word2,word3\"":[null,""],"Trackers list":[null,""],"trackers that will be added to magnets without trackers<br>separate trackers with a comma, e.g. \"tracker1,tracker2,tracker3\"":[null,""],"Ignore language names in subbed results":[null,""],"ignore subbed releases based on language names <br>\n Example: \"dk\" will ignore words: dksub, dksubs, dksubbed, dksubed <br>\n separate languages with a comma, e.g. \"lang1,lang2,lang3":[null,""],"Allow high priority":[null,""],"set downloads of recently aired episodes to high priority":[null,""],"Use Failed Downloads":[null,""],"use Failed Download Handling?":[null,""],"will only work with snatched/downloaded episodes after enabling this":[null,""],"Delete Failed":[null,""],"delete files left over from a failed download?":[null,""],"this only works if Use Failed Downloads is enabled.":[null,""],"How to handle NZB search results.":[null,""],"Search NZBs":[null,""],"enable NZB search providers":[null,""],"Send .nzb files to":[null,""],"SABnzbd server URL":[null,""],"URL to your SABnzbd server (e.g. http://localhost:8080/)":[null,""],"SABnzbd username":[null,""],"(blank for none)":[null,""],"SABnzbd password":[null,""],"SABnzbd API key":[null,""],"locate at... SABnzbd Config -> General -> API Key":[null,""],"Use SABnzbd category":[null,""],"add downloads to this category (e.g. TV)":[null,""],"Use SABnzbd category (backlog episodes)":[null,""],"add downloads of old episodes to this category (e.g. TV)":[null,""],"Use SABnzbd category for anime":[null,""],"add anime downloads to this category (e.g. anime)":[null,""],"Use SABnzbd category for anime (backlog episodes)":[null,""],"add anime downloads of old episodes to this category (e.g. anime)":[null,""],"Use forced priority":[null,""],"enable to change priority from HIGH to FORCED":[null,""],"Black hole folder location":[null,""],"<b>.nzb</b> files are stored at this location for external software to find and use":[null,""],"Connect using HTTPS":[null,""],"enable Secure control in NZBGet and set the correct Secure Port here":[null,""],"NZBget host:port":[null,""],"(e.g. localhost:6789)":[null,""],"NZBget RPC host name and port number (not NZBgetweb!)":[null,""],"NZBget username":[null,""],"locate in nzbget.conf (default:nzbget)":[null,""],"NZBget password":[null,""],"locate in nzbget.conf (default:tegbzn6789)":[null,""],"Use NZBget category":[null,""],"send downloads marked this category (e.g. TV)":[null,""],"Use NZBget category (backlog episodes)":[null,""],"send downloads of old episodes marked this category (e.g. TV)":[null,""],"Use NZBget category for anime":[null,""],"send anime downloads marked this category (e.g. anime)":[null,""],"Use NZBget category for anime (backlog episodes)":[null,""],"send anime downloads of old episodes marked this category (e.g. anime)":[null,""],"NZBget priority":[null,""],"Very low":[null,""],"Low":[null,""],"Very high":[null,""],"Force":[null,""],"priority for daily snatches (no backlog)":[null,""],"Torrent host:port":[null,""],"URL to your Synology DSM (e.g. http://localhost:5000/)":[null,""],"Client username":[null,""],"Client password":[null,""],"Downloaded files location":[null,""],"where Synology Download Station will save downloaded files (blank for client default)":[null,""],"the destination has to be a shared folder for Synology DS":[null,""],"Click below to test":[null,""],"How to handle Torrent search results.":[null,""],"Search torrents":[null,""],"enable torrent search providers":[null,""],"Send .torrent files to":[null,""],"<b>.torrent</b> files are stored at this location for external software to find and use":[null,""],"URL to your torrent client (e.g. http://localhost:8000/)":[null,""],"Torrent RPC URL":[null,""],"the path without leading and trailing slashes (e.g. transmission)":[null,""],"Http Authentication":[null,""],"Verify certificate":[null,""],"disable if you get \"Deluge: Authentication Error\" in your log":[null,""],"verify SSL certificates for HTTPS requests":[null,""],"Add label to torrent":[null,""],"(blank spaces are not allowed)":[null,""],"label plugin must be enabled in Deluge clients":[null,""],"for QBitTorrent 3.3.1 and up":[null,""],"Add label to torrent for anime":[null,""],"for QBitTorrent 3.3.1 and up ":[null,""],"where <span id=\"torrent_client\">the torrent client</span> will save downloaded files (blank for client default)":[null,""],"the destination has to be a shared folder for Synology DS</span>":[null,""],"Minimum seeding time":[null,""],"time in hours":[null,""],"(default:'0' passes blank to client and '-1' passes nothing)":[null,""],"Start torrent paused":[null,""],"add .torrent to client but do <b style=\"font-weight:900\">not</b> start downloading":[null,""],"Allow high bandwidth":[null,""],"use high bandwidth allocation if priority is high":[null,""],"Test Connection":[null,""],"Windows Shares":[null,""],"Defines your existing windows shares so that we can add them to the browse dialog":[null,""],"Share #{number}":[null,""],"Share label":[null,""],"Hostname or IP":[null,""],"Share path":[null,""],"Subtitles Search":[null,""],"Subtitles Plugin":[null,""],"Plugin Settings":[null,""],"Settings that dictate how SickRage handles subtitles search results.":[null,""],"Search Subtitles":[null,""],"Subtitle Languages":[null,""],"Subtitle Directory":[null,""],"the directory where SickRage should store your <i>Subtitles</i> files.":[null,""],"leave empty if you want store subtitle in episode path.":[null,""],"Subtitle Find Frequency":[null,""],"time in hours between scans (default: 1)":[null,""],"Include Specials":[null,""],"include the show's specials when searching for subtitles?":[null,""],"Perfect matches":[null,""],"only download subtitles that match: release group, video codec, audio codec and resolution":[null,""],"if disabled you may get out of sync subtitles":[null,""],"Subtitles History":[null,""],"log downloaded Subtitle on History page?":[null,""],"Subtitles Multi-Language":[null,""],"append language codes to subtitle filenames?":[null,""],"this option is required if you use multiple subtitle languages":[null,""],"Delete unwanted subtitles":[null,""],"enable to delete unwanted subtitle languages bundled with release":[null,""],"Embedded Subtitles":[null,""],"ignore subtitles embedded inside video file?":[null,""],"this will ignore <u>all</u> embedded subtitles for every video file!":[null,""],"Hearing Impaired Subtitles":[null,""],"download hearing impaired style subtitles?":[null,""],"See":[null,""],"for a script arguments description.":[null,""],"Additional scripts separated by <b>|</b>.":[null,""],"Scripts are called after each episode has searched and downloaded subtitles.":[null,""],"For any scripted languages, include the interpreter executable before the script. See the following example":[null,""],"For Windows:":[null,""],"For Linux / OS X:":[null,""],"Subtitle Providers":[null,""],"Check off and drag the plugins into the order you want them to be used.":[null,""],"At least one plugin is required.":[null,""]," Web-scraping plugin":[null,""],"Provider Settings":[null,""],"Set user and password for each provider":[null,""],"User Name":[null,""],"Change Show":[null,""],"Prev Show":[null,""],"Next Show":[null,""],"Jump to Season":[null,""],"Specials":[null,""],"Poster for":[null,""],"Stars":[null,""],"minutes":[null,""],"View other popular {genre} shows on trakt.tv.":[null,""],"View other popular {imdbgenre} shows on IMDB.":[null,""],"Allowed":[null,""],"Preferred":[null,""],"Originally Airs":[null,""],"Show Status":[null,""],"Default EP Status":[null,""],"Location":[null,""],"Missing":[null,""],"Scene Name":[null,""],"Required Words":[null,""],"Ignored Words":[null,""],"Size":[null,""],"Info Language":[null,""],"Subtitles SR Metadata":[null,""],"Season Folders":[null,""],"Paused":[null,""],"Air-by-Date":[null,""],"Sports":[null,""],"DVD Order":[null,""],"Scene Numbering":[null,""],"Select Filtered Episodes":[null,""],"Clear All":[null,""],"Change selected episodes to":[null,""],"Select Columns":[null,""],"Hide Episodes":[null,""],"Show Episodes":[null,""],"NFO":[null,""],"TBN":[null,""],"Episode":[null,""],"Absolute":[null,""],"Scene":[null,""],"Scene Absolute":[null,""],"File Name":[null,""],"Airdate":[null,""],"Download":[null,""],"Change the value here if scene numbering differs from the indexer episode numbering":[null,""],"Change the value here if scene absolute numbering differs from the indexer absolute numbering":[null,""],"Manual Search":[null,""],"Do you want to mark this episode as failed?":[null,""],"The episode release name will be added to the failed history, preventing it to be downloaded again.":[null,""],"Do you want to include the current episode quality in the search?":[null,""],"Choosing No will ignore any releases with the same episode quality as the one currently downloaded/snatched.":[null,""],"Download subtitle":[null,""],"Do you want to re-download the subtitle for this language?":[null,""],"It will overwrite your current subtitle":[null,""],"Format":[null,""],"Advanced":[null,""],"Main Settings":[null,""],"Show Location":[null,""],"Preferred Quality":[null,""],"Default Episode Status":[null,""],"this will set the status for future episodes.":[null,""],"this only applies to episode filenames and the contents of metadata files.":[null,""],"search for subtitles":[null,""],"Use SR Metdata":[null,""],"use SickRage metadata when searching for subtitle, this will override the autodiscovered metadata":[null,""],"pause this show (SickRage will not download episodes)":[null,""],"Format Settings":[null,""],"Air by date":[null,""],"check if the show is released as Show.03.02.2010 rather than Show.S02E03.":[null,""],"in case of an air date conflict between regular and special episodes, the later will be ignored.":[null,""],"check if the show is Anime and episodes are released as Show.265 rather than Show.S02E03":[null,""],"check if the show is a sporting or MMA event released as Show.03.02.2010 rather than Show.S02E03":[null,""],"Season folders":[null,""],"group episodes by season folder (uncheck to store in a single folder)":[null,""],"search by scene numbering (uncheck to search by indexer numbering)":[null,""],"use the DVD order instead of the air order":[null,""],"a \"Force Full Update\" is necessary, and if you have existing episodes you need to sort them manually.":[null,""],"comma-separated <i>e.g. \"word1,word2,word3</i>\"":[null,""],"search results with one or more words from this list will be ignored.":[null,""],"e.g. \"word1,word2,word3\"":[null,""],"search results with no words from this list will be ignored.":[null,""],"Scene Exception":[null,""],"this will affect episode search on NZB and torrent providers.":[null,""],"this list appends to the original show name.":[null,""],"WARNING logs":[null,""],"ERROR logs":[null,""],"There are no events to display.":[null,""],"Limit":[null,""],"Layout":[null,""],"HistoryLayout":[null,""],"Compact":[null,""],"Detailed":[null,""],"Time":[null,""],"Provider":[null,""],"Missing Provider":[null,""],"missing provider":[null,""],"Directory":[null,""],"Show Name (tvshow.nfo)":[null,""],"Indexer":[null,""],"Enter the folder containing the episode":[null,""],"Process Method to be used":[null,""],"Copy":[null,""],"Move":[null,""],"Hard Link":[null,""],"Symbolic Link":[null,""],"Symbolic Link Reversed":[null,""],"Force already Post Processed Dir/Files":[null,""],"Mark Dir/Files as priority download":[null,""],"(Check it to replace the file even if it exists at higher quality)":[null,""],"Delete files and folders":[null,""],"(Check it to delete files and folders like auto processing)":[null,""],"Don't use processing queue":[null,""],"(If checked this will return the result of the process here, but may be slow!)":[null,""],"Mark download as failed":[null,""],"Process":[null,""],"Download subtitles for this show?":[null,""],"use SickRage metadata when searching for subtitle, <br />this will override the autodiscovered metadata":[null,""],"Status for previously aired episodes":[null,""],"Status for all future episodes":[null,""],"Group episodes by season folder?":[null,""],"Is this show an Anime?":[null,""],"Is this show scene numbered?":[null,""],"Save Defaults":[null,""],"Use current values as the defaults":[null,""],"<p>Select your preferred fansub groups from the <b>Available Groups</b> and add them to the <b>Whitelist</b>. Add groups to the <b>Blacklist</b> to ignore them.</p>\n <p>The <b>Whitelist</b> is checked <i>before</i> the <b>Blacklist</b>.</p>\n <p>Groups are shown as <b>Name</b> | <b>Rating</b> | <b>Number of subbed episodes</b>.</p>\n <p>You may also add any fansub group not listed to either list manually.</p>\n <p>When doing this please note that you can only use groups listed on anidb for this anime.\n <br>If a group is not listed on anidb but subbed this anime, please correct anidb's data.</p>":[null,""],"Whitelist":[null,""],"Available Groups":[null,""],"Add to Whitelist":[null,""],"Add to Blacklist":[null,""],"Blacklist":[null,""],"Custom Group":[null,""],"Allowed Quality:":[null,""],"Preferred Quality:":[null,""],"Filter Show Name":[null,""],"Root":[null,""],"All":[null,""],"Clear Filter(s)":[null,""],"Poster":[null,"Poster"],"Small Poster":[null,""],"Banner":[null,"Banner"],"Simple":[null,""],"Next Episode":[null,""],"Progress":[null,""],"Direction":[null,""],"Ascending":[null,""],"Descending":[null,""],"Poster Size":[null,""],"Continuing":[null,""],"Ended":[null,""],"Total":[null,""],"Invalid date":[null,""],"No Network":[null,""],"Next Ep":[null,""],"Prev Ep":[null,""],"Show":[null,"Arată"],"Downloads":[null,""],"Active":[null,""],"loading":[null,""],"Loading...":[null,""],"<p><b><u>Preferred</u></b> qualities will replace those in <b><u>allowed</u></b>, even if they are lower.</p>":[null,""],"New":[null,""],"Set as Default":[null,""],"Remember me":[null,""],"Edit Selected":[null,""],"Subtitle":[null,""],"Default Ep Status":[null,""],"Update":[null,""],"Rescan":[null,""],"Rename":[null,""],"Search Subtitle":[null,""],"Force Metadata Regen":[null,""],"Snatched (Allowed)":[null,""],"Jump to Show":[null,""],"Force Backlog":[null,""],"Manage episodes with status":[null,""],"Manage":[null,""],"None of your episodes have status":[null,""],"Shows containing":[null,""],"episodes":[null,""],"Set checked shows/episodes to":[null,""],"Go":[null,""],"Select all":[null,""],"Clear all":[null,""],"Release":[null,""],"Backlog Search":[null,""],"Not in progress":[null,""],"In Progress":[null,""],"Daily Search":[null,""],"Find Propers Search":[null,""],"Propers search disabled":[null,""],"Subtitle Search":[null,""],"Subtitle search disabled":[null,""],"Search Queue":[null,""],"pending items":[null,""],"Daily":[null,""],"Manual":[null,""],"Changing any settings marked with (<span class=\"separator\">*</span>) will force a refresh of the selected shows.":[null,""],"Selected Shows":[null,""],"Root Directories":[null,""],"Current":[null,""],"Keep":[null,""],"Custom":[null,""],"Group episodes by season folder (set to \"No\" to store in a single folder).":[null,""],"Pause these shows (SickRage will not download episodes).":[null,""],"This will set the status for future episodes.":[null,""],"Search by scene numbering (set to \"No\" to search by indexer numbering).":[null,""],"Set if these shows are Anime and episodes are released as Show.265 rather than Show.S02E03":[null,""],"Set if these shows are sporting or MMA events released as Show.03.02.2010 rather than Show.S02E03.":[null,""],"In case of an air date conflict between regular and special episodes, the later will be ignored.":[null,""],"Set if these shows are released as Show.03.02.2010 rather than Show.S02E03.":[null,""],"Search for subtitles.":[null,""],"All of your episodes have {subsLanguage} subtitles.":[null,""],"Manage episodes without":[null,""],"Episodes without {subsLanguage} subtitles.":[null,""],"Episodes without {subtitleLanguage} (undefined) subtitles.":[null,""],"Download missed subtitles for selected episodes":[null,""],"Performing Restart":[null,""],"Waiting for SickRage to shut down":[null,""],"Waiting for SickRage to start again":[null,""],"Loading the default page":[null,""],"Error: The restart has timed out, perhaps something prevented SickRage from starting again?":[null,""],"Key":[null,""],"Missed":[null,""],"Today":[null,""],"Soon":[null,""],"Later":[null,""],"Subscribe":[null,""],"Date":[null,""],"View Paused":[null,""],"Hidden":[null,""],"Shown":[null,""],"Calendar":[null,"Calendar"],"List":[null,"Listă"],"Ends":[null,""],"Next Ep Name":[null,""],"Run time":[null,""],"Indexers":[null,""],"No shows for this day":[null,""],"Airs":[null,""],"Plot":[null,""],"Show Update":[null,""],"Version Check":[null,""],"Proper Finder":[null,""],"Post Process":[null,""],"Subtitles Finder":[null,""],"Scheduler":[null,""],"Alive":[null,""],"Start Time":[null,""],"Cycle Time":[null,""],"Next Run":[null,""],"Last Run":[null,""],"Silent":[null,""],"True":[null,""],"N/A":[null,""],"Show id":[null,""],"Show name":[null,""],"Priority":[null,""],"Added":[null,""],"Queue type":[null,""],"LOW":[null,""],"NORMAL":[null,""],"HIGH":[null,""],"Disk Space":[null,""],"Free space":[null,""],"TV Download Directory":[null,""],"Media Root Directories":[null,""],"Preview of the proposed name changes":[null,""],"All Seasons":[null,""],"select all":[null,""],"Rename Selected":[null,""],"Cancel Rename":[null,""],"Old Location":[null,""],"New Location":[null,""],"Trakt API did not return any results, please check your config.":[null,""],"votes":[null,""],"Remove Show":[null,""],"Level":[null,""],"Filter":[null,""],"All non-absolute folder locations are relative to ":[null,""],"Manual Post-Processing":[null,""],"Episode Status Management":[null,""],"Update PLEX":[null,""],"Update KODI":[null,""],"Update Emby":[null,""],"Missed Subtitle Management":[null,""],"Help & Info":[null,""],"Backup & Restore":[null,""],"Tools":[null,""],"Support SickRage":[null,""],"View Errors":[null,""],"View Warnings":[null,""],"View Log":[null,""],"Check For Updates":[null,""],"Restart":[null,""],"Shutdown":[null,""],"Logout":[null,""],"Server Status":[null,""],"View overview of snatched episodes":[null,""],"Episodes Downloaded":[null,""],"Memory used":[null,""],"Load time":[null,""],"Branch":[null,""],"Now":[null,""]}}}} \ No newline at end of file +{"messages":{"domain":"messages","locale_data":{"messages":{"100":[null,""],"250":[null,""],"500":[null,""],"":{"domain":"messages","plural_forms":"nplurals=3; plural=(n==1 ? 0 : (n==0 || (n%100>0 && n%100<20)) ? 1 : 2);","lang":"ro_RO"},"Drama":[null,""],"Mystery":[null,""],"Science-Fiction":[null,""],"Crime":[null,""],"Action":[null,""],"Comedy":[null,""],"Thriller":[null,""],"Animation":[null,""],"Family":[null,""],"Fantasy":[null,""],"Adventure":[null,""],"Horror":[null,""],"Film-Noir":[null,""],"Sci-Fi":[null,""],"Romance":[null,""],"Sport":[null,""],"War":[null,""],"Biography":[null,""],"History":[null,""],"Music":[null,""],"Western":[null,""],"News":[null,""],"Sitcom":[null,""],"Reality-TV":[null,""],"Documentary":[null,""],"Game-Show":[null,""],"Musical":[null,""],"Talk-Show":[null,""],"Started Download":[null,"A început descărcarea"],"Download Finished":[null,"Descărcare terminată"],"Subtitle Download Finished":[null,"Descărcarea subtitrării s-a încheiat"],"SickRage Updated":[null,"SickRage a fost actualizat"],"SickRage Updated To Commit#: ":[null,"SickRage actualizat la commit-ul#: "],"SickRage new login":[null,"Autentificare nouă la SickRage"],"New login from IP: {0}. http://geomaplookup.net/?ip={0}":[null,"Autentificare nouă de la IP-ul: {0}. http://geomaplookup.net/?ip={0}"],"Repeat":[null,""],"Repeat (Separated)":[null,""],"Extend":[null,""],"Extend (Limited)":[null,""],"Extend (Limited, E-prefixed)":[null,""],"Downloaded":[null,"Descărcat"],"Snatched":[null,""],"Snatched (Proper)":[null,""],"Failed":[null,"Eșuat"],"Snatched (Best)":[null,""],"Archived":[null,"Arhivat"],"Unknown":[null,"Necunoscut"],"Unaired":[null,"Nedifuzat"],"Skipped":[null,"Sărit"],"Wanted":[null,"Dorit"],"Ignored":[null,"Ignorat"],"Subtitled":[null,"Subtitrat"],"For best results please set the Download Station alias as":[null,""],"You can check this setting in the Synology DSM":[null,""],"Control Panel":[null,""],"Application Portal":[null,""],"Make sure you allow DSM to be embedded with iFrames too in":[null,""],"DSM Settings":[null,""],"Security":[null,""],"<No Filter>":[null,""],"Daily Searcher":[null,""],"Backlog":[null,""],"Show Updater":[null,""],"Check Version":[null,""],"Show Queue":[null,""],"Search Queue (All)":[null,""],"Search Queue (Daily Searcher)":[null,""],"Search Queue (Backlog)":[null,""],"Search Queue (Manual)":[null,""],"Search Queue (Retry/Failed)":[null,""],"Search Queue (RSS)":[null,""],"Find Propers":[null,""],"Postprocessor":[null,""],"Find Subtitles":[null,""],"Trakt Checker":[null,""],"Event":[null,""],"Error":[null,""],"Tornado":[null,""],"Thread":[null,""],"Main":[null,""],"Loading":[null,""],"New update found for SickRage, starting auto-updater":[null,""],"Update was successful":[null,""],"Update failed!":[null,""],"Backup":[null,""],"Config backup in progress...":[null,""],"Config backup successful, updating...":[null,""],"Config backup failed, aborting update":[null,""],"No update needed":[null,""],"Mako Error":[null,"Eroare de mako"],"Oops":[null,"Oops"],"Wrong API key used":[null,"Cheie greșită pentru API"],"Login":[null,"Login"],"API Key not generated":[null,"Cheia pentru API nu este generată"],"API Builder":[null,"API Builder"],"Schedule":[null,"Program"],"Test 1":[null,"Test 1"],"This is test number 1":[null,"Acesta este testul numărul 1"],"Test 2":[null,"Test 2"],"This is test number 2":[null,"Acesta este testul numărul 2"],"You're using the {branch} branch. Please use 'master' unless specifically asked":[null,""],"Invalid show parameters":[null,"Parametri invalizi pentru serial"],"Invalid parameters":[null,""],"Episode couldn't be retrieved":[null,"Episodul nu a putut fi încărcat"],"Home":[null,"Acasă"],"Show List":[null,"Lista de seriale"],"Error: Unsupported Request. Send jsonp request with 'callback' variable in the query string.":[null,""],"Success. Connected and authenticated":[null,"Succes. Conectat și autentificat"],"Authentication failed. SABnzbd expects":[null,"Autentificare a eşuat. SABnzbd aşteaptă"],"as authentication method":[null,"ca metodă de autentificare"],"Unable to connect to host":[null,"Conectare nereușită la server"],"SMS sent successfully":[null,"SMS trimis cu succes"],"Problem sending SMS: {message}":[null,"Problemă la trimiterea SMS-ului: {message}"],"Telegram notification succeeded. Check your Telegram clients to make sure it worked":[null,""],"Error sending Telegram notification: {message}":[null,""],"join notification succeeded. Check your join clients to make sure it worked":[null,""],"Error sending join notification: {message}":[null,""]," with password":[null,""],"Registered and Tested growl successfully {growl_host}":[null,""],"Registration and Testing of growl failed {growl_host}":[null,""],"Test prowl notice sent successfully":[null,""],"Test prowl notice failed":[null,""],"Boxcar2 notification succeeded. Check your Boxcar2 clients to make sure it worked":[null,""],"Error sending Boxcar2 notification":[null,""],"Pushover notification succeeded. Check your Pushover clients to make sure it worked":[null,""],"Error sending Pushover notification":[null,""],"Key verification successful":[null,""],"Unable to verify key":[null,""],"Tweet successful, check your twitter to make sure it worked":[null,""],"Error sending tweet":[null,""],"Please enter a valid account sid":[null,""],"Please enter a valid auth token":[null,""],"Please enter a valid phone sid":[null,""],"Please format the phone number as \"+1-###-###-####\"":[null,""],"Authorization successful and number ownership verified":[null,""],"Error sending sms":[null,""],"Slack message successful":[null,""],"Slack message failed":[null,""],"Discord message successful":[null,""],"Discord message failed":[null,""],"Test KODI notice sent successfully to {kodi_host}":[null,""],"Test KODI notice failed to {kodi_host}":[null,""],"Successful test notice sent to Plex Home Theater ... {plex_clients}":[null,""],"Test failed for Plex Home Theater ... {plex_clients}":[null,""],"Tested Plex Home Theater(s)":[null,""],"Successful test of Plex Media Server(s) ... {plex_servers}":[null,""],"Test failed, No Plex Media Server host specified":[null,""],"Test failed for Plex Media Server(s) ... {plex_servers}":[null,""],"Tested Plex Media Server host(s)":[null,""],"Tried sending desktop notification via libnotify":[null,""],"Test notice sent successfully to {emby_host}":[null,""],"Test notice failed to {emby_host}":[null,""],"Successfully started the scan update":[null,""],"Test failed to start the scan update":[null,""],"Test notice sent successfully to {nmj2_host}":[null,""],"Test notice failed to {nmj2_host}":[null,""],"Trakt Authorized":[null,""],"Trakt Not Authorized!":[null,""],"Test email sent successfully! Check inbox.":[null,""],"ERROR: {last_error}":[null,""],"Test NMA notice sent successfully":[null,""],"Test NMA notice failed":[null,""],"Pushalot notification succeeded. Check your Pushalot clients to make sure it worked":[null,""],"Error sending Pushalot notification":[null,""],"Pushbullet notification succeeded. Check your device to make sure it worked":[null,""],"Error sending Pushbullet notification":[null,""],"Status":[null,""],"Restarting SickRage":[null,""],"Update Failed":[null,""],"Update wasn't successful, not restarting. Check your log for more information.":[null,""],"Checking out branch":[null,""],"Already on branch":[null,""],"Invalid show ID: {show}":[null,""],"Show not in show list":[null,""],"Edit":[null,""],"This show is in the process of being downloaded - the info below is incomplete.":[null,""],"The information on this page is in the process of being updated.":[null,""],"The episodes below are currently being refreshed from disk":[null,""],"Currently downloading subtitles for this show":[null,""],"This show is queued to be refreshed.":[null,""],"This show is queued and awaiting an update.":[null,""],"This show is queued and awaiting subtitles download.":[null,""],"Resume":[null,""],"Pause":[null,""],"Remove":[null,""],"Re-scan files":[null,""],"Force Full Update":[null,""],"Update show in KODI":[null,""],"Update show in Emby":[null,""],"Hide specials":[null,""],"Show specials":[null,""],"Preview Rename":[null,""],"Download Subtitles":[null,""],"No scene exceptions":[null,""],"Invalid show ID":[null,""],"Unable to find the specified show":[null,""],"Unable to retreive Fansub Groups from AniDB.":[null,""],"Edit Show":[null,""],"Unable to refresh this show: {error}":[null,""],"New location <tt>{location}</tt> does not exist":[null,""],"Unable to update show: {error}":[null,""],"Unable to force an update on scene exceptions of the show.":[null,""],"Unable to force an update on scene numbering of the show.":[null,""],"{num_errors:d} error{plural} while saving changes:":[null,""],"{show_name} has been {paused_resumed}":[null,""],"resumed":[null,""],"paused":[null,""],"{show_name} has been {deleted_trashed} {was_deleted}":[null,""],"deleted":[null,""],"trashed":[null,""],"(media untouched)":[null,""],"(with all related media)":[null,""],"Unable to refresh this show.":[null,""],"Unable to update this show.":[null,""],"Library update command sent to KODI host(s)): {kodi_hosts}":[null,""],"Unable to contact one or more KODI host(s)): {kodi_hosts}":[null,""],"Library update command sent to Plex Media Server host: {plex_server}":[null,""],"Unable to contact Plex Media Server host: {plex_server}":[null,""],"Library update command sent to Emby host: {emby_host}":[null,""],"Unable to contact Emby host: {emby_host}":[null,""],"You must specify a show and at least one episode":[null,""],"Invalid status":[null,""],"Backlog was automatically started for the following seasons of <b>{show_name}</b>":[null,""],"Season":[null,""],"Backlog started":[null,""],"Retrying Search was automatically started for the following season of <b>{show_name}</b>":[null,""],"Retry Search started":[null,""],"You must specify a show":[null,""],"Can't rename episodes when the show dir is missing.":[null,""],"New subtitles downloaded: {new_subtitle_languages}":[null,""],"No subtitles downloaded":[null,""],"IRC":[null,""],"Could not load news from the repo. [Click here for news.md])({news_url})":[null,""],"The was a problem connecting to github, please refresh and try again":[null,""],"Could not load changes from the repo. [Click here for CHANGES.md]({changes_url})":[null,""],"Changelog":[null,""],"Post Processing":[null,""],"Add Shows":[null,""],"No folders selected.":[null,""],"New Show":[null,""],"Trending Shows":[null,""],"Popular Shows":[null,""],"Most Anticipated Shows":[null,""],"Most Collected Shows":[null,""],"Most Watched Shows":[null,""],"Most Played Shows":[null,""],"Recommended Shows":[null,""],"New Shows":[null,""],"Season Premieres":[null,""],"Existing Show":[null,""],"No root directories setup, please go back and add one.":[null,""],"Show added":[null,""],"Adding the specified show {show_name}":[null,""],"Missing params, no Indexer ID or folder: {show_to_add} and {root_dir}/{show_path}":[null,""],"Unknown error. Unable to add show due to problem with show selection.":[null,""],"Unable to add show":[null,""],"Folder {show_dir} exists already":[null,""],"Unable to create the folder {show_dir}, can't add the show":[null,""],"Adding the specified show into {show_dir}":[null,""],"Shows Added":[null,""],"Automatically added {num_shows} from their existing metadata files":[null,""],"Mass Update":[null,""],"Episode Overview":[null,""],"Missing Subtitles":[null,""],"Backlog Overview":[null,""],"Mass Edit":[null,""],"Unable to update show: {excption_format}":[null,""],"Unable to refresh show {show_name}: {excption_format}":[null,""],"Errors encountered":[null,""],"Updates":[null,""],"Refreshes":[null,""],"Renames":[null,""],"Subtitles":[null,""],"The following actions were queued":[null,""],"Failed Downloads":[null,""],"Manage Searches":[null,""],"Backlog search started":[null,""],"Daily search started":[null,""],"Find propers search started":[null,""],"Subtitle search started":[null,""],"Remove Selected":[null,""],"Clear History":[null,""],"Trim History":[null,""],"Selected history entries removed":[null,""],"History cleared":[null,""],"Removed history entries older than 30 days":[null,""],"General":[null,""],"Backup/Restore":[null,""],"Search Settings":[null,""],"Search Providers":[null,""],"Subtitles Settings":[null,""],"Notifications":[null,""],"Anime":[null,""],"SickRage Configuration":[null,""],"Config - Shares":[null,""],"Windows Shares Configuration":[null,""],"Saved Shares":[null,""],"Your Windows share settings have been saved":[null,""],"Config - General":[null,""],"General Configuration":[null,""],"Saved Defaults":[null,""],"Your \"add show\" defaults have been set to your current selections.":[null,""],"Unable to create directory {directory}, log directory not changed.":[null,""],"Unable to create directory {directory}, https cert directory not changed.":[null,""],"Unable to create directory {directory}, https key directory not changed.":[null,""],"Error(s) Saving Configuration":[null,""],"Configuration Saved":[null,""],"Config - Backup/Restore":[null,""],"Config - Episode Search":[null,""],"Config - Post Processing":[null,""],"Unpacking Not Supported, disabling unpack setting":[null,""],"You tried saving an invalid normal naming config, not saving your naming settings":[null,""],"You tried saving an invalid anime naming config, not saving your naming settings":[null,""],"Config - Providers":[null,""],"No Provider Name specified":[null,""],"No Provider Url specified":[null,""],"No Provider Api key specified":[null,""],"Config - Notifications":[null,""],"Config - Subtitles":[null,""],"Config - Anime":[null,""],"Clear Errors":[null,""],"Clear Warnings":[null,""],"Submit Errors":[null,""],"Logs & Errors":[null,""],"Log File":[null,""],"Logs":[null,""],"This is a test notification from SickRage":[null,""],"Choose Directory":[null,""],"Select log file folder location":[null,""],"Select CSS file":[null,""],"Select backup folder to save to":[null,""],"Select backup files to restore":[null,""],"Please fill out the necessary fields above.":[null,""],"<b>Step 1:</b> Confirm Authorization":[null,""],"Check blacklist name; the value needs to be a trakt slug":[null,""],"You must provide a recipient email address!":[null,""],"You didn't supply a Pushbullet api key":[null,""],"Don't forget to save your new pushbullet settings.":[null,""],"Select TV Download Directory":[null,""],"Select Unpack Directory":[null,""],"This pattern is invalid.":[null,""],"This pattern would be invalid without the folders, using it will force \"Season Folders\" on for all shows.":[null,""],"This pattern is valid.":[null,""],"Select .nzb black hole/watch location":[null,""],"Select .torrent black hole/watch location":[null,""],"Select .torrent download location":[null,""],"Minimum seeding time is":[null,""],"URL to your uTorrent client (e.g. http://localhost:8000)":[null,""],"Stop seeding when inactive for":[null,""],"URL to your Transmission client (e.g. http://localhost:9091)":[null,""],"URL to your Deluge client (e.g. http://localhost:8112)":[null,""],"IP or Hostname of your Deluge Daemon (e.g. scgi://localhost:58846)":[null,""],"URL to your Synology DS client (e.g. http://localhost:5000)":[null,""],"URL to your rTorrent client (e.g. scgi://localhost:5000 <br> or https://localhost/rutorrent/plugins/httprpc/action.php)":[null,""],"URL to your qBittorrent client (e.g. http://localhost:8080)":[null,""],"URL to your MLDonkey (e.g. http://localhost:4080)":[null,""],"URL to your putio client (e.g. http://localhost:8080)":[null,""],"<a herf=\"https://app.put.io/oauth/apps/new\" target=\"_blank\"> Create a new OAuth app for put.io</a>":[null,""],"Put.io Parent Folder":[null,""],"Put.io OAuth Token":[null,""],"Show Episodes":[null,""],"Hide Episodes":[null,""],"Select Show Location":[null,""],"Select Unprocessed Episode Folder":[null,""],"DELETED":[null,""],"Resume updating the log on this page.":[null,""],"Pause updating the log on this page.":[null,""],"searching {searchingFor}...":[null,""],"search timed out, try again or try another indexer":[null,""],"loading folders...":[null,""],"Loading...":[null,""],"You have reached this page by accident, please check the url.":[null,""],"A mako error has occured.<br>\n If this happened during an update a simple page refresh may be the solution.<br>\n Mako errors that happen during updates may be a one time error if there were significant ui changes.":[null,""],"Show/Hide Error":[null,""],"Add New Show":[null,""],"For shows that you haven't downloaded yet, this option finds a show on theTVDB.com, creates a directory for it's episodes, and adds it to SickRage.":[null,""],"Add From Trakt Lists":[null,""],"For shows that you haven't downloaded yet, this option lets you choose from a show from one of the Trakt lists to add to SickRage.":[null,""],"Add From IMDB's Popular Shows":[null,""],"View IMDB's list of the most popular shows. This feature uses IMDB's MOVIEMeter algorithm to identify popular TV Series.":[null,""],"Add Existing Shows":[null,""],"Use this option to add shows that already have a folder created on your hard drive. SickRage will scan your existing metadata/episodes and add the show accordingly.":[null,""],"Add Existing Show":[null,""],"Manage Directories":[null,""],"Customize Options":[null,""],"SickRage can add existing shows, using the current options, by using locally stored NFO/XML metadata to eliminate user interaction. If you would rather have SickRage prompt you to customize each show, then use the checkbox below.":[null,""],"Prompt me to set settings for each show":[null,""],"Displaying folders within these directories which aren't already added to SickRage":[null,""],"Submit":[null,""],"Find a show on theTVDB":[null,""],"Show retrieved from existing metadata":[null,""],"All Indexers":[null,""],"Search":[null,""],"This will only affect the language of the retrieved metadata file contents and episode filenames.":[null,""],"This <b>DOES NOT</b> allow SickRage to download non-english TV episodes!":[null,""],"Pick the parent folder":[null,""],"Pre-chosen Destination Folder":[null,""],"Customize options":[null,""],"Add Show":[null,""],"Skip Show":[null,""],"Sort By":[null,""],"Name":[null,""],"Original":[null,""],"Votes":[null,""],"Rating":[null,""],"Rating > Votes":[null,""],"Sort Order":[null,""],"Asc":[null,""],"Desc":[null,""],"Fetching of IMDB Data failed. Are you online?":[null,""],"Exception":[null,""],"Select Trakt List":[null,""],"Most Anticipated":[null,""],"Trending":[null,""],"Popular":[null,""],"Most Watched":[null,""],"Most Played":[null,""],"Most Collected":[null,""],"Recommended":[null,""],"Toggle navigation":[null,""],"Profile":[null,""],"JSONP":[null,""],"Back to SickRage":[null,""],"Parameters":[null,""],"Required":[null,""],"Description":[null,""],"Type":[null,""],"Default value":[null,""],"Allowed values":[null,""],"Playground":[null,""],"Clear":[null,""],"Yes":[null,""],"No":[null,""],"season":[null,""],"episode":[null,""],"Python Version":[null,""],"SSL Version":[null,""],"OS":[null,""],"Locale":[null,""],"User":[null,""],"Program Folder":[null,""],"Config File":[null,""],"Database File":[null,""],"Cache Folder":[null,""],"Log Folder":[null,""],"Arguments":[null,""],"Web Root":[null,""],"Website":[null,""],"Wiki":[null,""],"Source":[null,""],"IRC Chat":[null,""],"AnimeDB Settings":[null,""],"Look & Feel":[null,""],"AniDB is non-profit database of anime information that is freely open to the public":[null,""],"Enable":[null,""],"should SickRage use data from AniDB?":[null,""],"AniDB Username":[null,""],"username of your AniDB account":[null,""],"AniDB Password":[null,""],"password of your AniDB account":[null,""],"AniDB MyList":[null,""],"do you want to add the PostProcessed episodes to the MyList?":[null,""],"Look and Feel":[null,""],"How should the anime functions show and behave.":[null,""],"Split show lists":[null,""],"separate anime and normal shows in groups":[null,""],"Split in tabs":[null,""],"use tabs for when splitting show lists":[null,""],"Restore":[null,""],"Backup your main database file and config.":[null,""],"Select the folder you wish to save your backup file to":[null,""],"Restore your main database file and config.":[null,""],"Select the backup file you wish to restore":[null,""],"Misc":[null,""],"Interface":[null,""],"Advanced Settings":[null,""],"Startup options. Indexer options. Log and show file locations.":[null,""],"Some options may require a manual restart to take effect.":[null,""],"Default Indexer Language":[null,""],"for adding shows and metadata providers":[null,""],"Launch browser":[null,""],"open the SickRage home page on startup":[null,""],"Initial page":[null,""],"Shows":[null,""],"when launching SickRage interface":[null,""],"Choose hour to update shows":[null,""],"with information such as next air dates, show ended, etc. Use 15 for 3pm, 4 for 4am etc.":[null,""],"note":[null,""],"minutes are randomized each time SickRage is started":[null,""],"Send to trash for actions":[null,""],"when using show \"Remove\" and delete files":[null,""],"on scheduled deletes of the oldest log files":[null,""],"selected actions use trash (recycle bin) instead of the default permanent delete":[null,""],"Log file folder location":[null,""],"Number of Log files saved":[null,""],"number of log files saved when rotating logs (default: 5) (REQUIRES RESTART)":[null,""],"Size of Log files saved":[null,""],"maximum size in MB of the log file (default: 1MB) (REQUIRES RESTART)":[null,""],"Use initial indexer set to":[null,""],"as the default selection when adding new shows":[null,""],"Timeout show indexer at":[null,""],"seconds of inactivity when finding new shows (default:20)":[null,""],"Show root directories":[null,""],"where the files of shows are located":[null,""],"Save Changes":[null,""],"Options for software updates.":[null,""],"Check software updates":[null,""],"and display notifications when updates are available. Checks are run on startup and at the frequency set below*":[null,""],"Automatically update":[null,""],"fetch and install software updates. Updates are run on startup and in the background at the frequency set below*":[null,""],"Check the server every*":[null,""],"hours for software updates (default:1)":[null,""],"Notify on software update":[null,""],"send a message to all enabled notifiers when SickRage has been updated":[null,""],"User Interface":[null,""],"Options for visual appearance.":[null,""],"Interface Language":[null,""],"System Language":[null,""],"for appearance to take effect, save then refresh your browser":[null,""],"Display theme":[null,""],"Dark":[null,""],"Light":[null,""],"Use a background image":[null,""],"use a custom image as background for SickRage":[null,""],"Background Path":[null,""],"Path to the background image":[null,""],"Show fanart in the background":[null,""],"on the show summary page":[null,""],"Fanart transparency":[null,""],"transparency of the fanart in the background":[null,""],"Use a custom stylesheet file":[null,""],"use a custom .css file to style SickRage (for advanced users)":[null,""],"Stylesheet File Path":[null,""],"Path to the stylesheet (.css) file":[null,""],"Show all seasons":[null,""],"Sort with \"The\", \"A\", \"An\"":[null,""],"include articles (\"The\", \"A\", \"An\") when sorting show lists":[null,""],"Missed episodes range":[null,""],"set the range in days of the missed episodes in the Schedule page":[null,""],"Display fuzzy dates":[null,""],"move absolute dates into tooltips and display e.g. \"Last Thu\", \"On Tue\"":[null,""],"Trim zero padding":[null,""],"remove the leading number \"0\" shown on hour of day, and date of month":[null,""],"Date style":[null,""],"Use System Default":[null,""],"Time style":[null,""],"seconds are only shown on the History page":[null,""],"Timezone":[null,""],"Local":[null,""],"Network":[null,""],"display dates and times in either your timezone or the shows network timezone":[null,""],"use local timezone to start searching for episodes minutes after show ends (depends on your dailysearch frequency)":[null,""],"Download url":[null,""],"URL where the shows can be downloaded.":[null,""],"Web Interface":[null,""],"it is recommended that you enable a username and password to secure SickRage from being tampered with remotely.":[null,""],"these options require a manual restart to take effect.":[null,""],"API key":[null,""],"used to give 3rd party programs limited access to SickRage":[null,""],"you can try all the features of the API":[null,""],"here":[null,""],"HTTP logs":[null,""],"enable logs from the internal Tornado web server":[null,""],"HTTP username":[null,""],"set blank for no login":[null,""],"HTTP password":[null,""],"blank = no authentication":[null,""],"HTTP port":[null,""],"web port to browse and access SickRage (default:8081)":[null,""],"Notify on login":[null,""],"enable to be notified when a new login happens in webserver":[null,""],"Listen on IPv6":[null,""],"attempt binding to any available IPv6 address":[null,""],"Enable HTTPS":[null,""],"enable access to the web interface using a HTTPS address":[null,""],"HTTPS certificate":[null,""],"file name or path to HTTPS certificate":[null,""],"HTTPS key":[null,""],"file name or path to HTTPS key":[null,""],"Reverse proxy headers":[null,""],"accept the following reverse proxy headers (advanced)...":[null,""],"(X-Forwarded-For, X-Forwarded-Host, and X-Forwarded-Proto)":[null,""],"CPU throttling":[null,""],"Normal (default). High is lower and Low is higher CPU use":[null,""],"Anonymous redirect":[null,""],"backlink protection via anonymizer service, must end in \"?\"":[null,""],"Enable debug":[null,""],"enable debug logs":[null,""],"Verify SSL Certs":[null,""],"verify SSL Certificates (Disable this for broken SSL installs (Like QNAP))":[null,""],"No Restart":[null,""],"only shutdown when restarting SR":[null,""],"only select this when you have external software restarting SR automatically when it stops (like FireDaemon)":[null,""],"Encrypt passwords":[null,""],"in the <code>config.ini</code> file":[null,""],"warning":[null,""],"passwords must only contain":[null,""],"ASCII characters":[null,""],"Unprotected calendar":[null,""],"allow subscribing to the calendar without user and password":[null,""],"some services like Google Calendar only work this way":[null,""],"Google Calendar Icons":[null,""],"show an icon next to exported calendar events in Google Calendar":[null,""],"Proxy host":[null,""],"blank to disable or proxy to use when connecting to providers":[null,""],"also use global proxy setting for indexers (tvdb, xem, anidb, etc.)":[null,""],"Skip Remove Detection":[null,""],"skip detection of removed files":[null,""],"if disabled the episode will be set to the default deleted status":[null,""],"Default deleted episode status":[null,""],"define the status to be set for media file that has been deleted.":[null,""],"Archived option will keep previous downloaded quality":[null,""],"example: Downloaded (1080p WEB-DL) ==> Archived (1080p WEB-DL)":[null,""],"Options for github related features.":[null,""],"Branch version":[null,""],"error: No branches found.":[null,""],"select branch to use (restart required)":[null,""],"Authorization Type":[null,""],"Username and password":[null,""],"Personal access token":[null,""],"You must use a personal access token if you're using \"two-factor authentication\" on GitHub.":[null,""],"GitHub username":[null,""],"*** (REQUIRED FOR SUBMITTING ISSUES) ***":[null,""],"GitHub password":[null,""],"GitHub personal access token":[null,""],"Generate Token":[null,""],"Manage Tokens":[null,""],"GitHub remote for branch":[null,""],"access repo configured remotes (save then refresh browser)":[null,""],"default":[null,""],"origin":[null,""],"Git executable path":[null,""],"only needed if OS is unable to locate git from env":[null,""],"Git reset":[null,""],"removes untracked files and performs a hard reset on git branch automatically to help resolve update issues":[null,""],"Home Theater / NAS":[null,""],"Devices":[null,""],"Social":[null,""],"A free and open source cross-platform media center and home entertainment system software with a 10-foot user interface designed for the living-room TV.":[null,""],"send KODI commands?":[null,""],"Always on":[null,""],"log errors when unreachable?":[null,""],"Notify on snatch":[null,""],"send a notification when a download starts?":[null,""],"Notify on download":[null,""],"send a notification when a download finishes?":[null,""],"Notify on subtitle download":[null,""],"send a notification when subtitles are downloaded?":[null,""],"Update library":[null,""],"update KODI library when a download finishes?":[null,""],"Full library update":[null,""],"perform a full library update if update per-show fails?":[null,""],"Only update first host":[null,""],"only send library updates to the first active host?":[null,""],"KODI IP:Port":[null,""],"host running KODI (eg. 192.168.1.100:8080)":[null,""],"(multiple host strings must be separated by commas)":[null,""],"Username":[null,""],"username for your KODI server (blank for none)":[null,""],"Password":[null,""],"password for your KODI server (blank for none)":[null,""],"Click below to test.":[null,""],"Experience your media on a visually stunning, easy to use interface on your Mac connected to your TV. Your media library has never looked this good!":[null,""],"For sending notifications to Plex Home Theater (PHT) clients, use the KODI notifier with port <b>3005</b>.":[null,""],"send Plex Media Server library updates?":[null,""],"Plex Media Server Auth Token":[null,""],"auth token used by Plex":[null,""],"Update Library":[null,""],"update Plex Media Server library when a download finishes":[null,""],"Plex Media Server IP:Port":[null,""],"one or more hosts running Plex Media Server<br/>(eg. 192.168.1.1:32400, 192.168.1.2:32400)":[null,""],"HTTPS":[null,""],"use https for plex media server requests?":[null,""],"Click below to test Plex Media Server(s)":[null,""],"Test Plex Media Server":[null,""],"Plex Home Theater":[null,""],"send Plex Home Theater notifications?":[null,""],"Plex Home Theater IP:Port":[null,""],"one or more hosts running Plex Home Theater<br>(eg. 192.168.1.100:3000, 192.168.1.101:3000)":[null,""],"Click below to test Plex Home Theater(s)":[null,""],"Test Plex Home Theater":[null,""],"some Plex Home Theaters <b class=\"boldest\">do not</b> support notifications e.g. Plexapp for Samsung TVs":[null,""],"Emby":[null,""],"A home media server built using other popular open source technologies.":[null,""],"send update commands to Emby?":[null,""],"Emby IP:Port":[null,""],"host running Emby (eg. 192.168.1.100:8096)":[null,""],"Emby API Key":[null,""],"Networked Media Jukebox":[null,""],"The Networked Media Jukebox, or NMJ, is the official media jukebox interface made available for the Popcorn Hour 200-series.":[null,""],"send update commands to NMJ?":[null,""],"Popcorn IP address":[null,""],"IP address of Popcorn 200-series (eg. 192.168.1.100)":[null,""],"Get settings":[null,""],"Get Settings":[null,""],"the Popcorn Hour device must be powered on and NMJ running.":[null,""],"NMJ database":[null,""],"automatically filled via the 'Get Settings' button.":[null,""],"NMJ mount url":[null,""],"Networked Media Jukebox v2":[null,""],"The Networked Media Jukebox, or NMJv2, is the official media jukebox interface made available for the Popcorn Hour 300 & 400-series.":[null,""],"send update commands to NMJv2?":[null,""],"IP address of Popcorn 300/400-series (eg. 192.168.1.100)":[null,""],"Database location":[null,""],"Database instance":[null,""],"adjust this value if the wrong database is selected.":[null,""],"Find database":[null,""],"Find Database":[null,""],"the Popcorn Hour device must be powered on.":[null,""],"NMJv2 database":[null,""],"automatically filled via the 'Find Database' buttons.":[null,""],"Synology":[null,""],"The Synology DiskStation NAS.":[null,""],"Synology Indexer is the daemon running on the Synology NAS to build its media database.":[null,""],"send Synology notifications?":[null,""],"requires SickRage to be running on your Synology NAS.":[null,""],"Synology Indexer":[null,""],"Synology Notifier is the notification system of Synology DSM":[null,""],"send notifications to the Synology Notifier?":[null,""],"pyTivo":[null,""],"pyTivo is both an HMO and GoBack server. This notifier will load the completed downloads to your Tivo.":[null,""],"send notifications to pyTivo?":[null,""],"requires the downloaded files to be accessible by pyTivo.":[null,""],"pyTivo IP:Port":[null,""],"host running pyTivo (eg. 192.168.1.1:9032)":[null,""],"pyTivo share name":[null,""],"value used in pyTivo Web Configuration to name the share.":[null,""],"Tivo name":[null,""],"(Messages & Settings > Account & System Information > System Information > DVR name)":[null,""],"Growl":[null,""],"A cross-platform unobtrusive global notification system.":[null,""],"send Growl notifications?":[null,""],"Growl IP:Port":[null,""],"host running Growl (eg. 192.168.1.100:23053)":[null,""],"may leave blank if SickRage is on the same host.":[null,""],"otherwise Growl <b>requires</b> a password to be used.":[null,""],"Click below to register and test Growl, this is required for Growl notifications to work.":[null,""],"Register Growl":[null,""],"Prowl":[null,""],"A Growl client for iOS.":[null,""],"send Prowl notifications?":[null,""],"Prowl Message Title":[null,""],"Global Prowl API key(s)":[null,""],"Prowl API(s) listed here, separated by commas if applicable, will<br> receive notifications for <b>all</b> shows. Your Prowl API key is available at:":[null,""],"(this field may be blank except when testing.)":[null,""],"Show notification list":[null,""],"-- Select a Show --":[null,""],"Configure per-show notifications here by entering Prowl API key(s), separated by commas, '\n 'after selecting a show in the drop-down box. Be sure to activate the 'Save for this show' '\n 'button below after each entry.":[null,""],"Save for this show":[null,""],"Prowl priority":[null,""],"Very Low":[null,""],"Moderate":[null,""],"Normal":[null,""],"High":[null,""],"Emergency":[null,""],"priority of Prowl messages from SickRage.":[null,""],"Libnotify":[null,""],"The standard desktop notification API for Linux/*nix systems. This notifier will only function if the pynotify module is installed (Ubuntu/Debian package <a href=\"apt:python-notify\">python-notify</a>).":[null,""],"send Libnotify notifications?":[null,""],"Pushover":[null,""],"Pushover makes it easy to send real-time notifications to your Android and iOS devices.":[null,""],"send Pushover notifications?":[null,""],"Pushover key":[null,""],"user key of your Pushover account":[null,""],"Pushover API key":[null,""],"click here":[null,""]," to create a Pushover API key":[null,""],"Pushover devices":[null,""],"comma separated list of pushover devices you want to send notifications to":[null,""],"Pushover notification sound":[null,""],"Bike":[null,""],"Bugle":[null,""],"Cash Register":[null,""],"Classical":[null,""],"Cosmic":[null,""],"Falling":[null,""],"Gamelan":[null,""],"Incoming":[null,""],"Intermission":[null,""],"Magic":[null,""],"Mechanical":[null,""],"Piano Bar":[null,""],"Siren":[null,""],"Space Alarm":[null,""],"Tug Boat":[null,""],"Alien Alarm (long)":[null,""],"Climb (long)":[null,""],"Persistent (long)":[null,""],"Pushover Echo (long)":[null,""],"Up Down (long)":[null,""],"None (silent)":[null,""],"Device specific":[null,""],"choose notification sound to use":[null,""],"Pushover priority":[null,""],"Choose priority to use":[null,""],"Boxcar 2":[null,""],"Read your messages where and when you want them!":[null,""],"send Boxcar notifications?":[null,""],"Boxcar2 access token":[null,""],"access token for your Boxcar account.":[null,""],"NMA":[null,""],"Notify My Android":[null,""],"Notify My Android is a Prowl-like Android App and API that offers an easy way to send notifications from your application directly to your Android device.":[null,""],"send NMA notifications?":[null,""],"NMA API key":[null,""],"(multiple keys must be separated by commas, up to a maximum of 5)":[null,""],"NMA priority":[null,""],"priority of NMA messages from SickRage.":[null,""],"Pushalot":[null,""],"Pushalot is a platform for receiving custom push notifications to connected devices running Windows Phone or Windows 8.":[null,""],"send Pushalot notifications ?":[null,""],"Pushalot authorization token":[null,""],"authorization token of your Pushalot account.":[null,""],"Pushbullet":[null,""],"Pushbullet is a platform for receiving custom push notifications to connected devices running Android/iOS and desktop browsers such as Chrome, Firefox or Opera.":[null,""],"send Pushbullet notifications?":[null,""],"Pushbullet API key":[null,""],"API key of your Pushbullet account":[null,""],"Pushbullet devices":[null,""],"Update device list":[null,""],"Pushbullet channels":[null,""],"Free Mobile":[null,""],"Free Mobile is a famous French cellular network provider.<br> It provides to their customer a free SMS API.":[null,""],"send SMS notifications?":[null,""],"send a SMS when a download starts?":[null,""],"send a SMS when a download finishes?":[null,""],"send a SMS when subtitles are downloaded?":[null,""],"Free Mobile customer ID":[null,""],"it's your Free Mobile customer ID (8 digits)":[null,""],"Free Mobile API key":[null,""],"find your API key in your customer portal.":[null,""],"Click below to test your settings.":[null,""],"Telegram":[null,""],"Telegram is a cloud-based instant messaging service.":[null,""],"send Telegram notifications?":[null,""],"send a message when a download starts?":[null,""],"send a message when a download finishes?":[null,""],"send a message when subtitles are downloaded?":[null,""],"User/group ID":[null,""],"contact @myidbot on Telegram to get an ID":[null,""],"Bot API token":[null,""],"contact @BotFather on Telegram to set up one":[null,""],"Join":[null,""],"Join all of your devices together!":[null,""],"send Join notifications?":[null,""],"Device ID":[null,""],"per device specific id":[null,""]," to create a Join API key":[null,""],"Twilio":[null,""],"Twilio is a webservice API that allows you to communicate directly with a mobile number. This notifier will send a text directly to your mobile device.":[null,""],"should SickRage text your mobile device?":[null,""],"Twilio Account SID":[null,""],"account SID of your Twilio account.":[null,""],"Twilio Auth Token":[null,""],"Twilio Phone SID":[null,""],"phone SID that you would like to send the sms from":[null,""],"Your phone number":[null,""],"phone number that will receive the sms. Please use the format +1-###-###-####":[null,""],"Twitter":[null,""],"A social networking and microblogging service, enabling its users to send and read other users' messages called tweets.":[null,""],"should SickRage post tweets on Twitter?":[null,""],"you may want to use a secondary account.":[null,""],"send direct message":[null,""],"send a notification via Direct Message, not via status update":[null,""],"send DM to":[null,""],"Twitter account to send Direct Messages to (must follow you)":[null,""],"Step One":[null,""],"Request Authorization":[null,""],"Click the \"Request Authorization\" button.<br> This will open a new page containing an auth key.<br> <b>note:</b> if nothing happens check your popup blocker.":[null,""],"Step Two":[null,""],"Enter the key Twitter gave you below, and click \"Verify Key\".":[null,""],"Trakt":[null,""],"Trakt helps keep a record of what TV shows and movies you are watching. Based on your favorites, Trakt recommends additional shows and movies you'll enjoy!":[null,""],"send Trakt.tv notifications?":[null,""],"username of your Trakt account.":[null,""],"Trakt PIN":[null,""],"Get Trakt PIN":[null,""],"PIN code to authorize SickRage to access Trakt on your behalf.":[null,""],"API Timeout":[null,""],"seconds to wait for Trakt API to respond. (Use 0 to wait forever)":[null,""],"Default indexer":[null,""],"Sync libraries":[null,""],"sync your SickRage show library with your trakt show library.":[null,""],"Remove Episodes From Collection":[null,""],"remove an episode from your Trakt Collection if it is not in your SickRage Library.":[null,""],"Sync watchlist":[null,""],"sync your SickRage show watchlist with your trakt show watchlist (either Show and Episode).":[null,""],"episode will be added on watch list when wanted or snatched and will be removed when downloaded ":[null,""],"Watchlist add method":[null,""],"Skip All":[null,""],"Download Pilot Only":[null,""],"Get whole show":[null,""],"method in which to download episodes for new shows.":[null,""],"Remove episode":[null,""],"remove an episode from your watchlist after it is downloaded.":[null,""],"Remove series":[null,""],"remove the whole series from your watchlist after any download.":[null,""],"Remove watched show":[null,""],"remove the show from sickrage if it's ended and completely watched":[null,""],"Start paused":[null,""],"shows grabbed from your trakt watchlist start paused.":[null,""],"Trakt blackList name":[null,""],"name (slug) of list on Trakt for blacklisting show on 'Add Trending Show' & 'Add Recommended Shows' pages":[null,""],"Email":[null,""],"Allows configuration of email notifications on a per show basis.":[null,""],"send email notifications?":[null,""],"SMTP host":[null,""],"hostname of your SMTP email server.":[null,""],"SMTP port":[null,""],"port number used to connect to your SMTP host.":[null,""],"SMTP from":[null,""],"sender email address, some hosts require a real address.":[null,""],"Use TLS":[null,""],"check to use TLS encryption.":[null,""],"SMTP user":[null,""],"(optional) your SMTP server username.":[null,""],"SMTP password":[null,""],"(optional) your SMTP server password.":[null,""],"Global email list":[null,""],"email addresses listed here, separated by commas if applicable, will<br> receive notifications for <b>all</b> shows.":[null,""],"(This field may be blank except when testing.)":[null,""],"Email Subject":[null,""],"use a custom subject for some privacy protection?":[null,""],"(leave blank for the default SickRage subject)":[null,""],"configure per-show notifications here by entering email address(es), separated by commas,":[null,""],"after selecting a show in the drop-down box. Be sure to activate the 'Save for this show'":[null,""],"button below after each entry.":[null,""],"Slack":[null,""],"Slack brings all your communication together in one place. It's real-time messaging, archiving and search for modern teams.":[null,""],"should SickRage post messages on Slack?":[null,""],"Slack Incoming Webhook":[null,""],"Discord":[null,""],"All-in-one voice and text chat for gamers that's free, secure, and works on both your desktop and phone.":[null,""],"Should SickRage post messages on Discord?":[null,""],"Discord Incoming Webhook":[null,""],"Create webhook under channel settings.":[null,""],"Discord Bot Name":[null,""],"Blank will use webhook default Name.":[null,""],"Discord Avatar URL":[null,""],"Blank will use webhook default Avatar.":[null,""],"Discord TTS":[null,""],"Send notifications using text-to-speech":[null,""],"Post-Processing":[null,""],"Episode Naming":[null,""],"Metadata":[null,""],"Settings that dictate how SickRage should process completed downloads.":[null,""],"enable the automatic post processor to scan and process any files in your Post Processing Dir":[null,""],"do not use if you use an external Post Processing script":[null,""],"Post Processing Dir":[null,""],"the folder where your download client puts the completed TV downloads.":[null,""],"please use seperate downloading and completed folders in your download client if possible.":[null,""],"Processing Method":[null,""],"what method should be used to put files into the library?":[null,""],"if you keep seeding torrents after they finish, please avoid the 'move' processing method to prevent errors.":[null,""],"Auto Post-Processing Frequency":[null,""],"time in minutes to check for new files to auto post-process (min 10)":[null,""],"Postpone post processing":[null,""],"wait to process a folder if sync files are present.":[null,""],"Sync File Extensions":[null,""],"comma seperated list of extensions or filename globs SickRage ignores when Post Processing":[null,""],"Rename Episodes":[null,""],"rename episode using the Episode Naming settings?":[null,""],"Create missing show directories":[null,""],"create missing show directories when they get deleted":[null,""],"Add shows without directory":[null,""],"add shows without creating a directory (not recommended)":[null,""],"Move associated files":[null,""],"move associated (srt/srr/sfv/etc) files while post processing?":[null,""],"Rename .nfo file":[null,""],"rename the original .nfo file to .nfo-orig to avoid conflicts?":[null,""],"Associated file extensions":[null,""],"comma separated list of associated file extensions SickRage should keep while post processing.":[null,""],"leaving it empty means no associated files will be post processed":[null,""],"Delete non associated files":[null,""],"delete non associated files while post processing?":[null,""],"Change File Date":[null,""],"set last modified filedate to the date that the episode aired?":[null,""],"some systems may ignore this feature.":[null,""],"Timezone for File Date":[null,""],"local":[null,""],"network":[null,""],"what timezone should be used to change File Date?":[null,""],"Unpack":[null,""],"What to do with archived releases found in your <i>TV Download Dir</i>?":[null,""],"Ignore (do not process contents)":[null,""],"Unpack (process contents)":[null,""],"Treat as video (process archive as-is)":[null,""],"'Unpack' only works with RAR archives":[null,""],"Windows":[null,""],"WinRar is required on windows":[null,""],"Unpack Directory":[null,""],"Choose a path to unpack files, leave blank to unpack in download dir":[null,""],"Unrar Location":[null,""],"add the path to unrar if it is not in the system path":[null,""],"Alternate Unrar Tool":[null,""],"add the path to an alternate unrar tool if it is not in the system path":[null,""],"Delete RAR contents":[null,""],"delete content of RAR files, even if Process Method not set to move?":[null,""],"only working with RAR archive":[null,""],"Don't delete empty folders":[null,""],"leave empty folders when Post Processing?":[null,""],"can be overridden using manual Post Processing":[null,""],"Follow symbolic-links":[null,""],"follow down symbolic links in download directory?":[null,""],"<b>EXPERTS ONLY.</b><br>Enable only if you know what <b>circular symbolic links</b> are,<br>and can <b>verify that you have none</b>.":[null,""],"Use icacls":[null,""],"Windows only":[null,""],"sets video permissions after using the move method in post processing":[null,""],"Extra Scripts":[null,""],"see":[null,""],"for script arguments description and usage.":[null,""],"How SickRage will name and sort your episodes.":[null,""],"Name Pattern":[null,""],"Toggle Naming Legend":[null,""],"don't forget to add quality pattern. Otherwise after post-processing the episode will have UNKNOWN quality":[null,""],"Meaning":[null,""],"Pattern":[null,""],"Result":[null,""],"Use lower case if you want lower case names (eg. %sn, %e.n, %q_n etc)":[null,""],"Show Name":[null,""],"Show.Name":[null,""],"Show_Name":[null,""],"Season Number":[null,""],"XEM Season Number":[null,""],"Episode Number":[null,""],"XEM Episode Number":[null,""],"Episode Name":[null,""],"Episode.Name":[null,""],"Episode_Name":[null,""],"Air Date":[null,""],"Post-Processing Date":[null,""],"Quality":[null,""],"Scene Quality":[null,""],"Release Name":[null,""],"SickRage' is used in place of RLSGROUP if it could not be properly detected":[null,""],"Release Group":[null,""],"If episode is proper/repack add 'proper' to name.":[null,""],"Release Type":[null,""],"Multi-Episode Style":[null,""],"Single-EP Sample":[null,""],"Multi-EP sample":[null,""],"Strip Show Year":[null,""],"remove the TV show's year when renaming the file?":[null,""],"only applies to shows that have year inside parentheses":[null,""],"Custom Air-By-Date":[null,""],"name air-by-date shows differently than regular shows?":[null,""],"Toggle ABD Naming Legend":[null,""],"Regular Air Date":[null,""],"Year":[null,""],"Month":[null,""],"Day":[null,""],"Multi-EP style is ignored":[null,""],"Custom Sports":[null,""],"name sports shows differently than regular shows?":[null,""],"Toggle Sports Naming Legend":[null,""],"Sports Air Date":[null,""],"Custom Anime":[null,""],"name anime shows differently than regular shows?":[null,""],"Toggle Anime Naming Legend":[null,""],">XEM Season Number":[null,""],"Single-EP Anime Sample":[null,""],"Multi-EP Anime sample":[null,""],"Add Absolute Number":[null,""],"add the absolute number to the season/episode format?":[null,""],"only applies to anime. (eg. S15E45 - 310 vs S15E45)":[null,""],"Only Absolute Number":[null,""],"replace season/episode format with absolute number":[null,""],"only applies to anime.":[null,""],"No Absolute Number":[null,""],"don't include the absolute number":[null,""],"The data associated to the data. These are files associated to a TV show in the form of images and text that, when supported, will enhance the viewing experience.":[null,""],"Metadata Type":[null,""],"toggle metadata options that you wish to be created":[null,""],"multiple targets may be used":[null,""],"Select Metadata":[null,""],"Provider Priorities":[null,""],"Provider Options":[null,""],"Configure Custom Newznab Providers":[null,""],"Configure Custom Torrent Providers":[null,""],"Check off and drag the providers into the order you want them to be used.":[null,""],"At least one provider is required but two are recommended.":[null,""],"Torrent providers can be toggled in ":[null,""],"Provider does not support backlog searches at this time.":[null,""],"Provider is <b>NOT WORKING</b>.":[null,""],"Configure individual provider settings here.":[null,""],"Check with provider's website on how to obtain an API key if needed.":[null,""],"Configure provider":[null,""],"no providers available to configure.":[null,""],"URL":[null,""],"Enable daily searches":[null,""],"enable provider to perform daily searches.":[null,""],"Enable backlog searches":[null,""],"enable provider to perform backlog searches.":[null,""],"Season search mode":[null,""],"when searching for complete seasons you can choose to have it look for season packs only, or choose to have it build a complete season from just single episodes.":[null,""],"season packs only.":[null,""],"episodes only.":[null,""],"Enable fallback":[null,""],"when searching for a complete season depending on search mode you may return no results, this helps by restarting the search using the opposite search mode.":[null,""],"Custom URL":[null,""],"the URL should include the protocol (and port if applicable). Examples: http://192.168.1.4/ or http://localhost:3000/":[null,""],"Api key":[null,""],"Digest":[null,""],"Hash":[null,""],"Passkey":[null,""],"Cookies":[null,""],"example: uid=1234;pass=567845439634987<br>note: uid and pass are not your username/password.<br>use DevTools or Firebug to get these values after logging in on your browser.":[null,""],"Pin":[null,""],"Seed ratio":[null,""],"stop transfer when ratio is reached<br>(-1 SickRage default to seed forever, or leave blank for downloader default)":[null,""],"Minimum seeders":[null,""],"Minimum leechers":[null,""],"Confirmed download":[null,""],"only download torrents from trusted or verified uploaders ?":[null,""],"Ranked torrents":[null,""],"only download ranked torrents (trusted releases)":[null,""],"English torrents":[null,""],"only download english torrents, or torrents containing english subtitles":[null,""],"For Spanish torrents":[null,""],"ONLY search on this provider if show info is defined as \"Spanish\" (avoid provider's use for VOS shows)":[null,""],"Sorting results by":[null,""],"Freeleech":[null,""],"only download <b>\"FreeLeech\"</b> torrents.":[null,""],"Category":[null,""],"select torrent with Italian subtitle":[null,""],"Configure Custom<br>Newznab Providers":[null,""],"Add and setup or remove custom Newznab providers.":[null,""],"Select provider":[null,""],"-- add new provider --":[null,""],"Provider name":[null,""],"Site URL":[null,""],"Newznab search categories":[null,""],"select your Newznab categories on the left, and click the \"update categories\" button to use them for searching.) <b>don't forget to to save the form!":[null,""],"Update Categories":[null,""],"Add":[null,""],"Delete":[null,""],"Add and setup or remove custom RSS providers.":[null,""],"RSS URL":[null,""],"Search element":[null,""],"eg: title":[null,""],"Episode Search":[null,""],"NZB Search":[null,""],"Torrent Search":[null,""],"How to manage searching with":[null,""],"Randomize Providers":[null,""],"randomize the provider search order instead of going in order of placement":[null,""],"Download propers":[null,""],"replace original download with \"Proper\" or \"Repack\" if nuked":[null,""],"Check propers every":[null,""],"24 hours":[null,""],"4 hours":[null,""],"90 mins":[null,""],"45 mins":[null,""],"15 mins":[null,""],"Backlog search day(s)":[null,""],"number of day(s) that the \"Forced Backlog Search\" will cover (e.g. 7 Days)":[null,""],"Backlog search frequency":[null,""],"time in minutes between searches (min.":[null,""],"Daily search frequency":[null,""],"Usenet retention":[null,""],"age limit in days for usenet articles to be used (e.g. 500)":[null,""],"Ignore words":[null,""],"results with one or more word from this list will be ignored<br>separate words with a comma, e.g. \"word1,word2,word3\"":[null,""],"Require words":[null,""],"results with no word from this list will be ignored<br>separate words with a comma, e.g. \"word1,word2,word3\"":[null,""],"Trackers list":[null,""],"trackers that will be added to magnets without trackers<br>separate trackers with a comma, e.g. \"tracker1,tracker2,tracker3\"":[null,""],"Ignore language names in subbed results":[null,""],"ignore subbed releases based on language names <br>\n Example: \"dk\" will ignore words: dksub, dksubs, dksubbed, dksubed <br>\n separate languages with a comma, e.g. \"lang1,lang2,lang3":[null,""],"Allow high priority":[null,""],"set downloads of recently aired episodes to high priority":[null,""],"Use Failed Downloads":[null,""],"use Failed Download Handling?":[null,""],"will only work with snatched/downloaded episodes after enabling this":[null,""],"Delete Failed":[null,""],"delete files left over from a failed download?":[null,""],"this only works if Use Failed Downloads is enabled.":[null,""],"How to handle NZB search results.":[null,""],"Search NZBs":[null,""],"enable NZB search providers":[null,""],"Send .nzb files to":[null,""],"SABnzbd server URL":[null,""],"URL to your SABnzbd server (e.g. http://localhost:8080/)":[null,""],"SABnzbd username":[null,""],"(blank for none)":[null,""],"SABnzbd password":[null,""],"SABnzbd API key":[null,""],"locate at... SABnzbd Config -> General -> API Key":[null,""],"Use SABnzbd category":[null,""],"add downloads to this category (e.g. TV)":[null,""],"Use SABnzbd category (backlog episodes)":[null,""],"add downloads of old episodes to this category (e.g. TV)":[null,""],"Use SABnzbd category for anime":[null,""],"add anime downloads to this category (e.g. anime)":[null,""],"Use SABnzbd category for anime (backlog episodes)":[null,""],"add anime downloads of old episodes to this category (e.g. anime)":[null,""],"Use forced priority":[null,""],"enable to change priority from HIGH to FORCED":[null,""],"Black hole folder location":[null,""],"<b>.nzb</b> files are stored at this location for external software to find and use":[null,""],"Connect using HTTPS":[null,""],"enable Secure control in NZBGet and set the correct Secure Port here":[null,""],"NZBget host:port":[null,""],"(e.g. localhost:6789)":[null,""],"NZBget RPC host name and port number (not NZBgetweb!)":[null,""],"NZBget username":[null,""],"locate in nzbget.conf (default:nzbget)":[null,""],"NZBget password":[null,""],"locate in nzbget.conf (default:tegbzn6789)":[null,""],"Use NZBget category":[null,""],"send downloads marked this category (e.g. TV)":[null,""],"Use NZBget category (backlog episodes)":[null,""],"send downloads of old episodes marked this category (e.g. TV)":[null,""],"Use NZBget category for anime":[null,""],"send anime downloads marked this category (e.g. anime)":[null,""],"Use NZBget category for anime (backlog episodes)":[null,""],"send anime downloads of old episodes marked this category (e.g. anime)":[null,""],"NZBget priority":[null,""],"Very low":[null,""],"Low":[null,""],"Very high":[null,""],"Force":[null,""],"priority for daily snatches (no backlog)":[null,""],"Torrent host:port":[null,""],"URL to your Synology DSM (e.g. http://localhost:5000/)":[null,""],"Client username":[null,""],"Client password":[null,""],"Downloaded files location":[null,""],"where Synology Download Station will save downloaded files (blank for client default)":[null,""],"the destination has to be a shared folder for Synology DS":[null,""],"Click below to test":[null,""],"How to handle Torrent search results.":[null,""],"Search torrents":[null,""],"enable torrent search providers":[null,""],"Send .torrent files to":[null,""],"<b>.torrent</b> files are stored at this location for external software to find and use":[null,""],"URL to your torrent client (e.g. http://localhost:8000/)":[null,""],"Torrent RPC URL":[null,""],"the path without leading and trailing slashes (e.g. transmission)":[null,""],"Http Authentication":[null,""],"Verify certificate":[null,""],"disable if you get \"Deluge: Authentication Error\" in your log":[null,""],"verify SSL certificates for HTTPS requests":[null,""],"Add label to torrent":[null,""],"(blank spaces are not allowed)":[null,""],"label plugin must be enabled in Deluge clients":[null,""],"for QBitTorrent 3.3.1 and up":[null,""],"Add label to torrent for anime":[null,""],"for QBitTorrent 3.3.1 and up ":[null,""],"where <span id=\"torrent_client\">the torrent client</span> will save downloaded files (blank for client default)":[null,""],"the destination has to be a shared folder for Synology DS</span>":[null,""],"Minimum seeding time":[null,""],"time in hours":[null,""],"(default:'0' passes blank to client and '-1' passes nothing)":[null,""],"Start torrent paused":[null,""],"add .torrent to client but do <b style=\"font-weight:900\">not</b> start downloading":[null,""],"Allow high bandwidth":[null,""],"use high bandwidth allocation if priority is high":[null,""],"Test Connection":[null,""],"Windows Shares":[null,""],"Defines your existing windows shares so that we can add them to the browse dialog":[null,""],"Share #{number}":[null,""],"Share label":[null,""],"Hostname or IP":[null,""],"Share path":[null,""],"Subtitles Search":[null,""],"Subtitles Plugin":[null,""],"Plugin Settings":[null,""],"Settings that dictate how SickRage handles subtitles search results.":[null,""],"Search Subtitles":[null,""],"Subtitle Languages":[null,""],"Subtitle Directory":[null,""],"the directory where SickRage should store your <i>Subtitles</i> files.":[null,""],"leave empty if you want store subtitle in episode path.":[null,""],"Subtitle Find Frequency":[null,""],"time in hours between scans (default: 1)":[null,""],"Include Specials":[null,""],"include the show's specials when searching for subtitles?":[null,""],"Perfect matches":[null,""],"only download subtitles that match: release group, video codec, audio codec and resolution":[null,""],"if disabled you may get out of sync subtitles":[null,""],"Subtitles History":[null,""],"log downloaded Subtitle on History page?":[null,""],"Subtitles Multi-Language":[null,""],"append language codes to subtitle filenames?":[null,""],"this option is required if you use multiple subtitle languages":[null,""],"Delete unwanted subtitles":[null,""],"enable to delete unwanted subtitle languages bundled with release":[null,""],"Embedded Subtitles":[null,""],"ignore subtitles embedded inside video file?":[null,""],"this will ignore <u>all</u> embedded subtitles for every video file!":[null,""],"Hearing Impaired Subtitles":[null,""],"download hearing impaired style subtitles?":[null,""],"See":[null,""],"for a script arguments description.":[null,""],"Additional scripts separated by <b>|</b>.":[null,""],"Scripts are called after each episode has searched and downloaded subtitles.":[null,""],"For any scripted languages, include the interpreter executable before the script. See the following example":[null,""],"For Windows:":[null,""],"For Linux / OS X:":[null,""],"Subtitle Providers":[null,""],"Check off and drag the plugins into the order you want them to be used.":[null,""],"At least one plugin is required.":[null,""]," Web-scraping plugin":[null,""],"Provider Settings":[null,""],"Set user and password for each provider":[null,""],"User Name":[null,""],"Change Show":[null,""],"Prev Show":[null,""],"Next Show":[null,""],"Jump to Season":[null,""],"Specials":[null,""],"Poster for":[null,""],"Stars":[null,""],"minutes":[null,""],"View other popular {genre} shows on trakt.tv.":[null,""],"View other popular {imdbgenre} shows on IMDB.":[null,""],"Allowed":[null,""],"Preferred":[null,""],"Originally Airs":[null,""],"Show Status":[null,""],"Default EP Status":[null,""],"Location":[null,""],"Missing":[null,""],"Scene Name":[null,""],"Required Words":[null,""],"Ignored Words":[null,""],"Size":[null,""],"Info Language":[null,""],"Subtitles SR Metadata":[null,""],"Season Folders":[null,""],"Paused":[null,""],"Air-by-Date":[null,""],"Sports":[null,""],"DVD Order":[null,""],"Scene Numbering":[null,""],"Select Filtered Episodes":[null,""],"Clear All":[null,""],"Change selected episodes to":[null,""],"Select Columns":[null,""],"NFO":[null,""],"TBN":[null,""],"Episode":[null,""],"Absolute":[null,""],"Scene":[null,""],"Scene Absolute":[null,""],"File Name":[null,""],"Airdate":[null,""],"Download":[null,""],"Change the value here if scene numbering differs from the indexer episode numbering":[null,""],"Change the value here if scene absolute numbering differs from the indexer absolute numbering":[null,""],"Manual Search":[null,""],"Do you want to mark this episode as failed?":[null,""],"The episode release name will be added to the failed history, preventing it to be downloaded again.":[null,""],"Do you want to include the current episode quality in the search?":[null,""],"Choosing No will ignore any releases with the same episode quality as the one currently downloaded/snatched.":[null,""],"Download subtitle":[null,""],"Do you want to re-download the subtitle for this language?":[null,""],"It will overwrite your current subtitle":[null,""],"Format":[null,""],"Advanced":[null,""],"Main Settings":[null,""],"Show Location":[null,""],"Preferred Quality":[null,""],"Default Episode Status":[null,""],"this will set the status for future episodes.":[null,""],"this only applies to episode filenames and the contents of metadata files.":[null,""],"search for subtitles":[null,""],"Use SR Metdata":[null,""],"use SickRage metadata when searching for subtitle, this will override the autodiscovered metadata":[null,""],"pause this show (SickRage will not download episodes)":[null,""],"Format Settings":[null,""],"Air by date":[null,""],"check if the show is released as Show.03.02.2010 rather than Show.S02E03.":[null,""],"in case of an air date conflict between regular and special episodes, the later will be ignored.":[null,""],"check if the show is Anime and episodes are released as Show.265 rather than Show.S02E03":[null,""],"check if the show is a sporting or MMA event released as Show.03.02.2010 rather than Show.S02E03":[null,""],"Season folders":[null,""],"group episodes by season folder (uncheck to store in a single folder)":[null,""],"search by scene numbering (uncheck to search by indexer numbering)":[null,""],"use the DVD order instead of the air order":[null,""],"a \"Force Full Update\" is necessary, and if you have existing episodes you need to sort them manually.":[null,""],"comma-separated <i>e.g. \"word1,word2,word3</i>\"":[null,""],"search results with one or more words from this list will be ignored.":[null,""],"e.g. \"word1,word2,word3\"":[null,""],"search results with no words from this list will be ignored.":[null,""],"Scene Exception":[null,""],"this will affect episode search on NZB and torrent providers.":[null,""],"this list appends to the original show name.":[null,""],"WARNING logs":[null,""],"ERROR logs":[null,""],"There are no events to display.":[null,""],"Limit":[null,""],"Layout":[null,""],"HistoryLayout":[null,""],"Compact":[null,""],"Detailed":[null,""],"Time":[null,""],"Provider":[null,""],"Missing Provider":[null,""],"missing provider":[null,""],"Directory":[null,""],"Show Name (tvshow.nfo)":[null,""],"Indexer":[null,""],"Enter the folder containing the episode":[null,""],"Process Method to be used":[null,""],"Copy":[null,""],"Move":[null,""],"Hard Link":[null,""],"Symbolic Link":[null,""],"Symbolic Link Reversed":[null,""],"Force already Post Processed Dir/Files":[null,""],"Mark Dir/Files as priority download":[null,""],"(Check it to replace the file even if it exists at higher quality)":[null,""],"Delete files and folders":[null,""],"(Check it to delete files and folders like auto processing)":[null,""],"Don't use processing queue":[null,""],"(If checked this will return the result of the process here, but may be slow!)":[null,""],"Mark download as failed":[null,""],"Process":[null,""],"Download subtitles for this show?":[null,""],"use SickRage metadata when searching for subtitle, <br />this will override the autodiscovered metadata":[null,""],"Status for previously aired episodes":[null,""],"Status for all future episodes":[null,""],"Group episodes by season folder?":[null,""],"Is this show an Anime?":[null,""],"Is this show scene numbered?":[null,""],"Save Defaults":[null,""],"Use current values as the defaults":[null,""],"<p>Select your preferred fansub groups from the <b>Available Groups</b> and add them to the <b>Whitelist</b>. Add groups to the <b>Blacklist</b> to ignore them.</p>\n <p>The <b>Whitelist</b> is checked <i>before</i> the <b>Blacklist</b>.</p>\n <p>Groups are shown as <b>Name</b> | <b>Rating</b> | <b>Number of subbed episodes</b>.</p>\n <p>You may also add any fansub group not listed to either list manually.</p>\n <p>When doing this please note that you can only use groups listed on anidb for this anime.\n <br>If a group is not listed on anidb but subbed this anime, please correct anidb's data.</p>":[null,""],"Whitelist":[null,""],"Available Groups":[null,""],"Add to Whitelist":[null,""],"Add to Blacklist":[null,""],"Blacklist":[null,""],"Custom Group":[null,""],"Allowed Quality:":[null,""],"Preferred Quality:":[null,""],"Filter Show Name":[null,""],"Root":[null,""],"All":[null,""],"Clear Filter(s)":[null,""],"Poster":[null,"Poster"],"Small Poster":[null,""],"Banner":[null,"Banner"],"Simple":[null,""],"Next Episode":[null,""],"Progress":[null,""],"Direction":[null,""],"Ascending":[null,""],"Descending":[null,""],"Poster Size":[null,""],"Continuing":[null,""],"Ended":[null,""],"Total":[null,""],"Invalid date":[null,""],"No Network":[null,""],"Next Ep":[null,""],"Prev Ep":[null,""],"Show":[null,"Arată"],"Downloads":[null,""],"Active":[null,""],"loading":[null,""],"<p><b><u>Preferred</u></b> qualities will replace those in <b><u>allowed</u></b>, even if they are lower.</p>":[null,""],"New":[null,""],"Set as Default":[null,""],"Remember me":[null,""],"Edit Selected":[null,""],"Subtitle":[null,""],"Default Ep Status":[null,""],"Update":[null,""],"Rescan":[null,""],"Rename":[null,""],"Search Subtitle":[null,""],"Force Metadata Regen":[null,""],"Snatched (Allowed)":[null,""],"Jump to Show":[null,""],"Force Backlog":[null,""],"Manage episodes with status":[null,""],"Manage":[null,""],"None of your episodes have status":[null,""],"Shows containing":[null,""],"episodes":[null,""],"Set checked shows/episodes to":[null,""],"Go":[null,""],"Select all":[null,""],"Clear all":[null,""],"Release":[null,""],"Backlog Search":[null,""],"Not in progress":[null,""],"In Progress":[null,""],"Daily Search":[null,""],"Find Propers Search":[null,""],"Propers search disabled":[null,""],"Subtitle Search":[null,""],"Subtitle search disabled":[null,""],"Search Queue":[null,""],"pending items":[null,""],"Daily":[null,""],"Manual":[null,""],"Changing any settings marked with (<span class=\"separator\">*</span>) will force a refresh of the selected shows.":[null,""],"Selected Shows":[null,""],"Root Directories":[null,""],"Current":[null,""],"Keep":[null,""],"Custom":[null,""],"Group episodes by season folder (set to \"No\" to store in a single folder).":[null,""],"Pause these shows (SickRage will not download episodes).":[null,""],"This will set the status for future episodes.":[null,""],"Search by scene numbering (set to \"No\" to search by indexer numbering).":[null,""],"Set if these shows are Anime and episodes are released as Show.265 rather than Show.S02E03":[null,""],"Set if these shows are sporting or MMA events released as Show.03.02.2010 rather than Show.S02E03.":[null,""],"In case of an air date conflict between regular and special episodes, the later will be ignored.":[null,""],"Set if these shows are released as Show.03.02.2010 rather than Show.S02E03.":[null,""],"Search for subtitles.":[null,""],"All of your episodes have {subsLanguage} subtitles.":[null,""],"Manage episodes without":[null,""],"Episodes without {subsLanguage} subtitles.":[null,""],"Episodes without {subtitleLanguage} (undefined) subtitles.":[null,""],"Download missed subtitles for selected episodes":[null,""],"Performing Restart":[null,""],"Waiting for SickRage to shut down":[null,""],"Waiting for SickRage to start again":[null,""],"Loading the default page":[null,""],"Error: The restart has timed out, perhaps something prevented SickRage from starting again?":[null,""],"Key":[null,""],"Missed":[null,""],"Today":[null,""],"Soon":[null,""],"Later":[null,""],"Subscribe":[null,""],"Date":[null,""],"View Paused":[null,""],"Hidden":[null,""],"Shown":[null,""],"Calendar":[null,"Calendar"],"List":[null,"Listă"],"Ends":[null,""],"Next Ep Name":[null,""],"Run time":[null,""],"Indexers":[null,""],"No shows for this day":[null,""],"Airs":[null,""],"Plot":[null,""],"Show Update":[null,""],"Version Check":[null,""],"Proper Finder":[null,""],"Post Process":[null,""],"Subtitles Finder":[null,""],"Scheduler":[null,""],"Alive":[null,""],"Start Time":[null,""],"Cycle Time":[null,""],"Next Run":[null,""],"Last Run":[null,""],"Silent":[null,""],"True":[null,""],"N/A":[null,""],"Show id":[null,""],"Show name":[null,""],"Priority":[null,""],"Added":[null,""],"Queue type":[null,""],"LOW":[null,""],"NORMAL":[null,""],"HIGH":[null,""],"Disk Space":[null,""],"Free space":[null,""],"TV Download Directory":[null,""],"Media Root Directories":[null,""],"Preview of the proposed name changes":[null,""],"All Seasons":[null,""],"select all":[null,""],"Rename Selected":[null,""],"Cancel Rename":[null,""],"Old Location":[null,""],"New Location":[null,""],"Trakt API did not return any results, please check your config.":[null,""],"votes":[null,""],"Remove Show":[null,""],"Level":[null,""],"Filter":[null,""],"All non-absolute folder locations are relative to ":[null,""],"Manual Post-Processing":[null,""],"Episode Status Management":[null,""],"Update PLEX":[null,""],"Update KODI":[null,""],"Update Emby":[null,""],"Manage Torrents":[null,""],"Missed Subtitle Management":[null,""],"Help & Info":[null,""],"Backup & Restore":[null,""],"Tools":[null,""],"Support SickRage":[null,""],"View Errors":[null,""],"View Warnings":[null,""],"View Log":[null,""],"Check For Updates":[null,""],"Restart":[null,""],"Shutdown":[null,""],"Logout":[null,""],"Server Status":[null,""],"View overview of snatched episodes":[null,""],"Episodes Downloaded":[null,""],"Memory used":[null,""],"Load time":[null,""],"Branch":[null,""],"Now":[null,""]}}}} \ No newline at end of file diff --git a/locale/ro_RO/LC_MESSAGES/messages.mo b/locale/ro_RO/LC_MESSAGES/messages.mo index 35428d1147eee8281a894f41ef6ac124243cc7dd..1d316886bb7fed14a6f987242f4e4f8f270bcaaa 100644 Binary files a/locale/ro_RO/LC_MESSAGES/messages.mo and b/locale/ro_RO/LC_MESSAGES/messages.mo differ diff --git a/locale/ro_RO/LC_MESSAGES/messages.po b/locale/ro_RO/LC_MESSAGES/messages.po index 5cb5f15cce4e7911fb8090a5944e3514479b24a7..e613bf91615db02dc28ec330cd90817e1df79ebd 100644 --- a/locale/ro_RO/LC_MESSAGES/messages.po +++ b/locale/ro_RO/LC_MESSAGES/messages.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: sickrage\n" "Report-Msgid-Bugs-To: miigotu@gmail.com\n" -"POT-Creation-Date: 2017-03-25 09:28-0700\n" -"PO-Revision-Date: 2017-03-25 12:30-0400\n" +"POT-Creation-Date: 2017-03-28 09:10-0700\n" +"PO-Revision-Date: 2017-03-28 12:13-0400\n" "Last-Translator: miigotu <miigotu@gmail.com>\n" "Language-Team: Romanian\n" "MIME-Version: 1.0\n" @@ -90,7 +90,7 @@ msgid "Biography" msgstr "" #: gui/slick/views/config_general.mako:78 gui/slick/views/layouts/main.mako:145 -#: sickbeard/__init__.py:79 sickbeard/webserve.py:3807 +#: sickbeard/__init__.py:79 sickbeard/webserve.py:3778 msgid "History" msgstr "" @@ -103,7 +103,7 @@ msgid "Western" msgstr "" #: gui/slick/views/config_general.mako:79 gui/slick/views/layouts/main.mako:221 -#: sickbeard/__init__.py:80 sickbeard/webserve.py:2385 +#: sickbeard/__init__.py:80 sickbeard/webserve.py:2384 msgid "News" msgstr "" @@ -238,6 +238,34 @@ msgstr "Ignorat" msgid "Subtitled" msgstr "Subtitrat" +#: sickbeard/helpers.py:1887 +msgid "For best results please set the Download Station alias as" +msgstr "" + +#: sickbeard/helpers.py:1888 +msgid "You can check this setting in the Synology DSM" +msgstr "" + +#: sickbeard/helpers.py:1888 sickbeard/helpers.py:1890 +msgid "Control Panel" +msgstr "" + +#: sickbeard/helpers.py:1888 +msgid "Application Portal" +msgstr "" + +#: sickbeard/helpers.py:1889 +msgid "Make sure you allow DSM to be embedded with iFrames too in" +msgstr "" + +#: sickbeard/helpers.py:1890 +msgid "DSM Settings" +msgstr "" + +#: sickbeard/helpers.py:1890 +msgid "Security" +msgstr "" + #: sickbeard/logger.py:474 msgid "<No Filter>" msgstr "" @@ -308,15 +336,15 @@ msgstr "" msgid "Event" msgstr "" -#: sickbeard/logger.py:491 sickbeard/webserve.py:1339 sickbeard/webserve.py:1342 -#: sickbeard/webserve.py:1520 sickbeard/webserve.py:1529 sickbeard/webserve.py:1717 -#: sickbeard/webserve.py:1728 sickbeard/webserve.py:1751 sickbeard/webserve.py:1764 -#: sickbeard/webserve.py:1769 sickbeard/webserve.py:1785 sickbeard/webserve.py:1790 -#: sickbeard/webserve.py:1854 sickbeard/webserve.py:1857 sickbeard/webserve.py:1863 -#: sickbeard/webserve.py:1866 sickbeard/webserve.py:1873 sickbeard/webserve.py:1876 -#: sickbeard/webserve.py:1899 sickbeard/webserve.py:1997 sickbeard/webserve.py:2002 -#: sickbeard/webserve.py:2007 sickbeard/webserve.py:2036 sickbeard/webserve.py:2040 -#: sickbeard/webserve.py:2045 +#: sickbeard/logger.py:491 sickbeard/webserve.py:1338 sickbeard/webserve.py:1341 +#: sickbeard/webserve.py:1519 sickbeard/webserve.py:1528 sickbeard/webserve.py:1716 +#: sickbeard/webserve.py:1727 sickbeard/webserve.py:1750 sickbeard/webserve.py:1763 +#: sickbeard/webserve.py:1768 sickbeard/webserve.py:1784 sickbeard/webserve.py:1789 +#: sickbeard/webserve.py:1853 sickbeard/webserve.py:1856 sickbeard/webserve.py:1862 +#: sickbeard/webserve.py:1865 sickbeard/webserve.py:1872 sickbeard/webserve.py:1875 +#: sickbeard/webserve.py:1898 sickbeard/webserve.py:1996 sickbeard/webserve.py:2001 +#: sickbeard/webserve.py:2006 sickbeard/webserve.py:2035 sickbeard/webserve.py:2039 +#: sickbeard/webserve.py:2044 msgid "Error" msgstr "" @@ -333,6 +361,7 @@ msgstr "" msgid "Main" msgstr "" +#: gui/slick/js/ajaxEpSearch.js:146 gui/slick/js/ajaxEpSearch.js:147 #: gui/slick/views/inc_home_showList.mako:27 sickbeard/show_queue.py:298 msgid "Loading" msgstr "" @@ -372,867 +401,835 @@ msgstr "" msgid "No update needed" msgstr "" -#: sickbeard/webserve.py:170 +#: sickbeard/webserve.py:171 msgid "Mako Error" msgstr "Eroare de mako" -#: sickbeard/webserve.py:195 +#: sickbeard/webserve.py:196 msgid "Oops" msgstr "Oops" -#: sickbeard/webserve.py:197 +#: sickbeard/webserve.py:198 msgid "Wrong API key used" msgstr "Cheie greșită pentru API" -#: gui/slick/views/login.mako:34 sickbeard/webserve.py:302 +#: gui/slick/views/login.mako:34 sickbeard/webserve.py:303 msgid "Login" msgstr "Login" -#: sickbeard/webserve.py:406 +#: sickbeard/webserve.py:392 msgid "API Key not generated" msgstr "Cheia pentru API nu este generată" -#: sickbeard/webserve.py:409 +#: sickbeard/webserve.py:395 msgid "API Builder" msgstr "API Builder" #: gui/slick/views/config_general.mako:77 gui/slick/views/layouts/main.mako:141 -#: sickbeard/webserve.py:512 +#: sickbeard/webserve.py:498 msgid "Schedule" msgstr "Program" -#: sickbeard/webserve.py:610 +#: sickbeard/webserve.py:609 msgid "Test 1" msgstr "Test 1" -#: sickbeard/webserve.py:610 +#: sickbeard/webserve.py:609 msgid "This is test number 1" msgstr "Acesta este testul numărul 1" -#: sickbeard/webserve.py:611 +#: sickbeard/webserve.py:610 msgid "Test 2" msgstr "Test 2" -#: sickbeard/webserve.py:611 +#: sickbeard/webserve.py:610 msgid "This is test number 2" msgstr "Acesta este testul numărul 2" -#: sickbeard/webserve.py:634 +#: sickbeard/webserve.py:633 msgid "You're using the {branch} branch. Please use 'master' unless specifically asked" msgstr "" -#: sickbeard/webserve.py:698 sickbeard/webserve.py:703 +#: sickbeard/webserve.py:697 sickbeard/webserve.py:702 msgid "Invalid show parameters" msgstr "Parametri invalizi pentru serial" -#: sickbeard/webserve.py:710 +#: sickbeard/webserve.py:709 msgid "Invalid parameters" msgstr "" -#: sickbeard/webserve.py:713 sickbeard/webserve.py:1899 +#: sickbeard/webserve.py:712 sickbeard/webserve.py:1898 msgid "Episode couldn't be retrieved" msgstr "Episodul nu a putut fi încărcat" -#: sickbeard/webserve.py:759 sickbeard/webserve.py:1268 sickbeard/webserve.py:1297 +#: sickbeard/webserve.py:758 sickbeard/webserve.py:1267 sickbeard/webserve.py:1296 msgid "Home" msgstr "Acasă" -#: gui/slick/views/layouts/main.mako:127 sickbeard/webserve.py:759 +#: gui/slick/views/layouts/main.mako:127 sickbeard/webserve.py:758 msgid "Show List" msgstr "Lista de seriale" -#: sickbeard/webserve.py:807 +#: sickbeard/webserve.py:806 msgid "Error: Unsupported Request. Send jsonp request with 'callback' variable in the query string." msgstr "" -#: sickbeard/webserve.py:851 +#: sickbeard/webserve.py:850 msgid "Success. Connected and authenticated" msgstr "Succes. Conectat și autentificat" -#: sickbeard/webserve.py:853 +#: sickbeard/webserve.py:852 msgid "Authentication failed. SABnzbd expects" msgstr "Autentificare a eşuat. SABnzbd aşteaptă" -#: sickbeard/webserve.py:853 +#: sickbeard/webserve.py:852 msgid "as authentication method" msgstr "ca metodă de autentificare" -#: sickbeard/webserve.py:855 +#: sickbeard/webserve.py:854 msgid "Unable to connect to host" msgstr "Conectare nereușită la server" -#: sickbeard/webserve.py:876 +#: sickbeard/webserve.py:875 msgid "SMS sent successfully" msgstr "SMS trimis cu succes" -#: sickbeard/webserve.py:878 +#: sickbeard/webserve.py:877 msgid "Problem sending SMS: {message}" msgstr "Problemă la trimiterea SMS-ului: {message}" -#: sickbeard/webserve.py:885 +#: sickbeard/webserve.py:884 msgid "Telegram notification succeeded. Check your Telegram clients to make sure it worked" msgstr "" -#: sickbeard/webserve.py:887 +#: sickbeard/webserve.py:886 msgid "Error sending Telegram notification: {message}" msgstr "" -#: sickbeard/webserve.py:894 +#: sickbeard/webserve.py:893 msgid "join notification succeeded. Check your join clients to make sure it worked" msgstr "" -#: sickbeard/webserve.py:896 +#: sickbeard/webserve.py:895 msgid "Error sending join notification: {message}" msgstr "" -#: sickbeard/webserve.py:906 +#: sickbeard/webserve.py:905 msgid " with password" msgstr "" -#: sickbeard/webserve.py:908 +#: sickbeard/webserve.py:907 msgid "Registered and Tested growl successfully {growl_host}" msgstr "" -#: sickbeard/webserve.py:910 +#: sickbeard/webserve.py:909 msgid "Registration and Testing of growl failed {growl_host}" msgstr "" -#: sickbeard/webserve.py:917 +#: sickbeard/webserve.py:916 msgid "Test prowl notice sent successfully" msgstr "" -#: sickbeard/webserve.py:919 +#: sickbeard/webserve.py:918 msgid "Test prowl notice failed" msgstr "" -#: sickbeard/webserve.py:926 +#: sickbeard/webserve.py:925 msgid "Boxcar2 notification succeeded. Check your Boxcar2 clients to make sure it worked" msgstr "" -#: sickbeard/webserve.py:928 +#: sickbeard/webserve.py:927 msgid "Error sending Boxcar2 notification" msgstr "" -#: sickbeard/webserve.py:935 +#: sickbeard/webserve.py:934 msgid "Pushover notification succeeded. Check your Pushover clients to make sure it worked" msgstr "" -#: sickbeard/webserve.py:937 +#: sickbeard/webserve.py:936 msgid "Error sending Pushover notification" msgstr "" -#: sickbeard/webserve.py:949 +#: sickbeard/webserve.py:948 msgid "Key verification successful" msgstr "" -#: sickbeard/webserve.py:951 +#: sickbeard/webserve.py:950 msgid "Unable to verify key" msgstr "" -#: sickbeard/webserve.py:958 +#: sickbeard/webserve.py:957 msgid "Tweet successful, check your twitter to make sure it worked" msgstr "" -#: sickbeard/webserve.py:960 +#: sickbeard/webserve.py:959 msgid "Error sending tweet" msgstr "" -#: sickbeard/webserve.py:965 +#: sickbeard/webserve.py:964 msgid "Please enter a valid account sid" msgstr "" -#: sickbeard/webserve.py:968 +#: sickbeard/webserve.py:967 msgid "Please enter a valid auth token" msgstr "" -#: sickbeard/webserve.py:971 +#: sickbeard/webserve.py:970 msgid "Please enter a valid phone sid" msgstr "" -#: sickbeard/webserve.py:974 +#: sickbeard/webserve.py:973 msgid "Please format the phone number as \"+1-###-###-####\"" msgstr "" -#: sickbeard/webserve.py:978 +#: sickbeard/webserve.py:977 msgid "Authorization successful and number ownership verified" msgstr "" -#: sickbeard/webserve.py:980 +#: sickbeard/webserve.py:979 msgid "Error sending sms" msgstr "" -#: sickbeard/webserve.py:986 +#: sickbeard/webserve.py:985 msgid "Slack message successful" msgstr "" -#: sickbeard/webserve.py:988 +#: sickbeard/webserve.py:987 msgid "Slack message failed" msgstr "" -#: sickbeard/webserve.py:994 +#: sickbeard/webserve.py:993 msgid "Discord message successful" msgstr "" -#: sickbeard/webserve.py:996 +#: sickbeard/webserve.py:995 msgid "Discord message failed" msgstr "" -#: sickbeard/webserve.py:1006 +#: sickbeard/webserve.py:1005 msgid "Test KODI notice sent successfully to {kodi_host}" msgstr "" -#: sickbeard/webserve.py:1008 +#: sickbeard/webserve.py:1007 msgid "Test KODI notice failed to {kodi_host}" msgstr "" -#: sickbeard/webserve.py:1023 +#: sickbeard/webserve.py:1022 msgid "Successful test notice sent to Plex Home Theater ... {plex_clients}" msgstr "" -#: sickbeard/webserve.py:1025 +#: sickbeard/webserve.py:1024 msgid "Test failed for Plex Home Theater ... {plex_clients}" msgstr "" -#: sickbeard/webserve.py:1028 +#: sickbeard/webserve.py:1027 msgid "Tested Plex Home Theater(s)" msgstr "" -#: sickbeard/webserve.py:1042 +#: sickbeard/webserve.py:1041 msgid "Successful test of Plex Media Server(s) ... {plex_servers}" msgstr "" -#: sickbeard/webserve.py:1044 +#: sickbeard/webserve.py:1043 msgid "Test failed, No Plex Media Server host specified" msgstr "" -#: sickbeard/webserve.py:1046 +#: sickbeard/webserve.py:1045 msgid "Test failed for Plex Media Server(s) ... {plex_servers}" msgstr "" -#: sickbeard/webserve.py:1049 +#: sickbeard/webserve.py:1048 msgid "Tested Plex Media Server host(s)" msgstr "" -#: sickbeard/webserve.py:1057 +#: sickbeard/webserve.py:1056 msgid "Tried sending desktop notification via libnotify" msgstr "" -#: sickbeard/webserve.py:1066 +#: sickbeard/webserve.py:1065 msgid "Test notice sent successfully to {emby_host}" msgstr "" -#: sickbeard/webserve.py:1068 +#: sickbeard/webserve.py:1067 msgid "Test notice failed to {emby_host}" msgstr "" -#: sickbeard/webserve.py:1076 +#: sickbeard/webserve.py:1075 msgid "Successfully started the scan update" msgstr "" -#: sickbeard/webserve.py:1078 +#: sickbeard/webserve.py:1077 msgid "Test failed to start the scan update" msgstr "" -#: sickbeard/webserve.py:1097 +#: sickbeard/webserve.py:1096 msgid "Test notice sent successfully to {nmj2_host}" msgstr "" -#: sickbeard/webserve.py:1099 +#: sickbeard/webserve.py:1098 msgid "Test notice failed to {nmj2_host}" msgstr "" -#: sickbeard/webserve.py:1119 +#: sickbeard/webserve.py:1118 msgid "Trakt Authorized" msgstr "" -#: sickbeard/webserve.py:1120 +#: sickbeard/webserve.py:1119 msgid "Trakt Not Authorized!" msgstr "" -#: sickbeard/webserve.py:1184 +#: sickbeard/webserve.py:1183 msgid "Test email sent successfully! Check inbox." msgstr "" -#: sickbeard/webserve.py:1186 +#: sickbeard/webserve.py:1185 msgid "ERROR: {last_error}" msgstr "" -#: sickbeard/webserve.py:1193 +#: sickbeard/webserve.py:1192 msgid "Test NMA notice sent successfully" msgstr "" -#: sickbeard/webserve.py:1195 +#: sickbeard/webserve.py:1194 msgid "Test NMA notice failed" msgstr "" -#: sickbeard/webserve.py:1202 +#: sickbeard/webserve.py:1201 msgid "Pushalot notification succeeded. Check your Pushalot clients to make sure it worked" msgstr "" -#: sickbeard/webserve.py:1204 +#: sickbeard/webserve.py:1203 msgid "Error sending Pushalot notification" msgstr "" -#: sickbeard/webserve.py:1211 +#: sickbeard/webserve.py:1210 msgid "Pushbullet notification succeeded. Check your device to make sure it worked" msgstr "" -#: sickbeard/webserve.py:1213 sickbeard/webserve.py:1223 sickbeard/webserve.py:1232 +#: sickbeard/webserve.py:1212 sickbeard/webserve.py:1222 sickbeard/webserve.py:1231 msgid "Error sending Pushbullet notification" msgstr "" #: gui/slick/views/displayShow.mako:436 gui/slick/views/inc_home_showList.mako:174 -#: gui/slick/views/manage.mako:49 sickbeard/webserve.py:1249 +#: gui/slick/views/manage.mako:49 sickbeard/webserve.py:1248 msgid "Status" msgstr "" -#: sickbeard/webserve.py:1268 sickbeard/webserve.py:1297 +#: sickbeard/webserve.py:1267 sickbeard/webserve.py:1296 msgid "Restarting SickRage" msgstr "" -#: sickbeard/webserve.py:1300 +#: sickbeard/webserve.py:1299 msgid "Update Failed" msgstr "" -#: sickbeard/webserve.py:1301 +#: sickbeard/webserve.py:1300 msgid "Update wasn't successful, not restarting. Check your log for more information." msgstr "" -#: sickbeard/webserve.py:1308 +#: sickbeard/webserve.py:1307 msgid "Checking out branch" msgstr "" -#: sickbeard/webserve.py:1311 +#: sickbeard/webserve.py:1310 msgid "Already on branch" msgstr "" -#: sickbeard/webserve.py:1339 +#: sickbeard/webserve.py:1338 msgid "Invalid show ID: {show}" msgstr "" -#: sickbeard/webserve.py:1342 sickbeard/webserve.py:1871 sickbeard/webserve.py:2002 -#: sickbeard/webserve.py:2040 +#: sickbeard/webserve.py:1341 sickbeard/webserve.py:1870 sickbeard/webserve.py:2001 +#: sickbeard/webserve.py:2039 msgid "Show not in show list" msgstr "" #: gui/slick/views/inc_rootDirs.mako:31 gui/slick/views/manage.mako:38 -#: gui/slick/views/manage_massEdit.mako:74 sickbeard/webserve.py:1358 -#: sickbeard/webserve.py:2027 +#: gui/slick/views/manage_massEdit.mako:74 sickbeard/webserve.py:1357 +#: sickbeard/webserve.py:2026 msgid "Edit" msgstr "" -#: sickbeard/webserve.py:1368 +#: sickbeard/webserve.py:1367 msgid "This show is in the process of being downloaded - the info below is incomplete." msgstr "" -#: sickbeard/webserve.py:1371 +#: sickbeard/webserve.py:1370 msgid "The information on this page is in the process of being updated." msgstr "" -#: sickbeard/webserve.py:1374 +#: sickbeard/webserve.py:1373 msgid "The episodes below are currently being refreshed from disk" msgstr "" -#: sickbeard/webserve.py:1377 +#: sickbeard/webserve.py:1376 msgid "Currently downloading subtitles for this show" msgstr "" -#: sickbeard/webserve.py:1380 +#: sickbeard/webserve.py:1379 msgid "This show is queued to be refreshed." msgstr "" -#: sickbeard/webserve.py:1383 +#: sickbeard/webserve.py:1382 msgid "This show is queued and awaiting an update." msgstr "" -#: sickbeard/webserve.py:1386 +#: sickbeard/webserve.py:1385 msgid "This show is queued and awaiting subtitles download." msgstr "" -#: gui/slick/js/core.js:4081 sickbeard/webserve.py:1391 +#: gui/slick/js/core.js:4081 sickbeard/webserve.py:1390 msgid "Resume" msgstr "" #: gui/slick/js/core.js:4081 gui/slick/views/viewlogs.mako:12 -#: sickbeard/webserve.py:1393 +#: sickbeard/webserve.py:1392 msgid "Pause" msgstr "" #: gui/slick/views/editShow.mako:345 gui/slick/views/inc_blackwhitelist.mako:40 #: gui/slick/views/inc_blackwhitelist.mako:85 gui/slick/views/manage.mako:58 -#: gui/slick/views/manage_failedDownloads.mako:43 sickbeard/webserve.py:1395 +#: gui/slick/views/manage_failedDownloads.mako:43 sickbeard/webserve.py:1394 msgid "Remove" msgstr "" -#: sickbeard/webserve.py:1396 +#: sickbeard/webserve.py:1395 msgid "Re-scan files" msgstr "" -#: sickbeard/webserve.py:1397 +#: sickbeard/webserve.py:1396 msgid "Force Full Update" msgstr "" -#: sickbeard/webserve.py:1398 +#: sickbeard/webserve.py:1397 msgid "Update show in KODI" msgstr "" -#: sickbeard/webserve.py:1399 +#: sickbeard/webserve.py:1398 msgid "Update show in Emby" msgstr "" -#: sickbeard/webserve.py:1402 +#: sickbeard/webserve.py:1401 msgid "Hide specials" msgstr "" -#: sickbeard/webserve.py:1404 +#: sickbeard/webserve.py:1403 msgid "Show specials" msgstr "" -#: sickbeard/webserve.py:1406 sickbeard/webserve.py:2030 sickbeard/webserve.py:2031 +#: sickbeard/webserve.py:1405 sickbeard/webserve.py:2029 sickbeard/webserve.py:2030 msgid "Preview Rename" msgstr "" -#: sickbeard/webserve.py:1409 +#: sickbeard/webserve.py:1408 msgid "Download Subtitles" msgstr "" -#: sickbeard/webserve.py:1498 +#: sickbeard/webserve.py:1497 msgid "No scene exceptions" msgstr "" -#: sickbeard/webserve.py:1516 sickbeard/webserve.py:1764 sickbeard/webserve.py:1785 +#: sickbeard/webserve.py:1515 sickbeard/webserve.py:1763 sickbeard/webserve.py:1784 msgid "Invalid show ID" msgstr "" -#: sickbeard/webserve.py:1525 sickbeard/webserve.py:1769 sickbeard/webserve.py:1790 +#: sickbeard/webserve.py:1524 sickbeard/webserve.py:1768 sickbeard/webserve.py:1789 msgid "Unable to find the specified show" msgstr "" -#: sickbeard/webserve.py:1550 +#: sickbeard/webserve.py:1549 msgid "Unable to retreive Fansub Groups from AniDB." msgstr "" -#: sickbeard/webserve.py:1559 sickbeard/webserve.py:1561 +#: sickbeard/webserve.py:1558 sickbeard/webserve.py:1560 msgid "Edit Show" msgstr "" -#: sickbeard/webserve.py:1637 sickbeard/webserve.py:1671 +#: sickbeard/webserve.py:1636 sickbeard/webserve.py:1670 msgid "Unable to refresh this show: {error}" msgstr "" -#: sickbeard/webserve.py:1663 +#: sickbeard/webserve.py:1662 msgid "New location <tt>{location}</tt> does not exist" msgstr "" -#: sickbeard/webserve.py:1688 +#: sickbeard/webserve.py:1687 msgid "Unable to update show: {error}" msgstr "" -#: sickbeard/webserve.py:1695 +#: sickbeard/webserve.py:1694 msgid "Unable to force an update on scene exceptions of the show." msgstr "" -#: sickbeard/webserve.py:1702 +#: sickbeard/webserve.py:1701 msgid "Unable to force an update on scene numbering of the show." msgstr "" -#: sickbeard/webserve.py:1708 sickbeard/webserve.py:3540 +#: sickbeard/webserve.py:1707 sickbeard/webserve.py:3539 msgid "{num_errors:d} error{plural} while saving changes:" msgstr "" -#: sickbeard/webserve.py:1719 +#: sickbeard/webserve.py:1718 msgid "{show_name} has been {paused_resumed}" msgstr "" -#: sickbeard/webserve.py:1719 +#: sickbeard/webserve.py:1718 msgid "resumed" msgstr "" -#: sickbeard/webserve.py:1719 +#: sickbeard/webserve.py:1718 msgid "paused" msgstr "" -#: sickbeard/webserve.py:1731 +#: sickbeard/webserve.py:1730 msgid "{show_name} has been {deleted_trashed} {was_deleted}" msgstr "" -#: sickbeard/webserve.py:1733 +#: sickbeard/webserve.py:1732 msgid "deleted" msgstr "" -#: sickbeard/webserve.py:1733 +#: sickbeard/webserve.py:1732 msgid "trashed" msgstr "" -#: sickbeard/webserve.py:1734 +#: sickbeard/webserve.py:1733 msgid "(media untouched)" msgstr "" -#: sickbeard/webserve.py:1734 +#: sickbeard/webserve.py:1733 msgid "(with all related media)" msgstr "" -#: sickbeard/webserve.py:1755 +#: sickbeard/webserve.py:1754 msgid "Unable to refresh this show." msgstr "" -#: sickbeard/webserve.py:1775 +#: sickbeard/webserve.py:1774 msgid "Unable to update this show." msgstr "" -#: sickbeard/webserve.py:1814 +#: sickbeard/webserve.py:1813 msgid "Library update command sent to KODI host(s)): {kodi_hosts}" msgstr "" -#: sickbeard/webserve.py:1816 +#: sickbeard/webserve.py:1815 msgid "Unable to contact one or more KODI host(s)): {kodi_hosts}" msgstr "" -#: sickbeard/webserve.py:1825 +#: sickbeard/webserve.py:1824 msgid "Library update command sent to Plex Media Server host: {plex_server}" msgstr "" -#: sickbeard/webserve.py:1828 +#: sickbeard/webserve.py:1827 msgid "Unable to contact Plex Media Server host: {plex_server}" msgstr "" -#: sickbeard/webserve.py:1840 +#: sickbeard/webserve.py:1839 msgid "Library update command sent to Emby host: {emby_host}" msgstr "" -#: sickbeard/webserve.py:1842 +#: sickbeard/webserve.py:1841 msgid "Unable to contact Emby host: {emby_host}" msgstr "" -#: sickbeard/webserve.py:1852 sickbeard/webserve.py:2036 +#: sickbeard/webserve.py:1851 sickbeard/webserve.py:2035 msgid "You must specify a show and at least one episode" msgstr "" -#: sickbeard/webserve.py:1861 +#: sickbeard/webserve.py:1860 msgid "Invalid status" msgstr "" -#: sickbeard/webserve.py:1954 +#: sickbeard/webserve.py:1953 msgid "Backlog was automatically started for the following seasons of <b>{show_name}</b>" msgstr "" #: gui/slick/views/displayShow.mako:74 gui/slick/views/displayShow.mako:79 -#: gui/slick/views/displayShow.mako:404 sickbeard/webserve.py:1961 -#: sickbeard/webserve.py:1980 +#: gui/slick/views/displayShow.mako:404 sickbeard/webserve.py:1960 +#: sickbeard/webserve.py:1979 msgid "Season" msgstr "" -#: sickbeard/webserve.py:1968 +#: sickbeard/webserve.py:1967 msgid "Backlog started" msgstr "" -#: sickbeard/webserve.py:1973 +#: sickbeard/webserve.py:1972 msgid "Retrying Search was automatically started for the following season of <b>{show_name}</b>" msgstr "" -#: sickbeard/webserve.py:1987 +#: sickbeard/webserve.py:1986 msgid "Retry Search started" msgstr "" -#: sickbeard/webserve.py:1997 +#: sickbeard/webserve.py:1996 msgid "You must specify a show" msgstr "" -#: sickbeard/webserve.py:2007 sickbeard/webserve.py:2045 +#: sickbeard/webserve.py:2006 sickbeard/webserve.py:2044 msgid "Can't rename episodes when the show dir is missing." msgstr "" -#: sickbeard/webserve.py:2212 sickbeard/webserve.py:2233 +#: sickbeard/webserve.py:2211 sickbeard/webserve.py:2232 msgid "New subtitles downloaded: {new_subtitle_languages}" msgstr "" -#: sickbeard/webserve.py:2215 sickbeard/webserve.py:2236 +#: sickbeard/webserve.py:2214 sickbeard/webserve.py:2235 msgid "No subtitles downloaded" msgstr "" #: gui/slick/views/config_general.mako:80 gui/slick/views/layouts/main.mako:222 -#: sickbeard/webserve.py:2363 +#: sickbeard/webserve.py:2362 msgid "IRC" msgstr "" -#: sickbeard/webserve.py:2376 +#: sickbeard/webserve.py:2375 msgid "Could not load news from the repo. [Click here for news.md])({news_url})" msgstr "" -#: sickbeard/webserve.py:2383 sickbeard/webserve.py:2401 +#: sickbeard/webserve.py:2382 sickbeard/webserve.py:2400 msgid "The was a problem connecting to github, please refresh and try again" msgstr "" -#: sickbeard/webserve.py:2398 +#: sickbeard/webserve.py:2397 msgid "Could not load changes from the repo. [Click here for CHANGES.md]({changes_url})" msgstr "" -#: gui/slick/views/layouts/main.mako:223 sickbeard/webserve.py:2403 +#: gui/slick/views/layouts/main.mako:223 sickbeard/webserve.py:2402 msgid "Changelog" msgstr "" -#: gui/slick/views/layouts/main.mako:190 sickbeard/webserve.py:2413 -#: sickbeard/webserve.py:3855 sickbeard/webserve.py:4341 +#: gui/slick/views/layouts/main.mako:190 sickbeard/webserve.py:2412 +#: sickbeard/webserve.py:3826 sickbeard/webserve.py:4312 msgid "Post Processing" msgstr "" -#: gui/slick/views/layouts/main.mako:128 sickbeard/webserve.py:2445 +#: gui/slick/views/layouts/main.mako:128 sickbeard/webserve.py:2444 msgid "Add Shows" msgstr "" -#: sickbeard/webserve.py:2510 +#: sickbeard/webserve.py:2509 msgid "No folders selected." msgstr "" -#: sickbeard/webserve.py:2632 +#: sickbeard/webserve.py:2631 msgid "New Show" msgstr "" -#: sickbeard/webserve.py:2647 +#: sickbeard/webserve.py:2646 msgid "Trending Shows" msgstr "" -#: sickbeard/webserve.py:2649 sickbeard/webserve.py:2772 +#: sickbeard/webserve.py:2648 sickbeard/webserve.py:2771 msgid "Popular Shows" msgstr "" -#: sickbeard/webserve.py:2651 sickbeard/webserve.py:2665 +#: sickbeard/webserve.py:2650 sickbeard/webserve.py:2664 msgid "Most Anticipated Shows" msgstr "" -#: sickbeard/webserve.py:2653 +#: sickbeard/webserve.py:2652 msgid "Most Collected Shows" msgstr "" -#: sickbeard/webserve.py:2655 +#: sickbeard/webserve.py:2654 msgid "Most Watched Shows" msgstr "" -#: sickbeard/webserve.py:2657 +#: sickbeard/webserve.py:2656 msgid "Most Played Shows" msgstr "" -#: sickbeard/webserve.py:2659 +#: sickbeard/webserve.py:2658 msgid "Recommended Shows" msgstr "" -#: gui/slick/views/addShows_trendingShows.mako:60 sickbeard/webserve.py:2661 +#: gui/slick/views/addShows_trendingShows.mako:60 sickbeard/webserve.py:2660 msgid "New Shows" msgstr "" -#: gui/slick/views/addShows_trendingShows.mako:61 sickbeard/webserve.py:2663 +#: gui/slick/views/addShows_trendingShows.mako:61 sickbeard/webserve.py:2662 msgid "Season Premieres" msgstr "" -#: sickbeard/webserve.py:2792 sickbeard/webserve.py:2793 +#: sickbeard/webserve.py:2791 sickbeard/webserve.py:2792 msgid "Existing Show" msgstr "" -#: sickbeard/webserve.py:2871 +#: sickbeard/webserve.py:2870 msgid "No root directories setup, please go back and add one." msgstr "" -#: sickbeard/webserve.py:2883 sickbeard/webserve.py:3002 +#: sickbeard/webserve.py:2882 sickbeard/webserve.py:3001 msgid "Show added" msgstr "" -#: sickbeard/webserve.py:2883 +#: sickbeard/webserve.py:2882 msgid "Adding the specified show {show_name}" msgstr "" -#: sickbeard/webserve.py:2924 +#: sickbeard/webserve.py:2923 msgid "Missing params, no Indexer ID or folder: {show_to_add} and {root_dir}/{show_path}" msgstr "" -#: sickbeard/webserve.py:2933 +#: sickbeard/webserve.py:2932 msgid "Unknown error. Unable to add show due to problem with show selection." msgstr "" -#: sickbeard/webserve.py:2957 sickbeard/webserve.py:2967 +#: sickbeard/webserve.py:2956 sickbeard/webserve.py:2966 msgid "Unable to add show" msgstr "" -#: sickbeard/webserve.py:2957 +#: sickbeard/webserve.py:2956 msgid "Folder {show_dir} exists already" msgstr "" -#: sickbeard/webserve.py:2968 +#: sickbeard/webserve.py:2967 msgid "Unable to create the folder {show_dir}, can't add the show" msgstr "" -#: sickbeard/webserve.py:3002 +#: sickbeard/webserve.py:3001 msgid "Adding the specified show into {show_dir}" msgstr "" -#: sickbeard/webserve.py:3078 +#: sickbeard/webserve.py:3077 msgid "Shows Added" msgstr "" -#: sickbeard/webserve.py:3079 +#: sickbeard/webserve.py:3078 msgid "Automatically added {num_shows} from their existing metadata files" msgstr "" -#: gui/slick/views/layouts/main.mako:153 sickbeard/webserve.py:3096 +#: gui/slick/views/layouts/main.mako:153 sickbeard/webserve.py:3095 msgid "Mass Update" msgstr "" -#: sickbeard/webserve.py:3134 sickbeard/webserve.py:3161 sickbeard/webserve.py:3237 -#: sickbeard/webserve.py:3238 +#: sickbeard/webserve.py:3133 sickbeard/webserve.py:3160 sickbeard/webserve.py:3236 +#: sickbeard/webserve.py:3237 msgid "Episode Overview" msgstr "" -#: sickbeard/webserve.py:3270 +#: sickbeard/webserve.py:3269 msgid "Missing Subtitles" msgstr "" -#: gui/slick/views/layouts/main.mako:154 sickbeard/webserve.py:3356 -#: sickbeard/webserve.py:3357 +#: gui/slick/views/layouts/main.mako:154 sickbeard/webserve.py:3355 +#: sickbeard/webserve.py:3356 msgid "Backlog Overview" msgstr "" -#: sickbeard/webserve.py:3481 +#: sickbeard/webserve.py:3480 msgid "Mass Edit" msgstr "" -#: sickbeard/webserve.py:3586 +#: sickbeard/webserve.py:3585 msgid "Unable to update show: {excption_format}" msgstr "" -#: sickbeard/webserve.py:3594 +#: sickbeard/webserve.py:3593 msgid "Unable to refresh show {show_name}: {excption_format}" msgstr "" -#: sickbeard/webserve.py:3605 +#: sickbeard/webserve.py:3604 msgid "Errors encountered" msgstr "" -#: gui/slick/views/config_general.mako:261 sickbeard/webserve.py:3611 +#: gui/slick/views/config_general.mako:261 sickbeard/webserve.py:3610 msgid "Updates" msgstr "" -#: sickbeard/webserve.py:3616 +#: sickbeard/webserve.py:3615 msgid "Refreshes" msgstr "" -#: sickbeard/webserve.py:3621 +#: sickbeard/webserve.py:3620 msgid "Renames" msgstr "" #: gui/slick/views/displayShow.mako:260 gui/slick/views/displayShow.mako:435 #: gui/slick/views/editShow.mako:119 gui/slick/views/inc_addShowOptions.mako:20 -#: gui/slick/views/manage_massEdit.mako:262 sickbeard/webserve.py:3626 -#: sickbeard/webserve.py:5244 +#: gui/slick/views/manage_massEdit.mako:262 sickbeard/webserve.py:3625 +#: sickbeard/webserve.py:5215 msgid "Subtitles" msgstr "" -#: sickbeard/webserve.py:3631 +#: sickbeard/webserve.py:3630 msgid "The following actions were queued" msgstr "" -#: sickbeard/webserve.py:3651 -msgid "For best results please set the Download Station alias as" -msgstr "" - -#: sickbeard/webserve.py:3652 -msgid "You can check this setting in the Synology DSM" -msgstr "" - -#: sickbeard/webserve.py:3652 sickbeard/webserve.py:3654 -msgid "Control Panel" -msgstr "" - -#: sickbeard/webserve.py:3652 -msgid "Application Portal" -msgstr "" - -#: sickbeard/webserve.py:3653 -msgid "Make sure you allow DSM to be embedded with iFrames too in" -msgstr "" - -#: sickbeard/webserve.py:3654 -msgid "DSM Settings" -msgstr "" - -#: sickbeard/webserve.py:3654 -msgid "Security" -msgstr "" - -#: gui/slick/views/layouts/main.mako:167 sickbeard/webserve.py:3662 -msgid "Manage Torrents" -msgstr "" - -#: gui/slick/views/layouts/main.mako:170 sickbeard/webserve.py:3683 +#: gui/slick/views/layouts/main.mako:170 sickbeard/webserve.py:3654 msgid "Failed Downloads" msgstr "" -#: gui/slick/views/layouts/main.mako:155 sickbeard/webserve.py:3701 +#: gui/slick/views/layouts/main.mako:155 sickbeard/webserve.py:3672 msgid "Manage Searches" msgstr "" -#: sickbeard/webserve.py:3709 +#: sickbeard/webserve.py:3680 msgid "Backlog search started" msgstr "" -#: sickbeard/webserve.py:3719 +#: sickbeard/webserve.py:3690 msgid "Daily search started" msgstr "" -#: sickbeard/webserve.py:3728 +#: sickbeard/webserve.py:3699 msgid "Find propers search started" msgstr "" -#: sickbeard/webserve.py:3737 +#: sickbeard/webserve.py:3708 msgid "Subtitle search started" msgstr "" -#: sickbeard/webserve.py:3801 +#: sickbeard/webserve.py:3772 msgid "Remove Selected" msgstr "" -#: sickbeard/webserve.py:3802 +#: sickbeard/webserve.py:3773 msgid "Clear History" msgstr "" -#: sickbeard/webserve.py:3803 +#: sickbeard/webserve.py:3774 msgid "Trim History" msgstr "" -#: sickbeard/webserve.py:3823 +#: sickbeard/webserve.py:3794 msgid "Selected history entries removed" msgstr "" -#: sickbeard/webserve.py:3830 +#: sickbeard/webserve.py:3801 msgid "History cleared" msgstr "" -#: sickbeard/webserve.py:3837 +#: sickbeard/webserve.py:3808 msgid "Removed history entries older than 30 days" msgstr "" -#: gui/slick/views/layouts/main.mako:185 sickbeard/webserve.py:3850 +#: gui/slick/views/layouts/main.mako:185 sickbeard/webserve.py:3821 msgid "General" msgstr "" -#: sickbeard/webserve.py:3851 sickbeard/webserve.py:4143 +#: sickbeard/webserve.py:3822 sickbeard/webserve.py:4114 msgid "Backup/Restore" msgstr "" -#: gui/slick/views/layouts/main.mako:187 sickbeard/webserve.py:3852 -#: sickbeard/webserve.py:4206 +#: gui/slick/views/layouts/main.mako:187 sickbeard/webserve.py:3823 +#: sickbeard/webserve.py:4177 msgid "Search Settings" msgstr "" -#: gui/slick/views/layouts/main.mako:188 sickbeard/webserve.py:3853 -#: sickbeard/webserve.py:4518 +#: gui/slick/views/layouts/main.mako:188 sickbeard/webserve.py:3824 +#: sickbeard/webserve.py:4489 msgid "Search Providers" msgstr "" -#: gui/slick/views/layouts/main.mako:189 sickbeard/webserve.py:3854 +#: gui/slick/views/layouts/main.mako:189 sickbeard/webserve.py:3825 msgid "Subtitles Settings" msgstr "" -#: gui/slick/views/layouts/main.mako:191 sickbeard/webserve.py:3856 -#: sickbeard/webserve.py:4964 +#: gui/slick/views/layouts/main.mako:191 sickbeard/webserve.py:3827 +#: sickbeard/webserve.py:4935 msgid "Notifications" msgstr "" @@ -1240,142 +1237,142 @@ msgstr "" #: gui/slick/views/home.mako:35 gui/slick/views/inc_addShowOptions.mako:79 #: gui/slick/views/inc_home_showList.mako:179 gui/slick/views/layouts/main.mako:192 #: gui/slick/views/manage.mako:44 gui/slick/views/manage_massEdit.mako:202 -#: sickbeard/webserve.py:3857 sickbeard/webserve.py:5309 +#: sickbeard/webserve.py:3828 sickbeard/webserve.py:5280 msgid "Anime" msgstr "" -#: sickbeard/webserve.py:3895 sickbeard/webserve.py:3896 +#: sickbeard/webserve.py:3866 sickbeard/webserve.py:3867 msgid "SickRage Configuration" msgstr "" -#: sickbeard/webserve.py:3910 +#: sickbeard/webserve.py:3881 msgid "Config - Shares" msgstr "" -#: sickbeard/webserve.py:3910 +#: sickbeard/webserve.py:3881 msgid "Windows Shares Configuration" msgstr "" -#: sickbeard/webserve.py:3937 +#: sickbeard/webserve.py:3908 msgid "Saved Shares" msgstr "" -#: sickbeard/webserve.py:3937 +#: sickbeard/webserve.py:3908 msgid "Your Windows share settings have been saved" msgstr "" -#: sickbeard/webserve.py:3948 +#: sickbeard/webserve.py:3919 msgid "Config - General" msgstr "" -#: sickbeard/webserve.py:3948 +#: sickbeard/webserve.py:3919 msgid "General Configuration" msgstr "" -#: sickbeard/webserve.py:3988 +#: sickbeard/webserve.py:3959 msgid "Saved Defaults" msgstr "" -#: sickbeard/webserve.py:3988 +#: sickbeard/webserve.py:3959 msgid "Your \"add show\" defaults have been set to your current selections." msgstr "" -#: sickbeard/webserve.py:4095 +#: sickbeard/webserve.py:4066 msgid "Unable to create directory {directory}, log directory not changed." msgstr "" -#: sickbeard/webserve.py:4103 +#: sickbeard/webserve.py:4074 msgid "Unable to create directory {directory}, https cert directory not changed." msgstr "" -#: sickbeard/webserve.py:4107 +#: sickbeard/webserve.py:4078 msgid "Unable to create directory {directory}, https key directory not changed." msgstr "" -#: sickbeard/webserve.py:4126 sickbeard/webserve.py:4324 sickbeard/webserve.py:4456 -#: sickbeard/webserve.py:5227 +#: sickbeard/webserve.py:4097 sickbeard/webserve.py:4295 sickbeard/webserve.py:4427 +#: sickbeard/webserve.py:5198 msgid "Error(s) Saving Configuration" msgstr "" -#: sickbeard/webserve.py:4129 sickbeard/webserve.py:4327 sickbeard/webserve.py:4458 -#: sickbeard/webserve.py:4950 sickbeard/webserve.py:5230 sickbeard/webserve.py:5294 -#: sickbeard/webserve.py:5323 +#: sickbeard/webserve.py:4100 sickbeard/webserve.py:4298 sickbeard/webserve.py:4429 +#: sickbeard/webserve.py:4921 sickbeard/webserve.py:5201 sickbeard/webserve.py:5265 +#: sickbeard/webserve.py:5294 msgid "Configuration Saved" msgstr "" -#: sickbeard/webserve.py:4142 +#: sickbeard/webserve.py:4113 msgid "Config - Backup/Restore" msgstr "" -#: sickbeard/webserve.py:4205 +#: sickbeard/webserve.py:4176 msgid "Config - Episode Search" msgstr "" -#: sickbeard/webserve.py:4340 +#: sickbeard/webserve.py:4311 msgid "Config - Post Processing" msgstr "" -#: sickbeard/webserve.py:4380 +#: sickbeard/webserve.py:4351 msgid "Unpacking Not Supported, disabling unpack setting" msgstr "" -#: sickbeard/webserve.py:4431 +#: sickbeard/webserve.py:4402 msgid "You tried saving an invalid normal naming config, not saving your naming settings" msgstr "" -#: sickbeard/webserve.py:4439 +#: sickbeard/webserve.py:4410 msgid "You tried saving an invalid anime naming config, not saving your naming settings" msgstr "" -#: sickbeard/webserve.py:4517 +#: sickbeard/webserve.py:4488 msgid "Config - Providers" msgstr "" -#: sickbeard/webserve.py:4547 +#: sickbeard/webserve.py:4518 msgid "No Provider Name specified" msgstr "" -#: sickbeard/webserve.py:4549 +#: sickbeard/webserve.py:4520 msgid "No Provider Url specified" msgstr "" -#: sickbeard/webserve.py:4551 +#: sickbeard/webserve.py:4522 msgid "No Provider Api key specified" msgstr "" -#: sickbeard/webserve.py:4963 +#: sickbeard/webserve.py:4934 msgid "Config - Notifications" msgstr "" -#: sickbeard/webserve.py:5243 +#: sickbeard/webserve.py:5214 msgid "Config - Subtitles" msgstr "" -#: sickbeard/webserve.py:5308 +#: sickbeard/webserve.py:5279 msgid "Config - Anime" msgstr "" -#: sickbeard/webserve.py:5336 +#: sickbeard/webserve.py:5307 msgid "Clear Errors" msgstr "" -#: sickbeard/webserve.py:5342 +#: sickbeard/webserve.py:5313 msgid "Clear Warnings" msgstr "" -#: sickbeard/webserve.py:5348 +#: sickbeard/webserve.py:5319 msgid "Submit Errors" msgstr "" -#: sickbeard/webserve.py:5363 +#: sickbeard/webserve.py:5334 msgid "Logs & Errors" msgstr "" -#: sickbeard/webserve.py:5388 +#: sickbeard/webserve.py:5359 msgid "Log File" msgstr "" -#: sickbeard/webserve.py:5388 +#: sickbeard/webserve.py:5359 msgid "Logs" msgstr "" @@ -1383,30 +1380,166 @@ msgstr "" msgid "This is a test notification from SickRage" msgstr "" -#: gui/slick/js/core.js:481 gui/slick/js/core.js:502 gui/slick/js/core.js:524 -#: gui/slick/js/core.js:548 gui/slick/js/core.js:573 gui/slick/js/core.js:596 -#: gui/slick/js/core.js:625 gui/slick/js/core.js:645 gui/slick/js/core.js:690 -#: gui/slick/js/core.js:769 gui/slick/js/core.js:829 gui/slick/js/core.js:849 -#: gui/slick/js/core.js:879 gui/slick/js/core.js:909 gui/slick/js/core.js:969 -#: gui/slick/js/core.js:1046 gui/slick/js/core.js:1066 gui/slick/js/core.js:1085 +#: gui/slick/js/browser.js:6 +msgid "Choose Directory" +msgstr "" + +#: gui/slick/js/core.js:443 +msgid "Select log file folder location" +msgstr "" + +#: gui/slick/js/core.js:445 +msgid "Select CSS file" +msgstr "" + +#: gui/slick/js/core.js:469 +msgid "Select backup folder to save to" +msgstr "" + +#: gui/slick/js/core.js:470 +msgid "Select backup files to restore" +msgstr "" + +#: gui/slick/js/core.js:479 gui/slick/js/core.js:500 gui/slick/js/core.js:522 +#: gui/slick/js/core.js:546 gui/slick/js/core.js:571 gui/slick/js/core.js:594 +#: gui/slick/js/core.js:623 gui/slick/js/core.js:643 gui/slick/js/core.js:688 +#: gui/slick/js/core.js:767 gui/slick/js/core.js:827 gui/slick/js/core.js:847 +#: gui/slick/js/core.js:877 gui/slick/js/core.js:907 gui/slick/js/core.js:967 +#: gui/slick/js/core.js:1044 gui/slick/js/core.js:1064 gui/slick/js/core.js:1083 msgid "Please fill out the necessary fields above." msgstr "" -#: gui/slick/js/core.js:1328 gui/slick/js/core.js:1378 gui/slick/js/core.js:1427 -#: gui/slick/js/core.js:1493 +#: gui/slick/js/core.js:680 +msgid "<b>Step 1:</b> Confirm Authorization" +msgstr "" + +#: gui/slick/js/core.js:977 +msgid "Check blacklist name; the value needs to be a trakt slug" +msgstr "" + +#: gui/slick/js/core.js:1022 +msgid "You must provide a recipient email address!" +msgstr "" + +#: gui/slick/js/core.js:1107 +msgid "You didn't supply a Pushbullet api key" +msgstr "" + +#: gui/slick/js/core.js:1133 gui/slick/js/core.js:1162 +msgid "Don't forget to save your new pushbullet settings." +msgstr "" + +#: gui/slick/js/core.js:1262 +msgid "Select TV Download Directory" +msgstr "" + +#: gui/slick/js/core.js:1263 +msgid "Select Unpack Directory" +msgstr "" + +#: gui/slick/js/core.js:1326 gui/slick/js/core.js:1376 gui/slick/js/core.js:1425 +#: gui/slick/js/core.js:1491 msgid "This pattern is invalid." msgstr "" -#: gui/slick/js/core.js:1336 gui/slick/js/core.js:1386 gui/slick/js/core.js:1435 -#: gui/slick/js/core.js:1501 +#: gui/slick/js/core.js:1334 gui/slick/js/core.js:1384 gui/slick/js/core.js:1433 +#: gui/slick/js/core.js:1499 msgid "This pattern would be invalid without the folders, using it will force \"Season Folders\" on for all shows." msgstr "" -#: gui/slick/js/core.js:1344 gui/slick/js/core.js:1394 gui/slick/js/core.js:1443 -#: gui/slick/js/core.js:1509 +#: gui/slick/js/core.js:1342 gui/slick/js/core.js:1392 gui/slick/js/core.js:1441 +#: gui/slick/js/core.js:1507 msgid "This pattern is valid." msgstr "" +#: gui/slick/js/core.js:1818 +msgid "Select .nzb black hole/watch location" +msgstr "" + +#: gui/slick/js/core.js:1819 +msgid "Select .torrent black hole/watch location" +msgstr "" + +#: gui/slick/js/core.js:1820 +msgid "Select .torrent download location" +msgstr "" + +#: gui/slick/js/core.js:1900 +msgid "Minimum seeding time is" +msgstr "" + +#: gui/slick/js/core.js:1902 +msgid "URL to your uTorrent client (e.g. http://localhost:8000)" +msgstr "" + +#: gui/slick/js/core.js:1905 +msgid "Stop seeding when inactive for" +msgstr "" + +#: gui/slick/js/core.js:1911 +msgid "URL to your Transmission client (e.g. http://localhost:9091)" +msgstr "" + +#: gui/slick/js/core.js:1921 +msgid "URL to your Deluge client (e.g. http://localhost:8112)" +msgstr "" + +#: gui/slick/js/core.js:1930 +msgid "IP or Hostname of your Deluge Daemon (e.g. scgi://localhost:58846)" +msgstr "" + +#: gui/slick/js/core.js:1937 +msgid "URL to your Synology DS client (e.g. http://localhost:5000)" +msgstr "" + +#: gui/slick/js/core.js:1941 +msgid "URL to your rTorrent client (e.g. scgi://localhost:5000 <br> or https://localhost/rutorrent/plugins/httprpc/action.php)" +msgstr "" + +#: gui/slick/js/core.js:1952 +msgid "URL to your qBittorrent client (e.g. http://localhost:8080)" +msgstr "" + +#: gui/slick/js/core.js:1962 +msgid "URL to your MLDonkey (e.g. http://localhost:4080)" +msgstr "" + +#: gui/slick/js/core.js:1974 +msgid "URL to your putio client (e.g. http://localhost:8080)" +msgstr "" + +#: gui/slick/js/core.js:1975 +msgid "<a herf=\"https://app.put.io/oauth/apps/new\" target=\"_blank\"> Create a new OAuth app for put.io</a>" +msgstr "" + +#: gui/slick/js/core.js:1977 +msgid "Put.io Parent Folder" +msgstr "" + +#: gui/slick/js/core.js:1978 +msgid "Put.io OAuth Token" +msgstr "" + +#: gui/slick/js/core.js:3383 gui/slick/views/displayShow.mako:410 +msgid "Show Episodes" +msgstr "" + +#: gui/slick/js/core.js:3388 gui/slick/views/displayShow.mako:408 +msgid "Hide Episodes" +msgstr "" + +#: gui/slick/js/core.js:3396 +msgid "Select Show Location" +msgstr "" + +#: gui/slick/js/core.js:3460 +msgid "Select Unprocessed Episode Folder" +msgstr "" + +#: gui/slick/js/core.js:3790 +msgid "DELETED" +msgstr "" + #: gui/slick/js/core.js:4082 msgid "Resume updating the log on this page." msgstr "" @@ -1415,6 +1548,26 @@ msgstr "" msgid "Pause updating the log on this page." msgstr "" +#: gui/slick/js/core.js:4323 +msgid "searching {searchingFor}..." +msgstr "" + +#: gui/slick/js/core.js:4334 +msgid "search timed out, try again or try another indexer" +msgstr "" + +#: gui/slick/js/core.js:4503 +msgid "loading folders..." +msgstr "" + +#: gui/slick/js/parsers.js:7 gui/slick/js/parsers.js:8 +#: gui/slick/js/plotTooltip.js:6 gui/slick/js/sceneExceptionsTooltip.js:6 +#: gui/slick/views/inc_home_showList.mako:209 +#: gui/slick/views/inc_home_showList.mako:215 +#: gui/slick/views/inc_home_showList.mako:231 +msgid "Loading..." +msgstr "" + #: gui/slick/views/404.mako:5 msgid "You have reached this page by accident, please check the url." msgstr "" @@ -5711,14 +5864,6 @@ msgstr "" msgid "Select Columns" msgstr "" -#: gui/slick/views/displayShow.mako:408 -msgid "Hide Episodes" -msgstr "" - -#: gui/slick/views/displayShow.mako:410 -msgid "Show Episodes" -msgstr "" - #: gui/slick/views/displayShow.mako:424 msgid "NFO" msgstr "" @@ -6232,12 +6377,6 @@ msgstr "" msgid "loading" msgstr "" -#: gui/slick/views/inc_home_showList.mako:209 -#: gui/slick/views/inc_home_showList.mako:215 -#: gui/slick/views/inc_home_showList.mako:231 -msgid "Loading..." -msgstr "" - #: gui/slick/views/inc_qualityChooser.mako:31 msgid "<p><b><u>Preferred</u></b> qualities will replace those in <b><u>allowed</u></b>, even if they are lower.</p>" msgstr "" @@ -6775,6 +6914,10 @@ msgstr "" msgid "Update Emby" msgstr "" +#: gui/slick/views/layouts/main.mako:167 +msgid "Manage Torrents" +msgstr "" + #: gui/slick/views/layouts/main.mako:173 msgid "Missed Subtitle Management" msgstr "" diff --git a/locale/ru_RU/LC_MESSAGES/messages.json b/locale/ru_RU/LC_MESSAGES/messages.json index 3ce5050cdf080c16503be78a2ab60066d293e8ab..41240bf83eedf7bb03734c5e52cb84a861c0dc59 100644 --- a/locale/ru_RU/LC_MESSAGES/messages.json +++ b/locale/ru_RU/LC_MESSAGES/messages.json @@ -1 +1 @@ -{"messages":{"domain":"messages","locale_data":{"messages":{"100":[null,"100"],"250":[null,"250"],"500":[null,"500"],"":{"domain":"messages","plural_forms":"nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);","lang":"ru_RU"},"Drama":[null,"Драма"],"Mystery":[null,"Мистика"],"Science-Fiction":[null,"Научная фантастика"],"Crime":[null,"Детектив"],"Action":[null,"Экшен"],"Comedy":[null,"Комедия"],"Thriller":[null,"Триллер"],"Animation":[null,"Анимация"],"Family":[null,"Семейный"],"Fantasy":[null,"Фэнтези"],"Adventure":[null,"Приключения"],"Horror":[null,"Ужас"],"Film-Noir":[null,"Фильм нуар"],"Sci-Fi":[null,"Научная фантастика"],"Romance":[null,"Романтика"],"Sport":[null,"Спорт"],"War":[null,"Военный"],"Biography":[null,"Биография"],"History":[null,"История"],"Music":[null,"Музыка"],"Western":[null,"Вестерн"],"News":[null,"Новости"],"Sitcom":[null,"Комедийное шоу"],"Reality-TV":[null,"Реалити шоу"],"Documentary":[null,"Документальный фильм"],"Game-Show":[null,"Игровое шоу"],"Musical":[null,"Мюзикл"],"Talk-Show":[null,"Ток шоу"],"Started Download":[null,"Загрузка началась"],"Download Finished":[null,"Загрузка завершилась"],"Subtitle Download Finished":[null,"Загрузка субтитров завершена"],"SickRage Updated":[null,"SickRage обновлено"],"SickRage Updated To Commit#: ":[null,"SickRage обновлено до коммита №: "],"SickRage new login":[null,"SickRage новый логин"],"New login from IP: {0}. http://geomaplookup.net/?ip={0}":[null,"Новое имя входа с IP: {0}. http://geomaplookup.NET/?IP={0}"],"Repeat":[null,"Повторить"],"Repeat (Separated)":[null,"Повторить (раздельный)"],"Extend":[null,"Расширить"],"Extend (Limited)":[null,"Расширение (Limited)"],"Extend (Limited, E-prefixed)":[null,"Расширение (ограниченное, E-, обладающие префиксом)"],"Downloaded":[null,"Загрузить"],"Snatched":[null,"Перехвачено"],"Snatched (Proper)":[null,"Перехвачено (Proper)"],"Failed":[null,"Не удалось"],"Snatched (Best)":[null,"Перехвачено (Best)"],"Archived":[null,"В архиве"],"Unknown":[null,"Неизвестно"],"Unaired":[null,"Невышедшие"],"Skipped":[null,"Пропущен"],"Wanted":[null,"Нужно"],"Ignored":[null,"Игнорируется"],"Subtitled":[null,"С субтитрами"],"<No Filter>":[null,"<Без фильтра>"],"Daily Searcher":[null,"Ежедневный поиск"],"Backlog":[null,"Пропущеные"],"Show Updater":[null,"Обновление шоу"],"Check Version":[null,"Проверить версию"],"Show Queue":[null,"Очередь шоу"],"Search Queue (All)":[null,"Очередь поиска (все)"],"Search Queue (Daily Searcher)":[null,"Очередь поиска (ежедневный поиск)"],"Search Queue (Backlog)":[null,"Очередь поиска (пропущеное)"],"Search Queue (Manual)":[null,"Очередь поиска (ручная)"],"Search Queue (Retry/Failed)":[null,"Очередь поиска (Повтор/ошибка)"],"Search Queue (RSS)":[null,"Очередь поиска (RSS)"],"Find Propers":[null,"Найти Propers"],"Postprocessor":[null,"Постпроцессор"],"Find Subtitles":[null,"Найти субтитры"],"Trakt Checker":[null,"Trakt контролер"],"Event":[null,"Событие"],"Error":[null,"Ошибка"],"Tornado":[null,"Tornado"],"Thread":[null,"Поток"],"Main":[null,"Основной"],"Loading":[null,"Загрузка"],"New update found for SickRage, starting auto-updater":[null,"Новое обновление найдено для SickRage, запуск автообновления"],"Update was successful":[null,"Обновление выполнено успешно"],"Update failed!":[null,"Не удалось обновить!"],"Backup":[null,"Резервное копирование"],"Config backup in progress...":[null,"Резервное копирование конфигурации..."],"Config backup successful, updating...":[null,"Резервное копирование конфигурации успешно, обновление..."],"Config backup failed, aborting update":[null,"Резервное копирование конфигурации завершилось с ошибкой, отмена обновления"],"No update needed":[null,"Обновление не требуется"],"Mako Error":[null,"Mako ошибка"],"Oops":[null,"Что то пошло не по плану"],"Wrong API key used":[null,"Использован неправильный ключ API"],"Login":[null,"Логин"],"API Key not generated":[null,"API ключ не создан"],"API Builder":[null,"API Builder"],"Schedule":[null,"Расписание"],"Test 1":[null,"Тест 1"],"This is test number 1":[null,"Это тест номер 1"],"Test 2":[null,"Тест 2"],"This is test number 2":[null,"Это тест номер 2"],"You're using the {branch} branch. Please use 'master' unless specifically asked":[null,"Вы используете {branch} ветвь. Пожалуйста, используйте «master»"],"Invalid show parameters":[null,"Недопустимые параметры шоу"],"Invalid parameters":[null,"Неправильные параметры"],"Episode couldn't be retrieved":[null,"Не удалось получить эпизод"],"Home":[null,"Главная"],"Show List":[null,"Список шоу"],"Error: Unsupported Request. Send jsonp request with 'callback' variable in the query string.":[null,"Ошибка: Неподдерживаемый запрос. Отправьте запрос jsonp с переменной «обратного» в строке запроса."],"Success. Connected and authenticated":[null,"Успешно подключено"],"Authentication failed. SABnzbd expects":[null,"Сбой проверки подлинности. SABnzbd ожидает"],"as authentication method":[null,"как метод проверки подлинности"],"Unable to connect to host":[null,"Не удается подключиться к серверу"],"SMS sent successfully":[null,"SMS отправлено успешно"],"Problem sending SMS: {message}":[null,"Проблема с отправкой СМС: {message}"],"Telegram notification succeeded. Check your Telegram clients to make sure it worked":[null,"Telegram уведомление успешно. Проверьте ваш клиент Telegram, чтобы убедиться, что он работает"],"Error sending Telegram notification: {message}":[null,"Ошибка при отправке уведомления Telegram: {message}"],"join notification succeeded. Check your join clients to make sure it worked":[null,"уведомление о присоединении успешно установлено. Проверьте ваши присоединенные клиенты чтобы убедиться, что они работают"],"Error sending join notification: {message}":[null,"Ошибка при отправке уведомления о присоединении: {message}"]," with password":[null," с паролем"],"Registered and Tested growl successfully {growl_host}":[null,"Growl зарегистрирован и испытан успешно {growl_host}"],"Registration and Testing of growl failed {growl_host}":[null,"Регистрация и тестирование growl провалилось {growl_host}"],"Test prowl notice sent successfully":[null,"Тест prowl уведомление успешно отправлено"],"Test prowl notice failed":[null,"Тест prowl уведомление не отправилось"],"Boxcar2 notification succeeded. Check your Boxcar2 clients to make sure it worked":[null,"Boxcar2 уведомление успешно. Проверьте ваш Boxcar2 клиент, чтобы убедиться, что он работает"],"Error sending Boxcar2 notification":[null,"Ошибка при отправке уведомления Boxcar2"],"Pushover notification succeeded. Check your Pushover clients to make sure it worked":[null,"Pushover уведомление удалось. Проверьте ваши клиент Pushover, чтобы убедиться, что он работает"],"Error sending Pushover notification":[null,"Ошибка отправки уведомления Pushover"],"Key verification successful":[null,"Проверка ключа прошла успешно"],"Unable to verify key":[null,"Невозможно проверить ключ"],"Tweet successful, check your twitter to make sure it worked":[null,"Tweet успешно отправлен, проверьте ваш twitter, чтобы убедиться, что он работает"],"Error sending tweet":[null,"Ошибка отправки Tweet"],"Please enter a valid account sid":[null,"Пожалуйста, введите действительный sid учетной записи"],"Please enter a valid auth token":[null,"Пожалуйста, введите действительный auth token"],"Please enter a valid phone sid":[null,"Пожалуйста, введите действительный sid телефона"],"Please format the phone number as \"+1-###-###-####\"":[null,"Отформатируйте номер телефона как «+1-###-###-###»"],"Authorization successful and number ownership verified":[null,"Авторизация успешна и номер собственности проверены"],"Error sending sms":[null,"Ошибка при отправке sms"],"Slack message successful":[null,"Slack сообщение успешно"],"Slack message failed":[null,"Slack сообщение не отправлено! Ошибка!"],"Discord message successful":[null,"Discord сообщение успешно"],"Discord message failed":[null,"Discord сообщение не отправлено! Ошибка!"],"Test KODI notice sent successfully to {kodi_host}":[null,"Тест KODI извещение отправлено успешно {kodi_host}"],"Test KODI notice failed to {kodi_host}":[null,"Тест KODI отправить уведомление не удалось {kodi_host}"],"Successful test notice sent to Plex Home Theater ... {plex_clients}":[null,"Успешный тест отправки извещения Plex Home Theater... {plex_clients}"],"Test failed for Plex Home Theater ... {plex_clients}":[null,"Тест не пройден Plex Home Theater... {plex_clients}"],"Tested Plex Home Theater(s)":[null,"Протестированные Plex Home Theater(s)"],"Successful test of Plex Media Server(s) ... {plex_servers}":[null,"Успешное испытание Plex медиа серверов... {plex_servers}"],"Test failed, No Plex Media Server host specified":[null,"Тест не был пройден, не указаны Plex Media Server"],"Test failed for Plex Media Server(s) ... {plex_servers}":[null,"Тест не пройден Plex медиа серверов... {plex_servers}"],"Tested Plex Media Server host(s)":[null,"Протестированные Plex Media Server"],"Tried sending desktop notification via libnotify":[null,"Попытка отправки уведомлений рабочего стола через libnotify"],"Test notice sent successfully to {emby_host}":[null,"Тестирование извещения успешно {emby_host}"],"Test notice failed to {emby_host}":[null,"Тест отправки уведомления. Ошибка! {emby_host}"],"Successfully started the scan update":[null,"Успешно запущено сканирование обновлений."],"Test failed to start the scan update":[null,"Тест запуска сканирования обновлений провалился! Ошибка!"],"Test notice sent successfully to {nmj2_host}":[null,"Тестирование извещения успешно {nmj2_host}"],"Test notice failed to {nmj2_host}":[null,"Тест отправки уведомления. Ошибка! {nmj2_host}"],"Trakt Authorized":[null,"Тракт авторизованный"],"Trakt Not Authorized!":[null,"Тракт не авторизован!"],"Test email sent successfully! Check inbox.":[null,"Тестовое сообщение отправлено успешно! Проверьте почтовый ящик."],"ERROR: {last_error}":[null,"ОШИБКА: {last_error}"],"Test NMA notice sent successfully":[null,"Тестовое NMA уведомление отправлено успешно"],"Test NMA notice failed":[null,"Тестовое NMA уведомление неудачно"],"Pushalot notification succeeded. Check your Pushalot clients to make sure it worked":[null,"Pushalot уведомление удалось. Проверьте ваши клиент Pushalot, чтобы убедиться, что он работает"],"Error sending Pushalot notification":[null,"Ошибка при отправке уведомления Pushalot"],"Pushbullet notification succeeded. Check your device to make sure it worked":[null,"Pushbullet уведомление успешно. Проверьте ваше устройство, чтобы убедиться, что оно работает"],"Error sending Pushbullet notification":[null,"Ошибка при отправке уведомления Pushbullet"],"Status":[null,"Состояние"],"Restarting SickRage":[null,"Перезапуск SickRage"],"Update Failed":[null,"Не удалось обновить"],"Update wasn't successful, not restarting. Check your log for more information.":[null,"Обновление не удалось, не перезагрузилось. Проверьте журнал для получения дополнительной информации."],"Checking out branch":[null,"Проверка ветви"],"Already on branch":[null,"Уже на ветке"],"Invalid show ID: {show}":[null,"Недопустимый шоу ID: {show}"],"Show not in show list":[null,"Шоу нет в списке Шоу"],"Edit":[null,"Редактировать"],"This show is in the process of being downloaded - the info below is incomplete.":[null,"Это шоу в процессе загрузки - информация является неполной."],"The information on this page is in the process of being updated.":[null,"Информация на этой странице находится в процессе обновления."],"The episodes below are currently being refreshed from disk":[null,"Эпизоды в настоящее время обновляются с диска"],"Currently downloading subtitles for this show":[null,"В настоящее время загружаются субтитры для этого шоу"],"This show is queued to be refreshed.":[null,"Это шоу добавлено в очередь для обновления."],"This show is queued and awaiting an update.":[null,"Это шоу находится в очереди и ожидает обновления."],"This show is queued and awaiting subtitles download.":[null,"Это шоу находится в очереди и ожидает загрузки субтитров."],"Resume":[null,"Возобновить"],"Pause":[null,"Пауза"],"Remove":[null,"Удалить"],"Re-scan files":[null,"Повторно сканировать файлы"],"Force Full Update":[null,"Принудительное полное обновление"],"Update show in KODI":[null,"Обновление шоу в KODI"],"Update show in Emby":[null,"Обновление шоу в Emby"],"Hide specials":[null,"Скрыть specials"],"Show specials":[null,"Показать specials"],"Preview Rename":[null,"Переименование файлов шоу"],"Download Subtitles":[null,"Скачать субтитры"],"No scene exceptions":[null,"Нет исключений по сериям"],"Invalid show ID":[null,"Недопустимый ID шоу"],"Unable to find the specified show":[null,"Не удается найти указанное шоу"],"Unable to retreive Fansub Groups from AniDB.":[null,"Не удается извлечь Fansub группы из AniDB."],"Edit Show":[null,"Редактировать шоу"],"Unable to refresh this show: {error}":[null,"Не удается обновить это шоу: {error}"],"New location <tt>{location}</tt> does not exist":[null,"Новое расположение <tt>{location}</tt> не существует"],"Unable to update show: {error}":[null,"Не удается обновить шоу: {error}"],"Unable to force an update on scene exceptions of the show.":[null,"Не удается выполнить принудительное обновление исключений сцен в шоу."],"Unable to force an update on scene numbering of the show.":[null,"Не удается выполнить принудительное обновление нумерации сцен в шоу."],"{num_errors:d} error{plural} while saving changes:":[null,"{num_errors:d} ошибка {plural} при сохранении изменений:"],"{show_name} has been {paused_resumed}":[null,"{show_name} был {paused_resumed}"],"resumed":[null,"возобновлено"],"paused":[null,"приостановлено"],"{show_name} has been {deleted_trashed} {was_deleted}":[null,"{show_name} был {deleted_trashed} {was_deleted}"],"deleted":[null,"удалено"],"trashed":[null,"в корзине"],"(media untouched)":[null,"(media незатронуто)"],"(with all related media)":[null,"(все связанные с media)"],"Unable to refresh this show.":[null,"Не удается обновить это шоу."],"Unable to update this show.":[null,"Не удается обновить это шоу."],"Library update command sent to KODI host(s)): {kodi_hosts}":[null,"Команда обновления Библиотеки, отправлена KODI host(s)): {kodi_hosts}"],"Unable to contact one or more KODI host(s)): {kodi_hosts}":[null,"Не удается связаться с одним или несколькими KODI host(s)): {kodi_hosts}"],"Library update command sent to Plex Media Server host: {plex_server}":[null,"Команда обновления Библиотеки, отправлена на Plex Media Server: {plex_server}"],"Unable to contact Plex Media Server host: {plex_server}":[null,"Не удается связаться с Plex Media Server: {plex_server}"],"Library update command sent to Emby host: {emby_host}":[null,"Команда обновление Библиотеки, отправлена Emby: {emby_host}"],"Unable to contact Emby host: {emby_host}":[null,"Не удается связаться с Emby сервером: {emby_host}"],"You must specify a show and at least one episode":[null,"Необходимо указать шоу и по крайней мере один эпизод"],"Invalid status":[null,"Недопустимый статус"],"Backlog was automatically started for the following seasons of <b>{show_name}</b>":[null,"Поиск пропущенных автоматически запускается для следующих сезонов <b>{show_name}</b>"],"Season":[null,"Сезон"],"Backlog started":[null,"Поиск пропущенных"],"Retrying Search was automatically started for the following season of <b>{show_name}</b>":[null,"Повтор поиска автоматически запустился для следующего сезона <b>{show_name}</b>"],"Retry Search started":[null,"Повторный поиск начат"],"You must specify a show":[null,"Необходимо указать шоу"],"Can't rename episodes when the show dir is missing.":[null,"Не удается переименовать эпизоды, когда директория шоу отсутствует."],"New subtitles downloaded: {new_subtitle_languages}":[null,"Новые субтитры загружены: {new_subtitle_languages}"],"No subtitles downloaded":[null,"Субтитры не загружены"],"IRC":[null,"IRC"],"Could not load news from the repo. [Click here for news.md])({news_url})":[null,"Не удалось загрузить Новости из репозитория. [Нажмите здесь news.md]) ({news_url})"],"The was a problem connecting to github, please refresh and try again":[null,"Была проблема с подключением к github, пожалуйста, обновите страницу и повторите попытку"],"Could not load changes from the repo. [Click here for CHANGES.md]({changes_url})":[null,"Не удалось загрузить изменения из репозитория. [Нажмите здесь CHANGES.md] ({changes_url})"],"Changelog":[null,"Список изменений"],"Post Processing":[null,"Пост-обработка"],"Add Shows":[null,"Добавить шоу"],"No folders selected.":[null,"Папки не выбран."],"New Show":[null,"Новое шоу"],"Trending Shows":[null,"Актуальные шоу"],"Popular Shows":[null,"Популярные шоу"],"Most Anticipated Shows":[null,"Самые ожидаемые шоу"],"Most Collected Shows":[null,"Наиболее кассовые шоу"],"Most Watched Shows":[null,"Самые популярные шоу"],"Most Played Shows":[null,"Наиболее популярные шоу"],"Recommended Shows":[null,"Рекомендуемые шоу"],"New Shows":[null,"Новое шоу"],"Season Premieres":[null,"Премьеры сезона"],"Existing Show":[null,"Существующие шоу"],"No root directories setup, please go back and add one.":[null,"Корневые каталоги не настроены, вернитесь и добавьте один."],"Show added":[null,"Шоу добавлено"],"Adding the specified show {show_name}":[null,"Добавление указанного шоу {show_name}"],"Missing params, no Indexer ID or folder: {show_to_add} and {root_dir}/{show_path}":[null,""],"Unknown error. Unable to add show due to problem with show selection.":[null,"Неизвестная ошибка. Не удается добавить шоу из-за проблемы с выбором шоу."],"Unable to add show":[null,"Не удается добавить шоу"],"Folder {show_dir} exists already":[null,"{show_dir} папка уже существует"],"Unable to create the folder {show_dir}, can't add the show":[null,"Не удается создать папку {show_dir}, не удалось добавить шоу"],"Adding the specified show into {show_dir}":[null,"Добавление указанного шоу в {show_dir}"],"Shows Added":[null,"Шоу добавлено"],"Automatically added {num_shows} from their existing metadata files":[null,"Автоматически добавлено {num_shows} из существующих файлов метаданных"],"Mass Update":[null,"Массовое обновление"],"Episode Overview":[null,"Обзор эпизода"],"Missing Subtitles":[null,"Недостающие субтитры"],"Backlog Overview":[null,"Обзор пропущенных"],"Mass Edit":[null,"Массовое редактирование"],"Unable to update show: {excption_format}":[null,"Не удается обновить шоу: {excption_format}"],"Unable to refresh show {show_name}: {excption_format}":[null,"Не удается обновить шоу {show_name}: {excption_format}"],"Errors encountered":[null,"Обнаруженные ошибки"],"Updates":[null,"Обновления"],"Refreshes":[null,"Обновления"],"Renames":[null,"Переименования"],"Subtitles":[null,"Субтитры"],"The following actions were queued":[null,"Следующие действия поставлены в очередь"],"For best results please set the Download Station alias as":[null,"Для достижения наилучших результатов настройте псевдоним Download Station как"],"You can check this setting in the Synology DSM":[null,"Вы можете проверить этот параметр в Synology DSM"],"Control Panel":[null,"Панель управления"],"Application Portal":[null,"Портал приложений"],"Make sure you allow DSM to be embedded with iFrames too in":[null,""],"DSM Settings":[null,"Параметры DSM"],"Security":[null,"Безопасноть"],"Manage Torrents":[null,"Управление торрентами"],"Failed Downloads":[null,"Сбойные загрузки"],"Manage Searches":[null,"Управление поиском"],"Backlog search started":[null,"Начался поиск пропущенных "],"Daily search started":[null,"Начат ежедневный поиск"],"Find propers search started":[null,"Начат поиск propers"],"Subtitle search started":[null,"Начат поиск субтитров"],"Remove Selected":[null,"Удалить помеченные"],"Clear History":[null,"Очистить историю"],"Trim History":[null,"Урезать историю"],"Selected history entries removed":[null,"Выбранные записи истории удалены"],"History cleared":[null,"История очищена"],"Removed history entries older than 30 days":[null,"Удалить записи истории старше 30 дней"],"General":[null,"Общие"],"Backup/Restore":[null,"Резервное копирование и восстановление"],"Search Settings":[null,"Настройки поиска"],"Search Providers":[null,"Поисковые провайдеры"],"Subtitles Settings":[null,"Настройки субтитров"],"Notifications":[null,"Уведомления"],"Anime":[null,"Аниме"],"SickRage Configuration":[null,"Конфигурация SickRage"],"Config - Shares":[null,""],"Windows Shares Configuration":[null,""],"Saved Shares":[null,""],"Your Windows share settings have been saved":[null,""],"Config - General":[null,"Config - Основной"],"General Configuration":[null,"Основные настройки"],"Saved Defaults":[null,"Сохраненные значения по умолчанию"],"Your \"add show\" defaults have been set to your current selections.":[null,""],"Unable to create directory {directory}, log directory not changed.":[null,"Не удается создать каталог {directory}, каталог журналов не изменился."],"Unable to create directory {directory}, https cert directory not changed.":[null,"Не удается создать каталог {directory}, https cert директория не изменилась."],"Unable to create directory {directory}, https key directory not changed.":[null,"Не удается создать каталог {directory}, https ключ директории не изменился."],"Error(s) Saving Configuration":[null,"Ошибка(и), сохранения конфигурации"],"Configuration Saved":[null,"Конфигурация сохранена"],"Config - Backup/Restore":[null,"Config - резервное копирование и восстановление"],"Config - Episode Search":[null,"Config - Поиск эпизодов"],"Config - Post Processing":[null,"Config - пост обработка"],"Unpacking Not Supported, disabling unpack setting":[null,"Распаковка не поддерживается, отключение параметра распаковывать"],"You tried saving an invalid normal naming config, not saving your naming settings":[null,""],"You tried saving an invalid anime naming config, not saving your naming settings":[null,""],"Config - Providers":[null,"Config - провайдеров"],"No Provider Name specified":[null,"Не указано имя провайдера"],"No Provider Url specified":[null,"Не указан URL-адрес провайдера"],"No Provider Api key specified":[null,"Не указан API ключ провадера"],"Config - Notifications":[null,"Config - уведомления"],"Config - Subtitles":[null,"Config - субтитры"],"Config - Anime":[null,"Config - аниме"],"Clear Errors":[null,"Очистить ошибки"],"Clear Warnings":[null,"Очистить предупреждения"],"Submit Errors":[null,"Отправить ошибки"],"Logs & Errors":[null,"Журналы и ошибки"],"Log File":[null,"Файл журнала"],"Logs":[null,"Журналы"],"This is a test notification from SickRage":[null,"Это тестовое уведомление от SickRage"],"Please fill out the necessary fields above.":[null,""],"This pattern is invalid.":[null,"Этот шаблон является недопустимым."],"This pattern would be invalid without the folders, using it will force \"Season Folders\" on for all shows.":[null,""],"This pattern is valid.":[null,"Этот шаблон является допустимым."],"Resume updating the log on this page.":[null,"Возобновление обновления журнала на этой странице."],"Pause updating the log on this page.":[null,""],"You have reached this page by accident, please check the url.":[null,"Вы попали на эту страницу случайно, пожалуйста, проверьте URL-адрес."],"A mako error has occured.<br>\n If this happened during an update a simple page refresh may be the solution.<br>\n Mako errors that happen during updates may be a one time error if there were significant ui changes.":[null,""],"Show/Hide Error":[null,"Показать/скрыть ошибки"],"Add New Show":[null,"Добавить новое шоу"],"For shows that you haven't downloaded yet, this option finds a show on theTVDB.com, creates a directory for it's episodes, and adds it to SickRage.":[null,""],"Add From Trakt Lists":[null,"Добавить из списков Trakt"],"For shows that you haven't downloaded yet, this option lets you choose from a show from one of the Trakt lists to add to SickRage.":[null,""],"Add From IMDB's Popular Shows":[null,"Добавить из популярных шоу IMDB"],"View IMDB's list of the most popular shows. This feature uses IMDB's MOVIEMeter algorithm to identify popular TV Series.":[null,""],"Add Existing Shows":[null,"Добавление существующих шоу"],"Use this option to add shows that already have a folder created on your hard drive. SickRage will scan your existing metadata/episodes and add the show accordingly.":[null,""],"Add Existing Show":[null,"Добавить существующее шоу"],"Manage Directories":[null,"Управление каталогами"],"Customize Options":[null,"Настроить параметры"],"SickRage can add existing shows, using the current options, by using locally stored NFO/XML metadata to eliminate user interaction. If you would rather have SickRage prompt you to customize each show, then use the checkbox below.":[null,""],"Prompt me to set settings for each show":[null,"Запрашивать параметры для каждого шоу"],"Displaying folders within these directories which aren't already added to SickRage":[null,""],"Submit":[null,"Отправить"],"Find a show on theTVDB":[null,"Найти шоу на theTVDB"],"Show retrieved from existing metadata":[null,"Шоу, получено из существующих метаданных"],"All Indexers":[null,"Все индексаторы"],"Search":[null,"Поиск"],"This will only affect the language of the retrieved metadata file contents and episode filenames.":[null,""],"This <b>DOES NOT</b> allow SickRage to download non-english TV episodes!":[null,""],"Pick the parent folder":[null,"Выберите родительскую папку"],"Pre-chosen Destination Folder":[null,"Предварительно выбранная папка"],"Customize options":[null,"Настроить параметры"],"Add Show":[null,"Добавить Шоу"],"Skip Show":[null,"Пропустить шоу"],"Sort By":[null,"Сортировать по"],"Name":[null,"Имя"],"Original":[null,"Оригинальный"],"Votes":[null,"Голоса"],"Rating":[null,"Рейтинг"],"Rating > Votes":[null,"Рейтинг > голосов"],"Sort Order":[null,"Порядок сортировки"],"Asc":[null,"По возрастанию"],"Desc":[null,"По убыванию"],"Fetching of IMDB Data failed. Are you online?":[null,"Кэширование данных IMDB не удалось. Вы онлайн?"],"Exception":[null,"Исключение"],"Select Trakt List":[null,"Выберите список Trakt"],"Most Anticipated":[null,"Самые ожидаемые"],"Trending":[null,"Популярные"],"Popular":[null,"Популярные"],"Most Watched":[null,"Самые просматриваемые"],"Most Played":[null,"Часто воспроизводимые"],"Most Collected":[null,"Большинство собранных"],"Recommended":[null,"Рекомендованные"],"Toggle navigation":[null,"Переключить навигацию"],"Profile":[null,"Профиль"],"JSONP":[null,"JSONP"],"Back to SickRage":[null,"Вернуться к SickRage"],"Parameters":[null,"Параматры"],"Required":[null,"Требуется"],"Description":[null,"Описание"],"Type":[null,"Тип"],"Default value":[null,"Значение по умолчанию"],"Allowed values":[null,"Допустимые значения"],"Playground":[null,""],"Clear":[null,"Очистить/ удалить"],"Yes":[null,"Да"],"No":[null,"Нет"],"season":[null,"сезон"],"episode":[null,"Эпизод"],"Python Version":[null,"Версия Python"],"SSL Version":[null,"Версия SSL"],"OS":[null,"OS"],"Locale":[null,"Locale"],"User":[null,"Пользователь"],"Program Folder":[null,"Папка программы"],"Config File":[null,"Конфигурационный файл"],"Database File":[null,"Файл базы данных"],"Cache Folder":[null,"Папка кэша"],"Log Folder":[null,"Папка журнала"],"Arguments":[null,"Аргументы"],"Web Root":[null,"Корень веб"],"Website":[null,"Веб-сайт"],"Wiki":[null,"Вики"],"Source":[null,"Источник"],"IRC Chat":[null,"IRC чат"],"AnimeDB Settings":[null,"Параметры AnimeDB"],"Look & Feel":[null,"Внешний вид"],"AniDB is non-profit database of anime information that is freely open to the public":[null,"AniDB является некоммерческой базой данных информации об аниме, она открыта для публичного доступа"],"Enable":[null,"Включить"],"should SickRage use data from AniDB?":[null,"SickRage следует использовать данные из AniDB?"],"AniDB Username":[null,"Имя пользователя AniDB"],"username of your AniDB account":[null,"имя пользователя аккаунта AniDB"],"AniDB Password":[null,"Пароль AniDB"],"password of your AniDB account":[null,"пароль вашей учетной записи AniDB"],"AniDB MyList":[null,"AniDB MyList"],"do you want to add the PostProcessed episodes to the MyList?":[null,"Вы хотите добавить пост обработку эпизодов MyList?"],"Look and Feel":[null,"Внешний вид"],"How should the anime functions show and behave.":[null,""],"Split show lists":[null,"Разделить списки шоу"],"separate anime and normal shows in groups":[null,"разделить аниме и обычные шоу на группы"],"Split in tabs":[null,"Разделить на вкладки"],"use tabs for when splitting show lists":[null,"разделять на вкладки когда разделены списки шоу"],"Restore":[null,"Восстановить"],"Backup your main database file and config.":[null,"Резервное копирование файла главной базы данных и конфигурации."],"Select the folder you wish to save your backup file to":[null,"Выберите папку, в которую вы хотите сохранить файл резервной копии"],"Restore your main database file and config.":[null,"Восстановите файл главной базы данных и конфигурации."],"Select the backup file you wish to restore":[null,"Выберите файл резервной копии, которую вы хотите восстановить"],"Misc":[null,"Разное"],"Interface":[null,"Интерфейс"],"Advanced Settings":[null,"Расширенные настройки"],"Startup options. Indexer options. Log and show file locations.":[null,"Параметры запуска. Параметры индексатора. Расположение файлов журнала и шоу."],"Some options may require a manual restart to take effect.":[null,"Некоторые опции могут потребовать перезагрузки для вступления в силу."],"Default Indexer Language":[null,"Язык индексатора по умолчанию"],"for adding shows and metadata providers":[null,"для добавления шоу и метаданных провайдеров"],"Launch browser":[null,"Запуск браузера"],"open the SickRage home page on startup":[null,"Откройте домашнюю страницу при запуске SickRage"],"Initial page":[null,"Начальная страница"],"Shows":[null,"Шоу"],"when launching SickRage interface":[null,"При запуске интерфейса SickRage"],"Choose hour to update shows":[null,"Выберите время обновления шоу"],"with information such as next air dates, show ended, etc. Use 15 for 3pm, 4 for 4am etc.":[null,""],"note":[null,"заметка"],"minutes are randomized each time SickRage is started":[null,""],"Send to trash for actions":[null,""],"when using show \"Remove\" and delete files":[null,""],"on scheduled deletes of the oldest log files":[null,""],"selected actions use trash (recycle bin) instead of the default permanent delete":[null,""],"Log file folder location":[null,"Местоположение папки файла журнала"],"Number of Log files saved":[null,"Количество сохраняемых файлов журналов"],"number of log files saved when rotating logs (default: 5) (REQUIRES RESTART)":[null,"количество файлов журнала, сохраненные при циклической записи (по умолчанию: 5) (требуется Перезагрузка)"],"Size of Log files saved":[null,"Размер файлов журнала"],"maximum size in MB of the log file (default: 1MB) (REQUIRES RESTART)":[null,"максимальный размер в МБ файла журнала (по умолчанию: 1MB) (требуется Перезагрузка)"],"Use initial indexer set to":[null,""],"as the default selection when adding new shows":[null,""],"Timeout show indexer at":[null,"Индексатор шоу тайм-аут"],"seconds of inactivity when finding new shows (default:20)":[null,""],"Show root directories":[null,"Показать корневые директории"],"where the files of shows are located":[null,"где находятся файлы шоу"],"Save Changes":[null,"Сохранить изменения"],"Options for software updates.":[null,"Параметры для обновлений программного обеспечения."],"Check software updates":[null,"Проверить обновления программного обеспечения"],"and display notifications when updates are available. Checks are run on startup and at the frequency set below*":[null,""],"Automatically update":[null,"Автоматическое обновление"],"fetch and install software updates. Updates are run on startup and in the background at the frequency set below*":[null,""],"Check the server every*":[null,"Проверять сервер каждые *"],"hours for software updates (default:1)":[null,"часов для обновлений программного обеспечения (по умолчанию: 1)"],"Notify on software update":[null,"Уведомлять о обновлении программного обеспечения"],"send a message to all enabled notifiers when SickRage has been updated":[null,"Отправить сообщение для всех включенных оповещателей, когда SickRage будет обновлен"],"User Interface":[null,"Пользовательский интерфейс"],"Options for visual appearance.":[null,"Параметры внешнего вида."],"Interface Language":[null,"Язык интерфейса"],"System Language":[null,"Язык системы"],"for appearance to take effect, save then refresh your browser":[null,"что бы изменения вступили в силу нажмите сохранить, затем обновите страницу в браузере"],"Display theme":[null,"Тема экрана"],"Dark":[null,"Темный"],"Light":[null,"Светлый"],"Use a background image":[null,"Использовать фоновый рисунок"],"use a custom image as background for SickRage":[null,"использовать пользовательское изображение в качестве фона для SickRage"],"Background Path":[null,"Путь к фоновому изображению"],"Path to the background image":[null,"Путь к фоновому изображению"],"Show fanart in the background":[null,"Показать фанарт на заднем плане"],"on the show summary page":[null,"на странице шоу"],"Fanart transparency":[null,"прозрачность Фанарт"],"transparency of the fanart in the background":[null,"прозрачность фанарт на заднем плане"],"Use a custom stylesheet file":[null,""],"use a custom .css file to style SickRage (for advanced users)":[null,""],"Stylesheet File Path":[null,""],"Path to the stylesheet (.css) file":[null,""],"Show all seasons":[null,"Показать все сезоны"],"Sort with \"The\", \"A\", \"An\"":[null,"Сортировка с \"The\", \"A\", \"An\""],"include articles (\"The\", \"A\", \"An\") when sorting show lists":[null,""],"Missed episodes range":[null,"Диапазон пропущенных эпизодов"],"set the range in days of the missed episodes in the Schedule page":[null,"Установите диапазон дней пропущенных эпизодов на странице расписания"],"Display fuzzy dates":[null,"Отображение нечетких дат"],"move absolute dates into tooltips and display e.g. \"Last Thu\", \"On Tue\"":[null,""],"Trim zero padding":[null,""],"remove the leading number \"0\" shown on hour of day, and date of month":[null,""],"Date style":[null,"Стиль даты"],"Use System Default":[null,"Использовать настройки системы по умолчанию"],"Time style":[null,"Стиль времени"],"seconds are only shown on the History page":[null,"секунды отображаются только на странице истории"],"Timezone":[null,"Часовой пояс"],"Local":[null,"Местное"],"Network":[null,"Сеть"],"display dates and times in either your timezone or the shows network timezone":[null,"Показывать даты и время в любом часовом поясе или в часовом поясе сети"],"use local timezone to start searching for episodes minutes after show ends (depends on your dailysearch frequency)":[null,""],"Download url":[null,"url для загрузки"],"URL where the shows can be downloaded.":[null,"URL-адрес, где можно скачать шоу."],"Web Interface":[null,"Веб-интерфейс"],"it is recommended that you enable a username and password to secure SickRage from being tampered with remotely.":[null,"рекомендуется, чтобы вы установили имя пользователя и пароль для обеспечения безопасности SickRage при удаленном доступе."],"these options require a manual restart to take effect.":[null,"Эти настройки требуют ручной перезагрузки для вступления в силу."],"API key":[null,"Ключ API"],"used to give 3rd party programs limited access to SickRage":[null,""],"you can try all the features of the API":[null,"Вы можете попробовать все функции API"],"here":[null,"Здесь"],"HTTP logs":[null,"Логи HTTP"],"enable logs from the internal Tornado web server":[null,"включить журналы от внутреннего веб-сервера Торнадо"],"HTTP username":[null,"HTTP имя пользователя"],"set blank for no login":[null,"Оставьте пустым для входа без пароля"],"HTTP password":[null,"Пароль HTTP"],"blank = no authentication":[null,"пустой = без проверки подлинности"],"HTTP port":[null,"Порт HTTP"],"web port to browse and access SickRage (default:8081)":[null,"веб-порт для просмотра и доступа к SickRage (по умолчанию: 8081)"],"Notify on login":[null,"Уведомления при входе"],"enable to be notified when a new login happens in webserver":[null,"позволяют получать уведомления, когда кто то новый входит на веб-сервер"],"Listen on IPv6":[null,"Прослушивание IPv6"],"attempt binding to any available IPv6 address":[null,"попытка привязки к любому доступному адресу IPv6"],"Enable HTTPS":[null,"Включить HTTPS"],"enable access to the web interface using a HTTPS address":[null,"разрешить доступ к веб-интерфейсу, с помощью HTTPS"],"HTTPS certificate":[null,"Сертификат HTTPS"],"file name or path to HTTPS certificate":[null,"имя файла или путь к сертификату HTTPS"],"HTTPS key":[null,"HTTPS ключ"],"file name or path to HTTPS key":[null,"имя файла или путь к ключу HTTPS"],"Reverse proxy headers":[null,"Reverse proxy headers"],"accept the following reverse proxy headers (advanced)...":[null,"accept the following reverse proxy headers (advanced)..."],"(X-Forwarded-For, X-Forwarded-Host, and X-Forwarded-Proto)":[null,"(X-Forwarded-For, X-Forwarded-Host, and X-Forwarded-Proto)"],"CPU throttling":[null,"Нагрузка на процессор"],"Normal (default). High is lower and Low is higher CPU use":[null,"Обычный (по умолчанию). Высокий уровень ниже, а низкий - более высокая загрузка ЦП"],"Anonymous redirect":[null,"Анонимное перенаправление"],"backlink protection via anonymizer service, must end in \"?\"":[null,"Обратная ссылка через службу анонимайзера, должна заканчиваться на «?»"],"Enable debug":[null,"Включение отладки"],"enable debug logs":[null,"Включить отладочные журналы"],"Verify SSL Certs":[null,"Проверка SSL сертификатов"],"verify SSL Certificates (Disable this for broken SSL installs (Like QNAP))":[null,"Проверка SSL-сертификатов (Disable this for broken SSL installs (Like QNAP))"],"No Restart":[null,"Без перезапуска"],"only shutdown when restarting SR":[null,"только выключать при перезапуске SR"],"only select this when you have external software restarting SR automatically when it stops (like FireDaemon)":[null,"Выбирайте это только при наличии внешнего программного обеспечения которое запустит SR автоматически, когда он остановится (например FireDaemon)"],"Encrypt passwords":[null,"Шифровать пароли"],"in the <code>config.ini</code> file":[null,"в файле <code>config.ini</code>"],"warning":[null,"предупреждение"],"passwords must only contain":[null,"пароли должны содержать только"],"ASCII characters":[null,"ASCII символы"],"Unprotected calendar":[null,"Незащищенный календарь"],"allow subscribing to the calendar without user and password":[null,"Разрешить подписку на календарь без логина и пароля"],"some services like Google Calendar only work this way":[null,"Некоторые услуги, такие как Google календарь могут работать только таким образом"],"Google Calendar Icons":[null,"Иконка Google Календарь"],"show an icon next to exported calendar events in Google Calendar":[null,"Показывать значок рядом с экспортированными событиями календаря в Календаре Google."],"Proxy host":[null,"Прокси-сервер"],"blank to disable or proxy to use when connecting to providers":[null,"Оставьте пустым чтобы отключить или прокси-сервер для использования при подключении к провайдерам"],"also use global proxy setting for indexers (tvdb, xem, anidb, etc.)":[null,"также используйте глобальные настройки прокси-сервера для индексаторов (tvdb, xem, anidb и т.д.)"],"Skip Remove Detection":[null,"Пропустить Remove Detection"],"skip detection of removed files":[null,"Пропустить обнаружение удаленных файлов"],"if disabled the episode will be set to the default deleted status":[null,"Если отключено, эпизоду будет присвоено значение по умолчанию статус удален"],"Default deleted episode status":[null,"Статус удаленного эпизода по умолчанию"],"define the status to be set for media file that has been deleted.":[null,"Определите статус какой статус необходимо задать файлу мультимедиа, который был удален."],"Archived option will keep previous downloaded quality":[null,"Архивированный вариант будет сохранять предыдущее качество загрузки"],"example: Downloaded (1080p WEB-DL) ==> Archived (1080p WEB-DL)":[null,"Пример: Загружен (1080p WEB-DL) ==> Архив (1080p WEB-DL)"],"Options for github related features.":[null,"Настройки для github связанных функций."],"Branch version":[null,"Версия ветви"],"error: No branches found.":[null,"Ошибка: не найден ветви."],"select branch to use (restart required)":[null,"Выберите ветвь для использования (требуется перезапуск)"],"Authorization Type":[null,"Тип авторизации"],"Username and password":[null,"Имя пользователя и пароль"],"Personal access token":[null,"Персональный access token"],"You must use a personal access token if you're using \"two-factor authentication\" on GitHub.":[null,"Необходимо использовать личный access token, если вы пользуетесь «двух факторной проверкой подлинности» на GitHub."],"GitHub username":[null,"Имя пользователя GitHub"],"*** (REQUIRED FOR SUBMITTING ISSUES) ***":[null,"(ТРЕБУЕТСЯ ДЛЯ ПРЕДСТАВЛЕНИЯ ВОПРОСОВ) ***"],"GitHub password":[null,"GitHub пароль"],"GitHub personal access token":[null,"GitHub персонального access token"],"Generate Token":[null,"Генерировать token"],"Manage Tokens":[null,"Управление tokens"],"GitHub remote for branch":[null,"GitHub удаленной ветви"],"access repo configured remotes (save then refresh browser)":[null,"Доступ к репозиторию настроен (сохраните затем обновите браузер)"],"default":[null,"по умолчанию"],"origin":[null,"Оригинал"],"Git executable path":[null,"Путь к исполняемому файлу Git"],"only needed if OS is unable to locate git from env":[null,"требуется только, если ОС не удается найти git от env"],"Git reset":[null,"Git сброс"],"removes untracked files and performs a hard reset on git branch automatically to help resolve update issues":[null,"Удаляет неотслеживаемые файлы и выполняет жесткий сброс в git branch автоматически, чтобы помочь разрешить проблемы с обновлением"],"Home Theater / NAS":[null,"Домашний кинотеатр / NAS"],"Devices":[null,"Устройства"],"Social":[null,"Социальные"],"A free and open source cross-platform media center and home entertainment system software with a 10-foot user interface designed for the living-room TV.":[null,"Бесплатный межплатформенный мультимедийный центр с открытым исходным кодом и программное обеспечение для домашних развлекательных систем с 10-футовым пользовательским интерфейсом, предназначенным для использования в гостиной."],"send KODI commands?":[null,"Отправить KODI команды?"],"Always on":[null,"Включен всегда"],"log errors when unreachable?":[null,"Записать в журнал ошибок, когда недоступен?"],"Notify on snatch":[null,"Уведомлять о перехвате"],"send a notification when a download starts?":[null,"отправить уведомление, когда начнется загрузка?"],"Notify on download":[null,"Уведомлять о загрузке"],"send a notification when a download finishes?":[null,"отправить уведомление о завершении загрузки?"],"Notify on subtitle download":[null,"Уведомлять о загрузке субтитров"],"send a notification when subtitles are downloaded?":[null,"отправить уведомление, когда субтитры загрузятся?"],"Update library":[null,"Обновление библиотеки"],"update KODI library when a download finishes?":[null,"Обновление библиотеки KODI, по завершении загрузки?"],"Full library update":[null,"Полное обновление библиотеки"],"perform a full library update if update per-show fails?":[null,"выполнить полное обновление библиотеки, если обновление по шоу не удалось?"],"Only update first host":[null,"Обновление только первый узел"],"only send library updates to the first active host?":[null,"отправить только обновления библиотеки на первый активный узел?"],"KODI IP:Port":[null,"KODI IP:Port"],"host running KODI (eg. 192.168.1.100:8080)":[null,"Сервер с запущенным KODI (прим. 192.168.1.100:8080)"],"(multiple host strings must be separated by commas)":[null,""],"Username":[null,"Логин"],"username for your KODI server (blank for none)":[null,"имя пользователя для сервера KODI (пустой для none)"],"Password":[null,"Пароль"],"password for your KODI server (blank for none)":[null,"пароль для вашего сервера KODI (пустой для none)"],"Click below to test.":[null,"Нажмите ниже, чтобы проверить."],"Experience your media on a visually stunning, easy to use interface on your Mac connected to your TV. Your media library has never looked this good!":[null,""],"For sending notifications to Plex Home Theater (PHT) clients, use the KODI notifier with port <b>3005</b>.":[null,""],"send Plex Media Server library updates?":[null,"отправить обновления библиотеки Plex Media Server?"],"Plex Media Server Auth Token":[null,"Plex Media Server Auth Token"],"auth token used by Plex":[null,"Auth Token, используемый Plex"],"Update Library":[null,"Обновление библиотеки"],"update Plex Media Server library when a download finishes":[null,"Обновление библиотеки Plex Media Server по завершении загрузки"],"Plex Media Server IP:Port":[null,"Plex Media Server IP: Port"],"one or more hosts running Plex Media Server<br/>(eg. 192.168.1.1:32400, 192.168.1.2:32400)":[null,"один или несколько узлов под управлением Plex Media Server <br/> (например. 192.168.1.1:32400, 192.168.1.2:32400)"],"HTTPS":[null,"HTTPS"],"use https for plex media server requests?":[null,"использовать протокол https для запросов на plex media server?"],"Click below to test Plex Media Server(s)":[null,"Нажмите ниже, чтобы проверить Plex Media Server(s)"],"Test Plex Media Server":[null,"Тест-Plex Media Server"],"Plex Home Theater":[null,"Plex домашний кинотеатр"],"send Plex Home Theater notifications?":[null,"отправлять уведомления Plex домашний кинотеатр?"],"Plex Home Theater IP:Port":[null,"IP: Port Plex домашний кинотеатр"],"one or more hosts running Plex Home Theater<br>(eg. 192.168.1.100:3000, 192.168.1.101:3000)":[null,""],"Click below to test Plex Home Theater(s)":[null,""],"Test Plex Home Theater":[null,"Тест Plex домашний кинотеатр"],"some Plex Home Theaters <b class=\"boldest\">do not</b> support notifications e.g. Plexapp for Samsung TVs":[null,""],"Emby":[null,"Emby"],"A home media server built using other popular open source technologies.":[null,"Домашний медиа-сервер, построенный с использованием других популярных технологий с открытым исходным кодом."],"send update commands to Emby?":[null,"Отправить команду обновления Emby?"],"Emby IP:Port":[null,"Emby IP:Port"],"host running Emby (eg. 192.168.1.100:8096)":[null,"Emby хост (например. 192.168.1.100:8096)"],"Emby API Key":[null,"Emby API ключ"],"Networked Media Jukebox":[null,""],"The Networked Media Jukebox, or NMJ, is the official media jukebox interface made available for the Popcorn Hour 200-series.":[null,""],"send update commands to NMJ?":[null,"Отправить команду обновления NMJ?"],"Popcorn IP address":[null,"Popcorn IP-адрес"],"IP address of Popcorn 200-series (eg. 192.168.1.100)":[null,"IP-адрес Popcorn 200-й серии (например. 192.168.1.100)"],"Get settings":[null,"Получить параметры"],"Get Settings":[null,"Получить параметры"],"the Popcorn Hour device must be powered on and NMJ running.":[null,""],"NMJ database":[null,"NMJ база данных"],"automatically filled via the 'Get Settings' button.":[null,"автоматически заполняется через кнопку «Получить настройки»."],"NMJ mount url":[null,"URL-адрес подключения NMJ"],"Networked Media Jukebox v2":[null,""],"The Networked Media Jukebox, or NMJv2, is the official media jukebox interface made available for the Popcorn Hour 300 & 400-series.":[null,""],"send update commands to NMJv2?":[null,"Отправить команду обновления NMJv2?"],"IP address of Popcorn 300/400-series (eg. 192.168.1.100)":[null,"IP-адрес Popcorn 300/400-й серии (например. 192.168.1.100)"],"Database location":[null,"Расположение базы данных"],"Database instance":[null,"Экземпляр базы данных"],"adjust this value if the wrong database is selected.":[null,"Использовать это значение, если база данных неправильно выбрана."],"Find database":[null,"Поиск базы данных"],"Find Database":[null,"Поиск базы данных"],"the Popcorn Hour device must be powered on.":[null,"Popcorn Hour устройство должено быть включено."],"NMJv2 database":[null,"NMJv2 база данных"],"automatically filled via the 'Find Database' buttons.":[null,"автоматически заполняется через кнопку «Найти базу данных»."],"Synology":[null,"Synology"],"The Synology DiskStation NAS.":[null,"The Synology DiskStation NAS."],"Synology Indexer is the daemon running on the Synology NAS to build its media database.":[null,""],"send Synology notifications?":[null,"отправлять уведомления Synology?"],"requires SickRage to be running on your Synology NAS.":[null,""],"Synology Indexer":[null,"Индексатор Synology"],"Synology Notifier is the notification system of Synology DSM":[null,""],"send notifications to the Synology Notifier?":[null,""],"pyTivo":[null,"pyTivo"],"pyTivo is both an HMO and GoBack server. This notifier will load the completed downloads to your Tivo.":[null,""],"send notifications to pyTivo?":[null,"отправлять уведомления в pyTivo?"],"requires the downloaded files to be accessible by pyTivo.":[null,"необходимо что бы загруженные файлы были доступны pyTivo."],"pyTivo IP:Port":[null,"pyTivo IP: Port"],"host running pyTivo (eg. 192.168.1.1:9032)":[null,"сервер с запущеным pyTivo (например. 192.168.1.1:9032)"],"pyTivo share name":[null,"имя общего ресурса pyTivo"],"value used in pyTivo Web Configuration to name the share.":[null,"значение, используемое в pyTivo веб-конфигурации для имени общего ресурса."],"Tivo name":[null,"TiVo имя"],"(Messages & Settings > Account & System Information > System Information > DVR name)":[null,""],"Growl":[null,"Growl"],"A cross-platform unobtrusive global notification system.":[null,""],"send Growl notifications?":[null,"Отправлять уведомления в Growl?"],"Growl IP:Port":[null,"Growl IP:Port"],"host running Growl (eg. 192.168.1.100:23053)":[null,"Сервер Growl (например. 192.168.1.100:23053)"],"may leave blank if SickRage is on the same host.":[null,"можно оставить пустым, если SickRage находится на том же узле."],"otherwise Growl <b>requires</b> a password to be used.":[null,""],"Click below to register and test Growl, this is required for Growl notifications to work.":[null,""],"Register Growl":[null,"Зарегистрировать Growl"],"Prowl":[null,"Prowl"],"A Growl client for iOS.":[null,"Growl клиент для iOS."],"send Prowl notifications?":[null,"Отправлять уведомления в Prowl?"],"Prowl Message Title":[null,"Заголовок сообщения Prowl"],"Global Prowl API key(s)":[null,"Глобальные API ключи для Prowl"],"Prowl API(s) listed here, separated by commas if applicable, will<br> receive notifications for <b>all</b> shows. Your Prowl API key is available at:":[null,""],"(this field may be blank except when testing.)":[null,"(Это поле может быть пустым, за исключением тех случаев, когда проходит тестирование)"],"Show notification list":[null,"Показать список уведомлений"],"-- Select a Show --":[null,"--Выберите Шоу--"],"Configure per-show notifications here by entering Prowl API key(s), separated by commas, '\n 'after selecting a show in the drop-down box. Be sure to activate the 'Save for this show' '\n 'button below after each entry.":[null,""],"Save for this show":[null,"Сохранить для этого шоу"],"Prowl priority":[null,"Приоритет Prowl"],"Very Low":[null,"Очень низкий"],"Moderate":[null,"Модерировать"],"Normal":[null,"Нормальный"],"High":[null,"Выоский"],"Emergency":[null,"Аварийный"],"priority of Prowl messages from SickRage.":[null,"приоритет сообщений Prowl от SickRage."],"Libnotify":[null,"Libnotify"],"The standard desktop notification API for Linux/*nix systems. This notifier will only function if the pynotify module is installed (Ubuntu/Debian package <a href=\"apt:python-notify\">python-notify</a>).":[null,""],"send Libnotify notifications?":[null,"отправлять уведомления Libnotify?"],"Pushover":[null,"Pushover"],"Pushover makes it easy to send real-time notifications to your Android and iOS devices.":[null,"Pushover дает возможность отправки уведомлений в реальном времени для ваших Android и iOS устройств."],"send Pushover notifications?":[null,"отправлять уведомления Pushover ?"],"Pushover key":[null,"Pushover ключ"],"user key of your Pushover account":[null,"используйте ключ вашего Pushover аккаунта"],"Pushover API key":[null,"Pushover API ключ"],"click here":[null,""]," to create a Pushover API key":[null,""],"Pushover devices":[null,"Pushover устройства"],"comma separated list of pushover devices you want to send notifications to":[null,"список устройств Pushover которым вы хотите отправлять уведомления"],"Pushover notification sound":[null,"Pushover звук уведомлений"],"Bike":[null,"Bike"],"Bugle":[null,"Bugle"],"Cash Register":[null,"Cash Register"],"Classical":[null,"Classical"],"Cosmic":[null,"Cosmic"],"Falling":[null,"Falling"],"Gamelan":[null,"Gamelan"],"Incoming":[null,"Incoming"],"Intermission":[null,"Intermission"],"Magic":[null,"Магический"],"Mechanical":[null,"Механические"],"Piano Bar":[null,"Piano Bar"],"Siren":[null,"Siren"],"Space Alarm":[null,"Space Alarm"],"Tug Boat":[null,"Tug Boat"],"Alien Alarm (long)":[null,"Alien Alarm (long)"],"Climb (long)":[null,"Climb (long)"],"Persistent (long)":[null,"Persistent (long)"],"Pushover Echo (long)":[null,"Pushover Echo (long)"],"Up Down (long)":[null,"Up Down (long)"],"None (silent)":[null,"None (без звука)"],"Device specific":[null,"Специфические устройства"],"choose notification sound to use":[null,"Выберите звук уведомления"],"Pushover priority":[null,"Приоритет Pushover"],"Choose priority to use":[null,"Выберите приоритет для использования"],"Boxcar 2":[null,"Boxcar 2"],"Read your messages where and when you want them!":[null,"Читайте свои сообщения где вы хотите и когда хотите!"],"send Boxcar notifications?":[null,"отправлять уведомления Boxcar?"],"Boxcar2 access token":[null,"Boxcar2 access token"],"access token for your Boxcar account.":[null,"access token для учетной записи Boxcar."],"NMA":[null,"NMA"],"Notify My Android":[null,"Уведомление My Android"],"Notify My Android is a Prowl-like Android App and API that offers an easy way to send notifications from your application directly to your Android device.":[null,""],"send NMA notifications?":[null,"отправлять уведомления NMA?"],"NMA API key":[null,"NMA API ключ"],"(multiple keys must be separated by commas, up to a maximum of 5)":[null,"(несколько ключей должны быть разделены запятыми, максимум 5)"],"NMA priority":[null,"NMA приоритет"],"priority of NMA messages from SickRage.":[null,"приоритет сообщения NMA от SickRage."],"Pushalot":[null,"Pushalot"],"Pushalot is a platform for receiving custom push notifications to connected devices running Windows Phone or Windows 8.":[null,"Pushalot — это платформа для получения пользовательских push-уведомлений для подключенных устройств под управлением Windows 8 или Windows Phone."],"send Pushalot notifications ?":[null,"отправлять уведомления Pushalot?"],"Pushalot authorization token":[null,"Токен авторизации Pushalot"],"authorization token of your Pushalot account.":[null,"Токен авторизации вашей учетной записи Pushalot."],"Pushbullet":[null,"Pushbullet"],"Pushbullet is a platform for receiving custom push notifications to connected devices running Android/iOS and desktop browsers such as Chrome, Firefox or Opera.":[null,"Pushbullet — это платформа для получения пользовательских push-уведомлений для подключенных устройств под управлением Android/iOS и настольных браузеров Chrome, Firefox или опера."],"send Pushbullet notifications?":[null,"отправлять уведомления Pushbullet?"],"Pushbullet API key":[null,"Pushbullet API ключ"],"API key of your Pushbullet account":[null,"Ключ API вашей учетной записи Pushbullet"],"Pushbullet devices":[null,"Pushbullet устройства"],"Update device list":[null,"Обновление списка устройств"],"Pushbullet channels":[null,"Pushbullet каналы"],"Free Mobile":[null,"Free Mobile"],"Free Mobile is a famous French cellular network provider.<br> It provides to their customer a free SMS API.":[null,"Free Mobile является известным французским оператором сотовой сети. <br>Он предоставляет своим клиентам бесплатные SMS API."],"send SMS notifications?":[null,"Отправлять SMS-уведомления?"],"send a SMS when a download starts?":[null,"отправить SMS, когда начнется загрузка?"],"send a SMS when a download finishes?":[null,"отправить SMS, когда загрузка завершится?"],"send a SMS when subtitles are downloaded?":[null,"отправить SMS, когда субтитры загрузятся?"],"Free Mobile customer ID":[null,"ID клиента Free Mobile"],"it's your Free Mobile customer ID (8 digits)":[null,"Это ваш Free Mobile ID клиента (8 цифр)"],"Free Mobile API key":[null,"Free Mobile API ключ"],"find your API key in your customer portal.":[null,"найдите ваш ключ API в вашем портале клиента."],"Click below to test your settings.":[null,"Нажмите ниже, чтобы проверить настройки."],"Telegram":[null,"Telegram"],"Telegram is a cloud-based instant messaging service.":[null,"Telegram является облачной службой мгновенного обмена сообщениями."],"send Telegram notifications?":[null,"отправлять уведомления Telegram?"],"send a message when a download starts?":[null,"Отправить сообщение, когда начнется загрузка?"],"send a message when a download finishes?":[null,"Отправить сообщение по завершении загрузки?"],"send a message when subtitles are downloaded?":[null,"Отправить сообщение, когда субтитры загрузятся?"],"User/group ID":[null,"ID пользователя/группы"],"contact @myidbot on Telegram to get an ID":[null,"Свяжитесь с @myidbot в Telegram, чтобы получить ID"],"Bot API token":[null,"БОТ API token"],"contact @BotFather on Telegram to set up one":[null,"Свяжитесь с @BotFather на Telegram настроить(создать) один"],"Join":[null,"Присоединиться"],"Join all of your devices together!":[null,"Соединить все устройства вместе!"],"send Join notifications?":[null,"отправлять уведомления соединения?"],"Device ID":[null,"ID устройства"],"per device specific id":[null,"Для конкретного ID устройства"]," to create a Join API key":[null,""],"Twilio":[null,"Twilio"],"Twilio is a webservice API that allows you to communicate directly with a mobile number. This notifier will send a text directly to your mobile device.":[null,"Twilio это webservice API, который позволяет вам общаться непосредственно с мобильного телефона. Эта программа оповещения будет посылать текст непосредственно на ваше мобильное устройство."],"should SickRage text your mobile device?":[null,""],"Twilio Account SID":[null,"Twilio SID учетной записи"],"account SID of your Twilio account.":[null,"Учетная запись SID учетной записи Twilio."],"Twilio Auth Token":[null,"Twilio Auth Token"],"Twilio Phone SID":[null,""],"phone SID that you would like to send the sms from":[null,""],"Your phone number":[null,"Ваш номер телефона"],"phone number that will receive the sms. Please use the format +1-###-###-####":[null,"номер телефона, который будет получать sms. Пожалуйста, используйте формат +1-###-###-###"],"Twitter":[null,"Твиттер"],"A social networking and microblogging service, enabling its users to send and read other users' messages called tweets.":[null,""],"should SickRage post tweets on Twitter?":[null,"Разрешить SickRage отправлять твиты в Твиттер?"],"you may want to use a secondary account.":[null,""],"send direct message":[null,"Отправить прямое сообщение"],"send a notification via Direct Message, not via status update":[null,""],"send DM to":[null,"отправить DM"],"Twitter account to send Direct Messages to (must follow you)":[null,""],"Step One":[null,"Шаг первый"],"Request Authorization":[null,"Запросить разрешение"],"Click the \"Request Authorization\" button.<br> This will open a new page containing an auth key.<br> <b>note:</b> if nothing happens check your popup blocker.":[null,"Нажмите на кнопку «Запросить разрешение». <br>Это откроет новую страницу, содержащую ключ аутентификации. <br><b>Примечание:</b> если ничего не происходит, проверьте ваш блокировщик всплывающих окон."],"Step Two":[null,"Шаг второй"],"Enter the key Twitter gave you below, and click \"Verify Key\".":[null,""],"Trakt":[null,"Тракт"],"Trakt helps keep a record of what TV shows and movies you are watching. Based on your favorites, Trakt recommends additional shows and movies you'll enjoy!":[null,""],"send Trakt.tv notifications?":[null,"отправлять уведомления Trakt.tv?"],"username of your Trakt account.":[null,"имя пользователя аккаунта тракт."],"Trakt PIN":[null,"Тракт PIN"],"Get Trakt PIN":[null,"Получить тракт PIN"],"PIN code to authorize SickRage to access Trakt on your behalf.":[null,""],"API Timeout":[null,"Тайм-аут API"],"seconds to wait for Trakt API to respond. (Use 0 to wait forever)":[null,"секунд для ожидания ответа от тракт API. (Используйте 0 что бы ждать вечно)"],"Default indexer":[null,"Индексатор по умолчанию"],"Sync libraries":[null,"Синхронизации библиотеки"],"sync your SickRage show library with your trakt show library.":[null,"Синхронизируйте библиотеку шоу SickRage с вашей библиотекой шоу тракт."],"Remove Episodes From Collection":[null,"Удалить эпизоды из коллекции"],"remove an episode from your Trakt Collection if it is not in your SickRage Library.":[null,"удалить эпизод из вашей коллекции тракт, если его нет в библиотеке SickRage."],"Sync watchlist":[null,"Синхронизировать список просмотра"],"sync your SickRage show watchlist with your trakt show watchlist (either Show and Episode).":[null,""],"episode will be added on watch list when wanted or snatched and will be removed when downloaded ":[null,""],"Watchlist add method":[null,"Метод добавления списка просмотра"],"Skip All":[null,"Пропустить все"],"Download Pilot Only":[null,"Скачать пилот только"],"Get whole show":[null,"Получить все шоу"],"method in which to download episodes for new shows.":[null,""],"Remove episode":[null,"Удалить эпизод"],"remove an episode from your watchlist after it is downloaded.":[null,""],"Remove series":[null,"Удалить вериал"],"remove the whole series from your watchlist after any download.":[null,""],"Remove watched show":[null,"Удалить просмотренные шоу"],"remove the show from sickrage if it's ended and completely watched":[null,""],"Start paused":[null,"Запуск приостановленной"],"shows grabbed from your trakt watchlist start paused.":[null,""],"Trakt blackList name":[null,"Имя черного списока Тракт"],"name (slug) of list on Trakt for blacklisting show on 'Add Trending Show' & 'Add Recommended Shows' pages":[null,""],"Email":[null,"e-mail"],"Allows configuration of email notifications on a per show basis.":[null,"Позволяет настраивать уведомления по электронной почте для каждого шоу."],"send email notifications?":[null,"отправлять уведомления по электронной почте?"],"SMTP host":[null,"Сервер SMTP"],"hostname of your SMTP email server.":[null,"имя сервера электронной почты SMTP."],"SMTP port":[null,"Порт SMTP"],"port number used to connect to your SMTP host.":[null,"номер порта, используемый для подключения к серверу SMTP."],"SMTP from":[null,"SMTP от"],"sender email address, some hosts require a real address.":[null,"адрес электронной почты отправителя, некоторые сервера требуют реальный адрес."],"Use TLS":[null,"Использование TLS"],"check to use TLS encryption.":[null,"использовать TLS-шифрование?"],"SMTP user":[null,"Пользователь SMTP"],"(optional) your SMTP server username.":[null,"(необязательно) Ваше имя пользователя SMTP сервера."],"SMTP password":[null,"Пароль SMTP"],"(optional) your SMTP server password.":[null,"(необязательно) пароль сервера SMTP."],"Global email list":[null,"Список глобальных адресов электронной почты"],"email addresses listed here, separated by commas if applicable, will<br> receive notifications for <b>all</b> shows.":[null,"адреса электронной почты, перечисленные здесь, разделенных запятыми, если это применимо, будет <br>получать уведомления для <b>всех</b> шоу."],"(This field may be blank except when testing.)":[null,"(Это поле может быть пустым, за исключением тех случаев, когда проходит тестирование)."],"Email Subject":[null,"Тема сообщения"],"use a custom subject for some privacy protection?":[null,"использовать свою тему для защиты конфиденциальности?"],"(leave blank for the default SickRage subject)":[null,"(оставьте пустым для темы по умолчанию SickRage)"],"configure per-show notifications here by entering email address(es), separated by commas,":[null,"Настройте уведомления-шоу здесь, введя адреса электронной почты, разделенных запятыми,"],"after selecting a show in the drop-down box. Be sure to activate the 'Save for this show'":[null,"После выбора шоу в раскрывающемся списке. Не забудьте активировать «Сохранить для этого шоу»"],"button below after each entry.":[null,"кнопку ниже после каждой записи."],"Slack":[null,"Slack"],"Slack brings all your communication together in one place. It's real-time messaging, archiving and search for modern teams.":[null,""],"should SickRage post messages on Slack?":[null,"следует SickRage отправлять сообщения на Slack?"],"Slack Incoming Webhook":[null,""],"Discord":[null,"Discord"],"All-in-one voice and text chat for gamers that's free, secure, and works on both your desktop and phone.":[null,"Все-в-одином голос и текст, бесплатный чат для геймеров, безопасный и работает как на компьютере так и на телефоне."],"Should SickRage post messages on Discord?":[null,"Следует SickRage отправлять сообщения на Discord?"],"Discord Incoming Webhook":[null,""],"Create webhook under channel settings.":[null,"Создание webhook под установками канала."],"Discord Bot Name":[null,""],"Blank will use webhook default Name.":[null,""],"Discord Avatar URL":[null,"URL-адрес аватара Discord"],"Blank will use webhook default Avatar.":[null,""],"Discord TTS":[null,""],"Send notifications using text-to-speech":[null,"Отправка уведомлений с использованием text-to-speech"],"Post-Processing":[null,"Пост-обработка"],"Episode Naming":[null,"Именование эпизодов"],"Metadata":[null,"Метаданные"],"Settings that dictate how SickRage should process completed downloads.":[null,""],"enable the automatic post processor to scan and process any files in your Post Processing Dir":[null,""],"do not use if you use an external Post Processing script":[null,""],"Post Processing Dir":[null,"Директория Пост-обработки"],"the folder where your download client puts the completed TV downloads.":[null,""],"please use seperate downloading and completed folders in your download client if possible.":[null,""],"Processing Method":[null,"Метод обработки"],"what method should be used to put files into the library?":[null,""],"if you keep seeding torrents after they finish, please avoid the 'move' processing method to prevent errors.":[null,""],"Auto Post-Processing Frequency":[null,"частота Автоматической постобработки"],"time in minutes to check for new files to auto post-process (min 10)":[null,"время в минутах для проверки новых файлов для автоматического пост процесса (мин. 10)"],"Postpone post processing":[null,"Перенос постобработки"],"wait to process a folder if sync files are present.":[null,""],"Sync File Extensions":[null,"Синхронизация расширений файлов"],"comma seperated list of extensions or filename globs SickRage ignores when Post Processing":[null,""],"Rename Episodes":[null,"Переименование эпизодов"],"rename episode using the Episode Naming settings?":[null,""],"Create missing show directories":[null,""],"create missing show directories when they get deleted":[null,""],"Add shows without directory":[null,"Добавление шоу без каталога"],"add shows without creating a directory (not recommended)":[null,""],"Move associated files":[null,"Переместить связанные файлы"],"move associated (srt/srr/sfv/etc) files while post processing?":[null,"переместить связанные файлы (srt/srr/sfv/etc) во время пост-обработки?"],"Rename .nfo file":[null,"Переименовать файл .nfo"],"rename the original .nfo file to .nfo-orig to avoid conflicts?":[null,"переименовывать исходный файл .nfo в .nfo-orig что бы избежать конфликтов?"],"Associated file extensions":[null,""],"comma separated list of associated file extensions SickRage should keep while post processing.":[null,""],"leaving it empty means no associated files will be post processed":[null,""],"Delete non associated files":[null,"Удаление не связанных файлов"],"delete non associated files while post processing?":[null,"удаление не связанных файлов во время пост-обработки?"],"Change File Date":[null,"Дата изменения файла"],"set last modified filedate to the date that the episode aired?":[null,"установить дату изменения файла на дату релиза эпизода?"],"some systems may ignore this feature.":[null,"некоторые системы могут игнорировать эту возможность."],"Timezone for File Date":[null,"Часовой пояс для даты файла"],"local":[null,"местный"],"network":[null,"сеть"],"what timezone should be used to change File Date?":[null,"какой часовой пояс должен использоваться для даты изменения файла?"],"Unpack":[null,"Распаковать"],"What to do with archived releases found in your <i>TV Download Dir</i>?":[null,"Что делать с архивными релизами в вашей папке <i>скачаных щоу</i>?"],"Ignore (do not process contents)":[null,"Игнорировать (не обрабатывать содержимое)"],"Unpack (process contents)":[null,"Распаковать (обрабатывать содержимое)"],"Treat as video (process archive as-is)":[null,"Рассматривать как видео (обрабатывать архив как есть)"],"'Unpack' only works with RAR archives":[null,"«Распаковать» работает только с RAR архивами"],"Windows":[null,"Windows"],"WinRar is required on windows":[null,"Требуется установленный WinRar"],"Unpack Directory":[null,"Распаковать в"],"Choose a path to unpack files, leave blank to unpack in download dir":[null,"Выберите путь для распаковки файлов, оставьте пустым, чтобы распаковать в папку download"],"Unrar Location":[null,"Unrar Location"],"add the path to unrar if it is not in the system path":[null,""],"Alternate Unrar Tool":[null,"Альтернативный инструмент Unrar"],"add the path to an alternate unrar tool if it is not in the system path":[null,""],"Delete RAR contents":[null,"Удалить содержимое RAR"],"delete content of RAR files, even if Process Method not set to move?":[null,"удалить содержимое RAR файлов, даже если метод обработки не задано как \"Перемещение\"?"],"only working with RAR archive":[null,"работает только с RAR архивами"],"Don't delete empty folders":[null,"Не удалять пустые папки"],"leave empty folders when Post Processing?":[null,"Оставьте пустые папки, после пост обработки?"],"can be overridden using manual Post Processing":[null,"может быть переопределен с помощью ручного пост обработки"],"Follow symbolic-links":[null,""],"follow down symbolic links in download directory?":[null,""],"<b>EXPERTS ONLY.</b><br>Enable only if you know what <b>circular symbolic links</b> are,<br>and can <b>verify that you have none</b>.":[null,""],"Use icacls":[null,"Использование icacls"],"Windows only":[null,"Только для Windows"],"sets video permissions after using the move method in post processing":[null,""],"Extra Scripts":[null,"Дополнительные скрипты"],"see":[null,"см."],"for script arguments description and usage.":[null,""],"How SickRage will name and sort your episodes.":[null,"Как SickRage должен именовать и сортировать эпизоды."],"Name Pattern":[null,"Шаблон имени"],"Toggle Naming Legend":[null,""],"don't forget to add quality pattern. Otherwise after post-processing the episode will have UNKNOWN quality":[null,"не забудьте добавить шаблон для качества видео. В противном случае после пост-обработки эпизоду будет присвоено значение качества \"UNKNOWN\""],"Meaning":[null,"Означает"],"Pattern":[null,"Шаблон"],"Result":[null,"Результат"],"Use lower case if you want lower case names (eg. %sn, %e.n, %q_n etc)":[null,"Используйте нижний регистр, если требуется имена в нижнем регистре (например. %sn, %e.n, %q_n)"],"Show Name":[null,"Название шоу"],"Show.Name":[null,"Название.шоу"],"Show_Name":[null,"Название_шоу"],"Season Number":[null,"Номер сезона"],"XEM Season Number":[null,"Номер сезона XEM"],"Episode Number":[null,"Номер эпизода"],"XEM Episode Number":[null,"Номер эпизода XEM"],"Episode Name":[null,"Название эпизода"],"Episode.Name":[null,"Название.эпизода"],"Episode_Name":[null,"Название_эпизода"],"Air Date":[null,"Дата выхода"],"Post-Processing Date":[null,"Дата пост обработки"],"Quality":[null,"Качество"],"Scene Quality":[null,"Качество сцены"],"Release Name":[null,"Название релиза"],"SickRage' is used in place of RLSGROUP if it could not be properly detected":[null,""],"Release Group":[null,"Релиз группа"],"If episode is proper/repack add 'proper' to name.":[null,"Если эпизод proper/repack добавить «proper» в имя."],"Release Type":[null,"Тип релиза"],"Multi-Episode Style":[null,"Мульти эпизод стиль"],"Single-EP Sample":[null,"Пример одного эпизода"],"Multi-EP sample":[null,"Пример мульти эпизода"],"Strip Show Year":[null,""],"remove the TV show's year when renaming the file?":[null,""],"only applies to shows that have year inside parentheses":[null,""],"Custom Air-By-Date":[null,""],"name air-by-date shows differently than regular shows?":[null,""],"Toggle ABD Naming Legend":[null,""],"Regular Air Date":[null,""],"Year":[null,"Год"],"Month":[null,"Месяц"],"Day":[null,"День"],"Multi-EP style is ignored":[null,"Multi-EP стиль игнорируется"],"Custom Sports":[null,""],"name sports shows differently than regular shows?":[null,""],"Toggle Sports Naming Legend":[null,""],"Sports Air Date":[null,""],"Custom Anime":[null,""],"name anime shows differently than regular shows?":[null,""],"Toggle Anime Naming Legend":[null,""],">XEM Season Number":[null,"> Номер сезона XEM"],"Single-EP Anime Sample":[null,"Single-EP аниме образец"],"Multi-EP Anime sample":[null,"Multi-EP аниме образец"],"Add Absolute Number":[null,"Добавить абсолютную нумерацию"],"add the absolute number to the season/episode format?":[null,""],"only applies to anime. (eg. S15E45 - 310 vs S15E45)":[null,""],"Only Absolute Number":[null,""],"replace season/episode format with absolute number":[null,""],"only applies to anime.":[null,""],"No Absolute Number":[null,""],"don't include the absolute number":[null,""],"The data associated to the data. These are files associated to a TV show in the form of images and text that, when supported, will enhance the viewing experience.":[null,""],"Metadata Type":[null,"Тип метаданных"],"toggle metadata options that you wish to be created":[null,""],"multiple targets may be used":[null,""],"Select Metadata":[null,"Выберите метаданные"],"Provider Priorities":[null,"Приоритеты провайдеров"],"Provider Options":[null,"Параметры провайдера"],"Configure Custom Newznab Providers":[null,""],"Configure Custom Torrent Providers":[null,""],"Check off and drag the providers into the order you want them to be used.":[null,""],"At least one provider is required but two are recommended.":[null,""],"Torrent providers can be toggled in ":[null,""],"Provider does not support backlog searches at this time.":[null,"Провайдер не поддерживает поиск пропущенных на данный момент."],"Provider is <b>NOT WORKING</b>.":[null,"Провайдер — <b>не работает</b>."],"Configure individual provider settings here.":[null,"Настройка параметров провайдера здесь."],"Check with provider's website on how to obtain an API key if needed.":[null,""],"Configure provider":[null,"Настройка провайдера"],"no providers available to configure.":[null,"нет доступных провайдеров для настройки."],"URL":[null,"URL-АДРЕС"],"Enable daily searches":[null,"Включить ежедневный поиск"],"enable provider to perform daily searches.":[null,"Включить ежедневный поиск у провайдера."],"Enable backlog searches":[null,"Включить поиск пропущенных"],"enable provider to perform backlog searches.":[null,"Включить возможность провайдеру выполнять поиск пропущенных."],"Season search mode":[null,"Режим поиска сезонов"],"when searching for complete seasons you can choose to have it look for season packs only, or choose to have it build a complete season from just single episodes.":[null,""],"season packs only.":[null,"сезон целиком."],"episodes only.":[null,"только эпизоды."],"Enable fallback":[null,""],"when searching for a complete season depending on search mode you may return no results, this helps by restarting the search using the opposite search mode.":[null,""],"Custom URL":[null,"Пользовательский URL"],"the URL should include the protocol (and port if applicable). Examples: http://192.168.1.4/ or http://localhost:3000/":[null,""],"Api key":[null,"Ключ API"],"Digest":[null,""],"Hash":[null,"Хэш"],"Passkey":[null,""],"Cookies":[null,"Куки"],"example: uid=1234;pass=567845439634987<br>note: uid and pass are not your username/password.<br>use DevTools or Firebug to get these values after logging in on your browser.":[null,"Пример: uid = 1234;pass=567845439634987<br>Примечание: uid и pass не являются именем пользователя и паролем. <br> Используйте DevTools или Firebug, чтобы получить эти значения после входа в систему на вашем браузере."],"Pin":[null,""],"Seed ratio":[null,"Коэффициент раздачи (Seed ratio)"],"stop transfer when ratio is reached<br>(-1 SickRage default to seed forever, or leave blank for downloader default)":[null,"остановите передачу, когда коэффициент достигнут <br>(-1 SickRage по умолчанию раздает бесконечно, или оставьте поле пустым для загрузчика по умолчанию)"],"Minimum seeders":[null,"Минимум раздающих"],"Minimum leechers":[null,"Минимум качающих"],"Confirmed download":[null,"Подтвержденная загрузка"],"only download torrents from trusted or verified uploaders ?":[null,"Качать торренты только доверенных или проверенных раздающих?"],"Ranked torrents":[null,""],"only download ranked torrents (trusted releases)":[null,""],"English torrents":[null,"Английские торренты"],"only download english torrents, or torrents containing english subtitles":[null,"Качать только английские торренты, или торренты, содержащие английские субтитры"],"For Spanish torrents":[null,"Для испанских торрентов"],"ONLY search on this provider if show info is defined as \"Spanish\" (avoid provider's use for VOS shows)":[null,""],"Sorting results by":[null,"Сортировка результатов по"],"Freeleech":[null,"Freeleech"],"only download <b>\"FreeLeech\"</b> torrents.":[null,"Качать только Торренты <b>«FreeLeech»</b>."],"Category":[null,"Категория"],"select torrent with Italian subtitle":[null,"Выбрать торренты с итальянскими субтитрами"],"Configure Custom<br>Newznab Providers":[null,"Настройка пользовательских поставщиков Newznab <br>"],"Add and setup or remove custom Newznab providers.":[null,"Добавление и настройка или удаление пользовательских поставщиков Newznab."],"Select provider":[null,"Выбор провайдера"],"-- add new provider --":[null,"--добавить нового провайдера--"],"Provider name":[null,"Имя провайдера"],"Site URL":[null,"URL-адрес сайта"],"Newznab search categories":[null,"Newznab категории поиска"],"select your Newznab categories on the left, and click the \"update categories\" button to use them for searching.) <b>don't forget to to save the form!":[null,""],"Update Categories":[null,"Обновление категорий"],"Add":[null,"Добавить"],"Delete":[null,"Удалить"],"Add and setup or remove custom RSS providers.":[null,"Добавление и настройка или удаление пользовательских провайдеров RSS."],"RSS URL":[null,"URL-АДРЕС RSS"],"Search element":[null,"Поиск элемента"],"eg: title":[null,"Например: название"],"Episode Search":[null,"Поиск эпизода"],"NZB Search":[null,"Поиск NZB"],"Torrent Search":[null,"Торрент поиск"],"How to manage searching with":[null,"Как управлять Поиском с"],"Randomize Providers":[null,"Случайный выбор провайдера"],"randomize the provider search order instead of going in order of placement":[null,"случайный порядок поиска (не по списку провадеров)"],"Download propers":[null,"Скачать propers"],"replace original download with \"Proper\" or \"Repack\" if nuked":[null,"Заменить оригинальную загрузку на «Proper» или «Repack»"],"Check propers every":[null,"Проверять propers каждые"],"24 hours":[null,"24 часа"],"4 hours":[null,"4 часа"],"90 mins":[null,"90 минут"],"45 mins":[null,"45 мин"],"15 mins":[null,"15 мин."],"Backlog search day(s)":[null,"Поиск пропущенных дни"],"number of day(s) that the \"Forced Backlog Search\" will cover (e.g. 7 Days)":[null,"Количество дней, для «Принудительный поиск пропущенных» будет охватывать (например 7 дней)"],"Backlog search frequency":[null,"Частота поиска пропущенных"],"time in minutes between searches (min.":[null,"время в минутах между запросами на поиск (мин.)"],"Daily search frequency":[null,"Частота ежедневного поиска"],"Usenet retention":[null,"Usenet удержания"],"age limit in days for usenet articles to be used (e.g. 500)":[null,"возрастной предел в днях для usenet статей, которые будут использоваться (например, 500)"],"Ignore words":[null,"Пропускать слова"],"results with one or more word from this list will be ignored<br>separate words with a comma, e.g. \"word1,word2,word3\"":[null,""],"Require words":[null,"Требующиеся слова"],"results with no word from this list will be ignored<br>separate words with a comma, e.g. \"word1,word2,word3\"":[null,""],"Trackers list":[null,"Список трекеров"],"trackers that will be added to magnets without trackers<br>separate trackers with a comma, e.g. \"tracker1,tracker2,tracker3\"":[null,""],"Ignore language names in subbed results":[null,""],"ignore subbed releases based on language names <br>\n Example: \"dk\" will ignore words: dksub, dksubs, dksubbed, dksubed <br>\n separate languages with a comma, e.g. \"lang1,lang2,lang3":[null,""],"Allow high priority":[null,"Разрешить высокий приоритет"],"set downloads of recently aired episodes to high priority":[null,""],"Use Failed Downloads":[null,""],"use Failed Download Handling?":[null,""],"will only work with snatched/downloaded episodes after enabling this":[null,"будет работать только с перехвачеными/загруженными эпизодами после включения этого"],"Delete Failed":[null,"Не удалось удалить"],"delete files left over from a failed download?":[null,"удалять файлы, оставшиеся от неудавшихся загрузок?"],"this only works if Use Failed Downloads is enabled.":[null,""],"How to handle NZB search results.":[null,"Как обрабатывать результаты поиска NZB."],"Search NZBs":[null,"Поиск NZBs"],"enable NZB search providers":[null,"Включение поставщиков поиска NZB"],"Send .nzb files to":[null,"Отправлять файлы .nzb"],"SABnzbd server URL":[null,"URL-адрес сервера SABnzbd"],"URL to your SABnzbd server (e.g. http://localhost:8080/)":[null,"URL-адрес вашего сервера SABnzbd (например, http://localhost: 8080/)"],"SABnzbd username":[null,"SABnzbd имя пользователя"],"(blank for none)":[null,"(оставить пустое если не используется )"],"SABnzbd password":[null,"SABnzbd пароль"],"SABnzbd API key":[null,"SABnzbd API ключ"],"locate at... SABnzbd Config -> General -> API Key":[null,"Находится в... SABnzbd Config-> Общие-> ключ API"],"Use SABnzbd category":[null,"Использовать SABnzbd Категории"],"add downloads to this category (e.g. TV)":[null,"Добавить загрузку в эту категорию (например, TV)"],"Use SABnzbd category (backlog episodes)":[null,"Использование SABnzbd категории (пропущенных эпизодов)"],"add downloads of old episodes to this category (e.g. TV)":[null,""],"Use SABnzbd category for anime":[null,"Использование SABnzbd Категорию аниме"],"add anime downloads to this category (e.g. anime)":[null,"Добавить аниме загрузки в эту категорию (например, аниме)"],"Use SABnzbd category for anime (backlog episodes)":[null,"Использование SABnzbd Категории для аниме (пропущенных эпизодов)"],"add anime downloads of old episodes to this category (e.g. anime)":[null,""],"Use forced priority":[null,"Использовать принудительный приоритет"],"enable to change priority from HIGH to FORCED":[null,"позволяет изменить приоритет с высокого на принудительный"],"Black hole folder location":[null,"Расположение папки черная дыра"],"<b>.nzb</b> files are stored at this location for external software to find and use":[null,"<b>.nzb</b> файлы хранятся на этом месте для внешнего программного обеспечения для поиска и использования"],"Connect using HTTPS":[null,"Подключиться используя HTTPS"],"enable Secure control in NZBGet and set the correct Secure Port here":[null,""],"NZBget host:port":[null,"NZBget host:port"],"(e.g. localhost:6789)":[null,"(например, localhost:6789)"],"NZBget RPC host name and port number (not NZBgetweb!)":[null,"NZBget RPC имя сервера и номер порта (не NZBgetweb!)"],"NZBget username":[null,"NZBget имя пользователя"],"locate in nzbget.conf (default:nzbget)":[null,"Находится в nzbget.conf (по умолчанию: nzbget)"],"NZBget password":[null,"NZBget пароль"],"locate in nzbget.conf (default:tegbzn6789)":[null,"Находится в nzbget.conf (по умолчанию: tegbzn6789)"],"Use NZBget category":[null,"Использовать категории NZBget"],"send downloads marked this category (e.g. TV)":[null,""],"Use NZBget category (backlog episodes)":[null,"Использование NZBget категорий (пропущенных эпизодов)"],"send downloads of old episodes marked this category (e.g. TV)":[null,""],"Use NZBget category for anime":[null,"Использовать категории аниме NZBget"],"send anime downloads marked this category (e.g. anime)":[null,""],"Use NZBget category for anime (backlog episodes)":[null,"Использование NZBget категории аниме (пропущенных эпизодов)"],"send anime downloads of old episodes marked this category (e.g. anime)":[null,""],"NZBget priority":[null,"NZBget приоритет"],"Very low":[null,"Очень низкий"],"Low":[null,"Низкий"],"Very high":[null,"Очень высокий"],"Force":[null,"Принудительно"],"priority for daily snatches (no backlog)":[null,"приоритет для ежедневных snatches (без поиска пропущенных)"],"Torrent host:port":[null,"Торрент сервер:порт"],"URL to your Synology DSM (e.g. http://localhost:5000/)":[null,"URL-адрес для вашего Synology DSM (например http://localhost:5000/)"],"Client username":[null,"Имя пользователя"],"Client password":[null,"Пароль"],"Downloaded files location":[null,"Расположение загруженных файлов"],"where Synology Download Station will save downloaded files (blank for client default)":[null,""],"the destination has to be a shared folder for Synology DS":[null,""],"Click below to test":[null,"Нажмите ниже, чтобы проверить"],"How to handle Torrent search results.":[null,"Как обрабатывать результаты поиска торрентов."],"Search torrents":[null,"Поиск Торрентов"],"enable torrent search providers":[null,"Включение провайдеров поиска торрентов"],"Send .torrent files to":[null,"Отправлять файлы .torrent в"],"<b>.torrent</b> files are stored at this location for external software to find and use":[null,""],"URL to your torrent client (e.g. http://localhost:8000/)":[null,"URL-адрес для вашего торрент-клиента (например, http://localhost: 8000/)"],"Torrent RPC URL":[null,"URL-адрес RPC торрент"],"the path without leading and trailing slashes (e.g. transmission)":[null,""],"Http Authentication":[null,"Проверка подлинности HTTP"],"Verify certificate":[null,"Проверка сертификата"],"disable if you get \"Deluge: Authentication Error\" in your log":[null,""],"verify SSL certificates for HTTPS requests":[null,"Проверка SSL-сертификатов для запросов HTTPS"],"Add label to torrent":[null,"Добавить метку в торрент"],"(blank spaces are not allowed)":[null,"(пробелы не допускаются)"],"label plugin must be enabled in Deluge clients":[null,""],"for QBitTorrent 3.3.1 and up":[null,"для QBitTorrent 3.3.1 и выше"],"Add label to torrent for anime":[null,"Добавить подпись к торрент аниме"],"for QBitTorrent 3.3.1 and up ":[null,"для QBitTorrent 3.3.1 и выше "],"where <span id=\"torrent_client\">the torrent client</span> will save downloaded files (blank for client default)":[null,""],"the destination has to be a shared folder for Synology DS</span>":[null,""],"Minimum seeding time":[null,""],"time in hours":[null,"время в часах"],"(default:'0' passes blank to client and '-1' passes nothing)":[null,"(по умолчанию: '0' передает пустое значение клиенту и '-1' ничего не передает)"],"Start torrent paused":[null,""],"add .torrent to client but do <b style=\"font-weight:900\">not</b> start downloading":[null,"Добавить .torrent в клиент но<b style=\"font-weight:900\"> не начинать загрузку</b> "],"Allow high bandwidth":[null,""],"use high bandwidth allocation if priority is high":[null,""],"Test Connection":[null,"Проверка соединения"],"Windows Shares":[null,""],"Defines your existing windows shares so that we can add them to the browse dialog":[null,""],"Share #{number}":[null,""],"Share label":[null,""],"Hostname or IP":[null,""],"Share path":[null,""],"Subtitles Search":[null,"Поиск субтитров"],"Subtitles Plugin":[null,"Плагин субтитры"],"Plugin Settings":[null,"Настройки плагина"],"Settings that dictate how SickRage handles subtitles search results.":[null,""],"Search Subtitles":[null,"Поиск субтитров"],"Subtitle Languages":[null,"Языки субтитров"],"Subtitle Directory":[null,"Каталог субтитров"],"the directory where SickRage should store your <i>Subtitles</i> files.":[null,"Каталог, где SickRage следует хранить файлы <i>субтитров</i>."],"leave empty if you want store subtitle in episode path.":[null,""],"Subtitle Find Frequency":[null,"Частота поиска субтитров"],"time in hours between scans (default: 1)":[null,"время в часах между сканированием (по умолчанию: 1)"],"Include Specials":[null,"Включать специальные выпуски"],"include the show's specials when searching for subtitles?":[null,"включать специальные выпуски когда идет поиск субтитров?"],"Perfect matches":[null,"Идеально подходит"],"only download subtitles that match: release group, video codec, audio codec and resolution":[null,"загружать субтитры соответствующие: релиз группе, видео кодеку, аудио кодеку и расширению"],"if disabled you may get out of sync subtitles":[null,"если отключено вы можете получить не синхронизированные субтитры"],"Subtitles History":[null,"История субтитров"],"log downloaded Subtitle on History page?":[null,"вести журнал загрузки субтитров на странице истории?"],"Subtitles Multi-Language":[null,"мультиязычные субтитры"],"append language codes to subtitle filenames?":[null,"добавить коды языков в названия файлов субтитров?"],"this option is required if you use multiple subtitle languages":[null,"Этот параметр является обязательным, если вы пользуетесь несколькими языками субтитров"],"Delete unwanted subtitles":[null,"Удалить ненужные субтитры"],"enable to delete unwanted subtitle languages bundled with release":[null,"включить удаление нежелательных языков субтитров вместе с релизом"],"Embedded Subtitles":[null,"Встроенные субтитры"],"ignore subtitles embedded inside video file?":[null,"игнорировать субтитры внедренные в файл видео?"],"this will ignore <u>all</u> embedded subtitles for every video file!":[null,""],"Hearing Impaired Subtitles":[null,""],"download hearing impaired style subtitles?":[null,""],"See":[null,""],"for a script arguments description.":[null,""],"Additional scripts separated by <b>|</b>.":[null,""],"Scripts are called after each episode has searched and downloaded subtitles.":[null,""],"For any scripted languages, include the interpreter executable before the script. See the following example":[null,""],"For Windows:":[null,"Для Windows:"],"For Linux / OS X:":[null,"Для Linux / OS X:"],"Subtitle Providers":[null,"Провайдеры субтитров"],"Check off and drag the plugins into the order you want them to be used.":[null,""],"At least one plugin is required.":[null,""]," Web-scraping plugin":[null,""],"Provider Settings":[null,"Параметры провайдера"],"Set user and password for each provider":[null,"Задайте пользователя и пароль для каждого провайдера"],"User Name":[null,"Имя пользователя"],"Change Show":[null,"Изменить шоу"],"Prev Show":[null,"Предыдущее шоу"],"Next Show":[null,"Следующее шоу"],"Jump to Season":[null,"Перейти к сезону"],"Specials":[null,"Специальный выпуск"],"Poster for":[null,"Плакат для"],"Stars":[null,"Звезды"],"minutes":[null,"минуты"],"View other popular {genre} shows on trakt.tv.":[null,"Посмотреть другие популярные {genre} шоу на trakt.tv."],"View other popular {imdbgenre} shows on IMDB.":[null,"Посмотреть другие популярные {imdbgenre} шоу на IMDB."],"Allowed":[null,"Допускается"],"Preferred":[null,"Предпочтение"],"Originally Airs":[null,"Оригинальные релизы"],"Show Status":[null,"Статус шоу"],"Default EP Status":[null,"Статус эпизода по умолчанию"],"Location":[null,"Расположение"],"Missing":[null,"Отсутствует"],"Scene Name":[null,"Имя сцены"],"Required Words":[null,"Необходимые слова"],"Ignored Words":[null,"Игнорируемые слова"],"Size":[null,"Размер"],"Info Language":[null,"Информация о языке"],"Subtitles SR Metadata":[null,"Метаданные SR по субтитрам"],"Season Folders":[null,"Папки сезонов"],"Paused":[null,"Приостановлено"],"Air-by-Date":[null,"Релиз по дате"],"Sports":[null,"Спорт"],"DVD Order":[null,"DVD порядок"],"Scene Numbering":[null,"Нумерация сцены"],"Select Filtered Episodes":[null,"Выбор отфильтрованных эпизодов"],"Clear All":[null,"Очистить все"],"Change selected episodes to":[null,""],"Select Columns":[null,"Выбрать столбцы"],"Hide Episodes":[null,"Скрыть эпизоды"],"Show Episodes":[null,"Показать эпизоды"],"NFO":[null,"NFO"],"TBN":[null,"TBN"],"Episode":[null,"Эпизод"],"Absolute":[null,"Абсолютный"],"Scene":[null,"Сцена"],"Scene Absolute":[null,"Абсолютная сцена"],"File Name":[null,"Имя файла"],"Airdate":[null,"Эфир"],"Download":[null,"Скачать"],"Change the value here if scene numbering differs from the indexer episode numbering":[null,"Измените значение здесь если нумерация эпизода отличается от нумерации эпизодов индексатора"],"Change the value here if scene absolute numbering differs from the indexer absolute numbering":[null,"Измените значение здесь если абсолютная нумерация эпизодов отличается от абсолютной нумерации индексатора"],"Manual Search":[null,"Ручной поиск"],"Do you want to mark this episode as failed?":[null,"Вы хотите пометить этот эпизод как сбойный?"],"The episode release name will be added to the failed history, preventing it to be downloaded again.":[null,""],"Do you want to include the current episode quality in the search?":[null,""],"Choosing No will ignore any releases with the same episode quality as the one currently downloaded/snatched.":[null,""],"Download subtitle":[null,"Скачать субтитры"],"Do you want to re-download the subtitle for this language?":[null,""],"It will overwrite your current subtitle":[null,"Это приведет к перезаписи текущих субтитров"],"Format":[null,"Формат"],"Advanced":[null,"Расширенный"],"Main Settings":[null,"Основные параметры"],"Show Location":[null,"Показать местоположение"],"Preferred Quality":[null,"Предпочитаемое качество"],"Default Episode Status":[null,"Статус эпизода по умолчанию"],"this will set the status for future episodes.":[null,"Это позволит установить статус для будущих эпизодов."],"this only applies to episode filenames and the contents of metadata files.":[null,"Это относится только к имени файла эпизода и содержимому файлов метаданных."],"search for subtitles":[null,"поиск для субтитров"],"Use SR Metdata":[null,"Использование SR Metdata"],"use SickRage metadata when searching for subtitle, this will override the autodiscovered metadata":[null,"использовать метаданные SickRage при поиске субтитров, это переопределит метаданные автообнаружения"],"pause this show (SickRage will not download episodes)":[null,"приостановить это шоу (SickRage не будет загружать эпизоды)"],"Format Settings":[null,"Параметры форматирования"],"Air by date":[null,"Релиз по дате"],"check if the show is released as Show.03.02.2010 rather than Show.S02E03.":[null,""],"in case of an air date conflict between regular and special episodes, the later will be ignored.":[null,""],"check if the show is Anime and episodes are released as Show.265 rather than Show.S02E03":[null,"Проверить, если шоу Аниме и серии выпускаются как Show.265 вместо Show.S02E03"],"check if the show is a sporting or MMA event released as Show.03.02.2010 rather than Show.S02E03":[null,"Проверить, если спортивные шоу или ММА события выпущенны как Show.03.02.2010 вместо Show.S02E03"],"Season folders":[null,"Папки сезонов"],"group episodes by season folder (uncheck to store in a single folder)":[null,"группирует эпизоды по папкам сезона (снимите флажок, чтобы сохранить в одной папке)"],"search by scene numbering (uncheck to search by indexer numbering)":[null,"Поиск по альтернативной нумерации эпизодов (снимите флажок, для поиска по нумерации индексатора)"],"use the DVD order instead of the air order":[null,"Используйте порядок DVD вместо порядка релиза"],"a \"Force Full Update\" is necessary, and if you have existing episodes you need to sort them manually.":[null,""],"comma-separated <i>e.g. \"word1,word2,word3</i>\"":[null,"разделенные запятыми <i>например «слово1,слово2,слово3»</i>"],"search results with one or more words from this list will be ignored.":[null,"результаты поиска с одним или несколькими словами из этого списка будут игнорироваться."],"e.g. \"word1,word2,word3\"":[null,"например «слово1,слово2,слово3»"],"search results with no words from this list will be ignored.":[null,"результаты поиска без слов из этого списка будут игнорироваться."],"Scene Exception":[null,"Исключения эпизодов"],"this will affect episode search on NZB and torrent providers.":[null,"это будет влиять на поиск эпизодов на NZB и торрент провайдерах."],"this list appends to the original show name.":[null,""],"WARNING logs":[null,"Журналы предупреждений"],"ERROR logs":[null,"Журналы ошибок"],"There are no events to display.":[null,"Нет событий для отображения."],"Limit":[null,"Лимит"],"Layout":[null,"Макет"],"HistoryLayout":[null,"Макет истории"],"Compact":[null,"Компактный"],"Detailed":[null,"Подробный"],"Time":[null,"Время"],"Provider":[null,"Провайдер"],"Missing Provider":[null,"Отсутствующий провайдер"],"missing provider":[null,"отсутствующий провайдер"],"Directory":[null,"Каталог"],"Show Name (tvshow.nfo)":[null,"Название шоу (tvshow.nfo)"],"Indexer":[null,"Индексатор"],"Enter the folder containing the episode":[null,"Введите название папки, содержащей эпизод"],"Process Method to be used":[null,""],"Copy":[null,"Копия"],"Move":[null,"Перемещение"],"Hard Link":[null,"Жёсткая ссылка"],"Symbolic Link":[null,"Символическая ссылка"],"Symbolic Link Reversed":[null,"Символическая ссылка обратная"],"Force already Post Processed Dir/Files":[null,""],"Mark Dir/Files as priority download":[null,""],"(Check it to replace the file even if it exists at higher quality)":[null,""],"Delete files and folders":[null,"Удаление файлов и папок"],"(Check it to delete files and folders like auto processing)":[null,""],"Don't use processing queue":[null,"Не использовать очередь обработки"],"(If checked this will return the result of the process here, but may be slow!)":[null,""],"Mark download as failed":[null,"Пометить как неудачную загрузку"],"Process":[null,"Процесс"],"Download subtitles for this show?":[null,"Скачать субтитры для этого шоу?"],"use SickRage metadata when searching for subtitle, <br />this will override the autodiscovered metadata":[null,"использовать метаданные SickRage при поиске субтитров, <br />это переопределит метаданные автообнаружения"],"Status for previously aired episodes":[null,""],"Status for all future episodes":[null,"Статус для всех будущих эпизодов"],"Group episodes by season folder?":[null,"Группировать эпизоды по папкам сезона?"],"Is this show an Anime?":[null,"Является ли это шоу Аниме?"],"Is this show scene numbered?":[null,"В этом шоу есть нумерация эпизодов?"],"Save Defaults":[null,"Сохранить параметры по умолчанию"],"Use current values as the defaults":[null,"Использовать текущие значения по умолчанию"],"<p>Select your preferred fansub groups from the <b>Available Groups</b> and add them to the <b>Whitelist</b>. Add groups to the <b>Blacklist</b> to ignore them.</p>\n <p>The <b>Whitelist</b> is checked <i>before</i> the <b>Blacklist</b>.</p>\n <p>Groups are shown as <b>Name</b> | <b>Rating</b> | <b>Number of subbed episodes</b>.</p>\n <p>You may also add any fansub group not listed to either list manually.</p>\n <p>When doing this please note that you can only use groups listed on anidb for this anime.\n <br>If a group is not listed on anidb but subbed this anime, please correct anidb's data.</p>":[null,""],"Whitelist":[null,"Белый список"],"Available Groups":[null,"Доступные группы"],"Add to Whitelist":[null,"Добавить в белый список"],"Add to Blacklist":[null,"Добавить в «черный список»"],"Blacklist":[null,"Черный список"],"Custom Group":[null,"Пользовательские группы"],"Allowed Quality:":[null,"Допускаемое качество:"],"Preferred Quality:":[null,"Предпочтительное качество:"],"Filter Show Name":[null,"Фильтр по названию шоу"],"Root":[null,"Корневой каталог"],"All":[null,"Все"],"Clear Filter(s)":[null,"Очистить фильтр(ы)"],"Poster":[null,"Плакат"],"Small Poster":[null,"Небольшой плакат"],"Banner":[null,"Баннер"],"Simple":[null,"Простой"],"Next Episode":[null,"Следующий эпизод"],"Progress":[null,"Прогресс"],"Direction":[null,"Направление"],"Ascending":[null,"По возрастанию"],"Descending":[null,"По убыванию"],"Poster Size":[null,"Размер плаката"],"Continuing":[null,"Продолжается"],"Ended":[null,"Закончился"],"Total":[null,"Итого"],"Invalid date":[null,"Недопустимая дата"],"No Network":[null,"Нет сети"],"Next Ep":[null,"Следующий эпизод"],"Prev Ep":[null,"Предыдущий эпизод"],"Show":[null,"Шоу"],"Downloads":[null,"Загрузки"],"Active":[null,"Активные"],"loading":[null,"Загрузка"],"Loading...":[null,"Загрузка..."],"<p><b><u>Preferred</u></b> qualities will replace those in <b><u>allowed</u></b>, even if they are lower.</p>":[null,"<p><b><u>Предпочтительные</u></b> качества заменят те, которые<b><u> разрешены</u></b>, даже если они ниже.</p>"],"New":[null,"Новый"],"Set as Default":[null,"Установить по умолчанию"],"Remember me":[null,"Запомнить меня"],"Edit Selected":[null,"Изменить выбранные"],"Subtitle":[null,"Субтитры"],"Default Ep Status":[null,"Статус эпизода по умолчанию"],"Update":[null,"Обновление"],"Rescan":[null,"Повторить сканирование"],"Rename":[null,"Переименование"],"Search Subtitle":[null,"Поиск субтитров"],"Force Metadata Regen":[null,""],"Snatched (Allowed)":[null,"Snatched (разрешенных)"],"Jump to Show":[null,"Перейти к шоу"],"Force Backlog":[null,"Принудительный поиск пропущенных"],"Manage episodes with status":[null,"Управление эпизодами с статусом"],"Manage":[null,"Управление"],"None of your episodes have status":[null,"Ни один из ваших эпизодов не имеет статус"],"Shows containing":[null,"Шоу содержит"],"episodes":[null,"эпизоды"],"Set checked shows/episodes to":[null,""],"Go":[null,"Начать"],"Select all":[null,"Выделить все"],"Clear all":[null,"Очистить все"],"Release":[null,"Релиз"],"Backlog Search":[null,"Поиск пропущенных"],"Not in progress":[null,"Не выполняется"],"In Progress":[null,"Выполняется"],"Daily Search":[null,"Ежедневный поиск"],"Find Propers Search":[null,"поиск Propers"],"Propers search disabled":[null,"Поиск Propers отключен"],"Subtitle Search":[null,"Поиск субтитров"],"Subtitle search disabled":[null,"Поиск субтитров отключен"],"Search Queue":[null,"Очередь поиска"],"pending items":[null,"Ожидает"],"Daily":[null,"Ежедневный"],"Manual":[null,"Ручной"],"Changing any settings marked with (<span class=\"separator\">*</span>) will force a refresh of the selected shows.":[null,""],"Selected Shows":[null,"Выбранные шоу"],"Root Directories":[null,"Корневые каталоги"],"Current":[null,"Текущий"],"Keep":[null,"Оставить"],"Custom":[null,"Пользовательские"],"Group episodes by season folder (set to \"No\" to store in a single folder).":[null,""],"Pause these shows (SickRage will not download episodes).":[null,"Приостановить это шоу (SickRage не будет загружать эпизоды)."],"This will set the status for future episodes.":[null,"Это позволит установить статус для будущих эпизодов."],"Search by scene numbering (set to \"No\" to search by indexer numbering).":[null,""],"Set if these shows are Anime and episodes are released as Show.265 rather than Show.S02E03":[null,""],"Set if these shows are sporting or MMA events released as Show.03.02.2010 rather than Show.S02E03.":[null,""],"In case of an air date conflict between regular and special episodes, the later will be ignored.":[null,""],"Set if these shows are released as Show.03.02.2010 rather than Show.S02E03.":[null,""],"Search for subtitles.":[null,"Поиск для субтитров."],"All of your episodes have {subsLanguage} subtitles.":[null,"Все ваши эпизоды имеют {subsLanguage} субтитры."],"Manage episodes without":[null,"Управление эпизодами без"],"Episodes without {subsLanguage} subtitles.":[null,"Эпизоды без {subsLanguage} субтитров."],"Episodes without {subtitleLanguage} (undefined) subtitles.":[null,"Эпизоды без {subtitleLanguage} (неопределено) субтитров."],"Download missed subtitles for selected episodes":[null,"Скачать пропущенные субтитры для выделенных эпизодов"],"Performing Restart":[null,"Выполнение перезагрузки"],"Waiting for SickRage to shut down":[null,"Ожидание выключения SickRage"],"Waiting for SickRage to start again":[null,"Ожидание запуска SickRage"],"Loading the default page":[null,"Загрузка страницы по умолчанию"],"Error: The restart has timed out, perhaps something prevented SickRage from starting again?":[null,"Ошибка: Перезагрузка превысила время ожидания, возможно что-то помешало SickRage запуститься снова?"],"Key":[null,"Ключ"],"Missed":[null,"Пропустили"],"Today":[null,"Сегодня"],"Soon":[null,"Скоро"],"Later":[null,"Позже"],"Subscribe":[null,"Подписаться"],"Date":[null,"Дата"],"View Paused":[null,"Просмотр приостановлен"],"Hidden":[null,"Скрытое"],"Shown":[null,"Показано"],"Calendar":[null,"Календарь"],"List":[null,"Список"],"Ends":[null,""],"Next Ep Name":[null,"Следующее имя эпизода"],"Run time":[null,""],"Indexers":[null,"Индексаторы"],"No shows for this day":[null,"Нет шоу в этот день"],"Airs":[null,""],"Plot":[null,""],"Show Update":[null,"Обновить шоу"],"Version Check":[null,"Проверка версии"],"Proper Finder":[null,"Поиск Proper"],"Post Process":[null,"Пост обработка"],"Subtitles Finder":[null,"Поиск субтитров"],"Scheduler":[null,"Планировщик"],"Alive":[null,""],"Start Time":[null,"Время начала"],"Cycle Time":[null,"Время цикла"],"Next Run":[null,"Следующий запуск"],"Last Run":[null,"Последний запуск"],"Silent":[null,"Тихий"],"True":[null,"True"],"N/A":[null,"Н/Д"],"Show id":[null,"ID шоу"],"Show name":[null,"Название шоу"],"Priority":[null,"Приоритет"],"Added":[null,"Добавлено"],"Queue type":[null,"Тип очереди"],"LOW":[null,"НИЗКИЙ"],"NORMAL":[null,"НОРМАЛЬНЫЙ"],"HIGH":[null,"ВЫСОКИЙ"],"Disk Space":[null,"Дисковое пространство"],"Free space":[null,"Свободное пространство"],"TV Download Directory":[null,"Каталог ТВ шоу"],"Media Root Directories":[null,"Корневой каталог Media"],"Preview of the proposed name changes":[null,"Предварительный просмотр предложенных изменений имени"],"All Seasons":[null,"Все сезоны"],"select all":[null,"выбрать все"],"Rename Selected":[null,"Переименовать выбранное"],"Cancel Rename":[null,"Отмена переименования"],"Old Location":[null,"Старое расположение"],"New Location":[null,"Новое расположение"],"Trakt API did not return any results, please check your config.":[null,"Тракт API не возвращает никаких результатов, пожалуйста, проверьте config."],"votes":[null,"голоса"],"Remove Show":[null,"Удалить шоу"],"Level":[null,"Уровень"],"Filter":[null,"Фильтр"],"All non-absolute folder locations are relative to ":[null,"Все Неабсолютные папки являются относительными "],"Manual Post-Processing":[null,"Ручная пост-обработка"],"Episode Status Management":[null,"Управление статусом эпизодов"],"Update PLEX":[null,"Обновление PLEX"],"Update KODI":[null,"Обновление KODI"],"Update Emby":[null,"Обновление Emby"],"Missed Subtitle Management":[null,"Управление не найденными субтитрами"],"Help & Info":[null,"Помощь и информация"],"Backup & Restore":[null,"Резервное копирование и восстановление"],"Tools":[null,"Инструменты"],"Support SickRage":[null,"Поддержка SickRage"],"View Errors":[null,"Просмотр ошибок"],"View Warnings":[null,"Просмотр предупреждений"],"View Log":[null,"Просмотр журнала"],"Check For Updates":[null,"Проверить наличие обновлений"],"Restart":[null,"Перезагрузка"],"Shutdown":[null,"Завершение работы"],"Logout":[null,"Выход"],"Server Status":[null,"Статус сервера"],"View overview of snatched episodes":[null,"Просмотр перехваченных эпизодов"],"Episodes Downloaded":[null,"Скачанные эпизоды"],"Memory used":[null,"Используемая память"],"Load time":[null,"Время загрузки"],"Branch":[null,"Ветка"],"Now":[null,"Сейчас"]}}}} \ No newline at end of file +{"messages":{"domain":"messages","locale_data":{"messages":{"100":[null,"100"],"250":[null,"250"],"500":[null,"500"],"":{"domain":"messages","plural_forms":"nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);","lang":"ru_RU"},"Drama":[null,"Драма"],"Mystery":[null,"Мистика"],"Science-Fiction":[null,"Научная фантастика"],"Crime":[null,"Детектив"],"Action":[null,"Экшен"],"Comedy":[null,"Комедия"],"Thriller":[null,"Триллер"],"Animation":[null,"Анимация"],"Family":[null,"Семейный"],"Fantasy":[null,"Фэнтези"],"Adventure":[null,"Приключения"],"Horror":[null,"Ужас"],"Film-Noir":[null,"Фильм нуар"],"Sci-Fi":[null,"Научная фантастика"],"Romance":[null,"Романтика"],"Sport":[null,"Спорт"],"War":[null,"Военный"],"Biography":[null,"Биография"],"History":[null,"История"],"Music":[null,"Музыка"],"Western":[null,"Вестерн"],"News":[null,"Новости"],"Sitcom":[null,"Комедийное шоу"],"Reality-TV":[null,"Реалити шоу"],"Documentary":[null,"Документальный фильм"],"Game-Show":[null,"Игровое шоу"],"Musical":[null,"Мюзикл"],"Talk-Show":[null,"Ток шоу"],"Started Download":[null,"Загрузка началась"],"Download Finished":[null,"Загрузка завершилась"],"Subtitle Download Finished":[null,"Загрузка субтитров завершена"],"SickRage Updated":[null,"SickRage обновлено"],"SickRage Updated To Commit#: ":[null,"SickRage обновлено до коммита №: "],"SickRage new login":[null,"SickRage новый логин"],"New login from IP: {0}. http://geomaplookup.net/?ip={0}":[null,"Новое имя входа с IP: {0}. http://geomaplookup.NET/?IP={0}"],"Repeat":[null,"Повторить"],"Repeat (Separated)":[null,"Повторить (раздельный)"],"Extend":[null,"Расширить"],"Extend (Limited)":[null,"Расширение (Limited)"],"Extend (Limited, E-prefixed)":[null,"Расширение (ограниченное, E-, обладающие префиксом)"],"Downloaded":[null,"Загрузить"],"Snatched":[null,"Перехвачено"],"Snatched (Proper)":[null,"Перехвачено (Proper)"],"Failed":[null,"Не удалось"],"Snatched (Best)":[null,"Перехвачено (Best)"],"Archived":[null,"В архиве"],"Unknown":[null,"Неизвестно"],"Unaired":[null,"Невышедшие"],"Skipped":[null,"Пропущен"],"Wanted":[null,"Нужно"],"Ignored":[null,"Игнорируется"],"Subtitled":[null,"С субтитрами"],"For best results please set the Download Station alias as":[null,"Для достижения наилучших результатов настройте псевдоним Download Station как"],"You can check this setting in the Synology DSM":[null,"Вы можете проверить этот параметр в Synology DSM"],"Control Panel":[null,"Панель управления"],"Application Portal":[null,"Портал приложений"],"Make sure you allow DSM to be embedded with iFrames too in":[null,""],"DSM Settings":[null,"Параметры DSM"],"Security":[null,"Безопасноть"],"<No Filter>":[null,"<Без фильтра>"],"Daily Searcher":[null,"Ежедневный поиск"],"Backlog":[null,"Пропущеные"],"Show Updater":[null,"Обновление шоу"],"Check Version":[null,"Проверить версию"],"Show Queue":[null,"Очередь шоу"],"Search Queue (All)":[null,"Очередь поиска (все)"],"Search Queue (Daily Searcher)":[null,"Очередь поиска (ежедневный поиск)"],"Search Queue (Backlog)":[null,"Очередь поиска (пропущеное)"],"Search Queue (Manual)":[null,"Очередь поиска (ручная)"],"Search Queue (Retry/Failed)":[null,"Очередь поиска (Повтор/ошибка)"],"Search Queue (RSS)":[null,"Очередь поиска (RSS)"],"Find Propers":[null,"Найти Propers"],"Postprocessor":[null,"Постпроцессор"],"Find Subtitles":[null,"Найти субтитры"],"Trakt Checker":[null,"Trakt контролер"],"Event":[null,"Событие"],"Error":[null,"Ошибка"],"Tornado":[null,"Tornado"],"Thread":[null,"Поток"],"Main":[null,"Основной"],"Loading":[null,"Загрузка"],"New update found for SickRage, starting auto-updater":[null,"Новое обновление найдено для SickRage, запуск автообновления"],"Update was successful":[null,"Обновление выполнено успешно"],"Update failed!":[null,"Не удалось обновить!"],"Backup":[null,"Резервное копирование"],"Config backup in progress...":[null,"Резервное копирование конфигурации..."],"Config backup successful, updating...":[null,"Резервное копирование конфигурации успешно, обновление..."],"Config backup failed, aborting update":[null,"Резервное копирование конфигурации завершилось с ошибкой, отмена обновления"],"No update needed":[null,"Обновление не требуется"],"Mako Error":[null,"Mako ошибка"],"Oops":[null,"Что то пошло не по плану"],"Wrong API key used":[null,"Использован неправильный ключ API"],"Login":[null,"Логин"],"API Key not generated":[null,"API ключ не создан"],"API Builder":[null,"API Builder"],"Schedule":[null,"Расписание"],"Test 1":[null,"Тест 1"],"This is test number 1":[null,"Это тест номер 1"],"Test 2":[null,"Тест 2"],"This is test number 2":[null,"Это тест номер 2"],"You're using the {branch} branch. Please use 'master' unless specifically asked":[null,"Вы используете {branch} ветвь. Пожалуйста, используйте «master»"],"Invalid show parameters":[null,"Недопустимые параметры шоу"],"Invalid parameters":[null,"Неправильные параметры"],"Episode couldn't be retrieved":[null,"Не удалось получить эпизод"],"Home":[null,"Главная"],"Show List":[null,"Список шоу"],"Error: Unsupported Request. Send jsonp request with 'callback' variable in the query string.":[null,"Ошибка: Неподдерживаемый запрос. Отправьте запрос jsonp с переменной «обратного» в строке запроса."],"Success. Connected and authenticated":[null,"Успешно подключено"],"Authentication failed. SABnzbd expects":[null,"Сбой проверки подлинности. SABnzbd ожидает"],"as authentication method":[null,"как метод проверки подлинности"],"Unable to connect to host":[null,"Не удается подключиться к серверу"],"SMS sent successfully":[null,"SMS отправлено успешно"],"Problem sending SMS: {message}":[null,"Проблема с отправкой СМС: {message}"],"Telegram notification succeeded. Check your Telegram clients to make sure it worked":[null,"Telegram уведомление успешно. Проверьте ваш клиент Telegram, чтобы убедиться, что он работает"],"Error sending Telegram notification: {message}":[null,"Ошибка при отправке уведомления Telegram: {message}"],"join notification succeeded. Check your join clients to make sure it worked":[null,"уведомление о присоединении успешно установлено. Проверьте ваши присоединенные клиенты чтобы убедиться, что они работают"],"Error sending join notification: {message}":[null,"Ошибка при отправке уведомления о присоединении: {message}"]," with password":[null," с паролем"],"Registered and Tested growl successfully {growl_host}":[null,"Growl зарегистрирован и испытан успешно {growl_host}"],"Registration and Testing of growl failed {growl_host}":[null,"Регистрация и тестирование growl провалилось {growl_host}"],"Test prowl notice sent successfully":[null,"Тест prowl уведомление успешно отправлено"],"Test prowl notice failed":[null,"Тест prowl уведомление не отправилось"],"Boxcar2 notification succeeded. Check your Boxcar2 clients to make sure it worked":[null,"Boxcar2 уведомление успешно. Проверьте ваш Boxcar2 клиент, чтобы убедиться, что он работает"],"Error sending Boxcar2 notification":[null,"Ошибка при отправке уведомления Boxcar2"],"Pushover notification succeeded. Check your Pushover clients to make sure it worked":[null,"Pushover уведомление удалось. Проверьте ваши клиент Pushover, чтобы убедиться, что он работает"],"Error sending Pushover notification":[null,"Ошибка отправки уведомления Pushover"],"Key verification successful":[null,"Проверка ключа прошла успешно"],"Unable to verify key":[null,"Невозможно проверить ключ"],"Tweet successful, check your twitter to make sure it worked":[null,"Tweet успешно отправлен, проверьте ваш twitter, чтобы убедиться, что он работает"],"Error sending tweet":[null,"Ошибка отправки Tweet"],"Please enter a valid account sid":[null,"Пожалуйста, введите действительный sid учетной записи"],"Please enter a valid auth token":[null,"Пожалуйста, введите действительный auth token"],"Please enter a valid phone sid":[null,"Пожалуйста, введите действительный sid телефона"],"Please format the phone number as \"+1-###-###-####\"":[null,"Отформатируйте номер телефона как «+1-###-###-###»"],"Authorization successful and number ownership verified":[null,"Авторизация успешна и номер собственности проверены"],"Error sending sms":[null,"Ошибка при отправке sms"],"Slack message successful":[null,"Slack сообщение успешно"],"Slack message failed":[null,"Slack сообщение не отправлено! Ошибка!"],"Discord message successful":[null,"Discord сообщение успешно"],"Discord message failed":[null,"Discord сообщение не отправлено! Ошибка!"],"Test KODI notice sent successfully to {kodi_host}":[null,"Тест KODI извещение отправлено успешно {kodi_host}"],"Test KODI notice failed to {kodi_host}":[null,"Тест KODI отправить уведомление не удалось {kodi_host}"],"Successful test notice sent to Plex Home Theater ... {plex_clients}":[null,"Успешный тест отправки извещения Plex Home Theater... {plex_clients}"],"Test failed for Plex Home Theater ... {plex_clients}":[null,"Тест не пройден Plex Home Theater... {plex_clients}"],"Tested Plex Home Theater(s)":[null,"Протестированные Plex Home Theater(s)"],"Successful test of Plex Media Server(s) ... {plex_servers}":[null,"Успешное испытание Plex медиа серверов... {plex_servers}"],"Test failed, No Plex Media Server host specified":[null,"Тест не был пройден, не указаны Plex Media Server"],"Test failed for Plex Media Server(s) ... {plex_servers}":[null,"Тест не пройден Plex медиа серверов... {plex_servers}"],"Tested Plex Media Server host(s)":[null,"Протестированные Plex Media Server"],"Tried sending desktop notification via libnotify":[null,"Попытка отправки уведомлений рабочего стола через libnotify"],"Test notice sent successfully to {emby_host}":[null,"Тестирование извещения успешно {emby_host}"],"Test notice failed to {emby_host}":[null,"Тест отправки уведомления. Ошибка! {emby_host}"],"Successfully started the scan update":[null,"Успешно запущено сканирование обновлений."],"Test failed to start the scan update":[null,"Тест запуска сканирования обновлений провалился! Ошибка!"],"Test notice sent successfully to {nmj2_host}":[null,"Тестирование извещения успешно {nmj2_host}"],"Test notice failed to {nmj2_host}":[null,"Тест отправки уведомления. Ошибка! {nmj2_host}"],"Trakt Authorized":[null,"Тракт авторизованный"],"Trakt Not Authorized!":[null,"Тракт не авторизован!"],"Test email sent successfully! Check inbox.":[null,"Тестовое сообщение отправлено успешно! Проверьте почтовый ящик."],"ERROR: {last_error}":[null,"ОШИБКА: {last_error}"],"Test NMA notice sent successfully":[null,"Тестовое NMA уведомление отправлено успешно"],"Test NMA notice failed":[null,"Тестовое NMA уведомление неудачно"],"Pushalot notification succeeded. Check your Pushalot clients to make sure it worked":[null,"Pushalot уведомление удалось. Проверьте ваши клиент Pushalot, чтобы убедиться, что он работает"],"Error sending Pushalot notification":[null,"Ошибка при отправке уведомления Pushalot"],"Pushbullet notification succeeded. Check your device to make sure it worked":[null,"Pushbullet уведомление успешно. Проверьте ваше устройство, чтобы убедиться, что оно работает"],"Error sending Pushbullet notification":[null,"Ошибка при отправке уведомления Pushbullet"],"Status":[null,"Состояние"],"Restarting SickRage":[null,"Перезапуск SickRage"],"Update Failed":[null,"Не удалось обновить"],"Update wasn't successful, not restarting. Check your log for more information.":[null,"Обновление не удалось, не перезагрузилось. Проверьте журнал для получения дополнительной информации."],"Checking out branch":[null,"Проверка ветви"],"Already on branch":[null,"Уже на ветке"],"Invalid show ID: {show}":[null,"Недопустимый шоу ID: {show}"],"Show not in show list":[null,"Шоу нет в списке Шоу"],"Edit":[null,"Редактировать"],"This show is in the process of being downloaded - the info below is incomplete.":[null,"Это шоу в процессе загрузки - информация является неполной."],"The information on this page is in the process of being updated.":[null,"Информация на этой странице находится в процессе обновления."],"The episodes below are currently being refreshed from disk":[null,"Эпизоды в настоящее время обновляются с диска"],"Currently downloading subtitles for this show":[null,"В настоящее время загружаются субтитры для этого шоу"],"This show is queued to be refreshed.":[null,"Это шоу добавлено в очередь для обновления."],"This show is queued and awaiting an update.":[null,"Это шоу находится в очереди и ожидает обновления."],"This show is queued and awaiting subtitles download.":[null,"Это шоу находится в очереди и ожидает загрузки субтитров."],"Resume":[null,"Возобновить"],"Pause":[null,"Пауза"],"Remove":[null,"Удалить"],"Re-scan files":[null,"Повторно сканировать файлы"],"Force Full Update":[null,"Принудительное полное обновление"],"Update show in KODI":[null,"Обновление шоу в KODI"],"Update show in Emby":[null,"Обновление шоу в Emby"],"Hide specials":[null,"Скрыть specials"],"Show specials":[null,"Показать specials"],"Preview Rename":[null,"Переименование файлов шоу"],"Download Subtitles":[null,"Скачать субтитры"],"No scene exceptions":[null,"Нет исключений по сериям"],"Invalid show ID":[null,"Недопустимый ID шоу"],"Unable to find the specified show":[null,"Не удается найти указанное шоу"],"Unable to retreive Fansub Groups from AniDB.":[null,"Не удается извлечь Fansub группы из AniDB."],"Edit Show":[null,"Редактировать шоу"],"Unable to refresh this show: {error}":[null,"Не удается обновить это шоу: {error}"],"New location <tt>{location}</tt> does not exist":[null,"Новое расположение <tt>{location}</tt> не существует"],"Unable to update show: {error}":[null,"Не удается обновить шоу: {error}"],"Unable to force an update on scene exceptions of the show.":[null,"Не удается выполнить принудительное обновление исключений сцен в шоу."],"Unable to force an update on scene numbering of the show.":[null,"Не удается выполнить принудительное обновление нумерации сцен в шоу."],"{num_errors:d} error{plural} while saving changes:":[null,"{num_errors:d} ошибка {plural} при сохранении изменений:"],"{show_name} has been {paused_resumed}":[null,"{show_name} был {paused_resumed}"],"resumed":[null,"возобновлено"],"paused":[null,"приостановлено"],"{show_name} has been {deleted_trashed} {was_deleted}":[null,"{show_name} был {deleted_trashed} {was_deleted}"],"deleted":[null,"удалено"],"trashed":[null,"в корзине"],"(media untouched)":[null,"(media незатронуто)"],"(with all related media)":[null,"(все связанные с media)"],"Unable to refresh this show.":[null,"Не удается обновить это шоу."],"Unable to update this show.":[null,"Не удается обновить это шоу."],"Library update command sent to KODI host(s)): {kodi_hosts}":[null,"Команда обновления Библиотеки, отправлена KODI host(s)): {kodi_hosts}"],"Unable to contact one or more KODI host(s)): {kodi_hosts}":[null,"Не удается связаться с одним или несколькими KODI host(s)): {kodi_hosts}"],"Library update command sent to Plex Media Server host: {plex_server}":[null,"Команда обновления Библиотеки, отправлена на Plex Media Server: {plex_server}"],"Unable to contact Plex Media Server host: {plex_server}":[null,"Не удается связаться с Plex Media Server: {plex_server}"],"Library update command sent to Emby host: {emby_host}":[null,"Команда обновление Библиотеки, отправлена Emby: {emby_host}"],"Unable to contact Emby host: {emby_host}":[null,"Не удается связаться с Emby сервером: {emby_host}"],"You must specify a show and at least one episode":[null,"Необходимо указать шоу и по крайней мере один эпизод"],"Invalid status":[null,"Недопустимый статус"],"Backlog was automatically started for the following seasons of <b>{show_name}</b>":[null,"Поиск пропущенных автоматически запускается для следующих сезонов <b>{show_name}</b>"],"Season":[null,"Сезон"],"Backlog started":[null,"Поиск пропущенных"],"Retrying Search was automatically started for the following season of <b>{show_name}</b>":[null,"Повтор поиска автоматически запустился для следующего сезона <b>{show_name}</b>"],"Retry Search started":[null,"Повторный поиск начат"],"You must specify a show":[null,"Необходимо указать шоу"],"Can't rename episodes when the show dir is missing.":[null,"Не удается переименовать эпизоды, когда директория шоу отсутствует."],"New subtitles downloaded: {new_subtitle_languages}":[null,"Новые субтитры загружены: {new_subtitle_languages}"],"No subtitles downloaded":[null,"Субтитры не загружены"],"IRC":[null,"IRC"],"Could not load news from the repo. [Click here for news.md])({news_url})":[null,"Не удалось загрузить Новости из репозитория. [Нажмите здесь news.md]) ({news_url})"],"The was a problem connecting to github, please refresh and try again":[null,"Была проблема с подключением к github, пожалуйста, обновите страницу и повторите попытку"],"Could not load changes from the repo. [Click here for CHANGES.md]({changes_url})":[null,"Не удалось загрузить изменения из репозитория. [Нажмите здесь CHANGES.md] ({changes_url})"],"Changelog":[null,"Список изменений"],"Post Processing":[null,"Пост-обработка"],"Add Shows":[null,"Добавить шоу"],"No folders selected.":[null,"Папки не выбран."],"New Show":[null,"Новое шоу"],"Trending Shows":[null,"Актуальные шоу"],"Popular Shows":[null,"Популярные шоу"],"Most Anticipated Shows":[null,"Самые ожидаемые шоу"],"Most Collected Shows":[null,"Наиболее кассовые шоу"],"Most Watched Shows":[null,"Самые популярные шоу"],"Most Played Shows":[null,"Наиболее популярные шоу"],"Recommended Shows":[null,"Рекомендуемые шоу"],"New Shows":[null,"Новое шоу"],"Season Premieres":[null,"Премьеры сезона"],"Existing Show":[null,"Существующие шоу"],"No root directories setup, please go back and add one.":[null,"Корневые каталоги не настроены, вернитесь и добавьте один."],"Show added":[null,"Шоу добавлено"],"Adding the specified show {show_name}":[null,"Добавление указанного шоу {show_name}"],"Missing params, no Indexer ID or folder: {show_to_add} and {root_dir}/{show_path}":[null,""],"Unknown error. Unable to add show due to problem with show selection.":[null,"Неизвестная ошибка. Не удается добавить шоу из-за проблемы с выбором шоу."],"Unable to add show":[null,"Не удается добавить шоу"],"Folder {show_dir} exists already":[null,"{show_dir} папка уже существует"],"Unable to create the folder {show_dir}, can't add the show":[null,"Не удается создать папку {show_dir}, не удалось добавить шоу"],"Adding the specified show into {show_dir}":[null,"Добавление указанного шоу в {show_dir}"],"Shows Added":[null,"Шоу добавлено"],"Automatically added {num_shows} from their existing metadata files":[null,"Автоматически добавлено {num_shows} из существующих файлов метаданных"],"Mass Update":[null,"Массовое обновление"],"Episode Overview":[null,"Обзор эпизода"],"Missing Subtitles":[null,"Недостающие субтитры"],"Backlog Overview":[null,"Обзор пропущенных"],"Mass Edit":[null,"Массовое редактирование"],"Unable to update show: {excption_format}":[null,"Не удается обновить шоу: {excption_format}"],"Unable to refresh show {show_name}: {excption_format}":[null,"Не удается обновить шоу {show_name}: {excption_format}"],"Errors encountered":[null,"Обнаруженные ошибки"],"Updates":[null,"Обновления"],"Refreshes":[null,"Обновления"],"Renames":[null,"Переименования"],"Subtitles":[null,"Субтитры"],"The following actions were queued":[null,"Следующие действия поставлены в очередь"],"Failed Downloads":[null,"Сбойные загрузки"],"Manage Searches":[null,"Управление поиском"],"Backlog search started":[null,"Начался поиск пропущенных "],"Daily search started":[null,"Начат ежедневный поиск"],"Find propers search started":[null,"Начат поиск propers"],"Subtitle search started":[null,"Начат поиск субтитров"],"Remove Selected":[null,"Удалить помеченные"],"Clear History":[null,"Очистить историю"],"Trim History":[null,"Урезать историю"],"Selected history entries removed":[null,"Выбранные записи истории удалены"],"History cleared":[null,"История очищена"],"Removed history entries older than 30 days":[null,"Удалить записи истории старше 30 дней"],"General":[null,"Общие"],"Backup/Restore":[null,"Резервное копирование и восстановление"],"Search Settings":[null,"Настройки поиска"],"Search Providers":[null,"Поисковые провайдеры"],"Subtitles Settings":[null,"Настройки субтитров"],"Notifications":[null,"Уведомления"],"Anime":[null,"Аниме"],"SickRage Configuration":[null,"Конфигурация SickRage"],"Config - Shares":[null,""],"Windows Shares Configuration":[null,""],"Saved Shares":[null,""],"Your Windows share settings have been saved":[null,""],"Config - General":[null,"Config - Основной"],"General Configuration":[null,"Основные настройки"],"Saved Defaults":[null,"Сохраненные значения по умолчанию"],"Your \"add show\" defaults have been set to your current selections.":[null,""],"Unable to create directory {directory}, log directory not changed.":[null,"Не удается создать каталог {directory}, каталог журналов не изменился."],"Unable to create directory {directory}, https cert directory not changed.":[null,"Не удается создать каталог {directory}, https cert директория не изменилась."],"Unable to create directory {directory}, https key directory not changed.":[null,"Не удается создать каталог {directory}, https ключ директории не изменился."],"Error(s) Saving Configuration":[null,"Ошибка(и), сохранения конфигурации"],"Configuration Saved":[null,"Конфигурация сохранена"],"Config - Backup/Restore":[null,"Config - резервное копирование и восстановление"],"Config - Episode Search":[null,"Config - Поиск эпизодов"],"Config - Post Processing":[null,"Config - пост обработка"],"Unpacking Not Supported, disabling unpack setting":[null,"Распаковка не поддерживается, отключение параметра распаковывать"],"You tried saving an invalid normal naming config, not saving your naming settings":[null,""],"You tried saving an invalid anime naming config, not saving your naming settings":[null,""],"Config - Providers":[null,"Config - провайдеров"],"No Provider Name specified":[null,"Не указано имя провайдера"],"No Provider Url specified":[null,"Не указан URL-адрес провайдера"],"No Provider Api key specified":[null,"Не указан API ключ провадера"],"Config - Notifications":[null,"Config - уведомления"],"Config - Subtitles":[null,"Config - субтитры"],"Config - Anime":[null,"Config - аниме"],"Clear Errors":[null,"Очистить ошибки"],"Clear Warnings":[null,"Очистить предупреждения"],"Submit Errors":[null,"Отправить ошибки"],"Logs & Errors":[null,"Журналы и ошибки"],"Log File":[null,"Файл журнала"],"Logs":[null,"Журналы"],"This is a test notification from SickRage":[null,"Это тестовое уведомление от SickRage"],"Choose Directory":[null,""],"Select log file folder location":[null,""],"Select CSS file":[null,""],"Select backup folder to save to":[null,""],"Select backup files to restore":[null,""],"Please fill out the necessary fields above.":[null,""],"<b>Step 1:</b> Confirm Authorization":[null,""],"Check blacklist name; the value needs to be a trakt slug":[null,""],"You must provide a recipient email address!":[null,""],"You didn't supply a Pushbullet api key":[null,""],"Don't forget to save your new pushbullet settings.":[null,""],"Select TV Download Directory":[null,""],"Select Unpack Directory":[null,""],"This pattern is invalid.":[null,"Этот шаблон является недопустимым."],"This pattern would be invalid without the folders, using it will force \"Season Folders\" on for all shows.":[null,""],"This pattern is valid.":[null,"Этот шаблон является допустимым."],"Select .nzb black hole/watch location":[null,""],"Select .torrent black hole/watch location":[null,""],"Select .torrent download location":[null,""],"Minimum seeding time is":[null,""],"URL to your uTorrent client (e.g. http://localhost:8000)":[null,""],"Stop seeding when inactive for":[null,""],"URL to your Transmission client (e.g. http://localhost:9091)":[null,""],"URL to your Deluge client (e.g. http://localhost:8112)":[null,""],"IP or Hostname of your Deluge Daemon (e.g. scgi://localhost:58846)":[null,""],"URL to your Synology DS client (e.g. http://localhost:5000)":[null,""],"URL to your rTorrent client (e.g. scgi://localhost:5000 <br> or https://localhost/rutorrent/plugins/httprpc/action.php)":[null,""],"URL to your qBittorrent client (e.g. http://localhost:8080)":[null,""],"URL to your MLDonkey (e.g. http://localhost:4080)":[null,""],"URL to your putio client (e.g. http://localhost:8080)":[null,""],"<a herf=\"https://app.put.io/oauth/apps/new\" target=\"_blank\"> Create a new OAuth app for put.io</a>":[null,""],"Put.io Parent Folder":[null,""],"Put.io OAuth Token":[null,""],"Show Episodes":[null,"Показать эпизоды"],"Hide Episodes":[null,"Скрыть эпизоды"],"Select Show Location":[null,""],"Select Unprocessed Episode Folder":[null,""],"DELETED":[null,""],"Resume updating the log on this page.":[null,"Возобновление обновления журнала на этой странице."],"Pause updating the log on this page.":[null,""],"searching {searchingFor}...":[null,""],"search timed out, try again or try another indexer":[null,""],"loading folders...":[null,""],"Loading...":[null,"Загрузка..."],"You have reached this page by accident, please check the url.":[null,"Вы попали на эту страницу случайно, пожалуйста, проверьте URL-адрес."],"A mako error has occured.<br>\n If this happened during an update a simple page refresh may be the solution.<br>\n Mako errors that happen during updates may be a one time error if there were significant ui changes.":[null,""],"Show/Hide Error":[null,"Показать/скрыть ошибки"],"Add New Show":[null,"Добавить новое шоу"],"For shows that you haven't downloaded yet, this option finds a show on theTVDB.com, creates a directory for it's episodes, and adds it to SickRage.":[null,""],"Add From Trakt Lists":[null,"Добавить из списков Trakt"],"For shows that you haven't downloaded yet, this option lets you choose from a show from one of the Trakt lists to add to SickRage.":[null,""],"Add From IMDB's Popular Shows":[null,"Добавить из популярных шоу IMDB"],"View IMDB's list of the most popular shows. This feature uses IMDB's MOVIEMeter algorithm to identify popular TV Series.":[null,""],"Add Existing Shows":[null,"Добавление существующих шоу"],"Use this option to add shows that already have a folder created on your hard drive. SickRage will scan your existing metadata/episodes and add the show accordingly.":[null,""],"Add Existing Show":[null,"Добавить существующее шоу"],"Manage Directories":[null,"Управление каталогами"],"Customize Options":[null,"Настроить параметры"],"SickRage can add existing shows, using the current options, by using locally stored NFO/XML metadata to eliminate user interaction. If you would rather have SickRage prompt you to customize each show, then use the checkbox below.":[null,""],"Prompt me to set settings for each show":[null,"Запрашивать параметры для каждого шоу"],"Displaying folders within these directories which aren't already added to SickRage":[null,""],"Submit":[null,"Отправить"],"Find a show on theTVDB":[null,"Найти шоу на theTVDB"],"Show retrieved from existing metadata":[null,"Шоу, получено из существующих метаданных"],"All Indexers":[null,"Все индексаторы"],"Search":[null,"Поиск"],"This will only affect the language of the retrieved metadata file contents and episode filenames.":[null,""],"This <b>DOES NOT</b> allow SickRage to download non-english TV episodes!":[null,""],"Pick the parent folder":[null,"Выберите родительскую папку"],"Pre-chosen Destination Folder":[null,"Предварительно выбранная папка"],"Customize options":[null,"Настроить параметры"],"Add Show":[null,"Добавить Шоу"],"Skip Show":[null,"Пропустить шоу"],"Sort By":[null,"Сортировать по"],"Name":[null,"Имя"],"Original":[null,"Оригинальный"],"Votes":[null,"Голоса"],"Rating":[null,"Рейтинг"],"Rating > Votes":[null,"Рейтинг > голосов"],"Sort Order":[null,"Порядок сортировки"],"Asc":[null,"По возрастанию"],"Desc":[null,"По убыванию"],"Fetching of IMDB Data failed. Are you online?":[null,"Кэширование данных IMDB не удалось. Вы онлайн?"],"Exception":[null,"Исключение"],"Select Trakt List":[null,"Выберите список Trakt"],"Most Anticipated":[null,"Самые ожидаемые"],"Trending":[null,"Популярные"],"Popular":[null,"Популярные"],"Most Watched":[null,"Самые просматриваемые"],"Most Played":[null,"Часто воспроизводимые"],"Most Collected":[null,"Большинство собранных"],"Recommended":[null,"Рекомендованные"],"Toggle navigation":[null,"Переключить навигацию"],"Profile":[null,"Профиль"],"JSONP":[null,"JSONP"],"Back to SickRage":[null,"Вернуться к SickRage"],"Parameters":[null,"Параматры"],"Required":[null,"Требуется"],"Description":[null,"Описание"],"Type":[null,"Тип"],"Default value":[null,"Значение по умолчанию"],"Allowed values":[null,"Допустимые значения"],"Playground":[null,""],"Clear":[null,"Очистить/ удалить"],"Yes":[null,"Да"],"No":[null,"Нет"],"season":[null,"сезон"],"episode":[null,"Эпизод"],"Python Version":[null,"Версия Python"],"SSL Version":[null,"Версия SSL"],"OS":[null,"OS"],"Locale":[null,"Locale"],"User":[null,"Пользователь"],"Program Folder":[null,"Папка программы"],"Config File":[null,"Конфигурационный файл"],"Database File":[null,"Файл базы данных"],"Cache Folder":[null,"Папка кэша"],"Log Folder":[null,"Папка журнала"],"Arguments":[null,"Аргументы"],"Web Root":[null,"Корень веб"],"Website":[null,"Веб-сайт"],"Wiki":[null,"Вики"],"Source":[null,"Источник"],"IRC Chat":[null,"IRC чат"],"AnimeDB Settings":[null,"Параметры AnimeDB"],"Look & Feel":[null,"Внешний вид"],"AniDB is non-profit database of anime information that is freely open to the public":[null,"AniDB является некоммерческой базой данных информации об аниме, она открыта для публичного доступа"],"Enable":[null,"Включить"],"should SickRage use data from AniDB?":[null,"SickRage следует использовать данные из AniDB?"],"AniDB Username":[null,"Имя пользователя AniDB"],"username of your AniDB account":[null,"имя пользователя аккаунта AniDB"],"AniDB Password":[null,"Пароль AniDB"],"password of your AniDB account":[null,"пароль вашей учетной записи AniDB"],"AniDB MyList":[null,"AniDB MyList"],"do you want to add the PostProcessed episodes to the MyList?":[null,"Вы хотите добавить пост обработку эпизодов MyList?"],"Look and Feel":[null,"Внешний вид"],"How should the anime functions show and behave.":[null,""],"Split show lists":[null,"Разделить списки шоу"],"separate anime and normal shows in groups":[null,"разделить аниме и обычные шоу на группы"],"Split in tabs":[null,"Разделить на вкладки"],"use tabs for when splitting show lists":[null,"разделять на вкладки когда разделены списки шоу"],"Restore":[null,"Восстановить"],"Backup your main database file and config.":[null,"Резервное копирование файла главной базы данных и конфигурации."],"Select the folder you wish to save your backup file to":[null,"Выберите папку, в которую вы хотите сохранить файл резервной копии"],"Restore your main database file and config.":[null,"Восстановите файл главной базы данных и конфигурации."],"Select the backup file you wish to restore":[null,"Выберите файл резервной копии, которую вы хотите восстановить"],"Misc":[null,"Разное"],"Interface":[null,"Интерфейс"],"Advanced Settings":[null,"Расширенные настройки"],"Startup options. Indexer options. Log and show file locations.":[null,"Параметры запуска. Параметры индексатора. Расположение файлов журнала и шоу."],"Some options may require a manual restart to take effect.":[null,"Некоторые опции могут потребовать перезагрузки для вступления в силу."],"Default Indexer Language":[null,"Язык индексатора по умолчанию"],"for adding shows and metadata providers":[null,"для добавления шоу и метаданных провайдеров"],"Launch browser":[null,"Запуск браузера"],"open the SickRage home page on startup":[null,"Откройте домашнюю страницу при запуске SickRage"],"Initial page":[null,"Начальная страница"],"Shows":[null,"Шоу"],"when launching SickRage interface":[null,"При запуске интерфейса SickRage"],"Choose hour to update shows":[null,"Выберите время обновления шоу"],"with information such as next air dates, show ended, etc. Use 15 for 3pm, 4 for 4am etc.":[null,""],"note":[null,"заметка"],"minutes are randomized each time SickRage is started":[null,""],"Send to trash for actions":[null,""],"when using show \"Remove\" and delete files":[null,""],"on scheduled deletes of the oldest log files":[null,""],"selected actions use trash (recycle bin) instead of the default permanent delete":[null,""],"Log file folder location":[null,"Местоположение папки файла журнала"],"Number of Log files saved":[null,"Количество сохраняемых файлов журналов"],"number of log files saved when rotating logs (default: 5) (REQUIRES RESTART)":[null,"количество файлов журнала, сохраненные при циклической записи (по умолчанию: 5) (требуется Перезагрузка)"],"Size of Log files saved":[null,"Размер файлов журнала"],"maximum size in MB of the log file (default: 1MB) (REQUIRES RESTART)":[null,"максимальный размер в МБ файла журнала (по умолчанию: 1MB) (требуется Перезагрузка)"],"Use initial indexer set to":[null,""],"as the default selection when adding new shows":[null,""],"Timeout show indexer at":[null,"Индексатор шоу тайм-аут"],"seconds of inactivity when finding new shows (default:20)":[null,""],"Show root directories":[null,"Показать корневые директории"],"where the files of shows are located":[null,"где находятся файлы шоу"],"Save Changes":[null,"Сохранить изменения"],"Options for software updates.":[null,"Параметры для обновлений программного обеспечения."],"Check software updates":[null,"Проверить обновления программного обеспечения"],"and display notifications when updates are available. Checks are run on startup and at the frequency set below*":[null,""],"Automatically update":[null,"Автоматическое обновление"],"fetch and install software updates. Updates are run on startup and in the background at the frequency set below*":[null,""],"Check the server every*":[null,"Проверять сервер каждые *"],"hours for software updates (default:1)":[null,"часов для обновлений программного обеспечения (по умолчанию: 1)"],"Notify on software update":[null,"Уведомлять о обновлении программного обеспечения"],"send a message to all enabled notifiers when SickRage has been updated":[null,"Отправить сообщение для всех включенных оповещателей, когда SickRage будет обновлен"],"User Interface":[null,"Пользовательский интерфейс"],"Options for visual appearance.":[null,"Параметры внешнего вида."],"Interface Language":[null,"Язык интерфейса"],"System Language":[null,"Язык системы"],"for appearance to take effect, save then refresh your browser":[null,"что бы изменения вступили в силу нажмите сохранить, затем обновите страницу в браузере"],"Display theme":[null,"Тема экрана"],"Dark":[null,"Темный"],"Light":[null,"Светлый"],"Use a background image":[null,"Использовать фоновый рисунок"],"use a custom image as background for SickRage":[null,"использовать пользовательское изображение в качестве фона для SickRage"],"Background Path":[null,"Путь к фоновому изображению"],"Path to the background image":[null,"Путь к фоновому изображению"],"Show fanart in the background":[null,"Показать фанарт на заднем плане"],"on the show summary page":[null,"на странице шоу"],"Fanart transparency":[null,"прозрачность Фанарт"],"transparency of the fanart in the background":[null,"прозрачность фанарт на заднем плане"],"Use a custom stylesheet file":[null,""],"use a custom .css file to style SickRage (for advanced users)":[null,""],"Stylesheet File Path":[null,""],"Path to the stylesheet (.css) file":[null,""],"Show all seasons":[null,"Показать все сезоны"],"Sort with \"The\", \"A\", \"An\"":[null,"Сортировка с \"The\", \"A\", \"An\""],"include articles (\"The\", \"A\", \"An\") when sorting show lists":[null,""],"Missed episodes range":[null,"Диапазон пропущенных эпизодов"],"set the range in days of the missed episodes in the Schedule page":[null,"Установите диапазон дней пропущенных эпизодов на странице расписания"],"Display fuzzy dates":[null,"Отображение нечетких дат"],"move absolute dates into tooltips and display e.g. \"Last Thu\", \"On Tue\"":[null,""],"Trim zero padding":[null,""],"remove the leading number \"0\" shown on hour of day, and date of month":[null,""],"Date style":[null,"Стиль даты"],"Use System Default":[null,"Использовать настройки системы по умолчанию"],"Time style":[null,"Стиль времени"],"seconds are only shown on the History page":[null,"секунды отображаются только на странице истории"],"Timezone":[null,"Часовой пояс"],"Local":[null,"Местное"],"Network":[null,"Сеть"],"display dates and times in either your timezone or the shows network timezone":[null,"Показывать даты и время в любом часовом поясе или в часовом поясе сети"],"use local timezone to start searching for episodes minutes after show ends (depends on your dailysearch frequency)":[null,""],"Download url":[null,"url для загрузки"],"URL where the shows can be downloaded.":[null,"URL-адрес, где можно скачать шоу."],"Web Interface":[null,"Веб-интерфейс"],"it is recommended that you enable a username and password to secure SickRage from being tampered with remotely.":[null,"рекомендуется, чтобы вы установили имя пользователя и пароль для обеспечения безопасности SickRage при удаленном доступе."],"these options require a manual restart to take effect.":[null,"Эти настройки требуют ручной перезагрузки для вступления в силу."],"API key":[null,"Ключ API"],"used to give 3rd party programs limited access to SickRage":[null,""],"you can try all the features of the API":[null,"Вы можете попробовать все функции API"],"here":[null,"Здесь"],"HTTP logs":[null,"Логи HTTP"],"enable logs from the internal Tornado web server":[null,"включить журналы от внутреннего веб-сервера Торнадо"],"HTTP username":[null,"HTTP имя пользователя"],"set blank for no login":[null,"Оставьте пустым для входа без пароля"],"HTTP password":[null,"Пароль HTTP"],"blank = no authentication":[null,"пустой = без проверки подлинности"],"HTTP port":[null,"Порт HTTP"],"web port to browse and access SickRage (default:8081)":[null,"веб-порт для просмотра и доступа к SickRage (по умолчанию: 8081)"],"Notify on login":[null,"Уведомления при входе"],"enable to be notified when a new login happens in webserver":[null,"позволяют получать уведомления, когда кто то новый входит на веб-сервер"],"Listen on IPv6":[null,"Прослушивание IPv6"],"attempt binding to any available IPv6 address":[null,"попытка привязки к любому доступному адресу IPv6"],"Enable HTTPS":[null,"Включить HTTPS"],"enable access to the web interface using a HTTPS address":[null,"разрешить доступ к веб-интерфейсу, с помощью HTTPS"],"HTTPS certificate":[null,"Сертификат HTTPS"],"file name or path to HTTPS certificate":[null,"имя файла или путь к сертификату HTTPS"],"HTTPS key":[null,"HTTPS ключ"],"file name or path to HTTPS key":[null,"имя файла или путь к ключу HTTPS"],"Reverse proxy headers":[null,"Reverse proxy headers"],"accept the following reverse proxy headers (advanced)...":[null,"accept the following reverse proxy headers (advanced)..."],"(X-Forwarded-For, X-Forwarded-Host, and X-Forwarded-Proto)":[null,"(X-Forwarded-For, X-Forwarded-Host, and X-Forwarded-Proto)"],"CPU throttling":[null,"Нагрузка на процессор"],"Normal (default). High is lower and Low is higher CPU use":[null,"Обычный (по умолчанию). Высокий уровень ниже, а низкий - более высокая загрузка ЦП"],"Anonymous redirect":[null,"Анонимное перенаправление"],"backlink protection via anonymizer service, must end in \"?\"":[null,"Обратная ссылка через службу анонимайзера, должна заканчиваться на «?»"],"Enable debug":[null,"Включение отладки"],"enable debug logs":[null,"Включить отладочные журналы"],"Verify SSL Certs":[null,"Проверка SSL сертификатов"],"verify SSL Certificates (Disable this for broken SSL installs (Like QNAP))":[null,"Проверка SSL-сертификатов (Disable this for broken SSL installs (Like QNAP))"],"No Restart":[null,"Без перезапуска"],"only shutdown when restarting SR":[null,"только выключать при перезапуске SR"],"only select this when you have external software restarting SR automatically when it stops (like FireDaemon)":[null,"Выбирайте это только при наличии внешнего программного обеспечения которое запустит SR автоматически, когда он остановится (например FireDaemon)"],"Encrypt passwords":[null,"Шифровать пароли"],"in the <code>config.ini</code> file":[null,"в файле <code>config.ini</code>"],"warning":[null,"предупреждение"],"passwords must only contain":[null,"пароли должны содержать только"],"ASCII characters":[null,"ASCII символы"],"Unprotected calendar":[null,"Незащищенный календарь"],"allow subscribing to the calendar without user and password":[null,"Разрешить подписку на календарь без логина и пароля"],"some services like Google Calendar only work this way":[null,"Некоторые услуги, такие как Google календарь могут работать только таким образом"],"Google Calendar Icons":[null,"Иконка Google Календарь"],"show an icon next to exported calendar events in Google Calendar":[null,"Показывать значок рядом с экспортированными событиями календаря в Календаре Google."],"Proxy host":[null,"Прокси-сервер"],"blank to disable or proxy to use when connecting to providers":[null,"Оставьте пустым чтобы отключить или прокси-сервер для использования при подключении к провайдерам"],"also use global proxy setting for indexers (tvdb, xem, anidb, etc.)":[null,"также используйте глобальные настройки прокси-сервера для индексаторов (tvdb, xem, anidb и т.д.)"],"Skip Remove Detection":[null,"Пропустить Remove Detection"],"skip detection of removed files":[null,"Пропустить обнаружение удаленных файлов"],"if disabled the episode will be set to the default deleted status":[null,"Если отключено, эпизоду будет присвоено значение по умолчанию статус удален"],"Default deleted episode status":[null,"Статус удаленного эпизода по умолчанию"],"define the status to be set for media file that has been deleted.":[null,"Определите статус какой статус необходимо задать файлу мультимедиа, который был удален."],"Archived option will keep previous downloaded quality":[null,"Архивированный вариант будет сохранять предыдущее качество загрузки"],"example: Downloaded (1080p WEB-DL) ==> Archived (1080p WEB-DL)":[null,"Пример: Загружен (1080p WEB-DL) ==> Архив (1080p WEB-DL)"],"Options for github related features.":[null,"Настройки для github связанных функций."],"Branch version":[null,"Версия ветви"],"error: No branches found.":[null,"Ошибка: не найден ветви."],"select branch to use (restart required)":[null,"Выберите ветвь для использования (требуется перезапуск)"],"Authorization Type":[null,"Тип авторизации"],"Username and password":[null,"Имя пользователя и пароль"],"Personal access token":[null,"Персональный access token"],"You must use a personal access token if you're using \"two-factor authentication\" on GitHub.":[null,"Необходимо использовать личный access token, если вы пользуетесь «двух факторной проверкой подлинности» на GitHub."],"GitHub username":[null,"Имя пользователя GitHub"],"*** (REQUIRED FOR SUBMITTING ISSUES) ***":[null,"(ТРЕБУЕТСЯ ДЛЯ ПРЕДСТАВЛЕНИЯ ВОПРОСОВ) ***"],"GitHub password":[null,"GitHub пароль"],"GitHub personal access token":[null,"GitHub персонального access token"],"Generate Token":[null,"Генерировать token"],"Manage Tokens":[null,"Управление tokens"],"GitHub remote for branch":[null,"GitHub удаленной ветви"],"access repo configured remotes (save then refresh browser)":[null,"Доступ к репозиторию настроен (сохраните затем обновите браузер)"],"default":[null,"по умолчанию"],"origin":[null,"Оригинал"],"Git executable path":[null,"Путь к исполняемому файлу Git"],"only needed if OS is unable to locate git from env":[null,"требуется только, если ОС не удается найти git от env"],"Git reset":[null,"Git сброс"],"removes untracked files and performs a hard reset on git branch automatically to help resolve update issues":[null,"Удаляет неотслеживаемые файлы и выполняет жесткий сброс в git branch автоматически, чтобы помочь разрешить проблемы с обновлением"],"Home Theater / NAS":[null,"Домашний кинотеатр / NAS"],"Devices":[null,"Устройства"],"Social":[null,"Социальные"],"A free and open source cross-platform media center and home entertainment system software with a 10-foot user interface designed for the living-room TV.":[null,"Бесплатный межплатформенный мультимедийный центр с открытым исходным кодом и программное обеспечение для домашних развлекательных систем с 10-футовым пользовательским интерфейсом, предназначенным для использования в гостиной."],"send KODI commands?":[null,"Отправить KODI команды?"],"Always on":[null,"Включен всегда"],"log errors when unreachable?":[null,"Записать в журнал ошибок, когда недоступен?"],"Notify on snatch":[null,"Уведомлять о перехвате"],"send a notification when a download starts?":[null,"отправить уведомление, когда начнется загрузка?"],"Notify on download":[null,"Уведомлять о загрузке"],"send a notification when a download finishes?":[null,"отправить уведомление о завершении загрузки?"],"Notify on subtitle download":[null,"Уведомлять о загрузке субтитров"],"send a notification when subtitles are downloaded?":[null,"отправить уведомление, когда субтитры загрузятся?"],"Update library":[null,"Обновление библиотеки"],"update KODI library when a download finishes?":[null,"Обновление библиотеки KODI, по завершении загрузки?"],"Full library update":[null,"Полное обновление библиотеки"],"perform a full library update if update per-show fails?":[null,"выполнить полное обновление библиотеки, если обновление по шоу не удалось?"],"Only update first host":[null,"Обновление только первый узел"],"only send library updates to the first active host?":[null,"отправить только обновления библиотеки на первый активный узел?"],"KODI IP:Port":[null,"KODI IP:Port"],"host running KODI (eg. 192.168.1.100:8080)":[null,"Сервер с запущенным KODI (прим. 192.168.1.100:8080)"],"(multiple host strings must be separated by commas)":[null,""],"Username":[null,"Логин"],"username for your KODI server (blank for none)":[null,"имя пользователя для сервера KODI (пустой для none)"],"Password":[null,"Пароль"],"password for your KODI server (blank for none)":[null,"пароль для вашего сервера KODI (пустой для none)"],"Click below to test.":[null,"Нажмите ниже, чтобы проверить."],"Experience your media on a visually stunning, easy to use interface on your Mac connected to your TV. Your media library has never looked this good!":[null,""],"For sending notifications to Plex Home Theater (PHT) clients, use the KODI notifier with port <b>3005</b>.":[null,""],"send Plex Media Server library updates?":[null,"отправить обновления библиотеки Plex Media Server?"],"Plex Media Server Auth Token":[null,"Plex Media Server Auth Token"],"auth token used by Plex":[null,"Auth Token, используемый Plex"],"Update Library":[null,"Обновление библиотеки"],"update Plex Media Server library when a download finishes":[null,"Обновление библиотеки Plex Media Server по завершении загрузки"],"Plex Media Server IP:Port":[null,"Plex Media Server IP: Port"],"one or more hosts running Plex Media Server<br/>(eg. 192.168.1.1:32400, 192.168.1.2:32400)":[null,"один или несколько узлов под управлением Plex Media Server <br/> (например. 192.168.1.1:32400, 192.168.1.2:32400)"],"HTTPS":[null,"HTTPS"],"use https for plex media server requests?":[null,"использовать протокол https для запросов на plex media server?"],"Click below to test Plex Media Server(s)":[null,"Нажмите ниже, чтобы проверить Plex Media Server(s)"],"Test Plex Media Server":[null,"Тест-Plex Media Server"],"Plex Home Theater":[null,"Plex домашний кинотеатр"],"send Plex Home Theater notifications?":[null,"отправлять уведомления Plex домашний кинотеатр?"],"Plex Home Theater IP:Port":[null,"IP: Port Plex домашний кинотеатр"],"one or more hosts running Plex Home Theater<br>(eg. 192.168.1.100:3000, 192.168.1.101:3000)":[null,""],"Click below to test Plex Home Theater(s)":[null,""],"Test Plex Home Theater":[null,"Тест Plex домашний кинотеатр"],"some Plex Home Theaters <b class=\"boldest\">do not</b> support notifications e.g. Plexapp for Samsung TVs":[null,""],"Emby":[null,"Emby"],"A home media server built using other popular open source technologies.":[null,"Домашний медиа-сервер, построенный с использованием других популярных технологий с открытым исходным кодом."],"send update commands to Emby?":[null,"Отправить команду обновления Emby?"],"Emby IP:Port":[null,"Emby IP:Port"],"host running Emby (eg. 192.168.1.100:8096)":[null,"Emby хост (например. 192.168.1.100:8096)"],"Emby API Key":[null,"Emby API ключ"],"Networked Media Jukebox":[null,""],"The Networked Media Jukebox, or NMJ, is the official media jukebox interface made available for the Popcorn Hour 200-series.":[null,""],"send update commands to NMJ?":[null,"Отправить команду обновления NMJ?"],"Popcorn IP address":[null,"Popcorn IP-адрес"],"IP address of Popcorn 200-series (eg. 192.168.1.100)":[null,"IP-адрес Popcorn 200-й серии (например. 192.168.1.100)"],"Get settings":[null,"Получить параметры"],"Get Settings":[null,"Получить параметры"],"the Popcorn Hour device must be powered on and NMJ running.":[null,""],"NMJ database":[null,"NMJ база данных"],"automatically filled via the 'Get Settings' button.":[null,"автоматически заполняется через кнопку «Получить настройки»."],"NMJ mount url":[null,"URL-адрес подключения NMJ"],"Networked Media Jukebox v2":[null,""],"The Networked Media Jukebox, or NMJv2, is the official media jukebox interface made available for the Popcorn Hour 300 & 400-series.":[null,""],"send update commands to NMJv2?":[null,"Отправить команду обновления NMJv2?"],"IP address of Popcorn 300/400-series (eg. 192.168.1.100)":[null,"IP-адрес Popcorn 300/400-й серии (например. 192.168.1.100)"],"Database location":[null,"Расположение базы данных"],"Database instance":[null,"Экземпляр базы данных"],"adjust this value if the wrong database is selected.":[null,"Использовать это значение, если база данных неправильно выбрана."],"Find database":[null,"Поиск базы данных"],"Find Database":[null,"Поиск базы данных"],"the Popcorn Hour device must be powered on.":[null,"Popcorn Hour устройство должено быть включено."],"NMJv2 database":[null,"NMJv2 база данных"],"automatically filled via the 'Find Database' buttons.":[null,"автоматически заполняется через кнопку «Найти базу данных»."],"Synology":[null,"Synology"],"The Synology DiskStation NAS.":[null,"The Synology DiskStation NAS."],"Synology Indexer is the daemon running on the Synology NAS to build its media database.":[null,""],"send Synology notifications?":[null,"отправлять уведомления Synology?"],"requires SickRage to be running on your Synology NAS.":[null,""],"Synology Indexer":[null,"Индексатор Synology"],"Synology Notifier is the notification system of Synology DSM":[null,""],"send notifications to the Synology Notifier?":[null,""],"pyTivo":[null,"pyTivo"],"pyTivo is both an HMO and GoBack server. This notifier will load the completed downloads to your Tivo.":[null,""],"send notifications to pyTivo?":[null,"отправлять уведомления в pyTivo?"],"requires the downloaded files to be accessible by pyTivo.":[null,"необходимо что бы загруженные файлы были доступны pyTivo."],"pyTivo IP:Port":[null,"pyTivo IP: Port"],"host running pyTivo (eg. 192.168.1.1:9032)":[null,"сервер с запущеным pyTivo (например. 192.168.1.1:9032)"],"pyTivo share name":[null,"имя общего ресурса pyTivo"],"value used in pyTivo Web Configuration to name the share.":[null,"значение, используемое в pyTivo веб-конфигурации для имени общего ресурса."],"Tivo name":[null,"TiVo имя"],"(Messages & Settings > Account & System Information > System Information > DVR name)":[null,""],"Growl":[null,"Growl"],"A cross-platform unobtrusive global notification system.":[null,""],"send Growl notifications?":[null,"Отправлять уведомления в Growl?"],"Growl IP:Port":[null,"Growl IP:Port"],"host running Growl (eg. 192.168.1.100:23053)":[null,"Сервер Growl (например. 192.168.1.100:23053)"],"may leave blank if SickRage is on the same host.":[null,"можно оставить пустым, если SickRage находится на том же узле."],"otherwise Growl <b>requires</b> a password to be used.":[null,""],"Click below to register and test Growl, this is required for Growl notifications to work.":[null,""],"Register Growl":[null,"Зарегистрировать Growl"],"Prowl":[null,"Prowl"],"A Growl client for iOS.":[null,"Growl клиент для iOS."],"send Prowl notifications?":[null,"Отправлять уведомления в Prowl?"],"Prowl Message Title":[null,"Заголовок сообщения Prowl"],"Global Prowl API key(s)":[null,"Глобальные API ключи для Prowl"],"Prowl API(s) listed here, separated by commas if applicable, will<br> receive notifications for <b>all</b> shows. Your Prowl API key is available at:":[null,""],"(this field may be blank except when testing.)":[null,"(Это поле может быть пустым, за исключением тех случаев, когда проходит тестирование)"],"Show notification list":[null,"Показать список уведомлений"],"-- Select a Show --":[null,"--Выберите Шоу--"],"Configure per-show notifications here by entering Prowl API key(s), separated by commas, '\n 'after selecting a show in the drop-down box. Be sure to activate the 'Save for this show' '\n 'button below after each entry.":[null,""],"Save for this show":[null,"Сохранить для этого шоу"],"Prowl priority":[null,"Приоритет Prowl"],"Very Low":[null,"Очень низкий"],"Moderate":[null,"Модерировать"],"Normal":[null,"Нормальный"],"High":[null,"Выоский"],"Emergency":[null,"Аварийный"],"priority of Prowl messages from SickRage.":[null,"приоритет сообщений Prowl от SickRage."],"Libnotify":[null,"Libnotify"],"The standard desktop notification API for Linux/*nix systems. This notifier will only function if the pynotify module is installed (Ubuntu/Debian package <a href=\"apt:python-notify\">python-notify</a>).":[null,""],"send Libnotify notifications?":[null,"отправлять уведомления Libnotify?"],"Pushover":[null,"Pushover"],"Pushover makes it easy to send real-time notifications to your Android and iOS devices.":[null,"Pushover дает возможность отправки уведомлений в реальном времени для ваших Android и iOS устройств."],"send Pushover notifications?":[null,"отправлять уведомления Pushover ?"],"Pushover key":[null,"Pushover ключ"],"user key of your Pushover account":[null,"используйте ключ вашего Pushover аккаунта"],"Pushover API key":[null,"Pushover API ключ"],"click here":[null,""]," to create a Pushover API key":[null,""],"Pushover devices":[null,"Pushover устройства"],"comma separated list of pushover devices you want to send notifications to":[null,"список устройств Pushover которым вы хотите отправлять уведомления"],"Pushover notification sound":[null,"Pushover звук уведомлений"],"Bike":[null,"Bike"],"Bugle":[null,"Bugle"],"Cash Register":[null,"Cash Register"],"Classical":[null,"Classical"],"Cosmic":[null,"Cosmic"],"Falling":[null,"Falling"],"Gamelan":[null,"Gamelan"],"Incoming":[null,"Incoming"],"Intermission":[null,"Intermission"],"Magic":[null,"Магический"],"Mechanical":[null,"Механические"],"Piano Bar":[null,"Piano Bar"],"Siren":[null,"Siren"],"Space Alarm":[null,"Space Alarm"],"Tug Boat":[null,"Tug Boat"],"Alien Alarm (long)":[null,"Alien Alarm (long)"],"Climb (long)":[null,"Climb (long)"],"Persistent (long)":[null,"Persistent (long)"],"Pushover Echo (long)":[null,"Pushover Echo (long)"],"Up Down (long)":[null,"Up Down (long)"],"None (silent)":[null,"None (без звука)"],"Device specific":[null,"Специфические устройства"],"choose notification sound to use":[null,"Выберите звук уведомления"],"Pushover priority":[null,"Приоритет Pushover"],"Choose priority to use":[null,"Выберите приоритет для использования"],"Boxcar 2":[null,"Boxcar 2"],"Read your messages where and when you want them!":[null,"Читайте свои сообщения где вы хотите и когда хотите!"],"send Boxcar notifications?":[null,"отправлять уведомления Boxcar?"],"Boxcar2 access token":[null,"Boxcar2 access token"],"access token for your Boxcar account.":[null,"access token для учетной записи Boxcar."],"NMA":[null,"NMA"],"Notify My Android":[null,"Уведомление My Android"],"Notify My Android is a Prowl-like Android App and API that offers an easy way to send notifications from your application directly to your Android device.":[null,""],"send NMA notifications?":[null,"отправлять уведомления NMA?"],"NMA API key":[null,"NMA API ключ"],"(multiple keys must be separated by commas, up to a maximum of 5)":[null,"(несколько ключей должны быть разделены запятыми, максимум 5)"],"NMA priority":[null,"NMA приоритет"],"priority of NMA messages from SickRage.":[null,"приоритет сообщения NMA от SickRage."],"Pushalot":[null,"Pushalot"],"Pushalot is a platform for receiving custom push notifications to connected devices running Windows Phone or Windows 8.":[null,"Pushalot — это платформа для получения пользовательских push-уведомлений для подключенных устройств под управлением Windows 8 или Windows Phone."],"send Pushalot notifications ?":[null,"отправлять уведомления Pushalot?"],"Pushalot authorization token":[null,"Токен авторизации Pushalot"],"authorization token of your Pushalot account.":[null,"Токен авторизации вашей учетной записи Pushalot."],"Pushbullet":[null,"Pushbullet"],"Pushbullet is a platform for receiving custom push notifications to connected devices running Android/iOS and desktop browsers such as Chrome, Firefox or Opera.":[null,"Pushbullet — это платформа для получения пользовательских push-уведомлений для подключенных устройств под управлением Android/iOS и настольных браузеров Chrome, Firefox или опера."],"send Pushbullet notifications?":[null,"отправлять уведомления Pushbullet?"],"Pushbullet API key":[null,"Pushbullet API ключ"],"API key of your Pushbullet account":[null,"Ключ API вашей учетной записи Pushbullet"],"Pushbullet devices":[null,"Pushbullet устройства"],"Update device list":[null,"Обновление списка устройств"],"Pushbullet channels":[null,"Pushbullet каналы"],"Free Mobile":[null,"Free Mobile"],"Free Mobile is a famous French cellular network provider.<br> It provides to their customer a free SMS API.":[null,"Free Mobile является известным французским оператором сотовой сети. <br>Он предоставляет своим клиентам бесплатные SMS API."],"send SMS notifications?":[null,"Отправлять SMS-уведомления?"],"send a SMS when a download starts?":[null,"отправить SMS, когда начнется загрузка?"],"send a SMS when a download finishes?":[null,"отправить SMS, когда загрузка завершится?"],"send a SMS when subtitles are downloaded?":[null,"отправить SMS, когда субтитры загрузятся?"],"Free Mobile customer ID":[null,"ID клиента Free Mobile"],"it's your Free Mobile customer ID (8 digits)":[null,"Это ваш Free Mobile ID клиента (8 цифр)"],"Free Mobile API key":[null,"Free Mobile API ключ"],"find your API key in your customer portal.":[null,"найдите ваш ключ API в вашем портале клиента."],"Click below to test your settings.":[null,"Нажмите ниже, чтобы проверить настройки."],"Telegram":[null,"Telegram"],"Telegram is a cloud-based instant messaging service.":[null,"Telegram является облачной службой мгновенного обмена сообщениями."],"send Telegram notifications?":[null,"отправлять уведомления Telegram?"],"send a message when a download starts?":[null,"Отправить сообщение, когда начнется загрузка?"],"send a message when a download finishes?":[null,"Отправить сообщение по завершении загрузки?"],"send a message when subtitles are downloaded?":[null,"Отправить сообщение, когда субтитры загрузятся?"],"User/group ID":[null,"ID пользователя/группы"],"contact @myidbot on Telegram to get an ID":[null,"Свяжитесь с @myidbot в Telegram, чтобы получить ID"],"Bot API token":[null,"БОТ API token"],"contact @BotFather on Telegram to set up one":[null,"Свяжитесь с @BotFather на Telegram настроить(создать) один"],"Join":[null,"Присоединиться"],"Join all of your devices together!":[null,"Соединить все устройства вместе!"],"send Join notifications?":[null,"отправлять уведомления соединения?"],"Device ID":[null,"ID устройства"],"per device specific id":[null,"Для конкретного ID устройства"]," to create a Join API key":[null,""],"Twilio":[null,"Twilio"],"Twilio is a webservice API that allows you to communicate directly with a mobile number. This notifier will send a text directly to your mobile device.":[null,"Twilio это webservice API, который позволяет вам общаться непосредственно с мобильного телефона. Эта программа оповещения будет посылать текст непосредственно на ваше мобильное устройство."],"should SickRage text your mobile device?":[null,""],"Twilio Account SID":[null,"Twilio SID учетной записи"],"account SID of your Twilio account.":[null,"Учетная запись SID учетной записи Twilio."],"Twilio Auth Token":[null,"Twilio Auth Token"],"Twilio Phone SID":[null,""],"phone SID that you would like to send the sms from":[null,""],"Your phone number":[null,"Ваш номер телефона"],"phone number that will receive the sms. Please use the format +1-###-###-####":[null,"номер телефона, который будет получать sms. Пожалуйста, используйте формат +1-###-###-###"],"Twitter":[null,"Твиттер"],"A social networking and microblogging service, enabling its users to send and read other users' messages called tweets.":[null,""],"should SickRage post tweets on Twitter?":[null,"Разрешить SickRage отправлять твиты в Твиттер?"],"you may want to use a secondary account.":[null,""],"send direct message":[null,"Отправить прямое сообщение"],"send a notification via Direct Message, not via status update":[null,""],"send DM to":[null,"отправить DM"],"Twitter account to send Direct Messages to (must follow you)":[null,""],"Step One":[null,"Шаг первый"],"Request Authorization":[null,"Запросить разрешение"],"Click the \"Request Authorization\" button.<br> This will open a new page containing an auth key.<br> <b>note:</b> if nothing happens check your popup blocker.":[null,"Нажмите на кнопку «Запросить разрешение». <br>Это откроет новую страницу, содержащую ключ аутентификации. <br><b>Примечание:</b> если ничего не происходит, проверьте ваш блокировщик всплывающих окон."],"Step Two":[null,"Шаг второй"],"Enter the key Twitter gave you below, and click \"Verify Key\".":[null,""],"Trakt":[null,"Тракт"],"Trakt helps keep a record of what TV shows and movies you are watching. Based on your favorites, Trakt recommends additional shows and movies you'll enjoy!":[null,""],"send Trakt.tv notifications?":[null,"отправлять уведомления Trakt.tv?"],"username of your Trakt account.":[null,"имя пользователя аккаунта тракт."],"Trakt PIN":[null,"Тракт PIN"],"Get Trakt PIN":[null,"Получить тракт PIN"],"PIN code to authorize SickRage to access Trakt on your behalf.":[null,""],"API Timeout":[null,"Тайм-аут API"],"seconds to wait for Trakt API to respond. (Use 0 to wait forever)":[null,"секунд для ожидания ответа от тракт API. (Используйте 0 что бы ждать вечно)"],"Default indexer":[null,"Индексатор по умолчанию"],"Sync libraries":[null,"Синхронизации библиотеки"],"sync your SickRage show library with your trakt show library.":[null,"Синхронизируйте библиотеку шоу SickRage с вашей библиотекой шоу тракт."],"Remove Episodes From Collection":[null,"Удалить эпизоды из коллекции"],"remove an episode from your Trakt Collection if it is not in your SickRage Library.":[null,"удалить эпизод из вашей коллекции тракт, если его нет в библиотеке SickRage."],"Sync watchlist":[null,"Синхронизировать список просмотра"],"sync your SickRage show watchlist with your trakt show watchlist (either Show and Episode).":[null,""],"episode will be added on watch list when wanted or snatched and will be removed when downloaded ":[null,""],"Watchlist add method":[null,"Метод добавления списка просмотра"],"Skip All":[null,"Пропустить все"],"Download Pilot Only":[null,"Скачать пилот только"],"Get whole show":[null,"Получить все шоу"],"method in which to download episodes for new shows.":[null,""],"Remove episode":[null,"Удалить эпизод"],"remove an episode from your watchlist after it is downloaded.":[null,""],"Remove series":[null,"Удалить вериал"],"remove the whole series from your watchlist after any download.":[null,""],"Remove watched show":[null,"Удалить просмотренные шоу"],"remove the show from sickrage if it's ended and completely watched":[null,""],"Start paused":[null,"Запуск приостановленной"],"shows grabbed from your trakt watchlist start paused.":[null,""],"Trakt blackList name":[null,"Имя черного списока Тракт"],"name (slug) of list on Trakt for blacklisting show on 'Add Trending Show' & 'Add Recommended Shows' pages":[null,""],"Email":[null,"e-mail"],"Allows configuration of email notifications on a per show basis.":[null,"Позволяет настраивать уведомления по электронной почте для каждого шоу."],"send email notifications?":[null,"отправлять уведомления по электронной почте?"],"SMTP host":[null,"Сервер SMTP"],"hostname of your SMTP email server.":[null,"имя сервера электронной почты SMTP."],"SMTP port":[null,"Порт SMTP"],"port number used to connect to your SMTP host.":[null,"номер порта, используемый для подключения к серверу SMTP."],"SMTP from":[null,"SMTP от"],"sender email address, some hosts require a real address.":[null,"адрес электронной почты отправителя, некоторые сервера требуют реальный адрес."],"Use TLS":[null,"Использование TLS"],"check to use TLS encryption.":[null,"использовать TLS-шифрование?"],"SMTP user":[null,"Пользователь SMTP"],"(optional) your SMTP server username.":[null,"(необязательно) Ваше имя пользователя SMTP сервера."],"SMTP password":[null,"Пароль SMTP"],"(optional) your SMTP server password.":[null,"(необязательно) пароль сервера SMTP."],"Global email list":[null,"Список глобальных адресов электронной почты"],"email addresses listed here, separated by commas if applicable, will<br> receive notifications for <b>all</b> shows.":[null,"адреса электронной почты, перечисленные здесь, разделенных запятыми, если это применимо, будет <br>получать уведомления для <b>всех</b> шоу."],"(This field may be blank except when testing.)":[null,"(Это поле может быть пустым, за исключением тех случаев, когда проходит тестирование)."],"Email Subject":[null,"Тема сообщения"],"use a custom subject for some privacy protection?":[null,"использовать свою тему для защиты конфиденциальности?"],"(leave blank for the default SickRage subject)":[null,"(оставьте пустым для темы по умолчанию SickRage)"],"configure per-show notifications here by entering email address(es), separated by commas,":[null,"Настройте уведомления-шоу здесь, введя адреса электронной почты, разделенных запятыми,"],"after selecting a show in the drop-down box. Be sure to activate the 'Save for this show'":[null,"После выбора шоу в раскрывающемся списке. Не забудьте активировать «Сохранить для этого шоу»"],"button below after each entry.":[null,"кнопку ниже после каждой записи."],"Slack":[null,"Slack"],"Slack brings all your communication together in one place. It's real-time messaging, archiving and search for modern teams.":[null,""],"should SickRage post messages on Slack?":[null,"следует SickRage отправлять сообщения на Slack?"],"Slack Incoming Webhook":[null,""],"Discord":[null,"Discord"],"All-in-one voice and text chat for gamers that's free, secure, and works on both your desktop and phone.":[null,"Все-в-одином голос и текст, бесплатный чат для геймеров, безопасный и работает как на компьютере так и на телефоне."],"Should SickRage post messages on Discord?":[null,"Следует SickRage отправлять сообщения на Discord?"],"Discord Incoming Webhook":[null,""],"Create webhook under channel settings.":[null,"Создание webhook под установками канала."],"Discord Bot Name":[null,""],"Blank will use webhook default Name.":[null,""],"Discord Avatar URL":[null,"URL-адрес аватара Discord"],"Blank will use webhook default Avatar.":[null,""],"Discord TTS":[null,""],"Send notifications using text-to-speech":[null,"Отправка уведомлений с использованием text-to-speech"],"Post-Processing":[null,"Пост-обработка"],"Episode Naming":[null,"Именование эпизодов"],"Metadata":[null,"Метаданные"],"Settings that dictate how SickRage should process completed downloads.":[null,""],"enable the automatic post processor to scan and process any files in your Post Processing Dir":[null,""],"do not use if you use an external Post Processing script":[null,""],"Post Processing Dir":[null,"Директория Пост-обработки"],"the folder where your download client puts the completed TV downloads.":[null,""],"please use seperate downloading and completed folders in your download client if possible.":[null,""],"Processing Method":[null,"Метод обработки"],"what method should be used to put files into the library?":[null,""],"if you keep seeding torrents after they finish, please avoid the 'move' processing method to prevent errors.":[null,""],"Auto Post-Processing Frequency":[null,"частота Автоматической постобработки"],"time in minutes to check for new files to auto post-process (min 10)":[null,"время в минутах для проверки новых файлов для автоматического пост процесса (мин. 10)"],"Postpone post processing":[null,"Перенос постобработки"],"wait to process a folder if sync files are present.":[null,""],"Sync File Extensions":[null,"Синхронизация расширений файлов"],"comma seperated list of extensions or filename globs SickRage ignores when Post Processing":[null,""],"Rename Episodes":[null,"Переименование эпизодов"],"rename episode using the Episode Naming settings?":[null,""],"Create missing show directories":[null,""],"create missing show directories when they get deleted":[null,""],"Add shows without directory":[null,"Добавление шоу без каталога"],"add shows without creating a directory (not recommended)":[null,""],"Move associated files":[null,"Переместить связанные файлы"],"move associated (srt/srr/sfv/etc) files while post processing?":[null,"переместить связанные файлы (srt/srr/sfv/etc) во время пост-обработки?"],"Rename .nfo file":[null,"Переименовать файл .nfo"],"rename the original .nfo file to .nfo-orig to avoid conflicts?":[null,"переименовывать исходный файл .nfo в .nfo-orig что бы избежать конфликтов?"],"Associated file extensions":[null,""],"comma separated list of associated file extensions SickRage should keep while post processing.":[null,""],"leaving it empty means no associated files will be post processed":[null,""],"Delete non associated files":[null,"Удаление не связанных файлов"],"delete non associated files while post processing?":[null,"удаление не связанных файлов во время пост-обработки?"],"Change File Date":[null,"Дата изменения файла"],"set last modified filedate to the date that the episode aired?":[null,"установить дату изменения файла на дату релиза эпизода?"],"some systems may ignore this feature.":[null,"некоторые системы могут игнорировать эту возможность."],"Timezone for File Date":[null,"Часовой пояс для даты файла"],"local":[null,"местный"],"network":[null,"сеть"],"what timezone should be used to change File Date?":[null,"какой часовой пояс должен использоваться для даты изменения файла?"],"Unpack":[null,"Распаковать"],"What to do with archived releases found in your <i>TV Download Dir</i>?":[null,"Что делать с архивными релизами в вашей папке <i>скачаных щоу</i>?"],"Ignore (do not process contents)":[null,"Игнорировать (не обрабатывать содержимое)"],"Unpack (process contents)":[null,"Распаковать (обрабатывать содержимое)"],"Treat as video (process archive as-is)":[null,"Рассматривать как видео (обрабатывать архив как есть)"],"'Unpack' only works with RAR archives":[null,"«Распаковать» работает только с RAR архивами"],"Windows":[null,"Windows"],"WinRar is required on windows":[null,"Требуется установленный WinRar"],"Unpack Directory":[null,"Распаковать в"],"Choose a path to unpack files, leave blank to unpack in download dir":[null,"Выберите путь для распаковки файлов, оставьте пустым, чтобы распаковать в папку download"],"Unrar Location":[null,"Unrar Location"],"add the path to unrar if it is not in the system path":[null,""],"Alternate Unrar Tool":[null,"Альтернативный инструмент Unrar"],"add the path to an alternate unrar tool if it is not in the system path":[null,""],"Delete RAR contents":[null,"Удалить содержимое RAR"],"delete content of RAR files, even if Process Method not set to move?":[null,"удалить содержимое RAR файлов, даже если метод обработки не задано как \"Перемещение\"?"],"only working with RAR archive":[null,"работает только с RAR архивами"],"Don't delete empty folders":[null,"Не удалять пустые папки"],"leave empty folders when Post Processing?":[null,"Оставьте пустые папки, после пост обработки?"],"can be overridden using manual Post Processing":[null,"может быть переопределен с помощью ручного пост обработки"],"Follow symbolic-links":[null,""],"follow down symbolic links in download directory?":[null,""],"<b>EXPERTS ONLY.</b><br>Enable only if you know what <b>circular symbolic links</b> are,<br>and can <b>verify that you have none</b>.":[null,""],"Use icacls":[null,"Использование icacls"],"Windows only":[null,"Только для Windows"],"sets video permissions after using the move method in post processing":[null,""],"Extra Scripts":[null,"Дополнительные скрипты"],"see":[null,"см."],"for script arguments description and usage.":[null,""],"How SickRage will name and sort your episodes.":[null,"Как SickRage должен именовать и сортировать эпизоды."],"Name Pattern":[null,"Шаблон имени"],"Toggle Naming Legend":[null,""],"don't forget to add quality pattern. Otherwise after post-processing the episode will have UNKNOWN quality":[null,"не забудьте добавить шаблон для качества видео. В противном случае после пост-обработки эпизоду будет присвоено значение качества \"UNKNOWN\""],"Meaning":[null,"Означает"],"Pattern":[null,"Шаблон"],"Result":[null,"Результат"],"Use lower case if you want lower case names (eg. %sn, %e.n, %q_n etc)":[null,"Используйте нижний регистр, если требуется имена в нижнем регистре (например. %sn, %e.n, %q_n)"],"Show Name":[null,"Название шоу"],"Show.Name":[null,"Название.шоу"],"Show_Name":[null,"Название_шоу"],"Season Number":[null,"Номер сезона"],"XEM Season Number":[null,"Номер сезона XEM"],"Episode Number":[null,"Номер эпизода"],"XEM Episode Number":[null,"Номер эпизода XEM"],"Episode Name":[null,"Название эпизода"],"Episode.Name":[null,"Название.эпизода"],"Episode_Name":[null,"Название_эпизода"],"Air Date":[null,"Дата выхода"],"Post-Processing Date":[null,"Дата пост обработки"],"Quality":[null,"Качество"],"Scene Quality":[null,"Качество сцены"],"Release Name":[null,"Название релиза"],"SickRage' is used in place of RLSGROUP if it could not be properly detected":[null,""],"Release Group":[null,"Релиз группа"],"If episode is proper/repack add 'proper' to name.":[null,"Если эпизод proper/repack добавить «proper» в имя."],"Release Type":[null,"Тип релиза"],"Multi-Episode Style":[null,"Мульти эпизод стиль"],"Single-EP Sample":[null,"Пример одного эпизода"],"Multi-EP sample":[null,"Пример мульти эпизода"],"Strip Show Year":[null,""],"remove the TV show's year when renaming the file?":[null,""],"only applies to shows that have year inside parentheses":[null,""],"Custom Air-By-Date":[null,""],"name air-by-date shows differently than regular shows?":[null,""],"Toggle ABD Naming Legend":[null,""],"Regular Air Date":[null,""],"Year":[null,"Год"],"Month":[null,"Месяц"],"Day":[null,"День"],"Multi-EP style is ignored":[null,"Multi-EP стиль игнорируется"],"Custom Sports":[null,""],"name sports shows differently than regular shows?":[null,""],"Toggle Sports Naming Legend":[null,""],"Sports Air Date":[null,""],"Custom Anime":[null,""],"name anime shows differently than regular shows?":[null,""],"Toggle Anime Naming Legend":[null,""],">XEM Season Number":[null,"> Номер сезона XEM"],"Single-EP Anime Sample":[null,"Single-EP аниме образец"],"Multi-EP Anime sample":[null,"Multi-EP аниме образец"],"Add Absolute Number":[null,"Добавить абсолютную нумерацию"],"add the absolute number to the season/episode format?":[null,""],"only applies to anime. (eg. S15E45 - 310 vs S15E45)":[null,""],"Only Absolute Number":[null,""],"replace season/episode format with absolute number":[null,""],"only applies to anime.":[null,""],"No Absolute Number":[null,""],"don't include the absolute number":[null,""],"The data associated to the data. These are files associated to a TV show in the form of images and text that, when supported, will enhance the viewing experience.":[null,""],"Metadata Type":[null,"Тип метаданных"],"toggle metadata options that you wish to be created":[null,""],"multiple targets may be used":[null,""],"Select Metadata":[null,"Выберите метаданные"],"Provider Priorities":[null,"Приоритеты провайдеров"],"Provider Options":[null,"Параметры провайдера"],"Configure Custom Newznab Providers":[null,""],"Configure Custom Torrent Providers":[null,""],"Check off and drag the providers into the order you want them to be used.":[null,""],"At least one provider is required but two are recommended.":[null,""],"Torrent providers can be toggled in ":[null,""],"Provider does not support backlog searches at this time.":[null,"Провайдер не поддерживает поиск пропущенных на данный момент."],"Provider is <b>NOT WORKING</b>.":[null,"Провайдер — <b>не работает</b>."],"Configure individual provider settings here.":[null,"Настройка параметров провайдера здесь."],"Check with provider's website on how to obtain an API key if needed.":[null,""],"Configure provider":[null,"Настройка провайдера"],"no providers available to configure.":[null,"нет доступных провайдеров для настройки."],"URL":[null,"URL-АДРЕС"],"Enable daily searches":[null,"Включить ежедневный поиск"],"enable provider to perform daily searches.":[null,"Включить ежедневный поиск у провайдера."],"Enable backlog searches":[null,"Включить поиск пропущенных"],"enable provider to perform backlog searches.":[null,"Включить возможность провайдеру выполнять поиск пропущенных."],"Season search mode":[null,"Режим поиска сезонов"],"when searching for complete seasons you can choose to have it look for season packs only, or choose to have it build a complete season from just single episodes.":[null,""],"season packs only.":[null,"сезон целиком."],"episodes only.":[null,"только эпизоды."],"Enable fallback":[null,""],"when searching for a complete season depending on search mode you may return no results, this helps by restarting the search using the opposite search mode.":[null,""],"Custom URL":[null,"Пользовательский URL"],"the URL should include the protocol (and port if applicable). Examples: http://192.168.1.4/ or http://localhost:3000/":[null,""],"Api key":[null,"Ключ API"],"Digest":[null,""],"Hash":[null,"Хэш"],"Passkey":[null,""],"Cookies":[null,"Куки"],"example: uid=1234;pass=567845439634987<br>note: uid and pass are not your username/password.<br>use DevTools or Firebug to get these values after logging in on your browser.":[null,"Пример: uid = 1234;pass=567845439634987<br>Примечание: uid и pass не являются именем пользователя и паролем. <br> Используйте DevTools или Firebug, чтобы получить эти значения после входа в систему на вашем браузере."],"Pin":[null,""],"Seed ratio":[null,"Коэффициент раздачи (Seed ratio)"],"stop transfer when ratio is reached<br>(-1 SickRage default to seed forever, or leave blank for downloader default)":[null,"остановите передачу, когда коэффициент достигнут <br>(-1 SickRage по умолчанию раздает бесконечно, или оставьте поле пустым для загрузчика по умолчанию)"],"Minimum seeders":[null,"Минимум раздающих"],"Minimum leechers":[null,"Минимум качающих"],"Confirmed download":[null,"Подтвержденная загрузка"],"only download torrents from trusted or verified uploaders ?":[null,"Качать торренты только доверенных или проверенных раздающих?"],"Ranked torrents":[null,""],"only download ranked torrents (trusted releases)":[null,""],"English torrents":[null,"Английские торренты"],"only download english torrents, or torrents containing english subtitles":[null,"Качать только английские торренты, или торренты, содержащие английские субтитры"],"For Spanish torrents":[null,"Для испанских торрентов"],"ONLY search on this provider if show info is defined as \"Spanish\" (avoid provider's use for VOS shows)":[null,""],"Sorting results by":[null,"Сортировка результатов по"],"Freeleech":[null,"Freeleech"],"only download <b>\"FreeLeech\"</b> torrents.":[null,"Качать только Торренты <b>«FreeLeech»</b>."],"Category":[null,"Категория"],"select torrent with Italian subtitle":[null,"Выбрать торренты с итальянскими субтитрами"],"Configure Custom<br>Newznab Providers":[null,"Настройка пользовательских поставщиков Newznab <br>"],"Add and setup or remove custom Newznab providers.":[null,"Добавление и настройка или удаление пользовательских поставщиков Newznab."],"Select provider":[null,"Выбор провайдера"],"-- add new provider --":[null,"--добавить нового провайдера--"],"Provider name":[null,"Имя провайдера"],"Site URL":[null,"URL-адрес сайта"],"Newznab search categories":[null,"Newznab категории поиска"],"select your Newznab categories on the left, and click the \"update categories\" button to use them for searching.) <b>don't forget to to save the form!":[null,""],"Update Categories":[null,"Обновление категорий"],"Add":[null,"Добавить"],"Delete":[null,"Удалить"],"Add and setup or remove custom RSS providers.":[null,"Добавление и настройка или удаление пользовательских провайдеров RSS."],"RSS URL":[null,"URL-АДРЕС RSS"],"Search element":[null,"Поиск элемента"],"eg: title":[null,"Например: название"],"Episode Search":[null,"Поиск эпизода"],"NZB Search":[null,"Поиск NZB"],"Torrent Search":[null,"Торрент поиск"],"How to manage searching with":[null,"Как управлять Поиском с"],"Randomize Providers":[null,"Случайный выбор провайдера"],"randomize the provider search order instead of going in order of placement":[null,"случайный порядок поиска (не по списку провадеров)"],"Download propers":[null,"Скачать propers"],"replace original download with \"Proper\" or \"Repack\" if nuked":[null,"Заменить оригинальную загрузку на «Proper» или «Repack»"],"Check propers every":[null,"Проверять propers каждые"],"24 hours":[null,"24 часа"],"4 hours":[null,"4 часа"],"90 mins":[null,"90 минут"],"45 mins":[null,"45 мин"],"15 mins":[null,"15 мин."],"Backlog search day(s)":[null,"Поиск пропущенных дни"],"number of day(s) that the \"Forced Backlog Search\" will cover (e.g. 7 Days)":[null,"Количество дней, для «Принудительный поиск пропущенных» будет охватывать (например 7 дней)"],"Backlog search frequency":[null,"Частота поиска пропущенных"],"time in minutes between searches (min.":[null,"время в минутах между запросами на поиск (мин.)"],"Daily search frequency":[null,"Частота ежедневного поиска"],"Usenet retention":[null,"Usenet удержания"],"age limit in days for usenet articles to be used (e.g. 500)":[null,"возрастной предел в днях для usenet статей, которые будут использоваться (например, 500)"],"Ignore words":[null,"Пропускать слова"],"results with one or more word from this list will be ignored<br>separate words with a comma, e.g. \"word1,word2,word3\"":[null,""],"Require words":[null,"Требующиеся слова"],"results with no word from this list will be ignored<br>separate words with a comma, e.g. \"word1,word2,word3\"":[null,""],"Trackers list":[null,"Список трекеров"],"trackers that will be added to magnets without trackers<br>separate trackers with a comma, e.g. \"tracker1,tracker2,tracker3\"":[null,""],"Ignore language names in subbed results":[null,""],"ignore subbed releases based on language names <br>\n Example: \"dk\" will ignore words: dksub, dksubs, dksubbed, dksubed <br>\n separate languages with a comma, e.g. \"lang1,lang2,lang3":[null,""],"Allow high priority":[null,"Разрешить высокий приоритет"],"set downloads of recently aired episodes to high priority":[null,""],"Use Failed Downloads":[null,""],"use Failed Download Handling?":[null,""],"will only work with snatched/downloaded episodes after enabling this":[null,"будет работать только с перехвачеными/загруженными эпизодами после включения этого"],"Delete Failed":[null,"Не удалось удалить"],"delete files left over from a failed download?":[null,"удалять файлы, оставшиеся от неудавшихся загрузок?"],"this only works if Use Failed Downloads is enabled.":[null,""],"How to handle NZB search results.":[null,"Как обрабатывать результаты поиска NZB."],"Search NZBs":[null,"Поиск NZBs"],"enable NZB search providers":[null,"Включение поставщиков поиска NZB"],"Send .nzb files to":[null,"Отправлять файлы .nzb"],"SABnzbd server URL":[null,"URL-адрес сервера SABnzbd"],"URL to your SABnzbd server (e.g. http://localhost:8080/)":[null,"URL-адрес вашего сервера SABnzbd (например, http://localhost: 8080/)"],"SABnzbd username":[null,"SABnzbd имя пользователя"],"(blank for none)":[null,"(оставить пустое если не используется )"],"SABnzbd password":[null,"SABnzbd пароль"],"SABnzbd API key":[null,"SABnzbd API ключ"],"locate at... SABnzbd Config -> General -> API Key":[null,"Находится в... SABnzbd Config-> Общие-> ключ API"],"Use SABnzbd category":[null,"Использовать SABnzbd Категории"],"add downloads to this category (e.g. TV)":[null,"Добавить загрузку в эту категорию (например, TV)"],"Use SABnzbd category (backlog episodes)":[null,"Использование SABnzbd категории (пропущенных эпизодов)"],"add downloads of old episodes to this category (e.g. TV)":[null,""],"Use SABnzbd category for anime":[null,"Использование SABnzbd Категорию аниме"],"add anime downloads to this category (e.g. anime)":[null,"Добавить аниме загрузки в эту категорию (например, аниме)"],"Use SABnzbd category for anime (backlog episodes)":[null,"Использование SABnzbd Категории для аниме (пропущенных эпизодов)"],"add anime downloads of old episodes to this category (e.g. anime)":[null,""],"Use forced priority":[null,"Использовать принудительный приоритет"],"enable to change priority from HIGH to FORCED":[null,"позволяет изменить приоритет с высокого на принудительный"],"Black hole folder location":[null,"Расположение папки черная дыра"],"<b>.nzb</b> files are stored at this location for external software to find and use":[null,"<b>.nzb</b> файлы хранятся на этом месте для внешнего программного обеспечения для поиска и использования"],"Connect using HTTPS":[null,"Подключиться используя HTTPS"],"enable Secure control in NZBGet and set the correct Secure Port here":[null,""],"NZBget host:port":[null,"NZBget host:port"],"(e.g. localhost:6789)":[null,"(например, localhost:6789)"],"NZBget RPC host name and port number (not NZBgetweb!)":[null,"NZBget RPC имя сервера и номер порта (не NZBgetweb!)"],"NZBget username":[null,"NZBget имя пользователя"],"locate in nzbget.conf (default:nzbget)":[null,"Находится в nzbget.conf (по умолчанию: nzbget)"],"NZBget password":[null,"NZBget пароль"],"locate in nzbget.conf (default:tegbzn6789)":[null,"Находится в nzbget.conf (по умолчанию: tegbzn6789)"],"Use NZBget category":[null,"Использовать категории NZBget"],"send downloads marked this category (e.g. TV)":[null,""],"Use NZBget category (backlog episodes)":[null,"Использование NZBget категорий (пропущенных эпизодов)"],"send downloads of old episodes marked this category (e.g. TV)":[null,""],"Use NZBget category for anime":[null,"Использовать категории аниме NZBget"],"send anime downloads marked this category (e.g. anime)":[null,""],"Use NZBget category for anime (backlog episodes)":[null,"Использование NZBget категории аниме (пропущенных эпизодов)"],"send anime downloads of old episodes marked this category (e.g. anime)":[null,""],"NZBget priority":[null,"NZBget приоритет"],"Very low":[null,"Очень низкий"],"Low":[null,"Низкий"],"Very high":[null,"Очень высокий"],"Force":[null,"Принудительно"],"priority for daily snatches (no backlog)":[null,"приоритет для ежедневных snatches (без поиска пропущенных)"],"Torrent host:port":[null,"Торрент сервер:порт"],"URL to your Synology DSM (e.g. http://localhost:5000/)":[null,"URL-адрес для вашего Synology DSM (например http://localhost:5000/)"],"Client username":[null,"Имя пользователя"],"Client password":[null,"Пароль"],"Downloaded files location":[null,"Расположение загруженных файлов"],"where Synology Download Station will save downloaded files (blank for client default)":[null,""],"the destination has to be a shared folder for Synology DS":[null,""],"Click below to test":[null,"Нажмите ниже, чтобы проверить"],"How to handle Torrent search results.":[null,"Как обрабатывать результаты поиска торрентов."],"Search torrents":[null,"Поиск Торрентов"],"enable torrent search providers":[null,"Включение провайдеров поиска торрентов"],"Send .torrent files to":[null,"Отправлять файлы .torrent в"],"<b>.torrent</b> files are stored at this location for external software to find and use":[null,""],"URL to your torrent client (e.g. http://localhost:8000/)":[null,"URL-адрес для вашего торрент-клиента (например, http://localhost: 8000/)"],"Torrent RPC URL":[null,"URL-адрес RPC торрент"],"the path without leading and trailing slashes (e.g. transmission)":[null,""],"Http Authentication":[null,"Проверка подлинности HTTP"],"Verify certificate":[null,"Проверка сертификата"],"disable if you get \"Deluge: Authentication Error\" in your log":[null,""],"verify SSL certificates for HTTPS requests":[null,"Проверка SSL-сертификатов для запросов HTTPS"],"Add label to torrent":[null,"Добавить метку в торрент"],"(blank spaces are not allowed)":[null,"(пробелы не допускаются)"],"label plugin must be enabled in Deluge clients":[null,""],"for QBitTorrent 3.3.1 and up":[null,"для QBitTorrent 3.3.1 и выше"],"Add label to torrent for anime":[null,"Добавить подпись к торрент аниме"],"for QBitTorrent 3.3.1 and up ":[null,"для QBitTorrent 3.3.1 и выше "],"where <span id=\"torrent_client\">the torrent client</span> will save downloaded files (blank for client default)":[null,""],"the destination has to be a shared folder for Synology DS</span>":[null,""],"Minimum seeding time":[null,""],"time in hours":[null,"время в часах"],"(default:'0' passes blank to client and '-1' passes nothing)":[null,"(по умолчанию: '0' передает пустое значение клиенту и '-1' ничего не передает)"],"Start torrent paused":[null,""],"add .torrent to client but do <b style=\"font-weight:900\">not</b> start downloading":[null,"Добавить .torrent в клиент но<b style=\"font-weight:900\"> не начинать загрузку</b> "],"Allow high bandwidth":[null,""],"use high bandwidth allocation if priority is high":[null,""],"Test Connection":[null,"Проверка соединения"],"Windows Shares":[null,""],"Defines your existing windows shares so that we can add them to the browse dialog":[null,""],"Share #{number}":[null,""],"Share label":[null,""],"Hostname or IP":[null,""],"Share path":[null,""],"Subtitles Search":[null,"Поиск субтитров"],"Subtitles Plugin":[null,"Плагин субтитры"],"Plugin Settings":[null,"Настройки плагина"],"Settings that dictate how SickRage handles subtitles search results.":[null,""],"Search Subtitles":[null,"Поиск субтитров"],"Subtitle Languages":[null,"Языки субтитров"],"Subtitle Directory":[null,"Каталог субтитров"],"the directory where SickRage should store your <i>Subtitles</i> files.":[null,"Каталог, где SickRage следует хранить файлы <i>субтитров</i>."],"leave empty if you want store subtitle in episode path.":[null,""],"Subtitle Find Frequency":[null,"Частота поиска субтитров"],"time in hours between scans (default: 1)":[null,"время в часах между сканированием (по умолчанию: 1)"],"Include Specials":[null,"Включать специальные выпуски"],"include the show's specials when searching for subtitles?":[null,"включать специальные выпуски когда идет поиск субтитров?"],"Perfect matches":[null,"Идеально подходит"],"only download subtitles that match: release group, video codec, audio codec and resolution":[null,"загружать субтитры соответствующие: релиз группе, видео кодеку, аудио кодеку и расширению"],"if disabled you may get out of sync subtitles":[null,"если отключено вы можете получить не синхронизированные субтитры"],"Subtitles History":[null,"История субтитров"],"log downloaded Subtitle on History page?":[null,"вести журнал загрузки субтитров на странице истории?"],"Subtitles Multi-Language":[null,"мультиязычные субтитры"],"append language codes to subtitle filenames?":[null,"добавить коды языков в названия файлов субтитров?"],"this option is required if you use multiple subtitle languages":[null,"Этот параметр является обязательным, если вы пользуетесь несколькими языками субтитров"],"Delete unwanted subtitles":[null,"Удалить ненужные субтитры"],"enable to delete unwanted subtitle languages bundled with release":[null,"включить удаление нежелательных языков субтитров вместе с релизом"],"Embedded Subtitles":[null,"Встроенные субтитры"],"ignore subtitles embedded inside video file?":[null,"игнорировать субтитры внедренные в файл видео?"],"this will ignore <u>all</u> embedded subtitles for every video file!":[null,""],"Hearing Impaired Subtitles":[null,""],"download hearing impaired style subtitles?":[null,""],"See":[null,""],"for a script arguments description.":[null,""],"Additional scripts separated by <b>|</b>.":[null,""],"Scripts are called after each episode has searched and downloaded subtitles.":[null,""],"For any scripted languages, include the interpreter executable before the script. See the following example":[null,""],"For Windows:":[null,"Для Windows:"],"For Linux / OS X:":[null,"Для Linux / OS X:"],"Subtitle Providers":[null,"Провайдеры субтитров"],"Check off and drag the plugins into the order you want them to be used.":[null,""],"At least one plugin is required.":[null,""]," Web-scraping plugin":[null,""],"Provider Settings":[null,"Параметры провайдера"],"Set user and password for each provider":[null,"Задайте пользователя и пароль для каждого провайдера"],"User Name":[null,"Имя пользователя"],"Change Show":[null,"Изменить шоу"],"Prev Show":[null,"Предыдущее шоу"],"Next Show":[null,"Следующее шоу"],"Jump to Season":[null,"Перейти к сезону"],"Specials":[null,"Специальный выпуск"],"Poster for":[null,"Плакат для"],"Stars":[null,"Звезды"],"minutes":[null,"минуты"],"View other popular {genre} shows on trakt.tv.":[null,"Посмотреть другие популярные {genre} шоу на trakt.tv."],"View other popular {imdbgenre} shows on IMDB.":[null,"Посмотреть другие популярные {imdbgenre} шоу на IMDB."],"Allowed":[null,"Допускается"],"Preferred":[null,"Предпочтение"],"Originally Airs":[null,"Оригинальные релизы"],"Show Status":[null,"Статус шоу"],"Default EP Status":[null,"Статус эпизода по умолчанию"],"Location":[null,"Расположение"],"Missing":[null,"Отсутствует"],"Scene Name":[null,"Имя сцены"],"Required Words":[null,"Необходимые слова"],"Ignored Words":[null,"Игнорируемые слова"],"Size":[null,"Размер"],"Info Language":[null,"Информация о языке"],"Subtitles SR Metadata":[null,"Метаданные SR по субтитрам"],"Season Folders":[null,"Папки сезонов"],"Paused":[null,"Приостановлено"],"Air-by-Date":[null,"Релиз по дате"],"Sports":[null,"Спорт"],"DVD Order":[null,"DVD порядок"],"Scene Numbering":[null,"Нумерация сцены"],"Select Filtered Episodes":[null,"Выбор отфильтрованных эпизодов"],"Clear All":[null,"Очистить все"],"Change selected episodes to":[null,""],"Select Columns":[null,"Выбрать столбцы"],"NFO":[null,"NFO"],"TBN":[null,"TBN"],"Episode":[null,"Эпизод"],"Absolute":[null,"Абсолютный"],"Scene":[null,"Сцена"],"Scene Absolute":[null,"Абсолютная сцена"],"File Name":[null,"Имя файла"],"Airdate":[null,"Эфир"],"Download":[null,"Скачать"],"Change the value here if scene numbering differs from the indexer episode numbering":[null,"Измените значение здесь если нумерация эпизода отличается от нумерации эпизодов индексатора"],"Change the value here if scene absolute numbering differs from the indexer absolute numbering":[null,"Измените значение здесь если абсолютная нумерация эпизодов отличается от абсолютной нумерации индексатора"],"Manual Search":[null,"Ручной поиск"],"Do you want to mark this episode as failed?":[null,"Вы хотите пометить этот эпизод как сбойный?"],"The episode release name will be added to the failed history, preventing it to be downloaded again.":[null,""],"Do you want to include the current episode quality in the search?":[null,""],"Choosing No will ignore any releases with the same episode quality as the one currently downloaded/snatched.":[null,""],"Download subtitle":[null,"Скачать субтитры"],"Do you want to re-download the subtitle for this language?":[null,""],"It will overwrite your current subtitle":[null,"Это приведет к перезаписи текущих субтитров"],"Format":[null,"Формат"],"Advanced":[null,"Расширенный"],"Main Settings":[null,"Основные параметры"],"Show Location":[null,"Показать местоположение"],"Preferred Quality":[null,"Предпочитаемое качество"],"Default Episode Status":[null,"Статус эпизода по умолчанию"],"this will set the status for future episodes.":[null,"Это позволит установить статус для будущих эпизодов."],"this only applies to episode filenames and the contents of metadata files.":[null,"Это относится только к имени файла эпизода и содержимому файлов метаданных."],"search for subtitles":[null,"поиск для субтитров"],"Use SR Metdata":[null,"Использование SR Metdata"],"use SickRage metadata when searching for subtitle, this will override the autodiscovered metadata":[null,"использовать метаданные SickRage при поиске субтитров, это переопределит метаданные автообнаружения"],"pause this show (SickRage will not download episodes)":[null,"приостановить это шоу (SickRage не будет загружать эпизоды)"],"Format Settings":[null,"Параметры форматирования"],"Air by date":[null,"Релиз по дате"],"check if the show is released as Show.03.02.2010 rather than Show.S02E03.":[null,""],"in case of an air date conflict between regular and special episodes, the later will be ignored.":[null,""],"check if the show is Anime and episodes are released as Show.265 rather than Show.S02E03":[null,"Проверить, если шоу Аниме и серии выпускаются как Show.265 вместо Show.S02E03"],"check if the show is a sporting or MMA event released as Show.03.02.2010 rather than Show.S02E03":[null,"Проверить, если спортивные шоу или ММА события выпущенны как Show.03.02.2010 вместо Show.S02E03"],"Season folders":[null,"Папки сезонов"],"group episodes by season folder (uncheck to store in a single folder)":[null,"группирует эпизоды по папкам сезона (снимите флажок, чтобы сохранить в одной папке)"],"search by scene numbering (uncheck to search by indexer numbering)":[null,"Поиск по альтернативной нумерации эпизодов (снимите флажок, для поиска по нумерации индексатора)"],"use the DVD order instead of the air order":[null,"Используйте порядок DVD вместо порядка релиза"],"a \"Force Full Update\" is necessary, and if you have existing episodes you need to sort them manually.":[null,""],"comma-separated <i>e.g. \"word1,word2,word3</i>\"":[null,"разделенные запятыми <i>например «слово1,слово2,слово3»</i>"],"search results with one or more words from this list will be ignored.":[null,"результаты поиска с одним или несколькими словами из этого списка будут игнорироваться."],"e.g. \"word1,word2,word3\"":[null,"например «слово1,слово2,слово3»"],"search results with no words from this list will be ignored.":[null,"результаты поиска без слов из этого списка будут игнорироваться."],"Scene Exception":[null,"Исключения эпизодов"],"this will affect episode search on NZB and torrent providers.":[null,"это будет влиять на поиск эпизодов на NZB и торрент провайдерах."],"this list appends to the original show name.":[null,""],"WARNING logs":[null,"Журналы предупреждений"],"ERROR logs":[null,"Журналы ошибок"],"There are no events to display.":[null,"Нет событий для отображения."],"Limit":[null,"Лимит"],"Layout":[null,"Макет"],"HistoryLayout":[null,"Макет истории"],"Compact":[null,"Компактный"],"Detailed":[null,"Подробный"],"Time":[null,"Время"],"Provider":[null,"Провайдер"],"Missing Provider":[null,"Отсутствующий провайдер"],"missing provider":[null,"отсутствующий провайдер"],"Directory":[null,"Каталог"],"Show Name (tvshow.nfo)":[null,"Название шоу (tvshow.nfo)"],"Indexer":[null,"Индексатор"],"Enter the folder containing the episode":[null,"Введите название папки, содержащей эпизод"],"Process Method to be used":[null,""],"Copy":[null,"Копия"],"Move":[null,"Перемещение"],"Hard Link":[null,"Жёсткая ссылка"],"Symbolic Link":[null,"Символическая ссылка"],"Symbolic Link Reversed":[null,"Символическая ссылка обратная"],"Force already Post Processed Dir/Files":[null,""],"Mark Dir/Files as priority download":[null,""],"(Check it to replace the file even if it exists at higher quality)":[null,""],"Delete files and folders":[null,"Удаление файлов и папок"],"(Check it to delete files and folders like auto processing)":[null,""],"Don't use processing queue":[null,"Не использовать очередь обработки"],"(If checked this will return the result of the process here, but may be slow!)":[null,""],"Mark download as failed":[null,"Пометить как неудачную загрузку"],"Process":[null,"Процесс"],"Download subtitles for this show?":[null,"Скачать субтитры для этого шоу?"],"use SickRage metadata when searching for subtitle, <br />this will override the autodiscovered metadata":[null,"использовать метаданные SickRage при поиске субтитров, <br />это переопределит метаданные автообнаружения"],"Status for previously aired episodes":[null,""],"Status for all future episodes":[null,"Статус для всех будущих эпизодов"],"Group episodes by season folder?":[null,"Группировать эпизоды по папкам сезона?"],"Is this show an Anime?":[null,"Является ли это шоу Аниме?"],"Is this show scene numbered?":[null,"В этом шоу есть нумерация эпизодов?"],"Save Defaults":[null,"Сохранить параметры по умолчанию"],"Use current values as the defaults":[null,"Использовать текущие значения по умолчанию"],"<p>Select your preferred fansub groups from the <b>Available Groups</b> and add them to the <b>Whitelist</b>. Add groups to the <b>Blacklist</b> to ignore them.</p>\n <p>The <b>Whitelist</b> is checked <i>before</i> the <b>Blacklist</b>.</p>\n <p>Groups are shown as <b>Name</b> | <b>Rating</b> | <b>Number of subbed episodes</b>.</p>\n <p>You may also add any fansub group not listed to either list manually.</p>\n <p>When doing this please note that you can only use groups listed on anidb for this anime.\n <br>If a group is not listed on anidb but subbed this anime, please correct anidb's data.</p>":[null,""],"Whitelist":[null,"Белый список"],"Available Groups":[null,"Доступные группы"],"Add to Whitelist":[null,"Добавить в белый список"],"Add to Blacklist":[null,"Добавить в «черный список»"],"Blacklist":[null,"Черный список"],"Custom Group":[null,"Пользовательские группы"],"Allowed Quality:":[null,"Допускаемое качество:"],"Preferred Quality:":[null,"Предпочтительное качество:"],"Filter Show Name":[null,"Фильтр по названию шоу"],"Root":[null,"Корневой каталог"],"All":[null,"Все"],"Clear Filter(s)":[null,"Очистить фильтр(ы)"],"Poster":[null,"Плакат"],"Small Poster":[null,"Небольшой плакат"],"Banner":[null,"Баннер"],"Simple":[null,"Простой"],"Next Episode":[null,"Следующий эпизод"],"Progress":[null,"Прогресс"],"Direction":[null,"Направление"],"Ascending":[null,"По возрастанию"],"Descending":[null,"По убыванию"],"Poster Size":[null,"Размер плаката"],"Continuing":[null,"Продолжается"],"Ended":[null,"Закончился"],"Total":[null,"Итого"],"Invalid date":[null,"Недопустимая дата"],"No Network":[null,"Нет сети"],"Next Ep":[null,"Следующий эпизод"],"Prev Ep":[null,"Предыдущий эпизод"],"Show":[null,"Шоу"],"Downloads":[null,"Загрузки"],"Active":[null,"Активные"],"loading":[null,"Загрузка"],"<p><b><u>Preferred</u></b> qualities will replace those in <b><u>allowed</u></b>, even if they are lower.</p>":[null,"<p><b><u>Предпочтительные</u></b> качества заменят те, которые<b><u> разрешены</u></b>, даже если они ниже.</p>"],"New":[null,"Новый"],"Set as Default":[null,"Установить по умолчанию"],"Remember me":[null,"Запомнить меня"],"Edit Selected":[null,"Изменить выбранные"],"Subtitle":[null,"Субтитры"],"Default Ep Status":[null,"Статус эпизода по умолчанию"],"Update":[null,"Обновление"],"Rescan":[null,"Повторить сканирование"],"Rename":[null,"Переименование"],"Search Subtitle":[null,"Поиск субтитров"],"Force Metadata Regen":[null,""],"Snatched (Allowed)":[null,"Snatched (разрешенных)"],"Jump to Show":[null,"Перейти к шоу"],"Force Backlog":[null,"Принудительный поиск пропущенных"],"Manage episodes with status":[null,"Управление эпизодами с статусом"],"Manage":[null,"Управление"],"None of your episodes have status":[null,"Ни один из ваших эпизодов не имеет статус"],"Shows containing":[null,"Шоу содержит"],"episodes":[null,"эпизоды"],"Set checked shows/episodes to":[null,""],"Go":[null,"Начать"],"Select all":[null,"Выделить все"],"Clear all":[null,"Очистить все"],"Release":[null,"Релиз"],"Backlog Search":[null,"Поиск пропущенных"],"Not in progress":[null,"Не выполняется"],"In Progress":[null,"Выполняется"],"Daily Search":[null,"Ежедневный поиск"],"Find Propers Search":[null,"поиск Propers"],"Propers search disabled":[null,"Поиск Propers отключен"],"Subtitle Search":[null,"Поиск субтитров"],"Subtitle search disabled":[null,"Поиск субтитров отключен"],"Search Queue":[null,"Очередь поиска"],"pending items":[null,"Ожидает"],"Daily":[null,"Ежедневный"],"Manual":[null,"Ручной"],"Changing any settings marked with (<span class=\"separator\">*</span>) will force a refresh of the selected shows.":[null,""],"Selected Shows":[null,"Выбранные шоу"],"Root Directories":[null,"Корневые каталоги"],"Current":[null,"Текущий"],"Keep":[null,"Оставить"],"Custom":[null,"Пользовательские"],"Group episodes by season folder (set to \"No\" to store in a single folder).":[null,""],"Pause these shows (SickRage will not download episodes).":[null,"Приостановить это шоу (SickRage не будет загружать эпизоды)."],"This will set the status for future episodes.":[null,"Это позволит установить статус для будущих эпизодов."],"Search by scene numbering (set to \"No\" to search by indexer numbering).":[null,""],"Set if these shows are Anime and episodes are released as Show.265 rather than Show.S02E03":[null,""],"Set if these shows are sporting or MMA events released as Show.03.02.2010 rather than Show.S02E03.":[null,""],"In case of an air date conflict between regular and special episodes, the later will be ignored.":[null,""],"Set if these shows are released as Show.03.02.2010 rather than Show.S02E03.":[null,""],"Search for subtitles.":[null,"Поиск для субтитров."],"All of your episodes have {subsLanguage} subtitles.":[null,"Все ваши эпизоды имеют {subsLanguage} субтитры."],"Manage episodes without":[null,"Управление эпизодами без"],"Episodes without {subsLanguage} subtitles.":[null,"Эпизоды без {subsLanguage} субтитров."],"Episodes without {subtitleLanguage} (undefined) subtitles.":[null,"Эпизоды без {subtitleLanguage} (неопределено) субтитров."],"Download missed subtitles for selected episodes":[null,"Скачать пропущенные субтитры для выделенных эпизодов"],"Performing Restart":[null,"Выполнение перезагрузки"],"Waiting for SickRage to shut down":[null,"Ожидание выключения SickRage"],"Waiting for SickRage to start again":[null,"Ожидание запуска SickRage"],"Loading the default page":[null,"Загрузка страницы по умолчанию"],"Error: The restart has timed out, perhaps something prevented SickRage from starting again?":[null,"Ошибка: Перезагрузка превысила время ожидания, возможно что-то помешало SickRage запуститься снова?"],"Key":[null,"Ключ"],"Missed":[null,"Пропустили"],"Today":[null,"Сегодня"],"Soon":[null,"Скоро"],"Later":[null,"Позже"],"Subscribe":[null,"Подписаться"],"Date":[null,"Дата"],"View Paused":[null,"Просмотр приостановлен"],"Hidden":[null,"Скрытое"],"Shown":[null,"Показано"],"Calendar":[null,"Календарь"],"List":[null,"Список"],"Ends":[null,""],"Next Ep Name":[null,"Следующее имя эпизода"],"Run time":[null,""],"Indexers":[null,"Индексаторы"],"No shows for this day":[null,"Нет шоу в этот день"],"Airs":[null,""],"Plot":[null,""],"Show Update":[null,"Обновить шоу"],"Version Check":[null,"Проверка версии"],"Proper Finder":[null,"Поиск Proper"],"Post Process":[null,"Пост обработка"],"Subtitles Finder":[null,"Поиск субтитров"],"Scheduler":[null,"Планировщик"],"Alive":[null,""],"Start Time":[null,"Время начала"],"Cycle Time":[null,"Время цикла"],"Next Run":[null,"Следующий запуск"],"Last Run":[null,"Последний запуск"],"Silent":[null,"Тихий"],"True":[null,"True"],"N/A":[null,"Н/Д"],"Show id":[null,"ID шоу"],"Show name":[null,"Название шоу"],"Priority":[null,"Приоритет"],"Added":[null,"Добавлено"],"Queue type":[null,"Тип очереди"],"LOW":[null,"НИЗКИЙ"],"NORMAL":[null,"НОРМАЛЬНЫЙ"],"HIGH":[null,"ВЫСОКИЙ"],"Disk Space":[null,"Дисковое пространство"],"Free space":[null,"Свободное пространство"],"TV Download Directory":[null,"Каталог ТВ шоу"],"Media Root Directories":[null,"Корневой каталог Media"],"Preview of the proposed name changes":[null,"Предварительный просмотр предложенных изменений имени"],"All Seasons":[null,"Все сезоны"],"select all":[null,"выбрать все"],"Rename Selected":[null,"Переименовать выбранное"],"Cancel Rename":[null,"Отмена переименования"],"Old Location":[null,"Старое расположение"],"New Location":[null,"Новое расположение"],"Trakt API did not return any results, please check your config.":[null,"Тракт API не возвращает никаких результатов, пожалуйста, проверьте config."],"votes":[null,"голоса"],"Remove Show":[null,"Удалить шоу"],"Level":[null,"Уровень"],"Filter":[null,"Фильтр"],"All non-absolute folder locations are relative to ":[null,"Все Неабсолютные папки являются относительными "],"Manual Post-Processing":[null,"Ручная пост-обработка"],"Episode Status Management":[null,"Управление статусом эпизодов"],"Update PLEX":[null,"Обновление PLEX"],"Update KODI":[null,"Обновление KODI"],"Update Emby":[null,"Обновление Emby"],"Manage Torrents":[null,"Управление торрентами"],"Missed Subtitle Management":[null,"Управление не найденными субтитрами"],"Help & Info":[null,"Помощь и информация"],"Backup & Restore":[null,"Резервное копирование и восстановление"],"Tools":[null,"Инструменты"],"Support SickRage":[null,"Поддержка SickRage"],"View Errors":[null,"Просмотр ошибок"],"View Warnings":[null,"Просмотр предупреждений"],"View Log":[null,"Просмотр журнала"],"Check For Updates":[null,"Проверить наличие обновлений"],"Restart":[null,"Перезагрузка"],"Shutdown":[null,"Завершение работы"],"Logout":[null,"Выход"],"Server Status":[null,"Статус сервера"],"View overview of snatched episodes":[null,"Просмотр перехваченных эпизодов"],"Episodes Downloaded":[null,"Скачанные эпизоды"],"Memory used":[null,"Используемая память"],"Load time":[null,"Время загрузки"],"Branch":[null,"Ветка"],"Now":[null,"Сейчас"]}}}} \ No newline at end of file diff --git a/locale/ru_RU/LC_MESSAGES/messages.mo b/locale/ru_RU/LC_MESSAGES/messages.mo index 9ce005548279d380cdb0b8ed3642bc469d15b1a5..6fc6ebb5ae52f53258f08e48467cbade270765d9 100644 Binary files a/locale/ru_RU/LC_MESSAGES/messages.mo and b/locale/ru_RU/LC_MESSAGES/messages.mo differ diff --git a/locale/ru_RU/LC_MESSAGES/messages.po b/locale/ru_RU/LC_MESSAGES/messages.po index ded72cbd6d7046387a49780a485ce59719d535db..520bdf3e18d141536f7288aec3c32bba8f706f1b 100644 --- a/locale/ru_RU/LC_MESSAGES/messages.po +++ b/locale/ru_RU/LC_MESSAGES/messages.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: sickrage\n" "Report-Msgid-Bugs-To: miigotu@gmail.com\n" -"POT-Creation-Date: 2017-03-25 09:28-0700\n" -"PO-Revision-Date: 2017-03-25 12:30-0400\n" +"POT-Creation-Date: 2017-03-28 09:10-0700\n" +"PO-Revision-Date: 2017-03-28 12:13-0400\n" "Last-Translator: miigotu <miigotu@gmail.com>\n" "Language-Team: Russian\n" "MIME-Version: 1.0\n" @@ -90,7 +90,7 @@ msgid "Biography" msgstr "Биография" #: gui/slick/views/config_general.mako:78 gui/slick/views/layouts/main.mako:145 -#: sickbeard/__init__.py:79 sickbeard/webserve.py:3807 +#: sickbeard/__init__.py:79 sickbeard/webserve.py:3778 msgid "History" msgstr "История" @@ -103,7 +103,7 @@ msgid "Western" msgstr "Вестерн" #: gui/slick/views/config_general.mako:79 gui/slick/views/layouts/main.mako:221 -#: sickbeard/__init__.py:80 sickbeard/webserve.py:2385 +#: sickbeard/__init__.py:80 sickbeard/webserve.py:2384 msgid "News" msgstr "Новости" @@ -238,6 +238,34 @@ msgstr "Игнорируется" msgid "Subtitled" msgstr "С субтитрами" +#: sickbeard/helpers.py:1887 +msgid "For best results please set the Download Station alias as" +msgstr "Для достижения наилучших результатов настройте псевдоним Download Station как" + +#: sickbeard/helpers.py:1888 +msgid "You can check this setting in the Synology DSM" +msgstr "Вы можете проверить этот параметр в Synology DSM" + +#: sickbeard/helpers.py:1888 sickbeard/helpers.py:1890 +msgid "Control Panel" +msgstr "Панель управления" + +#: sickbeard/helpers.py:1888 +msgid "Application Portal" +msgstr "Портал приложений" + +#: sickbeard/helpers.py:1889 +msgid "Make sure you allow DSM to be embedded with iFrames too in" +msgstr "" + +#: sickbeard/helpers.py:1890 +msgid "DSM Settings" +msgstr "Параметры DSM" + +#: sickbeard/helpers.py:1890 +msgid "Security" +msgstr "Безопасноть" + #: sickbeard/logger.py:474 msgid "<No Filter>" msgstr "<Без фильтра>" @@ -308,15 +336,15 @@ msgstr "Trakt контролер" msgid "Event" msgstr "Событие" -#: sickbeard/logger.py:491 sickbeard/webserve.py:1339 sickbeard/webserve.py:1342 -#: sickbeard/webserve.py:1520 sickbeard/webserve.py:1529 sickbeard/webserve.py:1717 -#: sickbeard/webserve.py:1728 sickbeard/webserve.py:1751 sickbeard/webserve.py:1764 -#: sickbeard/webserve.py:1769 sickbeard/webserve.py:1785 sickbeard/webserve.py:1790 -#: sickbeard/webserve.py:1854 sickbeard/webserve.py:1857 sickbeard/webserve.py:1863 -#: sickbeard/webserve.py:1866 sickbeard/webserve.py:1873 sickbeard/webserve.py:1876 -#: sickbeard/webserve.py:1899 sickbeard/webserve.py:1997 sickbeard/webserve.py:2002 -#: sickbeard/webserve.py:2007 sickbeard/webserve.py:2036 sickbeard/webserve.py:2040 -#: sickbeard/webserve.py:2045 +#: sickbeard/logger.py:491 sickbeard/webserve.py:1338 sickbeard/webserve.py:1341 +#: sickbeard/webserve.py:1519 sickbeard/webserve.py:1528 sickbeard/webserve.py:1716 +#: sickbeard/webserve.py:1727 sickbeard/webserve.py:1750 sickbeard/webserve.py:1763 +#: sickbeard/webserve.py:1768 sickbeard/webserve.py:1784 sickbeard/webserve.py:1789 +#: sickbeard/webserve.py:1853 sickbeard/webserve.py:1856 sickbeard/webserve.py:1862 +#: sickbeard/webserve.py:1865 sickbeard/webserve.py:1872 sickbeard/webserve.py:1875 +#: sickbeard/webserve.py:1898 sickbeard/webserve.py:1996 sickbeard/webserve.py:2001 +#: sickbeard/webserve.py:2006 sickbeard/webserve.py:2035 sickbeard/webserve.py:2039 +#: sickbeard/webserve.py:2044 msgid "Error" msgstr "Ошибка" @@ -333,6 +361,7 @@ msgstr "Поток" msgid "Main" msgstr "Основной" +#: gui/slick/js/ajaxEpSearch.js:146 gui/slick/js/ajaxEpSearch.js:147 #: gui/slick/views/inc_home_showList.mako:27 sickbeard/show_queue.py:298 msgid "Loading" msgstr "Загрузка" @@ -372,867 +401,835 @@ msgstr "Резервное копирование конфигурации за msgid "No update needed" msgstr "Обновление не требуется" -#: sickbeard/webserve.py:170 +#: sickbeard/webserve.py:171 msgid "Mako Error" msgstr "Mako ошибка" -#: sickbeard/webserve.py:195 +#: sickbeard/webserve.py:196 msgid "Oops" msgstr "Что то пошло не по плану" -#: sickbeard/webserve.py:197 +#: sickbeard/webserve.py:198 msgid "Wrong API key used" msgstr "Использован неправильный ключ API" -#: gui/slick/views/login.mako:34 sickbeard/webserve.py:302 +#: gui/slick/views/login.mako:34 sickbeard/webserve.py:303 msgid "Login" msgstr "Логин" -#: sickbeard/webserve.py:406 +#: sickbeard/webserve.py:392 msgid "API Key not generated" msgstr "API ключ не создан" -#: sickbeard/webserve.py:409 +#: sickbeard/webserve.py:395 msgid "API Builder" msgstr "API Builder" #: gui/slick/views/config_general.mako:77 gui/slick/views/layouts/main.mako:141 -#: sickbeard/webserve.py:512 +#: sickbeard/webserve.py:498 msgid "Schedule" msgstr "Расписание" -#: sickbeard/webserve.py:610 +#: sickbeard/webserve.py:609 msgid "Test 1" msgstr "Тест 1" -#: sickbeard/webserve.py:610 +#: sickbeard/webserve.py:609 msgid "This is test number 1" msgstr "Это тест номер 1" -#: sickbeard/webserve.py:611 +#: sickbeard/webserve.py:610 msgid "Test 2" msgstr "Тест 2" -#: sickbeard/webserve.py:611 +#: sickbeard/webserve.py:610 msgid "This is test number 2" msgstr "Это тест номер 2" -#: sickbeard/webserve.py:634 +#: sickbeard/webserve.py:633 msgid "You're using the {branch} branch. Please use 'master' unless specifically asked" msgstr "Вы используете {branch} ветвь. Пожалуйста, используйте «master»" -#: sickbeard/webserve.py:698 sickbeard/webserve.py:703 +#: sickbeard/webserve.py:697 sickbeard/webserve.py:702 msgid "Invalid show parameters" msgstr "Недопустимые параметры шоу" -#: sickbeard/webserve.py:710 +#: sickbeard/webserve.py:709 msgid "Invalid parameters" msgstr "Неправильные параметры" -#: sickbeard/webserve.py:713 sickbeard/webserve.py:1899 +#: sickbeard/webserve.py:712 sickbeard/webserve.py:1898 msgid "Episode couldn't be retrieved" msgstr "Не удалось получить эпизод" -#: sickbeard/webserve.py:759 sickbeard/webserve.py:1268 sickbeard/webserve.py:1297 +#: sickbeard/webserve.py:758 sickbeard/webserve.py:1267 sickbeard/webserve.py:1296 msgid "Home" msgstr "Главная" -#: gui/slick/views/layouts/main.mako:127 sickbeard/webserve.py:759 +#: gui/slick/views/layouts/main.mako:127 sickbeard/webserve.py:758 msgid "Show List" msgstr "Список шоу" -#: sickbeard/webserve.py:807 +#: sickbeard/webserve.py:806 msgid "Error: Unsupported Request. Send jsonp request with 'callback' variable in the query string." msgstr "Ошибка: Неподдерживаемый запрос. Отправьте запрос jsonp с переменной «обратного» в строке запроса." -#: sickbeard/webserve.py:851 +#: sickbeard/webserve.py:850 msgid "Success. Connected and authenticated" msgstr "Успешно подключено" -#: sickbeard/webserve.py:853 +#: sickbeard/webserve.py:852 msgid "Authentication failed. SABnzbd expects" msgstr "Сбой проверки подлинности. SABnzbd ожидает" -#: sickbeard/webserve.py:853 +#: sickbeard/webserve.py:852 msgid "as authentication method" msgstr "как метод проверки подлинности" -#: sickbeard/webserve.py:855 +#: sickbeard/webserve.py:854 msgid "Unable to connect to host" msgstr "Не удается подключиться к серверу" -#: sickbeard/webserve.py:876 +#: sickbeard/webserve.py:875 msgid "SMS sent successfully" msgstr "SMS отправлено успешно" -#: sickbeard/webserve.py:878 +#: sickbeard/webserve.py:877 msgid "Problem sending SMS: {message}" msgstr "Проблема с отправкой СМС: {message}" -#: sickbeard/webserve.py:885 +#: sickbeard/webserve.py:884 msgid "Telegram notification succeeded. Check your Telegram clients to make sure it worked" msgstr "Telegram уведомление успешно. Проверьте ваш клиент Telegram, чтобы убедиться, что он работает" -#: sickbeard/webserve.py:887 +#: sickbeard/webserve.py:886 msgid "Error sending Telegram notification: {message}" msgstr "Ошибка при отправке уведомления Telegram: {message}" -#: sickbeard/webserve.py:894 +#: sickbeard/webserve.py:893 msgid "join notification succeeded. Check your join clients to make sure it worked" msgstr "уведомление о присоединении успешно установлено. Проверьте ваши присоединенные клиенты чтобы убедиться, что они работают" -#: sickbeard/webserve.py:896 +#: sickbeard/webserve.py:895 msgid "Error sending join notification: {message}" msgstr "Ошибка при отправке уведомления о присоединении: {message}" -#: sickbeard/webserve.py:906 +#: sickbeard/webserve.py:905 msgid " with password" msgstr " с паролем" -#: sickbeard/webserve.py:908 +#: sickbeard/webserve.py:907 msgid "Registered and Tested growl successfully {growl_host}" msgstr "Growl зарегистрирован и испытан успешно {growl_host}" -#: sickbeard/webserve.py:910 +#: sickbeard/webserve.py:909 msgid "Registration and Testing of growl failed {growl_host}" msgstr "Регистрация и тестирование growl провалилось {growl_host}" -#: sickbeard/webserve.py:917 +#: sickbeard/webserve.py:916 msgid "Test prowl notice sent successfully" msgstr "Тест prowl уведомление успешно отправлено" -#: sickbeard/webserve.py:919 +#: sickbeard/webserve.py:918 msgid "Test prowl notice failed" msgstr "Тест prowl уведомление не отправилось" -#: sickbeard/webserve.py:926 +#: sickbeard/webserve.py:925 msgid "Boxcar2 notification succeeded. Check your Boxcar2 clients to make sure it worked" msgstr "Boxcar2 уведомление успешно. Проверьте ваш Boxcar2 клиент, чтобы убедиться, что он работает" -#: sickbeard/webserve.py:928 +#: sickbeard/webserve.py:927 msgid "Error sending Boxcar2 notification" msgstr "Ошибка при отправке уведомления Boxcar2" -#: sickbeard/webserve.py:935 +#: sickbeard/webserve.py:934 msgid "Pushover notification succeeded. Check your Pushover clients to make sure it worked" msgstr "Pushover уведомление удалось. Проверьте ваши клиент Pushover, чтобы убедиться, что он работает" -#: sickbeard/webserve.py:937 +#: sickbeard/webserve.py:936 msgid "Error sending Pushover notification" msgstr "Ошибка отправки уведомления Pushover" -#: sickbeard/webserve.py:949 +#: sickbeard/webserve.py:948 msgid "Key verification successful" msgstr "Проверка ключа прошла успешно" -#: sickbeard/webserve.py:951 +#: sickbeard/webserve.py:950 msgid "Unable to verify key" msgstr "Невозможно проверить ключ" -#: sickbeard/webserve.py:958 +#: sickbeard/webserve.py:957 msgid "Tweet successful, check your twitter to make sure it worked" msgstr "Tweet успешно отправлен, проверьте ваш twitter, чтобы убедиться, что он работает" -#: sickbeard/webserve.py:960 +#: sickbeard/webserve.py:959 msgid "Error sending tweet" msgstr "Ошибка отправки Tweet" -#: sickbeard/webserve.py:965 +#: sickbeard/webserve.py:964 msgid "Please enter a valid account sid" msgstr "Пожалуйста, введите действительный sid учетной записи" -#: sickbeard/webserve.py:968 +#: sickbeard/webserve.py:967 msgid "Please enter a valid auth token" msgstr "Пожалуйста, введите действительный auth token" -#: sickbeard/webserve.py:971 +#: sickbeard/webserve.py:970 msgid "Please enter a valid phone sid" msgstr "Пожалуйста, введите действительный sid телефона" -#: sickbeard/webserve.py:974 +#: sickbeard/webserve.py:973 msgid "Please format the phone number as \"+1-###-###-####\"" msgstr "Отформатируйте номер телефона как «+1-###-###-###»" -#: sickbeard/webserve.py:978 +#: sickbeard/webserve.py:977 msgid "Authorization successful and number ownership verified" msgstr "Авторизация успешна и номер собственности проверены" -#: sickbeard/webserve.py:980 +#: sickbeard/webserve.py:979 msgid "Error sending sms" msgstr "Ошибка при отправке sms" -#: sickbeard/webserve.py:986 +#: sickbeard/webserve.py:985 msgid "Slack message successful" msgstr "Slack сообщение успешно" -#: sickbeard/webserve.py:988 +#: sickbeard/webserve.py:987 msgid "Slack message failed" msgstr "Slack сообщение не отправлено! Ошибка!" -#: sickbeard/webserve.py:994 +#: sickbeard/webserve.py:993 msgid "Discord message successful" msgstr "Discord сообщение успешно" -#: sickbeard/webserve.py:996 +#: sickbeard/webserve.py:995 msgid "Discord message failed" msgstr "Discord сообщение не отправлено! Ошибка!" -#: sickbeard/webserve.py:1006 +#: sickbeard/webserve.py:1005 msgid "Test KODI notice sent successfully to {kodi_host}" msgstr "Тест KODI извещение отправлено успешно {kodi_host}" -#: sickbeard/webserve.py:1008 +#: sickbeard/webserve.py:1007 msgid "Test KODI notice failed to {kodi_host}" msgstr "Тест KODI отправить уведомление не удалось {kodi_host}" -#: sickbeard/webserve.py:1023 +#: sickbeard/webserve.py:1022 msgid "Successful test notice sent to Plex Home Theater ... {plex_clients}" msgstr "Успешный тест отправки извещения Plex Home Theater... {plex_clients}" -#: sickbeard/webserve.py:1025 +#: sickbeard/webserve.py:1024 msgid "Test failed for Plex Home Theater ... {plex_clients}" msgstr "Тест не пройден Plex Home Theater... {plex_clients}" -#: sickbeard/webserve.py:1028 +#: sickbeard/webserve.py:1027 msgid "Tested Plex Home Theater(s)" msgstr "Протестированные Plex Home Theater(s)" -#: sickbeard/webserve.py:1042 +#: sickbeard/webserve.py:1041 msgid "Successful test of Plex Media Server(s) ... {plex_servers}" msgstr "Успешное испытание Plex медиа серверов... {plex_servers}" -#: sickbeard/webserve.py:1044 +#: sickbeard/webserve.py:1043 msgid "Test failed, No Plex Media Server host specified" msgstr "Тест не был пройден, не указаны Plex Media Server" -#: sickbeard/webserve.py:1046 +#: sickbeard/webserve.py:1045 msgid "Test failed for Plex Media Server(s) ... {plex_servers}" msgstr "Тест не пройден Plex медиа серверов... {plex_servers}" -#: sickbeard/webserve.py:1049 +#: sickbeard/webserve.py:1048 msgid "Tested Plex Media Server host(s)" msgstr "Протестированные Plex Media Server" -#: sickbeard/webserve.py:1057 +#: sickbeard/webserve.py:1056 msgid "Tried sending desktop notification via libnotify" msgstr "Попытка отправки уведомлений рабочего стола через libnotify" -#: sickbeard/webserve.py:1066 +#: sickbeard/webserve.py:1065 msgid "Test notice sent successfully to {emby_host}" msgstr "Тестирование извещения успешно {emby_host}" -#: sickbeard/webserve.py:1068 +#: sickbeard/webserve.py:1067 msgid "Test notice failed to {emby_host}" msgstr "Тест отправки уведомления. Ошибка! {emby_host}" -#: sickbeard/webserve.py:1076 +#: sickbeard/webserve.py:1075 msgid "Successfully started the scan update" msgstr "Успешно запущено сканирование обновлений." -#: sickbeard/webserve.py:1078 +#: sickbeard/webserve.py:1077 msgid "Test failed to start the scan update" msgstr "Тест запуска сканирования обновлений провалился! Ошибка!" -#: sickbeard/webserve.py:1097 +#: sickbeard/webserve.py:1096 msgid "Test notice sent successfully to {nmj2_host}" msgstr "Тестирование извещения успешно {nmj2_host}" -#: sickbeard/webserve.py:1099 +#: sickbeard/webserve.py:1098 msgid "Test notice failed to {nmj2_host}" msgstr "Тест отправки уведомления. Ошибка! {nmj2_host}" -#: sickbeard/webserve.py:1119 +#: sickbeard/webserve.py:1118 msgid "Trakt Authorized" msgstr "Тракт авторизованный" -#: sickbeard/webserve.py:1120 +#: sickbeard/webserve.py:1119 msgid "Trakt Not Authorized!" msgstr "Тракт не авторизован!" -#: sickbeard/webserve.py:1184 +#: sickbeard/webserve.py:1183 msgid "Test email sent successfully! Check inbox." msgstr "Тестовое сообщение отправлено успешно! Проверьте почтовый ящик." -#: sickbeard/webserve.py:1186 +#: sickbeard/webserve.py:1185 msgid "ERROR: {last_error}" msgstr "ОШИБКА: {last_error}" -#: sickbeard/webserve.py:1193 +#: sickbeard/webserve.py:1192 msgid "Test NMA notice sent successfully" msgstr "Тестовое NMA уведомление отправлено успешно" -#: sickbeard/webserve.py:1195 +#: sickbeard/webserve.py:1194 msgid "Test NMA notice failed" msgstr "Тестовое NMA уведомление неудачно" -#: sickbeard/webserve.py:1202 +#: sickbeard/webserve.py:1201 msgid "Pushalot notification succeeded. Check your Pushalot clients to make sure it worked" msgstr "Pushalot уведомление удалось. Проверьте ваши клиент Pushalot, чтобы убедиться, что он работает" -#: sickbeard/webserve.py:1204 +#: sickbeard/webserve.py:1203 msgid "Error sending Pushalot notification" msgstr "Ошибка при отправке уведомления Pushalot" -#: sickbeard/webserve.py:1211 +#: sickbeard/webserve.py:1210 msgid "Pushbullet notification succeeded. Check your device to make sure it worked" msgstr "Pushbullet уведомление успешно. Проверьте ваше устройство, чтобы убедиться, что оно работает" -#: sickbeard/webserve.py:1213 sickbeard/webserve.py:1223 sickbeard/webserve.py:1232 +#: sickbeard/webserve.py:1212 sickbeard/webserve.py:1222 sickbeard/webserve.py:1231 msgid "Error sending Pushbullet notification" msgstr "Ошибка при отправке уведомления Pushbullet" #: gui/slick/views/displayShow.mako:436 gui/slick/views/inc_home_showList.mako:174 -#: gui/slick/views/manage.mako:49 sickbeard/webserve.py:1249 +#: gui/slick/views/manage.mako:49 sickbeard/webserve.py:1248 msgid "Status" msgstr "Состояние" -#: sickbeard/webserve.py:1268 sickbeard/webserve.py:1297 +#: sickbeard/webserve.py:1267 sickbeard/webserve.py:1296 msgid "Restarting SickRage" msgstr "Перезапуск SickRage" -#: sickbeard/webserve.py:1300 +#: sickbeard/webserve.py:1299 msgid "Update Failed" msgstr "Не удалось обновить" -#: sickbeard/webserve.py:1301 +#: sickbeard/webserve.py:1300 msgid "Update wasn't successful, not restarting. Check your log for more information." msgstr "Обновление не удалось, не перезагрузилось. Проверьте журнал для получения дополнительной информации." -#: sickbeard/webserve.py:1308 +#: sickbeard/webserve.py:1307 msgid "Checking out branch" msgstr "Проверка ветви" -#: sickbeard/webserve.py:1311 +#: sickbeard/webserve.py:1310 msgid "Already on branch" msgstr "Уже на ветке" -#: sickbeard/webserve.py:1339 +#: sickbeard/webserve.py:1338 msgid "Invalid show ID: {show}" msgstr "Недопустимый шоу ID: {show}" -#: sickbeard/webserve.py:1342 sickbeard/webserve.py:1871 sickbeard/webserve.py:2002 -#: sickbeard/webserve.py:2040 +#: sickbeard/webserve.py:1341 sickbeard/webserve.py:1870 sickbeard/webserve.py:2001 +#: sickbeard/webserve.py:2039 msgid "Show not in show list" msgstr "Шоу нет в списке Шоу" #: gui/slick/views/inc_rootDirs.mako:31 gui/slick/views/manage.mako:38 -#: gui/slick/views/manage_massEdit.mako:74 sickbeard/webserve.py:1358 -#: sickbeard/webserve.py:2027 +#: gui/slick/views/manage_massEdit.mako:74 sickbeard/webserve.py:1357 +#: sickbeard/webserve.py:2026 msgid "Edit" msgstr "Редактировать" -#: sickbeard/webserve.py:1368 +#: sickbeard/webserve.py:1367 msgid "This show is in the process of being downloaded - the info below is incomplete." msgstr "Это шоу в процессе загрузки - информация является неполной." -#: sickbeard/webserve.py:1371 +#: sickbeard/webserve.py:1370 msgid "The information on this page is in the process of being updated." msgstr "Информация на этой странице находится в процессе обновления." -#: sickbeard/webserve.py:1374 +#: sickbeard/webserve.py:1373 msgid "The episodes below are currently being refreshed from disk" msgstr "Эпизоды в настоящее время обновляются с диска" -#: sickbeard/webserve.py:1377 +#: sickbeard/webserve.py:1376 msgid "Currently downloading subtitles for this show" msgstr "В настоящее время загружаются субтитры для этого шоу" -#: sickbeard/webserve.py:1380 +#: sickbeard/webserve.py:1379 msgid "This show is queued to be refreshed." msgstr "Это шоу добавлено в очередь для обновления." -#: sickbeard/webserve.py:1383 +#: sickbeard/webserve.py:1382 msgid "This show is queued and awaiting an update." msgstr "Это шоу находится в очереди и ожидает обновления." -#: sickbeard/webserve.py:1386 +#: sickbeard/webserve.py:1385 msgid "This show is queued and awaiting subtitles download." msgstr "Это шоу находится в очереди и ожидает загрузки субтитров." -#: gui/slick/js/core.js:4081 sickbeard/webserve.py:1391 +#: gui/slick/js/core.js:4081 sickbeard/webserve.py:1390 msgid "Resume" msgstr "Возобновить" #: gui/slick/js/core.js:4081 gui/slick/views/viewlogs.mako:12 -#: sickbeard/webserve.py:1393 +#: sickbeard/webserve.py:1392 msgid "Pause" msgstr "Пауза" #: gui/slick/views/editShow.mako:345 gui/slick/views/inc_blackwhitelist.mako:40 #: gui/slick/views/inc_blackwhitelist.mako:85 gui/slick/views/manage.mako:58 -#: gui/slick/views/manage_failedDownloads.mako:43 sickbeard/webserve.py:1395 +#: gui/slick/views/manage_failedDownloads.mako:43 sickbeard/webserve.py:1394 msgid "Remove" msgstr "Удалить" -#: sickbeard/webserve.py:1396 +#: sickbeard/webserve.py:1395 msgid "Re-scan files" msgstr "Повторно сканировать файлы" -#: sickbeard/webserve.py:1397 +#: sickbeard/webserve.py:1396 msgid "Force Full Update" msgstr "Принудительное полное обновление" -#: sickbeard/webserve.py:1398 +#: sickbeard/webserve.py:1397 msgid "Update show in KODI" msgstr "Обновление шоу в KODI" -#: sickbeard/webserve.py:1399 +#: sickbeard/webserve.py:1398 msgid "Update show in Emby" msgstr "Обновление шоу в Emby" -#: sickbeard/webserve.py:1402 +#: sickbeard/webserve.py:1401 msgid "Hide specials" msgstr "Скрыть specials" -#: sickbeard/webserve.py:1404 +#: sickbeard/webserve.py:1403 msgid "Show specials" msgstr "Показать specials" -#: sickbeard/webserve.py:1406 sickbeard/webserve.py:2030 sickbeard/webserve.py:2031 +#: sickbeard/webserve.py:1405 sickbeard/webserve.py:2029 sickbeard/webserve.py:2030 msgid "Preview Rename" msgstr "Переименование файлов шоу" -#: sickbeard/webserve.py:1409 +#: sickbeard/webserve.py:1408 msgid "Download Subtitles" msgstr "Скачать субтитры" -#: sickbeard/webserve.py:1498 +#: sickbeard/webserve.py:1497 msgid "No scene exceptions" msgstr "Нет исключений по сериям" -#: sickbeard/webserve.py:1516 sickbeard/webserve.py:1764 sickbeard/webserve.py:1785 +#: sickbeard/webserve.py:1515 sickbeard/webserve.py:1763 sickbeard/webserve.py:1784 msgid "Invalid show ID" msgstr "Недопустимый ID шоу" -#: sickbeard/webserve.py:1525 sickbeard/webserve.py:1769 sickbeard/webserve.py:1790 +#: sickbeard/webserve.py:1524 sickbeard/webserve.py:1768 sickbeard/webserve.py:1789 msgid "Unable to find the specified show" msgstr "Не удается найти указанное шоу" -#: sickbeard/webserve.py:1550 +#: sickbeard/webserve.py:1549 msgid "Unable to retreive Fansub Groups from AniDB." msgstr "Не удается извлечь Fansub группы из AniDB." -#: sickbeard/webserve.py:1559 sickbeard/webserve.py:1561 +#: sickbeard/webserve.py:1558 sickbeard/webserve.py:1560 msgid "Edit Show" msgstr "Редактировать шоу" -#: sickbeard/webserve.py:1637 sickbeard/webserve.py:1671 +#: sickbeard/webserve.py:1636 sickbeard/webserve.py:1670 msgid "Unable to refresh this show: {error}" msgstr "Не удается обновить это шоу: {error}" -#: sickbeard/webserve.py:1663 +#: sickbeard/webserve.py:1662 msgid "New location <tt>{location}</tt> does not exist" msgstr "Новое расположение <tt>{location}</tt> не существует" -#: sickbeard/webserve.py:1688 +#: sickbeard/webserve.py:1687 msgid "Unable to update show: {error}" msgstr "Не удается обновить шоу: {error}" -#: sickbeard/webserve.py:1695 +#: sickbeard/webserve.py:1694 msgid "Unable to force an update on scene exceptions of the show." msgstr "Не удается выполнить принудительное обновление исключений сцен в шоу." -#: sickbeard/webserve.py:1702 +#: sickbeard/webserve.py:1701 msgid "Unable to force an update on scene numbering of the show." msgstr "Не удается выполнить принудительное обновление нумерации сцен в шоу." -#: sickbeard/webserve.py:1708 sickbeard/webserve.py:3540 +#: sickbeard/webserve.py:1707 sickbeard/webserve.py:3539 msgid "{num_errors:d} error{plural} while saving changes:" msgstr "{num_errors:d} ошибка {plural} при сохранении изменений:" -#: sickbeard/webserve.py:1719 +#: sickbeard/webserve.py:1718 msgid "{show_name} has been {paused_resumed}" msgstr "{show_name} был {paused_resumed}" -#: sickbeard/webserve.py:1719 +#: sickbeard/webserve.py:1718 msgid "resumed" msgstr "возобновлено" -#: sickbeard/webserve.py:1719 +#: sickbeard/webserve.py:1718 msgid "paused" msgstr "приостановлено" -#: sickbeard/webserve.py:1731 +#: sickbeard/webserve.py:1730 msgid "{show_name} has been {deleted_trashed} {was_deleted}" msgstr "{show_name} был {deleted_trashed} {was_deleted}" -#: sickbeard/webserve.py:1733 +#: sickbeard/webserve.py:1732 msgid "deleted" msgstr "удалено" -#: sickbeard/webserve.py:1733 +#: sickbeard/webserve.py:1732 msgid "trashed" msgstr "в корзине" -#: sickbeard/webserve.py:1734 +#: sickbeard/webserve.py:1733 msgid "(media untouched)" msgstr "(media незатронуто)" -#: sickbeard/webserve.py:1734 +#: sickbeard/webserve.py:1733 msgid "(with all related media)" msgstr "(все связанные с media)" -#: sickbeard/webserve.py:1755 +#: sickbeard/webserve.py:1754 msgid "Unable to refresh this show." msgstr "Не удается обновить это шоу." -#: sickbeard/webserve.py:1775 +#: sickbeard/webserve.py:1774 msgid "Unable to update this show." msgstr "Не удается обновить это шоу." -#: sickbeard/webserve.py:1814 +#: sickbeard/webserve.py:1813 msgid "Library update command sent to KODI host(s)): {kodi_hosts}" msgstr "Команда обновления Библиотеки, отправлена KODI host(s)): {kodi_hosts}" -#: sickbeard/webserve.py:1816 +#: sickbeard/webserve.py:1815 msgid "Unable to contact one or more KODI host(s)): {kodi_hosts}" msgstr "Не удается связаться с одним или несколькими KODI host(s)): {kodi_hosts}" -#: sickbeard/webserve.py:1825 +#: sickbeard/webserve.py:1824 msgid "Library update command sent to Plex Media Server host: {plex_server}" msgstr "Команда обновления Библиотеки, отправлена на Plex Media Server: {plex_server}" -#: sickbeard/webserve.py:1828 +#: sickbeard/webserve.py:1827 msgid "Unable to contact Plex Media Server host: {plex_server}" msgstr "Не удается связаться с Plex Media Server: {plex_server}" -#: sickbeard/webserve.py:1840 +#: sickbeard/webserve.py:1839 msgid "Library update command sent to Emby host: {emby_host}" msgstr "Команда обновление Библиотеки, отправлена Emby: {emby_host}" -#: sickbeard/webserve.py:1842 +#: sickbeard/webserve.py:1841 msgid "Unable to contact Emby host: {emby_host}" msgstr "Не удается связаться с Emby сервером: {emby_host}" -#: sickbeard/webserve.py:1852 sickbeard/webserve.py:2036 +#: sickbeard/webserve.py:1851 sickbeard/webserve.py:2035 msgid "You must specify a show and at least one episode" msgstr "Необходимо указать шоу и по крайней мере один эпизод" -#: sickbeard/webserve.py:1861 +#: sickbeard/webserve.py:1860 msgid "Invalid status" msgstr "Недопустимый статус" -#: sickbeard/webserve.py:1954 +#: sickbeard/webserve.py:1953 msgid "Backlog was automatically started for the following seasons of <b>{show_name}</b>" msgstr "Поиск пропущенных автоматически запускается для следующих сезонов <b>{show_name}</b>" #: gui/slick/views/displayShow.mako:74 gui/slick/views/displayShow.mako:79 -#: gui/slick/views/displayShow.mako:404 sickbeard/webserve.py:1961 -#: sickbeard/webserve.py:1980 +#: gui/slick/views/displayShow.mako:404 sickbeard/webserve.py:1960 +#: sickbeard/webserve.py:1979 msgid "Season" msgstr "Сезон" -#: sickbeard/webserve.py:1968 +#: sickbeard/webserve.py:1967 msgid "Backlog started" msgstr "Поиск пропущенных" -#: sickbeard/webserve.py:1973 +#: sickbeard/webserve.py:1972 msgid "Retrying Search was automatically started for the following season of <b>{show_name}</b>" msgstr "Повтор поиска автоматически запустился для следующего сезона <b>{show_name}</b>" -#: sickbeard/webserve.py:1987 +#: sickbeard/webserve.py:1986 msgid "Retry Search started" msgstr "Повторный поиск начат" -#: sickbeard/webserve.py:1997 +#: sickbeard/webserve.py:1996 msgid "You must specify a show" msgstr "Необходимо указать шоу" -#: sickbeard/webserve.py:2007 sickbeard/webserve.py:2045 +#: sickbeard/webserve.py:2006 sickbeard/webserve.py:2044 msgid "Can't rename episodes when the show dir is missing." msgstr "Не удается переименовать эпизоды, когда директория шоу отсутствует." -#: sickbeard/webserve.py:2212 sickbeard/webserve.py:2233 +#: sickbeard/webserve.py:2211 sickbeard/webserve.py:2232 msgid "New subtitles downloaded: {new_subtitle_languages}" msgstr "Новые субтитры загружены: {new_subtitle_languages}" -#: sickbeard/webserve.py:2215 sickbeard/webserve.py:2236 +#: sickbeard/webserve.py:2214 sickbeard/webserve.py:2235 msgid "No subtitles downloaded" msgstr "Субтитры не загружены" #: gui/slick/views/config_general.mako:80 gui/slick/views/layouts/main.mako:222 -#: sickbeard/webserve.py:2363 +#: sickbeard/webserve.py:2362 msgid "IRC" msgstr "IRC" -#: sickbeard/webserve.py:2376 +#: sickbeard/webserve.py:2375 msgid "Could not load news from the repo. [Click here for news.md])({news_url})" msgstr "Не удалось загрузить Новости из репозитория. [Нажмите здесь news.md]) ({news_url})" -#: sickbeard/webserve.py:2383 sickbeard/webserve.py:2401 +#: sickbeard/webserve.py:2382 sickbeard/webserve.py:2400 msgid "The was a problem connecting to github, please refresh and try again" msgstr "Была проблема с подключением к github, пожалуйста, обновите страницу и повторите попытку" -#: sickbeard/webserve.py:2398 +#: sickbeard/webserve.py:2397 msgid "Could not load changes from the repo. [Click here for CHANGES.md]({changes_url})" msgstr "Не удалось загрузить изменения из репозитория. [Нажмите здесь CHANGES.md] ({changes_url})" -#: gui/slick/views/layouts/main.mako:223 sickbeard/webserve.py:2403 +#: gui/slick/views/layouts/main.mako:223 sickbeard/webserve.py:2402 msgid "Changelog" msgstr "Список изменений" -#: gui/slick/views/layouts/main.mako:190 sickbeard/webserve.py:2413 -#: sickbeard/webserve.py:3855 sickbeard/webserve.py:4341 +#: gui/slick/views/layouts/main.mako:190 sickbeard/webserve.py:2412 +#: sickbeard/webserve.py:3826 sickbeard/webserve.py:4312 msgid "Post Processing" msgstr "Пост-обработка" -#: gui/slick/views/layouts/main.mako:128 sickbeard/webserve.py:2445 +#: gui/slick/views/layouts/main.mako:128 sickbeard/webserve.py:2444 msgid "Add Shows" msgstr "Добавить шоу" -#: sickbeard/webserve.py:2510 +#: sickbeard/webserve.py:2509 msgid "No folders selected." msgstr "Папки не выбран." -#: sickbeard/webserve.py:2632 +#: sickbeard/webserve.py:2631 msgid "New Show" msgstr "Новое шоу" -#: sickbeard/webserve.py:2647 +#: sickbeard/webserve.py:2646 msgid "Trending Shows" msgstr "Актуальные шоу" -#: sickbeard/webserve.py:2649 sickbeard/webserve.py:2772 +#: sickbeard/webserve.py:2648 sickbeard/webserve.py:2771 msgid "Popular Shows" msgstr "Популярные шоу" -#: sickbeard/webserve.py:2651 sickbeard/webserve.py:2665 +#: sickbeard/webserve.py:2650 sickbeard/webserve.py:2664 msgid "Most Anticipated Shows" msgstr "Самые ожидаемые шоу" -#: sickbeard/webserve.py:2653 +#: sickbeard/webserve.py:2652 msgid "Most Collected Shows" msgstr "Наиболее кассовые шоу" -#: sickbeard/webserve.py:2655 +#: sickbeard/webserve.py:2654 msgid "Most Watched Shows" msgstr "Самые популярные шоу" -#: sickbeard/webserve.py:2657 +#: sickbeard/webserve.py:2656 msgid "Most Played Shows" msgstr "Наиболее популярные шоу" -#: sickbeard/webserve.py:2659 +#: sickbeard/webserve.py:2658 msgid "Recommended Shows" msgstr "Рекомендуемые шоу" -#: gui/slick/views/addShows_trendingShows.mako:60 sickbeard/webserve.py:2661 +#: gui/slick/views/addShows_trendingShows.mako:60 sickbeard/webserve.py:2660 msgid "New Shows" msgstr "Новое шоу" -#: gui/slick/views/addShows_trendingShows.mako:61 sickbeard/webserve.py:2663 +#: gui/slick/views/addShows_trendingShows.mako:61 sickbeard/webserve.py:2662 msgid "Season Premieres" msgstr "Премьеры сезона" -#: sickbeard/webserve.py:2792 sickbeard/webserve.py:2793 +#: sickbeard/webserve.py:2791 sickbeard/webserve.py:2792 msgid "Existing Show" msgstr "Существующие шоу" -#: sickbeard/webserve.py:2871 +#: sickbeard/webserve.py:2870 msgid "No root directories setup, please go back and add one." msgstr "Корневые каталоги не настроены, вернитесь и добавьте один." -#: sickbeard/webserve.py:2883 sickbeard/webserve.py:3002 +#: sickbeard/webserve.py:2882 sickbeard/webserve.py:3001 msgid "Show added" msgstr "Шоу добавлено" -#: sickbeard/webserve.py:2883 +#: sickbeard/webserve.py:2882 msgid "Adding the specified show {show_name}" msgstr "Добавление указанного шоу {show_name}" -#: sickbeard/webserve.py:2924 +#: sickbeard/webserve.py:2923 msgid "Missing params, no Indexer ID or folder: {show_to_add} and {root_dir}/{show_path}" msgstr "" -#: sickbeard/webserve.py:2933 +#: sickbeard/webserve.py:2932 msgid "Unknown error. Unable to add show due to problem with show selection." msgstr "Неизвестная ошибка. Не удается добавить шоу из-за проблемы с выбором шоу." -#: sickbeard/webserve.py:2957 sickbeard/webserve.py:2967 +#: sickbeard/webserve.py:2956 sickbeard/webserve.py:2966 msgid "Unable to add show" msgstr "Не удается добавить шоу" -#: sickbeard/webserve.py:2957 +#: sickbeard/webserve.py:2956 msgid "Folder {show_dir} exists already" msgstr "{show_dir} папка уже существует" -#: sickbeard/webserve.py:2968 +#: sickbeard/webserve.py:2967 msgid "Unable to create the folder {show_dir}, can't add the show" msgstr "Не удается создать папку {show_dir}, не удалось добавить шоу" -#: sickbeard/webserve.py:3002 +#: sickbeard/webserve.py:3001 msgid "Adding the specified show into {show_dir}" msgstr "Добавление указанного шоу в {show_dir}" -#: sickbeard/webserve.py:3078 +#: sickbeard/webserve.py:3077 msgid "Shows Added" msgstr "Шоу добавлено" -#: sickbeard/webserve.py:3079 +#: sickbeard/webserve.py:3078 msgid "Automatically added {num_shows} from their existing metadata files" msgstr "Автоматически добавлено {num_shows} из существующих файлов метаданных" -#: gui/slick/views/layouts/main.mako:153 sickbeard/webserve.py:3096 +#: gui/slick/views/layouts/main.mako:153 sickbeard/webserve.py:3095 msgid "Mass Update" msgstr "Массовое обновление" -#: sickbeard/webserve.py:3134 sickbeard/webserve.py:3161 sickbeard/webserve.py:3237 -#: sickbeard/webserve.py:3238 +#: sickbeard/webserve.py:3133 sickbeard/webserve.py:3160 sickbeard/webserve.py:3236 +#: sickbeard/webserve.py:3237 msgid "Episode Overview" msgstr "Обзор эпизода" -#: sickbeard/webserve.py:3270 +#: sickbeard/webserve.py:3269 msgid "Missing Subtitles" msgstr "Недостающие субтитры" -#: gui/slick/views/layouts/main.mako:154 sickbeard/webserve.py:3356 -#: sickbeard/webserve.py:3357 +#: gui/slick/views/layouts/main.mako:154 sickbeard/webserve.py:3355 +#: sickbeard/webserve.py:3356 msgid "Backlog Overview" msgstr "Обзор пропущенных" -#: sickbeard/webserve.py:3481 +#: sickbeard/webserve.py:3480 msgid "Mass Edit" msgstr "Массовое редактирование" -#: sickbeard/webserve.py:3586 +#: sickbeard/webserve.py:3585 msgid "Unable to update show: {excption_format}" msgstr "Не удается обновить шоу: {excption_format}" -#: sickbeard/webserve.py:3594 +#: sickbeard/webserve.py:3593 msgid "Unable to refresh show {show_name}: {excption_format}" msgstr "Не удается обновить шоу {show_name}: {excption_format}" -#: sickbeard/webserve.py:3605 +#: sickbeard/webserve.py:3604 msgid "Errors encountered" msgstr "Обнаруженные ошибки" -#: gui/slick/views/config_general.mako:261 sickbeard/webserve.py:3611 +#: gui/slick/views/config_general.mako:261 sickbeard/webserve.py:3610 msgid "Updates" msgstr "Обновления" -#: sickbeard/webserve.py:3616 +#: sickbeard/webserve.py:3615 msgid "Refreshes" msgstr "Обновления" -#: sickbeard/webserve.py:3621 +#: sickbeard/webserve.py:3620 msgid "Renames" msgstr "Переименования" #: gui/slick/views/displayShow.mako:260 gui/slick/views/displayShow.mako:435 #: gui/slick/views/editShow.mako:119 gui/slick/views/inc_addShowOptions.mako:20 -#: gui/slick/views/manage_massEdit.mako:262 sickbeard/webserve.py:3626 -#: sickbeard/webserve.py:5244 +#: gui/slick/views/manage_massEdit.mako:262 sickbeard/webserve.py:3625 +#: sickbeard/webserve.py:5215 msgid "Subtitles" msgstr "Субтитры" -#: sickbeard/webserve.py:3631 +#: sickbeard/webserve.py:3630 msgid "The following actions were queued" msgstr "Следующие действия поставлены в очередь" -#: sickbeard/webserve.py:3651 -msgid "For best results please set the Download Station alias as" -msgstr "Для достижения наилучших результатов настройте псевдоним Download Station как" - -#: sickbeard/webserve.py:3652 -msgid "You can check this setting in the Synology DSM" -msgstr "Вы можете проверить этот параметр в Synology DSM" - -#: sickbeard/webserve.py:3652 sickbeard/webserve.py:3654 -msgid "Control Panel" -msgstr "Панель управления" - -#: sickbeard/webserve.py:3652 -msgid "Application Portal" -msgstr "Портал приложений" - -#: sickbeard/webserve.py:3653 -msgid "Make sure you allow DSM to be embedded with iFrames too in" -msgstr "" - -#: sickbeard/webserve.py:3654 -msgid "DSM Settings" -msgstr "Параметры DSM" - -#: sickbeard/webserve.py:3654 -msgid "Security" -msgstr "Безопасноть" - -#: gui/slick/views/layouts/main.mako:167 sickbeard/webserve.py:3662 -msgid "Manage Torrents" -msgstr "Управление торрентами" - -#: gui/slick/views/layouts/main.mako:170 sickbeard/webserve.py:3683 +#: gui/slick/views/layouts/main.mako:170 sickbeard/webserve.py:3654 msgid "Failed Downloads" msgstr "Сбойные загрузки" -#: gui/slick/views/layouts/main.mako:155 sickbeard/webserve.py:3701 +#: gui/slick/views/layouts/main.mako:155 sickbeard/webserve.py:3672 msgid "Manage Searches" msgstr "Управление поиском" -#: sickbeard/webserve.py:3709 +#: sickbeard/webserve.py:3680 msgid "Backlog search started" msgstr "Начался поиск пропущенных " -#: sickbeard/webserve.py:3719 +#: sickbeard/webserve.py:3690 msgid "Daily search started" msgstr "Начат ежедневный поиск" -#: sickbeard/webserve.py:3728 +#: sickbeard/webserve.py:3699 msgid "Find propers search started" msgstr "Начат поиск propers" -#: sickbeard/webserve.py:3737 +#: sickbeard/webserve.py:3708 msgid "Subtitle search started" msgstr "Начат поиск субтитров" -#: sickbeard/webserve.py:3801 +#: sickbeard/webserve.py:3772 msgid "Remove Selected" msgstr "Удалить помеченные" -#: sickbeard/webserve.py:3802 +#: sickbeard/webserve.py:3773 msgid "Clear History" msgstr "Очистить историю" -#: sickbeard/webserve.py:3803 +#: sickbeard/webserve.py:3774 msgid "Trim History" msgstr "Урезать историю" -#: sickbeard/webserve.py:3823 +#: sickbeard/webserve.py:3794 msgid "Selected history entries removed" msgstr "Выбранные записи истории удалены" -#: sickbeard/webserve.py:3830 +#: sickbeard/webserve.py:3801 msgid "History cleared" msgstr "История очищена" -#: sickbeard/webserve.py:3837 +#: sickbeard/webserve.py:3808 msgid "Removed history entries older than 30 days" msgstr "Удалить записи истории старше 30 дней" -#: gui/slick/views/layouts/main.mako:185 sickbeard/webserve.py:3850 +#: gui/slick/views/layouts/main.mako:185 sickbeard/webserve.py:3821 msgid "General" msgstr "Общие" -#: sickbeard/webserve.py:3851 sickbeard/webserve.py:4143 +#: sickbeard/webserve.py:3822 sickbeard/webserve.py:4114 msgid "Backup/Restore" msgstr "Резервное копирование и восстановление" -#: gui/slick/views/layouts/main.mako:187 sickbeard/webserve.py:3852 -#: sickbeard/webserve.py:4206 +#: gui/slick/views/layouts/main.mako:187 sickbeard/webserve.py:3823 +#: sickbeard/webserve.py:4177 msgid "Search Settings" msgstr "Настройки поиска" -#: gui/slick/views/layouts/main.mako:188 sickbeard/webserve.py:3853 -#: sickbeard/webserve.py:4518 +#: gui/slick/views/layouts/main.mako:188 sickbeard/webserve.py:3824 +#: sickbeard/webserve.py:4489 msgid "Search Providers" msgstr "Поисковые провайдеры" -#: gui/slick/views/layouts/main.mako:189 sickbeard/webserve.py:3854 +#: gui/slick/views/layouts/main.mako:189 sickbeard/webserve.py:3825 msgid "Subtitles Settings" msgstr "Настройки субтитров" -#: gui/slick/views/layouts/main.mako:191 sickbeard/webserve.py:3856 -#: sickbeard/webserve.py:4964 +#: gui/slick/views/layouts/main.mako:191 sickbeard/webserve.py:3827 +#: sickbeard/webserve.py:4935 msgid "Notifications" msgstr "Уведомления" @@ -1240,142 +1237,142 @@ msgstr "Уведомления" #: gui/slick/views/home.mako:35 gui/slick/views/inc_addShowOptions.mako:79 #: gui/slick/views/inc_home_showList.mako:179 gui/slick/views/layouts/main.mako:192 #: gui/slick/views/manage.mako:44 gui/slick/views/manage_massEdit.mako:202 -#: sickbeard/webserve.py:3857 sickbeard/webserve.py:5309 +#: sickbeard/webserve.py:3828 sickbeard/webserve.py:5280 msgid "Anime" msgstr "Аниме" -#: sickbeard/webserve.py:3895 sickbeard/webserve.py:3896 +#: sickbeard/webserve.py:3866 sickbeard/webserve.py:3867 msgid "SickRage Configuration" msgstr "Конфигурация SickRage" -#: sickbeard/webserve.py:3910 +#: sickbeard/webserve.py:3881 msgid "Config - Shares" msgstr "" -#: sickbeard/webserve.py:3910 +#: sickbeard/webserve.py:3881 msgid "Windows Shares Configuration" msgstr "" -#: sickbeard/webserve.py:3937 +#: sickbeard/webserve.py:3908 msgid "Saved Shares" msgstr "" -#: sickbeard/webserve.py:3937 +#: sickbeard/webserve.py:3908 msgid "Your Windows share settings have been saved" msgstr "" -#: sickbeard/webserve.py:3948 +#: sickbeard/webserve.py:3919 msgid "Config - General" msgstr "Config - Основной" -#: sickbeard/webserve.py:3948 +#: sickbeard/webserve.py:3919 msgid "General Configuration" msgstr "Основные настройки" -#: sickbeard/webserve.py:3988 +#: sickbeard/webserve.py:3959 msgid "Saved Defaults" msgstr "Сохраненные значения по умолчанию" -#: sickbeard/webserve.py:3988 +#: sickbeard/webserve.py:3959 msgid "Your \"add show\" defaults have been set to your current selections." msgstr "" -#: sickbeard/webserve.py:4095 +#: sickbeard/webserve.py:4066 msgid "Unable to create directory {directory}, log directory not changed." msgstr "Не удается создать каталог {directory}, каталог журналов не изменился." -#: sickbeard/webserve.py:4103 +#: sickbeard/webserve.py:4074 msgid "Unable to create directory {directory}, https cert directory not changed." msgstr "Не удается создать каталог {directory}, https cert директория не изменилась." -#: sickbeard/webserve.py:4107 +#: sickbeard/webserve.py:4078 msgid "Unable to create directory {directory}, https key directory not changed." msgstr "Не удается создать каталог {directory}, https ключ директории не изменился." -#: sickbeard/webserve.py:4126 sickbeard/webserve.py:4324 sickbeard/webserve.py:4456 -#: sickbeard/webserve.py:5227 +#: sickbeard/webserve.py:4097 sickbeard/webserve.py:4295 sickbeard/webserve.py:4427 +#: sickbeard/webserve.py:5198 msgid "Error(s) Saving Configuration" msgstr "Ошибка(и), сохранения конфигурации" -#: sickbeard/webserve.py:4129 sickbeard/webserve.py:4327 sickbeard/webserve.py:4458 -#: sickbeard/webserve.py:4950 sickbeard/webserve.py:5230 sickbeard/webserve.py:5294 -#: sickbeard/webserve.py:5323 +#: sickbeard/webserve.py:4100 sickbeard/webserve.py:4298 sickbeard/webserve.py:4429 +#: sickbeard/webserve.py:4921 sickbeard/webserve.py:5201 sickbeard/webserve.py:5265 +#: sickbeard/webserve.py:5294 msgid "Configuration Saved" msgstr "Конфигурация сохранена" -#: sickbeard/webserve.py:4142 +#: sickbeard/webserve.py:4113 msgid "Config - Backup/Restore" msgstr "Config - резервное копирование и восстановление" -#: sickbeard/webserve.py:4205 +#: sickbeard/webserve.py:4176 msgid "Config - Episode Search" msgstr "Config - Поиск эпизодов" -#: sickbeard/webserve.py:4340 +#: sickbeard/webserve.py:4311 msgid "Config - Post Processing" msgstr "Config - пост обработка" -#: sickbeard/webserve.py:4380 +#: sickbeard/webserve.py:4351 msgid "Unpacking Not Supported, disabling unpack setting" msgstr "Распаковка не поддерживается, отключение параметра распаковывать" -#: sickbeard/webserve.py:4431 +#: sickbeard/webserve.py:4402 msgid "You tried saving an invalid normal naming config, not saving your naming settings" msgstr "" -#: sickbeard/webserve.py:4439 +#: sickbeard/webserve.py:4410 msgid "You tried saving an invalid anime naming config, not saving your naming settings" msgstr "" -#: sickbeard/webserve.py:4517 +#: sickbeard/webserve.py:4488 msgid "Config - Providers" msgstr "Config - провайдеров" -#: sickbeard/webserve.py:4547 +#: sickbeard/webserve.py:4518 msgid "No Provider Name specified" msgstr "Не указано имя провайдера" -#: sickbeard/webserve.py:4549 +#: sickbeard/webserve.py:4520 msgid "No Provider Url specified" msgstr "Не указан URL-адрес провайдера" -#: sickbeard/webserve.py:4551 +#: sickbeard/webserve.py:4522 msgid "No Provider Api key specified" msgstr "Не указан API ключ провадера" -#: sickbeard/webserve.py:4963 +#: sickbeard/webserve.py:4934 msgid "Config - Notifications" msgstr "Config - уведомления" -#: sickbeard/webserve.py:5243 +#: sickbeard/webserve.py:5214 msgid "Config - Subtitles" msgstr "Config - субтитры" -#: sickbeard/webserve.py:5308 +#: sickbeard/webserve.py:5279 msgid "Config - Anime" msgstr "Config - аниме" -#: sickbeard/webserve.py:5336 +#: sickbeard/webserve.py:5307 msgid "Clear Errors" msgstr "Очистить ошибки" -#: sickbeard/webserve.py:5342 +#: sickbeard/webserve.py:5313 msgid "Clear Warnings" msgstr "Очистить предупреждения" -#: sickbeard/webserve.py:5348 +#: sickbeard/webserve.py:5319 msgid "Submit Errors" msgstr "Отправить ошибки" -#: sickbeard/webserve.py:5363 +#: sickbeard/webserve.py:5334 msgid "Logs & Errors" msgstr "Журналы и ошибки" -#: sickbeard/webserve.py:5388 +#: sickbeard/webserve.py:5359 msgid "Log File" msgstr "Файл журнала" -#: sickbeard/webserve.py:5388 +#: sickbeard/webserve.py:5359 msgid "Logs" msgstr "Журналы" @@ -1383,30 +1380,166 @@ msgstr "Журналы" msgid "This is a test notification from SickRage" msgstr "Это тестовое уведомление от SickRage" -#: gui/slick/js/core.js:481 gui/slick/js/core.js:502 gui/slick/js/core.js:524 -#: gui/slick/js/core.js:548 gui/slick/js/core.js:573 gui/slick/js/core.js:596 -#: gui/slick/js/core.js:625 gui/slick/js/core.js:645 gui/slick/js/core.js:690 -#: gui/slick/js/core.js:769 gui/slick/js/core.js:829 gui/slick/js/core.js:849 -#: gui/slick/js/core.js:879 gui/slick/js/core.js:909 gui/slick/js/core.js:969 -#: gui/slick/js/core.js:1046 gui/slick/js/core.js:1066 gui/slick/js/core.js:1085 +#: gui/slick/js/browser.js:6 +msgid "Choose Directory" +msgstr "" + +#: gui/slick/js/core.js:443 +msgid "Select log file folder location" +msgstr "" + +#: gui/slick/js/core.js:445 +msgid "Select CSS file" +msgstr "" + +#: gui/slick/js/core.js:469 +msgid "Select backup folder to save to" +msgstr "" + +#: gui/slick/js/core.js:470 +msgid "Select backup files to restore" +msgstr "" + +#: gui/slick/js/core.js:479 gui/slick/js/core.js:500 gui/slick/js/core.js:522 +#: gui/slick/js/core.js:546 gui/slick/js/core.js:571 gui/slick/js/core.js:594 +#: gui/slick/js/core.js:623 gui/slick/js/core.js:643 gui/slick/js/core.js:688 +#: gui/slick/js/core.js:767 gui/slick/js/core.js:827 gui/slick/js/core.js:847 +#: gui/slick/js/core.js:877 gui/slick/js/core.js:907 gui/slick/js/core.js:967 +#: gui/slick/js/core.js:1044 gui/slick/js/core.js:1064 gui/slick/js/core.js:1083 msgid "Please fill out the necessary fields above." msgstr "" -#: gui/slick/js/core.js:1328 gui/slick/js/core.js:1378 gui/slick/js/core.js:1427 -#: gui/slick/js/core.js:1493 +#: gui/slick/js/core.js:680 +msgid "<b>Step 1:</b> Confirm Authorization" +msgstr "" + +#: gui/slick/js/core.js:977 +msgid "Check blacklist name; the value needs to be a trakt slug" +msgstr "" + +#: gui/slick/js/core.js:1022 +msgid "You must provide a recipient email address!" +msgstr "" + +#: gui/slick/js/core.js:1107 +msgid "You didn't supply a Pushbullet api key" +msgstr "" + +#: gui/slick/js/core.js:1133 gui/slick/js/core.js:1162 +msgid "Don't forget to save your new pushbullet settings." +msgstr "" + +#: gui/slick/js/core.js:1262 +msgid "Select TV Download Directory" +msgstr "" + +#: gui/slick/js/core.js:1263 +msgid "Select Unpack Directory" +msgstr "" + +#: gui/slick/js/core.js:1326 gui/slick/js/core.js:1376 gui/slick/js/core.js:1425 +#: gui/slick/js/core.js:1491 msgid "This pattern is invalid." msgstr "Этот шаблон является недопустимым." -#: gui/slick/js/core.js:1336 gui/slick/js/core.js:1386 gui/slick/js/core.js:1435 -#: gui/slick/js/core.js:1501 +#: gui/slick/js/core.js:1334 gui/slick/js/core.js:1384 gui/slick/js/core.js:1433 +#: gui/slick/js/core.js:1499 msgid "This pattern would be invalid without the folders, using it will force \"Season Folders\" on for all shows." msgstr "" -#: gui/slick/js/core.js:1344 gui/slick/js/core.js:1394 gui/slick/js/core.js:1443 -#: gui/slick/js/core.js:1509 +#: gui/slick/js/core.js:1342 gui/slick/js/core.js:1392 gui/slick/js/core.js:1441 +#: gui/slick/js/core.js:1507 msgid "This pattern is valid." msgstr "Этот шаблон является допустимым." +#: gui/slick/js/core.js:1818 +msgid "Select .nzb black hole/watch location" +msgstr "" + +#: gui/slick/js/core.js:1819 +msgid "Select .torrent black hole/watch location" +msgstr "" + +#: gui/slick/js/core.js:1820 +msgid "Select .torrent download location" +msgstr "" + +#: gui/slick/js/core.js:1900 +msgid "Minimum seeding time is" +msgstr "" + +#: gui/slick/js/core.js:1902 +msgid "URL to your uTorrent client (e.g. http://localhost:8000)" +msgstr "" + +#: gui/slick/js/core.js:1905 +msgid "Stop seeding when inactive for" +msgstr "" + +#: gui/slick/js/core.js:1911 +msgid "URL to your Transmission client (e.g. http://localhost:9091)" +msgstr "" + +#: gui/slick/js/core.js:1921 +msgid "URL to your Deluge client (e.g. http://localhost:8112)" +msgstr "" + +#: gui/slick/js/core.js:1930 +msgid "IP or Hostname of your Deluge Daemon (e.g. scgi://localhost:58846)" +msgstr "" + +#: gui/slick/js/core.js:1937 +msgid "URL to your Synology DS client (e.g. http://localhost:5000)" +msgstr "" + +#: gui/slick/js/core.js:1941 +msgid "URL to your rTorrent client (e.g. scgi://localhost:5000 <br> or https://localhost/rutorrent/plugins/httprpc/action.php)" +msgstr "" + +#: gui/slick/js/core.js:1952 +msgid "URL to your qBittorrent client (e.g. http://localhost:8080)" +msgstr "" + +#: gui/slick/js/core.js:1962 +msgid "URL to your MLDonkey (e.g. http://localhost:4080)" +msgstr "" + +#: gui/slick/js/core.js:1974 +msgid "URL to your putio client (e.g. http://localhost:8080)" +msgstr "" + +#: gui/slick/js/core.js:1975 +msgid "<a herf=\"https://app.put.io/oauth/apps/new\" target=\"_blank\"> Create a new OAuth app for put.io</a>" +msgstr "" + +#: gui/slick/js/core.js:1977 +msgid "Put.io Parent Folder" +msgstr "" + +#: gui/slick/js/core.js:1978 +msgid "Put.io OAuth Token" +msgstr "" + +#: gui/slick/js/core.js:3383 gui/slick/views/displayShow.mako:410 +msgid "Show Episodes" +msgstr "Показать эпизоды" + +#: gui/slick/js/core.js:3388 gui/slick/views/displayShow.mako:408 +msgid "Hide Episodes" +msgstr "Скрыть эпизоды" + +#: gui/slick/js/core.js:3396 +msgid "Select Show Location" +msgstr "" + +#: gui/slick/js/core.js:3460 +msgid "Select Unprocessed Episode Folder" +msgstr "" + +#: gui/slick/js/core.js:3790 +msgid "DELETED" +msgstr "" + #: gui/slick/js/core.js:4082 msgid "Resume updating the log on this page." msgstr "Возобновление обновления журнала на этой странице." @@ -1415,6 +1548,26 @@ msgstr "Возобновление обновления журнала на эт msgid "Pause updating the log on this page." msgstr "" +#: gui/slick/js/core.js:4323 +msgid "searching {searchingFor}..." +msgstr "" + +#: gui/slick/js/core.js:4334 +msgid "search timed out, try again or try another indexer" +msgstr "" + +#: gui/slick/js/core.js:4503 +msgid "loading folders..." +msgstr "" + +#: gui/slick/js/parsers.js:7 gui/slick/js/parsers.js:8 +#: gui/slick/js/plotTooltip.js:6 gui/slick/js/sceneExceptionsTooltip.js:6 +#: gui/slick/views/inc_home_showList.mako:209 +#: gui/slick/views/inc_home_showList.mako:215 +#: gui/slick/views/inc_home_showList.mako:231 +msgid "Loading..." +msgstr "Загрузка..." + #: gui/slick/views/404.mako:5 msgid "You have reached this page by accident, please check the url." msgstr "Вы попали на эту страницу случайно, пожалуйста, проверьте URL-адрес." @@ -5711,14 +5864,6 @@ msgstr "" msgid "Select Columns" msgstr "Выбрать столбцы" -#: gui/slick/views/displayShow.mako:408 -msgid "Hide Episodes" -msgstr "Скрыть эпизоды" - -#: gui/slick/views/displayShow.mako:410 -msgid "Show Episodes" -msgstr "Показать эпизоды" - #: gui/slick/views/displayShow.mako:424 msgid "NFO" msgstr "NFO" @@ -6232,12 +6377,6 @@ msgstr "Активные" msgid "loading" msgstr "Загрузка" -#: gui/slick/views/inc_home_showList.mako:209 -#: gui/slick/views/inc_home_showList.mako:215 -#: gui/slick/views/inc_home_showList.mako:231 -msgid "Loading..." -msgstr "Загрузка..." - #: gui/slick/views/inc_qualityChooser.mako:31 msgid "<p><b><u>Preferred</u></b> qualities will replace those in <b><u>allowed</u></b>, even if they are lower.</p>" msgstr "<p><b><u>Предпочтительные</u></b> качества заменят те, которые<b><u> разрешены</u></b>, даже если они ниже.</p>" @@ -6775,6 +6914,10 @@ msgstr "Обновление KODI" msgid "Update Emby" msgstr "Обновление Emby" +#: gui/slick/views/layouts/main.mako:167 +msgid "Manage Torrents" +msgstr "Управление торрентами" + #: gui/slick/views/layouts/main.mako:173 msgid "Missed Subtitle Management" msgstr "Управление не найденными субтитрами" diff --git a/locale/sk_SK/LC_MESSAGES/messages.json b/locale/sk_SK/LC_MESSAGES/messages.json index b5ab5134328bdf9220d84c1e84f483fed0933c11..f54525f32be972d104c8fc69796c3e10a5ab1c5f 100644 --- a/locale/sk_SK/LC_MESSAGES/messages.json +++ b/locale/sk_SK/LC_MESSAGES/messages.json @@ -1 +1 @@ -{"messages":{"domain":"messages","locale_data":{"messages":{"100":[null,""],"250":[null,""],"500":[null,""],"":{"domain":"messages","plural_forms":"nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;","lang":"sk_SK"},"Drama":[null,"Dráma"],"Mystery":[null,"Misteriózne"],"Science-Fiction":[null,"Vedecko-fantastický"],"Crime":[null,"Krimi"],"Action":[null,"Akčné"],"Comedy":[null,"Komédia"],"Thriller":[null,"Thriller"],"Animation":[null,"Animovaný"],"Family":[null,"Rodinný"],"Fantasy":[null,"Fantasy"],"Adventure":[null,"Dobrodružné"],"Horror":[null,"Horor"],"Film-Noir":[null,"Film-Noir"],"Sci-Fi":[null,"Sci-Fi"],"Romance":[null,"Romantický"],"Sport":[null,"Šport"],"War":[null,"Vojnový"],"Biography":[null,"Žovotopisný"],"History":[null,"História"],"Music":[null,"Hudobný"],"Western":[null,"Western"],"News":[null,"Novinky"],"Sitcom":[null,"Situačná komédia"],"Reality-TV":[null,"Reality-TV"],"Documentary":[null,"Dokumentárny"],"Game-Show":[null,"Zábavná hra"],"Musical":[null,"Muzikál"],"Talk-Show":[null,"Talk-Show"],"Started Download":[null,"Preberanie začalo"],"Download Finished":[null,"Preberanie dokončené"],"Subtitle Download Finished":[null,"Sťahovanie titulkov dokončené"],"SickRage Updated":[null,"SickRage aktualizovaný"],"SickRage Updated To Commit#: ":[null,"SickRage aktualizovaný na Commit#: "],"SickRage new login":[null,"SickRage nové prihlasovacie údaje"],"New login from IP: {0}. http://geomaplookup.net/?ip={0}":[null,"Nové prihlásenie z IP adresy: {0}. http://geomaplookup.net/?IP={0}"],"Repeat":[null,"Opakovať"],"Repeat (Separated)":[null,""],"Extend":[null,"Rozšíriť"],"Extend (Limited)":[null,"Rozšíriť (obmedzené)"],"Extend (Limited, E-prefixed)":[null,""],"Downloaded":[null,"Stiahnuté"],"Snatched":[null,"Chňapnuté"],"Snatched (Proper)":[null,"Chňapnuté (Proper)"],"Failed":[null,"Zlyhalo"],"Snatched (Best)":[null,"Chňapnuté (Najlepšie)"],"Archived":[null,"Archivované"],"Unknown":[null,"Neznámy"],"Unaired":[null,"Nevysielané"],"Skipped":[null,"Vynechané"],"Wanted":[null,"Požadované"],"Ignored":[null,"Ignorované"],"Subtitled":[null,"S titulkami"],"<No Filter>":[null,"<Bez filtra>"],"Daily Searcher":[null,"Denný vyhľadávač"],"Backlog":[null,"Chýbajúce"],"Show Updater":[null,""],"Check Version":[null,"Skontrolovať verziu"],"Show Queue":[null,""],"Search Queue (All)":[null,""],"Search Queue (Daily Searcher)":[null,""],"Search Queue (Backlog)":[null,""],"Search Queue (Manual)":[null,""],"Search Queue (Retry/Failed)":[null,""],"Search Queue (RSS)":[null,""],"Find Propers":[null,""],"Postprocessor":[null,""],"Find Subtitles":[null,"Hľadanie titulkov"],"Trakt Checker":[null,"Kontrola Traktu"],"Event":[null,"Udalosť"],"Error":[null,"Chyba"],"Tornado":[null,"Tornado"],"Thread":[null,"Vlákno"],"Main":[null,""],"Loading":[null,""],"New update found for SickRage, starting auto-updater":[null,"Nová aktualizácia SickRage, začínam auto-aktualizáciu"],"Update was successful":[null,"Aktualizácia bola úspešná"],"Update failed!":[null,"Aktualizácia zlyhala!"],"Backup":[null,"Záloha"],"Config backup in progress...":[null,"Prebieha záloha nastavení..."],"Config backup successful, updating...":[null,"Záloha nastavení úspešná, aktualizujem..."],"Config backup failed, aborting update":[null,"Záloha nastavení zlyhala, ruším aktualizáciu"],"No update needed":[null,"Žiadna aktualizácia"],"Mako Error":[null,"Mako chyba"],"Oops":[null,"Jejda"],"Wrong API key used":[null,"Použitý zlý API kľúč"],"Login":[null,"Prihlásenie"],"API Key not generated":[null,"API kľúč nebol generovaný"],"API Builder":[null,"API Builder"],"Schedule":[null,"Rozvrh"],"Test 1":[null,"Test 1"],"This is test number 1":[null,"Toto je test číslo 1"],"Test 2":[null,"Test 2"],"This is test number 2":[null,"Toto je test číslo 2"],"You're using the {branch} branch. Please use 'master' unless specifically asked":[null,"Používate {branch} vetvu. Prosím použite 'master' vetvu pokým nie ste požiadaný inak"],"Invalid show parameters":[null,"Neplatné parametre relácie"],"Invalid parameters":[null,"Neplatné parametre"],"Episode couldn't be retrieved":[null,"Epizódu sa nepodarilo získať"],"Home":[null,"Úvod"],"Show List":[null,"Zoznam relácií"],"Error: Unsupported Request. Send jsonp request with 'callback' variable in the query string.":[null,""],"Success. Connected and authenticated":[null,"Úspech. Pripojené a overené"],"Authentication failed. SABnzbd expects":[null,"Overenie zlyhalo. SABnzbd očakáva"],"as authentication method":[null,"ako metóda overovania"],"Unable to connect to host":[null,"Nedá sa pripojiť k hostiteľovi"],"SMS sent successfully":[null,"Správa úspešne odoslaná"],"Problem sending SMS: {message}":[null,"Problém s odosielaním SMS: {message}"],"Telegram notification succeeded. Check your Telegram clients to make sure it worked":[null,"Telegram oznámenie odoslané. Skontrolujte Telegram klientov, či fungovalo"],"Error sending Telegram notification: {message}":[null,"Chyba pri odosielaní Telegram oznámenia: {message}"],"join notification succeeded. Check your join clients to make sure it worked":[null,"join oznámenie odoslané. Skontrolujte join klientov, či fungovalo"],"Error sending join notification: {message}":[null,"Chyba pri odosielaní join oznámenia: {message}"]," with password":[null," s heslom"],"Registered and Tested growl successfully {growl_host}":[null,"growl úspešne zaregistrované a otestované {growl_host}"],"Registration and Testing of growl failed {growl_host}":[null,"Registrácia a testovanie growl neúspešné {growl_host}"],"Test prowl notice sent successfully":[null,"Prowl oznámenie úspešne odoslané"],"Test prowl notice failed":[null,"Test prowl - oznámenie zlyhalo"],"Boxcar2 notification succeeded. Check your Boxcar2 clients to make sure it worked":[null,"Boxcar2 oznámenie odoslané. Skontrolujte Boxcar2 klientov, či fungovalo"],"Error sending Boxcar2 notification":[null,"Chyba pri odosielaní oznámení Boxcar2"],"Pushover notification succeeded. Check your Pushover clients to make sure it worked":[null,"Pushover oznámenie odoslané. Skontrolujte Pushover klientov, či fungovalo"],"Error sending Pushover notification":[null,"Chyba odoslania oznámenia Pushover"],"Key verification successful":[null,"Overenie kľúča úspešné"],"Unable to verify key":[null,"Nepodarilo sa overiť kľúč"],"Tweet successful, check your twitter to make sure it worked":[null,"Tweet odoslaný, skontrolujte si Twitter"],"Error sending tweet":[null,"Chyba odoslania tweetu"],"Please enter a valid account sid":[null,""],"Please enter a valid auth token":[null,""],"Please enter a valid phone sid":[null,""],"Please format the phone number as \"+1-###-###-####\"":[null,""],"Authorization successful and number ownership verified":[null,""],"Error sending sms":[null,"Chyba pri odosielaní sms"],"Slack message successful":[null,"Slack správa odoslaná"],"Slack message failed":[null,"Slack správa zlyhala"],"Discord message successful":[null,""],"Discord message failed":[null,""],"Test KODI notice sent successfully to {kodi_host}":[null,"Test KODI oznámenia úspešne odoslané na {kodi_host}"],"Test KODI notice failed to {kodi_host}":[null,"Test KODI oznámenia do {kodi_host} zlyhalo"],"Successful test notice sent to Plex Home Theater ... {plex_clients}":[null,"Oznámenie úspešne odoslané do Plex Home Theater ...{plex_clients}"],"Test failed for Plex Home Theater ... {plex_clients}":[null,"Test Plex Home Theater neúspešný ... {plex_clients}"],"Tested Plex Home Theater(s)":[null,"Plex Home Theater otestované"],"Successful test of Plex Media Server(s) ... {plex_servers}":[null,"Úspešný test Plex Media Servera(-ov)... {plex_servers}"],"Test failed, No Plex Media Server host specified":[null,"Test zlyhal, Plex Media Server host nešpecifikovaný"],"Test failed for Plex Media Server(s) ... {plex_servers}":[null,"Test Plex Media Server(-ov) neúspešný... {plex_servers}"],"Tested Plex Media Server host(s)":[null,""],"Tried sending desktop notification via libnotify":[null,""],"Test notice sent successfully to {emby_host}":[null,""],"Test notice failed to {emby_host}":[null,""],"Successfully started the scan update":[null,"Skenovanie úspešne spustené"],"Test failed to start the scan update":[null,""],"Test notice sent successfully to {nmj2_host}":[null,""],"Test notice failed to {nmj2_host}":[null,""],"Trakt Authorized":[null,""],"Trakt Not Authorized!":[null,""],"Test email sent successfully! Check inbox.":[null,"Test e-mail bol úspešne odoslaný! Skontrolujte priečinok doručenej pošty."],"ERROR: {last_error}":[null,"CHYBA: {last_error}"],"Test NMA notice sent successfully":[null,""],"Test NMA notice failed":[null,"Test NMA oznámenie zlyhalo"],"Pushalot notification succeeded. Check your Pushalot clients to make sure it worked":[null,""],"Error sending Pushalot notification":[null,"Chyba pri odosielaní oznámení Pushalot"],"Pushbullet notification succeeded. Check your device to make sure it worked":[null,"Pushbullet oznámenie odoslané. Skontrolujte svoje zariadenie aby ste sa presvedčili, že to fungovalo"],"Error sending Pushbullet notification":[null,"Chyba pri odosielaní oznámení Pushbullet"],"Status":[null,"Stav"],"Restarting SickRage":[null,"SickRage sa reštartuje"],"Update Failed":[null,"Aktualizácia zlyhala"],"Update wasn't successful, not restarting. Check your log for more information.":[null,""],"Checking out branch":[null,"Prepínam vetvu (branch)"],"Already on branch":[null,"Vybraná vetva je použitá"],"Invalid show ID: {show}":[null,"Neplatné ID relácie: {show}"],"Show not in show list":[null,"Relácia nie je v zozname relácií"],"Edit":[null,"Upraviť"],"This show is in the process of being downloaded - the info below is incomplete.":[null,""],"The information on this page is in the process of being updated.":[null,""],"The episodes below are currently being refreshed from disk":[null,""],"Currently downloading subtitles for this show":[null,"Titulky pre tento seriál sú sťahované"],"This show is queued to be refreshed.":[null,"Tento seriál je v poradí na aktualizáciu."],"This show is queued and awaiting an update.":[null,"Tento seriál je v poradí a čaká na aktualizáciu."],"This show is queued and awaiting subtitles download.":[null,"Tento seriál je poradí a čaká na stiahnutie titulkov."],"Resume":[null,"Obnoviť"],"Pause":[null,"Pozastaviť"],"Remove":[null,"Odstrániť"],"Re-scan files":[null,"Opätovné skenovanie súborov"],"Force Full Update":[null,"Vynútiť úplnú aktualizáciu"],"Update show in KODI":[null,"Zobraziť reláciu v KODI"],"Update show in Emby":[null,"Zobraziť reláciu v Emby"],"Hide specials":[null,"Skryť špeciály"],"Show specials":[null,"Zobraziť špeciály"],"Preview Rename":[null,"Ukážka premenovania"],"Download Subtitles":[null,"Stiahnuť titulky"],"No scene exceptions":[null,"Žiadne \"scene exceptions\""],"Invalid show ID":[null,"Neplatné ID relácie"],"Unable to find the specified show":[null,"Nepodarilo sa nájsť zadanú reláciu"],"Unable to retreive Fansub Groups from AniDB.":[null,"Nepodarilo sa načítať Fansub skupiny z AniDB."],"Edit Show":[null,"Upraviť reláciu"],"Unable to refresh this show: {error}":[null,"Nepodarilo sa obnoviť tento seriál: {error}"],"New location <tt>{location}</tt> does not exist":[null,"Nové umiestnenie <tt>{location}</tt> neexistuje"],"Unable to update show: {error}":[null,"Nepodarilo sa aktualizovať seriál: {error}"],"Unable to force an update on scene exceptions of the show.":[null,"Nie je možné vynútiť aktualizáciu pre alternatívne názvy seriálu."],"Unable to force an update on scene numbering of the show.":[null,"Nie je možné vynútiť aktualizáciu alternatívneho číslovania seriálu."],"{num_errors:d} error{plural} while saving changes:":[null,"{num_errors:d} error{plural} pri ukladaní zmien:"],"{show_name} has been {paused_resumed}":[null,"{show_name} bol {paused_resumed}"],"resumed":[null,"obnovený"],"paused":[null,"pozastavený"],"{show_name} has been {deleted_trashed} {was_deleted}":[null,"{show_name} bol {deleted_trashed} {was_deleted}"],"deleted":[null,"odstránený"],"trashed":[null,"presunutý do koša"],"(media untouched)":[null,"(médiá ponechané)"],"(with all related media)":[null,"(aj všetky súvisiace médiá)"],"Unable to refresh this show.":[null,"Nepodarilo sa obnoviť tento seriál."],"Unable to update this show.":[null,"Nepodarilo sa aktualizovať tento seriál."],"Library update command sent to KODI host(s)): {kodi_hosts}":[null,"Príkaz na aktualizáciu knižnice bol zaslaný na KODI: {kodi_hosts}"],"Unable to contact one or more KODI host(s)): {kodi_hosts}":[null,"Nemožno kontaktovať jedného alebo viacerých KODI host(s)): {kodi_hosts}"],"Library update command sent to Plex Media Server host: {plex_server}":[null,"Príkaz na aktualizáciu knižnice bol zaslaný do Plex Media Server: {plex_server}"],"Unable to contact Plex Media Server host: {plex_server}":[null,"Nemožno kontaktovať Plex Media Server: {plex_server}"],"Library update command sent to Emby host: {emby_host}":[null,"Príkaz na aktualizáciu knižnice zaslaný na Emby: {emby_host}"],"Unable to contact Emby host: {emby_host}":[null,"Nemožno kontaktovať Emby: {emby_host}"],"You must specify a show and at least one episode":[null,"Musíte vybrať seriál a aspoň jednu epizódu"],"Invalid status":[null,"Neplatný status"],"Backlog was automatically started for the following seasons of <b>{show_name}</b>":[null,"Vyhľadávanie chýbajúcich bolo automaticky začaté pre nasledovné sezóny seriálu <b>{show_name}</b>"],"Season":[null,"Sezóna"],"Backlog started":[null,"Vyhľadávanie chýbajúcich začalo"],"Retrying Search was automatically started for the following season of <b>{show_name}</b>":[null,"Opakované hľadanie bolo automaticky začaté pre nasledovnú sezónu seriálu <b>{show_name}</b>"],"Retry Search started":[null,"Opakované hľadanie začalo"],"You must specify a show":[null,"Musíte vybrať seriál"],"Can't rename episodes when the show dir is missing.":[null,"Nedá sa premenovať epizódy keď chýba priečinok seriálu."],"New subtitles downloaded: {new_subtitle_languages}":[null,"Nové titulky stiahnuté: {new_subtitle_languages}"],"No subtitles downloaded":[null,"Žiadne titulky neboli stiahnuté"],"IRC":[null,"IRC"],"Could not load news from the repo. [Click here for news.md])({news_url})":[null,"Nepodarilo sa načítať novinky z repo. [Kliknite tu pre news.md]({news_url})"],"The was a problem connecting to github, please refresh and try again":[null,"Problém s pripojením na github, prosím obnoviť a skúste to znova"],"Could not load changes from the repo. [Click here for CHANGES.md]({changes_url})":[null,"Nepodarilo sa načítať zmeny z repo. [Kliknite tu pre CHANGES.md]({changes_url})"],"Changelog":[null,"Changelog"],"Post Processing":[null,"Následné spracovanie"],"Add Shows":[null,"Pridať seriály"],"No folders selected.":[null,"Neboli vybrané žiadne priečinky."],"New Show":[null,"Nový seriál"],"Trending Shows":[null,"Trendové seriály"],"Popular Shows":[null,"Populárne seriály"],"Most Anticipated Shows":[null,"Najočakávanejšie seriály"],"Most Collected Shows":[null,""],"Most Watched Shows":[null,""],"Most Played Shows":[null,""],"Recommended Shows":[null,""],"New Shows":[null,"Nový seriál"],"Season Premieres":[null,"Premiéry sezóny"],"Existing Show":[null,"Existujúci seriál"],"No root directories setup, please go back and add one.":[null,"Neboli nastavené koreňové priečinky, prosím vráťte sa späť a jeden pridajte."],"Show added":[null,"Seriál pridaný"],"Adding the specified show {show_name}":[null,"Pridávam vybraný seriál {show_name}"],"Missing params, no Indexer ID or folder: {show_to_add} and {root_dir}/{show_path}":[null,"Chýbajúce parametre, žiadne index ID alebo priečinok: {show_to_add} a {root_dir}/{show_path}"],"Unknown error. Unable to add show due to problem with show selection.":[null,"Neznáma chyba. Nie je možné pridať seriál kvôli problému s výberom seriálu."],"Unable to add show":[null,"Nepodarilo sa pridať seriál"],"Folder {show_dir} exists already":[null,"{show_dir} priečinok už existuje"],"Unable to create the folder {show_dir}, can't add the show":[null,"Nepodarilo sa vytvoriť priečinok {show_dir}, nie je možné pridať seriál"],"Adding the specified show into {show_dir}":[null,"Pridávam vybraný seriál do {show_dir}"],"Shows Added":[null,"Seriály pridané"],"Automatically added {num_shows} from their existing metadata files":[null,"Automaticky pridané {num_shows} na základe existujúcich súborov metadát"],"Mass Update":[null,"Hromadná aktualizácia"],"Episode Overview":[null,"Prehľad epizódy"],"Missing Subtitles":[null,"Chýbajúce titulky"],"Backlog Overview":[null,"Prehľad chýbajúcich"],"Mass Edit":[null,"Hromadná úprava"],"Unable to update show: {excption_format}":[null,"Nepodarilo sa aktualizovať seriál: {excption_format}"],"Unable to refresh show {show_name}: {excption_format}":[null,"Nepodarilo sa obnoviť seriál {show_name}: {excption_format}"],"Errors encountered":[null,"Vyskytli sa chyby"],"Updates":[null,"Aktualizácie"],"Refreshes":[null,"Obnoví"],"Renames":[null,""],"Subtitles":[null,"Titulky"],"The following actions were queued":[null,"Tieto akcie boli zaradené do frontu"],"For best results please set the Download Station alias as":[null,""],"You can check this setting in the Synology DSM":[null,""],"Control Panel":[null,"Ovládací Panel"],"Application Portal":[null,""],"Make sure you allow DSM to be embedded with iFrames too in":[null,""],"DSM Settings":[null,"DSM nastavenia"],"Security":[null,"Zabezpečenie"],"Manage Torrents":[null,"Spravovať torrenty"],"Failed Downloads":[null,"Neúspešné sťahovania"],"Manage Searches":[null,"Správa vyhľadávania"],"Backlog search started":[null,"Vyhľadávanie chýbajúcich začalo"],"Daily search started":[null,"Denné vyhľadávanie začalo"],"Find propers search started":[null,"Vyhľadávanie propers začalo"],"Subtitle search started":[null,"Vyhľadávanie titulkov začalo"],"Remove Selected":[null,""],"Clear History":[null,"Vymazať históriu"],"Trim History":[null,"Redukcia histórie"],"Selected history entries removed":[null,""],"History cleared":[null,"História vymazaná"],"Removed history entries older than 30 days":[null,"Odstrániť z histórie položky staršie ako 30 dní"],"General":[null,"Všeobecné"],"Backup/Restore":[null,"Záloha/Obnova"],"Search Settings":[null,"Nastavenia vyhľadávania"],"Search Providers":[null,"Poskytovatelia hľadania"],"Subtitles Settings":[null,"Nastavenia titulkov"],"Notifications":[null,"Oznámenia"],"Anime":[null,"Anime"],"SickRage Configuration":[null,"Konfigurácia SickRage"],"Config - Shares":[null,""],"Windows Shares Configuration":[null,""],"Saved Shares":[null,""],"Your Windows share settings have been saved":[null,""],"Config - General":[null,"Nastavenia - Všeobecné"],"General Configuration":[null,"Všeobecné nastavenia"],"Saved Defaults":[null,""],"Your \"add show\" defaults have been set to your current selections.":[null,""],"Unable to create directory {directory}, log directory not changed.":[null,"Nedá sa vytvoriť priečinok {directory}, priečinok logu nebol zmenený."],"Unable to create directory {directory}, https cert directory not changed.":[null,"Nedá sa vytvoriť priečinok {directory}, priečinok pre https certifikát nebol zmenený."],"Unable to create directory {directory}, https key directory not changed.":[null,"Nedá sa vytvoriť priečinok {directory}, priečinok pre https kľúč nebol zmenený."],"Error(s) Saving Configuration":[null,"Chyba pri ukladaní nastavení"],"Configuration Saved":[null,"Nastavenia uložené"],"Config - Backup/Restore":[null,"Nastavenia - Záloha a Obnova"],"Config - Episode Search":[null,"Nastavenia - vyhľadávanie epizód"],"Config - Post Processing":[null,"Nastavenia - Následné spracovanie"],"Unpacking Not Supported, disabling unpack setting":[null,"Rozbaľovanie nepodporované, vypínam nastavenia rozbalenia"],"You tried saving an invalid normal naming config, not saving your naming settings":[null,""],"You tried saving an invalid anime naming config, not saving your naming settings":[null,"Pokúsili ste sa uložiť nesprávne nastavenia pomenovania anime, nastavenia neboli uložené"],"Config - Providers":[null,"Nastavenia - Poskytovatelia"],"No Provider Name specified":[null,"Nie je zadaný žiadny názov poskytovateľa"],"No Provider Url specified":[null,"Nie je zadaná Url poskytovateľa"],"No Provider Api key specified":[null,""],"Config - Notifications":[null,"Nastavenia - Oznámenia"],"Config - Subtitles":[null,"Nastavenia - Titulky"],"Config - Anime":[null,"Nastavenia - Anime"],"Clear Errors":[null,"Vymazať chyby"],"Clear Warnings":[null,"Vymazať varovania"],"Submit Errors":[null,"Odoslať chyby"],"Logs & Errors":[null,"Denník & chybové hlásenia"],"Log File":[null,"Súbor denníka"],"Logs":[null,"Záznamy"],"This is a test notification from SickRage":[null,"Toto je test oznámenia od SickRage"],"Please fill out the necessary fields above.":[null,""],"This pattern is invalid.":[null,"Tento vzor je neplatný."],"This pattern would be invalid without the folders, using it will force \"Season Folders\" on for all shows.":[null,""],"This pattern is valid.":[null,"Tento vzor je platný."],"Resume updating the log on this page.":[null,""],"Pause updating the log on this page.":[null,""],"You have reached this page by accident, please check the url.":[null,"Na túto stránku ste sa dostali omylom, skontrolujte správnosť url."],"A mako error has occured.<br>\n If this happened during an update a simple page refresh may be the solution.<br>\n Mako errors that happen during updates may be a one time error if there were significant ui changes.":[null,""],"Show/Hide Error":[null,"Zobraziť alebo skryť chyby"],"Add New Show":[null,"Pridať nový seriál"],"For shows that you haven't downloaded yet, this option finds a show on theTVDB.com, creates a directory for it's episodes, and adds it to SickRage.":[null,"Pre seriály, ktoré ste ešte nesťahovali, táto možnosť nájde seriál na theTVDB.com, vytvorí adresár pre epizódy a pridá ho do SickRage."],"Add From Trakt Lists":[null,"Pridať z Trakt zoznamov"],"For shows that you haven't downloaded yet, this option lets you choose from a show from one of the Trakt lists to add to SickRage.":[null,"Pre seriály, ktoré ste ešte nesťahovali, táto možnosť umožní pridať seriál do SickRage z Trakt zoznamov."],"Add From IMDB's Popular Shows":[null,"Pridať z populárnych seriálov IMDB"],"View IMDB's list of the most popular shows. This feature uses IMDB's MOVIEMeter algorithm to identify popular TV Series.":[null,"Zobraziť IMDB zoznam najpopulárnejších seriálov. Táto funkcia používa IMDB MOVIEMeter na identifikáciu populárnych seriálov."],"Add Existing Shows":[null,"Pridať existujúce seriály"],"Use this option to add shows that already have a folder created on your hard drive. SickRage will scan your existing metadata/episodes and add the show accordingly.":[null,"Túto možnosť použite na pridanie seriálov, ktoré už majú vytvorený priečinok na disku. SickRage preskenuje existujúce metadáta/epizódy a podľa toho pridá seriály."],"Add Existing Show":[null,"Pridať existujúci seriál"],"Manage Directories":[null,"Správa priečinkov"],"Customize Options":[null,"Prispôsobenie možností"],"SickRage can add existing shows, using the current options, by using locally stored NFO/XML metadata to eliminate user interaction. If you would rather have SickRage prompt you to customize each show, then use the checkbox below.":[null,""],"Prompt me to set settings for each show":[null,"Vyzvať na úpravu parametrov pre každý seriál"],"Displaying folders within these directories which aren't already added to SickRage":[null,"Zoznam priečinkov v adresároch, ktoré ešte neboli pridané do SickRage"],"Submit":[null,"Potvrdiť"],"Find a show on theTVDB":[null,"Nájsť seriál na theTVDB"],"Show retrieved from existing metadata":[null,"Seriál zistený na základe existujúcich metadát"],"All Indexers":[null,"Všetky indexové weby"],"Search":[null,"Hľadať"],"This will only affect the language of the retrieved metadata file contents and episode filenames.":[null,"Toto ovplyvní iba jazyk popisu obsahu a názvy súborov epizód."],"This <b>DOES NOT</b> allow SickRage to download non-english TV episodes!":[null,"Toto <b>NEUMOŽNÍ</b> sťahovanie neanglických TV epizód!"],"Pick the parent folder":[null,"Vyberte nadradený priečinok"],"Pre-chosen Destination Folder":[null,"Vopred vybraný cieľový priečinok"],"Customize options":[null,"Vlastné možnosti"],"Add Show":[null,"Pridať seriál"],"Skip Show":[null,"Preskočiť seriál"],"Sort By":[null,"Zoradiť podľa"],"Name":[null,"Meno"],"Original":[null,"Pôvodné"],"Votes":[null,"Hlasy"],"Rating":[null,"Hodnotenie"],"Rating > Votes":[null,"Hodnotenie > Hlasy"],"Sort Order":[null,"Poradie radenia"],"Asc":[null,"Vzostupne"],"Desc":[null,"Zostupne"],"Fetching of IMDB Data failed. Are you online?":[null,"Načítanie dát z IMDB zlyhalo. Ste pripojený?"],"Exception":[null,"Výnimka"],"Select Trakt List":[null,"Vyberte Trakt zoznam"],"Most Anticipated":[null,"Najočakávanejšie"],"Trending":[null,"Trendové"],"Popular":[null,"Populárne"],"Most Watched":[null,"Najsledovanejšie"],"Most Played":[null,"Najhranejšie"],"Most Collected":[null,"Najviac zbierané"],"Recommended":[null,"Odporúčané"],"Toggle navigation":[null,"Prepnúť navigáciu"],"Profile":[null,"Profil"],"JSONP":[null,"JSONP"],"Back to SickRage":[null,"Späť na SickRage"],"Parameters":[null,"Parametre"],"Required":[null,"Povinné"],"Description":[null,"Popis"],"Type":[null,"Typ"],"Default value":[null,"Predvolená hodnota"],"Allowed values":[null,"Povolenné hodnoty"],"Playground":[null,"Ihrisko"],"Clear":[null,"Vyčistiť"],"Yes":[null,"Áno"],"No":[null,"Nie"],"season":[null,"sezóna"],"episode":[null,"epizóda"],"Python Version":[null,"Python verzia"],"SSL Version":[null,"Verzia SSL"],"OS":[null,"OS"],"Locale":[null,"Miestne nastavenia"],"User":[null,"Používateľ"],"Program Folder":[null,"Priečinok programu"],"Config File":[null,"Súbor nastavení"],"Database File":[null,"Súbor databázy"],"Cache Folder":[null,"Priečinok vyrovnávacej pamäte"],"Log Folder":[null,"Priečinok denníka"],"Arguments":[null,"Argumenty"],"Web Root":[null,"Koreň web stránky"],"Website":[null,"Web stránka"],"Wiki":[null,"Wiki"],"Source":[null,"Zdroj"],"IRC Chat":[null,"IRC Chat"],"AnimeDB Settings":[null,"AnimeDB nastavenia"],"Look & Feel":[null,"Vzhľad a správanie"],"AniDB is non-profit database of anime information that is freely open to the public":[null,"AniDB je nezisková databáza anime dát, ktoré sú voľne prístupné pre verejnosť"],"Enable":[null,"Zapnúť"],"should SickRage use data from AniDB?":[null,"má SickRage použiť dáta z AniDB?"],"AniDB Username":[null,"Užívateľské meno AniDB"],"username of your AniDB account":[null,"meno používateľa AniDB účtu"],"AniDB Password":[null,"AniDB heslo"],"password of your AniDB account":[null,"heslo k AniDB účtu"],"AniDB MyList":[null,"AniDB MyList"],"do you want to add the PostProcessed episodes to the MyList?":[null,""],"Look and Feel":[null,"Vzhľad a správanie"],"How should the anime functions show and behave.":[null,"Ako sa majú anime funkcie zobraziť a správať."],"Split show lists":[null,"Oddeliť zoznamy seriálov"],"separate anime and normal shows in groups":[null,"rozdeliť anime a normálne seriály do skupín"],"Split in tabs":[null,"Rozdeliť na karty"],"use tabs for when splitting show lists":[null,""],"Restore":[null,"Obnoviť"],"Backup your main database file and config.":[null,"Záloha hlavnej databázy a nastavení."],"Select the folder you wish to save your backup file to":[null,"Vyberte priečinok, do ktorého si želáte uložiť zálohu"],"Restore your main database file and config.":[null,"Obnova vašej hlavnej databázy a nastavení."],"Select the backup file you wish to restore":[null,"Vyberte záložný súbor, ktorý chcete obnoviť"],"Misc":[null,"Rôzne"],"Interface":[null,"Rozhranie"],"Advanced Settings":[null,"Pokročilé Nastavenia"],"Startup options. Indexer options. Log and show file locations.":[null,"Možnosti spustenia. Možnosti indexovania. Umiestnenie súborov denníka a seriálov."],"Some options may require a manual restart to take effect.":[null,"Niektoré voľby môžu vyžadovať reštart aby sa prejavili."],"Default Indexer Language":[null,"Predvolený jazyk Indexera"],"for adding shows and metadata providers":[null,""],"Launch browser":[null,"Spustiť prehliadač"],"open the SickRage home page on startup":[null,"otvoriť hlavnú stránku SickRage pri štarte"],"Initial page":[null,"Uvodná stránka"],"Shows":[null,"Seriály"],"when launching SickRage interface":[null,"pri spustení SickRage rozhrania"],"Choose hour to update shows":[null,"Zvoľte v ktorú hodinu aktualizovať seriály"],"with information such as next air dates, show ended, etc. Use 15 for 3pm, 4 for 4am etc.":[null,"údaje o vysielacích časoch, ukončení seriálu, atď."],"note":[null,"poznámka"],"minutes are randomized each time SickRage is started":[null,"minúty sú náhodne určené pri každom spustení SickRage"],"Send to trash for actions":[null,"Odoslať do koša pri"],"when using show \"Remove\" and delete files":[null,"pri odstránení seriálu s voľbou zmazania súborov"],"on scheduled deletes of the oldest log files":[null,"pri plánovanom mazaní starých súborov denníka"],"selected actions use trash (recycle bin) instead of the default permanent delete":[null,"pri vybraných akciách sa súbory presunú do Kôša namiesto trvalého zmazania"],"Log file folder location":[null,"Miesto pre ukladanie súborov denníka"],"Number of Log files saved":[null,"Počet posledných súborov denníka"],"number of log files saved when rotating logs (default: 5) (REQUIRES RESTART)":[null,"počet súborov denníka ktoré budú na disku pri vytváraní nového súboru (predvolené: 5) (POŽADUJE REŠTART)"],"Size of Log files saved":[null,""],"maximum size in MB of the log file (default: 1MB) (REQUIRES RESTART)":[null,""],"Use initial indexer set to":[null,""],"as the default selection when adding new shows":[null,""],"Timeout show indexer at":[null,""],"seconds of inactivity when finding new shows (default:20)":[null,""],"Show root directories":[null,""],"where the files of shows are located":[null,""],"Save Changes":[null,"Uložiť zmeny"],"Options for software updates.":[null,""],"Check software updates":[null,""],"and display notifications when updates are available. Checks are run on startup and at the frequency set below*":[null,""],"Automatically update":[null,""],"fetch and install software updates. Updates are run on startup and in the background at the frequency set below*":[null,""],"Check the server every*":[null,""],"hours for software updates (default:1)":[null,""],"Notify on software update":[null,""],"send a message to all enabled notifiers when SickRage has been updated":[null,""],"User Interface":[null,""],"Options for visual appearance.":[null,""],"Interface Language":[null,"Jazyk rozhrania"],"System Language":[null,"Jazyk systému"],"for appearance to take effect, save then refresh your browser":[null,""],"Display theme":[null,"Téma zobrazenia"],"Dark":[null,"Tmavá"],"Light":[null,"Svetlá"],"Use a background image":[null,""],"use a custom image as background for SickRage":[null,""],"Background Path":[null,""],"Path to the background image":[null,""],"Show fanart in the background":[null,"Zobraziť fanart v pozadí"],"on the show summary page":[null,"Na hlavnej stránke seriálu"],"Fanart transparency":[null,"Priehľadnosť fanartu"],"transparency of the fanart in the background":[null,""],"Use a custom stylesheet file":[null,""],"use a custom .css file to style SickRage (for advanced users)":[null,""],"Stylesheet File Path":[null,""],"Path to the stylesheet (.css) file":[null,""],"Show all seasons":[null,"Zobraziť všetky sezóny"],"Sort with \"The\", \"A\", \"An\"":[null,"Zoraďovať s členmi"],"include articles (\"The\", \"A\", \"An\") when sorting show lists":[null,"Pri zoradení seriálov zahrnúť anglický člen (\"The\", \"A\", \"An\")"],"Missed episodes range":[null,"Rozsah zmeškaných epizód"],"set the range in days of the missed episodes in the Schedule page":[null,""],"Display fuzzy dates":[null,""],"move absolute dates into tooltips and display e.g. \"Last Thu\", \"On Tue\"":[null,""],"Trim zero padding":[null,""],"remove the leading number \"0\" shown on hour of day, and date of month":[null,""],"Date style":[null,"Formát dátumu"],"Use System Default":[null,"Použiť predvolené nastavenie"],"Time style":[null,""],"seconds are only shown on the History page":[null,""],"Timezone":[null,""],"Local":[null,"Miestne"],"Network":[null,"Sieť"],"display dates and times in either your timezone or the shows network timezone":[null,""],"use local timezone to start searching for episodes minutes after show ends (depends on your dailysearch frequency)":[null,""],"Download url":[null,""],"URL where the shows can be downloaded.":[null,""],"Web Interface":[null,""],"it is recommended that you enable a username and password to secure SickRage from being tampered with remotely.":[null,""],"these options require a manual restart to take effect.":[null,""],"API key":[null,""],"used to give 3rd party programs limited access to SickRage":[null,""],"you can try all the features of the API":[null,""],"here":[null,"tu"],"HTTP logs":[null,""],"enable logs from the internal Tornado web server":[null,"povoliť denníky z interného web servera Tornado"],"HTTP username":[null,"Prihlasovacie meno"],"set blank for no login":[null,"ak nechcete požadovať prihlásenie nechajte prázdne"],"HTTP password":[null,"HTTP heslo"],"blank = no authentication":[null,"prázdne = bez overenia"],"HTTP port":[null,"HTTP port"],"web port to browse and access SickRage (default:8081)":[null,"webový port na prístup k SickRage (predvolený: 8081)"],"Notify on login":[null,"Upozorniť na prihlásenie"],"enable to be notified when a new login happens in webserver":[null,"umožní zaslať notifikáciu pri prihlásení"],"Listen on IPv6":[null,"Načúvať na protokole IPv6"],"attempt binding to any available IPv6 address":[null,"pokúsiť sa o väzbu na akúkoľvek dostupnú IPv6 adresu"],"Enable HTTPS":[null,"Zapnúť HTTPS"],"enable access to the web interface using a HTTPS address":[null,"umožní šifrovaný prístup k web rozhraniu"],"HTTPS certificate":[null,"Certifikát HTTPS"],"file name or path to HTTPS certificate":[null,"názov súboru alebo cesta k HTTPS certifikátu"],"HTTPS key":[null,"Kľúč HTTPS"],"file name or path to HTTPS key":[null,"názov súboru alebo cesta k HTTPS kľúču"],"Reverse proxy headers":[null,"Spätné proxy hlavičky"],"accept the following reverse proxy headers (advanced)...":[null,"akceptovať nasledovné spätné proxy server hlavičky (pokročilé)..."],"(X-Forwarded-For, X-Forwarded-Host, and X-Forwarded-Proto)":[null,"(X-Forwarded-For, X-Forwarded-Host, a X-Forwarded-Proto)"],"CPU throttling":[null,"Obmedzovanie CPU"],"Normal (default). High is lower and Low is higher CPU use":[null,"Normálne (predvolené). Vysoké = nižšie zaťaženie a Nízke = vyššie zaťaženie CPU"],"Anonymous redirect":[null,"Anonymné presmerovanie"],"backlink protection via anonymizer service, must end in \"?\"":[null,"ochrana pred sledovaním pomocou anonymizačnej služby, musí končiť \"?\""],"Enable debug":[null,"Povoliť ladenie"],"enable debug logs":[null,"povoliť ladiace zápisy do denníka"],"Verify SSL Certs":[null,"Overovať SSL Certifikáty"],"verify SSL Certificates (Disable this for broken SSL installs (Like QNAP))":[null,"overovať SSL Certifikáty (Vypnite pri zariadeniach kde SSL nie je inštalované správne (napr. QNAP))"],"No Restart":[null,"Bez Reštartu"],"only shutdown when restarting SR":[null,"pri zvolení možnosti reštartu sa SickRage vypne"],"only select this when you have external software restarting SR automatically when it stops (like FireDaemon)":[null,"použite iba v prípade, že používate iný nástroj na automatický reštart SR, keď sa ukončí (napr. FireDaemon)"],"Encrypt passwords":[null,"Šifrovanie hesiel"],"in the <code>config.ini</code> file":[null,"v <code>config.ini</code> súbore"],"warning":[null,"upozornenie"],"passwords must only contain":[null,"heslá môžu obsahovať iba"],"ASCII characters":[null,"ASCII znaky"],"Unprotected calendar":[null,"Nechránený kalendár"],"allow subscribing to the calendar without user and password":[null,"povolí prihlásenie ku kalendáru bez používateľského mena a hesla"],"some services like Google Calendar only work this way":[null,"niektoré služby ako napr. Google Kalendár fungujú iba s týmto nastavením"],"Google Calendar Icons":[null,"Ikony v Kalendári Google"],"show an icon next to exported calendar events in Google Calendar":[null,"zobrazí ikonu pri exportovaných udalostiach v Kalendári Google"],"Proxy host":[null,"Hostiteľ proxy"],"blank to disable or proxy to use when connecting to providers":[null,"zadajte názov proxy servera ktorý sa má použiť pri kontaktovaní zdrojov alebo nechajte prázdne"],"also use global proxy setting for indexers (tvdb, xem, anidb, etc.)":[null,"použiť proxy nastavenia aj pre index stránky (tvdb, xem, anidb, atď)"],"Skip Remove Detection":[null,"Preskočiť detekciu odstránených"],"skip detection of removed files":[null,"preskočí detekciu odstránených súborov"],"if disabled the episode will be set to the default deleted status":[null,"ak je vypnuté, stav epizódy bude nastavený na predvolenú hodnotu pre vymazané"],"Default deleted episode status":[null,"Predvolené označenie vymazaných epizód"],"define the status to be set for media file that has been deleted.":[null,"vyberte stav, ktorý má byť použitý pre epizódy, ktoré boli vymazané."],"Archived option will keep previous downloaded quality":[null,""],"example: Downloaded (1080p WEB-DL) ==> Archived (1080p WEB-DL)":[null,""],"Options for github related features.":[null,""],"Branch version":[null,""],"error: No branches found.":[null,""],"select branch to use (restart required)":[null,""],"Authorization Type":[null,""],"Username and password":[null,""],"Personal access token":[null,""],"You must use a personal access token if you're using \"two-factor authentication\" on GitHub.":[null,""],"GitHub username":[null,""],"*** (REQUIRED FOR SUBMITTING ISSUES) ***":[null,""],"GitHub password":[null,""],"GitHub personal access token":[null,""],"Generate Token":[null,""],"Manage Tokens":[null,""],"GitHub remote for branch":[null,""],"access repo configured remotes (save then refresh browser)":[null,""],"default":[null,""],"origin":[null,""],"Git executable path":[null,""],"only needed if OS is unable to locate git from env":[null,""],"Git reset":[null,""],"removes untracked files and performs a hard reset on git branch automatically to help resolve update issues":[null,""],"Home Theater / NAS":[null,""],"Devices":[null,""],"Social":[null,""],"A free and open source cross-platform media center and home entertainment system software with a 10-foot user interface designed for the living-room TV.":[null,""],"send KODI commands?":[null,""],"Always on":[null,""],"log errors when unreachable?":[null,""],"Notify on snatch":[null,"Oznámiť pri začatí sťahovania"],"send a notification when a download starts?":[null,""],"Notify on download":[null,""],"send a notification when a download finishes?":[null,""],"Notify on subtitle download":[null,""],"send a notification when subtitles are downloaded?":[null,""],"Update library":[null,""],"update KODI library when a download finishes?":[null,""],"Full library update":[null,""],"perform a full library update if update per-show fails?":[null,""],"Only update first host":[null,""],"only send library updates to the first active host?":[null,""],"KODI IP:Port":[null,""],"host running KODI (eg. 192.168.1.100:8080)":[null,""],"(multiple host strings must be separated by commas)":[null,""],"Username":[null,""],"username for your KODI server (blank for none)":[null,""],"Password":[null,""],"password for your KODI server (blank for none)":[null,""],"Click below to test.":[null,""],"Experience your media on a visually stunning, easy to use interface on your Mac connected to your TV. Your media library has never looked this good!":[null,""],"For sending notifications to Plex Home Theater (PHT) clients, use the KODI notifier with port <b>3005</b>.":[null,""],"send Plex Media Server library updates?":[null,""],"Plex Media Server Auth Token":[null,""],"auth token used by Plex":[null,""],"Update Library":[null,""],"update Plex Media Server library when a download finishes":[null,""],"Plex Media Server IP:Port":[null,""],"one or more hosts running Plex Media Server<br/>(eg. 192.168.1.1:32400, 192.168.1.2:32400)":[null,""],"HTTPS":[null,""],"use https for plex media server requests?":[null,""],"Click below to test Plex Media Server(s)":[null,""],"Test Plex Media Server":[null,""],"Plex Home Theater":[null,""],"send Plex Home Theater notifications?":[null,""],"Plex Home Theater IP:Port":[null,""],"one or more hosts running Plex Home Theater<br>(eg. 192.168.1.100:3000, 192.168.1.101:3000)":[null,""],"Click below to test Plex Home Theater(s)":[null,""],"Test Plex Home Theater":[null,""],"some Plex Home Theaters <b class=\"boldest\">do not</b> support notifications e.g. Plexapp for Samsung TVs":[null,""],"Emby":[null,""],"A home media server built using other popular open source technologies.":[null,""],"send update commands to Emby?":[null,""],"Emby IP:Port":[null,""],"host running Emby (eg. 192.168.1.100:8096)":[null,""],"Emby API Key":[null,""],"Networked Media Jukebox":[null,""],"The Networked Media Jukebox, or NMJ, is the official media jukebox interface made available for the Popcorn Hour 200-series.":[null,""],"send update commands to NMJ?":[null,""],"Popcorn IP address":[null,""],"IP address of Popcorn 200-series (eg. 192.168.1.100)":[null,""],"Get settings":[null,""],"Get Settings":[null,""],"the Popcorn Hour device must be powered on and NMJ running.":[null,""],"NMJ database":[null,""],"automatically filled via the 'Get Settings' button.":[null,""],"NMJ mount url":[null,""],"Networked Media Jukebox v2":[null,""],"The Networked Media Jukebox, or NMJv2, is the official media jukebox interface made available for the Popcorn Hour 300 & 400-series.":[null,""],"send update commands to NMJv2?":[null,""],"IP address of Popcorn 300/400-series (eg. 192.168.1.100)":[null,""],"Database location":[null,""],"Database instance":[null,""],"adjust this value if the wrong database is selected.":[null,""],"Find database":[null,""],"Find Database":[null,""],"the Popcorn Hour device must be powered on.":[null,""],"NMJv2 database":[null,""],"automatically filled via the 'Find Database' buttons.":[null,""],"Synology":[null,""],"The Synology DiskStation NAS.":[null,""],"Synology Indexer is the daemon running on the Synology NAS to build its media database.":[null,""],"send Synology notifications?":[null,""],"requires SickRage to be running on your Synology NAS.":[null,""],"Synology Indexer":[null,""],"Synology Notifier is the notification system of Synology DSM":[null,""],"send notifications to the Synology Notifier?":[null,""],"pyTivo":[null,""],"pyTivo is both an HMO and GoBack server. This notifier will load the completed downloads to your Tivo.":[null,""],"send notifications to pyTivo?":[null,""],"requires the downloaded files to be accessible by pyTivo.":[null,""],"pyTivo IP:Port":[null,""],"host running pyTivo (eg. 192.168.1.1:9032)":[null,""],"pyTivo share name":[null,""],"value used in pyTivo Web Configuration to name the share.":[null,""],"Tivo name":[null,""],"(Messages & Settings > Account & System Information > System Information > DVR name)":[null,""],"Growl":[null,""],"A cross-platform unobtrusive global notification system.":[null,""],"send Growl notifications?":[null,""],"Growl IP:Port":[null,""],"host running Growl (eg. 192.168.1.100:23053)":[null,""],"may leave blank if SickRage is on the same host.":[null,""],"otherwise Growl <b>requires</b> a password to be used.":[null,""],"Click below to register and test Growl, this is required for Growl notifications to work.":[null,""],"Register Growl":[null,""],"Prowl":[null,""],"A Growl client for iOS.":[null,""],"send Prowl notifications?":[null,""],"Prowl Message Title":[null,""],"Global Prowl API key(s)":[null,""],"Prowl API(s) listed here, separated by commas if applicable, will<br> receive notifications for <b>all</b> shows. Your Prowl API key is available at:":[null,""],"(this field may be blank except when testing.)":[null,""],"Show notification list":[null,""],"-- Select a Show --":[null,""],"Configure per-show notifications here by entering Prowl API key(s), separated by commas, '\n 'after selecting a show in the drop-down box. Be sure to activate the 'Save for this show' '\n 'button below after each entry.":[null,""],"Save for this show":[null,""],"Prowl priority":[null,""],"Very Low":[null,""],"Moderate":[null,""],"Normal":[null,"Normálne"],"High":[null,"Vysoké"],"Emergency":[null,""],"priority of Prowl messages from SickRage.":[null,""],"Libnotify":[null,""],"The standard desktop notification API for Linux/*nix systems. This notifier will only function if the pynotify module is installed (Ubuntu/Debian package <a href=\"apt:python-notify\">python-notify</a>).":[null,""],"send Libnotify notifications?":[null,""],"Pushover":[null,""],"Pushover makes it easy to send real-time notifications to your Android and iOS devices.":[null,""],"send Pushover notifications?":[null,""],"Pushover key":[null,""],"user key of your Pushover account":[null,""],"Pushover API key":[null,""],"click here":[null,""]," to create a Pushover API key":[null,""],"Pushover devices":[null,""],"comma separated list of pushover devices you want to send notifications to":[null,""],"Pushover notification sound":[null,""],"Bike":[null,""],"Bugle":[null,""],"Cash Register":[null,""],"Classical":[null,""],"Cosmic":[null,""],"Falling":[null,""],"Gamelan":[null,""],"Incoming":[null,""],"Intermission":[null,""],"Magic":[null,""],"Mechanical":[null,""],"Piano Bar":[null,""],"Siren":[null,""],"Space Alarm":[null,""],"Tug Boat":[null,""],"Alien Alarm (long)":[null,""],"Climb (long)":[null,""],"Persistent (long)":[null,""],"Pushover Echo (long)":[null,""],"Up Down (long)":[null,""],"None (silent)":[null,""],"Device specific":[null,""],"choose notification sound to use":[null,""],"Pushover priority":[null,""],"Choose priority to use":[null,""],"Boxcar 2":[null,""],"Read your messages where and when you want them!":[null,""],"send Boxcar notifications?":[null,""],"Boxcar2 access token":[null,""],"access token for your Boxcar account.":[null,""],"NMA":[null,""],"Notify My Android":[null,""],"Notify My Android is a Prowl-like Android App and API that offers an easy way to send notifications from your application directly to your Android device.":[null,""],"send NMA notifications?":[null,""],"NMA API key":[null,""],"(multiple keys must be separated by commas, up to a maximum of 5)":[null,""],"NMA priority":[null,""],"priority of NMA messages from SickRage.":[null,""],"Pushalot":[null,""],"Pushalot is a platform for receiving custom push notifications to connected devices running Windows Phone or Windows 8.":[null,""],"send Pushalot notifications ?":[null,""],"Pushalot authorization token":[null,""],"authorization token of your Pushalot account.":[null,""],"Pushbullet":[null,""],"Pushbullet is a platform for receiving custom push notifications to connected devices running Android/iOS and desktop browsers such as Chrome, Firefox or Opera.":[null,""],"send Pushbullet notifications?":[null,""],"Pushbullet API key":[null,""],"API key of your Pushbullet account":[null,""],"Pushbullet devices":[null,""],"Update device list":[null,""],"Pushbullet channels":[null,""],"Free Mobile":[null,""],"Free Mobile is a famous French cellular network provider.<br> It provides to their customer a free SMS API.":[null,""],"send SMS notifications?":[null,""],"send a SMS when a download starts?":[null,""],"send a SMS when a download finishes?":[null,""],"send a SMS when subtitles are downloaded?":[null,""],"Free Mobile customer ID":[null,""],"it's your Free Mobile customer ID (8 digits)":[null,""],"Free Mobile API key":[null,""],"find your API key in your customer portal.":[null,""],"Click below to test your settings.":[null,""],"Telegram":[null,""],"Telegram is a cloud-based instant messaging service.":[null,""],"send Telegram notifications?":[null,""],"send a message when a download starts?":[null,""],"send a message when a download finishes?":[null,""],"send a message when subtitles are downloaded?":[null,""],"User/group ID":[null,""],"contact @myidbot on Telegram to get an ID":[null,""],"Bot API token":[null,""],"contact @BotFather on Telegram to set up one":[null,""],"Join":[null,""],"Join all of your devices together!":[null,""],"send Join notifications?":[null,""],"Device ID":[null,""],"per device specific id":[null,""]," to create a Join API key":[null,""],"Twilio":[null,""],"Twilio is a webservice API that allows you to communicate directly with a mobile number. This notifier will send a text directly to your mobile device.":[null,""],"should SickRage text your mobile device?":[null,""],"Twilio Account SID":[null,""],"account SID of your Twilio account.":[null,""],"Twilio Auth Token":[null,""],"Twilio Phone SID":[null,""],"phone SID that you would like to send the sms from":[null,""],"Your phone number":[null,""],"phone number that will receive the sms. Please use the format +1-###-###-####":[null,""],"Twitter":[null,""],"A social networking and microblogging service, enabling its users to send and read other users' messages called tweets.":[null,""],"should SickRage post tweets on Twitter?":[null,""],"you may want to use a secondary account.":[null,""],"send direct message":[null,""],"send a notification via Direct Message, not via status update":[null,""],"send DM to":[null,""],"Twitter account to send Direct Messages to (must follow you)":[null,""],"Step One":[null,""],"Request Authorization":[null,""],"Click the \"Request Authorization\" button.<br> This will open a new page containing an auth key.<br> <b>note:</b> if nothing happens check your popup blocker.":[null,""],"Step Two":[null,""],"Enter the key Twitter gave you below, and click \"Verify Key\".":[null,""],"Trakt":[null,""],"Trakt helps keep a record of what TV shows and movies you are watching. Based on your favorites, Trakt recommends additional shows and movies you'll enjoy!":[null,""],"send Trakt.tv notifications?":[null,""],"username of your Trakt account.":[null,""],"Trakt PIN":[null,""],"Get Trakt PIN":[null,""],"PIN code to authorize SickRage to access Trakt on your behalf.":[null,""],"API Timeout":[null,""],"seconds to wait for Trakt API to respond. (Use 0 to wait forever)":[null,""],"Default indexer":[null,""],"Sync libraries":[null,""],"sync your SickRage show library with your trakt show library.":[null,""],"Remove Episodes From Collection":[null,""],"remove an episode from your Trakt Collection if it is not in your SickRage Library.":[null,""],"Sync watchlist":[null,""],"sync your SickRage show watchlist with your trakt show watchlist (either Show and Episode).":[null,""],"episode will be added on watch list when wanted or snatched and will be removed when downloaded ":[null,""],"Watchlist add method":[null,""],"Skip All":[null,""],"Download Pilot Only":[null,""],"Get whole show":[null,""],"method in which to download episodes for new shows.":[null,""],"Remove episode":[null,""],"remove an episode from your watchlist after it is downloaded.":[null,""],"Remove series":[null,""],"remove the whole series from your watchlist after any download.":[null,""],"Remove watched show":[null,""],"remove the show from sickrage if it's ended and completely watched":[null,""],"Start paused":[null,""],"shows grabbed from your trakt watchlist start paused.":[null,""],"Trakt blackList name":[null,""],"name (slug) of list on Trakt for blacklisting show on 'Add Trending Show' & 'Add Recommended Shows' pages":[null,""],"Email":[null,""],"Allows configuration of email notifications on a per show basis.":[null,""],"send email notifications?":[null,""],"SMTP host":[null,""],"hostname of your SMTP email server.":[null,""],"SMTP port":[null,""],"port number used to connect to your SMTP host.":[null,""],"SMTP from":[null,""],"sender email address, some hosts require a real address.":[null,""],"Use TLS":[null,""],"check to use TLS encryption.":[null,""],"SMTP user":[null,""],"(optional) your SMTP server username.":[null,""],"SMTP password":[null,""],"(optional) your SMTP server password.":[null,""],"Global email list":[null,""],"email addresses listed here, separated by commas if applicable, will<br> receive notifications for <b>all</b> shows.":[null,""],"(This field may be blank except when testing.)":[null,""],"Email Subject":[null,""],"use a custom subject for some privacy protection?":[null,""],"(leave blank for the default SickRage subject)":[null,""],"configure per-show notifications here by entering email address(es), separated by commas,":[null,""],"after selecting a show in the drop-down box. Be sure to activate the 'Save for this show'":[null,""],"button below after each entry.":[null,""],"Slack":[null,""],"Slack brings all your communication together in one place. It's real-time messaging, archiving and search for modern teams.":[null,""],"should SickRage post messages on Slack?":[null,""],"Slack Incoming Webhook":[null,""],"Discord":[null,""],"All-in-one voice and text chat for gamers that's free, secure, and works on both your desktop and phone.":[null,""],"Should SickRage post messages on Discord?":[null,""],"Discord Incoming Webhook":[null,""],"Create webhook under channel settings.":[null,""],"Discord Bot Name":[null,""],"Blank will use webhook default Name.":[null,""],"Discord Avatar URL":[null,""],"Blank will use webhook default Avatar.":[null,""],"Discord TTS":[null,""],"Send notifications using text-to-speech":[null,""],"Post-Processing":[null,""],"Episode Naming":[null,""],"Metadata":[null,""],"Settings that dictate how SickRage should process completed downloads.":[null,""],"enable the automatic post processor to scan and process any files in your Post Processing Dir":[null,""],"do not use if you use an external Post Processing script":[null,""],"Post Processing Dir":[null,""],"the folder where your download client puts the completed TV downloads.":[null,""],"please use seperate downloading and completed folders in your download client if possible.":[null,""],"Processing Method":[null,""],"what method should be used to put files into the library?":[null,""],"if you keep seeding torrents after they finish, please avoid the 'move' processing method to prevent errors.":[null,""],"Auto Post-Processing Frequency":[null,""],"time in minutes to check for new files to auto post-process (min 10)":[null,""],"Postpone post processing":[null,""],"wait to process a folder if sync files are present.":[null,""],"Sync File Extensions":[null,""],"comma seperated list of extensions or filename globs SickRage ignores when Post Processing":[null,""],"Rename Episodes":[null,""],"rename episode using the Episode Naming settings?":[null,""],"Create missing show directories":[null,""],"create missing show directories when they get deleted":[null,""],"Add shows without directory":[null,""],"add shows without creating a directory (not recommended)":[null,""],"Move associated files":[null,""],"move associated (srt/srr/sfv/etc) files while post processing?":[null,""],"Rename .nfo file":[null,""],"rename the original .nfo file to .nfo-orig to avoid conflicts?":[null,""],"Associated file extensions":[null,""],"comma separated list of associated file extensions SickRage should keep while post processing.":[null,""],"leaving it empty means no associated files will be post processed":[null,""],"Delete non associated files":[null,""],"delete non associated files while post processing?":[null,""],"Change File Date":[null,""],"set last modified filedate to the date that the episode aired?":[null,""],"some systems may ignore this feature.":[null,""],"Timezone for File Date":[null,""],"local":[null,""],"network":[null,""],"what timezone should be used to change File Date?":[null,""],"Unpack":[null,""],"What to do with archived releases found in your <i>TV Download Dir</i>?":[null,""],"Ignore (do not process contents)":[null,""],"Unpack (process contents)":[null,""],"Treat as video (process archive as-is)":[null,""],"'Unpack' only works with RAR archives":[null,""],"Windows":[null,""],"WinRar is required on windows":[null,""],"Unpack Directory":[null,""],"Choose a path to unpack files, leave blank to unpack in download dir":[null,""],"Unrar Location":[null,""],"add the path to unrar if it is not in the system path":[null,""],"Alternate Unrar Tool":[null,""],"add the path to an alternate unrar tool if it is not in the system path":[null,""],"Delete RAR contents":[null,""],"delete content of RAR files, even if Process Method not set to move?":[null,""],"only working with RAR archive":[null,""],"Don't delete empty folders":[null,""],"leave empty folders when Post Processing?":[null,""],"can be overridden using manual Post Processing":[null,""],"Follow symbolic-links":[null,""],"follow down symbolic links in download directory?":[null,""],"<b>EXPERTS ONLY.</b><br>Enable only if you know what <b>circular symbolic links</b> are,<br>and can <b>verify that you have none</b>.":[null,""],"Use icacls":[null,""],"Windows only":[null,""],"sets video permissions after using the move method in post processing":[null,""],"Extra Scripts":[null,""],"see":[null,""],"for script arguments description and usage.":[null,""],"How SickRage will name and sort your episodes.":[null,""],"Name Pattern":[null,""],"Toggle Naming Legend":[null,""],"don't forget to add quality pattern. Otherwise after post-processing the episode will have UNKNOWN quality":[null,""],"Meaning":[null,""],"Pattern":[null,""],"Result":[null,""],"Use lower case if you want lower case names (eg. %sn, %e.n, %q_n etc)":[null,""],"Show Name":[null,""],"Show.Name":[null,""],"Show_Name":[null,""],"Season Number":[null,""],"XEM Season Number":[null,""],"Episode Number":[null,""],"XEM Episode Number":[null,""],"Episode Name":[null,""],"Episode.Name":[null,""],"Episode_Name":[null,""],"Air Date":[null,""],"Post-Processing Date":[null,""],"Quality":[null,""],"Scene Quality":[null,""],"Release Name":[null,""],"SickRage' is used in place of RLSGROUP if it could not be properly detected":[null,""],"Release Group":[null,""],"If episode is proper/repack add 'proper' to name.":[null,""],"Release Type":[null,""],"Multi-Episode Style":[null,""],"Single-EP Sample":[null,""],"Multi-EP sample":[null,""],"Strip Show Year":[null,""],"remove the TV show's year when renaming the file?":[null,""],"only applies to shows that have year inside parentheses":[null,""],"Custom Air-By-Date":[null,""],"name air-by-date shows differently than regular shows?":[null,""],"Toggle ABD Naming Legend":[null,""],"Regular Air Date":[null,""],"Year":[null,""],"Month":[null,""],"Day":[null,""],"Multi-EP style is ignored":[null,""],"Custom Sports":[null,""],"name sports shows differently than regular shows?":[null,""],"Toggle Sports Naming Legend":[null,""],"Sports Air Date":[null,""],"Custom Anime":[null,""],"name anime shows differently than regular shows?":[null,""],"Toggle Anime Naming Legend":[null,""],">XEM Season Number":[null,""],"Single-EP Anime Sample":[null,""],"Multi-EP Anime sample":[null,""],"Add Absolute Number":[null,""],"add the absolute number to the season/episode format?":[null,""],"only applies to anime. (eg. S15E45 - 310 vs S15E45)":[null,""],"Only Absolute Number":[null,""],"replace season/episode format with absolute number":[null,""],"only applies to anime.":[null,""],"No Absolute Number":[null,""],"don't include the absolute number":[null,""],"The data associated to the data. These are files associated to a TV show in the form of images and text that, when supported, will enhance the viewing experience.":[null,""],"Metadata Type":[null,""],"toggle metadata options that you wish to be created":[null,""],"multiple targets may be used":[null,""],"Select Metadata":[null,""],"Provider Priorities":[null,""],"Provider Options":[null,""],"Configure Custom Newznab Providers":[null,""],"Configure Custom Torrent Providers":[null,""],"Check off and drag the providers into the order you want them to be used.":[null,""],"At least one provider is required but two are recommended.":[null,""],"Torrent providers can be toggled in ":[null,""],"Provider does not support backlog searches at this time.":[null,""],"Provider is <b>NOT WORKING</b>.":[null,""],"Configure individual provider settings here.":[null,""],"Check with provider's website on how to obtain an API key if needed.":[null,""],"Configure provider":[null,""],"no providers available to configure.":[null,""],"URL":[null,""],"Enable daily searches":[null,""],"enable provider to perform daily searches.":[null,""],"Enable backlog searches":[null,""],"enable provider to perform backlog searches.":[null,""],"Season search mode":[null,""],"when searching for complete seasons you can choose to have it look for season packs only, or choose to have it build a complete season from just single episodes.":[null,""],"season packs only.":[null,""],"episodes only.":[null,""],"Enable fallback":[null,""],"when searching for a complete season depending on search mode you may return no results, this helps by restarting the search using the opposite search mode.":[null,""],"Custom URL":[null,""],"the URL should include the protocol (and port if applicable). Examples: http://192.168.1.4/ or http://localhost:3000/":[null,""],"Api key":[null,""],"Digest":[null,""],"Hash":[null,""],"Passkey":[null,""],"Cookies":[null,""],"example: uid=1234;pass=567845439634987<br>note: uid and pass are not your username/password.<br>use DevTools or Firebug to get these values after logging in on your browser.":[null,""],"Pin":[null,""],"Seed ratio":[null,""],"stop transfer when ratio is reached<br>(-1 SickRage default to seed forever, or leave blank for downloader default)":[null,""],"Minimum seeders":[null,""],"Minimum leechers":[null,""],"Confirmed download":[null,""],"only download torrents from trusted or verified uploaders ?":[null,""],"Ranked torrents":[null,""],"only download ranked torrents (trusted releases)":[null,""],"English torrents":[null,""],"only download english torrents, or torrents containing english subtitles":[null,""],"For Spanish torrents":[null,""],"ONLY search on this provider if show info is defined as \"Spanish\" (avoid provider's use for VOS shows)":[null,""],"Sorting results by":[null,""],"Freeleech":[null,""],"only download <b>\"FreeLeech\"</b> torrents.":[null,""],"Category":[null,""],"select torrent with Italian subtitle":[null,""],"Configure Custom<br>Newznab Providers":[null,""],"Add and setup or remove custom Newznab providers.":[null,""],"Select provider":[null,""],"-- add new provider --":[null,""],"Provider name":[null,""],"Site URL":[null,""],"Newznab search categories":[null,""],"select your Newznab categories on the left, and click the \"update categories\" button to use them for searching.) <b>don't forget to to save the form!":[null,""],"Update Categories":[null,""],"Add":[null,""],"Delete":[null,""],"Add and setup or remove custom RSS providers.":[null,""],"RSS URL":[null,""],"Search element":[null,""],"eg: title":[null,""],"Episode Search":[null,""],"NZB Search":[null,""],"Torrent Search":[null,""],"How to manage searching with":[null,""],"Randomize Providers":[null,""],"randomize the provider search order instead of going in order of placement":[null,""],"Download propers":[null,""],"replace original download with \"Proper\" or \"Repack\" if nuked":[null,""],"Check propers every":[null,""],"24 hours":[null,""],"4 hours":[null,""],"90 mins":[null,""],"45 mins":[null,""],"15 mins":[null,""],"Backlog search day(s)":[null,""],"number of day(s) that the \"Forced Backlog Search\" will cover (e.g. 7 Days)":[null,""],"Backlog search frequency":[null,""],"time in minutes between searches (min.":[null,""],"Daily search frequency":[null,""],"Usenet retention":[null,""],"age limit in days for usenet articles to be used (e.g. 500)":[null,""],"Ignore words":[null,""],"results with one or more word from this list will be ignored<br>separate words with a comma, e.g. \"word1,word2,word3\"":[null,""],"Require words":[null,""],"results with no word from this list will be ignored<br>separate words with a comma, e.g. \"word1,word2,word3\"":[null,""],"Trackers list":[null,""],"trackers that will be added to magnets without trackers<br>separate trackers with a comma, e.g. \"tracker1,tracker2,tracker3\"":[null,""],"Ignore language names in subbed results":[null,""],"ignore subbed releases based on language names <br>\n Example: \"dk\" will ignore words: dksub, dksubs, dksubbed, dksubed <br>\n separate languages with a comma, e.g. \"lang1,lang2,lang3":[null,""],"Allow high priority":[null,""],"set downloads of recently aired episodes to high priority":[null,""],"Use Failed Downloads":[null,""],"use Failed Download Handling?":[null,""],"will only work with snatched/downloaded episodes after enabling this":[null,""],"Delete Failed":[null,""],"delete files left over from a failed download?":[null,""],"this only works if Use Failed Downloads is enabled.":[null,""],"How to handle NZB search results.":[null,""],"Search NZBs":[null,""],"enable NZB search providers":[null,""],"Send .nzb files to":[null,""],"SABnzbd server URL":[null,""],"URL to your SABnzbd server (e.g. http://localhost:8080/)":[null,""],"SABnzbd username":[null,""],"(blank for none)":[null,""],"SABnzbd password":[null,""],"SABnzbd API key":[null,""],"locate at... SABnzbd Config -> General -> API Key":[null,""],"Use SABnzbd category":[null,""],"add downloads to this category (e.g. TV)":[null,""],"Use SABnzbd category (backlog episodes)":[null,""],"add downloads of old episodes to this category (e.g. TV)":[null,""],"Use SABnzbd category for anime":[null,""],"add anime downloads to this category (e.g. anime)":[null,""],"Use SABnzbd category for anime (backlog episodes)":[null,""],"add anime downloads of old episodes to this category (e.g. anime)":[null,""],"Use forced priority":[null,""],"enable to change priority from HIGH to FORCED":[null,""],"Black hole folder location":[null,""],"<b>.nzb</b> files are stored at this location for external software to find and use":[null,""],"Connect using HTTPS":[null,""],"enable Secure control in NZBGet and set the correct Secure Port here":[null,""],"NZBget host:port":[null,""],"(e.g. localhost:6789)":[null,""],"NZBget RPC host name and port number (not NZBgetweb!)":[null,""],"NZBget username":[null,""],"locate in nzbget.conf (default:nzbget)":[null,""],"NZBget password":[null,""],"locate in nzbget.conf (default:tegbzn6789)":[null,""],"Use NZBget category":[null,""],"send downloads marked this category (e.g. TV)":[null,""],"Use NZBget category (backlog episodes)":[null,""],"send downloads of old episodes marked this category (e.g. TV)":[null,""],"Use NZBget category for anime":[null,""],"send anime downloads marked this category (e.g. anime)":[null,""],"Use NZBget category for anime (backlog episodes)":[null,""],"send anime downloads of old episodes marked this category (e.g. anime)":[null,""],"NZBget priority":[null,""],"Very low":[null,""],"Low":[null,"Nizke"],"Very high":[null,""],"Force":[null,""],"priority for daily snatches (no backlog)":[null,"priorita denných sťahovaní (okrem backlogu)"],"Torrent host:port":[null,""],"URL to your Synology DSM (e.g. http://localhost:5000/)":[null,""],"Client username":[null,""],"Client password":[null,""],"Downloaded files location":[null,""],"where Synology Download Station will save downloaded files (blank for client default)":[null,""],"the destination has to be a shared folder for Synology DS":[null,""],"Click below to test":[null,""],"How to handle Torrent search results.":[null,""],"Search torrents":[null,""],"enable torrent search providers":[null,""],"Send .torrent files to":[null,""],"<b>.torrent</b> files are stored at this location for external software to find and use":[null,""],"URL to your torrent client (e.g. http://localhost:8000/)":[null,""],"Torrent RPC URL":[null,""],"the path without leading and trailing slashes (e.g. transmission)":[null,""],"Http Authentication":[null,""],"Verify certificate":[null,""],"disable if you get \"Deluge: Authentication Error\" in your log":[null,""],"verify SSL certificates for HTTPS requests":[null,""],"Add label to torrent":[null,""],"(blank spaces are not allowed)":[null,""],"label plugin must be enabled in Deluge clients":[null,""],"for QBitTorrent 3.3.1 and up":[null,""],"Add label to torrent for anime":[null,""],"for QBitTorrent 3.3.1 and up ":[null,""],"where <span id=\"torrent_client\">the torrent client</span> will save downloaded files (blank for client default)":[null,""],"the destination has to be a shared folder for Synology DS</span>":[null,""],"Minimum seeding time":[null,""],"time in hours":[null,""],"(default:'0' passes blank to client and '-1' passes nothing)":[null,""],"Start torrent paused":[null,""],"add .torrent to client but do <b style=\"font-weight:900\">not</b> start downloading":[null,""],"Allow high bandwidth":[null,""],"use high bandwidth allocation if priority is high":[null,""],"Test Connection":[null,""],"Windows Shares":[null,""],"Defines your existing windows shares so that we can add them to the browse dialog":[null,""],"Share #{number}":[null,""],"Share label":[null,""],"Hostname or IP":[null,""],"Share path":[null,""],"Subtitles Search":[null,""],"Subtitles Plugin":[null,""],"Plugin Settings":[null,""],"Settings that dictate how SickRage handles subtitles search results.":[null,""],"Search Subtitles":[null,""],"Subtitle Languages":[null,""],"Subtitle Directory":[null,""],"the directory where SickRage should store your <i>Subtitles</i> files.":[null,""],"leave empty if you want store subtitle in episode path.":[null,""],"Subtitle Find Frequency":[null,""],"time in hours between scans (default: 1)":[null,""],"Include Specials":[null,""],"include the show's specials when searching for subtitles?":[null,""],"Perfect matches":[null,""],"only download subtitles that match: release group, video codec, audio codec and resolution":[null,""],"if disabled you may get out of sync subtitles":[null,""],"Subtitles History":[null,""],"log downloaded Subtitle on History page?":[null,""],"Subtitles Multi-Language":[null,""],"append language codes to subtitle filenames?":[null,""],"this option is required if you use multiple subtitle languages":[null,""],"Delete unwanted subtitles":[null,""],"enable to delete unwanted subtitle languages bundled with release":[null,""],"Embedded Subtitles":[null,""],"ignore subtitles embedded inside video file?":[null,""],"this will ignore <u>all</u> embedded subtitles for every video file!":[null,""],"Hearing Impaired Subtitles":[null,""],"download hearing impaired style subtitles?":[null,""],"See":[null,""],"for a script arguments description.":[null,""],"Additional scripts separated by <b>|</b>.":[null,""],"Scripts are called after each episode has searched and downloaded subtitles.":[null,""],"For any scripted languages, include the interpreter executable before the script. See the following example":[null,""],"For Windows:":[null,""],"For Linux / OS X:":[null,""],"Subtitle Providers":[null,""],"Check off and drag the plugins into the order you want them to be used.":[null,""],"At least one plugin is required.":[null,""]," Web-scraping plugin":[null,""],"Provider Settings":[null,""],"Set user and password for each provider":[null,""],"User Name":[null,""],"Change Show":[null,""],"Prev Show":[null,""],"Next Show":[null,""],"Jump to Season":[null,""],"Specials":[null,""],"Poster for":[null,""],"Stars":[null,""],"minutes":[null,""],"View other popular {genre} shows on trakt.tv.":[null,""],"View other popular {imdbgenre} shows on IMDB.":[null,""],"Allowed":[null,""],"Preferred":[null,""],"Originally Airs":[null,""],"Show Status":[null,""],"Default EP Status":[null,""],"Location":[null,""],"Missing":[null,""],"Scene Name":[null,""],"Required Words":[null,""],"Ignored Words":[null,""],"Size":[null,""],"Info Language":[null,""],"Subtitles SR Metadata":[null,""],"Season Folders":[null,""],"Paused":[null,""],"Air-by-Date":[null,""],"Sports":[null,""],"DVD Order":[null,""],"Scene Numbering":[null,""],"Select Filtered Episodes":[null,""],"Clear All":[null,""],"Change selected episodes to":[null,""],"Select Columns":[null,""],"Hide Episodes":[null,""],"Show Episodes":[null,""],"NFO":[null,""],"TBN":[null,""],"Episode":[null,""],"Absolute":[null,""],"Scene":[null,""],"Scene Absolute":[null,""],"File Name":[null,""],"Airdate":[null,""],"Download":[null,""],"Change the value here if scene numbering differs from the indexer episode numbering":[null,""],"Change the value here if scene absolute numbering differs from the indexer absolute numbering":[null,""],"Manual Search":[null,""],"Do you want to mark this episode as failed?":[null,""],"The episode release name will be added to the failed history, preventing it to be downloaded again.":[null,""],"Do you want to include the current episode quality in the search?":[null,""],"Choosing No will ignore any releases with the same episode quality as the one currently downloaded/snatched.":[null,"Výberom \"Nie\" bude ignorovať verzie s rovnakou kvalitou ako tá ktorá sa stiahla / sťahuje sa."],"Download subtitle":[null,""],"Do you want to re-download the subtitle for this language?":[null,""],"It will overwrite your current subtitle":[null,""],"Format":[null,""],"Advanced":[null,""],"Main Settings":[null,""],"Show Location":[null,""],"Preferred Quality":[null,""],"Default Episode Status":[null,""],"this will set the status for future episodes.":[null,""],"this only applies to episode filenames and the contents of metadata files.":[null,""],"search for subtitles":[null,""],"Use SR Metdata":[null,""],"use SickRage metadata when searching for subtitle, this will override the autodiscovered metadata":[null,""],"pause this show (SickRage will not download episodes)":[null,""],"Format Settings":[null,""],"Air by date":[null,""],"check if the show is released as Show.03.02.2010 rather than Show.S02E03.":[null,""],"in case of an air date conflict between regular and special episodes, the later will be ignored.":[null,""],"check if the show is Anime and episodes are released as Show.265 rather than Show.S02E03":[null,""],"check if the show is a sporting or MMA event released as Show.03.02.2010 rather than Show.S02E03":[null,""],"Season folders":[null,""],"group episodes by season folder (uncheck to store in a single folder)":[null,""],"search by scene numbering (uncheck to search by indexer numbering)":[null,""],"use the DVD order instead of the air order":[null,""],"a \"Force Full Update\" is necessary, and if you have existing episodes you need to sort them manually.":[null,""],"comma-separated <i>e.g. \"word1,word2,word3</i>\"":[null,""],"search results with one or more words from this list will be ignored.":[null,""],"e.g. \"word1,word2,word3\"":[null,""],"search results with no words from this list will be ignored.":[null,""],"Scene Exception":[null,""],"this will affect episode search on NZB and torrent providers.":[null,""],"this list appends to the original show name.":[null,""],"WARNING logs":[null,""],"ERROR logs":[null,""],"There are no events to display.":[null,""],"Limit":[null,""],"Layout":[null,""],"HistoryLayout":[null,""],"Compact":[null,""],"Detailed":[null,""],"Time":[null,""],"Provider":[null,""],"Missing Provider":[null,""],"missing provider":[null,""],"Directory":[null,""],"Show Name (tvshow.nfo)":[null,""],"Indexer":[null,""],"Enter the folder containing the episode":[null,""],"Process Method to be used":[null,""],"Copy":[null,""],"Move":[null,""],"Hard Link":[null,""],"Symbolic Link":[null,""],"Symbolic Link Reversed":[null,""],"Force already Post Processed Dir/Files":[null,""],"Mark Dir/Files as priority download":[null,""],"(Check it to replace the file even if it exists at higher quality)":[null,""],"Delete files and folders":[null,""],"(Check it to delete files and folders like auto processing)":[null,""],"Don't use processing queue":[null,""],"(If checked this will return the result of the process here, but may be slow!)":[null,""],"Mark download as failed":[null,""],"Process":[null,""],"Download subtitles for this show?":[null,""],"use SickRage metadata when searching for subtitle, <br />this will override the autodiscovered metadata":[null,""],"Status for previously aired episodes":[null,""],"Status for all future episodes":[null,""],"Group episodes by season folder?":[null,""],"Is this show an Anime?":[null,""],"Is this show scene numbered?":[null,""],"Save Defaults":[null,""],"Use current values as the defaults":[null,""],"<p>Select your preferred fansub groups from the <b>Available Groups</b> and add them to the <b>Whitelist</b>. Add groups to the <b>Blacklist</b> to ignore them.</p>\n <p>The <b>Whitelist</b> is checked <i>before</i> the <b>Blacklist</b>.</p>\n <p>Groups are shown as <b>Name</b> | <b>Rating</b> | <b>Number of subbed episodes</b>.</p>\n <p>You may also add any fansub group not listed to either list manually.</p>\n <p>When doing this please note that you can only use groups listed on anidb for this anime.\n <br>If a group is not listed on anidb but subbed this anime, please correct anidb's data.</p>":[null,""],"Whitelist":[null,""],"Available Groups":[null,""],"Add to Whitelist":[null,""],"Add to Blacklist":[null,""],"Blacklist":[null,""],"Custom Group":[null,""],"Allowed Quality:":[null,""],"Preferred Quality:":[null,""],"Filter Show Name":[null,""],"Root":[null,""],"All":[null,""],"Clear Filter(s)":[null,""],"Poster":[null,"Plagát"],"Small Poster":[null,""],"Banner":[null,"Banner"],"Simple":[null,""],"Next Episode":[null,""],"Progress":[null,""],"Direction":[null,""],"Ascending":[null,""],"Descending":[null,""],"Poster Size":[null,""],"Continuing":[null,""],"Ended":[null,""],"Total":[null,""],"Invalid date":[null,""],"No Network":[null,""],"Next Ep":[null,""],"Prev Ep":[null,""],"Show":[null,"Zobraziť"],"Downloads":[null,""],"Active":[null,""],"loading":[null,""],"Loading...":[null,""],"<p><b><u>Preferred</u></b> qualities will replace those in <b><u>allowed</u></b>, even if they are lower.</p>":[null,""],"New":[null,""],"Set as Default":[null,""],"Remember me":[null,""],"Edit Selected":[null,""],"Subtitle":[null,""],"Default Ep Status":[null,""],"Update":[null,""],"Rescan":[null,""],"Rename":[null,""],"Search Subtitle":[null,""],"Force Metadata Regen":[null,""],"Snatched (Allowed)":[null,"Sťahované (Povolené)"],"Jump to Show":[null,""],"Force Backlog":[null,""],"Manage episodes with status":[null,""],"Manage":[null,""],"None of your episodes have status":[null,""],"Shows containing":[null,""],"episodes":[null,""],"Set checked shows/episodes to":[null,""],"Go":[null,""],"Select all":[null,""],"Clear all":[null,""],"Release":[null,""],"Backlog Search":[null,""],"Not in progress":[null,""],"In Progress":[null,""],"Daily Search":[null,""],"Find Propers Search":[null,""],"Propers search disabled":[null,""],"Subtitle Search":[null,""],"Subtitle search disabled":[null,""],"Search Queue":[null,""],"pending items":[null,""],"Daily":[null,""],"Manual":[null,""],"Changing any settings marked with (<span class=\"separator\">*</span>) will force a refresh of the selected shows.":[null,""],"Selected Shows":[null,""],"Root Directories":[null,""],"Current":[null,""],"Keep":[null,""],"Custom":[null,""],"Group episodes by season folder (set to \"No\" to store in a single folder).":[null,""],"Pause these shows (SickRage will not download episodes).":[null,""],"This will set the status for future episodes.":[null,""],"Search by scene numbering (set to \"No\" to search by indexer numbering).":[null,""],"Set if these shows are Anime and episodes are released as Show.265 rather than Show.S02E03":[null,""],"Set if these shows are sporting or MMA events released as Show.03.02.2010 rather than Show.S02E03.":[null,""],"In case of an air date conflict between regular and special episodes, the later will be ignored.":[null,""],"Set if these shows are released as Show.03.02.2010 rather than Show.S02E03.":[null,""],"Search for subtitles.":[null,""],"All of your episodes have {subsLanguage} subtitles.":[null,""],"Manage episodes without":[null,"Spravovať epizódy bez"],"Episodes without {subsLanguage} subtitles.":[null,"Epizódy bez {subsLanguage} titulkov."],"Episodes without {subtitleLanguage} (undefined) subtitles.":[null,"Epizódy bez {subtitleLanguage} (nedefinovaný) titulkov."],"Download missed subtitles for selected episodes":[null,"Stiahnuť chýbajúce titulky pre označené epizódy"],"Performing Restart":[null,"Prebieha reštart"],"Waiting for SickRage to shut down":[null,"Čakanie na vypnutie SickRage"],"Waiting for SickRage to start again":[null,"Čakanie na znovu zapnutie SickRage"],"Loading the default page":[null,"Načítanie predvolenej stránky"],"Error: The restart has timed out, perhaps something prevented SickRage from starting again?":[null,""],"Key":[null,"Kľúč"],"Missed":[null,"Chýbajúce"],"Today":[null,"Dnes"],"Soon":[null,"Čoskoro"],"Later":[null,"Neskôr"],"Subscribe":[null,"Prihlásiť sa k odberu"],"Date":[null,"Dátum"],"View Paused":[null,"Zobraziť pozastavené"],"Hidden":[null,"Skryté"],"Shown":[null,"Zobrazené"],"Calendar":[null,"Kalendár"],"List":[null,"Zoznam"],"Ends":[null,"Končí"],"Next Ep Name":[null,"Názov ďalšej epizódy"],"Run time":[null,""],"Indexers":[null,""],"No shows for this day":[null,""],"Airs":[null,"Vysiela sa"],"Plot":[null,"Zápletka"],"Show Update":[null,""],"Version Check":[null,"Kontrola verzie"],"Proper Finder":[null,"Vyhľadávač Proper verzií"],"Post Process":[null,"Spracovanie"],"Subtitles Finder":[null,"Vyhľadávač titulkov"],"Scheduler":[null,"Plánovač"],"Alive":[null,"Nažive"],"Start Time":[null,"Čas štartu"],"Cycle Time":[null,"Doba cyklu"],"Next Run":[null,"Ďalšie spustenie"],"Last Run":[null,"Naposledy spustené"],"Silent":[null,"Tichý"],"True":[null,"Pravda"],"N/A":[null,"N/A"],"Show id":[null,"Id seriálu"],"Show name":[null,"Názov seriálu"],"Priority":[null,"Priorita"],"Added":[null,"Pridané"],"Queue type":[null,"Typ frontu"],"LOW":[null,"NÍZKA"],"NORMAL":[null,"NORMÁLNE"],"HIGH":[null,"VYSOKÁ"],"Disk Space":[null,"Miesto na disku"],"Free space":[null,"Voľné miesto"],"TV Download Directory":[null,"TV priečinok pre sťahovanie"],"Media Root Directories":[null,"Koreňové priečinky medií"],"Preview of the proposed name changes":[null,"Ukážka navrhovaných zmien názvu"],"All Seasons":[null,"Všetky sezóny"],"select all":[null,""],"Rename Selected":[null,"Premenovať vybraté"],"Cancel Rename":[null,"Zrušiť premenovanie"],"Old Location":[null,"Pôvodné umiestnenie"],"New Location":[null,"Nové miesto"],"Trakt API did not return any results, please check your config.":[null,"Trakt API nevrátilo žiadne výsledky, prosím skontrolujte nastavenia."],"votes":[null,"Hlasy"],"Remove Show":[null,"Odstrániť seriál"],"Level":[null,""],"Filter":[null,""],"All non-absolute folder locations are relative to ":[null,""],"Manual Post-Processing":[null,"Manuálne spracovanie"],"Episode Status Management":[null,"Správa statusu epizód"],"Update PLEX":[null,"Aktualizuj PLEX"],"Update KODI":[null,"Aktualizuj KODI"],"Update Emby":[null,"Aktualizuj Emby"],"Missed Subtitle Management":[null,"Správa chýbajúcich titulkov"],"Help & Info":[null,"Nápoveda a Info"],"Backup & Restore":[null,"Záloha a Obnova"],"Tools":[null,"Nástroje"],"Support SickRage":[null,"Podporte SickRage"],"View Errors":[null,"Zobraziť chyby"],"View Warnings":[null,"Zobraziť výstrahy"],"View Log":[null,"Zobraziť denník"],"Check For Updates":[null,"Skontrolovať aktualizácie"],"Restart":[null,"Reštartovať"],"Shutdown":[null,"Vypnúť"],"Logout":[null,"Odhlásiť sa"],"Server Status":[null,"Stav servera"],"View overview of snatched episodes":[null,"Zobraziť prehľad sťahovaných epizód"],"Episodes Downloaded":[null,"Stiahnuté epizódy"],"Memory used":[null,"Použitá pamäť"],"Load time":[null,""],"Branch":[null,"Vetva"],"Now":[null,"Teraz"]}}}} \ No newline at end of file +{"messages":{"domain":"messages","locale_data":{"messages":{"100":[null,""],"250":[null,""],"500":[null,""],"":{"domain":"messages","plural_forms":"nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;","lang":"sk_SK"},"Drama":[null,"Dráma"],"Mystery":[null,"Misteriózne"],"Science-Fiction":[null,"Vedecko-fantastický"],"Crime":[null,"Krimi"],"Action":[null,"Akčné"],"Comedy":[null,"Komédia"],"Thriller":[null,"Thriller"],"Animation":[null,"Animovaný"],"Family":[null,"Rodinný"],"Fantasy":[null,"Fantasy"],"Adventure":[null,"Dobrodružné"],"Horror":[null,"Horor"],"Film-Noir":[null,"Film-Noir"],"Sci-Fi":[null,"Sci-Fi"],"Romance":[null,"Romantický"],"Sport":[null,"Šport"],"War":[null,"Vojnový"],"Biography":[null,"Žovotopisný"],"History":[null,"História"],"Music":[null,"Hudobný"],"Western":[null,"Western"],"News":[null,"Novinky"],"Sitcom":[null,"Situačná komédia"],"Reality-TV":[null,"Reality-TV"],"Documentary":[null,"Dokumentárny"],"Game-Show":[null,"Zábavná hra"],"Musical":[null,"Muzikál"],"Talk-Show":[null,"Talk-Show"],"Started Download":[null,"Preberanie začalo"],"Download Finished":[null,"Preberanie dokončené"],"Subtitle Download Finished":[null,"Sťahovanie titulkov dokončené"],"SickRage Updated":[null,"SickRage aktualizovaný"],"SickRage Updated To Commit#: ":[null,"SickRage aktualizovaný na Commit#: "],"SickRage new login":[null,"SickRage nové prihlasovacie údaje"],"New login from IP: {0}. http://geomaplookup.net/?ip={0}":[null,"Nové prihlásenie z IP adresy: {0}. http://geomaplookup.net/?IP={0}"],"Repeat":[null,"Opakovať"],"Repeat (Separated)":[null,""],"Extend":[null,"Rozšíriť"],"Extend (Limited)":[null,"Rozšíriť (obmedzené)"],"Extend (Limited, E-prefixed)":[null,""],"Downloaded":[null,"Stiahnuté"],"Snatched":[null,"Chňapnuté"],"Snatched (Proper)":[null,"Chňapnuté (Proper)"],"Failed":[null,"Zlyhalo"],"Snatched (Best)":[null,"Chňapnuté (Najlepšie)"],"Archived":[null,"Archivované"],"Unknown":[null,"Neznámy"],"Unaired":[null,"Nevysielané"],"Skipped":[null,"Vynechané"],"Wanted":[null,"Požadované"],"Ignored":[null,"Ignorované"],"Subtitled":[null,"S titulkami"],"For best results please set the Download Station alias as":[null,""],"You can check this setting in the Synology DSM":[null,""],"Control Panel":[null,"Ovládací Panel"],"Application Portal":[null,""],"Make sure you allow DSM to be embedded with iFrames too in":[null,""],"DSM Settings":[null,"DSM nastavenia"],"Security":[null,"Zabezpečenie"],"<No Filter>":[null,"<Bez filtra>"],"Daily Searcher":[null,"Denný vyhľadávač"],"Backlog":[null,"Chýbajúce"],"Show Updater":[null,""],"Check Version":[null,"Skontrolovať verziu"],"Show Queue":[null,""],"Search Queue (All)":[null,""],"Search Queue (Daily Searcher)":[null,""],"Search Queue (Backlog)":[null,""],"Search Queue (Manual)":[null,""],"Search Queue (Retry/Failed)":[null,""],"Search Queue (RSS)":[null,""],"Find Propers":[null,""],"Postprocessor":[null,""],"Find Subtitles":[null,"Hľadanie titulkov"],"Trakt Checker":[null,"Kontrola Traktu"],"Event":[null,"Udalosť"],"Error":[null,"Chyba"],"Tornado":[null,"Tornado"],"Thread":[null,"Vlákno"],"Main":[null,""],"Loading":[null,""],"New update found for SickRage, starting auto-updater":[null,"Nová aktualizácia SickRage, začínam auto-aktualizáciu"],"Update was successful":[null,"Aktualizácia bola úspešná"],"Update failed!":[null,"Aktualizácia zlyhala!"],"Backup":[null,"Záloha"],"Config backup in progress...":[null,"Prebieha záloha nastavení..."],"Config backup successful, updating...":[null,"Záloha nastavení úspešná, aktualizujem..."],"Config backup failed, aborting update":[null,"Záloha nastavení zlyhala, ruším aktualizáciu"],"No update needed":[null,"Žiadna aktualizácia"],"Mako Error":[null,"Mako chyba"],"Oops":[null,"Jejda"],"Wrong API key used":[null,"Použitý zlý API kľúč"],"Login":[null,"Prihlásenie"],"API Key not generated":[null,"API kľúč nebol generovaný"],"API Builder":[null,"API Builder"],"Schedule":[null,"Rozvrh"],"Test 1":[null,"Test 1"],"This is test number 1":[null,"Toto je test číslo 1"],"Test 2":[null,"Test 2"],"This is test number 2":[null,"Toto je test číslo 2"],"You're using the {branch} branch. Please use 'master' unless specifically asked":[null,"Používate {branch} vetvu. Prosím použite 'master' vetvu pokým nie ste požiadaný inak"],"Invalid show parameters":[null,"Neplatné parametre relácie"],"Invalid parameters":[null,"Neplatné parametre"],"Episode couldn't be retrieved":[null,"Epizódu sa nepodarilo získať"],"Home":[null,"Úvod"],"Show List":[null,"Zoznam relácií"],"Error: Unsupported Request. Send jsonp request with 'callback' variable in the query string.":[null,""],"Success. Connected and authenticated":[null,"Úspech. Pripojené a overené"],"Authentication failed. SABnzbd expects":[null,"Overenie zlyhalo. SABnzbd očakáva"],"as authentication method":[null,"ako metóda overovania"],"Unable to connect to host":[null,"Nedá sa pripojiť k hostiteľovi"],"SMS sent successfully":[null,"Správa úspešne odoslaná"],"Problem sending SMS: {message}":[null,"Problém s odosielaním SMS: {message}"],"Telegram notification succeeded. Check your Telegram clients to make sure it worked":[null,"Telegram oznámenie odoslané. Skontrolujte Telegram klientov, či fungovalo"],"Error sending Telegram notification: {message}":[null,"Chyba pri odosielaní Telegram oznámenia: {message}"],"join notification succeeded. Check your join clients to make sure it worked":[null,"join oznámenie odoslané. Skontrolujte join klientov, či fungovalo"],"Error sending join notification: {message}":[null,"Chyba pri odosielaní join oznámenia: {message}"]," with password":[null," s heslom"],"Registered and Tested growl successfully {growl_host}":[null,"growl úspešne zaregistrované a otestované {growl_host}"],"Registration and Testing of growl failed {growl_host}":[null,"Registrácia a testovanie growl neúspešné {growl_host}"],"Test prowl notice sent successfully":[null,"Prowl oznámenie úspešne odoslané"],"Test prowl notice failed":[null,"Test prowl - oznámenie zlyhalo"],"Boxcar2 notification succeeded. Check your Boxcar2 clients to make sure it worked":[null,"Boxcar2 oznámenie odoslané. Skontrolujte Boxcar2 klientov, či fungovalo"],"Error sending Boxcar2 notification":[null,"Chyba pri odosielaní oznámení Boxcar2"],"Pushover notification succeeded. Check your Pushover clients to make sure it worked":[null,"Pushover oznámenie odoslané. Skontrolujte Pushover klientov, či fungovalo"],"Error sending Pushover notification":[null,"Chyba odoslania oznámenia Pushover"],"Key verification successful":[null,"Overenie kľúča úspešné"],"Unable to verify key":[null,"Nepodarilo sa overiť kľúč"],"Tweet successful, check your twitter to make sure it worked":[null,"Tweet odoslaný, skontrolujte si Twitter"],"Error sending tweet":[null,"Chyba odoslania tweetu"],"Please enter a valid account sid":[null,""],"Please enter a valid auth token":[null,""],"Please enter a valid phone sid":[null,""],"Please format the phone number as \"+1-###-###-####\"":[null,""],"Authorization successful and number ownership verified":[null,""],"Error sending sms":[null,"Chyba pri odosielaní sms"],"Slack message successful":[null,"Slack správa odoslaná"],"Slack message failed":[null,"Slack správa zlyhala"],"Discord message successful":[null,""],"Discord message failed":[null,""],"Test KODI notice sent successfully to {kodi_host}":[null,"Test KODI oznámenia úspešne odoslané na {kodi_host}"],"Test KODI notice failed to {kodi_host}":[null,"Test KODI oznámenia do {kodi_host} zlyhalo"],"Successful test notice sent to Plex Home Theater ... {plex_clients}":[null,"Oznámenie úspešne odoslané do Plex Home Theater ...{plex_clients}"],"Test failed for Plex Home Theater ... {plex_clients}":[null,"Test Plex Home Theater neúspešný ... {plex_clients}"],"Tested Plex Home Theater(s)":[null,"Plex Home Theater otestované"],"Successful test of Plex Media Server(s) ... {plex_servers}":[null,"Úspešný test Plex Media Servera(-ov)... {plex_servers}"],"Test failed, No Plex Media Server host specified":[null,"Test zlyhal, Plex Media Server host nešpecifikovaný"],"Test failed for Plex Media Server(s) ... {plex_servers}":[null,"Test Plex Media Server(-ov) neúspešný... {plex_servers}"],"Tested Plex Media Server host(s)":[null,""],"Tried sending desktop notification via libnotify":[null,""],"Test notice sent successfully to {emby_host}":[null,""],"Test notice failed to {emby_host}":[null,""],"Successfully started the scan update":[null,"Skenovanie úspešne spustené"],"Test failed to start the scan update":[null,""],"Test notice sent successfully to {nmj2_host}":[null,""],"Test notice failed to {nmj2_host}":[null,""],"Trakt Authorized":[null,""],"Trakt Not Authorized!":[null,""],"Test email sent successfully! Check inbox.":[null,"Test e-mail bol úspešne odoslaný! Skontrolujte priečinok doručenej pošty."],"ERROR: {last_error}":[null,"CHYBA: {last_error}"],"Test NMA notice sent successfully":[null,""],"Test NMA notice failed":[null,"Test NMA oznámenie zlyhalo"],"Pushalot notification succeeded. Check your Pushalot clients to make sure it worked":[null,""],"Error sending Pushalot notification":[null,"Chyba pri odosielaní oznámení Pushalot"],"Pushbullet notification succeeded. Check your device to make sure it worked":[null,"Pushbullet oznámenie odoslané. Skontrolujte svoje zariadenie aby ste sa presvedčili, že to fungovalo"],"Error sending Pushbullet notification":[null,"Chyba pri odosielaní oznámení Pushbullet"],"Status":[null,"Stav"],"Restarting SickRage":[null,"SickRage sa reštartuje"],"Update Failed":[null,"Aktualizácia zlyhala"],"Update wasn't successful, not restarting. Check your log for more information.":[null,""],"Checking out branch":[null,"Prepínam vetvu (branch)"],"Already on branch":[null,"Vybraná vetva je použitá"],"Invalid show ID: {show}":[null,"Neplatné ID relácie: {show}"],"Show not in show list":[null,"Relácia nie je v zozname relácií"],"Edit":[null,"Upraviť"],"This show is in the process of being downloaded - the info below is incomplete.":[null,""],"The information on this page is in the process of being updated.":[null,""],"The episodes below are currently being refreshed from disk":[null,""],"Currently downloading subtitles for this show":[null,"Titulky pre tento seriál sú sťahované"],"This show is queued to be refreshed.":[null,"Tento seriál je v poradí na aktualizáciu."],"This show is queued and awaiting an update.":[null,"Tento seriál je v poradí a čaká na aktualizáciu."],"This show is queued and awaiting subtitles download.":[null,"Tento seriál je poradí a čaká na stiahnutie titulkov."],"Resume":[null,"Obnoviť"],"Pause":[null,"Pozastaviť"],"Remove":[null,"Odstrániť"],"Re-scan files":[null,"Opätovné skenovanie súborov"],"Force Full Update":[null,"Vynútiť úplnú aktualizáciu"],"Update show in KODI":[null,"Zobraziť reláciu v KODI"],"Update show in Emby":[null,"Zobraziť reláciu v Emby"],"Hide specials":[null,"Skryť špeciály"],"Show specials":[null,"Zobraziť špeciály"],"Preview Rename":[null,"Ukážka premenovania"],"Download Subtitles":[null,"Stiahnuť titulky"],"No scene exceptions":[null,"Žiadne \"scene exceptions\""],"Invalid show ID":[null,"Neplatné ID relácie"],"Unable to find the specified show":[null,"Nepodarilo sa nájsť zadanú reláciu"],"Unable to retreive Fansub Groups from AniDB.":[null,"Nepodarilo sa načítať Fansub skupiny z AniDB."],"Edit Show":[null,"Upraviť reláciu"],"Unable to refresh this show: {error}":[null,"Nepodarilo sa obnoviť tento seriál: {error}"],"New location <tt>{location}</tt> does not exist":[null,"Nové umiestnenie <tt>{location}</tt> neexistuje"],"Unable to update show: {error}":[null,"Nepodarilo sa aktualizovať seriál: {error}"],"Unable to force an update on scene exceptions of the show.":[null,"Nie je možné vynútiť aktualizáciu pre alternatívne názvy seriálu."],"Unable to force an update on scene numbering of the show.":[null,"Nie je možné vynútiť aktualizáciu alternatívneho číslovania seriálu."],"{num_errors:d} error{plural} while saving changes:":[null,"{num_errors:d} error{plural} pri ukladaní zmien:"],"{show_name} has been {paused_resumed}":[null,"{show_name} bol {paused_resumed}"],"resumed":[null,"obnovený"],"paused":[null,"pozastavený"],"{show_name} has been {deleted_trashed} {was_deleted}":[null,"{show_name} bol {deleted_trashed} {was_deleted}"],"deleted":[null,"odstránený"],"trashed":[null,"presunutý do koša"],"(media untouched)":[null,"(médiá ponechané)"],"(with all related media)":[null,"(aj všetky súvisiace médiá)"],"Unable to refresh this show.":[null,"Nepodarilo sa obnoviť tento seriál."],"Unable to update this show.":[null,"Nepodarilo sa aktualizovať tento seriál."],"Library update command sent to KODI host(s)): {kodi_hosts}":[null,"Príkaz na aktualizáciu knižnice bol zaslaný na KODI: {kodi_hosts}"],"Unable to contact one or more KODI host(s)): {kodi_hosts}":[null,"Nemožno kontaktovať jedného alebo viacerých KODI host(s)): {kodi_hosts}"],"Library update command sent to Plex Media Server host: {plex_server}":[null,"Príkaz na aktualizáciu knižnice bol zaslaný do Plex Media Server: {plex_server}"],"Unable to contact Plex Media Server host: {plex_server}":[null,"Nemožno kontaktovať Plex Media Server: {plex_server}"],"Library update command sent to Emby host: {emby_host}":[null,"Príkaz na aktualizáciu knižnice zaslaný na Emby: {emby_host}"],"Unable to contact Emby host: {emby_host}":[null,"Nemožno kontaktovať Emby: {emby_host}"],"You must specify a show and at least one episode":[null,"Musíte vybrať seriál a aspoň jednu epizódu"],"Invalid status":[null,"Neplatný status"],"Backlog was automatically started for the following seasons of <b>{show_name}</b>":[null,"Vyhľadávanie chýbajúcich bolo automaticky začaté pre nasledovné sezóny seriálu <b>{show_name}</b>"],"Season":[null,"Sezóna"],"Backlog started":[null,"Vyhľadávanie chýbajúcich začalo"],"Retrying Search was automatically started for the following season of <b>{show_name}</b>":[null,"Opakované hľadanie bolo automaticky začaté pre nasledovnú sezónu seriálu <b>{show_name}</b>"],"Retry Search started":[null,"Opakované hľadanie začalo"],"You must specify a show":[null,"Musíte vybrať seriál"],"Can't rename episodes when the show dir is missing.":[null,"Nedá sa premenovať epizódy keď chýba priečinok seriálu."],"New subtitles downloaded: {new_subtitle_languages}":[null,"Nové titulky stiahnuté: {new_subtitle_languages}"],"No subtitles downloaded":[null,"Žiadne titulky neboli stiahnuté"],"IRC":[null,"IRC"],"Could not load news from the repo. [Click here for news.md])({news_url})":[null,"Nepodarilo sa načítať novinky z repo. [Kliknite tu pre news.md]({news_url})"],"The was a problem connecting to github, please refresh and try again":[null,"Problém s pripojením na github, prosím obnoviť a skúste to znova"],"Could not load changes from the repo. [Click here for CHANGES.md]({changes_url})":[null,"Nepodarilo sa načítať zmeny z repo. [Kliknite tu pre CHANGES.md]({changes_url})"],"Changelog":[null,"Changelog"],"Post Processing":[null,"Následné spracovanie"],"Add Shows":[null,"Pridať seriály"],"No folders selected.":[null,"Neboli vybrané žiadne priečinky."],"New Show":[null,"Nový seriál"],"Trending Shows":[null,"Trendové seriály"],"Popular Shows":[null,"Populárne seriály"],"Most Anticipated Shows":[null,"Najočakávanejšie seriály"],"Most Collected Shows":[null,""],"Most Watched Shows":[null,""],"Most Played Shows":[null,""],"Recommended Shows":[null,""],"New Shows":[null,"Nový seriál"],"Season Premieres":[null,"Premiéry sezóny"],"Existing Show":[null,"Existujúci seriál"],"No root directories setup, please go back and add one.":[null,"Neboli nastavené koreňové priečinky, prosím vráťte sa späť a jeden pridajte."],"Show added":[null,"Seriál pridaný"],"Adding the specified show {show_name}":[null,"Pridávam vybraný seriál {show_name}"],"Missing params, no Indexer ID or folder: {show_to_add} and {root_dir}/{show_path}":[null,"Chýbajúce parametre, žiadne index ID alebo priečinok: {show_to_add} a {root_dir}/{show_path}"],"Unknown error. Unable to add show due to problem with show selection.":[null,"Neznáma chyba. Nie je možné pridať seriál kvôli problému s výberom seriálu."],"Unable to add show":[null,"Nepodarilo sa pridať seriál"],"Folder {show_dir} exists already":[null,"{show_dir} priečinok už existuje"],"Unable to create the folder {show_dir}, can't add the show":[null,"Nepodarilo sa vytvoriť priečinok {show_dir}, nie je možné pridať seriál"],"Adding the specified show into {show_dir}":[null,"Pridávam vybraný seriál do {show_dir}"],"Shows Added":[null,"Seriály pridané"],"Automatically added {num_shows} from their existing metadata files":[null,"Automaticky pridané {num_shows} na základe existujúcich súborov metadát"],"Mass Update":[null,"Hromadná aktualizácia"],"Episode Overview":[null,"Prehľad epizódy"],"Missing Subtitles":[null,"Chýbajúce titulky"],"Backlog Overview":[null,"Prehľad chýbajúcich"],"Mass Edit":[null,"Hromadná úprava"],"Unable to update show: {excption_format}":[null,"Nepodarilo sa aktualizovať seriál: {excption_format}"],"Unable to refresh show {show_name}: {excption_format}":[null,"Nepodarilo sa obnoviť seriál {show_name}: {excption_format}"],"Errors encountered":[null,"Vyskytli sa chyby"],"Updates":[null,"Aktualizácie"],"Refreshes":[null,"Obnoví"],"Renames":[null,""],"Subtitles":[null,"Titulky"],"The following actions were queued":[null,"Tieto akcie boli zaradené do frontu"],"Failed Downloads":[null,"Neúspešné sťahovania"],"Manage Searches":[null,"Správa vyhľadávania"],"Backlog search started":[null,"Vyhľadávanie chýbajúcich začalo"],"Daily search started":[null,"Denné vyhľadávanie začalo"],"Find propers search started":[null,"Vyhľadávanie propers začalo"],"Subtitle search started":[null,"Vyhľadávanie titulkov začalo"],"Remove Selected":[null,""],"Clear History":[null,"Vymazať históriu"],"Trim History":[null,"Redukcia histórie"],"Selected history entries removed":[null,""],"History cleared":[null,"História vymazaná"],"Removed history entries older than 30 days":[null,"Odstrániť z histórie položky staršie ako 30 dní"],"General":[null,"Všeobecné"],"Backup/Restore":[null,"Záloha/Obnova"],"Search Settings":[null,"Nastavenia vyhľadávania"],"Search Providers":[null,"Poskytovatelia hľadania"],"Subtitles Settings":[null,"Nastavenia titulkov"],"Notifications":[null,"Oznámenia"],"Anime":[null,"Anime"],"SickRage Configuration":[null,"Konfigurácia SickRage"],"Config - Shares":[null,""],"Windows Shares Configuration":[null,""],"Saved Shares":[null,""],"Your Windows share settings have been saved":[null,""],"Config - General":[null,"Nastavenia - Všeobecné"],"General Configuration":[null,"Všeobecné nastavenia"],"Saved Defaults":[null,""],"Your \"add show\" defaults have been set to your current selections.":[null,""],"Unable to create directory {directory}, log directory not changed.":[null,"Nedá sa vytvoriť priečinok {directory}, priečinok logu nebol zmenený."],"Unable to create directory {directory}, https cert directory not changed.":[null,"Nedá sa vytvoriť priečinok {directory}, priečinok pre https certifikát nebol zmenený."],"Unable to create directory {directory}, https key directory not changed.":[null,"Nedá sa vytvoriť priečinok {directory}, priečinok pre https kľúč nebol zmenený."],"Error(s) Saving Configuration":[null,"Chyba pri ukladaní nastavení"],"Configuration Saved":[null,"Nastavenia uložené"],"Config - Backup/Restore":[null,"Nastavenia - Záloha a Obnova"],"Config - Episode Search":[null,"Nastavenia - vyhľadávanie epizód"],"Config - Post Processing":[null,"Nastavenia - Následné spracovanie"],"Unpacking Not Supported, disabling unpack setting":[null,"Rozbaľovanie nepodporované, vypínam nastavenia rozbalenia"],"You tried saving an invalid normal naming config, not saving your naming settings":[null,""],"You tried saving an invalid anime naming config, not saving your naming settings":[null,"Pokúsili ste sa uložiť nesprávne nastavenia pomenovania anime, nastavenia neboli uložené"],"Config - Providers":[null,"Nastavenia - Poskytovatelia"],"No Provider Name specified":[null,"Nie je zadaný žiadny názov poskytovateľa"],"No Provider Url specified":[null,"Nie je zadaná Url poskytovateľa"],"No Provider Api key specified":[null,""],"Config - Notifications":[null,"Nastavenia - Oznámenia"],"Config - Subtitles":[null,"Nastavenia - Titulky"],"Config - Anime":[null,"Nastavenia - Anime"],"Clear Errors":[null,"Vymazať chyby"],"Clear Warnings":[null,"Vymazať varovania"],"Submit Errors":[null,"Odoslať chyby"],"Logs & Errors":[null,"Denník & chybové hlásenia"],"Log File":[null,"Súbor denníka"],"Logs":[null,"Záznamy"],"This is a test notification from SickRage":[null,"Toto je test oznámenia od SickRage"],"Choose Directory":[null,""],"Select log file folder location":[null,""],"Select CSS file":[null,""],"Select backup folder to save to":[null,""],"Select backup files to restore":[null,""],"Please fill out the necessary fields above.":[null,""],"<b>Step 1:</b> Confirm Authorization":[null,""],"Check blacklist name; the value needs to be a trakt slug":[null,""],"You must provide a recipient email address!":[null,""],"You didn't supply a Pushbullet api key":[null,""],"Don't forget to save your new pushbullet settings.":[null,""],"Select TV Download Directory":[null,""],"Select Unpack Directory":[null,""],"This pattern is invalid.":[null,"Tento vzor je neplatný."],"This pattern would be invalid without the folders, using it will force \"Season Folders\" on for all shows.":[null,""],"This pattern is valid.":[null,"Tento vzor je platný."],"Select .nzb black hole/watch location":[null,""],"Select .torrent black hole/watch location":[null,""],"Select .torrent download location":[null,""],"Minimum seeding time is":[null,""],"URL to your uTorrent client (e.g. http://localhost:8000)":[null,""],"Stop seeding when inactive for":[null,""],"URL to your Transmission client (e.g. http://localhost:9091)":[null,""],"URL to your Deluge client (e.g. http://localhost:8112)":[null,""],"IP or Hostname of your Deluge Daemon (e.g. scgi://localhost:58846)":[null,""],"URL to your Synology DS client (e.g. http://localhost:5000)":[null,""],"URL to your rTorrent client (e.g. scgi://localhost:5000 <br> or https://localhost/rutorrent/plugins/httprpc/action.php)":[null,""],"URL to your qBittorrent client (e.g. http://localhost:8080)":[null,""],"URL to your MLDonkey (e.g. http://localhost:4080)":[null,""],"URL to your putio client (e.g. http://localhost:8080)":[null,""],"<a herf=\"https://app.put.io/oauth/apps/new\" target=\"_blank\"> Create a new OAuth app for put.io</a>":[null,""],"Put.io Parent Folder":[null,""],"Put.io OAuth Token":[null,""],"Show Episodes":[null,""],"Hide Episodes":[null,""],"Select Show Location":[null,""],"Select Unprocessed Episode Folder":[null,""],"DELETED":[null,""],"Resume updating the log on this page.":[null,""],"Pause updating the log on this page.":[null,""],"searching {searchingFor}...":[null,""],"search timed out, try again or try another indexer":[null,""],"loading folders...":[null,""],"Loading...":[null,""],"You have reached this page by accident, please check the url.":[null,"Na túto stránku ste sa dostali omylom, skontrolujte správnosť url."],"A mako error has occured.<br>\n If this happened during an update a simple page refresh may be the solution.<br>\n Mako errors that happen during updates may be a one time error if there were significant ui changes.":[null,""],"Show/Hide Error":[null,"Zobraziť alebo skryť chyby"],"Add New Show":[null,"Pridať nový seriál"],"For shows that you haven't downloaded yet, this option finds a show on theTVDB.com, creates a directory for it's episodes, and adds it to SickRage.":[null,"Pre seriály, ktoré ste ešte nesťahovali, táto možnosť nájde seriál na theTVDB.com, vytvorí adresár pre epizódy a pridá ho do SickRage."],"Add From Trakt Lists":[null,"Pridať z Trakt zoznamov"],"For shows that you haven't downloaded yet, this option lets you choose from a show from one of the Trakt lists to add to SickRage.":[null,"Pre seriály, ktoré ste ešte nesťahovali, táto možnosť umožní pridať seriál do SickRage z Trakt zoznamov."],"Add From IMDB's Popular Shows":[null,"Pridať z populárnych seriálov IMDB"],"View IMDB's list of the most popular shows. This feature uses IMDB's MOVIEMeter algorithm to identify popular TV Series.":[null,"Zobraziť IMDB zoznam najpopulárnejších seriálov. Táto funkcia používa IMDB MOVIEMeter na identifikáciu populárnych seriálov."],"Add Existing Shows":[null,"Pridať existujúce seriály"],"Use this option to add shows that already have a folder created on your hard drive. SickRage will scan your existing metadata/episodes and add the show accordingly.":[null,"Túto možnosť použite na pridanie seriálov, ktoré už majú vytvorený priečinok na disku. SickRage preskenuje existujúce metadáta/epizódy a podľa toho pridá seriály."],"Add Existing Show":[null,"Pridať existujúci seriál"],"Manage Directories":[null,"Správa priečinkov"],"Customize Options":[null,"Prispôsobenie možností"],"SickRage can add existing shows, using the current options, by using locally stored NFO/XML metadata to eliminate user interaction. If you would rather have SickRage prompt you to customize each show, then use the checkbox below.":[null,""],"Prompt me to set settings for each show":[null,"Vyzvať na úpravu parametrov pre každý seriál"],"Displaying folders within these directories which aren't already added to SickRage":[null,"Zoznam priečinkov v adresároch, ktoré ešte neboli pridané do SickRage"],"Submit":[null,"Potvrdiť"],"Find a show on theTVDB":[null,"Nájsť seriál na theTVDB"],"Show retrieved from existing metadata":[null,"Seriál zistený na základe existujúcich metadát"],"All Indexers":[null,"Všetky indexové weby"],"Search":[null,"Hľadať"],"This will only affect the language of the retrieved metadata file contents and episode filenames.":[null,"Toto ovplyvní iba jazyk popisu obsahu a názvy súborov epizód."],"This <b>DOES NOT</b> allow SickRage to download non-english TV episodes!":[null,"Toto <b>NEUMOŽNÍ</b> sťahovanie neanglických TV epizód!"],"Pick the parent folder":[null,"Vyberte nadradený priečinok"],"Pre-chosen Destination Folder":[null,"Vopred vybraný cieľový priečinok"],"Customize options":[null,"Vlastné možnosti"],"Add Show":[null,"Pridať seriál"],"Skip Show":[null,"Preskočiť seriál"],"Sort By":[null,"Zoradiť podľa"],"Name":[null,"Meno"],"Original":[null,"Pôvodné"],"Votes":[null,"Hlasy"],"Rating":[null,"Hodnotenie"],"Rating > Votes":[null,"Hodnotenie > Hlasy"],"Sort Order":[null,"Poradie radenia"],"Asc":[null,"Vzostupne"],"Desc":[null,"Zostupne"],"Fetching of IMDB Data failed. Are you online?":[null,"Načítanie dát z IMDB zlyhalo. Ste pripojený?"],"Exception":[null,"Výnimka"],"Select Trakt List":[null,"Vyberte Trakt zoznam"],"Most Anticipated":[null,"Najočakávanejšie"],"Trending":[null,"Trendové"],"Popular":[null,"Populárne"],"Most Watched":[null,"Najsledovanejšie"],"Most Played":[null,"Najhranejšie"],"Most Collected":[null,"Najviac zbierané"],"Recommended":[null,"Odporúčané"],"Toggle navigation":[null,"Prepnúť navigáciu"],"Profile":[null,"Profil"],"JSONP":[null,"JSONP"],"Back to SickRage":[null,"Späť na SickRage"],"Parameters":[null,"Parametre"],"Required":[null,"Povinné"],"Description":[null,"Popis"],"Type":[null,"Typ"],"Default value":[null,"Predvolená hodnota"],"Allowed values":[null,"Povolenné hodnoty"],"Playground":[null,"Ihrisko"],"Clear":[null,"Vyčistiť"],"Yes":[null,"Áno"],"No":[null,"Nie"],"season":[null,"sezóna"],"episode":[null,"epizóda"],"Python Version":[null,"Python verzia"],"SSL Version":[null,"Verzia SSL"],"OS":[null,"OS"],"Locale":[null,"Miestne nastavenia"],"User":[null,"Používateľ"],"Program Folder":[null,"Priečinok programu"],"Config File":[null,"Súbor nastavení"],"Database File":[null,"Súbor databázy"],"Cache Folder":[null,"Priečinok vyrovnávacej pamäte"],"Log Folder":[null,"Priečinok denníka"],"Arguments":[null,"Argumenty"],"Web Root":[null,"Koreň web stránky"],"Website":[null,"Web stránka"],"Wiki":[null,"Wiki"],"Source":[null,"Zdroj"],"IRC Chat":[null,"IRC Chat"],"AnimeDB Settings":[null,"AnimeDB nastavenia"],"Look & Feel":[null,"Vzhľad a správanie"],"AniDB is non-profit database of anime information that is freely open to the public":[null,"AniDB je nezisková databáza anime dát, ktoré sú voľne prístupné pre verejnosť"],"Enable":[null,"Zapnúť"],"should SickRage use data from AniDB?":[null,"má SickRage použiť dáta z AniDB?"],"AniDB Username":[null,"Užívateľské meno AniDB"],"username of your AniDB account":[null,"meno používateľa AniDB účtu"],"AniDB Password":[null,"AniDB heslo"],"password of your AniDB account":[null,"heslo k AniDB účtu"],"AniDB MyList":[null,"AniDB MyList"],"do you want to add the PostProcessed episodes to the MyList?":[null,""],"Look and Feel":[null,"Vzhľad a správanie"],"How should the anime functions show and behave.":[null,"Ako sa majú anime funkcie zobraziť a správať."],"Split show lists":[null,"Oddeliť zoznamy seriálov"],"separate anime and normal shows in groups":[null,"rozdeliť anime a normálne seriály do skupín"],"Split in tabs":[null,"Rozdeliť na karty"],"use tabs for when splitting show lists":[null,""],"Restore":[null,"Obnoviť"],"Backup your main database file and config.":[null,"Záloha hlavnej databázy a nastavení."],"Select the folder you wish to save your backup file to":[null,"Vyberte priečinok, do ktorého si želáte uložiť zálohu"],"Restore your main database file and config.":[null,"Obnova vašej hlavnej databázy a nastavení."],"Select the backup file you wish to restore":[null,"Vyberte záložný súbor, ktorý chcete obnoviť"],"Misc":[null,"Rôzne"],"Interface":[null,"Rozhranie"],"Advanced Settings":[null,"Pokročilé Nastavenia"],"Startup options. Indexer options. Log and show file locations.":[null,"Možnosti spustenia. Možnosti indexovania. Umiestnenie súborov denníka a seriálov."],"Some options may require a manual restart to take effect.":[null,"Niektoré voľby môžu vyžadovať reštart aby sa prejavili."],"Default Indexer Language":[null,"Predvolený jazyk Indexera"],"for adding shows and metadata providers":[null,""],"Launch browser":[null,"Spustiť prehliadač"],"open the SickRage home page on startup":[null,"otvoriť hlavnú stránku SickRage pri štarte"],"Initial page":[null,"Uvodná stránka"],"Shows":[null,"Seriály"],"when launching SickRage interface":[null,"pri spustení SickRage rozhrania"],"Choose hour to update shows":[null,"Zvoľte v ktorú hodinu aktualizovať seriály"],"with information such as next air dates, show ended, etc. Use 15 for 3pm, 4 for 4am etc.":[null,"údaje o vysielacích časoch, ukončení seriálu, atď."],"note":[null,"poznámka"],"minutes are randomized each time SickRage is started":[null,"minúty sú náhodne určené pri každom spustení SickRage"],"Send to trash for actions":[null,"Odoslať do koša pri"],"when using show \"Remove\" and delete files":[null,"pri odstránení seriálu s voľbou zmazania súborov"],"on scheduled deletes of the oldest log files":[null,"pri plánovanom mazaní starých súborov denníka"],"selected actions use trash (recycle bin) instead of the default permanent delete":[null,"pri vybraných akciách sa súbory presunú do Kôša namiesto trvalého zmazania"],"Log file folder location":[null,"Miesto pre ukladanie súborov denníka"],"Number of Log files saved":[null,"Počet posledných súborov denníka"],"number of log files saved when rotating logs (default: 5) (REQUIRES RESTART)":[null,"počet súborov denníka ktoré budú na disku pri vytváraní nového súboru (predvolené: 5) (POŽADUJE REŠTART)"],"Size of Log files saved":[null,""],"maximum size in MB of the log file (default: 1MB) (REQUIRES RESTART)":[null,""],"Use initial indexer set to":[null,""],"as the default selection when adding new shows":[null,""],"Timeout show indexer at":[null,""],"seconds of inactivity when finding new shows (default:20)":[null,""],"Show root directories":[null,""],"where the files of shows are located":[null,""],"Save Changes":[null,"Uložiť zmeny"],"Options for software updates.":[null,""],"Check software updates":[null,""],"and display notifications when updates are available. Checks are run on startup and at the frequency set below*":[null,""],"Automatically update":[null,""],"fetch and install software updates. Updates are run on startup and in the background at the frequency set below*":[null,""],"Check the server every*":[null,""],"hours for software updates (default:1)":[null,""],"Notify on software update":[null,""],"send a message to all enabled notifiers when SickRage has been updated":[null,""],"User Interface":[null,""],"Options for visual appearance.":[null,""],"Interface Language":[null,"Jazyk rozhrania"],"System Language":[null,"Jazyk systému"],"for appearance to take effect, save then refresh your browser":[null,""],"Display theme":[null,"Téma zobrazenia"],"Dark":[null,"Tmavá"],"Light":[null,"Svetlá"],"Use a background image":[null,""],"use a custom image as background for SickRage":[null,""],"Background Path":[null,""],"Path to the background image":[null,""],"Show fanart in the background":[null,"Zobraziť fanart v pozadí"],"on the show summary page":[null,"Na hlavnej stránke seriálu"],"Fanart transparency":[null,"Priehľadnosť fanartu"],"transparency of the fanart in the background":[null,""],"Use a custom stylesheet file":[null,""],"use a custom .css file to style SickRage (for advanced users)":[null,""],"Stylesheet File Path":[null,""],"Path to the stylesheet (.css) file":[null,""],"Show all seasons":[null,"Zobraziť všetky sezóny"],"Sort with \"The\", \"A\", \"An\"":[null,"Zoraďovať s členmi"],"include articles (\"The\", \"A\", \"An\") when sorting show lists":[null,"Pri zoradení seriálov zahrnúť anglický člen (\"The\", \"A\", \"An\")"],"Missed episodes range":[null,"Rozsah zmeškaných epizód"],"set the range in days of the missed episodes in the Schedule page":[null,""],"Display fuzzy dates":[null,""],"move absolute dates into tooltips and display e.g. \"Last Thu\", \"On Tue\"":[null,""],"Trim zero padding":[null,""],"remove the leading number \"0\" shown on hour of day, and date of month":[null,""],"Date style":[null,"Formát dátumu"],"Use System Default":[null,"Použiť predvolené nastavenie"],"Time style":[null,""],"seconds are only shown on the History page":[null,""],"Timezone":[null,""],"Local":[null,"Miestne"],"Network":[null,"Sieť"],"display dates and times in either your timezone or the shows network timezone":[null,""],"use local timezone to start searching for episodes minutes after show ends (depends on your dailysearch frequency)":[null,""],"Download url":[null,""],"URL where the shows can be downloaded.":[null,""],"Web Interface":[null,""],"it is recommended that you enable a username and password to secure SickRage from being tampered with remotely.":[null,""],"these options require a manual restart to take effect.":[null,""],"API key":[null,""],"used to give 3rd party programs limited access to SickRage":[null,""],"you can try all the features of the API":[null,""],"here":[null,"tu"],"HTTP logs":[null,""],"enable logs from the internal Tornado web server":[null,"povoliť denníky z interného web servera Tornado"],"HTTP username":[null,"Prihlasovacie meno"],"set blank for no login":[null,"ak nechcete požadovať prihlásenie nechajte prázdne"],"HTTP password":[null,"HTTP heslo"],"blank = no authentication":[null,"prázdne = bez overenia"],"HTTP port":[null,"HTTP port"],"web port to browse and access SickRage (default:8081)":[null,"webový port na prístup k SickRage (predvolený: 8081)"],"Notify on login":[null,"Upozorniť na prihlásenie"],"enable to be notified when a new login happens in webserver":[null,"umožní zaslať notifikáciu pri prihlásení"],"Listen on IPv6":[null,"Načúvať na protokole IPv6"],"attempt binding to any available IPv6 address":[null,"pokúsiť sa o väzbu na akúkoľvek dostupnú IPv6 adresu"],"Enable HTTPS":[null,"Zapnúť HTTPS"],"enable access to the web interface using a HTTPS address":[null,"umožní šifrovaný prístup k web rozhraniu"],"HTTPS certificate":[null,"Certifikát HTTPS"],"file name or path to HTTPS certificate":[null,"názov súboru alebo cesta k HTTPS certifikátu"],"HTTPS key":[null,"Kľúč HTTPS"],"file name or path to HTTPS key":[null,"názov súboru alebo cesta k HTTPS kľúču"],"Reverse proxy headers":[null,"Spätné proxy hlavičky"],"accept the following reverse proxy headers (advanced)...":[null,"akceptovať nasledovné spätné proxy server hlavičky (pokročilé)..."],"(X-Forwarded-For, X-Forwarded-Host, and X-Forwarded-Proto)":[null,"(X-Forwarded-For, X-Forwarded-Host, a X-Forwarded-Proto)"],"CPU throttling":[null,"Obmedzovanie CPU"],"Normal (default). High is lower and Low is higher CPU use":[null,"Normálne (predvolené). Vysoké = nižšie zaťaženie a Nízke = vyššie zaťaženie CPU"],"Anonymous redirect":[null,"Anonymné presmerovanie"],"backlink protection via anonymizer service, must end in \"?\"":[null,"ochrana pred sledovaním pomocou anonymizačnej služby, musí končiť \"?\""],"Enable debug":[null,"Povoliť ladenie"],"enable debug logs":[null,"povoliť ladiace zápisy do denníka"],"Verify SSL Certs":[null,"Overovať SSL Certifikáty"],"verify SSL Certificates (Disable this for broken SSL installs (Like QNAP))":[null,"overovať SSL Certifikáty (Vypnite pri zariadeniach kde SSL nie je inštalované správne (napr. QNAP))"],"No Restart":[null,"Bez Reštartu"],"only shutdown when restarting SR":[null,"pri zvolení možnosti reštartu sa SickRage vypne"],"only select this when you have external software restarting SR automatically when it stops (like FireDaemon)":[null,"použite iba v prípade, že používate iný nástroj na automatický reštart SR, keď sa ukončí (napr. FireDaemon)"],"Encrypt passwords":[null,"Šifrovanie hesiel"],"in the <code>config.ini</code> file":[null,"v <code>config.ini</code> súbore"],"warning":[null,"upozornenie"],"passwords must only contain":[null,"heslá môžu obsahovať iba"],"ASCII characters":[null,"ASCII znaky"],"Unprotected calendar":[null,"Nechránený kalendár"],"allow subscribing to the calendar without user and password":[null,"povolí prihlásenie ku kalendáru bez používateľského mena a hesla"],"some services like Google Calendar only work this way":[null,"niektoré služby ako napr. Google Kalendár fungujú iba s týmto nastavením"],"Google Calendar Icons":[null,"Ikony v Kalendári Google"],"show an icon next to exported calendar events in Google Calendar":[null,"zobrazí ikonu pri exportovaných udalostiach v Kalendári Google"],"Proxy host":[null,"Hostiteľ proxy"],"blank to disable or proxy to use when connecting to providers":[null,"zadajte názov proxy servera ktorý sa má použiť pri kontaktovaní zdrojov alebo nechajte prázdne"],"also use global proxy setting for indexers (tvdb, xem, anidb, etc.)":[null,"použiť proxy nastavenia aj pre index stránky (tvdb, xem, anidb, atď)"],"Skip Remove Detection":[null,"Preskočiť detekciu odstránených"],"skip detection of removed files":[null,"preskočí detekciu odstránených súborov"],"if disabled the episode will be set to the default deleted status":[null,"ak je vypnuté, stav epizódy bude nastavený na predvolenú hodnotu pre vymazané"],"Default deleted episode status":[null,"Predvolené označenie vymazaných epizód"],"define the status to be set for media file that has been deleted.":[null,"vyberte stav, ktorý má byť použitý pre epizódy, ktoré boli vymazané."],"Archived option will keep previous downloaded quality":[null,""],"example: Downloaded (1080p WEB-DL) ==> Archived (1080p WEB-DL)":[null,""],"Options for github related features.":[null,""],"Branch version":[null,""],"error: No branches found.":[null,""],"select branch to use (restart required)":[null,""],"Authorization Type":[null,""],"Username and password":[null,""],"Personal access token":[null,""],"You must use a personal access token if you're using \"two-factor authentication\" on GitHub.":[null,""],"GitHub username":[null,""],"*** (REQUIRED FOR SUBMITTING ISSUES) ***":[null,""],"GitHub password":[null,""],"GitHub personal access token":[null,""],"Generate Token":[null,""],"Manage Tokens":[null,""],"GitHub remote for branch":[null,""],"access repo configured remotes (save then refresh browser)":[null,""],"default":[null,""],"origin":[null,""],"Git executable path":[null,""],"only needed if OS is unable to locate git from env":[null,""],"Git reset":[null,""],"removes untracked files and performs a hard reset on git branch automatically to help resolve update issues":[null,""],"Home Theater / NAS":[null,""],"Devices":[null,""],"Social":[null,""],"A free and open source cross-platform media center and home entertainment system software with a 10-foot user interface designed for the living-room TV.":[null,""],"send KODI commands?":[null,""],"Always on":[null,""],"log errors when unreachable?":[null,""],"Notify on snatch":[null,"Oznámiť pri začatí sťahovania"],"send a notification when a download starts?":[null,""],"Notify on download":[null,""],"send a notification when a download finishes?":[null,""],"Notify on subtitle download":[null,""],"send a notification when subtitles are downloaded?":[null,""],"Update library":[null,""],"update KODI library when a download finishes?":[null,""],"Full library update":[null,""],"perform a full library update if update per-show fails?":[null,""],"Only update first host":[null,""],"only send library updates to the first active host?":[null,""],"KODI IP:Port":[null,""],"host running KODI (eg. 192.168.1.100:8080)":[null,""],"(multiple host strings must be separated by commas)":[null,""],"Username":[null,""],"username for your KODI server (blank for none)":[null,""],"Password":[null,""],"password for your KODI server (blank for none)":[null,""],"Click below to test.":[null,""],"Experience your media on a visually stunning, easy to use interface on your Mac connected to your TV. Your media library has never looked this good!":[null,""],"For sending notifications to Plex Home Theater (PHT) clients, use the KODI notifier with port <b>3005</b>.":[null,""],"send Plex Media Server library updates?":[null,""],"Plex Media Server Auth Token":[null,""],"auth token used by Plex":[null,""],"Update Library":[null,""],"update Plex Media Server library when a download finishes":[null,""],"Plex Media Server IP:Port":[null,""],"one or more hosts running Plex Media Server<br/>(eg. 192.168.1.1:32400, 192.168.1.2:32400)":[null,""],"HTTPS":[null,""],"use https for plex media server requests?":[null,""],"Click below to test Plex Media Server(s)":[null,""],"Test Plex Media Server":[null,""],"Plex Home Theater":[null,""],"send Plex Home Theater notifications?":[null,""],"Plex Home Theater IP:Port":[null,""],"one or more hosts running Plex Home Theater<br>(eg. 192.168.1.100:3000, 192.168.1.101:3000)":[null,""],"Click below to test Plex Home Theater(s)":[null,""],"Test Plex Home Theater":[null,""],"some Plex Home Theaters <b class=\"boldest\">do not</b> support notifications e.g. Plexapp for Samsung TVs":[null,""],"Emby":[null,""],"A home media server built using other popular open source technologies.":[null,""],"send update commands to Emby?":[null,""],"Emby IP:Port":[null,""],"host running Emby (eg. 192.168.1.100:8096)":[null,""],"Emby API Key":[null,""],"Networked Media Jukebox":[null,""],"The Networked Media Jukebox, or NMJ, is the official media jukebox interface made available for the Popcorn Hour 200-series.":[null,""],"send update commands to NMJ?":[null,""],"Popcorn IP address":[null,""],"IP address of Popcorn 200-series (eg. 192.168.1.100)":[null,""],"Get settings":[null,""],"Get Settings":[null,""],"the Popcorn Hour device must be powered on and NMJ running.":[null,""],"NMJ database":[null,""],"automatically filled via the 'Get Settings' button.":[null,""],"NMJ mount url":[null,""],"Networked Media Jukebox v2":[null,""],"The Networked Media Jukebox, or NMJv2, is the official media jukebox interface made available for the Popcorn Hour 300 & 400-series.":[null,""],"send update commands to NMJv2?":[null,""],"IP address of Popcorn 300/400-series (eg. 192.168.1.100)":[null,""],"Database location":[null,""],"Database instance":[null,""],"adjust this value if the wrong database is selected.":[null,""],"Find database":[null,""],"Find Database":[null,""],"the Popcorn Hour device must be powered on.":[null,""],"NMJv2 database":[null,""],"automatically filled via the 'Find Database' buttons.":[null,""],"Synology":[null,""],"The Synology DiskStation NAS.":[null,""],"Synology Indexer is the daemon running on the Synology NAS to build its media database.":[null,""],"send Synology notifications?":[null,""],"requires SickRage to be running on your Synology NAS.":[null,""],"Synology Indexer":[null,""],"Synology Notifier is the notification system of Synology DSM":[null,""],"send notifications to the Synology Notifier?":[null,""],"pyTivo":[null,""],"pyTivo is both an HMO and GoBack server. This notifier will load the completed downloads to your Tivo.":[null,""],"send notifications to pyTivo?":[null,""],"requires the downloaded files to be accessible by pyTivo.":[null,""],"pyTivo IP:Port":[null,""],"host running pyTivo (eg. 192.168.1.1:9032)":[null,""],"pyTivo share name":[null,""],"value used in pyTivo Web Configuration to name the share.":[null,""],"Tivo name":[null,""],"(Messages & Settings > Account & System Information > System Information > DVR name)":[null,""],"Growl":[null,""],"A cross-platform unobtrusive global notification system.":[null,""],"send Growl notifications?":[null,""],"Growl IP:Port":[null,""],"host running Growl (eg. 192.168.1.100:23053)":[null,""],"may leave blank if SickRage is on the same host.":[null,""],"otherwise Growl <b>requires</b> a password to be used.":[null,""],"Click below to register and test Growl, this is required for Growl notifications to work.":[null,""],"Register Growl":[null,""],"Prowl":[null,""],"A Growl client for iOS.":[null,""],"send Prowl notifications?":[null,""],"Prowl Message Title":[null,""],"Global Prowl API key(s)":[null,""],"Prowl API(s) listed here, separated by commas if applicable, will<br> receive notifications for <b>all</b> shows. Your Prowl API key is available at:":[null,""],"(this field may be blank except when testing.)":[null,""],"Show notification list":[null,""],"-- Select a Show --":[null,""],"Configure per-show notifications here by entering Prowl API key(s), separated by commas, '\n 'after selecting a show in the drop-down box. Be sure to activate the 'Save for this show' '\n 'button below after each entry.":[null,""],"Save for this show":[null,""],"Prowl priority":[null,""],"Very Low":[null,""],"Moderate":[null,""],"Normal":[null,"Normálne"],"High":[null,"Vysoké"],"Emergency":[null,""],"priority of Prowl messages from SickRage.":[null,""],"Libnotify":[null,""],"The standard desktop notification API for Linux/*nix systems. This notifier will only function if the pynotify module is installed (Ubuntu/Debian package <a href=\"apt:python-notify\">python-notify</a>).":[null,""],"send Libnotify notifications?":[null,""],"Pushover":[null,""],"Pushover makes it easy to send real-time notifications to your Android and iOS devices.":[null,""],"send Pushover notifications?":[null,""],"Pushover key":[null,""],"user key of your Pushover account":[null,""],"Pushover API key":[null,""],"click here":[null,""]," to create a Pushover API key":[null,""],"Pushover devices":[null,""],"comma separated list of pushover devices you want to send notifications to":[null,""],"Pushover notification sound":[null,""],"Bike":[null,""],"Bugle":[null,""],"Cash Register":[null,""],"Classical":[null,""],"Cosmic":[null,""],"Falling":[null,""],"Gamelan":[null,""],"Incoming":[null,""],"Intermission":[null,""],"Magic":[null,""],"Mechanical":[null,""],"Piano Bar":[null,""],"Siren":[null,""],"Space Alarm":[null,""],"Tug Boat":[null,""],"Alien Alarm (long)":[null,""],"Climb (long)":[null,""],"Persistent (long)":[null,""],"Pushover Echo (long)":[null,""],"Up Down (long)":[null,""],"None (silent)":[null,""],"Device specific":[null,""],"choose notification sound to use":[null,""],"Pushover priority":[null,""],"Choose priority to use":[null,""],"Boxcar 2":[null,""],"Read your messages where and when you want them!":[null,""],"send Boxcar notifications?":[null,""],"Boxcar2 access token":[null,""],"access token for your Boxcar account.":[null,""],"NMA":[null,""],"Notify My Android":[null,""],"Notify My Android is a Prowl-like Android App and API that offers an easy way to send notifications from your application directly to your Android device.":[null,""],"send NMA notifications?":[null,""],"NMA API key":[null,""],"(multiple keys must be separated by commas, up to a maximum of 5)":[null,""],"NMA priority":[null,""],"priority of NMA messages from SickRage.":[null,""],"Pushalot":[null,""],"Pushalot is a platform for receiving custom push notifications to connected devices running Windows Phone or Windows 8.":[null,""],"send Pushalot notifications ?":[null,""],"Pushalot authorization token":[null,""],"authorization token of your Pushalot account.":[null,""],"Pushbullet":[null,""],"Pushbullet is a platform for receiving custom push notifications to connected devices running Android/iOS and desktop browsers such as Chrome, Firefox or Opera.":[null,""],"send Pushbullet notifications?":[null,""],"Pushbullet API key":[null,""],"API key of your Pushbullet account":[null,""],"Pushbullet devices":[null,""],"Update device list":[null,""],"Pushbullet channels":[null,""],"Free Mobile":[null,""],"Free Mobile is a famous French cellular network provider.<br> It provides to their customer a free SMS API.":[null,""],"send SMS notifications?":[null,""],"send a SMS when a download starts?":[null,""],"send a SMS when a download finishes?":[null,""],"send a SMS when subtitles are downloaded?":[null,""],"Free Mobile customer ID":[null,""],"it's your Free Mobile customer ID (8 digits)":[null,""],"Free Mobile API key":[null,""],"find your API key in your customer portal.":[null,""],"Click below to test your settings.":[null,""],"Telegram":[null,""],"Telegram is a cloud-based instant messaging service.":[null,""],"send Telegram notifications?":[null,""],"send a message when a download starts?":[null,""],"send a message when a download finishes?":[null,""],"send a message when subtitles are downloaded?":[null,""],"User/group ID":[null,""],"contact @myidbot on Telegram to get an ID":[null,""],"Bot API token":[null,""],"contact @BotFather on Telegram to set up one":[null,""],"Join":[null,""],"Join all of your devices together!":[null,""],"send Join notifications?":[null,""],"Device ID":[null,""],"per device specific id":[null,""]," to create a Join API key":[null,""],"Twilio":[null,""],"Twilio is a webservice API that allows you to communicate directly with a mobile number. This notifier will send a text directly to your mobile device.":[null,""],"should SickRage text your mobile device?":[null,""],"Twilio Account SID":[null,""],"account SID of your Twilio account.":[null,""],"Twilio Auth Token":[null,""],"Twilio Phone SID":[null,""],"phone SID that you would like to send the sms from":[null,""],"Your phone number":[null,""],"phone number that will receive the sms. Please use the format +1-###-###-####":[null,""],"Twitter":[null,""],"A social networking and microblogging service, enabling its users to send and read other users' messages called tweets.":[null,""],"should SickRage post tweets on Twitter?":[null,""],"you may want to use a secondary account.":[null,""],"send direct message":[null,""],"send a notification via Direct Message, not via status update":[null,""],"send DM to":[null,""],"Twitter account to send Direct Messages to (must follow you)":[null,""],"Step One":[null,""],"Request Authorization":[null,""],"Click the \"Request Authorization\" button.<br> This will open a new page containing an auth key.<br> <b>note:</b> if nothing happens check your popup blocker.":[null,""],"Step Two":[null,""],"Enter the key Twitter gave you below, and click \"Verify Key\".":[null,""],"Trakt":[null,""],"Trakt helps keep a record of what TV shows and movies you are watching. Based on your favorites, Trakt recommends additional shows and movies you'll enjoy!":[null,""],"send Trakt.tv notifications?":[null,""],"username of your Trakt account.":[null,""],"Trakt PIN":[null,""],"Get Trakt PIN":[null,""],"PIN code to authorize SickRage to access Trakt on your behalf.":[null,""],"API Timeout":[null,""],"seconds to wait for Trakt API to respond. (Use 0 to wait forever)":[null,""],"Default indexer":[null,""],"Sync libraries":[null,""],"sync your SickRage show library with your trakt show library.":[null,""],"Remove Episodes From Collection":[null,""],"remove an episode from your Trakt Collection if it is not in your SickRage Library.":[null,""],"Sync watchlist":[null,""],"sync your SickRage show watchlist with your trakt show watchlist (either Show and Episode).":[null,""],"episode will be added on watch list when wanted or snatched and will be removed when downloaded ":[null,""],"Watchlist add method":[null,""],"Skip All":[null,""],"Download Pilot Only":[null,""],"Get whole show":[null,""],"method in which to download episodes for new shows.":[null,""],"Remove episode":[null,""],"remove an episode from your watchlist after it is downloaded.":[null,""],"Remove series":[null,""],"remove the whole series from your watchlist after any download.":[null,""],"Remove watched show":[null,""],"remove the show from sickrage if it's ended and completely watched":[null,""],"Start paused":[null,""],"shows grabbed from your trakt watchlist start paused.":[null,""],"Trakt blackList name":[null,""],"name (slug) of list on Trakt for blacklisting show on 'Add Trending Show' & 'Add Recommended Shows' pages":[null,""],"Email":[null,""],"Allows configuration of email notifications on a per show basis.":[null,""],"send email notifications?":[null,""],"SMTP host":[null,""],"hostname of your SMTP email server.":[null,""],"SMTP port":[null,""],"port number used to connect to your SMTP host.":[null,""],"SMTP from":[null,""],"sender email address, some hosts require a real address.":[null,""],"Use TLS":[null,""],"check to use TLS encryption.":[null,""],"SMTP user":[null,""],"(optional) your SMTP server username.":[null,""],"SMTP password":[null,""],"(optional) your SMTP server password.":[null,""],"Global email list":[null,""],"email addresses listed here, separated by commas if applicable, will<br> receive notifications for <b>all</b> shows.":[null,""],"(This field may be blank except when testing.)":[null,""],"Email Subject":[null,""],"use a custom subject for some privacy protection?":[null,""],"(leave blank for the default SickRage subject)":[null,""],"configure per-show notifications here by entering email address(es), separated by commas,":[null,""],"after selecting a show in the drop-down box. Be sure to activate the 'Save for this show'":[null,""],"button below after each entry.":[null,""],"Slack":[null,""],"Slack brings all your communication together in one place. It's real-time messaging, archiving and search for modern teams.":[null,""],"should SickRage post messages on Slack?":[null,""],"Slack Incoming Webhook":[null,""],"Discord":[null,""],"All-in-one voice and text chat for gamers that's free, secure, and works on both your desktop and phone.":[null,""],"Should SickRage post messages on Discord?":[null,""],"Discord Incoming Webhook":[null,""],"Create webhook under channel settings.":[null,""],"Discord Bot Name":[null,""],"Blank will use webhook default Name.":[null,""],"Discord Avatar URL":[null,""],"Blank will use webhook default Avatar.":[null,""],"Discord TTS":[null,""],"Send notifications using text-to-speech":[null,""],"Post-Processing":[null,""],"Episode Naming":[null,""],"Metadata":[null,""],"Settings that dictate how SickRage should process completed downloads.":[null,""],"enable the automatic post processor to scan and process any files in your Post Processing Dir":[null,""],"do not use if you use an external Post Processing script":[null,""],"Post Processing Dir":[null,""],"the folder where your download client puts the completed TV downloads.":[null,""],"please use seperate downloading and completed folders in your download client if possible.":[null,""],"Processing Method":[null,""],"what method should be used to put files into the library?":[null,""],"if you keep seeding torrents after they finish, please avoid the 'move' processing method to prevent errors.":[null,""],"Auto Post-Processing Frequency":[null,""],"time in minutes to check for new files to auto post-process (min 10)":[null,""],"Postpone post processing":[null,""],"wait to process a folder if sync files are present.":[null,""],"Sync File Extensions":[null,""],"comma seperated list of extensions or filename globs SickRage ignores when Post Processing":[null,""],"Rename Episodes":[null,""],"rename episode using the Episode Naming settings?":[null,""],"Create missing show directories":[null,""],"create missing show directories when they get deleted":[null,""],"Add shows without directory":[null,""],"add shows without creating a directory (not recommended)":[null,""],"Move associated files":[null,""],"move associated (srt/srr/sfv/etc) files while post processing?":[null,""],"Rename .nfo file":[null,""],"rename the original .nfo file to .nfo-orig to avoid conflicts?":[null,""],"Associated file extensions":[null,""],"comma separated list of associated file extensions SickRage should keep while post processing.":[null,""],"leaving it empty means no associated files will be post processed":[null,""],"Delete non associated files":[null,""],"delete non associated files while post processing?":[null,""],"Change File Date":[null,""],"set last modified filedate to the date that the episode aired?":[null,""],"some systems may ignore this feature.":[null,""],"Timezone for File Date":[null,""],"local":[null,""],"network":[null,""],"what timezone should be used to change File Date?":[null,""],"Unpack":[null,""],"What to do with archived releases found in your <i>TV Download Dir</i>?":[null,""],"Ignore (do not process contents)":[null,""],"Unpack (process contents)":[null,""],"Treat as video (process archive as-is)":[null,""],"'Unpack' only works with RAR archives":[null,""],"Windows":[null,""],"WinRar is required on windows":[null,""],"Unpack Directory":[null,""],"Choose a path to unpack files, leave blank to unpack in download dir":[null,""],"Unrar Location":[null,""],"add the path to unrar if it is not in the system path":[null,""],"Alternate Unrar Tool":[null,""],"add the path to an alternate unrar tool if it is not in the system path":[null,""],"Delete RAR contents":[null,""],"delete content of RAR files, even if Process Method not set to move?":[null,""],"only working with RAR archive":[null,""],"Don't delete empty folders":[null,""],"leave empty folders when Post Processing?":[null,""],"can be overridden using manual Post Processing":[null,""],"Follow symbolic-links":[null,""],"follow down symbolic links in download directory?":[null,""],"<b>EXPERTS ONLY.</b><br>Enable only if you know what <b>circular symbolic links</b> are,<br>and can <b>verify that you have none</b>.":[null,""],"Use icacls":[null,""],"Windows only":[null,""],"sets video permissions after using the move method in post processing":[null,""],"Extra Scripts":[null,""],"see":[null,""],"for script arguments description and usage.":[null,""],"How SickRage will name and sort your episodes.":[null,""],"Name Pattern":[null,""],"Toggle Naming Legend":[null,""],"don't forget to add quality pattern. Otherwise after post-processing the episode will have UNKNOWN quality":[null,""],"Meaning":[null,""],"Pattern":[null,""],"Result":[null,""],"Use lower case if you want lower case names (eg. %sn, %e.n, %q_n etc)":[null,""],"Show Name":[null,""],"Show.Name":[null,""],"Show_Name":[null,""],"Season Number":[null,""],"XEM Season Number":[null,""],"Episode Number":[null,""],"XEM Episode Number":[null,""],"Episode Name":[null,""],"Episode.Name":[null,""],"Episode_Name":[null,""],"Air Date":[null,""],"Post-Processing Date":[null,""],"Quality":[null,""],"Scene Quality":[null,""],"Release Name":[null,""],"SickRage' is used in place of RLSGROUP if it could not be properly detected":[null,""],"Release Group":[null,""],"If episode is proper/repack add 'proper' to name.":[null,""],"Release Type":[null,""],"Multi-Episode Style":[null,""],"Single-EP Sample":[null,""],"Multi-EP sample":[null,""],"Strip Show Year":[null,""],"remove the TV show's year when renaming the file?":[null,""],"only applies to shows that have year inside parentheses":[null,""],"Custom Air-By-Date":[null,""],"name air-by-date shows differently than regular shows?":[null,""],"Toggle ABD Naming Legend":[null,""],"Regular Air Date":[null,""],"Year":[null,""],"Month":[null,""],"Day":[null,""],"Multi-EP style is ignored":[null,""],"Custom Sports":[null,""],"name sports shows differently than regular shows?":[null,""],"Toggle Sports Naming Legend":[null,""],"Sports Air Date":[null,""],"Custom Anime":[null,""],"name anime shows differently than regular shows?":[null,""],"Toggle Anime Naming Legend":[null,""],">XEM Season Number":[null,""],"Single-EP Anime Sample":[null,""],"Multi-EP Anime sample":[null,""],"Add Absolute Number":[null,""],"add the absolute number to the season/episode format?":[null,""],"only applies to anime. (eg. S15E45 - 310 vs S15E45)":[null,""],"Only Absolute Number":[null,""],"replace season/episode format with absolute number":[null,""],"only applies to anime.":[null,""],"No Absolute Number":[null,""],"don't include the absolute number":[null,""],"The data associated to the data. These are files associated to a TV show in the form of images and text that, when supported, will enhance the viewing experience.":[null,""],"Metadata Type":[null,""],"toggle metadata options that you wish to be created":[null,""],"multiple targets may be used":[null,""],"Select Metadata":[null,""],"Provider Priorities":[null,""],"Provider Options":[null,""],"Configure Custom Newznab Providers":[null,""],"Configure Custom Torrent Providers":[null,""],"Check off and drag the providers into the order you want them to be used.":[null,""],"At least one provider is required but two are recommended.":[null,""],"Torrent providers can be toggled in ":[null,""],"Provider does not support backlog searches at this time.":[null,""],"Provider is <b>NOT WORKING</b>.":[null,""],"Configure individual provider settings here.":[null,""],"Check with provider's website on how to obtain an API key if needed.":[null,""],"Configure provider":[null,""],"no providers available to configure.":[null,""],"URL":[null,""],"Enable daily searches":[null,""],"enable provider to perform daily searches.":[null,""],"Enable backlog searches":[null,""],"enable provider to perform backlog searches.":[null,""],"Season search mode":[null,""],"when searching for complete seasons you can choose to have it look for season packs only, or choose to have it build a complete season from just single episodes.":[null,""],"season packs only.":[null,""],"episodes only.":[null,""],"Enable fallback":[null,""],"when searching for a complete season depending on search mode you may return no results, this helps by restarting the search using the opposite search mode.":[null,""],"Custom URL":[null,""],"the URL should include the protocol (and port if applicable). Examples: http://192.168.1.4/ or http://localhost:3000/":[null,""],"Api key":[null,""],"Digest":[null,""],"Hash":[null,""],"Passkey":[null,""],"Cookies":[null,""],"example: uid=1234;pass=567845439634987<br>note: uid and pass are not your username/password.<br>use DevTools or Firebug to get these values after logging in on your browser.":[null,""],"Pin":[null,""],"Seed ratio":[null,""],"stop transfer when ratio is reached<br>(-1 SickRage default to seed forever, or leave blank for downloader default)":[null,""],"Minimum seeders":[null,""],"Minimum leechers":[null,""],"Confirmed download":[null,""],"only download torrents from trusted or verified uploaders ?":[null,""],"Ranked torrents":[null,""],"only download ranked torrents (trusted releases)":[null,""],"English torrents":[null,""],"only download english torrents, or torrents containing english subtitles":[null,""],"For Spanish torrents":[null,""],"ONLY search on this provider if show info is defined as \"Spanish\" (avoid provider's use for VOS shows)":[null,""],"Sorting results by":[null,""],"Freeleech":[null,""],"only download <b>\"FreeLeech\"</b> torrents.":[null,""],"Category":[null,""],"select torrent with Italian subtitle":[null,""],"Configure Custom<br>Newznab Providers":[null,""],"Add and setup or remove custom Newznab providers.":[null,""],"Select provider":[null,""],"-- add new provider --":[null,""],"Provider name":[null,""],"Site URL":[null,""],"Newznab search categories":[null,""],"select your Newznab categories on the left, and click the \"update categories\" button to use them for searching.) <b>don't forget to to save the form!":[null,""],"Update Categories":[null,""],"Add":[null,""],"Delete":[null,""],"Add and setup or remove custom RSS providers.":[null,""],"RSS URL":[null,""],"Search element":[null,""],"eg: title":[null,""],"Episode Search":[null,""],"NZB Search":[null,""],"Torrent Search":[null,""],"How to manage searching with":[null,""],"Randomize Providers":[null,""],"randomize the provider search order instead of going in order of placement":[null,""],"Download propers":[null,""],"replace original download with \"Proper\" or \"Repack\" if nuked":[null,""],"Check propers every":[null,""],"24 hours":[null,""],"4 hours":[null,""],"90 mins":[null,""],"45 mins":[null,""],"15 mins":[null,""],"Backlog search day(s)":[null,""],"number of day(s) that the \"Forced Backlog Search\" will cover (e.g. 7 Days)":[null,""],"Backlog search frequency":[null,""],"time in minutes between searches (min.":[null,""],"Daily search frequency":[null,""],"Usenet retention":[null,""],"age limit in days for usenet articles to be used (e.g. 500)":[null,""],"Ignore words":[null,""],"results with one or more word from this list will be ignored<br>separate words with a comma, e.g. \"word1,word2,word3\"":[null,""],"Require words":[null,""],"results with no word from this list will be ignored<br>separate words with a comma, e.g. \"word1,word2,word3\"":[null,""],"Trackers list":[null,""],"trackers that will be added to magnets without trackers<br>separate trackers with a comma, e.g. \"tracker1,tracker2,tracker3\"":[null,""],"Ignore language names in subbed results":[null,""],"ignore subbed releases based on language names <br>\n Example: \"dk\" will ignore words: dksub, dksubs, dksubbed, dksubed <br>\n separate languages with a comma, e.g. \"lang1,lang2,lang3":[null,""],"Allow high priority":[null,""],"set downloads of recently aired episodes to high priority":[null,""],"Use Failed Downloads":[null,""],"use Failed Download Handling?":[null,""],"will only work with snatched/downloaded episodes after enabling this":[null,""],"Delete Failed":[null,""],"delete files left over from a failed download?":[null,""],"this only works if Use Failed Downloads is enabled.":[null,""],"How to handle NZB search results.":[null,""],"Search NZBs":[null,""],"enable NZB search providers":[null,""],"Send .nzb files to":[null,""],"SABnzbd server URL":[null,""],"URL to your SABnzbd server (e.g. http://localhost:8080/)":[null,""],"SABnzbd username":[null,""],"(blank for none)":[null,""],"SABnzbd password":[null,""],"SABnzbd API key":[null,""],"locate at... SABnzbd Config -> General -> API Key":[null,""],"Use SABnzbd category":[null,""],"add downloads to this category (e.g. TV)":[null,""],"Use SABnzbd category (backlog episodes)":[null,""],"add downloads of old episodes to this category (e.g. TV)":[null,""],"Use SABnzbd category for anime":[null,""],"add anime downloads to this category (e.g. anime)":[null,""],"Use SABnzbd category for anime (backlog episodes)":[null,""],"add anime downloads of old episodes to this category (e.g. anime)":[null,""],"Use forced priority":[null,""],"enable to change priority from HIGH to FORCED":[null,""],"Black hole folder location":[null,""],"<b>.nzb</b> files are stored at this location for external software to find and use":[null,""],"Connect using HTTPS":[null,""],"enable Secure control in NZBGet and set the correct Secure Port here":[null,""],"NZBget host:port":[null,""],"(e.g. localhost:6789)":[null,""],"NZBget RPC host name and port number (not NZBgetweb!)":[null,""],"NZBget username":[null,""],"locate in nzbget.conf (default:nzbget)":[null,""],"NZBget password":[null,""],"locate in nzbget.conf (default:tegbzn6789)":[null,""],"Use NZBget category":[null,""],"send downloads marked this category (e.g. TV)":[null,""],"Use NZBget category (backlog episodes)":[null,""],"send downloads of old episodes marked this category (e.g. TV)":[null,""],"Use NZBget category for anime":[null,""],"send anime downloads marked this category (e.g. anime)":[null,""],"Use NZBget category for anime (backlog episodes)":[null,""],"send anime downloads of old episodes marked this category (e.g. anime)":[null,""],"NZBget priority":[null,""],"Very low":[null,""],"Low":[null,"Nizke"],"Very high":[null,""],"Force":[null,""],"priority for daily snatches (no backlog)":[null,"priorita denných sťahovaní (okrem backlogu)"],"Torrent host:port":[null,""],"URL to your Synology DSM (e.g. http://localhost:5000/)":[null,""],"Client username":[null,""],"Client password":[null,""],"Downloaded files location":[null,""],"where Synology Download Station will save downloaded files (blank for client default)":[null,""],"the destination has to be a shared folder for Synology DS":[null,""],"Click below to test":[null,""],"How to handle Torrent search results.":[null,""],"Search torrents":[null,""],"enable torrent search providers":[null,""],"Send .torrent files to":[null,""],"<b>.torrent</b> files are stored at this location for external software to find and use":[null,""],"URL to your torrent client (e.g. http://localhost:8000/)":[null,""],"Torrent RPC URL":[null,""],"the path without leading and trailing slashes (e.g. transmission)":[null,""],"Http Authentication":[null,""],"Verify certificate":[null,""],"disable if you get \"Deluge: Authentication Error\" in your log":[null,""],"verify SSL certificates for HTTPS requests":[null,""],"Add label to torrent":[null,""],"(blank spaces are not allowed)":[null,""],"label plugin must be enabled in Deluge clients":[null,""],"for QBitTorrent 3.3.1 and up":[null,""],"Add label to torrent for anime":[null,""],"for QBitTorrent 3.3.1 and up ":[null,""],"where <span id=\"torrent_client\">the torrent client</span> will save downloaded files (blank for client default)":[null,""],"the destination has to be a shared folder for Synology DS</span>":[null,""],"Minimum seeding time":[null,""],"time in hours":[null,""],"(default:'0' passes blank to client and '-1' passes nothing)":[null,""],"Start torrent paused":[null,""],"add .torrent to client but do <b style=\"font-weight:900\">not</b> start downloading":[null,""],"Allow high bandwidth":[null,""],"use high bandwidth allocation if priority is high":[null,""],"Test Connection":[null,""],"Windows Shares":[null,""],"Defines your existing windows shares so that we can add them to the browse dialog":[null,""],"Share #{number}":[null,""],"Share label":[null,""],"Hostname or IP":[null,""],"Share path":[null,""],"Subtitles Search":[null,""],"Subtitles Plugin":[null,""],"Plugin Settings":[null,""],"Settings that dictate how SickRage handles subtitles search results.":[null,""],"Search Subtitles":[null,""],"Subtitle Languages":[null,""],"Subtitle Directory":[null,""],"the directory where SickRage should store your <i>Subtitles</i> files.":[null,""],"leave empty if you want store subtitle in episode path.":[null,""],"Subtitle Find Frequency":[null,""],"time in hours between scans (default: 1)":[null,""],"Include Specials":[null,""],"include the show's specials when searching for subtitles?":[null,""],"Perfect matches":[null,""],"only download subtitles that match: release group, video codec, audio codec and resolution":[null,""],"if disabled you may get out of sync subtitles":[null,""],"Subtitles History":[null,""],"log downloaded Subtitle on History page?":[null,""],"Subtitles Multi-Language":[null,""],"append language codes to subtitle filenames?":[null,""],"this option is required if you use multiple subtitle languages":[null,""],"Delete unwanted subtitles":[null,""],"enable to delete unwanted subtitle languages bundled with release":[null,""],"Embedded Subtitles":[null,""],"ignore subtitles embedded inside video file?":[null,""],"this will ignore <u>all</u> embedded subtitles for every video file!":[null,""],"Hearing Impaired Subtitles":[null,""],"download hearing impaired style subtitles?":[null,""],"See":[null,""],"for a script arguments description.":[null,""],"Additional scripts separated by <b>|</b>.":[null,""],"Scripts are called after each episode has searched and downloaded subtitles.":[null,""],"For any scripted languages, include the interpreter executable before the script. See the following example":[null,""],"For Windows:":[null,""],"For Linux / OS X:":[null,""],"Subtitle Providers":[null,""],"Check off and drag the plugins into the order you want them to be used.":[null,""],"At least one plugin is required.":[null,""]," Web-scraping plugin":[null,""],"Provider Settings":[null,""],"Set user and password for each provider":[null,""],"User Name":[null,""],"Change Show":[null,""],"Prev Show":[null,""],"Next Show":[null,""],"Jump to Season":[null,""],"Specials":[null,""],"Poster for":[null,""],"Stars":[null,""],"minutes":[null,""],"View other popular {genre} shows on trakt.tv.":[null,""],"View other popular {imdbgenre} shows on IMDB.":[null,""],"Allowed":[null,""],"Preferred":[null,""],"Originally Airs":[null,""],"Show Status":[null,""],"Default EP Status":[null,""],"Location":[null,""],"Missing":[null,""],"Scene Name":[null,""],"Required Words":[null,""],"Ignored Words":[null,""],"Size":[null,""],"Info Language":[null,""],"Subtitles SR Metadata":[null,""],"Season Folders":[null,""],"Paused":[null,""],"Air-by-Date":[null,""],"Sports":[null,""],"DVD Order":[null,""],"Scene Numbering":[null,""],"Select Filtered Episodes":[null,""],"Clear All":[null,""],"Change selected episodes to":[null,""],"Select Columns":[null,""],"NFO":[null,""],"TBN":[null,""],"Episode":[null,""],"Absolute":[null,""],"Scene":[null,""],"Scene Absolute":[null,""],"File Name":[null,""],"Airdate":[null,""],"Download":[null,""],"Change the value here if scene numbering differs from the indexer episode numbering":[null,""],"Change the value here if scene absolute numbering differs from the indexer absolute numbering":[null,""],"Manual Search":[null,""],"Do you want to mark this episode as failed?":[null,""],"The episode release name will be added to the failed history, preventing it to be downloaded again.":[null,""],"Do you want to include the current episode quality in the search?":[null,""],"Choosing No will ignore any releases with the same episode quality as the one currently downloaded/snatched.":[null,"Výberom \"Nie\" bude ignorovať verzie s rovnakou kvalitou ako tá ktorá sa stiahla / sťahuje sa."],"Download subtitle":[null,""],"Do you want to re-download the subtitle for this language?":[null,""],"It will overwrite your current subtitle":[null,""],"Format":[null,""],"Advanced":[null,""],"Main Settings":[null,""],"Show Location":[null,""],"Preferred Quality":[null,""],"Default Episode Status":[null,""],"this will set the status for future episodes.":[null,""],"this only applies to episode filenames and the contents of metadata files.":[null,""],"search for subtitles":[null,""],"Use SR Metdata":[null,""],"use SickRage metadata when searching for subtitle, this will override the autodiscovered metadata":[null,""],"pause this show (SickRage will not download episodes)":[null,""],"Format Settings":[null,""],"Air by date":[null,""],"check if the show is released as Show.03.02.2010 rather than Show.S02E03.":[null,""],"in case of an air date conflict between regular and special episodes, the later will be ignored.":[null,""],"check if the show is Anime and episodes are released as Show.265 rather than Show.S02E03":[null,""],"check if the show is a sporting or MMA event released as Show.03.02.2010 rather than Show.S02E03":[null,""],"Season folders":[null,""],"group episodes by season folder (uncheck to store in a single folder)":[null,""],"search by scene numbering (uncheck to search by indexer numbering)":[null,""],"use the DVD order instead of the air order":[null,""],"a \"Force Full Update\" is necessary, and if you have existing episodes you need to sort them manually.":[null,""],"comma-separated <i>e.g. \"word1,word2,word3</i>\"":[null,""],"search results with one or more words from this list will be ignored.":[null,""],"e.g. \"word1,word2,word3\"":[null,""],"search results with no words from this list will be ignored.":[null,""],"Scene Exception":[null,""],"this will affect episode search on NZB and torrent providers.":[null,""],"this list appends to the original show name.":[null,""],"WARNING logs":[null,""],"ERROR logs":[null,""],"There are no events to display.":[null,""],"Limit":[null,""],"Layout":[null,""],"HistoryLayout":[null,""],"Compact":[null,""],"Detailed":[null,""],"Time":[null,""],"Provider":[null,""],"Missing Provider":[null,""],"missing provider":[null,""],"Directory":[null,""],"Show Name (tvshow.nfo)":[null,""],"Indexer":[null,""],"Enter the folder containing the episode":[null,""],"Process Method to be used":[null,""],"Copy":[null,""],"Move":[null,""],"Hard Link":[null,""],"Symbolic Link":[null,""],"Symbolic Link Reversed":[null,""],"Force already Post Processed Dir/Files":[null,""],"Mark Dir/Files as priority download":[null,""],"(Check it to replace the file even if it exists at higher quality)":[null,""],"Delete files and folders":[null,""],"(Check it to delete files and folders like auto processing)":[null,""],"Don't use processing queue":[null,""],"(If checked this will return the result of the process here, but may be slow!)":[null,""],"Mark download as failed":[null,""],"Process":[null,""],"Download subtitles for this show?":[null,""],"use SickRage metadata when searching for subtitle, <br />this will override the autodiscovered metadata":[null,""],"Status for previously aired episodes":[null,""],"Status for all future episodes":[null,""],"Group episodes by season folder?":[null,""],"Is this show an Anime?":[null,""],"Is this show scene numbered?":[null,""],"Save Defaults":[null,""],"Use current values as the defaults":[null,""],"<p>Select your preferred fansub groups from the <b>Available Groups</b> and add them to the <b>Whitelist</b>. Add groups to the <b>Blacklist</b> to ignore them.</p>\n <p>The <b>Whitelist</b> is checked <i>before</i> the <b>Blacklist</b>.</p>\n <p>Groups are shown as <b>Name</b> | <b>Rating</b> | <b>Number of subbed episodes</b>.</p>\n <p>You may also add any fansub group not listed to either list manually.</p>\n <p>When doing this please note that you can only use groups listed on anidb for this anime.\n <br>If a group is not listed on anidb but subbed this anime, please correct anidb's data.</p>":[null,""],"Whitelist":[null,""],"Available Groups":[null,""],"Add to Whitelist":[null,""],"Add to Blacklist":[null,""],"Blacklist":[null,""],"Custom Group":[null,""],"Allowed Quality:":[null,""],"Preferred Quality:":[null,""],"Filter Show Name":[null,""],"Root":[null,""],"All":[null,""],"Clear Filter(s)":[null,""],"Poster":[null,"Plagát"],"Small Poster":[null,""],"Banner":[null,"Banner"],"Simple":[null,""],"Next Episode":[null,""],"Progress":[null,""],"Direction":[null,""],"Ascending":[null,""],"Descending":[null,""],"Poster Size":[null,""],"Continuing":[null,""],"Ended":[null,""],"Total":[null,""],"Invalid date":[null,""],"No Network":[null,""],"Next Ep":[null,""],"Prev Ep":[null,""],"Show":[null,"Zobraziť"],"Downloads":[null,""],"Active":[null,""],"loading":[null,""],"<p><b><u>Preferred</u></b> qualities will replace those in <b><u>allowed</u></b>, even if they are lower.</p>":[null,""],"New":[null,""],"Set as Default":[null,""],"Remember me":[null,""],"Edit Selected":[null,""],"Subtitle":[null,""],"Default Ep Status":[null,""],"Update":[null,""],"Rescan":[null,""],"Rename":[null,""],"Search Subtitle":[null,""],"Force Metadata Regen":[null,""],"Snatched (Allowed)":[null,"Sťahované (Povolené)"],"Jump to Show":[null,""],"Force Backlog":[null,""],"Manage episodes with status":[null,""],"Manage":[null,""],"None of your episodes have status":[null,""],"Shows containing":[null,""],"episodes":[null,""],"Set checked shows/episodes to":[null,""],"Go":[null,""],"Select all":[null,""],"Clear all":[null,""],"Release":[null,""],"Backlog Search":[null,""],"Not in progress":[null,""],"In Progress":[null,""],"Daily Search":[null,""],"Find Propers Search":[null,""],"Propers search disabled":[null,""],"Subtitle Search":[null,""],"Subtitle search disabled":[null,""],"Search Queue":[null,""],"pending items":[null,""],"Daily":[null,""],"Manual":[null,""],"Changing any settings marked with (<span class=\"separator\">*</span>) will force a refresh of the selected shows.":[null,""],"Selected Shows":[null,""],"Root Directories":[null,""],"Current":[null,""],"Keep":[null,""],"Custom":[null,""],"Group episodes by season folder (set to \"No\" to store in a single folder).":[null,""],"Pause these shows (SickRage will not download episodes).":[null,""],"This will set the status for future episodes.":[null,""],"Search by scene numbering (set to \"No\" to search by indexer numbering).":[null,""],"Set if these shows are Anime and episodes are released as Show.265 rather than Show.S02E03":[null,""],"Set if these shows are sporting or MMA events released as Show.03.02.2010 rather than Show.S02E03.":[null,""],"In case of an air date conflict between regular and special episodes, the later will be ignored.":[null,""],"Set if these shows are released as Show.03.02.2010 rather than Show.S02E03.":[null,""],"Search for subtitles.":[null,""],"All of your episodes have {subsLanguage} subtitles.":[null,""],"Manage episodes without":[null,"Spravovať epizódy bez"],"Episodes without {subsLanguage} subtitles.":[null,"Epizódy bez {subsLanguage} titulkov."],"Episodes without {subtitleLanguage} (undefined) subtitles.":[null,"Epizódy bez {subtitleLanguage} (nedefinovaný) titulkov."],"Download missed subtitles for selected episodes":[null,"Stiahnuť chýbajúce titulky pre označené epizódy"],"Performing Restart":[null,"Prebieha reštart"],"Waiting for SickRage to shut down":[null,"Čakanie na vypnutie SickRage"],"Waiting for SickRage to start again":[null,"Čakanie na znovu zapnutie SickRage"],"Loading the default page":[null,"Načítanie predvolenej stránky"],"Error: The restart has timed out, perhaps something prevented SickRage from starting again?":[null,""],"Key":[null,"Kľúč"],"Missed":[null,"Chýbajúce"],"Today":[null,"Dnes"],"Soon":[null,"Čoskoro"],"Later":[null,"Neskôr"],"Subscribe":[null,"Prihlásiť sa k odberu"],"Date":[null,"Dátum"],"View Paused":[null,"Zobraziť pozastavené"],"Hidden":[null,"Skryté"],"Shown":[null,"Zobrazené"],"Calendar":[null,"Kalendár"],"List":[null,"Zoznam"],"Ends":[null,"Končí"],"Next Ep Name":[null,"Názov ďalšej epizódy"],"Run time":[null,""],"Indexers":[null,""],"No shows for this day":[null,""],"Airs":[null,"Vysiela sa"],"Plot":[null,"Zápletka"],"Show Update":[null,""],"Version Check":[null,"Kontrola verzie"],"Proper Finder":[null,"Vyhľadávač Proper verzií"],"Post Process":[null,"Spracovanie"],"Subtitles Finder":[null,"Vyhľadávač titulkov"],"Scheduler":[null,"Plánovač"],"Alive":[null,"Nažive"],"Start Time":[null,"Čas štartu"],"Cycle Time":[null,"Doba cyklu"],"Next Run":[null,"Ďalšie spustenie"],"Last Run":[null,"Naposledy spustené"],"Silent":[null,"Tichý"],"True":[null,"Pravda"],"N/A":[null,"N/A"],"Show id":[null,"Id seriálu"],"Show name":[null,"Názov seriálu"],"Priority":[null,"Priorita"],"Added":[null,"Pridané"],"Queue type":[null,"Typ frontu"],"LOW":[null,"NÍZKA"],"NORMAL":[null,"NORMÁLNE"],"HIGH":[null,"VYSOKÁ"],"Disk Space":[null,"Miesto na disku"],"Free space":[null,"Voľné miesto"],"TV Download Directory":[null,"TV priečinok pre sťahovanie"],"Media Root Directories":[null,"Koreňové priečinky medií"],"Preview of the proposed name changes":[null,"Ukážka navrhovaných zmien názvu"],"All Seasons":[null,"Všetky sezóny"],"select all":[null,""],"Rename Selected":[null,"Premenovať vybraté"],"Cancel Rename":[null,"Zrušiť premenovanie"],"Old Location":[null,"Pôvodné umiestnenie"],"New Location":[null,"Nové miesto"],"Trakt API did not return any results, please check your config.":[null,"Trakt API nevrátilo žiadne výsledky, prosím skontrolujte nastavenia."],"votes":[null,"Hlasy"],"Remove Show":[null,"Odstrániť seriál"],"Level":[null,""],"Filter":[null,""],"All non-absolute folder locations are relative to ":[null,""],"Manual Post-Processing":[null,"Manuálne spracovanie"],"Episode Status Management":[null,"Správa statusu epizód"],"Update PLEX":[null,"Aktualizuj PLEX"],"Update KODI":[null,"Aktualizuj KODI"],"Update Emby":[null,"Aktualizuj Emby"],"Manage Torrents":[null,"Spravovať torrenty"],"Missed Subtitle Management":[null,"Správa chýbajúcich titulkov"],"Help & Info":[null,"Nápoveda a Info"],"Backup & Restore":[null,"Záloha a Obnova"],"Tools":[null,"Nástroje"],"Support SickRage":[null,"Podporte SickRage"],"View Errors":[null,"Zobraziť chyby"],"View Warnings":[null,"Zobraziť výstrahy"],"View Log":[null,"Zobraziť denník"],"Check For Updates":[null,"Skontrolovať aktualizácie"],"Restart":[null,"Reštartovať"],"Shutdown":[null,"Vypnúť"],"Logout":[null,"Odhlásiť sa"],"Server Status":[null,"Stav servera"],"View overview of snatched episodes":[null,"Zobraziť prehľad sťahovaných epizód"],"Episodes Downloaded":[null,"Stiahnuté epizódy"],"Memory used":[null,"Použitá pamäť"],"Load time":[null,""],"Branch":[null,"Vetva"],"Now":[null,"Teraz"]}}}} \ No newline at end of file diff --git a/locale/sk_SK/LC_MESSAGES/messages.mo b/locale/sk_SK/LC_MESSAGES/messages.mo index 96a4af00d34c2fad69684155c5b9984915b33a2a..16f850e85623acfa3ff7324d0462e6997d683edc 100644 Binary files a/locale/sk_SK/LC_MESSAGES/messages.mo and b/locale/sk_SK/LC_MESSAGES/messages.mo differ diff --git a/locale/sk_SK/LC_MESSAGES/messages.po b/locale/sk_SK/LC_MESSAGES/messages.po index 2fa9bd1147aab1b0d3e48342b1ee559e9d765768..4ab1ce49f7d0d42cf201a8abdebbcb1770da829a 100644 --- a/locale/sk_SK/LC_MESSAGES/messages.po +++ b/locale/sk_SK/LC_MESSAGES/messages.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: sickrage\n" "Report-Msgid-Bugs-To: miigotu@gmail.com\n" -"POT-Creation-Date: 2017-03-25 09:28-0700\n" -"PO-Revision-Date: 2017-03-25 12:30-0400\n" +"POT-Creation-Date: 2017-03-28 09:10-0700\n" +"PO-Revision-Date: 2017-03-28 12:13-0400\n" "Last-Translator: miigotu <miigotu@gmail.com>\n" "Language-Team: Slovak\n" "MIME-Version: 1.0\n" @@ -90,7 +90,7 @@ msgid "Biography" msgstr "Žovotopisný" #: gui/slick/views/config_general.mako:78 gui/slick/views/layouts/main.mako:145 -#: sickbeard/__init__.py:79 sickbeard/webserve.py:3807 +#: sickbeard/__init__.py:79 sickbeard/webserve.py:3778 msgid "History" msgstr "História" @@ -103,7 +103,7 @@ msgid "Western" msgstr "Western" #: gui/slick/views/config_general.mako:79 gui/slick/views/layouts/main.mako:221 -#: sickbeard/__init__.py:80 sickbeard/webserve.py:2385 +#: sickbeard/__init__.py:80 sickbeard/webserve.py:2384 msgid "News" msgstr "Novinky" @@ -238,6 +238,34 @@ msgstr "Ignorované" msgid "Subtitled" msgstr "S titulkami" +#: sickbeard/helpers.py:1887 +msgid "For best results please set the Download Station alias as" +msgstr "" + +#: sickbeard/helpers.py:1888 +msgid "You can check this setting in the Synology DSM" +msgstr "" + +#: sickbeard/helpers.py:1888 sickbeard/helpers.py:1890 +msgid "Control Panel" +msgstr "Ovládací Panel" + +#: sickbeard/helpers.py:1888 +msgid "Application Portal" +msgstr "" + +#: sickbeard/helpers.py:1889 +msgid "Make sure you allow DSM to be embedded with iFrames too in" +msgstr "" + +#: sickbeard/helpers.py:1890 +msgid "DSM Settings" +msgstr "DSM nastavenia" + +#: sickbeard/helpers.py:1890 +msgid "Security" +msgstr "Zabezpečenie" + #: sickbeard/logger.py:474 msgid "<No Filter>" msgstr "<Bez filtra>" @@ -308,15 +336,15 @@ msgstr "Kontrola Traktu" msgid "Event" msgstr "Udalosť" -#: sickbeard/logger.py:491 sickbeard/webserve.py:1339 sickbeard/webserve.py:1342 -#: sickbeard/webserve.py:1520 sickbeard/webserve.py:1529 sickbeard/webserve.py:1717 -#: sickbeard/webserve.py:1728 sickbeard/webserve.py:1751 sickbeard/webserve.py:1764 -#: sickbeard/webserve.py:1769 sickbeard/webserve.py:1785 sickbeard/webserve.py:1790 -#: sickbeard/webserve.py:1854 sickbeard/webserve.py:1857 sickbeard/webserve.py:1863 -#: sickbeard/webserve.py:1866 sickbeard/webserve.py:1873 sickbeard/webserve.py:1876 -#: sickbeard/webserve.py:1899 sickbeard/webserve.py:1997 sickbeard/webserve.py:2002 -#: sickbeard/webserve.py:2007 sickbeard/webserve.py:2036 sickbeard/webserve.py:2040 -#: sickbeard/webserve.py:2045 +#: sickbeard/logger.py:491 sickbeard/webserve.py:1338 sickbeard/webserve.py:1341 +#: sickbeard/webserve.py:1519 sickbeard/webserve.py:1528 sickbeard/webserve.py:1716 +#: sickbeard/webserve.py:1727 sickbeard/webserve.py:1750 sickbeard/webserve.py:1763 +#: sickbeard/webserve.py:1768 sickbeard/webserve.py:1784 sickbeard/webserve.py:1789 +#: sickbeard/webserve.py:1853 sickbeard/webserve.py:1856 sickbeard/webserve.py:1862 +#: sickbeard/webserve.py:1865 sickbeard/webserve.py:1872 sickbeard/webserve.py:1875 +#: sickbeard/webserve.py:1898 sickbeard/webserve.py:1996 sickbeard/webserve.py:2001 +#: sickbeard/webserve.py:2006 sickbeard/webserve.py:2035 sickbeard/webserve.py:2039 +#: sickbeard/webserve.py:2044 msgid "Error" msgstr "Chyba" @@ -333,6 +361,7 @@ msgstr "Vlákno" msgid "Main" msgstr "" +#: gui/slick/js/ajaxEpSearch.js:146 gui/slick/js/ajaxEpSearch.js:147 #: gui/slick/views/inc_home_showList.mako:27 sickbeard/show_queue.py:298 msgid "Loading" msgstr "" @@ -372,867 +401,835 @@ msgstr "Záloha nastavení zlyhala, ruším aktualizáciu" msgid "No update needed" msgstr "Žiadna aktualizácia" -#: sickbeard/webserve.py:170 +#: sickbeard/webserve.py:171 msgid "Mako Error" msgstr "Mako chyba" -#: sickbeard/webserve.py:195 +#: sickbeard/webserve.py:196 msgid "Oops" msgstr "Jejda" -#: sickbeard/webserve.py:197 +#: sickbeard/webserve.py:198 msgid "Wrong API key used" msgstr "Použitý zlý API kľúč" -#: gui/slick/views/login.mako:34 sickbeard/webserve.py:302 +#: gui/slick/views/login.mako:34 sickbeard/webserve.py:303 msgid "Login" msgstr "Prihlásenie" -#: sickbeard/webserve.py:406 +#: sickbeard/webserve.py:392 msgid "API Key not generated" msgstr "API kľúč nebol generovaný" -#: sickbeard/webserve.py:409 +#: sickbeard/webserve.py:395 msgid "API Builder" msgstr "API Builder" #: gui/slick/views/config_general.mako:77 gui/slick/views/layouts/main.mako:141 -#: sickbeard/webserve.py:512 +#: sickbeard/webserve.py:498 msgid "Schedule" msgstr "Rozvrh" -#: sickbeard/webserve.py:610 +#: sickbeard/webserve.py:609 msgid "Test 1" msgstr "Test 1" -#: sickbeard/webserve.py:610 +#: sickbeard/webserve.py:609 msgid "This is test number 1" msgstr "Toto je test číslo 1" -#: sickbeard/webserve.py:611 +#: sickbeard/webserve.py:610 msgid "Test 2" msgstr "Test 2" -#: sickbeard/webserve.py:611 +#: sickbeard/webserve.py:610 msgid "This is test number 2" msgstr "Toto je test číslo 2" -#: sickbeard/webserve.py:634 +#: sickbeard/webserve.py:633 msgid "You're using the {branch} branch. Please use 'master' unless specifically asked" msgstr "Používate {branch} vetvu. Prosím použite 'master' vetvu pokým nie ste požiadaný inak" -#: sickbeard/webserve.py:698 sickbeard/webserve.py:703 +#: sickbeard/webserve.py:697 sickbeard/webserve.py:702 msgid "Invalid show parameters" msgstr "Neplatné parametre relácie" -#: sickbeard/webserve.py:710 +#: sickbeard/webserve.py:709 msgid "Invalid parameters" msgstr "Neplatné parametre" -#: sickbeard/webserve.py:713 sickbeard/webserve.py:1899 +#: sickbeard/webserve.py:712 sickbeard/webserve.py:1898 msgid "Episode couldn't be retrieved" msgstr "Epizódu sa nepodarilo získať" -#: sickbeard/webserve.py:759 sickbeard/webserve.py:1268 sickbeard/webserve.py:1297 +#: sickbeard/webserve.py:758 sickbeard/webserve.py:1267 sickbeard/webserve.py:1296 msgid "Home" msgstr "Úvod" -#: gui/slick/views/layouts/main.mako:127 sickbeard/webserve.py:759 +#: gui/slick/views/layouts/main.mako:127 sickbeard/webserve.py:758 msgid "Show List" msgstr "Zoznam relácií" -#: sickbeard/webserve.py:807 +#: sickbeard/webserve.py:806 msgid "Error: Unsupported Request. Send jsonp request with 'callback' variable in the query string." msgstr "" -#: sickbeard/webserve.py:851 +#: sickbeard/webserve.py:850 msgid "Success. Connected and authenticated" msgstr "Úspech. Pripojené a overené" -#: sickbeard/webserve.py:853 +#: sickbeard/webserve.py:852 msgid "Authentication failed. SABnzbd expects" msgstr "Overenie zlyhalo. SABnzbd očakáva" -#: sickbeard/webserve.py:853 +#: sickbeard/webserve.py:852 msgid "as authentication method" msgstr "ako metóda overovania" -#: sickbeard/webserve.py:855 +#: sickbeard/webserve.py:854 msgid "Unable to connect to host" msgstr "Nedá sa pripojiť k hostiteľovi" -#: sickbeard/webserve.py:876 +#: sickbeard/webserve.py:875 msgid "SMS sent successfully" msgstr "Správa úspešne odoslaná" -#: sickbeard/webserve.py:878 +#: sickbeard/webserve.py:877 msgid "Problem sending SMS: {message}" msgstr "Problém s odosielaním SMS: {message}" -#: sickbeard/webserve.py:885 +#: sickbeard/webserve.py:884 msgid "Telegram notification succeeded. Check your Telegram clients to make sure it worked" msgstr "Telegram oznámenie odoslané. Skontrolujte Telegram klientov, či fungovalo" -#: sickbeard/webserve.py:887 +#: sickbeard/webserve.py:886 msgid "Error sending Telegram notification: {message}" msgstr "Chyba pri odosielaní Telegram oznámenia: {message}" -#: sickbeard/webserve.py:894 +#: sickbeard/webserve.py:893 msgid "join notification succeeded. Check your join clients to make sure it worked" msgstr "join oznámenie odoslané. Skontrolujte join klientov, či fungovalo" -#: sickbeard/webserve.py:896 +#: sickbeard/webserve.py:895 msgid "Error sending join notification: {message}" msgstr "Chyba pri odosielaní join oznámenia: {message}" -#: sickbeard/webserve.py:906 +#: sickbeard/webserve.py:905 msgid " with password" msgstr " s heslom" -#: sickbeard/webserve.py:908 +#: sickbeard/webserve.py:907 msgid "Registered and Tested growl successfully {growl_host}" msgstr "growl úspešne zaregistrované a otestované {growl_host}" -#: sickbeard/webserve.py:910 +#: sickbeard/webserve.py:909 msgid "Registration and Testing of growl failed {growl_host}" msgstr "Registrácia a testovanie growl neúspešné {growl_host}" -#: sickbeard/webserve.py:917 +#: sickbeard/webserve.py:916 msgid "Test prowl notice sent successfully" msgstr "Prowl oznámenie úspešne odoslané" -#: sickbeard/webserve.py:919 +#: sickbeard/webserve.py:918 msgid "Test prowl notice failed" msgstr "Test prowl - oznámenie zlyhalo" -#: sickbeard/webserve.py:926 +#: sickbeard/webserve.py:925 msgid "Boxcar2 notification succeeded. Check your Boxcar2 clients to make sure it worked" msgstr "Boxcar2 oznámenie odoslané. Skontrolujte Boxcar2 klientov, či fungovalo" -#: sickbeard/webserve.py:928 +#: sickbeard/webserve.py:927 msgid "Error sending Boxcar2 notification" msgstr "Chyba pri odosielaní oznámení Boxcar2" -#: sickbeard/webserve.py:935 +#: sickbeard/webserve.py:934 msgid "Pushover notification succeeded. Check your Pushover clients to make sure it worked" msgstr "Pushover oznámenie odoslané. Skontrolujte Pushover klientov, či fungovalo" -#: sickbeard/webserve.py:937 +#: sickbeard/webserve.py:936 msgid "Error sending Pushover notification" msgstr "Chyba odoslania oznámenia Pushover" -#: sickbeard/webserve.py:949 +#: sickbeard/webserve.py:948 msgid "Key verification successful" msgstr "Overenie kľúča úspešné" -#: sickbeard/webserve.py:951 +#: sickbeard/webserve.py:950 msgid "Unable to verify key" msgstr "Nepodarilo sa overiť kľúč" -#: sickbeard/webserve.py:958 +#: sickbeard/webserve.py:957 msgid "Tweet successful, check your twitter to make sure it worked" msgstr "Tweet odoslaný, skontrolujte si Twitter" -#: sickbeard/webserve.py:960 +#: sickbeard/webserve.py:959 msgid "Error sending tweet" msgstr "Chyba odoslania tweetu" -#: sickbeard/webserve.py:965 +#: sickbeard/webserve.py:964 msgid "Please enter a valid account sid" msgstr "" -#: sickbeard/webserve.py:968 +#: sickbeard/webserve.py:967 msgid "Please enter a valid auth token" msgstr "" -#: sickbeard/webserve.py:971 +#: sickbeard/webserve.py:970 msgid "Please enter a valid phone sid" msgstr "" -#: sickbeard/webserve.py:974 +#: sickbeard/webserve.py:973 msgid "Please format the phone number as \"+1-###-###-####\"" msgstr "" -#: sickbeard/webserve.py:978 +#: sickbeard/webserve.py:977 msgid "Authorization successful and number ownership verified" msgstr "" -#: sickbeard/webserve.py:980 +#: sickbeard/webserve.py:979 msgid "Error sending sms" msgstr "Chyba pri odosielaní sms" -#: sickbeard/webserve.py:986 +#: sickbeard/webserve.py:985 msgid "Slack message successful" msgstr "Slack správa odoslaná" -#: sickbeard/webserve.py:988 +#: sickbeard/webserve.py:987 msgid "Slack message failed" msgstr "Slack správa zlyhala" -#: sickbeard/webserve.py:994 +#: sickbeard/webserve.py:993 msgid "Discord message successful" msgstr "" -#: sickbeard/webserve.py:996 +#: sickbeard/webserve.py:995 msgid "Discord message failed" msgstr "" -#: sickbeard/webserve.py:1006 +#: sickbeard/webserve.py:1005 msgid "Test KODI notice sent successfully to {kodi_host}" msgstr "Test KODI oznámenia úspešne odoslané na {kodi_host}" -#: sickbeard/webserve.py:1008 +#: sickbeard/webserve.py:1007 msgid "Test KODI notice failed to {kodi_host}" msgstr "Test KODI oznámenia do {kodi_host} zlyhalo" -#: sickbeard/webserve.py:1023 +#: sickbeard/webserve.py:1022 msgid "Successful test notice sent to Plex Home Theater ... {plex_clients}" msgstr "Oznámenie úspešne odoslané do Plex Home Theater ...{plex_clients}" -#: sickbeard/webserve.py:1025 +#: sickbeard/webserve.py:1024 msgid "Test failed for Plex Home Theater ... {plex_clients}" msgstr "Test Plex Home Theater neúspešný ... {plex_clients}" -#: sickbeard/webserve.py:1028 +#: sickbeard/webserve.py:1027 msgid "Tested Plex Home Theater(s)" msgstr "Plex Home Theater otestované" -#: sickbeard/webserve.py:1042 +#: sickbeard/webserve.py:1041 msgid "Successful test of Plex Media Server(s) ... {plex_servers}" msgstr "Úspešný test Plex Media Servera(-ov)... {plex_servers}" -#: sickbeard/webserve.py:1044 +#: sickbeard/webserve.py:1043 msgid "Test failed, No Plex Media Server host specified" msgstr "Test zlyhal, Plex Media Server host nešpecifikovaný" -#: sickbeard/webserve.py:1046 +#: sickbeard/webserve.py:1045 msgid "Test failed for Plex Media Server(s) ... {plex_servers}" msgstr "Test Plex Media Server(-ov) neúspešný... {plex_servers}" -#: sickbeard/webserve.py:1049 +#: sickbeard/webserve.py:1048 msgid "Tested Plex Media Server host(s)" msgstr "" -#: sickbeard/webserve.py:1057 +#: sickbeard/webserve.py:1056 msgid "Tried sending desktop notification via libnotify" msgstr "" -#: sickbeard/webserve.py:1066 +#: sickbeard/webserve.py:1065 msgid "Test notice sent successfully to {emby_host}" msgstr "" -#: sickbeard/webserve.py:1068 +#: sickbeard/webserve.py:1067 msgid "Test notice failed to {emby_host}" msgstr "" -#: sickbeard/webserve.py:1076 +#: sickbeard/webserve.py:1075 msgid "Successfully started the scan update" msgstr "Skenovanie úspešne spustené" -#: sickbeard/webserve.py:1078 +#: sickbeard/webserve.py:1077 msgid "Test failed to start the scan update" msgstr "" -#: sickbeard/webserve.py:1097 +#: sickbeard/webserve.py:1096 msgid "Test notice sent successfully to {nmj2_host}" msgstr "" -#: sickbeard/webserve.py:1099 +#: sickbeard/webserve.py:1098 msgid "Test notice failed to {nmj2_host}" msgstr "" -#: sickbeard/webserve.py:1119 +#: sickbeard/webserve.py:1118 msgid "Trakt Authorized" msgstr "" -#: sickbeard/webserve.py:1120 +#: sickbeard/webserve.py:1119 msgid "Trakt Not Authorized!" msgstr "" -#: sickbeard/webserve.py:1184 +#: sickbeard/webserve.py:1183 msgid "Test email sent successfully! Check inbox." msgstr "Test e-mail bol úspešne odoslaný! Skontrolujte priečinok doručenej pošty." -#: sickbeard/webserve.py:1186 +#: sickbeard/webserve.py:1185 msgid "ERROR: {last_error}" msgstr "CHYBA: {last_error}" -#: sickbeard/webserve.py:1193 +#: sickbeard/webserve.py:1192 msgid "Test NMA notice sent successfully" msgstr "" -#: sickbeard/webserve.py:1195 +#: sickbeard/webserve.py:1194 msgid "Test NMA notice failed" msgstr "Test NMA oznámenie zlyhalo" -#: sickbeard/webserve.py:1202 +#: sickbeard/webserve.py:1201 msgid "Pushalot notification succeeded. Check your Pushalot clients to make sure it worked" msgstr "" -#: sickbeard/webserve.py:1204 +#: sickbeard/webserve.py:1203 msgid "Error sending Pushalot notification" msgstr "Chyba pri odosielaní oznámení Pushalot" -#: sickbeard/webserve.py:1211 +#: sickbeard/webserve.py:1210 msgid "Pushbullet notification succeeded. Check your device to make sure it worked" msgstr "Pushbullet oznámenie odoslané. Skontrolujte svoje zariadenie aby ste sa presvedčili, že to fungovalo" -#: sickbeard/webserve.py:1213 sickbeard/webserve.py:1223 sickbeard/webserve.py:1232 +#: sickbeard/webserve.py:1212 sickbeard/webserve.py:1222 sickbeard/webserve.py:1231 msgid "Error sending Pushbullet notification" msgstr "Chyba pri odosielaní oznámení Pushbullet" #: gui/slick/views/displayShow.mako:436 gui/slick/views/inc_home_showList.mako:174 -#: gui/slick/views/manage.mako:49 sickbeard/webserve.py:1249 +#: gui/slick/views/manage.mako:49 sickbeard/webserve.py:1248 msgid "Status" msgstr "Stav" -#: sickbeard/webserve.py:1268 sickbeard/webserve.py:1297 +#: sickbeard/webserve.py:1267 sickbeard/webserve.py:1296 msgid "Restarting SickRage" msgstr "SickRage sa reštartuje" -#: sickbeard/webserve.py:1300 +#: sickbeard/webserve.py:1299 msgid "Update Failed" msgstr "Aktualizácia zlyhala" -#: sickbeard/webserve.py:1301 +#: sickbeard/webserve.py:1300 msgid "Update wasn't successful, not restarting. Check your log for more information." msgstr "" -#: sickbeard/webserve.py:1308 +#: sickbeard/webserve.py:1307 msgid "Checking out branch" msgstr "Prepínam vetvu (branch)" -#: sickbeard/webserve.py:1311 +#: sickbeard/webserve.py:1310 msgid "Already on branch" msgstr "Vybraná vetva je použitá" -#: sickbeard/webserve.py:1339 +#: sickbeard/webserve.py:1338 msgid "Invalid show ID: {show}" msgstr "Neplatné ID relácie: {show}" -#: sickbeard/webserve.py:1342 sickbeard/webserve.py:1871 sickbeard/webserve.py:2002 -#: sickbeard/webserve.py:2040 +#: sickbeard/webserve.py:1341 sickbeard/webserve.py:1870 sickbeard/webserve.py:2001 +#: sickbeard/webserve.py:2039 msgid "Show not in show list" msgstr "Relácia nie je v zozname relácií" #: gui/slick/views/inc_rootDirs.mako:31 gui/slick/views/manage.mako:38 -#: gui/slick/views/manage_massEdit.mako:74 sickbeard/webserve.py:1358 -#: sickbeard/webserve.py:2027 +#: gui/slick/views/manage_massEdit.mako:74 sickbeard/webserve.py:1357 +#: sickbeard/webserve.py:2026 msgid "Edit" msgstr "Upraviť" -#: sickbeard/webserve.py:1368 +#: sickbeard/webserve.py:1367 msgid "This show is in the process of being downloaded - the info below is incomplete." msgstr "" -#: sickbeard/webserve.py:1371 +#: sickbeard/webserve.py:1370 msgid "The information on this page is in the process of being updated." msgstr "" -#: sickbeard/webserve.py:1374 +#: sickbeard/webserve.py:1373 msgid "The episodes below are currently being refreshed from disk" msgstr "" -#: sickbeard/webserve.py:1377 +#: sickbeard/webserve.py:1376 msgid "Currently downloading subtitles for this show" msgstr "Titulky pre tento seriál sú sťahované" -#: sickbeard/webserve.py:1380 +#: sickbeard/webserve.py:1379 msgid "This show is queued to be refreshed." msgstr "Tento seriál je v poradí na aktualizáciu." -#: sickbeard/webserve.py:1383 +#: sickbeard/webserve.py:1382 msgid "This show is queued and awaiting an update." msgstr "Tento seriál je v poradí a čaká na aktualizáciu." -#: sickbeard/webserve.py:1386 +#: sickbeard/webserve.py:1385 msgid "This show is queued and awaiting subtitles download." msgstr "Tento seriál je poradí a čaká na stiahnutie titulkov." -#: gui/slick/js/core.js:4081 sickbeard/webserve.py:1391 +#: gui/slick/js/core.js:4081 sickbeard/webserve.py:1390 msgid "Resume" msgstr "Obnoviť" #: gui/slick/js/core.js:4081 gui/slick/views/viewlogs.mako:12 -#: sickbeard/webserve.py:1393 +#: sickbeard/webserve.py:1392 msgid "Pause" msgstr "Pozastaviť" #: gui/slick/views/editShow.mako:345 gui/slick/views/inc_blackwhitelist.mako:40 #: gui/slick/views/inc_blackwhitelist.mako:85 gui/slick/views/manage.mako:58 -#: gui/slick/views/manage_failedDownloads.mako:43 sickbeard/webserve.py:1395 +#: gui/slick/views/manage_failedDownloads.mako:43 sickbeard/webserve.py:1394 msgid "Remove" msgstr "Odstrániť" -#: sickbeard/webserve.py:1396 +#: sickbeard/webserve.py:1395 msgid "Re-scan files" msgstr "Opätovné skenovanie súborov" -#: sickbeard/webserve.py:1397 +#: sickbeard/webserve.py:1396 msgid "Force Full Update" msgstr "Vynútiť úplnú aktualizáciu" -#: sickbeard/webserve.py:1398 +#: sickbeard/webserve.py:1397 msgid "Update show in KODI" msgstr "Zobraziť reláciu v KODI" -#: sickbeard/webserve.py:1399 +#: sickbeard/webserve.py:1398 msgid "Update show in Emby" msgstr "Zobraziť reláciu v Emby" -#: sickbeard/webserve.py:1402 +#: sickbeard/webserve.py:1401 msgid "Hide specials" msgstr "Skryť špeciály" -#: sickbeard/webserve.py:1404 +#: sickbeard/webserve.py:1403 msgid "Show specials" msgstr "Zobraziť špeciály" -#: sickbeard/webserve.py:1406 sickbeard/webserve.py:2030 sickbeard/webserve.py:2031 +#: sickbeard/webserve.py:1405 sickbeard/webserve.py:2029 sickbeard/webserve.py:2030 msgid "Preview Rename" msgstr "Ukážka premenovania" -#: sickbeard/webserve.py:1409 +#: sickbeard/webserve.py:1408 msgid "Download Subtitles" msgstr "Stiahnuť titulky" -#: sickbeard/webserve.py:1498 +#: sickbeard/webserve.py:1497 msgid "No scene exceptions" msgstr "Žiadne \"scene exceptions\"" -#: sickbeard/webserve.py:1516 sickbeard/webserve.py:1764 sickbeard/webserve.py:1785 +#: sickbeard/webserve.py:1515 sickbeard/webserve.py:1763 sickbeard/webserve.py:1784 msgid "Invalid show ID" msgstr "Neplatné ID relácie" -#: sickbeard/webserve.py:1525 sickbeard/webserve.py:1769 sickbeard/webserve.py:1790 +#: sickbeard/webserve.py:1524 sickbeard/webserve.py:1768 sickbeard/webserve.py:1789 msgid "Unable to find the specified show" msgstr "Nepodarilo sa nájsť zadanú reláciu" -#: sickbeard/webserve.py:1550 +#: sickbeard/webserve.py:1549 msgid "Unable to retreive Fansub Groups from AniDB." msgstr "Nepodarilo sa načítať Fansub skupiny z AniDB." -#: sickbeard/webserve.py:1559 sickbeard/webserve.py:1561 +#: sickbeard/webserve.py:1558 sickbeard/webserve.py:1560 msgid "Edit Show" msgstr "Upraviť reláciu" -#: sickbeard/webserve.py:1637 sickbeard/webserve.py:1671 +#: sickbeard/webserve.py:1636 sickbeard/webserve.py:1670 msgid "Unable to refresh this show: {error}" msgstr "Nepodarilo sa obnoviť tento seriál: {error}" -#: sickbeard/webserve.py:1663 +#: sickbeard/webserve.py:1662 msgid "New location <tt>{location}</tt> does not exist" msgstr "Nové umiestnenie <tt>{location}</tt> neexistuje" -#: sickbeard/webserve.py:1688 +#: sickbeard/webserve.py:1687 msgid "Unable to update show: {error}" msgstr "Nepodarilo sa aktualizovať seriál: {error}" -#: sickbeard/webserve.py:1695 +#: sickbeard/webserve.py:1694 msgid "Unable to force an update on scene exceptions of the show." msgstr "Nie je možné vynútiť aktualizáciu pre alternatívne názvy seriálu." -#: sickbeard/webserve.py:1702 +#: sickbeard/webserve.py:1701 msgid "Unable to force an update on scene numbering of the show." msgstr "Nie je možné vynútiť aktualizáciu alternatívneho číslovania seriálu." -#: sickbeard/webserve.py:1708 sickbeard/webserve.py:3540 +#: sickbeard/webserve.py:1707 sickbeard/webserve.py:3539 msgid "{num_errors:d} error{plural} while saving changes:" msgstr "{num_errors:d} error{plural} pri ukladaní zmien:" -#: sickbeard/webserve.py:1719 +#: sickbeard/webserve.py:1718 msgid "{show_name} has been {paused_resumed}" msgstr "{show_name} bol {paused_resumed}" -#: sickbeard/webserve.py:1719 +#: sickbeard/webserve.py:1718 msgid "resumed" msgstr "obnovený" -#: sickbeard/webserve.py:1719 +#: sickbeard/webserve.py:1718 msgid "paused" msgstr "pozastavený" -#: sickbeard/webserve.py:1731 +#: sickbeard/webserve.py:1730 msgid "{show_name} has been {deleted_trashed} {was_deleted}" msgstr "{show_name} bol {deleted_trashed} {was_deleted}" -#: sickbeard/webserve.py:1733 +#: sickbeard/webserve.py:1732 msgid "deleted" msgstr "odstránený" -#: sickbeard/webserve.py:1733 +#: sickbeard/webserve.py:1732 msgid "trashed" msgstr "presunutý do koša" -#: sickbeard/webserve.py:1734 +#: sickbeard/webserve.py:1733 msgid "(media untouched)" msgstr "(médiá ponechané)" -#: sickbeard/webserve.py:1734 +#: sickbeard/webserve.py:1733 msgid "(with all related media)" msgstr "(aj všetky súvisiace médiá)" -#: sickbeard/webserve.py:1755 +#: sickbeard/webserve.py:1754 msgid "Unable to refresh this show." msgstr "Nepodarilo sa obnoviť tento seriál." -#: sickbeard/webserve.py:1775 +#: sickbeard/webserve.py:1774 msgid "Unable to update this show." msgstr "Nepodarilo sa aktualizovať tento seriál." -#: sickbeard/webserve.py:1814 +#: sickbeard/webserve.py:1813 msgid "Library update command sent to KODI host(s)): {kodi_hosts}" msgstr "Príkaz na aktualizáciu knižnice bol zaslaný na KODI: {kodi_hosts}" -#: sickbeard/webserve.py:1816 +#: sickbeard/webserve.py:1815 msgid "Unable to contact one or more KODI host(s)): {kodi_hosts}" msgstr "Nemožno kontaktovať jedného alebo viacerých KODI host(s)): {kodi_hosts}" -#: sickbeard/webserve.py:1825 +#: sickbeard/webserve.py:1824 msgid "Library update command sent to Plex Media Server host: {plex_server}" msgstr "Príkaz na aktualizáciu knižnice bol zaslaný do Plex Media Server: {plex_server}" -#: sickbeard/webserve.py:1828 +#: sickbeard/webserve.py:1827 msgid "Unable to contact Plex Media Server host: {plex_server}" msgstr "Nemožno kontaktovať Plex Media Server: {plex_server}" -#: sickbeard/webserve.py:1840 +#: sickbeard/webserve.py:1839 msgid "Library update command sent to Emby host: {emby_host}" msgstr "Príkaz na aktualizáciu knižnice zaslaný na Emby: {emby_host}" -#: sickbeard/webserve.py:1842 +#: sickbeard/webserve.py:1841 msgid "Unable to contact Emby host: {emby_host}" msgstr "Nemožno kontaktovať Emby: {emby_host}" -#: sickbeard/webserve.py:1852 sickbeard/webserve.py:2036 +#: sickbeard/webserve.py:1851 sickbeard/webserve.py:2035 msgid "You must specify a show and at least one episode" msgstr "Musíte vybrať seriál a aspoň jednu epizódu" -#: sickbeard/webserve.py:1861 +#: sickbeard/webserve.py:1860 msgid "Invalid status" msgstr "Neplatný status" -#: sickbeard/webserve.py:1954 +#: sickbeard/webserve.py:1953 msgid "Backlog was automatically started for the following seasons of <b>{show_name}</b>" msgstr "Vyhľadávanie chýbajúcich bolo automaticky začaté pre nasledovné sezóny seriálu <b>{show_name}</b>" #: gui/slick/views/displayShow.mako:74 gui/slick/views/displayShow.mako:79 -#: gui/slick/views/displayShow.mako:404 sickbeard/webserve.py:1961 -#: sickbeard/webserve.py:1980 +#: gui/slick/views/displayShow.mako:404 sickbeard/webserve.py:1960 +#: sickbeard/webserve.py:1979 msgid "Season" msgstr "Sezóna" -#: sickbeard/webserve.py:1968 +#: sickbeard/webserve.py:1967 msgid "Backlog started" msgstr "Vyhľadávanie chýbajúcich začalo" -#: sickbeard/webserve.py:1973 +#: sickbeard/webserve.py:1972 msgid "Retrying Search was automatically started for the following season of <b>{show_name}</b>" msgstr "Opakované hľadanie bolo automaticky začaté pre nasledovnú sezónu seriálu <b>{show_name}</b>" -#: sickbeard/webserve.py:1987 +#: sickbeard/webserve.py:1986 msgid "Retry Search started" msgstr "Opakované hľadanie začalo" -#: sickbeard/webserve.py:1997 +#: sickbeard/webserve.py:1996 msgid "You must specify a show" msgstr "Musíte vybrať seriál" -#: sickbeard/webserve.py:2007 sickbeard/webserve.py:2045 +#: sickbeard/webserve.py:2006 sickbeard/webserve.py:2044 msgid "Can't rename episodes when the show dir is missing." msgstr "Nedá sa premenovať epizódy keď chýba priečinok seriálu." -#: sickbeard/webserve.py:2212 sickbeard/webserve.py:2233 +#: sickbeard/webserve.py:2211 sickbeard/webserve.py:2232 msgid "New subtitles downloaded: {new_subtitle_languages}" msgstr "Nové titulky stiahnuté: {new_subtitle_languages}" -#: sickbeard/webserve.py:2215 sickbeard/webserve.py:2236 +#: sickbeard/webserve.py:2214 sickbeard/webserve.py:2235 msgid "No subtitles downloaded" msgstr "Žiadne titulky neboli stiahnuté" #: gui/slick/views/config_general.mako:80 gui/slick/views/layouts/main.mako:222 -#: sickbeard/webserve.py:2363 +#: sickbeard/webserve.py:2362 msgid "IRC" msgstr "IRC" -#: sickbeard/webserve.py:2376 +#: sickbeard/webserve.py:2375 msgid "Could not load news from the repo. [Click here for news.md])({news_url})" msgstr "Nepodarilo sa načítať novinky z repo. [Kliknite tu pre news.md]({news_url})" -#: sickbeard/webserve.py:2383 sickbeard/webserve.py:2401 +#: sickbeard/webserve.py:2382 sickbeard/webserve.py:2400 msgid "The was a problem connecting to github, please refresh and try again" msgstr "Problém s pripojením na github, prosím obnoviť a skúste to znova" -#: sickbeard/webserve.py:2398 +#: sickbeard/webserve.py:2397 msgid "Could not load changes from the repo. [Click here for CHANGES.md]({changes_url})" msgstr "Nepodarilo sa načítať zmeny z repo. [Kliknite tu pre CHANGES.md]({changes_url})" -#: gui/slick/views/layouts/main.mako:223 sickbeard/webserve.py:2403 +#: gui/slick/views/layouts/main.mako:223 sickbeard/webserve.py:2402 msgid "Changelog" msgstr "Changelog" -#: gui/slick/views/layouts/main.mako:190 sickbeard/webserve.py:2413 -#: sickbeard/webserve.py:3855 sickbeard/webserve.py:4341 +#: gui/slick/views/layouts/main.mako:190 sickbeard/webserve.py:2412 +#: sickbeard/webserve.py:3826 sickbeard/webserve.py:4312 msgid "Post Processing" msgstr "Následné spracovanie" -#: gui/slick/views/layouts/main.mako:128 sickbeard/webserve.py:2445 +#: gui/slick/views/layouts/main.mako:128 sickbeard/webserve.py:2444 msgid "Add Shows" msgstr "Pridať seriály" -#: sickbeard/webserve.py:2510 +#: sickbeard/webserve.py:2509 msgid "No folders selected." msgstr "Neboli vybrané žiadne priečinky." -#: sickbeard/webserve.py:2632 +#: sickbeard/webserve.py:2631 msgid "New Show" msgstr "Nový seriál" -#: sickbeard/webserve.py:2647 +#: sickbeard/webserve.py:2646 msgid "Trending Shows" msgstr "Trendové seriály" -#: sickbeard/webserve.py:2649 sickbeard/webserve.py:2772 +#: sickbeard/webserve.py:2648 sickbeard/webserve.py:2771 msgid "Popular Shows" msgstr "Populárne seriály" -#: sickbeard/webserve.py:2651 sickbeard/webserve.py:2665 +#: sickbeard/webserve.py:2650 sickbeard/webserve.py:2664 msgid "Most Anticipated Shows" msgstr "Najočakávanejšie seriály" -#: sickbeard/webserve.py:2653 +#: sickbeard/webserve.py:2652 msgid "Most Collected Shows" msgstr "" -#: sickbeard/webserve.py:2655 +#: sickbeard/webserve.py:2654 msgid "Most Watched Shows" msgstr "" -#: sickbeard/webserve.py:2657 +#: sickbeard/webserve.py:2656 msgid "Most Played Shows" msgstr "" -#: sickbeard/webserve.py:2659 +#: sickbeard/webserve.py:2658 msgid "Recommended Shows" msgstr "" -#: gui/slick/views/addShows_trendingShows.mako:60 sickbeard/webserve.py:2661 +#: gui/slick/views/addShows_trendingShows.mako:60 sickbeard/webserve.py:2660 msgid "New Shows" msgstr "Nový seriál" -#: gui/slick/views/addShows_trendingShows.mako:61 sickbeard/webserve.py:2663 +#: gui/slick/views/addShows_trendingShows.mako:61 sickbeard/webserve.py:2662 msgid "Season Premieres" msgstr "Premiéry sezóny" -#: sickbeard/webserve.py:2792 sickbeard/webserve.py:2793 +#: sickbeard/webserve.py:2791 sickbeard/webserve.py:2792 msgid "Existing Show" msgstr "Existujúci seriál" -#: sickbeard/webserve.py:2871 +#: sickbeard/webserve.py:2870 msgid "No root directories setup, please go back and add one." msgstr "Neboli nastavené koreňové priečinky, prosím vráťte sa späť a jeden pridajte." -#: sickbeard/webserve.py:2883 sickbeard/webserve.py:3002 +#: sickbeard/webserve.py:2882 sickbeard/webserve.py:3001 msgid "Show added" msgstr "Seriál pridaný" -#: sickbeard/webserve.py:2883 +#: sickbeard/webserve.py:2882 msgid "Adding the specified show {show_name}" msgstr "Pridávam vybraný seriál {show_name}" -#: sickbeard/webserve.py:2924 +#: sickbeard/webserve.py:2923 msgid "Missing params, no Indexer ID or folder: {show_to_add} and {root_dir}/{show_path}" msgstr "Chýbajúce parametre, žiadne index ID alebo priečinok: {show_to_add} a {root_dir}/{show_path}" -#: sickbeard/webserve.py:2933 +#: sickbeard/webserve.py:2932 msgid "Unknown error. Unable to add show due to problem with show selection." msgstr "Neznáma chyba. Nie je možné pridať seriál kvôli problému s výberom seriálu." -#: sickbeard/webserve.py:2957 sickbeard/webserve.py:2967 +#: sickbeard/webserve.py:2956 sickbeard/webserve.py:2966 msgid "Unable to add show" msgstr "Nepodarilo sa pridať seriál" -#: sickbeard/webserve.py:2957 +#: sickbeard/webserve.py:2956 msgid "Folder {show_dir} exists already" msgstr "{show_dir} priečinok už existuje" -#: sickbeard/webserve.py:2968 +#: sickbeard/webserve.py:2967 msgid "Unable to create the folder {show_dir}, can't add the show" msgstr "Nepodarilo sa vytvoriť priečinok {show_dir}, nie je možné pridať seriál" -#: sickbeard/webserve.py:3002 +#: sickbeard/webserve.py:3001 msgid "Adding the specified show into {show_dir}" msgstr "Pridávam vybraný seriál do {show_dir}" -#: sickbeard/webserve.py:3078 +#: sickbeard/webserve.py:3077 msgid "Shows Added" msgstr "Seriály pridané" -#: sickbeard/webserve.py:3079 +#: sickbeard/webserve.py:3078 msgid "Automatically added {num_shows} from their existing metadata files" msgstr "Automaticky pridané {num_shows} na základe existujúcich súborov metadát" -#: gui/slick/views/layouts/main.mako:153 sickbeard/webserve.py:3096 +#: gui/slick/views/layouts/main.mako:153 sickbeard/webserve.py:3095 msgid "Mass Update" msgstr "Hromadná aktualizácia" -#: sickbeard/webserve.py:3134 sickbeard/webserve.py:3161 sickbeard/webserve.py:3237 -#: sickbeard/webserve.py:3238 +#: sickbeard/webserve.py:3133 sickbeard/webserve.py:3160 sickbeard/webserve.py:3236 +#: sickbeard/webserve.py:3237 msgid "Episode Overview" msgstr "Prehľad epizódy" -#: sickbeard/webserve.py:3270 +#: sickbeard/webserve.py:3269 msgid "Missing Subtitles" msgstr "Chýbajúce titulky" -#: gui/slick/views/layouts/main.mako:154 sickbeard/webserve.py:3356 -#: sickbeard/webserve.py:3357 +#: gui/slick/views/layouts/main.mako:154 sickbeard/webserve.py:3355 +#: sickbeard/webserve.py:3356 msgid "Backlog Overview" msgstr "Prehľad chýbajúcich" -#: sickbeard/webserve.py:3481 +#: sickbeard/webserve.py:3480 msgid "Mass Edit" msgstr "Hromadná úprava" -#: sickbeard/webserve.py:3586 +#: sickbeard/webserve.py:3585 msgid "Unable to update show: {excption_format}" msgstr "Nepodarilo sa aktualizovať seriál: {excption_format}" -#: sickbeard/webserve.py:3594 +#: sickbeard/webserve.py:3593 msgid "Unable to refresh show {show_name}: {excption_format}" msgstr "Nepodarilo sa obnoviť seriál {show_name}: {excption_format}" -#: sickbeard/webserve.py:3605 +#: sickbeard/webserve.py:3604 msgid "Errors encountered" msgstr "Vyskytli sa chyby" -#: gui/slick/views/config_general.mako:261 sickbeard/webserve.py:3611 +#: gui/slick/views/config_general.mako:261 sickbeard/webserve.py:3610 msgid "Updates" msgstr "Aktualizácie" -#: sickbeard/webserve.py:3616 +#: sickbeard/webserve.py:3615 msgid "Refreshes" msgstr "Obnoví" -#: sickbeard/webserve.py:3621 +#: sickbeard/webserve.py:3620 msgid "Renames" msgstr "" #: gui/slick/views/displayShow.mako:260 gui/slick/views/displayShow.mako:435 #: gui/slick/views/editShow.mako:119 gui/slick/views/inc_addShowOptions.mako:20 -#: gui/slick/views/manage_massEdit.mako:262 sickbeard/webserve.py:3626 -#: sickbeard/webserve.py:5244 +#: gui/slick/views/manage_massEdit.mako:262 sickbeard/webserve.py:3625 +#: sickbeard/webserve.py:5215 msgid "Subtitles" msgstr "Titulky" -#: sickbeard/webserve.py:3631 +#: sickbeard/webserve.py:3630 msgid "The following actions were queued" msgstr "Tieto akcie boli zaradené do frontu" -#: sickbeard/webserve.py:3651 -msgid "For best results please set the Download Station alias as" -msgstr "" - -#: sickbeard/webserve.py:3652 -msgid "You can check this setting in the Synology DSM" -msgstr "" - -#: sickbeard/webserve.py:3652 sickbeard/webserve.py:3654 -msgid "Control Panel" -msgstr "Ovládací Panel" - -#: sickbeard/webserve.py:3652 -msgid "Application Portal" -msgstr "" - -#: sickbeard/webserve.py:3653 -msgid "Make sure you allow DSM to be embedded with iFrames too in" -msgstr "" - -#: sickbeard/webserve.py:3654 -msgid "DSM Settings" -msgstr "DSM nastavenia" - -#: sickbeard/webserve.py:3654 -msgid "Security" -msgstr "Zabezpečenie" - -#: gui/slick/views/layouts/main.mako:167 sickbeard/webserve.py:3662 -msgid "Manage Torrents" -msgstr "Spravovať torrenty" - -#: gui/slick/views/layouts/main.mako:170 sickbeard/webserve.py:3683 +#: gui/slick/views/layouts/main.mako:170 sickbeard/webserve.py:3654 msgid "Failed Downloads" msgstr "Neúspešné sťahovania" -#: gui/slick/views/layouts/main.mako:155 sickbeard/webserve.py:3701 +#: gui/slick/views/layouts/main.mako:155 sickbeard/webserve.py:3672 msgid "Manage Searches" msgstr "Správa vyhľadávania" -#: sickbeard/webserve.py:3709 +#: sickbeard/webserve.py:3680 msgid "Backlog search started" msgstr "Vyhľadávanie chýbajúcich začalo" -#: sickbeard/webserve.py:3719 +#: sickbeard/webserve.py:3690 msgid "Daily search started" msgstr "Denné vyhľadávanie začalo" -#: sickbeard/webserve.py:3728 +#: sickbeard/webserve.py:3699 msgid "Find propers search started" msgstr "Vyhľadávanie propers začalo" -#: sickbeard/webserve.py:3737 +#: sickbeard/webserve.py:3708 msgid "Subtitle search started" msgstr "Vyhľadávanie titulkov začalo" -#: sickbeard/webserve.py:3801 +#: sickbeard/webserve.py:3772 msgid "Remove Selected" msgstr "" -#: sickbeard/webserve.py:3802 +#: sickbeard/webserve.py:3773 msgid "Clear History" msgstr "Vymazať históriu" -#: sickbeard/webserve.py:3803 +#: sickbeard/webserve.py:3774 msgid "Trim History" msgstr "Redukcia histórie" -#: sickbeard/webserve.py:3823 +#: sickbeard/webserve.py:3794 msgid "Selected history entries removed" msgstr "" -#: sickbeard/webserve.py:3830 +#: sickbeard/webserve.py:3801 msgid "History cleared" msgstr "História vymazaná" -#: sickbeard/webserve.py:3837 +#: sickbeard/webserve.py:3808 msgid "Removed history entries older than 30 days" msgstr "Odstrániť z histórie položky staršie ako 30 dní" -#: gui/slick/views/layouts/main.mako:185 sickbeard/webserve.py:3850 +#: gui/slick/views/layouts/main.mako:185 sickbeard/webserve.py:3821 msgid "General" msgstr "Všeobecné" -#: sickbeard/webserve.py:3851 sickbeard/webserve.py:4143 +#: sickbeard/webserve.py:3822 sickbeard/webserve.py:4114 msgid "Backup/Restore" msgstr "Záloha/Obnova" -#: gui/slick/views/layouts/main.mako:187 sickbeard/webserve.py:3852 -#: sickbeard/webserve.py:4206 +#: gui/slick/views/layouts/main.mako:187 sickbeard/webserve.py:3823 +#: sickbeard/webserve.py:4177 msgid "Search Settings" msgstr "Nastavenia vyhľadávania" -#: gui/slick/views/layouts/main.mako:188 sickbeard/webserve.py:3853 -#: sickbeard/webserve.py:4518 +#: gui/slick/views/layouts/main.mako:188 sickbeard/webserve.py:3824 +#: sickbeard/webserve.py:4489 msgid "Search Providers" msgstr "Poskytovatelia hľadania" -#: gui/slick/views/layouts/main.mako:189 sickbeard/webserve.py:3854 +#: gui/slick/views/layouts/main.mako:189 sickbeard/webserve.py:3825 msgid "Subtitles Settings" msgstr "Nastavenia titulkov" -#: gui/slick/views/layouts/main.mako:191 sickbeard/webserve.py:3856 -#: sickbeard/webserve.py:4964 +#: gui/slick/views/layouts/main.mako:191 sickbeard/webserve.py:3827 +#: sickbeard/webserve.py:4935 msgid "Notifications" msgstr "Oznámenia" @@ -1240,142 +1237,142 @@ msgstr "Oznámenia" #: gui/slick/views/home.mako:35 gui/slick/views/inc_addShowOptions.mako:79 #: gui/slick/views/inc_home_showList.mako:179 gui/slick/views/layouts/main.mako:192 #: gui/slick/views/manage.mako:44 gui/slick/views/manage_massEdit.mako:202 -#: sickbeard/webserve.py:3857 sickbeard/webserve.py:5309 +#: sickbeard/webserve.py:3828 sickbeard/webserve.py:5280 msgid "Anime" msgstr "Anime" -#: sickbeard/webserve.py:3895 sickbeard/webserve.py:3896 +#: sickbeard/webserve.py:3866 sickbeard/webserve.py:3867 msgid "SickRage Configuration" msgstr "Konfigurácia SickRage" -#: sickbeard/webserve.py:3910 +#: sickbeard/webserve.py:3881 msgid "Config - Shares" msgstr "" -#: sickbeard/webserve.py:3910 +#: sickbeard/webserve.py:3881 msgid "Windows Shares Configuration" msgstr "" -#: sickbeard/webserve.py:3937 +#: sickbeard/webserve.py:3908 msgid "Saved Shares" msgstr "" -#: sickbeard/webserve.py:3937 +#: sickbeard/webserve.py:3908 msgid "Your Windows share settings have been saved" msgstr "" -#: sickbeard/webserve.py:3948 +#: sickbeard/webserve.py:3919 msgid "Config - General" msgstr "Nastavenia - Všeobecné" -#: sickbeard/webserve.py:3948 +#: sickbeard/webserve.py:3919 msgid "General Configuration" msgstr "Všeobecné nastavenia" -#: sickbeard/webserve.py:3988 +#: sickbeard/webserve.py:3959 msgid "Saved Defaults" msgstr "" -#: sickbeard/webserve.py:3988 +#: sickbeard/webserve.py:3959 msgid "Your \"add show\" defaults have been set to your current selections." msgstr "" -#: sickbeard/webserve.py:4095 +#: sickbeard/webserve.py:4066 msgid "Unable to create directory {directory}, log directory not changed." msgstr "Nedá sa vytvoriť priečinok {directory}, priečinok logu nebol zmenený." -#: sickbeard/webserve.py:4103 +#: sickbeard/webserve.py:4074 msgid "Unable to create directory {directory}, https cert directory not changed." msgstr "Nedá sa vytvoriť priečinok {directory}, priečinok pre https certifikát nebol zmenený." -#: sickbeard/webserve.py:4107 +#: sickbeard/webserve.py:4078 msgid "Unable to create directory {directory}, https key directory not changed." msgstr "Nedá sa vytvoriť priečinok {directory}, priečinok pre https kľúč nebol zmenený." -#: sickbeard/webserve.py:4126 sickbeard/webserve.py:4324 sickbeard/webserve.py:4456 -#: sickbeard/webserve.py:5227 +#: sickbeard/webserve.py:4097 sickbeard/webserve.py:4295 sickbeard/webserve.py:4427 +#: sickbeard/webserve.py:5198 msgid "Error(s) Saving Configuration" msgstr "Chyba pri ukladaní nastavení" -#: sickbeard/webserve.py:4129 sickbeard/webserve.py:4327 sickbeard/webserve.py:4458 -#: sickbeard/webserve.py:4950 sickbeard/webserve.py:5230 sickbeard/webserve.py:5294 -#: sickbeard/webserve.py:5323 +#: sickbeard/webserve.py:4100 sickbeard/webserve.py:4298 sickbeard/webserve.py:4429 +#: sickbeard/webserve.py:4921 sickbeard/webserve.py:5201 sickbeard/webserve.py:5265 +#: sickbeard/webserve.py:5294 msgid "Configuration Saved" msgstr "Nastavenia uložené" -#: sickbeard/webserve.py:4142 +#: sickbeard/webserve.py:4113 msgid "Config - Backup/Restore" msgstr "Nastavenia - Záloha a Obnova" -#: sickbeard/webserve.py:4205 +#: sickbeard/webserve.py:4176 msgid "Config - Episode Search" msgstr "Nastavenia - vyhľadávanie epizód" -#: sickbeard/webserve.py:4340 +#: sickbeard/webserve.py:4311 msgid "Config - Post Processing" msgstr "Nastavenia - Následné spracovanie" -#: sickbeard/webserve.py:4380 +#: sickbeard/webserve.py:4351 msgid "Unpacking Not Supported, disabling unpack setting" msgstr "Rozbaľovanie nepodporované, vypínam nastavenia rozbalenia" -#: sickbeard/webserve.py:4431 +#: sickbeard/webserve.py:4402 msgid "You tried saving an invalid normal naming config, not saving your naming settings" msgstr "" -#: sickbeard/webserve.py:4439 +#: sickbeard/webserve.py:4410 msgid "You tried saving an invalid anime naming config, not saving your naming settings" msgstr "Pokúsili ste sa uložiť nesprávne nastavenia pomenovania anime, nastavenia neboli uložené" -#: sickbeard/webserve.py:4517 +#: sickbeard/webserve.py:4488 msgid "Config - Providers" msgstr "Nastavenia - Poskytovatelia" -#: sickbeard/webserve.py:4547 +#: sickbeard/webserve.py:4518 msgid "No Provider Name specified" msgstr "Nie je zadaný žiadny názov poskytovateľa" -#: sickbeard/webserve.py:4549 +#: sickbeard/webserve.py:4520 msgid "No Provider Url specified" msgstr "Nie je zadaná Url poskytovateľa" -#: sickbeard/webserve.py:4551 +#: sickbeard/webserve.py:4522 msgid "No Provider Api key specified" msgstr "" -#: sickbeard/webserve.py:4963 +#: sickbeard/webserve.py:4934 msgid "Config - Notifications" msgstr "Nastavenia - Oznámenia" -#: sickbeard/webserve.py:5243 +#: sickbeard/webserve.py:5214 msgid "Config - Subtitles" msgstr "Nastavenia - Titulky" -#: sickbeard/webserve.py:5308 +#: sickbeard/webserve.py:5279 msgid "Config - Anime" msgstr "Nastavenia - Anime" -#: sickbeard/webserve.py:5336 +#: sickbeard/webserve.py:5307 msgid "Clear Errors" msgstr "Vymazať chyby" -#: sickbeard/webserve.py:5342 +#: sickbeard/webserve.py:5313 msgid "Clear Warnings" msgstr "Vymazať varovania" -#: sickbeard/webserve.py:5348 +#: sickbeard/webserve.py:5319 msgid "Submit Errors" msgstr "Odoslať chyby" -#: sickbeard/webserve.py:5363 +#: sickbeard/webserve.py:5334 msgid "Logs & Errors" msgstr "Denník & chybové hlásenia" -#: sickbeard/webserve.py:5388 +#: sickbeard/webserve.py:5359 msgid "Log File" msgstr "Súbor denníka" -#: sickbeard/webserve.py:5388 +#: sickbeard/webserve.py:5359 msgid "Logs" msgstr "Záznamy" @@ -1383,30 +1380,166 @@ msgstr "Záznamy" msgid "This is a test notification from SickRage" msgstr "Toto je test oznámenia od SickRage" -#: gui/slick/js/core.js:481 gui/slick/js/core.js:502 gui/slick/js/core.js:524 -#: gui/slick/js/core.js:548 gui/slick/js/core.js:573 gui/slick/js/core.js:596 -#: gui/slick/js/core.js:625 gui/slick/js/core.js:645 gui/slick/js/core.js:690 -#: gui/slick/js/core.js:769 gui/slick/js/core.js:829 gui/slick/js/core.js:849 -#: gui/slick/js/core.js:879 gui/slick/js/core.js:909 gui/slick/js/core.js:969 -#: gui/slick/js/core.js:1046 gui/slick/js/core.js:1066 gui/slick/js/core.js:1085 +#: gui/slick/js/browser.js:6 +msgid "Choose Directory" +msgstr "" + +#: gui/slick/js/core.js:443 +msgid "Select log file folder location" +msgstr "" + +#: gui/slick/js/core.js:445 +msgid "Select CSS file" +msgstr "" + +#: gui/slick/js/core.js:469 +msgid "Select backup folder to save to" +msgstr "" + +#: gui/slick/js/core.js:470 +msgid "Select backup files to restore" +msgstr "" + +#: gui/slick/js/core.js:479 gui/slick/js/core.js:500 gui/slick/js/core.js:522 +#: gui/slick/js/core.js:546 gui/slick/js/core.js:571 gui/slick/js/core.js:594 +#: gui/slick/js/core.js:623 gui/slick/js/core.js:643 gui/slick/js/core.js:688 +#: gui/slick/js/core.js:767 gui/slick/js/core.js:827 gui/slick/js/core.js:847 +#: gui/slick/js/core.js:877 gui/slick/js/core.js:907 gui/slick/js/core.js:967 +#: gui/slick/js/core.js:1044 gui/slick/js/core.js:1064 gui/slick/js/core.js:1083 msgid "Please fill out the necessary fields above." msgstr "" -#: gui/slick/js/core.js:1328 gui/slick/js/core.js:1378 gui/slick/js/core.js:1427 -#: gui/slick/js/core.js:1493 +#: gui/slick/js/core.js:680 +msgid "<b>Step 1:</b> Confirm Authorization" +msgstr "" + +#: gui/slick/js/core.js:977 +msgid "Check blacklist name; the value needs to be a trakt slug" +msgstr "" + +#: gui/slick/js/core.js:1022 +msgid "You must provide a recipient email address!" +msgstr "" + +#: gui/slick/js/core.js:1107 +msgid "You didn't supply a Pushbullet api key" +msgstr "" + +#: gui/slick/js/core.js:1133 gui/slick/js/core.js:1162 +msgid "Don't forget to save your new pushbullet settings." +msgstr "" + +#: gui/slick/js/core.js:1262 +msgid "Select TV Download Directory" +msgstr "" + +#: gui/slick/js/core.js:1263 +msgid "Select Unpack Directory" +msgstr "" + +#: gui/slick/js/core.js:1326 gui/slick/js/core.js:1376 gui/slick/js/core.js:1425 +#: gui/slick/js/core.js:1491 msgid "This pattern is invalid." msgstr "Tento vzor je neplatný." -#: gui/slick/js/core.js:1336 gui/slick/js/core.js:1386 gui/slick/js/core.js:1435 -#: gui/slick/js/core.js:1501 +#: gui/slick/js/core.js:1334 gui/slick/js/core.js:1384 gui/slick/js/core.js:1433 +#: gui/slick/js/core.js:1499 msgid "This pattern would be invalid without the folders, using it will force \"Season Folders\" on for all shows." msgstr "" -#: gui/slick/js/core.js:1344 gui/slick/js/core.js:1394 gui/slick/js/core.js:1443 -#: gui/slick/js/core.js:1509 +#: gui/slick/js/core.js:1342 gui/slick/js/core.js:1392 gui/slick/js/core.js:1441 +#: gui/slick/js/core.js:1507 msgid "This pattern is valid." msgstr "Tento vzor je platný." +#: gui/slick/js/core.js:1818 +msgid "Select .nzb black hole/watch location" +msgstr "" + +#: gui/slick/js/core.js:1819 +msgid "Select .torrent black hole/watch location" +msgstr "" + +#: gui/slick/js/core.js:1820 +msgid "Select .torrent download location" +msgstr "" + +#: gui/slick/js/core.js:1900 +msgid "Minimum seeding time is" +msgstr "" + +#: gui/slick/js/core.js:1902 +msgid "URL to your uTorrent client (e.g. http://localhost:8000)" +msgstr "" + +#: gui/slick/js/core.js:1905 +msgid "Stop seeding when inactive for" +msgstr "" + +#: gui/slick/js/core.js:1911 +msgid "URL to your Transmission client (e.g. http://localhost:9091)" +msgstr "" + +#: gui/slick/js/core.js:1921 +msgid "URL to your Deluge client (e.g. http://localhost:8112)" +msgstr "" + +#: gui/slick/js/core.js:1930 +msgid "IP or Hostname of your Deluge Daemon (e.g. scgi://localhost:58846)" +msgstr "" + +#: gui/slick/js/core.js:1937 +msgid "URL to your Synology DS client (e.g. http://localhost:5000)" +msgstr "" + +#: gui/slick/js/core.js:1941 +msgid "URL to your rTorrent client (e.g. scgi://localhost:5000 <br> or https://localhost/rutorrent/plugins/httprpc/action.php)" +msgstr "" + +#: gui/slick/js/core.js:1952 +msgid "URL to your qBittorrent client (e.g. http://localhost:8080)" +msgstr "" + +#: gui/slick/js/core.js:1962 +msgid "URL to your MLDonkey (e.g. http://localhost:4080)" +msgstr "" + +#: gui/slick/js/core.js:1974 +msgid "URL to your putio client (e.g. http://localhost:8080)" +msgstr "" + +#: gui/slick/js/core.js:1975 +msgid "<a herf=\"https://app.put.io/oauth/apps/new\" target=\"_blank\"> Create a new OAuth app for put.io</a>" +msgstr "" + +#: gui/slick/js/core.js:1977 +msgid "Put.io Parent Folder" +msgstr "" + +#: gui/slick/js/core.js:1978 +msgid "Put.io OAuth Token" +msgstr "" + +#: gui/slick/js/core.js:3383 gui/slick/views/displayShow.mako:410 +msgid "Show Episodes" +msgstr "" + +#: gui/slick/js/core.js:3388 gui/slick/views/displayShow.mako:408 +msgid "Hide Episodes" +msgstr "" + +#: gui/slick/js/core.js:3396 +msgid "Select Show Location" +msgstr "" + +#: gui/slick/js/core.js:3460 +msgid "Select Unprocessed Episode Folder" +msgstr "" + +#: gui/slick/js/core.js:3790 +msgid "DELETED" +msgstr "" + #: gui/slick/js/core.js:4082 msgid "Resume updating the log on this page." msgstr "" @@ -1415,6 +1548,26 @@ msgstr "" msgid "Pause updating the log on this page." msgstr "" +#: gui/slick/js/core.js:4323 +msgid "searching {searchingFor}..." +msgstr "" + +#: gui/slick/js/core.js:4334 +msgid "search timed out, try again or try another indexer" +msgstr "" + +#: gui/slick/js/core.js:4503 +msgid "loading folders..." +msgstr "" + +#: gui/slick/js/parsers.js:7 gui/slick/js/parsers.js:8 +#: gui/slick/js/plotTooltip.js:6 gui/slick/js/sceneExceptionsTooltip.js:6 +#: gui/slick/views/inc_home_showList.mako:209 +#: gui/slick/views/inc_home_showList.mako:215 +#: gui/slick/views/inc_home_showList.mako:231 +msgid "Loading..." +msgstr "" + #: gui/slick/views/404.mako:5 msgid "You have reached this page by accident, please check the url." msgstr "Na túto stránku ste sa dostali omylom, skontrolujte správnosť url." @@ -5711,14 +5864,6 @@ msgstr "" msgid "Select Columns" msgstr "" -#: gui/slick/views/displayShow.mako:408 -msgid "Hide Episodes" -msgstr "" - -#: gui/slick/views/displayShow.mako:410 -msgid "Show Episodes" -msgstr "" - #: gui/slick/views/displayShow.mako:424 msgid "NFO" msgstr "" @@ -6232,12 +6377,6 @@ msgstr "" msgid "loading" msgstr "" -#: gui/slick/views/inc_home_showList.mako:209 -#: gui/slick/views/inc_home_showList.mako:215 -#: gui/slick/views/inc_home_showList.mako:231 -msgid "Loading..." -msgstr "" - #: gui/slick/views/inc_qualityChooser.mako:31 msgid "<p><b><u>Preferred</u></b> qualities will replace those in <b><u>allowed</u></b>, even if they are lower.</p>" msgstr "" @@ -6775,6 +6914,10 @@ msgstr "Aktualizuj KODI" msgid "Update Emby" msgstr "Aktualizuj Emby" +#: gui/slick/views/layouts/main.mako:167 +msgid "Manage Torrents" +msgstr "Spravovať torrenty" + #: gui/slick/views/layouts/main.mako:173 msgid "Missed Subtitle Management" msgstr "Správa chýbajúcich titulkov" diff --git a/locale/sl_SI/LC_MESSAGES/messages.json b/locale/sl_SI/LC_MESSAGES/messages.json index 5ddbb09caa1f6ce76d0855aa809e1f6b91f6d8dd..d834496bd2ec2181b17c2a5827e95697cdada9fe 100644 --- a/locale/sl_SI/LC_MESSAGES/messages.json +++ b/locale/sl_SI/LC_MESSAGES/messages.json @@ -1 +1 @@ -{"messages":{"domain":"messages","locale_data":{"messages":{"100":[null,"100"],"250":[null,"250"],"500":[null,"500"],"":{"domain":"messages","plural_forms":"nplurals=4; plural=(n%100==1 ? 1 : n%100==2 ? 2 : n%100==3 || n%100==4 ? 3 : 0);","lang":"sl_SI"},"Drama":[null,""],"Mystery":[null,""],"Science-Fiction":[null,""],"Crime":[null,"Kriminalka"],"Action":[null,""],"Comedy":[null,""],"Thriller":[null,""],"Animation":[null,""],"Family":[null,""],"Fantasy":[null,""],"Adventure":[null,""],"Horror":[null,""],"Film-Noir":[null,""],"Sci-Fi":[null,""],"Romance":[null,""],"Sport":[null,""],"War":[null,""],"Biography":[null,""],"History":[null,"Zgodovina"],"Music":[null,""],"Western":[null,""],"News":[null,"Novice"],"Sitcom":[null,""],"Reality-TV":[null,""],"Documentary":[null,""],"Game-Show":[null,""],"Musical":[null,""],"Talk-Show":[null,""],"Started Download":[null,"Začetek Prejemanja"],"Download Finished":[null,"Prejemanje Končano"],"Subtitle Download Finished":[null,"Prejemanje Podnapisov Končano"],"SickRage Updated":[null,""],"SickRage Updated To Commit#: ":[null,""],"SickRage new login":[null,""],"New login from IP: {0}. http://geomaplookup.net/?ip={0}":[null,""],"Repeat":[null,""],"Repeat (Separated)":[null,""],"Extend":[null,""],"Extend (Limited)":[null,""],"Extend (Limited, E-prefixed)":[null,""],"Downloaded":[null,"Prejeto"],"Snatched":[null,""],"Snatched (Proper)":[null,""],"Failed":[null,"Spodletel"],"Snatched (Best)":[null,""],"Archived":[null,"Arhivirano"],"Unknown":[null,"Neznano"],"Unaired":[null,""],"Skipped":[null,""],"Wanted":[null,"Željen"],"Ignored":[null,"Prezrto"],"Subtitled":[null,""],"<No Filter>":[null,""],"Daily Searcher":[null,""],"Backlog":[null,""],"Show Updater":[null,""],"Check Version":[null,""],"Show Queue":[null,""],"Search Queue (All)":[null,""],"Search Queue (Daily Searcher)":[null,""],"Search Queue (Backlog)":[null,""],"Search Queue (Manual)":[null,""],"Search Queue (Retry/Failed)":[null,""],"Search Queue (RSS)":[null,""],"Find Propers":[null,""],"Postprocessor":[null,""],"Find Subtitles":[null,""],"Trakt Checker":[null,""],"Event":[null,""],"Error":[null,"Napaka"],"Tornado":[null,""],"Thread":[null,""],"Main":[null,""],"Loading":[null,""],"New update found for SickRage, starting auto-updater":[null,""],"Update was successful":[null,"Posodobitev uspešna"],"Update failed!":[null,"Neuspešna posodobitev!"],"Backup":[null,"Varnostna kopija"],"Config backup in progress...":[null,""],"Config backup successful, updating...":[null,""],"Config backup failed, aborting update":[null,""],"No update needed":[null,"Posodobitev ni potrebna"],"Mako Error":[null,""],"Oops":[null,""],"Wrong API key used":[null,""],"Login":[null,"Prijava"],"API Key not generated":[null,""],"API Builder":[null,""],"Schedule":[null,""],"Test 1":[null,"Preizkus 1"],"This is test number 1":[null,"To je test številka 1"],"Test 2":[null,"Preizkus 2"],"This is test number 2":[null,"To je test številka 2"],"You're using the {branch} branch. Please use 'master' unless specifically asked":[null,""],"Invalid show parameters":[null,""],"Invalid parameters":[null,""],"Episode couldn't be retrieved":[null,""],"Home":[null,"Domov"],"Show List":[null,"Seznam Serij"],"Error: Unsupported Request. Send jsonp request with 'callback' variable in the query string.":[null,""],"Success. Connected and authenticated":[null,""],"Authentication failed. SABnzbd expects":[null,""],"as authentication method":[null,""],"Unable to connect to host":[null,""],"SMS sent successfully":[null,""],"Problem sending SMS: {message}":[null,""],"Telegram notification succeeded. Check your Telegram clients to make sure it worked":[null,""],"Error sending Telegram notification: {message}":[null,""],"join notification succeeded. Check your join clients to make sure it worked":[null,""],"Error sending join notification: {message}":[null,""]," with password":[null,""],"Registered and Tested growl successfully {growl_host}":[null,""],"Registration and Testing of growl failed {growl_host}":[null,""],"Test prowl notice sent successfully":[null,""],"Test prowl notice failed":[null,""],"Boxcar2 notification succeeded. Check your Boxcar2 clients to make sure it worked":[null,""],"Error sending Boxcar2 notification":[null,""],"Pushover notification succeeded. Check your Pushover clients to make sure it worked":[null,""],"Error sending Pushover notification":[null,""],"Key verification successful":[null,""],"Unable to verify key":[null,""],"Tweet successful, check your twitter to make sure it worked":[null,""],"Error sending tweet":[null,""],"Please enter a valid account sid":[null,""],"Please enter a valid auth token":[null,""],"Please enter a valid phone sid":[null,""],"Please format the phone number as \"+1-###-###-####\"":[null,""],"Authorization successful and number ownership verified":[null,""],"Error sending sms":[null,""],"Slack message successful":[null,""],"Slack message failed":[null,""],"Discord message successful":[null,""],"Discord message failed":[null,""],"Test KODI notice sent successfully to {kodi_host}":[null,""],"Test KODI notice failed to {kodi_host}":[null,""],"Successful test notice sent to Plex Home Theater ... {plex_clients}":[null,""],"Test failed for Plex Home Theater ... {plex_clients}":[null,""],"Tested Plex Home Theater(s)":[null,""],"Successful test of Plex Media Server(s) ... {plex_servers}":[null,""],"Test failed, No Plex Media Server host specified":[null,""],"Test failed for Plex Media Server(s) ... {plex_servers}":[null,""],"Tested Plex Media Server host(s)":[null,""],"Tried sending desktop notification via libnotify":[null,""],"Test notice sent successfully to {emby_host}":[null,""],"Test notice failed to {emby_host}":[null,""],"Successfully started the scan update":[null,""],"Test failed to start the scan update":[null,""],"Test notice sent successfully to {nmj2_host}":[null,""],"Test notice failed to {nmj2_host}":[null,""],"Trakt Authorized":[null,""],"Trakt Not Authorized!":[null,""],"Test email sent successfully! Check inbox.":[null,""],"ERROR: {last_error}":[null,""],"Test NMA notice sent successfully":[null,""],"Test NMA notice failed":[null,""],"Pushalot notification succeeded. Check your Pushalot clients to make sure it worked":[null,""],"Error sending Pushalot notification":[null,""],"Pushbullet notification succeeded. Check your device to make sure it worked":[null,""],"Error sending Pushbullet notification":[null,""],"Status":[null,""],"Restarting SickRage":[null,"Ponovni zagon SickRage"],"Update Failed":[null,""],"Update wasn't successful, not restarting. Check your log for more information.":[null,""],"Checking out branch":[null,""],"Already on branch":[null,""],"Invalid show ID: {show}":[null,""],"Show not in show list":[null,""],"Edit":[null,"Uredi"],"This show is in the process of being downloaded - the info below is incomplete.":[null,""],"The information on this page is in the process of being updated.":[null,""],"The episodes below are currently being refreshed from disk":[null,""],"Currently downloading subtitles for this show":[null,""],"This show is queued to be refreshed.":[null,""],"This show is queued and awaiting an update.":[null,""],"This show is queued and awaiting subtitles download.":[null,""],"Resume":[null,""],"Pause":[null,""],"Remove":[null,"Odstrani"],"Re-scan files":[null,""],"Force Full Update":[null,""],"Update show in KODI":[null,""],"Update show in Emby":[null,""],"Hide specials":[null,""],"Show specials":[null,""],"Preview Rename":[null,""],"Download Subtitles":[null,""],"No scene exceptions":[null,""],"Invalid show ID":[null,""],"Unable to find the specified show":[null,""],"Unable to retreive Fansub Groups from AniDB.":[null,""],"Edit Show":[null,"Uredi Serijo"],"Unable to refresh this show: {error}":[null,""],"New location <tt>{location}</tt> does not exist":[null,""],"Unable to update show: {error}":[null,""],"Unable to force an update on scene exceptions of the show.":[null,""],"Unable to force an update on scene numbering of the show.":[null,""],"{num_errors:d} error{plural} while saving changes:":[null,""],"{show_name} has been {paused_resumed}":[null,""],"resumed":[null,""],"paused":[null,""],"{show_name} has been {deleted_trashed} {was_deleted}":[null,""],"deleted":[null,""],"trashed":[null,""],"(media untouched)":[null,""],"(with all related media)":[null,""],"Unable to refresh this show.":[null,""],"Unable to update this show.":[null,""],"Library update command sent to KODI host(s)): {kodi_hosts}":[null,""],"Unable to contact one or more KODI host(s)): {kodi_hosts}":[null,""],"Library update command sent to Plex Media Server host: {plex_server}":[null,""],"Unable to contact Plex Media Server host: {plex_server}":[null,""],"Library update command sent to Emby host: {emby_host}":[null,""],"Unable to contact Emby host: {emby_host}":[null,""],"You must specify a show and at least one episode":[null,""],"Invalid status":[null,""],"Backlog was automatically started for the following seasons of <b>{show_name}</b>":[null,""],"Season":[null,"Sezona"],"Backlog started":[null,""],"Retrying Search was automatically started for the following season of <b>{show_name}</b>":[null,""],"Retry Search started":[null,""],"You must specify a show":[null,""],"Can't rename episodes when the show dir is missing.":[null,""],"New subtitles downloaded: {new_subtitle_languages}":[null,""],"No subtitles downloaded":[null,""],"IRC":[null,"IRC"],"Could not load news from the repo. [Click here for news.md])({news_url})":[null,""],"The was a problem connecting to github, please refresh and try again":[null,""],"Could not load changes from the repo. [Click here for CHANGES.md]({changes_url})":[null,""],"Changelog":[null,""],"Post Processing":[null,""],"Add Shows":[null,"Dodaj Serijo"],"No folders selected.":[null,""],"New Show":[null,"Nova Serija"],"Trending Shows":[null,""],"Popular Shows":[null,"Priljubljene Serije"],"Most Anticipated Shows":[null,""],"Most Collected Shows":[null,""],"Most Watched Shows":[null,""],"Most Played Shows":[null,""],"Recommended Shows":[null,""],"New Shows":[null,""],"Season Premieres":[null,""],"Existing Show":[null,""],"No root directories setup, please go back and add one.":[null,""],"Show added":[null,""],"Adding the specified show {show_name}":[null,""],"Missing params, no Indexer ID or folder: {show_to_add} and {root_dir}/{show_path}":[null,""],"Unknown error. Unable to add show due to problem with show selection.":[null,""],"Unable to add show":[null,""],"Folder {show_dir} exists already":[null,""],"Unable to create the folder {show_dir}, can't add the show":[null,""],"Adding the specified show into {show_dir}":[null,""],"Shows Added":[null,""],"Automatically added {num_shows} from their existing metadata files":[null,""],"Mass Update":[null,""],"Episode Overview":[null,""],"Missing Subtitles":[null,""],"Backlog Overview":[null,""],"Mass Edit":[null,""],"Unable to update show: {excption_format}":[null,""],"Unable to refresh show {show_name}: {excption_format}":[null,""],"Errors encountered":[null,""],"Updates":[null,"Posodobitve"],"Refreshes":[null,""],"Renames":[null,"Preimenuj"],"Subtitles":[null,"Podnapisi"],"The following actions were queued":[null,""],"For best results please set the Download Station alias as":[null,""],"You can check this setting in the Synology DSM":[null,""],"Control Panel":[null,"Nadzorna Plošča"],"Application Portal":[null,""],"Make sure you allow DSM to be embedded with iFrames too in":[null,""],"DSM Settings":[null,""],"Security":[null,"Varnost"],"Manage Torrents":[null,""],"Failed Downloads":[null,""],"Manage Searches":[null,""],"Backlog search started":[null,""],"Daily search started":[null,""],"Find propers search started":[null,""],"Subtitle search started":[null,""],"Remove Selected":[null,""],"Clear History":[null,"Počisti zgodovino"],"Trim History":[null,""],"Selected history entries removed":[null,""],"History cleared":[null,""],"Removed history entries older than 30 days":[null,""],"General":[null,"Splošno"],"Backup/Restore":[null,""],"Search Settings":[null,""],"Search Providers":[null,""],"Subtitles Settings":[null,"Nastavitve podnapisov"],"Notifications":[null,"Obvestila"],"Anime":[null,""],"SickRage Configuration":[null,""],"Config - Shares":[null,""],"Windows Shares Configuration":[null,""],"Saved Shares":[null,""],"Your Windows share settings have been saved":[null,""],"Config - General":[null,""],"General Configuration":[null,""],"Saved Defaults":[null,""],"Your \"add show\" defaults have been set to your current selections.":[null,""],"Unable to create directory {directory}, log directory not changed.":[null,""],"Unable to create directory {directory}, https cert directory not changed.":[null,""],"Unable to create directory {directory}, https key directory not changed.":[null,""],"Error(s) Saving Configuration":[null,""],"Configuration Saved":[null,""],"Config - Backup/Restore":[null,""],"Config - Episode Search":[null,""],"Config - Post Processing":[null,""],"Unpacking Not Supported, disabling unpack setting":[null,""],"You tried saving an invalid normal naming config, not saving your naming settings":[null,""],"You tried saving an invalid anime naming config, not saving your naming settings":[null,""],"Config - Providers":[null,""],"No Provider Name specified":[null,""],"No Provider Url specified":[null,""],"No Provider Api key specified":[null,""],"Config - Notifications":[null,""],"Config - Subtitles":[null,""],"Config - Anime":[null,""],"Clear Errors":[null,"Počisti Napake"],"Clear Warnings":[null,""],"Submit Errors":[null,""],"Logs & Errors":[null,""],"Log File":[null,""],"Logs":[null,""],"This is a test notification from SickRage":[null,""],"Please fill out the necessary fields above.":[null,""],"This pattern is invalid.":[null,""],"This pattern would be invalid without the folders, using it will force \"Season Folders\" on for all shows.":[null,""],"This pattern is valid.":[null,""],"Resume updating the log on this page.":[null,""],"Pause updating the log on this page.":[null,""],"You have reached this page by accident, please check the url.":[null,""],"A mako error has occured.<br>\n If this happened during an update a simple page refresh may be the solution.<br>\n Mako errors that happen during updates may be a one time error if there were significant ui changes.":[null,""],"Show/Hide Error":[null,""],"Add New Show":[null,"Dodaj Novo Serijo"],"For shows that you haven't downloaded yet, this option finds a show on theTVDB.com, creates a directory for it's episodes, and adds it to SickRage.":[null,""],"Add From Trakt Lists":[null,""],"For shows that you haven't downloaded yet, this option lets you choose from a show from one of the Trakt lists to add to SickRage.":[null,""],"Add From IMDB's Popular Shows":[null,""],"View IMDB's list of the most popular shows. This feature uses IMDB's MOVIEMeter algorithm to identify popular TV Series.":[null,""],"Add Existing Shows":[null,""],"Use this option to add shows that already have a folder created on your hard drive. SickRage will scan your existing metadata/episodes and add the show accordingly.":[null,""],"Add Existing Show":[null,""],"Manage Directories":[null,""],"Customize Options":[null,""],"SickRage can add existing shows, using the current options, by using locally stored NFO/XML metadata to eliminate user interaction. If you would rather have SickRage prompt you to customize each show, then use the checkbox below.":[null,""],"Prompt me to set settings for each show":[null,""],"Displaying folders within these directories which aren't already added to SickRage":[null,""],"Submit":[null,""],"Find a show on theTVDB":[null,""],"Show retrieved from existing metadata":[null,""],"All Indexers":[null,""],"Search":[null,"Iskanje"],"This will only affect the language of the retrieved metadata file contents and episode filenames.":[null,""],"This <b>DOES NOT</b> allow SickRage to download non-english TV episodes!":[null,""],"Pick the parent folder":[null,""],"Pre-chosen Destination Folder":[null,""],"Customize options":[null,""],"Add Show":[null,"Dodaj Serijo"],"Skip Show":[null,""],"Sort By":[null,""],"Name":[null,""],"Original":[null,""],"Votes":[null,""],"Rating":[null,""],"Rating > Votes":[null,""],"Sort Order":[null,""],"Asc":[null,""],"Desc":[null,""],"Fetching of IMDB Data failed. Are you online?":[null,""],"Exception":[null,""],"Select Trakt List":[null,""],"Most Anticipated":[null,""],"Trending":[null,""],"Popular":[null,""],"Most Watched":[null,""],"Most Played":[null,""],"Most Collected":[null,""],"Recommended":[null,""],"Toggle navigation":[null,""],"Profile":[null,""],"JSONP":[null,""],"Back to SickRage":[null,""],"Parameters":[null,""],"Required":[null,""],"Description":[null,""],"Type":[null,""],"Default value":[null,""],"Allowed values":[null,""],"Playground":[null,""],"Clear":[null,""],"Yes":[null,"Ja"],"No":[null,"Ne"],"season":[null,"sezona"],"episode":[null,""],"Python Version":[null,""],"SSL Version":[null,""],"OS":[null,""],"Locale":[null,""],"User":[null,"Uporabnik"],"Program Folder":[null,""],"Config File":[null,""],"Database File":[null,""],"Cache Folder":[null,""],"Log Folder":[null,""],"Arguments":[null,""],"Web Root":[null,""],"Website":[null,""],"Wiki":[null,""],"Source":[null,""],"IRC Chat":[null,"IRC klepet"],"AnimeDB Settings":[null,""],"Look & Feel":[null,""],"AniDB is non-profit database of anime information that is freely open to the public":[null,""],"Enable":[null,""],"should SickRage use data from AniDB?":[null,""],"AniDB Username":[null,""],"username of your AniDB account":[null,""],"AniDB Password":[null,""],"password of your AniDB account":[null,""],"AniDB MyList":[null,""],"do you want to add the PostProcessed episodes to the MyList?":[null,""],"Look and Feel":[null,""],"How should the anime functions show and behave.":[null,""],"Split show lists":[null,""],"separate anime and normal shows in groups":[null,""],"Split in tabs":[null,""],"use tabs for when splitting show lists":[null,""],"Restore":[null,""],"Backup your main database file and config.":[null,""],"Select the folder you wish to save your backup file to":[null,""],"Restore your main database file and config.":[null,""],"Select the backup file you wish to restore":[null,""],"Misc":[null,""],"Interface":[null,""],"Advanced Settings":[null,""],"Startup options. Indexer options. Log and show file locations.":[null,""],"Some options may require a manual restart to take effect.":[null,""],"Default Indexer Language":[null,""],"for adding shows and metadata providers":[null,""],"Launch browser":[null,""],"open the SickRage home page on startup":[null,""],"Initial page":[null,""],"Shows":[null,""],"when launching SickRage interface":[null,""],"Choose hour to update shows":[null,""],"with information such as next air dates, show ended, etc. Use 15 for 3pm, 4 for 4am etc.":[null,""],"note":[null,""],"minutes are randomized each time SickRage is started":[null,""],"Send to trash for actions":[null,""],"when using show \"Remove\" and delete files":[null,""],"on scheduled deletes of the oldest log files":[null,""],"selected actions use trash (recycle bin) instead of the default permanent delete":[null,""],"Log file folder location":[null,""],"Number of Log files saved":[null,""],"number of log files saved when rotating logs (default: 5) (REQUIRES RESTART)":[null,""],"Size of Log files saved":[null,""],"maximum size in MB of the log file (default: 1MB) (REQUIRES RESTART)":[null,""],"Use initial indexer set to":[null,""],"as the default selection when adding new shows":[null,""],"Timeout show indexer at":[null,""],"seconds of inactivity when finding new shows (default:20)":[null,""],"Show root directories":[null,""],"where the files of shows are located":[null,""],"Save Changes":[null,""],"Options for software updates.":[null,""],"Check software updates":[null,""],"and display notifications when updates are available. Checks are run on startup and at the frequency set below*":[null,""],"Automatically update":[null,""],"fetch and install software updates. Updates are run on startup and in the background at the frequency set below*":[null,""],"Check the server every*":[null,""],"hours for software updates (default:1)":[null,""],"Notify on software update":[null,""],"send a message to all enabled notifiers when SickRage has been updated":[null,""],"User Interface":[null,""],"Options for visual appearance.":[null,""],"Interface Language":[null,""],"System Language":[null,""],"for appearance to take effect, save then refresh your browser":[null,""],"Display theme":[null,""],"Dark":[null,""],"Light":[null,""],"Use a background image":[null,""],"use a custom image as background for SickRage":[null,""],"Background Path":[null,""],"Path to the background image":[null,""],"Show fanart in the background":[null,""],"on the show summary page":[null,""],"Fanart transparency":[null,""],"transparency of the fanart in the background":[null,""],"Use a custom stylesheet file":[null,""],"use a custom .css file to style SickRage (for advanced users)":[null,""],"Stylesheet File Path":[null,""],"Path to the stylesheet (.css) file":[null,""],"Show all seasons":[null,"Pokaži vse sezone"],"Sort with \"The\", \"A\", \"An\"":[null,""],"include articles (\"The\", \"A\", \"An\") when sorting show lists":[null,""],"Missed episodes range":[null,""],"set the range in days of the missed episodes in the Schedule page":[null,""],"Display fuzzy dates":[null,""],"move absolute dates into tooltips and display e.g. \"Last Thu\", \"On Tue\"":[null,""],"Trim zero padding":[null,""],"remove the leading number \"0\" shown on hour of day, and date of month":[null,""],"Date style":[null,""],"Use System Default":[null,""],"Time style":[null,""],"seconds are only shown on the History page":[null,""],"Timezone":[null,"Časovni pas"],"Local":[null,""],"Network":[null,"Omrežje"],"display dates and times in either your timezone or the shows network timezone":[null,""],"use local timezone to start searching for episodes minutes after show ends (depends on your dailysearch frequency)":[null,""],"Download url":[null,""],"URL where the shows can be downloaded.":[null,""],"Web Interface":[null,""],"it is recommended that you enable a username and password to secure SickRage from being tampered with remotely.":[null,""],"these options require a manual restart to take effect.":[null,""],"API key":[null,""],"used to give 3rd party programs limited access to SickRage":[null,""],"you can try all the features of the API":[null,""],"here":[null,"tukaj"],"HTTP logs":[null,""],"enable logs from the internal Tornado web server":[null,""],"HTTP username":[null,""],"set blank for no login":[null,""],"HTTP password":[null,""],"blank = no authentication":[null,""],"HTTP port":[null,""],"web port to browse and access SickRage (default:8081)":[null,""],"Notify on login":[null,""],"enable to be notified when a new login happens in webserver":[null,""],"Listen on IPv6":[null,""],"attempt binding to any available IPv6 address":[null,""],"Enable HTTPS":[null,""],"enable access to the web interface using a HTTPS address":[null,""],"HTTPS certificate":[null,""],"file name or path to HTTPS certificate":[null,""],"HTTPS key":[null,""],"file name or path to HTTPS key":[null,""],"Reverse proxy headers":[null,""],"accept the following reverse proxy headers (advanced)...":[null,""],"(X-Forwarded-For, X-Forwarded-Host, and X-Forwarded-Proto)":[null,""],"CPU throttling":[null,""],"Normal (default). High is lower and Low is higher CPU use":[null,""],"Anonymous redirect":[null,""],"backlink protection via anonymizer service, must end in \"?\"":[null,""],"Enable debug":[null,""],"enable debug logs":[null,""],"Verify SSL Certs":[null,""],"verify SSL Certificates (Disable this for broken SSL installs (Like QNAP))":[null,""],"No Restart":[null,""],"only shutdown when restarting SR":[null,""],"only select this when you have external software restarting SR automatically when it stops (like FireDaemon)":[null,""],"Encrypt passwords":[null,""],"in the <code>config.ini</code> file":[null,""],"warning":[null,""],"passwords must only contain":[null,""],"ASCII characters":[null,""],"Unprotected calendar":[null,""],"allow subscribing to the calendar without user and password":[null,""],"some services like Google Calendar only work this way":[null,""],"Google Calendar Icons":[null,""],"show an icon next to exported calendar events in Google Calendar":[null,""],"Proxy host":[null,""],"blank to disable or proxy to use when connecting to providers":[null,""],"also use global proxy setting for indexers (tvdb, xem, anidb, etc.)":[null,""],"Skip Remove Detection":[null,""],"skip detection of removed files":[null,""],"if disabled the episode will be set to the default deleted status":[null,""],"Default deleted episode status":[null,""],"define the status to be set for media file that has been deleted.":[null,""],"Archived option will keep previous downloaded quality":[null,""],"example: Downloaded (1080p WEB-DL) ==> Archived (1080p WEB-DL)":[null,""],"Options for github related features.":[null,""],"Branch version":[null,""],"error: No branches found.":[null,""],"select branch to use (restart required)":[null,""],"Authorization Type":[null,""],"Username and password":[null,""],"Personal access token":[null,""],"You must use a personal access token if you're using \"two-factor authentication\" on GitHub.":[null,""],"GitHub username":[null,"GitHub uporabniško ime"],"*** (REQUIRED FOR SUBMITTING ISSUES) ***":[null,""],"GitHub password":[null,"GitHub geslo"],"GitHub personal access token":[null,""],"Generate Token":[null,""],"Manage Tokens":[null,""],"GitHub remote for branch":[null,""],"access repo configured remotes (save then refresh browser)":[null,""],"default":[null,""],"origin":[null,""],"Git executable path":[null,""],"only needed if OS is unable to locate git from env":[null,""],"Git reset":[null,""],"removes untracked files and performs a hard reset on git branch automatically to help resolve update issues":[null,""],"Home Theater / NAS":[null,""],"Devices":[null,""],"Social":[null,""],"A free and open source cross-platform media center and home entertainment system software with a 10-foot user interface designed for the living-room TV.":[null,""],"send KODI commands?":[null,""],"Always on":[null,""],"log errors when unreachable?":[null,""],"Notify on snatch":[null,""],"send a notification when a download starts?":[null,""],"Notify on download":[null,""],"send a notification when a download finishes?":[null,""],"Notify on subtitle download":[null,""],"send a notification when subtitles are downloaded?":[null,""],"Update library":[null,""],"update KODI library when a download finishes?":[null,""],"Full library update":[null,""],"perform a full library update if update per-show fails?":[null,""],"Only update first host":[null,""],"only send library updates to the first active host?":[null,""],"KODI IP:Port":[null,""],"host running KODI (eg. 192.168.1.100:8080)":[null,""],"(multiple host strings must be separated by commas)":[null,""],"Username":[null,"Uporabniško ime"],"username for your KODI server (blank for none)":[null,""],"Password":[null,"Geslo"],"password for your KODI server (blank for none)":[null,""],"Click below to test.":[null,""],"Experience your media on a visually stunning, easy to use interface on your Mac connected to your TV. Your media library has never looked this good!":[null,""],"For sending notifications to Plex Home Theater (PHT) clients, use the KODI notifier with port <b>3005</b>.":[null,""],"send Plex Media Server library updates?":[null,""],"Plex Media Server Auth Token":[null,""],"auth token used by Plex":[null,""],"Update Library":[null,""],"update Plex Media Server library when a download finishes":[null,""],"Plex Media Server IP:Port":[null,""],"one or more hosts running Plex Media Server<br/>(eg. 192.168.1.1:32400, 192.168.1.2:32400)":[null,""],"HTTPS":[null,""],"use https for plex media server requests?":[null,""],"Click below to test Plex Media Server(s)":[null,""],"Test Plex Media Server":[null,""],"Plex Home Theater":[null,""],"send Plex Home Theater notifications?":[null,""],"Plex Home Theater IP:Port":[null,""],"one or more hosts running Plex Home Theater<br>(eg. 192.168.1.100:3000, 192.168.1.101:3000)":[null,""],"Click below to test Plex Home Theater(s)":[null,""],"Test Plex Home Theater":[null,""],"some Plex Home Theaters <b class=\"boldest\">do not</b> support notifications e.g. Plexapp for Samsung TVs":[null,""],"Emby":[null,""],"A home media server built using other popular open source technologies.":[null,""],"send update commands to Emby?":[null,""],"Emby IP:Port":[null,""],"host running Emby (eg. 192.168.1.100:8096)":[null,""],"Emby API Key":[null,""],"Networked Media Jukebox":[null,""],"The Networked Media Jukebox, or NMJ, is the official media jukebox interface made available for the Popcorn Hour 200-series.":[null,""],"send update commands to NMJ?":[null,""],"Popcorn IP address":[null,""],"IP address of Popcorn 200-series (eg. 192.168.1.100)":[null,""],"Get settings":[null,""],"Get Settings":[null,""],"the Popcorn Hour device must be powered on and NMJ running.":[null,""],"NMJ database":[null,""],"automatically filled via the 'Get Settings' button.":[null,""],"NMJ mount url":[null,""],"Networked Media Jukebox v2":[null,""],"The Networked Media Jukebox, or NMJv2, is the official media jukebox interface made available for the Popcorn Hour 300 & 400-series.":[null,""],"send update commands to NMJv2?":[null,""],"IP address of Popcorn 300/400-series (eg. 192.168.1.100)":[null,""],"Database location":[null,""],"Database instance":[null,""],"adjust this value if the wrong database is selected.":[null,""],"Find database":[null,""],"Find Database":[null,""],"the Popcorn Hour device must be powered on.":[null,""],"NMJv2 database":[null,""],"automatically filled via the 'Find Database' buttons.":[null,""],"Synology":[null,"Synology"],"The Synology DiskStation NAS.":[null,""],"Synology Indexer is the daemon running on the Synology NAS to build its media database.":[null,""],"send Synology notifications?":[null,""],"requires SickRage to be running on your Synology NAS.":[null,""],"Synology Indexer":[null,""],"Synology Notifier is the notification system of Synology DSM":[null,""],"send notifications to the Synology Notifier?":[null,""],"pyTivo":[null,""],"pyTivo is both an HMO and GoBack server. This notifier will load the completed downloads to your Tivo.":[null,""],"send notifications to pyTivo?":[null,""],"requires the downloaded files to be accessible by pyTivo.":[null,""],"pyTivo IP:Port":[null,""],"host running pyTivo (eg. 192.168.1.1:9032)":[null,""],"pyTivo share name":[null,""],"value used in pyTivo Web Configuration to name the share.":[null,""],"Tivo name":[null,""],"(Messages & Settings > Account & System Information > System Information > DVR name)":[null,""],"Growl":[null,""],"A cross-platform unobtrusive global notification system.":[null,""],"send Growl notifications?":[null,""],"Growl IP:Port":[null,""],"host running Growl (eg. 192.168.1.100:23053)":[null,""],"may leave blank if SickRage is on the same host.":[null,""],"otherwise Growl <b>requires</b> a password to be used.":[null,""],"Click below to register and test Growl, this is required for Growl notifications to work.":[null,""],"Register Growl":[null,""],"Prowl":[null,""],"A Growl client for iOS.":[null,""],"send Prowl notifications?":[null,""],"Prowl Message Title":[null,""],"Global Prowl API key(s)":[null,""],"Prowl API(s) listed here, separated by commas if applicable, will<br> receive notifications for <b>all</b> shows. Your Prowl API key is available at:":[null,""],"(this field may be blank except when testing.)":[null,""],"Show notification list":[null,""],"-- Select a Show --":[null,""],"Configure per-show notifications here by entering Prowl API key(s), separated by commas, '\n 'after selecting a show in the drop-down box. Be sure to activate the 'Save for this show' '\n 'button below after each entry.":[null,""],"Save for this show":[null,""],"Prowl priority":[null,""],"Very Low":[null,""],"Moderate":[null,""],"Normal":[null,""],"High":[null,""],"Emergency":[null,""],"priority of Prowl messages from SickRage.":[null,""],"Libnotify":[null,""],"The standard desktop notification API for Linux/*nix systems. This notifier will only function if the pynotify module is installed (Ubuntu/Debian package <a href=\"apt:python-notify\">python-notify</a>).":[null,""],"send Libnotify notifications?":[null,""],"Pushover":[null,""],"Pushover makes it easy to send real-time notifications to your Android and iOS devices.":[null,""],"send Pushover notifications?":[null,""],"Pushover key":[null,""],"user key of your Pushover account":[null,""],"Pushover API key":[null,""],"click here":[null,""]," to create a Pushover API key":[null,""],"Pushover devices":[null,""],"comma separated list of pushover devices you want to send notifications to":[null,""],"Pushover notification sound":[null,""],"Bike":[null,""],"Bugle":[null,""],"Cash Register":[null,""],"Classical":[null,""],"Cosmic":[null,""],"Falling":[null,""],"Gamelan":[null,""],"Incoming":[null,""],"Intermission":[null,""],"Magic":[null,""],"Mechanical":[null,""],"Piano Bar":[null,""],"Siren":[null,""],"Space Alarm":[null,""],"Tug Boat":[null,""],"Alien Alarm (long)":[null,""],"Climb (long)":[null,""],"Persistent (long)":[null,""],"Pushover Echo (long)":[null,""],"Up Down (long)":[null,""],"None (silent)":[null,""],"Device specific":[null,""],"choose notification sound to use":[null,""],"Pushover priority":[null,""],"Choose priority to use":[null,""],"Boxcar 2":[null,""],"Read your messages where and when you want them!":[null,""],"send Boxcar notifications?":[null,""],"Boxcar2 access token":[null,""],"access token for your Boxcar account.":[null,""],"NMA":[null,""],"Notify My Android":[null,""],"Notify My Android is a Prowl-like Android App and API that offers an easy way to send notifications from your application directly to your Android device.":[null,""],"send NMA notifications?":[null,""],"NMA API key":[null,""],"(multiple keys must be separated by commas, up to a maximum of 5)":[null,""],"NMA priority":[null,""],"priority of NMA messages from SickRage.":[null,""],"Pushalot":[null,""],"Pushalot is a platform for receiving custom push notifications to connected devices running Windows Phone or Windows 8.":[null,""],"send Pushalot notifications ?":[null,""],"Pushalot authorization token":[null,""],"authorization token of your Pushalot account.":[null,""],"Pushbullet":[null,""],"Pushbullet is a platform for receiving custom push notifications to connected devices running Android/iOS and desktop browsers such as Chrome, Firefox or Opera.":[null,""],"send Pushbullet notifications?":[null,""],"Pushbullet API key":[null,""],"API key of your Pushbullet account":[null,""],"Pushbullet devices":[null,""],"Update device list":[null,""],"Pushbullet channels":[null,""],"Free Mobile":[null,""],"Free Mobile is a famous French cellular network provider.<br> It provides to their customer a free SMS API.":[null,""],"send SMS notifications?":[null,""],"send a SMS when a download starts?":[null,""],"send a SMS when a download finishes?":[null,""],"send a SMS when subtitles are downloaded?":[null,""],"Free Mobile customer ID":[null,""],"it's your Free Mobile customer ID (8 digits)":[null,""],"Free Mobile API key":[null,""],"find your API key in your customer portal.":[null,""],"Click below to test your settings.":[null,""],"Telegram":[null,""],"Telegram is a cloud-based instant messaging service.":[null,""],"send Telegram notifications?":[null,""],"send a message when a download starts?":[null,""],"send a message when a download finishes?":[null,""],"send a message when subtitles are downloaded?":[null,""],"User/group ID":[null,""],"contact @myidbot on Telegram to get an ID":[null,""],"Bot API token":[null,""],"contact @BotFather on Telegram to set up one":[null,""],"Join":[null,""],"Join all of your devices together!":[null,""],"send Join notifications?":[null,""],"Device ID":[null,""],"per device specific id":[null,""]," to create a Join API key":[null,""],"Twilio":[null,""],"Twilio is a webservice API that allows you to communicate directly with a mobile number. This notifier will send a text directly to your mobile device.":[null,""],"should SickRage text your mobile device?":[null,""],"Twilio Account SID":[null,""],"account SID of your Twilio account.":[null,""],"Twilio Auth Token":[null,""],"Twilio Phone SID":[null,""],"phone SID that you would like to send the sms from":[null,""],"Your phone number":[null,""],"phone number that will receive the sms. Please use the format +1-###-###-####":[null,""],"Twitter":[null,""],"A social networking and microblogging service, enabling its users to send and read other users' messages called tweets.":[null,""],"should SickRage post tweets on Twitter?":[null,""],"you may want to use a secondary account.":[null,""],"send direct message":[null,""],"send a notification via Direct Message, not via status update":[null,""],"send DM to":[null,""],"Twitter account to send Direct Messages to (must follow you)":[null,""],"Step One":[null,""],"Request Authorization":[null,""],"Click the \"Request Authorization\" button.<br> This will open a new page containing an auth key.<br> <b>note:</b> if nothing happens check your popup blocker.":[null,""],"Step Two":[null,""],"Enter the key Twitter gave you below, and click \"Verify Key\".":[null,""],"Trakt":[null,"Trakt"],"Trakt helps keep a record of what TV shows and movies you are watching. Based on your favorites, Trakt recommends additional shows and movies you'll enjoy!":[null,""],"send Trakt.tv notifications?":[null,""],"username of your Trakt account.":[null,""],"Trakt PIN":[null,""],"Get Trakt PIN":[null,""],"PIN code to authorize SickRage to access Trakt on your behalf.":[null,""],"API Timeout":[null,""],"seconds to wait for Trakt API to respond. (Use 0 to wait forever)":[null,""],"Default indexer":[null,""],"Sync libraries":[null,""],"sync your SickRage show library with your trakt show library.":[null,""],"Remove Episodes From Collection":[null,""],"remove an episode from your Trakt Collection if it is not in your SickRage Library.":[null,""],"Sync watchlist":[null,""],"sync your SickRage show watchlist with your trakt show watchlist (either Show and Episode).":[null,""],"episode will be added on watch list when wanted or snatched and will be removed when downloaded ":[null,""],"Watchlist add method":[null,""],"Skip All":[null,"Preskoči vse"],"Download Pilot Only":[null,""],"Get whole show":[null,""],"method in which to download episodes for new shows.":[null,""],"Remove episode":[null,""],"remove an episode from your watchlist after it is downloaded.":[null,""],"Remove series":[null,""],"remove the whole series from your watchlist after any download.":[null,""],"Remove watched show":[null,""],"remove the show from sickrage if it's ended and completely watched":[null,""],"Start paused":[null,""],"shows grabbed from your trakt watchlist start paused.":[null,""],"Trakt blackList name":[null,""],"name (slug) of list on Trakt for blacklisting show on 'Add Trending Show' & 'Add Recommended Shows' pages":[null,""],"Email":[null,""],"Allows configuration of email notifications on a per show basis.":[null,""],"send email notifications?":[null,""],"SMTP host":[null,""],"hostname of your SMTP email server.":[null,""],"SMTP port":[null,""],"port number used to connect to your SMTP host.":[null,""],"SMTP from":[null,""],"sender email address, some hosts require a real address.":[null,""],"Use TLS":[null,""],"check to use TLS encryption.":[null,""],"SMTP user":[null,""],"(optional) your SMTP server username.":[null,""],"SMTP password":[null,""],"(optional) your SMTP server password.":[null,""],"Global email list":[null,""],"email addresses listed here, separated by commas if applicable, will<br> receive notifications for <b>all</b> shows.":[null,""],"(This field may be blank except when testing.)":[null,""],"Email Subject":[null,""],"use a custom subject for some privacy protection?":[null,""],"(leave blank for the default SickRage subject)":[null,""],"configure per-show notifications here by entering email address(es), separated by commas,":[null,""],"after selecting a show in the drop-down box. Be sure to activate the 'Save for this show'":[null,""],"button below after each entry.":[null,""],"Slack":[null,""],"Slack brings all your communication together in one place. It's real-time messaging, archiving and search for modern teams.":[null,""],"should SickRage post messages on Slack?":[null,""],"Slack Incoming Webhook":[null,""],"Discord":[null,""],"All-in-one voice and text chat for gamers that's free, secure, and works on both your desktop and phone.":[null,""],"Should SickRage post messages on Discord?":[null,""],"Discord Incoming Webhook":[null,""],"Create webhook under channel settings.":[null,""],"Discord Bot Name":[null,""],"Blank will use webhook default Name.":[null,""],"Discord Avatar URL":[null,""],"Blank will use webhook default Avatar.":[null,""],"Discord TTS":[null,""],"Send notifications using text-to-speech":[null,""],"Post-Processing":[null,""],"Episode Naming":[null,""],"Metadata":[null,""],"Settings that dictate how SickRage should process completed downloads.":[null,""],"enable the automatic post processor to scan and process any files in your Post Processing Dir":[null,""],"do not use if you use an external Post Processing script":[null,""],"Post Processing Dir":[null,""],"the folder where your download client puts the completed TV downloads.":[null,""],"please use seperate downloading and completed folders in your download client if possible.":[null,""],"Processing Method":[null,""],"what method should be used to put files into the library?":[null,""],"if you keep seeding torrents after they finish, please avoid the 'move' processing method to prevent errors.":[null,""],"Auto Post-Processing Frequency":[null,""],"time in minutes to check for new files to auto post-process (min 10)":[null,""],"Postpone post processing":[null,""],"wait to process a folder if sync files are present.":[null,""],"Sync File Extensions":[null,""],"comma seperated list of extensions or filename globs SickRage ignores when Post Processing":[null,""],"Rename Episodes":[null,""],"rename episode using the Episode Naming settings?":[null,""],"Create missing show directories":[null,""],"create missing show directories when they get deleted":[null,""],"Add shows without directory":[null,""],"add shows without creating a directory (not recommended)":[null,""],"Move associated files":[null,""],"move associated (srt/srr/sfv/etc) files while post processing?":[null,""],"Rename .nfo file":[null,""],"rename the original .nfo file to .nfo-orig to avoid conflicts?":[null,""],"Associated file extensions":[null,""],"comma separated list of associated file extensions SickRage should keep while post processing.":[null,""],"leaving it empty means no associated files will be post processed":[null,""],"Delete non associated files":[null,""],"delete non associated files while post processing?":[null,""],"Change File Date":[null,""],"set last modified filedate to the date that the episode aired?":[null,""],"some systems may ignore this feature.":[null,""],"Timezone for File Date":[null,""],"local":[null,""],"network":[null,""],"what timezone should be used to change File Date?":[null,""],"Unpack":[null,"Odpakiraj"],"What to do with archived releases found in your <i>TV Download Dir</i>?":[null,""],"Ignore (do not process contents)":[null,""],"Unpack (process contents)":[null,""],"Treat as video (process archive as-is)":[null,""],"'Unpack' only works with RAR archives":[null,""],"Windows":[null,""],"WinRar is required on windows":[null,""],"Unpack Directory":[null,""],"Choose a path to unpack files, leave blank to unpack in download dir":[null,""],"Unrar Location":[null,""],"add the path to unrar if it is not in the system path":[null,""],"Alternate Unrar Tool":[null,""],"add the path to an alternate unrar tool if it is not in the system path":[null,""],"Delete RAR contents":[null,""],"delete content of RAR files, even if Process Method not set to move?":[null,""],"only working with RAR archive":[null,""],"Don't delete empty folders":[null,""],"leave empty folders when Post Processing?":[null,""],"can be overridden using manual Post Processing":[null,""],"Follow symbolic-links":[null,""],"follow down symbolic links in download directory?":[null,""],"<b>EXPERTS ONLY.</b><br>Enable only if you know what <b>circular symbolic links</b> are,<br>and can <b>verify that you have none</b>.":[null,""],"Use icacls":[null,""],"Windows only":[null,""],"sets video permissions after using the move method in post processing":[null,""],"Extra Scripts":[null,""],"see":[null,""],"for script arguments description and usage.":[null,""],"How SickRage will name and sort your episodes.":[null,""],"Name Pattern":[null,""],"Toggle Naming Legend":[null,""],"don't forget to add quality pattern. Otherwise after post-processing the episode will have UNKNOWN quality":[null,""],"Meaning":[null,""],"Pattern":[null,""],"Result":[null,""],"Use lower case if you want lower case names (eg. %sn, %e.n, %q_n etc)":[null,""],"Show Name":[null,""],"Show.Name":[null,""],"Show_Name":[null,""],"Season Number":[null,""],"XEM Season Number":[null,""],"Episode Number":[null,""],"XEM Episode Number":[null,""],"Episode Name":[null,""],"Episode.Name":[null,""],"Episode_Name":[null,""],"Air Date":[null,""],"Post-Processing Date":[null,""],"Quality":[null,""],"Scene Quality":[null,""],"Release Name":[null,""],"SickRage' is used in place of RLSGROUP if it could not be properly detected":[null,""],"Release Group":[null,""],"If episode is proper/repack add 'proper' to name.":[null,""],"Release Type":[null,""],"Multi-Episode Style":[null,""],"Single-EP Sample":[null,""],"Multi-EP sample":[null,""],"Strip Show Year":[null,""],"remove the TV show's year when renaming the file?":[null,""],"only applies to shows that have year inside parentheses":[null,""],"Custom Air-By-Date":[null,""],"name air-by-date shows differently than regular shows?":[null,""],"Toggle ABD Naming Legend":[null,""],"Regular Air Date":[null,""],"Year":[null,""],"Month":[null,""],"Day":[null,""],"Multi-EP style is ignored":[null,""],"Custom Sports":[null,""],"name sports shows differently than regular shows?":[null,""],"Toggle Sports Naming Legend":[null,""],"Sports Air Date":[null,""],"Custom Anime":[null,""],"name anime shows differently than regular shows?":[null,""],"Toggle Anime Naming Legend":[null,""],">XEM Season Number":[null,""],"Single-EP Anime Sample":[null,""],"Multi-EP Anime sample":[null,""],"Add Absolute Number":[null,""],"add the absolute number to the season/episode format?":[null,""],"only applies to anime. (eg. S15E45 - 310 vs S15E45)":[null,""],"Only Absolute Number":[null,""],"replace season/episode format with absolute number":[null,""],"only applies to anime.":[null,""],"No Absolute Number":[null,""],"don't include the absolute number":[null,""],"The data associated to the data. These are files associated to a TV show in the form of images and text that, when supported, will enhance the viewing experience.":[null,""],"Metadata Type":[null,""],"toggle metadata options that you wish to be created":[null,""],"multiple targets may be used":[null,""],"Select Metadata":[null,""],"Provider Priorities":[null,""],"Provider Options":[null,""],"Configure Custom Newznab Providers":[null,""],"Configure Custom Torrent Providers":[null,""],"Check off and drag the providers into the order you want them to be used.":[null,""],"At least one provider is required but two are recommended.":[null,""],"Torrent providers can be toggled in ":[null,""],"Provider does not support backlog searches at this time.":[null,""],"Provider is <b>NOT WORKING</b>.":[null,""],"Configure individual provider settings here.":[null,""],"Check with provider's website on how to obtain an API key if needed.":[null,""],"Configure provider":[null,""],"no providers available to configure.":[null,""],"URL":[null,""],"Enable daily searches":[null,""],"enable provider to perform daily searches.":[null,""],"Enable backlog searches":[null,""],"enable provider to perform backlog searches.":[null,""],"Season search mode":[null,""],"when searching for complete seasons you can choose to have it look for season packs only, or choose to have it build a complete season from just single episodes.":[null,""],"season packs only.":[null,""],"episodes only.":[null,""],"Enable fallback":[null,""],"when searching for a complete season depending on search mode you may return no results, this helps by restarting the search using the opposite search mode.":[null,""],"Custom URL":[null,""],"the URL should include the protocol (and port if applicable). Examples: http://192.168.1.4/ or http://localhost:3000/":[null,""],"Api key":[null,""],"Digest":[null,""],"Hash":[null,""],"Passkey":[null,""],"Cookies":[null,""],"example: uid=1234;pass=567845439634987<br>note: uid and pass are not your username/password.<br>use DevTools or Firebug to get these values after logging in on your browser.":[null,""],"Pin":[null,""],"Seed ratio":[null,""],"stop transfer when ratio is reached<br>(-1 SickRage default to seed forever, or leave blank for downloader default)":[null,""],"Minimum seeders":[null,""],"Minimum leechers":[null,""],"Confirmed download":[null,""],"only download torrents from trusted or verified uploaders ?":[null,""],"Ranked torrents":[null,""],"only download ranked torrents (trusted releases)":[null,""],"English torrents":[null,""],"only download english torrents, or torrents containing english subtitles":[null,""],"For Spanish torrents":[null,""],"ONLY search on this provider if show info is defined as \"Spanish\" (avoid provider's use for VOS shows)":[null,""],"Sorting results by":[null,""],"Freeleech":[null,""],"only download <b>\"FreeLeech\"</b> torrents.":[null,""],"Category":[null,""],"select torrent with Italian subtitle":[null,""],"Configure Custom<br>Newznab Providers":[null,""],"Add and setup or remove custom Newznab providers.":[null,""],"Select provider":[null,""],"-- add new provider --":[null,""],"Provider name":[null,""],"Site URL":[null,""],"Newznab search categories":[null,""],"select your Newznab categories on the left, and click the \"update categories\" button to use them for searching.) <b>don't forget to to save the form!":[null,""],"Update Categories":[null,""],"Add":[null,""],"Delete":[null,""],"Add and setup or remove custom RSS providers.":[null,""],"RSS URL":[null,""],"Search element":[null,""],"eg: title":[null,""],"Episode Search":[null,""],"NZB Search":[null,""],"Torrent Search":[null,""],"How to manage searching with":[null,""],"Randomize Providers":[null,""],"randomize the provider search order instead of going in order of placement":[null,""],"Download propers":[null,""],"replace original download with \"Proper\" or \"Repack\" if nuked":[null,""],"Check propers every":[null,""],"24 hours":[null,"24 ur"],"4 hours":[null,"4 ure"],"90 mins":[null,"90 minut"],"45 mins":[null,"45 minut"],"15 mins":[null,"15 minut"],"Backlog search day(s)":[null,""],"number of day(s) that the \"Forced Backlog Search\" will cover (e.g. 7 Days)":[null,""],"Backlog search frequency":[null,""],"time in minutes between searches (min.":[null,""],"Daily search frequency":[null,""],"Usenet retention":[null,""],"age limit in days for usenet articles to be used (e.g. 500)":[null,""],"Ignore words":[null,""],"results with one or more word from this list will be ignored<br>separate words with a comma, e.g. \"word1,word2,word3\"":[null,""],"Require words":[null,""],"results with no word from this list will be ignored<br>separate words with a comma, e.g. \"word1,word2,word3\"":[null,""],"Trackers list":[null,""],"trackers that will be added to magnets without trackers<br>separate trackers with a comma, e.g. \"tracker1,tracker2,tracker3\"":[null,""],"Ignore language names in subbed results":[null,""],"ignore subbed releases based on language names <br>\n Example: \"dk\" will ignore words: dksub, dksubs, dksubbed, dksubed <br>\n separate languages with a comma, e.g. \"lang1,lang2,lang3":[null,""],"Allow high priority":[null,""],"set downloads of recently aired episodes to high priority":[null,""],"Use Failed Downloads":[null,""],"use Failed Download Handling?":[null,""],"will only work with snatched/downloaded episodes after enabling this":[null,""],"Delete Failed":[null,""],"delete files left over from a failed download?":[null,""],"this only works if Use Failed Downloads is enabled.":[null,""],"How to handle NZB search results.":[null,""],"Search NZBs":[null,""],"enable NZB search providers":[null,""],"Send .nzb files to":[null,""],"SABnzbd server URL":[null,""],"URL to your SABnzbd server (e.g. http://localhost:8080/)":[null,""],"SABnzbd username":[null,""],"(blank for none)":[null,""],"SABnzbd password":[null,""],"SABnzbd API key":[null,""],"locate at... SABnzbd Config -> General -> API Key":[null,""],"Use SABnzbd category":[null,""],"add downloads to this category (e.g. TV)":[null,""],"Use SABnzbd category (backlog episodes)":[null,""],"add downloads of old episodes to this category (e.g. TV)":[null,""],"Use SABnzbd category for anime":[null,""],"add anime downloads to this category (e.g. anime)":[null,""],"Use SABnzbd category for anime (backlog episodes)":[null,""],"add anime downloads of old episodes to this category (e.g. anime)":[null,""],"Use forced priority":[null,""],"enable to change priority from HIGH to FORCED":[null,""],"Black hole folder location":[null,""],"<b>.nzb</b> files are stored at this location for external software to find and use":[null,""],"Connect using HTTPS":[null,""],"enable Secure control in NZBGet and set the correct Secure Port here":[null,""],"NZBget host:port":[null,""],"(e.g. localhost:6789)":[null,""],"NZBget RPC host name and port number (not NZBgetweb!)":[null,""],"NZBget username":[null,""],"locate in nzbget.conf (default:nzbget)":[null,""],"NZBget password":[null,""],"locate in nzbget.conf (default:tegbzn6789)":[null,""],"Use NZBget category":[null,""],"send downloads marked this category (e.g. TV)":[null,""],"Use NZBget category (backlog episodes)":[null,""],"send downloads of old episodes marked this category (e.g. TV)":[null,""],"Use NZBget category for anime":[null,""],"send anime downloads marked this category (e.g. anime)":[null,""],"Use NZBget category for anime (backlog episodes)":[null,""],"send anime downloads of old episodes marked this category (e.g. anime)":[null,""],"NZBget priority":[null,""],"Very low":[null,""],"Low":[null,""],"Very high":[null,""],"Force":[null,""],"priority for daily snatches (no backlog)":[null,""],"Torrent host:port":[null,""],"URL to your Synology DSM (e.g. http://localhost:5000/)":[null,""],"Client username":[null,""],"Client password":[null,""],"Downloaded files location":[null,""],"where Synology Download Station will save downloaded files (blank for client default)":[null,""],"the destination has to be a shared folder for Synology DS":[null,""],"Click below to test":[null,""],"How to handle Torrent search results.":[null,""],"Search torrents":[null,""],"enable torrent search providers":[null,""],"Send .torrent files to":[null,""],"<b>.torrent</b> files are stored at this location for external software to find and use":[null,""],"URL to your torrent client (e.g. http://localhost:8000/)":[null,""],"Torrent RPC URL":[null,""],"the path without leading and trailing slashes (e.g. transmission)":[null,""],"Http Authentication":[null,""],"Verify certificate":[null,""],"disable if you get \"Deluge: Authentication Error\" in your log":[null,""],"verify SSL certificates for HTTPS requests":[null,""],"Add label to torrent":[null,""],"(blank spaces are not allowed)":[null,""],"label plugin must be enabled in Deluge clients":[null,""],"for QBitTorrent 3.3.1 and up":[null,""],"Add label to torrent for anime":[null,""],"for QBitTorrent 3.3.1 and up ":[null,""],"where <span id=\"torrent_client\">the torrent client</span> will save downloaded files (blank for client default)":[null,""],"the destination has to be a shared folder for Synology DS</span>":[null,""],"Minimum seeding time":[null,""],"time in hours":[null,""],"(default:'0' passes blank to client and '-1' passes nothing)":[null,""],"Start torrent paused":[null,""],"add .torrent to client but do <b style=\"font-weight:900\">not</b> start downloading":[null,""],"Allow high bandwidth":[null,""],"use high bandwidth allocation if priority is high":[null,""],"Test Connection":[null,""],"Windows Shares":[null,""],"Defines your existing windows shares so that we can add them to the browse dialog":[null,""],"Share #{number}":[null,""],"Share label":[null,""],"Hostname or IP":[null,""],"Share path":[null,""],"Subtitles Search":[null,""],"Subtitles Plugin":[null,""],"Plugin Settings":[null,""],"Settings that dictate how SickRage handles subtitles search results.":[null,""],"Search Subtitles":[null,""],"Subtitle Languages":[null,""],"Subtitle Directory":[null,""],"the directory where SickRage should store your <i>Subtitles</i> files.":[null,""],"leave empty if you want store subtitle in episode path.":[null,""],"Subtitle Find Frequency":[null,""],"time in hours between scans (default: 1)":[null,""],"Include Specials":[null,""],"include the show's specials when searching for subtitles?":[null,""],"Perfect matches":[null,""],"only download subtitles that match: release group, video codec, audio codec and resolution":[null,""],"if disabled you may get out of sync subtitles":[null,""],"Subtitles History":[null,""],"log downloaded Subtitle on History page?":[null,""],"Subtitles Multi-Language":[null,""],"append language codes to subtitle filenames?":[null,""],"this option is required if you use multiple subtitle languages":[null,""],"Delete unwanted subtitles":[null,""],"enable to delete unwanted subtitle languages bundled with release":[null,""],"Embedded Subtitles":[null,""],"ignore subtitles embedded inside video file?":[null,""],"this will ignore <u>all</u> embedded subtitles for every video file!":[null,""],"Hearing Impaired Subtitles":[null,""],"download hearing impaired style subtitles?":[null,""],"See":[null,""],"for a script arguments description.":[null,""],"Additional scripts separated by <b>|</b>.":[null,""],"Scripts are called after each episode has searched and downloaded subtitles.":[null,""],"For any scripted languages, include the interpreter executable before the script. See the following example":[null,""],"For Windows:":[null,""],"For Linux / OS X:":[null,""],"Subtitle Providers":[null,""],"Check off and drag the plugins into the order you want them to be used.":[null,""],"At least one plugin is required.":[null,""]," Web-scraping plugin":[null,""],"Provider Settings":[null,""],"Set user and password for each provider":[null,""],"User Name":[null,""],"Change Show":[null,""],"Prev Show":[null,""],"Next Show":[null,""],"Jump to Season":[null,""],"Specials":[null,""],"Poster for":[null,""],"Stars":[null,""],"minutes":[null,"minute"],"View other popular {genre} shows on trakt.tv.":[null,""],"View other popular {imdbgenre} shows on IMDB.":[null,""],"Allowed":[null,""],"Preferred":[null,""],"Originally Airs":[null,""],"Show Status":[null,""],"Default EP Status":[null,""],"Location":[null,""],"Missing":[null,""],"Scene Name":[null,""],"Required Words":[null,""],"Ignored Words":[null,""],"Size":[null,"Velikost"],"Info Language":[null,""],"Subtitles SR Metadata":[null,""],"Season Folders":[null,""],"Paused":[null,""],"Air-by-Date":[null,""],"Sports":[null,""],"DVD Order":[null,""],"Scene Numbering":[null,""],"Select Filtered Episodes":[null,""],"Clear All":[null,""],"Change selected episodes to":[null,""],"Select Columns":[null,""],"Hide Episodes":[null,""],"Show Episodes":[null,""],"NFO":[null,""],"TBN":[null,""],"Episode":[null,""],"Absolute":[null,"Absolutno"],"Scene":[null,""],"Scene Absolute":[null,""],"File Name":[null,"Ime datoteke"],"Airdate":[null,""],"Download":[null,""],"Change the value here if scene numbering differs from the indexer episode numbering":[null,""],"Change the value here if scene absolute numbering differs from the indexer absolute numbering":[null,""],"Manual Search":[null,""],"Do you want to mark this episode as failed?":[null,""],"The episode release name will be added to the failed history, preventing it to be downloaded again.":[null,""],"Do you want to include the current episode quality in the search?":[null,""],"Choosing No will ignore any releases with the same episode quality as the one currently downloaded/snatched.":[null,""],"Download subtitle":[null,""],"Do you want to re-download the subtitle for this language?":[null,""],"It will overwrite your current subtitle":[null,""],"Format":[null,""],"Advanced":[null,""],"Main Settings":[null,""],"Show Location":[null,""],"Preferred Quality":[null,""],"Default Episode Status":[null,""],"this will set the status for future episodes.":[null,""],"this only applies to episode filenames and the contents of metadata files.":[null,""],"search for subtitles":[null,""],"Use SR Metdata":[null,""],"use SickRage metadata when searching for subtitle, this will override the autodiscovered metadata":[null,""],"pause this show (SickRage will not download episodes)":[null,""],"Format Settings":[null,""],"Air by date":[null,""],"check if the show is released as Show.03.02.2010 rather than Show.S02E03.":[null,""],"in case of an air date conflict between regular and special episodes, the later will be ignored.":[null,""],"check if the show is Anime and episodes are released as Show.265 rather than Show.S02E03":[null,""],"check if the show is a sporting or MMA event released as Show.03.02.2010 rather than Show.S02E03":[null,""],"Season folders":[null,""],"group episodes by season folder (uncheck to store in a single folder)":[null,""],"search by scene numbering (uncheck to search by indexer numbering)":[null,""],"use the DVD order instead of the air order":[null,""],"a \"Force Full Update\" is necessary, and if you have existing episodes you need to sort them manually.":[null,""],"comma-separated <i>e.g. \"word1,word2,word3</i>\"":[null,""],"search results with one or more words from this list will be ignored.":[null,""],"e.g. \"word1,word2,word3\"":[null,""],"search results with no words from this list will be ignored.":[null,""],"Scene Exception":[null,""],"this will affect episode search on NZB and torrent providers.":[null,""],"this list appends to the original show name.":[null,""],"WARNING logs":[null,""],"ERROR logs":[null,""],"There are no events to display.":[null,""],"Limit":[null,""],"Layout":[null,""],"HistoryLayout":[null,""],"Compact":[null,""],"Detailed":[null,""],"Time":[null,""],"Provider":[null,""],"Missing Provider":[null,""],"missing provider":[null,""],"Directory":[null,"Mapa"],"Show Name (tvshow.nfo)":[null,""],"Indexer":[null,""],"Enter the folder containing the episode":[null,""],"Process Method to be used":[null,""],"Copy":[null,"Kopiraj"],"Move":[null,"Premakni"],"Hard Link":[null,""],"Symbolic Link":[null,""],"Symbolic Link Reversed":[null,""],"Force already Post Processed Dir/Files":[null,""],"Mark Dir/Files as priority download":[null,""],"(Check it to replace the file even if it exists at higher quality)":[null,""],"Delete files and folders":[null,""],"(Check it to delete files and folders like auto processing)":[null,""],"Don't use processing queue":[null,""],"(If checked this will return the result of the process here, but may be slow!)":[null,""],"Mark download as failed":[null,""],"Process":[null,""],"Download subtitles for this show?":[null,""],"use SickRage metadata when searching for subtitle, <br />this will override the autodiscovered metadata":[null,""],"Status for previously aired episodes":[null,""],"Status for all future episodes":[null,""],"Group episodes by season folder?":[null,""],"Is this show an Anime?":[null,""],"Is this show scene numbered?":[null,""],"Save Defaults":[null,""],"Use current values as the defaults":[null,""],"<p>Select your preferred fansub groups from the <b>Available Groups</b> and add them to the <b>Whitelist</b>. Add groups to the <b>Blacklist</b> to ignore them.</p>\n <p>The <b>Whitelist</b> is checked <i>before</i> the <b>Blacklist</b>.</p>\n <p>Groups are shown as <b>Name</b> | <b>Rating</b> | <b>Number of subbed episodes</b>.</p>\n <p>You may also add any fansub group not listed to either list manually.</p>\n <p>When doing this please note that you can only use groups listed on anidb for this anime.\n <br>If a group is not listed on anidb but subbed this anime, please correct anidb's data.</p>":[null,""],"Whitelist":[null,""],"Available Groups":[null,""],"Add to Whitelist":[null,""],"Add to Blacklist":[null,""],"Blacklist":[null,""],"Custom Group":[null,""],"Allowed Quality:":[null,""],"Preferred Quality:":[null,""],"Filter Show Name":[null,""],"Root":[null,""],"All":[null,"Vse"],"Clear Filter(s)":[null,""],"Poster":[null,""],"Small Poster":[null,""],"Banner":[null,"Pasica"],"Simple":[null,""],"Next Episode":[null,""],"Progress":[null,""],"Direction":[null,""],"Ascending":[null,""],"Descending":[null,""],"Poster Size":[null,""],"Continuing":[null,""],"Ended":[null,""],"Total":[null,""],"Invalid date":[null,""],"No Network":[null,""],"Next Ep":[null,""],"Prev Ep":[null,""],"Show":[null,"Serije"],"Downloads":[null,"Prenosi"],"Active":[null,""],"loading":[null,""],"Loading...":[null,""],"<p><b><u>Preferred</u></b> qualities will replace those in <b><u>allowed</u></b>, even if they are lower.</p>":[null,""],"New":[null,""],"Set as Default":[null,""],"Remember me":[null,""],"Edit Selected":[null,""],"Subtitle":[null,""],"Default Ep Status":[null,""],"Update":[null,""],"Rescan":[null,""],"Rename":[null,""],"Search Subtitle":[null,""],"Force Metadata Regen":[null,""],"Snatched (Allowed)":[null,""],"Jump to Show":[null,""],"Force Backlog":[null,""],"Manage episodes with status":[null,""],"Manage":[null,""],"None of your episodes have status":[null,""],"Shows containing":[null,""],"episodes":[null,""],"Set checked shows/episodes to":[null,""],"Go":[null,""],"Select all":[null,""],"Clear all":[null,""],"Release":[null,""],"Backlog Search":[null,""],"Not in progress":[null,""],"In Progress":[null,""],"Daily Search":[null,""],"Find Propers Search":[null,""],"Propers search disabled":[null,""],"Subtitle Search":[null,""],"Subtitle search disabled":[null,""],"Search Queue":[null,""],"pending items":[null,""],"Daily":[null,""],"Manual":[null,""],"Changing any settings marked with (<span class=\"separator\">*</span>) will force a refresh of the selected shows.":[null,""],"Selected Shows":[null,""],"Root Directories":[null,""],"Current":[null,""],"Keep":[null,""],"Custom":[null,""],"Group episodes by season folder (set to \"No\" to store in a single folder).":[null,""],"Pause these shows (SickRage will not download episodes).":[null,""],"This will set the status for future episodes.":[null,""],"Search by scene numbering (set to \"No\" to search by indexer numbering).":[null,""],"Set if these shows are Anime and episodes are released as Show.265 rather than Show.S02E03":[null,""],"Set if these shows are sporting or MMA events released as Show.03.02.2010 rather than Show.S02E03.":[null,""],"In case of an air date conflict between regular and special episodes, the later will be ignored.":[null,""],"Set if these shows are released as Show.03.02.2010 rather than Show.S02E03.":[null,""],"Search for subtitles.":[null,""],"All of your episodes have {subsLanguage} subtitles.":[null,""],"Manage episodes without":[null,""],"Episodes without {subsLanguage} subtitles.":[null,""],"Episodes without {subtitleLanguage} (undefined) subtitles.":[null,""],"Download missed subtitles for selected episodes":[null,""],"Performing Restart":[null,""],"Waiting for SickRage to shut down":[null,""],"Waiting for SickRage to start again":[null,""],"Loading the default page":[null,""],"Error: The restart has timed out, perhaps something prevented SickRage from starting again?":[null,""],"Key":[null,""],"Missed":[null,""],"Today":[null,""],"Soon":[null,""],"Later":[null,""],"Subscribe":[null,""],"Date":[null,""],"View Paused":[null,""],"Hidden":[null,""],"Shown":[null,""],"Calendar":[null,"Koledar"],"List":[null,"Seznam"],"Ends":[null,""],"Next Ep Name":[null,""],"Run time":[null,""],"Indexers":[null,""],"No shows for this day":[null,""],"Airs":[null,""],"Plot":[null,""],"Show Update":[null,""],"Version Check":[null,""],"Proper Finder":[null,""],"Post Process":[null,""],"Subtitles Finder":[null,""],"Scheduler":[null,""],"Alive":[null,""],"Start Time":[null,""],"Cycle Time":[null,""],"Next Run":[null,""],"Last Run":[null,""],"Silent":[null,""],"True":[null,""],"N/A":[null,""],"Show id":[null,""],"Show name":[null,""],"Priority":[null,""],"Added":[null,""],"Queue type":[null,""],"LOW":[null,""],"NORMAL":[null,""],"HIGH":[null,""],"Disk Space":[null,""],"Free space":[null,""],"TV Download Directory":[null,""],"Media Root Directories":[null,""],"Preview of the proposed name changes":[null,""],"All Seasons":[null,""],"select all":[null,""],"Rename Selected":[null,""],"Cancel Rename":[null,""],"Old Location":[null,""],"New Location":[null,""],"Trakt API did not return any results, please check your config.":[null,""],"votes":[null,""],"Remove Show":[null,""],"Level":[null,""],"Filter":[null,""],"All non-absolute folder locations are relative to ":[null,""],"Manual Post-Processing":[null,""],"Episode Status Management":[null,""],"Update PLEX":[null,""],"Update KODI":[null,""],"Update Emby":[null,""],"Missed Subtitle Management":[null,""],"Help & Info":[null,""],"Backup & Restore":[null,""],"Tools":[null,""],"Support SickRage":[null,""],"View Errors":[null,""],"View Warnings":[null,""],"View Log":[null,""],"Check For Updates":[null,""],"Restart":[null,""],"Shutdown":[null,""],"Logout":[null,""],"Server Status":[null,""],"View overview of snatched episodes":[null,""],"Episodes Downloaded":[null,""],"Memory used":[null,""],"Load time":[null,""],"Branch":[null,""],"Now":[null,""]}}}} \ No newline at end of file +{"messages":{"domain":"messages","locale_data":{"messages":{"100":[null,"100"],"250":[null,"250"],"500":[null,"500"],"":{"domain":"messages","plural_forms":"nplurals=4; plural=(n%100==1 ? 1 : n%100==2 ? 2 : n%100==3 || n%100==4 ? 3 : 0);","lang":"sl_SI"},"Drama":[null,""],"Mystery":[null,""],"Science-Fiction":[null,""],"Crime":[null,"Kriminalka"],"Action":[null,""],"Comedy":[null,""],"Thriller":[null,""],"Animation":[null,""],"Family":[null,""],"Fantasy":[null,""],"Adventure":[null,""],"Horror":[null,""],"Film-Noir":[null,""],"Sci-Fi":[null,""],"Romance":[null,""],"Sport":[null,""],"War":[null,""],"Biography":[null,""],"History":[null,"Zgodovina"],"Music":[null,""],"Western":[null,""],"News":[null,"Novice"],"Sitcom":[null,""],"Reality-TV":[null,""],"Documentary":[null,""],"Game-Show":[null,""],"Musical":[null,""],"Talk-Show":[null,""],"Started Download":[null,"Začetek Prejemanja"],"Download Finished":[null,"Prejemanje Končano"],"Subtitle Download Finished":[null,"Prejemanje Podnapisov Končano"],"SickRage Updated":[null,""],"SickRage Updated To Commit#: ":[null,""],"SickRage new login":[null,""],"New login from IP: {0}. http://geomaplookup.net/?ip={0}":[null,""],"Repeat":[null,""],"Repeat (Separated)":[null,""],"Extend":[null,""],"Extend (Limited)":[null,""],"Extend (Limited, E-prefixed)":[null,""],"Downloaded":[null,"Prejeto"],"Snatched":[null,""],"Snatched (Proper)":[null,""],"Failed":[null,"Spodletel"],"Snatched (Best)":[null,""],"Archived":[null,"Arhivirano"],"Unknown":[null,"Neznano"],"Unaired":[null,""],"Skipped":[null,""],"Wanted":[null,"Željen"],"Ignored":[null,"Prezrto"],"Subtitled":[null,""],"For best results please set the Download Station alias as":[null,""],"You can check this setting in the Synology DSM":[null,""],"Control Panel":[null,"Nadzorna Plošča"],"Application Portal":[null,""],"Make sure you allow DSM to be embedded with iFrames too in":[null,""],"DSM Settings":[null,""],"Security":[null,"Varnost"],"<No Filter>":[null,""],"Daily Searcher":[null,""],"Backlog":[null,""],"Show Updater":[null,""],"Check Version":[null,""],"Show Queue":[null,""],"Search Queue (All)":[null,""],"Search Queue (Daily Searcher)":[null,""],"Search Queue (Backlog)":[null,""],"Search Queue (Manual)":[null,""],"Search Queue (Retry/Failed)":[null,""],"Search Queue (RSS)":[null,""],"Find Propers":[null,""],"Postprocessor":[null,""],"Find Subtitles":[null,""],"Trakt Checker":[null,""],"Event":[null,""],"Error":[null,"Napaka"],"Tornado":[null,""],"Thread":[null,""],"Main":[null,""],"Loading":[null,""],"New update found for SickRage, starting auto-updater":[null,""],"Update was successful":[null,"Posodobitev uspešna"],"Update failed!":[null,"Neuspešna posodobitev!"],"Backup":[null,"Varnostna kopija"],"Config backup in progress...":[null,""],"Config backup successful, updating...":[null,""],"Config backup failed, aborting update":[null,""],"No update needed":[null,"Posodobitev ni potrebna"],"Mako Error":[null,""],"Oops":[null,""],"Wrong API key used":[null,""],"Login":[null,"Prijava"],"API Key not generated":[null,""],"API Builder":[null,""],"Schedule":[null,""],"Test 1":[null,"Preizkus 1"],"This is test number 1":[null,"To je test številka 1"],"Test 2":[null,"Preizkus 2"],"This is test number 2":[null,"To je test številka 2"],"You're using the {branch} branch. Please use 'master' unless specifically asked":[null,""],"Invalid show parameters":[null,""],"Invalid parameters":[null,""],"Episode couldn't be retrieved":[null,""],"Home":[null,"Domov"],"Show List":[null,"Seznam Serij"],"Error: Unsupported Request. Send jsonp request with 'callback' variable in the query string.":[null,""],"Success. Connected and authenticated":[null,""],"Authentication failed. SABnzbd expects":[null,""],"as authentication method":[null,""],"Unable to connect to host":[null,""],"SMS sent successfully":[null,""],"Problem sending SMS: {message}":[null,""],"Telegram notification succeeded. Check your Telegram clients to make sure it worked":[null,""],"Error sending Telegram notification: {message}":[null,""],"join notification succeeded. Check your join clients to make sure it worked":[null,""],"Error sending join notification: {message}":[null,""]," with password":[null,""],"Registered and Tested growl successfully {growl_host}":[null,""],"Registration and Testing of growl failed {growl_host}":[null,""],"Test prowl notice sent successfully":[null,""],"Test prowl notice failed":[null,""],"Boxcar2 notification succeeded. Check your Boxcar2 clients to make sure it worked":[null,""],"Error sending Boxcar2 notification":[null,""],"Pushover notification succeeded. Check your Pushover clients to make sure it worked":[null,""],"Error sending Pushover notification":[null,""],"Key verification successful":[null,""],"Unable to verify key":[null,""],"Tweet successful, check your twitter to make sure it worked":[null,""],"Error sending tweet":[null,""],"Please enter a valid account sid":[null,""],"Please enter a valid auth token":[null,""],"Please enter a valid phone sid":[null,""],"Please format the phone number as \"+1-###-###-####\"":[null,""],"Authorization successful and number ownership verified":[null,""],"Error sending sms":[null,""],"Slack message successful":[null,""],"Slack message failed":[null,""],"Discord message successful":[null,""],"Discord message failed":[null,""],"Test KODI notice sent successfully to {kodi_host}":[null,""],"Test KODI notice failed to {kodi_host}":[null,""],"Successful test notice sent to Plex Home Theater ... {plex_clients}":[null,""],"Test failed for Plex Home Theater ... {plex_clients}":[null,""],"Tested Plex Home Theater(s)":[null,""],"Successful test of Plex Media Server(s) ... {plex_servers}":[null,""],"Test failed, No Plex Media Server host specified":[null,""],"Test failed for Plex Media Server(s) ... {plex_servers}":[null,""],"Tested Plex Media Server host(s)":[null,""],"Tried sending desktop notification via libnotify":[null,""],"Test notice sent successfully to {emby_host}":[null,""],"Test notice failed to {emby_host}":[null,""],"Successfully started the scan update":[null,""],"Test failed to start the scan update":[null,""],"Test notice sent successfully to {nmj2_host}":[null,""],"Test notice failed to {nmj2_host}":[null,""],"Trakt Authorized":[null,""],"Trakt Not Authorized!":[null,""],"Test email sent successfully! Check inbox.":[null,""],"ERROR: {last_error}":[null,""],"Test NMA notice sent successfully":[null,""],"Test NMA notice failed":[null,""],"Pushalot notification succeeded. Check your Pushalot clients to make sure it worked":[null,""],"Error sending Pushalot notification":[null,""],"Pushbullet notification succeeded. Check your device to make sure it worked":[null,""],"Error sending Pushbullet notification":[null,""],"Status":[null,""],"Restarting SickRage":[null,"Ponovni zagon SickRage"],"Update Failed":[null,""],"Update wasn't successful, not restarting. Check your log for more information.":[null,""],"Checking out branch":[null,""],"Already on branch":[null,""],"Invalid show ID: {show}":[null,""],"Show not in show list":[null,""],"Edit":[null,"Uredi"],"This show is in the process of being downloaded - the info below is incomplete.":[null,""],"The information on this page is in the process of being updated.":[null,""],"The episodes below are currently being refreshed from disk":[null,""],"Currently downloading subtitles for this show":[null,""],"This show is queued to be refreshed.":[null,""],"This show is queued and awaiting an update.":[null,""],"This show is queued and awaiting subtitles download.":[null,""],"Resume":[null,""],"Pause":[null,""],"Remove":[null,"Odstrani"],"Re-scan files":[null,""],"Force Full Update":[null,""],"Update show in KODI":[null,""],"Update show in Emby":[null,""],"Hide specials":[null,""],"Show specials":[null,""],"Preview Rename":[null,""],"Download Subtitles":[null,""],"No scene exceptions":[null,""],"Invalid show ID":[null,""],"Unable to find the specified show":[null,""],"Unable to retreive Fansub Groups from AniDB.":[null,""],"Edit Show":[null,"Uredi Serijo"],"Unable to refresh this show: {error}":[null,""],"New location <tt>{location}</tt> does not exist":[null,""],"Unable to update show: {error}":[null,""],"Unable to force an update on scene exceptions of the show.":[null,""],"Unable to force an update on scene numbering of the show.":[null,""],"{num_errors:d} error{plural} while saving changes:":[null,""],"{show_name} has been {paused_resumed}":[null,""],"resumed":[null,""],"paused":[null,""],"{show_name} has been {deleted_trashed} {was_deleted}":[null,""],"deleted":[null,""],"trashed":[null,""],"(media untouched)":[null,""],"(with all related media)":[null,""],"Unable to refresh this show.":[null,""],"Unable to update this show.":[null,""],"Library update command sent to KODI host(s)): {kodi_hosts}":[null,""],"Unable to contact one or more KODI host(s)): {kodi_hosts}":[null,""],"Library update command sent to Plex Media Server host: {plex_server}":[null,""],"Unable to contact Plex Media Server host: {plex_server}":[null,""],"Library update command sent to Emby host: {emby_host}":[null,""],"Unable to contact Emby host: {emby_host}":[null,""],"You must specify a show and at least one episode":[null,""],"Invalid status":[null,""],"Backlog was automatically started for the following seasons of <b>{show_name}</b>":[null,""],"Season":[null,"Sezona"],"Backlog started":[null,""],"Retrying Search was automatically started for the following season of <b>{show_name}</b>":[null,""],"Retry Search started":[null,""],"You must specify a show":[null,""],"Can't rename episodes when the show dir is missing.":[null,""],"New subtitles downloaded: {new_subtitle_languages}":[null,""],"No subtitles downloaded":[null,""],"IRC":[null,"IRC"],"Could not load news from the repo. [Click here for news.md])({news_url})":[null,""],"The was a problem connecting to github, please refresh and try again":[null,""],"Could not load changes from the repo. [Click here for CHANGES.md]({changes_url})":[null,""],"Changelog":[null,""],"Post Processing":[null,""],"Add Shows":[null,"Dodaj Serijo"],"No folders selected.":[null,""],"New Show":[null,"Nova Serija"],"Trending Shows":[null,""],"Popular Shows":[null,"Priljubljene Serije"],"Most Anticipated Shows":[null,""],"Most Collected Shows":[null,""],"Most Watched Shows":[null,""],"Most Played Shows":[null,""],"Recommended Shows":[null,""],"New Shows":[null,""],"Season Premieres":[null,""],"Existing Show":[null,""],"No root directories setup, please go back and add one.":[null,""],"Show added":[null,""],"Adding the specified show {show_name}":[null,""],"Missing params, no Indexer ID or folder: {show_to_add} and {root_dir}/{show_path}":[null,""],"Unknown error. Unable to add show due to problem with show selection.":[null,""],"Unable to add show":[null,""],"Folder {show_dir} exists already":[null,""],"Unable to create the folder {show_dir}, can't add the show":[null,""],"Adding the specified show into {show_dir}":[null,""],"Shows Added":[null,""],"Automatically added {num_shows} from their existing metadata files":[null,""],"Mass Update":[null,""],"Episode Overview":[null,""],"Missing Subtitles":[null,""],"Backlog Overview":[null,""],"Mass Edit":[null,""],"Unable to update show: {excption_format}":[null,""],"Unable to refresh show {show_name}: {excption_format}":[null,""],"Errors encountered":[null,""],"Updates":[null,"Posodobitve"],"Refreshes":[null,""],"Renames":[null,"Preimenuj"],"Subtitles":[null,"Podnapisi"],"The following actions were queued":[null,""],"Failed Downloads":[null,""],"Manage Searches":[null,""],"Backlog search started":[null,""],"Daily search started":[null,""],"Find propers search started":[null,""],"Subtitle search started":[null,""],"Remove Selected":[null,""],"Clear History":[null,"Počisti zgodovino"],"Trim History":[null,""],"Selected history entries removed":[null,""],"History cleared":[null,""],"Removed history entries older than 30 days":[null,""],"General":[null,"Splošno"],"Backup/Restore":[null,""],"Search Settings":[null,""],"Search Providers":[null,""],"Subtitles Settings":[null,"Nastavitve podnapisov"],"Notifications":[null,"Obvestila"],"Anime":[null,""],"SickRage Configuration":[null,""],"Config - Shares":[null,""],"Windows Shares Configuration":[null,""],"Saved Shares":[null,""],"Your Windows share settings have been saved":[null,""],"Config - General":[null,""],"General Configuration":[null,""],"Saved Defaults":[null,""],"Your \"add show\" defaults have been set to your current selections.":[null,""],"Unable to create directory {directory}, log directory not changed.":[null,""],"Unable to create directory {directory}, https cert directory not changed.":[null,""],"Unable to create directory {directory}, https key directory not changed.":[null,""],"Error(s) Saving Configuration":[null,""],"Configuration Saved":[null,""],"Config - Backup/Restore":[null,""],"Config - Episode Search":[null,""],"Config - Post Processing":[null,""],"Unpacking Not Supported, disabling unpack setting":[null,""],"You tried saving an invalid normal naming config, not saving your naming settings":[null,""],"You tried saving an invalid anime naming config, not saving your naming settings":[null,""],"Config - Providers":[null,""],"No Provider Name specified":[null,""],"No Provider Url specified":[null,""],"No Provider Api key specified":[null,""],"Config - Notifications":[null,""],"Config - Subtitles":[null,""],"Config - Anime":[null,""],"Clear Errors":[null,"Počisti Napake"],"Clear Warnings":[null,""],"Submit Errors":[null,""],"Logs & Errors":[null,""],"Log File":[null,""],"Logs":[null,""],"This is a test notification from SickRage":[null,""],"Choose Directory":[null,""],"Select log file folder location":[null,""],"Select CSS file":[null,""],"Select backup folder to save to":[null,""],"Select backup files to restore":[null,""],"Please fill out the necessary fields above.":[null,""],"<b>Step 1:</b> Confirm Authorization":[null,""],"Check blacklist name; the value needs to be a trakt slug":[null,""],"You must provide a recipient email address!":[null,""],"You didn't supply a Pushbullet api key":[null,""],"Don't forget to save your new pushbullet settings.":[null,""],"Select TV Download Directory":[null,""],"Select Unpack Directory":[null,""],"This pattern is invalid.":[null,""],"This pattern would be invalid without the folders, using it will force \"Season Folders\" on for all shows.":[null,""],"This pattern is valid.":[null,""],"Select .nzb black hole/watch location":[null,""],"Select .torrent black hole/watch location":[null,""],"Select .torrent download location":[null,""],"Minimum seeding time is":[null,""],"URL to your uTorrent client (e.g. http://localhost:8000)":[null,""],"Stop seeding when inactive for":[null,""],"URL to your Transmission client (e.g. http://localhost:9091)":[null,""],"URL to your Deluge client (e.g. http://localhost:8112)":[null,""],"IP or Hostname of your Deluge Daemon (e.g. scgi://localhost:58846)":[null,""],"URL to your Synology DS client (e.g. http://localhost:5000)":[null,""],"URL to your rTorrent client (e.g. scgi://localhost:5000 <br> or https://localhost/rutorrent/plugins/httprpc/action.php)":[null,""],"URL to your qBittorrent client (e.g. http://localhost:8080)":[null,""],"URL to your MLDonkey (e.g. http://localhost:4080)":[null,""],"URL to your putio client (e.g. http://localhost:8080)":[null,""],"<a herf=\"https://app.put.io/oauth/apps/new\" target=\"_blank\"> Create a new OAuth app for put.io</a>":[null,""],"Put.io Parent Folder":[null,""],"Put.io OAuth Token":[null,""],"Show Episodes":[null,""],"Hide Episodes":[null,""],"Select Show Location":[null,""],"Select Unprocessed Episode Folder":[null,""],"DELETED":[null,""],"Resume updating the log on this page.":[null,""],"Pause updating the log on this page.":[null,""],"searching {searchingFor}...":[null,""],"search timed out, try again or try another indexer":[null,""],"loading folders...":[null,""],"Loading...":[null,""],"You have reached this page by accident, please check the url.":[null,""],"A mako error has occured.<br>\n If this happened during an update a simple page refresh may be the solution.<br>\n Mako errors that happen during updates may be a one time error if there were significant ui changes.":[null,""],"Show/Hide Error":[null,""],"Add New Show":[null,"Dodaj Novo Serijo"],"For shows that you haven't downloaded yet, this option finds a show on theTVDB.com, creates a directory for it's episodes, and adds it to SickRage.":[null,""],"Add From Trakt Lists":[null,""],"For shows that you haven't downloaded yet, this option lets you choose from a show from one of the Trakt lists to add to SickRage.":[null,""],"Add From IMDB's Popular Shows":[null,""],"View IMDB's list of the most popular shows. This feature uses IMDB's MOVIEMeter algorithm to identify popular TV Series.":[null,""],"Add Existing Shows":[null,""],"Use this option to add shows that already have a folder created on your hard drive. SickRage will scan your existing metadata/episodes and add the show accordingly.":[null,""],"Add Existing Show":[null,""],"Manage Directories":[null,""],"Customize Options":[null,""],"SickRage can add existing shows, using the current options, by using locally stored NFO/XML metadata to eliminate user interaction. If you would rather have SickRage prompt you to customize each show, then use the checkbox below.":[null,""],"Prompt me to set settings for each show":[null,""],"Displaying folders within these directories which aren't already added to SickRage":[null,""],"Submit":[null,""],"Find a show on theTVDB":[null,""],"Show retrieved from existing metadata":[null,""],"All Indexers":[null,""],"Search":[null,"Iskanje"],"This will only affect the language of the retrieved metadata file contents and episode filenames.":[null,""],"This <b>DOES NOT</b> allow SickRage to download non-english TV episodes!":[null,""],"Pick the parent folder":[null,""],"Pre-chosen Destination Folder":[null,""],"Customize options":[null,""],"Add Show":[null,"Dodaj Serijo"],"Skip Show":[null,""],"Sort By":[null,""],"Name":[null,""],"Original":[null,""],"Votes":[null,""],"Rating":[null,""],"Rating > Votes":[null,""],"Sort Order":[null,""],"Asc":[null,""],"Desc":[null,""],"Fetching of IMDB Data failed. Are you online?":[null,""],"Exception":[null,""],"Select Trakt List":[null,""],"Most Anticipated":[null,""],"Trending":[null,""],"Popular":[null,""],"Most Watched":[null,""],"Most Played":[null,""],"Most Collected":[null,""],"Recommended":[null,""],"Toggle navigation":[null,""],"Profile":[null,""],"JSONP":[null,""],"Back to SickRage":[null,""],"Parameters":[null,""],"Required":[null,""],"Description":[null,""],"Type":[null,""],"Default value":[null,""],"Allowed values":[null,""],"Playground":[null,""],"Clear":[null,""],"Yes":[null,"Ja"],"No":[null,"Ne"],"season":[null,"sezona"],"episode":[null,""],"Python Version":[null,""],"SSL Version":[null,""],"OS":[null,""],"Locale":[null,""],"User":[null,"Uporabnik"],"Program Folder":[null,""],"Config File":[null,""],"Database File":[null,""],"Cache Folder":[null,""],"Log Folder":[null,""],"Arguments":[null,""],"Web Root":[null,""],"Website":[null,""],"Wiki":[null,""],"Source":[null,""],"IRC Chat":[null,"IRC klepet"],"AnimeDB Settings":[null,""],"Look & Feel":[null,""],"AniDB is non-profit database of anime information that is freely open to the public":[null,""],"Enable":[null,""],"should SickRage use data from AniDB?":[null,""],"AniDB Username":[null,""],"username of your AniDB account":[null,""],"AniDB Password":[null,""],"password of your AniDB account":[null,""],"AniDB MyList":[null,""],"do you want to add the PostProcessed episodes to the MyList?":[null,""],"Look and Feel":[null,""],"How should the anime functions show and behave.":[null,""],"Split show lists":[null,""],"separate anime and normal shows in groups":[null,""],"Split in tabs":[null,""],"use tabs for when splitting show lists":[null,""],"Restore":[null,""],"Backup your main database file and config.":[null,""],"Select the folder you wish to save your backup file to":[null,""],"Restore your main database file and config.":[null,""],"Select the backup file you wish to restore":[null,""],"Misc":[null,""],"Interface":[null,""],"Advanced Settings":[null,""],"Startup options. Indexer options. Log and show file locations.":[null,""],"Some options may require a manual restart to take effect.":[null,""],"Default Indexer Language":[null,""],"for adding shows and metadata providers":[null,""],"Launch browser":[null,""],"open the SickRage home page on startup":[null,""],"Initial page":[null,""],"Shows":[null,""],"when launching SickRage interface":[null,""],"Choose hour to update shows":[null,""],"with information such as next air dates, show ended, etc. Use 15 for 3pm, 4 for 4am etc.":[null,""],"note":[null,""],"minutes are randomized each time SickRage is started":[null,""],"Send to trash for actions":[null,""],"when using show \"Remove\" and delete files":[null,""],"on scheduled deletes of the oldest log files":[null,""],"selected actions use trash (recycle bin) instead of the default permanent delete":[null,""],"Log file folder location":[null,""],"Number of Log files saved":[null,""],"number of log files saved when rotating logs (default: 5) (REQUIRES RESTART)":[null,""],"Size of Log files saved":[null,""],"maximum size in MB of the log file (default: 1MB) (REQUIRES RESTART)":[null,""],"Use initial indexer set to":[null,""],"as the default selection when adding new shows":[null,""],"Timeout show indexer at":[null,""],"seconds of inactivity when finding new shows (default:20)":[null,""],"Show root directories":[null,""],"where the files of shows are located":[null,""],"Save Changes":[null,""],"Options for software updates.":[null,""],"Check software updates":[null,""],"and display notifications when updates are available. Checks are run on startup and at the frequency set below*":[null,""],"Automatically update":[null,""],"fetch and install software updates. Updates are run on startup and in the background at the frequency set below*":[null,""],"Check the server every*":[null,""],"hours for software updates (default:1)":[null,""],"Notify on software update":[null,""],"send a message to all enabled notifiers when SickRage has been updated":[null,""],"User Interface":[null,""],"Options for visual appearance.":[null,""],"Interface Language":[null,""],"System Language":[null,""],"for appearance to take effect, save then refresh your browser":[null,""],"Display theme":[null,""],"Dark":[null,""],"Light":[null,""],"Use a background image":[null,""],"use a custom image as background for SickRage":[null,""],"Background Path":[null,""],"Path to the background image":[null,""],"Show fanart in the background":[null,""],"on the show summary page":[null,""],"Fanart transparency":[null,""],"transparency of the fanart in the background":[null,""],"Use a custom stylesheet file":[null,""],"use a custom .css file to style SickRage (for advanced users)":[null,""],"Stylesheet File Path":[null,""],"Path to the stylesheet (.css) file":[null,""],"Show all seasons":[null,"Pokaži vse sezone"],"Sort with \"The\", \"A\", \"An\"":[null,""],"include articles (\"The\", \"A\", \"An\") when sorting show lists":[null,""],"Missed episodes range":[null,""],"set the range in days of the missed episodes in the Schedule page":[null,""],"Display fuzzy dates":[null,""],"move absolute dates into tooltips and display e.g. \"Last Thu\", \"On Tue\"":[null,""],"Trim zero padding":[null,""],"remove the leading number \"0\" shown on hour of day, and date of month":[null,""],"Date style":[null,""],"Use System Default":[null,""],"Time style":[null,""],"seconds are only shown on the History page":[null,""],"Timezone":[null,"Časovni pas"],"Local":[null,""],"Network":[null,"Omrežje"],"display dates and times in either your timezone or the shows network timezone":[null,""],"use local timezone to start searching for episodes minutes after show ends (depends on your dailysearch frequency)":[null,""],"Download url":[null,""],"URL where the shows can be downloaded.":[null,""],"Web Interface":[null,""],"it is recommended that you enable a username and password to secure SickRage from being tampered with remotely.":[null,""],"these options require a manual restart to take effect.":[null,""],"API key":[null,""],"used to give 3rd party programs limited access to SickRage":[null,""],"you can try all the features of the API":[null,""],"here":[null,"tukaj"],"HTTP logs":[null,""],"enable logs from the internal Tornado web server":[null,""],"HTTP username":[null,""],"set blank for no login":[null,""],"HTTP password":[null,""],"blank = no authentication":[null,""],"HTTP port":[null,""],"web port to browse and access SickRage (default:8081)":[null,""],"Notify on login":[null,""],"enable to be notified when a new login happens in webserver":[null,""],"Listen on IPv6":[null,""],"attempt binding to any available IPv6 address":[null,""],"Enable HTTPS":[null,""],"enable access to the web interface using a HTTPS address":[null,""],"HTTPS certificate":[null,""],"file name or path to HTTPS certificate":[null,""],"HTTPS key":[null,""],"file name or path to HTTPS key":[null,""],"Reverse proxy headers":[null,""],"accept the following reverse proxy headers (advanced)...":[null,""],"(X-Forwarded-For, X-Forwarded-Host, and X-Forwarded-Proto)":[null,""],"CPU throttling":[null,""],"Normal (default). High is lower and Low is higher CPU use":[null,""],"Anonymous redirect":[null,""],"backlink protection via anonymizer service, must end in \"?\"":[null,""],"Enable debug":[null,""],"enable debug logs":[null,""],"Verify SSL Certs":[null,""],"verify SSL Certificates (Disable this for broken SSL installs (Like QNAP))":[null,""],"No Restart":[null,""],"only shutdown when restarting SR":[null,""],"only select this when you have external software restarting SR automatically when it stops (like FireDaemon)":[null,""],"Encrypt passwords":[null,""],"in the <code>config.ini</code> file":[null,""],"warning":[null,""],"passwords must only contain":[null,""],"ASCII characters":[null,""],"Unprotected calendar":[null,""],"allow subscribing to the calendar without user and password":[null,""],"some services like Google Calendar only work this way":[null,""],"Google Calendar Icons":[null,""],"show an icon next to exported calendar events in Google Calendar":[null,""],"Proxy host":[null,""],"blank to disable or proxy to use when connecting to providers":[null,""],"also use global proxy setting for indexers (tvdb, xem, anidb, etc.)":[null,""],"Skip Remove Detection":[null,""],"skip detection of removed files":[null,""],"if disabled the episode will be set to the default deleted status":[null,""],"Default deleted episode status":[null,""],"define the status to be set for media file that has been deleted.":[null,""],"Archived option will keep previous downloaded quality":[null,""],"example: Downloaded (1080p WEB-DL) ==> Archived (1080p WEB-DL)":[null,""],"Options for github related features.":[null,""],"Branch version":[null,""],"error: No branches found.":[null,""],"select branch to use (restart required)":[null,""],"Authorization Type":[null,""],"Username and password":[null,""],"Personal access token":[null,""],"You must use a personal access token if you're using \"two-factor authentication\" on GitHub.":[null,""],"GitHub username":[null,"GitHub uporabniško ime"],"*** (REQUIRED FOR SUBMITTING ISSUES) ***":[null,""],"GitHub password":[null,"GitHub geslo"],"GitHub personal access token":[null,""],"Generate Token":[null,""],"Manage Tokens":[null,""],"GitHub remote for branch":[null,""],"access repo configured remotes (save then refresh browser)":[null,""],"default":[null,""],"origin":[null,""],"Git executable path":[null,""],"only needed if OS is unable to locate git from env":[null,""],"Git reset":[null,""],"removes untracked files and performs a hard reset on git branch automatically to help resolve update issues":[null,""],"Home Theater / NAS":[null,""],"Devices":[null,""],"Social":[null,""],"A free and open source cross-platform media center and home entertainment system software with a 10-foot user interface designed for the living-room TV.":[null,""],"send KODI commands?":[null,""],"Always on":[null,""],"log errors when unreachable?":[null,""],"Notify on snatch":[null,""],"send a notification when a download starts?":[null,""],"Notify on download":[null,""],"send a notification when a download finishes?":[null,""],"Notify on subtitle download":[null,""],"send a notification when subtitles are downloaded?":[null,""],"Update library":[null,""],"update KODI library when a download finishes?":[null,""],"Full library update":[null,""],"perform a full library update if update per-show fails?":[null,""],"Only update first host":[null,""],"only send library updates to the first active host?":[null,""],"KODI IP:Port":[null,""],"host running KODI (eg. 192.168.1.100:8080)":[null,""],"(multiple host strings must be separated by commas)":[null,""],"Username":[null,"Uporabniško ime"],"username for your KODI server (blank for none)":[null,""],"Password":[null,"Geslo"],"password for your KODI server (blank for none)":[null,""],"Click below to test.":[null,""],"Experience your media on a visually stunning, easy to use interface on your Mac connected to your TV. Your media library has never looked this good!":[null,""],"For sending notifications to Plex Home Theater (PHT) clients, use the KODI notifier with port <b>3005</b>.":[null,""],"send Plex Media Server library updates?":[null,""],"Plex Media Server Auth Token":[null,""],"auth token used by Plex":[null,""],"Update Library":[null,""],"update Plex Media Server library when a download finishes":[null,""],"Plex Media Server IP:Port":[null,""],"one or more hosts running Plex Media Server<br/>(eg. 192.168.1.1:32400, 192.168.1.2:32400)":[null,""],"HTTPS":[null,""],"use https for plex media server requests?":[null,""],"Click below to test Plex Media Server(s)":[null,""],"Test Plex Media Server":[null,""],"Plex Home Theater":[null,""],"send Plex Home Theater notifications?":[null,""],"Plex Home Theater IP:Port":[null,""],"one or more hosts running Plex Home Theater<br>(eg. 192.168.1.100:3000, 192.168.1.101:3000)":[null,""],"Click below to test Plex Home Theater(s)":[null,""],"Test Plex Home Theater":[null,""],"some Plex Home Theaters <b class=\"boldest\">do not</b> support notifications e.g. Plexapp for Samsung TVs":[null,""],"Emby":[null,""],"A home media server built using other popular open source technologies.":[null,""],"send update commands to Emby?":[null,""],"Emby IP:Port":[null,""],"host running Emby (eg. 192.168.1.100:8096)":[null,""],"Emby API Key":[null,""],"Networked Media Jukebox":[null,""],"The Networked Media Jukebox, or NMJ, is the official media jukebox interface made available for the Popcorn Hour 200-series.":[null,""],"send update commands to NMJ?":[null,""],"Popcorn IP address":[null,""],"IP address of Popcorn 200-series (eg. 192.168.1.100)":[null,""],"Get settings":[null,""],"Get Settings":[null,""],"the Popcorn Hour device must be powered on and NMJ running.":[null,""],"NMJ database":[null,""],"automatically filled via the 'Get Settings' button.":[null,""],"NMJ mount url":[null,""],"Networked Media Jukebox v2":[null,""],"The Networked Media Jukebox, or NMJv2, is the official media jukebox interface made available for the Popcorn Hour 300 & 400-series.":[null,""],"send update commands to NMJv2?":[null,""],"IP address of Popcorn 300/400-series (eg. 192.168.1.100)":[null,""],"Database location":[null,""],"Database instance":[null,""],"adjust this value if the wrong database is selected.":[null,""],"Find database":[null,""],"Find Database":[null,""],"the Popcorn Hour device must be powered on.":[null,""],"NMJv2 database":[null,""],"automatically filled via the 'Find Database' buttons.":[null,""],"Synology":[null,"Synology"],"The Synology DiskStation NAS.":[null,""],"Synology Indexer is the daemon running on the Synology NAS to build its media database.":[null,""],"send Synology notifications?":[null,""],"requires SickRage to be running on your Synology NAS.":[null,""],"Synology Indexer":[null,""],"Synology Notifier is the notification system of Synology DSM":[null,""],"send notifications to the Synology Notifier?":[null,""],"pyTivo":[null,""],"pyTivo is both an HMO and GoBack server. This notifier will load the completed downloads to your Tivo.":[null,""],"send notifications to pyTivo?":[null,""],"requires the downloaded files to be accessible by pyTivo.":[null,""],"pyTivo IP:Port":[null,""],"host running pyTivo (eg. 192.168.1.1:9032)":[null,""],"pyTivo share name":[null,""],"value used in pyTivo Web Configuration to name the share.":[null,""],"Tivo name":[null,""],"(Messages & Settings > Account & System Information > System Information > DVR name)":[null,""],"Growl":[null,""],"A cross-platform unobtrusive global notification system.":[null,""],"send Growl notifications?":[null,""],"Growl IP:Port":[null,""],"host running Growl (eg. 192.168.1.100:23053)":[null,""],"may leave blank if SickRage is on the same host.":[null,""],"otherwise Growl <b>requires</b> a password to be used.":[null,""],"Click below to register and test Growl, this is required for Growl notifications to work.":[null,""],"Register Growl":[null,""],"Prowl":[null,""],"A Growl client for iOS.":[null,""],"send Prowl notifications?":[null,""],"Prowl Message Title":[null,""],"Global Prowl API key(s)":[null,""],"Prowl API(s) listed here, separated by commas if applicable, will<br> receive notifications for <b>all</b> shows. Your Prowl API key is available at:":[null,""],"(this field may be blank except when testing.)":[null,""],"Show notification list":[null,""],"-- Select a Show --":[null,""],"Configure per-show notifications here by entering Prowl API key(s), separated by commas, '\n 'after selecting a show in the drop-down box. Be sure to activate the 'Save for this show' '\n 'button below after each entry.":[null,""],"Save for this show":[null,""],"Prowl priority":[null,""],"Very Low":[null,""],"Moderate":[null,""],"Normal":[null,""],"High":[null,""],"Emergency":[null,""],"priority of Prowl messages from SickRage.":[null,""],"Libnotify":[null,""],"The standard desktop notification API for Linux/*nix systems. This notifier will only function if the pynotify module is installed (Ubuntu/Debian package <a href=\"apt:python-notify\">python-notify</a>).":[null,""],"send Libnotify notifications?":[null,""],"Pushover":[null,""],"Pushover makes it easy to send real-time notifications to your Android and iOS devices.":[null,""],"send Pushover notifications?":[null,""],"Pushover key":[null,""],"user key of your Pushover account":[null,""],"Pushover API key":[null,""],"click here":[null,""]," to create a Pushover API key":[null,""],"Pushover devices":[null,""],"comma separated list of pushover devices you want to send notifications to":[null,""],"Pushover notification sound":[null,""],"Bike":[null,""],"Bugle":[null,""],"Cash Register":[null,""],"Classical":[null,""],"Cosmic":[null,""],"Falling":[null,""],"Gamelan":[null,""],"Incoming":[null,""],"Intermission":[null,""],"Magic":[null,""],"Mechanical":[null,""],"Piano Bar":[null,""],"Siren":[null,""],"Space Alarm":[null,""],"Tug Boat":[null,""],"Alien Alarm (long)":[null,""],"Climb (long)":[null,""],"Persistent (long)":[null,""],"Pushover Echo (long)":[null,""],"Up Down (long)":[null,""],"None (silent)":[null,""],"Device specific":[null,""],"choose notification sound to use":[null,""],"Pushover priority":[null,""],"Choose priority to use":[null,""],"Boxcar 2":[null,""],"Read your messages where and when you want them!":[null,""],"send Boxcar notifications?":[null,""],"Boxcar2 access token":[null,""],"access token for your Boxcar account.":[null,""],"NMA":[null,""],"Notify My Android":[null,""],"Notify My Android is a Prowl-like Android App and API that offers an easy way to send notifications from your application directly to your Android device.":[null,""],"send NMA notifications?":[null,""],"NMA API key":[null,""],"(multiple keys must be separated by commas, up to a maximum of 5)":[null,""],"NMA priority":[null,""],"priority of NMA messages from SickRage.":[null,""],"Pushalot":[null,""],"Pushalot is a platform for receiving custom push notifications to connected devices running Windows Phone or Windows 8.":[null,""],"send Pushalot notifications ?":[null,""],"Pushalot authorization token":[null,""],"authorization token of your Pushalot account.":[null,""],"Pushbullet":[null,""],"Pushbullet is a platform for receiving custom push notifications to connected devices running Android/iOS and desktop browsers such as Chrome, Firefox or Opera.":[null,""],"send Pushbullet notifications?":[null,""],"Pushbullet API key":[null,""],"API key of your Pushbullet account":[null,""],"Pushbullet devices":[null,""],"Update device list":[null,""],"Pushbullet channels":[null,""],"Free Mobile":[null,""],"Free Mobile is a famous French cellular network provider.<br> It provides to their customer a free SMS API.":[null,""],"send SMS notifications?":[null,""],"send a SMS when a download starts?":[null,""],"send a SMS when a download finishes?":[null,""],"send a SMS when subtitles are downloaded?":[null,""],"Free Mobile customer ID":[null,""],"it's your Free Mobile customer ID (8 digits)":[null,""],"Free Mobile API key":[null,""],"find your API key in your customer portal.":[null,""],"Click below to test your settings.":[null,""],"Telegram":[null,""],"Telegram is a cloud-based instant messaging service.":[null,""],"send Telegram notifications?":[null,""],"send a message when a download starts?":[null,""],"send a message when a download finishes?":[null,""],"send a message when subtitles are downloaded?":[null,""],"User/group ID":[null,""],"contact @myidbot on Telegram to get an ID":[null,""],"Bot API token":[null,""],"contact @BotFather on Telegram to set up one":[null,""],"Join":[null,""],"Join all of your devices together!":[null,""],"send Join notifications?":[null,""],"Device ID":[null,""],"per device specific id":[null,""]," to create a Join API key":[null,""],"Twilio":[null,""],"Twilio is a webservice API that allows you to communicate directly with a mobile number. This notifier will send a text directly to your mobile device.":[null,""],"should SickRage text your mobile device?":[null,""],"Twilio Account SID":[null,""],"account SID of your Twilio account.":[null,""],"Twilio Auth Token":[null,""],"Twilio Phone SID":[null,""],"phone SID that you would like to send the sms from":[null,""],"Your phone number":[null,""],"phone number that will receive the sms. Please use the format +1-###-###-####":[null,""],"Twitter":[null,""],"A social networking and microblogging service, enabling its users to send and read other users' messages called tweets.":[null,""],"should SickRage post tweets on Twitter?":[null,""],"you may want to use a secondary account.":[null,""],"send direct message":[null,""],"send a notification via Direct Message, not via status update":[null,""],"send DM to":[null,""],"Twitter account to send Direct Messages to (must follow you)":[null,""],"Step One":[null,""],"Request Authorization":[null,""],"Click the \"Request Authorization\" button.<br> This will open a new page containing an auth key.<br> <b>note:</b> if nothing happens check your popup blocker.":[null,""],"Step Two":[null,""],"Enter the key Twitter gave you below, and click \"Verify Key\".":[null,""],"Trakt":[null,"Trakt"],"Trakt helps keep a record of what TV shows and movies you are watching. Based on your favorites, Trakt recommends additional shows and movies you'll enjoy!":[null,""],"send Trakt.tv notifications?":[null,""],"username of your Trakt account.":[null,""],"Trakt PIN":[null,""],"Get Trakt PIN":[null,""],"PIN code to authorize SickRage to access Trakt on your behalf.":[null,""],"API Timeout":[null,""],"seconds to wait for Trakt API to respond. (Use 0 to wait forever)":[null,""],"Default indexer":[null,""],"Sync libraries":[null,""],"sync your SickRage show library with your trakt show library.":[null,""],"Remove Episodes From Collection":[null,""],"remove an episode from your Trakt Collection if it is not in your SickRage Library.":[null,""],"Sync watchlist":[null,""],"sync your SickRage show watchlist with your trakt show watchlist (either Show and Episode).":[null,""],"episode will be added on watch list when wanted or snatched and will be removed when downloaded ":[null,""],"Watchlist add method":[null,""],"Skip All":[null,"Preskoči vse"],"Download Pilot Only":[null,""],"Get whole show":[null,""],"method in which to download episodes for new shows.":[null,""],"Remove episode":[null,""],"remove an episode from your watchlist after it is downloaded.":[null,""],"Remove series":[null,""],"remove the whole series from your watchlist after any download.":[null,""],"Remove watched show":[null,""],"remove the show from sickrage if it's ended and completely watched":[null,""],"Start paused":[null,""],"shows grabbed from your trakt watchlist start paused.":[null,""],"Trakt blackList name":[null,""],"name (slug) of list on Trakt for blacklisting show on 'Add Trending Show' & 'Add Recommended Shows' pages":[null,""],"Email":[null,""],"Allows configuration of email notifications on a per show basis.":[null,""],"send email notifications?":[null,""],"SMTP host":[null,""],"hostname of your SMTP email server.":[null,""],"SMTP port":[null,""],"port number used to connect to your SMTP host.":[null,""],"SMTP from":[null,""],"sender email address, some hosts require a real address.":[null,""],"Use TLS":[null,""],"check to use TLS encryption.":[null,""],"SMTP user":[null,""],"(optional) your SMTP server username.":[null,""],"SMTP password":[null,""],"(optional) your SMTP server password.":[null,""],"Global email list":[null,""],"email addresses listed here, separated by commas if applicable, will<br> receive notifications for <b>all</b> shows.":[null,""],"(This field may be blank except when testing.)":[null,""],"Email Subject":[null,""],"use a custom subject for some privacy protection?":[null,""],"(leave blank for the default SickRage subject)":[null,""],"configure per-show notifications here by entering email address(es), separated by commas,":[null,""],"after selecting a show in the drop-down box. Be sure to activate the 'Save for this show'":[null,""],"button below after each entry.":[null,""],"Slack":[null,""],"Slack brings all your communication together in one place. It's real-time messaging, archiving and search for modern teams.":[null,""],"should SickRage post messages on Slack?":[null,""],"Slack Incoming Webhook":[null,""],"Discord":[null,""],"All-in-one voice and text chat for gamers that's free, secure, and works on both your desktop and phone.":[null,""],"Should SickRage post messages on Discord?":[null,""],"Discord Incoming Webhook":[null,""],"Create webhook under channel settings.":[null,""],"Discord Bot Name":[null,""],"Blank will use webhook default Name.":[null,""],"Discord Avatar URL":[null,""],"Blank will use webhook default Avatar.":[null,""],"Discord TTS":[null,""],"Send notifications using text-to-speech":[null,""],"Post-Processing":[null,""],"Episode Naming":[null,""],"Metadata":[null,""],"Settings that dictate how SickRage should process completed downloads.":[null,""],"enable the automatic post processor to scan and process any files in your Post Processing Dir":[null,""],"do not use if you use an external Post Processing script":[null,""],"Post Processing Dir":[null,""],"the folder where your download client puts the completed TV downloads.":[null,""],"please use seperate downloading and completed folders in your download client if possible.":[null,""],"Processing Method":[null,""],"what method should be used to put files into the library?":[null,""],"if you keep seeding torrents after they finish, please avoid the 'move' processing method to prevent errors.":[null,""],"Auto Post-Processing Frequency":[null,""],"time in minutes to check for new files to auto post-process (min 10)":[null,""],"Postpone post processing":[null,""],"wait to process a folder if sync files are present.":[null,""],"Sync File Extensions":[null,""],"comma seperated list of extensions or filename globs SickRage ignores when Post Processing":[null,""],"Rename Episodes":[null,""],"rename episode using the Episode Naming settings?":[null,""],"Create missing show directories":[null,""],"create missing show directories when they get deleted":[null,""],"Add shows without directory":[null,""],"add shows without creating a directory (not recommended)":[null,""],"Move associated files":[null,""],"move associated (srt/srr/sfv/etc) files while post processing?":[null,""],"Rename .nfo file":[null,""],"rename the original .nfo file to .nfo-orig to avoid conflicts?":[null,""],"Associated file extensions":[null,""],"comma separated list of associated file extensions SickRage should keep while post processing.":[null,""],"leaving it empty means no associated files will be post processed":[null,""],"Delete non associated files":[null,""],"delete non associated files while post processing?":[null,""],"Change File Date":[null,""],"set last modified filedate to the date that the episode aired?":[null,""],"some systems may ignore this feature.":[null,""],"Timezone for File Date":[null,""],"local":[null,""],"network":[null,""],"what timezone should be used to change File Date?":[null,""],"Unpack":[null,"Odpakiraj"],"What to do with archived releases found in your <i>TV Download Dir</i>?":[null,""],"Ignore (do not process contents)":[null,""],"Unpack (process contents)":[null,""],"Treat as video (process archive as-is)":[null,""],"'Unpack' only works with RAR archives":[null,""],"Windows":[null,""],"WinRar is required on windows":[null,""],"Unpack Directory":[null,""],"Choose a path to unpack files, leave blank to unpack in download dir":[null,""],"Unrar Location":[null,""],"add the path to unrar if it is not in the system path":[null,""],"Alternate Unrar Tool":[null,""],"add the path to an alternate unrar tool if it is not in the system path":[null,""],"Delete RAR contents":[null,""],"delete content of RAR files, even if Process Method not set to move?":[null,""],"only working with RAR archive":[null,""],"Don't delete empty folders":[null,""],"leave empty folders when Post Processing?":[null,""],"can be overridden using manual Post Processing":[null,""],"Follow symbolic-links":[null,""],"follow down symbolic links in download directory?":[null,""],"<b>EXPERTS ONLY.</b><br>Enable only if you know what <b>circular symbolic links</b> are,<br>and can <b>verify that you have none</b>.":[null,""],"Use icacls":[null,""],"Windows only":[null,""],"sets video permissions after using the move method in post processing":[null,""],"Extra Scripts":[null,""],"see":[null,""],"for script arguments description and usage.":[null,""],"How SickRage will name and sort your episodes.":[null,""],"Name Pattern":[null,""],"Toggle Naming Legend":[null,""],"don't forget to add quality pattern. Otherwise after post-processing the episode will have UNKNOWN quality":[null,""],"Meaning":[null,""],"Pattern":[null,""],"Result":[null,""],"Use lower case if you want lower case names (eg. %sn, %e.n, %q_n etc)":[null,""],"Show Name":[null,""],"Show.Name":[null,""],"Show_Name":[null,""],"Season Number":[null,""],"XEM Season Number":[null,""],"Episode Number":[null,""],"XEM Episode Number":[null,""],"Episode Name":[null,""],"Episode.Name":[null,""],"Episode_Name":[null,""],"Air Date":[null,""],"Post-Processing Date":[null,""],"Quality":[null,""],"Scene Quality":[null,""],"Release Name":[null,""],"SickRage' is used in place of RLSGROUP if it could not be properly detected":[null,""],"Release Group":[null,""],"If episode is proper/repack add 'proper' to name.":[null,""],"Release Type":[null,""],"Multi-Episode Style":[null,""],"Single-EP Sample":[null,""],"Multi-EP sample":[null,""],"Strip Show Year":[null,""],"remove the TV show's year when renaming the file?":[null,""],"only applies to shows that have year inside parentheses":[null,""],"Custom Air-By-Date":[null,""],"name air-by-date shows differently than regular shows?":[null,""],"Toggle ABD Naming Legend":[null,""],"Regular Air Date":[null,""],"Year":[null,""],"Month":[null,""],"Day":[null,""],"Multi-EP style is ignored":[null,""],"Custom Sports":[null,""],"name sports shows differently than regular shows?":[null,""],"Toggle Sports Naming Legend":[null,""],"Sports Air Date":[null,""],"Custom Anime":[null,""],"name anime shows differently than regular shows?":[null,""],"Toggle Anime Naming Legend":[null,""],">XEM Season Number":[null,""],"Single-EP Anime Sample":[null,""],"Multi-EP Anime sample":[null,""],"Add Absolute Number":[null,""],"add the absolute number to the season/episode format?":[null,""],"only applies to anime. (eg. S15E45 - 310 vs S15E45)":[null,""],"Only Absolute Number":[null,""],"replace season/episode format with absolute number":[null,""],"only applies to anime.":[null,""],"No Absolute Number":[null,""],"don't include the absolute number":[null,""],"The data associated to the data. These are files associated to a TV show in the form of images and text that, when supported, will enhance the viewing experience.":[null,""],"Metadata Type":[null,""],"toggle metadata options that you wish to be created":[null,""],"multiple targets may be used":[null,""],"Select Metadata":[null,""],"Provider Priorities":[null,""],"Provider Options":[null,""],"Configure Custom Newznab Providers":[null,""],"Configure Custom Torrent Providers":[null,""],"Check off and drag the providers into the order you want them to be used.":[null,""],"At least one provider is required but two are recommended.":[null,""],"Torrent providers can be toggled in ":[null,""],"Provider does not support backlog searches at this time.":[null,""],"Provider is <b>NOT WORKING</b>.":[null,""],"Configure individual provider settings here.":[null,""],"Check with provider's website on how to obtain an API key if needed.":[null,""],"Configure provider":[null,""],"no providers available to configure.":[null,""],"URL":[null,""],"Enable daily searches":[null,""],"enable provider to perform daily searches.":[null,""],"Enable backlog searches":[null,""],"enable provider to perform backlog searches.":[null,""],"Season search mode":[null,""],"when searching for complete seasons you can choose to have it look for season packs only, or choose to have it build a complete season from just single episodes.":[null,""],"season packs only.":[null,""],"episodes only.":[null,""],"Enable fallback":[null,""],"when searching for a complete season depending on search mode you may return no results, this helps by restarting the search using the opposite search mode.":[null,""],"Custom URL":[null,""],"the URL should include the protocol (and port if applicable). Examples: http://192.168.1.4/ or http://localhost:3000/":[null,""],"Api key":[null,""],"Digest":[null,""],"Hash":[null,""],"Passkey":[null,""],"Cookies":[null,""],"example: uid=1234;pass=567845439634987<br>note: uid and pass are not your username/password.<br>use DevTools or Firebug to get these values after logging in on your browser.":[null,""],"Pin":[null,""],"Seed ratio":[null,""],"stop transfer when ratio is reached<br>(-1 SickRage default to seed forever, or leave blank for downloader default)":[null,""],"Minimum seeders":[null,""],"Minimum leechers":[null,""],"Confirmed download":[null,""],"only download torrents from trusted or verified uploaders ?":[null,""],"Ranked torrents":[null,""],"only download ranked torrents (trusted releases)":[null,""],"English torrents":[null,""],"only download english torrents, or torrents containing english subtitles":[null,""],"For Spanish torrents":[null,""],"ONLY search on this provider if show info is defined as \"Spanish\" (avoid provider's use for VOS shows)":[null,""],"Sorting results by":[null,""],"Freeleech":[null,""],"only download <b>\"FreeLeech\"</b> torrents.":[null,""],"Category":[null,""],"select torrent with Italian subtitle":[null,""],"Configure Custom<br>Newznab Providers":[null,""],"Add and setup or remove custom Newznab providers.":[null,""],"Select provider":[null,""],"-- add new provider --":[null,""],"Provider name":[null,""],"Site URL":[null,""],"Newznab search categories":[null,""],"select your Newznab categories on the left, and click the \"update categories\" button to use them for searching.) <b>don't forget to to save the form!":[null,""],"Update Categories":[null,""],"Add":[null,""],"Delete":[null,""],"Add and setup or remove custom RSS providers.":[null,""],"RSS URL":[null,""],"Search element":[null,""],"eg: title":[null,""],"Episode Search":[null,""],"NZB Search":[null,""],"Torrent Search":[null,""],"How to manage searching with":[null,""],"Randomize Providers":[null,""],"randomize the provider search order instead of going in order of placement":[null,""],"Download propers":[null,""],"replace original download with \"Proper\" or \"Repack\" if nuked":[null,""],"Check propers every":[null,""],"24 hours":[null,"24 ur"],"4 hours":[null,"4 ure"],"90 mins":[null,"90 minut"],"45 mins":[null,"45 minut"],"15 mins":[null,"15 minut"],"Backlog search day(s)":[null,""],"number of day(s) that the \"Forced Backlog Search\" will cover (e.g. 7 Days)":[null,""],"Backlog search frequency":[null,""],"time in minutes between searches (min.":[null,""],"Daily search frequency":[null,""],"Usenet retention":[null,""],"age limit in days for usenet articles to be used (e.g. 500)":[null,""],"Ignore words":[null,""],"results with one or more word from this list will be ignored<br>separate words with a comma, e.g. \"word1,word2,word3\"":[null,""],"Require words":[null,""],"results with no word from this list will be ignored<br>separate words with a comma, e.g. \"word1,word2,word3\"":[null,""],"Trackers list":[null,""],"trackers that will be added to magnets without trackers<br>separate trackers with a comma, e.g. \"tracker1,tracker2,tracker3\"":[null,""],"Ignore language names in subbed results":[null,""],"ignore subbed releases based on language names <br>\n Example: \"dk\" will ignore words: dksub, dksubs, dksubbed, dksubed <br>\n separate languages with a comma, e.g. \"lang1,lang2,lang3":[null,""],"Allow high priority":[null,""],"set downloads of recently aired episodes to high priority":[null,""],"Use Failed Downloads":[null,""],"use Failed Download Handling?":[null,""],"will only work with snatched/downloaded episodes after enabling this":[null,""],"Delete Failed":[null,""],"delete files left over from a failed download?":[null,""],"this only works if Use Failed Downloads is enabled.":[null,""],"How to handle NZB search results.":[null,""],"Search NZBs":[null,""],"enable NZB search providers":[null,""],"Send .nzb files to":[null,""],"SABnzbd server URL":[null,""],"URL to your SABnzbd server (e.g. http://localhost:8080/)":[null,""],"SABnzbd username":[null,""],"(blank for none)":[null,""],"SABnzbd password":[null,""],"SABnzbd API key":[null,""],"locate at... SABnzbd Config -> General -> API Key":[null,""],"Use SABnzbd category":[null,""],"add downloads to this category (e.g. TV)":[null,""],"Use SABnzbd category (backlog episodes)":[null,""],"add downloads of old episodes to this category (e.g. TV)":[null,""],"Use SABnzbd category for anime":[null,""],"add anime downloads to this category (e.g. anime)":[null,""],"Use SABnzbd category for anime (backlog episodes)":[null,""],"add anime downloads of old episodes to this category (e.g. anime)":[null,""],"Use forced priority":[null,""],"enable to change priority from HIGH to FORCED":[null,""],"Black hole folder location":[null,""],"<b>.nzb</b> files are stored at this location for external software to find and use":[null,""],"Connect using HTTPS":[null,""],"enable Secure control in NZBGet and set the correct Secure Port here":[null,""],"NZBget host:port":[null,""],"(e.g. localhost:6789)":[null,""],"NZBget RPC host name and port number (not NZBgetweb!)":[null,""],"NZBget username":[null,""],"locate in nzbget.conf (default:nzbget)":[null,""],"NZBget password":[null,""],"locate in nzbget.conf (default:tegbzn6789)":[null,""],"Use NZBget category":[null,""],"send downloads marked this category (e.g. TV)":[null,""],"Use NZBget category (backlog episodes)":[null,""],"send downloads of old episodes marked this category (e.g. TV)":[null,""],"Use NZBget category for anime":[null,""],"send anime downloads marked this category (e.g. anime)":[null,""],"Use NZBget category for anime (backlog episodes)":[null,""],"send anime downloads of old episodes marked this category (e.g. anime)":[null,""],"NZBget priority":[null,""],"Very low":[null,""],"Low":[null,""],"Very high":[null,""],"Force":[null,""],"priority for daily snatches (no backlog)":[null,""],"Torrent host:port":[null,""],"URL to your Synology DSM (e.g. http://localhost:5000/)":[null,""],"Client username":[null,""],"Client password":[null,""],"Downloaded files location":[null,""],"where Synology Download Station will save downloaded files (blank for client default)":[null,""],"the destination has to be a shared folder for Synology DS":[null,""],"Click below to test":[null,""],"How to handle Torrent search results.":[null,""],"Search torrents":[null,""],"enable torrent search providers":[null,""],"Send .torrent files to":[null,""],"<b>.torrent</b> files are stored at this location for external software to find and use":[null,""],"URL to your torrent client (e.g. http://localhost:8000/)":[null,""],"Torrent RPC URL":[null,""],"the path without leading and trailing slashes (e.g. transmission)":[null,""],"Http Authentication":[null,""],"Verify certificate":[null,""],"disable if you get \"Deluge: Authentication Error\" in your log":[null,""],"verify SSL certificates for HTTPS requests":[null,""],"Add label to torrent":[null,""],"(blank spaces are not allowed)":[null,""],"label plugin must be enabled in Deluge clients":[null,""],"for QBitTorrent 3.3.1 and up":[null,""],"Add label to torrent for anime":[null,""],"for QBitTorrent 3.3.1 and up ":[null,""],"where <span id=\"torrent_client\">the torrent client</span> will save downloaded files (blank for client default)":[null,""],"the destination has to be a shared folder for Synology DS</span>":[null,""],"Minimum seeding time":[null,""],"time in hours":[null,""],"(default:'0' passes blank to client and '-1' passes nothing)":[null,""],"Start torrent paused":[null,""],"add .torrent to client but do <b style=\"font-weight:900\">not</b> start downloading":[null,""],"Allow high bandwidth":[null,""],"use high bandwidth allocation if priority is high":[null,""],"Test Connection":[null,""],"Windows Shares":[null,""],"Defines your existing windows shares so that we can add them to the browse dialog":[null,""],"Share #{number}":[null,""],"Share label":[null,""],"Hostname or IP":[null,""],"Share path":[null,""],"Subtitles Search":[null,""],"Subtitles Plugin":[null,""],"Plugin Settings":[null,""],"Settings that dictate how SickRage handles subtitles search results.":[null,""],"Search Subtitles":[null,""],"Subtitle Languages":[null,""],"Subtitle Directory":[null,""],"the directory where SickRage should store your <i>Subtitles</i> files.":[null,""],"leave empty if you want store subtitle in episode path.":[null,""],"Subtitle Find Frequency":[null,""],"time in hours between scans (default: 1)":[null,""],"Include Specials":[null,""],"include the show's specials when searching for subtitles?":[null,""],"Perfect matches":[null,""],"only download subtitles that match: release group, video codec, audio codec and resolution":[null,""],"if disabled you may get out of sync subtitles":[null,""],"Subtitles History":[null,""],"log downloaded Subtitle on History page?":[null,""],"Subtitles Multi-Language":[null,""],"append language codes to subtitle filenames?":[null,""],"this option is required if you use multiple subtitle languages":[null,""],"Delete unwanted subtitles":[null,""],"enable to delete unwanted subtitle languages bundled with release":[null,""],"Embedded Subtitles":[null,""],"ignore subtitles embedded inside video file?":[null,""],"this will ignore <u>all</u> embedded subtitles for every video file!":[null,""],"Hearing Impaired Subtitles":[null,""],"download hearing impaired style subtitles?":[null,""],"See":[null,""],"for a script arguments description.":[null,""],"Additional scripts separated by <b>|</b>.":[null,""],"Scripts are called after each episode has searched and downloaded subtitles.":[null,""],"For any scripted languages, include the interpreter executable before the script. See the following example":[null,""],"For Windows:":[null,""],"For Linux / OS X:":[null,""],"Subtitle Providers":[null,""],"Check off and drag the plugins into the order you want them to be used.":[null,""],"At least one plugin is required.":[null,""]," Web-scraping plugin":[null,""],"Provider Settings":[null,""],"Set user and password for each provider":[null,""],"User Name":[null,""],"Change Show":[null,""],"Prev Show":[null,""],"Next Show":[null,""],"Jump to Season":[null,""],"Specials":[null,""],"Poster for":[null,""],"Stars":[null,""],"minutes":[null,"minute"],"View other popular {genre} shows on trakt.tv.":[null,""],"View other popular {imdbgenre} shows on IMDB.":[null,""],"Allowed":[null,""],"Preferred":[null,""],"Originally Airs":[null,""],"Show Status":[null,""],"Default EP Status":[null,""],"Location":[null,""],"Missing":[null,""],"Scene Name":[null,""],"Required Words":[null,""],"Ignored Words":[null,""],"Size":[null,"Velikost"],"Info Language":[null,""],"Subtitles SR Metadata":[null,""],"Season Folders":[null,""],"Paused":[null,""],"Air-by-Date":[null,""],"Sports":[null,""],"DVD Order":[null,""],"Scene Numbering":[null,""],"Select Filtered Episodes":[null,""],"Clear All":[null,""],"Change selected episodes to":[null,""],"Select Columns":[null,""],"NFO":[null,""],"TBN":[null,""],"Episode":[null,""],"Absolute":[null,"Absolutno"],"Scene":[null,""],"Scene Absolute":[null,""],"File Name":[null,"Ime datoteke"],"Airdate":[null,""],"Download":[null,""],"Change the value here if scene numbering differs from the indexer episode numbering":[null,""],"Change the value here if scene absolute numbering differs from the indexer absolute numbering":[null,""],"Manual Search":[null,""],"Do you want to mark this episode as failed?":[null,""],"The episode release name will be added to the failed history, preventing it to be downloaded again.":[null,""],"Do you want to include the current episode quality in the search?":[null,""],"Choosing No will ignore any releases with the same episode quality as the one currently downloaded/snatched.":[null,""],"Download subtitle":[null,""],"Do you want to re-download the subtitle for this language?":[null,""],"It will overwrite your current subtitle":[null,""],"Format":[null,""],"Advanced":[null,""],"Main Settings":[null,""],"Show Location":[null,""],"Preferred Quality":[null,""],"Default Episode Status":[null,""],"this will set the status for future episodes.":[null,""],"this only applies to episode filenames and the contents of metadata files.":[null,""],"search for subtitles":[null,""],"Use SR Metdata":[null,""],"use SickRage metadata when searching for subtitle, this will override the autodiscovered metadata":[null,""],"pause this show (SickRage will not download episodes)":[null,""],"Format Settings":[null,""],"Air by date":[null,""],"check if the show is released as Show.03.02.2010 rather than Show.S02E03.":[null,""],"in case of an air date conflict between regular and special episodes, the later will be ignored.":[null,""],"check if the show is Anime and episodes are released as Show.265 rather than Show.S02E03":[null,""],"check if the show is a sporting or MMA event released as Show.03.02.2010 rather than Show.S02E03":[null,""],"Season folders":[null,""],"group episodes by season folder (uncheck to store in a single folder)":[null,""],"search by scene numbering (uncheck to search by indexer numbering)":[null,""],"use the DVD order instead of the air order":[null,""],"a \"Force Full Update\" is necessary, and if you have existing episodes you need to sort them manually.":[null,""],"comma-separated <i>e.g. \"word1,word2,word3</i>\"":[null,""],"search results with one or more words from this list will be ignored.":[null,""],"e.g. \"word1,word2,word3\"":[null,""],"search results with no words from this list will be ignored.":[null,""],"Scene Exception":[null,""],"this will affect episode search on NZB and torrent providers.":[null,""],"this list appends to the original show name.":[null,""],"WARNING logs":[null,""],"ERROR logs":[null,""],"There are no events to display.":[null,""],"Limit":[null,""],"Layout":[null,""],"HistoryLayout":[null,""],"Compact":[null,""],"Detailed":[null,""],"Time":[null,""],"Provider":[null,""],"Missing Provider":[null,""],"missing provider":[null,""],"Directory":[null,"Mapa"],"Show Name (tvshow.nfo)":[null,""],"Indexer":[null,""],"Enter the folder containing the episode":[null,""],"Process Method to be used":[null,""],"Copy":[null,"Kopiraj"],"Move":[null,"Premakni"],"Hard Link":[null,""],"Symbolic Link":[null,""],"Symbolic Link Reversed":[null,""],"Force already Post Processed Dir/Files":[null,""],"Mark Dir/Files as priority download":[null,""],"(Check it to replace the file even if it exists at higher quality)":[null,""],"Delete files and folders":[null,""],"(Check it to delete files and folders like auto processing)":[null,""],"Don't use processing queue":[null,""],"(If checked this will return the result of the process here, but may be slow!)":[null,""],"Mark download as failed":[null,""],"Process":[null,""],"Download subtitles for this show?":[null,""],"use SickRage metadata when searching for subtitle, <br />this will override the autodiscovered metadata":[null,""],"Status for previously aired episodes":[null,""],"Status for all future episodes":[null,""],"Group episodes by season folder?":[null,""],"Is this show an Anime?":[null,""],"Is this show scene numbered?":[null,""],"Save Defaults":[null,""],"Use current values as the defaults":[null,""],"<p>Select your preferred fansub groups from the <b>Available Groups</b> and add them to the <b>Whitelist</b>. Add groups to the <b>Blacklist</b> to ignore them.</p>\n <p>The <b>Whitelist</b> is checked <i>before</i> the <b>Blacklist</b>.</p>\n <p>Groups are shown as <b>Name</b> | <b>Rating</b> | <b>Number of subbed episodes</b>.</p>\n <p>You may also add any fansub group not listed to either list manually.</p>\n <p>When doing this please note that you can only use groups listed on anidb for this anime.\n <br>If a group is not listed on anidb but subbed this anime, please correct anidb's data.</p>":[null,""],"Whitelist":[null,""],"Available Groups":[null,""],"Add to Whitelist":[null,""],"Add to Blacklist":[null,""],"Blacklist":[null,""],"Custom Group":[null,""],"Allowed Quality:":[null,""],"Preferred Quality:":[null,""],"Filter Show Name":[null,""],"Root":[null,""],"All":[null,"Vse"],"Clear Filter(s)":[null,""],"Poster":[null,""],"Small Poster":[null,""],"Banner":[null,"Pasica"],"Simple":[null,""],"Next Episode":[null,""],"Progress":[null,""],"Direction":[null,""],"Ascending":[null,""],"Descending":[null,""],"Poster Size":[null,""],"Continuing":[null,""],"Ended":[null,""],"Total":[null,""],"Invalid date":[null,""],"No Network":[null,""],"Next Ep":[null,""],"Prev Ep":[null,""],"Show":[null,"Serije"],"Downloads":[null,"Prenosi"],"Active":[null,""],"loading":[null,""],"<p><b><u>Preferred</u></b> qualities will replace those in <b><u>allowed</u></b>, even if they are lower.</p>":[null,""],"New":[null,""],"Set as Default":[null,""],"Remember me":[null,""],"Edit Selected":[null,""],"Subtitle":[null,""],"Default Ep Status":[null,""],"Update":[null,""],"Rescan":[null,""],"Rename":[null,""],"Search Subtitle":[null,""],"Force Metadata Regen":[null,""],"Snatched (Allowed)":[null,""],"Jump to Show":[null,""],"Force Backlog":[null,""],"Manage episodes with status":[null,""],"Manage":[null,""],"None of your episodes have status":[null,""],"Shows containing":[null,""],"episodes":[null,""],"Set checked shows/episodes to":[null,""],"Go":[null,""],"Select all":[null,""],"Clear all":[null,""],"Release":[null,""],"Backlog Search":[null,""],"Not in progress":[null,""],"In Progress":[null,""],"Daily Search":[null,""],"Find Propers Search":[null,""],"Propers search disabled":[null,""],"Subtitle Search":[null,""],"Subtitle search disabled":[null,""],"Search Queue":[null,""],"pending items":[null,""],"Daily":[null,""],"Manual":[null,""],"Changing any settings marked with (<span class=\"separator\">*</span>) will force a refresh of the selected shows.":[null,""],"Selected Shows":[null,""],"Root Directories":[null,""],"Current":[null,""],"Keep":[null,""],"Custom":[null,""],"Group episodes by season folder (set to \"No\" to store in a single folder).":[null,""],"Pause these shows (SickRage will not download episodes).":[null,""],"This will set the status for future episodes.":[null,""],"Search by scene numbering (set to \"No\" to search by indexer numbering).":[null,""],"Set if these shows are Anime and episodes are released as Show.265 rather than Show.S02E03":[null,""],"Set if these shows are sporting or MMA events released as Show.03.02.2010 rather than Show.S02E03.":[null,""],"In case of an air date conflict between regular and special episodes, the later will be ignored.":[null,""],"Set if these shows are released as Show.03.02.2010 rather than Show.S02E03.":[null,""],"Search for subtitles.":[null,""],"All of your episodes have {subsLanguage} subtitles.":[null,""],"Manage episodes without":[null,""],"Episodes without {subsLanguage} subtitles.":[null,""],"Episodes without {subtitleLanguage} (undefined) subtitles.":[null,""],"Download missed subtitles for selected episodes":[null,""],"Performing Restart":[null,""],"Waiting for SickRage to shut down":[null,""],"Waiting for SickRage to start again":[null,""],"Loading the default page":[null,""],"Error: The restart has timed out, perhaps something prevented SickRage from starting again?":[null,""],"Key":[null,""],"Missed":[null,""],"Today":[null,""],"Soon":[null,""],"Later":[null,""],"Subscribe":[null,""],"Date":[null,""],"View Paused":[null,""],"Hidden":[null,""],"Shown":[null,""],"Calendar":[null,"Koledar"],"List":[null,"Seznam"],"Ends":[null,""],"Next Ep Name":[null,""],"Run time":[null,""],"Indexers":[null,""],"No shows for this day":[null,""],"Airs":[null,""],"Plot":[null,""],"Show Update":[null,""],"Version Check":[null,""],"Proper Finder":[null,""],"Post Process":[null,""],"Subtitles Finder":[null,""],"Scheduler":[null,""],"Alive":[null,""],"Start Time":[null,""],"Cycle Time":[null,""],"Next Run":[null,""],"Last Run":[null,""],"Silent":[null,""],"True":[null,""],"N/A":[null,""],"Show id":[null,""],"Show name":[null,""],"Priority":[null,""],"Added":[null,""],"Queue type":[null,""],"LOW":[null,""],"NORMAL":[null,""],"HIGH":[null,""],"Disk Space":[null,""],"Free space":[null,""],"TV Download Directory":[null,""],"Media Root Directories":[null,""],"Preview of the proposed name changes":[null,""],"All Seasons":[null,""],"select all":[null,""],"Rename Selected":[null,""],"Cancel Rename":[null,""],"Old Location":[null,""],"New Location":[null,""],"Trakt API did not return any results, please check your config.":[null,""],"votes":[null,""],"Remove Show":[null,""],"Level":[null,""],"Filter":[null,""],"All non-absolute folder locations are relative to ":[null,""],"Manual Post-Processing":[null,""],"Episode Status Management":[null,""],"Update PLEX":[null,""],"Update KODI":[null,""],"Update Emby":[null,""],"Manage Torrents":[null,""],"Missed Subtitle Management":[null,""],"Help & Info":[null,""],"Backup & Restore":[null,""],"Tools":[null,""],"Support SickRage":[null,""],"View Errors":[null,""],"View Warnings":[null,""],"View Log":[null,""],"Check For Updates":[null,""],"Restart":[null,""],"Shutdown":[null,""],"Logout":[null,""],"Server Status":[null,""],"View overview of snatched episodes":[null,""],"Episodes Downloaded":[null,""],"Memory used":[null,""],"Load time":[null,""],"Branch":[null,""],"Now":[null,""]}}}} \ No newline at end of file diff --git a/locale/sl_SI/LC_MESSAGES/messages.mo b/locale/sl_SI/LC_MESSAGES/messages.mo index a6531ee3de89861fbb8cc41c55c6dd6c1feb5009..e95a3f1aed46ebfcce1faaba0f201b24639ae471 100644 Binary files a/locale/sl_SI/LC_MESSAGES/messages.mo and b/locale/sl_SI/LC_MESSAGES/messages.mo differ diff --git a/locale/sl_SI/LC_MESSAGES/messages.po b/locale/sl_SI/LC_MESSAGES/messages.po index bf8ac279293eec33d2b3ac87c7f1def12996f30e..23c30bbfdc2c9902cf6f2c2cf2866f0c27466e8b 100644 --- a/locale/sl_SI/LC_MESSAGES/messages.po +++ b/locale/sl_SI/LC_MESSAGES/messages.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: sickrage\n" "Report-Msgid-Bugs-To: miigotu@gmail.com\n" -"POT-Creation-Date: 2017-03-25 09:28-0700\n" -"PO-Revision-Date: 2017-03-25 12:30-0400\n" +"POT-Creation-Date: 2017-03-28 09:10-0700\n" +"PO-Revision-Date: 2017-03-28 12:13-0400\n" "Last-Translator: miigotu <miigotu@gmail.com>\n" "Language-Team: Slovenian\n" "MIME-Version: 1.0\n" @@ -90,7 +90,7 @@ msgid "Biography" msgstr "" #: gui/slick/views/config_general.mako:78 gui/slick/views/layouts/main.mako:145 -#: sickbeard/__init__.py:79 sickbeard/webserve.py:3807 +#: sickbeard/__init__.py:79 sickbeard/webserve.py:3778 msgid "History" msgstr "Zgodovina" @@ -103,7 +103,7 @@ msgid "Western" msgstr "" #: gui/slick/views/config_general.mako:79 gui/slick/views/layouts/main.mako:221 -#: sickbeard/__init__.py:80 sickbeard/webserve.py:2385 +#: sickbeard/__init__.py:80 sickbeard/webserve.py:2384 msgid "News" msgstr "Novice" @@ -238,6 +238,34 @@ msgstr "Prezrto" msgid "Subtitled" msgstr "" +#: sickbeard/helpers.py:1887 +msgid "For best results please set the Download Station alias as" +msgstr "" + +#: sickbeard/helpers.py:1888 +msgid "You can check this setting in the Synology DSM" +msgstr "" + +#: sickbeard/helpers.py:1888 sickbeard/helpers.py:1890 +msgid "Control Panel" +msgstr "Nadzorna Plošča" + +#: sickbeard/helpers.py:1888 +msgid "Application Portal" +msgstr "" + +#: sickbeard/helpers.py:1889 +msgid "Make sure you allow DSM to be embedded with iFrames too in" +msgstr "" + +#: sickbeard/helpers.py:1890 +msgid "DSM Settings" +msgstr "" + +#: sickbeard/helpers.py:1890 +msgid "Security" +msgstr "Varnost" + #: sickbeard/logger.py:474 msgid "<No Filter>" msgstr "" @@ -308,15 +336,15 @@ msgstr "" msgid "Event" msgstr "" -#: sickbeard/logger.py:491 sickbeard/webserve.py:1339 sickbeard/webserve.py:1342 -#: sickbeard/webserve.py:1520 sickbeard/webserve.py:1529 sickbeard/webserve.py:1717 -#: sickbeard/webserve.py:1728 sickbeard/webserve.py:1751 sickbeard/webserve.py:1764 -#: sickbeard/webserve.py:1769 sickbeard/webserve.py:1785 sickbeard/webserve.py:1790 -#: sickbeard/webserve.py:1854 sickbeard/webserve.py:1857 sickbeard/webserve.py:1863 -#: sickbeard/webserve.py:1866 sickbeard/webserve.py:1873 sickbeard/webserve.py:1876 -#: sickbeard/webserve.py:1899 sickbeard/webserve.py:1997 sickbeard/webserve.py:2002 -#: sickbeard/webserve.py:2007 sickbeard/webserve.py:2036 sickbeard/webserve.py:2040 -#: sickbeard/webserve.py:2045 +#: sickbeard/logger.py:491 sickbeard/webserve.py:1338 sickbeard/webserve.py:1341 +#: sickbeard/webserve.py:1519 sickbeard/webserve.py:1528 sickbeard/webserve.py:1716 +#: sickbeard/webserve.py:1727 sickbeard/webserve.py:1750 sickbeard/webserve.py:1763 +#: sickbeard/webserve.py:1768 sickbeard/webserve.py:1784 sickbeard/webserve.py:1789 +#: sickbeard/webserve.py:1853 sickbeard/webserve.py:1856 sickbeard/webserve.py:1862 +#: sickbeard/webserve.py:1865 sickbeard/webserve.py:1872 sickbeard/webserve.py:1875 +#: sickbeard/webserve.py:1898 sickbeard/webserve.py:1996 sickbeard/webserve.py:2001 +#: sickbeard/webserve.py:2006 sickbeard/webserve.py:2035 sickbeard/webserve.py:2039 +#: sickbeard/webserve.py:2044 msgid "Error" msgstr "Napaka" @@ -333,6 +361,7 @@ msgstr "" msgid "Main" msgstr "" +#: gui/slick/js/ajaxEpSearch.js:146 gui/slick/js/ajaxEpSearch.js:147 #: gui/slick/views/inc_home_showList.mako:27 sickbeard/show_queue.py:298 msgid "Loading" msgstr "" @@ -372,867 +401,835 @@ msgstr "" msgid "No update needed" msgstr "Posodobitev ni potrebna" -#: sickbeard/webserve.py:170 +#: sickbeard/webserve.py:171 msgid "Mako Error" msgstr "" -#: sickbeard/webserve.py:195 +#: sickbeard/webserve.py:196 msgid "Oops" msgstr "" -#: sickbeard/webserve.py:197 +#: sickbeard/webserve.py:198 msgid "Wrong API key used" msgstr "" -#: gui/slick/views/login.mako:34 sickbeard/webserve.py:302 +#: gui/slick/views/login.mako:34 sickbeard/webserve.py:303 msgid "Login" msgstr "Prijava" -#: sickbeard/webserve.py:406 +#: sickbeard/webserve.py:392 msgid "API Key not generated" msgstr "" -#: sickbeard/webserve.py:409 +#: sickbeard/webserve.py:395 msgid "API Builder" msgstr "" #: gui/slick/views/config_general.mako:77 gui/slick/views/layouts/main.mako:141 -#: sickbeard/webserve.py:512 +#: sickbeard/webserve.py:498 msgid "Schedule" msgstr "" -#: sickbeard/webserve.py:610 +#: sickbeard/webserve.py:609 msgid "Test 1" msgstr "Preizkus 1" -#: sickbeard/webserve.py:610 +#: sickbeard/webserve.py:609 msgid "This is test number 1" msgstr "To je test številka 1" -#: sickbeard/webserve.py:611 +#: sickbeard/webserve.py:610 msgid "Test 2" msgstr "Preizkus 2" -#: sickbeard/webserve.py:611 +#: sickbeard/webserve.py:610 msgid "This is test number 2" msgstr "To je test številka 2" -#: sickbeard/webserve.py:634 +#: sickbeard/webserve.py:633 msgid "You're using the {branch} branch. Please use 'master' unless specifically asked" msgstr "" -#: sickbeard/webserve.py:698 sickbeard/webserve.py:703 +#: sickbeard/webserve.py:697 sickbeard/webserve.py:702 msgid "Invalid show parameters" msgstr "" -#: sickbeard/webserve.py:710 +#: sickbeard/webserve.py:709 msgid "Invalid parameters" msgstr "" -#: sickbeard/webserve.py:713 sickbeard/webserve.py:1899 +#: sickbeard/webserve.py:712 sickbeard/webserve.py:1898 msgid "Episode couldn't be retrieved" msgstr "" -#: sickbeard/webserve.py:759 sickbeard/webserve.py:1268 sickbeard/webserve.py:1297 +#: sickbeard/webserve.py:758 sickbeard/webserve.py:1267 sickbeard/webserve.py:1296 msgid "Home" msgstr "Domov" -#: gui/slick/views/layouts/main.mako:127 sickbeard/webserve.py:759 +#: gui/slick/views/layouts/main.mako:127 sickbeard/webserve.py:758 msgid "Show List" msgstr "Seznam Serij" -#: sickbeard/webserve.py:807 +#: sickbeard/webserve.py:806 msgid "Error: Unsupported Request. Send jsonp request with 'callback' variable in the query string." msgstr "" -#: sickbeard/webserve.py:851 +#: sickbeard/webserve.py:850 msgid "Success. Connected and authenticated" msgstr "" -#: sickbeard/webserve.py:853 +#: sickbeard/webserve.py:852 msgid "Authentication failed. SABnzbd expects" msgstr "" -#: sickbeard/webserve.py:853 +#: sickbeard/webserve.py:852 msgid "as authentication method" msgstr "" -#: sickbeard/webserve.py:855 +#: sickbeard/webserve.py:854 msgid "Unable to connect to host" msgstr "" -#: sickbeard/webserve.py:876 +#: sickbeard/webserve.py:875 msgid "SMS sent successfully" msgstr "" -#: sickbeard/webserve.py:878 +#: sickbeard/webserve.py:877 msgid "Problem sending SMS: {message}" msgstr "" -#: sickbeard/webserve.py:885 +#: sickbeard/webserve.py:884 msgid "Telegram notification succeeded. Check your Telegram clients to make sure it worked" msgstr "" -#: sickbeard/webserve.py:887 +#: sickbeard/webserve.py:886 msgid "Error sending Telegram notification: {message}" msgstr "" -#: sickbeard/webserve.py:894 +#: sickbeard/webserve.py:893 msgid "join notification succeeded. Check your join clients to make sure it worked" msgstr "" -#: sickbeard/webserve.py:896 +#: sickbeard/webserve.py:895 msgid "Error sending join notification: {message}" msgstr "" -#: sickbeard/webserve.py:906 +#: sickbeard/webserve.py:905 msgid " with password" msgstr "" -#: sickbeard/webserve.py:908 +#: sickbeard/webserve.py:907 msgid "Registered and Tested growl successfully {growl_host}" msgstr "" -#: sickbeard/webserve.py:910 +#: sickbeard/webserve.py:909 msgid "Registration and Testing of growl failed {growl_host}" msgstr "" -#: sickbeard/webserve.py:917 +#: sickbeard/webserve.py:916 msgid "Test prowl notice sent successfully" msgstr "" -#: sickbeard/webserve.py:919 +#: sickbeard/webserve.py:918 msgid "Test prowl notice failed" msgstr "" -#: sickbeard/webserve.py:926 +#: sickbeard/webserve.py:925 msgid "Boxcar2 notification succeeded. Check your Boxcar2 clients to make sure it worked" msgstr "" -#: sickbeard/webserve.py:928 +#: sickbeard/webserve.py:927 msgid "Error sending Boxcar2 notification" msgstr "" -#: sickbeard/webserve.py:935 +#: sickbeard/webserve.py:934 msgid "Pushover notification succeeded. Check your Pushover clients to make sure it worked" msgstr "" -#: sickbeard/webserve.py:937 +#: sickbeard/webserve.py:936 msgid "Error sending Pushover notification" msgstr "" -#: sickbeard/webserve.py:949 +#: sickbeard/webserve.py:948 msgid "Key verification successful" msgstr "" -#: sickbeard/webserve.py:951 +#: sickbeard/webserve.py:950 msgid "Unable to verify key" msgstr "" -#: sickbeard/webserve.py:958 +#: sickbeard/webserve.py:957 msgid "Tweet successful, check your twitter to make sure it worked" msgstr "" -#: sickbeard/webserve.py:960 +#: sickbeard/webserve.py:959 msgid "Error sending tweet" msgstr "" -#: sickbeard/webserve.py:965 +#: sickbeard/webserve.py:964 msgid "Please enter a valid account sid" msgstr "" -#: sickbeard/webserve.py:968 +#: sickbeard/webserve.py:967 msgid "Please enter a valid auth token" msgstr "" -#: sickbeard/webserve.py:971 +#: sickbeard/webserve.py:970 msgid "Please enter a valid phone sid" msgstr "" -#: sickbeard/webserve.py:974 +#: sickbeard/webserve.py:973 msgid "Please format the phone number as \"+1-###-###-####\"" msgstr "" -#: sickbeard/webserve.py:978 +#: sickbeard/webserve.py:977 msgid "Authorization successful and number ownership verified" msgstr "" -#: sickbeard/webserve.py:980 +#: sickbeard/webserve.py:979 msgid "Error sending sms" msgstr "" -#: sickbeard/webserve.py:986 +#: sickbeard/webserve.py:985 msgid "Slack message successful" msgstr "" -#: sickbeard/webserve.py:988 +#: sickbeard/webserve.py:987 msgid "Slack message failed" msgstr "" -#: sickbeard/webserve.py:994 +#: sickbeard/webserve.py:993 msgid "Discord message successful" msgstr "" -#: sickbeard/webserve.py:996 +#: sickbeard/webserve.py:995 msgid "Discord message failed" msgstr "" -#: sickbeard/webserve.py:1006 +#: sickbeard/webserve.py:1005 msgid "Test KODI notice sent successfully to {kodi_host}" msgstr "" -#: sickbeard/webserve.py:1008 +#: sickbeard/webserve.py:1007 msgid "Test KODI notice failed to {kodi_host}" msgstr "" -#: sickbeard/webserve.py:1023 +#: sickbeard/webserve.py:1022 msgid "Successful test notice sent to Plex Home Theater ... {plex_clients}" msgstr "" -#: sickbeard/webserve.py:1025 +#: sickbeard/webserve.py:1024 msgid "Test failed for Plex Home Theater ... {plex_clients}" msgstr "" -#: sickbeard/webserve.py:1028 +#: sickbeard/webserve.py:1027 msgid "Tested Plex Home Theater(s)" msgstr "" -#: sickbeard/webserve.py:1042 +#: sickbeard/webserve.py:1041 msgid "Successful test of Plex Media Server(s) ... {plex_servers}" msgstr "" -#: sickbeard/webserve.py:1044 +#: sickbeard/webserve.py:1043 msgid "Test failed, No Plex Media Server host specified" msgstr "" -#: sickbeard/webserve.py:1046 +#: sickbeard/webserve.py:1045 msgid "Test failed for Plex Media Server(s) ... {plex_servers}" msgstr "" -#: sickbeard/webserve.py:1049 +#: sickbeard/webserve.py:1048 msgid "Tested Plex Media Server host(s)" msgstr "" -#: sickbeard/webserve.py:1057 +#: sickbeard/webserve.py:1056 msgid "Tried sending desktop notification via libnotify" msgstr "" -#: sickbeard/webserve.py:1066 +#: sickbeard/webserve.py:1065 msgid "Test notice sent successfully to {emby_host}" msgstr "" -#: sickbeard/webserve.py:1068 +#: sickbeard/webserve.py:1067 msgid "Test notice failed to {emby_host}" msgstr "" -#: sickbeard/webserve.py:1076 +#: sickbeard/webserve.py:1075 msgid "Successfully started the scan update" msgstr "" -#: sickbeard/webserve.py:1078 +#: sickbeard/webserve.py:1077 msgid "Test failed to start the scan update" msgstr "" -#: sickbeard/webserve.py:1097 +#: sickbeard/webserve.py:1096 msgid "Test notice sent successfully to {nmj2_host}" msgstr "" -#: sickbeard/webserve.py:1099 +#: sickbeard/webserve.py:1098 msgid "Test notice failed to {nmj2_host}" msgstr "" -#: sickbeard/webserve.py:1119 +#: sickbeard/webserve.py:1118 msgid "Trakt Authorized" msgstr "" -#: sickbeard/webserve.py:1120 +#: sickbeard/webserve.py:1119 msgid "Trakt Not Authorized!" msgstr "" -#: sickbeard/webserve.py:1184 +#: sickbeard/webserve.py:1183 msgid "Test email sent successfully! Check inbox." msgstr "" -#: sickbeard/webserve.py:1186 +#: sickbeard/webserve.py:1185 msgid "ERROR: {last_error}" msgstr "" -#: sickbeard/webserve.py:1193 +#: sickbeard/webserve.py:1192 msgid "Test NMA notice sent successfully" msgstr "" -#: sickbeard/webserve.py:1195 +#: sickbeard/webserve.py:1194 msgid "Test NMA notice failed" msgstr "" -#: sickbeard/webserve.py:1202 +#: sickbeard/webserve.py:1201 msgid "Pushalot notification succeeded. Check your Pushalot clients to make sure it worked" msgstr "" -#: sickbeard/webserve.py:1204 +#: sickbeard/webserve.py:1203 msgid "Error sending Pushalot notification" msgstr "" -#: sickbeard/webserve.py:1211 +#: sickbeard/webserve.py:1210 msgid "Pushbullet notification succeeded. Check your device to make sure it worked" msgstr "" -#: sickbeard/webserve.py:1213 sickbeard/webserve.py:1223 sickbeard/webserve.py:1232 +#: sickbeard/webserve.py:1212 sickbeard/webserve.py:1222 sickbeard/webserve.py:1231 msgid "Error sending Pushbullet notification" msgstr "" #: gui/slick/views/displayShow.mako:436 gui/slick/views/inc_home_showList.mako:174 -#: gui/slick/views/manage.mako:49 sickbeard/webserve.py:1249 +#: gui/slick/views/manage.mako:49 sickbeard/webserve.py:1248 msgid "Status" msgstr "" -#: sickbeard/webserve.py:1268 sickbeard/webserve.py:1297 +#: sickbeard/webserve.py:1267 sickbeard/webserve.py:1296 msgid "Restarting SickRage" msgstr "Ponovni zagon SickRage" -#: sickbeard/webserve.py:1300 +#: sickbeard/webserve.py:1299 msgid "Update Failed" msgstr "" -#: sickbeard/webserve.py:1301 +#: sickbeard/webserve.py:1300 msgid "Update wasn't successful, not restarting. Check your log for more information." msgstr "" -#: sickbeard/webserve.py:1308 +#: sickbeard/webserve.py:1307 msgid "Checking out branch" msgstr "" -#: sickbeard/webserve.py:1311 +#: sickbeard/webserve.py:1310 msgid "Already on branch" msgstr "" -#: sickbeard/webserve.py:1339 +#: sickbeard/webserve.py:1338 msgid "Invalid show ID: {show}" msgstr "" -#: sickbeard/webserve.py:1342 sickbeard/webserve.py:1871 sickbeard/webserve.py:2002 -#: sickbeard/webserve.py:2040 +#: sickbeard/webserve.py:1341 sickbeard/webserve.py:1870 sickbeard/webserve.py:2001 +#: sickbeard/webserve.py:2039 msgid "Show not in show list" msgstr "" #: gui/slick/views/inc_rootDirs.mako:31 gui/slick/views/manage.mako:38 -#: gui/slick/views/manage_massEdit.mako:74 sickbeard/webserve.py:1358 -#: sickbeard/webserve.py:2027 +#: gui/slick/views/manage_massEdit.mako:74 sickbeard/webserve.py:1357 +#: sickbeard/webserve.py:2026 msgid "Edit" msgstr "Uredi" -#: sickbeard/webserve.py:1368 +#: sickbeard/webserve.py:1367 msgid "This show is in the process of being downloaded - the info below is incomplete." msgstr "" -#: sickbeard/webserve.py:1371 +#: sickbeard/webserve.py:1370 msgid "The information on this page is in the process of being updated." msgstr "" -#: sickbeard/webserve.py:1374 +#: sickbeard/webserve.py:1373 msgid "The episodes below are currently being refreshed from disk" msgstr "" -#: sickbeard/webserve.py:1377 +#: sickbeard/webserve.py:1376 msgid "Currently downloading subtitles for this show" msgstr "" -#: sickbeard/webserve.py:1380 +#: sickbeard/webserve.py:1379 msgid "This show is queued to be refreshed." msgstr "" -#: sickbeard/webserve.py:1383 +#: sickbeard/webserve.py:1382 msgid "This show is queued and awaiting an update." msgstr "" -#: sickbeard/webserve.py:1386 +#: sickbeard/webserve.py:1385 msgid "This show is queued and awaiting subtitles download." msgstr "" -#: gui/slick/js/core.js:4081 sickbeard/webserve.py:1391 +#: gui/slick/js/core.js:4081 sickbeard/webserve.py:1390 msgid "Resume" msgstr "" #: gui/slick/js/core.js:4081 gui/slick/views/viewlogs.mako:12 -#: sickbeard/webserve.py:1393 +#: sickbeard/webserve.py:1392 msgid "Pause" msgstr "" #: gui/slick/views/editShow.mako:345 gui/slick/views/inc_blackwhitelist.mako:40 #: gui/slick/views/inc_blackwhitelist.mako:85 gui/slick/views/manage.mako:58 -#: gui/slick/views/manage_failedDownloads.mako:43 sickbeard/webserve.py:1395 +#: gui/slick/views/manage_failedDownloads.mako:43 sickbeard/webserve.py:1394 msgid "Remove" msgstr "Odstrani" -#: sickbeard/webserve.py:1396 +#: sickbeard/webserve.py:1395 msgid "Re-scan files" msgstr "" -#: sickbeard/webserve.py:1397 +#: sickbeard/webserve.py:1396 msgid "Force Full Update" msgstr "" -#: sickbeard/webserve.py:1398 +#: sickbeard/webserve.py:1397 msgid "Update show in KODI" msgstr "" -#: sickbeard/webserve.py:1399 +#: sickbeard/webserve.py:1398 msgid "Update show in Emby" msgstr "" -#: sickbeard/webserve.py:1402 +#: sickbeard/webserve.py:1401 msgid "Hide specials" msgstr "" -#: sickbeard/webserve.py:1404 +#: sickbeard/webserve.py:1403 msgid "Show specials" msgstr "" -#: sickbeard/webserve.py:1406 sickbeard/webserve.py:2030 sickbeard/webserve.py:2031 +#: sickbeard/webserve.py:1405 sickbeard/webserve.py:2029 sickbeard/webserve.py:2030 msgid "Preview Rename" msgstr "" -#: sickbeard/webserve.py:1409 +#: sickbeard/webserve.py:1408 msgid "Download Subtitles" msgstr "" -#: sickbeard/webserve.py:1498 +#: sickbeard/webserve.py:1497 msgid "No scene exceptions" msgstr "" -#: sickbeard/webserve.py:1516 sickbeard/webserve.py:1764 sickbeard/webserve.py:1785 +#: sickbeard/webserve.py:1515 sickbeard/webserve.py:1763 sickbeard/webserve.py:1784 msgid "Invalid show ID" msgstr "" -#: sickbeard/webserve.py:1525 sickbeard/webserve.py:1769 sickbeard/webserve.py:1790 +#: sickbeard/webserve.py:1524 sickbeard/webserve.py:1768 sickbeard/webserve.py:1789 msgid "Unable to find the specified show" msgstr "" -#: sickbeard/webserve.py:1550 +#: sickbeard/webserve.py:1549 msgid "Unable to retreive Fansub Groups from AniDB." msgstr "" -#: sickbeard/webserve.py:1559 sickbeard/webserve.py:1561 +#: sickbeard/webserve.py:1558 sickbeard/webserve.py:1560 msgid "Edit Show" msgstr "Uredi Serijo" -#: sickbeard/webserve.py:1637 sickbeard/webserve.py:1671 +#: sickbeard/webserve.py:1636 sickbeard/webserve.py:1670 msgid "Unable to refresh this show: {error}" msgstr "" -#: sickbeard/webserve.py:1663 +#: sickbeard/webserve.py:1662 msgid "New location <tt>{location}</tt> does not exist" msgstr "" -#: sickbeard/webserve.py:1688 +#: sickbeard/webserve.py:1687 msgid "Unable to update show: {error}" msgstr "" -#: sickbeard/webserve.py:1695 +#: sickbeard/webserve.py:1694 msgid "Unable to force an update on scene exceptions of the show." msgstr "" -#: sickbeard/webserve.py:1702 +#: sickbeard/webserve.py:1701 msgid "Unable to force an update on scene numbering of the show." msgstr "" -#: sickbeard/webserve.py:1708 sickbeard/webserve.py:3540 +#: sickbeard/webserve.py:1707 sickbeard/webserve.py:3539 msgid "{num_errors:d} error{plural} while saving changes:" msgstr "" -#: sickbeard/webserve.py:1719 +#: sickbeard/webserve.py:1718 msgid "{show_name} has been {paused_resumed}" msgstr "" -#: sickbeard/webserve.py:1719 +#: sickbeard/webserve.py:1718 msgid "resumed" msgstr "" -#: sickbeard/webserve.py:1719 +#: sickbeard/webserve.py:1718 msgid "paused" msgstr "" -#: sickbeard/webserve.py:1731 +#: sickbeard/webserve.py:1730 msgid "{show_name} has been {deleted_trashed} {was_deleted}" msgstr "" -#: sickbeard/webserve.py:1733 +#: sickbeard/webserve.py:1732 msgid "deleted" msgstr "" -#: sickbeard/webserve.py:1733 +#: sickbeard/webserve.py:1732 msgid "trashed" msgstr "" -#: sickbeard/webserve.py:1734 +#: sickbeard/webserve.py:1733 msgid "(media untouched)" msgstr "" -#: sickbeard/webserve.py:1734 +#: sickbeard/webserve.py:1733 msgid "(with all related media)" msgstr "" -#: sickbeard/webserve.py:1755 +#: sickbeard/webserve.py:1754 msgid "Unable to refresh this show." msgstr "" -#: sickbeard/webserve.py:1775 +#: sickbeard/webserve.py:1774 msgid "Unable to update this show." msgstr "" -#: sickbeard/webserve.py:1814 +#: sickbeard/webserve.py:1813 msgid "Library update command sent to KODI host(s)): {kodi_hosts}" msgstr "" -#: sickbeard/webserve.py:1816 +#: sickbeard/webserve.py:1815 msgid "Unable to contact one or more KODI host(s)): {kodi_hosts}" msgstr "" -#: sickbeard/webserve.py:1825 +#: sickbeard/webserve.py:1824 msgid "Library update command sent to Plex Media Server host: {plex_server}" msgstr "" -#: sickbeard/webserve.py:1828 +#: sickbeard/webserve.py:1827 msgid "Unable to contact Plex Media Server host: {plex_server}" msgstr "" -#: sickbeard/webserve.py:1840 +#: sickbeard/webserve.py:1839 msgid "Library update command sent to Emby host: {emby_host}" msgstr "" -#: sickbeard/webserve.py:1842 +#: sickbeard/webserve.py:1841 msgid "Unable to contact Emby host: {emby_host}" msgstr "" -#: sickbeard/webserve.py:1852 sickbeard/webserve.py:2036 +#: sickbeard/webserve.py:1851 sickbeard/webserve.py:2035 msgid "You must specify a show and at least one episode" msgstr "" -#: sickbeard/webserve.py:1861 +#: sickbeard/webserve.py:1860 msgid "Invalid status" msgstr "" -#: sickbeard/webserve.py:1954 +#: sickbeard/webserve.py:1953 msgid "Backlog was automatically started for the following seasons of <b>{show_name}</b>" msgstr "" #: gui/slick/views/displayShow.mako:74 gui/slick/views/displayShow.mako:79 -#: gui/slick/views/displayShow.mako:404 sickbeard/webserve.py:1961 -#: sickbeard/webserve.py:1980 +#: gui/slick/views/displayShow.mako:404 sickbeard/webserve.py:1960 +#: sickbeard/webserve.py:1979 msgid "Season" msgstr "Sezona" -#: sickbeard/webserve.py:1968 +#: sickbeard/webserve.py:1967 msgid "Backlog started" msgstr "" -#: sickbeard/webserve.py:1973 +#: sickbeard/webserve.py:1972 msgid "Retrying Search was automatically started for the following season of <b>{show_name}</b>" msgstr "" -#: sickbeard/webserve.py:1987 +#: sickbeard/webserve.py:1986 msgid "Retry Search started" msgstr "" -#: sickbeard/webserve.py:1997 +#: sickbeard/webserve.py:1996 msgid "You must specify a show" msgstr "" -#: sickbeard/webserve.py:2007 sickbeard/webserve.py:2045 +#: sickbeard/webserve.py:2006 sickbeard/webserve.py:2044 msgid "Can't rename episodes when the show dir is missing." msgstr "" -#: sickbeard/webserve.py:2212 sickbeard/webserve.py:2233 +#: sickbeard/webserve.py:2211 sickbeard/webserve.py:2232 msgid "New subtitles downloaded: {new_subtitle_languages}" msgstr "" -#: sickbeard/webserve.py:2215 sickbeard/webserve.py:2236 +#: sickbeard/webserve.py:2214 sickbeard/webserve.py:2235 msgid "No subtitles downloaded" msgstr "" #: gui/slick/views/config_general.mako:80 gui/slick/views/layouts/main.mako:222 -#: sickbeard/webserve.py:2363 +#: sickbeard/webserve.py:2362 msgid "IRC" msgstr "IRC" -#: sickbeard/webserve.py:2376 +#: sickbeard/webserve.py:2375 msgid "Could not load news from the repo. [Click here for news.md])({news_url})" msgstr "" -#: sickbeard/webserve.py:2383 sickbeard/webserve.py:2401 +#: sickbeard/webserve.py:2382 sickbeard/webserve.py:2400 msgid "The was a problem connecting to github, please refresh and try again" msgstr "" -#: sickbeard/webserve.py:2398 +#: sickbeard/webserve.py:2397 msgid "Could not load changes from the repo. [Click here for CHANGES.md]({changes_url})" msgstr "" -#: gui/slick/views/layouts/main.mako:223 sickbeard/webserve.py:2403 +#: gui/slick/views/layouts/main.mako:223 sickbeard/webserve.py:2402 msgid "Changelog" msgstr "" -#: gui/slick/views/layouts/main.mako:190 sickbeard/webserve.py:2413 -#: sickbeard/webserve.py:3855 sickbeard/webserve.py:4341 +#: gui/slick/views/layouts/main.mako:190 sickbeard/webserve.py:2412 +#: sickbeard/webserve.py:3826 sickbeard/webserve.py:4312 msgid "Post Processing" msgstr "" -#: gui/slick/views/layouts/main.mako:128 sickbeard/webserve.py:2445 +#: gui/slick/views/layouts/main.mako:128 sickbeard/webserve.py:2444 msgid "Add Shows" msgstr "Dodaj Serijo" -#: sickbeard/webserve.py:2510 +#: sickbeard/webserve.py:2509 msgid "No folders selected." msgstr "" -#: sickbeard/webserve.py:2632 +#: sickbeard/webserve.py:2631 msgid "New Show" msgstr "Nova Serija" -#: sickbeard/webserve.py:2647 +#: sickbeard/webserve.py:2646 msgid "Trending Shows" msgstr "" -#: sickbeard/webserve.py:2649 sickbeard/webserve.py:2772 +#: sickbeard/webserve.py:2648 sickbeard/webserve.py:2771 msgid "Popular Shows" msgstr "Priljubljene Serije" -#: sickbeard/webserve.py:2651 sickbeard/webserve.py:2665 +#: sickbeard/webserve.py:2650 sickbeard/webserve.py:2664 msgid "Most Anticipated Shows" msgstr "" -#: sickbeard/webserve.py:2653 +#: sickbeard/webserve.py:2652 msgid "Most Collected Shows" msgstr "" -#: sickbeard/webserve.py:2655 +#: sickbeard/webserve.py:2654 msgid "Most Watched Shows" msgstr "" -#: sickbeard/webserve.py:2657 +#: sickbeard/webserve.py:2656 msgid "Most Played Shows" msgstr "" -#: sickbeard/webserve.py:2659 +#: sickbeard/webserve.py:2658 msgid "Recommended Shows" msgstr "" -#: gui/slick/views/addShows_trendingShows.mako:60 sickbeard/webserve.py:2661 +#: gui/slick/views/addShows_trendingShows.mako:60 sickbeard/webserve.py:2660 msgid "New Shows" msgstr "" -#: gui/slick/views/addShows_trendingShows.mako:61 sickbeard/webserve.py:2663 +#: gui/slick/views/addShows_trendingShows.mako:61 sickbeard/webserve.py:2662 msgid "Season Premieres" msgstr "" -#: sickbeard/webserve.py:2792 sickbeard/webserve.py:2793 +#: sickbeard/webserve.py:2791 sickbeard/webserve.py:2792 msgid "Existing Show" msgstr "" -#: sickbeard/webserve.py:2871 +#: sickbeard/webserve.py:2870 msgid "No root directories setup, please go back and add one." msgstr "" -#: sickbeard/webserve.py:2883 sickbeard/webserve.py:3002 +#: sickbeard/webserve.py:2882 sickbeard/webserve.py:3001 msgid "Show added" msgstr "" -#: sickbeard/webserve.py:2883 +#: sickbeard/webserve.py:2882 msgid "Adding the specified show {show_name}" msgstr "" -#: sickbeard/webserve.py:2924 +#: sickbeard/webserve.py:2923 msgid "Missing params, no Indexer ID or folder: {show_to_add} and {root_dir}/{show_path}" msgstr "" -#: sickbeard/webserve.py:2933 +#: sickbeard/webserve.py:2932 msgid "Unknown error. Unable to add show due to problem with show selection." msgstr "" -#: sickbeard/webserve.py:2957 sickbeard/webserve.py:2967 +#: sickbeard/webserve.py:2956 sickbeard/webserve.py:2966 msgid "Unable to add show" msgstr "" -#: sickbeard/webserve.py:2957 +#: sickbeard/webserve.py:2956 msgid "Folder {show_dir} exists already" msgstr "" -#: sickbeard/webserve.py:2968 +#: sickbeard/webserve.py:2967 msgid "Unable to create the folder {show_dir}, can't add the show" msgstr "" -#: sickbeard/webserve.py:3002 +#: sickbeard/webserve.py:3001 msgid "Adding the specified show into {show_dir}" msgstr "" -#: sickbeard/webserve.py:3078 +#: sickbeard/webserve.py:3077 msgid "Shows Added" msgstr "" -#: sickbeard/webserve.py:3079 +#: sickbeard/webserve.py:3078 msgid "Automatically added {num_shows} from their existing metadata files" msgstr "" -#: gui/slick/views/layouts/main.mako:153 sickbeard/webserve.py:3096 +#: gui/slick/views/layouts/main.mako:153 sickbeard/webserve.py:3095 msgid "Mass Update" msgstr "" -#: sickbeard/webserve.py:3134 sickbeard/webserve.py:3161 sickbeard/webserve.py:3237 -#: sickbeard/webserve.py:3238 +#: sickbeard/webserve.py:3133 sickbeard/webserve.py:3160 sickbeard/webserve.py:3236 +#: sickbeard/webserve.py:3237 msgid "Episode Overview" msgstr "" -#: sickbeard/webserve.py:3270 +#: sickbeard/webserve.py:3269 msgid "Missing Subtitles" msgstr "" -#: gui/slick/views/layouts/main.mako:154 sickbeard/webserve.py:3356 -#: sickbeard/webserve.py:3357 +#: gui/slick/views/layouts/main.mako:154 sickbeard/webserve.py:3355 +#: sickbeard/webserve.py:3356 msgid "Backlog Overview" msgstr "" -#: sickbeard/webserve.py:3481 +#: sickbeard/webserve.py:3480 msgid "Mass Edit" msgstr "" -#: sickbeard/webserve.py:3586 +#: sickbeard/webserve.py:3585 msgid "Unable to update show: {excption_format}" msgstr "" -#: sickbeard/webserve.py:3594 +#: sickbeard/webserve.py:3593 msgid "Unable to refresh show {show_name}: {excption_format}" msgstr "" -#: sickbeard/webserve.py:3605 +#: sickbeard/webserve.py:3604 msgid "Errors encountered" msgstr "" -#: gui/slick/views/config_general.mako:261 sickbeard/webserve.py:3611 +#: gui/slick/views/config_general.mako:261 sickbeard/webserve.py:3610 msgid "Updates" msgstr "Posodobitve" -#: sickbeard/webserve.py:3616 +#: sickbeard/webserve.py:3615 msgid "Refreshes" msgstr "" -#: sickbeard/webserve.py:3621 +#: sickbeard/webserve.py:3620 msgid "Renames" msgstr "Preimenuj" #: gui/slick/views/displayShow.mako:260 gui/slick/views/displayShow.mako:435 #: gui/slick/views/editShow.mako:119 gui/slick/views/inc_addShowOptions.mako:20 -#: gui/slick/views/manage_massEdit.mako:262 sickbeard/webserve.py:3626 -#: sickbeard/webserve.py:5244 +#: gui/slick/views/manage_massEdit.mako:262 sickbeard/webserve.py:3625 +#: sickbeard/webserve.py:5215 msgid "Subtitles" msgstr "Podnapisi" -#: sickbeard/webserve.py:3631 +#: sickbeard/webserve.py:3630 msgid "The following actions were queued" msgstr "" -#: sickbeard/webserve.py:3651 -msgid "For best results please set the Download Station alias as" -msgstr "" - -#: sickbeard/webserve.py:3652 -msgid "You can check this setting in the Synology DSM" -msgstr "" - -#: sickbeard/webserve.py:3652 sickbeard/webserve.py:3654 -msgid "Control Panel" -msgstr "Nadzorna Plošča" - -#: sickbeard/webserve.py:3652 -msgid "Application Portal" -msgstr "" - -#: sickbeard/webserve.py:3653 -msgid "Make sure you allow DSM to be embedded with iFrames too in" -msgstr "" - -#: sickbeard/webserve.py:3654 -msgid "DSM Settings" -msgstr "" - -#: sickbeard/webserve.py:3654 -msgid "Security" -msgstr "Varnost" - -#: gui/slick/views/layouts/main.mako:167 sickbeard/webserve.py:3662 -msgid "Manage Torrents" -msgstr "" - -#: gui/slick/views/layouts/main.mako:170 sickbeard/webserve.py:3683 +#: gui/slick/views/layouts/main.mako:170 sickbeard/webserve.py:3654 msgid "Failed Downloads" msgstr "" -#: gui/slick/views/layouts/main.mako:155 sickbeard/webserve.py:3701 +#: gui/slick/views/layouts/main.mako:155 sickbeard/webserve.py:3672 msgid "Manage Searches" msgstr "" -#: sickbeard/webserve.py:3709 +#: sickbeard/webserve.py:3680 msgid "Backlog search started" msgstr "" -#: sickbeard/webserve.py:3719 +#: sickbeard/webserve.py:3690 msgid "Daily search started" msgstr "" -#: sickbeard/webserve.py:3728 +#: sickbeard/webserve.py:3699 msgid "Find propers search started" msgstr "" -#: sickbeard/webserve.py:3737 +#: sickbeard/webserve.py:3708 msgid "Subtitle search started" msgstr "" -#: sickbeard/webserve.py:3801 +#: sickbeard/webserve.py:3772 msgid "Remove Selected" msgstr "" -#: sickbeard/webserve.py:3802 +#: sickbeard/webserve.py:3773 msgid "Clear History" msgstr "Počisti zgodovino" -#: sickbeard/webserve.py:3803 +#: sickbeard/webserve.py:3774 msgid "Trim History" msgstr "" -#: sickbeard/webserve.py:3823 +#: sickbeard/webserve.py:3794 msgid "Selected history entries removed" msgstr "" -#: sickbeard/webserve.py:3830 +#: sickbeard/webserve.py:3801 msgid "History cleared" msgstr "" -#: sickbeard/webserve.py:3837 +#: sickbeard/webserve.py:3808 msgid "Removed history entries older than 30 days" msgstr "" -#: gui/slick/views/layouts/main.mako:185 sickbeard/webserve.py:3850 +#: gui/slick/views/layouts/main.mako:185 sickbeard/webserve.py:3821 msgid "General" msgstr "Splošno" -#: sickbeard/webserve.py:3851 sickbeard/webserve.py:4143 +#: sickbeard/webserve.py:3822 sickbeard/webserve.py:4114 msgid "Backup/Restore" msgstr "" -#: gui/slick/views/layouts/main.mako:187 sickbeard/webserve.py:3852 -#: sickbeard/webserve.py:4206 +#: gui/slick/views/layouts/main.mako:187 sickbeard/webserve.py:3823 +#: sickbeard/webserve.py:4177 msgid "Search Settings" msgstr "" -#: gui/slick/views/layouts/main.mako:188 sickbeard/webserve.py:3853 -#: sickbeard/webserve.py:4518 +#: gui/slick/views/layouts/main.mako:188 sickbeard/webserve.py:3824 +#: sickbeard/webserve.py:4489 msgid "Search Providers" msgstr "" -#: gui/slick/views/layouts/main.mako:189 sickbeard/webserve.py:3854 +#: gui/slick/views/layouts/main.mako:189 sickbeard/webserve.py:3825 msgid "Subtitles Settings" msgstr "Nastavitve podnapisov" -#: gui/slick/views/layouts/main.mako:191 sickbeard/webserve.py:3856 -#: sickbeard/webserve.py:4964 +#: gui/slick/views/layouts/main.mako:191 sickbeard/webserve.py:3827 +#: sickbeard/webserve.py:4935 msgid "Notifications" msgstr "Obvestila" @@ -1240,142 +1237,142 @@ msgstr "Obvestila" #: gui/slick/views/home.mako:35 gui/slick/views/inc_addShowOptions.mako:79 #: gui/slick/views/inc_home_showList.mako:179 gui/slick/views/layouts/main.mako:192 #: gui/slick/views/manage.mako:44 gui/slick/views/manage_massEdit.mako:202 -#: sickbeard/webserve.py:3857 sickbeard/webserve.py:5309 +#: sickbeard/webserve.py:3828 sickbeard/webserve.py:5280 msgid "Anime" msgstr "" -#: sickbeard/webserve.py:3895 sickbeard/webserve.py:3896 +#: sickbeard/webserve.py:3866 sickbeard/webserve.py:3867 msgid "SickRage Configuration" msgstr "" -#: sickbeard/webserve.py:3910 +#: sickbeard/webserve.py:3881 msgid "Config - Shares" msgstr "" -#: sickbeard/webserve.py:3910 +#: sickbeard/webserve.py:3881 msgid "Windows Shares Configuration" msgstr "" -#: sickbeard/webserve.py:3937 +#: sickbeard/webserve.py:3908 msgid "Saved Shares" msgstr "" -#: sickbeard/webserve.py:3937 +#: sickbeard/webserve.py:3908 msgid "Your Windows share settings have been saved" msgstr "" -#: sickbeard/webserve.py:3948 +#: sickbeard/webserve.py:3919 msgid "Config - General" msgstr "" -#: sickbeard/webserve.py:3948 +#: sickbeard/webserve.py:3919 msgid "General Configuration" msgstr "" -#: sickbeard/webserve.py:3988 +#: sickbeard/webserve.py:3959 msgid "Saved Defaults" msgstr "" -#: sickbeard/webserve.py:3988 +#: sickbeard/webserve.py:3959 msgid "Your \"add show\" defaults have been set to your current selections." msgstr "" -#: sickbeard/webserve.py:4095 +#: sickbeard/webserve.py:4066 msgid "Unable to create directory {directory}, log directory not changed." msgstr "" -#: sickbeard/webserve.py:4103 +#: sickbeard/webserve.py:4074 msgid "Unable to create directory {directory}, https cert directory not changed." msgstr "" -#: sickbeard/webserve.py:4107 +#: sickbeard/webserve.py:4078 msgid "Unable to create directory {directory}, https key directory not changed." msgstr "" -#: sickbeard/webserve.py:4126 sickbeard/webserve.py:4324 sickbeard/webserve.py:4456 -#: sickbeard/webserve.py:5227 +#: sickbeard/webserve.py:4097 sickbeard/webserve.py:4295 sickbeard/webserve.py:4427 +#: sickbeard/webserve.py:5198 msgid "Error(s) Saving Configuration" msgstr "" -#: sickbeard/webserve.py:4129 sickbeard/webserve.py:4327 sickbeard/webserve.py:4458 -#: sickbeard/webserve.py:4950 sickbeard/webserve.py:5230 sickbeard/webserve.py:5294 -#: sickbeard/webserve.py:5323 +#: sickbeard/webserve.py:4100 sickbeard/webserve.py:4298 sickbeard/webserve.py:4429 +#: sickbeard/webserve.py:4921 sickbeard/webserve.py:5201 sickbeard/webserve.py:5265 +#: sickbeard/webserve.py:5294 msgid "Configuration Saved" msgstr "" -#: sickbeard/webserve.py:4142 +#: sickbeard/webserve.py:4113 msgid "Config - Backup/Restore" msgstr "" -#: sickbeard/webserve.py:4205 +#: sickbeard/webserve.py:4176 msgid "Config - Episode Search" msgstr "" -#: sickbeard/webserve.py:4340 +#: sickbeard/webserve.py:4311 msgid "Config - Post Processing" msgstr "" -#: sickbeard/webserve.py:4380 +#: sickbeard/webserve.py:4351 msgid "Unpacking Not Supported, disabling unpack setting" msgstr "" -#: sickbeard/webserve.py:4431 +#: sickbeard/webserve.py:4402 msgid "You tried saving an invalid normal naming config, not saving your naming settings" msgstr "" -#: sickbeard/webserve.py:4439 +#: sickbeard/webserve.py:4410 msgid "You tried saving an invalid anime naming config, not saving your naming settings" msgstr "" -#: sickbeard/webserve.py:4517 +#: sickbeard/webserve.py:4488 msgid "Config - Providers" msgstr "" -#: sickbeard/webserve.py:4547 +#: sickbeard/webserve.py:4518 msgid "No Provider Name specified" msgstr "" -#: sickbeard/webserve.py:4549 +#: sickbeard/webserve.py:4520 msgid "No Provider Url specified" msgstr "" -#: sickbeard/webserve.py:4551 +#: sickbeard/webserve.py:4522 msgid "No Provider Api key specified" msgstr "" -#: sickbeard/webserve.py:4963 +#: sickbeard/webserve.py:4934 msgid "Config - Notifications" msgstr "" -#: sickbeard/webserve.py:5243 +#: sickbeard/webserve.py:5214 msgid "Config - Subtitles" msgstr "" -#: sickbeard/webserve.py:5308 +#: sickbeard/webserve.py:5279 msgid "Config - Anime" msgstr "" -#: sickbeard/webserve.py:5336 +#: sickbeard/webserve.py:5307 msgid "Clear Errors" msgstr "Počisti Napake" -#: sickbeard/webserve.py:5342 +#: sickbeard/webserve.py:5313 msgid "Clear Warnings" msgstr "" -#: sickbeard/webserve.py:5348 +#: sickbeard/webserve.py:5319 msgid "Submit Errors" msgstr "" -#: sickbeard/webserve.py:5363 +#: sickbeard/webserve.py:5334 msgid "Logs & Errors" msgstr "" -#: sickbeard/webserve.py:5388 +#: sickbeard/webserve.py:5359 msgid "Log File" msgstr "" -#: sickbeard/webserve.py:5388 +#: sickbeard/webserve.py:5359 msgid "Logs" msgstr "" @@ -1383,30 +1380,166 @@ msgstr "" msgid "This is a test notification from SickRage" msgstr "" -#: gui/slick/js/core.js:481 gui/slick/js/core.js:502 gui/slick/js/core.js:524 -#: gui/slick/js/core.js:548 gui/slick/js/core.js:573 gui/slick/js/core.js:596 -#: gui/slick/js/core.js:625 gui/slick/js/core.js:645 gui/slick/js/core.js:690 -#: gui/slick/js/core.js:769 gui/slick/js/core.js:829 gui/slick/js/core.js:849 -#: gui/slick/js/core.js:879 gui/slick/js/core.js:909 gui/slick/js/core.js:969 -#: gui/slick/js/core.js:1046 gui/slick/js/core.js:1066 gui/slick/js/core.js:1085 +#: gui/slick/js/browser.js:6 +msgid "Choose Directory" +msgstr "" + +#: gui/slick/js/core.js:443 +msgid "Select log file folder location" +msgstr "" + +#: gui/slick/js/core.js:445 +msgid "Select CSS file" +msgstr "" + +#: gui/slick/js/core.js:469 +msgid "Select backup folder to save to" +msgstr "" + +#: gui/slick/js/core.js:470 +msgid "Select backup files to restore" +msgstr "" + +#: gui/slick/js/core.js:479 gui/slick/js/core.js:500 gui/slick/js/core.js:522 +#: gui/slick/js/core.js:546 gui/slick/js/core.js:571 gui/slick/js/core.js:594 +#: gui/slick/js/core.js:623 gui/slick/js/core.js:643 gui/slick/js/core.js:688 +#: gui/slick/js/core.js:767 gui/slick/js/core.js:827 gui/slick/js/core.js:847 +#: gui/slick/js/core.js:877 gui/slick/js/core.js:907 gui/slick/js/core.js:967 +#: gui/slick/js/core.js:1044 gui/slick/js/core.js:1064 gui/slick/js/core.js:1083 msgid "Please fill out the necessary fields above." msgstr "" -#: gui/slick/js/core.js:1328 gui/slick/js/core.js:1378 gui/slick/js/core.js:1427 -#: gui/slick/js/core.js:1493 +#: gui/slick/js/core.js:680 +msgid "<b>Step 1:</b> Confirm Authorization" +msgstr "" + +#: gui/slick/js/core.js:977 +msgid "Check blacklist name; the value needs to be a trakt slug" +msgstr "" + +#: gui/slick/js/core.js:1022 +msgid "You must provide a recipient email address!" +msgstr "" + +#: gui/slick/js/core.js:1107 +msgid "You didn't supply a Pushbullet api key" +msgstr "" + +#: gui/slick/js/core.js:1133 gui/slick/js/core.js:1162 +msgid "Don't forget to save your new pushbullet settings." +msgstr "" + +#: gui/slick/js/core.js:1262 +msgid "Select TV Download Directory" +msgstr "" + +#: gui/slick/js/core.js:1263 +msgid "Select Unpack Directory" +msgstr "" + +#: gui/slick/js/core.js:1326 gui/slick/js/core.js:1376 gui/slick/js/core.js:1425 +#: gui/slick/js/core.js:1491 msgid "This pattern is invalid." msgstr "" -#: gui/slick/js/core.js:1336 gui/slick/js/core.js:1386 gui/slick/js/core.js:1435 -#: gui/slick/js/core.js:1501 +#: gui/slick/js/core.js:1334 gui/slick/js/core.js:1384 gui/slick/js/core.js:1433 +#: gui/slick/js/core.js:1499 msgid "This pattern would be invalid without the folders, using it will force \"Season Folders\" on for all shows." msgstr "" -#: gui/slick/js/core.js:1344 gui/slick/js/core.js:1394 gui/slick/js/core.js:1443 -#: gui/slick/js/core.js:1509 +#: gui/slick/js/core.js:1342 gui/slick/js/core.js:1392 gui/slick/js/core.js:1441 +#: gui/slick/js/core.js:1507 msgid "This pattern is valid." msgstr "" +#: gui/slick/js/core.js:1818 +msgid "Select .nzb black hole/watch location" +msgstr "" + +#: gui/slick/js/core.js:1819 +msgid "Select .torrent black hole/watch location" +msgstr "" + +#: gui/slick/js/core.js:1820 +msgid "Select .torrent download location" +msgstr "" + +#: gui/slick/js/core.js:1900 +msgid "Minimum seeding time is" +msgstr "" + +#: gui/slick/js/core.js:1902 +msgid "URL to your uTorrent client (e.g. http://localhost:8000)" +msgstr "" + +#: gui/slick/js/core.js:1905 +msgid "Stop seeding when inactive for" +msgstr "" + +#: gui/slick/js/core.js:1911 +msgid "URL to your Transmission client (e.g. http://localhost:9091)" +msgstr "" + +#: gui/slick/js/core.js:1921 +msgid "URL to your Deluge client (e.g. http://localhost:8112)" +msgstr "" + +#: gui/slick/js/core.js:1930 +msgid "IP or Hostname of your Deluge Daemon (e.g. scgi://localhost:58846)" +msgstr "" + +#: gui/slick/js/core.js:1937 +msgid "URL to your Synology DS client (e.g. http://localhost:5000)" +msgstr "" + +#: gui/slick/js/core.js:1941 +msgid "URL to your rTorrent client (e.g. scgi://localhost:5000 <br> or https://localhost/rutorrent/plugins/httprpc/action.php)" +msgstr "" + +#: gui/slick/js/core.js:1952 +msgid "URL to your qBittorrent client (e.g. http://localhost:8080)" +msgstr "" + +#: gui/slick/js/core.js:1962 +msgid "URL to your MLDonkey (e.g. http://localhost:4080)" +msgstr "" + +#: gui/slick/js/core.js:1974 +msgid "URL to your putio client (e.g. http://localhost:8080)" +msgstr "" + +#: gui/slick/js/core.js:1975 +msgid "<a herf=\"https://app.put.io/oauth/apps/new\" target=\"_blank\"> Create a new OAuth app for put.io</a>" +msgstr "" + +#: gui/slick/js/core.js:1977 +msgid "Put.io Parent Folder" +msgstr "" + +#: gui/slick/js/core.js:1978 +msgid "Put.io OAuth Token" +msgstr "" + +#: gui/slick/js/core.js:3383 gui/slick/views/displayShow.mako:410 +msgid "Show Episodes" +msgstr "" + +#: gui/slick/js/core.js:3388 gui/slick/views/displayShow.mako:408 +msgid "Hide Episodes" +msgstr "" + +#: gui/slick/js/core.js:3396 +msgid "Select Show Location" +msgstr "" + +#: gui/slick/js/core.js:3460 +msgid "Select Unprocessed Episode Folder" +msgstr "" + +#: gui/slick/js/core.js:3790 +msgid "DELETED" +msgstr "" + #: gui/slick/js/core.js:4082 msgid "Resume updating the log on this page." msgstr "" @@ -1415,6 +1548,26 @@ msgstr "" msgid "Pause updating the log on this page." msgstr "" +#: gui/slick/js/core.js:4323 +msgid "searching {searchingFor}..." +msgstr "" + +#: gui/slick/js/core.js:4334 +msgid "search timed out, try again or try another indexer" +msgstr "" + +#: gui/slick/js/core.js:4503 +msgid "loading folders..." +msgstr "" + +#: gui/slick/js/parsers.js:7 gui/slick/js/parsers.js:8 +#: gui/slick/js/plotTooltip.js:6 gui/slick/js/sceneExceptionsTooltip.js:6 +#: gui/slick/views/inc_home_showList.mako:209 +#: gui/slick/views/inc_home_showList.mako:215 +#: gui/slick/views/inc_home_showList.mako:231 +msgid "Loading..." +msgstr "" + #: gui/slick/views/404.mako:5 msgid "You have reached this page by accident, please check the url." msgstr "" @@ -5711,14 +5864,6 @@ msgstr "" msgid "Select Columns" msgstr "" -#: gui/slick/views/displayShow.mako:408 -msgid "Hide Episodes" -msgstr "" - -#: gui/slick/views/displayShow.mako:410 -msgid "Show Episodes" -msgstr "" - #: gui/slick/views/displayShow.mako:424 msgid "NFO" msgstr "" @@ -6232,12 +6377,6 @@ msgstr "" msgid "loading" msgstr "" -#: gui/slick/views/inc_home_showList.mako:209 -#: gui/slick/views/inc_home_showList.mako:215 -#: gui/slick/views/inc_home_showList.mako:231 -msgid "Loading..." -msgstr "" - #: gui/slick/views/inc_qualityChooser.mako:31 msgid "<p><b><u>Preferred</u></b> qualities will replace those in <b><u>allowed</u></b>, even if they are lower.</p>" msgstr "" @@ -6775,6 +6914,10 @@ msgstr "" msgid "Update Emby" msgstr "" +#: gui/slick/views/layouts/main.mako:167 +msgid "Manage Torrents" +msgstr "" + #: gui/slick/views/layouts/main.mako:173 msgid "Missed Subtitle Management" msgstr "" diff --git a/locale/sv_SE/LC_MESSAGES/messages.json b/locale/sv_SE/LC_MESSAGES/messages.json index 4a20d1630a6677fc5cc7a755103650e6358e511e..4e7f5462aad2b2b53ce5ff081e192395c2a2350d 100644 --- a/locale/sv_SE/LC_MESSAGES/messages.json +++ b/locale/sv_SE/LC_MESSAGES/messages.json @@ -1 +1 @@ -{"messages":{"domain":"messages","locale_data":{"messages":{"100":[null,"100"],"250":[null,"250"],"500":[null,"500"],"":{"domain":"messages","plural_forms":"nplurals=2; plural=(n != 1);","lang":"sv_SE"},"Drama":[null,"Drama"],"Mystery":[null,"Deckare"],"Science-Fiction":[null,"Science Fiction"],"Crime":[null,"Deckare"],"Action":[null,"Åtgärd"],"Comedy":[null,"Komedi"],"Thriller":[null,"Thriller"],"Animation":[null,"Animering"],"Family":[null,"Familj"],"Fantasy":[null,"Fantasy"],"Adventure":[null,"Äventyr"],"Horror":[null,"Skräck"],"Film-Noir":[null,"Film-Noir"],"Sci-Fi":[null,"Sci-Fi"],"Romance":[null,"Romans"],"Sport":[null,"Sport"],"War":[null,"Krig"],"Biography":[null,"Biografi"],"History":[null,"Historik"],"Music":[null,"Musik"],"Western":[null,"Western"],"News":[null,"Nyheter"],"Sitcom":[null,"Situationskomedi"],"Reality-TV":[null,"Reality-TV"],"Documentary":[null,"Dokumentär"],"Game-Show":[null,"Gameshow"],"Musical":[null,"Musikal"],"Talk-Show":[null,"Talkshow"],"Started Download":[null,"Hämtning påbörjad"],"Download Finished":[null,"Nerladdning klar"],"Subtitle Download Finished":[null,"Undertext nerladdad"],"SickRage Updated":[null,"SickRage uppdaterad"],"SickRage Updated To Commit#: ":[null,"SickRage uppdaterad till version#: "],"SickRage new login":[null,"SickRage ny inloggning"],"New login from IP: {0}. http://geomaplookup.net/?ip={0}":[null,"Ny inloggning från IP: {0}. http://geomaplookup.net/?IP={0}"],"Repeat":[null,"Upprepa"],"Repeat (Separated)":[null,"Upprepa (åtskilt)"],"Extend":[null,"Förläng"],"Extend (Limited)":[null,"Förläng (Begränsat)"],"Extend (Limited, E-prefixed)":[null,"Förläng (Begränsat, E-prefix)"],"Downloaded":[null,"Nedladdad"],"Snatched":[null,"Hämtad"],"Snatched (Proper)":[null,"Hämtad (Proper)"],"Failed":[null,"Misslyckad"],"Snatched (Best)":[null,"Hämtad (Best)"],"Archived":[null,"Arkiverad"],"Unknown":[null,"Okänd"],"Unaired":[null,"Kommande"],"Skipped":[null,"Hoppat över"],"Wanted":[null,"Önskad"],"Ignored":[null,"Ignorerad"],"Subtitled":[null,"Undertextad"],"<No Filter>":[null,"<Inget filter>"],"Daily Searcher":[null,"Dagliga sökaren"],"Backlog":[null,"Backlog"],"Show Updater":[null,"Serieuppdateraren"],"Check Version":[null,"Kontrollera Version"],"Show Queue":[null,"Visa kö"],"Search Queue (All)":[null,"Sök-kö (alla)"],"Search Queue (Daily Searcher)":[null,"Sök kö (Dagliga sökaren)"],"Search Queue (Backlog)":[null,"Sök kö (Backlog)"],"Search Queue (Manual)":[null,"Sök-kö (manuell)"],"Search Queue (Retry/Failed)":[null,"Sök-kö (försök igen/misslyckades)"],"Search Queue (RSS)":[null,"Sök kö (RSS)"],"Find Propers":[null,"Hitta Propers"],"Postprocessor":[null,"Postprocessor"],"Find Subtitles":[null,"Hitta undertexter"],"Trakt Checker":[null,"Trakt kontroll"],"Event":[null,"Händelse"],"Error":[null,"Fel"],"Tornado":[null,"Tornado"],"Thread":[null,"Tråd"],"Main":[null,"Primär"],"Loading":[null,""],"New update found for SickRage, starting auto-updater":[null,"Ny uppdatering för SickRage hittad, startar automatisk updatering"],"Update was successful":[null,"Uppdateringen var framgångsrik"],"Update failed!":[null,"Uppdateringen misslyckades!"],"Backup":[null,"Säkerhetskopiera"],"Config backup in progress...":[null,"Säkerhetskopiering av konfigurationen pågår..."],"Config backup successful, updating...":[null,"Säkerhetskopiering av konfiguration var framgångsrik, uppdaterar..."],"Config backup failed, aborting update":[null,"Säkerhetskopiering av konfiguration misslyckades, avbryter uppdatering"],"No update needed":[null,"Ingen uppdatering behövs"],"Mako Error":[null,"Mako fel"],"Oops":[null,"Hoppsan"],"Wrong API key used":[null,"Fel API nyckel användes"],"Login":[null,"Användarnamn"],"API Key not generated":[null,"API nyckeln är inte genererad"],"API Builder":[null,"API Byggare"],"Schedule":[null,"Schemalägg"],"Test 1":[null,"Test 1"],"This is test number 1":[null,"Detta är test nummer 1"],"Test 2":[null,"Test 2"],"This is test number 2":[null,"Detta är test nummer 2"],"You're using the {branch} branch. Please use 'master' unless specifically asked":[null,"Du använder {branch} branchen. Vänligen använd 'master' om inget annat speciellt efterfrågats"],"Invalid show parameters":[null,"Ogiltiga show parametrar"],"Invalid parameters":[null,"Ogiltiga parametrar"],"Episode couldn't be retrieved":[null,"Avsnittet kunde inte hämtas"],"Home":[null,"Startsida"],"Show List":[null,"Visa lista"],"Error: Unsupported Request. Send jsonp request with 'callback' variable in the query string.":[null,"Fel: Ogiltig begäran. Skicka jsonp begäran med \"callback\" variabel i frågesträngen."],"Success. Connected and authenticated":[null,"Lyckades. Ansluten och autentiserad"],"Authentication failed. SABnzbd expects":[null,"Autentisering misslyckades. SABnzbd förväntad"],"as authentication method":[null,"som autentiseringsmetod"],"Unable to connect to host":[null,"Det går inte att ansluta till värden"],"SMS sent successfully":[null,"SMS har skickats"],"Problem sending SMS: {message}":[null,"Problem att skicka SMS: {message}"],"Telegram notification succeeded. Check your Telegram clients to make sure it worked":[null,"Telegram notifiering lyckades. Kontrollera dina Telegram klienter för att verifiera"],"Error sending Telegram notification: {message}":[null,"Problem att skicka Telegram notifiering: {message}"],"join notification succeeded. Check your join clients to make sure it worked":[null,"gå med notifiering lyckades. Kontrollera dina gå med klienter för att verifiera"],"Error sending join notification: {message}":[null,"Problem att skicka gå med notifiering: {message}"]," with password":[null," med lösenord"],"Registered and Tested growl successfully {growl_host}":[null,"Registrering och testning av Growl lyckades {growl_host}"],"Registration and Testing of growl failed {growl_host}":[null,"Registrering och testning av Growl misslyckades {growl_host}"],"Test prowl notice sent successfully":[null,"Test prowl meddelande lyckades"],"Test prowl notice failed":[null,"Test prowl meddelande misslyckades"],"Boxcar2 notification succeeded. Check your Boxcar2 clients to make sure it worked":[null,"Boxcar2 notifiering lyckades. Kolla din Boxcar2 klient för att säkerställa att det funkade"],"Error sending Boxcar2 notification":[null,"Ett fel uppstod vid Boxcar2 notifiering"],"Pushover notification succeeded. Check your Pushover clients to make sure it worked":[null,"Pushover notifiering lyckades. Kontrollera din Pushover klient för att säkerställa att det funkade"],"Error sending Pushover notification":[null,"Ett fel uppstod vid Pushover notifiering"],"Key verification successful":[null,"Nyckel-verifiering lyckades"],"Unable to verify key":[null,"Det gick inte att verifiera nyckeln"],"Tweet successful, check your twitter to make sure it worked":[null,"Tweet lyckades, kontrollera din twitter för att säkerställa att det funkade"],"Error sending tweet":[null,"Misslyckades att sända tweet"],"Please enter a valid account sid":[null,"Vänligen ange ett giltigt konto-sid"],"Please enter a valid auth token":[null,"Vänligen ange en giltig auth-token"],"Please enter a valid phone sid":[null,"Vänligen ange ett giltigt telefon-sid"],"Please format the phone number as \"+1-###-###-####\"":[null,"Vänligen formatera telefonnummer som \"+ 1-###-###-###\""],"Authorization successful and number ownership verified":[null,"Authentisering lyckades och numrets ägarskap verifierades"],"Error sending sms":[null,"Fel vid skickande av sms"],"Slack message successful":[null,"Slack meddelande lyckades"],"Slack message failed":[null,"Slack meddelande misslyckades"],"Discord message successful":[null,"Discord-meddelande lyckades"],"Discord message failed":[null,"Discord-meddelande misslyckades"],"Test KODI notice sent successfully to {kodi_host}":[null,"KODI test-notifiering lyckades till {kodi_host}"],"Test KODI notice failed to {kodi_host}":[null,"KODI test-notifiering misslyckades till {kodi_host}"],"Successful test notice sent to Plex Home Theater ... {plex_clients}":[null,"Lyckat test-notifiering blev sänt till Plex Home Theater ... {plex_clients}"],"Test failed for Plex Home Theater ... {plex_clients}":[null,"Test misslyckades för Plex Home Theater ... {plex_clients}"],"Tested Plex Home Theater(s)":[null,"Testade Plex Home Theater(s)"],"Successful test of Plex Media Server(s) ... {plex_servers}":[null,"Lyckat test för Plex Media Server(s) ... {plex_servers}"],"Test failed, No Plex Media Server host specified":[null,"Test misslyckades. Ingen specificerad Plex Media Server värd"],"Test failed for Plex Media Server(s) ... {plex_servers}":[null,"Test misslyckades för Plex Media Server(s) ... {plex_servers}"],"Tested Plex Media Server host(s)":[null,"Testade Plex Media Server Värd(ar)"],"Tried sending desktop notification via libnotify":[null,"Försökte skicka skrivbordsnotifiering via libnotify"],"Test notice sent successfully to {emby_host}":[null,"Lyckad testnotis skickades till {emby_host}"],"Test notice failed to {emby_host}":[null,"Testnotis misslyckades till {emby_host}"],"Successfully started the scan update":[null,"Lyckad start av skanningsuppdateringen"],"Test failed to start the scan update":[null,"Testet misslyckades att starta skanningsuppdateringen"],"Test notice sent successfully to {nmj2_host}":[null,"Lyckad testnotis skickades till {nmj2_host}"],"Test notice failed to {nmj2_host}":[null,"Testnotis misslyckades till {nmj2_host}"],"Trakt Authorized":[null,"Trakt auktoriserad"],"Trakt Not Authorized!":[null,"Trakt inte auktoriserad!"],"Test email sent successfully! Check inbox.":[null,"E-posttest lyckades! Kolla inkorgen."],"ERROR: {last_error}":[null,"FEL: {last_error}"],"Test NMA notice sent successfully":[null,"NMA-testnotis skickades framgångsrikt"],"Test NMA notice failed":[null,"NMA-testnotis misslyckades"],"Pushalot notification succeeded. Check your Pushalot clients to make sure it worked":[null,"Pushalot notifiering lyckades. Kolla din Pushalot klient för att säkerställa att det funkade"],"Error sending Pushalot notification":[null,"Fel vid sändning av Pushalot-notis"],"Pushbullet notification succeeded. Check your device to make sure it worked":[null,"Pushbullet notifiering lyckades. Kontrollera din enhet för att säkerställa att det funkade"],"Error sending Pushbullet notification":[null,"Ett fel uppstod vid sändning av Pushbullet notifiering"],"Status":[null,"Status"],"Restarting SickRage":[null,"Startar om SickRage"],"Update Failed":[null,"Uppdateringen misslyckades"],"Update wasn't successful, not restarting. Check your log for more information.":[null,"Uppdateringen lyckades ej, startar inte om. Se logg för mer information."],"Checking out branch":[null,"Kontrollera branch"],"Already on branch":[null,"Redan på den branchen"],"Invalid show ID: {show}":[null,"Ogiltigt serie ID: {show}"],"Show not in show list":[null,"Serie finns inte med på serielistan"],"Edit":[null,"Redigera"],"This show is in the process of being downloaded - the info below is incomplete.":[null,"Denna serie håller på att laddas ner. Informationen nedan är ofullständig."],"The information on this page is in the process of being updated.":[null,"Informationen på denna sida håller på att uppdateras."],"The episodes below are currently being refreshed from disk":[null,"Avsnitten nedan uppdateras på disken"],"Currently downloading subtitles for this show":[null,"Laddar ner undertexter för denna serie"],"This show is queued to be refreshed.":[null,"Denna serie står i kö för att bli uppdaterad."],"This show is queued and awaiting an update.":[null,"Denna serie står i kö för att uppdateras."],"This show is queued and awaiting subtitles download.":[null,"Denna serie står i kö för att ladda ner undertexter."],"Resume":[null,"Fortsätt"],"Pause":[null,"Paus"],"Remove":[null,"Ta bort"],"Re-scan files":[null,"Skanna om filer"],"Force Full Update":[null,"Tvinga full uppdatering"],"Update show in KODI":[null,"Uppdatera serie i KODI"],"Update show in Emby":[null,"Uppdatera serie i Emby"],"Hide specials":[null,"Dölj specialer"],"Show specials":[null,"Visa specialer"],"Preview Rename":[null,"Förhandsgranska namn byte"],"Download Subtitles":[null,"Ladda ner undertexter"],"No scene exceptions":[null,"Inget scene undantag"],"Invalid show ID":[null,"Ogiltigt serie ID"],"Unable to find the specified show":[null,"Det gick inte att hitta den angivna serien"],"Unable to retreive Fansub Groups from AniDB.":[null,"Gick inte att hämta Fansub Groups från AniDB."],"Edit Show":[null,"Redigera program"],"Unable to refresh this show: {error}":[null,"Det gick inte att uppdatera denna serien: {error}"],"New location <tt>{location}</tt> does not exist":[null,"Ny plats <tt>{location}</tt> finns inte"],"Unable to update show: {error}":[null,"Misslyckades att uppdatera serie: {error}"],"Unable to force an update on scene exceptions of the show.":[null,"Kan inte att tvinga en uppdatering av scene undantag för denna serie."],"Unable to force an update on scene numbering of the show.":[null,"Kan inte att tvinga en uppdatering av scene numrering av denna serie."],"{num_errors:d} error{plural} while saving changes:":[null,"{num_errors:d} fel{plural} vid sparande av ändringar:"],"{show_name} has been {paused_resumed}":[null,"{show_name} har blivit {paused_resumed}"],"resumed":[null,"återupptogs"],"paused":[null,"pausad"],"{show_name} has been {deleted_trashed} {was_deleted}":[null,"{show_name} har blivit {deleted_trashed} {was_deleted}"],"deleted":[null,"raderad"],"trashed":[null,"slängd"],"(media untouched)":[null,"(media orörd)"],"(with all related media)":[null,"(med all relaterad media)"],"Unable to refresh this show.":[null,"Kan inte att uppdatera denna serie."],"Unable to update this show.":[null,"Kan inte uppdatera denna serie."],"Library update command sent to KODI host(s)): {kodi_hosts}":[null,"Biblioteksuppdateringskommando skickat till KODI värd(ar)): {kodi_hosts}"],"Unable to contact one or more KODI host(s)): {kodi_hosts}":[null,"Misslyckad anslutning till en eller flera KODI servrar: {kodi_hosts}"],"Library update command sent to Plex Media Server host: {plex_server}":[null,"Biblioteksuppdateringskommandot skickades till Plex Media Server: {plex_server}"],"Unable to contact Plex Media Server host: {plex_server}":[null,"Det går inte att kontakta PMS servern: {plex_server}"],"Library update command sent to Emby host: {emby_host}":[null,"Biblioteksuppdateringskommandot skickades till Emby Host: {emby_host}"],"Unable to contact Emby host: {emby_host}":[null,"Det går inte att kontakta Emby servern: {emby_host}"],"You must specify a show and at least one episode":[null,"Du måste välja en serie och minst ett avsnitt"],"Invalid status":[null,"Ogiltig status"],"Backlog was automatically started for the following seasons of <b>{show_name}</b>":[null,"Backlog startades automatiskt för följande säsonger av <b>{show_name}</b>"],"Season":[null,"Säsong"],"Backlog started":[null,"Backlog startad"],"Retrying Search was automatically started for the following season of <b>{show_name}</b>":[null,"Försöker söka på nytt blev automatisk startat för följande säsong av <b>{show_name}</b>"],"Retry Search started":[null,"Nytt sökförsök påbörjades"],"You must specify a show":[null,"Du måste välja en serie"],"Can't rename episodes when the show dir is missing.":[null,"Kan inte byta namn på avsnitt när seriens bibliotek saknas."],"New subtitles downloaded: {new_subtitle_languages}":[null,"Nya undertexter hämtade: {new_subtitle_languages}"],"No subtitles downloaded":[null,"Inga undertexter nerladdade"],"IRC":[null,"IRC"],"Could not load news from the repo. [Click here for news.md])({news_url})":[null,"Kunde inte ladda nyheter från repo. [Click here for news.md]) ({news_url})"],"The was a problem connecting to github, please refresh and try again":[null,"Det var problem med att ansluta till github, vänligen uppdatera och försök igen"],"Could not load changes from the repo. [Click here for CHANGES.md]({changes_url})":[null,"Kunde inte ladda ändringar från repo. [Click here for CHANGES.md] ({changes_url})"],"Changelog":[null,"Ändringslogg"],"Post Processing":[null,"Efterbearbetning"],"Add Shows":[null,"Lägg till program"],"No folders selected.":[null,"Inga mappar har valts."],"New Show":[null,"Ny Serie"],"Trending Shows":[null,"Populära serier"],"Popular Shows":[null,"Populär serie"],"Most Anticipated Shows":[null,"Mest efterlängtade serier"],"Most Collected Shows":[null,""],"Most Watched Shows":[null,""],"Most Played Shows":[null,""],"Recommended Shows":[null,""],"New Shows":[null,"Nya TV-serier"],"Season Premieres":[null,"Säsongs premiärer"],"Existing Show":[null,"Existerande Serie"],"No root directories setup, please go back and add one.":[null,"Inga rotkataloger har valts, gå tillbaka och lägga till en."],"Show added":[null,"Serien tillagd"],"Adding the specified show {show_name}":[null,"Lägger till den angivna serien {show_name}"],"Missing params, no Indexer ID or folder: {show_to_add} and {root_dir}/{show_path}":[null,"Parametrar saknas, inget index ID eller mapp: {show_to_add} och {root_dir}/{show_path}"],"Unknown error. Unable to add show due to problem with show selection.":[null,"Okänt fel. Misslyckades att lägga till serie på grund av problem med val av serie."],"Unable to add show":[null,"Det gick inte att lägga till serien"],"Folder {show_dir} exists already":[null,"Mappen {show_dir} finns redan"],"Unable to create the folder {show_dir}, can't add the show":[null,"Kan inte skapa mapp {show_dir}, kan inte lägga till serien"],"Adding the specified show into {show_dir}":[null,"Lägger till den angivna serien i {show_dir}"],"Shows Added":[null,"Serier tillagda"],"Automatically added {num_shows} from their existing metadata files":[null,"La automatiskt till {num_shows} från deras existerande metadatafiler"],"Mass Update":[null,"Massuppdatering"],"Episode Overview":[null,"Episod översikt"],"Missing Subtitles":[null,"Saknade undertexter"],"Backlog Overview":[null,"Backlog Översikt"],"Mass Edit":[null,"Mass redigera"],"Unable to update show: {excption_format}":[null,"Det gick inte att uppdatera serien: {excption_format}"],"Unable to refresh show {show_name}: {excption_format}":[null,"Gick inte att uppdatera serien {show_name}: {excption_format}"],"Errors encountered":[null,"Fel uppstod"],"Updates":[null,"Uppdateringar"],"Refreshes":[null,"Uppdateringar"],"Renames":[null,"Byter namn"],"Subtitles":[null,"Undertexter"],"The following actions were queued":[null,"Följande åtgärder köades"],"For best results please set the Download Station alias as":[null,"För bästa resultat vänligen ange Download Station alias som"],"You can check this setting in the Synology DSM":[null,"Du kan kontrollera inställningen i Synology DSM"],"Control Panel":[null,"Kontrollpanel"],"Application Portal":[null,"Applikationsportal"],"Make sure you allow DSM to be embedded with iFrames too in":[null,"Kontrollera att du tillåter DSM att integreras med iFrames också i"],"DSM Settings":[null,"DSM-inställningar"],"Security":[null,"Säkerhet"],"Manage Torrents":[null,"Hantera Torrents"],"Failed Downloads":[null,"Misslyckade nedladdningar"],"Manage Searches":[null,"Hantera sökningar"],"Backlog search started":[null,"Backlog sök startad"],"Daily search started":[null,"Daglig sökning startades"],"Find propers search started":[null,"Hitta Proper-sök startad"],"Subtitle search started":[null,"Untertextsökning startad"],"Remove Selected":[null,"Ta bort markerad"],"Clear History":[null,"Rensa historik"],"Trim History":[null,"Trimma historia"],"Selected history entries removed":[null,""],"History cleared":[null,"Historik rensad"],"Removed history entries older than 30 days":[null,"Tog bort historik äldre än 30 dagar"],"General":[null,"Allmänt"],"Backup/Restore":[null,"Backup / Återställ"],"Search Settings":[null,"Sökinställningar"],"Search Providers":[null,"Sökleverantörer"],"Subtitles Settings":[null,"Undertextinställningar"],"Notifications":[null,"Notifikationer"],"Anime":[null,"Anime"],"SickRage Configuration":[null,"SickRage konfiguration"],"Config - Shares":[null,""],"Windows Shares Configuration":[null,""],"Saved Shares":[null,""],"Your Windows share settings have been saved":[null,""],"Config - General":[null,"Inställningar - Allmäna"],"General Configuration":[null,"Allmäna inställningar"],"Saved Defaults":[null,"Spara som standard"],"Your \"add show\" defaults have been set to your current selections.":[null,"Dina standardinställningar för \"lägg till serie\" har ändrats till de aktuella urvalen."],"Unable to create directory {directory}, log directory not changed.":[null,"Gick inte att skapa katalog {directory}, loggkatalog oförändrad."],"Unable to create directory {directory}, https cert directory not changed.":[null,"Gick inte att skapa katalogen {directory}, https cert katalog oförändrad."],"Unable to create directory {directory}, https key directory not changed.":[null,"Gick inte att skapa katalogen {directory}, https nyckelkatalog oförändrad."],"Error(s) Saving Configuration":[null,"Fel när konfigurationen sparades"],"Configuration Saved":[null,"Konfigurationen sparad"],"Config - Backup/Restore":[null,"Inställning - Backup/Återställ"],"Config - Episode Search":[null,"Inställning - Episod Sök"],"Config - Post Processing":[null,"Inställning - efterbearbetning"],"Unpacking Not Supported, disabling unpack setting":[null,"Uppackning stöds inte, inaktiverar uppackningsinställning"],"You tried saving an invalid normal naming config, not saving your naming settings":[null,""],"You tried saving an invalid anime naming config, not saving your naming settings":[null,"Du försökte spara en ogiltig anime namngivningskonfigurering, sparar inte namngivningsinställningarna"],"Config - Providers":[null,"Alternativ - Leverantör"],"No Provider Name specified":[null,"Ingen sökleverantör specificerad"],"No Provider Url specified":[null,"Ingen sökleverantörsadress specificerad"],"No Provider Api key specified":[null,"Ingen sökleverantör Api-nyckel specificerad"],"Config - Notifications":[null,"Alternativ - Notifikationer"],"Config - Subtitles":[null,"Alternativ - Undertexter"],"Config - Anime":[null,"Inställningar - Anime"],"Clear Errors":[null,"Rensa fel"],"Clear Warnings":[null,"Rensa varningar"],"Submit Errors":[null,"Skicka in fel"],"Logs & Errors":[null,"Loggar & Fel"],"Log File":[null,"Loggfil"],"Logs":[null,"Loggar"],"This is a test notification from SickRage":[null,"Detta är en test-notifikation från SickRage"],"Please fill out the necessary fields above.":[null,""],"This pattern is invalid.":[null,""],"This pattern would be invalid without the folders, using it will force \"Season Folders\" on for all shows.":[null,""],"This pattern is valid.":[null,""],"Resume updating the log on this page.":[null,""],"Pause updating the log on this page.":[null,""],"You have reached this page by accident, please check the url.":[null,"Du har nått denna sida av en slump, vänligen kontrollera URL:en."],"A mako error has occured.<br>\n If this happened during an update a simple page refresh may be the solution.<br>\n Mako errors that happen during updates may be a one time error if there were significant ui changes.":[null,"Ett mako fel har uppstått.<br>\n Om detta inträffade under en uppdatering, kan en enkel siduppdatering vara lösningen.<br>\n Mako fel som inträffar under uppdateringar kan vara en engångsföreteelse om användargränssnittet förändrats omfattande."],"Show/Hide Error":[null,"Visa/Dölj fel"],"Add New Show":[null,"Lägg till TV-serie"],"For shows that you haven't downloaded yet, this option finds a show on theTVDB.com, creates a directory for it's episodes, and adds it to SickRage.":[null,"För TV-serier du inte har laddat hem än, kommer detta alternativ hitta serien på theTVDB.com, skapa en katalog för avsnitten och lägga till serien i SickRage."],"Add From Trakt Lists":[null,"Lägg till från Trakt listor"],"For shows that you haven't downloaded yet, this option lets you choose from a show from one of the Trakt lists to add to SickRage.":[null,"För TV-serier du inte har laddat hem än, detta alternativ låter dig välja en serie från en av Trakts listorna och lägga till serien i SickRage."],"Add From IMDB's Popular Shows":[null,"Lägg till från IMDB's populära TV-serier"],"View IMDB's list of the most popular shows. This feature uses IMDB's MOVIEMeter algorithm to identify popular TV Series.":[null,"Visa IMDB's lista över de mest populära TV-serierna. Denna funktion använder IMDB's MOVIEMeter algoritm för att identifiera populära TV-serier."],"Add Existing Shows":[null,"Lägg till existerande TV-serier"],"Use this option to add shows that already have a folder created on your hard drive. SickRage will scan your existing metadata/episodes and add the show accordingly.":[null,"Använd detta alternativ för att lägga till TV-serier som redan har en katalog skapad på hårddisken. SickRage kommer söka igenom katalogen efter avsnitt/metadata och följaktligen lägga till TV-serier."],"Add Existing Show":[null,"Lägg till existerande TV-serie"],"Manage Directories":[null,"Hantera kataloger"],"Customize Options":[null,"Anpassa inställningar"],"SickRage can add existing shows, using the current options, by using locally stored NFO/XML metadata to eliminate user interaction. If you would rather have SickRage prompt you to customize each show, then use the checkbox below.":[null,"SickRage kan lägga till existerande TV-serier, med nuvarande inställningar, genom att använda lokalt lagrad metadata i NFO/XML-format. Detta i syfta att eliminera behovet av användarens inverkan. Om du hellre önskar att ställa in varje TV-serie individuellt, kryssa i rutan nedan."],"Prompt me to set settings for each show":[null,"Ställ in varje TV-serie inviduellt"],"Displaying folders within these directories which aren't already added to SickRage":[null,"Visar mappar i katalogerna som inte är tillagda i SickRage"],"Submit":[null,"Spara"],"Find a show on theTVDB":[null,"Finn en TV-serie på theTVDB"],"Show retrieved from existing metadata":[null,"Serie hämtad från existerande metadata"],"All Indexers":[null,"Alla register"],"Search":[null,"Sök"],"This will only affect the language of the retrieved metadata file contents and episode filenames.":[null,"Detta kommer enbart påverka språket på filinnehållet av hämtad metadata och avsnittens filnamn."],"This <b>DOES NOT</b> allow SickRage to download non-english TV episodes!":[null,"Detta tillåter <b>INTE</b> SickRage att hämta icke-engelska avsnitt!"],"Pick the parent folder":[null,"Välj den överordnade katalogen"],"Pre-chosen Destination Folder":[null,"Förvald målmapp"],"Customize options":[null,"Anpassa inställningar"],"Add Show":[null,"Lägg till TV-serie"],"Skip Show":[null,"Hoppa över serie"],"Sort By":[null,"Sortera på"],"Name":[null,"Namn"],"Original":[null,"Original"],"Votes":[null,"Röster"],"Rating":[null,"Betyg"],"Rating > Votes":[null,"Betyg > Röster"],"Sort Order":[null,"Sortera efter"],"Asc":[null,"Stig"],"Desc":[null,"Fall"],"Fetching of IMDB Data failed. Are you online?":[null,"Hämtning av information från IMDB misslyckades. Är du uppkopplad?"],"Exception":[null,"Undantag"],"Select Trakt List":[null,"Välj Trakt lista"],"Most Anticipated":[null,"Mest efterlängtade"],"Trending":[null,"Trendar"],"Popular":[null,"Populärt"],"Most Watched":[null,"Mesta sedda"],"Most Played":[null,"Mest spelade"],"Most Collected":[null,"Mest samlade"],"Recommended":[null,"Rekommenderat"],"Toggle navigation":[null,"Visa/dölj navigering"],"Profile":[null,"Profil"],"JSONP":[null,"JSONP"],"Back to SickRage":[null,"Tillbaka till SickRage"],"Parameters":[null,"Parametrar"],"Required":[null,"Krav"],"Description":[null,"Beskrivning"],"Type":[null,"Typ"],"Default value":[null,"Standardvärde"],"Allowed values":[null,"Tillåtna värden"],"Playground":[null,"Lekplats"],"Clear":[null,"Rensa"],"Yes":[null,"Ja"],"No":[null,"Nej"],"season":[null,"säsong"],"episode":[null,"avsnitt"],"Python Version":[null,"Python version"],"SSL Version":[null,"SSL version"],"OS":[null,"OS"],"Locale":[null,"Språk"],"User":[null,"Användare"],"Program Folder":[null,"Programkatalog"],"Config File":[null,"Konfigurationsfil"],"Database File":[null,"Databasfil"],"Cache Folder":[null,"Cache-mappen"],"Log Folder":[null,"Loggmappen"],"Arguments":[null,"Argument"],"Web Root":[null,"Webbrot"],"Website":[null,"Webbsida"],"Wiki":[null,"Wiki"],"Source":[null,"Källa"],"IRC Chat":[null,"IRC Chat"],"AnimeDB Settings":[null,"AnimeDB inställningar"],"Look & Feel":[null,"Utseende & känsla"],"AniDB is non-profit database of anime information that is freely open to the public":[null,"AniDB är en icke-vinstdrivande databas över animeinformation som är öppen för allmänheten gratis"],"Enable":[null,"Aktivera"],"should SickRage use data from AniDB?":[null,"ska SickRage använda data från AniDB?"],"AniDB Username":[null,"AniDB användarnamn"],"username of your AniDB account":[null,"användarnamnet för ditt AniDB-konto"],"AniDB Password":[null,"AniDB lösenord"],"password of your AniDB account":[null,"lösenordet för ditt AniDB-konto"],"AniDB MyList":[null,"AniDB MyList"],"do you want to add the PostProcessed episodes to the MyList?":[null,"vill du lägga till de efterbehandlade episoderna till MyList?"],"Look and Feel":[null,"Utseende och känsla"],"How should the anime functions show and behave.":[null,"Hur ska animefunktionerna visas och uppföra sig."],"Split show lists":[null,"Dela serielista"],"separate anime and normal shows in groups":[null,"dela upp animeserier och normala serier i grupper"],"Split in tabs":[null,"Dela upp i flikar"],"use tabs for when splitting show lists":[null,""],"Restore":[null,"Återställ"],"Backup your main database file and config.":[null,"Säkerhetskopiera databasen och inställningarna."],"Select the folder you wish to save your backup file to":[null,"Välj mappen du vill spara din säkerhetskopia till"],"Restore your main database file and config.":[null,"Återställ databasen och inställningarna."],"Select the backup file you wish to restore":[null,"Välj säkerhetskopian du vill återställa"],"Misc":[null,"Övrigt"],"Interface":[null,"Gränssnitt"],"Advanced Settings":[null,"Avancerade inställningar"],"Startup options. Indexer options. Log and show file locations.":[null,"Startalternativ. Indexerare alternativ. Loggar och serie plats."],"Some options may require a manual restart to take effect.":[null,"Vissa alternativ kan kräva en manuell omstart för att börja gälla."],"Default Indexer Language":[null,"Indexeraren standardspråk"],"for adding shows and metadata providers":[null,"för att lägga till serier och metadata leverantörer"],"Launch browser":[null,"Starta webbläsaren"],"open the SickRage home page on startup":[null,"Öppna SickRage startsida vid start"],"Initial page":[null,"Första sidan"],"Shows":[null,"Serier"],"when launching SickRage interface":[null,"när SickRage gränssnitt startar"],"Choose hour to update shows":[null,"Välj när serier ska uppdateras"],"with information such as next air dates, show ended, etc. Use 15 for 3pm, 4 for 4am etc.":[null,"med information som nästa sändningsdatum, serieavslut osv. Använd 15 för 3pm, 4 för 4am osv."],"note":[null,"obs"],"minutes are randomized each time SickRage is started":[null,"minuterna slumpas varje gång SickRage startas"],"Send to trash for actions":[null,"Skicka till papperskorgen för åtgärder"],"when using show \"Remove\" and delete files":[null,"när du använder serie \"Ta Bort\" och raderar filer"],"on scheduled deletes of the oldest log files":[null,"på schemalagda borttagningar av äldsta loggfiler"],"selected actions use trash (recycle bin) instead of the default permanent delete":[null,"valda åtgärder använder papperskorgen istället för standard permanent radering"],"Log file folder location":[null,"Loggfilens mappsökväg"],"Number of Log files saved":[null,"Antal loggfiler som sparas"],"number of log files saved when rotating logs (default: 5) (REQUIRES RESTART)":[null,"antal loggfiler som sparas när roterande loggar används (standard: 5) (KRÄVER OMSTART)"],"Size of Log files saved":[null,"Storlek på loggfil som sparas"],"maximum size in MB of the log file (default: 1MB) (REQUIRES RESTART)":[null,"loggfilens maximal storlek i MB (standard: 1MB) (KRÄVER OMSTART)"],"Use initial indexer set to":[null,"Använd första indexerar inställd till"],"as the default selection when adding new shows":[null,"som standardval när du lägger till nya serier"],"Timeout show indexer at":[null,"Timeout på serieindexerare vid"],"seconds of inactivity when finding new shows (default:20)":[null,"sekunder av inaktivitet när nya serier läggs till (standard: 20)"],"Show root directories":[null,"Rotkatalogen för TV-serier"],"where the files of shows are located":[null,"där filerna till serierna finns"],"Save Changes":[null,"Spara ändringar"],"Options for software updates.":[null,"Alternativ för programuppdateringar."],"Check software updates":[null,"Sök efter uppdateringar"],"and display notifications when updates are available. Checks are run on startup and at the frequency set below*":[null,"och visa notifieringar när uppdateringar är tillgängliga. Kontroll körs vid uppstart och vid den frekvens som är bestäms nedan*"],"Automatically update":[null,"Uppdatera automatiskt"],"fetch and install software updates. Updates are run on startup and in the background at the frequency set below*":[null,"hämta och installera programuppdateringar. Uppdateringar körs vid uppstart och i bakgrunden med den frekvens som bestäms nedan*"],"Check the server every*":[null,"Kontrollera servern varje*"],"hours for software updates (default:1)":[null,"timmar för programuppdateringar (standard: 1)"],"Notify on software update":[null,"Notifiera vid programuppdatering"],"send a message to all enabled notifiers when SickRage has been updated":[null,"skicka ett meddelande till alla aktiverade notifierare när SickRage har uppdaterats"],"User Interface":[null,"Användargränssnitt"],"Options for visual appearance.":[null,"Alternativ för utseende."],"Interface Language":[null,"Gränssnitsspråk"],"System Language":[null,"Systemspråk"],"for appearance to take effect, save then refresh your browser":[null,"för utseende ska gälla, spara sedan uppdatera din webbläsare"],"Display theme":[null,"Visningstema"],"Dark":[null,"Mörkt"],"Light":[null,"Ljust"],"Use a background image":[null,"Visa bakgrundsbild"],"use a custom image as background for SickRage":[null,"använd en valfri bakgrundsbild för SickRage"],"Background Path":[null,"Sökväg för bakgrundsbild"],"Path to the background image":[null,"Sökväg till bakgrundsbilden"],"Show fanart in the background":[null,"Serie-fanart i bakgrunden"],"on the show summary page":[null,"på sammanfattningssidan för serie"],"Fanart transparency":[null,"Genomskinlighet för gfnart"],"transparency of the fanart in the background":[null,"transparens för fanart i bakgrunden"],"Use a custom stylesheet file":[null,""],"use a custom .css file to style SickRage (for advanced users)":[null,""],"Stylesheet File Path":[null,""],"Path to the stylesheet (.css) file":[null,""],"Show all seasons":[null,"Visa alla säsonger"],"Sort with \"The\", \"A\", \"An\"":[null,"Sortera med \"The\", \"A\", \"An\""],"include articles (\"The\", \"A\", \"An\") when sorting show lists":[null,"inkludera artiklar (\"The\", \"A\", \"An\") vid sortering av serielistor"],"Missed episodes range":[null,"Missade episodintervall"],"set the range in days of the missed episodes in the Schedule page":[null,""],"Display fuzzy dates":[null,"Visa ungefärliga datum"],"move absolute dates into tooltips and display e.g. \"Last Thu\", \"On Tue\"":[null,"flytta absoluta datum i verktygstips och visa e.g. \"sista Tor\", \"På tis\""],"Trim zero padding":[null,"Trimma inledande nollor"],"remove the leading number \"0\" shown on hour of day, and date of month":[null,"ta väck inledande nummer \"0\" som visar dagens timme och månadens datum"],"Date style":[null,"Datumformat"],"Use System Default":[null,"Använd systemstandard"],"Time style":[null,"Tidsformat"],"seconds are only shown on the History page":[null,"sekunder visas endast på Historiksidan"],"Timezone":[null,"Tidszon"],"Local":[null,"Lokal"],"Network":[null,"Nätverk"],"display dates and times in either your timezone or the shows network timezone":[null,"visa datum och tider i din tidszon eller visa tidszonen där serien sänds"],"use local timezone to start searching for episodes minutes after show ends (depends on your dailysearch frequency)":[null,"använd lokal tidszon för att starta sökning efter episoder direkt efter avsnittet har visats (beror på sökfrekvens)"],"Download url":[null,"Nedladdningsadress"],"URL where the shows can be downloaded.":[null,"URL där serierna kan hämtas."],"Web Interface":[null,"Webbgränssnitt"],"it is recommended that you enable a username and password to secure SickRage from being tampered with remotely.":[null,""],"these options require a manual restart to take effect.":[null,""],"API key":[null,"API-nyckel"],"used to give 3rd party programs limited access to SickRage":[null,"används för att ge tredjepartsprogram begränsad tillgång till SickRage"],"you can try all the features of the API":[null,"du kan testa alla API-funktioner"],"here":[null,"här"],"HTTP logs":[null,"HTTPS loggfiler"],"enable logs from the internal Tornado web server":[null,"aktivera loggar från den interna Tornado webbservern"],"HTTP username":[null,"HTTP användarnamn"],"set blank for no login":[null,"lämna blankt för ingen inloggning"],"HTTP password":[null,"HTTP lösenord"],"blank = no authentication":[null,"blank = ingen autentisering"],"HTTP port":[null,"HTTP-port"],"web port to browse and access SickRage (default:8081)":[null,"webbport till att använda och komma åt SickRage (standard: 8081)"],"Notify on login":[null,"Notifiera vid inloggning"],"enable to be notified when a new login happens in webserver":[null,"aktivera för att blir notifierad när en ny inloggning sker på en webbserver"],"Listen on IPv6":[null,"Lyssna på IPv6"],"attempt binding to any available IPv6 address":[null,"försök bindning till någon tillgänglig IPv6-adress"],"Enable HTTPS":[null,"Aktivera HTTPS"],"enable access to the web interface using a HTTPS address":[null,"aktivera åtkomst till webbgränssnittet via en HTTPS-adress"],"HTTPS certificate":[null,"HTTPS certifikat"],"file name or path to HTTPS certificate":[null,"filnamn eller sökväg till HTTPS certifikat"],"HTTPS key":[null,"HTTPS-nycklar"],"file name or path to HTTPS key":[null,"filnamnet eller sökvägen till HTTPS-nyckel"],"Reverse proxy headers":[null,"Omvända proxy headers"],"accept the following reverse proxy headers (advanced)...":[null,""],"(X-Forwarded-For, X-Forwarded-Host, and X-Forwarded-Proto)":[null,"(X-Forwarded-For, X-Forwarded-Host och X-Forwarded-Proto)"],"CPU throttling":[null,"CPU hantering"],"Normal (default). High is lower and Low is higher CPU use":[null,"Normal (standard). Hög är lägre och låg är högre CPU användning"],"Anonymous redirect":[null,"Anonym omdirigering"],"backlink protection via anonymizer service, must end in \"?\"":[null,"bakåtspårningsskydd via anonymiteten tjänst, måste sluta med \"?\""],"Enable debug":[null,"Aktivera debug"],"enable debug logs":[null,"aktivera debugloggar"],"Verify SSL Certs":[null,"Verifiera SSL Certifikat"],"verify SSL Certificates (Disable this for broken SSL installs (Like QNAP))":[null,""],"No Restart":[null,"Ingen omstart"],"only shutdown when restarting SR":[null,"stäng endast av när SR behöver startas om"],"only select this when you have external software restarting SR automatically when it stops (like FireDaemon)":[null,""],"Encrypt passwords":[null,"Kryptera lösenord"],"in the <code>config.ini</code> file":[null,"i <code>config.ini</code>-filen"],"warning":[null,"varning"],"passwords must only contain":[null,"lösenord får endast innehålla"],"ASCII characters":[null,"ASCII-tecken"],"Unprotected calendar":[null,"Oskyddad kalender"],"allow subscribing to the calendar without user and password":[null,""],"some services like Google Calendar only work this way":[null,""],"Google Calendar Icons":[null,"Google Kalender ikoner"],"show an icon next to exported calendar events in Google Calendar":[null,""],"Proxy host":[null,"Proxy server"],"blank to disable or proxy to use when connecting to providers":[null,"lämnas tom för att inaktivera proxy server vid anslutning till Internet"],"also use global proxy setting for indexers (tvdb, xem, anidb, etc.)":[null,""],"Skip Remove Detection":[null,"Hoppa över raderingsidentifiering"],"skip detection of removed files":[null,"detektera inte borttagna filer"],"if disabled the episode will be set to the default deleted status":[null,""],"Default deleted episode status":[null,"Standard borttagningsstatus för episoder"],"define the status to be set for media file that has been deleted.":[null,""],"Archived option will keep previous downloaded quality":[null,"Arkiverade alternativet kommer att behålla tidigare hämtade kvalitet"],"example: Downloaded (1080p WEB-DL) ==> Archived (1080p WEB-DL)":[null,""],"Options for github related features.":[null,"Alternativ för github relaterade funktioner."],"Branch version":[null,"Branchversion"],"error: No branches found.":[null,""],"select branch to use (restart required)":[null,"välj branch att använda (omstart krävs)"],"Authorization Type":[null,""],"Username and password":[null,"Användarnamn och lösenord"],"Personal access token":[null,""],"You must use a personal access token if you're using \"two-factor authentication\" on GitHub.":[null,""],"GitHub username":[null,"GitHub användarnamn"],"*** (REQUIRED FOR SUBMITTING ISSUES) ***":[null,"*** (KRÄVS FÖR ATT SKICKA PROBLEM) ***"],"GitHub password":[null,"GitHub lösenord"],"GitHub personal access token":[null,""],"Generate Token":[null,""],"Manage Tokens":[null,""],"GitHub remote for branch":[null,"GitHub remote för branch"],"access repo configured remotes (save then refresh browser)":[null,""],"default":[null,"standard"],"origin":[null,"ursprunglig"],"Git executable path":[null,"Git körbar väg"],"only needed if OS is unable to locate git from env":[null,"behövs endast om OS inte kan hitta git från env"],"Git reset":[null,"Git reset"],"removes untracked files and performs a hard reset on git branch automatically to help resolve update issues":[null,"tar väck ospårade filer och utför automatisk en hård reset på git branchen för att lösa uppdateringsproblem"],"Home Theater / NAS":[null,"Home Theater / NAS"],"Devices":[null,"Enheter"],"Social":[null,"Social"],"A free and open source cross-platform media center and home entertainment system software with a 10-foot user interface designed for the living-room TV.":[null,"En gratis programvara med öppen källkod som är ett plattformsoberoende media center och hemmabiosystem med en 3 meter användargränssnitt utformad för vardagsrum-TV."],"send KODI commands?":[null,"skicka KODI-kommandon?"],"Always on":[null,"Alltid på"],"log errors when unreachable?":[null,"logga fel vid otillgänglighet?"],"Notify on snatch":[null,"Notifiera vid hämtning"],"send a notification when a download starts?":[null,"skicka notifiering när hämtning startas?"],"Notify on download":[null,"Notifiera vid hämtning"],"send a notification when a download finishes?":[null,"skicka en notifiering när hämtning slutförts?"],"Notify on subtitle download":[null,"Notifiera vid undertexthämtning"],"send a notification when subtitles are downloaded?":[null,"skicka en notifiering när undertext är hämtad?"],"Update library":[null,"Uppdatera bibliotek"],"update KODI library when a download finishes?":[null,"uppdatera KODI bibliotek när hämtning slutförts?"],"Full library update":[null,"Fullständig biblioteksuppdatering"],"perform a full library update if update per-show fails?":[null,"utför en fullständig biblioteksuppdatering om uppdatering per-serie misslyckas?"],"Only update first host":[null,"Uppdatera bara första värd"],"only send library updates to the first active host?":[null,"skicka endast biblioteksuppdatering till den första aktiva värden?"],"KODI IP:Port":[null,"KODI IP:Port"],"host running KODI (eg. 192.168.1.100:8080)":[null,"värd som kör KODI (t.ex. 192.168.1.100:8080)"],"(multiple host strings must be separated by commas)":[null,"(flera värdsträngar måste separeras med kommatecken)"],"Username":[null,"Användarnamn"],"username for your KODI server (blank for none)":[null,"användarnamn för din KODI-server (blankt för inget)"],"Password":[null,"Lösenord"],"password for your KODI server (blank for none)":[null,"lösenord för din KODI-server (blanktför inget)"],"Click below to test.":[null,"Klicka nedan för att testa."],"Experience your media on a visually stunning, easy to use interface on your Mac connected to your TV. Your media library has never looked this good!":[null,"Upplev din media på en visuellt imponerande, lättanvänt gränssnitt på din Mac som är ansluten till din TV. Ditt mediebiblioteket har aldrig sett så här bra ut!"],"For sending notifications to Plex Home Theater (PHT) clients, use the KODI notifier with port <b>3005</b>.":[null,"För att skicka notifieringar till Plex Home Theater (PHT) klienter, använd KODI notifieraren med port <b>3005</b>."],"send Plex Media Server library updates?":[null,""],"Plex Media Server Auth Token":[null,"Plex Media Server autentiseringstoken"],"auth token used by Plex":[null,"autentiseringstoken som används av Plex"],"Update Library":[null,"Uppdatera bibliotek"],"update Plex Media Server library when a download finishes":[null,"uppdatera Plex Media Server-biblioteket när en hämtning är klar"],"Plex Media Server IP:Port":[null,"Plex Media Server IP:Pport"],"one or more hosts running Plex Media Server<br/>(eg. 192.168.1.1:32400, 192.168.1.2:32400)":[null,"en eller flera värdar kör Plex Media Server<br/>(t.ex. 192.168.1.1:32400, 192.168.1.2:32400)"],"HTTPS":[null,"HTTPS"],"use https for plex media server requests?":[null,"använd https för plex media serverförfrågningar?"],"Click below to test Plex Media Server(s)":[null,"Klicka nedan för att testa Plex Media Server"],"Test Plex Media Server":[null,"Testa Plex Media Server"],"Plex Home Theater":[null,"Plex Home Theater"],"send Plex Home Theater notifications?":[null,""],"Plex Home Theater IP:Port":[null,"Plex Home Theater IP:Port"],"one or more hosts running Plex Home Theater<br>(eg. 192.168.1.100:3000, 192.168.1.101:3000)":[null,"en eller flera värdar kör Plex Home Theater <br>(t.ex. 192.168.1.100:3000, 192.168.1.101:3000)"],"Click below to test Plex Home Theater(s)":[null,"Klicka nedan för att testa Plex Home Theater"],"Test Plex Home Theater":[null,"Testa Plex Home Theater"],"some Plex Home Theaters <b class=\"boldest\">do not</b> support notifications e.g. Plexapp for Samsung TVs":[null,""],"Emby":[null,"Emby"],"A home media server built using other popular open source technologies.":[null,"En mediaserver byggt med andra populära open source-tekniker."],"send update commands to Emby?":[null,"skicka uppdateringskommandon till Emby?"],"Emby IP:Port":[null,"Emby IP:Port"],"host running Emby (eg. 192.168.1.100:8096)":[null,"värd som kör Emby (t.ex. 192.168.1.100:8096)"],"Emby API Key":[null,"Emby API-nyckel"],"Networked Media Jukebox":[null,"Networked Media Jukebox"],"The Networked Media Jukebox, or NMJ, is the official media jukebox interface made available for the Popcorn Hour 200-series.":[null,"Networked Media Jukeboxen, eller NMJ, är det officiella media jukebox-gränssnittet som har gjorts tillgänglig för Popcorn Hour 200-serien."],"send update commands to NMJ?":[null,"skicka uppdateringskommandon till NMJ?"],"Popcorn IP address":[null,"Popcorn IP-adress"],"IP address of Popcorn 200-series (eg. 192.168.1.100)":[null,"IP-adressen för Popcorn 200-serien (t.ex. 192.168.1.100)"],"Get settings":[null,"Hämta inställningar"],"Get Settings":[null,"Hämta inställningar"],"the Popcorn Hour device must be powered on and NMJ running.":[null,"Popcorn Hour enheten måste vara påslagen och NMJ igång."],"NMJ database":[null,"NMJ databas"],"automatically filled via the 'Get Settings' button.":[null,"fyll automatiskt via knappen 'Hämta inställningar'."],"NMJ mount url":[null,"NMJ monterings-url"],"Networked Media Jukebox v2":[null,"Networked Media Jukebox v2"],"The Networked Media Jukebox, or NMJv2, is the official media jukebox interface made available for the Popcorn Hour 300 & 400-series.":[null,"Networked Media Jukeboxen, eller NMJ, är den officiella media jukebox-gränssnittet som har gjorts tillgänglig för Popcorn Hour 300 & 400-serien."],"send update commands to NMJv2?":[null,"skicka uppdateringskommandon till NMJv2?"],"IP address of Popcorn 300/400-series (eg. 192.168.1.100)":[null,"IP-adressen för Popcorn 300/400-serien (t.ex. 192.168.1.100)"],"Database location":[null,"Databasplats"],"Database instance":[null,"Databasinstans"],"adjust this value if the wrong database is selected.":[null,"justera det här värdet om fel databasen väljs."],"Find database":[null,"Hitta databas"],"Find Database":[null,"Hitta databas"],"the Popcorn Hour device must be powered on.":[null,"Popcorn Hour enheten måste vara påslagen."],"NMJv2 database":[null,"NMJv2 databas"],"automatically filled via the 'Find Database' buttons.":[null,"automatiskt fylld via \"Hitta databas\"-knapparna."],"Synology":[null,"Synology"],"The Synology DiskStation NAS.":[null,"Synology DiskStation NAS."],"Synology Indexer is the daemon running on the Synology NAS to build its media database.":[null,"Synology Indexerare är tjänsten som körs på Synology NAS för att bygga media-databasen."],"send Synology notifications?":[null,""],"requires SickRage to be running on your Synology NAS.":[null,"kräver att SickRage körs på din Synology NAS."],"Synology Indexer":[null,"Synology indexerare"],"Synology Notifier is the notification system of Synology DSM":[null,"Synology Notifier är notifieringssystemet på Synology DSM"],"send notifications to the Synology Notifier?":[null,""],"pyTivo":[null,"pyTivo"],"pyTivo is both an HMO and GoBack server. This notifier will load the completed downloads to your Tivo.":[null,"pyTivo är både en HMO och GoBack server. Denna notifierare kommer att ladda de färdiga nedladdningarna till din Tivo."],"send notifications to pyTivo?":[null,"skicka meddelanden till pyTivo?"],"requires the downloaded files to be accessible by pyTivo.":[null,"kräver de hämtade filerna att vara tillgängliga för pyTivo."],"pyTivo IP:Port":[null,"pyTivo IP:Port"],"host running pyTivo (eg. 192.168.1.1:9032)":[null,"värd som kör pyTivo (t.ex. 192.168.1.1:9032)"],"pyTivo share name":[null,"pyTivo delningsnamn"],"value used in pyTivo Web Configuration to name the share.":[null,"värde som används i pyTivo Web konfiguration för att namnge delning."],"Tivo name":[null,"TiVo namn"],"(Messages & Settings > Account & System Information > System Information > DVR name)":[null,"(Meddelanden & inställningar > Konto & Systeminformation > Systeminformation > DVR namn)"],"Growl":[null,"Growl"],"A cross-platform unobtrusive global notification system.":[null,"Ett plattformsoberoende diskret globalt notifieringssystem."],"send Growl notifications?":[null,""],"Growl IP:Port":[null,"Growl IP:Port"],"host running Growl (eg. 192.168.1.100:23053)":[null,"värd som kör Growl (t.ex. 192.168.1.100:23053)"],"may leave blank if SickRage is on the same host.":[null,"kan lämnas tomt om SickRage är på samma värd."],"otherwise Growl <b>requires</b> a password to be used.":[null,"annars <b>kräver</b> Growl ett lösenord som ska användas."],"Click below to register and test Growl, this is required for Growl notifications to work.":[null,"Klicka nedan för att registrera och testa Growl, detta krävs för Growl notifieringar ska funka."],"Register Growl":[null,"Registrera Growl"],"Prowl":[null,"Prowl"],"A Growl client for iOS.":[null,"En Growl klient för iOS."],"send Prowl notifications?":[null,""],"Prowl Message Title":[null,"Prowl meddelandetitel"],"Global Prowl API key(s)":[null,"Globala Prowl API-nycklar"],"Prowl API(s) listed here, separated by commas if applicable, will<br> receive notifications for <b>all</b> shows. Your Prowl API key is available at:":[null,"Prowl API(er) listade här, separerade med kommatecken, kommer<br>erhålla aviseringar för <b>alla</b> serier. Din Prowl API nyckel finns på:"],"(this field may be blank except when testing.)":[null,"(detta fält kan vara tomt utom vid testning.)"],"Show notification list":[null,"Visa notifieringslista"],"-- Select a Show --":[null,"-- Välj en serie --"],"Configure per-show notifications here by entering Prowl API key(s), separated by commas, '\n 'after selecting a show in the drop-down box. Be sure to activate the 'Save for this show' '\n 'button below after each entry.":[null,"Konfigurera per-serie notifiering här genom att ange Prowl API-nyckel/nycklar separerade med kommatecken'\n'efter att ha valt en show i drop-down-listan. Var noga med att aktivera 'spara för denna serie'-'\n'knappen under varje val."],"Save for this show":[null,"Spara för den här serie"],"Prowl priority":[null,"Prowl prioritet"],"Very Low":[null,"Mycket låg"],"Moderate":[null,"Måttlig"],"Normal":[null,"Normal"],"High":[null,"Hög"],"Emergency":[null,"Kritisk"],"priority of Prowl messages from SickRage.":[null,"prioritet av Prowl meddelanden från SickRage."],"Libnotify":[null,"Libnotify"],"The standard desktop notification API for Linux/*nix systems. This notifier will only function if the pynotify module is installed (Ubuntu/Debian package <a href=\"apt:python-notify\">python-notify</a>).":[null,"Standard skrivbordsnotifieringen av API för Linux/*nix system. Den här notifierarens kommer endast att funka om pynotify-modulen är installerad (Ubuntu/Debian-paket <a href=\"apt:python-notify\">python-notify</a>)."],"send Libnotify notifications?":[null,""],"Pushover":[null,"Pushover"],"Pushover makes it easy to send real-time notifications to your Android and iOS devices.":[null,"Pushover gör det enkalt att skicka notifieringar i realtid till din Android eller iOS enheter."],"send Pushover notifications?":[null,""],"Pushover key":[null,"Pushover nyckel"],"user key of your Pushover account":[null,"användarnyckel av ditt Pushover-konto"],"Pushover API key":[null,"Pushover API nyckel"],"click here":[null,""]," to create a Pushover API key":[null,""],"Pushover devices":[null,"Pushover enheter"],"comma separated list of pushover devices you want to send notifications to":[null,"kommaseparerad lista över Pushover enheter du vill skicka notifieringar till"],"Pushover notification sound":[null,"Pushover notifieringsljud"],"Bike":[null,"Bike"],"Bugle":[null,"Bugle"],"Cash Register":[null,"Cash Register"],"Classical":[null,"Classical"],"Cosmic":[null,"Cosmic"],"Falling":[null,"Falling"],"Gamelan":[null,"Gamelan"],"Incoming":[null,"Incoming"],"Intermission":[null,"Intermission"],"Magic":[null,"Magic"],"Mechanical":[null,"Mechanical"],"Piano Bar":[null,"Piano Bar"],"Siren":[null,"Siren"],"Space Alarm":[null,"Space Alarm"],"Tug Boat":[null,"Tug Boat"],"Alien Alarm (long)":[null,"Alien Alaram (long)"],"Climb (long)":[null,"Climb (long)"],"Persistent (long)":[null,"Persistent (long)"],"Pushover Echo (long)":[null,"Pushover Echo (long)"],"Up Down (long)":[null,"Up Down (long)"],"None (silent)":[null,"Ingen (Tyst)"],"Device specific":[null,"Enhetsspecifik"],"choose notification sound to use":[null,""],"Pushover priority":[null,"Pushover-prioritet"],"Choose priority to use":[null,"Välj prioritet"],"Boxcar 2":[null,"Boxcar 2"],"Read your messages where and when you want them!":[null,"Läs dina meddelande när och var du vill!"],"send Boxcar notifications?":[null,""],"Boxcar2 access token":[null,"Boxcar2 åtkomst-token"],"access token for your Boxcar account.":[null,"åtkomst-token för ditt Boxcar-konto."],"NMA":[null,"NMA"],"Notify My Android":[null,"Notify My Android"],"Notify My Android is a Prowl-like Android App and API that offers an easy way to send notifications from your application directly to your Android device.":[null,"Notify My Android är en Prowl-liknande app och har en API som erbjuder ett enkelt sätt att skicka notifieringar från din applikation direkt till din Androidenhet."],"send NMA notifications?":[null,""],"NMA API key":[null,"NMA API-nyckel"],"(multiple keys must be separated by commas, up to a maximum of 5)":[null,"(flera nycklar måste vara separerade med kommatecken, upp till max 5)"],"NMA priority":[null,"NMA prioritet"],"priority of NMA messages from SickRage.":[null,"prioritet för NMA-meddelanden från SickRage."],"Pushalot":[null,"Pushalot"],"Pushalot is a platform for receiving custom push notifications to connected devices running Windows Phone or Windows 8.":[null,"Pushalot är en plattform för att ta emot anpassade pushnotiser till anslutna enheter som använder Windows Phone eller Windows 8."],"send Pushalot notifications ?":[null,""],"Pushalot authorization token":[null,"Pushalot auktoriserings-token"],"authorization token of your Pushalot account.":[null,"auktorisering-token av ditt Pushalot-konto."],"Pushbullet":[null,"Pushbullet"],"Pushbullet is a platform for receiving custom push notifications to connected devices running Android/iOS and desktop browsers such as Chrome, Firefox or Opera.":[null,"Pushbullet är en plattform för att ta emot anpassade pushnotifieringar till anslutna enheter som kör Android/iOS och webbläsare som Chrome, Firefox eller Opera."],"send Pushbullet notifications?":[null,""],"Pushbullet API key":[null,"Pushbullet API-nyckel"],"API key of your Pushbullet account":[null,"API-nyckel för ditt Pushbullet-konto"],"Pushbullet devices":[null,"Pushbullet enheter"],"Update device list":[null,"Uppdatera enhetslista"],"Pushbullet channels":[null,"Pushbullet kanaler"],"Free Mobile":[null,"Free Mobile"],"Free Mobile is a famous French cellular network provider.<br> It provides to their customer a free SMS API.":[null,"Free Mobile är en känt franskt mobilnätsleverantör.<br> Den tillhandahåller gratis SMS API till sina kunder."],"send SMS notifications?":[null,""],"send a SMS when a download starts?":[null,"skicka ett SMS när en hämtning startar?"],"send a SMS when a download finishes?":[null,"skicka ett SMS när en hämtning är klar?"],"send a SMS when subtitles are downloaded?":[null,"skicka ett SMS när undertexter är hämtade?"],"Free Mobile customer ID":[null,"Free Mobile kund-ID"],"it's your Free Mobile customer ID (8 digits)":[null,""],"Free Mobile API key":[null,""],"find your API key in your customer portal.":[null,""],"Click below to test your settings.":[null,"Klicka nedan för att testa dina inställningar."],"Telegram":[null,"Telegram"],"Telegram is a cloud-based instant messaging service.":[null,"Telegram är ett moln-baserade meddelandetjänst."],"send Telegram notifications?":[null,""],"send a message when a download starts?":[null,""],"send a message when a download finishes?":[null,""],"send a message when subtitles are downloaded?":[null,""],"User/group ID":[null,"Användare/grupp-ID"],"contact @myidbot on Telegram to get an ID":[null,""],"Bot API token":[null,"Bot API token"],"contact @BotFather on Telegram to set up one":[null,""],"Join":[null,"Join"],"Join all of your devices together!":[null,"Join är en plattform för att skicka notifieringar till Android, Chrome och Windows 10."],"send Join notifications?":[null,""],"Device ID":[null,"Enhets-ID"],"per device specific id":[null,""]," to create a Join API key":[null,""],"Twilio":[null,"Twilio"],"Twilio is a webservice API that allows you to communicate directly with a mobile number. This notifier will send a text directly to your mobile device.":[null,"Twilio är ett webservice-API som låter dig kommunicera direkt med ett mobilnummer. Notifikationen kommer att skickas i ett SMS direkt till din mobiltelefon."],"should SickRage text your mobile device?":[null,""],"Twilio Account SID":[null,"Twilio-kontots SID"],"account SID of your Twilio account.":[null,""],"Twilio Auth Token":[null,"Twilio Auth-token"],"Twilio Phone SID":[null,"Twilio telefon-SID"],"phone SID that you would like to send the sms from":[null,""],"Your phone number":[null,"Ange telefonnummer"],"phone number that will receive the sms. Please use the format +1-###-###-####":[null,""],"Twitter":[null,"Twitter"],"A social networking and microblogging service, enabling its users to send and read other users' messages called tweets.":[null,"Ett socialt nätverk och mikrobloggnings tjänst, tillåter dess användare att skicka och läsa andra användares meddelanden som kallas tweets."],"should SickRage post tweets on Twitter?":[null,""],"you may want to use a secondary account.":[null,"du kanske vill använda ett andra konto."],"send direct message":[null,"skicka direktmeddelande"],"send a notification via Direct Message, not via status update":[null,"skicka en notifiering via direkta meddelanden, inte via statusuppdatering"],"send DM to":[null,"skicka direktmeddelande till"],"Twitter account to send Direct Messages to (must follow you)":[null,"Twitter-konto för att skicka direkta meddelanden till (måste följa dig)"],"Step One":[null,"Steg Ett"],"Request Authorization":[null,"Begära auktorisering"],"Click the \"Request Authorization\" button.<br> This will open a new page containing an auth key.<br> <b>note:</b> if nothing happens check your popup blocker.":[null,""],"Step Two":[null,"Steg Två"],"Enter the key Twitter gave you below, and click \"Verify Key\".":[null,"Ange nyckeln Twitter gav dig nedan och klicka på \"Verifiera nyckel\"."],"Trakt":[null,"Trakt"],"Trakt helps keep a record of what TV shows and movies you are watching. Based on your favorites, Trakt recommends additional shows and movies you'll enjoy!":[null,""],"send Trakt.tv notifications?":[null,""],"username of your Trakt account.":[null,"användarnamnet för ditt Trakt-konto."],"Trakt PIN":[null,"Trakt PIN"],"Get Trakt PIN":[null,"Få ett Trakt PIN"],"PIN code to authorize SickRage to access Trakt on your behalf.":[null,"PIN-kod för att tillåta SickRage att komma åt Trakt för din skull."],"API Timeout":[null,"API Timeout"],"seconds to wait for Trakt API to respond. (Use 0 to wait forever)":[null,""],"Default indexer":[null,"Standardindexerare"],"Sync libraries":[null,"Synkbibliotek"],"sync your SickRage show library with your trakt show library.":[null,"synkronisera ditt SickRage seriebibliotek med ditt trakt seriebibliotek."],"Remove Episodes From Collection":[null,"Radera episoder från samling"],"remove an episode from your Trakt Collection if it is not in your SickRage Library.":[null,""],"Sync watchlist":[null,"Synkronisera bevakningslista"],"sync your SickRage show watchlist with your trakt show watchlist (either Show and Episode).":[null,"synkronisera din SickRage bevakningslista för serier med din trakts bevakningslista för serier (Serie eller Episod)."],"episode will be added on watch list when wanted or snatched and will be removed when downloaded ":[null,""],"Watchlist add method":[null,"Tilläggsmetod för bevakningslista"],"Skip All":[null,"Hoppa över alla"],"Download Pilot Only":[null,"Hämta Pilot endast"],"Get whole show":[null,"Hämta hela serien"],"method in which to download episodes for new shows.":[null,"metod för att hämta episoder för nya serier."],"Remove episode":[null,"Radera episod"],"remove an episode from your watchlist after it is downloaded.":[null,"radera en episod från din bevakningslista när den har laddats ner."],"Remove series":[null,"Radera serie"],"remove the whole series from your watchlist after any download.":[null,"radera hela serien från bevakningslistan efter nerladdning."],"Remove watched show":[null,"Radera sedd serie"],"remove the show from sickrage if it's ended and completely watched":[null,"radera serie från sickrage om den har avslutats och helt sedd"],"Start paused":[null,"Starta pausad"],"shows grabbed from your trakt watchlist start paused.":[null,"starta serier som hämtats från din trakts bevakningslista som pausad."],"Trakt blackList name":[null,"Trakt svartlista-namn"],"name (slug) of list on Trakt for blacklisting show on 'Add Trending Show' & 'Add Recommended Shows' pages":[null,""],"Email":[null,"E-Post"],"Allows configuration of email notifications on a per show basis.":[null,"Tillåter konfiguration av e-postmeddelanden för varje serie."],"send email notifications?":[null,""],"SMTP host":[null,"SMTP-värd"],"hostname of your SMTP email server.":[null,"värdnamnet för din SMTP-e-postserver."],"SMTP port":[null,"SMTP-port"],"port number used to connect to your SMTP host.":[null,"portnumret som används för att ansluta till din SMTP-värd."],"SMTP from":[null,"SMTP från"],"sender email address, some hosts require a real address.":[null,"avsändarens e-postadress, vissa värdar kräver en riktig adress."],"Use TLS":[null,"Använd TLS"],"check to use TLS encryption.":[null,"markera för att använda TLS-kryptering."],"SMTP user":[null,"SMTP-användare"],"(optional) your SMTP server username.":[null,"(valfritt) ditt användarnamn för SMTP-servern."],"SMTP password":[null,"SMTP-lösenord"],"(optional) your SMTP server password.":[null,"(valfritt) ett SMTP-serverlösenord."],"Global email list":[null,"Global e-postlista"],"email addresses listed here, separated by commas if applicable, will<br> receive notifications for <b>all</b> shows.":[null,""],"(This field may be blank except when testing.)":[null,"(Detta fält kan vara tomt utom vid testning.)"],"Email Subject":[null,"E-post ämne"],"use a custom subject for some privacy protection?":[null,""],"(leave blank for the default SickRage subject)":[null,""],"configure per-show notifications here by entering email address(es), separated by commas,":[null,""],"after selecting a show in the drop-down box. Be sure to activate the 'Save for this show'":[null,"efter att valt en serie i den nedrullningsbara listrutan. Se till att aktivera \"Spara för den här serien\""],"button below after each entry.":[null,"knappen under efter varje post."],"Slack":[null,"Slack"],"Slack brings all your communication together in one place. It's real-time messaging, archiving and search for modern teams.":[null,"Slack är ett meddelandeverktyg för arbetslag som förändrar världen."],"should SickRage post messages on Slack?":[null,""],"Slack Incoming Webhook":[null,"Slack inkommande Webhook"],"Discord":[null,"Discord"],"All-in-one voice and text chat for gamers that's free, secure, and works on both your desktop and phone.":[null,""],"Should SickRage post messages on Discord?":[null,""],"Discord Incoming Webhook":[null,""],"Create webhook under channel settings.":[null,""],"Discord Bot Name":[null,""],"Blank will use webhook default Name.":[null,""],"Discord Avatar URL":[null,""],"Blank will use webhook default Avatar.":[null,""],"Discord TTS":[null,""],"Send notifications using text-to-speech":[null,""],"Post-Processing":[null,"Efterbearbetning"],"Episode Naming":[null,"Namngivning av episod"],"Metadata":[null,"Metadata"],"Settings that dictate how SickRage should process completed downloads.":[null,"Inställningar som bestämmer hur SickRage ska bearbeta färdiga hämtningar."],"enable the automatic post processor to scan and process any files in your Post Processing Dir":[null,""],"do not use if you use an external Post Processing script":[null,""],"Post Processing Dir":[null,"Efterbearbetningskatalog"],"the folder where your download client puts the completed TV downloads.":[null,""],"please use seperate downloading and completed folders in your download client if possible.":[null,""],"Processing Method":[null,"Bearbetningsmetod"],"what method should be used to put files into the library?":[null,""],"if you keep seeding torrents after they finish, please avoid the 'move' processing method to prevent errors.":[null,""],"Auto Post-Processing Frequency":[null,"Automatisk efterbearbetningsfrekvens"],"time in minutes to check for new files to auto post-process (min 10)":[null,""],"Postpone post processing":[null,"Skjut upp efterbearbetning"],"wait to process a folder if sync files are present.":[null,""],"Sync File Extensions":[null,"Sync-filtillägg"],"comma seperated list of extensions or filename globs SickRage ignores when Post Processing":[null,"kommatecken-separerade lista över tillägg eller filnamn globs SickRage ignorerar vid efterbearbetning"],"Rename Episodes":[null,"Döp om episod"],"rename episode using the Episode Naming settings?":[null,""],"Create missing show directories":[null,"Skapa saknade seriekataloger"],"create missing show directories when they get deleted":[null,""],"Add shows without directory":[null,"Lägg till serie utan katalog"],"add shows without creating a directory (not recommended)":[null,""],"Move associated files":[null,""],"move associated (srt/srr/sfv/etc) files while post processing?":[null,""],"Rename .nfo file":[null,"Döp om .nfo-fil"],"rename the original .nfo file to .nfo-orig to avoid conflicts?":[null,"byt namn på den ursprungliga .nfo-filen till .nfo-orig för att undvika konflikter?"],"Associated file extensions":[null,""],"comma separated list of associated file extensions SickRage should keep while post processing.":[null,""],"leaving it empty means no associated files will be post processed":[null,""],"Delete non associated files":[null,""],"delete non associated files while post processing?":[null,""],"Change File Date":[null,"Ändra fildatum"],"set last modified filedate to the date that the episode aired?":[null,""],"some systems may ignore this feature.":[null,"vissa system kan ignorera den här funktionen."],"Timezone for File Date":[null,"Tidszon för fildatum"],"local":[null,"lokal"],"network":[null,"nätverk"],"what timezone should be used to change File Date?":[null,""],"Unpack":[null,"Packa upp"],"What to do with archived releases found in your <i>TV Download Dir</i>?":[null,""],"Ignore (do not process contents)":[null,""],"Unpack (process contents)":[null,""],"Treat as video (process archive as-is)":[null,""],"'Unpack' only works with RAR archives":[null,""],"Windows":[null,"Windows"],"WinRar is required on windows":[null,""],"Unpack Directory":[null,""],"Choose a path to unpack files, leave blank to unpack in download dir":[null,""],"Unrar Location":[null,"Plats för Unrar"],"add the path to unrar if it is not in the system path":[null,"lägg till sökvägen för unrar om det inte finns i systemsökvägen"],"Alternate Unrar Tool":[null,"Alternativt Unrar-verktyg"],"add the path to an alternate unrar tool if it is not in the system path":[null,""],"Delete RAR contents":[null,"Radera RAR-innehåll"],"delete content of RAR files, even if Process Method not set to move?":[null,""],"only working with RAR archive":[null,"fungerar endast med RAR-arkiv"],"Don't delete empty folders":[null,"Ta inte bort tomma mappar"],"leave empty folders when Post Processing?":[null,""],"can be overridden using manual Post Processing":[null,""],"Follow symbolic-links":[null,""],"follow down symbolic links in download directory?":[null,""],"<b>EXPERTS ONLY.</b><br>Enable only if you know what <b>circular symbolic links</b> are,<br>and can <b>verify that you have none</b>.":[null,""],"Use icacls":[null,"Använd icacls"],"Windows only":[null,"Endast för Windows"],"sets video permissions after using the move method in post processing":[null,""],"Extra Scripts":[null,"Extraskript"],"see":[null,"se"],"for script arguments description and usage.":[null,"för skriptarguments-beskrivning och användning."],"How SickRage will name and sort your episodes.":[null,"Hur SickRage kommer namnge och sortera din episoder."],"Name Pattern":[null,"Namnmönster"],"Toggle Naming Legend":[null,"Aktivera namngivningshistorik"],"don't forget to add quality pattern. Otherwise after post-processing the episode will have UNKNOWN quality":[null,""],"Meaning":[null,"Betydelse"],"Pattern":[null,"Mönster"],"Result":[null,"Resultat"],"Use lower case if you want lower case names (eg. %sn, %e.n, %q_n etc)":[null,"Använd gemener om du vill namn med små bokstäver (t.ex. %sn, %e.n, %q_n osv)"],"Show Name":[null,"Serienamn"],"Show.Name":[null,"Serie.Namn"],"Show_Name":[null,"Serie_Namn"],"Season Number":[null,"Säsong nummer"],"XEM Season Number":[null,"XEM säsongsnummer"],"Episode Number":[null,"Episodnummer"],"XEM Episode Number":[null,"XEM episodnummer"],"Episode Name":[null,"Episod namn"],"Episode.Name":[null,"Episod.Namn"],"Episode_Name":[null,"Episod_Namn"],"Air Date":[null,"Sändningsdatum"],"Post-Processing Date":[null,"Efterbehandlingsdatum"],"Quality":[null,"Kvalitet"],"Scene Quality":[null,"Scene kvalite"],"Release Name":[null,"Utgivningsnamn"],"SickRage' is used in place of RLSGROUP if it could not be properly detected":[null,"SickRage används i stället för RLSGROUP om det inte gick att identifiera korrekt"],"Release Group":[null,"Utgivningsgrupp"],"If episode is proper/repack add 'proper' to name.":[null,"Om episod är en proper/repack lägg till 'proper' till namnet."],"Release Type":[null,"Utgivningstyp"],"Multi-Episode Style":[null,"Flerepisod stil"],"Single-EP Sample":[null,"Enkelepisod exempel"],"Multi-EP sample":[null,"Flerepisod exempel"],"Strip Show Year":[null,"Ta väck serieår"],"remove the TV show's year when renaming the file?":[null,""],"only applies to shows that have year inside parentheses":[null,""],"Custom Air-By-Date":[null,"Anpassad sändningsdatum"],"name air-by-date shows differently than regular shows?":[null,""],"Toggle ABD Naming Legend":[null,"Aktivera ABD namngivningshistorik"],"Regular Air Date":[null,"Vanligt sändningsdatum"],"Year":[null,"År"],"Month":[null,"Månad"],"Day":[null,"Dag"],"Multi-EP style is ignored":[null,"Flerepisod stil är ignorerad"],"Custom Sports":[null,"Anpassad sport"],"name sports shows differently than regular shows?":[null,""],"Toggle Sports Naming Legend":[null,"Aktivera Sport namngivningshistorik"],"Sports Air Date":[null,"Sport sändningsdatum"],"Custom Anime":[null,"Anpassade Anime"],"name anime shows differently than regular shows?":[null,""],"Toggle Anime Naming Legend":[null,"Aktivera Anime namngivningshistorik"],">XEM Season Number":[null,">XEM säsongsnummer"],"Single-EP Anime Sample":[null,"Enkelepisod Anime exempel"],"Multi-EP Anime sample":[null,"Flerepisod Anime exempel"],"Add Absolute Number":[null,"Lägg till absolutnummer"],"add the absolute number to the season/episode format?":[null,""],"only applies to anime. (eg. S15E45 - 310 vs S15E45)":[null,""],"Only Absolute Number":[null,"Endast absolut nummer"],"replace season/episode format with absolute number":[null,""],"only applies to anime.":[null,""],"No Absolute Number":[null,"Inget absolut nummer"],"don't include the absolute number":[null,""],"The data associated to the data. These are files associated to a TV show in the form of images and text that, when supported, will enhance the viewing experience.":[null,"Datan associerad till datan. Detta är filer som är associerade till en serie i form av bilder och text som, när den stöds, kommer att förbättra tittarupplevelsen."],"Metadata Type":[null,"Metadata-typ"],"toggle metadata options that you wish to be created":[null,""],"multiple targets may be used":[null,""],"Select Metadata":[null,"Välj metadata"],"Provider Priorities":[null,"Leverantörsprioriteringar"],"Provider Options":[null,"Leverantörsalternativ"],"Configure Custom Newznab Providers":[null,"Konfigurera anpassade Newznab-leverantörer"],"Configure Custom Torrent Providers":[null,"Konfigurera anpassade Torrentleverentör"],"Check off and drag the providers into the order you want them to be used.":[null,"Bocka av och dra leverantörerna till den ordning du vill att de ska användas."],"At least one provider is required but two are recommended.":[null,"Minst en leverantör krävs men två rekommenderas."],"Torrent providers can be toggled in ":[null,"Torrentleverantörer kan växlas i "],"Provider does not support backlog searches at this time.":[null,"Leverantören stödjer inte backlogsökningar vid denna tid."],"Provider is <b>NOT WORKING</b>.":[null,"Leverantör <b>FUNGERAR INTE</b>."],"Configure individual provider settings here.":[null,"Konfigurera individuella leverantörsinställningar här."],"Check with provider's website on how to obtain an API key if needed.":[null,"Kontrollera med leverantörens webbplats om hur du kan få en API-nyckel om det behövs."],"Configure provider":[null,"Konfigurera leverantör"],"no providers available to configure.":[null,""],"URL":[null,"URL"],"Enable daily searches":[null,"Aktivera dagliga sökningar"],"enable provider to perform daily searches.":[null,"aktivera leverantören att utföra dagliga sökningar."],"Enable backlog searches":[null,"Aktivera backlogsökningar"],"enable provider to perform backlog searches.":[null,"aktivera leverantören att göra backlog-sökningar."],"Season search mode":[null,"Sökläget för säsong"],"when searching for complete seasons you can choose to have it look for season packs only, or choose to have it build a complete season from just single episodes.":[null,"när du söker efter kompletta säsonger kan du ha den att leta efter hela säsonger endast, eller skapa säsonger från enstaka episoder bara."],"season packs only.":[null,"hela säsonger endast."],"episodes only.":[null,"endast episoder."],"Enable fallback":[null,"Aktivera fallback"],"when searching for a complete season depending on search mode you may return no results, this helps by restarting the search using the opposite search mode.":[null,"när du söker efter en säsong beroende på sökläget kan inget resultat returneras, detta hjälps genom att starta om sök med motsatt sökläge."],"Custom URL":[null,"Anpassad URL"],"the URL should include the protocol (and port if applicable). Examples: http://192.168.1.4/ or http://localhost:3000/":[null,""],"Api key":[null,"API-nyckel"],"Digest":[null,"Digest"],"Hash":[null,"Hash"],"Passkey":[null,"Passkey"],"Cookies":[null,"Cookies"],"example: uid=1234;pass=567845439634987<br>note: uid and pass are not your username/password.<br>use DevTools or Firebug to get these values after logging in on your browser.":[null,""],"Pin":[null,"PIN-kod"],"Seed ratio":[null,"Seed ratio"],"stop transfer when ratio is reached<br>(-1 SickRage default to seed forever, or leave blank for downloader default)":[null,"stoppa överföringen när ratio nås <br>(-1 SickRage-standard till att seeda för alltid, eller lämna blankt för nerladdningsklients standard)"],"Minimum seeders":[null,"Minimum uppladdare"],"Minimum leechers":[null,"Minimum nerladdare"],"Confirmed download":[null,"Bekräftade hämtningar"],"only download torrents from trusted or verified uploaders ?":[null,"hämta bara torrenter från betrodda eller kontrollerade uppladdare?"],"Ranked torrents":[null,"Rankade torrenter"],"only download ranked torrents (trusted releases)":[null,"hämta bara rankade torrenter (betrodda releaser)"],"English torrents":[null,"Engelska torrenter"],"only download english torrents, or torrents containing english subtitles":[null,"hämta bara engelska torrenter, eller torrenter som innehåller engelsk undertext"],"For Spanish torrents":[null,"För spanska torrenter"],"ONLY search on this provider if show info is defined as \"Spanish\" (avoid provider's use for VOS shows)":[null,"sök ENDAST på denna leverantör om serieinfo är \"Spanska\" (Undvik leverantörers användning av VOS serier)"],"Sorting results by":[null,"Sortera resultaten efter"],"Freeleech":[null,"FreeLeech"],"only download <b>\"FreeLeech\"</b> torrents.":[null,"hämta bara <b>\"FreeLeech\"</b> torrenter."],"Category":[null,"Kategori"],"select torrent with Italian subtitle":[null,"välj torrent med italiensk undertext"],"Configure Custom<br>Newznab Providers":[null,"Konfigurera anpassade <br>Newznab leverantörer"],"Add and setup or remove custom Newznab providers.":[null,"Lägga till och konfigurera eller ta bort anpassade Newznab leverantörer."],"Select provider":[null,"Välj leverantör"],"-- add new provider --":[null,"--Lägg till ny leverantör--"],"Provider name":[null,"Leverantörsnamn"],"Site URL":[null,"Sajt-URL"],"Newznab search categories":[null,"Newznab sökkategorier"],"select your Newznab categories on the left, and click the \"update categories\" button to use them for searching.) <b>don't forget to to save the form!":[null,"Välj Newznab-kategorier till vänster och klicka \"uppdatera kategorier\"-knappen för att använda dom i en sökning<b>glöm inte att spara!"],"Update Categories":[null,"Uppdatera kategorier"],"Add":[null,"Lägg till"],"Delete":[null,"Radera"],"Add and setup or remove custom RSS providers.":[null,"Lägga till och konfigurera eller ta bort anpassade RSS-leverantörer."],"RSS URL":[null,"URL för RSS"],"Search element":[null,"Sökelement"],"eg: title":[null,"t.ex.: titel"],"Episode Search":[null,"Episodsök"],"NZB Search":[null,"NZB Sök"],"Torrent Search":[null,"Torrent sök"],"How to manage searching with":[null,"Hur att hantera sökning med"],"Randomize Providers":[null,"Slumpa leverantörer"],"randomize the provider search order instead of going in order of placement":[null,"slumpa sökordningen för leverantör istället för placeringsordning"],"Download propers":[null,"Ladda ner propers"],"replace original download with \"Proper\" or \"Repack\" if nuked":[null,"ersätt original nedladdning med \"Proper\" eller \"Repack\" om nuked"],"Check propers every":[null,"Kola efter propers varje"],"24 hours":[null,"24 timmar"],"4 hours":[null,"4 timmar"],"90 mins":[null,"90 min"],"45 mins":[null,"45 min"],"15 mins":[null,"15 min"],"Backlog search day(s)":[null,"Backlog sökdag(ar)"],"number of day(s) that the \"Forced Backlog Search\" will cover (e.g. 7 Days)":[null,"antal dag(ar) som \"Tvinga backlog sök\" kommer att täcka (t.ex. 7 dagar)"],"Backlog search frequency":[null,"Backlog sökfrekvens"],"time in minutes between searches (min.":[null,"tid i minuter mellan sökningar (min."],"Daily search frequency":[null,"Daglig sökfrekvens"],"Usenet retention":[null,"Usenet retention"],"age limit in days for usenet articles to be used (e.g. 500)":[null,"åldersgräns i dagar för usenet artiklar till att används (e.g. 500)"],"Ignore words":[null,"Ignorerade ord"],"results with one or more word from this list will be ignored<br>separate words with a comma, e.g. \"word1,word2,word3\"":[null,"Resultat som har ett eller flera ord från den här listan kommer att ignoreras<br>separera ord med kommatecken, t.ex. \"ord1,ord2,ord3\""],"Require words":[null,"Krävda ord"],"results with no word from this list will be ignored<br>separate words with a comma, e.g. \"word1,word2,word3\"":[null,"Resultat som helt saknar ord från den här listan kommer att ignoreras<br>separera ord med kommatecken, t.ex. \"ord1,ord2,ord3\""],"Trackers list":[null,"Tracker lista"],"trackers that will be added to magnets without trackers<br>separate trackers with a comma, e.g. \"tracker1,tracker2,tracker3\"":[null,""],"Ignore language names in subbed results":[null,"Ignorera språknamn i textade resultat"],"ignore subbed releases based on language names <br>\n Example: \"dk\" will ignore words: dksub, dksubs, dksubbed, dksubed <br>\n separate languages with a comma, e.g. \"lang1,lang2,lang3":[null,""],"Allow high priority":[null,"Tillåt hög prioritet"],"set downloads of recently aired episodes to high priority":[null,"sätt nyligen nedladdade visade avsnitt till hög prioritet"],"Use Failed Downloads":[null,"Använd misslyckade nedladdningar"],"use Failed Download Handling?":[null,"aktivera hantering för misslyckade nedladdningar?"],"will only work with snatched/downloaded episodes after enabling this":[null,""],"Delete Failed":[null,"Borttagning misslyckades"],"delete files left over from a failed download?":[null,""],"this only works if Use Failed Downloads is enabled.":[null,""],"How to handle NZB search results.":[null,"Hur att hantera NZB sökresultat."],"Search NZBs":[null,"Sök NZBs"],"enable NZB search providers":[null,""],"Send .nzb files to":[null,"Skicka .nzb filer till"],"SABnzbd server URL":[null,"SABnzbd server URL"],"URL to your SABnzbd server (e.g. http://localhost:8080/)":[null,"URL till din SABnzbd server (t.ex. localhost8080:/)"],"SABnzbd username":[null,"SABnzbd användarnamn"],"(blank for none)":[null,"(blankt för inget)"],"SABnzbd password":[null,"SABnzbd lösenord"],"SABnzbd API key":[null,"SABnzbd API-nyckel"],"locate at... SABnzbd Config -> General -> API Key":[null,"finns i... SABnzbd Config-> General-> API Key"],"Use SABnzbd category":[null,"Använd SABnzbd-kategorier"],"add downloads to this category (e.g. TV)":[null,"lägg till nedladdningar i denna kategori (t.ex. TV)"],"Use SABnzbd category (backlog episodes)":[null,"Använda SABnzbd-kategori (backlog episoder)"],"add downloads of old episodes to this category (e.g. TV)":[null,"lägg till nedladdningar av gamla episoder i denna kategori (t.ex. TV)"],"Use SABnzbd category for anime":[null,"Använd SABnzbd-kategori för anime"],"add anime downloads to this category (e.g. anime)":[null,"lägg till anime nedladdningar till denna kategori (t.ex. anime)"],"Use SABnzbd category for anime (backlog episodes)":[null,"Använda SABnzbd-kategori för anime (backlog episoder)"],"add anime downloads of old episodes to this category (e.g. anime)":[null,"lägg till anime nedladdningar av gamla episoder till denna kategori (t.ex. anime)"],"Use forced priority":[null,"Använda tvingad prioritet"],"enable to change priority from HIGH to FORCED":[null,"aktivera för att ändra prioritet från HÖG till TVINGAD"],"Black hole folder location":[null,"\"Black hole\" mapp plats"],"<b>.nzb</b> files are stored at this location for external software to find and use":[null,"<b>.nzb</b> filer lagras på den här platsen så externa program kan hitta och använda"],"Connect using HTTPS":[null,"Ansluta via HTTPS"],"enable Secure control in NZBGet and set the correct Secure Port here":[null,"aktivera Säker kontroll i NZBGet och ange rätt Säker Port här"],"NZBget host:port":[null,"NZBget värd:port"],"(e.g. localhost:6789)":[null,"(t.ex. localhost: 6789)"],"NZBget RPC host name and port number (not NZBgetweb!)":[null,"NZBget RPC värdnamn och portnummer (inte NZBgetweb!)"],"NZBget username":[null,"NZBget användarnamn"],"locate in nzbget.conf (default:nzbget)":[null,"leta upp i nzbget.conf (standard: nzbget)"],"NZBget password":[null,"NZBget lösenord"],"locate in nzbget.conf (default:tegbzn6789)":[null,"leta upp i nzbget.conf (standard: tegbzn6789)"],"Use NZBget category":[null,"Använd NZBget-kategori"],"send downloads marked this category (e.g. TV)":[null,"skicka nedladdningar märkt med denna kategori (t.ex. TV)"],"Use NZBget category (backlog episodes)":[null,"Använd NZBget-kategori (backlog episoder)"],"send downloads of old episodes marked this category (e.g. TV)":[null,"skicka nedladdningar av gamla avsnitt markerade med denna kategori (t.ex. TV)"],"Use NZBget category for anime":[null,"Använd NZBget-kategori för anime"],"send anime downloads marked this category (e.g. anime)":[null,"skicka anime nedladdningar märkt med denna kategori (t.ex. anime)"],"Use NZBget category for anime (backlog episodes)":[null,"Använda NZBgetkategori för anime (backlog episoder)"],"send anime downloads of old episodes marked this category (e.g. anime)":[null,"skicka anime nedladdningar av gamla episoder markerade med denna kategori (t.ex. anime)"],"NZBget priority":[null,"NZBget prioritet"],"Very low":[null,"Mycket låg"],"Low":[null,"Låg"],"Very high":[null,"Mycket hög"],"Force":[null,"Tvinga"],"priority for daily snatches (no backlog)":[null,"prioritet för dagliga hämtningar (ingen backlog)"],"Torrent host:port":[null,"Torrent värd:port"],"URL to your Synology DSM (e.g. http://localhost:5000/)":[null,""],"Client username":[null,"Klientanvändarnamn"],"Client password":[null,"Klientlösenord"],"Downloaded files location":[null,"Plats för hämtade filer"],"where Synology Download Station will save downloaded files (blank for client default)":[null,"där Synology Download Station kommer att spara nedladdade filer (blankt för klientstandard)"],"the destination has to be a shared folder for Synology DS":[null,"målet måste vara en delad mapp för Synology DS"],"Click below to test":[null,"Klicka nedan för att testa"],"How to handle Torrent search results.":[null,"Hur att hanterar Torrent sökresultat."],"Search torrents":[null,"Sök torrenter"],"enable torrent search providers":[null,"aktivera sökleverantörer för torrent"],"Send .torrent files to":[null,"Skicka .torrent filer till"],"<b>.torrent</b> files are stored at this location for external software to find and use":[null,"<b>.torrent</b>-filer lagras på den här platsen för externa program att hitta och använda"],"URL to your torrent client (e.g. http://localhost:8000/)":[null,"URL till din torrent-klient (t.ex. http://localhost:8000/)"],"Torrent RPC URL":[null,"Torrent RPC-URL"],"the path without leading and trailing slashes (e.g. transmission)":[null,""],"Http Authentication":[null,"Http-autentisering"],"Verify certificate":[null,"Verifiera certifikat"],"disable if you get \"Deluge: Authentication Error\" in your log":[null,"inaktivera om du får \"Deluge: Authentication Error\" i din logg"],"verify SSL certificates for HTTPS requests":[null,""],"Add label to torrent":[null,"Lägg till etikett på torrent"],"(blank spaces are not allowed)":[null,"(blanksteg är inte tillåtet)"],"label plugin must be enabled in Deluge clients":[null,""],"for QBitTorrent 3.3.1 and up":[null,"för QBitTorrent 3.3.1 och högre"],"Add label to torrent for anime":[null,"Lägg till etikett på torrent för anime"],"for QBitTorrent 3.3.1 and up ":[null,""],"where <span id=\"torrent_client\">the torrent client</span> will save downloaded files (blank for client default)":[null,""],"the destination has to be a shared folder for Synology DS</span>":[null,"målet måste vara en delad mapp för Synology DS</span>"],"Minimum seeding time":[null,""],"time in hours":[null,"tid (timmar)"],"(default:'0' passes blank to client and '-1' passes nothing)":[null,""],"Start torrent paused":[null,"Starta torrent pausad"],"add .torrent to client but do <b style=\"font-weight:900\">not</b> start downloading":[null,"lägg till .torrent till klient men ladda<b style=\"font-weight:900\"> inte</b> ner"],"Allow high bandwidth":[null,"Tillåt hög bandbredd"],"use high bandwidth allocation if priority is high":[null,"använd hög bandbreddstilldelning om prioritet är hög"],"Test Connection":[null,"Prova anslutningen"],"Windows Shares":[null,""],"Defines your existing windows shares so that we can add them to the browse dialog":[null,""],"Share #{number}":[null,""],"Share label":[null,""],"Hostname or IP":[null,""],"Share path":[null,""],"Subtitles Search":[null,"Undertextsök"],"Subtitles Plugin":[null,"Undertextplugin"],"Plugin Settings":[null,"Plugininställningar"],"Settings that dictate how SickRage handles subtitles search results.":[null,"Inställningar som bestämmer hur SickRage hanterar sökresultat för undertexter."],"Search Subtitles":[null,"Sök undertexter"],"Subtitle Languages":[null,"Undertextspråk"],"Subtitle Directory":[null,"Undertextkatalog"],"the directory where SickRage should store your <i>Subtitles</i> files.":[null,""],"leave empty if you want store subtitle in episode path.":[null,""],"Subtitle Find Frequency":[null,"Undertext sökfrekvens"],"time in hours between scans (default: 1)":[null,"tid i timmar mellan skanningar (standard: 1)"],"Include Specials":[null,""],"include the show's specials when searching for subtitles?":[null,""],"Perfect matches":[null,"Perfekta matchningar"],"only download subtitles that match: release group, video codec, audio codec and resolution":[null,""],"if disabled you may get out of sync subtitles":[null,""],"Subtitles History":[null,"Undertexthistorik"],"log downloaded Subtitle on History page?":[null,""],"Subtitles Multi-Language":[null,"Flerspråkiga undertexter"],"append language codes to subtitle filenames?":[null,""],"this option is required if you use multiple subtitle languages":[null,""],"Delete unwanted subtitles":[null,"Ta bort oönskade undertexter"],"enable to delete unwanted subtitle languages bundled with release":[null,""],"Embedded Subtitles":[null,"Inbäddade undertexter"],"ignore subtitles embedded inside video file?":[null,""],"this will ignore <u>all</u> embedded subtitles for every video file!":[null,"detta kommer att ignorera <u>alla</u> inbäddade undertexter för varje videofil!"],"Hearing Impaired Subtitles":[null,"Undertexter för hörselskadade"],"download hearing impaired style subtitles?":[null,""],"See":[null,"Se"],"for a script arguments description.":[null,"för en beskrivning av skriptargument."],"Additional scripts separated by <b>|</b>.":[null,"Ytterligare skript separerade med<b>|</b>."],"Scripts are called after each episode has searched and downloaded subtitles.":[null,"Skript blir kört efter att varje episod har sökt och hämtat undertexter."],"For any scripted languages, include the interpreter executable before the script. See the following example":[null,"För alla skriptspråk, inkludera den körbara tolken. Se följande exempel"],"For Windows:":[null,"För Windows:"],"For Linux / OS X:":[null,"För Linux / OS X:"],"Subtitle Providers":[null,"Undertextleverantörer"],"Check off and drag the plugins into the order you want them to be used.":[null,"Markera och dra tilläggsprogrammen till den ordning du vill att de ska användas."],"At least one plugin is required.":[null,"Minst ett plugin krävs."]," Web-scraping plugin":[null," Web-scraping plugin"],"Provider Settings":[null,"Leverantörsinställningar"],"Set user and password for each provider":[null,"Ange användarnamn och lösenord för varje leverantör"],"User Name":[null,"Användarnamn"],"Change Show":[null,"Ändra serie"],"Prev Show":[null,"Föregående serie"],"Next Show":[null,"Nästa serie"],"Jump to Season":[null,"Hoppa till säsong"],"Specials":[null,"Specialer"],"Poster for":[null,"Affisch för"],"Stars":[null,"Stjärnor"],"minutes":[null,"minuter"],"View other popular {genre} shows on trakt.tv.":[null,"Kolla andra populära {genre} serier på trakt.tv."],"View other popular {imdbgenre} shows on IMDB.":[null,"Visa andra populära {imdbgenre}serier på IMDB."],"Allowed":[null,"Tillåten"],"Preferred":[null,"Önskad"],"Originally Airs":[null,"Sändes ursprungligen"],"Show Status":[null,"Seriestatus"],"Default EP Status":[null,"Standard episodstatusen"],"Location":[null,"Plats"],"Missing":[null,"Saknas"],"Scene Name":[null,"Scene namn"],"Required Words":[null,"Krävda ord"],"Ignored Words":[null,"Ignorerade ord"],"Size":[null,"Storlek"],"Info Language":[null,"Informationsspråk"],"Subtitles SR Metadata":[null,"Undertexter SR Metadata"],"Season Folders":[null,"Säsongmappar"],"Paused":[null,"Pausad"],"Air-by-Date":[null,"Sändningsdatum"],"Sports":[null,"Sport"],"DVD Order":[null,"DVD-sortering"],"Scene Numbering":[null,"Scene-numrering"],"Select Filtered Episodes":[null,"Markera filtrerade episoder"],"Clear All":[null,"Rensa alla"],"Change selected episodes to":[null,"Ändra valda episoder till"],"Select Columns":[null,"Markera kolumner"],"Hide Episodes":[null,""],"Show Episodes":[null,"Serieepisoder"],"NFO":[null,"NFO"],"TBN":[null,"TBN"],"Episode":[null,"Episod"],"Absolute":[null,"Absolut"],"Scene":[null,"Scene"],"Scene Absolute":[null,"Scene absolut"],"File Name":[null,"Filnamn"],"Airdate":[null,"Sändningsdatum"],"Download":[null,"Nerladdad"],"Change the value here if scene numbering differs from the indexer episode numbering":[null,"Ändra värdet här om scene-numrering skiljer sig från indexerarens episodnumrering"],"Change the value here if scene absolute numbering differs from the indexer absolute numbering":[null,"Ändra värdet här om scene absolutnumrering skiljer sig från indexerarens absolutnumrering"],"Manual Search":[null,"Manuell sök"],"Do you want to mark this episode as failed?":[null,"Vill du markera denna episod som misslyckad?"],"The episode release name will be added to the failed history, preventing it to be downloaded again.":[null,"Episodnamnet kommer att läggas till i felhistoriken, för att förhindra att den laddas ner igen."],"Do you want to include the current episode quality in the search?":[null,"Vill du inkludera den aktuella episodkvaliteten i sökningen?"],"Choosing No will ignore any releases with the same episode quality as the one currently downloaded/snatched.":[null,"Att välja Nej kommer att ignorera alla utgåvor med samma episodkvalitet som den nuvarande nerladdade/hämtade."],"Download subtitle":[null,"Ladda ner undertexter"],"Do you want to re-download the subtitle for this language?":[null,""],"It will overwrite your current subtitle":[null,"Det kommer att skriva över din nuvarande undertext"],"Format":[null,"Format"],"Advanced":[null,"Avancerade"],"Main Settings":[null,"Huvudinställningar"],"Show Location":[null,"Serieplats"],"Preferred Quality":[null,"Föredragen Kvalitet"],"Default Episode Status":[null,"Standard episodstatus"],"this will set the status for future episodes.":[null,""],"this only applies to episode filenames and the contents of metadata files.":[null,""],"search for subtitles":[null,"sök efter undertexter"],"Use SR Metdata":[null,"Använda SR Metdata"],"use SickRage metadata when searching for subtitle, this will override the autodiscovered metadata":[null,"använd SickRage metadata vid undertextssökning, detta åsidosätter det autodetekterade metadatat"],"pause this show (SickRage will not download episodes)":[null,"pausa denna serie (SickRage kommer inte ladda ner episoder)"],"Format Settings":[null,"Formatinställningar"],"Air by date":[null,"Sändningsdatum"],"check if the show is released as Show.03.02.2010 rather than Show.S02E03.":[null,"kontrollera om serien är släppt som Show.03.02.2010 istället för Show.S02E03."],"in case of an air date conflict between regular and special episodes, the later will be ignored.":[null,""],"check if the show is Anime and episodes are released as Show.265 rather than Show.S02E03":[null,"kontrollera om serien är en Anime och episoder är släppta som Show.265 istället för Show.S02E03"],"check if the show is a sporting or MMA event released as Show.03.02.2010 rather than Show.S02E03":[null,"kontrollera om serien är ett sport eller MMA evenemang som Show.03.02.2010 istället för Show.S02E03"],"Season folders":[null,"Säsongmappar"],"group episodes by season folder (uncheck to store in a single folder)":[null,"gruppera episoder i säsongmapp (avmarkera för att lagra i egen mapp)"],"search by scene numbering (uncheck to search by indexer numbering)":[null,"sök med scene-numrering (avmarkera för att söka med indexerarens numrering)"],"use the DVD order instead of the air order":[null,"använd DVD sortering i stället för sändningsdatum"],"a \"Force Full Update\" is necessary, and if you have existing episodes you need to sort them manually.":[null,""],"comma-separated <i>e.g. \"word1,word2,word3</i>\"":[null,"kommaseparerade <i>t.ex. \"ord1,ord2,ord3\"</i>"],"search results with one or more words from this list will be ignored.":[null,""],"e.g. \"word1,word2,word3\"":[null,"t.ex. \"ord1,ord2,ord3\""],"search results with no words from this list will be ignored.":[null,""],"Scene Exception":[null,"Scene-undantag"],"this will affect episode search on NZB and torrent providers.":[null,"detta kommer att påverka episodsökning på NZB och torrentleverantörer."],"this list appends to the original show name.":[null,"denna lista läggs till det ursprungliga show-namnet."],"WARNING logs":[null,"Varningsloggar"],"ERROR logs":[null,"Felloggar"],"There are no events to display.":[null,"Det finns inga händelser att visa."],"Limit":[null,"Gräns"],"Layout":[null,"Utseende"],"HistoryLayout":[null,"HistorikUtseende"],"Compact":[null,"Kompakt"],"Detailed":[null,"Detaljerad"],"Time":[null,"Tid"],"Provider":[null,"Leverantör"],"Missing Provider":[null,"Saknad leverantör"],"missing provider":[null,"saknad leverantör"],"Directory":[null,"Katalog"],"Show Name (tvshow.nfo)":[null,"Serienamn (tvshow.nfo)"],"Indexer":[null,"Indexerare"],"Enter the folder containing the episode":[null,"Ange mappen som innehåller episoden"],"Process Method to be used":[null,"Processmetod som ska användas"],"Copy":[null,"Kopiera"],"Move":[null,"Flytta"],"Hard Link":[null,"Hårdlänk"],"Symbolic Link":[null,"Symbolisk länk"],"Symbolic Link Reversed":[null,"Reversibel Symbolisk-länk"],"Force already Post Processed Dir/Files":[null,"Tvinga Kataloger/Filer som redan har efterbearbetats"],"Mark Dir/Files as priority download":[null,"Markera Kataloger/Filer som prioriterade nerladdningar"],"(Check it to replace the file even if it exists at higher quality)":[null,"(Markera det om du vill ersätta filen även om den finns med högre kvalitet)"],"Delete files and folders":[null,"Radera filer och mappar"],"(Check it to delete files and folders like auto processing)":[null,"(Markera det för att radera filer och mappar som automatisk bearbetning)"],"Don't use processing queue":[null,"Använd inte bearbetningskön"],"(If checked this will return the result of the process here, but may be slow!)":[null,"(Om denna är vald kommer processens resultat att returneras hit. Kan vara långsam!)"],"Mark download as failed":[null,"Markera nedladdning som misslyckad"],"Process":[null,"Bearbeta"],"Download subtitles for this show?":[null,"Ladda ner undertexter för den här serien?"],"use SickRage metadata when searching for subtitle, <br />this will override the autodiscovered metadata":[null,"använd SickRage metadata vid undertextssökning, <br />detta åsidosätter det autodetekterade metadatat"],"Status for previously aired episodes":[null,"Status för tidigare sända episoder"],"Status for all future episodes":[null,"Status för alla framtida episoder"],"Group episodes by season folder?":[null,""],"Is this show an Anime?":[null,"Är denna serie en Anime?"],"Is this show scene numbered?":[null,"Är denna serie scene-numrerad?"],"Save Defaults":[null,"Spara som standard"],"Use current values as the defaults":[null,"Använd aktuella värden som standard"],"<p>Select your preferred fansub groups from the <b>Available Groups</b> and add them to the <b>Whitelist</b>. Add groups to the <b>Blacklist</b> to ignore them.</p>\n <p>The <b>Whitelist</b> is checked <i>before</i> the <b>Blacklist</b>.</p>\n <p>Groups are shown as <b>Name</b> | <b>Rating</b> | <b>Number of subbed episodes</b>.</p>\n <p>You may also add any fansub group not listed to either list manually.</p>\n <p>When doing this please note that you can only use groups listed on anidb for this anime.\n <br>If a group is not listed on anidb but subbed this anime, please correct anidb's data.</p>":[null,"<p>Välj ditt föredragna fansub-grupper från de <b>Tillgängliga grupper</b> och lägg till dem i <b>vitlistan</b>. Lägg till grupper i <b>Svartlistan</b> för att ignorera dem.</p> \n <p><b>Vitlistan</b> kontrolleras före <i>innan</i> <b>Svartlistan</b>.</p> \n <p>Grupper visas som <b>Namn</b> | <b>Betyg</b> | <b>Antalet textade episoder</b>.</p> \n <p>Du kan ävenlägga till någon fansub-grupp som inte visas i någon av listorna manuellt.</p> \n <p>När du gör detta observera att du endast kan använda grupper listade på anidb för denna anime.\n <br>Om en grupp inte är listade på anidb men har textat denna anime, vänligen korrigera anidb's data.</p>"],"Whitelist":[null,"Vitlista"],"Available Groups":[null,"Tillgängliga grupper"],"Add to Whitelist":[null,"Lägg till i vitlistan"],"Add to Blacklist":[null,"Lägg till i svartlistan"],"Blacklist":[null,"Svartlista"],"Custom Group":[null,"Egen grupp"],"Allowed Quality:":[null,"Tillåten kvalitet:"],"Preferred Quality:":[null,"Rekommenderad kvalitet:"],"Filter Show Name":[null,"Filter serienamn"],"Root":[null,"Root"],"All":[null,"Alla"],"Clear Filter(s)":[null,"Rensa filter"],"Poster":[null,"Affisch"],"Small Poster":[null,"Liten poster"],"Banner":[null,"Banner"],"Simple":[null,"Enkel"],"Next Episode":[null,"Nästa episod"],"Progress":[null,"Förlopp"],"Direction":[null,"Riktning"],"Ascending":[null,"Stigande"],"Descending":[null,"Fallande"],"Poster Size":[null,"Posterstorlek"],"Continuing":[null,"Fortsätter"],"Ended":[null,"Avslutad"],"Total":[null,"Totalt"],"Invalid date":[null,"Ogiltigt datum"],"No Network":[null,"Inget nätverk"],"Next Ep":[null,"Nästa episod"],"Prev Ep":[null,"Föregående episod"],"Show":[null,"Visa"],"Downloads":[null,"Nedladdningar"],"Active":[null,"Aktiv"],"loading":[null,"laddar"],"Loading...":[null,"Laddar …..."],"<p><b><u>Preferred</u></b> qualities will replace those in <b><u>allowed</u></b>, even if they are lower.</p>":[null,"<p><b><u>Önskad</u></b> kvaliteter kommer att ersätta de i <b><u>tillåtna</u></b>, även om de är lägre.</p>"],"New":[null,"Ny"],"Set as Default":[null,"Ange som standard"],"Remember me":[null,"Kom ihåg mig"],"Edit Selected":[null,"Redigera markerade"],"Subtitle":[null,"Undertext"],"Default Ep Status":[null,"Standard episodstatus"],"Update":[null,"Uppdatera"],"Rescan":[null,"Sök igen"],"Rename":[null,"Byt namn"],"Search Subtitle":[null,"Sök undertext"],"Force Metadata Regen":[null,"Tvinga återgenerering av Metadata"],"Snatched (Allowed)":[null,"Hämtad (Tillåten)"],"Jump to Show":[null,"Hoppa till TV-serie"],"Force Backlog":[null,"Tvinga Backlog"],"Manage episodes with status":[null,"Hantera episoder med status"],"Manage":[null,"Hantera"],"None of your episodes have status":[null,"Ingen av dina episoder har status"],"Shows containing":[null,"Serier som innehåller"],"episodes":[null,"avsnitt"],"Set checked shows/episodes to":[null,"Sätt markerade serier/episoder till"],"Go":[null,"Kör"],"Select all":[null,"Markera allt"],"Clear all":[null,"Rensa allt"],"Release":[null,"Utgåva"],"Backlog Search":[null,"Backlog sök"],"Not in progress":[null,"Inte pågående"],"In Progress":[null,"Pågående"],"Daily Search":[null,"Daglig Sökning"],"Find Propers Search":[null,"Hitta Proper-Sök"],"Propers search disabled":[null,"Proper-Sök inaktiverad"],"Subtitle Search":[null,"Sök Undertext"],"Subtitle search disabled":[null,"Undertextsök inaktiverad"],"Search Queue":[null,"Sökkö"],"pending items":[null,"väntande objekt"],"Daily":[null,"Daglig"],"Manual":[null,"Manuell"],"Changing any settings marked with (<span class=\"separator\">*</span>) will force a refresh of the selected shows.":[null,"Ändring av någon inställning markerad med (<span class=\"separator\">*</span>) kommer att tvinga fram en uppdatering av de valda serier."],"Selected Shows":[null,"Valda serier"],"Root Directories":[null,"Rotkataloger"],"Current":[null,"Nuvarande"],"Keep":[null,"Behåll"],"Custom":[null,"Anpassad"],"Group episodes by season folder (set to \"No\" to store in a single folder).":[null,"Gruppera episoder efter säsongsmapp (sätt till \"Nej\" för att lagra i egen mapp)."],"Pause these shows (SickRage will not download episodes).":[null,"Pausa dessa serier (SickRage kommer inte ladda ner episoder)."],"This will set the status for future episodes.":[null,"Detta kommer ange statusen för framtida episoder."],"Search by scene numbering (set to \"No\" to search by indexer numbering).":[null,"Sök med scene-numrering (sätt på \"Nej\" för att söka med indexeringsnumrering)."],"Set if these shows are Anime and episodes are released as Show.265 rather than Show.S02E03":[null,"Ange om dessa serier är Anime och episoder är släppta som Show.265 istället för Show.S02E03"],"Set if these shows are sporting or MMA events released as Show.03.02.2010 rather than Show.S02E03.":[null,"Ange om dessa serier är sport eller MMA evenemang släppta som Show.03.02.2010 istället för Show.S02E03."],"In case of an air date conflict between regular and special episodes, the later will be ignored.":[null,"Vid en sändningsdatum konflikt mellan ordinarie och specialepisoder, ignoreras den sistnämnda."],"Set if these shows are released as Show.03.02.2010 rather than Show.S02E03.":[null,"Ange om dessa serier är släppta som Show.03.02.2010 istället för Show.S02E03."],"Search for subtitles.":[null,"Sök efter undertexter."],"All of your episodes have {subsLanguage} subtitles.":[null,"Alla dina episoder har {subsLanguage} undertexter."],"Manage episodes without":[null,"Hantera episoder utan"],"Episodes without {subsLanguage} subtitles.":[null,"Episoder utan {subsLanguage} undertexter."],"Episodes without {subtitleLanguage} (undefined) subtitles.":[null,"Episoder utan {subtitleLanguage} (odefinierad) undertexter."],"Download missed subtitles for selected episodes":[null,"Hämta missade undertexter för valda episoder"],"Performing Restart":[null,"Utför omstart"],"Waiting for SickRage to shut down":[null,"Väntar på att SickRage ska avslutas"],"Waiting for SickRage to start again":[null,"Väntar på att SickRage ska starta igen"],"Loading the default page":[null,"Laddar standardsidan"],"Error: The restart has timed out, perhaps something prevented SickRage from starting again?":[null,"Fel: Omstarten har gått ut, kanske något hindrade SickRage från att starta igen?"],"Key":[null,"Nyckel"],"Missed":[null,"Missade"],"Today":[null,"Idag"],"Soon":[null,"Snart"],"Later":[null,"Senare"],"Subscribe":[null,"Prenumerera"],"Date":[null,"Datum"],"View Paused":[null,"Visa pausad"],"Hidden":[null,"Dold"],"Shown":[null,"Visas"],"Calendar":[null,"Kalender"],"List":[null,"Lista"],"Ends":[null,"Slutar"],"Next Ep Name":[null,"Nästa avsnitts Namn"],"Run time":[null,"Körtid"],"Indexers":[null,"Indexerare"],"No shows for this day":[null,"Inga TV_serier denna dag"],"Airs":[null,"Sänds"],"Plot":[null,"Sammanfattning"],"Show Update":[null,"Serieuppdatering"],"Version Check":[null,"Versionskontroll"],"Proper Finder":[null,"Proper sökare"],"Post Process":[null,"Efterbearbetningen"],"Subtitles Finder":[null,"Undertext sökare"],"Scheduler":[null,"Schemaläggare"],"Alive":[null,"Igång"],"Start Time":[null,"Starttid"],"Cycle Time":[null,"Repititionstid"],"Next Run":[null,"Nästa körning"],"Last Run":[null,"Senaste körning"],"Silent":[null,"Bakgrund"],"True":[null,"Sant"],"N/A":[null,"Okänt"],"Show id":[null,"Visa id"],"Show name":[null,"TV-seriens namn"],"Priority":[null,"Prioritet"],"Added":[null,"Tillagd"],"Queue type":[null,"Kötyp"],"LOW":[null,"LÅG"],"NORMAL":[null,"NORMAL"],"HIGH":[null,"HÖG"],"Disk Space":[null,"Hårddisksutrymme"],"Free space":[null,"Ledigt utrymme"],"TV Download Directory":[null,"TV-nerladdningskatalog"],"Media Root Directories":[null,"Media rotkatalog"],"Preview of the proposed name changes":[null,"Förhandsgranska föreslagna namnändringar"],"All Seasons":[null,"Alla Säsonger"],"select all":[null,"markera alla"],"Rename Selected":[null,"Byt namn på valda"],"Cancel Rename":[null,"Avbryt Byt namn"],"Old Location":[null,"Gamla platsen"],"New Location":[null,"Ny plats"],"Trakt API did not return any results, please check your config.":[null,"Trakt API returnerade inte några resultat, vänligen kontrollera din konfiguration."],"votes":[null,"röster"],"Remove Show":[null,"Ta bort TV-serie"],"Level":[null,"Nivå"],"Filter":[null,"Filtrera"],"All non-absolute folder locations are relative to ":[null,"Alla icke-absoluta mapplatser är relaterade till "],"Manual Post-Processing":[null,"Manuell efterbehandling"],"Episode Status Management":[null,"Hantering episodstatus"],"Update PLEX":[null,"Uppdatera PLEX"],"Update KODI":[null,"Uppdatera KODI"],"Update Emby":[null,"Uppdatera Emby"],"Missed Subtitle Management":[null,"Hantera saknade undertext"],"Help & Info":[null,"Hjälp & Information"],"Backup & Restore":[null,"Säkerhetskopiering & återställning"],"Tools":[null,"Verktyg"],"Support SickRage":[null,"Stöd SickRage"],"View Errors":[null,"Visa fel"],"View Warnings":[null,"Visa varningar"],"View Log":[null,"Visa logg"],"Check For Updates":[null,"Sök efter uppdateringar"],"Restart":[null,"Starta om"],"Shutdown":[null,"Stäng av"],"Logout":[null,"Logga ut"],"Server Status":[null,"Serverstatus"],"View overview of snatched episodes":[null,"Visa översikt över hämtade avsnitt"],"Episodes Downloaded":[null,"Nerladdade avsnitt"],"Memory used":[null,"Använt minne"],"Load time":[null,"Laddningstid"],"Branch":[null,"Gren"],"Now":[null,"Nu"]}}}} \ No newline at end of file +{"messages":{"domain":"messages","locale_data":{"messages":{"100":[null,"100"],"250":[null,"250"],"500":[null,"500"],"":{"domain":"messages","plural_forms":"nplurals=2; plural=(n != 1);","lang":"sv_SE"},"Drama":[null,"Drama"],"Mystery":[null,"Deckare"],"Science-Fiction":[null,"Science Fiction"],"Crime":[null,"Deckare"],"Action":[null,"Åtgärd"],"Comedy":[null,"Komedi"],"Thriller":[null,"Thriller"],"Animation":[null,"Animering"],"Family":[null,"Familj"],"Fantasy":[null,"Fantasy"],"Adventure":[null,"Äventyr"],"Horror":[null,"Skräck"],"Film-Noir":[null,"Film-Noir"],"Sci-Fi":[null,"Sci-Fi"],"Romance":[null,"Romans"],"Sport":[null,"Sport"],"War":[null,"Krig"],"Biography":[null,"Biografi"],"History":[null,"Historik"],"Music":[null,"Musik"],"Western":[null,"Western"],"News":[null,"Nyheter"],"Sitcom":[null,"Situationskomedi"],"Reality-TV":[null,"Reality-TV"],"Documentary":[null,"Dokumentär"],"Game-Show":[null,"Gameshow"],"Musical":[null,"Musikal"],"Talk-Show":[null,"Talkshow"],"Started Download":[null,"Hämtning påbörjad"],"Download Finished":[null,"Nerladdning klar"],"Subtitle Download Finished":[null,"Undertext nerladdad"],"SickRage Updated":[null,"SickRage uppdaterad"],"SickRage Updated To Commit#: ":[null,"SickRage uppdaterad till version#: "],"SickRage new login":[null,"SickRage ny inloggning"],"New login from IP: {0}. http://geomaplookup.net/?ip={0}":[null,"Ny inloggning från IP: {0}. http://geomaplookup.net/?IP={0}"],"Repeat":[null,"Upprepa"],"Repeat (Separated)":[null,"Upprepa (åtskilt)"],"Extend":[null,"Förläng"],"Extend (Limited)":[null,"Förläng (Begränsat)"],"Extend (Limited, E-prefixed)":[null,"Förläng (Begränsat, E-prefix)"],"Downloaded":[null,"Nedladdad"],"Snatched":[null,"Hämtad"],"Snatched (Proper)":[null,"Hämtad (Proper)"],"Failed":[null,"Misslyckad"],"Snatched (Best)":[null,"Hämtad (Best)"],"Archived":[null,"Arkiverad"],"Unknown":[null,"Okänd"],"Unaired":[null,"Kommande"],"Skipped":[null,"Hoppat över"],"Wanted":[null,"Önskad"],"Ignored":[null,"Ignorerad"],"Subtitled":[null,"Undertextad"],"For best results please set the Download Station alias as":[null,"För bästa resultat vänligen ange Download Station alias som"],"You can check this setting in the Synology DSM":[null,"Du kan kontrollera inställningen i Synology DSM"],"Control Panel":[null,"Kontrollpanel"],"Application Portal":[null,"Applikationsportal"],"Make sure you allow DSM to be embedded with iFrames too in":[null,"Kontrollera att du tillåter DSM att integreras med iFrames också i"],"DSM Settings":[null,"DSM-inställningar"],"Security":[null,"Säkerhet"],"<No Filter>":[null,"<Inget filter>"],"Daily Searcher":[null,"Dagliga sökaren"],"Backlog":[null,"Backlog"],"Show Updater":[null,"Serieuppdateraren"],"Check Version":[null,"Kontrollera Version"],"Show Queue":[null,"Visa kö"],"Search Queue (All)":[null,"Sök-kö (alla)"],"Search Queue (Daily Searcher)":[null,"Sök kö (Dagliga sökaren)"],"Search Queue (Backlog)":[null,"Sök kö (Backlog)"],"Search Queue (Manual)":[null,"Sök-kö (manuell)"],"Search Queue (Retry/Failed)":[null,"Sök-kö (försök igen/misslyckades)"],"Search Queue (RSS)":[null,"Sök kö (RSS)"],"Find Propers":[null,"Hitta Propers"],"Postprocessor":[null,"Postprocessor"],"Find Subtitles":[null,"Hitta undertexter"],"Trakt Checker":[null,"Trakt kontroll"],"Event":[null,"Händelse"],"Error":[null,"Fel"],"Tornado":[null,"Tornado"],"Thread":[null,"Tråd"],"Main":[null,"Primär"],"Loading":[null,""],"New update found for SickRage, starting auto-updater":[null,"Ny uppdatering för SickRage hittad, startar automatisk updatering"],"Update was successful":[null,"Uppdateringen var framgångsrik"],"Update failed!":[null,"Uppdateringen misslyckades!"],"Backup":[null,"Säkerhetskopiera"],"Config backup in progress...":[null,"Säkerhetskopiering av konfigurationen pågår..."],"Config backup successful, updating...":[null,"Säkerhetskopiering av konfiguration var framgångsrik, uppdaterar..."],"Config backup failed, aborting update":[null,"Säkerhetskopiering av konfiguration misslyckades, avbryter uppdatering"],"No update needed":[null,"Ingen uppdatering behövs"],"Mako Error":[null,"Mako fel"],"Oops":[null,"Hoppsan"],"Wrong API key used":[null,"Fel API nyckel användes"],"Login":[null,"Användarnamn"],"API Key not generated":[null,"API nyckeln är inte genererad"],"API Builder":[null,"API Byggare"],"Schedule":[null,"Schemalägg"],"Test 1":[null,"Test 1"],"This is test number 1":[null,"Detta är test nummer 1"],"Test 2":[null,"Test 2"],"This is test number 2":[null,"Detta är test nummer 2"],"You're using the {branch} branch. Please use 'master' unless specifically asked":[null,"Du använder {branch} branchen. Vänligen använd 'master' om inget annat speciellt efterfrågats"],"Invalid show parameters":[null,"Ogiltiga show parametrar"],"Invalid parameters":[null,"Ogiltiga parametrar"],"Episode couldn't be retrieved":[null,"Avsnittet kunde inte hämtas"],"Home":[null,"Startsida"],"Show List":[null,"Visa lista"],"Error: Unsupported Request. Send jsonp request with 'callback' variable in the query string.":[null,"Fel: Ogiltig begäran. Skicka jsonp begäran med \"callback\" variabel i frågesträngen."],"Success. Connected and authenticated":[null,"Lyckades. Ansluten och autentiserad"],"Authentication failed. SABnzbd expects":[null,"Autentisering misslyckades. SABnzbd förväntad"],"as authentication method":[null,"som autentiseringsmetod"],"Unable to connect to host":[null,"Det går inte att ansluta till värden"],"SMS sent successfully":[null,"SMS har skickats"],"Problem sending SMS: {message}":[null,"Problem att skicka SMS: {message}"],"Telegram notification succeeded. Check your Telegram clients to make sure it worked":[null,"Telegram notifiering lyckades. Kontrollera dina Telegram klienter för att verifiera"],"Error sending Telegram notification: {message}":[null,"Problem att skicka Telegram notifiering: {message}"],"join notification succeeded. Check your join clients to make sure it worked":[null,"gå med notifiering lyckades. Kontrollera dina gå med klienter för att verifiera"],"Error sending join notification: {message}":[null,"Problem att skicka gå med notifiering: {message}"]," with password":[null," med lösenord"],"Registered and Tested growl successfully {growl_host}":[null,"Registrering och testning av Growl lyckades {growl_host}"],"Registration and Testing of growl failed {growl_host}":[null,"Registrering och testning av Growl misslyckades {growl_host}"],"Test prowl notice sent successfully":[null,"Test prowl meddelande lyckades"],"Test prowl notice failed":[null,"Test prowl meddelande misslyckades"],"Boxcar2 notification succeeded. Check your Boxcar2 clients to make sure it worked":[null,"Boxcar2 notifiering lyckades. Kolla din Boxcar2 klient för att säkerställa att det funkade"],"Error sending Boxcar2 notification":[null,"Ett fel uppstod vid Boxcar2 notifiering"],"Pushover notification succeeded. Check your Pushover clients to make sure it worked":[null,"Pushover notifiering lyckades. Kontrollera din Pushover klient för att säkerställa att det funkade"],"Error sending Pushover notification":[null,"Ett fel uppstod vid Pushover notifiering"],"Key verification successful":[null,"Nyckel-verifiering lyckades"],"Unable to verify key":[null,"Det gick inte att verifiera nyckeln"],"Tweet successful, check your twitter to make sure it worked":[null,"Tweet lyckades, kontrollera din twitter för att säkerställa att det funkade"],"Error sending tweet":[null,"Misslyckades att sända tweet"],"Please enter a valid account sid":[null,"Vänligen ange ett giltigt konto-sid"],"Please enter a valid auth token":[null,"Vänligen ange en giltig auth-token"],"Please enter a valid phone sid":[null,"Vänligen ange ett giltigt telefon-sid"],"Please format the phone number as \"+1-###-###-####\"":[null,"Vänligen formatera telefonnummer som \"+ 1-###-###-###\""],"Authorization successful and number ownership verified":[null,"Authentisering lyckades och numrets ägarskap verifierades"],"Error sending sms":[null,"Fel vid skickande av sms"],"Slack message successful":[null,"Slack meddelande lyckades"],"Slack message failed":[null,"Slack meddelande misslyckades"],"Discord message successful":[null,"Discord-meddelande lyckades"],"Discord message failed":[null,"Discord-meddelande misslyckades"],"Test KODI notice sent successfully to {kodi_host}":[null,"KODI test-notifiering lyckades till {kodi_host}"],"Test KODI notice failed to {kodi_host}":[null,"KODI test-notifiering misslyckades till {kodi_host}"],"Successful test notice sent to Plex Home Theater ... {plex_clients}":[null,"Lyckat test-notifiering blev sänt till Plex Home Theater ... {plex_clients}"],"Test failed for Plex Home Theater ... {plex_clients}":[null,"Test misslyckades för Plex Home Theater ... {plex_clients}"],"Tested Plex Home Theater(s)":[null,"Testade Plex Home Theater(s)"],"Successful test of Plex Media Server(s) ... {plex_servers}":[null,"Lyckat test för Plex Media Server(s) ... {plex_servers}"],"Test failed, No Plex Media Server host specified":[null,"Test misslyckades. Ingen specificerad Plex Media Server värd"],"Test failed for Plex Media Server(s) ... {plex_servers}":[null,"Test misslyckades för Plex Media Server(s) ... {plex_servers}"],"Tested Plex Media Server host(s)":[null,"Testade Plex Media Server Värd(ar)"],"Tried sending desktop notification via libnotify":[null,"Försökte skicka skrivbordsnotifiering via libnotify"],"Test notice sent successfully to {emby_host}":[null,"Lyckad testnotis skickades till {emby_host}"],"Test notice failed to {emby_host}":[null,"Testnotis misslyckades till {emby_host}"],"Successfully started the scan update":[null,"Lyckad start av skanningsuppdateringen"],"Test failed to start the scan update":[null,"Testet misslyckades att starta skanningsuppdateringen"],"Test notice sent successfully to {nmj2_host}":[null,"Lyckad testnotis skickades till {nmj2_host}"],"Test notice failed to {nmj2_host}":[null,"Testnotis misslyckades till {nmj2_host}"],"Trakt Authorized":[null,"Trakt auktoriserad"],"Trakt Not Authorized!":[null,"Trakt inte auktoriserad!"],"Test email sent successfully! Check inbox.":[null,"E-posttest lyckades! Kolla inkorgen."],"ERROR: {last_error}":[null,"FEL: {last_error}"],"Test NMA notice sent successfully":[null,"NMA-testnotis skickades framgångsrikt"],"Test NMA notice failed":[null,"NMA-testnotis misslyckades"],"Pushalot notification succeeded. Check your Pushalot clients to make sure it worked":[null,"Pushalot notifiering lyckades. Kolla din Pushalot klient för att säkerställa att det funkade"],"Error sending Pushalot notification":[null,"Fel vid sändning av Pushalot-notis"],"Pushbullet notification succeeded. Check your device to make sure it worked":[null,"Pushbullet notifiering lyckades. Kontrollera din enhet för att säkerställa att det funkade"],"Error sending Pushbullet notification":[null,"Ett fel uppstod vid sändning av Pushbullet notifiering"],"Status":[null,"Status"],"Restarting SickRage":[null,"Startar om SickRage"],"Update Failed":[null,"Uppdateringen misslyckades"],"Update wasn't successful, not restarting. Check your log for more information.":[null,"Uppdateringen lyckades ej, startar inte om. Se logg för mer information."],"Checking out branch":[null,"Kontrollera branch"],"Already on branch":[null,"Redan på den branchen"],"Invalid show ID: {show}":[null,"Ogiltigt serie ID: {show}"],"Show not in show list":[null,"Serie finns inte med på serielistan"],"Edit":[null,"Redigera"],"This show is in the process of being downloaded - the info below is incomplete.":[null,"Denna serie håller på att laddas ner. Informationen nedan är ofullständig."],"The information on this page is in the process of being updated.":[null,"Informationen på denna sida håller på att uppdateras."],"The episodes below are currently being refreshed from disk":[null,"Avsnitten nedan uppdateras på disken"],"Currently downloading subtitles for this show":[null,"Laddar ner undertexter för denna serie"],"This show is queued to be refreshed.":[null,"Denna serie står i kö för att bli uppdaterad."],"This show is queued and awaiting an update.":[null,"Denna serie står i kö för att uppdateras."],"This show is queued and awaiting subtitles download.":[null,"Denna serie står i kö för att ladda ner undertexter."],"Resume":[null,"Fortsätt"],"Pause":[null,"Paus"],"Remove":[null,"Ta bort"],"Re-scan files":[null,"Skanna om filer"],"Force Full Update":[null,"Tvinga full uppdatering"],"Update show in KODI":[null,"Uppdatera serie i KODI"],"Update show in Emby":[null,"Uppdatera serie i Emby"],"Hide specials":[null,"Dölj specialer"],"Show specials":[null,"Visa specialer"],"Preview Rename":[null,"Förhandsgranska namn byte"],"Download Subtitles":[null,"Ladda ner undertexter"],"No scene exceptions":[null,"Inget scene undantag"],"Invalid show ID":[null,"Ogiltigt serie ID"],"Unable to find the specified show":[null,"Det gick inte att hitta den angivna serien"],"Unable to retreive Fansub Groups from AniDB.":[null,"Gick inte att hämta Fansub Groups från AniDB."],"Edit Show":[null,"Redigera program"],"Unable to refresh this show: {error}":[null,"Det gick inte att uppdatera denna serien: {error}"],"New location <tt>{location}</tt> does not exist":[null,"Ny plats <tt>{location}</tt> finns inte"],"Unable to update show: {error}":[null,"Misslyckades att uppdatera serie: {error}"],"Unable to force an update on scene exceptions of the show.":[null,"Kan inte att tvinga en uppdatering av scene undantag för denna serie."],"Unable to force an update on scene numbering of the show.":[null,"Kan inte att tvinga en uppdatering av scene numrering av denna serie."],"{num_errors:d} error{plural} while saving changes:":[null,"{num_errors:d} fel{plural} vid sparande av ändringar:"],"{show_name} has been {paused_resumed}":[null,"{show_name} har blivit {paused_resumed}"],"resumed":[null,"återupptogs"],"paused":[null,"pausad"],"{show_name} has been {deleted_trashed} {was_deleted}":[null,"{show_name} har blivit {deleted_trashed} {was_deleted}"],"deleted":[null,"raderad"],"trashed":[null,"slängd"],"(media untouched)":[null,"(media orörd)"],"(with all related media)":[null,"(med all relaterad media)"],"Unable to refresh this show.":[null,"Kan inte att uppdatera denna serie."],"Unable to update this show.":[null,"Kan inte uppdatera denna serie."],"Library update command sent to KODI host(s)): {kodi_hosts}":[null,"Biblioteksuppdateringskommando skickat till KODI värd(ar)): {kodi_hosts}"],"Unable to contact one or more KODI host(s)): {kodi_hosts}":[null,"Misslyckad anslutning till en eller flera KODI servrar: {kodi_hosts}"],"Library update command sent to Plex Media Server host: {plex_server}":[null,"Biblioteksuppdateringskommandot skickades till Plex Media Server: {plex_server}"],"Unable to contact Plex Media Server host: {plex_server}":[null,"Det går inte att kontakta PMS servern: {plex_server}"],"Library update command sent to Emby host: {emby_host}":[null,"Biblioteksuppdateringskommandot skickades till Emby Host: {emby_host}"],"Unable to contact Emby host: {emby_host}":[null,"Det går inte att kontakta Emby servern: {emby_host}"],"You must specify a show and at least one episode":[null,"Du måste välja en serie och minst ett avsnitt"],"Invalid status":[null,"Ogiltig status"],"Backlog was automatically started for the following seasons of <b>{show_name}</b>":[null,"Backlog startades automatiskt för följande säsonger av <b>{show_name}</b>"],"Season":[null,"Säsong"],"Backlog started":[null,"Backlog startad"],"Retrying Search was automatically started for the following season of <b>{show_name}</b>":[null,"Försöker söka på nytt blev automatisk startat för följande säsong av <b>{show_name}</b>"],"Retry Search started":[null,"Nytt sökförsök påbörjades"],"You must specify a show":[null,"Du måste välja en serie"],"Can't rename episodes when the show dir is missing.":[null,"Kan inte byta namn på avsnitt när seriens bibliotek saknas."],"New subtitles downloaded: {new_subtitle_languages}":[null,"Nya undertexter hämtade: {new_subtitle_languages}"],"No subtitles downloaded":[null,"Inga undertexter nerladdade"],"IRC":[null,"IRC"],"Could not load news from the repo. [Click here for news.md])({news_url})":[null,"Kunde inte ladda nyheter från repo. [Click here for news.md]) ({news_url})"],"The was a problem connecting to github, please refresh and try again":[null,"Det var problem med att ansluta till github, vänligen uppdatera och försök igen"],"Could not load changes from the repo. [Click here for CHANGES.md]({changes_url})":[null,"Kunde inte ladda ändringar från repo. [Click here for CHANGES.md] ({changes_url})"],"Changelog":[null,"Ändringslogg"],"Post Processing":[null,"Efterbearbetning"],"Add Shows":[null,"Lägg till program"],"No folders selected.":[null,"Inga mappar har valts."],"New Show":[null,"Ny Serie"],"Trending Shows":[null,"Populära serier"],"Popular Shows":[null,"Populär serie"],"Most Anticipated Shows":[null,"Mest efterlängtade serier"],"Most Collected Shows":[null,""],"Most Watched Shows":[null,""],"Most Played Shows":[null,""],"Recommended Shows":[null,""],"New Shows":[null,"Nya TV-serier"],"Season Premieres":[null,"Säsongs premiärer"],"Existing Show":[null,"Existerande Serie"],"No root directories setup, please go back and add one.":[null,"Inga rotkataloger har valts, gå tillbaka och lägga till en."],"Show added":[null,"Serien tillagd"],"Adding the specified show {show_name}":[null,"Lägger till den angivna serien {show_name}"],"Missing params, no Indexer ID or folder: {show_to_add} and {root_dir}/{show_path}":[null,"Parametrar saknas, inget index ID eller mapp: {show_to_add} och {root_dir}/{show_path}"],"Unknown error. Unable to add show due to problem with show selection.":[null,"Okänt fel. Misslyckades att lägga till serie på grund av problem med val av serie."],"Unable to add show":[null,"Det gick inte att lägga till serien"],"Folder {show_dir} exists already":[null,"Mappen {show_dir} finns redan"],"Unable to create the folder {show_dir}, can't add the show":[null,"Kan inte skapa mapp {show_dir}, kan inte lägga till serien"],"Adding the specified show into {show_dir}":[null,"Lägger till den angivna serien i {show_dir}"],"Shows Added":[null,"Serier tillagda"],"Automatically added {num_shows} from their existing metadata files":[null,"La automatiskt till {num_shows} från deras existerande metadatafiler"],"Mass Update":[null,"Massuppdatering"],"Episode Overview":[null,"Episod översikt"],"Missing Subtitles":[null,"Saknade undertexter"],"Backlog Overview":[null,"Backlog Översikt"],"Mass Edit":[null,"Mass redigera"],"Unable to update show: {excption_format}":[null,"Det gick inte att uppdatera serien: {excption_format}"],"Unable to refresh show {show_name}: {excption_format}":[null,"Gick inte att uppdatera serien {show_name}: {excption_format}"],"Errors encountered":[null,"Fel uppstod"],"Updates":[null,"Uppdateringar"],"Refreshes":[null,"Uppdateringar"],"Renames":[null,"Byter namn"],"Subtitles":[null,"Undertexter"],"The following actions were queued":[null,"Följande åtgärder köades"],"Failed Downloads":[null,"Misslyckade nedladdningar"],"Manage Searches":[null,"Hantera sökningar"],"Backlog search started":[null,"Backlog sök startad"],"Daily search started":[null,"Daglig sökning startades"],"Find propers search started":[null,"Hitta Proper-sök startad"],"Subtitle search started":[null,"Untertextsökning startad"],"Remove Selected":[null,"Ta bort markerad"],"Clear History":[null,"Rensa historik"],"Trim History":[null,"Trimma historia"],"Selected history entries removed":[null,""],"History cleared":[null,"Historik rensad"],"Removed history entries older than 30 days":[null,"Tog bort historik äldre än 30 dagar"],"General":[null,"Allmänt"],"Backup/Restore":[null,"Backup / Återställ"],"Search Settings":[null,"Sökinställningar"],"Search Providers":[null,"Sökleverantörer"],"Subtitles Settings":[null,"Undertextinställningar"],"Notifications":[null,"Notifikationer"],"Anime":[null,"Anime"],"SickRage Configuration":[null,"SickRage konfiguration"],"Config - Shares":[null,""],"Windows Shares Configuration":[null,""],"Saved Shares":[null,""],"Your Windows share settings have been saved":[null,""],"Config - General":[null,"Inställningar - Allmäna"],"General Configuration":[null,"Allmäna inställningar"],"Saved Defaults":[null,"Spara som standard"],"Your \"add show\" defaults have been set to your current selections.":[null,"Dina standardinställningar för \"lägg till serie\" har ändrats till de aktuella urvalen."],"Unable to create directory {directory}, log directory not changed.":[null,"Gick inte att skapa katalog {directory}, loggkatalog oförändrad."],"Unable to create directory {directory}, https cert directory not changed.":[null,"Gick inte att skapa katalogen {directory}, https cert katalog oförändrad."],"Unable to create directory {directory}, https key directory not changed.":[null,"Gick inte att skapa katalogen {directory}, https nyckelkatalog oförändrad."],"Error(s) Saving Configuration":[null,"Fel när konfigurationen sparades"],"Configuration Saved":[null,"Konfigurationen sparad"],"Config - Backup/Restore":[null,"Inställning - Backup/Återställ"],"Config - Episode Search":[null,"Inställning - Episod Sök"],"Config - Post Processing":[null,"Inställning - efterbearbetning"],"Unpacking Not Supported, disabling unpack setting":[null,"Uppackning stöds inte, inaktiverar uppackningsinställning"],"You tried saving an invalid normal naming config, not saving your naming settings":[null,""],"You tried saving an invalid anime naming config, not saving your naming settings":[null,"Du försökte spara en ogiltig anime namngivningskonfigurering, sparar inte namngivningsinställningarna"],"Config - Providers":[null,"Alternativ - Leverantör"],"No Provider Name specified":[null,"Ingen sökleverantör specificerad"],"No Provider Url specified":[null,"Ingen sökleverantörsadress specificerad"],"No Provider Api key specified":[null,"Ingen sökleverantör Api-nyckel specificerad"],"Config - Notifications":[null,"Alternativ - Notifikationer"],"Config - Subtitles":[null,"Alternativ - Undertexter"],"Config - Anime":[null,"Inställningar - Anime"],"Clear Errors":[null,"Rensa fel"],"Clear Warnings":[null,"Rensa varningar"],"Submit Errors":[null,"Skicka in fel"],"Logs & Errors":[null,"Loggar & Fel"],"Log File":[null,"Loggfil"],"Logs":[null,"Loggar"],"This is a test notification from SickRage":[null,"Detta är en test-notifikation från SickRage"],"Choose Directory":[null,""],"Select log file folder location":[null,""],"Select CSS file":[null,""],"Select backup folder to save to":[null,""],"Select backup files to restore":[null,""],"Please fill out the necessary fields above.":[null,""],"<b>Step 1:</b> Confirm Authorization":[null,""],"Check blacklist name; the value needs to be a trakt slug":[null,""],"You must provide a recipient email address!":[null,""],"You didn't supply a Pushbullet api key":[null,""],"Don't forget to save your new pushbullet settings.":[null,""],"Select TV Download Directory":[null,""],"Select Unpack Directory":[null,""],"This pattern is invalid.":[null,""],"This pattern would be invalid without the folders, using it will force \"Season Folders\" on for all shows.":[null,""],"This pattern is valid.":[null,""],"Select .nzb black hole/watch location":[null,""],"Select .torrent black hole/watch location":[null,""],"Select .torrent download location":[null,""],"Minimum seeding time is":[null,""],"URL to your uTorrent client (e.g. http://localhost:8000)":[null,""],"Stop seeding when inactive for":[null,""],"URL to your Transmission client (e.g. http://localhost:9091)":[null,""],"URL to your Deluge client (e.g. http://localhost:8112)":[null,""],"IP or Hostname of your Deluge Daemon (e.g. scgi://localhost:58846)":[null,""],"URL to your Synology DS client (e.g. http://localhost:5000)":[null,""],"URL to your rTorrent client (e.g. scgi://localhost:5000 <br> or https://localhost/rutorrent/plugins/httprpc/action.php)":[null,""],"URL to your qBittorrent client (e.g. http://localhost:8080)":[null,""],"URL to your MLDonkey (e.g. http://localhost:4080)":[null,""],"URL to your putio client (e.g. http://localhost:8080)":[null,""],"<a herf=\"https://app.put.io/oauth/apps/new\" target=\"_blank\"> Create a new OAuth app for put.io</a>":[null,""],"Put.io Parent Folder":[null,""],"Put.io OAuth Token":[null,""],"Show Episodes":[null,"Serieepisoder"],"Hide Episodes":[null,""],"Select Show Location":[null,""],"Select Unprocessed Episode Folder":[null,""],"DELETED":[null,""],"Resume updating the log on this page.":[null,""],"Pause updating the log on this page.":[null,""],"searching {searchingFor}...":[null,""],"search timed out, try again or try another indexer":[null,""],"loading folders...":[null,""],"Loading...":[null,"Laddar …..."],"You have reached this page by accident, please check the url.":[null,"Du har nått denna sida av en slump, vänligen kontrollera URL:en."],"A mako error has occured.<br>\n If this happened during an update a simple page refresh may be the solution.<br>\n Mako errors that happen during updates may be a one time error if there were significant ui changes.":[null,"Ett mako fel har uppstått.<br>\n Om detta inträffade under en uppdatering, kan en enkel siduppdatering vara lösningen.<br>\n Mako fel som inträffar under uppdateringar kan vara en engångsföreteelse om användargränssnittet förändrats omfattande."],"Show/Hide Error":[null,"Visa/Dölj fel"],"Add New Show":[null,"Lägg till TV-serie"],"For shows that you haven't downloaded yet, this option finds a show on theTVDB.com, creates a directory for it's episodes, and adds it to SickRage.":[null,"För TV-serier du inte har laddat hem än, kommer detta alternativ hitta serien på theTVDB.com, skapa en katalog för avsnitten och lägga till serien i SickRage."],"Add From Trakt Lists":[null,"Lägg till från Trakt listor"],"For shows that you haven't downloaded yet, this option lets you choose from a show from one of the Trakt lists to add to SickRage.":[null,"För TV-serier du inte har laddat hem än, detta alternativ låter dig välja en serie från en av Trakts listorna och lägga till serien i SickRage."],"Add From IMDB's Popular Shows":[null,"Lägg till från IMDB's populära TV-serier"],"View IMDB's list of the most popular shows. This feature uses IMDB's MOVIEMeter algorithm to identify popular TV Series.":[null,"Visa IMDB's lista över de mest populära TV-serierna. Denna funktion använder IMDB's MOVIEMeter algoritm för att identifiera populära TV-serier."],"Add Existing Shows":[null,"Lägg till existerande TV-serier"],"Use this option to add shows that already have a folder created on your hard drive. SickRage will scan your existing metadata/episodes and add the show accordingly.":[null,"Använd detta alternativ för att lägga till TV-serier som redan har en katalog skapad på hårddisken. SickRage kommer söka igenom katalogen efter avsnitt/metadata och följaktligen lägga till TV-serier."],"Add Existing Show":[null,"Lägg till existerande TV-serie"],"Manage Directories":[null,"Hantera kataloger"],"Customize Options":[null,"Anpassa inställningar"],"SickRage can add existing shows, using the current options, by using locally stored NFO/XML metadata to eliminate user interaction. If you would rather have SickRage prompt you to customize each show, then use the checkbox below.":[null,"SickRage kan lägga till existerande TV-serier, med nuvarande inställningar, genom att använda lokalt lagrad metadata i NFO/XML-format. Detta i syfta att eliminera behovet av användarens inverkan. Om du hellre önskar att ställa in varje TV-serie individuellt, kryssa i rutan nedan."],"Prompt me to set settings for each show":[null,"Ställ in varje TV-serie inviduellt"],"Displaying folders within these directories which aren't already added to SickRage":[null,"Visar mappar i katalogerna som inte är tillagda i SickRage"],"Submit":[null,"Spara"],"Find a show on theTVDB":[null,"Finn en TV-serie på theTVDB"],"Show retrieved from existing metadata":[null,"Serie hämtad från existerande metadata"],"All Indexers":[null,"Alla register"],"Search":[null,"Sök"],"This will only affect the language of the retrieved metadata file contents and episode filenames.":[null,"Detta kommer enbart påverka språket på filinnehållet av hämtad metadata och avsnittens filnamn."],"This <b>DOES NOT</b> allow SickRage to download non-english TV episodes!":[null,"Detta tillåter <b>INTE</b> SickRage att hämta icke-engelska avsnitt!"],"Pick the parent folder":[null,"Välj den överordnade katalogen"],"Pre-chosen Destination Folder":[null,"Förvald målmapp"],"Customize options":[null,"Anpassa inställningar"],"Add Show":[null,"Lägg till TV-serie"],"Skip Show":[null,"Hoppa över serie"],"Sort By":[null,"Sortera på"],"Name":[null,"Namn"],"Original":[null,"Original"],"Votes":[null,"Röster"],"Rating":[null,"Betyg"],"Rating > Votes":[null,"Betyg > Röster"],"Sort Order":[null,"Sortera efter"],"Asc":[null,"Stig"],"Desc":[null,"Fall"],"Fetching of IMDB Data failed. Are you online?":[null,"Hämtning av information från IMDB misslyckades. Är du uppkopplad?"],"Exception":[null,"Undantag"],"Select Trakt List":[null,"Välj Trakt lista"],"Most Anticipated":[null,"Mest efterlängtade"],"Trending":[null,"Trendar"],"Popular":[null,"Populärt"],"Most Watched":[null,"Mesta sedda"],"Most Played":[null,"Mest spelade"],"Most Collected":[null,"Mest samlade"],"Recommended":[null,"Rekommenderat"],"Toggle navigation":[null,"Visa/dölj navigering"],"Profile":[null,"Profil"],"JSONP":[null,"JSONP"],"Back to SickRage":[null,"Tillbaka till SickRage"],"Parameters":[null,"Parametrar"],"Required":[null,"Krav"],"Description":[null,"Beskrivning"],"Type":[null,"Typ"],"Default value":[null,"Standardvärde"],"Allowed values":[null,"Tillåtna värden"],"Playground":[null,"Lekplats"],"Clear":[null,"Rensa"],"Yes":[null,"Ja"],"No":[null,"Nej"],"season":[null,"säsong"],"episode":[null,"avsnitt"],"Python Version":[null,"Python version"],"SSL Version":[null,"SSL version"],"OS":[null,"OS"],"Locale":[null,"Språk"],"User":[null,"Användare"],"Program Folder":[null,"Programkatalog"],"Config File":[null,"Konfigurationsfil"],"Database File":[null,"Databasfil"],"Cache Folder":[null,"Cache-mappen"],"Log Folder":[null,"Loggmappen"],"Arguments":[null,"Argument"],"Web Root":[null,"Webbrot"],"Website":[null,"Webbsida"],"Wiki":[null,"Wiki"],"Source":[null,"Källa"],"IRC Chat":[null,"IRC Chat"],"AnimeDB Settings":[null,"AnimeDB inställningar"],"Look & Feel":[null,"Utseende & känsla"],"AniDB is non-profit database of anime information that is freely open to the public":[null,"AniDB är en icke-vinstdrivande databas över animeinformation som är öppen för allmänheten gratis"],"Enable":[null,"Aktivera"],"should SickRage use data from AniDB?":[null,"ska SickRage använda data från AniDB?"],"AniDB Username":[null,"AniDB användarnamn"],"username of your AniDB account":[null,"användarnamnet för ditt AniDB-konto"],"AniDB Password":[null,"AniDB lösenord"],"password of your AniDB account":[null,"lösenordet för ditt AniDB-konto"],"AniDB MyList":[null,"AniDB MyList"],"do you want to add the PostProcessed episodes to the MyList?":[null,"vill du lägga till de efterbehandlade episoderna till MyList?"],"Look and Feel":[null,"Utseende och känsla"],"How should the anime functions show and behave.":[null,"Hur ska animefunktionerna visas och uppföra sig."],"Split show lists":[null,"Dela serielista"],"separate anime and normal shows in groups":[null,"dela upp animeserier och normala serier i grupper"],"Split in tabs":[null,"Dela upp i flikar"],"use tabs for when splitting show lists":[null,""],"Restore":[null,"Återställ"],"Backup your main database file and config.":[null,"Säkerhetskopiera databasen och inställningarna."],"Select the folder you wish to save your backup file to":[null,"Välj mappen du vill spara din säkerhetskopia till"],"Restore your main database file and config.":[null,"Återställ databasen och inställningarna."],"Select the backup file you wish to restore":[null,"Välj säkerhetskopian du vill återställa"],"Misc":[null,"Övrigt"],"Interface":[null,"Gränssnitt"],"Advanced Settings":[null,"Avancerade inställningar"],"Startup options. Indexer options. Log and show file locations.":[null,"Startalternativ. Indexerare alternativ. Loggar och serie plats."],"Some options may require a manual restart to take effect.":[null,"Vissa alternativ kan kräva en manuell omstart för att börja gälla."],"Default Indexer Language":[null,"Indexeraren standardspråk"],"for adding shows and metadata providers":[null,"för att lägga till serier och metadata leverantörer"],"Launch browser":[null,"Starta webbläsaren"],"open the SickRage home page on startup":[null,"Öppna SickRage startsida vid start"],"Initial page":[null,"Första sidan"],"Shows":[null,"Serier"],"when launching SickRage interface":[null,"när SickRage gränssnitt startar"],"Choose hour to update shows":[null,"Välj när serier ska uppdateras"],"with information such as next air dates, show ended, etc. Use 15 for 3pm, 4 for 4am etc.":[null,"med information som nästa sändningsdatum, serieavslut osv. Använd 15 för 3pm, 4 för 4am osv."],"note":[null,"obs"],"minutes are randomized each time SickRage is started":[null,"minuterna slumpas varje gång SickRage startas"],"Send to trash for actions":[null,"Skicka till papperskorgen för åtgärder"],"when using show \"Remove\" and delete files":[null,"när du använder serie \"Ta Bort\" och raderar filer"],"on scheduled deletes of the oldest log files":[null,"på schemalagda borttagningar av äldsta loggfiler"],"selected actions use trash (recycle bin) instead of the default permanent delete":[null,"valda åtgärder använder papperskorgen istället för standard permanent radering"],"Log file folder location":[null,"Loggfilens mappsökväg"],"Number of Log files saved":[null,"Antal loggfiler som sparas"],"number of log files saved when rotating logs (default: 5) (REQUIRES RESTART)":[null,"antal loggfiler som sparas när roterande loggar används (standard: 5) (KRÄVER OMSTART)"],"Size of Log files saved":[null,"Storlek på loggfil som sparas"],"maximum size in MB of the log file (default: 1MB) (REQUIRES RESTART)":[null,"loggfilens maximal storlek i MB (standard: 1MB) (KRÄVER OMSTART)"],"Use initial indexer set to":[null,"Använd första indexerar inställd till"],"as the default selection when adding new shows":[null,"som standardval när du lägger till nya serier"],"Timeout show indexer at":[null,"Timeout på serieindexerare vid"],"seconds of inactivity when finding new shows (default:20)":[null,"sekunder av inaktivitet när nya serier läggs till (standard: 20)"],"Show root directories":[null,"Rotkatalogen för TV-serier"],"where the files of shows are located":[null,"där filerna till serierna finns"],"Save Changes":[null,"Spara ändringar"],"Options for software updates.":[null,"Alternativ för programuppdateringar."],"Check software updates":[null,"Sök efter uppdateringar"],"and display notifications when updates are available. Checks are run on startup and at the frequency set below*":[null,"och visa notifieringar när uppdateringar är tillgängliga. Kontroll körs vid uppstart och vid den frekvens som är bestäms nedan*"],"Automatically update":[null,"Uppdatera automatiskt"],"fetch and install software updates. Updates are run on startup and in the background at the frequency set below*":[null,"hämta och installera programuppdateringar. Uppdateringar körs vid uppstart och i bakgrunden med den frekvens som bestäms nedan*"],"Check the server every*":[null,"Kontrollera servern varje*"],"hours for software updates (default:1)":[null,"timmar för programuppdateringar (standard: 1)"],"Notify on software update":[null,"Notifiera vid programuppdatering"],"send a message to all enabled notifiers when SickRage has been updated":[null,"skicka ett meddelande till alla aktiverade notifierare när SickRage har uppdaterats"],"User Interface":[null,"Användargränssnitt"],"Options for visual appearance.":[null,"Alternativ för utseende."],"Interface Language":[null,"Gränssnitsspråk"],"System Language":[null,"Systemspråk"],"for appearance to take effect, save then refresh your browser":[null,"för utseende ska gälla, spara sedan uppdatera din webbläsare"],"Display theme":[null,"Visningstema"],"Dark":[null,"Mörkt"],"Light":[null,"Ljust"],"Use a background image":[null,"Visa bakgrundsbild"],"use a custom image as background for SickRage":[null,"använd en valfri bakgrundsbild för SickRage"],"Background Path":[null,"Sökväg för bakgrundsbild"],"Path to the background image":[null,"Sökväg till bakgrundsbilden"],"Show fanart in the background":[null,"Serie-fanart i bakgrunden"],"on the show summary page":[null,"på sammanfattningssidan för serie"],"Fanart transparency":[null,"Genomskinlighet för gfnart"],"transparency of the fanart in the background":[null,"transparens för fanart i bakgrunden"],"Use a custom stylesheet file":[null,""],"use a custom .css file to style SickRage (for advanced users)":[null,""],"Stylesheet File Path":[null,""],"Path to the stylesheet (.css) file":[null,""],"Show all seasons":[null,"Visa alla säsonger"],"Sort with \"The\", \"A\", \"An\"":[null,"Sortera med \"The\", \"A\", \"An\""],"include articles (\"The\", \"A\", \"An\") when sorting show lists":[null,"inkludera artiklar (\"The\", \"A\", \"An\") vid sortering av serielistor"],"Missed episodes range":[null,"Missade episodintervall"],"set the range in days of the missed episodes in the Schedule page":[null,""],"Display fuzzy dates":[null,"Visa ungefärliga datum"],"move absolute dates into tooltips and display e.g. \"Last Thu\", \"On Tue\"":[null,"flytta absoluta datum i verktygstips och visa e.g. \"sista Tor\", \"På tis\""],"Trim zero padding":[null,"Trimma inledande nollor"],"remove the leading number \"0\" shown on hour of day, and date of month":[null,"ta väck inledande nummer \"0\" som visar dagens timme och månadens datum"],"Date style":[null,"Datumformat"],"Use System Default":[null,"Använd systemstandard"],"Time style":[null,"Tidsformat"],"seconds are only shown on the History page":[null,"sekunder visas endast på Historiksidan"],"Timezone":[null,"Tidszon"],"Local":[null,"Lokal"],"Network":[null,"Nätverk"],"display dates and times in either your timezone or the shows network timezone":[null,"visa datum och tider i din tidszon eller visa tidszonen där serien sänds"],"use local timezone to start searching for episodes minutes after show ends (depends on your dailysearch frequency)":[null,"använd lokal tidszon för att starta sökning efter episoder direkt efter avsnittet har visats (beror på sökfrekvens)"],"Download url":[null,"Nedladdningsadress"],"URL where the shows can be downloaded.":[null,"URL där serierna kan hämtas."],"Web Interface":[null,"Webbgränssnitt"],"it is recommended that you enable a username and password to secure SickRage from being tampered with remotely.":[null,""],"these options require a manual restart to take effect.":[null,""],"API key":[null,"API-nyckel"],"used to give 3rd party programs limited access to SickRage":[null,"används för att ge tredjepartsprogram begränsad tillgång till SickRage"],"you can try all the features of the API":[null,"du kan testa alla API-funktioner"],"here":[null,"här"],"HTTP logs":[null,"HTTPS loggfiler"],"enable logs from the internal Tornado web server":[null,"aktivera loggar från den interna Tornado webbservern"],"HTTP username":[null,"HTTP användarnamn"],"set blank for no login":[null,"lämna blankt för ingen inloggning"],"HTTP password":[null,"HTTP lösenord"],"blank = no authentication":[null,"blank = ingen autentisering"],"HTTP port":[null,"HTTP-port"],"web port to browse and access SickRage (default:8081)":[null,"webbport till att använda och komma åt SickRage (standard: 8081)"],"Notify on login":[null,"Notifiera vid inloggning"],"enable to be notified when a new login happens in webserver":[null,"aktivera för att blir notifierad när en ny inloggning sker på en webbserver"],"Listen on IPv6":[null,"Lyssna på IPv6"],"attempt binding to any available IPv6 address":[null,"försök bindning till någon tillgänglig IPv6-adress"],"Enable HTTPS":[null,"Aktivera HTTPS"],"enable access to the web interface using a HTTPS address":[null,"aktivera åtkomst till webbgränssnittet via en HTTPS-adress"],"HTTPS certificate":[null,"HTTPS certifikat"],"file name or path to HTTPS certificate":[null,"filnamn eller sökväg till HTTPS certifikat"],"HTTPS key":[null,"HTTPS-nycklar"],"file name or path to HTTPS key":[null,"filnamnet eller sökvägen till HTTPS-nyckel"],"Reverse proxy headers":[null,"Omvända proxy headers"],"accept the following reverse proxy headers (advanced)...":[null,""],"(X-Forwarded-For, X-Forwarded-Host, and X-Forwarded-Proto)":[null,"(X-Forwarded-For, X-Forwarded-Host och X-Forwarded-Proto)"],"CPU throttling":[null,"CPU hantering"],"Normal (default). High is lower and Low is higher CPU use":[null,"Normal (standard). Hög är lägre och låg är högre CPU användning"],"Anonymous redirect":[null,"Anonym omdirigering"],"backlink protection via anonymizer service, must end in \"?\"":[null,"bakåtspårningsskydd via anonymiteten tjänst, måste sluta med \"?\""],"Enable debug":[null,"Aktivera debug"],"enable debug logs":[null,"aktivera debugloggar"],"Verify SSL Certs":[null,"Verifiera SSL Certifikat"],"verify SSL Certificates (Disable this for broken SSL installs (Like QNAP))":[null,""],"No Restart":[null,"Ingen omstart"],"only shutdown when restarting SR":[null,"stäng endast av när SR behöver startas om"],"only select this when you have external software restarting SR automatically when it stops (like FireDaemon)":[null,""],"Encrypt passwords":[null,"Kryptera lösenord"],"in the <code>config.ini</code> file":[null,"i <code>config.ini</code>-filen"],"warning":[null,"varning"],"passwords must only contain":[null,"lösenord får endast innehålla"],"ASCII characters":[null,"ASCII-tecken"],"Unprotected calendar":[null,"Oskyddad kalender"],"allow subscribing to the calendar without user and password":[null,""],"some services like Google Calendar only work this way":[null,""],"Google Calendar Icons":[null,"Google Kalender ikoner"],"show an icon next to exported calendar events in Google Calendar":[null,""],"Proxy host":[null,"Proxy server"],"blank to disable or proxy to use when connecting to providers":[null,"lämnas tom för att inaktivera proxy server vid anslutning till Internet"],"also use global proxy setting for indexers (tvdb, xem, anidb, etc.)":[null,""],"Skip Remove Detection":[null,"Hoppa över raderingsidentifiering"],"skip detection of removed files":[null,"detektera inte borttagna filer"],"if disabled the episode will be set to the default deleted status":[null,""],"Default deleted episode status":[null,"Standard borttagningsstatus för episoder"],"define the status to be set for media file that has been deleted.":[null,""],"Archived option will keep previous downloaded quality":[null,"Arkiverade alternativet kommer att behålla tidigare hämtade kvalitet"],"example: Downloaded (1080p WEB-DL) ==> Archived (1080p WEB-DL)":[null,""],"Options for github related features.":[null,"Alternativ för github relaterade funktioner."],"Branch version":[null,"Branchversion"],"error: No branches found.":[null,""],"select branch to use (restart required)":[null,"välj branch att använda (omstart krävs)"],"Authorization Type":[null,""],"Username and password":[null,"Användarnamn och lösenord"],"Personal access token":[null,""],"You must use a personal access token if you're using \"two-factor authentication\" on GitHub.":[null,""],"GitHub username":[null,"GitHub användarnamn"],"*** (REQUIRED FOR SUBMITTING ISSUES) ***":[null,"*** (KRÄVS FÖR ATT SKICKA PROBLEM) ***"],"GitHub password":[null,"GitHub lösenord"],"GitHub personal access token":[null,""],"Generate Token":[null,""],"Manage Tokens":[null,""],"GitHub remote for branch":[null,"GitHub remote för branch"],"access repo configured remotes (save then refresh browser)":[null,""],"default":[null,"standard"],"origin":[null,"ursprunglig"],"Git executable path":[null,"Git körbar väg"],"only needed if OS is unable to locate git from env":[null,"behövs endast om OS inte kan hitta git från env"],"Git reset":[null,"Git reset"],"removes untracked files and performs a hard reset on git branch automatically to help resolve update issues":[null,"tar väck ospårade filer och utför automatisk en hård reset på git branchen för att lösa uppdateringsproblem"],"Home Theater / NAS":[null,"Home Theater / NAS"],"Devices":[null,"Enheter"],"Social":[null,"Social"],"A free and open source cross-platform media center and home entertainment system software with a 10-foot user interface designed for the living-room TV.":[null,"En gratis programvara med öppen källkod som är ett plattformsoberoende media center och hemmabiosystem med en 3 meter användargränssnitt utformad för vardagsrum-TV."],"send KODI commands?":[null,"skicka KODI-kommandon?"],"Always on":[null,"Alltid på"],"log errors when unreachable?":[null,"logga fel vid otillgänglighet?"],"Notify on snatch":[null,"Notifiera vid hämtning"],"send a notification when a download starts?":[null,"skicka notifiering när hämtning startas?"],"Notify on download":[null,"Notifiera vid hämtning"],"send a notification when a download finishes?":[null,"skicka en notifiering när hämtning slutförts?"],"Notify on subtitle download":[null,"Notifiera vid undertexthämtning"],"send a notification when subtitles are downloaded?":[null,"skicka en notifiering när undertext är hämtad?"],"Update library":[null,"Uppdatera bibliotek"],"update KODI library when a download finishes?":[null,"uppdatera KODI bibliotek när hämtning slutförts?"],"Full library update":[null,"Fullständig biblioteksuppdatering"],"perform a full library update if update per-show fails?":[null,"utför en fullständig biblioteksuppdatering om uppdatering per-serie misslyckas?"],"Only update first host":[null,"Uppdatera bara första värd"],"only send library updates to the first active host?":[null,"skicka endast biblioteksuppdatering till den första aktiva värden?"],"KODI IP:Port":[null,"KODI IP:Port"],"host running KODI (eg. 192.168.1.100:8080)":[null,"värd som kör KODI (t.ex. 192.168.1.100:8080)"],"(multiple host strings must be separated by commas)":[null,"(flera värdsträngar måste separeras med kommatecken)"],"Username":[null,"Användarnamn"],"username for your KODI server (blank for none)":[null,"användarnamn för din KODI-server (blankt för inget)"],"Password":[null,"Lösenord"],"password for your KODI server (blank for none)":[null,"lösenord för din KODI-server (blanktför inget)"],"Click below to test.":[null,"Klicka nedan för att testa."],"Experience your media on a visually stunning, easy to use interface on your Mac connected to your TV. Your media library has never looked this good!":[null,"Upplev din media på en visuellt imponerande, lättanvänt gränssnitt på din Mac som är ansluten till din TV. Ditt mediebiblioteket har aldrig sett så här bra ut!"],"For sending notifications to Plex Home Theater (PHT) clients, use the KODI notifier with port <b>3005</b>.":[null,"För att skicka notifieringar till Plex Home Theater (PHT) klienter, använd KODI notifieraren med port <b>3005</b>."],"send Plex Media Server library updates?":[null,""],"Plex Media Server Auth Token":[null,"Plex Media Server autentiseringstoken"],"auth token used by Plex":[null,"autentiseringstoken som används av Plex"],"Update Library":[null,"Uppdatera bibliotek"],"update Plex Media Server library when a download finishes":[null,"uppdatera Plex Media Server-biblioteket när en hämtning är klar"],"Plex Media Server IP:Port":[null,"Plex Media Server IP:Pport"],"one or more hosts running Plex Media Server<br/>(eg. 192.168.1.1:32400, 192.168.1.2:32400)":[null,"en eller flera värdar kör Plex Media Server<br/>(t.ex. 192.168.1.1:32400, 192.168.1.2:32400)"],"HTTPS":[null,"HTTPS"],"use https for plex media server requests?":[null,"använd https för plex media serverförfrågningar?"],"Click below to test Plex Media Server(s)":[null,"Klicka nedan för att testa Plex Media Server"],"Test Plex Media Server":[null,"Testa Plex Media Server"],"Plex Home Theater":[null,"Plex Home Theater"],"send Plex Home Theater notifications?":[null,""],"Plex Home Theater IP:Port":[null,"Plex Home Theater IP:Port"],"one or more hosts running Plex Home Theater<br>(eg. 192.168.1.100:3000, 192.168.1.101:3000)":[null,"en eller flera värdar kör Plex Home Theater <br>(t.ex. 192.168.1.100:3000, 192.168.1.101:3000)"],"Click below to test Plex Home Theater(s)":[null,"Klicka nedan för att testa Plex Home Theater"],"Test Plex Home Theater":[null,"Testa Plex Home Theater"],"some Plex Home Theaters <b class=\"boldest\">do not</b> support notifications e.g. Plexapp for Samsung TVs":[null,""],"Emby":[null,"Emby"],"A home media server built using other popular open source technologies.":[null,"En mediaserver byggt med andra populära open source-tekniker."],"send update commands to Emby?":[null,"skicka uppdateringskommandon till Emby?"],"Emby IP:Port":[null,"Emby IP:Port"],"host running Emby (eg. 192.168.1.100:8096)":[null,"värd som kör Emby (t.ex. 192.168.1.100:8096)"],"Emby API Key":[null,"Emby API-nyckel"],"Networked Media Jukebox":[null,"Networked Media Jukebox"],"The Networked Media Jukebox, or NMJ, is the official media jukebox interface made available for the Popcorn Hour 200-series.":[null,"Networked Media Jukeboxen, eller NMJ, är det officiella media jukebox-gränssnittet som har gjorts tillgänglig för Popcorn Hour 200-serien."],"send update commands to NMJ?":[null,"skicka uppdateringskommandon till NMJ?"],"Popcorn IP address":[null,"Popcorn IP-adress"],"IP address of Popcorn 200-series (eg. 192.168.1.100)":[null,"IP-adressen för Popcorn 200-serien (t.ex. 192.168.1.100)"],"Get settings":[null,"Hämta inställningar"],"Get Settings":[null,"Hämta inställningar"],"the Popcorn Hour device must be powered on and NMJ running.":[null,"Popcorn Hour enheten måste vara påslagen och NMJ igång."],"NMJ database":[null,"NMJ databas"],"automatically filled via the 'Get Settings' button.":[null,"fyll automatiskt via knappen 'Hämta inställningar'."],"NMJ mount url":[null,"NMJ monterings-url"],"Networked Media Jukebox v2":[null,"Networked Media Jukebox v2"],"The Networked Media Jukebox, or NMJv2, is the official media jukebox interface made available for the Popcorn Hour 300 & 400-series.":[null,"Networked Media Jukeboxen, eller NMJ, är den officiella media jukebox-gränssnittet som har gjorts tillgänglig för Popcorn Hour 300 & 400-serien."],"send update commands to NMJv2?":[null,"skicka uppdateringskommandon till NMJv2?"],"IP address of Popcorn 300/400-series (eg. 192.168.1.100)":[null,"IP-adressen för Popcorn 300/400-serien (t.ex. 192.168.1.100)"],"Database location":[null,"Databasplats"],"Database instance":[null,"Databasinstans"],"adjust this value if the wrong database is selected.":[null,"justera det här värdet om fel databasen väljs."],"Find database":[null,"Hitta databas"],"Find Database":[null,"Hitta databas"],"the Popcorn Hour device must be powered on.":[null,"Popcorn Hour enheten måste vara påslagen."],"NMJv2 database":[null,"NMJv2 databas"],"automatically filled via the 'Find Database' buttons.":[null,"automatiskt fylld via \"Hitta databas\"-knapparna."],"Synology":[null,"Synology"],"The Synology DiskStation NAS.":[null,"Synology DiskStation NAS."],"Synology Indexer is the daemon running on the Synology NAS to build its media database.":[null,"Synology Indexerare är tjänsten som körs på Synology NAS för att bygga media-databasen."],"send Synology notifications?":[null,""],"requires SickRage to be running on your Synology NAS.":[null,"kräver att SickRage körs på din Synology NAS."],"Synology Indexer":[null,"Synology indexerare"],"Synology Notifier is the notification system of Synology DSM":[null,"Synology Notifier är notifieringssystemet på Synology DSM"],"send notifications to the Synology Notifier?":[null,""],"pyTivo":[null,"pyTivo"],"pyTivo is both an HMO and GoBack server. This notifier will load the completed downloads to your Tivo.":[null,"pyTivo är både en HMO och GoBack server. Denna notifierare kommer att ladda de färdiga nedladdningarna till din Tivo."],"send notifications to pyTivo?":[null,"skicka meddelanden till pyTivo?"],"requires the downloaded files to be accessible by pyTivo.":[null,"kräver de hämtade filerna att vara tillgängliga för pyTivo."],"pyTivo IP:Port":[null,"pyTivo IP:Port"],"host running pyTivo (eg. 192.168.1.1:9032)":[null,"värd som kör pyTivo (t.ex. 192.168.1.1:9032)"],"pyTivo share name":[null,"pyTivo delningsnamn"],"value used in pyTivo Web Configuration to name the share.":[null,"värde som används i pyTivo Web konfiguration för att namnge delning."],"Tivo name":[null,"TiVo namn"],"(Messages & Settings > Account & System Information > System Information > DVR name)":[null,"(Meddelanden & inställningar > Konto & Systeminformation > Systeminformation > DVR namn)"],"Growl":[null,"Growl"],"A cross-platform unobtrusive global notification system.":[null,"Ett plattformsoberoende diskret globalt notifieringssystem."],"send Growl notifications?":[null,""],"Growl IP:Port":[null,"Growl IP:Port"],"host running Growl (eg. 192.168.1.100:23053)":[null,"värd som kör Growl (t.ex. 192.168.1.100:23053)"],"may leave blank if SickRage is on the same host.":[null,"kan lämnas tomt om SickRage är på samma värd."],"otherwise Growl <b>requires</b> a password to be used.":[null,"annars <b>kräver</b> Growl ett lösenord som ska användas."],"Click below to register and test Growl, this is required for Growl notifications to work.":[null,"Klicka nedan för att registrera och testa Growl, detta krävs för Growl notifieringar ska funka."],"Register Growl":[null,"Registrera Growl"],"Prowl":[null,"Prowl"],"A Growl client for iOS.":[null,"En Growl klient för iOS."],"send Prowl notifications?":[null,""],"Prowl Message Title":[null,"Prowl meddelandetitel"],"Global Prowl API key(s)":[null,"Globala Prowl API-nycklar"],"Prowl API(s) listed here, separated by commas if applicable, will<br> receive notifications for <b>all</b> shows. Your Prowl API key is available at:":[null,"Prowl API(er) listade här, separerade med kommatecken, kommer<br>erhålla aviseringar för <b>alla</b> serier. Din Prowl API nyckel finns på:"],"(this field may be blank except when testing.)":[null,"(detta fält kan vara tomt utom vid testning.)"],"Show notification list":[null,"Visa notifieringslista"],"-- Select a Show --":[null,"-- Välj en serie --"],"Configure per-show notifications here by entering Prowl API key(s), separated by commas, '\n 'after selecting a show in the drop-down box. Be sure to activate the 'Save for this show' '\n 'button below after each entry.":[null,"Konfigurera per-serie notifiering här genom att ange Prowl API-nyckel/nycklar separerade med kommatecken'\n'efter att ha valt en show i drop-down-listan. Var noga med att aktivera 'spara för denna serie'-'\n'knappen under varje val."],"Save for this show":[null,"Spara för den här serie"],"Prowl priority":[null,"Prowl prioritet"],"Very Low":[null,"Mycket låg"],"Moderate":[null,"Måttlig"],"Normal":[null,"Normal"],"High":[null,"Hög"],"Emergency":[null,"Kritisk"],"priority of Prowl messages from SickRage.":[null,"prioritet av Prowl meddelanden från SickRage."],"Libnotify":[null,"Libnotify"],"The standard desktop notification API for Linux/*nix systems. This notifier will only function if the pynotify module is installed (Ubuntu/Debian package <a href=\"apt:python-notify\">python-notify</a>).":[null,"Standard skrivbordsnotifieringen av API för Linux/*nix system. Den här notifierarens kommer endast att funka om pynotify-modulen är installerad (Ubuntu/Debian-paket <a href=\"apt:python-notify\">python-notify</a>)."],"send Libnotify notifications?":[null,""],"Pushover":[null,"Pushover"],"Pushover makes it easy to send real-time notifications to your Android and iOS devices.":[null,"Pushover gör det enkalt att skicka notifieringar i realtid till din Android eller iOS enheter."],"send Pushover notifications?":[null,""],"Pushover key":[null,"Pushover nyckel"],"user key of your Pushover account":[null,"användarnyckel av ditt Pushover-konto"],"Pushover API key":[null,"Pushover API nyckel"],"click here":[null,""]," to create a Pushover API key":[null,""],"Pushover devices":[null,"Pushover enheter"],"comma separated list of pushover devices you want to send notifications to":[null,"kommaseparerad lista över Pushover enheter du vill skicka notifieringar till"],"Pushover notification sound":[null,"Pushover notifieringsljud"],"Bike":[null,"Bike"],"Bugle":[null,"Bugle"],"Cash Register":[null,"Cash Register"],"Classical":[null,"Classical"],"Cosmic":[null,"Cosmic"],"Falling":[null,"Falling"],"Gamelan":[null,"Gamelan"],"Incoming":[null,"Incoming"],"Intermission":[null,"Intermission"],"Magic":[null,"Magic"],"Mechanical":[null,"Mechanical"],"Piano Bar":[null,"Piano Bar"],"Siren":[null,"Siren"],"Space Alarm":[null,"Space Alarm"],"Tug Boat":[null,"Tug Boat"],"Alien Alarm (long)":[null,"Alien Alaram (long)"],"Climb (long)":[null,"Climb (long)"],"Persistent (long)":[null,"Persistent (long)"],"Pushover Echo (long)":[null,"Pushover Echo (long)"],"Up Down (long)":[null,"Up Down (long)"],"None (silent)":[null,"Ingen (Tyst)"],"Device specific":[null,"Enhetsspecifik"],"choose notification sound to use":[null,""],"Pushover priority":[null,"Pushover-prioritet"],"Choose priority to use":[null,"Välj prioritet"],"Boxcar 2":[null,"Boxcar 2"],"Read your messages where and when you want them!":[null,"Läs dina meddelande när och var du vill!"],"send Boxcar notifications?":[null,""],"Boxcar2 access token":[null,"Boxcar2 åtkomst-token"],"access token for your Boxcar account.":[null,"åtkomst-token för ditt Boxcar-konto."],"NMA":[null,"NMA"],"Notify My Android":[null,"Notify My Android"],"Notify My Android is a Prowl-like Android App and API that offers an easy way to send notifications from your application directly to your Android device.":[null,"Notify My Android är en Prowl-liknande app och har en API som erbjuder ett enkelt sätt att skicka notifieringar från din applikation direkt till din Androidenhet."],"send NMA notifications?":[null,""],"NMA API key":[null,"NMA API-nyckel"],"(multiple keys must be separated by commas, up to a maximum of 5)":[null,"(flera nycklar måste vara separerade med kommatecken, upp till max 5)"],"NMA priority":[null,"NMA prioritet"],"priority of NMA messages from SickRage.":[null,"prioritet för NMA-meddelanden från SickRage."],"Pushalot":[null,"Pushalot"],"Pushalot is a platform for receiving custom push notifications to connected devices running Windows Phone or Windows 8.":[null,"Pushalot är en plattform för att ta emot anpassade pushnotiser till anslutna enheter som använder Windows Phone eller Windows 8."],"send Pushalot notifications ?":[null,""],"Pushalot authorization token":[null,"Pushalot auktoriserings-token"],"authorization token of your Pushalot account.":[null,"auktorisering-token av ditt Pushalot-konto."],"Pushbullet":[null,"Pushbullet"],"Pushbullet is a platform for receiving custom push notifications to connected devices running Android/iOS and desktop browsers such as Chrome, Firefox or Opera.":[null,"Pushbullet är en plattform för att ta emot anpassade pushnotifieringar till anslutna enheter som kör Android/iOS och webbläsare som Chrome, Firefox eller Opera."],"send Pushbullet notifications?":[null,""],"Pushbullet API key":[null,"Pushbullet API-nyckel"],"API key of your Pushbullet account":[null,"API-nyckel för ditt Pushbullet-konto"],"Pushbullet devices":[null,"Pushbullet enheter"],"Update device list":[null,"Uppdatera enhetslista"],"Pushbullet channels":[null,"Pushbullet kanaler"],"Free Mobile":[null,"Free Mobile"],"Free Mobile is a famous French cellular network provider.<br> It provides to their customer a free SMS API.":[null,"Free Mobile är en känt franskt mobilnätsleverantör.<br> Den tillhandahåller gratis SMS API till sina kunder."],"send SMS notifications?":[null,""],"send a SMS when a download starts?":[null,"skicka ett SMS när en hämtning startar?"],"send a SMS when a download finishes?":[null,"skicka ett SMS när en hämtning är klar?"],"send a SMS when subtitles are downloaded?":[null,"skicka ett SMS när undertexter är hämtade?"],"Free Mobile customer ID":[null,"Free Mobile kund-ID"],"it's your Free Mobile customer ID (8 digits)":[null,""],"Free Mobile API key":[null,""],"find your API key in your customer portal.":[null,""],"Click below to test your settings.":[null,"Klicka nedan för att testa dina inställningar."],"Telegram":[null,"Telegram"],"Telegram is a cloud-based instant messaging service.":[null,"Telegram är ett moln-baserade meddelandetjänst."],"send Telegram notifications?":[null,""],"send a message when a download starts?":[null,""],"send a message when a download finishes?":[null,""],"send a message when subtitles are downloaded?":[null,""],"User/group ID":[null,"Användare/grupp-ID"],"contact @myidbot on Telegram to get an ID":[null,""],"Bot API token":[null,"Bot API token"],"contact @BotFather on Telegram to set up one":[null,""],"Join":[null,"Join"],"Join all of your devices together!":[null,"Join är en plattform för att skicka notifieringar till Android, Chrome och Windows 10."],"send Join notifications?":[null,""],"Device ID":[null,"Enhets-ID"],"per device specific id":[null,""]," to create a Join API key":[null,""],"Twilio":[null,"Twilio"],"Twilio is a webservice API that allows you to communicate directly with a mobile number. This notifier will send a text directly to your mobile device.":[null,"Twilio är ett webservice-API som låter dig kommunicera direkt med ett mobilnummer. Notifikationen kommer att skickas i ett SMS direkt till din mobiltelefon."],"should SickRage text your mobile device?":[null,""],"Twilio Account SID":[null,"Twilio-kontots SID"],"account SID of your Twilio account.":[null,""],"Twilio Auth Token":[null,"Twilio Auth-token"],"Twilio Phone SID":[null,"Twilio telefon-SID"],"phone SID that you would like to send the sms from":[null,""],"Your phone number":[null,"Ange telefonnummer"],"phone number that will receive the sms. Please use the format +1-###-###-####":[null,""],"Twitter":[null,"Twitter"],"A social networking and microblogging service, enabling its users to send and read other users' messages called tweets.":[null,"Ett socialt nätverk och mikrobloggnings tjänst, tillåter dess användare att skicka och läsa andra användares meddelanden som kallas tweets."],"should SickRage post tweets on Twitter?":[null,""],"you may want to use a secondary account.":[null,"du kanske vill använda ett andra konto."],"send direct message":[null,"skicka direktmeddelande"],"send a notification via Direct Message, not via status update":[null,"skicka en notifiering via direkta meddelanden, inte via statusuppdatering"],"send DM to":[null,"skicka direktmeddelande till"],"Twitter account to send Direct Messages to (must follow you)":[null,"Twitter-konto för att skicka direkta meddelanden till (måste följa dig)"],"Step One":[null,"Steg Ett"],"Request Authorization":[null,"Begära auktorisering"],"Click the \"Request Authorization\" button.<br> This will open a new page containing an auth key.<br> <b>note:</b> if nothing happens check your popup blocker.":[null,""],"Step Two":[null,"Steg Två"],"Enter the key Twitter gave you below, and click \"Verify Key\".":[null,"Ange nyckeln Twitter gav dig nedan och klicka på \"Verifiera nyckel\"."],"Trakt":[null,"Trakt"],"Trakt helps keep a record of what TV shows and movies you are watching. Based on your favorites, Trakt recommends additional shows and movies you'll enjoy!":[null,""],"send Trakt.tv notifications?":[null,""],"username of your Trakt account.":[null,"användarnamnet för ditt Trakt-konto."],"Trakt PIN":[null,"Trakt PIN"],"Get Trakt PIN":[null,"Få ett Trakt PIN"],"PIN code to authorize SickRage to access Trakt on your behalf.":[null,"PIN-kod för att tillåta SickRage att komma åt Trakt för din skull."],"API Timeout":[null,"API Timeout"],"seconds to wait for Trakt API to respond. (Use 0 to wait forever)":[null,""],"Default indexer":[null,"Standardindexerare"],"Sync libraries":[null,"Synkbibliotek"],"sync your SickRage show library with your trakt show library.":[null,"synkronisera ditt SickRage seriebibliotek med ditt trakt seriebibliotek."],"Remove Episodes From Collection":[null,"Radera episoder från samling"],"remove an episode from your Trakt Collection if it is not in your SickRage Library.":[null,""],"Sync watchlist":[null,"Synkronisera bevakningslista"],"sync your SickRage show watchlist with your trakt show watchlist (either Show and Episode).":[null,"synkronisera din SickRage bevakningslista för serier med din trakts bevakningslista för serier (Serie eller Episod)."],"episode will be added on watch list when wanted or snatched and will be removed when downloaded ":[null,""],"Watchlist add method":[null,"Tilläggsmetod för bevakningslista"],"Skip All":[null,"Hoppa över alla"],"Download Pilot Only":[null,"Hämta Pilot endast"],"Get whole show":[null,"Hämta hela serien"],"method in which to download episodes for new shows.":[null,"metod för att hämta episoder för nya serier."],"Remove episode":[null,"Radera episod"],"remove an episode from your watchlist after it is downloaded.":[null,"radera en episod från din bevakningslista när den har laddats ner."],"Remove series":[null,"Radera serie"],"remove the whole series from your watchlist after any download.":[null,"radera hela serien från bevakningslistan efter nerladdning."],"Remove watched show":[null,"Radera sedd serie"],"remove the show from sickrage if it's ended and completely watched":[null,"radera serie från sickrage om den har avslutats och helt sedd"],"Start paused":[null,"Starta pausad"],"shows grabbed from your trakt watchlist start paused.":[null,"starta serier som hämtats från din trakts bevakningslista som pausad."],"Trakt blackList name":[null,"Trakt svartlista-namn"],"name (slug) of list on Trakt for blacklisting show on 'Add Trending Show' & 'Add Recommended Shows' pages":[null,""],"Email":[null,"E-Post"],"Allows configuration of email notifications on a per show basis.":[null,"Tillåter konfiguration av e-postmeddelanden för varje serie."],"send email notifications?":[null,""],"SMTP host":[null,"SMTP-värd"],"hostname of your SMTP email server.":[null,"värdnamnet för din SMTP-e-postserver."],"SMTP port":[null,"SMTP-port"],"port number used to connect to your SMTP host.":[null,"portnumret som används för att ansluta till din SMTP-värd."],"SMTP from":[null,"SMTP från"],"sender email address, some hosts require a real address.":[null,"avsändarens e-postadress, vissa värdar kräver en riktig adress."],"Use TLS":[null,"Använd TLS"],"check to use TLS encryption.":[null,"markera för att använda TLS-kryptering."],"SMTP user":[null,"SMTP-användare"],"(optional) your SMTP server username.":[null,"(valfritt) ditt användarnamn för SMTP-servern."],"SMTP password":[null,"SMTP-lösenord"],"(optional) your SMTP server password.":[null,"(valfritt) ett SMTP-serverlösenord."],"Global email list":[null,"Global e-postlista"],"email addresses listed here, separated by commas if applicable, will<br> receive notifications for <b>all</b> shows.":[null,""],"(This field may be blank except when testing.)":[null,"(Detta fält kan vara tomt utom vid testning.)"],"Email Subject":[null,"E-post ämne"],"use a custom subject for some privacy protection?":[null,""],"(leave blank for the default SickRage subject)":[null,""],"configure per-show notifications here by entering email address(es), separated by commas,":[null,""],"after selecting a show in the drop-down box. Be sure to activate the 'Save for this show'":[null,"efter att valt en serie i den nedrullningsbara listrutan. Se till att aktivera \"Spara för den här serien\""],"button below after each entry.":[null,"knappen under efter varje post."],"Slack":[null,"Slack"],"Slack brings all your communication together in one place. It's real-time messaging, archiving and search for modern teams.":[null,"Slack är ett meddelandeverktyg för arbetslag som förändrar världen."],"should SickRage post messages on Slack?":[null,""],"Slack Incoming Webhook":[null,"Slack inkommande Webhook"],"Discord":[null,"Discord"],"All-in-one voice and text chat for gamers that's free, secure, and works on both your desktop and phone.":[null,""],"Should SickRage post messages on Discord?":[null,""],"Discord Incoming Webhook":[null,""],"Create webhook under channel settings.":[null,""],"Discord Bot Name":[null,""],"Blank will use webhook default Name.":[null,""],"Discord Avatar URL":[null,""],"Blank will use webhook default Avatar.":[null,""],"Discord TTS":[null,""],"Send notifications using text-to-speech":[null,""],"Post-Processing":[null,"Efterbearbetning"],"Episode Naming":[null,"Namngivning av episod"],"Metadata":[null,"Metadata"],"Settings that dictate how SickRage should process completed downloads.":[null,"Inställningar som bestämmer hur SickRage ska bearbeta färdiga hämtningar."],"enable the automatic post processor to scan and process any files in your Post Processing Dir":[null,""],"do not use if you use an external Post Processing script":[null,""],"Post Processing Dir":[null,"Efterbearbetningskatalog"],"the folder where your download client puts the completed TV downloads.":[null,""],"please use seperate downloading and completed folders in your download client if possible.":[null,""],"Processing Method":[null,"Bearbetningsmetod"],"what method should be used to put files into the library?":[null,""],"if you keep seeding torrents after they finish, please avoid the 'move' processing method to prevent errors.":[null,""],"Auto Post-Processing Frequency":[null,"Automatisk efterbearbetningsfrekvens"],"time in minutes to check for new files to auto post-process (min 10)":[null,""],"Postpone post processing":[null,"Skjut upp efterbearbetning"],"wait to process a folder if sync files are present.":[null,""],"Sync File Extensions":[null,"Sync-filtillägg"],"comma seperated list of extensions or filename globs SickRage ignores when Post Processing":[null,"kommatecken-separerade lista över tillägg eller filnamn globs SickRage ignorerar vid efterbearbetning"],"Rename Episodes":[null,"Döp om episod"],"rename episode using the Episode Naming settings?":[null,""],"Create missing show directories":[null,"Skapa saknade seriekataloger"],"create missing show directories when they get deleted":[null,""],"Add shows without directory":[null,"Lägg till serie utan katalog"],"add shows without creating a directory (not recommended)":[null,""],"Move associated files":[null,""],"move associated (srt/srr/sfv/etc) files while post processing?":[null,""],"Rename .nfo file":[null,"Döp om .nfo-fil"],"rename the original .nfo file to .nfo-orig to avoid conflicts?":[null,"byt namn på den ursprungliga .nfo-filen till .nfo-orig för att undvika konflikter?"],"Associated file extensions":[null,""],"comma separated list of associated file extensions SickRage should keep while post processing.":[null,""],"leaving it empty means no associated files will be post processed":[null,""],"Delete non associated files":[null,""],"delete non associated files while post processing?":[null,""],"Change File Date":[null,"Ändra fildatum"],"set last modified filedate to the date that the episode aired?":[null,""],"some systems may ignore this feature.":[null,"vissa system kan ignorera den här funktionen."],"Timezone for File Date":[null,"Tidszon för fildatum"],"local":[null,"lokal"],"network":[null,"nätverk"],"what timezone should be used to change File Date?":[null,""],"Unpack":[null,"Packa upp"],"What to do with archived releases found in your <i>TV Download Dir</i>?":[null,""],"Ignore (do not process contents)":[null,""],"Unpack (process contents)":[null,""],"Treat as video (process archive as-is)":[null,""],"'Unpack' only works with RAR archives":[null,""],"Windows":[null,"Windows"],"WinRar is required on windows":[null,""],"Unpack Directory":[null,""],"Choose a path to unpack files, leave blank to unpack in download dir":[null,""],"Unrar Location":[null,"Plats för Unrar"],"add the path to unrar if it is not in the system path":[null,"lägg till sökvägen för unrar om det inte finns i systemsökvägen"],"Alternate Unrar Tool":[null,"Alternativt Unrar-verktyg"],"add the path to an alternate unrar tool if it is not in the system path":[null,""],"Delete RAR contents":[null,"Radera RAR-innehåll"],"delete content of RAR files, even if Process Method not set to move?":[null,""],"only working with RAR archive":[null,"fungerar endast med RAR-arkiv"],"Don't delete empty folders":[null,"Ta inte bort tomma mappar"],"leave empty folders when Post Processing?":[null,""],"can be overridden using manual Post Processing":[null,""],"Follow symbolic-links":[null,""],"follow down symbolic links in download directory?":[null,""],"<b>EXPERTS ONLY.</b><br>Enable only if you know what <b>circular symbolic links</b> are,<br>and can <b>verify that you have none</b>.":[null,""],"Use icacls":[null,"Använd icacls"],"Windows only":[null,"Endast för Windows"],"sets video permissions after using the move method in post processing":[null,""],"Extra Scripts":[null,"Extraskript"],"see":[null,"se"],"for script arguments description and usage.":[null,"för skriptarguments-beskrivning och användning."],"How SickRage will name and sort your episodes.":[null,"Hur SickRage kommer namnge och sortera din episoder."],"Name Pattern":[null,"Namnmönster"],"Toggle Naming Legend":[null,"Aktivera namngivningshistorik"],"don't forget to add quality pattern. Otherwise after post-processing the episode will have UNKNOWN quality":[null,""],"Meaning":[null,"Betydelse"],"Pattern":[null,"Mönster"],"Result":[null,"Resultat"],"Use lower case if you want lower case names (eg. %sn, %e.n, %q_n etc)":[null,"Använd gemener om du vill namn med små bokstäver (t.ex. %sn, %e.n, %q_n osv)"],"Show Name":[null,"Serienamn"],"Show.Name":[null,"Serie.Namn"],"Show_Name":[null,"Serie_Namn"],"Season Number":[null,"Säsong nummer"],"XEM Season Number":[null,"XEM säsongsnummer"],"Episode Number":[null,"Episodnummer"],"XEM Episode Number":[null,"XEM episodnummer"],"Episode Name":[null,"Episod namn"],"Episode.Name":[null,"Episod.Namn"],"Episode_Name":[null,"Episod_Namn"],"Air Date":[null,"Sändningsdatum"],"Post-Processing Date":[null,"Efterbehandlingsdatum"],"Quality":[null,"Kvalitet"],"Scene Quality":[null,"Scene kvalite"],"Release Name":[null,"Utgivningsnamn"],"SickRage' is used in place of RLSGROUP if it could not be properly detected":[null,"SickRage används i stället för RLSGROUP om det inte gick att identifiera korrekt"],"Release Group":[null,"Utgivningsgrupp"],"If episode is proper/repack add 'proper' to name.":[null,"Om episod är en proper/repack lägg till 'proper' till namnet."],"Release Type":[null,"Utgivningstyp"],"Multi-Episode Style":[null,"Flerepisod stil"],"Single-EP Sample":[null,"Enkelepisod exempel"],"Multi-EP sample":[null,"Flerepisod exempel"],"Strip Show Year":[null,"Ta väck serieår"],"remove the TV show's year when renaming the file?":[null,""],"only applies to shows that have year inside parentheses":[null,""],"Custom Air-By-Date":[null,"Anpassad sändningsdatum"],"name air-by-date shows differently than regular shows?":[null,""],"Toggle ABD Naming Legend":[null,"Aktivera ABD namngivningshistorik"],"Regular Air Date":[null,"Vanligt sändningsdatum"],"Year":[null,"År"],"Month":[null,"Månad"],"Day":[null,"Dag"],"Multi-EP style is ignored":[null,"Flerepisod stil är ignorerad"],"Custom Sports":[null,"Anpassad sport"],"name sports shows differently than regular shows?":[null,""],"Toggle Sports Naming Legend":[null,"Aktivera Sport namngivningshistorik"],"Sports Air Date":[null,"Sport sändningsdatum"],"Custom Anime":[null,"Anpassade Anime"],"name anime shows differently than regular shows?":[null,""],"Toggle Anime Naming Legend":[null,"Aktivera Anime namngivningshistorik"],">XEM Season Number":[null,">XEM säsongsnummer"],"Single-EP Anime Sample":[null,"Enkelepisod Anime exempel"],"Multi-EP Anime sample":[null,"Flerepisod Anime exempel"],"Add Absolute Number":[null,"Lägg till absolutnummer"],"add the absolute number to the season/episode format?":[null,""],"only applies to anime. (eg. S15E45 - 310 vs S15E45)":[null,""],"Only Absolute Number":[null,"Endast absolut nummer"],"replace season/episode format with absolute number":[null,""],"only applies to anime.":[null,""],"No Absolute Number":[null,"Inget absolut nummer"],"don't include the absolute number":[null,""],"The data associated to the data. These are files associated to a TV show in the form of images and text that, when supported, will enhance the viewing experience.":[null,"Datan associerad till datan. Detta är filer som är associerade till en serie i form av bilder och text som, när den stöds, kommer att förbättra tittarupplevelsen."],"Metadata Type":[null,"Metadata-typ"],"toggle metadata options that you wish to be created":[null,""],"multiple targets may be used":[null,""],"Select Metadata":[null,"Välj metadata"],"Provider Priorities":[null,"Leverantörsprioriteringar"],"Provider Options":[null,"Leverantörsalternativ"],"Configure Custom Newznab Providers":[null,"Konfigurera anpassade Newznab-leverantörer"],"Configure Custom Torrent Providers":[null,"Konfigurera anpassade Torrentleverentör"],"Check off and drag the providers into the order you want them to be used.":[null,"Bocka av och dra leverantörerna till den ordning du vill att de ska användas."],"At least one provider is required but two are recommended.":[null,"Minst en leverantör krävs men två rekommenderas."],"Torrent providers can be toggled in ":[null,"Torrentleverantörer kan växlas i "],"Provider does not support backlog searches at this time.":[null,"Leverantören stödjer inte backlogsökningar vid denna tid."],"Provider is <b>NOT WORKING</b>.":[null,"Leverantör <b>FUNGERAR INTE</b>."],"Configure individual provider settings here.":[null,"Konfigurera individuella leverantörsinställningar här."],"Check with provider's website on how to obtain an API key if needed.":[null,"Kontrollera med leverantörens webbplats om hur du kan få en API-nyckel om det behövs."],"Configure provider":[null,"Konfigurera leverantör"],"no providers available to configure.":[null,""],"URL":[null,"URL"],"Enable daily searches":[null,"Aktivera dagliga sökningar"],"enable provider to perform daily searches.":[null,"aktivera leverantören att utföra dagliga sökningar."],"Enable backlog searches":[null,"Aktivera backlogsökningar"],"enable provider to perform backlog searches.":[null,"aktivera leverantören att göra backlog-sökningar."],"Season search mode":[null,"Sökläget för säsong"],"when searching for complete seasons you can choose to have it look for season packs only, or choose to have it build a complete season from just single episodes.":[null,"när du söker efter kompletta säsonger kan du ha den att leta efter hela säsonger endast, eller skapa säsonger från enstaka episoder bara."],"season packs only.":[null,"hela säsonger endast."],"episodes only.":[null,"endast episoder."],"Enable fallback":[null,"Aktivera fallback"],"when searching for a complete season depending on search mode you may return no results, this helps by restarting the search using the opposite search mode.":[null,"när du söker efter en säsong beroende på sökläget kan inget resultat returneras, detta hjälps genom att starta om sök med motsatt sökläge."],"Custom URL":[null,"Anpassad URL"],"the URL should include the protocol (and port if applicable). Examples: http://192.168.1.4/ or http://localhost:3000/":[null,""],"Api key":[null,"API-nyckel"],"Digest":[null,"Digest"],"Hash":[null,"Hash"],"Passkey":[null,"Passkey"],"Cookies":[null,"Cookies"],"example: uid=1234;pass=567845439634987<br>note: uid and pass are not your username/password.<br>use DevTools or Firebug to get these values after logging in on your browser.":[null,""],"Pin":[null,"PIN-kod"],"Seed ratio":[null,"Seed ratio"],"stop transfer when ratio is reached<br>(-1 SickRage default to seed forever, or leave blank for downloader default)":[null,"stoppa överföringen när ratio nås <br>(-1 SickRage-standard till att seeda för alltid, eller lämna blankt för nerladdningsklients standard)"],"Minimum seeders":[null,"Minimum uppladdare"],"Minimum leechers":[null,"Minimum nerladdare"],"Confirmed download":[null,"Bekräftade hämtningar"],"only download torrents from trusted or verified uploaders ?":[null,"hämta bara torrenter från betrodda eller kontrollerade uppladdare?"],"Ranked torrents":[null,"Rankade torrenter"],"only download ranked torrents (trusted releases)":[null,"hämta bara rankade torrenter (betrodda releaser)"],"English torrents":[null,"Engelska torrenter"],"only download english torrents, or torrents containing english subtitles":[null,"hämta bara engelska torrenter, eller torrenter som innehåller engelsk undertext"],"For Spanish torrents":[null,"För spanska torrenter"],"ONLY search on this provider if show info is defined as \"Spanish\" (avoid provider's use for VOS shows)":[null,"sök ENDAST på denna leverantör om serieinfo är \"Spanska\" (Undvik leverantörers användning av VOS serier)"],"Sorting results by":[null,"Sortera resultaten efter"],"Freeleech":[null,"FreeLeech"],"only download <b>\"FreeLeech\"</b> torrents.":[null,"hämta bara <b>\"FreeLeech\"</b> torrenter."],"Category":[null,"Kategori"],"select torrent with Italian subtitle":[null,"välj torrent med italiensk undertext"],"Configure Custom<br>Newznab Providers":[null,"Konfigurera anpassade <br>Newznab leverantörer"],"Add and setup or remove custom Newznab providers.":[null,"Lägga till och konfigurera eller ta bort anpassade Newznab leverantörer."],"Select provider":[null,"Välj leverantör"],"-- add new provider --":[null,"--Lägg till ny leverantör--"],"Provider name":[null,"Leverantörsnamn"],"Site URL":[null,"Sajt-URL"],"Newznab search categories":[null,"Newznab sökkategorier"],"select your Newznab categories on the left, and click the \"update categories\" button to use them for searching.) <b>don't forget to to save the form!":[null,"Välj Newznab-kategorier till vänster och klicka \"uppdatera kategorier\"-knappen för att använda dom i en sökning<b>glöm inte att spara!"],"Update Categories":[null,"Uppdatera kategorier"],"Add":[null,"Lägg till"],"Delete":[null,"Radera"],"Add and setup or remove custom RSS providers.":[null,"Lägga till och konfigurera eller ta bort anpassade RSS-leverantörer."],"RSS URL":[null,"URL för RSS"],"Search element":[null,"Sökelement"],"eg: title":[null,"t.ex.: titel"],"Episode Search":[null,"Episodsök"],"NZB Search":[null,"NZB Sök"],"Torrent Search":[null,"Torrent sök"],"How to manage searching with":[null,"Hur att hantera sökning med"],"Randomize Providers":[null,"Slumpa leverantörer"],"randomize the provider search order instead of going in order of placement":[null,"slumpa sökordningen för leverantör istället för placeringsordning"],"Download propers":[null,"Ladda ner propers"],"replace original download with \"Proper\" or \"Repack\" if nuked":[null,"ersätt original nedladdning med \"Proper\" eller \"Repack\" om nuked"],"Check propers every":[null,"Kola efter propers varje"],"24 hours":[null,"24 timmar"],"4 hours":[null,"4 timmar"],"90 mins":[null,"90 min"],"45 mins":[null,"45 min"],"15 mins":[null,"15 min"],"Backlog search day(s)":[null,"Backlog sökdag(ar)"],"number of day(s) that the \"Forced Backlog Search\" will cover (e.g. 7 Days)":[null,"antal dag(ar) som \"Tvinga backlog sök\" kommer att täcka (t.ex. 7 dagar)"],"Backlog search frequency":[null,"Backlog sökfrekvens"],"time in minutes between searches (min.":[null,"tid i minuter mellan sökningar (min."],"Daily search frequency":[null,"Daglig sökfrekvens"],"Usenet retention":[null,"Usenet retention"],"age limit in days for usenet articles to be used (e.g. 500)":[null,"åldersgräns i dagar för usenet artiklar till att används (e.g. 500)"],"Ignore words":[null,"Ignorerade ord"],"results with one or more word from this list will be ignored<br>separate words with a comma, e.g. \"word1,word2,word3\"":[null,"Resultat som har ett eller flera ord från den här listan kommer att ignoreras<br>separera ord med kommatecken, t.ex. \"ord1,ord2,ord3\""],"Require words":[null,"Krävda ord"],"results with no word from this list will be ignored<br>separate words with a comma, e.g. \"word1,word2,word3\"":[null,"Resultat som helt saknar ord från den här listan kommer att ignoreras<br>separera ord med kommatecken, t.ex. \"ord1,ord2,ord3\""],"Trackers list":[null,"Tracker lista"],"trackers that will be added to magnets without trackers<br>separate trackers with a comma, e.g. \"tracker1,tracker2,tracker3\"":[null,""],"Ignore language names in subbed results":[null,"Ignorera språknamn i textade resultat"],"ignore subbed releases based on language names <br>\n Example: \"dk\" will ignore words: dksub, dksubs, dksubbed, dksubed <br>\n separate languages with a comma, e.g. \"lang1,lang2,lang3":[null,""],"Allow high priority":[null,"Tillåt hög prioritet"],"set downloads of recently aired episodes to high priority":[null,"sätt nyligen nedladdade visade avsnitt till hög prioritet"],"Use Failed Downloads":[null,"Använd misslyckade nedladdningar"],"use Failed Download Handling?":[null,"aktivera hantering för misslyckade nedladdningar?"],"will only work with snatched/downloaded episodes after enabling this":[null,""],"Delete Failed":[null,"Borttagning misslyckades"],"delete files left over from a failed download?":[null,""],"this only works if Use Failed Downloads is enabled.":[null,""],"How to handle NZB search results.":[null,"Hur att hantera NZB sökresultat."],"Search NZBs":[null,"Sök NZBs"],"enable NZB search providers":[null,""],"Send .nzb files to":[null,"Skicka .nzb filer till"],"SABnzbd server URL":[null,"SABnzbd server URL"],"URL to your SABnzbd server (e.g. http://localhost:8080/)":[null,"URL till din SABnzbd server (t.ex. localhost8080:/)"],"SABnzbd username":[null,"SABnzbd användarnamn"],"(blank for none)":[null,"(blankt för inget)"],"SABnzbd password":[null,"SABnzbd lösenord"],"SABnzbd API key":[null,"SABnzbd API-nyckel"],"locate at... SABnzbd Config -> General -> API Key":[null,"finns i... SABnzbd Config-> General-> API Key"],"Use SABnzbd category":[null,"Använd SABnzbd-kategorier"],"add downloads to this category (e.g. TV)":[null,"lägg till nedladdningar i denna kategori (t.ex. TV)"],"Use SABnzbd category (backlog episodes)":[null,"Använda SABnzbd-kategori (backlog episoder)"],"add downloads of old episodes to this category (e.g. TV)":[null,"lägg till nedladdningar av gamla episoder i denna kategori (t.ex. TV)"],"Use SABnzbd category for anime":[null,"Använd SABnzbd-kategori för anime"],"add anime downloads to this category (e.g. anime)":[null,"lägg till anime nedladdningar till denna kategori (t.ex. anime)"],"Use SABnzbd category for anime (backlog episodes)":[null,"Använda SABnzbd-kategori för anime (backlog episoder)"],"add anime downloads of old episodes to this category (e.g. anime)":[null,"lägg till anime nedladdningar av gamla episoder till denna kategori (t.ex. anime)"],"Use forced priority":[null,"Använda tvingad prioritet"],"enable to change priority from HIGH to FORCED":[null,"aktivera för att ändra prioritet från HÖG till TVINGAD"],"Black hole folder location":[null,"\"Black hole\" mapp plats"],"<b>.nzb</b> files are stored at this location for external software to find and use":[null,"<b>.nzb</b> filer lagras på den här platsen så externa program kan hitta och använda"],"Connect using HTTPS":[null,"Ansluta via HTTPS"],"enable Secure control in NZBGet and set the correct Secure Port here":[null,"aktivera Säker kontroll i NZBGet och ange rätt Säker Port här"],"NZBget host:port":[null,"NZBget värd:port"],"(e.g. localhost:6789)":[null,"(t.ex. localhost: 6789)"],"NZBget RPC host name and port number (not NZBgetweb!)":[null,"NZBget RPC värdnamn och portnummer (inte NZBgetweb!)"],"NZBget username":[null,"NZBget användarnamn"],"locate in nzbget.conf (default:nzbget)":[null,"leta upp i nzbget.conf (standard: nzbget)"],"NZBget password":[null,"NZBget lösenord"],"locate in nzbget.conf (default:tegbzn6789)":[null,"leta upp i nzbget.conf (standard: tegbzn6789)"],"Use NZBget category":[null,"Använd NZBget-kategori"],"send downloads marked this category (e.g. TV)":[null,"skicka nedladdningar märkt med denna kategori (t.ex. TV)"],"Use NZBget category (backlog episodes)":[null,"Använd NZBget-kategori (backlog episoder)"],"send downloads of old episodes marked this category (e.g. TV)":[null,"skicka nedladdningar av gamla avsnitt markerade med denna kategori (t.ex. TV)"],"Use NZBget category for anime":[null,"Använd NZBget-kategori för anime"],"send anime downloads marked this category (e.g. anime)":[null,"skicka anime nedladdningar märkt med denna kategori (t.ex. anime)"],"Use NZBget category for anime (backlog episodes)":[null,"Använda NZBgetkategori för anime (backlog episoder)"],"send anime downloads of old episodes marked this category (e.g. anime)":[null,"skicka anime nedladdningar av gamla episoder markerade med denna kategori (t.ex. anime)"],"NZBget priority":[null,"NZBget prioritet"],"Very low":[null,"Mycket låg"],"Low":[null,"Låg"],"Very high":[null,"Mycket hög"],"Force":[null,"Tvinga"],"priority for daily snatches (no backlog)":[null,"prioritet för dagliga hämtningar (ingen backlog)"],"Torrent host:port":[null,"Torrent värd:port"],"URL to your Synology DSM (e.g. http://localhost:5000/)":[null,""],"Client username":[null,"Klientanvändarnamn"],"Client password":[null,"Klientlösenord"],"Downloaded files location":[null,"Plats för hämtade filer"],"where Synology Download Station will save downloaded files (blank for client default)":[null,"där Synology Download Station kommer att spara nedladdade filer (blankt för klientstandard)"],"the destination has to be a shared folder for Synology DS":[null,"målet måste vara en delad mapp för Synology DS"],"Click below to test":[null,"Klicka nedan för att testa"],"How to handle Torrent search results.":[null,"Hur att hanterar Torrent sökresultat."],"Search torrents":[null,"Sök torrenter"],"enable torrent search providers":[null,"aktivera sökleverantörer för torrent"],"Send .torrent files to":[null,"Skicka .torrent filer till"],"<b>.torrent</b> files are stored at this location for external software to find and use":[null,"<b>.torrent</b>-filer lagras på den här platsen för externa program att hitta och använda"],"URL to your torrent client (e.g. http://localhost:8000/)":[null,"URL till din torrent-klient (t.ex. http://localhost:8000/)"],"Torrent RPC URL":[null,"Torrent RPC-URL"],"the path without leading and trailing slashes (e.g. transmission)":[null,""],"Http Authentication":[null,"Http-autentisering"],"Verify certificate":[null,"Verifiera certifikat"],"disable if you get \"Deluge: Authentication Error\" in your log":[null,"inaktivera om du får \"Deluge: Authentication Error\" i din logg"],"verify SSL certificates for HTTPS requests":[null,""],"Add label to torrent":[null,"Lägg till etikett på torrent"],"(blank spaces are not allowed)":[null,"(blanksteg är inte tillåtet)"],"label plugin must be enabled in Deluge clients":[null,""],"for QBitTorrent 3.3.1 and up":[null,"för QBitTorrent 3.3.1 och högre"],"Add label to torrent for anime":[null,"Lägg till etikett på torrent för anime"],"for QBitTorrent 3.3.1 and up ":[null,""],"where <span id=\"torrent_client\">the torrent client</span> will save downloaded files (blank for client default)":[null,""],"the destination has to be a shared folder for Synology DS</span>":[null,"målet måste vara en delad mapp för Synology DS</span>"],"Minimum seeding time":[null,""],"time in hours":[null,"tid (timmar)"],"(default:'0' passes blank to client and '-1' passes nothing)":[null,""],"Start torrent paused":[null,"Starta torrent pausad"],"add .torrent to client but do <b style=\"font-weight:900\">not</b> start downloading":[null,"lägg till .torrent till klient men ladda<b style=\"font-weight:900\"> inte</b> ner"],"Allow high bandwidth":[null,"Tillåt hög bandbredd"],"use high bandwidth allocation if priority is high":[null,"använd hög bandbreddstilldelning om prioritet är hög"],"Test Connection":[null,"Prova anslutningen"],"Windows Shares":[null,""],"Defines your existing windows shares so that we can add them to the browse dialog":[null,""],"Share #{number}":[null,""],"Share label":[null,""],"Hostname or IP":[null,""],"Share path":[null,""],"Subtitles Search":[null,"Undertextsök"],"Subtitles Plugin":[null,"Undertextplugin"],"Plugin Settings":[null,"Plugininställningar"],"Settings that dictate how SickRage handles subtitles search results.":[null,"Inställningar som bestämmer hur SickRage hanterar sökresultat för undertexter."],"Search Subtitles":[null,"Sök undertexter"],"Subtitle Languages":[null,"Undertextspråk"],"Subtitle Directory":[null,"Undertextkatalog"],"the directory where SickRage should store your <i>Subtitles</i> files.":[null,""],"leave empty if you want store subtitle in episode path.":[null,""],"Subtitle Find Frequency":[null,"Undertext sökfrekvens"],"time in hours between scans (default: 1)":[null,"tid i timmar mellan skanningar (standard: 1)"],"Include Specials":[null,""],"include the show's specials when searching for subtitles?":[null,""],"Perfect matches":[null,"Perfekta matchningar"],"only download subtitles that match: release group, video codec, audio codec and resolution":[null,""],"if disabled you may get out of sync subtitles":[null,""],"Subtitles History":[null,"Undertexthistorik"],"log downloaded Subtitle on History page?":[null,""],"Subtitles Multi-Language":[null,"Flerspråkiga undertexter"],"append language codes to subtitle filenames?":[null,""],"this option is required if you use multiple subtitle languages":[null,""],"Delete unwanted subtitles":[null,"Ta bort oönskade undertexter"],"enable to delete unwanted subtitle languages bundled with release":[null,""],"Embedded Subtitles":[null,"Inbäddade undertexter"],"ignore subtitles embedded inside video file?":[null,""],"this will ignore <u>all</u> embedded subtitles for every video file!":[null,"detta kommer att ignorera <u>alla</u> inbäddade undertexter för varje videofil!"],"Hearing Impaired Subtitles":[null,"Undertexter för hörselskadade"],"download hearing impaired style subtitles?":[null,""],"See":[null,"Se"],"for a script arguments description.":[null,"för en beskrivning av skriptargument."],"Additional scripts separated by <b>|</b>.":[null,"Ytterligare skript separerade med<b>|</b>."],"Scripts are called after each episode has searched and downloaded subtitles.":[null,"Skript blir kört efter att varje episod har sökt och hämtat undertexter."],"For any scripted languages, include the interpreter executable before the script. See the following example":[null,"För alla skriptspråk, inkludera den körbara tolken. Se följande exempel"],"For Windows:":[null,"För Windows:"],"For Linux / OS X:":[null,"För Linux / OS X:"],"Subtitle Providers":[null,"Undertextleverantörer"],"Check off and drag the plugins into the order you want them to be used.":[null,"Markera och dra tilläggsprogrammen till den ordning du vill att de ska användas."],"At least one plugin is required.":[null,"Minst ett plugin krävs."]," Web-scraping plugin":[null," Web-scraping plugin"],"Provider Settings":[null,"Leverantörsinställningar"],"Set user and password for each provider":[null,"Ange användarnamn och lösenord för varje leverantör"],"User Name":[null,"Användarnamn"],"Change Show":[null,"Ändra serie"],"Prev Show":[null,"Föregående serie"],"Next Show":[null,"Nästa serie"],"Jump to Season":[null,"Hoppa till säsong"],"Specials":[null,"Specialer"],"Poster for":[null,"Affisch för"],"Stars":[null,"Stjärnor"],"minutes":[null,"minuter"],"View other popular {genre} shows on trakt.tv.":[null,"Kolla andra populära {genre} serier på trakt.tv."],"View other popular {imdbgenre} shows on IMDB.":[null,"Visa andra populära {imdbgenre}serier på IMDB."],"Allowed":[null,"Tillåten"],"Preferred":[null,"Önskad"],"Originally Airs":[null,"Sändes ursprungligen"],"Show Status":[null,"Seriestatus"],"Default EP Status":[null,"Standard episodstatusen"],"Location":[null,"Plats"],"Missing":[null,"Saknas"],"Scene Name":[null,"Scene namn"],"Required Words":[null,"Krävda ord"],"Ignored Words":[null,"Ignorerade ord"],"Size":[null,"Storlek"],"Info Language":[null,"Informationsspråk"],"Subtitles SR Metadata":[null,"Undertexter SR Metadata"],"Season Folders":[null,"Säsongmappar"],"Paused":[null,"Pausad"],"Air-by-Date":[null,"Sändningsdatum"],"Sports":[null,"Sport"],"DVD Order":[null,"DVD-sortering"],"Scene Numbering":[null,"Scene-numrering"],"Select Filtered Episodes":[null,"Markera filtrerade episoder"],"Clear All":[null,"Rensa alla"],"Change selected episodes to":[null,"Ändra valda episoder till"],"Select Columns":[null,"Markera kolumner"],"NFO":[null,"NFO"],"TBN":[null,"TBN"],"Episode":[null,"Episod"],"Absolute":[null,"Absolut"],"Scene":[null,"Scene"],"Scene Absolute":[null,"Scene absolut"],"File Name":[null,"Filnamn"],"Airdate":[null,"Sändningsdatum"],"Download":[null,"Nerladdad"],"Change the value here if scene numbering differs from the indexer episode numbering":[null,"Ändra värdet här om scene-numrering skiljer sig från indexerarens episodnumrering"],"Change the value here if scene absolute numbering differs from the indexer absolute numbering":[null,"Ändra värdet här om scene absolutnumrering skiljer sig från indexerarens absolutnumrering"],"Manual Search":[null,"Manuell sök"],"Do you want to mark this episode as failed?":[null,"Vill du markera denna episod som misslyckad?"],"The episode release name will be added to the failed history, preventing it to be downloaded again.":[null,"Episodnamnet kommer att läggas till i felhistoriken, för att förhindra att den laddas ner igen."],"Do you want to include the current episode quality in the search?":[null,"Vill du inkludera den aktuella episodkvaliteten i sökningen?"],"Choosing No will ignore any releases with the same episode quality as the one currently downloaded/snatched.":[null,"Att välja Nej kommer att ignorera alla utgåvor med samma episodkvalitet som den nuvarande nerladdade/hämtade."],"Download subtitle":[null,"Ladda ner undertexter"],"Do you want to re-download the subtitle for this language?":[null,""],"It will overwrite your current subtitle":[null,"Det kommer att skriva över din nuvarande undertext"],"Format":[null,"Format"],"Advanced":[null,"Avancerade"],"Main Settings":[null,"Huvudinställningar"],"Show Location":[null,"Serieplats"],"Preferred Quality":[null,"Föredragen Kvalitet"],"Default Episode Status":[null,"Standard episodstatus"],"this will set the status for future episodes.":[null,""],"this only applies to episode filenames and the contents of metadata files.":[null,""],"search for subtitles":[null,"sök efter undertexter"],"Use SR Metdata":[null,"Använda SR Metdata"],"use SickRage metadata when searching for subtitle, this will override the autodiscovered metadata":[null,"använd SickRage metadata vid undertextssökning, detta åsidosätter det autodetekterade metadatat"],"pause this show (SickRage will not download episodes)":[null,"pausa denna serie (SickRage kommer inte ladda ner episoder)"],"Format Settings":[null,"Formatinställningar"],"Air by date":[null,"Sändningsdatum"],"check if the show is released as Show.03.02.2010 rather than Show.S02E03.":[null,"kontrollera om serien är släppt som Show.03.02.2010 istället för Show.S02E03."],"in case of an air date conflict between regular and special episodes, the later will be ignored.":[null,""],"check if the show is Anime and episodes are released as Show.265 rather than Show.S02E03":[null,"kontrollera om serien är en Anime och episoder är släppta som Show.265 istället för Show.S02E03"],"check if the show is a sporting or MMA event released as Show.03.02.2010 rather than Show.S02E03":[null,"kontrollera om serien är ett sport eller MMA evenemang som Show.03.02.2010 istället för Show.S02E03"],"Season folders":[null,"Säsongmappar"],"group episodes by season folder (uncheck to store in a single folder)":[null,"gruppera episoder i säsongmapp (avmarkera för att lagra i egen mapp)"],"search by scene numbering (uncheck to search by indexer numbering)":[null,"sök med scene-numrering (avmarkera för att söka med indexerarens numrering)"],"use the DVD order instead of the air order":[null,"använd DVD sortering i stället för sändningsdatum"],"a \"Force Full Update\" is necessary, and if you have existing episodes you need to sort them manually.":[null,""],"comma-separated <i>e.g. \"word1,word2,word3</i>\"":[null,"kommaseparerade <i>t.ex. \"ord1,ord2,ord3\"</i>"],"search results with one or more words from this list will be ignored.":[null,""],"e.g. \"word1,word2,word3\"":[null,"t.ex. \"ord1,ord2,ord3\""],"search results with no words from this list will be ignored.":[null,""],"Scene Exception":[null,"Scene-undantag"],"this will affect episode search on NZB and torrent providers.":[null,"detta kommer att påverka episodsökning på NZB och torrentleverantörer."],"this list appends to the original show name.":[null,"denna lista läggs till det ursprungliga show-namnet."],"WARNING logs":[null,"Varningsloggar"],"ERROR logs":[null,"Felloggar"],"There are no events to display.":[null,"Det finns inga händelser att visa."],"Limit":[null,"Gräns"],"Layout":[null,"Utseende"],"HistoryLayout":[null,"HistorikUtseende"],"Compact":[null,"Kompakt"],"Detailed":[null,"Detaljerad"],"Time":[null,"Tid"],"Provider":[null,"Leverantör"],"Missing Provider":[null,"Saknad leverantör"],"missing provider":[null,"saknad leverantör"],"Directory":[null,"Katalog"],"Show Name (tvshow.nfo)":[null,"Serienamn (tvshow.nfo)"],"Indexer":[null,"Indexerare"],"Enter the folder containing the episode":[null,"Ange mappen som innehåller episoden"],"Process Method to be used":[null,"Processmetod som ska användas"],"Copy":[null,"Kopiera"],"Move":[null,"Flytta"],"Hard Link":[null,"Hårdlänk"],"Symbolic Link":[null,"Symbolisk länk"],"Symbolic Link Reversed":[null,"Reversibel Symbolisk-länk"],"Force already Post Processed Dir/Files":[null,"Tvinga Kataloger/Filer som redan har efterbearbetats"],"Mark Dir/Files as priority download":[null,"Markera Kataloger/Filer som prioriterade nerladdningar"],"(Check it to replace the file even if it exists at higher quality)":[null,"(Markera det om du vill ersätta filen även om den finns med högre kvalitet)"],"Delete files and folders":[null,"Radera filer och mappar"],"(Check it to delete files and folders like auto processing)":[null,"(Markera det för att radera filer och mappar som automatisk bearbetning)"],"Don't use processing queue":[null,"Använd inte bearbetningskön"],"(If checked this will return the result of the process here, but may be slow!)":[null,"(Om denna är vald kommer processens resultat att returneras hit. Kan vara långsam!)"],"Mark download as failed":[null,"Markera nedladdning som misslyckad"],"Process":[null,"Bearbeta"],"Download subtitles for this show?":[null,"Ladda ner undertexter för den här serien?"],"use SickRage metadata when searching for subtitle, <br />this will override the autodiscovered metadata":[null,"använd SickRage metadata vid undertextssökning, <br />detta åsidosätter det autodetekterade metadatat"],"Status for previously aired episodes":[null,"Status för tidigare sända episoder"],"Status for all future episodes":[null,"Status för alla framtida episoder"],"Group episodes by season folder?":[null,""],"Is this show an Anime?":[null,"Är denna serie en Anime?"],"Is this show scene numbered?":[null,"Är denna serie scene-numrerad?"],"Save Defaults":[null,"Spara som standard"],"Use current values as the defaults":[null,"Använd aktuella värden som standard"],"<p>Select your preferred fansub groups from the <b>Available Groups</b> and add them to the <b>Whitelist</b>. Add groups to the <b>Blacklist</b> to ignore them.</p>\n <p>The <b>Whitelist</b> is checked <i>before</i> the <b>Blacklist</b>.</p>\n <p>Groups are shown as <b>Name</b> | <b>Rating</b> | <b>Number of subbed episodes</b>.</p>\n <p>You may also add any fansub group not listed to either list manually.</p>\n <p>When doing this please note that you can only use groups listed on anidb for this anime.\n <br>If a group is not listed on anidb but subbed this anime, please correct anidb's data.</p>":[null,"<p>Välj ditt föredragna fansub-grupper från de <b>Tillgängliga grupper</b> och lägg till dem i <b>vitlistan</b>. Lägg till grupper i <b>Svartlistan</b> för att ignorera dem.</p> \n <p><b>Vitlistan</b> kontrolleras före <i>innan</i> <b>Svartlistan</b>.</p> \n <p>Grupper visas som <b>Namn</b> | <b>Betyg</b> | <b>Antalet textade episoder</b>.</p> \n <p>Du kan ävenlägga till någon fansub-grupp som inte visas i någon av listorna manuellt.</p> \n <p>När du gör detta observera att du endast kan använda grupper listade på anidb för denna anime.\n <br>Om en grupp inte är listade på anidb men har textat denna anime, vänligen korrigera anidb's data.</p>"],"Whitelist":[null,"Vitlista"],"Available Groups":[null,"Tillgängliga grupper"],"Add to Whitelist":[null,"Lägg till i vitlistan"],"Add to Blacklist":[null,"Lägg till i svartlistan"],"Blacklist":[null,"Svartlista"],"Custom Group":[null,"Egen grupp"],"Allowed Quality:":[null,"Tillåten kvalitet:"],"Preferred Quality:":[null,"Rekommenderad kvalitet:"],"Filter Show Name":[null,"Filter serienamn"],"Root":[null,"Root"],"All":[null,"Alla"],"Clear Filter(s)":[null,"Rensa filter"],"Poster":[null,"Affisch"],"Small Poster":[null,"Liten poster"],"Banner":[null,"Banner"],"Simple":[null,"Enkel"],"Next Episode":[null,"Nästa episod"],"Progress":[null,"Förlopp"],"Direction":[null,"Riktning"],"Ascending":[null,"Stigande"],"Descending":[null,"Fallande"],"Poster Size":[null,"Posterstorlek"],"Continuing":[null,"Fortsätter"],"Ended":[null,"Avslutad"],"Total":[null,"Totalt"],"Invalid date":[null,"Ogiltigt datum"],"No Network":[null,"Inget nätverk"],"Next Ep":[null,"Nästa episod"],"Prev Ep":[null,"Föregående episod"],"Show":[null,"Visa"],"Downloads":[null,"Nedladdningar"],"Active":[null,"Aktiv"],"loading":[null,"laddar"],"<p><b><u>Preferred</u></b> qualities will replace those in <b><u>allowed</u></b>, even if they are lower.</p>":[null,"<p><b><u>Önskad</u></b> kvaliteter kommer att ersätta de i <b><u>tillåtna</u></b>, även om de är lägre.</p>"],"New":[null,"Ny"],"Set as Default":[null,"Ange som standard"],"Remember me":[null,"Kom ihåg mig"],"Edit Selected":[null,"Redigera markerade"],"Subtitle":[null,"Undertext"],"Default Ep Status":[null,"Standard episodstatus"],"Update":[null,"Uppdatera"],"Rescan":[null,"Sök igen"],"Rename":[null,"Byt namn"],"Search Subtitle":[null,"Sök undertext"],"Force Metadata Regen":[null,"Tvinga återgenerering av Metadata"],"Snatched (Allowed)":[null,"Hämtad (Tillåten)"],"Jump to Show":[null,"Hoppa till TV-serie"],"Force Backlog":[null,"Tvinga Backlog"],"Manage episodes with status":[null,"Hantera episoder med status"],"Manage":[null,"Hantera"],"None of your episodes have status":[null,"Ingen av dina episoder har status"],"Shows containing":[null,"Serier som innehåller"],"episodes":[null,"avsnitt"],"Set checked shows/episodes to":[null,"Sätt markerade serier/episoder till"],"Go":[null,"Kör"],"Select all":[null,"Markera allt"],"Clear all":[null,"Rensa allt"],"Release":[null,"Utgåva"],"Backlog Search":[null,"Backlog sök"],"Not in progress":[null,"Inte pågående"],"In Progress":[null,"Pågående"],"Daily Search":[null,"Daglig Sökning"],"Find Propers Search":[null,"Hitta Proper-Sök"],"Propers search disabled":[null,"Proper-Sök inaktiverad"],"Subtitle Search":[null,"Sök Undertext"],"Subtitle search disabled":[null,"Undertextsök inaktiverad"],"Search Queue":[null,"Sökkö"],"pending items":[null,"väntande objekt"],"Daily":[null,"Daglig"],"Manual":[null,"Manuell"],"Changing any settings marked with (<span class=\"separator\">*</span>) will force a refresh of the selected shows.":[null,"Ändring av någon inställning markerad med (<span class=\"separator\">*</span>) kommer att tvinga fram en uppdatering av de valda serier."],"Selected Shows":[null,"Valda serier"],"Root Directories":[null,"Rotkataloger"],"Current":[null,"Nuvarande"],"Keep":[null,"Behåll"],"Custom":[null,"Anpassad"],"Group episodes by season folder (set to \"No\" to store in a single folder).":[null,"Gruppera episoder efter säsongsmapp (sätt till \"Nej\" för att lagra i egen mapp)."],"Pause these shows (SickRage will not download episodes).":[null,"Pausa dessa serier (SickRage kommer inte ladda ner episoder)."],"This will set the status for future episodes.":[null,"Detta kommer ange statusen för framtida episoder."],"Search by scene numbering (set to \"No\" to search by indexer numbering).":[null,"Sök med scene-numrering (sätt på \"Nej\" för att söka med indexeringsnumrering)."],"Set if these shows are Anime and episodes are released as Show.265 rather than Show.S02E03":[null,"Ange om dessa serier är Anime och episoder är släppta som Show.265 istället för Show.S02E03"],"Set if these shows are sporting or MMA events released as Show.03.02.2010 rather than Show.S02E03.":[null,"Ange om dessa serier är sport eller MMA evenemang släppta som Show.03.02.2010 istället för Show.S02E03."],"In case of an air date conflict between regular and special episodes, the later will be ignored.":[null,"Vid en sändningsdatum konflikt mellan ordinarie och specialepisoder, ignoreras den sistnämnda."],"Set if these shows are released as Show.03.02.2010 rather than Show.S02E03.":[null,"Ange om dessa serier är släppta som Show.03.02.2010 istället för Show.S02E03."],"Search for subtitles.":[null,"Sök efter undertexter."],"All of your episodes have {subsLanguage} subtitles.":[null,"Alla dina episoder har {subsLanguage} undertexter."],"Manage episodes without":[null,"Hantera episoder utan"],"Episodes without {subsLanguage} subtitles.":[null,"Episoder utan {subsLanguage} undertexter."],"Episodes without {subtitleLanguage} (undefined) subtitles.":[null,"Episoder utan {subtitleLanguage} (odefinierad) undertexter."],"Download missed subtitles for selected episodes":[null,"Hämta missade undertexter för valda episoder"],"Performing Restart":[null,"Utför omstart"],"Waiting for SickRage to shut down":[null,"Väntar på att SickRage ska avslutas"],"Waiting for SickRage to start again":[null,"Väntar på att SickRage ska starta igen"],"Loading the default page":[null,"Laddar standardsidan"],"Error: The restart has timed out, perhaps something prevented SickRage from starting again?":[null,"Fel: Omstarten har gått ut, kanske något hindrade SickRage från att starta igen?"],"Key":[null,"Nyckel"],"Missed":[null,"Missade"],"Today":[null,"Idag"],"Soon":[null,"Snart"],"Later":[null,"Senare"],"Subscribe":[null,"Prenumerera"],"Date":[null,"Datum"],"View Paused":[null,"Visa pausad"],"Hidden":[null,"Dold"],"Shown":[null,"Visas"],"Calendar":[null,"Kalender"],"List":[null,"Lista"],"Ends":[null,"Slutar"],"Next Ep Name":[null,"Nästa avsnitts Namn"],"Run time":[null,"Körtid"],"Indexers":[null,"Indexerare"],"No shows for this day":[null,"Inga TV_serier denna dag"],"Airs":[null,"Sänds"],"Plot":[null,"Sammanfattning"],"Show Update":[null,"Serieuppdatering"],"Version Check":[null,"Versionskontroll"],"Proper Finder":[null,"Proper sökare"],"Post Process":[null,"Efterbearbetningen"],"Subtitles Finder":[null,"Undertext sökare"],"Scheduler":[null,"Schemaläggare"],"Alive":[null,"Igång"],"Start Time":[null,"Starttid"],"Cycle Time":[null,"Repititionstid"],"Next Run":[null,"Nästa körning"],"Last Run":[null,"Senaste körning"],"Silent":[null,"Bakgrund"],"True":[null,"Sant"],"N/A":[null,"Okänt"],"Show id":[null,"Visa id"],"Show name":[null,"TV-seriens namn"],"Priority":[null,"Prioritet"],"Added":[null,"Tillagd"],"Queue type":[null,"Kötyp"],"LOW":[null,"LÅG"],"NORMAL":[null,"NORMAL"],"HIGH":[null,"HÖG"],"Disk Space":[null,"Hårddisksutrymme"],"Free space":[null,"Ledigt utrymme"],"TV Download Directory":[null,"TV-nerladdningskatalog"],"Media Root Directories":[null,"Media rotkatalog"],"Preview of the proposed name changes":[null,"Förhandsgranska föreslagna namnändringar"],"All Seasons":[null,"Alla Säsonger"],"select all":[null,"markera alla"],"Rename Selected":[null,"Byt namn på valda"],"Cancel Rename":[null,"Avbryt Byt namn"],"Old Location":[null,"Gamla platsen"],"New Location":[null,"Ny plats"],"Trakt API did not return any results, please check your config.":[null,"Trakt API returnerade inte några resultat, vänligen kontrollera din konfiguration."],"votes":[null,"röster"],"Remove Show":[null,"Ta bort TV-serie"],"Level":[null,"Nivå"],"Filter":[null,"Filtrera"],"All non-absolute folder locations are relative to ":[null,"Alla icke-absoluta mapplatser är relaterade till "],"Manual Post-Processing":[null,"Manuell efterbehandling"],"Episode Status Management":[null,"Hantering episodstatus"],"Update PLEX":[null,"Uppdatera PLEX"],"Update KODI":[null,"Uppdatera KODI"],"Update Emby":[null,"Uppdatera Emby"],"Manage Torrents":[null,"Hantera Torrents"],"Missed Subtitle Management":[null,"Hantera saknade undertext"],"Help & Info":[null,"Hjälp & Information"],"Backup & Restore":[null,"Säkerhetskopiering & återställning"],"Tools":[null,"Verktyg"],"Support SickRage":[null,"Stöd SickRage"],"View Errors":[null,"Visa fel"],"View Warnings":[null,"Visa varningar"],"View Log":[null,"Visa logg"],"Check For Updates":[null,"Sök efter uppdateringar"],"Restart":[null,"Starta om"],"Shutdown":[null,"Stäng av"],"Logout":[null,"Logga ut"],"Server Status":[null,"Serverstatus"],"View overview of snatched episodes":[null,"Visa översikt över hämtade avsnitt"],"Episodes Downloaded":[null,"Nerladdade avsnitt"],"Memory used":[null,"Använt minne"],"Load time":[null,"Laddningstid"],"Branch":[null,"Gren"],"Now":[null,"Nu"]}}}} \ No newline at end of file diff --git a/locale/sv_SE/LC_MESSAGES/messages.mo b/locale/sv_SE/LC_MESSAGES/messages.mo index e7be78c51f82ead32e39f49b92a520ae0b031e69..dce81303c5d5b9f07f65229f23e4d27e9a00a4e2 100644 Binary files a/locale/sv_SE/LC_MESSAGES/messages.mo and b/locale/sv_SE/LC_MESSAGES/messages.mo differ diff --git a/locale/sv_SE/LC_MESSAGES/messages.po b/locale/sv_SE/LC_MESSAGES/messages.po index 71360659403274136e223f501b4d1610904e7961..1990a9ef92a2a50ea66b2926b73c7b3a71bdccc9 100644 --- a/locale/sv_SE/LC_MESSAGES/messages.po +++ b/locale/sv_SE/LC_MESSAGES/messages.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: sickrage\n" "Report-Msgid-Bugs-To: miigotu@gmail.com\n" -"POT-Creation-Date: 2017-03-25 09:28-0700\n" -"PO-Revision-Date: 2017-03-25 12:30-0400\n" +"POT-Creation-Date: 2017-03-28 09:10-0700\n" +"PO-Revision-Date: 2017-03-28 12:13-0400\n" "Last-Translator: miigotu <miigotu@gmail.com>\n" "Language-Team: Swedish\n" "MIME-Version: 1.0\n" @@ -90,7 +90,7 @@ msgid "Biography" msgstr "Biografi" #: gui/slick/views/config_general.mako:78 gui/slick/views/layouts/main.mako:145 -#: sickbeard/__init__.py:79 sickbeard/webserve.py:3807 +#: sickbeard/__init__.py:79 sickbeard/webserve.py:3778 msgid "History" msgstr "Historik" @@ -103,7 +103,7 @@ msgid "Western" msgstr "Western" #: gui/slick/views/config_general.mako:79 gui/slick/views/layouts/main.mako:221 -#: sickbeard/__init__.py:80 sickbeard/webserve.py:2385 +#: sickbeard/__init__.py:80 sickbeard/webserve.py:2384 msgid "News" msgstr "Nyheter" @@ -238,6 +238,34 @@ msgstr "Ignorerad" msgid "Subtitled" msgstr "Undertextad" +#: sickbeard/helpers.py:1887 +msgid "For best results please set the Download Station alias as" +msgstr "För bästa resultat vänligen ange Download Station alias som" + +#: sickbeard/helpers.py:1888 +msgid "You can check this setting in the Synology DSM" +msgstr "Du kan kontrollera inställningen i Synology DSM" + +#: sickbeard/helpers.py:1888 sickbeard/helpers.py:1890 +msgid "Control Panel" +msgstr "Kontrollpanel" + +#: sickbeard/helpers.py:1888 +msgid "Application Portal" +msgstr "Applikationsportal" + +#: sickbeard/helpers.py:1889 +msgid "Make sure you allow DSM to be embedded with iFrames too in" +msgstr "Kontrollera att du tillåter DSM att integreras med iFrames också i" + +#: sickbeard/helpers.py:1890 +msgid "DSM Settings" +msgstr "DSM-inställningar" + +#: sickbeard/helpers.py:1890 +msgid "Security" +msgstr "Säkerhet" + #: sickbeard/logger.py:474 msgid "<No Filter>" msgstr "<Inget filter>" @@ -308,15 +336,15 @@ msgstr "Trakt kontroll" msgid "Event" msgstr "Händelse" -#: sickbeard/logger.py:491 sickbeard/webserve.py:1339 sickbeard/webserve.py:1342 -#: sickbeard/webserve.py:1520 sickbeard/webserve.py:1529 sickbeard/webserve.py:1717 -#: sickbeard/webserve.py:1728 sickbeard/webserve.py:1751 sickbeard/webserve.py:1764 -#: sickbeard/webserve.py:1769 sickbeard/webserve.py:1785 sickbeard/webserve.py:1790 -#: sickbeard/webserve.py:1854 sickbeard/webserve.py:1857 sickbeard/webserve.py:1863 -#: sickbeard/webserve.py:1866 sickbeard/webserve.py:1873 sickbeard/webserve.py:1876 -#: sickbeard/webserve.py:1899 sickbeard/webserve.py:1997 sickbeard/webserve.py:2002 -#: sickbeard/webserve.py:2007 sickbeard/webserve.py:2036 sickbeard/webserve.py:2040 -#: sickbeard/webserve.py:2045 +#: sickbeard/logger.py:491 sickbeard/webserve.py:1338 sickbeard/webserve.py:1341 +#: sickbeard/webserve.py:1519 sickbeard/webserve.py:1528 sickbeard/webserve.py:1716 +#: sickbeard/webserve.py:1727 sickbeard/webserve.py:1750 sickbeard/webserve.py:1763 +#: sickbeard/webserve.py:1768 sickbeard/webserve.py:1784 sickbeard/webserve.py:1789 +#: sickbeard/webserve.py:1853 sickbeard/webserve.py:1856 sickbeard/webserve.py:1862 +#: sickbeard/webserve.py:1865 sickbeard/webserve.py:1872 sickbeard/webserve.py:1875 +#: sickbeard/webserve.py:1898 sickbeard/webserve.py:1996 sickbeard/webserve.py:2001 +#: sickbeard/webserve.py:2006 sickbeard/webserve.py:2035 sickbeard/webserve.py:2039 +#: sickbeard/webserve.py:2044 msgid "Error" msgstr "Fel" @@ -333,6 +361,7 @@ msgstr "Tråd" msgid "Main" msgstr "Primär" +#: gui/slick/js/ajaxEpSearch.js:146 gui/slick/js/ajaxEpSearch.js:147 #: gui/slick/views/inc_home_showList.mako:27 sickbeard/show_queue.py:298 msgid "Loading" msgstr "" @@ -372,867 +401,835 @@ msgstr "Säkerhetskopiering av konfiguration misslyckades, avbryter uppdatering" msgid "No update needed" msgstr "Ingen uppdatering behövs" -#: sickbeard/webserve.py:170 +#: sickbeard/webserve.py:171 msgid "Mako Error" msgstr "Mako fel" -#: sickbeard/webserve.py:195 +#: sickbeard/webserve.py:196 msgid "Oops" msgstr "Hoppsan" -#: sickbeard/webserve.py:197 +#: sickbeard/webserve.py:198 msgid "Wrong API key used" msgstr "Fel API nyckel användes" -#: gui/slick/views/login.mako:34 sickbeard/webserve.py:302 +#: gui/slick/views/login.mako:34 sickbeard/webserve.py:303 msgid "Login" msgstr "Användarnamn" -#: sickbeard/webserve.py:406 +#: sickbeard/webserve.py:392 msgid "API Key not generated" msgstr "API nyckeln är inte genererad" -#: sickbeard/webserve.py:409 +#: sickbeard/webserve.py:395 msgid "API Builder" msgstr "API Byggare" #: gui/slick/views/config_general.mako:77 gui/slick/views/layouts/main.mako:141 -#: sickbeard/webserve.py:512 +#: sickbeard/webserve.py:498 msgid "Schedule" msgstr "Schemalägg" -#: sickbeard/webserve.py:610 +#: sickbeard/webserve.py:609 msgid "Test 1" msgstr "Test 1" -#: sickbeard/webserve.py:610 +#: sickbeard/webserve.py:609 msgid "This is test number 1" msgstr "Detta är test nummer 1" -#: sickbeard/webserve.py:611 +#: sickbeard/webserve.py:610 msgid "Test 2" msgstr "Test 2" -#: sickbeard/webserve.py:611 +#: sickbeard/webserve.py:610 msgid "This is test number 2" msgstr "Detta är test nummer 2" -#: sickbeard/webserve.py:634 +#: sickbeard/webserve.py:633 msgid "You're using the {branch} branch. Please use 'master' unless specifically asked" msgstr "Du använder {branch} branchen. Vänligen använd 'master' om inget annat speciellt efterfrågats" -#: sickbeard/webserve.py:698 sickbeard/webserve.py:703 +#: sickbeard/webserve.py:697 sickbeard/webserve.py:702 msgid "Invalid show parameters" msgstr "Ogiltiga show parametrar" -#: sickbeard/webserve.py:710 +#: sickbeard/webserve.py:709 msgid "Invalid parameters" msgstr "Ogiltiga parametrar" -#: sickbeard/webserve.py:713 sickbeard/webserve.py:1899 +#: sickbeard/webserve.py:712 sickbeard/webserve.py:1898 msgid "Episode couldn't be retrieved" msgstr "Avsnittet kunde inte hämtas" -#: sickbeard/webserve.py:759 sickbeard/webserve.py:1268 sickbeard/webserve.py:1297 +#: sickbeard/webserve.py:758 sickbeard/webserve.py:1267 sickbeard/webserve.py:1296 msgid "Home" msgstr "Startsida" -#: gui/slick/views/layouts/main.mako:127 sickbeard/webserve.py:759 +#: gui/slick/views/layouts/main.mako:127 sickbeard/webserve.py:758 msgid "Show List" msgstr "Visa lista" -#: sickbeard/webserve.py:807 +#: sickbeard/webserve.py:806 msgid "Error: Unsupported Request. Send jsonp request with 'callback' variable in the query string." msgstr "Fel: Ogiltig begäran. Skicka jsonp begäran med \"callback\" variabel i frågesträngen." -#: sickbeard/webserve.py:851 +#: sickbeard/webserve.py:850 msgid "Success. Connected and authenticated" msgstr "Lyckades. Ansluten och autentiserad" -#: sickbeard/webserve.py:853 +#: sickbeard/webserve.py:852 msgid "Authentication failed. SABnzbd expects" msgstr "Autentisering misslyckades. SABnzbd förväntad" -#: sickbeard/webserve.py:853 +#: sickbeard/webserve.py:852 msgid "as authentication method" msgstr "som autentiseringsmetod" -#: sickbeard/webserve.py:855 +#: sickbeard/webserve.py:854 msgid "Unable to connect to host" msgstr "Det går inte att ansluta till värden" -#: sickbeard/webserve.py:876 +#: sickbeard/webserve.py:875 msgid "SMS sent successfully" msgstr "SMS har skickats" -#: sickbeard/webserve.py:878 +#: sickbeard/webserve.py:877 msgid "Problem sending SMS: {message}" msgstr "Problem att skicka SMS: {message}" -#: sickbeard/webserve.py:885 +#: sickbeard/webserve.py:884 msgid "Telegram notification succeeded. Check your Telegram clients to make sure it worked" msgstr "Telegram notifiering lyckades. Kontrollera dina Telegram klienter för att verifiera" -#: sickbeard/webserve.py:887 +#: sickbeard/webserve.py:886 msgid "Error sending Telegram notification: {message}" msgstr "Problem att skicka Telegram notifiering: {message}" -#: sickbeard/webserve.py:894 +#: sickbeard/webserve.py:893 msgid "join notification succeeded. Check your join clients to make sure it worked" msgstr "gå med notifiering lyckades. Kontrollera dina gå med klienter för att verifiera" -#: sickbeard/webserve.py:896 +#: sickbeard/webserve.py:895 msgid "Error sending join notification: {message}" msgstr "Problem att skicka gå med notifiering: {message}" -#: sickbeard/webserve.py:906 +#: sickbeard/webserve.py:905 msgid " with password" msgstr " med lösenord" -#: sickbeard/webserve.py:908 +#: sickbeard/webserve.py:907 msgid "Registered and Tested growl successfully {growl_host}" msgstr "Registrering och testning av Growl lyckades {growl_host}" -#: sickbeard/webserve.py:910 +#: sickbeard/webserve.py:909 msgid "Registration and Testing of growl failed {growl_host}" msgstr "Registrering och testning av Growl misslyckades {growl_host}" -#: sickbeard/webserve.py:917 +#: sickbeard/webserve.py:916 msgid "Test prowl notice sent successfully" msgstr "Test prowl meddelande lyckades" -#: sickbeard/webserve.py:919 +#: sickbeard/webserve.py:918 msgid "Test prowl notice failed" msgstr "Test prowl meddelande misslyckades" -#: sickbeard/webserve.py:926 +#: sickbeard/webserve.py:925 msgid "Boxcar2 notification succeeded. Check your Boxcar2 clients to make sure it worked" msgstr "Boxcar2 notifiering lyckades. Kolla din Boxcar2 klient för att säkerställa att det funkade" -#: sickbeard/webserve.py:928 +#: sickbeard/webserve.py:927 msgid "Error sending Boxcar2 notification" msgstr "Ett fel uppstod vid Boxcar2 notifiering" -#: sickbeard/webserve.py:935 +#: sickbeard/webserve.py:934 msgid "Pushover notification succeeded. Check your Pushover clients to make sure it worked" msgstr "Pushover notifiering lyckades. Kontrollera din Pushover klient för att säkerställa att det funkade" -#: sickbeard/webserve.py:937 +#: sickbeard/webserve.py:936 msgid "Error sending Pushover notification" msgstr "Ett fel uppstod vid Pushover notifiering" -#: sickbeard/webserve.py:949 +#: sickbeard/webserve.py:948 msgid "Key verification successful" msgstr "Nyckel-verifiering lyckades" -#: sickbeard/webserve.py:951 +#: sickbeard/webserve.py:950 msgid "Unable to verify key" msgstr "Det gick inte att verifiera nyckeln" -#: sickbeard/webserve.py:958 +#: sickbeard/webserve.py:957 msgid "Tweet successful, check your twitter to make sure it worked" msgstr "Tweet lyckades, kontrollera din twitter för att säkerställa att det funkade" -#: sickbeard/webserve.py:960 +#: sickbeard/webserve.py:959 msgid "Error sending tweet" msgstr "Misslyckades att sända tweet" -#: sickbeard/webserve.py:965 +#: sickbeard/webserve.py:964 msgid "Please enter a valid account sid" msgstr "Vänligen ange ett giltigt konto-sid" -#: sickbeard/webserve.py:968 +#: sickbeard/webserve.py:967 msgid "Please enter a valid auth token" msgstr "Vänligen ange en giltig auth-token" -#: sickbeard/webserve.py:971 +#: sickbeard/webserve.py:970 msgid "Please enter a valid phone sid" msgstr "Vänligen ange ett giltigt telefon-sid" -#: sickbeard/webserve.py:974 +#: sickbeard/webserve.py:973 msgid "Please format the phone number as \"+1-###-###-####\"" msgstr "Vänligen formatera telefonnummer som \"+ 1-###-###-###\"" -#: sickbeard/webserve.py:978 +#: sickbeard/webserve.py:977 msgid "Authorization successful and number ownership verified" msgstr "Authentisering lyckades och numrets ägarskap verifierades" -#: sickbeard/webserve.py:980 +#: sickbeard/webserve.py:979 msgid "Error sending sms" msgstr "Fel vid skickande av sms" -#: sickbeard/webserve.py:986 +#: sickbeard/webserve.py:985 msgid "Slack message successful" msgstr "Slack meddelande lyckades" -#: sickbeard/webserve.py:988 +#: sickbeard/webserve.py:987 msgid "Slack message failed" msgstr "Slack meddelande misslyckades" -#: sickbeard/webserve.py:994 +#: sickbeard/webserve.py:993 msgid "Discord message successful" msgstr "Discord-meddelande lyckades" -#: sickbeard/webserve.py:996 +#: sickbeard/webserve.py:995 msgid "Discord message failed" msgstr "Discord-meddelande misslyckades" -#: sickbeard/webserve.py:1006 +#: sickbeard/webserve.py:1005 msgid "Test KODI notice sent successfully to {kodi_host}" msgstr "KODI test-notifiering lyckades till {kodi_host}" -#: sickbeard/webserve.py:1008 +#: sickbeard/webserve.py:1007 msgid "Test KODI notice failed to {kodi_host}" msgstr "KODI test-notifiering misslyckades till {kodi_host}" -#: sickbeard/webserve.py:1023 +#: sickbeard/webserve.py:1022 msgid "Successful test notice sent to Plex Home Theater ... {plex_clients}" msgstr "Lyckat test-notifiering blev sänt till Plex Home Theater ... {plex_clients}" -#: sickbeard/webserve.py:1025 +#: sickbeard/webserve.py:1024 msgid "Test failed for Plex Home Theater ... {plex_clients}" msgstr "Test misslyckades för Plex Home Theater ... {plex_clients}" -#: sickbeard/webserve.py:1028 +#: sickbeard/webserve.py:1027 msgid "Tested Plex Home Theater(s)" msgstr "Testade Plex Home Theater(s)" -#: sickbeard/webserve.py:1042 +#: sickbeard/webserve.py:1041 msgid "Successful test of Plex Media Server(s) ... {plex_servers}" msgstr "Lyckat test för Plex Media Server(s) ... {plex_servers}" -#: sickbeard/webserve.py:1044 +#: sickbeard/webserve.py:1043 msgid "Test failed, No Plex Media Server host specified" msgstr "Test misslyckades. Ingen specificerad Plex Media Server värd" -#: sickbeard/webserve.py:1046 +#: sickbeard/webserve.py:1045 msgid "Test failed for Plex Media Server(s) ... {plex_servers}" msgstr "Test misslyckades för Plex Media Server(s) ... {plex_servers}" -#: sickbeard/webserve.py:1049 +#: sickbeard/webserve.py:1048 msgid "Tested Plex Media Server host(s)" msgstr "Testade Plex Media Server Värd(ar)" -#: sickbeard/webserve.py:1057 +#: sickbeard/webserve.py:1056 msgid "Tried sending desktop notification via libnotify" msgstr "Försökte skicka skrivbordsnotifiering via libnotify" -#: sickbeard/webserve.py:1066 +#: sickbeard/webserve.py:1065 msgid "Test notice sent successfully to {emby_host}" msgstr "Lyckad testnotis skickades till {emby_host}" -#: sickbeard/webserve.py:1068 +#: sickbeard/webserve.py:1067 msgid "Test notice failed to {emby_host}" msgstr "Testnotis misslyckades till {emby_host}" -#: sickbeard/webserve.py:1076 +#: sickbeard/webserve.py:1075 msgid "Successfully started the scan update" msgstr "Lyckad start av skanningsuppdateringen" -#: sickbeard/webserve.py:1078 +#: sickbeard/webserve.py:1077 msgid "Test failed to start the scan update" msgstr "Testet misslyckades att starta skanningsuppdateringen" -#: sickbeard/webserve.py:1097 +#: sickbeard/webserve.py:1096 msgid "Test notice sent successfully to {nmj2_host}" msgstr "Lyckad testnotis skickades till {nmj2_host}" -#: sickbeard/webserve.py:1099 +#: sickbeard/webserve.py:1098 msgid "Test notice failed to {nmj2_host}" msgstr "Testnotis misslyckades till {nmj2_host}" -#: sickbeard/webserve.py:1119 +#: sickbeard/webserve.py:1118 msgid "Trakt Authorized" msgstr "Trakt auktoriserad" -#: sickbeard/webserve.py:1120 +#: sickbeard/webserve.py:1119 msgid "Trakt Not Authorized!" msgstr "Trakt inte auktoriserad!" -#: sickbeard/webserve.py:1184 +#: sickbeard/webserve.py:1183 msgid "Test email sent successfully! Check inbox." msgstr "E-posttest lyckades! Kolla inkorgen." -#: sickbeard/webserve.py:1186 +#: sickbeard/webserve.py:1185 msgid "ERROR: {last_error}" msgstr "FEL: {last_error}" -#: sickbeard/webserve.py:1193 +#: sickbeard/webserve.py:1192 msgid "Test NMA notice sent successfully" msgstr "NMA-testnotis skickades framgångsrikt" -#: sickbeard/webserve.py:1195 +#: sickbeard/webserve.py:1194 msgid "Test NMA notice failed" msgstr "NMA-testnotis misslyckades" -#: sickbeard/webserve.py:1202 +#: sickbeard/webserve.py:1201 msgid "Pushalot notification succeeded. Check your Pushalot clients to make sure it worked" msgstr "Pushalot notifiering lyckades. Kolla din Pushalot klient för att säkerställa att det funkade" -#: sickbeard/webserve.py:1204 +#: sickbeard/webserve.py:1203 msgid "Error sending Pushalot notification" msgstr "Fel vid sändning av Pushalot-notis" -#: sickbeard/webserve.py:1211 +#: sickbeard/webserve.py:1210 msgid "Pushbullet notification succeeded. Check your device to make sure it worked" msgstr "Pushbullet notifiering lyckades. Kontrollera din enhet för att säkerställa att det funkade" -#: sickbeard/webserve.py:1213 sickbeard/webserve.py:1223 sickbeard/webserve.py:1232 +#: sickbeard/webserve.py:1212 sickbeard/webserve.py:1222 sickbeard/webserve.py:1231 msgid "Error sending Pushbullet notification" msgstr "Ett fel uppstod vid sändning av Pushbullet notifiering" #: gui/slick/views/displayShow.mako:436 gui/slick/views/inc_home_showList.mako:174 -#: gui/slick/views/manage.mako:49 sickbeard/webserve.py:1249 +#: gui/slick/views/manage.mako:49 sickbeard/webserve.py:1248 msgid "Status" msgstr "Status" -#: sickbeard/webserve.py:1268 sickbeard/webserve.py:1297 +#: sickbeard/webserve.py:1267 sickbeard/webserve.py:1296 msgid "Restarting SickRage" msgstr "Startar om SickRage" -#: sickbeard/webserve.py:1300 +#: sickbeard/webserve.py:1299 msgid "Update Failed" msgstr "Uppdateringen misslyckades" -#: sickbeard/webserve.py:1301 +#: sickbeard/webserve.py:1300 msgid "Update wasn't successful, not restarting. Check your log for more information." msgstr "Uppdateringen lyckades ej, startar inte om. Se logg för mer information." -#: sickbeard/webserve.py:1308 +#: sickbeard/webserve.py:1307 msgid "Checking out branch" msgstr "Kontrollera branch" -#: sickbeard/webserve.py:1311 +#: sickbeard/webserve.py:1310 msgid "Already on branch" msgstr "Redan på den branchen" -#: sickbeard/webserve.py:1339 +#: sickbeard/webserve.py:1338 msgid "Invalid show ID: {show}" msgstr "Ogiltigt serie ID: {show}" -#: sickbeard/webserve.py:1342 sickbeard/webserve.py:1871 sickbeard/webserve.py:2002 -#: sickbeard/webserve.py:2040 +#: sickbeard/webserve.py:1341 sickbeard/webserve.py:1870 sickbeard/webserve.py:2001 +#: sickbeard/webserve.py:2039 msgid "Show not in show list" msgstr "Serie finns inte med på serielistan" #: gui/slick/views/inc_rootDirs.mako:31 gui/slick/views/manage.mako:38 -#: gui/slick/views/manage_massEdit.mako:74 sickbeard/webserve.py:1358 -#: sickbeard/webserve.py:2027 +#: gui/slick/views/manage_massEdit.mako:74 sickbeard/webserve.py:1357 +#: sickbeard/webserve.py:2026 msgid "Edit" msgstr "Redigera" -#: sickbeard/webserve.py:1368 +#: sickbeard/webserve.py:1367 msgid "This show is in the process of being downloaded - the info below is incomplete." msgstr "Denna serie håller på att laddas ner. Informationen nedan är ofullständig." -#: sickbeard/webserve.py:1371 +#: sickbeard/webserve.py:1370 msgid "The information on this page is in the process of being updated." msgstr "Informationen på denna sida håller på att uppdateras." -#: sickbeard/webserve.py:1374 +#: sickbeard/webserve.py:1373 msgid "The episodes below are currently being refreshed from disk" msgstr "Avsnitten nedan uppdateras på disken" -#: sickbeard/webserve.py:1377 +#: sickbeard/webserve.py:1376 msgid "Currently downloading subtitles for this show" msgstr "Laddar ner undertexter för denna serie" -#: sickbeard/webserve.py:1380 +#: sickbeard/webserve.py:1379 msgid "This show is queued to be refreshed." msgstr "Denna serie står i kö för att bli uppdaterad." -#: sickbeard/webserve.py:1383 +#: sickbeard/webserve.py:1382 msgid "This show is queued and awaiting an update." msgstr "Denna serie står i kö för att uppdateras." -#: sickbeard/webserve.py:1386 +#: sickbeard/webserve.py:1385 msgid "This show is queued and awaiting subtitles download." msgstr "Denna serie står i kö för att ladda ner undertexter." -#: gui/slick/js/core.js:4081 sickbeard/webserve.py:1391 +#: gui/slick/js/core.js:4081 sickbeard/webserve.py:1390 msgid "Resume" msgstr "Fortsätt" #: gui/slick/js/core.js:4081 gui/slick/views/viewlogs.mako:12 -#: sickbeard/webserve.py:1393 +#: sickbeard/webserve.py:1392 msgid "Pause" msgstr "Paus" #: gui/slick/views/editShow.mako:345 gui/slick/views/inc_blackwhitelist.mako:40 #: gui/slick/views/inc_blackwhitelist.mako:85 gui/slick/views/manage.mako:58 -#: gui/slick/views/manage_failedDownloads.mako:43 sickbeard/webserve.py:1395 +#: gui/slick/views/manage_failedDownloads.mako:43 sickbeard/webserve.py:1394 msgid "Remove" msgstr "Ta bort" -#: sickbeard/webserve.py:1396 +#: sickbeard/webserve.py:1395 msgid "Re-scan files" msgstr "Skanna om filer" -#: sickbeard/webserve.py:1397 +#: sickbeard/webserve.py:1396 msgid "Force Full Update" msgstr "Tvinga full uppdatering" -#: sickbeard/webserve.py:1398 +#: sickbeard/webserve.py:1397 msgid "Update show in KODI" msgstr "Uppdatera serie i KODI" -#: sickbeard/webserve.py:1399 +#: sickbeard/webserve.py:1398 msgid "Update show in Emby" msgstr "Uppdatera serie i Emby" -#: sickbeard/webserve.py:1402 +#: sickbeard/webserve.py:1401 msgid "Hide specials" msgstr "Dölj specialer" -#: sickbeard/webserve.py:1404 +#: sickbeard/webserve.py:1403 msgid "Show specials" msgstr "Visa specialer" -#: sickbeard/webserve.py:1406 sickbeard/webserve.py:2030 sickbeard/webserve.py:2031 +#: sickbeard/webserve.py:1405 sickbeard/webserve.py:2029 sickbeard/webserve.py:2030 msgid "Preview Rename" msgstr "Förhandsgranska namn byte" -#: sickbeard/webserve.py:1409 +#: sickbeard/webserve.py:1408 msgid "Download Subtitles" msgstr "Ladda ner undertexter" -#: sickbeard/webserve.py:1498 +#: sickbeard/webserve.py:1497 msgid "No scene exceptions" msgstr "Inget scene undantag" -#: sickbeard/webserve.py:1516 sickbeard/webserve.py:1764 sickbeard/webserve.py:1785 +#: sickbeard/webserve.py:1515 sickbeard/webserve.py:1763 sickbeard/webserve.py:1784 msgid "Invalid show ID" msgstr "Ogiltigt serie ID" -#: sickbeard/webserve.py:1525 sickbeard/webserve.py:1769 sickbeard/webserve.py:1790 +#: sickbeard/webserve.py:1524 sickbeard/webserve.py:1768 sickbeard/webserve.py:1789 msgid "Unable to find the specified show" msgstr "Det gick inte att hitta den angivna serien" -#: sickbeard/webserve.py:1550 +#: sickbeard/webserve.py:1549 msgid "Unable to retreive Fansub Groups from AniDB." msgstr "Gick inte att hämta Fansub Groups från AniDB." -#: sickbeard/webserve.py:1559 sickbeard/webserve.py:1561 +#: sickbeard/webserve.py:1558 sickbeard/webserve.py:1560 msgid "Edit Show" msgstr "Redigera program" -#: sickbeard/webserve.py:1637 sickbeard/webserve.py:1671 +#: sickbeard/webserve.py:1636 sickbeard/webserve.py:1670 msgid "Unable to refresh this show: {error}" msgstr "Det gick inte att uppdatera denna serien: {error}" -#: sickbeard/webserve.py:1663 +#: sickbeard/webserve.py:1662 msgid "New location <tt>{location}</tt> does not exist" msgstr "Ny plats <tt>{location}</tt> finns inte" -#: sickbeard/webserve.py:1688 +#: sickbeard/webserve.py:1687 msgid "Unable to update show: {error}" msgstr "Misslyckades att uppdatera serie: {error}" -#: sickbeard/webserve.py:1695 +#: sickbeard/webserve.py:1694 msgid "Unable to force an update on scene exceptions of the show." msgstr "Kan inte att tvinga en uppdatering av scene undantag för denna serie." -#: sickbeard/webserve.py:1702 +#: sickbeard/webserve.py:1701 msgid "Unable to force an update on scene numbering of the show." msgstr "Kan inte att tvinga en uppdatering av scene numrering av denna serie." -#: sickbeard/webserve.py:1708 sickbeard/webserve.py:3540 +#: sickbeard/webserve.py:1707 sickbeard/webserve.py:3539 msgid "{num_errors:d} error{plural} while saving changes:" msgstr "{num_errors:d} fel{plural} vid sparande av ändringar:" -#: sickbeard/webserve.py:1719 +#: sickbeard/webserve.py:1718 msgid "{show_name} has been {paused_resumed}" msgstr "{show_name} har blivit {paused_resumed}" -#: sickbeard/webserve.py:1719 +#: sickbeard/webserve.py:1718 msgid "resumed" msgstr "återupptogs" -#: sickbeard/webserve.py:1719 +#: sickbeard/webserve.py:1718 msgid "paused" msgstr "pausad" -#: sickbeard/webserve.py:1731 +#: sickbeard/webserve.py:1730 msgid "{show_name} has been {deleted_trashed} {was_deleted}" msgstr "{show_name} har blivit {deleted_trashed} {was_deleted}" -#: sickbeard/webserve.py:1733 +#: sickbeard/webserve.py:1732 msgid "deleted" msgstr "raderad" -#: sickbeard/webserve.py:1733 +#: sickbeard/webserve.py:1732 msgid "trashed" msgstr "slängd" -#: sickbeard/webserve.py:1734 +#: sickbeard/webserve.py:1733 msgid "(media untouched)" msgstr "(media orörd)" -#: sickbeard/webserve.py:1734 +#: sickbeard/webserve.py:1733 msgid "(with all related media)" msgstr "(med all relaterad media)" -#: sickbeard/webserve.py:1755 +#: sickbeard/webserve.py:1754 msgid "Unable to refresh this show." msgstr "Kan inte att uppdatera denna serie." -#: sickbeard/webserve.py:1775 +#: sickbeard/webserve.py:1774 msgid "Unable to update this show." msgstr "Kan inte uppdatera denna serie." -#: sickbeard/webserve.py:1814 +#: sickbeard/webserve.py:1813 msgid "Library update command sent to KODI host(s)): {kodi_hosts}" msgstr "Biblioteksuppdateringskommando skickat till KODI värd(ar)): {kodi_hosts}" -#: sickbeard/webserve.py:1816 +#: sickbeard/webserve.py:1815 msgid "Unable to contact one or more KODI host(s)): {kodi_hosts}" msgstr "Misslyckad anslutning till en eller flera KODI servrar: {kodi_hosts}" -#: sickbeard/webserve.py:1825 +#: sickbeard/webserve.py:1824 msgid "Library update command sent to Plex Media Server host: {plex_server}" msgstr "Biblioteksuppdateringskommandot skickades till Plex Media Server: {plex_server}" -#: sickbeard/webserve.py:1828 +#: sickbeard/webserve.py:1827 msgid "Unable to contact Plex Media Server host: {plex_server}" msgstr "Det går inte att kontakta PMS servern: {plex_server}" -#: sickbeard/webserve.py:1840 +#: sickbeard/webserve.py:1839 msgid "Library update command sent to Emby host: {emby_host}" msgstr "Biblioteksuppdateringskommandot skickades till Emby Host: {emby_host}" -#: sickbeard/webserve.py:1842 +#: sickbeard/webserve.py:1841 msgid "Unable to contact Emby host: {emby_host}" msgstr "Det går inte att kontakta Emby servern: {emby_host}" -#: sickbeard/webserve.py:1852 sickbeard/webserve.py:2036 +#: sickbeard/webserve.py:1851 sickbeard/webserve.py:2035 msgid "You must specify a show and at least one episode" msgstr "Du måste välja en serie och minst ett avsnitt" -#: sickbeard/webserve.py:1861 +#: sickbeard/webserve.py:1860 msgid "Invalid status" msgstr "Ogiltig status" -#: sickbeard/webserve.py:1954 +#: sickbeard/webserve.py:1953 msgid "Backlog was automatically started for the following seasons of <b>{show_name}</b>" msgstr "Backlog startades automatiskt för följande säsonger av <b>{show_name}</b>" #: gui/slick/views/displayShow.mako:74 gui/slick/views/displayShow.mako:79 -#: gui/slick/views/displayShow.mako:404 sickbeard/webserve.py:1961 -#: sickbeard/webserve.py:1980 +#: gui/slick/views/displayShow.mako:404 sickbeard/webserve.py:1960 +#: sickbeard/webserve.py:1979 msgid "Season" msgstr "Säsong" -#: sickbeard/webserve.py:1968 +#: sickbeard/webserve.py:1967 msgid "Backlog started" msgstr "Backlog startad" -#: sickbeard/webserve.py:1973 +#: sickbeard/webserve.py:1972 msgid "Retrying Search was automatically started for the following season of <b>{show_name}</b>" msgstr "Försöker söka på nytt blev automatisk startat för följande säsong av <b>{show_name}</b>" -#: sickbeard/webserve.py:1987 +#: sickbeard/webserve.py:1986 msgid "Retry Search started" msgstr "Nytt sökförsök påbörjades" -#: sickbeard/webserve.py:1997 +#: sickbeard/webserve.py:1996 msgid "You must specify a show" msgstr "Du måste välja en serie" -#: sickbeard/webserve.py:2007 sickbeard/webserve.py:2045 +#: sickbeard/webserve.py:2006 sickbeard/webserve.py:2044 msgid "Can't rename episodes when the show dir is missing." msgstr "Kan inte byta namn på avsnitt när seriens bibliotek saknas." -#: sickbeard/webserve.py:2212 sickbeard/webserve.py:2233 +#: sickbeard/webserve.py:2211 sickbeard/webserve.py:2232 msgid "New subtitles downloaded: {new_subtitle_languages}" msgstr "Nya undertexter hämtade: {new_subtitle_languages}" -#: sickbeard/webserve.py:2215 sickbeard/webserve.py:2236 +#: sickbeard/webserve.py:2214 sickbeard/webserve.py:2235 msgid "No subtitles downloaded" msgstr "Inga undertexter nerladdade" #: gui/slick/views/config_general.mako:80 gui/slick/views/layouts/main.mako:222 -#: sickbeard/webserve.py:2363 +#: sickbeard/webserve.py:2362 msgid "IRC" msgstr "IRC" -#: sickbeard/webserve.py:2376 +#: sickbeard/webserve.py:2375 msgid "Could not load news from the repo. [Click here for news.md])({news_url})" msgstr "Kunde inte ladda nyheter från repo. [Click here for news.md]) ({news_url})" -#: sickbeard/webserve.py:2383 sickbeard/webserve.py:2401 +#: sickbeard/webserve.py:2382 sickbeard/webserve.py:2400 msgid "The was a problem connecting to github, please refresh and try again" msgstr "Det var problem med att ansluta till github, vänligen uppdatera och försök igen" -#: sickbeard/webserve.py:2398 +#: sickbeard/webserve.py:2397 msgid "Could not load changes from the repo. [Click here for CHANGES.md]({changes_url})" msgstr "Kunde inte ladda ändringar från repo. [Click here for CHANGES.md] ({changes_url})" -#: gui/slick/views/layouts/main.mako:223 sickbeard/webserve.py:2403 +#: gui/slick/views/layouts/main.mako:223 sickbeard/webserve.py:2402 msgid "Changelog" msgstr "Ändringslogg" -#: gui/slick/views/layouts/main.mako:190 sickbeard/webserve.py:2413 -#: sickbeard/webserve.py:3855 sickbeard/webserve.py:4341 +#: gui/slick/views/layouts/main.mako:190 sickbeard/webserve.py:2412 +#: sickbeard/webserve.py:3826 sickbeard/webserve.py:4312 msgid "Post Processing" msgstr "Efterbearbetning" -#: gui/slick/views/layouts/main.mako:128 sickbeard/webserve.py:2445 +#: gui/slick/views/layouts/main.mako:128 sickbeard/webserve.py:2444 msgid "Add Shows" msgstr "Lägg till program" -#: sickbeard/webserve.py:2510 +#: sickbeard/webserve.py:2509 msgid "No folders selected." msgstr "Inga mappar har valts." -#: sickbeard/webserve.py:2632 +#: sickbeard/webserve.py:2631 msgid "New Show" msgstr "Ny Serie" -#: sickbeard/webserve.py:2647 +#: sickbeard/webserve.py:2646 msgid "Trending Shows" msgstr "Populära serier" -#: sickbeard/webserve.py:2649 sickbeard/webserve.py:2772 +#: sickbeard/webserve.py:2648 sickbeard/webserve.py:2771 msgid "Popular Shows" msgstr "Populär serie" -#: sickbeard/webserve.py:2651 sickbeard/webserve.py:2665 +#: sickbeard/webserve.py:2650 sickbeard/webserve.py:2664 msgid "Most Anticipated Shows" msgstr "Mest efterlängtade serier" -#: sickbeard/webserve.py:2653 +#: sickbeard/webserve.py:2652 msgid "Most Collected Shows" msgstr "" -#: sickbeard/webserve.py:2655 +#: sickbeard/webserve.py:2654 msgid "Most Watched Shows" msgstr "" -#: sickbeard/webserve.py:2657 +#: sickbeard/webserve.py:2656 msgid "Most Played Shows" msgstr "" -#: sickbeard/webserve.py:2659 +#: sickbeard/webserve.py:2658 msgid "Recommended Shows" msgstr "" -#: gui/slick/views/addShows_trendingShows.mako:60 sickbeard/webserve.py:2661 +#: gui/slick/views/addShows_trendingShows.mako:60 sickbeard/webserve.py:2660 msgid "New Shows" msgstr "Nya TV-serier" -#: gui/slick/views/addShows_trendingShows.mako:61 sickbeard/webserve.py:2663 +#: gui/slick/views/addShows_trendingShows.mako:61 sickbeard/webserve.py:2662 msgid "Season Premieres" msgstr "Säsongs premiärer" -#: sickbeard/webserve.py:2792 sickbeard/webserve.py:2793 +#: sickbeard/webserve.py:2791 sickbeard/webserve.py:2792 msgid "Existing Show" msgstr "Existerande Serie" -#: sickbeard/webserve.py:2871 +#: sickbeard/webserve.py:2870 msgid "No root directories setup, please go back and add one." msgstr "Inga rotkataloger har valts, gå tillbaka och lägga till en." -#: sickbeard/webserve.py:2883 sickbeard/webserve.py:3002 +#: sickbeard/webserve.py:2882 sickbeard/webserve.py:3001 msgid "Show added" msgstr "Serien tillagd" -#: sickbeard/webserve.py:2883 +#: sickbeard/webserve.py:2882 msgid "Adding the specified show {show_name}" msgstr "Lägger till den angivna serien {show_name}" -#: sickbeard/webserve.py:2924 +#: sickbeard/webserve.py:2923 msgid "Missing params, no Indexer ID or folder: {show_to_add} and {root_dir}/{show_path}" msgstr "Parametrar saknas, inget index ID eller mapp: {show_to_add} och {root_dir}/{show_path}" -#: sickbeard/webserve.py:2933 +#: sickbeard/webserve.py:2932 msgid "Unknown error. Unable to add show due to problem with show selection." msgstr "Okänt fel. Misslyckades att lägga till serie på grund av problem med val av serie." -#: sickbeard/webserve.py:2957 sickbeard/webserve.py:2967 +#: sickbeard/webserve.py:2956 sickbeard/webserve.py:2966 msgid "Unable to add show" msgstr "Det gick inte att lägga till serien" -#: sickbeard/webserve.py:2957 +#: sickbeard/webserve.py:2956 msgid "Folder {show_dir} exists already" msgstr "Mappen {show_dir} finns redan" -#: sickbeard/webserve.py:2968 +#: sickbeard/webserve.py:2967 msgid "Unable to create the folder {show_dir}, can't add the show" msgstr "Kan inte skapa mapp {show_dir}, kan inte lägga till serien" -#: sickbeard/webserve.py:3002 +#: sickbeard/webserve.py:3001 msgid "Adding the specified show into {show_dir}" msgstr "Lägger till den angivna serien i {show_dir}" -#: sickbeard/webserve.py:3078 +#: sickbeard/webserve.py:3077 msgid "Shows Added" msgstr "Serier tillagda" -#: sickbeard/webserve.py:3079 +#: sickbeard/webserve.py:3078 msgid "Automatically added {num_shows} from their existing metadata files" msgstr "La automatiskt till {num_shows} från deras existerande metadatafiler" -#: gui/slick/views/layouts/main.mako:153 sickbeard/webserve.py:3096 +#: gui/slick/views/layouts/main.mako:153 sickbeard/webserve.py:3095 msgid "Mass Update" msgstr "Massuppdatering" -#: sickbeard/webserve.py:3134 sickbeard/webserve.py:3161 sickbeard/webserve.py:3237 -#: sickbeard/webserve.py:3238 +#: sickbeard/webserve.py:3133 sickbeard/webserve.py:3160 sickbeard/webserve.py:3236 +#: sickbeard/webserve.py:3237 msgid "Episode Overview" msgstr "Episod översikt" -#: sickbeard/webserve.py:3270 +#: sickbeard/webserve.py:3269 msgid "Missing Subtitles" msgstr "Saknade undertexter" -#: gui/slick/views/layouts/main.mako:154 sickbeard/webserve.py:3356 -#: sickbeard/webserve.py:3357 +#: gui/slick/views/layouts/main.mako:154 sickbeard/webserve.py:3355 +#: sickbeard/webserve.py:3356 msgid "Backlog Overview" msgstr "Backlog Översikt" -#: sickbeard/webserve.py:3481 +#: sickbeard/webserve.py:3480 msgid "Mass Edit" msgstr "Mass redigera" -#: sickbeard/webserve.py:3586 +#: sickbeard/webserve.py:3585 msgid "Unable to update show: {excption_format}" msgstr "Det gick inte att uppdatera serien: {excption_format}" -#: sickbeard/webserve.py:3594 +#: sickbeard/webserve.py:3593 msgid "Unable to refresh show {show_name}: {excption_format}" msgstr "Gick inte att uppdatera serien {show_name}: {excption_format}" -#: sickbeard/webserve.py:3605 +#: sickbeard/webserve.py:3604 msgid "Errors encountered" msgstr "Fel uppstod" -#: gui/slick/views/config_general.mako:261 sickbeard/webserve.py:3611 +#: gui/slick/views/config_general.mako:261 sickbeard/webserve.py:3610 msgid "Updates" msgstr "Uppdateringar" -#: sickbeard/webserve.py:3616 +#: sickbeard/webserve.py:3615 msgid "Refreshes" msgstr "Uppdateringar" -#: sickbeard/webserve.py:3621 +#: sickbeard/webserve.py:3620 msgid "Renames" msgstr "Byter namn" #: gui/slick/views/displayShow.mako:260 gui/slick/views/displayShow.mako:435 #: gui/slick/views/editShow.mako:119 gui/slick/views/inc_addShowOptions.mako:20 -#: gui/slick/views/manage_massEdit.mako:262 sickbeard/webserve.py:3626 -#: sickbeard/webserve.py:5244 +#: gui/slick/views/manage_massEdit.mako:262 sickbeard/webserve.py:3625 +#: sickbeard/webserve.py:5215 msgid "Subtitles" msgstr "Undertexter" -#: sickbeard/webserve.py:3631 +#: sickbeard/webserve.py:3630 msgid "The following actions were queued" msgstr "Följande åtgärder köades" -#: sickbeard/webserve.py:3651 -msgid "For best results please set the Download Station alias as" -msgstr "För bästa resultat vänligen ange Download Station alias som" - -#: sickbeard/webserve.py:3652 -msgid "You can check this setting in the Synology DSM" -msgstr "Du kan kontrollera inställningen i Synology DSM" - -#: sickbeard/webserve.py:3652 sickbeard/webserve.py:3654 -msgid "Control Panel" -msgstr "Kontrollpanel" - -#: sickbeard/webserve.py:3652 -msgid "Application Portal" -msgstr "Applikationsportal" - -#: sickbeard/webserve.py:3653 -msgid "Make sure you allow DSM to be embedded with iFrames too in" -msgstr "Kontrollera att du tillåter DSM att integreras med iFrames också i" - -#: sickbeard/webserve.py:3654 -msgid "DSM Settings" -msgstr "DSM-inställningar" - -#: sickbeard/webserve.py:3654 -msgid "Security" -msgstr "Säkerhet" - -#: gui/slick/views/layouts/main.mako:167 sickbeard/webserve.py:3662 -msgid "Manage Torrents" -msgstr "Hantera Torrents" - -#: gui/slick/views/layouts/main.mako:170 sickbeard/webserve.py:3683 +#: gui/slick/views/layouts/main.mako:170 sickbeard/webserve.py:3654 msgid "Failed Downloads" msgstr "Misslyckade nedladdningar" -#: gui/slick/views/layouts/main.mako:155 sickbeard/webserve.py:3701 +#: gui/slick/views/layouts/main.mako:155 sickbeard/webserve.py:3672 msgid "Manage Searches" msgstr "Hantera sökningar" -#: sickbeard/webserve.py:3709 +#: sickbeard/webserve.py:3680 msgid "Backlog search started" msgstr "Backlog sök startad" -#: sickbeard/webserve.py:3719 +#: sickbeard/webserve.py:3690 msgid "Daily search started" msgstr "Daglig sökning startades" -#: sickbeard/webserve.py:3728 +#: sickbeard/webserve.py:3699 msgid "Find propers search started" msgstr "Hitta Proper-sök startad" -#: sickbeard/webserve.py:3737 +#: sickbeard/webserve.py:3708 msgid "Subtitle search started" msgstr "Untertextsökning startad" -#: sickbeard/webserve.py:3801 +#: sickbeard/webserve.py:3772 msgid "Remove Selected" msgstr "Ta bort markerad" -#: sickbeard/webserve.py:3802 +#: sickbeard/webserve.py:3773 msgid "Clear History" msgstr "Rensa historik" -#: sickbeard/webserve.py:3803 +#: sickbeard/webserve.py:3774 msgid "Trim History" msgstr "Trimma historia" -#: sickbeard/webserve.py:3823 +#: sickbeard/webserve.py:3794 msgid "Selected history entries removed" msgstr "" -#: sickbeard/webserve.py:3830 +#: sickbeard/webserve.py:3801 msgid "History cleared" msgstr "Historik rensad" -#: sickbeard/webserve.py:3837 +#: sickbeard/webserve.py:3808 msgid "Removed history entries older than 30 days" msgstr "Tog bort historik äldre än 30 dagar" -#: gui/slick/views/layouts/main.mako:185 sickbeard/webserve.py:3850 +#: gui/slick/views/layouts/main.mako:185 sickbeard/webserve.py:3821 msgid "General" msgstr "Allmänt" -#: sickbeard/webserve.py:3851 sickbeard/webserve.py:4143 +#: sickbeard/webserve.py:3822 sickbeard/webserve.py:4114 msgid "Backup/Restore" msgstr "Backup / Återställ" -#: gui/slick/views/layouts/main.mako:187 sickbeard/webserve.py:3852 -#: sickbeard/webserve.py:4206 +#: gui/slick/views/layouts/main.mako:187 sickbeard/webserve.py:3823 +#: sickbeard/webserve.py:4177 msgid "Search Settings" msgstr "Sökinställningar" -#: gui/slick/views/layouts/main.mako:188 sickbeard/webserve.py:3853 -#: sickbeard/webserve.py:4518 +#: gui/slick/views/layouts/main.mako:188 sickbeard/webserve.py:3824 +#: sickbeard/webserve.py:4489 msgid "Search Providers" msgstr "Sökleverantörer" -#: gui/slick/views/layouts/main.mako:189 sickbeard/webserve.py:3854 +#: gui/slick/views/layouts/main.mako:189 sickbeard/webserve.py:3825 msgid "Subtitles Settings" msgstr "Undertextinställningar" -#: gui/slick/views/layouts/main.mako:191 sickbeard/webserve.py:3856 -#: sickbeard/webserve.py:4964 +#: gui/slick/views/layouts/main.mako:191 sickbeard/webserve.py:3827 +#: sickbeard/webserve.py:4935 msgid "Notifications" msgstr "Notifikationer" @@ -1240,142 +1237,142 @@ msgstr "Notifikationer" #: gui/slick/views/home.mako:35 gui/slick/views/inc_addShowOptions.mako:79 #: gui/slick/views/inc_home_showList.mako:179 gui/slick/views/layouts/main.mako:192 #: gui/slick/views/manage.mako:44 gui/slick/views/manage_massEdit.mako:202 -#: sickbeard/webserve.py:3857 sickbeard/webserve.py:5309 +#: sickbeard/webserve.py:3828 sickbeard/webserve.py:5280 msgid "Anime" msgstr "Anime" -#: sickbeard/webserve.py:3895 sickbeard/webserve.py:3896 +#: sickbeard/webserve.py:3866 sickbeard/webserve.py:3867 msgid "SickRage Configuration" msgstr "SickRage konfiguration" -#: sickbeard/webserve.py:3910 +#: sickbeard/webserve.py:3881 msgid "Config - Shares" msgstr "" -#: sickbeard/webserve.py:3910 +#: sickbeard/webserve.py:3881 msgid "Windows Shares Configuration" msgstr "" -#: sickbeard/webserve.py:3937 +#: sickbeard/webserve.py:3908 msgid "Saved Shares" msgstr "" -#: sickbeard/webserve.py:3937 +#: sickbeard/webserve.py:3908 msgid "Your Windows share settings have been saved" msgstr "" -#: sickbeard/webserve.py:3948 +#: sickbeard/webserve.py:3919 msgid "Config - General" msgstr "Inställningar - Allmäna" -#: sickbeard/webserve.py:3948 +#: sickbeard/webserve.py:3919 msgid "General Configuration" msgstr "Allmäna inställningar" -#: sickbeard/webserve.py:3988 +#: sickbeard/webserve.py:3959 msgid "Saved Defaults" msgstr "Spara som standard" -#: sickbeard/webserve.py:3988 +#: sickbeard/webserve.py:3959 msgid "Your \"add show\" defaults have been set to your current selections." msgstr "Dina standardinställningar för \"lägg till serie\" har ändrats till de aktuella urvalen." -#: sickbeard/webserve.py:4095 +#: sickbeard/webserve.py:4066 msgid "Unable to create directory {directory}, log directory not changed." msgstr "Gick inte att skapa katalog {directory}, loggkatalog oförändrad." -#: sickbeard/webserve.py:4103 +#: sickbeard/webserve.py:4074 msgid "Unable to create directory {directory}, https cert directory not changed." msgstr "Gick inte att skapa katalogen {directory}, https cert katalog oförändrad." -#: sickbeard/webserve.py:4107 +#: sickbeard/webserve.py:4078 msgid "Unable to create directory {directory}, https key directory not changed." msgstr "Gick inte att skapa katalogen {directory}, https nyckelkatalog oförändrad." -#: sickbeard/webserve.py:4126 sickbeard/webserve.py:4324 sickbeard/webserve.py:4456 -#: sickbeard/webserve.py:5227 +#: sickbeard/webserve.py:4097 sickbeard/webserve.py:4295 sickbeard/webserve.py:4427 +#: sickbeard/webserve.py:5198 msgid "Error(s) Saving Configuration" msgstr "Fel när konfigurationen sparades" -#: sickbeard/webserve.py:4129 sickbeard/webserve.py:4327 sickbeard/webserve.py:4458 -#: sickbeard/webserve.py:4950 sickbeard/webserve.py:5230 sickbeard/webserve.py:5294 -#: sickbeard/webserve.py:5323 +#: sickbeard/webserve.py:4100 sickbeard/webserve.py:4298 sickbeard/webserve.py:4429 +#: sickbeard/webserve.py:4921 sickbeard/webserve.py:5201 sickbeard/webserve.py:5265 +#: sickbeard/webserve.py:5294 msgid "Configuration Saved" msgstr "Konfigurationen sparad" -#: sickbeard/webserve.py:4142 +#: sickbeard/webserve.py:4113 msgid "Config - Backup/Restore" msgstr "Inställning - Backup/Återställ" -#: sickbeard/webserve.py:4205 +#: sickbeard/webserve.py:4176 msgid "Config - Episode Search" msgstr "Inställning - Episod Sök" -#: sickbeard/webserve.py:4340 +#: sickbeard/webserve.py:4311 msgid "Config - Post Processing" msgstr "Inställning - efterbearbetning" -#: sickbeard/webserve.py:4380 +#: sickbeard/webserve.py:4351 msgid "Unpacking Not Supported, disabling unpack setting" msgstr "Uppackning stöds inte, inaktiverar uppackningsinställning" -#: sickbeard/webserve.py:4431 +#: sickbeard/webserve.py:4402 msgid "You tried saving an invalid normal naming config, not saving your naming settings" msgstr "" -#: sickbeard/webserve.py:4439 +#: sickbeard/webserve.py:4410 msgid "You tried saving an invalid anime naming config, not saving your naming settings" msgstr "Du försökte spara en ogiltig anime namngivningskonfigurering, sparar inte namngivningsinställningarna" -#: sickbeard/webserve.py:4517 +#: sickbeard/webserve.py:4488 msgid "Config - Providers" msgstr "Alternativ - Leverantör" -#: sickbeard/webserve.py:4547 +#: sickbeard/webserve.py:4518 msgid "No Provider Name specified" msgstr "Ingen sökleverantör specificerad" -#: sickbeard/webserve.py:4549 +#: sickbeard/webserve.py:4520 msgid "No Provider Url specified" msgstr "Ingen sökleverantörsadress specificerad" -#: sickbeard/webserve.py:4551 +#: sickbeard/webserve.py:4522 msgid "No Provider Api key specified" msgstr "Ingen sökleverantör Api-nyckel specificerad" -#: sickbeard/webserve.py:4963 +#: sickbeard/webserve.py:4934 msgid "Config - Notifications" msgstr "Alternativ - Notifikationer" -#: sickbeard/webserve.py:5243 +#: sickbeard/webserve.py:5214 msgid "Config - Subtitles" msgstr "Alternativ - Undertexter" -#: sickbeard/webserve.py:5308 +#: sickbeard/webserve.py:5279 msgid "Config - Anime" msgstr "Inställningar - Anime" -#: sickbeard/webserve.py:5336 +#: sickbeard/webserve.py:5307 msgid "Clear Errors" msgstr "Rensa fel" -#: sickbeard/webserve.py:5342 +#: sickbeard/webserve.py:5313 msgid "Clear Warnings" msgstr "Rensa varningar" -#: sickbeard/webserve.py:5348 +#: sickbeard/webserve.py:5319 msgid "Submit Errors" msgstr "Skicka in fel" -#: sickbeard/webserve.py:5363 +#: sickbeard/webserve.py:5334 msgid "Logs & Errors" msgstr "Loggar & Fel" -#: sickbeard/webserve.py:5388 +#: sickbeard/webserve.py:5359 msgid "Log File" msgstr "Loggfil" -#: sickbeard/webserve.py:5388 +#: sickbeard/webserve.py:5359 msgid "Logs" msgstr "Loggar" @@ -1383,30 +1380,166 @@ msgstr "Loggar" msgid "This is a test notification from SickRage" msgstr "Detta är en test-notifikation från SickRage" -#: gui/slick/js/core.js:481 gui/slick/js/core.js:502 gui/slick/js/core.js:524 -#: gui/slick/js/core.js:548 gui/slick/js/core.js:573 gui/slick/js/core.js:596 -#: gui/slick/js/core.js:625 gui/slick/js/core.js:645 gui/slick/js/core.js:690 -#: gui/slick/js/core.js:769 gui/slick/js/core.js:829 gui/slick/js/core.js:849 -#: gui/slick/js/core.js:879 gui/slick/js/core.js:909 gui/slick/js/core.js:969 -#: gui/slick/js/core.js:1046 gui/slick/js/core.js:1066 gui/slick/js/core.js:1085 +#: gui/slick/js/browser.js:6 +msgid "Choose Directory" +msgstr "" + +#: gui/slick/js/core.js:443 +msgid "Select log file folder location" +msgstr "" + +#: gui/slick/js/core.js:445 +msgid "Select CSS file" +msgstr "" + +#: gui/slick/js/core.js:469 +msgid "Select backup folder to save to" +msgstr "" + +#: gui/slick/js/core.js:470 +msgid "Select backup files to restore" +msgstr "" + +#: gui/slick/js/core.js:479 gui/slick/js/core.js:500 gui/slick/js/core.js:522 +#: gui/slick/js/core.js:546 gui/slick/js/core.js:571 gui/slick/js/core.js:594 +#: gui/slick/js/core.js:623 gui/slick/js/core.js:643 gui/slick/js/core.js:688 +#: gui/slick/js/core.js:767 gui/slick/js/core.js:827 gui/slick/js/core.js:847 +#: gui/slick/js/core.js:877 gui/slick/js/core.js:907 gui/slick/js/core.js:967 +#: gui/slick/js/core.js:1044 gui/slick/js/core.js:1064 gui/slick/js/core.js:1083 msgid "Please fill out the necessary fields above." msgstr "" -#: gui/slick/js/core.js:1328 gui/slick/js/core.js:1378 gui/slick/js/core.js:1427 -#: gui/slick/js/core.js:1493 +#: gui/slick/js/core.js:680 +msgid "<b>Step 1:</b> Confirm Authorization" +msgstr "" + +#: gui/slick/js/core.js:977 +msgid "Check blacklist name; the value needs to be a trakt slug" +msgstr "" + +#: gui/slick/js/core.js:1022 +msgid "You must provide a recipient email address!" +msgstr "" + +#: gui/slick/js/core.js:1107 +msgid "You didn't supply a Pushbullet api key" +msgstr "" + +#: gui/slick/js/core.js:1133 gui/slick/js/core.js:1162 +msgid "Don't forget to save your new pushbullet settings." +msgstr "" + +#: gui/slick/js/core.js:1262 +msgid "Select TV Download Directory" +msgstr "" + +#: gui/slick/js/core.js:1263 +msgid "Select Unpack Directory" +msgstr "" + +#: gui/slick/js/core.js:1326 gui/slick/js/core.js:1376 gui/slick/js/core.js:1425 +#: gui/slick/js/core.js:1491 msgid "This pattern is invalid." msgstr "" -#: gui/slick/js/core.js:1336 gui/slick/js/core.js:1386 gui/slick/js/core.js:1435 -#: gui/slick/js/core.js:1501 +#: gui/slick/js/core.js:1334 gui/slick/js/core.js:1384 gui/slick/js/core.js:1433 +#: gui/slick/js/core.js:1499 msgid "This pattern would be invalid without the folders, using it will force \"Season Folders\" on for all shows." msgstr "" -#: gui/slick/js/core.js:1344 gui/slick/js/core.js:1394 gui/slick/js/core.js:1443 -#: gui/slick/js/core.js:1509 +#: gui/slick/js/core.js:1342 gui/slick/js/core.js:1392 gui/slick/js/core.js:1441 +#: gui/slick/js/core.js:1507 msgid "This pattern is valid." msgstr "" +#: gui/slick/js/core.js:1818 +msgid "Select .nzb black hole/watch location" +msgstr "" + +#: gui/slick/js/core.js:1819 +msgid "Select .torrent black hole/watch location" +msgstr "" + +#: gui/slick/js/core.js:1820 +msgid "Select .torrent download location" +msgstr "" + +#: gui/slick/js/core.js:1900 +msgid "Minimum seeding time is" +msgstr "" + +#: gui/slick/js/core.js:1902 +msgid "URL to your uTorrent client (e.g. http://localhost:8000)" +msgstr "" + +#: gui/slick/js/core.js:1905 +msgid "Stop seeding when inactive for" +msgstr "" + +#: gui/slick/js/core.js:1911 +msgid "URL to your Transmission client (e.g. http://localhost:9091)" +msgstr "" + +#: gui/slick/js/core.js:1921 +msgid "URL to your Deluge client (e.g. http://localhost:8112)" +msgstr "" + +#: gui/slick/js/core.js:1930 +msgid "IP or Hostname of your Deluge Daemon (e.g. scgi://localhost:58846)" +msgstr "" + +#: gui/slick/js/core.js:1937 +msgid "URL to your Synology DS client (e.g. http://localhost:5000)" +msgstr "" + +#: gui/slick/js/core.js:1941 +msgid "URL to your rTorrent client (e.g. scgi://localhost:5000 <br> or https://localhost/rutorrent/plugins/httprpc/action.php)" +msgstr "" + +#: gui/slick/js/core.js:1952 +msgid "URL to your qBittorrent client (e.g. http://localhost:8080)" +msgstr "" + +#: gui/slick/js/core.js:1962 +msgid "URL to your MLDonkey (e.g. http://localhost:4080)" +msgstr "" + +#: gui/slick/js/core.js:1974 +msgid "URL to your putio client (e.g. http://localhost:8080)" +msgstr "" + +#: gui/slick/js/core.js:1975 +msgid "<a herf=\"https://app.put.io/oauth/apps/new\" target=\"_blank\"> Create a new OAuth app for put.io</a>" +msgstr "" + +#: gui/slick/js/core.js:1977 +msgid "Put.io Parent Folder" +msgstr "" + +#: gui/slick/js/core.js:1978 +msgid "Put.io OAuth Token" +msgstr "" + +#: gui/slick/js/core.js:3383 gui/slick/views/displayShow.mako:410 +msgid "Show Episodes" +msgstr "Serieepisoder" + +#: gui/slick/js/core.js:3388 gui/slick/views/displayShow.mako:408 +msgid "Hide Episodes" +msgstr "" + +#: gui/slick/js/core.js:3396 +msgid "Select Show Location" +msgstr "" + +#: gui/slick/js/core.js:3460 +msgid "Select Unprocessed Episode Folder" +msgstr "" + +#: gui/slick/js/core.js:3790 +msgid "DELETED" +msgstr "" + #: gui/slick/js/core.js:4082 msgid "Resume updating the log on this page." msgstr "" @@ -1415,6 +1548,26 @@ msgstr "" msgid "Pause updating the log on this page." msgstr "" +#: gui/slick/js/core.js:4323 +msgid "searching {searchingFor}..." +msgstr "" + +#: gui/slick/js/core.js:4334 +msgid "search timed out, try again or try another indexer" +msgstr "" + +#: gui/slick/js/core.js:4503 +msgid "loading folders..." +msgstr "" + +#: gui/slick/js/parsers.js:7 gui/slick/js/parsers.js:8 +#: gui/slick/js/plotTooltip.js:6 gui/slick/js/sceneExceptionsTooltip.js:6 +#: gui/slick/views/inc_home_showList.mako:209 +#: gui/slick/views/inc_home_showList.mako:215 +#: gui/slick/views/inc_home_showList.mako:231 +msgid "Loading..." +msgstr "Laddar …..." + #: gui/slick/views/404.mako:5 msgid "You have reached this page by accident, please check the url." msgstr "Du har nått denna sida av en slump, vänligen kontrollera URL:en." @@ -5715,14 +5868,6 @@ msgstr "Ändra valda episoder till" msgid "Select Columns" msgstr "Markera kolumner" -#: gui/slick/views/displayShow.mako:408 -msgid "Hide Episodes" -msgstr "" - -#: gui/slick/views/displayShow.mako:410 -msgid "Show Episodes" -msgstr "Serieepisoder" - #: gui/slick/views/displayShow.mako:424 msgid "NFO" msgstr "NFO" @@ -6241,12 +6386,6 @@ msgstr "Aktiv" msgid "loading" msgstr "laddar" -#: gui/slick/views/inc_home_showList.mako:209 -#: gui/slick/views/inc_home_showList.mako:215 -#: gui/slick/views/inc_home_showList.mako:231 -msgid "Loading..." -msgstr "Laddar …..." - #: gui/slick/views/inc_qualityChooser.mako:31 msgid "<p><b><u>Preferred</u></b> qualities will replace those in <b><u>allowed</u></b>, even if they are lower.</p>" msgstr "<p><b><u>Önskad</u></b> kvaliteter kommer att ersätta de i <b><u>tillåtna</u></b>, även om de är lägre.</p>" @@ -6784,6 +6923,10 @@ msgstr "Uppdatera KODI" msgid "Update Emby" msgstr "Uppdatera Emby" +#: gui/slick/views/layouts/main.mako:167 +msgid "Manage Torrents" +msgstr "Hantera Torrents" + #: gui/slick/views/layouts/main.mako:173 msgid "Missed Subtitle Management" msgstr "Hantera saknade undertext" diff --git a/locale/tr_TR/LC_MESSAGES/messages.json b/locale/tr_TR/LC_MESSAGES/messages.json index 8a0441f37c920710faa314a009618bc12d6777c0..d9188f262ccb9fb8b8fbcaeb789494999b5a8b4a 100644 --- a/locale/tr_TR/LC_MESSAGES/messages.json +++ b/locale/tr_TR/LC_MESSAGES/messages.json @@ -1 +1 @@ -{"messages":{"domain":"messages","locale_data":{"messages":{"100":[null,"100"],"250":[null,"250"],"500":[null,"500"],"":{"domain":"messages","plural_forms":"nplurals=2; plural=(n != 1);","lang":"tr_TR"},"Drama":[null,"Drama"],"Mystery":[null,"Gizem"],"Science-Fiction":[null,"Bilim-kurgu"],"Crime":[null,"Suç"],"Action":[null,"Eylem"],"Comedy":[null,"Komedi"],"Thriller":[null,"Gerilim"],"Animation":[null,"Animasyon"],"Family":[null,"Aile"],"Fantasy":[null,"Fantezi"],"Adventure":[null,"Macera"],"Horror":[null,"Korku"],"Film-Noir":[null,"Kara Film"],"Sci-Fi":[null,"Bilim-kurgu"],"Romance":[null,"Romantizm"],"Sport":[null,"Spor"],"War":[null,"Savaş"],"Biography":[null,"Biyografi"],"History":[null,"Geçmiş"],"Music":[null,"Müzik"],"Western":[null,"Batılı"],"News":[null,"Haberler"],"Sitcom":[null,"Durum komedisi"],"Reality-TV":[null,"Gerçeklik-TV"],"Documentary":[null,"Belgesel"],"Game-Show":[null,"Yarışma"],"Musical":[null,"Müzikal"],"Talk-Show":[null,"Talk-Show"],"Started Download":[null,"İndirme Başladı"],"Download Finished":[null,"İndirme Tamamlandı"],"Subtitle Download Finished":[null,"Altyazı indirildi"],"SickRage Updated":[null,"SickRage Güncellendi"],"SickRage Updated To Commit#: ":[null,"SickRage: # Commit Güncellendi"],"SickRage new login":[null,"SickRage Yeni Kullanıcı Girişi"],"New login from IP: {0}. http://geomaplookup.net/?ip={0}":[null,"Yeni Kullanıcı Girişi IP: {0}. http://geomaplookup.net/?ip={0}"],"Repeat":[null,"Tekrar"],"Repeat (Separated)":[null,"Tekrar (Ayrılmış)"],"Extend":[null,""],"Extend (Limited)":[null,""],"Extend (Limited, E-prefixed)":[null,""],"Downloaded":[null,"İndirildi"],"Snatched":[null,"Yakalandı"],"Snatched (Proper)":[null,"Yakalandı (Proper)"],"Failed":[null,"Başarısız"],"Snatched (Best)":[null,"Yakalandı(En İyi)"],"Archived":[null,"Arşivlendi"],"Unknown":[null,"Bilinmiyor"],"Unaired":[null,"Yayınlanmadı"],"Skipped":[null,"Atlandı"],"Wanted":[null,"Aranan"],"Ignored":[null,"Yoksayıldı"],"Subtitled":[null,"Altyazılı"],"<No Filter>":[null,"<Filtre kullanma>"],"Daily Searcher":[null,"Günlük Arama"],"Backlog":[null,"Biriktirme Listesi"],"Show Updater":[null,"Dizi Güncelleyici"],"Check Version":[null,"Sürüm kontrol"],"Show Queue":[null,"Dizi Kuyruğu"],"Search Queue (All)":[null,"Dizi Kuyruğu (Tümü)"],"Search Queue (Daily Searcher)":[null,"Arama Kuyruğu (Günlük Arama)"],"Search Queue (Backlog)":[null,"Arama Kuyruğu (Arka Biriktirici)"],"Search Queue (Manual)":[null,"Arama Günlüğü (El ile)"],"Search Queue (Retry/Failed)":[null,""],"Search Queue (RSS)":[null,""],"Find Propers":[null,""],"Postprocessor":[null,""],"Find Subtitles":[null,"Alt yazıları Bul"],"Trakt Checker":[null,""],"Event":[null,"Etkinlik"],"Error":[null,"Hata"],"Tornado":[null,"Kasırga"],"Thread":[null,"Konu"],"Main":[null,"Ana"],"Loading":[null,""],"New update found for SickRage, starting auto-updater":[null,"SickRage için yeni güncelleme bulundu, otomatik güncelleştirme başlatılıyor"],"Update was successful":[null,"Güncelleştirme başarıyla gerçekleştirildi"],"Update failed!":[null,"Güncelleştirme başarısız!"],"Backup":[null,"Yedekle"],"Config backup in progress...":[null,"Yapılandırma yedeklemesi devam ediyor..."],"Config backup successful, updating...":[null,"Yapılandırma yedekleme başarılı, güncelleştiriliyor..."],"Config backup failed, aborting update":[null,"Yapılandırma yedeklemesi başarısız, güncelleme durduruluyor"],"No update needed":[null,"Hiçbir güncelleme gerekmiyor"],"Mako Error":[null,"Mako hatası"],"Oops":[null,"Oops"],"Wrong API key used":[null,"Yanlış API anahtarı kullanıldı"],"Login":[null,"Giriş"],"API Key not generated":[null,"API anahtarı üretilmedi"],"API Builder":[null,"API Kurucu"],"Schedule":[null,"Zamanlama"],"Test 1":[null,"Deneme 1"],"This is test number 1":[null,"1 numaralı denemedir"],"Test 2":[null,"Deneme 2"],"This is test number 2":[null,"2 numaralı denemedir"],"You're using the {branch} branch. Please use 'master' unless specifically asked":[null,""],"Invalid show parameters":[null,"Geçersiz dizi değişkenleri"],"Invalid parameters":[null,""],"Episode couldn't be retrieved":[null,"Bölüm getirilemedi"],"Home":[null,"Ana Sayfa"],"Show List":[null,"Dizi Listesi"],"Error: Unsupported Request. Send jsonp request with 'callback' variable in the query string.":[null,"Hata: Desteklenmeyen İstek. jsonp isteklerini sıralama dizesindeki 'callback' değişkeniyle gönderin."],"Success. Connected and authenticated":[null,"Başarılı. Bağlanıldı ve yetkilendirildi"],"Authentication failed. SABnzbd expects":[null,"Yetkilendirme başarısız. SABnzbd beklentisi"],"as authentication method":[null,"yetkilendirme yöntemi olarak"],"Unable to connect to host":[null,"Sunucuya bağlanılamadı"],"SMS sent successfully":[null,"SMS gönderimi başarılı"],"Problem sending SMS: {message}":[null,"Problemi SMS ile ilet: {message}"],"Telegram notification succeeded. Check your Telegram clients to make sure it worked":[null,"Telegram bildirimi başarılı. Çalıştığından emin olmak için aygıtınızı kontrol edin"],"Error sending Telegram notification: {message}":[null,"Telgram bildirim gönderme hatası: {message}"],"join notification succeeded. Check your join clients to make sure it worked":[null,""],"Error sending join notification: {message}":[null,"Katılım bildirimi gönderme hatası:{message}"]," with password":[null," şifre ile"],"Registered and Tested growl successfully {growl_host}":[null,"Growl kaydı ve testi başarılı {growl_host}"],"Registration and Testing of growl failed {growl_host}":[null,"Growl kaydı ve testi başarısız {growl_host}"],"Test prowl notice sent successfully":[null,"Deneme amaçlı prowl bildirim gönderimi başarılı"],"Test prowl notice failed":[null,"Deneme amaçlı prowl bildirim gönderimi başarısız"],"Boxcar2 notification succeeded. Check your Boxcar2 clients to make sure it worked":[null,""],"Error sending Boxcar2 notification":[null,"Boxcar2 bildirim gönderme hatası"],"Pushover notification succeeded. Check your Pushover clients to make sure it worked":[null,""],"Error sending Pushover notification":[null,"Pushover bildirim gönderimi başarısız"],"Key verification successful":[null,"Anahtar doğrulaması başarılı"],"Unable to verify key":[null,"Anahtar doğrulanamadı"],"Tweet successful, check your twitter to make sure it worked":[null,"Tweet başarılı, çalıştığına emin olmak için twitter'ınıza bakın"],"Error sending tweet":[null,"Tweet gönderimi başarısız"],"Please enter a valid account sid":[null,""],"Please enter a valid auth token":[null,""],"Please enter a valid phone sid":[null,""],"Please format the phone number as \"+1-###-###-####\"":[null,""],"Authorization successful and number ownership verified":[null,""],"Error sending sms":[null,""],"Slack message successful":[null,""],"Slack message failed":[null,""],"Discord message successful":[null,""],"Discord message failed":[null,""],"Test KODI notice sent successfully to {kodi_host}":[null,"KODI bildirisi gönderimi başarılı {kodi_host}"],"Test KODI notice failed to {kodi_host}":[null,"Test KODI bildirimi {kodi_host} için başarısız oldu"],"Successful test notice sent to Plex Home Theater ... {plex_clients}":[null,"Plex ev sineması için gönderilen test bildirimi başarılı ... {plex_clients}"],"Test failed for Plex Home Theater ... {plex_clients}":[null,"Test Plex ev sineması için başarısız oldu... {plex_clients}"],"Tested Plex Home Theater(s)":[null,"Test edilmiş Plex Ev Sinemaları"],"Successful test of Plex Media Server(s) ... {plex_servers}":[null,"Plex ortam Sunucuları testi başarılı ... {plex_servers}"],"Test failed, No Plex Media Server host specified":[null,"Test başarısız, hiçbir Plex Ortam Sunucusu adresi belirtilmemiş"],"Test failed for Plex Media Server(s) ... {plex_servers}":[null,""],"Tested Plex Media Server host(s)":[null,""],"Tried sending desktop notification via libnotify":[null,""],"Test notice sent successfully to {emby_host}":[null,""],"Test notice failed to {emby_host}":[null,""],"Successfully started the scan update":[null,"Tarama güncelleştirmesi başarıyla başlatıldı"],"Test failed to start the scan update":[null,"Tarama güncelleştirme testi başarısız"],"Test notice sent successfully to {nmj2_host}":[null,"Test bildirimi gönderimi başarılı {nmj2_host}"],"Test notice failed to {nmj2_host}":[null,""],"Trakt Authorized":[null,"Trakt Yetkilendirildi"],"Trakt Not Authorized!":[null,"Trakt Yetkilendirilmedi!"],"Test email sent successfully! Check inbox.":[null,""],"ERROR: {last_error}":[null,"HATA: {last_error}"],"Test NMA notice sent successfully":[null,""],"Test NMA notice failed":[null,""],"Pushalot notification succeeded. Check your Pushalot clients to make sure it worked":[null,""],"Error sending Pushalot notification":[null,""],"Pushbullet notification succeeded. Check your device to make sure it worked":[null,"Pushbullet bildirimi başarılı. Çalıştığından emin olmak için aygıtınızı kontrol edin"],"Error sending Pushbullet notification":[null,"Pushbullet gönderimi başarısız"],"Status":[null,"Durum"],"Restarting SickRage":[null,"SickRage Yeniden Başlatılıyor"],"Update Failed":[null,"Güncelleştirme Başarısız"],"Update wasn't successful, not restarting. Check your log for more information.":[null,"Güncelleştirme başarısız, yeniden başlatılamıyor. Ayrıntılı bilgi için günlüğü kontrol edin."],"Checking out branch":[null,""],"Already on branch":[null,""],"Invalid show ID: {show}":[null,"Geçersiz dizi kimliği: {show}"],"Show not in show list":[null,"Dizi, dizi listesinde değil"],"Edit":[null,"Düzenle"],"This show is in the process of being downloaded - the info below is incomplete.":[null,"Bu dizi indirilme aşamasında - aşağıdaki bilgiler tam değil."],"The information on this page is in the process of being updated.":[null,"Bu sayfadaki bilgi güncelleştirme aşamasında."],"The episodes below are currently being refreshed from disk":[null,"Aşağıdaki bölümler şu anda diskten alınarak yenileniyor"],"Currently downloading subtitles for this show":[null,"Şu anda bu dizi için alt yazılar indiriliyor"],"This show is queued to be refreshed.":[null,"Bu dizi yenileme için kuyruğa alınmış."],"This show is queued and awaiting an update.":[null,"Bu dizi kuyruğa alınmış ve bir güncelleme için bekletiliyor."],"This show is queued and awaiting subtitles download.":[null,"Bu dizi kuyruğa alınmış ve alt yazı indirilmesi için bekletiliyor."],"Resume":[null,"Devam et"],"Pause":[null,"Duraksat"],"Remove":[null,"Kaldır"],"Re-scan files":[null,"Dosyaları tekrar tara"],"Force Full Update":[null,"Tam Güncellemeye Zorla"],"Update show in KODI":[null,"KODI'de diziyi güncelle"],"Update show in Emby":[null,"Emby'de diziyi güncelle"],"Hide specials":[null,""],"Show specials":[null,""],"Preview Rename":[null,"Yeniden Adlandırmayı Özizle"],"Download Subtitles":[null,"Alt Yazıları İndir"],"No scene exceptions":[null,"Sahne istisnası yok"],"Invalid show ID":[null,"Geçersiz dizi kimliği"],"Unable to find the specified show":[null,"Belirtilen dizi bulunamadı"],"Unable to retreive Fansub Groups from AniDB.":[null,""],"Edit Show":[null,"Diziyi Düzenle"],"Unable to refresh this show: {error}":[null,"Bu dizi güncelleştirilemedi: {error}"],"New location <tt>{location}</tt> does not exist":[null,"Yeni <tt>{location}</tt> konumu mevcut değil"],"Unable to update show: {error}":[null,"Dizi güncelleştirilemedi: {error}"],"Unable to force an update on scene exceptions of the show.":[null,""],"Unable to force an update on scene numbering of the show.":[null,""],"{num_errors:d} error{plural} while saving changes:":[null,"Değişiklikler kaydedilirken {num_errors:d} hata{plural}:"],"{show_name} has been {paused_resumed}":[null,"{show_name} isimli dizi {paused_resumed}"],"resumed":[null,"devam ettirildi"],"paused":[null,"duraksatıldı"],"{show_name} has been {deleted_trashed} {was_deleted}":[null,"{show_name} isimli dizi {deleted_trashed} {was_deleted}"],"deleted":[null,"silindi"],"trashed":[null,"çöpe gönderildi"],"(media untouched)":[null,"(ortama dokunulmadı)"],"(with all related media)":[null,"(tüm ortamla)"],"Unable to refresh this show.":[null,"Bu dizi yenilenemedi."],"Unable to update this show.":[null,"Bu dizi güncellenemedi."],"Library update command sent to KODI host(s)): {kodi_hosts}":[null,""],"Unable to contact one or more KODI host(s)): {kodi_hosts}":[null,""],"Library update command sent to Plex Media Server host: {plex_server}":[null,""],"Unable to contact Plex Media Server host: {plex_server}":[null,""],"Library update command sent to Emby host: {emby_host}":[null,""],"Unable to contact Emby host: {emby_host}":[null,""],"You must specify a show and at least one episode":[null,"Bir dizi ve en az bir bölüm belirtmelisiniz"],"Invalid status":[null,"Geçersiz durum"],"Backlog was automatically started for the following seasons of <b>{show_name}</b>":[null,""],"Season":[null,"Sezon"],"Backlog started":[null,"Biriktirme listesi başlatıldı"],"Retrying Search was automatically started for the following season of <b>{show_name}</b>":[null,""],"Retry Search started":[null,"Tekrar arama başlatıldı"],"You must specify a show":[null,"Bir dizi belirtmelisiniz"],"Can't rename episodes when the show dir is missing.":[null,"Dizi klasörü kayıpken bölümler yeniden adlandırılmaz."],"New subtitles downloaded: {new_subtitle_languages}":[null,"İndirilen yeni altyazılar: {new_subtitle_languages}"],"No subtitles downloaded":[null,"Hiçbir altyazı indirilmedi"],"IRC":[null,"IRC"],"Could not load news from the repo. [Click here for news.md])({news_url})":[null,""],"The was a problem connecting to github, please refresh and try again":[null,""],"Could not load changes from the repo. [Click here for CHANGES.md]({changes_url})":[null,""],"Changelog":[null,"Değişim Günlüğü"],"Post Processing":[null,"Son İşlem"],"Add Shows":[null,"Dizi Ekle"],"No folders selected.":[null,"Hiçbir klasör seçilmedi."],"New Show":[null,"Yeni Dizi"],"Trending Shows":[null,"Yükselişteki Diziler"],"Popular Shows":[null,"Popüler Diziler"],"Most Anticipated Shows":[null,"En Çok Beklenen Diziler"],"Most Collected Shows":[null,""],"Most Watched Shows":[null,""],"Most Played Shows":[null,""],"Recommended Shows":[null,""],"New Shows":[null,"Yeni Diziler"],"Season Premieres":[null,"Sezon Prömiyerleri"],"Existing Show":[null,"Varolan Diziler"],"No root directories setup, please go back and add one.":[null,"Hiçbir kök dizin seçilmedi, lütfen geri dönün ve bir tane ekleyin."],"Show added":[null,"Dizi eklendi"],"Adding the specified show {show_name}":[null,"{show_name} isimli dizi ekleniyor"],"Missing params, no Indexer ID or folder: {show_to_add} and {root_dir}/{show_path}":[null,""],"Unknown error. Unable to add show due to problem with show selection.":[null,"Bilinmeyen hata. Dizi seçiminden kaynaklanan bir sorun nedeniyle diziniz eklenemiyor."],"Unable to add show":[null,"Dizi eklenemedi"],"Folder {show_dir} exists already":[null,"{show_dir} klasörü zaten mevcut"],"Unable to create the folder {show_dir}, can't add the show":[null,"{show_dir} klasörü oluşturulamadı, dizi eklenemedi"],"Adding the specified show into {show_dir}":[null,"Belirtilen dizi {show_dir} içine ekleniyor"],"Shows Added":[null,"Eklenmiş Diziler"],"Automatically added {num_shows} from their existing metadata files":[null,""],"Mass Update":[null,"Toplu Güncelleme"],"Episode Overview":[null,"Bölüme Genel Bakış"],"Missing Subtitles":[null,"Eksik Altyazılar"],"Backlog Overview":[null,"Sonradan İndirmeye Genel Bakış"],"Mass Edit":[null,"Toplu Düzenleme"],"Unable to update show: {excption_format}":[null,""],"Unable to refresh show {show_name}: {excption_format}":[null,""],"Errors encountered":[null,"Hatalarla karşılaşıldı"],"Updates":[null,"Güncelleştirmeler"],"Refreshes":[null,"Yenilemeler"],"Renames":[null,"Yeniden adlandırılanlar"],"Subtitles":[null,"Alt yazılar"],"The following actions were queued":[null,"Takip eden işlemler sıraya alındı"],"For best results please set the Download Station alias as":[null,"En iyi sonuçlar için lütfen Download İstasyonu takma adını bu şekilde ayarla"],"You can check this setting in the Synology DSM":[null,"Synology DSM'de bu ayarı kontrol edebilirsiniz"],"Control Panel":[null,"Kontrol Paneli"],"Application Portal":[null,"Uygulama Merkezi"],"Make sure you allow DSM to be embedded with iFrames too in":[null,""],"DSM Settings":[null,"DSM Ayarları"],"Security":[null,"Güvenlik"],"Manage Torrents":[null,"Torrentleri Yönet"],"Failed Downloads":[null,"Başarısız İndirmeler"],"Manage Searches":[null,"Aramaları Yönet"],"Backlog search started":[null,"Biriktirme listesi araması başladı"],"Daily search started":[null,"Günlük arama başladı"],"Find propers search started":[null,""],"Subtitle search started":[null,"Alt yazı arama başladı"],"Remove Selected":[null,""],"Clear History":[null,"Geçmişi Temizle"],"Trim History":[null,"Geçmişi Düzenle"],"Selected history entries removed":[null,""],"History cleared":[null,"Geçmiş temizlendi"],"Removed history entries older than 30 days":[null,"30 günden daha eski geçmiş girdileri kaldırıldı"],"General":[null,"Genel"],"Backup/Restore":[null,"Yedekle/Geri Yükle"],"Search Settings":[null,"Arama Ayarları"],"Search Providers":[null,"Arama Sağlayıcılar"],"Subtitles Settings":[null,"Alt Yazı Ayarları"],"Notifications":[null,"Bildirimler"],"Anime":[null,"Anime"],"SickRage Configuration":[null,"SickRage Ayarları"],"Config - Shares":[null,""],"Windows Shares Configuration":[null,""],"Saved Shares":[null,""],"Your Windows share settings have been saved":[null,""],"Config - General":[null,"Ayarlar - Genel"],"General Configuration":[null,"Genel Ayarlar"],"Saved Defaults":[null,""],"Your \"add show\" defaults have been set to your current selections.":[null,""],"Unable to create directory {directory}, log directory not changed.":[null,"{directory} isimli klasör oluşturulamadı, günlük dosyası değişmedi."],"Unable to create directory {directory}, https cert directory not changed.":[null,""],"Unable to create directory {directory}, https key directory not changed.":[null,""],"Error(s) Saving Configuration":[null,"Yapılandırma Kaydedilemedi"],"Configuration Saved":[null,"Yapılandırma Kaydedildi"],"Config - Backup/Restore":[null,"Ayarlar - Yedekle/Geri Yükle"],"Config - Episode Search":[null,"Yapılandırma - Bölüm Arama"],"Config - Post Processing":[null,"Yapılandırma - Son İşlem"],"Unpacking Not Supported, disabling unpack setting":[null,"Arşiv Açma Desteklenmiyor, arşivden çıkar seçeneği etkisizleştiriliyor"],"You tried saving an invalid normal naming config, not saving your naming settings":[null,""],"You tried saving an invalid anime naming config, not saving your naming settings":[null,""],"Config - Providers":[null,"Yapılandırma - Sağlayıcılar"],"No Provider Name specified":[null,"Hiçbir Sağlayıcı İsmi belirtilmedi"],"No Provider Url specified":[null,"Hiçbir Sağlayıcı Url'si belirtilmedi"],"No Provider Api key specified":[null,"Hiçbir Sağlayıcı Api anahtarı belirtilmedi"],"Config - Notifications":[null,"Yapılandırma - Bildirimler"],"Config - Subtitles":[null,"Yapılandırma - Altyazılar"],"Config - Anime":[null,"Yapılandırma - Anime"],"Clear Errors":[null,"Hataları Temizle"],"Clear Warnings":[null,"Uyarıları Temizle"],"Submit Errors":[null,"Hataları Bildir"],"Logs & Errors":[null,"Günlükler & Hatalar"],"Log File":[null,"Günlük Dosyası"],"Logs":[null,"Günlükler"],"This is a test notification from SickRage":[null,""],"Please fill out the necessary fields above.":[null,""],"This pattern is invalid.":[null,""],"This pattern would be invalid without the folders, using it will force \"Season Folders\" on for all shows.":[null,""],"This pattern is valid.":[null,""],"Resume updating the log on this page.":[null,""],"Pause updating the log on this page.":[null,""],"You have reached this page by accident, please check the url.":[null,"Bu sayfaya yanlışlıkla ulaştınız, lütfen adresi denetleyin."],"A mako error has occured.<br>\n If this happened during an update a simple page refresh may be the solution.<br>\n Mako errors that happen during updates may be a one time error if there were significant ui changes.":[null,""],"Show/Hide Error":[null,""],"Add New Show":[null,"Yeni TV programı ekle"],"For shows that you haven't downloaded yet, this option finds a show on theTVDB.com, creates a directory for it's episodes, and adds it to SickRage.":[null,"Henüz indirmediğiniz diziler için, bu özellik theTVDB.com üzerinden ilgili TV programını bulur, bölümleri için dizin oluşturur ve kendisini SickRage'e ekler."],"Add From Trakt Lists":[null,"Trakt listelerinden ekle"],"For shows that you haven't downloaded yet, this option lets you choose from a show from one of the Trakt lists to add to SickRage.":[null,"Henüz indirmediğiniz TV programları için, bu özellik ilgili programı Trakt listelerinin birinden seçmenizi sağlar, sonra da SickRage'e ekler."],"Add From IMDB's Popular Shows":[null,"IMDB Popüler TV Programları listesinden ekle"],"View IMDB's list of the most popular shows. This feature uses IMDB's MOVIEMeter algorithm to identify popular TV Series.":[null,"IMDB'nin en popüler TV programları listesini görün. Bu özellik IMDB'nin MOVIEMeter algoritmasını kullanarak en popüler TV programlarını belirler."],"Add Existing Shows":[null,"Var olan TV programlarını ekle"],"Use this option to add shows that already have a folder created on your hard drive. SickRage will scan your existing metadata/episodes and add the show accordingly.":[null,"Bu özelliği sabit diskinizde mevcut dizinleri olan bir TV programını eklemek için kullanın. SickRage mevcut olan metadata ve bölümleri tarayacak, ardından programı uygun bir şekilde ekleyecektir."],"Add Existing Show":[null,"Var olan TV programı ekle"],"Manage Directories":[null,"Dizinleri yönet"],"Customize Options":[null,"Kişiselleştirme seçenekleri"],"SickRage can add existing shows, using the current options, by using locally stored NFO/XML metadata to eliminate user interaction. If you would rather have SickRage prompt you to customize each show, then use the checkbox below.":[null,""],"Prompt me to set settings for each show":[null,"Dizi seçeneklerini değiştirebilmem için bana danışılsın"],"Displaying folders within these directories which aren't already added to SickRage":[null,"Bu klasörlerdeki dosyalar daha önce SickRage'e eklenmemiş"],"Submit":[null,"Gönder"],"Find a show on theTVDB":[null,"theTVDB üzerinde bir dizi bul"],"Show retrieved from existing metadata":[null,"Önceden var olan meta veriden getirilen dizi"],"All Indexers":[null,"Tüm içerik oluşturucular"],"Search":[null,"Ara"],"This will only affect the language of the retrieved metadata file contents and episode filenames.":[null,"Bu, sadece getirilen meta veri dosyası içeriği ve bölüm dosya adlarındaki dili etkiler."],"This <b>DOES NOT</b> allow SickRage to download non-english TV episodes!":[null,"Bu, SickRage'e İngilizce olmayan TV bölümlerini indirme izni <b>VERMEZ</b> !"],"Pick the parent folder":[null,"Üst klasörü seçin"],"Pre-chosen Destination Folder":[null,"Önceden Seçilmiş Hedef Klasör"],"Customize options":[null,"Seçenekleri özelleştir"],"Add Show":[null,"Dizi Ekle"],"Skip Show":[null,"Diziyi Atla"],"Sort By":[null,"Sırala"],"Name":[null,"İsim"],"Original":[null,"Özgün"],"Votes":[null,"Oylar"],"Rating":[null,"Derecelendirme"],"Rating > Votes":[null,"Derecelendirme > Oylar"],"Sort Order":[null,"Sıralama Düzeni"],"Asc":[null,"Artan"],"Desc":[null,"Azalan"],"Fetching of IMDB Data failed. Are you online?":[null,"IMBD verisi alınamadı. Genel ağa bağlı mısınız?"],"Exception":[null,"İstisna"],"Select Trakt List":[null,"Trakt Listesi Seçin"],"Most Anticipated":[null,"En Çok Beklenen"],"Trending":[null,"Yükselen"],"Popular":[null,"Popüler"],"Most Watched":[null,"En Çok İzlenen"],"Most Played":[null,"En Çok Oynatılan"],"Most Collected":[null,"En Çok Toplanan"],"Recommended":[null,"Tavsiye Edilen"],"Toggle navigation":[null,"Gezinimi Değiştir"],"Profile":[null,"Profil"],"JSONP":[null,""],"Back to SickRage":[null,"SickRage'e Geri Dön"],"Parameters":[null,"Parametreler"],"Required":[null,"Gerekli"],"Description":[null,"Açıklama"],"Type":[null,"Tür"],"Default value":[null,"Varsayılan değer"],"Allowed values":[null,"İzin verilen değerler"],"Playground":[null,"Oyun bahçesi"],"Clear":[null,"Temizle"],"Yes":[null,"Evet"],"No":[null,"Hayır"],"season":[null,"sezon"],"episode":[null,"bölüm"],"Python Version":[null,"Python Sürümü"],"SSL Version":[null,"SSL Sürümü"],"OS":[null,"OS"],"Locale":[null,"Yerel"],"User":[null,"Kullanıcı"],"Program Folder":[null,"Program Klasörü"],"Config File":[null,"Ayar Dosyası"],"Database File":[null,"Veritabanı dosyası"],"Cache Folder":[null,"Önbellek klasörü"],"Log Folder":[null,"Günlük klasörü"],"Arguments":[null,"Değişkenler"],"Web Root":[null,"Web Kök Dizini"],"Website":[null,"Web sayfası"],"Wiki":[null,"Viki"],"Source":[null,"Kaynak"],"IRC Chat":[null,"IRC sohbet"],"AnimeDB Settings":[null,"AnimeDB ayarları"],"Look & Feel":[null,"Görünüm & Hisset"],"AniDB is non-profit database of anime information that is freely open to the public":[null,"AniDB kar amacı olmayan halka açık ücretsiz anime bilgi veritabanıdır"],"Enable":[null,"Etkinleştir"],"should SickRage use data from AniDB?":[null,""],"AniDB Username":[null,"AniDB Kullanıcı adı"],"username of your AniDB account":[null,""],"AniDB Password":[null,""],"password of your AniDB account":[null,""],"AniDB MyList":[null,""],"do you want to add the PostProcessed episodes to the MyList?":[null,""],"Look and Feel":[null,"Görünüm ve Davranış"],"How should the anime functions show and behave.":[null,""],"Split show lists":[null,"Dizi listelerini ayır"],"separate anime and normal shows in groups":[null,""],"Split in tabs":[null,""],"use tabs for when splitting show lists":[null,""],"Restore":[null,"Geri Yükle"],"Backup your main database file and config.":[null,"Ana veritabanı dosyanızı ve ayarlarınızı yedekleyin."],"Select the folder you wish to save your backup file to":[null,"Yedek dosyanızı kaydetmek istediğiniz klasörü seçin"],"Restore your main database file and config.":[null,"Ana veritabanı dosyanızı ve ayarlarınızı geri yükleyin."],"Select the backup file you wish to restore":[null,"Geri yüklemek istediğiniz yedeği seçin"],"Misc":[null,"Diğer"],"Interface":[null,"Arayüz"],"Advanced Settings":[null,"Gelişmiş Ayarlar"],"Startup options. Indexer options. Log and show file locations.":[null,""],"Some options may require a manual restart to take effect.":[null,"Bazı seçeneklerin etkili kılınabilmesi için el ile yeniden başlatma gerekebilir."],"Default Indexer Language":[null,"Varsayılan Dizin Oluşturucu Dili"],"for adding shows and metadata providers":[null,"dizi ekleme ve meta veri sağlayıcıları için"],"Launch browser":[null,"Tarayıcıyı başlat"],"open the SickRage home page on startup":[null,"başlangıçta SickRage ana sayfasını aç"],"Initial page":[null,"Başlangıç sayfası"],"Shows":[null,"Diziler"],"when launching SickRage interface":[null,"SickRage arabirimi başlatılırken"],"Choose hour to update shows":[null,"Dizilerin güncelleneceği saati seçin"],"with information such as next air dates, show ended, etc. Use 15 for 3pm, 4 for 4am etc.":[null,"sonraki yayınlanma tarihleri, sonlandırılan dizi, vb. ös3 için 15, öö4 için 4 kullanın."],"note":[null,""],"minutes are randomized each time SickRage is started":[null,""],"Send to trash for actions":[null,""],"when using show \"Remove\" and delete files":[null,""],"on scheduled deletes of the oldest log files":[null,""],"selected actions use trash (recycle bin) instead of the default permanent delete":[null,""],"Log file folder location":[null,"Günlük dosyası klasörünün konumu"],"Number of Log files saved":[null,"Kaydedilmiş günlük dosyası sayısı"],"number of log files saved when rotating logs (default: 5) (REQUIRES RESTART)":[null,""],"Size of Log files saved":[null,"Kaydedilmiş günlük dosyası boyutu"],"maximum size in MB of the log file (default: 1MB) (REQUIRES RESTART)":[null,""],"Use initial indexer set to":[null,""],"as the default selection when adding new shows":[null,"yeni diziler eklenirken varsayılan seçim olarak"],"Timeout show indexer at":[null,""],"seconds of inactivity when finding new shows (default:20)":[null,""],"Show root directories":[null,"Dizi kök klasörleri"],"where the files of shows are located":[null,"dizi dosyalarının bulunduğu yer"],"Save Changes":[null,"Değişiklikleri Kaydet"],"Options for software updates.":[null,"Yazılım güncelleştirmeleri için seçenekler."],"Check software updates":[null,"Yazılım Güncelleştirmeleri denetle"],"and display notifications when updates are available. Checks are run on startup and at the frequency set below*":[null,""],"Automatically update":[null,"Otomatik olarak güncelleştir"],"fetch and install software updates. Updates are run on startup and in the background at the frequency set below*":[null,""],"Check the server every*":[null,"Sunucuyu kontrol etme sıklığı*"],"hours for software updates (default:1)":[null,"saat de bir güncelle (varsayılan:1)"],"Notify on software update":[null,"Yazılım güncelleştirmesi olduğunda bildir"],"send a message to all enabled notifiers when SickRage has been updated":[null,"sickRage güncelleştirildiğinde tüm etkinleştirilmiş bildiricilere ileti yolla"],"User Interface":[null,"Kullanıcı Arayüzü"],"Options for visual appearance.":[null,"Görünüm için seçenekler."],"Interface Language":[null,"Arayüz Dili"],"System Language":[null,"Sistem Dili"],"for appearance to take effect, save then refresh your browser":[null,"görünümün değişebilmesi için kaydedip tarayıcınızı yenileyin"],"Display theme":[null,"Görünüm teması"],"Dark":[null,"Koyu"],"Light":[null,"Hafif"],"Use a background image":[null,""],"use a custom image as background for SickRage":[null,""],"Background Path":[null,""],"Path to the background image":[null,""],"Show fanart in the background":[null,"Hayranlar tarafından hazırlanan duvar kağıtlarını göster"],"on the show summary page":[null,"dizi özet sayfasında"],"Fanart transparency":[null,"Duvar kağıdı saydamlığı"],"transparency of the fanart in the background":[null,""],"Use a custom stylesheet file":[null,""],"use a custom .css file to style SickRage (for advanced users)":[null,""],"Stylesheet File Path":[null,""],"Path to the stylesheet (.css) file":[null,""],"Show all seasons":[null,"Tüm sezonları göster"],"Sort with \"The\", \"A\", \"An\"":[null,"\"The\", \"A\", \"An\" ile sırala"],"include articles (\"The\", \"A\", \"An\") when sorting show lists":[null,"dizi listesi sıralanırken (\"The\", \"A\", \"An\") ön ekleri gösterilir"],"Missed episodes range":[null,"Kaçırılan bölüm aralığı"],"set the range in days of the missed episodes in the Schedule page":[null,""],"Display fuzzy dates":[null,"Tarihleri bulanık biçimde göster"],"move absolute dates into tooltips and display e.g. \"Last Thu\", \"On Tue\"":[null,"kesin tarihleri ipuçlarına taşı ve göster örn. \"Geçen Perş\", \"Salı Günü\""],"Trim zero padding":[null,"Sıfır doldurmayı kısalt"],"remove the leading number \"0\" shown on hour of day, and date of month":[null,"öndeki \"0\" numarasını saat, gün ve aydan kaldır"],"Date style":[null,"Gün biçimi"],"Use System Default":[null,"Sistem Varsayılanını Kullan"],"Time style":[null,"Zaman biçimi"],"seconds are only shown on the History page":[null,""],"Timezone":[null,"Saat dilimi"],"Local":[null,"Yerel"],"Network":[null,"Ağ"],"display dates and times in either your timezone or the shows network timezone":[null,"gün ve saati sizin yerel saatinizde veya dizi kanalının yerel saatinde gösterir"],"use local timezone to start searching for episodes minutes after show ends (depends on your dailysearch frequency)":[null,""],"Download url":[null,"İndirme bağlantısı"],"URL where the shows can be downloaded.":[null,"Dizilerin indirilebileceği bağlantı."],"Web Interface":[null,"Web Arayüzü"],"it is recommended that you enable a username and password to secure SickRage from being tampered with remotely.":[null,""],"these options require a manual restart to take effect.":[null,""],"API key":[null,"API anahtarı"],"used to give 3rd party programs limited access to SickRage":[null,"3'üncü taraf uygulamaların SickRage'e sınırlı erişim hakkı kazanması için kullanılır"],"you can try all the features of the API":[null,"API'nin tüm özelliklerini deneyebilirsiniz"],"here":[null,"burada"],"HTTP logs":[null,"HTTP günlükleri"],"enable logs from the internal Tornado web server":[null,"dahili Tornado web sunucusu günlüklerini etkinleştir"],"HTTP username":[null,"HTTP kullanıcı adı"],"set blank for no login":[null,"oturum açmayı geçersiz kılmak için boş bırakın"],"HTTP password":[null,"HTTP şifresi"],"blank = no authentication":[null,"boş = kimlik doğrulaması yok"],"HTTP port":[null,"HTTP bağlantı noktası"],"web port to browse and access SickRage (default:8081)":[null,"SickRage arayüzüne ulaşmak için ağ bağlantı noktası (varsayılan:8081)"],"Notify on login":[null,"Oturum açıldığında bildir"],"enable to be notified when a new login happens in webserver":[null,"web sunucusuna yeni bir oturum açıldığında bildirim almak için etkinleştirin"],"Listen on IPv6":[null,"IPv6 üzerinde dinle"],"attempt binding to any available IPv6 address":[null,""],"Enable HTTPS":[null,"HTTPS'i Etkinleştir"],"enable access to the web interface using a HTTPS address":[null,""],"HTTPS certificate":[null,"HTTPS sertifikası"],"file name or path to HTTPS certificate":[null,"HTTPS sertifikası dosya adı veya konumu"],"HTTPS key":[null,"HTTPS anahtarı"],"file name or path to HTTPS key":[null,""],"Reverse proxy headers":[null,""],"accept the following reverse proxy headers (advanced)...":[null,""],"(X-Forwarded-For, X-Forwarded-Host, and X-Forwarded-Proto)":[null,""],"CPU throttling":[null,"CPU kullanımı"],"Normal (default). High is lower and Low is higher CPU use":[null,"Normal (varsayılan). Yüksek seçim daha düşük, Düşük seçim daha yüksek CPU kullanır"],"Anonymous redirect":[null,"Anonim yönlendirme"],"backlink protection via anonymizer service, must end in \"?\"":[null,""],"Enable debug":[null,"Hata ayıklamayı ektinleştir"],"enable debug logs":[null,""],"Verify SSL Certs":[null,"SSL Sertifikalarını Doğrula"],"verify SSL Certificates (Disable this for broken SSL installs (Like QNAP))":[null,""],"No Restart":[null,"Yeniden başlatma yok"],"only shutdown when restarting SR":[null,""],"only select this when you have external software restarting SR automatically when it stops (like FireDaemon)":[null,""],"Encrypt passwords":[null,"Parolaları şifrele"],"in the <code>config.ini</code> file":[null,""],"warning":[null,""],"passwords must only contain":[null,""],"ASCII characters":[null,"ASCII karakterleri"],"Unprotected calendar":[null,"Korumasız takvim"],"allow subscribing to the calendar without user and password":[null,""],"some services like Google Calendar only work this way":[null,""],"Google Calendar Icons":[null,"Google Takvim Simgeleri"],"show an icon next to exported calendar events in Google Calendar":[null,""],"Proxy host":[null,"Proxy sunucusu"],"blank to disable or proxy to use when connecting to providers":[null,""],"also use global proxy setting for indexers (tvdb, xem, anidb, etc.)":[null,""],"Skip Remove Detection":[null,"Kaldırma Algılamasını Atla"],"skip detection of removed files":[null,""],"if disabled the episode will be set to the default deleted status":[null,""],"Default deleted episode status":[null,"Varsayılan silinmiş bölüm durumu"],"define the status to be set for media file that has been deleted.":[null,""],"Archived option will keep previous downloaded quality":[null,"Arşivlenmiş seçeneği önceden indirilmiş kaliteyi sabit tutar"],"example: Downloaded (1080p WEB-DL) ==> Archived (1080p WEB-DL)":[null,""],"Options for github related features.":[null,""],"Branch version":[null,""],"error: No branches found.":[null,""],"select branch to use (restart required)":[null,""],"Authorization Type":[null,""],"Username and password":[null,""],"Personal access token":[null,""],"You must use a personal access token if you're using \"two-factor authentication\" on GitHub.":[null,""],"GitHub username":[null,"GitHub kullanıcı adı"],"*** (REQUIRED FOR SUBMITTING ISSUES) ***":[null,"*** (SORUN BİLDİRMEK İÇİN GEREKİR) ***"],"GitHub password":[null,"GitHub şifre"],"GitHub personal access token":[null,""],"Generate Token":[null,""],"Manage Tokens":[null,""],"GitHub remote for branch":[null,""],"access repo configured remotes (save then refresh browser)":[null,""],"default":[null,""],"origin":[null,""],"Git executable path":[null,"Git çalıştırılabilir dosya yolu"],"only needed if OS is unable to locate git from env":[null,"sadece, işletim sistemi çevre değişkenlerinden git programını konumlandıramazsa gereklidir"],"Git reset":[null,"Git sıfırla"],"removes untracked files and performs a hard reset on git branch automatically to help resolve update issues":[null,""],"Home Theater / NAS":[null,"Ev Tiyatrosu / NAS"],"Devices":[null,"Aygıtlar"],"Social":[null,"Sosyal"],"A free and open source cross-platform media center and home entertainment system software with a 10-foot user interface designed for the living-room TV.":[null,""],"send KODI commands?":[null,""],"Always on":[null,"Her zaman açık"],"log errors when unreachable?":[null,"ulaşılamadığında hataları günlüğe kaydedelim mi?"],"Notify on snatch":[null,"Yakalandığında bildir"],"send a notification when a download starts?":[null,"bir indirme işi başladığında bildirim gönderilsin mi?"],"Notify on download":[null,"İndirildiğinde bildir"],"send a notification when a download finishes?":[null,"bir indirme işi tamamlandığında bildirim gönderilsin mi?"],"Notify on subtitle download":[null,"Alt yazı indirildiğinde bildir"],"send a notification when subtitles are downloaded?":[null,"bir alt yazı indirildiğinde bildirim gönderilsin mi?"],"Update library":[null,"Kütüphaneyi güncelle"],"update KODI library when a download finishes?":[null,"bir indirme tamamlandığında KODI kütüphanesi güncellensin mi?"],"Full library update":[null,"Bütün kütüphaneyi güncelle"],"perform a full library update if update per-show fails?":[null,"dizi başına güncelleme başarısız olursa bütün kütüphane güncellensin mi?"],"Only update first host":[null,"Sadece ilk sunucuyu güncelle"],"only send library updates to the first active host?":[null,"kütüphane güncellemelerini sadece ilk aktif sunucuya göndereyim mi?"],"KODI IP:Port":[null,"KODI IP:Port"],"host running KODI (eg. 192.168.1.100:8080)":[null,"KODI çalıştıran sunucu (örn. 192.168.1.100:8080)"],"(multiple host strings must be separated by commas)":[null,"(birden çok sunucu adresi virgülle ayrılmalıdır)"],"Username":[null,"Kullanıcı adı"],"username for your KODI server (blank for none)":[null,"KODI sunucunuzun kullanıcı adı (yoksa boş bırakın)"],"Password":[null,"Şifre"],"password for your KODI server (blank for none)":[null,"KODI sunucunuzun şifresi (yoksa boş bırakın)"],"Click below to test.":[null,"Denemek için aşağıya tıklayın."],"Experience your media on a visually stunning, easy to use interface on your Mac connected to your TV. Your media library has never looked this good!":[null,""],"For sending notifications to Plex Home Theater (PHT) clients, use the KODI notifier with port <b>3005</b>.":[null,""],"send Plex Media Server library updates?":[null,""],"Plex Media Server Auth Token":[null,""],"auth token used by Plex":[null,""],"Update Library":[null,"Kütüphaneyi Güncelle"],"update Plex Media Server library when a download finishes":[null,""],"Plex Media Server IP:Port":[null,""],"one or more hosts running Plex Media Server<br/>(eg. 192.168.1.1:32400, 192.168.1.2:32400)":[null,""],"HTTPS":[null,"HTTPS"],"use https for plex media server requests?":[null,"plex media server için https isteği kullanır?"],"Click below to test Plex Media Server(s)":[null,""],"Test Plex Media Server":[null,"Plex Media Server'ı test et"],"Plex Home Theater":[null,"Plex ev sineması"],"send Plex Home Theater notifications?":[null,""],"Plex Home Theater IP:Port":[null,""],"one or more hosts running Plex Home Theater<br>(eg. 192.168.1.100:3000, 192.168.1.101:3000)":[null,""],"Click below to test Plex Home Theater(s)":[null,""],"Test Plex Home Theater":[null,""],"some Plex Home Theaters <b class=\"boldest\">do not</b> support notifications e.g. Plexapp for Samsung TVs":[null,""],"Emby":[null,""],"A home media server built using other popular open source technologies.":[null,""],"send update commands to Emby?":[null,""],"Emby IP:Port":[null,""],"host running Emby (eg. 192.168.1.100:8096)":[null,""],"Emby API Key":[null,""],"Networked Media Jukebox":[null,""],"The Networked Media Jukebox, or NMJ, is the official media jukebox interface made available for the Popcorn Hour 200-series.":[null,""],"send update commands to NMJ?":[null,""],"Popcorn IP address":[null,""],"IP address of Popcorn 200-series (eg. 192.168.1.100)":[null,""],"Get settings":[null,""],"Get Settings":[null,""],"the Popcorn Hour device must be powered on and NMJ running.":[null,""],"NMJ database":[null,""],"automatically filled via the 'Get Settings' button.":[null,""],"NMJ mount url":[null,""],"Networked Media Jukebox v2":[null,""],"The Networked Media Jukebox, or NMJv2, is the official media jukebox interface made available for the Popcorn Hour 300 & 400-series.":[null,""],"send update commands to NMJv2?":[null,""],"IP address of Popcorn 300/400-series (eg. 192.168.1.100)":[null,""],"Database location":[null,""],"Database instance":[null,""],"adjust this value if the wrong database is selected.":[null,""],"Find database":[null,""],"Find Database":[null,""],"the Popcorn Hour device must be powered on.":[null,""],"NMJv2 database":[null,""],"automatically filled via the 'Find Database' buttons.":[null,""],"Synology":[null,""],"The Synology DiskStation NAS.":[null,""],"Synology Indexer is the daemon running on the Synology NAS to build its media database.":[null,""],"send Synology notifications?":[null,""],"requires SickRage to be running on your Synology NAS.":[null,""],"Synology Indexer":[null,""],"Synology Notifier is the notification system of Synology DSM":[null,""],"send notifications to the Synology Notifier?":[null,""],"pyTivo":[null,""],"pyTivo is both an HMO and GoBack server. This notifier will load the completed downloads to your Tivo.":[null,""],"send notifications to pyTivo?":[null,""],"requires the downloaded files to be accessible by pyTivo.":[null,""],"pyTivo IP:Port":[null,""],"host running pyTivo (eg. 192.168.1.1:9032)":[null,""],"pyTivo share name":[null,""],"value used in pyTivo Web Configuration to name the share.":[null,""],"Tivo name":[null,""],"(Messages & Settings > Account & System Information > System Information > DVR name)":[null,""],"Growl":[null,""],"A cross-platform unobtrusive global notification system.":[null,""],"send Growl notifications?":[null,""],"Growl IP:Port":[null,""],"host running Growl (eg. 192.168.1.100:23053)":[null,""],"may leave blank if SickRage is on the same host.":[null,""],"otherwise Growl <b>requires</b> a password to be used.":[null,""],"Click below to register and test Growl, this is required for Growl notifications to work.":[null,""],"Register Growl":[null,""],"Prowl":[null,""],"A Growl client for iOS.":[null,""],"send Prowl notifications?":[null,""],"Prowl Message Title":[null,""],"Global Prowl API key(s)":[null,""],"Prowl API(s) listed here, separated by commas if applicable, will<br> receive notifications for <b>all</b> shows. Your Prowl API key is available at:":[null,""],"(this field may be blank except when testing.)":[null,""],"Show notification list":[null,"Dizi bildirim listesi"],"-- Select a Show --":[null,"-- Bir Dizi Seçin --"],"Configure per-show notifications here by entering Prowl API key(s), separated by commas, '\n 'after selecting a show in the drop-down box. Be sure to activate the 'Save for this show' '\n 'button below after each entry.":[null,""],"Save for this show":[null,"Bu dizi için kaydet"],"Prowl priority":[null,""],"Very Low":[null,"Çok Düşük"],"Moderate":[null,""],"Normal":[null,"Normal"],"High":[null,"Yüksek"],"Emergency":[null,"Acil Durum"],"priority of Prowl messages from SickRage.":[null,""],"Libnotify":[null,""],"The standard desktop notification API for Linux/*nix systems. This notifier will only function if the pynotify module is installed (Ubuntu/Debian package <a href=\"apt:python-notify\">python-notify</a>).":[null,""],"send Libnotify notifications?":[null,""],"Pushover":[null,""],"Pushover makes it easy to send real-time notifications to your Android and iOS devices.":[null,""],"send Pushover notifications?":[null,""],"Pushover key":[null,""],"user key of your Pushover account":[null,""],"Pushover API key":[null,""],"click here":[null,""]," to create a Pushover API key":[null,""],"Pushover devices":[null,""],"comma separated list of pushover devices you want to send notifications to":[null,""],"Pushover notification sound":[null,""],"Bike":[null,""],"Bugle":[null,""],"Cash Register":[null,""],"Classical":[null,""],"Cosmic":[null,""],"Falling":[null,""],"Gamelan":[null,""],"Incoming":[null,""],"Intermission":[null,""],"Magic":[null,""],"Mechanical":[null,""],"Piano Bar":[null,""],"Siren":[null,""],"Space Alarm":[null,""],"Tug Boat":[null,""],"Alien Alarm (long)":[null,""],"Climb (long)":[null,""],"Persistent (long)":[null,""],"Pushover Echo (long)":[null,""],"Up Down (long)":[null,""],"None (silent)":[null,""],"Device specific":[null,""],"choose notification sound to use":[null,""],"Pushover priority":[null,""],"Choose priority to use":[null,""],"Boxcar 2":[null,""],"Read your messages where and when you want them!":[null,""],"send Boxcar notifications?":[null,""],"Boxcar2 access token":[null,""],"access token for your Boxcar account.":[null,""],"NMA":[null,""],"Notify My Android":[null,""],"Notify My Android is a Prowl-like Android App and API that offers an easy way to send notifications from your application directly to your Android device.":[null,""],"send NMA notifications?":[null,""],"NMA API key":[null,""],"(multiple keys must be separated by commas, up to a maximum of 5)":[null,""],"NMA priority":[null,""],"priority of NMA messages from SickRage.":[null,""],"Pushalot":[null,""],"Pushalot is a platform for receiving custom push notifications to connected devices running Windows Phone or Windows 8.":[null,""],"send Pushalot notifications ?":[null,""],"Pushalot authorization token":[null,""],"authorization token of your Pushalot account.":[null,""],"Pushbullet":[null,""],"Pushbullet is a platform for receiving custom push notifications to connected devices running Android/iOS and desktop browsers such as Chrome, Firefox or Opera.":[null,""],"send Pushbullet notifications?":[null,""],"Pushbullet API key":[null,"Pushbullet API anahtarı"],"API key of your Pushbullet account":[null,"Pushbullet hesabınızın API anahtarı"],"Pushbullet devices":[null,"Pushbullet aygıtları"],"Update device list":[null,"Aygıt listesini güncelle"],"Pushbullet channels":[null,"Pushbullet kanalları"],"Free Mobile":[null,""],"Free Mobile is a famous French cellular network provider.<br> It provides to their customer a free SMS API.":[null,""],"send SMS notifications?":[null,""],"send a SMS when a download starts?":[null,""],"send a SMS when a download finishes?":[null,""],"send a SMS when subtitles are downloaded?":[null,""],"Free Mobile customer ID":[null,""],"it's your Free Mobile customer ID (8 digits)":[null,""],"Free Mobile API key":[null,""],"find your API key in your customer portal.":[null,""],"Click below to test your settings.":[null,"Ayarlarınızı denemek için aşağıya tıklayın."],"Telegram":[null,""],"Telegram is a cloud-based instant messaging service.":[null,""],"send Telegram notifications?":[null,""],"send a message when a download starts?":[null,""],"send a message when a download finishes?":[null,""],"send a message when subtitles are downloaded?":[null,""],"User/group ID":[null,"Kullanıcı/grup Kimliği"],"contact @myidbot on Telegram to get an ID":[null,""],"Bot API token":[null,""],"contact @BotFather on Telegram to set up one":[null,""],"Join":[null,""],"Join all of your devices together!":[null,""],"send Join notifications?":[null,""],"Device ID":[null,""],"per device specific id":[null,""]," to create a Join API key":[null,""],"Twilio":[null,""],"Twilio is a webservice API that allows you to communicate directly with a mobile number. This notifier will send a text directly to your mobile device.":[null,""],"should SickRage text your mobile device?":[null,""],"Twilio Account SID":[null,""],"account SID of your Twilio account.":[null,""],"Twilio Auth Token":[null,""],"Twilio Phone SID":[null,""],"phone SID that you would like to send the sms from":[null,""],"Your phone number":[null,""],"phone number that will receive the sms. Please use the format +1-###-###-####":[null,""],"Twitter":[null,""],"A social networking and microblogging service, enabling its users to send and read other users' messages called tweets.":[null,""],"should SickRage post tweets on Twitter?":[null,""],"you may want to use a secondary account.":[null,""],"send direct message":[null,""],"send a notification via Direct Message, not via status update":[null,""],"send DM to":[null,""],"Twitter account to send Direct Messages to (must follow you)":[null,""],"Step One":[null,""],"Request Authorization":[null,""],"Click the \"Request Authorization\" button.<br> This will open a new page containing an auth key.<br> <b>note:</b> if nothing happens check your popup blocker.":[null,""],"Step Two":[null,""],"Enter the key Twitter gave you below, and click \"Verify Key\".":[null,""],"Trakt":[null,""],"Trakt helps keep a record of what TV shows and movies you are watching. Based on your favorites, Trakt recommends additional shows and movies you'll enjoy!":[null,""],"send Trakt.tv notifications?":[null,""],"username of your Trakt account.":[null,""],"Trakt PIN":[null,""],"Get Trakt PIN":[null,""],"PIN code to authorize SickRage to access Trakt on your behalf.":[null,""],"API Timeout":[null,""],"seconds to wait for Trakt API to respond. (Use 0 to wait forever)":[null,""],"Default indexer":[null,"Varsayılan dizin oluşturucu"],"Sync libraries":[null,"Kütüphaneleri Eşitle"],"sync your SickRage show library with your trakt show library.":[null,"SickRage dizi kütüphanenizi trakt dizi kütüphanenizle eşitleyin."],"Remove Episodes From Collection":[null,"Bölümleri Koleksiyondan Kaldır"],"remove an episode from your Trakt Collection if it is not in your SickRage Library.":[null,""],"Sync watchlist":[null,"İzleme Listesini Eşitle"],"sync your SickRage show watchlist with your trakt show watchlist (either Show and Episode).":[null,""],"episode will be added on watch list when wanted or snatched and will be removed when downloaded ":[null,""],"Watchlist add method":[null,""],"Skip All":[null,"Tümünü Atla"],"Download Pilot Only":[null,"Sadece pilot bölümü al"],"Get whole show":[null,"Tüm diziyi al"],"method in which to download episodes for new shows.":[null,"yeni diziler için indirme tekniği."],"Remove episode":[null,"Bölümü kaldır"],"remove an episode from your watchlist after it is downloaded.":[null,"bir bölüm indirildikten sonra izleme listenizden kaldırılacak."],"Remove series":[null,""],"remove the whole series from your watchlist after any download.":[null,""],"Remove watched show":[null,""],"remove the show from sickrage if it's ended and completely watched":[null,""],"Start paused":[null,""],"shows grabbed from your trakt watchlist start paused.":[null,""],"Trakt blackList name":[null,""],"name (slug) of list on Trakt for blacklisting show on 'Add Trending Show' & 'Add Recommended Shows' pages":[null,""],"Email":[null,""],"Allows configuration of email notifications on a per show basis.":[null,""],"send email notifications?":[null,""],"SMTP host":[null,""],"hostname of your SMTP email server.":[null,""],"SMTP port":[null,""],"port number used to connect to your SMTP host.":[null,""],"SMTP from":[null,""],"sender email address, some hosts require a real address.":[null,""],"Use TLS":[null,""],"check to use TLS encryption.":[null,""],"SMTP user":[null,""],"(optional) your SMTP server username.":[null,""],"SMTP password":[null,""],"(optional) your SMTP server password.":[null,""],"Global email list":[null,""],"email addresses listed here, separated by commas if applicable, will<br> receive notifications for <b>all</b> shows.":[null,""],"(This field may be blank except when testing.)":[null,""],"Email Subject":[null,""],"use a custom subject for some privacy protection?":[null,""],"(leave blank for the default SickRage subject)":[null,""],"configure per-show notifications here by entering email address(es), separated by commas,":[null,""],"after selecting a show in the drop-down box. Be sure to activate the 'Save for this show'":[null,""],"button below after each entry.":[null,""],"Slack":[null,""],"Slack brings all your communication together in one place. It's real-time messaging, archiving and search for modern teams.":[null,""],"should SickRage post messages on Slack?":[null,""],"Slack Incoming Webhook":[null,""],"Discord":[null,""],"All-in-one voice and text chat for gamers that's free, secure, and works on both your desktop and phone.":[null,""],"Should SickRage post messages on Discord?":[null,""],"Discord Incoming Webhook":[null,""],"Create webhook under channel settings.":[null,""],"Discord Bot Name":[null,""],"Blank will use webhook default Name.":[null,""],"Discord Avatar URL":[null,""],"Blank will use webhook default Avatar.":[null,""],"Discord TTS":[null,""],"Send notifications using text-to-speech":[null,""],"Post-Processing":[null,"Son-İşlem"],"Episode Naming":[null,"Bölüm İsimlendirme"],"Metadata":[null,"Meta Veri"],"Settings that dictate how SickRage should process completed downloads.":[null,"Tamamlanmış indirmelere SickRage tarafından ne yapılacağını belirler."],"enable the automatic post processor to scan and process any files in your Post Processing Dir":[null,""],"do not use if you use an external Post Processing script":[null,""],"Post Processing Dir":[null,"Son İşlem Klasörü"],"the folder where your download client puts the completed TV downloads.":[null,""],"please use seperate downloading and completed folders in your download client if possible.":[null,""],"Processing Method":[null,"İşleme Yöntemi"],"what method should be used to put files into the library?":[null,""],"if you keep seeding torrents after they finish, please avoid the 'move' processing method to prevent errors.":[null,""],"Auto Post-Processing Frequency":[null,"Otomatik Son-İşlem Sıklığı"],"time in minutes to check for new files to auto post-process (min 10)":[null,""],"Postpone post processing":[null,"Son İşlemi ertele"],"wait to process a folder if sync files are present.":[null,""],"Sync File Extensions":[null,""],"comma seperated list of extensions or filename globs SickRage ignores when Post Processing":[null,""],"Rename Episodes":[null,""],"rename episode using the Episode Naming settings?":[null,""],"Create missing show directories":[null,""],"create missing show directories when they get deleted":[null,""],"Add shows without directory":[null,""],"add shows without creating a directory (not recommended)":[null,""],"Move associated files":[null,""],"move associated (srt/srr/sfv/etc) files while post processing?":[null,""],"Rename .nfo file":[null,".nfo dosyasını yeniden adlandır"],"rename the original .nfo file to .nfo-orig to avoid conflicts?":[null,""],"Associated file extensions":[null,""],"comma separated list of associated file extensions SickRage should keep while post processing.":[null,""],"leaving it empty means no associated files will be post processed":[null,""],"Delete non associated files":[null,""],"delete non associated files while post processing?":[null,""],"Change File Date":[null,"Dosya Tarihini Değiştir"],"set last modified filedate to the date that the episode aired?":[null,""],"some systems may ignore this feature.":[null,""],"Timezone for File Date":[null,"Dosya Tarihi için Saat Dilimi"],"local":[null,"yerel"],"network":[null,"ağ"],"what timezone should be used to change File Date?":[null,""],"Unpack":[null,"Arşivden çıkart"],"What to do with archived releases found in your <i>TV Download Dir</i>?":[null,""],"Ignore (do not process contents)":[null,""],"Unpack (process contents)":[null,""],"Treat as video (process archive as-is)":[null,""],"'Unpack' only works with RAR archives":[null,""],"Windows":[null,""],"WinRar is required on windows":[null,""],"Unpack Directory":[null,""],"Choose a path to unpack files, leave blank to unpack in download dir":[null,""],"Unrar Location":[null,""],"add the path to unrar if it is not in the system path":[null,""],"Alternate Unrar Tool":[null,""],"add the path to an alternate unrar tool if it is not in the system path":[null,""],"Delete RAR contents":[null,"RAR içeriğini sil"],"delete content of RAR files, even if Process Method not set to move?":[null,""],"only working with RAR archive":[null,""],"Don't delete empty folders":[null,"Boş klasörleri silme"],"leave empty folders when Post Processing?":[null,""],"can be overridden using manual Post Processing":[null,""],"Follow symbolic-links":[null,""],"follow down symbolic links in download directory?":[null,""],"<b>EXPERTS ONLY.</b><br>Enable only if you know what <b>circular symbolic links</b> are,<br>and can <b>verify that you have none</b>.":[null,""],"Use icacls":[null,""],"Windows only":[null,""],"sets video permissions after using the move method in post processing":[null,""],"Extra Scripts":[null,"İlave komut dosyaları"],"see":[null,""],"for script arguments description and usage.":[null,"betik kullanımı tanımlamaları ve kullanım."],"How SickRage will name and sort your episodes.":[null,"Bölümleriniz SickRage tarafından nasıl isimlendirilecek ve sıralanacak."],"Name Pattern":[null,"İsim Deseni"],"Toggle Naming Legend":[null,""],"don't forget to add quality pattern. Otherwise after post-processing the episode will have UNKNOWN quality":[null,""],"Meaning":[null,"Anlam"],"Pattern":[null,"Desen"],"Result":[null,"Sonuç"],"Use lower case if you want lower case names (eg. %sn, %e.n, %q_n etc)":[null,"Küçük harfli isimler istiyorsanız küçük harf kullanın (örn. %sn, %e.n, %q_n vb)"],"Show Name":[null,"Dizi İsmi"],"Show.Name":[null,"Dizi.İsmi"],"Show_Name":[null,"Dizi_İsmi"],"Season Number":[null,"Sezon Numarası"],"XEM Season Number":[null,"XEM Sezon Numarası"],"Episode Number":[null,"Bölüm Numarası"],"XEM Episode Number":[null,"XEM Bölüm Numarası"],"Episode Name":[null,"Bölüm Adı"],"Episode.Name":[null,"Bölüm.Adı"],"Episode_Name":[null,"Bölüm_Adı"],"Air Date":[null,"Yayın Tarihi"],"Post-Processing Date":[null,"Son-İşlem Tarihi"],"Quality":[null,"Kalite"],"Scene Quality":[null,"Sahne Kalitesi"],"Release Name":[null,"Yayın İsmi"],"SickRage' is used in place of RLSGROUP if it could not be properly detected":[null,""],"Release Group":[null,"Yayın Grubu"],"If episode is proper/repack add 'proper' to name.":[null,""],"Release Type":[null,"Yayın Türü"],"Multi-Episode Style":[null,""],"Single-EP Sample":[null,""],"Multi-EP sample":[null,""],"Strip Show Year":[null,""],"remove the TV show's year when renaming the file?":[null,""],"only applies to shows that have year inside parentheses":[null,""],"Custom Air-By-Date":[null,""],"name air-by-date shows differently than regular shows?":[null,""],"Toggle ABD Naming Legend":[null,""],"Regular Air Date":[null,""],"Year":[null,"Yıl"],"Month":[null,"Ay"],"Day":[null,"Gün"],"Multi-EP style is ignored":[null,""],"Custom Sports":[null,""],"name sports shows differently than regular shows?":[null,""],"Toggle Sports Naming Legend":[null,""],"Sports Air Date":[null,""],"Custom Anime":[null,""],"name anime shows differently than regular shows?":[null,""],"Toggle Anime Naming Legend":[null,""],">XEM Season Number":[null,""],"Single-EP Anime Sample":[null,""],"Multi-EP Anime sample":[null,""],"Add Absolute Number":[null,""],"add the absolute number to the season/episode format?":[null,""],"only applies to anime. (eg. S15E45 - 310 vs S15E45)":[null,""],"Only Absolute Number":[null,""],"replace season/episode format with absolute number":[null,""],"only applies to anime.":[null,""],"No Absolute Number":[null,""],"don't include the absolute number":[null,""],"The data associated to the data. These are files associated to a TV show in the form of images and text that, when supported, will enhance the viewing experience.":[null,""],"Metadata Type":[null,""],"toggle metadata options that you wish to be created":[null,""],"multiple targets may be used":[null,""],"Select Metadata":[null,""],"Provider Priorities":[null,""],"Provider Options":[null,""],"Configure Custom Newznab Providers":[null,""],"Configure Custom Torrent Providers":[null,""],"Check off and drag the providers into the order you want them to be used.":[null,""],"At least one provider is required but two are recommended.":[null,""],"Torrent providers can be toggled in ":[null,""],"Provider does not support backlog searches at this time.":[null,""],"Provider is <b>NOT WORKING</b>.":[null,""],"Configure individual provider settings here.":[null,""],"Check with provider's website on how to obtain an API key if needed.":[null,""],"Configure provider":[null,""],"no providers available to configure.":[null,""],"URL":[null,""],"Enable daily searches":[null,""],"enable provider to perform daily searches.":[null,""],"Enable backlog searches":[null,""],"enable provider to perform backlog searches.":[null,""],"Season search mode":[null,"Sezon arama yöntemi"],"when searching for complete seasons you can choose to have it look for season packs only, or choose to have it build a complete season from just single episodes.":[null,""],"season packs only.":[null,"sadece sezon paketleri."],"episodes only.":[null,"sadece bölümler."],"Enable fallback":[null,""],"when searching for a complete season depending on search mode you may return no results, this helps by restarting the search using the opposite search mode.":[null,""],"Custom URL":[null,""],"the URL should include the protocol (and port if applicable). Examples: http://192.168.1.4/ or http://localhost:3000/":[null,""],"Api key":[null,"Api anahtarı"],"Digest":[null,""],"Hash":[null,""],"Passkey":[null,""],"Cookies":[null,"Çerezler"],"example: uid=1234;pass=567845439634987<br>note: uid and pass are not your username/password.<br>use DevTools or Firebug to get these values after logging in on your browser.":[null,""],"Pin":[null,""],"Seed ratio":[null,"Dağıtım oranı"],"stop transfer when ratio is reached<br>(-1 SickRage default to seed forever, or leave blank for downloader default)":[null,""],"Minimum seeders":[null,"Asgari dağıtıcı"],"Minimum leechers":[null,"Asgari alıcı"],"Confirmed download":[null,"Teyit edilmiş indirme"],"only download torrents from trusted or verified uploaders ?":[null,"torrent dosyalarını sadece güvenilir ve teyit edilmiş yükleyicilerden indir ?"],"Ranked torrents":[null,""],"only download ranked torrents (trusted releases)":[null,""],"English torrents":[null,""],"only download english torrents, or torrents containing english subtitles":[null,""],"For Spanish torrents":[null,""],"ONLY search on this provider if show info is defined as \"Spanish\" (avoid provider's use for VOS shows)":[null,""],"Sorting results by":[null,""],"Freeleech":[null,""],"only download <b>\"FreeLeech\"</b> torrents.":[null,""],"Category":[null,"Kategori"],"select torrent with Italian subtitle":[null,""],"Configure Custom<br>Newznab Providers":[null,""],"Add and setup or remove custom Newznab providers.":[null,""],"Select provider":[null,"Sağlayıcı seçin"],"-- add new provider --":[null,"-- yeni sağlayıcı ekle --"],"Provider name":[null,"Sağlayıcı adı"],"Site URL":[null,"Site Adresi"],"Newznab search categories":[null,""],"select your Newznab categories on the left, and click the \"update categories\" button to use them for searching.) <b>don't forget to to save the form!":[null,""],"Update Categories":[null,"Kategorileri Güncelle"],"Add":[null,"Ekle"],"Delete":[null,"Sil"],"Add and setup or remove custom RSS providers.":[null,""],"RSS URL":[null,""],"Search element":[null,""],"eg: title":[null,"örn: başlık"],"Episode Search":[null,"Bölüm Araması"],"NZB Search":[null,"NZB Araması"],"Torrent Search":[null,"Torrent Araması"],"How to manage searching with":[null,"Arama işinin nasıl idare edileceği"],"Randomize Providers":[null,""],"randomize the provider search order instead of going in order of placement":[null,""],"Download propers":[null,""],"replace original download with \"Proper\" or \"Repack\" if nuked":[null,""],"Check propers every":[null,""],"24 hours":[null,""],"4 hours":[null,""],"90 mins":[null,""],"45 mins":[null,""],"15 mins":[null,""],"Backlog search day(s)":[null,""],"number of day(s) that the \"Forced Backlog Search\" will cover (e.g. 7 Days)":[null,""],"Backlog search frequency":[null,""],"time in minutes between searches (min.":[null,""],"Daily search frequency":[null,""],"Usenet retention":[null,""],"age limit in days for usenet articles to be used (e.g. 500)":[null,""],"Ignore words":[null,""],"results with one or more word from this list will be ignored<br>separate words with a comma, e.g. \"word1,word2,word3\"":[null,""],"Require words":[null,""],"results with no word from this list will be ignored<br>separate words with a comma, e.g. \"word1,word2,word3\"":[null,""],"Trackers list":[null,""],"trackers that will be added to magnets without trackers<br>separate trackers with a comma, e.g. \"tracker1,tracker2,tracker3\"":[null,""],"Ignore language names in subbed results":[null,""],"ignore subbed releases based on language names <br>\n Example: \"dk\" will ignore words: dksub, dksubs, dksubbed, dksubed <br>\n separate languages with a comma, e.g. \"lang1,lang2,lang3":[null,""],"Allow high priority":[null,"Yüksek önceliğe izin ver"],"set downloads of recently aired episodes to high priority":[null,"yeni yayınlanmış bölümlerin indirilmesinde yüksek öncelik olsun"],"Use Failed Downloads":[null,""],"use Failed Download Handling?":[null,""],"will only work with snatched/downloaded episodes after enabling this":[null,""],"Delete Failed":[null,"Başarısız olanları Sil"],"delete files left over from a failed download?":[null,""],"this only works if Use Failed Downloads is enabled.":[null,""],"How to handle NZB search results.":[null,""],"Search NZBs":[null,""],"enable NZB search providers":[null,""],"Send .nzb files to":[null,""],"SABnzbd server URL":[null,""],"URL to your SABnzbd server (e.g. http://localhost:8080/)":[null,""],"SABnzbd username":[null,""],"(blank for none)":[null,""],"SABnzbd password":[null,""],"SABnzbd API key":[null,""],"locate at... SABnzbd Config -> General -> API Key":[null,""],"Use SABnzbd category":[null,""],"add downloads to this category (e.g. TV)":[null,""],"Use SABnzbd category (backlog episodes)":[null,""],"add downloads of old episodes to this category (e.g. TV)":[null,""],"Use SABnzbd category for anime":[null,""],"add anime downloads to this category (e.g. anime)":[null,""],"Use SABnzbd category for anime (backlog episodes)":[null,""],"add anime downloads of old episodes to this category (e.g. anime)":[null,""],"Use forced priority":[null,""],"enable to change priority from HIGH to FORCED":[null,""],"Black hole folder location":[null,""],"<b>.nzb</b> files are stored at this location for external software to find and use":[null,""],"Connect using HTTPS":[null,""],"enable Secure control in NZBGet and set the correct Secure Port here":[null,""],"NZBget host:port":[null,""],"(e.g. localhost:6789)":[null,""],"NZBget RPC host name and port number (not NZBgetweb!)":[null,""],"NZBget username":[null,""],"locate in nzbget.conf (default:nzbget)":[null,""],"NZBget password":[null,""],"locate in nzbget.conf (default:tegbzn6789)":[null,""],"Use NZBget category":[null,""],"send downloads marked this category (e.g. TV)":[null,""],"Use NZBget category (backlog episodes)":[null,""],"send downloads of old episodes marked this category (e.g. TV)":[null,""],"Use NZBget category for anime":[null,""],"send anime downloads marked this category (e.g. anime)":[null,""],"Use NZBget category for anime (backlog episodes)":[null,""],"send anime downloads of old episodes marked this category (e.g. anime)":[null,""],"NZBget priority":[null,""],"Very low":[null,"Çok düşük"],"Low":[null,"Düşük"],"Very high":[null,"Çok yüksek"],"Force":[null,""],"priority for daily snatches (no backlog)":[null,"günlük yakalama için öncelik (biriktirme listesi olmadan)"],"Torrent host:port":[null,""],"URL to your Synology DSM (e.g. http://localhost:5000/)":[null,""],"Client username":[null,""],"Client password":[null,""],"Downloaded files location":[null,""],"where Synology Download Station will save downloaded files (blank for client default)":[null,""],"the destination has to be a shared folder for Synology DS":[null,""],"Click below to test":[null,"Denemek için aşağı tıklayın"],"How to handle Torrent search results.":[null,""],"Search torrents":[null,""],"enable torrent search providers":[null,""],"Send .torrent files to":[null,""],"<b>.torrent</b> files are stored at this location for external software to find and use":[null,""],"URL to your torrent client (e.g. http://localhost:8000/)":[null,""],"Torrent RPC URL":[null,""],"the path without leading and trailing slashes (e.g. transmission)":[null,""],"Http Authentication":[null,""],"Verify certificate":[null,""],"disable if you get \"Deluge: Authentication Error\" in your log":[null,""],"verify SSL certificates for HTTPS requests":[null,""],"Add label to torrent":[null,""],"(blank spaces are not allowed)":[null,"(boşluklara izin verilmez)"],"label plugin must be enabled in Deluge clients":[null,""],"for QBitTorrent 3.3.1 and up":[null,""],"Add label to torrent for anime":[null,""],"for QBitTorrent 3.3.1 and up ":[null,""],"where <span id=\"torrent_client\">the torrent client</span> will save downloaded files (blank for client default)":[null,""],"the destination has to be a shared folder for Synology DS</span>":[null,""],"Minimum seeding time":[null,""],"time in hours":[null,""],"(default:'0' passes blank to client and '-1' passes nothing)":[null,""],"Start torrent paused":[null,""],"add .torrent to client but do <b style=\"font-weight:900\">not</b> start downloading":[null,""],"Allow high bandwidth":[null,"Yüksek bant genişliğine izin ver"],"use high bandwidth allocation if priority is high":[null,"öncelik yüksek ise yüksek bant genişliği kullan"],"Test Connection":[null,""],"Windows Shares":[null,""],"Defines your existing windows shares so that we can add them to the browse dialog":[null,""],"Share #{number}":[null,""],"Share label":[null,""],"Hostname or IP":[null,""],"Share path":[null,""],"Subtitles Search":[null,"Alt Yazı Arama"],"Subtitles Plugin":[null,"Alt Yazı Eklentisi"],"Plugin Settings":[null,"Eklenti Ayarları"],"Settings that dictate how SickRage handles subtitles search results.":[null,"SickRage'in alt yazı arama sonuçlarını nasıl ele alacağını belirleyen seçenekler."],"Search Subtitles":[null,"Alt Yazıları Ara"],"Subtitle Languages":[null,"Alt Yazı Dilleri"],"Subtitle Directory":[null,"Alt Yazı Klasörü"],"the directory where SickRage should store your <i>Subtitles</i> files.":[null,""],"leave empty if you want store subtitle in episode path.":[null,""],"Subtitle Find Frequency":[null,"Alt Yazı Bulma Sıklığı"],"time in hours between scans (default: 1)":[null,"taramalar arası geçecek saat (varsayılan: 1)"],"Include Specials":[null,""],"include the show's specials when searching for subtitles?":[null,""],"Perfect matches":[null,"Mükemmel eşleşmeler"],"only download subtitles that match: release group, video codec, audio codec and resolution":[null,""],"if disabled you may get out of sync subtitles":[null,""],"Subtitles History":[null,""],"log downloaded Subtitle on History page?":[null,""],"Subtitles Multi-Language":[null,""],"append language codes to subtitle filenames?":[null,""],"this option is required if you use multiple subtitle languages":[null,""],"Delete unwanted subtitles":[null,""],"enable to delete unwanted subtitle languages bundled with release":[null,""],"Embedded Subtitles":[null,"Gömülü Alt Yazılar"],"ignore subtitles embedded inside video file?":[null,""],"this will ignore <u>all</u> embedded subtitles for every video file!":[null,""],"Hearing Impaired Subtitles":[null,"İşitme Engelliler için Alt Yazılar"],"download hearing impaired style subtitles?":[null,""],"See":[null,""],"for a script arguments description.":[null,""],"Additional scripts separated by <b>|</b>.":[null,""],"Scripts are called after each episode has searched and downloaded subtitles.":[null,""],"For any scripted languages, include the interpreter executable before the script. See the following example":[null,""],"For Windows:":[null,""],"For Linux / OS X:":[null,""],"Subtitle Providers":[null,"Alt Yazı Sağlayıcıları"],"Check off and drag the plugins into the order you want them to be used.":[null,""],"At least one plugin is required.":[null,"En az bir eklenti gereklidir."]," Web-scraping plugin":[null,""],"Provider Settings":[null,""],"Set user and password for each provider":[null,""],"User Name":[null,"Kullanıcı Adı"],"Change Show":[null,"Diziyi Değiştir"],"Prev Show":[null,"Önceki Dizi"],"Next Show":[null,"Sonraki Dizi"],"Jump to Season":[null,"Sezona Atla"],"Specials":[null,"Özeller"],"Poster for":[null,""],"Stars":[null,""],"minutes":[null,"dakika"],"View other popular {genre} shows on trakt.tv.":[null,""],"View other popular {imdbgenre} shows on IMDB.":[null,""],"Allowed":[null,"İzin Verilen"],"Preferred":[null,"Tercih Edilen"],"Originally Airs":[null,"Özgün Yayınlanış"],"Show Status":[null,"Dizi Durumu"],"Default EP Status":[null,"Varsayılan Bölüm Durumu"],"Location":[null,"Konum"],"Missing":[null,"Eksik"],"Scene Name":[null,"Sahne Adı"],"Required Words":[null,"Gerekli Kelimeler"],"Ignored Words":[null,"Dikkate Alınmayan Kelimeler"],"Size":[null,"Boyut"],"Info Language":[null,"Bilgi Dili"],"Subtitles SR Metadata":[null,""],"Season Folders":[null,"Sezon Klasörleri"],"Paused":[null,"Duraksatılmış"],"Air-by-Date":[null,"Tarihe-göre-Yayın"],"Sports":[null,"Spor"],"DVD Order":[null,"DVD Sırası"],"Scene Numbering":[null,"Sahne Numaralandırması"],"Select Filtered Episodes":[null,"Filtrelenmiş Bölümleri Seç"],"Clear All":[null,"Tümünü Temizle"],"Change selected episodes to":[null,"Seçilen bölümleri değiştir"],"Select Columns":[null,"Sütunları Seç"],"Hide Episodes":[null,""],"Show Episodes":[null,"Dizi Bölümleri"],"NFO":[null,"NFO"],"TBN":[null,""],"Episode":[null,"Bölüm"],"Absolute":[null,"Mutlak"],"Scene":[null,"Sahne"],"Scene Absolute":[null,""],"File Name":[null,""],"Airdate":[null,"Yayın tarihi"],"Download":[null,""],"Change the value here if scene numbering differs from the indexer episode numbering":[null,""],"Change the value here if scene absolute numbering differs from the indexer absolute numbering":[null,""],"Manual Search":[null,"El ile arama"],"Do you want to mark this episode as failed?":[null,""],"The episode release name will be added to the failed history, preventing it to be downloaded again.":[null,""],"Do you want to include the current episode quality in the search?":[null,""],"Choosing No will ignore any releases with the same episode quality as the one currently downloaded/snatched.":[null,""],"Download subtitle":[null,""],"Do you want to re-download the subtitle for this language?":[null,""],"It will overwrite your current subtitle":[null,""],"Format":[null,""],"Advanced":[null,""],"Main Settings":[null,"Ana Ayarlar"],"Show Location":[null,"Dizi Konumu"],"Preferred Quality":[null,"Tercih edilen Kalite"],"Default Episode Status":[null,"Varsayılan Bölüm Durumu"],"this will set the status for future episodes.":[null,""],"this only applies to episode filenames and the contents of metadata files.":[null,""],"search for subtitles":[null,"alt yazıları ara"],"Use SR Metdata":[null,""],"use SickRage metadata when searching for subtitle, this will override the autodiscovered metadata":[null,""],"pause this show (SickRage will not download episodes)":[null,"bu diziyi duraksat (SickRage bölümleri indirmeyecek)"],"Format Settings":[null,""],"Air by date":[null,"Tarihe göre yayınlanma"],"check if the show is released as Show.03.02.2010 rather than Show.S02E03.":[null,"dizinin Diziadı.S02E03 yerine Diziadı.03.02.2010 şeklinde yayınlandığını doğrula."],"in case of an air date conflict between regular and special episodes, the later will be ignored.":[null,""],"check if the show is Anime and episodes are released as Show.265 rather than Show.S02E03":[null,"dizinin bir Anime olduğunu ve Diziadı.S02E03 yerine Diziadı.265 şeklinde yayınlandığını doğrula"],"check if the show is a sporting or MMA event released as Show.03.02.2010 rather than Show.S02E03":[null,""],"Season folders":[null,"Sezon klasörleri"],"group episodes by season folder (uncheck to store in a single folder)":[null,""],"search by scene numbering (uncheck to search by indexer numbering)":[null,""],"use the DVD order instead of the air order":[null,""],"a \"Force Full Update\" is necessary, and if you have existing episodes you need to sort them manually.":[null,""],"comma-separated <i>e.g. \"word1,word2,word3</i>\"":[null,""],"search results with one or more words from this list will be ignored.":[null,""],"e.g. \"word1,word2,word3\"":[null,""],"search results with no words from this list will be ignored.":[null,""],"Scene Exception":[null,""],"this will affect episode search on NZB and torrent providers.":[null,""],"this list appends to the original show name.":[null,""],"WARNING logs":[null,"UYARI günlükleri"],"ERROR logs":[null,"HATA günlükleri"],"There are no events to display.":[null,"Gösterilecek bir etkinlik yok."],"Limit":[null,"Sınır"],"Layout":[null,"Desen"],"HistoryLayout":[null,"TakvimDeseni"],"Compact":[null,"Küçük"],"Detailed":[null,"Detaylı"],"Time":[null,"Zaman"],"Provider":[null,"Sağlayıcı"],"Missing Provider":[null,"Eksik Sağlayıcı"],"missing provider":[null,"eksik sağlayıcı"],"Directory":[null,"Klasör"],"Show Name (tvshow.nfo)":[null,"Dizi Adı (tvshow.nfo)"],"Indexer":[null,"Dizin Oluşturucu"],"Enter the folder containing the episode":[null,"Bölümü içeren klasörü girin"],"Process Method to be used":[null,"Kullanılacak işleme yöntemi"],"Copy":[null,"Kopyala"],"Move":[null,"Taşı"],"Hard Link":[null,"Sabit Bağlantı"],"Symbolic Link":[null,"Sembolik Bağlantı"],"Symbolic Link Reversed":[null,""],"Force already Post Processed Dir/Files":[null,"Önceden Son işleme tutulmuş Klsr/Dosyları da tekrar işleme zorla"],"Mark Dir/Files as priority download":[null,"Klsr/Dsyaları öncelikli indirme olarak işaretle"],"(Check it to replace the file even if it exists at higher quality)":[null,"(hatta mevcut dosya daha kaliteliyse bile bununla üzerine yaz)"],"Delete files and folders":[null,"Dosya ve klasörleri sil"],"(Check it to delete files and folders like auto processing)":[null,"(Otomatik Son-İşlem'de olduğu gibi dosya ve klasörleri sil)"],"Don't use processing queue":[null,""],"(If checked this will return the result of the process here, but may be slow!)":[null,""],"Mark download as failed":[null,"İndirmeyi başarısız olarak işaretle"],"Process":[null,"İşle"],"Download subtitles for this show?":[null,"Bu dizi için alt yazılar indirilsin mi?"],"use SickRage metadata when searching for subtitle, <br />this will override the autodiscovered metadata":[null,""],"Status for previously aired episodes":[null,""],"Status for all future episodes":[null,""],"Group episodes by season folder?":[null,""],"Is this show an Anime?":[null,""],"Is this show scene numbered?":[null,"Bu dizi sahne numaralandırması mı kullanıyor?"],"Save Defaults":[null,"Varsayılan olarak kaydet"],"Use current values as the defaults":[null,""],"<p>Select your preferred fansub groups from the <b>Available Groups</b> and add them to the <b>Whitelist</b>. Add groups to the <b>Blacklist</b> to ignore them.</p>\n <p>The <b>Whitelist</b> is checked <i>before</i> the <b>Blacklist</b>.</p>\n <p>Groups are shown as <b>Name</b> | <b>Rating</b> | <b>Number of subbed episodes</b>.</p>\n <p>You may also add any fansub group not listed to either list manually.</p>\n <p>When doing this please note that you can only use groups listed on anidb for this anime.\n <br>If a group is not listed on anidb but subbed this anime, please correct anidb's data.</p>":[null,""],"Whitelist":[null,""],"Available Groups":[null,""],"Add to Whitelist":[null,""],"Add to Blacklist":[null,""],"Blacklist":[null,""],"Custom Group":[null,""],"Allowed Quality:":[null,"İzin Verilen Kalite:"],"Preferred Quality:":[null,""],"Filter Show Name":[null,"Dizi Adını Filtrele"],"Root":[null,""],"All":[null,"Tümü"],"Clear Filter(s)":[null,"Filtre(leri) Temizle"],"Poster":[null,"Afiş"],"Small Poster":[null,"Küçük Poster"],"Banner":[null,"Banner"],"Simple":[null,"Basit"],"Next Episode":[null,"Gelecek Bölüm"],"Progress":[null,"İlerleme"],"Direction":[null,"Yön"],"Ascending":[null,"Yükselen"],"Descending":[null,"Alçalan"],"Poster Size":[null,"Poster Boyutu"],"Continuing":[null,"Devam Eden"],"Ended":[null,"Sonlanmış"],"Total":[null,"Toplam"],"Invalid date":[null,"Geçersiz tarih"],"No Network":[null,"Ağ Yok"],"Next Ep":[null,"Gelecek Bölüm"],"Prev Ep":[null,"Geçmiş Bölüm"],"Show":[null,"Göster"],"Downloads":[null,"İndirilenler"],"Active":[null,"Etkin"],"loading":[null,"yükleniyor"],"Loading...":[null,"Yükleniyor..."],"<p><b><u>Preferred</u></b> qualities will replace those in <b><u>allowed</u></b>, even if they are lower.</p>":[null,""],"New":[null,"Yeni"],"Set as Default":[null,""],"Remember me":[null,""],"Edit Selected":[null,"Seçileni Düzenle"],"Subtitle":[null,"Alt Yazı"],"Default Ep Status":[null,"Varsayılan Bölüm Durumu"],"Update":[null,"Güncelleştir"],"Rescan":[null,"Tekrar Tara"],"Rename":[null,"Yeniden Adlandır"],"Search Subtitle":[null,"Alt Yazı Ara"],"Force Metadata Regen":[null,"Meta Veriyi Tekrar Oluştur"],"Snatched (Allowed)":[null,"Yakalandı (İzin verildi)"],"Jump to Show":[null,"Diziye Atla"],"Force Backlog":[null,"Biriktirmeye Zorla"],"Manage episodes with status":[null,"Bölümleri durumlarına göre yönet"],"Manage":[null,"Yönet"],"None of your episodes have status":[null,"Bölümleriniz hiç bir duruma sahip değil"],"Shows containing":[null,"Dizi içeriği"],"episodes":[null,"bölümler"],"Set checked shows/episodes to":[null,"Seçilen dizi/bölüm ayarı"],"Go":[null,"Git"],"Select all":[null,"Tümünü Seç"],"Clear all":[null,"Tümünü temizle"],"Release":[null,"Yayın"],"Backlog Search":[null,"Biriktirme Listesi Araması"],"Not in progress":[null,"Çalışır durumda değil"],"In Progress":[null,"Çalışır durumda"],"Daily Search":[null,"Günlük Arama"],"Find Propers Search":[null,""],"Propers search disabled":[null,""],"Subtitle Search":[null,"Alt Yazı Arama"],"Subtitle search disabled":[null,"Alt yazı arama devre dışı bırakıldı"],"Search Queue":[null,"Arama Kuyruğu"],"pending items":[null,"bekleyen ögeler"],"Daily":[null,"Günlük"],"Manual":[null,"El ile"],"Changing any settings marked with (<span class=\"separator\">*</span>) will force a refresh of the selected shows.":[null,""],"Selected Shows":[null,"Seçilen Diziler"],"Root Directories":[null,"Kök Dizinler"],"Current":[null,"Geçerli"],"Keep":[null,"Sakla"],"Custom":[null,"Özel"],"Group episodes by season folder (set to \"No\" to store in a single folder).":[null,""],"Pause these shows (SickRage will not download episodes).":[null,"Bu dizileri duraksat (SickRage bölümleri indirmeyecek)."],"This will set the status for future episodes.":[null,"Bu, gelecek bölümlerin durumunu da belirleyecek."],"Search by scene numbering (set to \"No\" to search by indexer numbering).":[null,""],"Set if these shows are Anime and episodes are released as Show.265 rather than Show.S02E03":[null,""],"Set if these shows are sporting or MMA events released as Show.03.02.2010 rather than Show.S02E03.":[null,""],"In case of an air date conflict between regular and special episodes, the later will be ignored.":[null,"Düzenli ve özel bölümlerin yayınlanma tarihinde oluşabilecek aksaklık halinde kullanılacak, sonrası görmezden gelinecek."],"Set if these shows are released as Show.03.02.2010 rather than Show.S02E03.":[null,""],"Search for subtitles.":[null,"Alt yazıları ara."],"All of your episodes have {subsLanguage} subtitles.":[null,""],"Manage episodes without":[null,"Bu dili içermeyen bölümleri yönet"],"Episodes without {subsLanguage} subtitles.":[null,""],"Episodes without {subtitleLanguage} (undefined) subtitles.":[null,""],"Download missed subtitles for selected episodes":[null,"Seçili bölümler için kayıp alt yazıları indir"],"Performing Restart":[null,"Yeniden başlatma gerçekleştiriliyor"],"Waiting for SickRage to shut down":[null,"SickRage'in kapanması için bekleniyor"],"Waiting for SickRage to start again":[null,"SickRage'in yeniden başlaması için bekleniyor"],"Loading the default page":[null,"Varsayılan sayfa yükleniyor"],"Error: The restart has timed out, perhaps something prevented SickRage from starting again?":[null,"Hata: Yeniden başlatma süresi doldu, belki de bir şey SickRage'in yeniden başlamasını önlüyor?"],"Key":[null,"Anahtar"],"Missed":[null,"Kaçırılmış"],"Today":[null,"Bugün"],"Soon":[null,"Yakında"],"Later":[null,"İleride"],"Subscribe":[null,"Abone"],"Date":[null,"Tarih"],"View Paused":[null,"Bekletilmişleri Gör"],"Hidden":[null,"Gizli"],"Shown":[null,"Gösterilen"],"Calendar":[null,"Takvim"],"List":[null,"Liste"],"Ends":[null,"Bitiş"],"Next Ep Name":[null,"Gelecek Bölüm Adı"],"Run time":[null,"Çalışma süresi"],"Indexers":[null,"Dizin oluşturucular"],"No shows for this day":[null,""],"Airs":[null,"Yayınlanma"],"Plot":[null,""],"Show Update":[null,"Dizi Güncellemesi"],"Version Check":[null,""],"Proper Finder":[null,""],"Post Process":[null,""],"Subtitles Finder":[null,""],"Scheduler":[null,""],"Alive":[null,""],"Start Time":[null,""],"Cycle Time":[null,""],"Next Run":[null,""],"Last Run":[null,""],"Silent":[null,""],"True":[null,""],"N/A":[null,""],"Show id":[null,""],"Show name":[null,""],"Priority":[null,""],"Added":[null,""],"Queue type":[null,""],"LOW":[null,"DÜŞÜK"],"NORMAL":[null,""],"HIGH":[null,"YÜKSEK"],"Disk Space":[null,""],"Free space":[null,""],"TV Download Directory":[null,""],"Media Root Directories":[null,""],"Preview of the proposed name changes":[null,""],"All Seasons":[null,""],"select all":[null,""],"Rename Selected":[null,""],"Cancel Rename":[null,""],"Old Location":[null,""],"New Location":[null,""],"Trakt API did not return any results, please check your config.":[null,""],"votes":[null,""],"Remove Show":[null,"Dizi Kaldır"],"Level":[null,""],"Filter":[null,""],"All non-absolute folder locations are relative to ":[null,""],"Manual Post-Processing":[null,"El ile Son-İşlem Gerçekleştir"],"Episode Status Management":[null,"Bölüm Durumu Yönetimi"],"Update PLEX":[null,""],"Update KODI":[null,""],"Update Emby":[null,""],"Missed Subtitle Management":[null,"Kayıp Alt Yazı Yönetimi"],"Help & Info":[null,"Yardım & Bilgi"],"Backup & Restore":[null,"Yedekle & Geri Yükle"],"Tools":[null,""],"Support SickRage":[null,"SickRage'e Bağış Yap"],"View Errors":[null,"Hataları Görüntüle"],"View Warnings":[null,"Uyarıları Görüntüle"],"View Log":[null,"Günlüğü görüntüle"],"Check For Updates":[null,"Güncellemeleri Denetle"],"Restart":[null,"Yeniden başlat"],"Shutdown":[null,"Kapat"],"Logout":[null,"Oturumu kapat"],"Server Status":[null,"Sunucu Durumu"],"View overview of snatched episodes":[null,"Yakalanmış bölümlere genel bakış"],"Episodes Downloaded":[null,"İndirilen Bölümler"],"Memory used":[null,""],"Load time":[null,""],"Branch":[null,""],"Now":[null,""]}}}} \ No newline at end of file +{"messages":{"domain":"messages","locale_data":{"messages":{"100":[null,"100"],"250":[null,"250"],"500":[null,"500"],"":{"domain":"messages","plural_forms":"nplurals=2; plural=(n != 1);","lang":"tr_TR"},"Drama":[null,"Drama"],"Mystery":[null,"Gizem"],"Science-Fiction":[null,"Bilim-kurgu"],"Crime":[null,"Suç"],"Action":[null,"Eylem"],"Comedy":[null,"Komedi"],"Thriller":[null,"Gerilim"],"Animation":[null,"Animasyon"],"Family":[null,"Aile"],"Fantasy":[null,"Fantezi"],"Adventure":[null,"Macera"],"Horror":[null,"Korku"],"Film-Noir":[null,"Kara Film"],"Sci-Fi":[null,"Bilim-kurgu"],"Romance":[null,"Romantizm"],"Sport":[null,"Spor"],"War":[null,"Savaş"],"Biography":[null,"Biyografi"],"History":[null,"Geçmiş"],"Music":[null,"Müzik"],"Western":[null,"Batılı"],"News":[null,"Haberler"],"Sitcom":[null,"Durum komedisi"],"Reality-TV":[null,"Gerçeklik-TV"],"Documentary":[null,"Belgesel"],"Game-Show":[null,"Yarışma"],"Musical":[null,"Müzikal"],"Talk-Show":[null,"Talk-Show"],"Started Download":[null,"İndirme Başladı"],"Download Finished":[null,"İndirme Tamamlandı"],"Subtitle Download Finished":[null,"Altyazı indirildi"],"SickRage Updated":[null,"SickRage Güncellendi"],"SickRage Updated To Commit#: ":[null,"SickRage: # Commit Güncellendi"],"SickRage new login":[null,"SickRage Yeni Kullanıcı Girişi"],"New login from IP: {0}. http://geomaplookup.net/?ip={0}":[null,"Yeni Kullanıcı Girişi IP: {0}. http://geomaplookup.net/?ip={0}"],"Repeat":[null,"Tekrar"],"Repeat (Separated)":[null,"Tekrar (Ayrılmış)"],"Extend":[null,""],"Extend (Limited)":[null,""],"Extend (Limited, E-prefixed)":[null,""],"Downloaded":[null,"İndirildi"],"Snatched":[null,"Yakalandı"],"Snatched (Proper)":[null,"Yakalandı (Proper)"],"Failed":[null,"Başarısız"],"Snatched (Best)":[null,"Yakalandı(En İyi)"],"Archived":[null,"Arşivlendi"],"Unknown":[null,"Bilinmiyor"],"Unaired":[null,"Yayınlanmadı"],"Skipped":[null,"Atlandı"],"Wanted":[null,"Aranan"],"Ignored":[null,"Yoksayıldı"],"Subtitled":[null,"Altyazılı"],"For best results please set the Download Station alias as":[null,"En iyi sonuçlar için lütfen Download İstasyonu takma adını bu şekilde ayarla"],"You can check this setting in the Synology DSM":[null,"Synology DSM'de bu ayarı kontrol edebilirsiniz"],"Control Panel":[null,"Kontrol Paneli"],"Application Portal":[null,"Uygulama Merkezi"],"Make sure you allow DSM to be embedded with iFrames too in":[null,""],"DSM Settings":[null,"DSM Ayarları"],"Security":[null,"Güvenlik"],"<No Filter>":[null,"<Filtre kullanma>"],"Daily Searcher":[null,"Günlük Arama"],"Backlog":[null,"Biriktirme Listesi"],"Show Updater":[null,"Dizi Güncelleyici"],"Check Version":[null,"Sürüm kontrol"],"Show Queue":[null,"Dizi Kuyruğu"],"Search Queue (All)":[null,"Dizi Kuyruğu (Tümü)"],"Search Queue (Daily Searcher)":[null,"Arama Kuyruğu (Günlük Arama)"],"Search Queue (Backlog)":[null,"Arama Kuyruğu (Arka Biriktirici)"],"Search Queue (Manual)":[null,"Arama Günlüğü (El ile)"],"Search Queue (Retry/Failed)":[null,""],"Search Queue (RSS)":[null,""],"Find Propers":[null,""],"Postprocessor":[null,""],"Find Subtitles":[null,"Alt yazıları Bul"],"Trakt Checker":[null,""],"Event":[null,"Etkinlik"],"Error":[null,"Hata"],"Tornado":[null,"Kasırga"],"Thread":[null,"Konu"],"Main":[null,"Ana"],"Loading":[null,""],"New update found for SickRage, starting auto-updater":[null,"SickRage için yeni güncelleme bulundu, otomatik güncelleştirme başlatılıyor"],"Update was successful":[null,"Güncelleştirme başarıyla gerçekleştirildi"],"Update failed!":[null,"Güncelleştirme başarısız!"],"Backup":[null,"Yedekle"],"Config backup in progress...":[null,"Yapılandırma yedeklemesi devam ediyor..."],"Config backup successful, updating...":[null,"Yapılandırma yedekleme başarılı, güncelleştiriliyor..."],"Config backup failed, aborting update":[null,"Yapılandırma yedeklemesi başarısız, güncelleme durduruluyor"],"No update needed":[null,"Hiçbir güncelleme gerekmiyor"],"Mako Error":[null,"Mako hatası"],"Oops":[null,"Oops"],"Wrong API key used":[null,"Yanlış API anahtarı kullanıldı"],"Login":[null,"Giriş"],"API Key not generated":[null,"API anahtarı üretilmedi"],"API Builder":[null,"API Kurucu"],"Schedule":[null,"Zamanlama"],"Test 1":[null,"Deneme 1"],"This is test number 1":[null,"1 numaralı denemedir"],"Test 2":[null,"Deneme 2"],"This is test number 2":[null,"2 numaralı denemedir"],"You're using the {branch} branch. Please use 'master' unless specifically asked":[null,""],"Invalid show parameters":[null,"Geçersiz dizi değişkenleri"],"Invalid parameters":[null,""],"Episode couldn't be retrieved":[null,"Bölüm getirilemedi"],"Home":[null,"Ana Sayfa"],"Show List":[null,"Dizi Listesi"],"Error: Unsupported Request. Send jsonp request with 'callback' variable in the query string.":[null,"Hata: Desteklenmeyen İstek. jsonp isteklerini sıralama dizesindeki 'callback' değişkeniyle gönderin."],"Success. Connected and authenticated":[null,"Başarılı. Bağlanıldı ve yetkilendirildi"],"Authentication failed. SABnzbd expects":[null,"Yetkilendirme başarısız. SABnzbd beklentisi"],"as authentication method":[null,"yetkilendirme yöntemi olarak"],"Unable to connect to host":[null,"Sunucuya bağlanılamadı"],"SMS sent successfully":[null,"SMS gönderimi başarılı"],"Problem sending SMS: {message}":[null,"Problemi SMS ile ilet: {message}"],"Telegram notification succeeded. Check your Telegram clients to make sure it worked":[null,"Telegram bildirimi başarılı. Çalıştığından emin olmak için aygıtınızı kontrol edin"],"Error sending Telegram notification: {message}":[null,"Telgram bildirim gönderme hatası: {message}"],"join notification succeeded. Check your join clients to make sure it worked":[null,""],"Error sending join notification: {message}":[null,"Katılım bildirimi gönderme hatası:{message}"]," with password":[null," şifre ile"],"Registered and Tested growl successfully {growl_host}":[null,"Growl kaydı ve testi başarılı {growl_host}"],"Registration and Testing of growl failed {growl_host}":[null,"Growl kaydı ve testi başarısız {growl_host}"],"Test prowl notice sent successfully":[null,"Deneme amaçlı prowl bildirim gönderimi başarılı"],"Test prowl notice failed":[null,"Deneme amaçlı prowl bildirim gönderimi başarısız"],"Boxcar2 notification succeeded. Check your Boxcar2 clients to make sure it worked":[null,""],"Error sending Boxcar2 notification":[null,"Boxcar2 bildirim gönderme hatası"],"Pushover notification succeeded. Check your Pushover clients to make sure it worked":[null,""],"Error sending Pushover notification":[null,"Pushover bildirim gönderimi başarısız"],"Key verification successful":[null,"Anahtar doğrulaması başarılı"],"Unable to verify key":[null,"Anahtar doğrulanamadı"],"Tweet successful, check your twitter to make sure it worked":[null,"Tweet başarılı, çalıştığına emin olmak için twitter'ınıza bakın"],"Error sending tweet":[null,"Tweet gönderimi başarısız"],"Please enter a valid account sid":[null,""],"Please enter a valid auth token":[null,""],"Please enter a valid phone sid":[null,""],"Please format the phone number as \"+1-###-###-####\"":[null,""],"Authorization successful and number ownership verified":[null,""],"Error sending sms":[null,""],"Slack message successful":[null,""],"Slack message failed":[null,""],"Discord message successful":[null,""],"Discord message failed":[null,""],"Test KODI notice sent successfully to {kodi_host}":[null,"KODI bildirisi gönderimi başarılı {kodi_host}"],"Test KODI notice failed to {kodi_host}":[null,"Test KODI bildirimi {kodi_host} için başarısız oldu"],"Successful test notice sent to Plex Home Theater ... {plex_clients}":[null,"Plex ev sineması için gönderilen test bildirimi başarılı ... {plex_clients}"],"Test failed for Plex Home Theater ... {plex_clients}":[null,"Test Plex ev sineması için başarısız oldu... {plex_clients}"],"Tested Plex Home Theater(s)":[null,"Test edilmiş Plex Ev Sinemaları"],"Successful test of Plex Media Server(s) ... {plex_servers}":[null,"Plex ortam Sunucuları testi başarılı ... {plex_servers}"],"Test failed, No Plex Media Server host specified":[null,"Test başarısız, hiçbir Plex Ortam Sunucusu adresi belirtilmemiş"],"Test failed for Plex Media Server(s) ... {plex_servers}":[null,""],"Tested Plex Media Server host(s)":[null,""],"Tried sending desktop notification via libnotify":[null,""],"Test notice sent successfully to {emby_host}":[null,""],"Test notice failed to {emby_host}":[null,""],"Successfully started the scan update":[null,"Tarama güncelleştirmesi başarıyla başlatıldı"],"Test failed to start the scan update":[null,"Tarama güncelleştirme testi başarısız"],"Test notice sent successfully to {nmj2_host}":[null,"Test bildirimi gönderimi başarılı {nmj2_host}"],"Test notice failed to {nmj2_host}":[null,""],"Trakt Authorized":[null,"Trakt Yetkilendirildi"],"Trakt Not Authorized!":[null,"Trakt Yetkilendirilmedi!"],"Test email sent successfully! Check inbox.":[null,""],"ERROR: {last_error}":[null,"HATA: {last_error}"],"Test NMA notice sent successfully":[null,""],"Test NMA notice failed":[null,""],"Pushalot notification succeeded. Check your Pushalot clients to make sure it worked":[null,""],"Error sending Pushalot notification":[null,""],"Pushbullet notification succeeded. Check your device to make sure it worked":[null,"Pushbullet bildirimi başarılı. Çalıştığından emin olmak için aygıtınızı kontrol edin"],"Error sending Pushbullet notification":[null,"Pushbullet gönderimi başarısız"],"Status":[null,"Durum"],"Restarting SickRage":[null,"SickRage Yeniden Başlatılıyor"],"Update Failed":[null,"Güncelleştirme Başarısız"],"Update wasn't successful, not restarting. Check your log for more information.":[null,"Güncelleştirme başarısız, yeniden başlatılamıyor. Ayrıntılı bilgi için günlüğü kontrol edin."],"Checking out branch":[null,""],"Already on branch":[null,""],"Invalid show ID: {show}":[null,"Geçersiz dizi kimliği: {show}"],"Show not in show list":[null,"Dizi, dizi listesinde değil"],"Edit":[null,"Düzenle"],"This show is in the process of being downloaded - the info below is incomplete.":[null,"Bu dizi indirilme aşamasında - aşağıdaki bilgiler tam değil."],"The information on this page is in the process of being updated.":[null,"Bu sayfadaki bilgi güncelleştirme aşamasında."],"The episodes below are currently being refreshed from disk":[null,"Aşağıdaki bölümler şu anda diskten alınarak yenileniyor"],"Currently downloading subtitles for this show":[null,"Şu anda bu dizi için alt yazılar indiriliyor"],"This show is queued to be refreshed.":[null,"Bu dizi yenileme için kuyruğa alınmış."],"This show is queued and awaiting an update.":[null,"Bu dizi kuyruğa alınmış ve bir güncelleme için bekletiliyor."],"This show is queued and awaiting subtitles download.":[null,"Bu dizi kuyruğa alınmış ve alt yazı indirilmesi için bekletiliyor."],"Resume":[null,"Devam et"],"Pause":[null,"Duraksat"],"Remove":[null,"Kaldır"],"Re-scan files":[null,"Dosyaları tekrar tara"],"Force Full Update":[null,"Tam Güncellemeye Zorla"],"Update show in KODI":[null,"KODI'de diziyi güncelle"],"Update show in Emby":[null,"Emby'de diziyi güncelle"],"Hide specials":[null,""],"Show specials":[null,""],"Preview Rename":[null,"Yeniden Adlandırmayı Özizle"],"Download Subtitles":[null,"Alt Yazıları İndir"],"No scene exceptions":[null,"Sahne istisnası yok"],"Invalid show ID":[null,"Geçersiz dizi kimliği"],"Unable to find the specified show":[null,"Belirtilen dizi bulunamadı"],"Unable to retreive Fansub Groups from AniDB.":[null,""],"Edit Show":[null,"Diziyi Düzenle"],"Unable to refresh this show: {error}":[null,"Bu dizi güncelleştirilemedi: {error}"],"New location <tt>{location}</tt> does not exist":[null,"Yeni <tt>{location}</tt> konumu mevcut değil"],"Unable to update show: {error}":[null,"Dizi güncelleştirilemedi: {error}"],"Unable to force an update on scene exceptions of the show.":[null,""],"Unable to force an update on scene numbering of the show.":[null,""],"{num_errors:d} error{plural} while saving changes:":[null,"Değişiklikler kaydedilirken {num_errors:d} hata{plural}:"],"{show_name} has been {paused_resumed}":[null,"{show_name} isimli dizi {paused_resumed}"],"resumed":[null,"devam ettirildi"],"paused":[null,"duraksatıldı"],"{show_name} has been {deleted_trashed} {was_deleted}":[null,"{show_name} isimli dizi {deleted_trashed} {was_deleted}"],"deleted":[null,"silindi"],"trashed":[null,"çöpe gönderildi"],"(media untouched)":[null,"(ortama dokunulmadı)"],"(with all related media)":[null,"(tüm ortamla)"],"Unable to refresh this show.":[null,"Bu dizi yenilenemedi."],"Unable to update this show.":[null,"Bu dizi güncellenemedi."],"Library update command sent to KODI host(s)): {kodi_hosts}":[null,""],"Unable to contact one or more KODI host(s)): {kodi_hosts}":[null,""],"Library update command sent to Plex Media Server host: {plex_server}":[null,""],"Unable to contact Plex Media Server host: {plex_server}":[null,""],"Library update command sent to Emby host: {emby_host}":[null,""],"Unable to contact Emby host: {emby_host}":[null,""],"You must specify a show and at least one episode":[null,"Bir dizi ve en az bir bölüm belirtmelisiniz"],"Invalid status":[null,"Geçersiz durum"],"Backlog was automatically started for the following seasons of <b>{show_name}</b>":[null,""],"Season":[null,"Sezon"],"Backlog started":[null,"Biriktirme listesi başlatıldı"],"Retrying Search was automatically started for the following season of <b>{show_name}</b>":[null,""],"Retry Search started":[null,"Tekrar arama başlatıldı"],"You must specify a show":[null,"Bir dizi belirtmelisiniz"],"Can't rename episodes when the show dir is missing.":[null,"Dizi klasörü kayıpken bölümler yeniden adlandırılmaz."],"New subtitles downloaded: {new_subtitle_languages}":[null,"İndirilen yeni altyazılar: {new_subtitle_languages}"],"No subtitles downloaded":[null,"Hiçbir altyazı indirilmedi"],"IRC":[null,"IRC"],"Could not load news from the repo. [Click here for news.md])({news_url})":[null,""],"The was a problem connecting to github, please refresh and try again":[null,""],"Could not load changes from the repo. [Click here for CHANGES.md]({changes_url})":[null,""],"Changelog":[null,"Değişim Günlüğü"],"Post Processing":[null,"Son İşlem"],"Add Shows":[null,"Dizi Ekle"],"No folders selected.":[null,"Hiçbir klasör seçilmedi."],"New Show":[null,"Yeni Dizi"],"Trending Shows":[null,"Yükselişteki Diziler"],"Popular Shows":[null,"Popüler Diziler"],"Most Anticipated Shows":[null,"En Çok Beklenen Diziler"],"Most Collected Shows":[null,""],"Most Watched Shows":[null,""],"Most Played Shows":[null,""],"Recommended Shows":[null,""],"New Shows":[null,"Yeni Diziler"],"Season Premieres":[null,"Sezon Prömiyerleri"],"Existing Show":[null,"Varolan Diziler"],"No root directories setup, please go back and add one.":[null,"Hiçbir kök dizin seçilmedi, lütfen geri dönün ve bir tane ekleyin."],"Show added":[null,"Dizi eklendi"],"Adding the specified show {show_name}":[null,"{show_name} isimli dizi ekleniyor"],"Missing params, no Indexer ID or folder: {show_to_add} and {root_dir}/{show_path}":[null,""],"Unknown error. Unable to add show due to problem with show selection.":[null,"Bilinmeyen hata. Dizi seçiminden kaynaklanan bir sorun nedeniyle diziniz eklenemiyor."],"Unable to add show":[null,"Dizi eklenemedi"],"Folder {show_dir} exists already":[null,"{show_dir} klasörü zaten mevcut"],"Unable to create the folder {show_dir}, can't add the show":[null,"{show_dir} klasörü oluşturulamadı, dizi eklenemedi"],"Adding the specified show into {show_dir}":[null,"Belirtilen dizi {show_dir} içine ekleniyor"],"Shows Added":[null,"Eklenmiş Diziler"],"Automatically added {num_shows} from their existing metadata files":[null,""],"Mass Update":[null,"Toplu Güncelleme"],"Episode Overview":[null,"Bölüme Genel Bakış"],"Missing Subtitles":[null,"Eksik Altyazılar"],"Backlog Overview":[null,"Sonradan İndirmeye Genel Bakış"],"Mass Edit":[null,"Toplu Düzenleme"],"Unable to update show: {excption_format}":[null,""],"Unable to refresh show {show_name}: {excption_format}":[null,""],"Errors encountered":[null,"Hatalarla karşılaşıldı"],"Updates":[null,"Güncelleştirmeler"],"Refreshes":[null,"Yenilemeler"],"Renames":[null,"Yeniden adlandırılanlar"],"Subtitles":[null,"Alt yazılar"],"The following actions were queued":[null,"Takip eden işlemler sıraya alındı"],"Failed Downloads":[null,"Başarısız İndirmeler"],"Manage Searches":[null,"Aramaları Yönet"],"Backlog search started":[null,"Biriktirme listesi araması başladı"],"Daily search started":[null,"Günlük arama başladı"],"Find propers search started":[null,""],"Subtitle search started":[null,"Alt yazı arama başladı"],"Remove Selected":[null,""],"Clear History":[null,"Geçmişi Temizle"],"Trim History":[null,"Geçmişi Düzenle"],"Selected history entries removed":[null,""],"History cleared":[null,"Geçmiş temizlendi"],"Removed history entries older than 30 days":[null,"30 günden daha eski geçmiş girdileri kaldırıldı"],"General":[null,"Genel"],"Backup/Restore":[null,"Yedekle/Geri Yükle"],"Search Settings":[null,"Arama Ayarları"],"Search Providers":[null,"Arama Sağlayıcılar"],"Subtitles Settings":[null,"Alt Yazı Ayarları"],"Notifications":[null,"Bildirimler"],"Anime":[null,"Anime"],"SickRage Configuration":[null,"SickRage Ayarları"],"Config - Shares":[null,""],"Windows Shares Configuration":[null,""],"Saved Shares":[null,""],"Your Windows share settings have been saved":[null,""],"Config - General":[null,"Ayarlar - Genel"],"General Configuration":[null,"Genel Ayarlar"],"Saved Defaults":[null,""],"Your \"add show\" defaults have been set to your current selections.":[null,""],"Unable to create directory {directory}, log directory not changed.":[null,"{directory} isimli klasör oluşturulamadı, günlük dosyası değişmedi."],"Unable to create directory {directory}, https cert directory not changed.":[null,""],"Unable to create directory {directory}, https key directory not changed.":[null,""],"Error(s) Saving Configuration":[null,"Yapılandırma Kaydedilemedi"],"Configuration Saved":[null,"Yapılandırma Kaydedildi"],"Config - Backup/Restore":[null,"Ayarlar - Yedekle/Geri Yükle"],"Config - Episode Search":[null,"Yapılandırma - Bölüm Arama"],"Config - Post Processing":[null,"Yapılandırma - Son İşlem"],"Unpacking Not Supported, disabling unpack setting":[null,"Arşiv Açma Desteklenmiyor, arşivden çıkar seçeneği etkisizleştiriliyor"],"You tried saving an invalid normal naming config, not saving your naming settings":[null,""],"You tried saving an invalid anime naming config, not saving your naming settings":[null,""],"Config - Providers":[null,"Yapılandırma - Sağlayıcılar"],"No Provider Name specified":[null,"Hiçbir Sağlayıcı İsmi belirtilmedi"],"No Provider Url specified":[null,"Hiçbir Sağlayıcı Url'si belirtilmedi"],"No Provider Api key specified":[null,"Hiçbir Sağlayıcı Api anahtarı belirtilmedi"],"Config - Notifications":[null,"Yapılandırma - Bildirimler"],"Config - Subtitles":[null,"Yapılandırma - Altyazılar"],"Config - Anime":[null,"Yapılandırma - Anime"],"Clear Errors":[null,"Hataları Temizle"],"Clear Warnings":[null,"Uyarıları Temizle"],"Submit Errors":[null,"Hataları Bildir"],"Logs & Errors":[null,"Günlükler & Hatalar"],"Log File":[null,"Günlük Dosyası"],"Logs":[null,"Günlükler"],"This is a test notification from SickRage":[null,""],"Choose Directory":[null,""],"Select log file folder location":[null,""],"Select CSS file":[null,""],"Select backup folder to save to":[null,""],"Select backup files to restore":[null,""],"Please fill out the necessary fields above.":[null,""],"<b>Step 1:</b> Confirm Authorization":[null,""],"Check blacklist name; the value needs to be a trakt slug":[null,""],"You must provide a recipient email address!":[null,""],"You didn't supply a Pushbullet api key":[null,""],"Don't forget to save your new pushbullet settings.":[null,""],"Select TV Download Directory":[null,""],"Select Unpack Directory":[null,""],"This pattern is invalid.":[null,""],"This pattern would be invalid without the folders, using it will force \"Season Folders\" on for all shows.":[null,""],"This pattern is valid.":[null,""],"Select .nzb black hole/watch location":[null,""],"Select .torrent black hole/watch location":[null,""],"Select .torrent download location":[null,""],"Minimum seeding time is":[null,""],"URL to your uTorrent client (e.g. http://localhost:8000)":[null,""],"Stop seeding when inactive for":[null,""],"URL to your Transmission client (e.g. http://localhost:9091)":[null,""],"URL to your Deluge client (e.g. http://localhost:8112)":[null,""],"IP or Hostname of your Deluge Daemon (e.g. scgi://localhost:58846)":[null,""],"URL to your Synology DS client (e.g. http://localhost:5000)":[null,""],"URL to your rTorrent client (e.g. scgi://localhost:5000 <br> or https://localhost/rutorrent/plugins/httprpc/action.php)":[null,""],"URL to your qBittorrent client (e.g. http://localhost:8080)":[null,""],"URL to your MLDonkey (e.g. http://localhost:4080)":[null,""],"URL to your putio client (e.g. http://localhost:8080)":[null,""],"<a herf=\"https://app.put.io/oauth/apps/new\" target=\"_blank\"> Create a new OAuth app for put.io</a>":[null,""],"Put.io Parent Folder":[null,""],"Put.io OAuth Token":[null,""],"Show Episodes":[null,"Dizi Bölümleri"],"Hide Episodes":[null,""],"Select Show Location":[null,""],"Select Unprocessed Episode Folder":[null,""],"DELETED":[null,""],"Resume updating the log on this page.":[null,""],"Pause updating the log on this page.":[null,""],"searching {searchingFor}...":[null,""],"search timed out, try again or try another indexer":[null,""],"loading folders...":[null,""],"Loading...":[null,"Yükleniyor..."],"You have reached this page by accident, please check the url.":[null,"Bu sayfaya yanlışlıkla ulaştınız, lütfen adresi denetleyin."],"A mako error has occured.<br>\n If this happened during an update a simple page refresh may be the solution.<br>\n Mako errors that happen during updates may be a one time error if there were significant ui changes.":[null,""],"Show/Hide Error":[null,""],"Add New Show":[null,"Yeni TV programı ekle"],"For shows that you haven't downloaded yet, this option finds a show on theTVDB.com, creates a directory for it's episodes, and adds it to SickRage.":[null,"Henüz indirmediğiniz diziler için, bu özellik theTVDB.com üzerinden ilgili TV programını bulur, bölümleri için dizin oluşturur ve kendisini SickRage'e ekler."],"Add From Trakt Lists":[null,"Trakt listelerinden ekle"],"For shows that you haven't downloaded yet, this option lets you choose from a show from one of the Trakt lists to add to SickRage.":[null,"Henüz indirmediğiniz TV programları için, bu özellik ilgili programı Trakt listelerinin birinden seçmenizi sağlar, sonra da SickRage'e ekler."],"Add From IMDB's Popular Shows":[null,"IMDB Popüler TV Programları listesinden ekle"],"View IMDB's list of the most popular shows. This feature uses IMDB's MOVIEMeter algorithm to identify popular TV Series.":[null,"IMDB'nin en popüler TV programları listesini görün. Bu özellik IMDB'nin MOVIEMeter algoritmasını kullanarak en popüler TV programlarını belirler."],"Add Existing Shows":[null,"Var olan TV programlarını ekle"],"Use this option to add shows that already have a folder created on your hard drive. SickRage will scan your existing metadata/episodes and add the show accordingly.":[null,"Bu özelliği sabit diskinizde mevcut dizinleri olan bir TV programını eklemek için kullanın. SickRage mevcut olan metadata ve bölümleri tarayacak, ardından programı uygun bir şekilde ekleyecektir."],"Add Existing Show":[null,"Var olan TV programı ekle"],"Manage Directories":[null,"Dizinleri yönet"],"Customize Options":[null,"Kişiselleştirme seçenekleri"],"SickRage can add existing shows, using the current options, by using locally stored NFO/XML metadata to eliminate user interaction. If you would rather have SickRage prompt you to customize each show, then use the checkbox below.":[null,""],"Prompt me to set settings for each show":[null,"Dizi seçeneklerini değiştirebilmem için bana danışılsın"],"Displaying folders within these directories which aren't already added to SickRage":[null,"Bu klasörlerdeki dosyalar daha önce SickRage'e eklenmemiş"],"Submit":[null,"Gönder"],"Find a show on theTVDB":[null,"theTVDB üzerinde bir dizi bul"],"Show retrieved from existing metadata":[null,"Önceden var olan meta veriden getirilen dizi"],"All Indexers":[null,"Tüm içerik oluşturucular"],"Search":[null,"Ara"],"This will only affect the language of the retrieved metadata file contents and episode filenames.":[null,"Bu, sadece getirilen meta veri dosyası içeriği ve bölüm dosya adlarındaki dili etkiler."],"This <b>DOES NOT</b> allow SickRage to download non-english TV episodes!":[null,"Bu, SickRage'e İngilizce olmayan TV bölümlerini indirme izni <b>VERMEZ</b> !"],"Pick the parent folder":[null,"Üst klasörü seçin"],"Pre-chosen Destination Folder":[null,"Önceden Seçilmiş Hedef Klasör"],"Customize options":[null,"Seçenekleri özelleştir"],"Add Show":[null,"Dizi Ekle"],"Skip Show":[null,"Diziyi Atla"],"Sort By":[null,"Sırala"],"Name":[null,"İsim"],"Original":[null,"Özgün"],"Votes":[null,"Oylar"],"Rating":[null,"Derecelendirme"],"Rating > Votes":[null,"Derecelendirme > Oylar"],"Sort Order":[null,"Sıralama Düzeni"],"Asc":[null,"Artan"],"Desc":[null,"Azalan"],"Fetching of IMDB Data failed. Are you online?":[null,"IMBD verisi alınamadı. Genel ağa bağlı mısınız?"],"Exception":[null,"İstisna"],"Select Trakt List":[null,"Trakt Listesi Seçin"],"Most Anticipated":[null,"En Çok Beklenen"],"Trending":[null,"Yükselen"],"Popular":[null,"Popüler"],"Most Watched":[null,"En Çok İzlenen"],"Most Played":[null,"En Çok Oynatılan"],"Most Collected":[null,"En Çok Toplanan"],"Recommended":[null,"Tavsiye Edilen"],"Toggle navigation":[null,"Gezinimi Değiştir"],"Profile":[null,"Profil"],"JSONP":[null,""],"Back to SickRage":[null,"SickRage'e Geri Dön"],"Parameters":[null,"Parametreler"],"Required":[null,"Gerekli"],"Description":[null,"Açıklama"],"Type":[null,"Tür"],"Default value":[null,"Varsayılan değer"],"Allowed values":[null,"İzin verilen değerler"],"Playground":[null,"Oyun bahçesi"],"Clear":[null,"Temizle"],"Yes":[null,"Evet"],"No":[null,"Hayır"],"season":[null,"sezon"],"episode":[null,"bölüm"],"Python Version":[null,"Python Sürümü"],"SSL Version":[null,"SSL Sürümü"],"OS":[null,"OS"],"Locale":[null,"Yerel"],"User":[null,"Kullanıcı"],"Program Folder":[null,"Program Klasörü"],"Config File":[null,"Ayar Dosyası"],"Database File":[null,"Veritabanı dosyası"],"Cache Folder":[null,"Önbellek klasörü"],"Log Folder":[null,"Günlük klasörü"],"Arguments":[null,"Değişkenler"],"Web Root":[null,"Web Kök Dizini"],"Website":[null,"Web sayfası"],"Wiki":[null,"Viki"],"Source":[null,"Kaynak"],"IRC Chat":[null,"IRC sohbet"],"AnimeDB Settings":[null,"AnimeDB ayarları"],"Look & Feel":[null,"Görünüm & Hisset"],"AniDB is non-profit database of anime information that is freely open to the public":[null,"AniDB kar amacı olmayan halka açık ücretsiz anime bilgi veritabanıdır"],"Enable":[null,"Etkinleştir"],"should SickRage use data from AniDB?":[null,""],"AniDB Username":[null,"AniDB Kullanıcı adı"],"username of your AniDB account":[null,""],"AniDB Password":[null,""],"password of your AniDB account":[null,""],"AniDB MyList":[null,""],"do you want to add the PostProcessed episodes to the MyList?":[null,""],"Look and Feel":[null,"Görünüm ve Davranış"],"How should the anime functions show and behave.":[null,""],"Split show lists":[null,"Dizi listelerini ayır"],"separate anime and normal shows in groups":[null,""],"Split in tabs":[null,""],"use tabs for when splitting show lists":[null,""],"Restore":[null,"Geri Yükle"],"Backup your main database file and config.":[null,"Ana veritabanı dosyanızı ve ayarlarınızı yedekleyin."],"Select the folder you wish to save your backup file to":[null,"Yedek dosyanızı kaydetmek istediğiniz klasörü seçin"],"Restore your main database file and config.":[null,"Ana veritabanı dosyanızı ve ayarlarınızı geri yükleyin."],"Select the backup file you wish to restore":[null,"Geri yüklemek istediğiniz yedeği seçin"],"Misc":[null,"Diğer"],"Interface":[null,"Arayüz"],"Advanced Settings":[null,"Gelişmiş Ayarlar"],"Startup options. Indexer options. Log and show file locations.":[null,""],"Some options may require a manual restart to take effect.":[null,"Bazı seçeneklerin etkili kılınabilmesi için el ile yeniden başlatma gerekebilir."],"Default Indexer Language":[null,"Varsayılan Dizin Oluşturucu Dili"],"for adding shows and metadata providers":[null,"dizi ekleme ve meta veri sağlayıcıları için"],"Launch browser":[null,"Tarayıcıyı başlat"],"open the SickRage home page on startup":[null,"başlangıçta SickRage ana sayfasını aç"],"Initial page":[null,"Başlangıç sayfası"],"Shows":[null,"Diziler"],"when launching SickRage interface":[null,"SickRage arabirimi başlatılırken"],"Choose hour to update shows":[null,"Dizilerin güncelleneceği saati seçin"],"with information such as next air dates, show ended, etc. Use 15 for 3pm, 4 for 4am etc.":[null,"sonraki yayınlanma tarihleri, sonlandırılan dizi, vb. ös3 için 15, öö4 için 4 kullanın."],"note":[null,""],"minutes are randomized each time SickRage is started":[null,""],"Send to trash for actions":[null,""],"when using show \"Remove\" and delete files":[null,""],"on scheduled deletes of the oldest log files":[null,""],"selected actions use trash (recycle bin) instead of the default permanent delete":[null,""],"Log file folder location":[null,"Günlük dosyası klasörünün konumu"],"Number of Log files saved":[null,"Kaydedilmiş günlük dosyası sayısı"],"number of log files saved when rotating logs (default: 5) (REQUIRES RESTART)":[null,""],"Size of Log files saved":[null,"Kaydedilmiş günlük dosyası boyutu"],"maximum size in MB of the log file (default: 1MB) (REQUIRES RESTART)":[null,""],"Use initial indexer set to":[null,""],"as the default selection when adding new shows":[null,"yeni diziler eklenirken varsayılan seçim olarak"],"Timeout show indexer at":[null,""],"seconds of inactivity when finding new shows (default:20)":[null,""],"Show root directories":[null,"Dizi kök klasörleri"],"where the files of shows are located":[null,"dizi dosyalarının bulunduğu yer"],"Save Changes":[null,"Değişiklikleri Kaydet"],"Options for software updates.":[null,"Yazılım güncelleştirmeleri için seçenekler."],"Check software updates":[null,"Yazılım Güncelleştirmeleri denetle"],"and display notifications when updates are available. Checks are run on startup and at the frequency set below*":[null,""],"Automatically update":[null,"Otomatik olarak güncelleştir"],"fetch and install software updates. Updates are run on startup and in the background at the frequency set below*":[null,""],"Check the server every*":[null,"Sunucuyu kontrol etme sıklığı*"],"hours for software updates (default:1)":[null,"saat de bir güncelle (varsayılan:1)"],"Notify on software update":[null,"Yazılım güncelleştirmesi olduğunda bildir"],"send a message to all enabled notifiers when SickRage has been updated":[null,"sickRage güncelleştirildiğinde tüm etkinleştirilmiş bildiricilere ileti yolla"],"User Interface":[null,"Kullanıcı Arayüzü"],"Options for visual appearance.":[null,"Görünüm için seçenekler."],"Interface Language":[null,"Arayüz Dili"],"System Language":[null,"Sistem Dili"],"for appearance to take effect, save then refresh your browser":[null,"görünümün değişebilmesi için kaydedip tarayıcınızı yenileyin"],"Display theme":[null,"Görünüm teması"],"Dark":[null,"Koyu"],"Light":[null,"Hafif"],"Use a background image":[null,""],"use a custom image as background for SickRage":[null,""],"Background Path":[null,""],"Path to the background image":[null,""],"Show fanart in the background":[null,"Hayranlar tarafından hazırlanan duvar kağıtlarını göster"],"on the show summary page":[null,"dizi özet sayfasında"],"Fanart transparency":[null,"Duvar kağıdı saydamlığı"],"transparency of the fanart in the background":[null,""],"Use a custom stylesheet file":[null,""],"use a custom .css file to style SickRage (for advanced users)":[null,""],"Stylesheet File Path":[null,""],"Path to the stylesheet (.css) file":[null,""],"Show all seasons":[null,"Tüm sezonları göster"],"Sort with \"The\", \"A\", \"An\"":[null,"\"The\", \"A\", \"An\" ile sırala"],"include articles (\"The\", \"A\", \"An\") when sorting show lists":[null,"dizi listesi sıralanırken (\"The\", \"A\", \"An\") ön ekleri gösterilir"],"Missed episodes range":[null,"Kaçırılan bölüm aralığı"],"set the range in days of the missed episodes in the Schedule page":[null,""],"Display fuzzy dates":[null,"Tarihleri bulanık biçimde göster"],"move absolute dates into tooltips and display e.g. \"Last Thu\", \"On Tue\"":[null,"kesin tarihleri ipuçlarına taşı ve göster örn. \"Geçen Perş\", \"Salı Günü\""],"Trim zero padding":[null,"Sıfır doldurmayı kısalt"],"remove the leading number \"0\" shown on hour of day, and date of month":[null,"öndeki \"0\" numarasını saat, gün ve aydan kaldır"],"Date style":[null,"Gün biçimi"],"Use System Default":[null,"Sistem Varsayılanını Kullan"],"Time style":[null,"Zaman biçimi"],"seconds are only shown on the History page":[null,""],"Timezone":[null,"Saat dilimi"],"Local":[null,"Yerel"],"Network":[null,"Ağ"],"display dates and times in either your timezone or the shows network timezone":[null,"gün ve saati sizin yerel saatinizde veya dizi kanalının yerel saatinde gösterir"],"use local timezone to start searching for episodes minutes after show ends (depends on your dailysearch frequency)":[null,""],"Download url":[null,"İndirme bağlantısı"],"URL where the shows can be downloaded.":[null,"Dizilerin indirilebileceği bağlantı."],"Web Interface":[null,"Web Arayüzü"],"it is recommended that you enable a username and password to secure SickRage from being tampered with remotely.":[null,""],"these options require a manual restart to take effect.":[null,""],"API key":[null,"API anahtarı"],"used to give 3rd party programs limited access to SickRage":[null,"3'üncü taraf uygulamaların SickRage'e sınırlı erişim hakkı kazanması için kullanılır"],"you can try all the features of the API":[null,"API'nin tüm özelliklerini deneyebilirsiniz"],"here":[null,"burada"],"HTTP logs":[null,"HTTP günlükleri"],"enable logs from the internal Tornado web server":[null,"dahili Tornado web sunucusu günlüklerini etkinleştir"],"HTTP username":[null,"HTTP kullanıcı adı"],"set blank for no login":[null,"oturum açmayı geçersiz kılmak için boş bırakın"],"HTTP password":[null,"HTTP şifresi"],"blank = no authentication":[null,"boş = kimlik doğrulaması yok"],"HTTP port":[null,"HTTP bağlantı noktası"],"web port to browse and access SickRage (default:8081)":[null,"SickRage arayüzüne ulaşmak için ağ bağlantı noktası (varsayılan:8081)"],"Notify on login":[null,"Oturum açıldığında bildir"],"enable to be notified when a new login happens in webserver":[null,"web sunucusuna yeni bir oturum açıldığında bildirim almak için etkinleştirin"],"Listen on IPv6":[null,"IPv6 üzerinde dinle"],"attempt binding to any available IPv6 address":[null,""],"Enable HTTPS":[null,"HTTPS'i Etkinleştir"],"enable access to the web interface using a HTTPS address":[null,""],"HTTPS certificate":[null,"HTTPS sertifikası"],"file name or path to HTTPS certificate":[null,"HTTPS sertifikası dosya adı veya konumu"],"HTTPS key":[null,"HTTPS anahtarı"],"file name or path to HTTPS key":[null,""],"Reverse proxy headers":[null,""],"accept the following reverse proxy headers (advanced)...":[null,""],"(X-Forwarded-For, X-Forwarded-Host, and X-Forwarded-Proto)":[null,""],"CPU throttling":[null,"CPU kullanımı"],"Normal (default). High is lower and Low is higher CPU use":[null,"Normal (varsayılan). Yüksek seçim daha düşük, Düşük seçim daha yüksek CPU kullanır"],"Anonymous redirect":[null,"Anonim yönlendirme"],"backlink protection via anonymizer service, must end in \"?\"":[null,""],"Enable debug":[null,"Hata ayıklamayı ektinleştir"],"enable debug logs":[null,""],"Verify SSL Certs":[null,"SSL Sertifikalarını Doğrula"],"verify SSL Certificates (Disable this for broken SSL installs (Like QNAP))":[null,""],"No Restart":[null,"Yeniden başlatma yok"],"only shutdown when restarting SR":[null,""],"only select this when you have external software restarting SR automatically when it stops (like FireDaemon)":[null,""],"Encrypt passwords":[null,"Parolaları şifrele"],"in the <code>config.ini</code> file":[null,""],"warning":[null,""],"passwords must only contain":[null,""],"ASCII characters":[null,"ASCII karakterleri"],"Unprotected calendar":[null,"Korumasız takvim"],"allow subscribing to the calendar without user and password":[null,""],"some services like Google Calendar only work this way":[null,""],"Google Calendar Icons":[null,"Google Takvim Simgeleri"],"show an icon next to exported calendar events in Google Calendar":[null,""],"Proxy host":[null,"Proxy sunucusu"],"blank to disable or proxy to use when connecting to providers":[null,""],"also use global proxy setting for indexers (tvdb, xem, anidb, etc.)":[null,""],"Skip Remove Detection":[null,"Kaldırma Algılamasını Atla"],"skip detection of removed files":[null,""],"if disabled the episode will be set to the default deleted status":[null,""],"Default deleted episode status":[null,"Varsayılan silinmiş bölüm durumu"],"define the status to be set for media file that has been deleted.":[null,""],"Archived option will keep previous downloaded quality":[null,"Arşivlenmiş seçeneği önceden indirilmiş kaliteyi sabit tutar"],"example: Downloaded (1080p WEB-DL) ==> Archived (1080p WEB-DL)":[null,""],"Options for github related features.":[null,""],"Branch version":[null,""],"error: No branches found.":[null,""],"select branch to use (restart required)":[null,""],"Authorization Type":[null,""],"Username and password":[null,""],"Personal access token":[null,""],"You must use a personal access token if you're using \"two-factor authentication\" on GitHub.":[null,""],"GitHub username":[null,"GitHub kullanıcı adı"],"*** (REQUIRED FOR SUBMITTING ISSUES) ***":[null,"*** (SORUN BİLDİRMEK İÇİN GEREKİR) ***"],"GitHub password":[null,"GitHub şifre"],"GitHub personal access token":[null,""],"Generate Token":[null,""],"Manage Tokens":[null,""],"GitHub remote for branch":[null,""],"access repo configured remotes (save then refresh browser)":[null,""],"default":[null,""],"origin":[null,""],"Git executable path":[null,"Git çalıştırılabilir dosya yolu"],"only needed if OS is unable to locate git from env":[null,"sadece, işletim sistemi çevre değişkenlerinden git programını konumlandıramazsa gereklidir"],"Git reset":[null,"Git sıfırla"],"removes untracked files and performs a hard reset on git branch automatically to help resolve update issues":[null,""],"Home Theater / NAS":[null,"Ev Tiyatrosu / NAS"],"Devices":[null,"Aygıtlar"],"Social":[null,"Sosyal"],"A free and open source cross-platform media center and home entertainment system software with a 10-foot user interface designed for the living-room TV.":[null,""],"send KODI commands?":[null,""],"Always on":[null,"Her zaman açık"],"log errors when unreachable?":[null,"ulaşılamadığında hataları günlüğe kaydedelim mi?"],"Notify on snatch":[null,"Yakalandığında bildir"],"send a notification when a download starts?":[null,"bir indirme işi başladığında bildirim gönderilsin mi?"],"Notify on download":[null,"İndirildiğinde bildir"],"send a notification when a download finishes?":[null,"bir indirme işi tamamlandığında bildirim gönderilsin mi?"],"Notify on subtitle download":[null,"Alt yazı indirildiğinde bildir"],"send a notification when subtitles are downloaded?":[null,"bir alt yazı indirildiğinde bildirim gönderilsin mi?"],"Update library":[null,"Kütüphaneyi güncelle"],"update KODI library when a download finishes?":[null,"bir indirme tamamlandığında KODI kütüphanesi güncellensin mi?"],"Full library update":[null,"Bütün kütüphaneyi güncelle"],"perform a full library update if update per-show fails?":[null,"dizi başına güncelleme başarısız olursa bütün kütüphane güncellensin mi?"],"Only update first host":[null,"Sadece ilk sunucuyu güncelle"],"only send library updates to the first active host?":[null,"kütüphane güncellemelerini sadece ilk aktif sunucuya göndereyim mi?"],"KODI IP:Port":[null,"KODI IP:Port"],"host running KODI (eg. 192.168.1.100:8080)":[null,"KODI çalıştıran sunucu (örn. 192.168.1.100:8080)"],"(multiple host strings must be separated by commas)":[null,"(birden çok sunucu adresi virgülle ayrılmalıdır)"],"Username":[null,"Kullanıcı adı"],"username for your KODI server (blank for none)":[null,"KODI sunucunuzun kullanıcı adı (yoksa boş bırakın)"],"Password":[null,"Şifre"],"password for your KODI server (blank for none)":[null,"KODI sunucunuzun şifresi (yoksa boş bırakın)"],"Click below to test.":[null,"Denemek için aşağıya tıklayın."],"Experience your media on a visually stunning, easy to use interface on your Mac connected to your TV. Your media library has never looked this good!":[null,""],"For sending notifications to Plex Home Theater (PHT) clients, use the KODI notifier with port <b>3005</b>.":[null,""],"send Plex Media Server library updates?":[null,""],"Plex Media Server Auth Token":[null,""],"auth token used by Plex":[null,""],"Update Library":[null,"Kütüphaneyi Güncelle"],"update Plex Media Server library when a download finishes":[null,""],"Plex Media Server IP:Port":[null,""],"one or more hosts running Plex Media Server<br/>(eg. 192.168.1.1:32400, 192.168.1.2:32400)":[null,""],"HTTPS":[null,"HTTPS"],"use https for plex media server requests?":[null,"plex media server için https isteği kullanır?"],"Click below to test Plex Media Server(s)":[null,""],"Test Plex Media Server":[null,"Plex Media Server'ı test et"],"Plex Home Theater":[null,"Plex ev sineması"],"send Plex Home Theater notifications?":[null,""],"Plex Home Theater IP:Port":[null,""],"one or more hosts running Plex Home Theater<br>(eg. 192.168.1.100:3000, 192.168.1.101:3000)":[null,""],"Click below to test Plex Home Theater(s)":[null,""],"Test Plex Home Theater":[null,""],"some Plex Home Theaters <b class=\"boldest\">do not</b> support notifications e.g. Plexapp for Samsung TVs":[null,""],"Emby":[null,""],"A home media server built using other popular open source technologies.":[null,""],"send update commands to Emby?":[null,""],"Emby IP:Port":[null,""],"host running Emby (eg. 192.168.1.100:8096)":[null,""],"Emby API Key":[null,""],"Networked Media Jukebox":[null,""],"The Networked Media Jukebox, or NMJ, is the official media jukebox interface made available for the Popcorn Hour 200-series.":[null,""],"send update commands to NMJ?":[null,""],"Popcorn IP address":[null,""],"IP address of Popcorn 200-series (eg. 192.168.1.100)":[null,""],"Get settings":[null,""],"Get Settings":[null,""],"the Popcorn Hour device must be powered on and NMJ running.":[null,""],"NMJ database":[null,""],"automatically filled via the 'Get Settings' button.":[null,""],"NMJ mount url":[null,""],"Networked Media Jukebox v2":[null,""],"The Networked Media Jukebox, or NMJv2, is the official media jukebox interface made available for the Popcorn Hour 300 & 400-series.":[null,""],"send update commands to NMJv2?":[null,""],"IP address of Popcorn 300/400-series (eg. 192.168.1.100)":[null,""],"Database location":[null,""],"Database instance":[null,""],"adjust this value if the wrong database is selected.":[null,""],"Find database":[null,""],"Find Database":[null,""],"the Popcorn Hour device must be powered on.":[null,""],"NMJv2 database":[null,""],"automatically filled via the 'Find Database' buttons.":[null,""],"Synology":[null,""],"The Synology DiskStation NAS.":[null,""],"Synology Indexer is the daemon running on the Synology NAS to build its media database.":[null,""],"send Synology notifications?":[null,""],"requires SickRage to be running on your Synology NAS.":[null,""],"Synology Indexer":[null,""],"Synology Notifier is the notification system of Synology DSM":[null,""],"send notifications to the Synology Notifier?":[null,""],"pyTivo":[null,""],"pyTivo is both an HMO and GoBack server. This notifier will load the completed downloads to your Tivo.":[null,""],"send notifications to pyTivo?":[null,""],"requires the downloaded files to be accessible by pyTivo.":[null,""],"pyTivo IP:Port":[null,""],"host running pyTivo (eg. 192.168.1.1:9032)":[null,""],"pyTivo share name":[null,""],"value used in pyTivo Web Configuration to name the share.":[null,""],"Tivo name":[null,""],"(Messages & Settings > Account & System Information > System Information > DVR name)":[null,""],"Growl":[null,""],"A cross-platform unobtrusive global notification system.":[null,""],"send Growl notifications?":[null,""],"Growl IP:Port":[null,""],"host running Growl (eg. 192.168.1.100:23053)":[null,""],"may leave blank if SickRage is on the same host.":[null,""],"otherwise Growl <b>requires</b> a password to be used.":[null,""],"Click below to register and test Growl, this is required for Growl notifications to work.":[null,""],"Register Growl":[null,""],"Prowl":[null,""],"A Growl client for iOS.":[null,""],"send Prowl notifications?":[null,""],"Prowl Message Title":[null,""],"Global Prowl API key(s)":[null,""],"Prowl API(s) listed here, separated by commas if applicable, will<br> receive notifications for <b>all</b> shows. Your Prowl API key is available at:":[null,""],"(this field may be blank except when testing.)":[null,""],"Show notification list":[null,"Dizi bildirim listesi"],"-- Select a Show --":[null,"-- Bir Dizi Seçin --"],"Configure per-show notifications here by entering Prowl API key(s), separated by commas, '\n 'after selecting a show in the drop-down box. Be sure to activate the 'Save for this show' '\n 'button below after each entry.":[null,""],"Save for this show":[null,"Bu dizi için kaydet"],"Prowl priority":[null,""],"Very Low":[null,"Çok Düşük"],"Moderate":[null,""],"Normal":[null,"Normal"],"High":[null,"Yüksek"],"Emergency":[null,"Acil Durum"],"priority of Prowl messages from SickRage.":[null,""],"Libnotify":[null,""],"The standard desktop notification API for Linux/*nix systems. This notifier will only function if the pynotify module is installed (Ubuntu/Debian package <a href=\"apt:python-notify\">python-notify</a>).":[null,""],"send Libnotify notifications?":[null,""],"Pushover":[null,""],"Pushover makes it easy to send real-time notifications to your Android and iOS devices.":[null,""],"send Pushover notifications?":[null,""],"Pushover key":[null,""],"user key of your Pushover account":[null,""],"Pushover API key":[null,""],"click here":[null,""]," to create a Pushover API key":[null,""],"Pushover devices":[null,""],"comma separated list of pushover devices you want to send notifications to":[null,""],"Pushover notification sound":[null,""],"Bike":[null,""],"Bugle":[null,""],"Cash Register":[null,""],"Classical":[null,""],"Cosmic":[null,""],"Falling":[null,""],"Gamelan":[null,""],"Incoming":[null,""],"Intermission":[null,""],"Magic":[null,""],"Mechanical":[null,""],"Piano Bar":[null,""],"Siren":[null,""],"Space Alarm":[null,""],"Tug Boat":[null,""],"Alien Alarm (long)":[null,""],"Climb (long)":[null,""],"Persistent (long)":[null,""],"Pushover Echo (long)":[null,""],"Up Down (long)":[null,""],"None (silent)":[null,""],"Device specific":[null,""],"choose notification sound to use":[null,""],"Pushover priority":[null,""],"Choose priority to use":[null,""],"Boxcar 2":[null,""],"Read your messages where and when you want them!":[null,""],"send Boxcar notifications?":[null,""],"Boxcar2 access token":[null,""],"access token for your Boxcar account.":[null,""],"NMA":[null,""],"Notify My Android":[null,""],"Notify My Android is a Prowl-like Android App and API that offers an easy way to send notifications from your application directly to your Android device.":[null,""],"send NMA notifications?":[null,""],"NMA API key":[null,""],"(multiple keys must be separated by commas, up to a maximum of 5)":[null,""],"NMA priority":[null,""],"priority of NMA messages from SickRage.":[null,""],"Pushalot":[null,""],"Pushalot is a platform for receiving custom push notifications to connected devices running Windows Phone or Windows 8.":[null,""],"send Pushalot notifications ?":[null,""],"Pushalot authorization token":[null,""],"authorization token of your Pushalot account.":[null,""],"Pushbullet":[null,""],"Pushbullet is a platform for receiving custom push notifications to connected devices running Android/iOS and desktop browsers such as Chrome, Firefox or Opera.":[null,""],"send Pushbullet notifications?":[null,""],"Pushbullet API key":[null,"Pushbullet API anahtarı"],"API key of your Pushbullet account":[null,"Pushbullet hesabınızın API anahtarı"],"Pushbullet devices":[null,"Pushbullet aygıtları"],"Update device list":[null,"Aygıt listesini güncelle"],"Pushbullet channels":[null,"Pushbullet kanalları"],"Free Mobile":[null,""],"Free Mobile is a famous French cellular network provider.<br> It provides to their customer a free SMS API.":[null,""],"send SMS notifications?":[null,""],"send a SMS when a download starts?":[null,""],"send a SMS when a download finishes?":[null,""],"send a SMS when subtitles are downloaded?":[null,""],"Free Mobile customer ID":[null,""],"it's your Free Mobile customer ID (8 digits)":[null,""],"Free Mobile API key":[null,""],"find your API key in your customer portal.":[null,""],"Click below to test your settings.":[null,"Ayarlarınızı denemek için aşağıya tıklayın."],"Telegram":[null,""],"Telegram is a cloud-based instant messaging service.":[null,""],"send Telegram notifications?":[null,""],"send a message when a download starts?":[null,""],"send a message when a download finishes?":[null,""],"send a message when subtitles are downloaded?":[null,""],"User/group ID":[null,"Kullanıcı/grup Kimliği"],"contact @myidbot on Telegram to get an ID":[null,""],"Bot API token":[null,""],"contact @BotFather on Telegram to set up one":[null,""],"Join":[null,""],"Join all of your devices together!":[null,""],"send Join notifications?":[null,""],"Device ID":[null,""],"per device specific id":[null,""]," to create a Join API key":[null,""],"Twilio":[null,""],"Twilio is a webservice API that allows you to communicate directly with a mobile number. This notifier will send a text directly to your mobile device.":[null,""],"should SickRage text your mobile device?":[null,""],"Twilio Account SID":[null,""],"account SID of your Twilio account.":[null,""],"Twilio Auth Token":[null,""],"Twilio Phone SID":[null,""],"phone SID that you would like to send the sms from":[null,""],"Your phone number":[null,""],"phone number that will receive the sms. Please use the format +1-###-###-####":[null,""],"Twitter":[null,""],"A social networking and microblogging service, enabling its users to send and read other users' messages called tweets.":[null,""],"should SickRage post tweets on Twitter?":[null,""],"you may want to use a secondary account.":[null,""],"send direct message":[null,""],"send a notification via Direct Message, not via status update":[null,""],"send DM to":[null,""],"Twitter account to send Direct Messages to (must follow you)":[null,""],"Step One":[null,""],"Request Authorization":[null,""],"Click the \"Request Authorization\" button.<br> This will open a new page containing an auth key.<br> <b>note:</b> if nothing happens check your popup blocker.":[null,""],"Step Two":[null,""],"Enter the key Twitter gave you below, and click \"Verify Key\".":[null,""],"Trakt":[null,""],"Trakt helps keep a record of what TV shows and movies you are watching. Based on your favorites, Trakt recommends additional shows and movies you'll enjoy!":[null,""],"send Trakt.tv notifications?":[null,""],"username of your Trakt account.":[null,""],"Trakt PIN":[null,""],"Get Trakt PIN":[null,""],"PIN code to authorize SickRage to access Trakt on your behalf.":[null,""],"API Timeout":[null,""],"seconds to wait for Trakt API to respond. (Use 0 to wait forever)":[null,""],"Default indexer":[null,"Varsayılan dizin oluşturucu"],"Sync libraries":[null,"Kütüphaneleri Eşitle"],"sync your SickRage show library with your trakt show library.":[null,"SickRage dizi kütüphanenizi trakt dizi kütüphanenizle eşitleyin."],"Remove Episodes From Collection":[null,"Bölümleri Koleksiyondan Kaldır"],"remove an episode from your Trakt Collection if it is not in your SickRage Library.":[null,""],"Sync watchlist":[null,"İzleme Listesini Eşitle"],"sync your SickRage show watchlist with your trakt show watchlist (either Show and Episode).":[null,""],"episode will be added on watch list when wanted or snatched and will be removed when downloaded ":[null,""],"Watchlist add method":[null,""],"Skip All":[null,"Tümünü Atla"],"Download Pilot Only":[null,"Sadece pilot bölümü al"],"Get whole show":[null,"Tüm diziyi al"],"method in which to download episodes for new shows.":[null,"yeni diziler için indirme tekniği."],"Remove episode":[null,"Bölümü kaldır"],"remove an episode from your watchlist after it is downloaded.":[null,"bir bölüm indirildikten sonra izleme listenizden kaldırılacak."],"Remove series":[null,""],"remove the whole series from your watchlist after any download.":[null,""],"Remove watched show":[null,""],"remove the show from sickrage if it's ended and completely watched":[null,""],"Start paused":[null,""],"shows grabbed from your trakt watchlist start paused.":[null,""],"Trakt blackList name":[null,""],"name (slug) of list on Trakt for blacklisting show on 'Add Trending Show' & 'Add Recommended Shows' pages":[null,""],"Email":[null,""],"Allows configuration of email notifications on a per show basis.":[null,""],"send email notifications?":[null,""],"SMTP host":[null,""],"hostname of your SMTP email server.":[null,""],"SMTP port":[null,""],"port number used to connect to your SMTP host.":[null,""],"SMTP from":[null,""],"sender email address, some hosts require a real address.":[null,""],"Use TLS":[null,""],"check to use TLS encryption.":[null,""],"SMTP user":[null,""],"(optional) your SMTP server username.":[null,""],"SMTP password":[null,""],"(optional) your SMTP server password.":[null,""],"Global email list":[null,""],"email addresses listed here, separated by commas if applicable, will<br> receive notifications for <b>all</b> shows.":[null,""],"(This field may be blank except when testing.)":[null,""],"Email Subject":[null,""],"use a custom subject for some privacy protection?":[null,""],"(leave blank for the default SickRage subject)":[null,""],"configure per-show notifications here by entering email address(es), separated by commas,":[null,""],"after selecting a show in the drop-down box. Be sure to activate the 'Save for this show'":[null,""],"button below after each entry.":[null,""],"Slack":[null,""],"Slack brings all your communication together in one place. It's real-time messaging, archiving and search for modern teams.":[null,""],"should SickRage post messages on Slack?":[null,""],"Slack Incoming Webhook":[null,""],"Discord":[null,""],"All-in-one voice and text chat for gamers that's free, secure, and works on both your desktop and phone.":[null,""],"Should SickRage post messages on Discord?":[null,""],"Discord Incoming Webhook":[null,""],"Create webhook under channel settings.":[null,""],"Discord Bot Name":[null,""],"Blank will use webhook default Name.":[null,""],"Discord Avatar URL":[null,""],"Blank will use webhook default Avatar.":[null,""],"Discord TTS":[null,""],"Send notifications using text-to-speech":[null,""],"Post-Processing":[null,"Son-İşlem"],"Episode Naming":[null,"Bölüm İsimlendirme"],"Metadata":[null,"Meta Veri"],"Settings that dictate how SickRage should process completed downloads.":[null,"Tamamlanmış indirmelere SickRage tarafından ne yapılacağını belirler."],"enable the automatic post processor to scan and process any files in your Post Processing Dir":[null,""],"do not use if you use an external Post Processing script":[null,""],"Post Processing Dir":[null,"Son İşlem Klasörü"],"the folder where your download client puts the completed TV downloads.":[null,""],"please use seperate downloading and completed folders in your download client if possible.":[null,""],"Processing Method":[null,"İşleme Yöntemi"],"what method should be used to put files into the library?":[null,""],"if you keep seeding torrents after they finish, please avoid the 'move' processing method to prevent errors.":[null,""],"Auto Post-Processing Frequency":[null,"Otomatik Son-İşlem Sıklığı"],"time in minutes to check for new files to auto post-process (min 10)":[null,""],"Postpone post processing":[null,"Son İşlemi ertele"],"wait to process a folder if sync files are present.":[null,""],"Sync File Extensions":[null,""],"comma seperated list of extensions or filename globs SickRage ignores when Post Processing":[null,""],"Rename Episodes":[null,""],"rename episode using the Episode Naming settings?":[null,""],"Create missing show directories":[null,""],"create missing show directories when they get deleted":[null,""],"Add shows without directory":[null,""],"add shows without creating a directory (not recommended)":[null,""],"Move associated files":[null,""],"move associated (srt/srr/sfv/etc) files while post processing?":[null,""],"Rename .nfo file":[null,".nfo dosyasını yeniden adlandır"],"rename the original .nfo file to .nfo-orig to avoid conflicts?":[null,""],"Associated file extensions":[null,""],"comma separated list of associated file extensions SickRage should keep while post processing.":[null,""],"leaving it empty means no associated files will be post processed":[null,""],"Delete non associated files":[null,""],"delete non associated files while post processing?":[null,""],"Change File Date":[null,"Dosya Tarihini Değiştir"],"set last modified filedate to the date that the episode aired?":[null,""],"some systems may ignore this feature.":[null,""],"Timezone for File Date":[null,"Dosya Tarihi için Saat Dilimi"],"local":[null,"yerel"],"network":[null,"ağ"],"what timezone should be used to change File Date?":[null,""],"Unpack":[null,"Arşivden çıkart"],"What to do with archived releases found in your <i>TV Download Dir</i>?":[null,""],"Ignore (do not process contents)":[null,""],"Unpack (process contents)":[null,""],"Treat as video (process archive as-is)":[null,""],"'Unpack' only works with RAR archives":[null,""],"Windows":[null,""],"WinRar is required on windows":[null,""],"Unpack Directory":[null,""],"Choose a path to unpack files, leave blank to unpack in download dir":[null,""],"Unrar Location":[null,""],"add the path to unrar if it is not in the system path":[null,""],"Alternate Unrar Tool":[null,""],"add the path to an alternate unrar tool if it is not in the system path":[null,""],"Delete RAR contents":[null,"RAR içeriğini sil"],"delete content of RAR files, even if Process Method not set to move?":[null,""],"only working with RAR archive":[null,""],"Don't delete empty folders":[null,"Boş klasörleri silme"],"leave empty folders when Post Processing?":[null,""],"can be overridden using manual Post Processing":[null,""],"Follow symbolic-links":[null,""],"follow down symbolic links in download directory?":[null,""],"<b>EXPERTS ONLY.</b><br>Enable only if you know what <b>circular symbolic links</b> are,<br>and can <b>verify that you have none</b>.":[null,""],"Use icacls":[null,""],"Windows only":[null,""],"sets video permissions after using the move method in post processing":[null,""],"Extra Scripts":[null,"İlave komut dosyaları"],"see":[null,""],"for script arguments description and usage.":[null,"betik kullanımı tanımlamaları ve kullanım."],"How SickRage will name and sort your episodes.":[null,"Bölümleriniz SickRage tarafından nasıl isimlendirilecek ve sıralanacak."],"Name Pattern":[null,"İsim Deseni"],"Toggle Naming Legend":[null,""],"don't forget to add quality pattern. Otherwise after post-processing the episode will have UNKNOWN quality":[null,""],"Meaning":[null,"Anlam"],"Pattern":[null,"Desen"],"Result":[null,"Sonuç"],"Use lower case if you want lower case names (eg. %sn, %e.n, %q_n etc)":[null,"Küçük harfli isimler istiyorsanız küçük harf kullanın (örn. %sn, %e.n, %q_n vb)"],"Show Name":[null,"Dizi İsmi"],"Show.Name":[null,"Dizi.İsmi"],"Show_Name":[null,"Dizi_İsmi"],"Season Number":[null,"Sezon Numarası"],"XEM Season Number":[null,"XEM Sezon Numarası"],"Episode Number":[null,"Bölüm Numarası"],"XEM Episode Number":[null,"XEM Bölüm Numarası"],"Episode Name":[null,"Bölüm Adı"],"Episode.Name":[null,"Bölüm.Adı"],"Episode_Name":[null,"Bölüm_Adı"],"Air Date":[null,"Yayın Tarihi"],"Post-Processing Date":[null,"Son-İşlem Tarihi"],"Quality":[null,"Kalite"],"Scene Quality":[null,"Sahne Kalitesi"],"Release Name":[null,"Yayın İsmi"],"SickRage' is used in place of RLSGROUP if it could not be properly detected":[null,""],"Release Group":[null,"Yayın Grubu"],"If episode is proper/repack add 'proper' to name.":[null,""],"Release Type":[null,"Yayın Türü"],"Multi-Episode Style":[null,""],"Single-EP Sample":[null,""],"Multi-EP sample":[null,""],"Strip Show Year":[null,""],"remove the TV show's year when renaming the file?":[null,""],"only applies to shows that have year inside parentheses":[null,""],"Custom Air-By-Date":[null,""],"name air-by-date shows differently than regular shows?":[null,""],"Toggle ABD Naming Legend":[null,""],"Regular Air Date":[null,""],"Year":[null,"Yıl"],"Month":[null,"Ay"],"Day":[null,"Gün"],"Multi-EP style is ignored":[null,""],"Custom Sports":[null,""],"name sports shows differently than regular shows?":[null,""],"Toggle Sports Naming Legend":[null,""],"Sports Air Date":[null,""],"Custom Anime":[null,""],"name anime shows differently than regular shows?":[null,""],"Toggle Anime Naming Legend":[null,""],">XEM Season Number":[null,""],"Single-EP Anime Sample":[null,""],"Multi-EP Anime sample":[null,""],"Add Absolute Number":[null,""],"add the absolute number to the season/episode format?":[null,""],"only applies to anime. (eg. S15E45 - 310 vs S15E45)":[null,""],"Only Absolute Number":[null,""],"replace season/episode format with absolute number":[null,""],"only applies to anime.":[null,""],"No Absolute Number":[null,""],"don't include the absolute number":[null,""],"The data associated to the data. These are files associated to a TV show in the form of images and text that, when supported, will enhance the viewing experience.":[null,""],"Metadata Type":[null,""],"toggle metadata options that you wish to be created":[null,""],"multiple targets may be used":[null,""],"Select Metadata":[null,""],"Provider Priorities":[null,""],"Provider Options":[null,""],"Configure Custom Newznab Providers":[null,""],"Configure Custom Torrent Providers":[null,""],"Check off and drag the providers into the order you want them to be used.":[null,""],"At least one provider is required but two are recommended.":[null,""],"Torrent providers can be toggled in ":[null,""],"Provider does not support backlog searches at this time.":[null,""],"Provider is <b>NOT WORKING</b>.":[null,""],"Configure individual provider settings here.":[null,""],"Check with provider's website on how to obtain an API key if needed.":[null,""],"Configure provider":[null,""],"no providers available to configure.":[null,""],"URL":[null,""],"Enable daily searches":[null,""],"enable provider to perform daily searches.":[null,""],"Enable backlog searches":[null,""],"enable provider to perform backlog searches.":[null,""],"Season search mode":[null,"Sezon arama yöntemi"],"when searching for complete seasons you can choose to have it look for season packs only, or choose to have it build a complete season from just single episodes.":[null,""],"season packs only.":[null,"sadece sezon paketleri."],"episodes only.":[null,"sadece bölümler."],"Enable fallback":[null,""],"when searching for a complete season depending on search mode you may return no results, this helps by restarting the search using the opposite search mode.":[null,""],"Custom URL":[null,""],"the URL should include the protocol (and port if applicable). Examples: http://192.168.1.4/ or http://localhost:3000/":[null,""],"Api key":[null,"Api anahtarı"],"Digest":[null,""],"Hash":[null,""],"Passkey":[null,""],"Cookies":[null,"Çerezler"],"example: uid=1234;pass=567845439634987<br>note: uid and pass are not your username/password.<br>use DevTools or Firebug to get these values after logging in on your browser.":[null,""],"Pin":[null,""],"Seed ratio":[null,"Dağıtım oranı"],"stop transfer when ratio is reached<br>(-1 SickRage default to seed forever, or leave blank for downloader default)":[null,""],"Minimum seeders":[null,"Asgari dağıtıcı"],"Minimum leechers":[null,"Asgari alıcı"],"Confirmed download":[null,"Teyit edilmiş indirme"],"only download torrents from trusted or verified uploaders ?":[null,"torrent dosyalarını sadece güvenilir ve teyit edilmiş yükleyicilerden indir ?"],"Ranked torrents":[null,""],"only download ranked torrents (trusted releases)":[null,""],"English torrents":[null,""],"only download english torrents, or torrents containing english subtitles":[null,""],"For Spanish torrents":[null,""],"ONLY search on this provider if show info is defined as \"Spanish\" (avoid provider's use for VOS shows)":[null,""],"Sorting results by":[null,""],"Freeleech":[null,""],"only download <b>\"FreeLeech\"</b> torrents.":[null,""],"Category":[null,"Kategori"],"select torrent with Italian subtitle":[null,""],"Configure Custom<br>Newznab Providers":[null,""],"Add and setup or remove custom Newznab providers.":[null,""],"Select provider":[null,"Sağlayıcı seçin"],"-- add new provider --":[null,"-- yeni sağlayıcı ekle --"],"Provider name":[null,"Sağlayıcı adı"],"Site URL":[null,"Site Adresi"],"Newznab search categories":[null,""],"select your Newznab categories on the left, and click the \"update categories\" button to use them for searching.) <b>don't forget to to save the form!":[null,""],"Update Categories":[null,"Kategorileri Güncelle"],"Add":[null,"Ekle"],"Delete":[null,"Sil"],"Add and setup or remove custom RSS providers.":[null,""],"RSS URL":[null,""],"Search element":[null,""],"eg: title":[null,"örn: başlık"],"Episode Search":[null,"Bölüm Araması"],"NZB Search":[null,"NZB Araması"],"Torrent Search":[null,"Torrent Araması"],"How to manage searching with":[null,"Arama işinin nasıl idare edileceği"],"Randomize Providers":[null,""],"randomize the provider search order instead of going in order of placement":[null,""],"Download propers":[null,""],"replace original download with \"Proper\" or \"Repack\" if nuked":[null,""],"Check propers every":[null,""],"24 hours":[null,""],"4 hours":[null,""],"90 mins":[null,""],"45 mins":[null,""],"15 mins":[null,""],"Backlog search day(s)":[null,""],"number of day(s) that the \"Forced Backlog Search\" will cover (e.g. 7 Days)":[null,""],"Backlog search frequency":[null,""],"time in minutes between searches (min.":[null,""],"Daily search frequency":[null,""],"Usenet retention":[null,""],"age limit in days for usenet articles to be used (e.g. 500)":[null,""],"Ignore words":[null,""],"results with one or more word from this list will be ignored<br>separate words with a comma, e.g. \"word1,word2,word3\"":[null,""],"Require words":[null,""],"results with no word from this list will be ignored<br>separate words with a comma, e.g. \"word1,word2,word3\"":[null,""],"Trackers list":[null,""],"trackers that will be added to magnets without trackers<br>separate trackers with a comma, e.g. \"tracker1,tracker2,tracker3\"":[null,""],"Ignore language names in subbed results":[null,""],"ignore subbed releases based on language names <br>\n Example: \"dk\" will ignore words: dksub, dksubs, dksubbed, dksubed <br>\n separate languages with a comma, e.g. \"lang1,lang2,lang3":[null,""],"Allow high priority":[null,"Yüksek önceliğe izin ver"],"set downloads of recently aired episodes to high priority":[null,"yeni yayınlanmış bölümlerin indirilmesinde yüksek öncelik olsun"],"Use Failed Downloads":[null,""],"use Failed Download Handling?":[null,""],"will only work with snatched/downloaded episodes after enabling this":[null,""],"Delete Failed":[null,"Başarısız olanları Sil"],"delete files left over from a failed download?":[null,""],"this only works if Use Failed Downloads is enabled.":[null,""],"How to handle NZB search results.":[null,""],"Search NZBs":[null,""],"enable NZB search providers":[null,""],"Send .nzb files to":[null,""],"SABnzbd server URL":[null,""],"URL to your SABnzbd server (e.g. http://localhost:8080/)":[null,""],"SABnzbd username":[null,""],"(blank for none)":[null,""],"SABnzbd password":[null,""],"SABnzbd API key":[null,""],"locate at... SABnzbd Config -> General -> API Key":[null,""],"Use SABnzbd category":[null,""],"add downloads to this category (e.g. TV)":[null,""],"Use SABnzbd category (backlog episodes)":[null,""],"add downloads of old episodes to this category (e.g. TV)":[null,""],"Use SABnzbd category for anime":[null,""],"add anime downloads to this category (e.g. anime)":[null,""],"Use SABnzbd category for anime (backlog episodes)":[null,""],"add anime downloads of old episodes to this category (e.g. anime)":[null,""],"Use forced priority":[null,""],"enable to change priority from HIGH to FORCED":[null,""],"Black hole folder location":[null,""],"<b>.nzb</b> files are stored at this location for external software to find and use":[null,""],"Connect using HTTPS":[null,""],"enable Secure control in NZBGet and set the correct Secure Port here":[null,""],"NZBget host:port":[null,""],"(e.g. localhost:6789)":[null,""],"NZBget RPC host name and port number (not NZBgetweb!)":[null,""],"NZBget username":[null,""],"locate in nzbget.conf (default:nzbget)":[null,""],"NZBget password":[null,""],"locate in nzbget.conf (default:tegbzn6789)":[null,""],"Use NZBget category":[null,""],"send downloads marked this category (e.g. TV)":[null,""],"Use NZBget category (backlog episodes)":[null,""],"send downloads of old episodes marked this category (e.g. TV)":[null,""],"Use NZBget category for anime":[null,""],"send anime downloads marked this category (e.g. anime)":[null,""],"Use NZBget category for anime (backlog episodes)":[null,""],"send anime downloads of old episodes marked this category (e.g. anime)":[null,""],"NZBget priority":[null,""],"Very low":[null,"Çok düşük"],"Low":[null,"Düşük"],"Very high":[null,"Çok yüksek"],"Force":[null,""],"priority for daily snatches (no backlog)":[null,"günlük yakalama için öncelik (biriktirme listesi olmadan)"],"Torrent host:port":[null,""],"URL to your Synology DSM (e.g. http://localhost:5000/)":[null,""],"Client username":[null,""],"Client password":[null,""],"Downloaded files location":[null,""],"where Synology Download Station will save downloaded files (blank for client default)":[null,""],"the destination has to be a shared folder for Synology DS":[null,""],"Click below to test":[null,"Denemek için aşağı tıklayın"],"How to handle Torrent search results.":[null,""],"Search torrents":[null,""],"enable torrent search providers":[null,""],"Send .torrent files to":[null,""],"<b>.torrent</b> files are stored at this location for external software to find and use":[null,""],"URL to your torrent client (e.g. http://localhost:8000/)":[null,""],"Torrent RPC URL":[null,""],"the path without leading and trailing slashes (e.g. transmission)":[null,""],"Http Authentication":[null,""],"Verify certificate":[null,""],"disable if you get \"Deluge: Authentication Error\" in your log":[null,""],"verify SSL certificates for HTTPS requests":[null,""],"Add label to torrent":[null,""],"(blank spaces are not allowed)":[null,"(boşluklara izin verilmez)"],"label plugin must be enabled in Deluge clients":[null,""],"for QBitTorrent 3.3.1 and up":[null,""],"Add label to torrent for anime":[null,""],"for QBitTorrent 3.3.1 and up ":[null,""],"where <span id=\"torrent_client\">the torrent client</span> will save downloaded files (blank for client default)":[null,""],"the destination has to be a shared folder for Synology DS</span>":[null,""],"Minimum seeding time":[null,""],"time in hours":[null,""],"(default:'0' passes blank to client and '-1' passes nothing)":[null,""],"Start torrent paused":[null,""],"add .torrent to client but do <b style=\"font-weight:900\">not</b> start downloading":[null,""],"Allow high bandwidth":[null,"Yüksek bant genişliğine izin ver"],"use high bandwidth allocation if priority is high":[null,"öncelik yüksek ise yüksek bant genişliği kullan"],"Test Connection":[null,""],"Windows Shares":[null,""],"Defines your existing windows shares so that we can add them to the browse dialog":[null,""],"Share #{number}":[null,""],"Share label":[null,""],"Hostname or IP":[null,""],"Share path":[null,""],"Subtitles Search":[null,"Alt Yazı Arama"],"Subtitles Plugin":[null,"Alt Yazı Eklentisi"],"Plugin Settings":[null,"Eklenti Ayarları"],"Settings that dictate how SickRage handles subtitles search results.":[null,"SickRage'in alt yazı arama sonuçlarını nasıl ele alacağını belirleyen seçenekler."],"Search Subtitles":[null,"Alt Yazıları Ara"],"Subtitle Languages":[null,"Alt Yazı Dilleri"],"Subtitle Directory":[null,"Alt Yazı Klasörü"],"the directory where SickRage should store your <i>Subtitles</i> files.":[null,""],"leave empty if you want store subtitle in episode path.":[null,""],"Subtitle Find Frequency":[null,"Alt Yazı Bulma Sıklığı"],"time in hours between scans (default: 1)":[null,"taramalar arası geçecek saat (varsayılan: 1)"],"Include Specials":[null,""],"include the show's specials when searching for subtitles?":[null,""],"Perfect matches":[null,"Mükemmel eşleşmeler"],"only download subtitles that match: release group, video codec, audio codec and resolution":[null,""],"if disabled you may get out of sync subtitles":[null,""],"Subtitles History":[null,""],"log downloaded Subtitle on History page?":[null,""],"Subtitles Multi-Language":[null,""],"append language codes to subtitle filenames?":[null,""],"this option is required if you use multiple subtitle languages":[null,""],"Delete unwanted subtitles":[null,""],"enable to delete unwanted subtitle languages bundled with release":[null,""],"Embedded Subtitles":[null,"Gömülü Alt Yazılar"],"ignore subtitles embedded inside video file?":[null,""],"this will ignore <u>all</u> embedded subtitles for every video file!":[null,""],"Hearing Impaired Subtitles":[null,"İşitme Engelliler için Alt Yazılar"],"download hearing impaired style subtitles?":[null,""],"See":[null,""],"for a script arguments description.":[null,""],"Additional scripts separated by <b>|</b>.":[null,""],"Scripts are called after each episode has searched and downloaded subtitles.":[null,""],"For any scripted languages, include the interpreter executable before the script. See the following example":[null,""],"For Windows:":[null,""],"For Linux / OS X:":[null,""],"Subtitle Providers":[null,"Alt Yazı Sağlayıcıları"],"Check off and drag the plugins into the order you want them to be used.":[null,""],"At least one plugin is required.":[null,"En az bir eklenti gereklidir."]," Web-scraping plugin":[null,""],"Provider Settings":[null,""],"Set user and password for each provider":[null,""],"User Name":[null,"Kullanıcı Adı"],"Change Show":[null,"Diziyi Değiştir"],"Prev Show":[null,"Önceki Dizi"],"Next Show":[null,"Sonraki Dizi"],"Jump to Season":[null,"Sezona Atla"],"Specials":[null,"Özeller"],"Poster for":[null,""],"Stars":[null,""],"minutes":[null,"dakika"],"View other popular {genre} shows on trakt.tv.":[null,""],"View other popular {imdbgenre} shows on IMDB.":[null,""],"Allowed":[null,"İzin Verilen"],"Preferred":[null,"Tercih Edilen"],"Originally Airs":[null,"Özgün Yayınlanış"],"Show Status":[null,"Dizi Durumu"],"Default EP Status":[null,"Varsayılan Bölüm Durumu"],"Location":[null,"Konum"],"Missing":[null,"Eksik"],"Scene Name":[null,"Sahne Adı"],"Required Words":[null,"Gerekli Kelimeler"],"Ignored Words":[null,"Dikkate Alınmayan Kelimeler"],"Size":[null,"Boyut"],"Info Language":[null,"Bilgi Dili"],"Subtitles SR Metadata":[null,""],"Season Folders":[null,"Sezon Klasörleri"],"Paused":[null,"Duraksatılmış"],"Air-by-Date":[null,"Tarihe-göre-Yayın"],"Sports":[null,"Spor"],"DVD Order":[null,"DVD Sırası"],"Scene Numbering":[null,"Sahne Numaralandırması"],"Select Filtered Episodes":[null,"Filtrelenmiş Bölümleri Seç"],"Clear All":[null,"Tümünü Temizle"],"Change selected episodes to":[null,"Seçilen bölümleri değiştir"],"Select Columns":[null,"Sütunları Seç"],"NFO":[null,"NFO"],"TBN":[null,""],"Episode":[null,"Bölüm"],"Absolute":[null,"Mutlak"],"Scene":[null,"Sahne"],"Scene Absolute":[null,""],"File Name":[null,""],"Airdate":[null,"Yayın tarihi"],"Download":[null,""],"Change the value here if scene numbering differs from the indexer episode numbering":[null,""],"Change the value here if scene absolute numbering differs from the indexer absolute numbering":[null,""],"Manual Search":[null,"El ile arama"],"Do you want to mark this episode as failed?":[null,""],"The episode release name will be added to the failed history, preventing it to be downloaded again.":[null,""],"Do you want to include the current episode quality in the search?":[null,""],"Choosing No will ignore any releases with the same episode quality as the one currently downloaded/snatched.":[null,""],"Download subtitle":[null,""],"Do you want to re-download the subtitle for this language?":[null,""],"It will overwrite your current subtitle":[null,""],"Format":[null,""],"Advanced":[null,""],"Main Settings":[null,"Ana Ayarlar"],"Show Location":[null,"Dizi Konumu"],"Preferred Quality":[null,"Tercih edilen Kalite"],"Default Episode Status":[null,"Varsayılan Bölüm Durumu"],"this will set the status for future episodes.":[null,""],"this only applies to episode filenames and the contents of metadata files.":[null,""],"search for subtitles":[null,"alt yazıları ara"],"Use SR Metdata":[null,""],"use SickRage metadata when searching for subtitle, this will override the autodiscovered metadata":[null,""],"pause this show (SickRage will not download episodes)":[null,"bu diziyi duraksat (SickRage bölümleri indirmeyecek)"],"Format Settings":[null,""],"Air by date":[null,"Tarihe göre yayınlanma"],"check if the show is released as Show.03.02.2010 rather than Show.S02E03.":[null,"dizinin Diziadı.S02E03 yerine Diziadı.03.02.2010 şeklinde yayınlandığını doğrula."],"in case of an air date conflict between regular and special episodes, the later will be ignored.":[null,""],"check if the show is Anime and episodes are released as Show.265 rather than Show.S02E03":[null,"dizinin bir Anime olduğunu ve Diziadı.S02E03 yerine Diziadı.265 şeklinde yayınlandığını doğrula"],"check if the show is a sporting or MMA event released as Show.03.02.2010 rather than Show.S02E03":[null,""],"Season folders":[null,"Sezon klasörleri"],"group episodes by season folder (uncheck to store in a single folder)":[null,""],"search by scene numbering (uncheck to search by indexer numbering)":[null,""],"use the DVD order instead of the air order":[null,""],"a \"Force Full Update\" is necessary, and if you have existing episodes you need to sort them manually.":[null,""],"comma-separated <i>e.g. \"word1,word2,word3</i>\"":[null,""],"search results with one or more words from this list will be ignored.":[null,""],"e.g. \"word1,word2,word3\"":[null,""],"search results with no words from this list will be ignored.":[null,""],"Scene Exception":[null,""],"this will affect episode search on NZB and torrent providers.":[null,""],"this list appends to the original show name.":[null,""],"WARNING logs":[null,"UYARI günlükleri"],"ERROR logs":[null,"HATA günlükleri"],"There are no events to display.":[null,"Gösterilecek bir etkinlik yok."],"Limit":[null,"Sınır"],"Layout":[null,"Desen"],"HistoryLayout":[null,"TakvimDeseni"],"Compact":[null,"Küçük"],"Detailed":[null,"Detaylı"],"Time":[null,"Zaman"],"Provider":[null,"Sağlayıcı"],"Missing Provider":[null,"Eksik Sağlayıcı"],"missing provider":[null,"eksik sağlayıcı"],"Directory":[null,"Klasör"],"Show Name (tvshow.nfo)":[null,"Dizi Adı (tvshow.nfo)"],"Indexer":[null,"Dizin Oluşturucu"],"Enter the folder containing the episode":[null,"Bölümü içeren klasörü girin"],"Process Method to be used":[null,"Kullanılacak işleme yöntemi"],"Copy":[null,"Kopyala"],"Move":[null,"Taşı"],"Hard Link":[null,"Sabit Bağlantı"],"Symbolic Link":[null,"Sembolik Bağlantı"],"Symbolic Link Reversed":[null,""],"Force already Post Processed Dir/Files":[null,"Önceden Son işleme tutulmuş Klsr/Dosyları da tekrar işleme zorla"],"Mark Dir/Files as priority download":[null,"Klsr/Dsyaları öncelikli indirme olarak işaretle"],"(Check it to replace the file even if it exists at higher quality)":[null,"(hatta mevcut dosya daha kaliteliyse bile bununla üzerine yaz)"],"Delete files and folders":[null,"Dosya ve klasörleri sil"],"(Check it to delete files and folders like auto processing)":[null,"(Otomatik Son-İşlem'de olduğu gibi dosya ve klasörleri sil)"],"Don't use processing queue":[null,""],"(If checked this will return the result of the process here, but may be slow!)":[null,""],"Mark download as failed":[null,"İndirmeyi başarısız olarak işaretle"],"Process":[null,"İşle"],"Download subtitles for this show?":[null,"Bu dizi için alt yazılar indirilsin mi?"],"use SickRage metadata when searching for subtitle, <br />this will override the autodiscovered metadata":[null,""],"Status for previously aired episodes":[null,""],"Status for all future episodes":[null,""],"Group episodes by season folder?":[null,""],"Is this show an Anime?":[null,""],"Is this show scene numbered?":[null,"Bu dizi sahne numaralandırması mı kullanıyor?"],"Save Defaults":[null,"Varsayılan olarak kaydet"],"Use current values as the defaults":[null,""],"<p>Select your preferred fansub groups from the <b>Available Groups</b> and add them to the <b>Whitelist</b>. Add groups to the <b>Blacklist</b> to ignore them.</p>\n <p>The <b>Whitelist</b> is checked <i>before</i> the <b>Blacklist</b>.</p>\n <p>Groups are shown as <b>Name</b> | <b>Rating</b> | <b>Number of subbed episodes</b>.</p>\n <p>You may also add any fansub group not listed to either list manually.</p>\n <p>When doing this please note that you can only use groups listed on anidb for this anime.\n <br>If a group is not listed on anidb but subbed this anime, please correct anidb's data.</p>":[null,""],"Whitelist":[null,""],"Available Groups":[null,""],"Add to Whitelist":[null,""],"Add to Blacklist":[null,""],"Blacklist":[null,""],"Custom Group":[null,""],"Allowed Quality:":[null,"İzin Verilen Kalite:"],"Preferred Quality:":[null,""],"Filter Show Name":[null,"Dizi Adını Filtrele"],"Root":[null,""],"All":[null,"Tümü"],"Clear Filter(s)":[null,"Filtre(leri) Temizle"],"Poster":[null,"Afiş"],"Small Poster":[null,"Küçük Poster"],"Banner":[null,"Banner"],"Simple":[null,"Basit"],"Next Episode":[null,"Gelecek Bölüm"],"Progress":[null,"İlerleme"],"Direction":[null,"Yön"],"Ascending":[null,"Yükselen"],"Descending":[null,"Alçalan"],"Poster Size":[null,"Poster Boyutu"],"Continuing":[null,"Devam Eden"],"Ended":[null,"Sonlanmış"],"Total":[null,"Toplam"],"Invalid date":[null,"Geçersiz tarih"],"No Network":[null,"Ağ Yok"],"Next Ep":[null,"Gelecek Bölüm"],"Prev Ep":[null,"Geçmiş Bölüm"],"Show":[null,"Göster"],"Downloads":[null,"İndirilenler"],"Active":[null,"Etkin"],"loading":[null,"yükleniyor"],"<p><b><u>Preferred</u></b> qualities will replace those in <b><u>allowed</u></b>, even if they are lower.</p>":[null,""],"New":[null,"Yeni"],"Set as Default":[null,""],"Remember me":[null,""],"Edit Selected":[null,"Seçileni Düzenle"],"Subtitle":[null,"Alt Yazı"],"Default Ep Status":[null,"Varsayılan Bölüm Durumu"],"Update":[null,"Güncelleştir"],"Rescan":[null,"Tekrar Tara"],"Rename":[null,"Yeniden Adlandır"],"Search Subtitle":[null,"Alt Yazı Ara"],"Force Metadata Regen":[null,"Meta Veriyi Tekrar Oluştur"],"Snatched (Allowed)":[null,"Yakalandı (İzin verildi)"],"Jump to Show":[null,"Diziye Atla"],"Force Backlog":[null,"Biriktirmeye Zorla"],"Manage episodes with status":[null,"Bölümleri durumlarına göre yönet"],"Manage":[null,"Yönet"],"None of your episodes have status":[null,"Bölümleriniz hiç bir duruma sahip değil"],"Shows containing":[null,"Dizi içeriği"],"episodes":[null,"bölümler"],"Set checked shows/episodes to":[null,"Seçilen dizi/bölüm ayarı"],"Go":[null,"Git"],"Select all":[null,"Tümünü Seç"],"Clear all":[null,"Tümünü temizle"],"Release":[null,"Yayın"],"Backlog Search":[null,"Biriktirme Listesi Araması"],"Not in progress":[null,"Çalışır durumda değil"],"In Progress":[null,"Çalışır durumda"],"Daily Search":[null,"Günlük Arama"],"Find Propers Search":[null,""],"Propers search disabled":[null,""],"Subtitle Search":[null,"Alt Yazı Arama"],"Subtitle search disabled":[null,"Alt yazı arama devre dışı bırakıldı"],"Search Queue":[null,"Arama Kuyruğu"],"pending items":[null,"bekleyen ögeler"],"Daily":[null,"Günlük"],"Manual":[null,"El ile"],"Changing any settings marked with (<span class=\"separator\">*</span>) will force a refresh of the selected shows.":[null,""],"Selected Shows":[null,"Seçilen Diziler"],"Root Directories":[null,"Kök Dizinler"],"Current":[null,"Geçerli"],"Keep":[null,"Sakla"],"Custom":[null,"Özel"],"Group episodes by season folder (set to \"No\" to store in a single folder).":[null,""],"Pause these shows (SickRage will not download episodes).":[null,"Bu dizileri duraksat (SickRage bölümleri indirmeyecek)."],"This will set the status for future episodes.":[null,"Bu, gelecek bölümlerin durumunu da belirleyecek."],"Search by scene numbering (set to \"No\" to search by indexer numbering).":[null,""],"Set if these shows are Anime and episodes are released as Show.265 rather than Show.S02E03":[null,""],"Set if these shows are sporting or MMA events released as Show.03.02.2010 rather than Show.S02E03.":[null,""],"In case of an air date conflict between regular and special episodes, the later will be ignored.":[null,"Düzenli ve özel bölümlerin yayınlanma tarihinde oluşabilecek aksaklık halinde kullanılacak, sonrası görmezden gelinecek."],"Set if these shows are released as Show.03.02.2010 rather than Show.S02E03.":[null,""],"Search for subtitles.":[null,"Alt yazıları ara."],"All of your episodes have {subsLanguage} subtitles.":[null,""],"Manage episodes without":[null,"Bu dili içermeyen bölümleri yönet"],"Episodes without {subsLanguage} subtitles.":[null,""],"Episodes without {subtitleLanguage} (undefined) subtitles.":[null,""],"Download missed subtitles for selected episodes":[null,"Seçili bölümler için kayıp alt yazıları indir"],"Performing Restart":[null,"Yeniden başlatma gerçekleştiriliyor"],"Waiting for SickRage to shut down":[null,"SickRage'in kapanması için bekleniyor"],"Waiting for SickRage to start again":[null,"SickRage'in yeniden başlaması için bekleniyor"],"Loading the default page":[null,"Varsayılan sayfa yükleniyor"],"Error: The restart has timed out, perhaps something prevented SickRage from starting again?":[null,"Hata: Yeniden başlatma süresi doldu, belki de bir şey SickRage'in yeniden başlamasını önlüyor?"],"Key":[null,"Anahtar"],"Missed":[null,"Kaçırılmış"],"Today":[null,"Bugün"],"Soon":[null,"Yakında"],"Later":[null,"İleride"],"Subscribe":[null,"Abone"],"Date":[null,"Tarih"],"View Paused":[null,"Bekletilmişleri Gör"],"Hidden":[null,"Gizli"],"Shown":[null,"Gösterilen"],"Calendar":[null,"Takvim"],"List":[null,"Liste"],"Ends":[null,"Bitiş"],"Next Ep Name":[null,"Gelecek Bölüm Adı"],"Run time":[null,"Çalışma süresi"],"Indexers":[null,"Dizin oluşturucular"],"No shows for this day":[null,""],"Airs":[null,"Yayınlanma"],"Plot":[null,""],"Show Update":[null,"Dizi Güncellemesi"],"Version Check":[null,""],"Proper Finder":[null,""],"Post Process":[null,""],"Subtitles Finder":[null,""],"Scheduler":[null,""],"Alive":[null,""],"Start Time":[null,""],"Cycle Time":[null,""],"Next Run":[null,""],"Last Run":[null,""],"Silent":[null,""],"True":[null,""],"N/A":[null,""],"Show id":[null,""],"Show name":[null,""],"Priority":[null,""],"Added":[null,""],"Queue type":[null,""],"LOW":[null,"DÜŞÜK"],"NORMAL":[null,""],"HIGH":[null,"YÜKSEK"],"Disk Space":[null,""],"Free space":[null,""],"TV Download Directory":[null,""],"Media Root Directories":[null,""],"Preview of the proposed name changes":[null,""],"All Seasons":[null,""],"select all":[null,""],"Rename Selected":[null,""],"Cancel Rename":[null,""],"Old Location":[null,""],"New Location":[null,""],"Trakt API did not return any results, please check your config.":[null,""],"votes":[null,""],"Remove Show":[null,"Dizi Kaldır"],"Level":[null,""],"Filter":[null,""],"All non-absolute folder locations are relative to ":[null,""],"Manual Post-Processing":[null,"El ile Son-İşlem Gerçekleştir"],"Episode Status Management":[null,"Bölüm Durumu Yönetimi"],"Update PLEX":[null,""],"Update KODI":[null,""],"Update Emby":[null,""],"Manage Torrents":[null,"Torrentleri Yönet"],"Missed Subtitle Management":[null,"Kayıp Alt Yazı Yönetimi"],"Help & Info":[null,"Yardım & Bilgi"],"Backup & Restore":[null,"Yedekle & Geri Yükle"],"Tools":[null,""],"Support SickRage":[null,"SickRage'e Bağış Yap"],"View Errors":[null,"Hataları Görüntüle"],"View Warnings":[null,"Uyarıları Görüntüle"],"View Log":[null,"Günlüğü görüntüle"],"Check For Updates":[null,"Güncellemeleri Denetle"],"Restart":[null,"Yeniden başlat"],"Shutdown":[null,"Kapat"],"Logout":[null,"Oturumu kapat"],"Server Status":[null,"Sunucu Durumu"],"View overview of snatched episodes":[null,"Yakalanmış bölümlere genel bakış"],"Episodes Downloaded":[null,"İndirilen Bölümler"],"Memory used":[null,""],"Load time":[null,""],"Branch":[null,""],"Now":[null,""]}}}} \ No newline at end of file diff --git a/locale/tr_TR/LC_MESSAGES/messages.mo b/locale/tr_TR/LC_MESSAGES/messages.mo index 7d7c2e1d9dac41e3a32d541763133fa876f58640..4129966bccd243a11af600bcd5186229d627e441 100644 Binary files a/locale/tr_TR/LC_MESSAGES/messages.mo and b/locale/tr_TR/LC_MESSAGES/messages.mo differ diff --git a/locale/tr_TR/LC_MESSAGES/messages.po b/locale/tr_TR/LC_MESSAGES/messages.po index a6cd2b15a10a473ea6b8706fe5dfd47e0e2c266f..ad7cda7b902411641c898a606e3e914a9d0f8c3d 100644 --- a/locale/tr_TR/LC_MESSAGES/messages.po +++ b/locale/tr_TR/LC_MESSAGES/messages.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: sickrage\n" "Report-Msgid-Bugs-To: miigotu@gmail.com\n" -"POT-Creation-Date: 2017-03-25 09:28-0700\n" -"PO-Revision-Date: 2017-03-25 12:30-0400\n" +"POT-Creation-Date: 2017-03-28 09:10-0700\n" +"PO-Revision-Date: 2017-03-28 12:13-0400\n" "Last-Translator: miigotu <miigotu@gmail.com>\n" "Language-Team: Turkish\n" "MIME-Version: 1.0\n" @@ -90,7 +90,7 @@ msgid "Biography" msgstr "Biyografi" #: gui/slick/views/config_general.mako:78 gui/slick/views/layouts/main.mako:145 -#: sickbeard/__init__.py:79 sickbeard/webserve.py:3807 +#: sickbeard/__init__.py:79 sickbeard/webserve.py:3778 msgid "History" msgstr "Geçmiş" @@ -103,7 +103,7 @@ msgid "Western" msgstr "Batılı" #: gui/slick/views/config_general.mako:79 gui/slick/views/layouts/main.mako:221 -#: sickbeard/__init__.py:80 sickbeard/webserve.py:2385 +#: sickbeard/__init__.py:80 sickbeard/webserve.py:2384 msgid "News" msgstr "Haberler" @@ -238,6 +238,34 @@ msgstr "Yoksayıldı" msgid "Subtitled" msgstr "Altyazılı" +#: sickbeard/helpers.py:1887 +msgid "For best results please set the Download Station alias as" +msgstr "En iyi sonuçlar için lütfen Download İstasyonu takma adını bu şekilde ayarla" + +#: sickbeard/helpers.py:1888 +msgid "You can check this setting in the Synology DSM" +msgstr "Synology DSM'de bu ayarı kontrol edebilirsiniz" + +#: sickbeard/helpers.py:1888 sickbeard/helpers.py:1890 +msgid "Control Panel" +msgstr "Kontrol Paneli" + +#: sickbeard/helpers.py:1888 +msgid "Application Portal" +msgstr "Uygulama Merkezi" + +#: sickbeard/helpers.py:1889 +msgid "Make sure you allow DSM to be embedded with iFrames too in" +msgstr "" + +#: sickbeard/helpers.py:1890 +msgid "DSM Settings" +msgstr "DSM Ayarları" + +#: sickbeard/helpers.py:1890 +msgid "Security" +msgstr "Güvenlik" + #: sickbeard/logger.py:474 msgid "<No Filter>" msgstr "<Filtre kullanma>" @@ -308,15 +336,15 @@ msgstr "" msgid "Event" msgstr "Etkinlik" -#: sickbeard/logger.py:491 sickbeard/webserve.py:1339 sickbeard/webserve.py:1342 -#: sickbeard/webserve.py:1520 sickbeard/webserve.py:1529 sickbeard/webserve.py:1717 -#: sickbeard/webserve.py:1728 sickbeard/webserve.py:1751 sickbeard/webserve.py:1764 -#: sickbeard/webserve.py:1769 sickbeard/webserve.py:1785 sickbeard/webserve.py:1790 -#: sickbeard/webserve.py:1854 sickbeard/webserve.py:1857 sickbeard/webserve.py:1863 -#: sickbeard/webserve.py:1866 sickbeard/webserve.py:1873 sickbeard/webserve.py:1876 -#: sickbeard/webserve.py:1899 sickbeard/webserve.py:1997 sickbeard/webserve.py:2002 -#: sickbeard/webserve.py:2007 sickbeard/webserve.py:2036 sickbeard/webserve.py:2040 -#: sickbeard/webserve.py:2045 +#: sickbeard/logger.py:491 sickbeard/webserve.py:1338 sickbeard/webserve.py:1341 +#: sickbeard/webserve.py:1519 sickbeard/webserve.py:1528 sickbeard/webserve.py:1716 +#: sickbeard/webserve.py:1727 sickbeard/webserve.py:1750 sickbeard/webserve.py:1763 +#: sickbeard/webserve.py:1768 sickbeard/webserve.py:1784 sickbeard/webserve.py:1789 +#: sickbeard/webserve.py:1853 sickbeard/webserve.py:1856 sickbeard/webserve.py:1862 +#: sickbeard/webserve.py:1865 sickbeard/webserve.py:1872 sickbeard/webserve.py:1875 +#: sickbeard/webserve.py:1898 sickbeard/webserve.py:1996 sickbeard/webserve.py:2001 +#: sickbeard/webserve.py:2006 sickbeard/webserve.py:2035 sickbeard/webserve.py:2039 +#: sickbeard/webserve.py:2044 msgid "Error" msgstr "Hata" @@ -333,6 +361,7 @@ msgstr "Konu" msgid "Main" msgstr "Ana" +#: gui/slick/js/ajaxEpSearch.js:146 gui/slick/js/ajaxEpSearch.js:147 #: gui/slick/views/inc_home_showList.mako:27 sickbeard/show_queue.py:298 msgid "Loading" msgstr "" @@ -372,867 +401,835 @@ msgstr "Yapılandırma yedeklemesi başarısız, güncelleme durduruluyor" msgid "No update needed" msgstr "Hiçbir güncelleme gerekmiyor" -#: sickbeard/webserve.py:170 +#: sickbeard/webserve.py:171 msgid "Mako Error" msgstr "Mako hatası" -#: sickbeard/webserve.py:195 +#: sickbeard/webserve.py:196 msgid "Oops" msgstr "Oops" -#: sickbeard/webserve.py:197 +#: sickbeard/webserve.py:198 msgid "Wrong API key used" msgstr "Yanlış API anahtarı kullanıldı" -#: gui/slick/views/login.mako:34 sickbeard/webserve.py:302 +#: gui/slick/views/login.mako:34 sickbeard/webserve.py:303 msgid "Login" msgstr "Giriş" -#: sickbeard/webserve.py:406 +#: sickbeard/webserve.py:392 msgid "API Key not generated" msgstr "API anahtarı üretilmedi" -#: sickbeard/webserve.py:409 +#: sickbeard/webserve.py:395 msgid "API Builder" msgstr "API Kurucu" #: gui/slick/views/config_general.mako:77 gui/slick/views/layouts/main.mako:141 -#: sickbeard/webserve.py:512 +#: sickbeard/webserve.py:498 msgid "Schedule" msgstr "Zamanlama" -#: sickbeard/webserve.py:610 +#: sickbeard/webserve.py:609 msgid "Test 1" msgstr "Deneme 1" -#: sickbeard/webserve.py:610 +#: sickbeard/webserve.py:609 msgid "This is test number 1" msgstr "1 numaralı denemedir" -#: sickbeard/webserve.py:611 +#: sickbeard/webserve.py:610 msgid "Test 2" msgstr "Deneme 2" -#: sickbeard/webserve.py:611 +#: sickbeard/webserve.py:610 msgid "This is test number 2" msgstr "2 numaralı denemedir" -#: sickbeard/webserve.py:634 +#: sickbeard/webserve.py:633 msgid "You're using the {branch} branch. Please use 'master' unless specifically asked" msgstr "" -#: sickbeard/webserve.py:698 sickbeard/webserve.py:703 +#: sickbeard/webserve.py:697 sickbeard/webserve.py:702 msgid "Invalid show parameters" msgstr "Geçersiz dizi değişkenleri" -#: sickbeard/webserve.py:710 +#: sickbeard/webserve.py:709 msgid "Invalid parameters" msgstr "" -#: sickbeard/webserve.py:713 sickbeard/webserve.py:1899 +#: sickbeard/webserve.py:712 sickbeard/webserve.py:1898 msgid "Episode couldn't be retrieved" msgstr "Bölüm getirilemedi" -#: sickbeard/webserve.py:759 sickbeard/webserve.py:1268 sickbeard/webserve.py:1297 +#: sickbeard/webserve.py:758 sickbeard/webserve.py:1267 sickbeard/webserve.py:1296 msgid "Home" msgstr "Ana Sayfa" -#: gui/slick/views/layouts/main.mako:127 sickbeard/webserve.py:759 +#: gui/slick/views/layouts/main.mako:127 sickbeard/webserve.py:758 msgid "Show List" msgstr "Dizi Listesi" -#: sickbeard/webserve.py:807 +#: sickbeard/webserve.py:806 msgid "Error: Unsupported Request. Send jsonp request with 'callback' variable in the query string." msgstr "Hata: Desteklenmeyen İstek. jsonp isteklerini sıralama dizesindeki 'callback' değişkeniyle gönderin." -#: sickbeard/webserve.py:851 +#: sickbeard/webserve.py:850 msgid "Success. Connected and authenticated" msgstr "Başarılı. Bağlanıldı ve yetkilendirildi" -#: sickbeard/webserve.py:853 +#: sickbeard/webserve.py:852 msgid "Authentication failed. SABnzbd expects" msgstr "Yetkilendirme başarısız. SABnzbd beklentisi" -#: sickbeard/webserve.py:853 +#: sickbeard/webserve.py:852 msgid "as authentication method" msgstr "yetkilendirme yöntemi olarak" -#: sickbeard/webserve.py:855 +#: sickbeard/webserve.py:854 msgid "Unable to connect to host" msgstr "Sunucuya bağlanılamadı" -#: sickbeard/webserve.py:876 +#: sickbeard/webserve.py:875 msgid "SMS sent successfully" msgstr "SMS gönderimi başarılı" -#: sickbeard/webserve.py:878 +#: sickbeard/webserve.py:877 msgid "Problem sending SMS: {message}" msgstr "Problemi SMS ile ilet: {message}" -#: sickbeard/webserve.py:885 +#: sickbeard/webserve.py:884 msgid "Telegram notification succeeded. Check your Telegram clients to make sure it worked" msgstr "Telegram bildirimi başarılı. Çalıştığından emin olmak için aygıtınızı kontrol edin" -#: sickbeard/webserve.py:887 +#: sickbeard/webserve.py:886 msgid "Error sending Telegram notification: {message}" msgstr "Telgram bildirim gönderme hatası: {message}" -#: sickbeard/webserve.py:894 +#: sickbeard/webserve.py:893 msgid "join notification succeeded. Check your join clients to make sure it worked" msgstr "" -#: sickbeard/webserve.py:896 +#: sickbeard/webserve.py:895 msgid "Error sending join notification: {message}" msgstr "Katılım bildirimi gönderme hatası:{message}" -#: sickbeard/webserve.py:906 +#: sickbeard/webserve.py:905 msgid " with password" msgstr " şifre ile" -#: sickbeard/webserve.py:908 +#: sickbeard/webserve.py:907 msgid "Registered and Tested growl successfully {growl_host}" msgstr "Growl kaydı ve testi başarılı {growl_host}" -#: sickbeard/webserve.py:910 +#: sickbeard/webserve.py:909 msgid "Registration and Testing of growl failed {growl_host}" msgstr "Growl kaydı ve testi başarısız {growl_host}" -#: sickbeard/webserve.py:917 +#: sickbeard/webserve.py:916 msgid "Test prowl notice sent successfully" msgstr "Deneme amaçlı prowl bildirim gönderimi başarılı" -#: sickbeard/webserve.py:919 +#: sickbeard/webserve.py:918 msgid "Test prowl notice failed" msgstr "Deneme amaçlı prowl bildirim gönderimi başarısız" -#: sickbeard/webserve.py:926 +#: sickbeard/webserve.py:925 msgid "Boxcar2 notification succeeded. Check your Boxcar2 clients to make sure it worked" msgstr "" -#: sickbeard/webserve.py:928 +#: sickbeard/webserve.py:927 msgid "Error sending Boxcar2 notification" msgstr "Boxcar2 bildirim gönderme hatası" -#: sickbeard/webserve.py:935 +#: sickbeard/webserve.py:934 msgid "Pushover notification succeeded. Check your Pushover clients to make sure it worked" msgstr "" -#: sickbeard/webserve.py:937 +#: sickbeard/webserve.py:936 msgid "Error sending Pushover notification" msgstr "Pushover bildirim gönderimi başarısız" -#: sickbeard/webserve.py:949 +#: sickbeard/webserve.py:948 msgid "Key verification successful" msgstr "Anahtar doğrulaması başarılı" -#: sickbeard/webserve.py:951 +#: sickbeard/webserve.py:950 msgid "Unable to verify key" msgstr "Anahtar doğrulanamadı" -#: sickbeard/webserve.py:958 +#: sickbeard/webserve.py:957 msgid "Tweet successful, check your twitter to make sure it worked" msgstr "Tweet başarılı, çalıştığına emin olmak için twitter'ınıza bakın" -#: sickbeard/webserve.py:960 +#: sickbeard/webserve.py:959 msgid "Error sending tweet" msgstr "Tweet gönderimi başarısız" -#: sickbeard/webserve.py:965 +#: sickbeard/webserve.py:964 msgid "Please enter a valid account sid" msgstr "" -#: sickbeard/webserve.py:968 +#: sickbeard/webserve.py:967 msgid "Please enter a valid auth token" msgstr "" -#: sickbeard/webserve.py:971 +#: sickbeard/webserve.py:970 msgid "Please enter a valid phone sid" msgstr "" -#: sickbeard/webserve.py:974 +#: sickbeard/webserve.py:973 msgid "Please format the phone number as \"+1-###-###-####\"" msgstr "" -#: sickbeard/webserve.py:978 +#: sickbeard/webserve.py:977 msgid "Authorization successful and number ownership verified" msgstr "" -#: sickbeard/webserve.py:980 +#: sickbeard/webserve.py:979 msgid "Error sending sms" msgstr "" -#: sickbeard/webserve.py:986 +#: sickbeard/webserve.py:985 msgid "Slack message successful" msgstr "" -#: sickbeard/webserve.py:988 +#: sickbeard/webserve.py:987 msgid "Slack message failed" msgstr "" -#: sickbeard/webserve.py:994 +#: sickbeard/webserve.py:993 msgid "Discord message successful" msgstr "" -#: sickbeard/webserve.py:996 +#: sickbeard/webserve.py:995 msgid "Discord message failed" msgstr "" -#: sickbeard/webserve.py:1006 +#: sickbeard/webserve.py:1005 msgid "Test KODI notice sent successfully to {kodi_host}" msgstr "KODI bildirisi gönderimi başarılı {kodi_host}" -#: sickbeard/webserve.py:1008 +#: sickbeard/webserve.py:1007 msgid "Test KODI notice failed to {kodi_host}" msgstr "Test KODI bildirimi {kodi_host} için başarısız oldu" -#: sickbeard/webserve.py:1023 +#: sickbeard/webserve.py:1022 msgid "Successful test notice sent to Plex Home Theater ... {plex_clients}" msgstr "Plex ev sineması için gönderilen test bildirimi başarılı ... {plex_clients}" -#: sickbeard/webserve.py:1025 +#: sickbeard/webserve.py:1024 msgid "Test failed for Plex Home Theater ... {plex_clients}" msgstr "Test Plex ev sineması için başarısız oldu... {plex_clients}" -#: sickbeard/webserve.py:1028 +#: sickbeard/webserve.py:1027 msgid "Tested Plex Home Theater(s)" msgstr "Test edilmiş Plex Ev Sinemaları" -#: sickbeard/webserve.py:1042 +#: sickbeard/webserve.py:1041 msgid "Successful test of Plex Media Server(s) ... {plex_servers}" msgstr "Plex ortam Sunucuları testi başarılı ... {plex_servers}" -#: sickbeard/webserve.py:1044 +#: sickbeard/webserve.py:1043 msgid "Test failed, No Plex Media Server host specified" msgstr "Test başarısız, hiçbir Plex Ortam Sunucusu adresi belirtilmemiş" -#: sickbeard/webserve.py:1046 +#: sickbeard/webserve.py:1045 msgid "Test failed for Plex Media Server(s) ... {plex_servers}" msgstr "" -#: sickbeard/webserve.py:1049 +#: sickbeard/webserve.py:1048 msgid "Tested Plex Media Server host(s)" msgstr "" -#: sickbeard/webserve.py:1057 +#: sickbeard/webserve.py:1056 msgid "Tried sending desktop notification via libnotify" msgstr "" -#: sickbeard/webserve.py:1066 +#: sickbeard/webserve.py:1065 msgid "Test notice sent successfully to {emby_host}" msgstr "" -#: sickbeard/webserve.py:1068 +#: sickbeard/webserve.py:1067 msgid "Test notice failed to {emby_host}" msgstr "" -#: sickbeard/webserve.py:1076 +#: sickbeard/webserve.py:1075 msgid "Successfully started the scan update" msgstr "Tarama güncelleştirmesi başarıyla başlatıldı" -#: sickbeard/webserve.py:1078 +#: sickbeard/webserve.py:1077 msgid "Test failed to start the scan update" msgstr "Tarama güncelleştirme testi başarısız" -#: sickbeard/webserve.py:1097 +#: sickbeard/webserve.py:1096 msgid "Test notice sent successfully to {nmj2_host}" msgstr "Test bildirimi gönderimi başarılı {nmj2_host}" -#: sickbeard/webserve.py:1099 +#: sickbeard/webserve.py:1098 msgid "Test notice failed to {nmj2_host}" msgstr "" -#: sickbeard/webserve.py:1119 +#: sickbeard/webserve.py:1118 msgid "Trakt Authorized" msgstr "Trakt Yetkilendirildi" -#: sickbeard/webserve.py:1120 +#: sickbeard/webserve.py:1119 msgid "Trakt Not Authorized!" msgstr "Trakt Yetkilendirilmedi!" -#: sickbeard/webserve.py:1184 +#: sickbeard/webserve.py:1183 msgid "Test email sent successfully! Check inbox." msgstr "" -#: sickbeard/webserve.py:1186 +#: sickbeard/webserve.py:1185 msgid "ERROR: {last_error}" msgstr "HATA: {last_error}" -#: sickbeard/webserve.py:1193 +#: sickbeard/webserve.py:1192 msgid "Test NMA notice sent successfully" msgstr "" -#: sickbeard/webserve.py:1195 +#: sickbeard/webserve.py:1194 msgid "Test NMA notice failed" msgstr "" -#: sickbeard/webserve.py:1202 +#: sickbeard/webserve.py:1201 msgid "Pushalot notification succeeded. Check your Pushalot clients to make sure it worked" msgstr "" -#: sickbeard/webserve.py:1204 +#: sickbeard/webserve.py:1203 msgid "Error sending Pushalot notification" msgstr "" -#: sickbeard/webserve.py:1211 +#: sickbeard/webserve.py:1210 msgid "Pushbullet notification succeeded. Check your device to make sure it worked" msgstr "Pushbullet bildirimi başarılı. Çalıştığından emin olmak için aygıtınızı kontrol edin" -#: sickbeard/webserve.py:1213 sickbeard/webserve.py:1223 sickbeard/webserve.py:1232 +#: sickbeard/webserve.py:1212 sickbeard/webserve.py:1222 sickbeard/webserve.py:1231 msgid "Error sending Pushbullet notification" msgstr "Pushbullet gönderimi başarısız" #: gui/slick/views/displayShow.mako:436 gui/slick/views/inc_home_showList.mako:174 -#: gui/slick/views/manage.mako:49 sickbeard/webserve.py:1249 +#: gui/slick/views/manage.mako:49 sickbeard/webserve.py:1248 msgid "Status" msgstr "Durum" -#: sickbeard/webserve.py:1268 sickbeard/webserve.py:1297 +#: sickbeard/webserve.py:1267 sickbeard/webserve.py:1296 msgid "Restarting SickRage" msgstr "SickRage Yeniden Başlatılıyor" -#: sickbeard/webserve.py:1300 +#: sickbeard/webserve.py:1299 msgid "Update Failed" msgstr "Güncelleştirme Başarısız" -#: sickbeard/webserve.py:1301 +#: sickbeard/webserve.py:1300 msgid "Update wasn't successful, not restarting. Check your log for more information." msgstr "Güncelleştirme başarısız, yeniden başlatılamıyor. Ayrıntılı bilgi için günlüğü kontrol edin." -#: sickbeard/webserve.py:1308 +#: sickbeard/webserve.py:1307 msgid "Checking out branch" msgstr "" -#: sickbeard/webserve.py:1311 +#: sickbeard/webserve.py:1310 msgid "Already on branch" msgstr "" -#: sickbeard/webserve.py:1339 +#: sickbeard/webserve.py:1338 msgid "Invalid show ID: {show}" msgstr "Geçersiz dizi kimliği: {show}" -#: sickbeard/webserve.py:1342 sickbeard/webserve.py:1871 sickbeard/webserve.py:2002 -#: sickbeard/webserve.py:2040 +#: sickbeard/webserve.py:1341 sickbeard/webserve.py:1870 sickbeard/webserve.py:2001 +#: sickbeard/webserve.py:2039 msgid "Show not in show list" msgstr "Dizi, dizi listesinde değil" #: gui/slick/views/inc_rootDirs.mako:31 gui/slick/views/manage.mako:38 -#: gui/slick/views/manage_massEdit.mako:74 sickbeard/webserve.py:1358 -#: sickbeard/webserve.py:2027 +#: gui/slick/views/manage_massEdit.mako:74 sickbeard/webserve.py:1357 +#: sickbeard/webserve.py:2026 msgid "Edit" msgstr "Düzenle" -#: sickbeard/webserve.py:1368 +#: sickbeard/webserve.py:1367 msgid "This show is in the process of being downloaded - the info below is incomplete." msgstr "Bu dizi indirilme aşamasında - aşağıdaki bilgiler tam değil." -#: sickbeard/webserve.py:1371 +#: sickbeard/webserve.py:1370 msgid "The information on this page is in the process of being updated." msgstr "Bu sayfadaki bilgi güncelleştirme aşamasında." -#: sickbeard/webserve.py:1374 +#: sickbeard/webserve.py:1373 msgid "The episodes below are currently being refreshed from disk" msgstr "Aşağıdaki bölümler şu anda diskten alınarak yenileniyor" -#: sickbeard/webserve.py:1377 +#: sickbeard/webserve.py:1376 msgid "Currently downloading subtitles for this show" msgstr "Şu anda bu dizi için alt yazılar indiriliyor" -#: sickbeard/webserve.py:1380 +#: sickbeard/webserve.py:1379 msgid "This show is queued to be refreshed." msgstr "Bu dizi yenileme için kuyruğa alınmış." -#: sickbeard/webserve.py:1383 +#: sickbeard/webserve.py:1382 msgid "This show is queued and awaiting an update." msgstr "Bu dizi kuyruğa alınmış ve bir güncelleme için bekletiliyor." -#: sickbeard/webserve.py:1386 +#: sickbeard/webserve.py:1385 msgid "This show is queued and awaiting subtitles download." msgstr "Bu dizi kuyruğa alınmış ve alt yazı indirilmesi için bekletiliyor." -#: gui/slick/js/core.js:4081 sickbeard/webserve.py:1391 +#: gui/slick/js/core.js:4081 sickbeard/webserve.py:1390 msgid "Resume" msgstr "Devam et" #: gui/slick/js/core.js:4081 gui/slick/views/viewlogs.mako:12 -#: sickbeard/webserve.py:1393 +#: sickbeard/webserve.py:1392 msgid "Pause" msgstr "Duraksat" #: gui/slick/views/editShow.mako:345 gui/slick/views/inc_blackwhitelist.mako:40 #: gui/slick/views/inc_blackwhitelist.mako:85 gui/slick/views/manage.mako:58 -#: gui/slick/views/manage_failedDownloads.mako:43 sickbeard/webserve.py:1395 +#: gui/slick/views/manage_failedDownloads.mako:43 sickbeard/webserve.py:1394 msgid "Remove" msgstr "Kaldır" -#: sickbeard/webserve.py:1396 +#: sickbeard/webserve.py:1395 msgid "Re-scan files" msgstr "Dosyaları tekrar tara" -#: sickbeard/webserve.py:1397 +#: sickbeard/webserve.py:1396 msgid "Force Full Update" msgstr "Tam Güncellemeye Zorla" -#: sickbeard/webserve.py:1398 +#: sickbeard/webserve.py:1397 msgid "Update show in KODI" msgstr "KODI'de diziyi güncelle" -#: sickbeard/webserve.py:1399 +#: sickbeard/webserve.py:1398 msgid "Update show in Emby" msgstr "Emby'de diziyi güncelle" -#: sickbeard/webserve.py:1402 +#: sickbeard/webserve.py:1401 msgid "Hide specials" msgstr "" -#: sickbeard/webserve.py:1404 +#: sickbeard/webserve.py:1403 msgid "Show specials" msgstr "" -#: sickbeard/webserve.py:1406 sickbeard/webserve.py:2030 sickbeard/webserve.py:2031 +#: sickbeard/webserve.py:1405 sickbeard/webserve.py:2029 sickbeard/webserve.py:2030 msgid "Preview Rename" msgstr "Yeniden Adlandırmayı Özizle" -#: sickbeard/webserve.py:1409 +#: sickbeard/webserve.py:1408 msgid "Download Subtitles" msgstr "Alt Yazıları İndir" -#: sickbeard/webserve.py:1498 +#: sickbeard/webserve.py:1497 msgid "No scene exceptions" msgstr "Sahne istisnası yok" -#: sickbeard/webserve.py:1516 sickbeard/webserve.py:1764 sickbeard/webserve.py:1785 +#: sickbeard/webserve.py:1515 sickbeard/webserve.py:1763 sickbeard/webserve.py:1784 msgid "Invalid show ID" msgstr "Geçersiz dizi kimliği" -#: sickbeard/webserve.py:1525 sickbeard/webserve.py:1769 sickbeard/webserve.py:1790 +#: sickbeard/webserve.py:1524 sickbeard/webserve.py:1768 sickbeard/webserve.py:1789 msgid "Unable to find the specified show" msgstr "Belirtilen dizi bulunamadı" -#: sickbeard/webserve.py:1550 +#: sickbeard/webserve.py:1549 msgid "Unable to retreive Fansub Groups from AniDB." msgstr "" -#: sickbeard/webserve.py:1559 sickbeard/webserve.py:1561 +#: sickbeard/webserve.py:1558 sickbeard/webserve.py:1560 msgid "Edit Show" msgstr "Diziyi Düzenle" -#: sickbeard/webserve.py:1637 sickbeard/webserve.py:1671 +#: sickbeard/webserve.py:1636 sickbeard/webserve.py:1670 msgid "Unable to refresh this show: {error}" msgstr "Bu dizi güncelleştirilemedi: {error}" -#: sickbeard/webserve.py:1663 +#: sickbeard/webserve.py:1662 msgid "New location <tt>{location}</tt> does not exist" msgstr "Yeni <tt>{location}</tt> konumu mevcut değil" -#: sickbeard/webserve.py:1688 +#: sickbeard/webserve.py:1687 msgid "Unable to update show: {error}" msgstr "Dizi güncelleştirilemedi: {error}" -#: sickbeard/webserve.py:1695 +#: sickbeard/webserve.py:1694 msgid "Unable to force an update on scene exceptions of the show." msgstr "" -#: sickbeard/webserve.py:1702 +#: sickbeard/webserve.py:1701 msgid "Unable to force an update on scene numbering of the show." msgstr "" -#: sickbeard/webserve.py:1708 sickbeard/webserve.py:3540 +#: sickbeard/webserve.py:1707 sickbeard/webserve.py:3539 msgid "{num_errors:d} error{plural} while saving changes:" msgstr "Değişiklikler kaydedilirken {num_errors:d} hata{plural}:" -#: sickbeard/webserve.py:1719 +#: sickbeard/webserve.py:1718 msgid "{show_name} has been {paused_resumed}" msgstr "{show_name} isimli dizi {paused_resumed}" -#: sickbeard/webserve.py:1719 +#: sickbeard/webserve.py:1718 msgid "resumed" msgstr "devam ettirildi" -#: sickbeard/webserve.py:1719 +#: sickbeard/webserve.py:1718 msgid "paused" msgstr "duraksatıldı" -#: sickbeard/webserve.py:1731 +#: sickbeard/webserve.py:1730 msgid "{show_name} has been {deleted_trashed} {was_deleted}" msgstr "{show_name} isimli dizi {deleted_trashed} {was_deleted}" -#: sickbeard/webserve.py:1733 +#: sickbeard/webserve.py:1732 msgid "deleted" msgstr "silindi" -#: sickbeard/webserve.py:1733 +#: sickbeard/webserve.py:1732 msgid "trashed" msgstr "çöpe gönderildi" -#: sickbeard/webserve.py:1734 +#: sickbeard/webserve.py:1733 msgid "(media untouched)" msgstr "(ortama dokunulmadı)" -#: sickbeard/webserve.py:1734 +#: sickbeard/webserve.py:1733 msgid "(with all related media)" msgstr "(tüm ortamla)" -#: sickbeard/webserve.py:1755 +#: sickbeard/webserve.py:1754 msgid "Unable to refresh this show." msgstr "Bu dizi yenilenemedi." -#: sickbeard/webserve.py:1775 +#: sickbeard/webserve.py:1774 msgid "Unable to update this show." msgstr "Bu dizi güncellenemedi." -#: sickbeard/webserve.py:1814 +#: sickbeard/webserve.py:1813 msgid "Library update command sent to KODI host(s)): {kodi_hosts}" msgstr "" -#: sickbeard/webserve.py:1816 +#: sickbeard/webserve.py:1815 msgid "Unable to contact one or more KODI host(s)): {kodi_hosts}" msgstr "" -#: sickbeard/webserve.py:1825 +#: sickbeard/webserve.py:1824 msgid "Library update command sent to Plex Media Server host: {plex_server}" msgstr "" -#: sickbeard/webserve.py:1828 +#: sickbeard/webserve.py:1827 msgid "Unable to contact Plex Media Server host: {plex_server}" msgstr "" -#: sickbeard/webserve.py:1840 +#: sickbeard/webserve.py:1839 msgid "Library update command sent to Emby host: {emby_host}" msgstr "" -#: sickbeard/webserve.py:1842 +#: sickbeard/webserve.py:1841 msgid "Unable to contact Emby host: {emby_host}" msgstr "" -#: sickbeard/webserve.py:1852 sickbeard/webserve.py:2036 +#: sickbeard/webserve.py:1851 sickbeard/webserve.py:2035 msgid "You must specify a show and at least one episode" msgstr "Bir dizi ve en az bir bölüm belirtmelisiniz" -#: sickbeard/webserve.py:1861 +#: sickbeard/webserve.py:1860 msgid "Invalid status" msgstr "Geçersiz durum" -#: sickbeard/webserve.py:1954 +#: sickbeard/webserve.py:1953 msgid "Backlog was automatically started for the following seasons of <b>{show_name}</b>" msgstr "" #: gui/slick/views/displayShow.mako:74 gui/slick/views/displayShow.mako:79 -#: gui/slick/views/displayShow.mako:404 sickbeard/webserve.py:1961 -#: sickbeard/webserve.py:1980 +#: gui/slick/views/displayShow.mako:404 sickbeard/webserve.py:1960 +#: sickbeard/webserve.py:1979 msgid "Season" msgstr "Sezon" -#: sickbeard/webserve.py:1968 +#: sickbeard/webserve.py:1967 msgid "Backlog started" msgstr "Biriktirme listesi başlatıldı" -#: sickbeard/webserve.py:1973 +#: sickbeard/webserve.py:1972 msgid "Retrying Search was automatically started for the following season of <b>{show_name}</b>" msgstr "" -#: sickbeard/webserve.py:1987 +#: sickbeard/webserve.py:1986 msgid "Retry Search started" msgstr "Tekrar arama başlatıldı" -#: sickbeard/webserve.py:1997 +#: sickbeard/webserve.py:1996 msgid "You must specify a show" msgstr "Bir dizi belirtmelisiniz" -#: sickbeard/webserve.py:2007 sickbeard/webserve.py:2045 +#: sickbeard/webserve.py:2006 sickbeard/webserve.py:2044 msgid "Can't rename episodes when the show dir is missing." msgstr "Dizi klasörü kayıpken bölümler yeniden adlandırılmaz." -#: sickbeard/webserve.py:2212 sickbeard/webserve.py:2233 +#: sickbeard/webserve.py:2211 sickbeard/webserve.py:2232 msgid "New subtitles downloaded: {new_subtitle_languages}" msgstr "İndirilen yeni altyazılar: {new_subtitle_languages}" -#: sickbeard/webserve.py:2215 sickbeard/webserve.py:2236 +#: sickbeard/webserve.py:2214 sickbeard/webserve.py:2235 msgid "No subtitles downloaded" msgstr "Hiçbir altyazı indirilmedi" #: gui/slick/views/config_general.mako:80 gui/slick/views/layouts/main.mako:222 -#: sickbeard/webserve.py:2363 +#: sickbeard/webserve.py:2362 msgid "IRC" msgstr "IRC" -#: sickbeard/webserve.py:2376 +#: sickbeard/webserve.py:2375 msgid "Could not load news from the repo. [Click here for news.md])({news_url})" msgstr "" -#: sickbeard/webserve.py:2383 sickbeard/webserve.py:2401 +#: sickbeard/webserve.py:2382 sickbeard/webserve.py:2400 msgid "The was a problem connecting to github, please refresh and try again" msgstr "" -#: sickbeard/webserve.py:2398 +#: sickbeard/webserve.py:2397 msgid "Could not load changes from the repo. [Click here for CHANGES.md]({changes_url})" msgstr "" -#: gui/slick/views/layouts/main.mako:223 sickbeard/webserve.py:2403 +#: gui/slick/views/layouts/main.mako:223 sickbeard/webserve.py:2402 msgid "Changelog" msgstr "Değişim Günlüğü" -#: gui/slick/views/layouts/main.mako:190 sickbeard/webserve.py:2413 -#: sickbeard/webserve.py:3855 sickbeard/webserve.py:4341 +#: gui/slick/views/layouts/main.mako:190 sickbeard/webserve.py:2412 +#: sickbeard/webserve.py:3826 sickbeard/webserve.py:4312 msgid "Post Processing" msgstr "Son İşlem" -#: gui/slick/views/layouts/main.mako:128 sickbeard/webserve.py:2445 +#: gui/slick/views/layouts/main.mako:128 sickbeard/webserve.py:2444 msgid "Add Shows" msgstr "Dizi Ekle" -#: sickbeard/webserve.py:2510 +#: sickbeard/webserve.py:2509 msgid "No folders selected." msgstr "Hiçbir klasör seçilmedi." -#: sickbeard/webserve.py:2632 +#: sickbeard/webserve.py:2631 msgid "New Show" msgstr "Yeni Dizi" -#: sickbeard/webserve.py:2647 +#: sickbeard/webserve.py:2646 msgid "Trending Shows" msgstr "Yükselişteki Diziler" -#: sickbeard/webserve.py:2649 sickbeard/webserve.py:2772 +#: sickbeard/webserve.py:2648 sickbeard/webserve.py:2771 msgid "Popular Shows" msgstr "Popüler Diziler" -#: sickbeard/webserve.py:2651 sickbeard/webserve.py:2665 +#: sickbeard/webserve.py:2650 sickbeard/webserve.py:2664 msgid "Most Anticipated Shows" msgstr "En Çok Beklenen Diziler" -#: sickbeard/webserve.py:2653 +#: sickbeard/webserve.py:2652 msgid "Most Collected Shows" msgstr "" -#: sickbeard/webserve.py:2655 +#: sickbeard/webserve.py:2654 msgid "Most Watched Shows" msgstr "" -#: sickbeard/webserve.py:2657 +#: sickbeard/webserve.py:2656 msgid "Most Played Shows" msgstr "" -#: sickbeard/webserve.py:2659 +#: sickbeard/webserve.py:2658 msgid "Recommended Shows" msgstr "" -#: gui/slick/views/addShows_trendingShows.mako:60 sickbeard/webserve.py:2661 +#: gui/slick/views/addShows_trendingShows.mako:60 sickbeard/webserve.py:2660 msgid "New Shows" msgstr "Yeni Diziler" -#: gui/slick/views/addShows_trendingShows.mako:61 sickbeard/webserve.py:2663 +#: gui/slick/views/addShows_trendingShows.mako:61 sickbeard/webserve.py:2662 msgid "Season Premieres" msgstr "Sezon Prömiyerleri" -#: sickbeard/webserve.py:2792 sickbeard/webserve.py:2793 +#: sickbeard/webserve.py:2791 sickbeard/webserve.py:2792 msgid "Existing Show" msgstr "Varolan Diziler" -#: sickbeard/webserve.py:2871 +#: sickbeard/webserve.py:2870 msgid "No root directories setup, please go back and add one." msgstr "Hiçbir kök dizin seçilmedi, lütfen geri dönün ve bir tane ekleyin." -#: sickbeard/webserve.py:2883 sickbeard/webserve.py:3002 +#: sickbeard/webserve.py:2882 sickbeard/webserve.py:3001 msgid "Show added" msgstr "Dizi eklendi" -#: sickbeard/webserve.py:2883 +#: sickbeard/webserve.py:2882 msgid "Adding the specified show {show_name}" msgstr "{show_name} isimli dizi ekleniyor" -#: sickbeard/webserve.py:2924 +#: sickbeard/webserve.py:2923 msgid "Missing params, no Indexer ID or folder: {show_to_add} and {root_dir}/{show_path}" msgstr "" -#: sickbeard/webserve.py:2933 +#: sickbeard/webserve.py:2932 msgid "Unknown error. Unable to add show due to problem with show selection." msgstr "Bilinmeyen hata. Dizi seçiminden kaynaklanan bir sorun nedeniyle diziniz eklenemiyor." -#: sickbeard/webserve.py:2957 sickbeard/webserve.py:2967 +#: sickbeard/webserve.py:2956 sickbeard/webserve.py:2966 msgid "Unable to add show" msgstr "Dizi eklenemedi" -#: sickbeard/webserve.py:2957 +#: sickbeard/webserve.py:2956 msgid "Folder {show_dir} exists already" msgstr "{show_dir} klasörü zaten mevcut" -#: sickbeard/webserve.py:2968 +#: sickbeard/webserve.py:2967 msgid "Unable to create the folder {show_dir}, can't add the show" msgstr "{show_dir} klasörü oluşturulamadı, dizi eklenemedi" -#: sickbeard/webserve.py:3002 +#: sickbeard/webserve.py:3001 msgid "Adding the specified show into {show_dir}" msgstr "Belirtilen dizi {show_dir} içine ekleniyor" -#: sickbeard/webserve.py:3078 +#: sickbeard/webserve.py:3077 msgid "Shows Added" msgstr "Eklenmiş Diziler" -#: sickbeard/webserve.py:3079 +#: sickbeard/webserve.py:3078 msgid "Automatically added {num_shows} from their existing metadata files" msgstr "" -#: gui/slick/views/layouts/main.mako:153 sickbeard/webserve.py:3096 +#: gui/slick/views/layouts/main.mako:153 sickbeard/webserve.py:3095 msgid "Mass Update" msgstr "Toplu Güncelleme" -#: sickbeard/webserve.py:3134 sickbeard/webserve.py:3161 sickbeard/webserve.py:3237 -#: sickbeard/webserve.py:3238 +#: sickbeard/webserve.py:3133 sickbeard/webserve.py:3160 sickbeard/webserve.py:3236 +#: sickbeard/webserve.py:3237 msgid "Episode Overview" msgstr "Bölüme Genel Bakış" -#: sickbeard/webserve.py:3270 +#: sickbeard/webserve.py:3269 msgid "Missing Subtitles" msgstr "Eksik Altyazılar" -#: gui/slick/views/layouts/main.mako:154 sickbeard/webserve.py:3356 -#: sickbeard/webserve.py:3357 +#: gui/slick/views/layouts/main.mako:154 sickbeard/webserve.py:3355 +#: sickbeard/webserve.py:3356 msgid "Backlog Overview" msgstr "Sonradan İndirmeye Genel Bakış" -#: sickbeard/webserve.py:3481 +#: sickbeard/webserve.py:3480 msgid "Mass Edit" msgstr "Toplu Düzenleme" -#: sickbeard/webserve.py:3586 +#: sickbeard/webserve.py:3585 msgid "Unable to update show: {excption_format}" msgstr "" -#: sickbeard/webserve.py:3594 +#: sickbeard/webserve.py:3593 msgid "Unable to refresh show {show_name}: {excption_format}" msgstr "" -#: sickbeard/webserve.py:3605 +#: sickbeard/webserve.py:3604 msgid "Errors encountered" msgstr "Hatalarla karşılaşıldı" -#: gui/slick/views/config_general.mako:261 sickbeard/webserve.py:3611 +#: gui/slick/views/config_general.mako:261 sickbeard/webserve.py:3610 msgid "Updates" msgstr "Güncelleştirmeler" -#: sickbeard/webserve.py:3616 +#: sickbeard/webserve.py:3615 msgid "Refreshes" msgstr "Yenilemeler" -#: sickbeard/webserve.py:3621 +#: sickbeard/webserve.py:3620 msgid "Renames" msgstr "Yeniden adlandırılanlar" #: gui/slick/views/displayShow.mako:260 gui/slick/views/displayShow.mako:435 #: gui/slick/views/editShow.mako:119 gui/slick/views/inc_addShowOptions.mako:20 -#: gui/slick/views/manage_massEdit.mako:262 sickbeard/webserve.py:3626 -#: sickbeard/webserve.py:5244 +#: gui/slick/views/manage_massEdit.mako:262 sickbeard/webserve.py:3625 +#: sickbeard/webserve.py:5215 msgid "Subtitles" msgstr "Alt yazılar" -#: sickbeard/webserve.py:3631 +#: sickbeard/webserve.py:3630 msgid "The following actions were queued" msgstr "Takip eden işlemler sıraya alındı" -#: sickbeard/webserve.py:3651 -msgid "For best results please set the Download Station alias as" -msgstr "En iyi sonuçlar için lütfen Download İstasyonu takma adını bu şekilde ayarla" - -#: sickbeard/webserve.py:3652 -msgid "You can check this setting in the Synology DSM" -msgstr "Synology DSM'de bu ayarı kontrol edebilirsiniz" - -#: sickbeard/webserve.py:3652 sickbeard/webserve.py:3654 -msgid "Control Panel" -msgstr "Kontrol Paneli" - -#: sickbeard/webserve.py:3652 -msgid "Application Portal" -msgstr "Uygulama Merkezi" - -#: sickbeard/webserve.py:3653 -msgid "Make sure you allow DSM to be embedded with iFrames too in" -msgstr "" - -#: sickbeard/webserve.py:3654 -msgid "DSM Settings" -msgstr "DSM Ayarları" - -#: sickbeard/webserve.py:3654 -msgid "Security" -msgstr "Güvenlik" - -#: gui/slick/views/layouts/main.mako:167 sickbeard/webserve.py:3662 -msgid "Manage Torrents" -msgstr "Torrentleri Yönet" - -#: gui/slick/views/layouts/main.mako:170 sickbeard/webserve.py:3683 +#: gui/slick/views/layouts/main.mako:170 sickbeard/webserve.py:3654 msgid "Failed Downloads" msgstr "Başarısız İndirmeler" -#: gui/slick/views/layouts/main.mako:155 sickbeard/webserve.py:3701 +#: gui/slick/views/layouts/main.mako:155 sickbeard/webserve.py:3672 msgid "Manage Searches" msgstr "Aramaları Yönet" -#: sickbeard/webserve.py:3709 +#: sickbeard/webserve.py:3680 msgid "Backlog search started" msgstr "Biriktirme listesi araması başladı" -#: sickbeard/webserve.py:3719 +#: sickbeard/webserve.py:3690 msgid "Daily search started" msgstr "Günlük arama başladı" -#: sickbeard/webserve.py:3728 +#: sickbeard/webserve.py:3699 msgid "Find propers search started" msgstr "" -#: sickbeard/webserve.py:3737 +#: sickbeard/webserve.py:3708 msgid "Subtitle search started" msgstr "Alt yazı arama başladı" -#: sickbeard/webserve.py:3801 +#: sickbeard/webserve.py:3772 msgid "Remove Selected" msgstr "" -#: sickbeard/webserve.py:3802 +#: sickbeard/webserve.py:3773 msgid "Clear History" msgstr "Geçmişi Temizle" -#: sickbeard/webserve.py:3803 +#: sickbeard/webserve.py:3774 msgid "Trim History" msgstr "Geçmişi Düzenle" -#: sickbeard/webserve.py:3823 +#: sickbeard/webserve.py:3794 msgid "Selected history entries removed" msgstr "" -#: sickbeard/webserve.py:3830 +#: sickbeard/webserve.py:3801 msgid "History cleared" msgstr "Geçmiş temizlendi" -#: sickbeard/webserve.py:3837 +#: sickbeard/webserve.py:3808 msgid "Removed history entries older than 30 days" msgstr "30 günden daha eski geçmiş girdileri kaldırıldı" -#: gui/slick/views/layouts/main.mako:185 sickbeard/webserve.py:3850 +#: gui/slick/views/layouts/main.mako:185 sickbeard/webserve.py:3821 msgid "General" msgstr "Genel" -#: sickbeard/webserve.py:3851 sickbeard/webserve.py:4143 +#: sickbeard/webserve.py:3822 sickbeard/webserve.py:4114 msgid "Backup/Restore" msgstr "Yedekle/Geri Yükle" -#: gui/slick/views/layouts/main.mako:187 sickbeard/webserve.py:3852 -#: sickbeard/webserve.py:4206 +#: gui/slick/views/layouts/main.mako:187 sickbeard/webserve.py:3823 +#: sickbeard/webserve.py:4177 msgid "Search Settings" msgstr "Arama Ayarları" -#: gui/slick/views/layouts/main.mako:188 sickbeard/webserve.py:3853 -#: sickbeard/webserve.py:4518 +#: gui/slick/views/layouts/main.mako:188 sickbeard/webserve.py:3824 +#: sickbeard/webserve.py:4489 msgid "Search Providers" msgstr "Arama Sağlayıcılar" -#: gui/slick/views/layouts/main.mako:189 sickbeard/webserve.py:3854 +#: gui/slick/views/layouts/main.mako:189 sickbeard/webserve.py:3825 msgid "Subtitles Settings" msgstr "Alt Yazı Ayarları" -#: gui/slick/views/layouts/main.mako:191 sickbeard/webserve.py:3856 -#: sickbeard/webserve.py:4964 +#: gui/slick/views/layouts/main.mako:191 sickbeard/webserve.py:3827 +#: sickbeard/webserve.py:4935 msgid "Notifications" msgstr "Bildirimler" @@ -1240,142 +1237,142 @@ msgstr "Bildirimler" #: gui/slick/views/home.mako:35 gui/slick/views/inc_addShowOptions.mako:79 #: gui/slick/views/inc_home_showList.mako:179 gui/slick/views/layouts/main.mako:192 #: gui/slick/views/manage.mako:44 gui/slick/views/manage_massEdit.mako:202 -#: sickbeard/webserve.py:3857 sickbeard/webserve.py:5309 +#: sickbeard/webserve.py:3828 sickbeard/webserve.py:5280 msgid "Anime" msgstr "Anime" -#: sickbeard/webserve.py:3895 sickbeard/webserve.py:3896 +#: sickbeard/webserve.py:3866 sickbeard/webserve.py:3867 msgid "SickRage Configuration" msgstr "SickRage Ayarları" -#: sickbeard/webserve.py:3910 +#: sickbeard/webserve.py:3881 msgid "Config - Shares" msgstr "" -#: sickbeard/webserve.py:3910 +#: sickbeard/webserve.py:3881 msgid "Windows Shares Configuration" msgstr "" -#: sickbeard/webserve.py:3937 +#: sickbeard/webserve.py:3908 msgid "Saved Shares" msgstr "" -#: sickbeard/webserve.py:3937 +#: sickbeard/webserve.py:3908 msgid "Your Windows share settings have been saved" msgstr "" -#: sickbeard/webserve.py:3948 +#: sickbeard/webserve.py:3919 msgid "Config - General" msgstr "Ayarlar - Genel" -#: sickbeard/webserve.py:3948 +#: sickbeard/webserve.py:3919 msgid "General Configuration" msgstr "Genel Ayarlar" -#: sickbeard/webserve.py:3988 +#: sickbeard/webserve.py:3959 msgid "Saved Defaults" msgstr "" -#: sickbeard/webserve.py:3988 +#: sickbeard/webserve.py:3959 msgid "Your \"add show\" defaults have been set to your current selections." msgstr "" -#: sickbeard/webserve.py:4095 +#: sickbeard/webserve.py:4066 msgid "Unable to create directory {directory}, log directory not changed." msgstr "{directory} isimli klasör oluşturulamadı, günlük dosyası değişmedi." -#: sickbeard/webserve.py:4103 +#: sickbeard/webserve.py:4074 msgid "Unable to create directory {directory}, https cert directory not changed." msgstr "" -#: sickbeard/webserve.py:4107 +#: sickbeard/webserve.py:4078 msgid "Unable to create directory {directory}, https key directory not changed." msgstr "" -#: sickbeard/webserve.py:4126 sickbeard/webserve.py:4324 sickbeard/webserve.py:4456 -#: sickbeard/webserve.py:5227 +#: sickbeard/webserve.py:4097 sickbeard/webserve.py:4295 sickbeard/webserve.py:4427 +#: sickbeard/webserve.py:5198 msgid "Error(s) Saving Configuration" msgstr "Yapılandırma Kaydedilemedi" -#: sickbeard/webserve.py:4129 sickbeard/webserve.py:4327 sickbeard/webserve.py:4458 -#: sickbeard/webserve.py:4950 sickbeard/webserve.py:5230 sickbeard/webserve.py:5294 -#: sickbeard/webserve.py:5323 +#: sickbeard/webserve.py:4100 sickbeard/webserve.py:4298 sickbeard/webserve.py:4429 +#: sickbeard/webserve.py:4921 sickbeard/webserve.py:5201 sickbeard/webserve.py:5265 +#: sickbeard/webserve.py:5294 msgid "Configuration Saved" msgstr "Yapılandırma Kaydedildi" -#: sickbeard/webserve.py:4142 +#: sickbeard/webserve.py:4113 msgid "Config - Backup/Restore" msgstr "Ayarlar - Yedekle/Geri Yükle" -#: sickbeard/webserve.py:4205 +#: sickbeard/webserve.py:4176 msgid "Config - Episode Search" msgstr "Yapılandırma - Bölüm Arama" -#: sickbeard/webserve.py:4340 +#: sickbeard/webserve.py:4311 msgid "Config - Post Processing" msgstr "Yapılandırma - Son İşlem" -#: sickbeard/webserve.py:4380 +#: sickbeard/webserve.py:4351 msgid "Unpacking Not Supported, disabling unpack setting" msgstr "Arşiv Açma Desteklenmiyor, arşivden çıkar seçeneği etkisizleştiriliyor" -#: sickbeard/webserve.py:4431 +#: sickbeard/webserve.py:4402 msgid "You tried saving an invalid normal naming config, not saving your naming settings" msgstr "" -#: sickbeard/webserve.py:4439 +#: sickbeard/webserve.py:4410 msgid "You tried saving an invalid anime naming config, not saving your naming settings" msgstr "" -#: sickbeard/webserve.py:4517 +#: sickbeard/webserve.py:4488 msgid "Config - Providers" msgstr "Yapılandırma - Sağlayıcılar" -#: sickbeard/webserve.py:4547 +#: sickbeard/webserve.py:4518 msgid "No Provider Name specified" msgstr "Hiçbir Sağlayıcı İsmi belirtilmedi" -#: sickbeard/webserve.py:4549 +#: sickbeard/webserve.py:4520 msgid "No Provider Url specified" msgstr "Hiçbir Sağlayıcı Url'si belirtilmedi" -#: sickbeard/webserve.py:4551 +#: sickbeard/webserve.py:4522 msgid "No Provider Api key specified" msgstr "Hiçbir Sağlayıcı Api anahtarı belirtilmedi" -#: sickbeard/webserve.py:4963 +#: sickbeard/webserve.py:4934 msgid "Config - Notifications" msgstr "Yapılandırma - Bildirimler" -#: sickbeard/webserve.py:5243 +#: sickbeard/webserve.py:5214 msgid "Config - Subtitles" msgstr "Yapılandırma - Altyazılar" -#: sickbeard/webserve.py:5308 +#: sickbeard/webserve.py:5279 msgid "Config - Anime" msgstr "Yapılandırma - Anime" -#: sickbeard/webserve.py:5336 +#: sickbeard/webserve.py:5307 msgid "Clear Errors" msgstr "Hataları Temizle" -#: sickbeard/webserve.py:5342 +#: sickbeard/webserve.py:5313 msgid "Clear Warnings" msgstr "Uyarıları Temizle" -#: sickbeard/webserve.py:5348 +#: sickbeard/webserve.py:5319 msgid "Submit Errors" msgstr "Hataları Bildir" -#: sickbeard/webserve.py:5363 +#: sickbeard/webserve.py:5334 msgid "Logs & Errors" msgstr "Günlükler & Hatalar" -#: sickbeard/webserve.py:5388 +#: sickbeard/webserve.py:5359 msgid "Log File" msgstr "Günlük Dosyası" -#: sickbeard/webserve.py:5388 +#: sickbeard/webserve.py:5359 msgid "Logs" msgstr "Günlükler" @@ -1383,30 +1380,166 @@ msgstr "Günlükler" msgid "This is a test notification from SickRage" msgstr "" -#: gui/slick/js/core.js:481 gui/slick/js/core.js:502 gui/slick/js/core.js:524 -#: gui/slick/js/core.js:548 gui/slick/js/core.js:573 gui/slick/js/core.js:596 -#: gui/slick/js/core.js:625 gui/slick/js/core.js:645 gui/slick/js/core.js:690 -#: gui/slick/js/core.js:769 gui/slick/js/core.js:829 gui/slick/js/core.js:849 -#: gui/slick/js/core.js:879 gui/slick/js/core.js:909 gui/slick/js/core.js:969 -#: gui/slick/js/core.js:1046 gui/slick/js/core.js:1066 gui/slick/js/core.js:1085 +#: gui/slick/js/browser.js:6 +msgid "Choose Directory" +msgstr "" + +#: gui/slick/js/core.js:443 +msgid "Select log file folder location" +msgstr "" + +#: gui/slick/js/core.js:445 +msgid "Select CSS file" +msgstr "" + +#: gui/slick/js/core.js:469 +msgid "Select backup folder to save to" +msgstr "" + +#: gui/slick/js/core.js:470 +msgid "Select backup files to restore" +msgstr "" + +#: gui/slick/js/core.js:479 gui/slick/js/core.js:500 gui/slick/js/core.js:522 +#: gui/slick/js/core.js:546 gui/slick/js/core.js:571 gui/slick/js/core.js:594 +#: gui/slick/js/core.js:623 gui/slick/js/core.js:643 gui/slick/js/core.js:688 +#: gui/slick/js/core.js:767 gui/slick/js/core.js:827 gui/slick/js/core.js:847 +#: gui/slick/js/core.js:877 gui/slick/js/core.js:907 gui/slick/js/core.js:967 +#: gui/slick/js/core.js:1044 gui/slick/js/core.js:1064 gui/slick/js/core.js:1083 msgid "Please fill out the necessary fields above." msgstr "" -#: gui/slick/js/core.js:1328 gui/slick/js/core.js:1378 gui/slick/js/core.js:1427 -#: gui/slick/js/core.js:1493 +#: gui/slick/js/core.js:680 +msgid "<b>Step 1:</b> Confirm Authorization" +msgstr "" + +#: gui/slick/js/core.js:977 +msgid "Check blacklist name; the value needs to be a trakt slug" +msgstr "" + +#: gui/slick/js/core.js:1022 +msgid "You must provide a recipient email address!" +msgstr "" + +#: gui/slick/js/core.js:1107 +msgid "You didn't supply a Pushbullet api key" +msgstr "" + +#: gui/slick/js/core.js:1133 gui/slick/js/core.js:1162 +msgid "Don't forget to save your new pushbullet settings." +msgstr "" + +#: gui/slick/js/core.js:1262 +msgid "Select TV Download Directory" +msgstr "" + +#: gui/slick/js/core.js:1263 +msgid "Select Unpack Directory" +msgstr "" + +#: gui/slick/js/core.js:1326 gui/slick/js/core.js:1376 gui/slick/js/core.js:1425 +#: gui/slick/js/core.js:1491 msgid "This pattern is invalid." msgstr "" -#: gui/slick/js/core.js:1336 gui/slick/js/core.js:1386 gui/slick/js/core.js:1435 -#: gui/slick/js/core.js:1501 +#: gui/slick/js/core.js:1334 gui/slick/js/core.js:1384 gui/slick/js/core.js:1433 +#: gui/slick/js/core.js:1499 msgid "This pattern would be invalid without the folders, using it will force \"Season Folders\" on for all shows." msgstr "" -#: gui/slick/js/core.js:1344 gui/slick/js/core.js:1394 gui/slick/js/core.js:1443 -#: gui/slick/js/core.js:1509 +#: gui/slick/js/core.js:1342 gui/slick/js/core.js:1392 gui/slick/js/core.js:1441 +#: gui/slick/js/core.js:1507 msgid "This pattern is valid." msgstr "" +#: gui/slick/js/core.js:1818 +msgid "Select .nzb black hole/watch location" +msgstr "" + +#: gui/slick/js/core.js:1819 +msgid "Select .torrent black hole/watch location" +msgstr "" + +#: gui/slick/js/core.js:1820 +msgid "Select .torrent download location" +msgstr "" + +#: gui/slick/js/core.js:1900 +msgid "Minimum seeding time is" +msgstr "" + +#: gui/slick/js/core.js:1902 +msgid "URL to your uTorrent client (e.g. http://localhost:8000)" +msgstr "" + +#: gui/slick/js/core.js:1905 +msgid "Stop seeding when inactive for" +msgstr "" + +#: gui/slick/js/core.js:1911 +msgid "URL to your Transmission client (e.g. http://localhost:9091)" +msgstr "" + +#: gui/slick/js/core.js:1921 +msgid "URL to your Deluge client (e.g. http://localhost:8112)" +msgstr "" + +#: gui/slick/js/core.js:1930 +msgid "IP or Hostname of your Deluge Daemon (e.g. scgi://localhost:58846)" +msgstr "" + +#: gui/slick/js/core.js:1937 +msgid "URL to your Synology DS client (e.g. http://localhost:5000)" +msgstr "" + +#: gui/slick/js/core.js:1941 +msgid "URL to your rTorrent client (e.g. scgi://localhost:5000 <br> or https://localhost/rutorrent/plugins/httprpc/action.php)" +msgstr "" + +#: gui/slick/js/core.js:1952 +msgid "URL to your qBittorrent client (e.g. http://localhost:8080)" +msgstr "" + +#: gui/slick/js/core.js:1962 +msgid "URL to your MLDonkey (e.g. http://localhost:4080)" +msgstr "" + +#: gui/slick/js/core.js:1974 +msgid "URL to your putio client (e.g. http://localhost:8080)" +msgstr "" + +#: gui/slick/js/core.js:1975 +msgid "<a herf=\"https://app.put.io/oauth/apps/new\" target=\"_blank\"> Create a new OAuth app for put.io</a>" +msgstr "" + +#: gui/slick/js/core.js:1977 +msgid "Put.io Parent Folder" +msgstr "" + +#: gui/slick/js/core.js:1978 +msgid "Put.io OAuth Token" +msgstr "" + +#: gui/slick/js/core.js:3383 gui/slick/views/displayShow.mako:410 +msgid "Show Episodes" +msgstr "Dizi Bölümleri" + +#: gui/slick/js/core.js:3388 gui/slick/views/displayShow.mako:408 +msgid "Hide Episodes" +msgstr "" + +#: gui/slick/js/core.js:3396 +msgid "Select Show Location" +msgstr "" + +#: gui/slick/js/core.js:3460 +msgid "Select Unprocessed Episode Folder" +msgstr "" + +#: gui/slick/js/core.js:3790 +msgid "DELETED" +msgstr "" + #: gui/slick/js/core.js:4082 msgid "Resume updating the log on this page." msgstr "" @@ -1415,6 +1548,26 @@ msgstr "" msgid "Pause updating the log on this page." msgstr "" +#: gui/slick/js/core.js:4323 +msgid "searching {searchingFor}..." +msgstr "" + +#: gui/slick/js/core.js:4334 +msgid "search timed out, try again or try another indexer" +msgstr "" + +#: gui/slick/js/core.js:4503 +msgid "loading folders..." +msgstr "" + +#: gui/slick/js/parsers.js:7 gui/slick/js/parsers.js:8 +#: gui/slick/js/plotTooltip.js:6 gui/slick/js/sceneExceptionsTooltip.js:6 +#: gui/slick/views/inc_home_showList.mako:209 +#: gui/slick/views/inc_home_showList.mako:215 +#: gui/slick/views/inc_home_showList.mako:231 +msgid "Loading..." +msgstr "Yükleniyor..." + #: gui/slick/views/404.mako:5 msgid "You have reached this page by accident, please check the url." msgstr "Bu sayfaya yanlışlıkla ulaştınız, lütfen adresi denetleyin." @@ -5711,14 +5864,6 @@ msgstr "Seçilen bölümleri değiştir" msgid "Select Columns" msgstr "Sütunları Seç" -#: gui/slick/views/displayShow.mako:408 -msgid "Hide Episodes" -msgstr "" - -#: gui/slick/views/displayShow.mako:410 -msgid "Show Episodes" -msgstr "Dizi Bölümleri" - #: gui/slick/views/displayShow.mako:424 msgid "NFO" msgstr "NFO" @@ -6232,12 +6377,6 @@ msgstr "Etkin" msgid "loading" msgstr "yükleniyor" -#: gui/slick/views/inc_home_showList.mako:209 -#: gui/slick/views/inc_home_showList.mako:215 -#: gui/slick/views/inc_home_showList.mako:231 -msgid "Loading..." -msgstr "Yükleniyor..." - #: gui/slick/views/inc_qualityChooser.mako:31 msgid "<p><b><u>Preferred</u></b> qualities will replace those in <b><u>allowed</u></b>, even if they are lower.</p>" msgstr "" @@ -6775,6 +6914,10 @@ msgstr "" msgid "Update Emby" msgstr "" +#: gui/slick/views/layouts/main.mako:167 +msgid "Manage Torrents" +msgstr "Torrentleri Yönet" + #: gui/slick/views/layouts/main.mako:173 msgid "Missed Subtitle Management" msgstr "Kayıp Alt Yazı Yönetimi" diff --git a/locale/uk_UA/LC_MESSAGES/messages.json b/locale/uk_UA/LC_MESSAGES/messages.json index 7bd3b66e65258c5b33998ce9681fb29382f2df22..8c3b841778694e309cb9d842a6557b4e9a2474c7 100644 --- a/locale/uk_UA/LC_MESSAGES/messages.json +++ b/locale/uk_UA/LC_MESSAGES/messages.json @@ -1 +1 @@ -{"messages":{"domain":"messages","locale_data":{"messages":{"100":[null,""],"250":[null,""],"500":[null,""],"":{"domain":"messages","plural_forms":"nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);","lang":"uk_UA"},"Drama":[null,"Драма"],"Mystery":[null,"Містика"],"Science-Fiction":[null,"Фантастика"],"Crime":[null,"Кримінал"],"Action":[null,"Екшн"],"Comedy":[null,"Комедія"],"Thriller":[null,"Трилер"],"Animation":[null,"Мультфільм"],"Family":[null,"Сімейний"],"Fantasy":[null,"Фентезі"],"Adventure":[null,"Пригоди"],"Horror":[null,"Жахи"],"Film-Noir":[null,"Нуар"],"Sci-Fi":[null,"Фантастика"],"Romance":[null,"Романтичний"],"Sport":[null,"Спорт"],"War":[null,"Військовий"],"Biography":[null,"Біографія"],"History":[null,"Історичний"],"Music":[null,""],"Western":[null,"Вестерн"],"News":[null,"Новини"],"Sitcom":[null,""],"Reality-TV":[null,""],"Documentary":[null,"Документальний"],"Game-Show":[null,""],"Musical":[null,"Мюзикл"],"Talk-Show":[null,"Ток-шоу"],"Started Download":[null,""],"Download Finished":[null,"Завантаження Завершене"],"Subtitle Download Finished":[null,"Завантаження Субтитрів Завершене"],"SickRage Updated":[null,""],"SickRage Updated To Commit#: ":[null,""],"SickRage new login":[null,""],"New login from IP: {0}. http://geomaplookup.net/?ip={0}":[null,"Новий Логін з IP: {0}. http://geomaplookup.net/?IP={0}"],"Repeat":[null,""],"Repeat (Separated)":[null,""],"Extend":[null,""],"Extend (Limited)":[null,""],"Extend (Limited, E-prefixed)":[null,""],"Downloaded":[null,"Завантажене"],"Snatched":[null,""],"Snatched (Proper)":[null,""],"Failed":[null,"Не вдалося"],"Snatched (Best)":[null,""],"Archived":[null,"Архівовано"],"Unknown":[null,""],"Unaired":[null,""],"Skipped":[null,""],"Wanted":[null,""],"Ignored":[null,""],"Subtitled":[null,""],"<No Filter>":[null,""],"Daily Searcher":[null,""],"Backlog":[null,""],"Show Updater":[null,""],"Check Version":[null,""],"Show Queue":[null,""],"Search Queue (All)":[null,""],"Search Queue (Daily Searcher)":[null,""],"Search Queue (Backlog)":[null,""],"Search Queue (Manual)":[null,""],"Search Queue (Retry/Failed)":[null,""],"Search Queue (RSS)":[null,""],"Find Propers":[null,""],"Postprocessor":[null,""],"Find Subtitles":[null,""],"Trakt Checker":[null,""],"Event":[null,""],"Error":[null,""],"Tornado":[null,""],"Thread":[null,""],"Main":[null,""],"Loading":[null,""],"New update found for SickRage, starting auto-updater":[null,""],"Update was successful":[null,""],"Update failed!":[null,""],"Backup":[null,""],"Config backup in progress...":[null,""],"Config backup successful, updating...":[null,""],"Config backup failed, aborting update":[null,""],"No update needed":[null,""],"Mako Error":[null,""],"Oops":[null,""],"Wrong API key used":[null,""],"Login":[null,""],"API Key not generated":[null,""],"API Builder":[null,""],"Schedule":[null,""],"Test 1":[null,""],"This is test number 1":[null,""],"Test 2":[null,""],"This is test number 2":[null,""],"You're using the {branch} branch. Please use 'master' unless specifically asked":[null,""],"Invalid show parameters":[null,""],"Invalid parameters":[null,""],"Episode couldn't be retrieved":[null,""],"Home":[null,""],"Show List":[null,""],"Error: Unsupported Request. Send jsonp request with 'callback' variable in the query string.":[null,""],"Success. Connected and authenticated":[null,""],"Authentication failed. SABnzbd expects":[null,""],"as authentication method":[null,""],"Unable to connect to host":[null,""],"SMS sent successfully":[null,""],"Problem sending SMS: {message}":[null,""],"Telegram notification succeeded. Check your Telegram clients to make sure it worked":[null,""],"Error sending Telegram notification: {message}":[null,""],"join notification succeeded. Check your join clients to make sure it worked":[null,""],"Error sending join notification: {message}":[null,""]," with password":[null,""],"Registered and Tested growl successfully {growl_host}":[null,""],"Registration and Testing of growl failed {growl_host}":[null,""],"Test prowl notice sent successfully":[null,""],"Test prowl notice failed":[null,""],"Boxcar2 notification succeeded. Check your Boxcar2 clients to make sure it worked":[null,""],"Error sending Boxcar2 notification":[null,""],"Pushover notification succeeded. Check your Pushover clients to make sure it worked":[null,""],"Error sending Pushover notification":[null,""],"Key verification successful":[null,""],"Unable to verify key":[null,""],"Tweet successful, check your twitter to make sure it worked":[null,""],"Error sending tweet":[null,""],"Please enter a valid account sid":[null,""],"Please enter a valid auth token":[null,""],"Please enter a valid phone sid":[null,""],"Please format the phone number as \"+1-###-###-####\"":[null,""],"Authorization successful and number ownership verified":[null,""],"Error sending sms":[null,""],"Slack message successful":[null,""],"Slack message failed":[null,""],"Discord message successful":[null,""],"Discord message failed":[null,""],"Test KODI notice sent successfully to {kodi_host}":[null,""],"Test KODI notice failed to {kodi_host}":[null,""],"Successful test notice sent to Plex Home Theater ... {plex_clients}":[null,""],"Test failed for Plex Home Theater ... {plex_clients}":[null,""],"Tested Plex Home Theater(s)":[null,""],"Successful test of Plex Media Server(s) ... {plex_servers}":[null,""],"Test failed, No Plex Media Server host specified":[null,""],"Test failed for Plex Media Server(s) ... {plex_servers}":[null,""],"Tested Plex Media Server host(s)":[null,""],"Tried sending desktop notification via libnotify":[null,""],"Test notice sent successfully to {emby_host}":[null,""],"Test notice failed to {emby_host}":[null,""],"Successfully started the scan update":[null,""],"Test failed to start the scan update":[null,""],"Test notice sent successfully to {nmj2_host}":[null,""],"Test notice failed to {nmj2_host}":[null,""],"Trakt Authorized":[null,""],"Trakt Not Authorized!":[null,""],"Test email sent successfully! Check inbox.":[null,""],"ERROR: {last_error}":[null,""],"Test NMA notice sent successfully":[null,""],"Test NMA notice failed":[null,""],"Pushalot notification succeeded. Check your Pushalot clients to make sure it worked":[null,""],"Error sending Pushalot notification":[null,""],"Pushbullet notification succeeded. Check your device to make sure it worked":[null,""],"Error sending Pushbullet notification":[null,""],"Status":[null,""],"Restarting SickRage":[null,""],"Update Failed":[null,""],"Update wasn't successful, not restarting. Check your log for more information.":[null,""],"Checking out branch":[null,""],"Already on branch":[null,""],"Invalid show ID: {show}":[null,""],"Show not in show list":[null,""],"Edit":[null,""],"This show is in the process of being downloaded - the info below is incomplete.":[null,""],"The information on this page is in the process of being updated.":[null,""],"The episodes below are currently being refreshed from disk":[null,""],"Currently downloading subtitles for this show":[null,""],"This show is queued to be refreshed.":[null,""],"This show is queued and awaiting an update.":[null,""],"This show is queued and awaiting subtitles download.":[null,""],"Resume":[null,""],"Pause":[null,""],"Remove":[null,""],"Re-scan files":[null,""],"Force Full Update":[null,""],"Update show in KODI":[null,""],"Update show in Emby":[null,""],"Hide specials":[null,""],"Show specials":[null,""],"Preview Rename":[null,""],"Download Subtitles":[null,""],"No scene exceptions":[null,""],"Invalid show ID":[null,""],"Unable to find the specified show":[null,""],"Unable to retreive Fansub Groups from AniDB.":[null,""],"Edit Show":[null,""],"Unable to refresh this show: {error}":[null,""],"New location <tt>{location}</tt> does not exist":[null,""],"Unable to update show: {error}":[null,""],"Unable to force an update on scene exceptions of the show.":[null,""],"Unable to force an update on scene numbering of the show.":[null,""],"{num_errors:d} error{plural} while saving changes:":[null,""],"{show_name} has been {paused_resumed}":[null,""],"resumed":[null,""],"paused":[null,""],"{show_name} has been {deleted_trashed} {was_deleted}":[null,""],"deleted":[null,""],"trashed":[null,""],"(media untouched)":[null,""],"(with all related media)":[null,""],"Unable to refresh this show.":[null,""],"Unable to update this show.":[null,""],"Library update command sent to KODI host(s)): {kodi_hosts}":[null,""],"Unable to contact one or more KODI host(s)): {kodi_hosts}":[null,""],"Library update command sent to Plex Media Server host: {plex_server}":[null,""],"Unable to contact Plex Media Server host: {plex_server}":[null,""],"Library update command sent to Emby host: {emby_host}":[null,""],"Unable to contact Emby host: {emby_host}":[null,""],"You must specify a show and at least one episode":[null,""],"Invalid status":[null,""],"Backlog was automatically started for the following seasons of <b>{show_name}</b>":[null,""],"Season":[null,""],"Backlog started":[null,""],"Retrying Search was automatically started for the following season of <b>{show_name}</b>":[null,""],"Retry Search started":[null,""],"You must specify a show":[null,""],"Can't rename episodes when the show dir is missing.":[null,""],"New subtitles downloaded: {new_subtitle_languages}":[null,""],"No subtitles downloaded":[null,""],"IRC":[null,""],"Could not load news from the repo. [Click here for news.md])({news_url})":[null,""],"The was a problem connecting to github, please refresh and try again":[null,""],"Could not load changes from the repo. [Click here for CHANGES.md]({changes_url})":[null,""],"Changelog":[null,""],"Post Processing":[null,""],"Add Shows":[null,""],"No folders selected.":[null,""],"New Show":[null,""],"Trending Shows":[null,""],"Popular Shows":[null,""],"Most Anticipated Shows":[null,""],"Most Collected Shows":[null,""],"Most Watched Shows":[null,""],"Most Played Shows":[null,""],"Recommended Shows":[null,""],"New Shows":[null,"Нові Серіали"],"Season Premieres":[null,"Прем'єри сезону"],"Existing Show":[null,""],"No root directories setup, please go back and add one.":[null,""],"Show added":[null,""],"Adding the specified show {show_name}":[null,""],"Missing params, no Indexer ID or folder: {show_to_add} and {root_dir}/{show_path}":[null,""],"Unknown error. Unable to add show due to problem with show selection.":[null,""],"Unable to add show":[null,""],"Folder {show_dir} exists already":[null,""],"Unable to create the folder {show_dir}, can't add the show":[null,""],"Adding the specified show into {show_dir}":[null,""],"Shows Added":[null,""],"Automatically added {num_shows} from their existing metadata files":[null,""],"Mass Update":[null,""],"Episode Overview":[null,""],"Missing Subtitles":[null,""],"Backlog Overview":[null,""],"Mass Edit":[null,""],"Unable to update show: {excption_format}":[null,""],"Unable to refresh show {show_name}: {excption_format}":[null,""],"Errors encountered":[null,""],"Updates":[null,""],"Refreshes":[null,""],"Renames":[null,""],"Subtitles":[null,""],"The following actions were queued":[null,""],"For best results please set the Download Station alias as":[null,""],"You can check this setting in the Synology DSM":[null,""],"Control Panel":[null,""],"Application Portal":[null,""],"Make sure you allow DSM to be embedded with iFrames too in":[null,""],"DSM Settings":[null,""],"Security":[null,""],"Manage Torrents":[null,""],"Failed Downloads":[null,""],"Manage Searches":[null,""],"Backlog search started":[null,""],"Daily search started":[null,""],"Find propers search started":[null,""],"Subtitle search started":[null,""],"Remove Selected":[null,""],"Clear History":[null,""],"Trim History":[null,""],"Selected history entries removed":[null,""],"History cleared":[null,""],"Removed history entries older than 30 days":[null,""],"General":[null,""],"Backup/Restore":[null,""],"Search Settings":[null,""],"Search Providers":[null,""],"Subtitles Settings":[null,""],"Notifications":[null,""],"Anime":[null,""],"SickRage Configuration":[null,""],"Config - Shares":[null,""],"Windows Shares Configuration":[null,""],"Saved Shares":[null,""],"Your Windows share settings have been saved":[null,""],"Config - General":[null,""],"General Configuration":[null,""],"Saved Defaults":[null,""],"Your \"add show\" defaults have been set to your current selections.":[null,""],"Unable to create directory {directory}, log directory not changed.":[null,""],"Unable to create directory {directory}, https cert directory not changed.":[null,""],"Unable to create directory {directory}, https key directory not changed.":[null,""],"Error(s) Saving Configuration":[null,""],"Configuration Saved":[null,""],"Config - Backup/Restore":[null,""],"Config - Episode Search":[null,""],"Config - Post Processing":[null,""],"Unpacking Not Supported, disabling unpack setting":[null,""],"You tried saving an invalid normal naming config, not saving your naming settings":[null,""],"You tried saving an invalid anime naming config, not saving your naming settings":[null,""],"Config - Providers":[null,""],"No Provider Name specified":[null,""],"No Provider Url specified":[null,""],"No Provider Api key specified":[null,""],"Config - Notifications":[null,""],"Config - Subtitles":[null,""],"Config - Anime":[null,""],"Clear Errors":[null,""],"Clear Warnings":[null,""],"Submit Errors":[null,""],"Logs & Errors":[null,""],"Log File":[null,""],"Logs":[null,""],"This is a test notification from SickRage":[null,""],"Please fill out the necessary fields above.":[null,""],"This pattern is invalid.":[null,""],"This pattern would be invalid without the folders, using it will force \"Season Folders\" on for all shows.":[null,""],"This pattern is valid.":[null,""],"Resume updating the log on this page.":[null,""],"Pause updating the log on this page.":[null,""],"You have reached this page by accident, please check the url.":[null,"Ви попали на цю сторінку випадково, будь ласка, перевірте ссилку."],"A mako error has occured.<br>\n If this happened during an update a simple page refresh may be the solution.<br>\n Mako errors that happen during updates may be a one time error if there were significant ui changes.":[null,""],"Show/Hide Error":[null,""],"Add New Show":[null,"Додати Новий Серіал"],"For shows that you haven't downloaded yet, this option finds a show on theTVDB.com, creates a directory for it's episodes, and adds it to SickRage.":[null,""],"Add From Trakt Lists":[null,""],"For shows that you haven't downloaded yet, this option lets you choose from a show from one of the Trakt lists to add to SickRage.":[null,""],"Add From IMDB's Popular Shows":[null,""],"View IMDB's list of the most popular shows. This feature uses IMDB's MOVIEMeter algorithm to identify popular TV Series.":[null,""],"Add Existing Shows":[null,"Додати Існуючі Серіали"],"Use this option to add shows that already have a folder created on your hard drive. SickRage will scan your existing metadata/episodes and add the show accordingly.":[null,""],"Add Existing Show":[null,"Додати Існуючий Серіал"],"Manage Directories":[null,""],"Customize Options":[null,""],"SickRage can add existing shows, using the current options, by using locally stored NFO/XML metadata to eliminate user interaction. If you would rather have SickRage prompt you to customize each show, then use the checkbox below.":[null,""],"Prompt me to set settings for each show":[null,""],"Displaying folders within these directories which aren't already added to SickRage":[null,""],"Submit":[null,""],"Find a show on theTVDB":[null,"Знайти серіал на theTVDB"],"Show retrieved from existing metadata":[null,""],"All Indexers":[null,""],"Search":[null,""],"This will only affect the language of the retrieved metadata file contents and episode filenames.":[null,""],"This <b>DOES NOT</b> allow SickRage to download non-english TV episodes!":[null,""],"Pick the parent folder":[null,""],"Pre-chosen Destination Folder":[null,""],"Customize options":[null,""],"Add Show":[null,""],"Skip Show":[null,""],"Sort By":[null,""],"Name":[null,"Ім'я"],"Original":[null,""],"Votes":[null,""],"Rating":[null,""],"Rating > Votes":[null,""],"Sort Order":[null,""],"Asc":[null,""],"Desc":[null,""],"Fetching of IMDB Data failed. Are you online?":[null,""],"Exception":[null,""],"Select Trakt List":[null,""],"Most Anticipated":[null,"Найбільш очікувані"],"Trending":[null,"Тенденції"],"Popular":[null,"Популярні"],"Most Watched":[null,""],"Most Played":[null,""],"Most Collected":[null,""],"Recommended":[null,"Рекомендовані"],"Toggle navigation":[null,""],"Profile":[null,""],"JSONP":[null,""],"Back to SickRage":[null,"Назад на SickRage"],"Parameters":[null,"Параметри"],"Required":[null,""],"Description":[null,""],"Type":[null,""],"Default value":[null,""],"Allowed values":[null,""],"Playground":[null,""],"Clear":[null,""],"Yes":[null,""],"No":[null,""],"season":[null,""],"episode":[null,""],"Python Version":[null,""],"SSL Version":[null,""],"OS":[null,""],"Locale":[null,""],"User":[null,""],"Program Folder":[null,""],"Config File":[null,""],"Database File":[null,""],"Cache Folder":[null,""],"Log Folder":[null,""],"Arguments":[null,""],"Web Root":[null,""],"Website":[null,""],"Wiki":[null,""],"Source":[null,""],"IRC Chat":[null,""],"AnimeDB Settings":[null,""],"Look & Feel":[null,""],"AniDB is non-profit database of anime information that is freely open to the public":[null,""],"Enable":[null,""],"should SickRage use data from AniDB?":[null,""],"AniDB Username":[null,""],"username of your AniDB account":[null,""],"AniDB Password":[null,""],"password of your AniDB account":[null,""],"AniDB MyList":[null,""],"do you want to add the PostProcessed episodes to the MyList?":[null,""],"Look and Feel":[null,""],"How should the anime functions show and behave.":[null,""],"Split show lists":[null,""],"separate anime and normal shows in groups":[null,""],"Split in tabs":[null,""],"use tabs for when splitting show lists":[null,""],"Restore":[null,""],"Backup your main database file and config.":[null,""],"Select the folder you wish to save your backup file to":[null,""],"Restore your main database file and config.":[null,""],"Select the backup file you wish to restore":[null,""],"Misc":[null,""],"Interface":[null,""],"Advanced Settings":[null,""],"Startup options. Indexer options. Log and show file locations.":[null,""],"Some options may require a manual restart to take effect.":[null,""],"Default Indexer Language":[null,""],"for adding shows and metadata providers":[null,""],"Launch browser":[null,""],"open the SickRage home page on startup":[null,""],"Initial page":[null,""],"Shows":[null,""],"when launching SickRage interface":[null,""],"Choose hour to update shows":[null,""],"with information such as next air dates, show ended, etc. Use 15 for 3pm, 4 for 4am etc.":[null,""],"note":[null,""],"minutes are randomized each time SickRage is started":[null,""],"Send to trash for actions":[null,""],"when using show \"Remove\" and delete files":[null,""],"on scheduled deletes of the oldest log files":[null,""],"selected actions use trash (recycle bin) instead of the default permanent delete":[null,""],"Log file folder location":[null,""],"Number of Log files saved":[null,""],"number of log files saved when rotating logs (default: 5) (REQUIRES RESTART)":[null,""],"Size of Log files saved":[null,""],"maximum size in MB of the log file (default: 1MB) (REQUIRES RESTART)":[null,""],"Use initial indexer set to":[null,""],"as the default selection when adding new shows":[null,""],"Timeout show indexer at":[null,""],"seconds of inactivity when finding new shows (default:20)":[null,""],"Show root directories":[null,""],"where the files of shows are located":[null,""],"Save Changes":[null,""],"Options for software updates.":[null,""],"Check software updates":[null,""],"and display notifications when updates are available. Checks are run on startup and at the frequency set below*":[null,""],"Automatically update":[null,""],"fetch and install software updates. Updates are run on startup and in the background at the frequency set below*":[null,""],"Check the server every*":[null,""],"hours for software updates (default:1)":[null,""],"Notify on software update":[null,""],"send a message to all enabled notifiers when SickRage has been updated":[null,""],"User Interface":[null,""],"Options for visual appearance.":[null,""],"Interface Language":[null,""],"System Language":[null,""],"for appearance to take effect, save then refresh your browser":[null,""],"Display theme":[null,""],"Dark":[null,""],"Light":[null,""],"Use a background image":[null,""],"use a custom image as background for SickRage":[null,""],"Background Path":[null,""],"Path to the background image":[null,""],"Show fanart in the background":[null,""],"on the show summary page":[null,""],"Fanart transparency":[null,""],"transparency of the fanart in the background":[null,""],"Use a custom stylesheet file":[null,""],"use a custom .css file to style SickRage (for advanced users)":[null,""],"Stylesheet File Path":[null,""],"Path to the stylesheet (.css) file":[null,""],"Show all seasons":[null,""],"Sort with \"The\", \"A\", \"An\"":[null,""],"include articles (\"The\", \"A\", \"An\") when sorting show lists":[null,""],"Missed episodes range":[null,""],"set the range in days of the missed episodes in the Schedule page":[null,""],"Display fuzzy dates":[null,""],"move absolute dates into tooltips and display e.g. \"Last Thu\", \"On Tue\"":[null,""],"Trim zero padding":[null,""],"remove the leading number \"0\" shown on hour of day, and date of month":[null,""],"Date style":[null,""],"Use System Default":[null,""],"Time style":[null,""],"seconds are only shown on the History page":[null,""],"Timezone":[null,""],"Local":[null,""],"Network":[null,""],"display dates and times in either your timezone or the shows network timezone":[null,""],"use local timezone to start searching for episodes minutes after show ends (depends on your dailysearch frequency)":[null,""],"Download url":[null,""],"URL where the shows can be downloaded.":[null,""],"Web Interface":[null,""],"it is recommended that you enable a username and password to secure SickRage from being tampered with remotely.":[null,""],"these options require a manual restart to take effect.":[null,""],"API key":[null,""],"used to give 3rd party programs limited access to SickRage":[null,""],"you can try all the features of the API":[null,""],"here":[null,""],"HTTP logs":[null,""],"enable logs from the internal Tornado web server":[null,""],"HTTP username":[null,""],"set blank for no login":[null,""],"HTTP password":[null,""],"blank = no authentication":[null,""],"HTTP port":[null,""],"web port to browse and access SickRage (default:8081)":[null,""],"Notify on login":[null,""],"enable to be notified when a new login happens in webserver":[null,""],"Listen on IPv6":[null,""],"attempt binding to any available IPv6 address":[null,""],"Enable HTTPS":[null,""],"enable access to the web interface using a HTTPS address":[null,""],"HTTPS certificate":[null,""],"file name or path to HTTPS certificate":[null,""],"HTTPS key":[null,""],"file name or path to HTTPS key":[null,""],"Reverse proxy headers":[null,""],"accept the following reverse proxy headers (advanced)...":[null,""],"(X-Forwarded-For, X-Forwarded-Host, and X-Forwarded-Proto)":[null,""],"CPU throttling":[null,""],"Normal (default). High is lower and Low is higher CPU use":[null,""],"Anonymous redirect":[null,""],"backlink protection via anonymizer service, must end in \"?\"":[null,""],"Enable debug":[null,""],"enable debug logs":[null,""],"Verify SSL Certs":[null,""],"verify SSL Certificates (Disable this for broken SSL installs (Like QNAP))":[null,""],"No Restart":[null,""],"only shutdown when restarting SR":[null,""],"only select this when you have external software restarting SR automatically when it stops (like FireDaemon)":[null,""],"Encrypt passwords":[null,""],"in the <code>config.ini</code> file":[null,""],"warning":[null,""],"passwords must only contain":[null,""],"ASCII characters":[null,""],"Unprotected calendar":[null,""],"allow subscribing to the calendar without user and password":[null,""],"some services like Google Calendar only work this way":[null,""],"Google Calendar Icons":[null,""],"show an icon next to exported calendar events in Google Calendar":[null,""],"Proxy host":[null,""],"blank to disable or proxy to use when connecting to providers":[null,""],"also use global proxy setting for indexers (tvdb, xem, anidb, etc.)":[null,""],"Skip Remove Detection":[null,""],"skip detection of removed files":[null,""],"if disabled the episode will be set to the default deleted status":[null,""],"Default deleted episode status":[null,""],"define the status to be set for media file that has been deleted.":[null,""],"Archived option will keep previous downloaded quality":[null,""],"example: Downloaded (1080p WEB-DL) ==> Archived (1080p WEB-DL)":[null,""],"Options for github related features.":[null,""],"Branch version":[null,""],"error: No branches found.":[null,""],"select branch to use (restart required)":[null,""],"Authorization Type":[null,""],"Username and password":[null,""],"Personal access token":[null,""],"You must use a personal access token if you're using \"two-factor authentication\" on GitHub.":[null,""],"GitHub username":[null,""],"*** (REQUIRED FOR SUBMITTING ISSUES) ***":[null,""],"GitHub password":[null,""],"GitHub personal access token":[null,""],"Generate Token":[null,""],"Manage Tokens":[null,""],"GitHub remote for branch":[null,""],"access repo configured remotes (save then refresh browser)":[null,""],"default":[null,""],"origin":[null,""],"Git executable path":[null,""],"only needed if OS is unable to locate git from env":[null,""],"Git reset":[null,""],"removes untracked files and performs a hard reset on git branch automatically to help resolve update issues":[null,""],"Home Theater / NAS":[null,""],"Devices":[null,""],"Social":[null,""],"A free and open source cross-platform media center and home entertainment system software with a 10-foot user interface designed for the living-room TV.":[null,""],"send KODI commands?":[null,""],"Always on":[null,""],"log errors when unreachable?":[null,""],"Notify on snatch":[null,""],"send a notification when a download starts?":[null,""],"Notify on download":[null,""],"send a notification when a download finishes?":[null,""],"Notify on subtitle download":[null,""],"send a notification when subtitles are downloaded?":[null,""],"Update library":[null,""],"update KODI library when a download finishes?":[null,""],"Full library update":[null,""],"perform a full library update if update per-show fails?":[null,""],"Only update first host":[null,""],"only send library updates to the first active host?":[null,""],"KODI IP:Port":[null,""],"host running KODI (eg. 192.168.1.100:8080)":[null,""],"(multiple host strings must be separated by commas)":[null,""],"Username":[null,""],"username for your KODI server (blank for none)":[null,""],"Password":[null,""],"password for your KODI server (blank for none)":[null,""],"Click below to test.":[null,""],"Experience your media on a visually stunning, easy to use interface on your Mac connected to your TV. Your media library has never looked this good!":[null,""],"For sending notifications to Plex Home Theater (PHT) clients, use the KODI notifier with port <b>3005</b>.":[null,""],"send Plex Media Server library updates?":[null,""],"Plex Media Server Auth Token":[null,""],"auth token used by Plex":[null,""],"Update Library":[null,""],"update Plex Media Server library when a download finishes":[null,""],"Plex Media Server IP:Port":[null,""],"one or more hosts running Plex Media Server<br/>(eg. 192.168.1.1:32400, 192.168.1.2:32400)":[null,""],"HTTPS":[null,""],"use https for plex media server requests?":[null,""],"Click below to test Plex Media Server(s)":[null,""],"Test Plex Media Server":[null,""],"Plex Home Theater":[null,""],"send Plex Home Theater notifications?":[null,""],"Plex Home Theater IP:Port":[null,""],"one or more hosts running Plex Home Theater<br>(eg. 192.168.1.100:3000, 192.168.1.101:3000)":[null,""],"Click below to test Plex Home Theater(s)":[null,""],"Test Plex Home Theater":[null,""],"some Plex Home Theaters <b class=\"boldest\">do not</b> support notifications e.g. Plexapp for Samsung TVs":[null,""],"Emby":[null,""],"A home media server built using other popular open source technologies.":[null,""],"send update commands to Emby?":[null,""],"Emby IP:Port":[null,""],"host running Emby (eg. 192.168.1.100:8096)":[null,""],"Emby API Key":[null,""],"Networked Media Jukebox":[null,""],"The Networked Media Jukebox, or NMJ, is the official media jukebox interface made available for the Popcorn Hour 200-series.":[null,""],"send update commands to NMJ?":[null,""],"Popcorn IP address":[null,""],"IP address of Popcorn 200-series (eg. 192.168.1.100)":[null,""],"Get settings":[null,""],"Get Settings":[null,""],"the Popcorn Hour device must be powered on and NMJ running.":[null,""],"NMJ database":[null,""],"automatically filled via the 'Get Settings' button.":[null,""],"NMJ mount url":[null,""],"Networked Media Jukebox v2":[null,""],"The Networked Media Jukebox, or NMJv2, is the official media jukebox interface made available for the Popcorn Hour 300 & 400-series.":[null,""],"send update commands to NMJv2?":[null,""],"IP address of Popcorn 300/400-series (eg. 192.168.1.100)":[null,""],"Database location":[null,""],"Database instance":[null,""],"adjust this value if the wrong database is selected.":[null,""],"Find database":[null,""],"Find Database":[null,""],"the Popcorn Hour device must be powered on.":[null,""],"NMJv2 database":[null,""],"automatically filled via the 'Find Database' buttons.":[null,""],"Synology":[null,""],"The Synology DiskStation NAS.":[null,""],"Synology Indexer is the daemon running on the Synology NAS to build its media database.":[null,""],"send Synology notifications?":[null,""],"requires SickRage to be running on your Synology NAS.":[null,""],"Synology Indexer":[null,""],"Synology Notifier is the notification system of Synology DSM":[null,""],"send notifications to the Synology Notifier?":[null,""],"pyTivo":[null,""],"pyTivo is both an HMO and GoBack server. This notifier will load the completed downloads to your Tivo.":[null,""],"send notifications to pyTivo?":[null,""],"requires the downloaded files to be accessible by pyTivo.":[null,""],"pyTivo IP:Port":[null,""],"host running pyTivo (eg. 192.168.1.1:9032)":[null,""],"pyTivo share name":[null,""],"value used in pyTivo Web Configuration to name the share.":[null,""],"Tivo name":[null,""],"(Messages & Settings > Account & System Information > System Information > DVR name)":[null,""],"Growl":[null,""],"A cross-platform unobtrusive global notification system.":[null,""],"send Growl notifications?":[null,""],"Growl IP:Port":[null,""],"host running Growl (eg. 192.168.1.100:23053)":[null,""],"may leave blank if SickRage is on the same host.":[null,""],"otherwise Growl <b>requires</b> a password to be used.":[null,""],"Click below to register and test Growl, this is required for Growl notifications to work.":[null,""],"Register Growl":[null,""],"Prowl":[null,""],"A Growl client for iOS.":[null,""],"send Prowl notifications?":[null,""],"Prowl Message Title":[null,""],"Global Prowl API key(s)":[null,""],"Prowl API(s) listed here, separated by commas if applicable, will<br> receive notifications for <b>all</b> shows. Your Prowl API key is available at:":[null,""],"(this field may be blank except when testing.)":[null,""],"Show notification list":[null,""],"-- Select a Show --":[null,""],"Configure per-show notifications here by entering Prowl API key(s), separated by commas, '\n 'after selecting a show in the drop-down box. Be sure to activate the 'Save for this show' '\n 'button below after each entry.":[null,""],"Save for this show":[null,""],"Prowl priority":[null,""],"Very Low":[null,""],"Moderate":[null,""],"Normal":[null,""],"High":[null,""],"Emergency":[null,""],"priority of Prowl messages from SickRage.":[null,""],"Libnotify":[null,""],"The standard desktop notification API for Linux/*nix systems. This notifier will only function if the pynotify module is installed (Ubuntu/Debian package <a href=\"apt:python-notify\">python-notify</a>).":[null,""],"send Libnotify notifications?":[null,""],"Pushover":[null,""],"Pushover makes it easy to send real-time notifications to your Android and iOS devices.":[null,""],"send Pushover notifications?":[null,""],"Pushover key":[null,""],"user key of your Pushover account":[null,""],"Pushover API key":[null,""],"click here":[null,""]," to create a Pushover API key":[null,""],"Pushover devices":[null,""],"comma separated list of pushover devices you want to send notifications to":[null,""],"Pushover notification sound":[null,""],"Bike":[null,""],"Bugle":[null,""],"Cash Register":[null,""],"Classical":[null,""],"Cosmic":[null,""],"Falling":[null,""],"Gamelan":[null,""],"Incoming":[null,""],"Intermission":[null,""],"Magic":[null,""],"Mechanical":[null,""],"Piano Bar":[null,""],"Siren":[null,""],"Space Alarm":[null,""],"Tug Boat":[null,""],"Alien Alarm (long)":[null,""],"Climb (long)":[null,""],"Persistent (long)":[null,""],"Pushover Echo (long)":[null,""],"Up Down (long)":[null,""],"None (silent)":[null,""],"Device specific":[null,""],"choose notification sound to use":[null,""],"Pushover priority":[null,""],"Choose priority to use":[null,""],"Boxcar 2":[null,""],"Read your messages where and when you want them!":[null,""],"send Boxcar notifications?":[null,""],"Boxcar2 access token":[null,""],"access token for your Boxcar account.":[null,""],"NMA":[null,""],"Notify My Android":[null,""],"Notify My Android is a Prowl-like Android App and API that offers an easy way to send notifications from your application directly to your Android device.":[null,""],"send NMA notifications?":[null,""],"NMA API key":[null,""],"(multiple keys must be separated by commas, up to a maximum of 5)":[null,""],"NMA priority":[null,""],"priority of NMA messages from SickRage.":[null,""],"Pushalot":[null,""],"Pushalot is a platform for receiving custom push notifications to connected devices running Windows Phone or Windows 8.":[null,""],"send Pushalot notifications ?":[null,""],"Pushalot authorization token":[null,""],"authorization token of your Pushalot account.":[null,""],"Pushbullet":[null,""],"Pushbullet is a platform for receiving custom push notifications to connected devices running Android/iOS and desktop browsers such as Chrome, Firefox or Opera.":[null,""],"send Pushbullet notifications?":[null,""],"Pushbullet API key":[null,""],"API key of your Pushbullet account":[null,""],"Pushbullet devices":[null,""],"Update device list":[null,""],"Pushbullet channels":[null,""],"Free Mobile":[null,""],"Free Mobile is a famous French cellular network provider.<br> It provides to their customer a free SMS API.":[null,""],"send SMS notifications?":[null,""],"send a SMS when a download starts?":[null,""],"send a SMS when a download finishes?":[null,""],"send a SMS when subtitles are downloaded?":[null,""],"Free Mobile customer ID":[null,""],"it's your Free Mobile customer ID (8 digits)":[null,""],"Free Mobile API key":[null,""],"find your API key in your customer portal.":[null,""],"Click below to test your settings.":[null,""],"Telegram":[null,""],"Telegram is a cloud-based instant messaging service.":[null,""],"send Telegram notifications?":[null,""],"send a message when a download starts?":[null,""],"send a message when a download finishes?":[null,""],"send a message when subtitles are downloaded?":[null,""],"User/group ID":[null,""],"contact @myidbot on Telegram to get an ID":[null,""],"Bot API token":[null,""],"contact @BotFather on Telegram to set up one":[null,""],"Join":[null,""],"Join all of your devices together!":[null,""],"send Join notifications?":[null,""],"Device ID":[null,""],"per device specific id":[null,""]," to create a Join API key":[null,""],"Twilio":[null,""],"Twilio is a webservice API that allows you to communicate directly with a mobile number. This notifier will send a text directly to your mobile device.":[null,""],"should SickRage text your mobile device?":[null,""],"Twilio Account SID":[null,""],"account SID of your Twilio account.":[null,""],"Twilio Auth Token":[null,""],"Twilio Phone SID":[null,""],"phone SID that you would like to send the sms from":[null,""],"Your phone number":[null,""],"phone number that will receive the sms. Please use the format +1-###-###-####":[null,""],"Twitter":[null,""],"A social networking and microblogging service, enabling its users to send and read other users' messages called tweets.":[null,""],"should SickRage post tweets on Twitter?":[null,""],"you may want to use a secondary account.":[null,""],"send direct message":[null,""],"send a notification via Direct Message, not via status update":[null,""],"send DM to":[null,""],"Twitter account to send Direct Messages to (must follow you)":[null,""],"Step One":[null,""],"Request Authorization":[null,""],"Click the \"Request Authorization\" button.<br> This will open a new page containing an auth key.<br> <b>note:</b> if nothing happens check your popup blocker.":[null,""],"Step Two":[null,""],"Enter the key Twitter gave you below, and click \"Verify Key\".":[null,""],"Trakt":[null,""],"Trakt helps keep a record of what TV shows and movies you are watching. Based on your favorites, Trakt recommends additional shows and movies you'll enjoy!":[null,""],"send Trakt.tv notifications?":[null,""],"username of your Trakt account.":[null,""],"Trakt PIN":[null,""],"Get Trakt PIN":[null,""],"PIN code to authorize SickRage to access Trakt on your behalf.":[null,""],"API Timeout":[null,""],"seconds to wait for Trakt API to respond. (Use 0 to wait forever)":[null,""],"Default indexer":[null,""],"Sync libraries":[null,""],"sync your SickRage show library with your trakt show library.":[null,""],"Remove Episodes From Collection":[null,""],"remove an episode from your Trakt Collection if it is not in your SickRage Library.":[null,""],"Sync watchlist":[null,""],"sync your SickRage show watchlist with your trakt show watchlist (either Show and Episode).":[null,""],"episode will be added on watch list when wanted or snatched and will be removed when downloaded ":[null,""],"Watchlist add method":[null,""],"Skip All":[null,""],"Download Pilot Only":[null,""],"Get whole show":[null,""],"method in which to download episodes for new shows.":[null,""],"Remove episode":[null,""],"remove an episode from your watchlist after it is downloaded.":[null,""],"Remove series":[null,""],"remove the whole series from your watchlist after any download.":[null,""],"Remove watched show":[null,""],"remove the show from sickrage if it's ended and completely watched":[null,""],"Start paused":[null,""],"shows grabbed from your trakt watchlist start paused.":[null,""],"Trakt blackList name":[null,""],"name (slug) of list on Trakt for blacklisting show on 'Add Trending Show' & 'Add Recommended Shows' pages":[null,""],"Email":[null,""],"Allows configuration of email notifications on a per show basis.":[null,""],"send email notifications?":[null,""],"SMTP host":[null,""],"hostname of your SMTP email server.":[null,""],"SMTP port":[null,""],"port number used to connect to your SMTP host.":[null,""],"SMTP from":[null,""],"sender email address, some hosts require a real address.":[null,""],"Use TLS":[null,""],"check to use TLS encryption.":[null,""],"SMTP user":[null,""],"(optional) your SMTP server username.":[null,""],"SMTP password":[null,""],"(optional) your SMTP server password.":[null,""],"Global email list":[null,""],"email addresses listed here, separated by commas if applicable, will<br> receive notifications for <b>all</b> shows.":[null,""],"(This field may be blank except when testing.)":[null,""],"Email Subject":[null,""],"use a custom subject for some privacy protection?":[null,""],"(leave blank for the default SickRage subject)":[null,""],"configure per-show notifications here by entering email address(es), separated by commas,":[null,""],"after selecting a show in the drop-down box. Be sure to activate the 'Save for this show'":[null,""],"button below after each entry.":[null,""],"Slack":[null,""],"Slack brings all your communication together in one place. It's real-time messaging, archiving and search for modern teams.":[null,""],"should SickRage post messages on Slack?":[null,""],"Slack Incoming Webhook":[null,""],"Discord":[null,""],"All-in-one voice and text chat for gamers that's free, secure, and works on both your desktop and phone.":[null,""],"Should SickRage post messages on Discord?":[null,""],"Discord Incoming Webhook":[null,""],"Create webhook under channel settings.":[null,""],"Discord Bot Name":[null,""],"Blank will use webhook default Name.":[null,""],"Discord Avatar URL":[null,""],"Blank will use webhook default Avatar.":[null,""],"Discord TTS":[null,""],"Send notifications using text-to-speech":[null,""],"Post-Processing":[null,""],"Episode Naming":[null,""],"Metadata":[null,""],"Settings that dictate how SickRage should process completed downloads.":[null,""],"enable the automatic post processor to scan and process any files in your Post Processing Dir":[null,""],"do not use if you use an external Post Processing script":[null,""],"Post Processing Dir":[null,""],"the folder where your download client puts the completed TV downloads.":[null,""],"please use seperate downloading and completed folders in your download client if possible.":[null,""],"Processing Method":[null,""],"what method should be used to put files into the library?":[null,""],"if you keep seeding torrents after they finish, please avoid the 'move' processing method to prevent errors.":[null,""],"Auto Post-Processing Frequency":[null,""],"time in minutes to check for new files to auto post-process (min 10)":[null,""],"Postpone post processing":[null,""],"wait to process a folder if sync files are present.":[null,""],"Sync File Extensions":[null,""],"comma seperated list of extensions or filename globs SickRage ignores when Post Processing":[null,""],"Rename Episodes":[null,""],"rename episode using the Episode Naming settings?":[null,""],"Create missing show directories":[null,""],"create missing show directories when they get deleted":[null,""],"Add shows without directory":[null,""],"add shows without creating a directory (not recommended)":[null,""],"Move associated files":[null,""],"move associated (srt/srr/sfv/etc) files while post processing?":[null,""],"Rename .nfo file":[null,""],"rename the original .nfo file to .nfo-orig to avoid conflicts?":[null,""],"Associated file extensions":[null,""],"comma separated list of associated file extensions SickRage should keep while post processing.":[null,""],"leaving it empty means no associated files will be post processed":[null,""],"Delete non associated files":[null,""],"delete non associated files while post processing?":[null,""],"Change File Date":[null,""],"set last modified filedate to the date that the episode aired?":[null,""],"some systems may ignore this feature.":[null,""],"Timezone for File Date":[null,""],"local":[null,""],"network":[null,""],"what timezone should be used to change File Date?":[null,""],"Unpack":[null,""],"What to do with archived releases found in your <i>TV Download Dir</i>?":[null,""],"Ignore (do not process contents)":[null,""],"Unpack (process contents)":[null,""],"Treat as video (process archive as-is)":[null,""],"'Unpack' only works with RAR archives":[null,""],"Windows":[null,""],"WinRar is required on windows":[null,""],"Unpack Directory":[null,""],"Choose a path to unpack files, leave blank to unpack in download dir":[null,""],"Unrar Location":[null,""],"add the path to unrar if it is not in the system path":[null,""],"Alternate Unrar Tool":[null,""],"add the path to an alternate unrar tool if it is not in the system path":[null,""],"Delete RAR contents":[null,""],"delete content of RAR files, even if Process Method not set to move?":[null,""],"only working with RAR archive":[null,""],"Don't delete empty folders":[null,""],"leave empty folders when Post Processing?":[null,""],"can be overridden using manual Post Processing":[null,""],"Follow symbolic-links":[null,""],"follow down symbolic links in download directory?":[null,""],"<b>EXPERTS ONLY.</b><br>Enable only if you know what <b>circular symbolic links</b> are,<br>and can <b>verify that you have none</b>.":[null,""],"Use icacls":[null,""],"Windows only":[null,""],"sets video permissions after using the move method in post processing":[null,""],"Extra Scripts":[null,""],"see":[null,""],"for script arguments description and usage.":[null,""],"How SickRage will name and sort your episodes.":[null,""],"Name Pattern":[null,""],"Toggle Naming Legend":[null,""],"don't forget to add quality pattern. Otherwise after post-processing the episode will have UNKNOWN quality":[null,""],"Meaning":[null,""],"Pattern":[null,""],"Result":[null,""],"Use lower case if you want lower case names (eg. %sn, %e.n, %q_n etc)":[null,""],"Show Name":[null,""],"Show.Name":[null,""],"Show_Name":[null,""],"Season Number":[null,""],"XEM Season Number":[null,""],"Episode Number":[null,""],"XEM Episode Number":[null,""],"Episode Name":[null,""],"Episode.Name":[null,""],"Episode_Name":[null,""],"Air Date":[null,""],"Post-Processing Date":[null,""],"Quality":[null,""],"Scene Quality":[null,""],"Release Name":[null,""],"SickRage' is used in place of RLSGROUP if it could not be properly detected":[null,""],"Release Group":[null,""],"If episode is proper/repack add 'proper' to name.":[null,""],"Release Type":[null,""],"Multi-Episode Style":[null,""],"Single-EP Sample":[null,""],"Multi-EP sample":[null,""],"Strip Show Year":[null,""],"remove the TV show's year when renaming the file?":[null,""],"only applies to shows that have year inside parentheses":[null,""],"Custom Air-By-Date":[null,""],"name air-by-date shows differently than regular shows?":[null,""],"Toggle ABD Naming Legend":[null,""],"Regular Air Date":[null,""],"Year":[null,""],"Month":[null,""],"Day":[null,""],"Multi-EP style is ignored":[null,""],"Custom Sports":[null,""],"name sports shows differently than regular shows?":[null,""],"Toggle Sports Naming Legend":[null,""],"Sports Air Date":[null,""],"Custom Anime":[null,""],"name anime shows differently than regular shows?":[null,""],"Toggle Anime Naming Legend":[null,""],">XEM Season Number":[null,""],"Single-EP Anime Sample":[null,""],"Multi-EP Anime sample":[null,""],"Add Absolute Number":[null,""],"add the absolute number to the season/episode format?":[null,""],"only applies to anime. (eg. S15E45 - 310 vs S15E45)":[null,""],"Only Absolute Number":[null,""],"replace season/episode format with absolute number":[null,""],"only applies to anime.":[null,""],"No Absolute Number":[null,""],"don't include the absolute number":[null,""],"The data associated to the data. These are files associated to a TV show in the form of images and text that, when supported, will enhance the viewing experience.":[null,""],"Metadata Type":[null,""],"toggle metadata options that you wish to be created":[null,""],"multiple targets may be used":[null,""],"Select Metadata":[null,""],"Provider Priorities":[null,""],"Provider Options":[null,""],"Configure Custom Newznab Providers":[null,""],"Configure Custom Torrent Providers":[null,""],"Check off and drag the providers into the order you want them to be used.":[null,""],"At least one provider is required but two are recommended.":[null,""],"Torrent providers can be toggled in ":[null,""],"Provider does not support backlog searches at this time.":[null,""],"Provider is <b>NOT WORKING</b>.":[null,""],"Configure individual provider settings here.":[null,""],"Check with provider's website on how to obtain an API key if needed.":[null,""],"Configure provider":[null,""],"no providers available to configure.":[null,""],"URL":[null,""],"Enable daily searches":[null,""],"enable provider to perform daily searches.":[null,""],"Enable backlog searches":[null,""],"enable provider to perform backlog searches.":[null,""],"Season search mode":[null,""],"when searching for complete seasons you can choose to have it look for season packs only, or choose to have it build a complete season from just single episodes.":[null,""],"season packs only.":[null,""],"episodes only.":[null,""],"Enable fallback":[null,""],"when searching for a complete season depending on search mode you may return no results, this helps by restarting the search using the opposite search mode.":[null,""],"Custom URL":[null,""],"the URL should include the protocol (and port if applicable). Examples: http://192.168.1.4/ or http://localhost:3000/":[null,""],"Api key":[null,""],"Digest":[null,""],"Hash":[null,""],"Passkey":[null,""],"Cookies":[null,""],"example: uid=1234;pass=567845439634987<br>note: uid and pass are not your username/password.<br>use DevTools or Firebug to get these values after logging in on your browser.":[null,""],"Pin":[null,""],"Seed ratio":[null,""],"stop transfer when ratio is reached<br>(-1 SickRage default to seed forever, or leave blank for downloader default)":[null,""],"Minimum seeders":[null,""],"Minimum leechers":[null,""],"Confirmed download":[null,""],"only download torrents from trusted or verified uploaders ?":[null,""],"Ranked torrents":[null,""],"only download ranked torrents (trusted releases)":[null,""],"English torrents":[null,""],"only download english torrents, or torrents containing english subtitles":[null,""],"For Spanish torrents":[null,""],"ONLY search on this provider if show info is defined as \"Spanish\" (avoid provider's use for VOS shows)":[null,""],"Sorting results by":[null,""],"Freeleech":[null,""],"only download <b>\"FreeLeech\"</b> torrents.":[null,""],"Category":[null,""],"select torrent with Italian subtitle":[null,""],"Configure Custom<br>Newznab Providers":[null,""],"Add and setup or remove custom Newznab providers.":[null,""],"Select provider":[null,""],"-- add new provider --":[null,""],"Provider name":[null,""],"Site URL":[null,""],"Newznab search categories":[null,""],"select your Newznab categories on the left, and click the \"update categories\" button to use them for searching.) <b>don't forget to to save the form!":[null,""],"Update Categories":[null,""],"Add":[null,""],"Delete":[null,""],"Add and setup or remove custom RSS providers.":[null,""],"RSS URL":[null,""],"Search element":[null,""],"eg: title":[null,""],"Episode Search":[null,""],"NZB Search":[null,""],"Torrent Search":[null,""],"How to manage searching with":[null,""],"Randomize Providers":[null,""],"randomize the provider search order instead of going in order of placement":[null,""],"Download propers":[null,""],"replace original download with \"Proper\" or \"Repack\" if nuked":[null,""],"Check propers every":[null,""],"24 hours":[null,""],"4 hours":[null,""],"90 mins":[null,""],"45 mins":[null,""],"15 mins":[null,""],"Backlog search day(s)":[null,""],"number of day(s) that the \"Forced Backlog Search\" will cover (e.g. 7 Days)":[null,""],"Backlog search frequency":[null,""],"time in minutes between searches (min.":[null,""],"Daily search frequency":[null,""],"Usenet retention":[null,""],"age limit in days for usenet articles to be used (e.g. 500)":[null,""],"Ignore words":[null,""],"results with one or more word from this list will be ignored<br>separate words with a comma, e.g. \"word1,word2,word3\"":[null,""],"Require words":[null,""],"results with no word from this list will be ignored<br>separate words with a comma, e.g. \"word1,word2,word3\"":[null,""],"Trackers list":[null,""],"trackers that will be added to magnets without trackers<br>separate trackers with a comma, e.g. \"tracker1,tracker2,tracker3\"":[null,""],"Ignore language names in subbed results":[null,""],"ignore subbed releases based on language names <br>\n Example: \"dk\" will ignore words: dksub, dksubs, dksubbed, dksubed <br>\n separate languages with a comma, e.g. \"lang1,lang2,lang3":[null,""],"Allow high priority":[null,""],"set downloads of recently aired episodes to high priority":[null,""],"Use Failed Downloads":[null,""],"use Failed Download Handling?":[null,""],"will only work with snatched/downloaded episodes after enabling this":[null,""],"Delete Failed":[null,""],"delete files left over from a failed download?":[null,""],"this only works if Use Failed Downloads is enabled.":[null,""],"How to handle NZB search results.":[null,""],"Search NZBs":[null,""],"enable NZB search providers":[null,""],"Send .nzb files to":[null,""],"SABnzbd server URL":[null,""],"URL to your SABnzbd server (e.g. http://localhost:8080/)":[null,""],"SABnzbd username":[null,""],"(blank for none)":[null,""],"SABnzbd password":[null,""],"SABnzbd API key":[null,""],"locate at... SABnzbd Config -> General -> API Key":[null,""],"Use SABnzbd category":[null,""],"add downloads to this category (e.g. TV)":[null,""],"Use SABnzbd category (backlog episodes)":[null,""],"add downloads of old episodes to this category (e.g. TV)":[null,""],"Use SABnzbd category for anime":[null,""],"add anime downloads to this category (e.g. anime)":[null,""],"Use SABnzbd category for anime (backlog episodes)":[null,""],"add anime downloads of old episodes to this category (e.g. anime)":[null,""],"Use forced priority":[null,""],"enable to change priority from HIGH to FORCED":[null,""],"Black hole folder location":[null,""],"<b>.nzb</b> files are stored at this location for external software to find and use":[null,""],"Connect using HTTPS":[null,""],"enable Secure control in NZBGet and set the correct Secure Port here":[null,""],"NZBget host:port":[null,""],"(e.g. localhost:6789)":[null,""],"NZBget RPC host name and port number (not NZBgetweb!)":[null,""],"NZBget username":[null,""],"locate in nzbget.conf (default:nzbget)":[null,""],"NZBget password":[null,""],"locate in nzbget.conf (default:tegbzn6789)":[null,""],"Use NZBget category":[null,""],"send downloads marked this category (e.g. TV)":[null,""],"Use NZBget category (backlog episodes)":[null,""],"send downloads of old episodes marked this category (e.g. TV)":[null,""],"Use NZBget category for anime":[null,""],"send anime downloads marked this category (e.g. anime)":[null,""],"Use NZBget category for anime (backlog episodes)":[null,""],"send anime downloads of old episodes marked this category (e.g. anime)":[null,""],"NZBget priority":[null,""],"Very low":[null,""],"Low":[null,""],"Very high":[null,""],"Force":[null,""],"priority for daily snatches (no backlog)":[null,""],"Torrent host:port":[null,""],"URL to your Synology DSM (e.g. http://localhost:5000/)":[null,""],"Client username":[null,""],"Client password":[null,""],"Downloaded files location":[null,""],"where Synology Download Station will save downloaded files (blank for client default)":[null,""],"the destination has to be a shared folder for Synology DS":[null,""],"Click below to test":[null,""],"How to handle Torrent search results.":[null,""],"Search torrents":[null,""],"enable torrent search providers":[null,""],"Send .torrent files to":[null,""],"<b>.torrent</b> files are stored at this location for external software to find and use":[null,""],"URL to your torrent client (e.g. http://localhost:8000/)":[null,""],"Torrent RPC URL":[null,""],"the path without leading and trailing slashes (e.g. transmission)":[null,""],"Http Authentication":[null,""],"Verify certificate":[null,""],"disable if you get \"Deluge: Authentication Error\" in your log":[null,""],"verify SSL certificates for HTTPS requests":[null,""],"Add label to torrent":[null,""],"(blank spaces are not allowed)":[null,""],"label plugin must be enabled in Deluge clients":[null,""],"for QBitTorrent 3.3.1 and up":[null,""],"Add label to torrent for anime":[null,""],"for QBitTorrent 3.3.1 and up ":[null,""],"where <span id=\"torrent_client\">the torrent client</span> will save downloaded files (blank for client default)":[null,""],"the destination has to be a shared folder for Synology DS</span>":[null,""],"Minimum seeding time":[null,""],"time in hours":[null,""],"(default:'0' passes blank to client and '-1' passes nothing)":[null,""],"Start torrent paused":[null,""],"add .torrent to client but do <b style=\"font-weight:900\">not</b> start downloading":[null,""],"Allow high bandwidth":[null,""],"use high bandwidth allocation if priority is high":[null,""],"Test Connection":[null,""],"Windows Shares":[null,""],"Defines your existing windows shares so that we can add them to the browse dialog":[null,""],"Share #{number}":[null,""],"Share label":[null,""],"Hostname or IP":[null,""],"Share path":[null,""],"Subtitles Search":[null,""],"Subtitles Plugin":[null,""],"Plugin Settings":[null,""],"Settings that dictate how SickRage handles subtitles search results.":[null,""],"Search Subtitles":[null,""],"Subtitle Languages":[null,""],"Subtitle Directory":[null,""],"the directory where SickRage should store your <i>Subtitles</i> files.":[null,""],"leave empty if you want store subtitle in episode path.":[null,""],"Subtitle Find Frequency":[null,""],"time in hours between scans (default: 1)":[null,""],"Include Specials":[null,""],"include the show's specials when searching for subtitles?":[null,""],"Perfect matches":[null,""],"only download subtitles that match: release group, video codec, audio codec and resolution":[null,""],"if disabled you may get out of sync subtitles":[null,""],"Subtitles History":[null,""],"log downloaded Subtitle on History page?":[null,""],"Subtitles Multi-Language":[null,""],"append language codes to subtitle filenames?":[null,""],"this option is required if you use multiple subtitle languages":[null,""],"Delete unwanted subtitles":[null,""],"enable to delete unwanted subtitle languages bundled with release":[null,""],"Embedded Subtitles":[null,""],"ignore subtitles embedded inside video file?":[null,""],"this will ignore <u>all</u> embedded subtitles for every video file!":[null,""],"Hearing Impaired Subtitles":[null,""],"download hearing impaired style subtitles?":[null,""],"See":[null,""],"for a script arguments description.":[null,""],"Additional scripts separated by <b>|</b>.":[null,""],"Scripts are called after each episode has searched and downloaded subtitles.":[null,""],"For any scripted languages, include the interpreter executable before the script. See the following example":[null,""],"For Windows:":[null,""],"For Linux / OS X:":[null,""],"Subtitle Providers":[null,""],"Check off and drag the plugins into the order you want them to be used.":[null,""],"At least one plugin is required.":[null,""]," Web-scraping plugin":[null,""],"Provider Settings":[null,""],"Set user and password for each provider":[null,""],"User Name":[null,""],"Change Show":[null,""],"Prev Show":[null,""],"Next Show":[null,""],"Jump to Season":[null,""],"Specials":[null,""],"Poster for":[null,""],"Stars":[null,""],"minutes":[null,""],"View other popular {genre} shows on trakt.tv.":[null,""],"View other popular {imdbgenre} shows on IMDB.":[null,""],"Allowed":[null,""],"Preferred":[null,""],"Originally Airs":[null,""],"Show Status":[null,""],"Default EP Status":[null,""],"Location":[null,""],"Missing":[null,""],"Scene Name":[null,""],"Required Words":[null,""],"Ignored Words":[null,""],"Size":[null,""],"Info Language":[null,""],"Subtitles SR Metadata":[null,""],"Season Folders":[null,""],"Paused":[null,""],"Air-by-Date":[null,""],"Sports":[null,""],"DVD Order":[null,""],"Scene Numbering":[null,""],"Select Filtered Episodes":[null,""],"Clear All":[null,""],"Change selected episodes to":[null,""],"Select Columns":[null,""],"Hide Episodes":[null,""],"Show Episodes":[null,""],"NFO":[null,""],"TBN":[null,""],"Episode":[null,""],"Absolute":[null,""],"Scene":[null,""],"Scene Absolute":[null,""],"File Name":[null,""],"Airdate":[null,""],"Download":[null,""],"Change the value here if scene numbering differs from the indexer episode numbering":[null,""],"Change the value here if scene absolute numbering differs from the indexer absolute numbering":[null,""],"Manual Search":[null,""],"Do you want to mark this episode as failed?":[null,""],"The episode release name will be added to the failed history, preventing it to be downloaded again.":[null,""],"Do you want to include the current episode quality in the search?":[null,""],"Choosing No will ignore any releases with the same episode quality as the one currently downloaded/snatched.":[null,""],"Download subtitle":[null,""],"Do you want to re-download the subtitle for this language?":[null,""],"It will overwrite your current subtitle":[null,""],"Format":[null,""],"Advanced":[null,""],"Main Settings":[null,""],"Show Location":[null,""],"Preferred Quality":[null,""],"Default Episode Status":[null,""],"this will set the status for future episodes.":[null,""],"this only applies to episode filenames and the contents of metadata files.":[null,""],"search for subtitles":[null,""],"Use SR Metdata":[null,""],"use SickRage metadata when searching for subtitle, this will override the autodiscovered metadata":[null,""],"pause this show (SickRage will not download episodes)":[null,""],"Format Settings":[null,""],"Air by date":[null,""],"check if the show is released as Show.03.02.2010 rather than Show.S02E03.":[null,""],"in case of an air date conflict between regular and special episodes, the later will be ignored.":[null,""],"check if the show is Anime and episodes are released as Show.265 rather than Show.S02E03":[null,""],"check if the show is a sporting or MMA event released as Show.03.02.2010 rather than Show.S02E03":[null,""],"Season folders":[null,""],"group episodes by season folder (uncheck to store in a single folder)":[null,""],"search by scene numbering (uncheck to search by indexer numbering)":[null,""],"use the DVD order instead of the air order":[null,""],"a \"Force Full Update\" is necessary, and if you have existing episodes you need to sort them manually.":[null,""],"comma-separated <i>e.g. \"word1,word2,word3</i>\"":[null,""],"search results with one or more words from this list will be ignored.":[null,""],"e.g. \"word1,word2,word3\"":[null,""],"search results with no words from this list will be ignored.":[null,""],"Scene Exception":[null,""],"this will affect episode search on NZB and torrent providers.":[null,""],"this list appends to the original show name.":[null,""],"WARNING logs":[null,""],"ERROR logs":[null,""],"There are no events to display.":[null,""],"Limit":[null,""],"Layout":[null,""],"HistoryLayout":[null,""],"Compact":[null,""],"Detailed":[null,""],"Time":[null,""],"Provider":[null,""],"Missing Provider":[null,""],"missing provider":[null,""],"Directory":[null,""],"Show Name (tvshow.nfo)":[null,""],"Indexer":[null,""],"Enter the folder containing the episode":[null,""],"Process Method to be used":[null,""],"Copy":[null,""],"Move":[null,""],"Hard Link":[null,""],"Symbolic Link":[null,""],"Symbolic Link Reversed":[null,""],"Force already Post Processed Dir/Files":[null,""],"Mark Dir/Files as priority download":[null,""],"(Check it to replace the file even if it exists at higher quality)":[null,""],"Delete files and folders":[null,""],"(Check it to delete files and folders like auto processing)":[null,""],"Don't use processing queue":[null,""],"(If checked this will return the result of the process here, but may be slow!)":[null,""],"Mark download as failed":[null,""],"Process":[null,""],"Download subtitles for this show?":[null,""],"use SickRage metadata when searching for subtitle, <br />this will override the autodiscovered metadata":[null,""],"Status for previously aired episodes":[null,""],"Status for all future episodes":[null,""],"Group episodes by season folder?":[null,""],"Is this show an Anime?":[null,""],"Is this show scene numbered?":[null,""],"Save Defaults":[null,""],"Use current values as the defaults":[null,""],"<p>Select your preferred fansub groups from the <b>Available Groups</b> and add them to the <b>Whitelist</b>. Add groups to the <b>Blacklist</b> to ignore them.</p>\n <p>The <b>Whitelist</b> is checked <i>before</i> the <b>Blacklist</b>.</p>\n <p>Groups are shown as <b>Name</b> | <b>Rating</b> | <b>Number of subbed episodes</b>.</p>\n <p>You may also add any fansub group not listed to either list manually.</p>\n <p>When doing this please note that you can only use groups listed on anidb for this anime.\n <br>If a group is not listed on anidb but subbed this anime, please correct anidb's data.</p>":[null,""],"Whitelist":[null,""],"Available Groups":[null,""],"Add to Whitelist":[null,""],"Add to Blacklist":[null,""],"Blacklist":[null,""],"Custom Group":[null,""],"Allowed Quality:":[null,""],"Preferred Quality:":[null,""],"Filter Show Name":[null,""],"Root":[null,""],"All":[null,""],"Clear Filter(s)":[null,""],"Poster":[null,""],"Small Poster":[null,""],"Banner":[null,""],"Simple":[null,""],"Next Episode":[null,""],"Progress":[null,""],"Direction":[null,""],"Ascending":[null,""],"Descending":[null,""],"Poster Size":[null,""],"Continuing":[null,""],"Ended":[null,""],"Total":[null,""],"Invalid date":[null,""],"No Network":[null,""],"Next Ep":[null,""],"Prev Ep":[null,""],"Show":[null,""],"Downloads":[null,""],"Active":[null,""],"loading":[null,""],"Loading...":[null,""],"<p><b><u>Preferred</u></b> qualities will replace those in <b><u>allowed</u></b>, even if they are lower.</p>":[null,""],"New":[null,""],"Set as Default":[null,""],"Remember me":[null,""],"Edit Selected":[null,""],"Subtitle":[null,""],"Default Ep Status":[null,""],"Update":[null,""],"Rescan":[null,""],"Rename":[null,""],"Search Subtitle":[null,""],"Force Metadata Regen":[null,""],"Snatched (Allowed)":[null,""],"Jump to Show":[null,""],"Force Backlog":[null,""],"Manage episodes with status":[null,""],"Manage":[null,""],"None of your episodes have status":[null,""],"Shows containing":[null,""],"episodes":[null,""],"Set checked shows/episodes to":[null,""],"Go":[null,""],"Select all":[null,""],"Clear all":[null,""],"Release":[null,""],"Backlog Search":[null,""],"Not in progress":[null,""],"In Progress":[null,""],"Daily Search":[null,""],"Find Propers Search":[null,""],"Propers search disabled":[null,""],"Subtitle Search":[null,""],"Subtitle search disabled":[null,""],"Search Queue":[null,""],"pending items":[null,""],"Daily":[null,""],"Manual":[null,""],"Changing any settings marked with (<span class=\"separator\">*</span>) will force a refresh of the selected shows.":[null,""],"Selected Shows":[null,""],"Root Directories":[null,""],"Current":[null,""],"Keep":[null,""],"Custom":[null,""],"Group episodes by season folder (set to \"No\" to store in a single folder).":[null,""],"Pause these shows (SickRage will not download episodes).":[null,""],"This will set the status for future episodes.":[null,""],"Search by scene numbering (set to \"No\" to search by indexer numbering).":[null,""],"Set if these shows are Anime and episodes are released as Show.265 rather than Show.S02E03":[null,""],"Set if these shows are sporting or MMA events released as Show.03.02.2010 rather than Show.S02E03.":[null,""],"In case of an air date conflict between regular and special episodes, the later will be ignored.":[null,""],"Set if these shows are released as Show.03.02.2010 rather than Show.S02E03.":[null,""],"Search for subtitles.":[null,""],"All of your episodes have {subsLanguage} subtitles.":[null,""],"Manage episodes without":[null,""],"Episodes without {subsLanguage} subtitles.":[null,""],"Episodes without {subtitleLanguage} (undefined) subtitles.":[null,""],"Download missed subtitles for selected episodes":[null,""],"Performing Restart":[null,""],"Waiting for SickRage to shut down":[null,""],"Waiting for SickRage to start again":[null,""],"Loading the default page":[null,""],"Error: The restart has timed out, perhaps something prevented SickRage from starting again?":[null,""],"Key":[null,""],"Missed":[null,""],"Today":[null,""],"Soon":[null,""],"Later":[null,""],"Subscribe":[null,""],"Date":[null,""],"View Paused":[null,""],"Hidden":[null,""],"Shown":[null,""],"Calendar":[null,""],"List":[null,""],"Ends":[null,""],"Next Ep Name":[null,""],"Run time":[null,""],"Indexers":[null,""],"No shows for this day":[null,""],"Airs":[null,""],"Plot":[null,""],"Show Update":[null,""],"Version Check":[null,""],"Proper Finder":[null,""],"Post Process":[null,""],"Subtitles Finder":[null,""],"Scheduler":[null,""],"Alive":[null,""],"Start Time":[null,""],"Cycle Time":[null,""],"Next Run":[null,""],"Last Run":[null,""],"Silent":[null,""],"True":[null,""],"N/A":[null,""],"Show id":[null,""],"Show name":[null,""],"Priority":[null,""],"Added":[null,""],"Queue type":[null,""],"LOW":[null,""],"NORMAL":[null,""],"HIGH":[null,""],"Disk Space":[null,""],"Free space":[null,""],"TV Download Directory":[null,""],"Media Root Directories":[null,""],"Preview of the proposed name changes":[null,""],"All Seasons":[null,""],"select all":[null,""],"Rename Selected":[null,""],"Cancel Rename":[null,""],"Old Location":[null,""],"New Location":[null,""],"Trakt API did not return any results, please check your config.":[null,""],"votes":[null,""],"Remove Show":[null,""],"Level":[null,""],"Filter":[null,""],"All non-absolute folder locations are relative to ":[null,""],"Manual Post-Processing":[null,""],"Episode Status Management":[null,""],"Update PLEX":[null,""],"Update KODI":[null,""],"Update Emby":[null,""],"Missed Subtitle Management":[null,""],"Help & Info":[null,""],"Backup & Restore":[null,""],"Tools":[null,""],"Support SickRage":[null,""],"View Errors":[null,""],"View Warnings":[null,""],"View Log":[null,""],"Check For Updates":[null,""],"Restart":[null,""],"Shutdown":[null,""],"Logout":[null,""],"Server Status":[null,""],"View overview of snatched episodes":[null,""],"Episodes Downloaded":[null,""],"Memory used":[null,""],"Load time":[null,""],"Branch":[null,""],"Now":[null,""]}}}} \ No newline at end of file +{"messages":{"domain":"messages","locale_data":{"messages":{"100":[null,""],"250":[null,""],"500":[null,""],"":{"domain":"messages","plural_forms":"nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);","lang":"uk_UA"},"Drama":[null,"Драма"],"Mystery":[null,"Містика"],"Science-Fiction":[null,"Фантастика"],"Crime":[null,"Кримінал"],"Action":[null,"Екшн"],"Comedy":[null,"Комедія"],"Thriller":[null,"Трилер"],"Animation":[null,"Мультфільм"],"Family":[null,"Сімейний"],"Fantasy":[null,"Фентезі"],"Adventure":[null,"Пригоди"],"Horror":[null,"Жахи"],"Film-Noir":[null,"Нуар"],"Sci-Fi":[null,"Фантастика"],"Romance":[null,"Романтичний"],"Sport":[null,"Спорт"],"War":[null,"Військовий"],"Biography":[null,"Біографія"],"History":[null,"Історичний"],"Music":[null,""],"Western":[null,"Вестерн"],"News":[null,"Новини"],"Sitcom":[null,""],"Reality-TV":[null,""],"Documentary":[null,"Документальний"],"Game-Show":[null,""],"Musical":[null,"Мюзикл"],"Talk-Show":[null,"Ток-шоу"],"Started Download":[null,""],"Download Finished":[null,"Завантаження Завершене"],"Subtitle Download Finished":[null,"Завантаження Субтитрів Завершене"],"SickRage Updated":[null,""],"SickRage Updated To Commit#: ":[null,""],"SickRage new login":[null,""],"New login from IP: {0}. http://geomaplookup.net/?ip={0}":[null,"Новий Логін з IP: {0}. http://geomaplookup.net/?IP={0}"],"Repeat":[null,""],"Repeat (Separated)":[null,""],"Extend":[null,""],"Extend (Limited)":[null,""],"Extend (Limited, E-prefixed)":[null,""],"Downloaded":[null,"Завантажене"],"Snatched":[null,""],"Snatched (Proper)":[null,""],"Failed":[null,"Не вдалося"],"Snatched (Best)":[null,""],"Archived":[null,"Архівовано"],"Unknown":[null,""],"Unaired":[null,""],"Skipped":[null,""],"Wanted":[null,""],"Ignored":[null,""],"Subtitled":[null,""],"For best results please set the Download Station alias as":[null,""],"You can check this setting in the Synology DSM":[null,""],"Control Panel":[null,""],"Application Portal":[null,""],"Make sure you allow DSM to be embedded with iFrames too in":[null,""],"DSM Settings":[null,""],"Security":[null,""],"<No Filter>":[null,""],"Daily Searcher":[null,""],"Backlog":[null,""],"Show Updater":[null,""],"Check Version":[null,""],"Show Queue":[null,""],"Search Queue (All)":[null,""],"Search Queue (Daily Searcher)":[null,""],"Search Queue (Backlog)":[null,""],"Search Queue (Manual)":[null,""],"Search Queue (Retry/Failed)":[null,""],"Search Queue (RSS)":[null,""],"Find Propers":[null,""],"Postprocessor":[null,""],"Find Subtitles":[null,""],"Trakt Checker":[null,""],"Event":[null,""],"Error":[null,""],"Tornado":[null,""],"Thread":[null,""],"Main":[null,""],"Loading":[null,""],"New update found for SickRage, starting auto-updater":[null,""],"Update was successful":[null,""],"Update failed!":[null,""],"Backup":[null,""],"Config backup in progress...":[null,""],"Config backup successful, updating...":[null,""],"Config backup failed, aborting update":[null,""],"No update needed":[null,""],"Mako Error":[null,""],"Oops":[null,""],"Wrong API key used":[null,""],"Login":[null,""],"API Key not generated":[null,""],"API Builder":[null,""],"Schedule":[null,""],"Test 1":[null,""],"This is test number 1":[null,""],"Test 2":[null,""],"This is test number 2":[null,""],"You're using the {branch} branch. Please use 'master' unless specifically asked":[null,""],"Invalid show parameters":[null,""],"Invalid parameters":[null,""],"Episode couldn't be retrieved":[null,""],"Home":[null,""],"Show List":[null,""],"Error: Unsupported Request. Send jsonp request with 'callback' variable in the query string.":[null,""],"Success. Connected and authenticated":[null,""],"Authentication failed. SABnzbd expects":[null,""],"as authentication method":[null,""],"Unable to connect to host":[null,""],"SMS sent successfully":[null,""],"Problem sending SMS: {message}":[null,""],"Telegram notification succeeded. Check your Telegram clients to make sure it worked":[null,""],"Error sending Telegram notification: {message}":[null,""],"join notification succeeded. Check your join clients to make sure it worked":[null,""],"Error sending join notification: {message}":[null,""]," with password":[null,""],"Registered and Tested growl successfully {growl_host}":[null,""],"Registration and Testing of growl failed {growl_host}":[null,""],"Test prowl notice sent successfully":[null,""],"Test prowl notice failed":[null,""],"Boxcar2 notification succeeded. Check your Boxcar2 clients to make sure it worked":[null,""],"Error sending Boxcar2 notification":[null,""],"Pushover notification succeeded. Check your Pushover clients to make sure it worked":[null,""],"Error sending Pushover notification":[null,""],"Key verification successful":[null,""],"Unable to verify key":[null,""],"Tweet successful, check your twitter to make sure it worked":[null,""],"Error sending tweet":[null,""],"Please enter a valid account sid":[null,""],"Please enter a valid auth token":[null,""],"Please enter a valid phone sid":[null,""],"Please format the phone number as \"+1-###-###-####\"":[null,""],"Authorization successful and number ownership verified":[null,""],"Error sending sms":[null,""],"Slack message successful":[null,""],"Slack message failed":[null,""],"Discord message successful":[null,""],"Discord message failed":[null,""],"Test KODI notice sent successfully to {kodi_host}":[null,""],"Test KODI notice failed to {kodi_host}":[null,""],"Successful test notice sent to Plex Home Theater ... {plex_clients}":[null,""],"Test failed for Plex Home Theater ... {plex_clients}":[null,""],"Tested Plex Home Theater(s)":[null,""],"Successful test of Plex Media Server(s) ... {plex_servers}":[null,""],"Test failed, No Plex Media Server host specified":[null,""],"Test failed for Plex Media Server(s) ... {plex_servers}":[null,""],"Tested Plex Media Server host(s)":[null,""],"Tried sending desktop notification via libnotify":[null,""],"Test notice sent successfully to {emby_host}":[null,""],"Test notice failed to {emby_host}":[null,""],"Successfully started the scan update":[null,""],"Test failed to start the scan update":[null,""],"Test notice sent successfully to {nmj2_host}":[null,""],"Test notice failed to {nmj2_host}":[null,""],"Trakt Authorized":[null,""],"Trakt Not Authorized!":[null,""],"Test email sent successfully! Check inbox.":[null,""],"ERROR: {last_error}":[null,""],"Test NMA notice sent successfully":[null,""],"Test NMA notice failed":[null,""],"Pushalot notification succeeded. Check your Pushalot clients to make sure it worked":[null,""],"Error sending Pushalot notification":[null,""],"Pushbullet notification succeeded. Check your device to make sure it worked":[null,""],"Error sending Pushbullet notification":[null,""],"Status":[null,""],"Restarting SickRage":[null,""],"Update Failed":[null,""],"Update wasn't successful, not restarting. Check your log for more information.":[null,""],"Checking out branch":[null,""],"Already on branch":[null,""],"Invalid show ID: {show}":[null,""],"Show not in show list":[null,""],"Edit":[null,""],"This show is in the process of being downloaded - the info below is incomplete.":[null,""],"The information on this page is in the process of being updated.":[null,""],"The episodes below are currently being refreshed from disk":[null,""],"Currently downloading subtitles for this show":[null,""],"This show is queued to be refreshed.":[null,""],"This show is queued and awaiting an update.":[null,""],"This show is queued and awaiting subtitles download.":[null,""],"Resume":[null,""],"Pause":[null,""],"Remove":[null,""],"Re-scan files":[null,""],"Force Full Update":[null,""],"Update show in KODI":[null,""],"Update show in Emby":[null,""],"Hide specials":[null,""],"Show specials":[null,""],"Preview Rename":[null,""],"Download Subtitles":[null,""],"No scene exceptions":[null,""],"Invalid show ID":[null,""],"Unable to find the specified show":[null,""],"Unable to retreive Fansub Groups from AniDB.":[null,""],"Edit Show":[null,""],"Unable to refresh this show: {error}":[null,""],"New location <tt>{location}</tt> does not exist":[null,""],"Unable to update show: {error}":[null,""],"Unable to force an update on scene exceptions of the show.":[null,""],"Unable to force an update on scene numbering of the show.":[null,""],"{num_errors:d} error{plural} while saving changes:":[null,""],"{show_name} has been {paused_resumed}":[null,""],"resumed":[null,""],"paused":[null,""],"{show_name} has been {deleted_trashed} {was_deleted}":[null,""],"deleted":[null,""],"trashed":[null,""],"(media untouched)":[null,""],"(with all related media)":[null,""],"Unable to refresh this show.":[null,""],"Unable to update this show.":[null,""],"Library update command sent to KODI host(s)): {kodi_hosts}":[null,""],"Unable to contact one or more KODI host(s)): {kodi_hosts}":[null,""],"Library update command sent to Plex Media Server host: {plex_server}":[null,""],"Unable to contact Plex Media Server host: {plex_server}":[null,""],"Library update command sent to Emby host: {emby_host}":[null,""],"Unable to contact Emby host: {emby_host}":[null,""],"You must specify a show and at least one episode":[null,""],"Invalid status":[null,""],"Backlog was automatically started for the following seasons of <b>{show_name}</b>":[null,""],"Season":[null,""],"Backlog started":[null,""],"Retrying Search was automatically started for the following season of <b>{show_name}</b>":[null,""],"Retry Search started":[null,""],"You must specify a show":[null,""],"Can't rename episodes when the show dir is missing.":[null,""],"New subtitles downloaded: {new_subtitle_languages}":[null,""],"No subtitles downloaded":[null,""],"IRC":[null,""],"Could not load news from the repo. [Click here for news.md])({news_url})":[null,""],"The was a problem connecting to github, please refresh and try again":[null,""],"Could not load changes from the repo. [Click here for CHANGES.md]({changes_url})":[null,""],"Changelog":[null,""],"Post Processing":[null,""],"Add Shows":[null,""],"No folders selected.":[null,""],"New Show":[null,""],"Trending Shows":[null,""],"Popular Shows":[null,""],"Most Anticipated Shows":[null,""],"Most Collected Shows":[null,""],"Most Watched Shows":[null,""],"Most Played Shows":[null,""],"Recommended Shows":[null,""],"New Shows":[null,"Нові Серіали"],"Season Premieres":[null,"Прем'єри сезону"],"Existing Show":[null,""],"No root directories setup, please go back and add one.":[null,""],"Show added":[null,""],"Adding the specified show {show_name}":[null,""],"Missing params, no Indexer ID or folder: {show_to_add} and {root_dir}/{show_path}":[null,""],"Unknown error. Unable to add show due to problem with show selection.":[null,""],"Unable to add show":[null,""],"Folder {show_dir} exists already":[null,""],"Unable to create the folder {show_dir}, can't add the show":[null,""],"Adding the specified show into {show_dir}":[null,""],"Shows Added":[null,""],"Automatically added {num_shows} from their existing metadata files":[null,""],"Mass Update":[null,""],"Episode Overview":[null,""],"Missing Subtitles":[null,""],"Backlog Overview":[null,""],"Mass Edit":[null,""],"Unable to update show: {excption_format}":[null,""],"Unable to refresh show {show_name}: {excption_format}":[null,""],"Errors encountered":[null,""],"Updates":[null,""],"Refreshes":[null,""],"Renames":[null,""],"Subtitles":[null,""],"The following actions were queued":[null,""],"Failed Downloads":[null,""],"Manage Searches":[null,""],"Backlog search started":[null,""],"Daily search started":[null,""],"Find propers search started":[null,""],"Subtitle search started":[null,""],"Remove Selected":[null,""],"Clear History":[null,""],"Trim History":[null,""],"Selected history entries removed":[null,""],"History cleared":[null,""],"Removed history entries older than 30 days":[null,""],"General":[null,""],"Backup/Restore":[null,""],"Search Settings":[null,""],"Search Providers":[null,""],"Subtitles Settings":[null,""],"Notifications":[null,""],"Anime":[null,""],"SickRage Configuration":[null,""],"Config - Shares":[null,""],"Windows Shares Configuration":[null,""],"Saved Shares":[null,""],"Your Windows share settings have been saved":[null,""],"Config - General":[null,""],"General Configuration":[null,""],"Saved Defaults":[null,""],"Your \"add show\" defaults have been set to your current selections.":[null,""],"Unable to create directory {directory}, log directory not changed.":[null,""],"Unable to create directory {directory}, https cert directory not changed.":[null,""],"Unable to create directory {directory}, https key directory not changed.":[null,""],"Error(s) Saving Configuration":[null,""],"Configuration Saved":[null,""],"Config - Backup/Restore":[null,""],"Config - Episode Search":[null,""],"Config - Post Processing":[null,""],"Unpacking Not Supported, disabling unpack setting":[null,""],"You tried saving an invalid normal naming config, not saving your naming settings":[null,""],"You tried saving an invalid anime naming config, not saving your naming settings":[null,""],"Config - Providers":[null,""],"No Provider Name specified":[null,""],"No Provider Url specified":[null,""],"No Provider Api key specified":[null,""],"Config - Notifications":[null,""],"Config - Subtitles":[null,""],"Config - Anime":[null,""],"Clear Errors":[null,""],"Clear Warnings":[null,""],"Submit Errors":[null,""],"Logs & Errors":[null,""],"Log File":[null,""],"Logs":[null,""],"This is a test notification from SickRage":[null,""],"Choose Directory":[null,""],"Select log file folder location":[null,""],"Select CSS file":[null,""],"Select backup folder to save to":[null,""],"Select backup files to restore":[null,""],"Please fill out the necessary fields above.":[null,""],"<b>Step 1:</b> Confirm Authorization":[null,""],"Check blacklist name; the value needs to be a trakt slug":[null,""],"You must provide a recipient email address!":[null,""],"You didn't supply a Pushbullet api key":[null,""],"Don't forget to save your new pushbullet settings.":[null,""],"Select TV Download Directory":[null,""],"Select Unpack Directory":[null,""],"This pattern is invalid.":[null,""],"This pattern would be invalid without the folders, using it will force \"Season Folders\" on for all shows.":[null,""],"This pattern is valid.":[null,""],"Select .nzb black hole/watch location":[null,""],"Select .torrent black hole/watch location":[null,""],"Select .torrent download location":[null,""],"Minimum seeding time is":[null,""],"URL to your uTorrent client (e.g. http://localhost:8000)":[null,""],"Stop seeding when inactive for":[null,""],"URL to your Transmission client (e.g. http://localhost:9091)":[null,""],"URL to your Deluge client (e.g. http://localhost:8112)":[null,""],"IP or Hostname of your Deluge Daemon (e.g. scgi://localhost:58846)":[null,""],"URL to your Synology DS client (e.g. http://localhost:5000)":[null,""],"URL to your rTorrent client (e.g. scgi://localhost:5000 <br> or https://localhost/rutorrent/plugins/httprpc/action.php)":[null,""],"URL to your qBittorrent client (e.g. http://localhost:8080)":[null,""],"URL to your MLDonkey (e.g. http://localhost:4080)":[null,""],"URL to your putio client (e.g. http://localhost:8080)":[null,""],"<a herf=\"https://app.put.io/oauth/apps/new\" target=\"_blank\"> Create a new OAuth app for put.io</a>":[null,""],"Put.io Parent Folder":[null,""],"Put.io OAuth Token":[null,""],"Show Episodes":[null,""],"Hide Episodes":[null,""],"Select Show Location":[null,""],"Select Unprocessed Episode Folder":[null,""],"DELETED":[null,""],"Resume updating the log on this page.":[null,""],"Pause updating the log on this page.":[null,""],"searching {searchingFor}...":[null,""],"search timed out, try again or try another indexer":[null,""],"loading folders...":[null,""],"Loading...":[null,""],"You have reached this page by accident, please check the url.":[null,"Ви попали на цю сторінку випадково, будь ласка, перевірте ссилку."],"A mako error has occured.<br>\n If this happened during an update a simple page refresh may be the solution.<br>\n Mako errors that happen during updates may be a one time error if there were significant ui changes.":[null,""],"Show/Hide Error":[null,""],"Add New Show":[null,"Додати Новий Серіал"],"For shows that you haven't downloaded yet, this option finds a show on theTVDB.com, creates a directory for it's episodes, and adds it to SickRage.":[null,""],"Add From Trakt Lists":[null,""],"For shows that you haven't downloaded yet, this option lets you choose from a show from one of the Trakt lists to add to SickRage.":[null,""],"Add From IMDB's Popular Shows":[null,""],"View IMDB's list of the most popular shows. This feature uses IMDB's MOVIEMeter algorithm to identify popular TV Series.":[null,""],"Add Existing Shows":[null,"Додати Існуючі Серіали"],"Use this option to add shows that already have a folder created on your hard drive. SickRage will scan your existing metadata/episodes and add the show accordingly.":[null,""],"Add Existing Show":[null,"Додати Існуючий Серіал"],"Manage Directories":[null,""],"Customize Options":[null,""],"SickRage can add existing shows, using the current options, by using locally stored NFO/XML metadata to eliminate user interaction. If you would rather have SickRage prompt you to customize each show, then use the checkbox below.":[null,""],"Prompt me to set settings for each show":[null,""],"Displaying folders within these directories which aren't already added to SickRage":[null,""],"Submit":[null,""],"Find a show on theTVDB":[null,"Знайти серіал на theTVDB"],"Show retrieved from existing metadata":[null,""],"All Indexers":[null,""],"Search":[null,""],"This will only affect the language of the retrieved metadata file contents and episode filenames.":[null,""],"This <b>DOES NOT</b> allow SickRage to download non-english TV episodes!":[null,""],"Pick the parent folder":[null,""],"Pre-chosen Destination Folder":[null,""],"Customize options":[null,""],"Add Show":[null,""],"Skip Show":[null,""],"Sort By":[null,""],"Name":[null,"Ім'я"],"Original":[null,""],"Votes":[null,""],"Rating":[null,""],"Rating > Votes":[null,""],"Sort Order":[null,""],"Asc":[null,""],"Desc":[null,""],"Fetching of IMDB Data failed. Are you online?":[null,""],"Exception":[null,""],"Select Trakt List":[null,""],"Most Anticipated":[null,"Найбільш очікувані"],"Trending":[null,"Тенденції"],"Popular":[null,"Популярні"],"Most Watched":[null,""],"Most Played":[null,""],"Most Collected":[null,""],"Recommended":[null,"Рекомендовані"],"Toggle navigation":[null,""],"Profile":[null,""],"JSONP":[null,""],"Back to SickRage":[null,"Назад на SickRage"],"Parameters":[null,"Параметри"],"Required":[null,""],"Description":[null,""],"Type":[null,""],"Default value":[null,""],"Allowed values":[null,""],"Playground":[null,""],"Clear":[null,""],"Yes":[null,""],"No":[null,""],"season":[null,""],"episode":[null,""],"Python Version":[null,""],"SSL Version":[null,""],"OS":[null,""],"Locale":[null,""],"User":[null,""],"Program Folder":[null,""],"Config File":[null,""],"Database File":[null,""],"Cache Folder":[null,""],"Log Folder":[null,""],"Arguments":[null,""],"Web Root":[null,""],"Website":[null,""],"Wiki":[null,""],"Source":[null,""],"IRC Chat":[null,""],"AnimeDB Settings":[null,""],"Look & Feel":[null,""],"AniDB is non-profit database of anime information that is freely open to the public":[null,""],"Enable":[null,""],"should SickRage use data from AniDB?":[null,""],"AniDB Username":[null,""],"username of your AniDB account":[null,""],"AniDB Password":[null,""],"password of your AniDB account":[null,""],"AniDB MyList":[null,""],"do you want to add the PostProcessed episodes to the MyList?":[null,""],"Look and Feel":[null,""],"How should the anime functions show and behave.":[null,""],"Split show lists":[null,""],"separate anime and normal shows in groups":[null,""],"Split in tabs":[null,""],"use tabs for when splitting show lists":[null,""],"Restore":[null,""],"Backup your main database file and config.":[null,""],"Select the folder you wish to save your backup file to":[null,""],"Restore your main database file and config.":[null,""],"Select the backup file you wish to restore":[null,""],"Misc":[null,""],"Interface":[null,""],"Advanced Settings":[null,""],"Startup options. Indexer options. Log and show file locations.":[null,""],"Some options may require a manual restart to take effect.":[null,""],"Default Indexer Language":[null,""],"for adding shows and metadata providers":[null,""],"Launch browser":[null,""],"open the SickRage home page on startup":[null,""],"Initial page":[null,""],"Shows":[null,""],"when launching SickRage interface":[null,""],"Choose hour to update shows":[null,""],"with information such as next air dates, show ended, etc. Use 15 for 3pm, 4 for 4am etc.":[null,""],"note":[null,""],"minutes are randomized each time SickRage is started":[null,""],"Send to trash for actions":[null,""],"when using show \"Remove\" and delete files":[null,""],"on scheduled deletes of the oldest log files":[null,""],"selected actions use trash (recycle bin) instead of the default permanent delete":[null,""],"Log file folder location":[null,""],"Number of Log files saved":[null,""],"number of log files saved when rotating logs (default: 5) (REQUIRES RESTART)":[null,""],"Size of Log files saved":[null,""],"maximum size in MB of the log file (default: 1MB) (REQUIRES RESTART)":[null,""],"Use initial indexer set to":[null,""],"as the default selection when adding new shows":[null,""],"Timeout show indexer at":[null,""],"seconds of inactivity when finding new shows (default:20)":[null,""],"Show root directories":[null,""],"where the files of shows are located":[null,""],"Save Changes":[null,""],"Options for software updates.":[null,""],"Check software updates":[null,""],"and display notifications when updates are available. Checks are run on startup and at the frequency set below*":[null,""],"Automatically update":[null,""],"fetch and install software updates. Updates are run on startup and in the background at the frequency set below*":[null,""],"Check the server every*":[null,""],"hours for software updates (default:1)":[null,""],"Notify on software update":[null,""],"send a message to all enabled notifiers when SickRage has been updated":[null,""],"User Interface":[null,""],"Options for visual appearance.":[null,""],"Interface Language":[null,""],"System Language":[null,""],"for appearance to take effect, save then refresh your browser":[null,""],"Display theme":[null,""],"Dark":[null,""],"Light":[null,""],"Use a background image":[null,""],"use a custom image as background for SickRage":[null,""],"Background Path":[null,""],"Path to the background image":[null,""],"Show fanart in the background":[null,""],"on the show summary page":[null,""],"Fanart transparency":[null,""],"transparency of the fanart in the background":[null,""],"Use a custom stylesheet file":[null,""],"use a custom .css file to style SickRage (for advanced users)":[null,""],"Stylesheet File Path":[null,""],"Path to the stylesheet (.css) file":[null,""],"Show all seasons":[null,""],"Sort with \"The\", \"A\", \"An\"":[null,""],"include articles (\"The\", \"A\", \"An\") when sorting show lists":[null,""],"Missed episodes range":[null,""],"set the range in days of the missed episodes in the Schedule page":[null,""],"Display fuzzy dates":[null,""],"move absolute dates into tooltips and display e.g. \"Last Thu\", \"On Tue\"":[null,""],"Trim zero padding":[null,""],"remove the leading number \"0\" shown on hour of day, and date of month":[null,""],"Date style":[null,""],"Use System Default":[null,""],"Time style":[null,""],"seconds are only shown on the History page":[null,""],"Timezone":[null,""],"Local":[null,""],"Network":[null,""],"display dates and times in either your timezone or the shows network timezone":[null,""],"use local timezone to start searching for episodes minutes after show ends (depends on your dailysearch frequency)":[null,""],"Download url":[null,""],"URL where the shows can be downloaded.":[null,""],"Web Interface":[null,""],"it is recommended that you enable a username and password to secure SickRage from being tampered with remotely.":[null,""],"these options require a manual restart to take effect.":[null,""],"API key":[null,""],"used to give 3rd party programs limited access to SickRage":[null,""],"you can try all the features of the API":[null,""],"here":[null,""],"HTTP logs":[null,""],"enable logs from the internal Tornado web server":[null,""],"HTTP username":[null,""],"set blank for no login":[null,""],"HTTP password":[null,""],"blank = no authentication":[null,""],"HTTP port":[null,""],"web port to browse and access SickRage (default:8081)":[null,""],"Notify on login":[null,""],"enable to be notified when a new login happens in webserver":[null,""],"Listen on IPv6":[null,""],"attempt binding to any available IPv6 address":[null,""],"Enable HTTPS":[null,""],"enable access to the web interface using a HTTPS address":[null,""],"HTTPS certificate":[null,""],"file name or path to HTTPS certificate":[null,""],"HTTPS key":[null,""],"file name or path to HTTPS key":[null,""],"Reverse proxy headers":[null,""],"accept the following reverse proxy headers (advanced)...":[null,""],"(X-Forwarded-For, X-Forwarded-Host, and X-Forwarded-Proto)":[null,""],"CPU throttling":[null,""],"Normal (default). High is lower and Low is higher CPU use":[null,""],"Anonymous redirect":[null,""],"backlink protection via anonymizer service, must end in \"?\"":[null,""],"Enable debug":[null,""],"enable debug logs":[null,""],"Verify SSL Certs":[null,""],"verify SSL Certificates (Disable this for broken SSL installs (Like QNAP))":[null,""],"No Restart":[null,""],"only shutdown when restarting SR":[null,""],"only select this when you have external software restarting SR automatically when it stops (like FireDaemon)":[null,""],"Encrypt passwords":[null,""],"in the <code>config.ini</code> file":[null,""],"warning":[null,""],"passwords must only contain":[null,""],"ASCII characters":[null,""],"Unprotected calendar":[null,""],"allow subscribing to the calendar without user and password":[null,""],"some services like Google Calendar only work this way":[null,""],"Google Calendar Icons":[null,""],"show an icon next to exported calendar events in Google Calendar":[null,""],"Proxy host":[null,""],"blank to disable or proxy to use when connecting to providers":[null,""],"also use global proxy setting for indexers (tvdb, xem, anidb, etc.)":[null,""],"Skip Remove Detection":[null,""],"skip detection of removed files":[null,""],"if disabled the episode will be set to the default deleted status":[null,""],"Default deleted episode status":[null,""],"define the status to be set for media file that has been deleted.":[null,""],"Archived option will keep previous downloaded quality":[null,""],"example: Downloaded (1080p WEB-DL) ==> Archived (1080p WEB-DL)":[null,""],"Options for github related features.":[null,""],"Branch version":[null,""],"error: No branches found.":[null,""],"select branch to use (restart required)":[null,""],"Authorization Type":[null,""],"Username and password":[null,""],"Personal access token":[null,""],"You must use a personal access token if you're using \"two-factor authentication\" on GitHub.":[null,""],"GitHub username":[null,""],"*** (REQUIRED FOR SUBMITTING ISSUES) ***":[null,""],"GitHub password":[null,""],"GitHub personal access token":[null,""],"Generate Token":[null,""],"Manage Tokens":[null,""],"GitHub remote for branch":[null,""],"access repo configured remotes (save then refresh browser)":[null,""],"default":[null,""],"origin":[null,""],"Git executable path":[null,""],"only needed if OS is unable to locate git from env":[null,""],"Git reset":[null,""],"removes untracked files and performs a hard reset on git branch automatically to help resolve update issues":[null,""],"Home Theater / NAS":[null,""],"Devices":[null,""],"Social":[null,""],"A free and open source cross-platform media center and home entertainment system software with a 10-foot user interface designed for the living-room TV.":[null,""],"send KODI commands?":[null,""],"Always on":[null,""],"log errors when unreachable?":[null,""],"Notify on snatch":[null,""],"send a notification when a download starts?":[null,""],"Notify on download":[null,""],"send a notification when a download finishes?":[null,""],"Notify on subtitle download":[null,""],"send a notification when subtitles are downloaded?":[null,""],"Update library":[null,""],"update KODI library when a download finishes?":[null,""],"Full library update":[null,""],"perform a full library update if update per-show fails?":[null,""],"Only update first host":[null,""],"only send library updates to the first active host?":[null,""],"KODI IP:Port":[null,""],"host running KODI (eg. 192.168.1.100:8080)":[null,""],"(multiple host strings must be separated by commas)":[null,""],"Username":[null,""],"username for your KODI server (blank for none)":[null,""],"Password":[null,""],"password for your KODI server (blank for none)":[null,""],"Click below to test.":[null,""],"Experience your media on a visually stunning, easy to use interface on your Mac connected to your TV. Your media library has never looked this good!":[null,""],"For sending notifications to Plex Home Theater (PHT) clients, use the KODI notifier with port <b>3005</b>.":[null,""],"send Plex Media Server library updates?":[null,""],"Plex Media Server Auth Token":[null,""],"auth token used by Plex":[null,""],"Update Library":[null,""],"update Plex Media Server library when a download finishes":[null,""],"Plex Media Server IP:Port":[null,""],"one or more hosts running Plex Media Server<br/>(eg. 192.168.1.1:32400, 192.168.1.2:32400)":[null,""],"HTTPS":[null,""],"use https for plex media server requests?":[null,""],"Click below to test Plex Media Server(s)":[null,""],"Test Plex Media Server":[null,""],"Plex Home Theater":[null,""],"send Plex Home Theater notifications?":[null,""],"Plex Home Theater IP:Port":[null,""],"one or more hosts running Plex Home Theater<br>(eg. 192.168.1.100:3000, 192.168.1.101:3000)":[null,""],"Click below to test Plex Home Theater(s)":[null,""],"Test Plex Home Theater":[null,""],"some Plex Home Theaters <b class=\"boldest\">do not</b> support notifications e.g. Plexapp for Samsung TVs":[null,""],"Emby":[null,""],"A home media server built using other popular open source technologies.":[null,""],"send update commands to Emby?":[null,""],"Emby IP:Port":[null,""],"host running Emby (eg. 192.168.1.100:8096)":[null,""],"Emby API Key":[null,""],"Networked Media Jukebox":[null,""],"The Networked Media Jukebox, or NMJ, is the official media jukebox interface made available for the Popcorn Hour 200-series.":[null,""],"send update commands to NMJ?":[null,""],"Popcorn IP address":[null,""],"IP address of Popcorn 200-series (eg. 192.168.1.100)":[null,""],"Get settings":[null,""],"Get Settings":[null,""],"the Popcorn Hour device must be powered on and NMJ running.":[null,""],"NMJ database":[null,""],"automatically filled via the 'Get Settings' button.":[null,""],"NMJ mount url":[null,""],"Networked Media Jukebox v2":[null,""],"The Networked Media Jukebox, or NMJv2, is the official media jukebox interface made available for the Popcorn Hour 300 & 400-series.":[null,""],"send update commands to NMJv2?":[null,""],"IP address of Popcorn 300/400-series (eg. 192.168.1.100)":[null,""],"Database location":[null,""],"Database instance":[null,""],"adjust this value if the wrong database is selected.":[null,""],"Find database":[null,""],"Find Database":[null,""],"the Popcorn Hour device must be powered on.":[null,""],"NMJv2 database":[null,""],"automatically filled via the 'Find Database' buttons.":[null,""],"Synology":[null,""],"The Synology DiskStation NAS.":[null,""],"Synology Indexer is the daemon running on the Synology NAS to build its media database.":[null,""],"send Synology notifications?":[null,""],"requires SickRage to be running on your Synology NAS.":[null,""],"Synology Indexer":[null,""],"Synology Notifier is the notification system of Synology DSM":[null,""],"send notifications to the Synology Notifier?":[null,""],"pyTivo":[null,""],"pyTivo is both an HMO and GoBack server. This notifier will load the completed downloads to your Tivo.":[null,""],"send notifications to pyTivo?":[null,""],"requires the downloaded files to be accessible by pyTivo.":[null,""],"pyTivo IP:Port":[null,""],"host running pyTivo (eg. 192.168.1.1:9032)":[null,""],"pyTivo share name":[null,""],"value used in pyTivo Web Configuration to name the share.":[null,""],"Tivo name":[null,""],"(Messages & Settings > Account & System Information > System Information > DVR name)":[null,""],"Growl":[null,""],"A cross-platform unobtrusive global notification system.":[null,""],"send Growl notifications?":[null,""],"Growl IP:Port":[null,""],"host running Growl (eg. 192.168.1.100:23053)":[null,""],"may leave blank if SickRage is on the same host.":[null,""],"otherwise Growl <b>requires</b> a password to be used.":[null,""],"Click below to register and test Growl, this is required for Growl notifications to work.":[null,""],"Register Growl":[null,""],"Prowl":[null,""],"A Growl client for iOS.":[null,""],"send Prowl notifications?":[null,""],"Prowl Message Title":[null,""],"Global Prowl API key(s)":[null,""],"Prowl API(s) listed here, separated by commas if applicable, will<br> receive notifications for <b>all</b> shows. Your Prowl API key is available at:":[null,""],"(this field may be blank except when testing.)":[null,""],"Show notification list":[null,""],"-- Select a Show --":[null,""],"Configure per-show notifications here by entering Prowl API key(s), separated by commas, '\n 'after selecting a show in the drop-down box. Be sure to activate the 'Save for this show' '\n 'button below after each entry.":[null,""],"Save for this show":[null,""],"Prowl priority":[null,""],"Very Low":[null,""],"Moderate":[null,""],"Normal":[null,""],"High":[null,""],"Emergency":[null,""],"priority of Prowl messages from SickRage.":[null,""],"Libnotify":[null,""],"The standard desktop notification API for Linux/*nix systems. This notifier will only function if the pynotify module is installed (Ubuntu/Debian package <a href=\"apt:python-notify\">python-notify</a>).":[null,""],"send Libnotify notifications?":[null,""],"Pushover":[null,""],"Pushover makes it easy to send real-time notifications to your Android and iOS devices.":[null,""],"send Pushover notifications?":[null,""],"Pushover key":[null,""],"user key of your Pushover account":[null,""],"Pushover API key":[null,""],"click here":[null,""]," to create a Pushover API key":[null,""],"Pushover devices":[null,""],"comma separated list of pushover devices you want to send notifications to":[null,""],"Pushover notification sound":[null,""],"Bike":[null,""],"Bugle":[null,""],"Cash Register":[null,""],"Classical":[null,""],"Cosmic":[null,""],"Falling":[null,""],"Gamelan":[null,""],"Incoming":[null,""],"Intermission":[null,""],"Magic":[null,""],"Mechanical":[null,""],"Piano Bar":[null,""],"Siren":[null,""],"Space Alarm":[null,""],"Tug Boat":[null,""],"Alien Alarm (long)":[null,""],"Climb (long)":[null,""],"Persistent (long)":[null,""],"Pushover Echo (long)":[null,""],"Up Down (long)":[null,""],"None (silent)":[null,""],"Device specific":[null,""],"choose notification sound to use":[null,""],"Pushover priority":[null,""],"Choose priority to use":[null,""],"Boxcar 2":[null,""],"Read your messages where and when you want them!":[null,""],"send Boxcar notifications?":[null,""],"Boxcar2 access token":[null,""],"access token for your Boxcar account.":[null,""],"NMA":[null,""],"Notify My Android":[null,""],"Notify My Android is a Prowl-like Android App and API that offers an easy way to send notifications from your application directly to your Android device.":[null,""],"send NMA notifications?":[null,""],"NMA API key":[null,""],"(multiple keys must be separated by commas, up to a maximum of 5)":[null,""],"NMA priority":[null,""],"priority of NMA messages from SickRage.":[null,""],"Pushalot":[null,""],"Pushalot is a platform for receiving custom push notifications to connected devices running Windows Phone or Windows 8.":[null,""],"send Pushalot notifications ?":[null,""],"Pushalot authorization token":[null,""],"authorization token of your Pushalot account.":[null,""],"Pushbullet":[null,""],"Pushbullet is a platform for receiving custom push notifications to connected devices running Android/iOS and desktop browsers such as Chrome, Firefox or Opera.":[null,""],"send Pushbullet notifications?":[null,""],"Pushbullet API key":[null,""],"API key of your Pushbullet account":[null,""],"Pushbullet devices":[null,""],"Update device list":[null,""],"Pushbullet channels":[null,""],"Free Mobile":[null,""],"Free Mobile is a famous French cellular network provider.<br> It provides to their customer a free SMS API.":[null,""],"send SMS notifications?":[null,""],"send a SMS when a download starts?":[null,""],"send a SMS when a download finishes?":[null,""],"send a SMS when subtitles are downloaded?":[null,""],"Free Mobile customer ID":[null,""],"it's your Free Mobile customer ID (8 digits)":[null,""],"Free Mobile API key":[null,""],"find your API key in your customer portal.":[null,""],"Click below to test your settings.":[null,""],"Telegram":[null,""],"Telegram is a cloud-based instant messaging service.":[null,""],"send Telegram notifications?":[null,""],"send a message when a download starts?":[null,""],"send a message when a download finishes?":[null,""],"send a message when subtitles are downloaded?":[null,""],"User/group ID":[null,""],"contact @myidbot on Telegram to get an ID":[null,""],"Bot API token":[null,""],"contact @BotFather on Telegram to set up one":[null,""],"Join":[null,""],"Join all of your devices together!":[null,""],"send Join notifications?":[null,""],"Device ID":[null,""],"per device specific id":[null,""]," to create a Join API key":[null,""],"Twilio":[null,""],"Twilio is a webservice API that allows you to communicate directly with a mobile number. This notifier will send a text directly to your mobile device.":[null,""],"should SickRage text your mobile device?":[null,""],"Twilio Account SID":[null,""],"account SID of your Twilio account.":[null,""],"Twilio Auth Token":[null,""],"Twilio Phone SID":[null,""],"phone SID that you would like to send the sms from":[null,""],"Your phone number":[null,""],"phone number that will receive the sms. Please use the format +1-###-###-####":[null,""],"Twitter":[null,""],"A social networking and microblogging service, enabling its users to send and read other users' messages called tweets.":[null,""],"should SickRage post tweets on Twitter?":[null,""],"you may want to use a secondary account.":[null,""],"send direct message":[null,""],"send a notification via Direct Message, not via status update":[null,""],"send DM to":[null,""],"Twitter account to send Direct Messages to (must follow you)":[null,""],"Step One":[null,""],"Request Authorization":[null,""],"Click the \"Request Authorization\" button.<br> This will open a new page containing an auth key.<br> <b>note:</b> if nothing happens check your popup blocker.":[null,""],"Step Two":[null,""],"Enter the key Twitter gave you below, and click \"Verify Key\".":[null,""],"Trakt":[null,""],"Trakt helps keep a record of what TV shows and movies you are watching. Based on your favorites, Trakt recommends additional shows and movies you'll enjoy!":[null,""],"send Trakt.tv notifications?":[null,""],"username of your Trakt account.":[null,""],"Trakt PIN":[null,""],"Get Trakt PIN":[null,""],"PIN code to authorize SickRage to access Trakt on your behalf.":[null,""],"API Timeout":[null,""],"seconds to wait for Trakt API to respond. (Use 0 to wait forever)":[null,""],"Default indexer":[null,""],"Sync libraries":[null,""],"sync your SickRage show library with your trakt show library.":[null,""],"Remove Episodes From Collection":[null,""],"remove an episode from your Trakt Collection if it is not in your SickRage Library.":[null,""],"Sync watchlist":[null,""],"sync your SickRage show watchlist with your trakt show watchlist (either Show and Episode).":[null,""],"episode will be added on watch list when wanted or snatched and will be removed when downloaded ":[null,""],"Watchlist add method":[null,""],"Skip All":[null,""],"Download Pilot Only":[null,""],"Get whole show":[null,""],"method in which to download episodes for new shows.":[null,""],"Remove episode":[null,""],"remove an episode from your watchlist after it is downloaded.":[null,""],"Remove series":[null,""],"remove the whole series from your watchlist after any download.":[null,""],"Remove watched show":[null,""],"remove the show from sickrage if it's ended and completely watched":[null,""],"Start paused":[null,""],"shows grabbed from your trakt watchlist start paused.":[null,""],"Trakt blackList name":[null,""],"name (slug) of list on Trakt for blacklisting show on 'Add Trending Show' & 'Add Recommended Shows' pages":[null,""],"Email":[null,""],"Allows configuration of email notifications on a per show basis.":[null,""],"send email notifications?":[null,""],"SMTP host":[null,""],"hostname of your SMTP email server.":[null,""],"SMTP port":[null,""],"port number used to connect to your SMTP host.":[null,""],"SMTP from":[null,""],"sender email address, some hosts require a real address.":[null,""],"Use TLS":[null,""],"check to use TLS encryption.":[null,""],"SMTP user":[null,""],"(optional) your SMTP server username.":[null,""],"SMTP password":[null,""],"(optional) your SMTP server password.":[null,""],"Global email list":[null,""],"email addresses listed here, separated by commas if applicable, will<br> receive notifications for <b>all</b> shows.":[null,""],"(This field may be blank except when testing.)":[null,""],"Email Subject":[null,""],"use a custom subject for some privacy protection?":[null,""],"(leave blank for the default SickRage subject)":[null,""],"configure per-show notifications here by entering email address(es), separated by commas,":[null,""],"after selecting a show in the drop-down box. Be sure to activate the 'Save for this show'":[null,""],"button below after each entry.":[null,""],"Slack":[null,""],"Slack brings all your communication together in one place. It's real-time messaging, archiving and search for modern teams.":[null,""],"should SickRage post messages on Slack?":[null,""],"Slack Incoming Webhook":[null,""],"Discord":[null,""],"All-in-one voice and text chat for gamers that's free, secure, and works on both your desktop and phone.":[null,""],"Should SickRage post messages on Discord?":[null,""],"Discord Incoming Webhook":[null,""],"Create webhook under channel settings.":[null,""],"Discord Bot Name":[null,""],"Blank will use webhook default Name.":[null,""],"Discord Avatar URL":[null,""],"Blank will use webhook default Avatar.":[null,""],"Discord TTS":[null,""],"Send notifications using text-to-speech":[null,""],"Post-Processing":[null,""],"Episode Naming":[null,""],"Metadata":[null,""],"Settings that dictate how SickRage should process completed downloads.":[null,""],"enable the automatic post processor to scan and process any files in your Post Processing Dir":[null,""],"do not use if you use an external Post Processing script":[null,""],"Post Processing Dir":[null,""],"the folder where your download client puts the completed TV downloads.":[null,""],"please use seperate downloading and completed folders in your download client if possible.":[null,""],"Processing Method":[null,""],"what method should be used to put files into the library?":[null,""],"if you keep seeding torrents after they finish, please avoid the 'move' processing method to prevent errors.":[null,""],"Auto Post-Processing Frequency":[null,""],"time in minutes to check for new files to auto post-process (min 10)":[null,""],"Postpone post processing":[null,""],"wait to process a folder if sync files are present.":[null,""],"Sync File Extensions":[null,""],"comma seperated list of extensions or filename globs SickRage ignores when Post Processing":[null,""],"Rename Episodes":[null,""],"rename episode using the Episode Naming settings?":[null,""],"Create missing show directories":[null,""],"create missing show directories when they get deleted":[null,""],"Add shows without directory":[null,""],"add shows without creating a directory (not recommended)":[null,""],"Move associated files":[null,""],"move associated (srt/srr/sfv/etc) files while post processing?":[null,""],"Rename .nfo file":[null,""],"rename the original .nfo file to .nfo-orig to avoid conflicts?":[null,""],"Associated file extensions":[null,""],"comma separated list of associated file extensions SickRage should keep while post processing.":[null,""],"leaving it empty means no associated files will be post processed":[null,""],"Delete non associated files":[null,""],"delete non associated files while post processing?":[null,""],"Change File Date":[null,""],"set last modified filedate to the date that the episode aired?":[null,""],"some systems may ignore this feature.":[null,""],"Timezone for File Date":[null,""],"local":[null,""],"network":[null,""],"what timezone should be used to change File Date?":[null,""],"Unpack":[null,""],"What to do with archived releases found in your <i>TV Download Dir</i>?":[null,""],"Ignore (do not process contents)":[null,""],"Unpack (process contents)":[null,""],"Treat as video (process archive as-is)":[null,""],"'Unpack' only works with RAR archives":[null,""],"Windows":[null,""],"WinRar is required on windows":[null,""],"Unpack Directory":[null,""],"Choose a path to unpack files, leave blank to unpack in download dir":[null,""],"Unrar Location":[null,""],"add the path to unrar if it is not in the system path":[null,""],"Alternate Unrar Tool":[null,""],"add the path to an alternate unrar tool if it is not in the system path":[null,""],"Delete RAR contents":[null,""],"delete content of RAR files, even if Process Method not set to move?":[null,""],"only working with RAR archive":[null,""],"Don't delete empty folders":[null,""],"leave empty folders when Post Processing?":[null,""],"can be overridden using manual Post Processing":[null,""],"Follow symbolic-links":[null,""],"follow down symbolic links in download directory?":[null,""],"<b>EXPERTS ONLY.</b><br>Enable only if you know what <b>circular symbolic links</b> are,<br>and can <b>verify that you have none</b>.":[null,""],"Use icacls":[null,""],"Windows only":[null,""],"sets video permissions after using the move method in post processing":[null,""],"Extra Scripts":[null,""],"see":[null,""],"for script arguments description and usage.":[null,""],"How SickRage will name and sort your episodes.":[null,""],"Name Pattern":[null,""],"Toggle Naming Legend":[null,""],"don't forget to add quality pattern. Otherwise after post-processing the episode will have UNKNOWN quality":[null,""],"Meaning":[null,""],"Pattern":[null,""],"Result":[null,""],"Use lower case if you want lower case names (eg. %sn, %e.n, %q_n etc)":[null,""],"Show Name":[null,""],"Show.Name":[null,""],"Show_Name":[null,""],"Season Number":[null,""],"XEM Season Number":[null,""],"Episode Number":[null,""],"XEM Episode Number":[null,""],"Episode Name":[null,""],"Episode.Name":[null,""],"Episode_Name":[null,""],"Air Date":[null,""],"Post-Processing Date":[null,""],"Quality":[null,""],"Scene Quality":[null,""],"Release Name":[null,""],"SickRage' is used in place of RLSGROUP if it could not be properly detected":[null,""],"Release Group":[null,""],"If episode is proper/repack add 'proper' to name.":[null,""],"Release Type":[null,""],"Multi-Episode Style":[null,""],"Single-EP Sample":[null,""],"Multi-EP sample":[null,""],"Strip Show Year":[null,""],"remove the TV show's year when renaming the file?":[null,""],"only applies to shows that have year inside parentheses":[null,""],"Custom Air-By-Date":[null,""],"name air-by-date shows differently than regular shows?":[null,""],"Toggle ABD Naming Legend":[null,""],"Regular Air Date":[null,""],"Year":[null,""],"Month":[null,""],"Day":[null,""],"Multi-EP style is ignored":[null,""],"Custom Sports":[null,""],"name sports shows differently than regular shows?":[null,""],"Toggle Sports Naming Legend":[null,""],"Sports Air Date":[null,""],"Custom Anime":[null,""],"name anime shows differently than regular shows?":[null,""],"Toggle Anime Naming Legend":[null,""],">XEM Season Number":[null,""],"Single-EP Anime Sample":[null,""],"Multi-EP Anime sample":[null,""],"Add Absolute Number":[null,""],"add the absolute number to the season/episode format?":[null,""],"only applies to anime. (eg. S15E45 - 310 vs S15E45)":[null,""],"Only Absolute Number":[null,""],"replace season/episode format with absolute number":[null,""],"only applies to anime.":[null,""],"No Absolute Number":[null,""],"don't include the absolute number":[null,""],"The data associated to the data. These are files associated to a TV show in the form of images and text that, when supported, will enhance the viewing experience.":[null,""],"Metadata Type":[null,""],"toggle metadata options that you wish to be created":[null,""],"multiple targets may be used":[null,""],"Select Metadata":[null,""],"Provider Priorities":[null,""],"Provider Options":[null,""],"Configure Custom Newznab Providers":[null,""],"Configure Custom Torrent Providers":[null,""],"Check off and drag the providers into the order you want them to be used.":[null,""],"At least one provider is required but two are recommended.":[null,""],"Torrent providers can be toggled in ":[null,""],"Provider does not support backlog searches at this time.":[null,""],"Provider is <b>NOT WORKING</b>.":[null,""],"Configure individual provider settings here.":[null,""],"Check with provider's website on how to obtain an API key if needed.":[null,""],"Configure provider":[null,""],"no providers available to configure.":[null,""],"URL":[null,""],"Enable daily searches":[null,""],"enable provider to perform daily searches.":[null,""],"Enable backlog searches":[null,""],"enable provider to perform backlog searches.":[null,""],"Season search mode":[null,""],"when searching for complete seasons you can choose to have it look for season packs only, or choose to have it build a complete season from just single episodes.":[null,""],"season packs only.":[null,""],"episodes only.":[null,""],"Enable fallback":[null,""],"when searching for a complete season depending on search mode you may return no results, this helps by restarting the search using the opposite search mode.":[null,""],"Custom URL":[null,""],"the URL should include the protocol (and port if applicable). Examples: http://192.168.1.4/ or http://localhost:3000/":[null,""],"Api key":[null,""],"Digest":[null,""],"Hash":[null,""],"Passkey":[null,""],"Cookies":[null,""],"example: uid=1234;pass=567845439634987<br>note: uid and pass are not your username/password.<br>use DevTools or Firebug to get these values after logging in on your browser.":[null,""],"Pin":[null,""],"Seed ratio":[null,""],"stop transfer when ratio is reached<br>(-1 SickRage default to seed forever, or leave blank for downloader default)":[null,""],"Minimum seeders":[null,""],"Minimum leechers":[null,""],"Confirmed download":[null,""],"only download torrents from trusted or verified uploaders ?":[null,""],"Ranked torrents":[null,""],"only download ranked torrents (trusted releases)":[null,""],"English torrents":[null,""],"only download english torrents, or torrents containing english subtitles":[null,""],"For Spanish torrents":[null,""],"ONLY search on this provider if show info is defined as \"Spanish\" (avoid provider's use for VOS shows)":[null,""],"Sorting results by":[null,""],"Freeleech":[null,""],"only download <b>\"FreeLeech\"</b> torrents.":[null,""],"Category":[null,""],"select torrent with Italian subtitle":[null,""],"Configure Custom<br>Newznab Providers":[null,""],"Add and setup or remove custom Newznab providers.":[null,""],"Select provider":[null,""],"-- add new provider --":[null,""],"Provider name":[null,""],"Site URL":[null,""],"Newznab search categories":[null,""],"select your Newznab categories on the left, and click the \"update categories\" button to use them for searching.) <b>don't forget to to save the form!":[null,""],"Update Categories":[null,""],"Add":[null,""],"Delete":[null,""],"Add and setup or remove custom RSS providers.":[null,""],"RSS URL":[null,""],"Search element":[null,""],"eg: title":[null,""],"Episode Search":[null,""],"NZB Search":[null,""],"Torrent Search":[null,""],"How to manage searching with":[null,""],"Randomize Providers":[null,""],"randomize the provider search order instead of going in order of placement":[null,""],"Download propers":[null,""],"replace original download with \"Proper\" or \"Repack\" if nuked":[null,""],"Check propers every":[null,""],"24 hours":[null,""],"4 hours":[null,""],"90 mins":[null,""],"45 mins":[null,""],"15 mins":[null,""],"Backlog search day(s)":[null,""],"number of day(s) that the \"Forced Backlog Search\" will cover (e.g. 7 Days)":[null,""],"Backlog search frequency":[null,""],"time in minutes between searches (min.":[null,""],"Daily search frequency":[null,""],"Usenet retention":[null,""],"age limit in days for usenet articles to be used (e.g. 500)":[null,""],"Ignore words":[null,""],"results with one or more word from this list will be ignored<br>separate words with a comma, e.g. \"word1,word2,word3\"":[null,""],"Require words":[null,""],"results with no word from this list will be ignored<br>separate words with a comma, e.g. \"word1,word2,word3\"":[null,""],"Trackers list":[null,""],"trackers that will be added to magnets without trackers<br>separate trackers with a comma, e.g. \"tracker1,tracker2,tracker3\"":[null,""],"Ignore language names in subbed results":[null,""],"ignore subbed releases based on language names <br>\n Example: \"dk\" will ignore words: dksub, dksubs, dksubbed, dksubed <br>\n separate languages with a comma, e.g. \"lang1,lang2,lang3":[null,""],"Allow high priority":[null,""],"set downloads of recently aired episodes to high priority":[null,""],"Use Failed Downloads":[null,""],"use Failed Download Handling?":[null,""],"will only work with snatched/downloaded episodes after enabling this":[null,""],"Delete Failed":[null,""],"delete files left over from a failed download?":[null,""],"this only works if Use Failed Downloads is enabled.":[null,""],"How to handle NZB search results.":[null,""],"Search NZBs":[null,""],"enable NZB search providers":[null,""],"Send .nzb files to":[null,""],"SABnzbd server URL":[null,""],"URL to your SABnzbd server (e.g. http://localhost:8080/)":[null,""],"SABnzbd username":[null,""],"(blank for none)":[null,""],"SABnzbd password":[null,""],"SABnzbd API key":[null,""],"locate at... SABnzbd Config -> General -> API Key":[null,""],"Use SABnzbd category":[null,""],"add downloads to this category (e.g. TV)":[null,""],"Use SABnzbd category (backlog episodes)":[null,""],"add downloads of old episodes to this category (e.g. TV)":[null,""],"Use SABnzbd category for anime":[null,""],"add anime downloads to this category (e.g. anime)":[null,""],"Use SABnzbd category for anime (backlog episodes)":[null,""],"add anime downloads of old episodes to this category (e.g. anime)":[null,""],"Use forced priority":[null,""],"enable to change priority from HIGH to FORCED":[null,""],"Black hole folder location":[null,""],"<b>.nzb</b> files are stored at this location for external software to find and use":[null,""],"Connect using HTTPS":[null,""],"enable Secure control in NZBGet and set the correct Secure Port here":[null,""],"NZBget host:port":[null,""],"(e.g. localhost:6789)":[null,""],"NZBget RPC host name and port number (not NZBgetweb!)":[null,""],"NZBget username":[null,""],"locate in nzbget.conf (default:nzbget)":[null,""],"NZBget password":[null,""],"locate in nzbget.conf (default:tegbzn6789)":[null,""],"Use NZBget category":[null,""],"send downloads marked this category (e.g. TV)":[null,""],"Use NZBget category (backlog episodes)":[null,""],"send downloads of old episodes marked this category (e.g. TV)":[null,""],"Use NZBget category for anime":[null,""],"send anime downloads marked this category (e.g. anime)":[null,""],"Use NZBget category for anime (backlog episodes)":[null,""],"send anime downloads of old episodes marked this category (e.g. anime)":[null,""],"NZBget priority":[null,""],"Very low":[null,""],"Low":[null,""],"Very high":[null,""],"Force":[null,""],"priority for daily snatches (no backlog)":[null,""],"Torrent host:port":[null,""],"URL to your Synology DSM (e.g. http://localhost:5000/)":[null,""],"Client username":[null,""],"Client password":[null,""],"Downloaded files location":[null,""],"where Synology Download Station will save downloaded files (blank for client default)":[null,""],"the destination has to be a shared folder for Synology DS":[null,""],"Click below to test":[null,""],"How to handle Torrent search results.":[null,""],"Search torrents":[null,""],"enable torrent search providers":[null,""],"Send .torrent files to":[null,""],"<b>.torrent</b> files are stored at this location for external software to find and use":[null,""],"URL to your torrent client (e.g. http://localhost:8000/)":[null,""],"Torrent RPC URL":[null,""],"the path without leading and trailing slashes (e.g. transmission)":[null,""],"Http Authentication":[null,""],"Verify certificate":[null,""],"disable if you get \"Deluge: Authentication Error\" in your log":[null,""],"verify SSL certificates for HTTPS requests":[null,""],"Add label to torrent":[null,""],"(blank spaces are not allowed)":[null,""],"label plugin must be enabled in Deluge clients":[null,""],"for QBitTorrent 3.3.1 and up":[null,""],"Add label to torrent for anime":[null,""],"for QBitTorrent 3.3.1 and up ":[null,""],"where <span id=\"torrent_client\">the torrent client</span> will save downloaded files (blank for client default)":[null,""],"the destination has to be a shared folder for Synology DS</span>":[null,""],"Minimum seeding time":[null,""],"time in hours":[null,""],"(default:'0' passes blank to client and '-1' passes nothing)":[null,""],"Start torrent paused":[null,""],"add .torrent to client but do <b style=\"font-weight:900\">not</b> start downloading":[null,""],"Allow high bandwidth":[null,""],"use high bandwidth allocation if priority is high":[null,""],"Test Connection":[null,""],"Windows Shares":[null,""],"Defines your existing windows shares so that we can add them to the browse dialog":[null,""],"Share #{number}":[null,""],"Share label":[null,""],"Hostname or IP":[null,""],"Share path":[null,""],"Subtitles Search":[null,""],"Subtitles Plugin":[null,""],"Plugin Settings":[null,""],"Settings that dictate how SickRage handles subtitles search results.":[null,""],"Search Subtitles":[null,""],"Subtitle Languages":[null,""],"Subtitle Directory":[null,""],"the directory where SickRage should store your <i>Subtitles</i> files.":[null,""],"leave empty if you want store subtitle in episode path.":[null,""],"Subtitle Find Frequency":[null,""],"time in hours between scans (default: 1)":[null,""],"Include Specials":[null,""],"include the show's specials when searching for subtitles?":[null,""],"Perfect matches":[null,""],"only download subtitles that match: release group, video codec, audio codec and resolution":[null,""],"if disabled you may get out of sync subtitles":[null,""],"Subtitles History":[null,""],"log downloaded Subtitle on History page?":[null,""],"Subtitles Multi-Language":[null,""],"append language codes to subtitle filenames?":[null,""],"this option is required if you use multiple subtitle languages":[null,""],"Delete unwanted subtitles":[null,""],"enable to delete unwanted subtitle languages bundled with release":[null,""],"Embedded Subtitles":[null,""],"ignore subtitles embedded inside video file?":[null,""],"this will ignore <u>all</u> embedded subtitles for every video file!":[null,""],"Hearing Impaired Subtitles":[null,""],"download hearing impaired style subtitles?":[null,""],"See":[null,""],"for a script arguments description.":[null,""],"Additional scripts separated by <b>|</b>.":[null,""],"Scripts are called after each episode has searched and downloaded subtitles.":[null,""],"For any scripted languages, include the interpreter executable before the script. See the following example":[null,""],"For Windows:":[null,""],"For Linux / OS X:":[null,""],"Subtitle Providers":[null,""],"Check off and drag the plugins into the order you want them to be used.":[null,""],"At least one plugin is required.":[null,""]," Web-scraping plugin":[null,""],"Provider Settings":[null,""],"Set user and password for each provider":[null,""],"User Name":[null,""],"Change Show":[null,""],"Prev Show":[null,""],"Next Show":[null,""],"Jump to Season":[null,""],"Specials":[null,""],"Poster for":[null,""],"Stars":[null,""],"minutes":[null,""],"View other popular {genre} shows on trakt.tv.":[null,""],"View other popular {imdbgenre} shows on IMDB.":[null,""],"Allowed":[null,""],"Preferred":[null,""],"Originally Airs":[null,""],"Show Status":[null,""],"Default EP Status":[null,""],"Location":[null,""],"Missing":[null,""],"Scene Name":[null,""],"Required Words":[null,""],"Ignored Words":[null,""],"Size":[null,""],"Info Language":[null,""],"Subtitles SR Metadata":[null,""],"Season Folders":[null,""],"Paused":[null,""],"Air-by-Date":[null,""],"Sports":[null,""],"DVD Order":[null,""],"Scene Numbering":[null,""],"Select Filtered Episodes":[null,""],"Clear All":[null,""],"Change selected episodes to":[null,""],"Select Columns":[null,""],"NFO":[null,""],"TBN":[null,""],"Episode":[null,""],"Absolute":[null,""],"Scene":[null,""],"Scene Absolute":[null,""],"File Name":[null,""],"Airdate":[null,""],"Download":[null,""],"Change the value here if scene numbering differs from the indexer episode numbering":[null,""],"Change the value here if scene absolute numbering differs from the indexer absolute numbering":[null,""],"Manual Search":[null,""],"Do you want to mark this episode as failed?":[null,""],"The episode release name will be added to the failed history, preventing it to be downloaded again.":[null,""],"Do you want to include the current episode quality in the search?":[null,""],"Choosing No will ignore any releases with the same episode quality as the one currently downloaded/snatched.":[null,""],"Download subtitle":[null,""],"Do you want to re-download the subtitle for this language?":[null,""],"It will overwrite your current subtitle":[null,""],"Format":[null,""],"Advanced":[null,""],"Main Settings":[null,""],"Show Location":[null,""],"Preferred Quality":[null,""],"Default Episode Status":[null,""],"this will set the status for future episodes.":[null,""],"this only applies to episode filenames and the contents of metadata files.":[null,""],"search for subtitles":[null,""],"Use SR Metdata":[null,""],"use SickRage metadata when searching for subtitle, this will override the autodiscovered metadata":[null,""],"pause this show (SickRage will not download episodes)":[null,""],"Format Settings":[null,""],"Air by date":[null,""],"check if the show is released as Show.03.02.2010 rather than Show.S02E03.":[null,""],"in case of an air date conflict between regular and special episodes, the later will be ignored.":[null,""],"check if the show is Anime and episodes are released as Show.265 rather than Show.S02E03":[null,""],"check if the show is a sporting or MMA event released as Show.03.02.2010 rather than Show.S02E03":[null,""],"Season folders":[null,""],"group episodes by season folder (uncheck to store in a single folder)":[null,""],"search by scene numbering (uncheck to search by indexer numbering)":[null,""],"use the DVD order instead of the air order":[null,""],"a \"Force Full Update\" is necessary, and if you have existing episodes you need to sort them manually.":[null,""],"comma-separated <i>e.g. \"word1,word2,word3</i>\"":[null,""],"search results with one or more words from this list will be ignored.":[null,""],"e.g. \"word1,word2,word3\"":[null,""],"search results with no words from this list will be ignored.":[null,""],"Scene Exception":[null,""],"this will affect episode search on NZB and torrent providers.":[null,""],"this list appends to the original show name.":[null,""],"WARNING logs":[null,""],"ERROR logs":[null,""],"There are no events to display.":[null,""],"Limit":[null,""],"Layout":[null,""],"HistoryLayout":[null,""],"Compact":[null,""],"Detailed":[null,""],"Time":[null,""],"Provider":[null,""],"Missing Provider":[null,""],"missing provider":[null,""],"Directory":[null,""],"Show Name (tvshow.nfo)":[null,""],"Indexer":[null,""],"Enter the folder containing the episode":[null,""],"Process Method to be used":[null,""],"Copy":[null,""],"Move":[null,""],"Hard Link":[null,""],"Symbolic Link":[null,""],"Symbolic Link Reversed":[null,""],"Force already Post Processed Dir/Files":[null,""],"Mark Dir/Files as priority download":[null,""],"(Check it to replace the file even if it exists at higher quality)":[null,""],"Delete files and folders":[null,""],"(Check it to delete files and folders like auto processing)":[null,""],"Don't use processing queue":[null,""],"(If checked this will return the result of the process here, but may be slow!)":[null,""],"Mark download as failed":[null,""],"Process":[null,""],"Download subtitles for this show?":[null,""],"use SickRage metadata when searching for subtitle, <br />this will override the autodiscovered metadata":[null,""],"Status for previously aired episodes":[null,""],"Status for all future episodes":[null,""],"Group episodes by season folder?":[null,""],"Is this show an Anime?":[null,""],"Is this show scene numbered?":[null,""],"Save Defaults":[null,""],"Use current values as the defaults":[null,""],"<p>Select your preferred fansub groups from the <b>Available Groups</b> and add them to the <b>Whitelist</b>. Add groups to the <b>Blacklist</b> to ignore them.</p>\n <p>The <b>Whitelist</b> is checked <i>before</i> the <b>Blacklist</b>.</p>\n <p>Groups are shown as <b>Name</b> | <b>Rating</b> | <b>Number of subbed episodes</b>.</p>\n <p>You may also add any fansub group not listed to either list manually.</p>\n <p>When doing this please note that you can only use groups listed on anidb for this anime.\n <br>If a group is not listed on anidb but subbed this anime, please correct anidb's data.</p>":[null,""],"Whitelist":[null,""],"Available Groups":[null,""],"Add to Whitelist":[null,""],"Add to Blacklist":[null,""],"Blacklist":[null,""],"Custom Group":[null,""],"Allowed Quality:":[null,""],"Preferred Quality:":[null,""],"Filter Show Name":[null,""],"Root":[null,""],"All":[null,""],"Clear Filter(s)":[null,""],"Poster":[null,""],"Small Poster":[null,""],"Banner":[null,""],"Simple":[null,""],"Next Episode":[null,""],"Progress":[null,""],"Direction":[null,""],"Ascending":[null,""],"Descending":[null,""],"Poster Size":[null,""],"Continuing":[null,""],"Ended":[null,""],"Total":[null,""],"Invalid date":[null,""],"No Network":[null,""],"Next Ep":[null,""],"Prev Ep":[null,""],"Show":[null,""],"Downloads":[null,""],"Active":[null,""],"loading":[null,""],"<p><b><u>Preferred</u></b> qualities will replace those in <b><u>allowed</u></b>, even if they are lower.</p>":[null,""],"New":[null,""],"Set as Default":[null,""],"Remember me":[null,""],"Edit Selected":[null,""],"Subtitle":[null,""],"Default Ep Status":[null,""],"Update":[null,""],"Rescan":[null,""],"Rename":[null,""],"Search Subtitle":[null,""],"Force Metadata Regen":[null,""],"Snatched (Allowed)":[null,""],"Jump to Show":[null,""],"Force Backlog":[null,""],"Manage episodes with status":[null,""],"Manage":[null,""],"None of your episodes have status":[null,""],"Shows containing":[null,""],"episodes":[null,""],"Set checked shows/episodes to":[null,""],"Go":[null,""],"Select all":[null,""],"Clear all":[null,""],"Release":[null,""],"Backlog Search":[null,""],"Not in progress":[null,""],"In Progress":[null,""],"Daily Search":[null,""],"Find Propers Search":[null,""],"Propers search disabled":[null,""],"Subtitle Search":[null,""],"Subtitle search disabled":[null,""],"Search Queue":[null,""],"pending items":[null,""],"Daily":[null,""],"Manual":[null,""],"Changing any settings marked with (<span class=\"separator\">*</span>) will force a refresh of the selected shows.":[null,""],"Selected Shows":[null,""],"Root Directories":[null,""],"Current":[null,""],"Keep":[null,""],"Custom":[null,""],"Group episodes by season folder (set to \"No\" to store in a single folder).":[null,""],"Pause these shows (SickRage will not download episodes).":[null,""],"This will set the status for future episodes.":[null,""],"Search by scene numbering (set to \"No\" to search by indexer numbering).":[null,""],"Set if these shows are Anime and episodes are released as Show.265 rather than Show.S02E03":[null,""],"Set if these shows are sporting or MMA events released as Show.03.02.2010 rather than Show.S02E03.":[null,""],"In case of an air date conflict between regular and special episodes, the later will be ignored.":[null,""],"Set if these shows are released as Show.03.02.2010 rather than Show.S02E03.":[null,""],"Search for subtitles.":[null,""],"All of your episodes have {subsLanguage} subtitles.":[null,""],"Manage episodes without":[null,""],"Episodes without {subsLanguage} subtitles.":[null,""],"Episodes without {subtitleLanguage} (undefined) subtitles.":[null,""],"Download missed subtitles for selected episodes":[null,""],"Performing Restart":[null,""],"Waiting for SickRage to shut down":[null,""],"Waiting for SickRage to start again":[null,""],"Loading the default page":[null,""],"Error: The restart has timed out, perhaps something prevented SickRage from starting again?":[null,""],"Key":[null,""],"Missed":[null,""],"Today":[null,""],"Soon":[null,""],"Later":[null,""],"Subscribe":[null,""],"Date":[null,""],"View Paused":[null,""],"Hidden":[null,""],"Shown":[null,""],"Calendar":[null,""],"List":[null,""],"Ends":[null,""],"Next Ep Name":[null,""],"Run time":[null,""],"Indexers":[null,""],"No shows for this day":[null,""],"Airs":[null,""],"Plot":[null,""],"Show Update":[null,""],"Version Check":[null,""],"Proper Finder":[null,""],"Post Process":[null,""],"Subtitles Finder":[null,""],"Scheduler":[null,""],"Alive":[null,""],"Start Time":[null,""],"Cycle Time":[null,""],"Next Run":[null,""],"Last Run":[null,""],"Silent":[null,""],"True":[null,""],"N/A":[null,""],"Show id":[null,""],"Show name":[null,""],"Priority":[null,""],"Added":[null,""],"Queue type":[null,""],"LOW":[null,""],"NORMAL":[null,""],"HIGH":[null,""],"Disk Space":[null,""],"Free space":[null,""],"TV Download Directory":[null,""],"Media Root Directories":[null,""],"Preview of the proposed name changes":[null,""],"All Seasons":[null,""],"select all":[null,""],"Rename Selected":[null,""],"Cancel Rename":[null,""],"Old Location":[null,""],"New Location":[null,""],"Trakt API did not return any results, please check your config.":[null,""],"votes":[null,""],"Remove Show":[null,""],"Level":[null,""],"Filter":[null,""],"All non-absolute folder locations are relative to ":[null,""],"Manual Post-Processing":[null,""],"Episode Status Management":[null,""],"Update PLEX":[null,""],"Update KODI":[null,""],"Update Emby":[null,""],"Manage Torrents":[null,""],"Missed Subtitle Management":[null,""],"Help & Info":[null,""],"Backup & Restore":[null,""],"Tools":[null,""],"Support SickRage":[null,""],"View Errors":[null,""],"View Warnings":[null,""],"View Log":[null,""],"Check For Updates":[null,""],"Restart":[null,""],"Shutdown":[null,""],"Logout":[null,""],"Server Status":[null,""],"View overview of snatched episodes":[null,""],"Episodes Downloaded":[null,""],"Memory used":[null,""],"Load time":[null,""],"Branch":[null,""],"Now":[null,""]}}}} \ No newline at end of file diff --git a/locale/uk_UA/LC_MESSAGES/messages.mo b/locale/uk_UA/LC_MESSAGES/messages.mo index 5336184381031fb51c0dd05c7d4cd96a06b26d31..acb8077e143843c8256711c3ffeddd57444c3a28 100644 Binary files a/locale/uk_UA/LC_MESSAGES/messages.mo and b/locale/uk_UA/LC_MESSAGES/messages.mo differ diff --git a/locale/uk_UA/LC_MESSAGES/messages.po b/locale/uk_UA/LC_MESSAGES/messages.po index 7acaef4a5819a4986ebce6b217d87111a6a096bc..e56f0e1106feb461fceb371c2666bde833aec08a 100644 --- a/locale/uk_UA/LC_MESSAGES/messages.po +++ b/locale/uk_UA/LC_MESSAGES/messages.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: sickrage\n" "Report-Msgid-Bugs-To: miigotu@gmail.com\n" -"POT-Creation-Date: 2017-03-25 09:28-0700\n" -"PO-Revision-Date: 2017-03-25 12:30-0400\n" +"POT-Creation-Date: 2017-03-28 09:10-0700\n" +"PO-Revision-Date: 2017-03-28 12:13-0400\n" "Last-Translator: miigotu <miigotu@gmail.com>\n" "Language-Team: Ukrainian\n" "MIME-Version: 1.0\n" @@ -90,7 +90,7 @@ msgid "Biography" msgstr "Біографія" #: gui/slick/views/config_general.mako:78 gui/slick/views/layouts/main.mako:145 -#: sickbeard/__init__.py:79 sickbeard/webserve.py:3807 +#: sickbeard/__init__.py:79 sickbeard/webserve.py:3778 msgid "History" msgstr "Історичний" @@ -103,7 +103,7 @@ msgid "Western" msgstr "Вестерн" #: gui/slick/views/config_general.mako:79 gui/slick/views/layouts/main.mako:221 -#: sickbeard/__init__.py:80 sickbeard/webserve.py:2385 +#: sickbeard/__init__.py:80 sickbeard/webserve.py:2384 msgid "News" msgstr "Новини" @@ -238,6 +238,34 @@ msgstr "" msgid "Subtitled" msgstr "" +#: sickbeard/helpers.py:1887 +msgid "For best results please set the Download Station alias as" +msgstr "" + +#: sickbeard/helpers.py:1888 +msgid "You can check this setting in the Synology DSM" +msgstr "" + +#: sickbeard/helpers.py:1888 sickbeard/helpers.py:1890 +msgid "Control Panel" +msgstr "" + +#: sickbeard/helpers.py:1888 +msgid "Application Portal" +msgstr "" + +#: sickbeard/helpers.py:1889 +msgid "Make sure you allow DSM to be embedded with iFrames too in" +msgstr "" + +#: sickbeard/helpers.py:1890 +msgid "DSM Settings" +msgstr "" + +#: sickbeard/helpers.py:1890 +msgid "Security" +msgstr "" + #: sickbeard/logger.py:474 msgid "<No Filter>" msgstr "" @@ -308,15 +336,15 @@ msgstr "" msgid "Event" msgstr "" -#: sickbeard/logger.py:491 sickbeard/webserve.py:1339 sickbeard/webserve.py:1342 -#: sickbeard/webserve.py:1520 sickbeard/webserve.py:1529 sickbeard/webserve.py:1717 -#: sickbeard/webserve.py:1728 sickbeard/webserve.py:1751 sickbeard/webserve.py:1764 -#: sickbeard/webserve.py:1769 sickbeard/webserve.py:1785 sickbeard/webserve.py:1790 -#: sickbeard/webserve.py:1854 sickbeard/webserve.py:1857 sickbeard/webserve.py:1863 -#: sickbeard/webserve.py:1866 sickbeard/webserve.py:1873 sickbeard/webserve.py:1876 -#: sickbeard/webserve.py:1899 sickbeard/webserve.py:1997 sickbeard/webserve.py:2002 -#: sickbeard/webserve.py:2007 sickbeard/webserve.py:2036 sickbeard/webserve.py:2040 -#: sickbeard/webserve.py:2045 +#: sickbeard/logger.py:491 sickbeard/webserve.py:1338 sickbeard/webserve.py:1341 +#: sickbeard/webserve.py:1519 sickbeard/webserve.py:1528 sickbeard/webserve.py:1716 +#: sickbeard/webserve.py:1727 sickbeard/webserve.py:1750 sickbeard/webserve.py:1763 +#: sickbeard/webserve.py:1768 sickbeard/webserve.py:1784 sickbeard/webserve.py:1789 +#: sickbeard/webserve.py:1853 sickbeard/webserve.py:1856 sickbeard/webserve.py:1862 +#: sickbeard/webserve.py:1865 sickbeard/webserve.py:1872 sickbeard/webserve.py:1875 +#: sickbeard/webserve.py:1898 sickbeard/webserve.py:1996 sickbeard/webserve.py:2001 +#: sickbeard/webserve.py:2006 sickbeard/webserve.py:2035 sickbeard/webserve.py:2039 +#: sickbeard/webserve.py:2044 msgid "Error" msgstr "" @@ -333,6 +361,7 @@ msgstr "" msgid "Main" msgstr "" +#: gui/slick/js/ajaxEpSearch.js:146 gui/slick/js/ajaxEpSearch.js:147 #: gui/slick/views/inc_home_showList.mako:27 sickbeard/show_queue.py:298 msgid "Loading" msgstr "" @@ -372,867 +401,835 @@ msgstr "" msgid "No update needed" msgstr "" -#: sickbeard/webserve.py:170 +#: sickbeard/webserve.py:171 msgid "Mako Error" msgstr "" -#: sickbeard/webserve.py:195 +#: sickbeard/webserve.py:196 msgid "Oops" msgstr "" -#: sickbeard/webserve.py:197 +#: sickbeard/webserve.py:198 msgid "Wrong API key used" msgstr "" -#: gui/slick/views/login.mako:34 sickbeard/webserve.py:302 +#: gui/slick/views/login.mako:34 sickbeard/webserve.py:303 msgid "Login" msgstr "" -#: sickbeard/webserve.py:406 +#: sickbeard/webserve.py:392 msgid "API Key not generated" msgstr "" -#: sickbeard/webserve.py:409 +#: sickbeard/webserve.py:395 msgid "API Builder" msgstr "" #: gui/slick/views/config_general.mako:77 gui/slick/views/layouts/main.mako:141 -#: sickbeard/webserve.py:512 +#: sickbeard/webserve.py:498 msgid "Schedule" msgstr "" -#: sickbeard/webserve.py:610 +#: sickbeard/webserve.py:609 msgid "Test 1" msgstr "" -#: sickbeard/webserve.py:610 +#: sickbeard/webserve.py:609 msgid "This is test number 1" msgstr "" -#: sickbeard/webserve.py:611 +#: sickbeard/webserve.py:610 msgid "Test 2" msgstr "" -#: sickbeard/webserve.py:611 +#: sickbeard/webserve.py:610 msgid "This is test number 2" msgstr "" -#: sickbeard/webserve.py:634 +#: sickbeard/webserve.py:633 msgid "You're using the {branch} branch. Please use 'master' unless specifically asked" msgstr "" -#: sickbeard/webserve.py:698 sickbeard/webserve.py:703 +#: sickbeard/webserve.py:697 sickbeard/webserve.py:702 msgid "Invalid show parameters" msgstr "" -#: sickbeard/webserve.py:710 +#: sickbeard/webserve.py:709 msgid "Invalid parameters" msgstr "" -#: sickbeard/webserve.py:713 sickbeard/webserve.py:1899 +#: sickbeard/webserve.py:712 sickbeard/webserve.py:1898 msgid "Episode couldn't be retrieved" msgstr "" -#: sickbeard/webserve.py:759 sickbeard/webserve.py:1268 sickbeard/webserve.py:1297 +#: sickbeard/webserve.py:758 sickbeard/webserve.py:1267 sickbeard/webserve.py:1296 msgid "Home" msgstr "" -#: gui/slick/views/layouts/main.mako:127 sickbeard/webserve.py:759 +#: gui/slick/views/layouts/main.mako:127 sickbeard/webserve.py:758 msgid "Show List" msgstr "" -#: sickbeard/webserve.py:807 +#: sickbeard/webserve.py:806 msgid "Error: Unsupported Request. Send jsonp request with 'callback' variable in the query string." msgstr "" -#: sickbeard/webserve.py:851 +#: sickbeard/webserve.py:850 msgid "Success. Connected and authenticated" msgstr "" -#: sickbeard/webserve.py:853 +#: sickbeard/webserve.py:852 msgid "Authentication failed. SABnzbd expects" msgstr "" -#: sickbeard/webserve.py:853 +#: sickbeard/webserve.py:852 msgid "as authentication method" msgstr "" -#: sickbeard/webserve.py:855 +#: sickbeard/webserve.py:854 msgid "Unable to connect to host" msgstr "" -#: sickbeard/webserve.py:876 +#: sickbeard/webserve.py:875 msgid "SMS sent successfully" msgstr "" -#: sickbeard/webserve.py:878 +#: sickbeard/webserve.py:877 msgid "Problem sending SMS: {message}" msgstr "" -#: sickbeard/webserve.py:885 +#: sickbeard/webserve.py:884 msgid "Telegram notification succeeded. Check your Telegram clients to make sure it worked" msgstr "" -#: sickbeard/webserve.py:887 +#: sickbeard/webserve.py:886 msgid "Error sending Telegram notification: {message}" msgstr "" -#: sickbeard/webserve.py:894 +#: sickbeard/webserve.py:893 msgid "join notification succeeded. Check your join clients to make sure it worked" msgstr "" -#: sickbeard/webserve.py:896 +#: sickbeard/webserve.py:895 msgid "Error sending join notification: {message}" msgstr "" -#: sickbeard/webserve.py:906 +#: sickbeard/webserve.py:905 msgid " with password" msgstr "" -#: sickbeard/webserve.py:908 +#: sickbeard/webserve.py:907 msgid "Registered and Tested growl successfully {growl_host}" msgstr "" -#: sickbeard/webserve.py:910 +#: sickbeard/webserve.py:909 msgid "Registration and Testing of growl failed {growl_host}" msgstr "" -#: sickbeard/webserve.py:917 +#: sickbeard/webserve.py:916 msgid "Test prowl notice sent successfully" msgstr "" -#: sickbeard/webserve.py:919 +#: sickbeard/webserve.py:918 msgid "Test prowl notice failed" msgstr "" -#: sickbeard/webserve.py:926 +#: sickbeard/webserve.py:925 msgid "Boxcar2 notification succeeded. Check your Boxcar2 clients to make sure it worked" msgstr "" -#: sickbeard/webserve.py:928 +#: sickbeard/webserve.py:927 msgid "Error sending Boxcar2 notification" msgstr "" -#: sickbeard/webserve.py:935 +#: sickbeard/webserve.py:934 msgid "Pushover notification succeeded. Check your Pushover clients to make sure it worked" msgstr "" -#: sickbeard/webserve.py:937 +#: sickbeard/webserve.py:936 msgid "Error sending Pushover notification" msgstr "" -#: sickbeard/webserve.py:949 +#: sickbeard/webserve.py:948 msgid "Key verification successful" msgstr "" -#: sickbeard/webserve.py:951 +#: sickbeard/webserve.py:950 msgid "Unable to verify key" msgstr "" -#: sickbeard/webserve.py:958 +#: sickbeard/webserve.py:957 msgid "Tweet successful, check your twitter to make sure it worked" msgstr "" -#: sickbeard/webserve.py:960 +#: sickbeard/webserve.py:959 msgid "Error sending tweet" msgstr "" -#: sickbeard/webserve.py:965 +#: sickbeard/webserve.py:964 msgid "Please enter a valid account sid" msgstr "" -#: sickbeard/webserve.py:968 +#: sickbeard/webserve.py:967 msgid "Please enter a valid auth token" msgstr "" -#: sickbeard/webserve.py:971 +#: sickbeard/webserve.py:970 msgid "Please enter a valid phone sid" msgstr "" -#: sickbeard/webserve.py:974 +#: sickbeard/webserve.py:973 msgid "Please format the phone number as \"+1-###-###-####\"" msgstr "" -#: sickbeard/webserve.py:978 +#: sickbeard/webserve.py:977 msgid "Authorization successful and number ownership verified" msgstr "" -#: sickbeard/webserve.py:980 +#: sickbeard/webserve.py:979 msgid "Error sending sms" msgstr "" -#: sickbeard/webserve.py:986 +#: sickbeard/webserve.py:985 msgid "Slack message successful" msgstr "" -#: sickbeard/webserve.py:988 +#: sickbeard/webserve.py:987 msgid "Slack message failed" msgstr "" -#: sickbeard/webserve.py:994 +#: sickbeard/webserve.py:993 msgid "Discord message successful" msgstr "" -#: sickbeard/webserve.py:996 +#: sickbeard/webserve.py:995 msgid "Discord message failed" msgstr "" -#: sickbeard/webserve.py:1006 +#: sickbeard/webserve.py:1005 msgid "Test KODI notice sent successfully to {kodi_host}" msgstr "" -#: sickbeard/webserve.py:1008 +#: sickbeard/webserve.py:1007 msgid "Test KODI notice failed to {kodi_host}" msgstr "" -#: sickbeard/webserve.py:1023 +#: sickbeard/webserve.py:1022 msgid "Successful test notice sent to Plex Home Theater ... {plex_clients}" msgstr "" -#: sickbeard/webserve.py:1025 +#: sickbeard/webserve.py:1024 msgid "Test failed for Plex Home Theater ... {plex_clients}" msgstr "" -#: sickbeard/webserve.py:1028 +#: sickbeard/webserve.py:1027 msgid "Tested Plex Home Theater(s)" msgstr "" -#: sickbeard/webserve.py:1042 +#: sickbeard/webserve.py:1041 msgid "Successful test of Plex Media Server(s) ... {plex_servers}" msgstr "" -#: sickbeard/webserve.py:1044 +#: sickbeard/webserve.py:1043 msgid "Test failed, No Plex Media Server host specified" msgstr "" -#: sickbeard/webserve.py:1046 +#: sickbeard/webserve.py:1045 msgid "Test failed for Plex Media Server(s) ... {plex_servers}" msgstr "" -#: sickbeard/webserve.py:1049 +#: sickbeard/webserve.py:1048 msgid "Tested Plex Media Server host(s)" msgstr "" -#: sickbeard/webserve.py:1057 +#: sickbeard/webserve.py:1056 msgid "Tried sending desktop notification via libnotify" msgstr "" -#: sickbeard/webserve.py:1066 +#: sickbeard/webserve.py:1065 msgid "Test notice sent successfully to {emby_host}" msgstr "" -#: sickbeard/webserve.py:1068 +#: sickbeard/webserve.py:1067 msgid "Test notice failed to {emby_host}" msgstr "" -#: sickbeard/webserve.py:1076 +#: sickbeard/webserve.py:1075 msgid "Successfully started the scan update" msgstr "" -#: sickbeard/webserve.py:1078 +#: sickbeard/webserve.py:1077 msgid "Test failed to start the scan update" msgstr "" -#: sickbeard/webserve.py:1097 +#: sickbeard/webserve.py:1096 msgid "Test notice sent successfully to {nmj2_host}" msgstr "" -#: sickbeard/webserve.py:1099 +#: sickbeard/webserve.py:1098 msgid "Test notice failed to {nmj2_host}" msgstr "" -#: sickbeard/webserve.py:1119 +#: sickbeard/webserve.py:1118 msgid "Trakt Authorized" msgstr "" -#: sickbeard/webserve.py:1120 +#: sickbeard/webserve.py:1119 msgid "Trakt Not Authorized!" msgstr "" -#: sickbeard/webserve.py:1184 +#: sickbeard/webserve.py:1183 msgid "Test email sent successfully! Check inbox." msgstr "" -#: sickbeard/webserve.py:1186 +#: sickbeard/webserve.py:1185 msgid "ERROR: {last_error}" msgstr "" -#: sickbeard/webserve.py:1193 +#: sickbeard/webserve.py:1192 msgid "Test NMA notice sent successfully" msgstr "" -#: sickbeard/webserve.py:1195 +#: sickbeard/webserve.py:1194 msgid "Test NMA notice failed" msgstr "" -#: sickbeard/webserve.py:1202 +#: sickbeard/webserve.py:1201 msgid "Pushalot notification succeeded. Check your Pushalot clients to make sure it worked" msgstr "" -#: sickbeard/webserve.py:1204 +#: sickbeard/webserve.py:1203 msgid "Error sending Pushalot notification" msgstr "" -#: sickbeard/webserve.py:1211 +#: sickbeard/webserve.py:1210 msgid "Pushbullet notification succeeded. Check your device to make sure it worked" msgstr "" -#: sickbeard/webserve.py:1213 sickbeard/webserve.py:1223 sickbeard/webserve.py:1232 +#: sickbeard/webserve.py:1212 sickbeard/webserve.py:1222 sickbeard/webserve.py:1231 msgid "Error sending Pushbullet notification" msgstr "" #: gui/slick/views/displayShow.mako:436 gui/slick/views/inc_home_showList.mako:174 -#: gui/slick/views/manage.mako:49 sickbeard/webserve.py:1249 +#: gui/slick/views/manage.mako:49 sickbeard/webserve.py:1248 msgid "Status" msgstr "" -#: sickbeard/webserve.py:1268 sickbeard/webserve.py:1297 +#: sickbeard/webserve.py:1267 sickbeard/webserve.py:1296 msgid "Restarting SickRage" msgstr "" -#: sickbeard/webserve.py:1300 +#: sickbeard/webserve.py:1299 msgid "Update Failed" msgstr "" -#: sickbeard/webserve.py:1301 +#: sickbeard/webserve.py:1300 msgid "Update wasn't successful, not restarting. Check your log for more information." msgstr "" -#: sickbeard/webserve.py:1308 +#: sickbeard/webserve.py:1307 msgid "Checking out branch" msgstr "" -#: sickbeard/webserve.py:1311 +#: sickbeard/webserve.py:1310 msgid "Already on branch" msgstr "" -#: sickbeard/webserve.py:1339 +#: sickbeard/webserve.py:1338 msgid "Invalid show ID: {show}" msgstr "" -#: sickbeard/webserve.py:1342 sickbeard/webserve.py:1871 sickbeard/webserve.py:2002 -#: sickbeard/webserve.py:2040 +#: sickbeard/webserve.py:1341 sickbeard/webserve.py:1870 sickbeard/webserve.py:2001 +#: sickbeard/webserve.py:2039 msgid "Show not in show list" msgstr "" #: gui/slick/views/inc_rootDirs.mako:31 gui/slick/views/manage.mako:38 -#: gui/slick/views/manage_massEdit.mako:74 sickbeard/webserve.py:1358 -#: sickbeard/webserve.py:2027 +#: gui/slick/views/manage_massEdit.mako:74 sickbeard/webserve.py:1357 +#: sickbeard/webserve.py:2026 msgid "Edit" msgstr "" -#: sickbeard/webserve.py:1368 +#: sickbeard/webserve.py:1367 msgid "This show is in the process of being downloaded - the info below is incomplete." msgstr "" -#: sickbeard/webserve.py:1371 +#: sickbeard/webserve.py:1370 msgid "The information on this page is in the process of being updated." msgstr "" -#: sickbeard/webserve.py:1374 +#: sickbeard/webserve.py:1373 msgid "The episodes below are currently being refreshed from disk" msgstr "" -#: sickbeard/webserve.py:1377 +#: sickbeard/webserve.py:1376 msgid "Currently downloading subtitles for this show" msgstr "" -#: sickbeard/webserve.py:1380 +#: sickbeard/webserve.py:1379 msgid "This show is queued to be refreshed." msgstr "" -#: sickbeard/webserve.py:1383 +#: sickbeard/webserve.py:1382 msgid "This show is queued and awaiting an update." msgstr "" -#: sickbeard/webserve.py:1386 +#: sickbeard/webserve.py:1385 msgid "This show is queued and awaiting subtitles download." msgstr "" -#: gui/slick/js/core.js:4081 sickbeard/webserve.py:1391 +#: gui/slick/js/core.js:4081 sickbeard/webserve.py:1390 msgid "Resume" msgstr "" #: gui/slick/js/core.js:4081 gui/slick/views/viewlogs.mako:12 -#: sickbeard/webserve.py:1393 +#: sickbeard/webserve.py:1392 msgid "Pause" msgstr "" #: gui/slick/views/editShow.mako:345 gui/slick/views/inc_blackwhitelist.mako:40 #: gui/slick/views/inc_blackwhitelist.mako:85 gui/slick/views/manage.mako:58 -#: gui/slick/views/manage_failedDownloads.mako:43 sickbeard/webserve.py:1395 +#: gui/slick/views/manage_failedDownloads.mako:43 sickbeard/webserve.py:1394 msgid "Remove" msgstr "" -#: sickbeard/webserve.py:1396 +#: sickbeard/webserve.py:1395 msgid "Re-scan files" msgstr "" -#: sickbeard/webserve.py:1397 +#: sickbeard/webserve.py:1396 msgid "Force Full Update" msgstr "" -#: sickbeard/webserve.py:1398 +#: sickbeard/webserve.py:1397 msgid "Update show in KODI" msgstr "" -#: sickbeard/webserve.py:1399 +#: sickbeard/webserve.py:1398 msgid "Update show in Emby" msgstr "" -#: sickbeard/webserve.py:1402 +#: sickbeard/webserve.py:1401 msgid "Hide specials" msgstr "" -#: sickbeard/webserve.py:1404 +#: sickbeard/webserve.py:1403 msgid "Show specials" msgstr "" -#: sickbeard/webserve.py:1406 sickbeard/webserve.py:2030 sickbeard/webserve.py:2031 +#: sickbeard/webserve.py:1405 sickbeard/webserve.py:2029 sickbeard/webserve.py:2030 msgid "Preview Rename" msgstr "" -#: sickbeard/webserve.py:1409 +#: sickbeard/webserve.py:1408 msgid "Download Subtitles" msgstr "" -#: sickbeard/webserve.py:1498 +#: sickbeard/webserve.py:1497 msgid "No scene exceptions" msgstr "" -#: sickbeard/webserve.py:1516 sickbeard/webserve.py:1764 sickbeard/webserve.py:1785 +#: sickbeard/webserve.py:1515 sickbeard/webserve.py:1763 sickbeard/webserve.py:1784 msgid "Invalid show ID" msgstr "" -#: sickbeard/webserve.py:1525 sickbeard/webserve.py:1769 sickbeard/webserve.py:1790 +#: sickbeard/webserve.py:1524 sickbeard/webserve.py:1768 sickbeard/webserve.py:1789 msgid "Unable to find the specified show" msgstr "" -#: sickbeard/webserve.py:1550 +#: sickbeard/webserve.py:1549 msgid "Unable to retreive Fansub Groups from AniDB." msgstr "" -#: sickbeard/webserve.py:1559 sickbeard/webserve.py:1561 +#: sickbeard/webserve.py:1558 sickbeard/webserve.py:1560 msgid "Edit Show" msgstr "" -#: sickbeard/webserve.py:1637 sickbeard/webserve.py:1671 +#: sickbeard/webserve.py:1636 sickbeard/webserve.py:1670 msgid "Unable to refresh this show: {error}" msgstr "" -#: sickbeard/webserve.py:1663 +#: sickbeard/webserve.py:1662 msgid "New location <tt>{location}</tt> does not exist" msgstr "" -#: sickbeard/webserve.py:1688 +#: sickbeard/webserve.py:1687 msgid "Unable to update show: {error}" msgstr "" -#: sickbeard/webserve.py:1695 +#: sickbeard/webserve.py:1694 msgid "Unable to force an update on scene exceptions of the show." msgstr "" -#: sickbeard/webserve.py:1702 +#: sickbeard/webserve.py:1701 msgid "Unable to force an update on scene numbering of the show." msgstr "" -#: sickbeard/webserve.py:1708 sickbeard/webserve.py:3540 +#: sickbeard/webserve.py:1707 sickbeard/webserve.py:3539 msgid "{num_errors:d} error{plural} while saving changes:" msgstr "" -#: sickbeard/webserve.py:1719 +#: sickbeard/webserve.py:1718 msgid "{show_name} has been {paused_resumed}" msgstr "" -#: sickbeard/webserve.py:1719 +#: sickbeard/webserve.py:1718 msgid "resumed" msgstr "" -#: sickbeard/webserve.py:1719 +#: sickbeard/webserve.py:1718 msgid "paused" msgstr "" -#: sickbeard/webserve.py:1731 +#: sickbeard/webserve.py:1730 msgid "{show_name} has been {deleted_trashed} {was_deleted}" msgstr "" -#: sickbeard/webserve.py:1733 +#: sickbeard/webserve.py:1732 msgid "deleted" msgstr "" -#: sickbeard/webserve.py:1733 +#: sickbeard/webserve.py:1732 msgid "trashed" msgstr "" -#: sickbeard/webserve.py:1734 +#: sickbeard/webserve.py:1733 msgid "(media untouched)" msgstr "" -#: sickbeard/webserve.py:1734 +#: sickbeard/webserve.py:1733 msgid "(with all related media)" msgstr "" -#: sickbeard/webserve.py:1755 +#: sickbeard/webserve.py:1754 msgid "Unable to refresh this show." msgstr "" -#: sickbeard/webserve.py:1775 +#: sickbeard/webserve.py:1774 msgid "Unable to update this show." msgstr "" -#: sickbeard/webserve.py:1814 +#: sickbeard/webserve.py:1813 msgid "Library update command sent to KODI host(s)): {kodi_hosts}" msgstr "" -#: sickbeard/webserve.py:1816 +#: sickbeard/webserve.py:1815 msgid "Unable to contact one or more KODI host(s)): {kodi_hosts}" msgstr "" -#: sickbeard/webserve.py:1825 +#: sickbeard/webserve.py:1824 msgid "Library update command sent to Plex Media Server host: {plex_server}" msgstr "" -#: sickbeard/webserve.py:1828 +#: sickbeard/webserve.py:1827 msgid "Unable to contact Plex Media Server host: {plex_server}" msgstr "" -#: sickbeard/webserve.py:1840 +#: sickbeard/webserve.py:1839 msgid "Library update command sent to Emby host: {emby_host}" msgstr "" -#: sickbeard/webserve.py:1842 +#: sickbeard/webserve.py:1841 msgid "Unable to contact Emby host: {emby_host}" msgstr "" -#: sickbeard/webserve.py:1852 sickbeard/webserve.py:2036 +#: sickbeard/webserve.py:1851 sickbeard/webserve.py:2035 msgid "You must specify a show and at least one episode" msgstr "" -#: sickbeard/webserve.py:1861 +#: sickbeard/webserve.py:1860 msgid "Invalid status" msgstr "" -#: sickbeard/webserve.py:1954 +#: sickbeard/webserve.py:1953 msgid "Backlog was automatically started for the following seasons of <b>{show_name}</b>" msgstr "" #: gui/slick/views/displayShow.mako:74 gui/slick/views/displayShow.mako:79 -#: gui/slick/views/displayShow.mako:404 sickbeard/webserve.py:1961 -#: sickbeard/webserve.py:1980 +#: gui/slick/views/displayShow.mako:404 sickbeard/webserve.py:1960 +#: sickbeard/webserve.py:1979 msgid "Season" msgstr "" -#: sickbeard/webserve.py:1968 +#: sickbeard/webserve.py:1967 msgid "Backlog started" msgstr "" -#: sickbeard/webserve.py:1973 +#: sickbeard/webserve.py:1972 msgid "Retrying Search was automatically started for the following season of <b>{show_name}</b>" msgstr "" -#: sickbeard/webserve.py:1987 +#: sickbeard/webserve.py:1986 msgid "Retry Search started" msgstr "" -#: sickbeard/webserve.py:1997 +#: sickbeard/webserve.py:1996 msgid "You must specify a show" msgstr "" -#: sickbeard/webserve.py:2007 sickbeard/webserve.py:2045 +#: sickbeard/webserve.py:2006 sickbeard/webserve.py:2044 msgid "Can't rename episodes when the show dir is missing." msgstr "" -#: sickbeard/webserve.py:2212 sickbeard/webserve.py:2233 +#: sickbeard/webserve.py:2211 sickbeard/webserve.py:2232 msgid "New subtitles downloaded: {new_subtitle_languages}" msgstr "" -#: sickbeard/webserve.py:2215 sickbeard/webserve.py:2236 +#: sickbeard/webserve.py:2214 sickbeard/webserve.py:2235 msgid "No subtitles downloaded" msgstr "" #: gui/slick/views/config_general.mako:80 gui/slick/views/layouts/main.mako:222 -#: sickbeard/webserve.py:2363 +#: sickbeard/webserve.py:2362 msgid "IRC" msgstr "" -#: sickbeard/webserve.py:2376 +#: sickbeard/webserve.py:2375 msgid "Could not load news from the repo. [Click here for news.md])({news_url})" msgstr "" -#: sickbeard/webserve.py:2383 sickbeard/webserve.py:2401 +#: sickbeard/webserve.py:2382 sickbeard/webserve.py:2400 msgid "The was a problem connecting to github, please refresh and try again" msgstr "" -#: sickbeard/webserve.py:2398 +#: sickbeard/webserve.py:2397 msgid "Could not load changes from the repo. [Click here for CHANGES.md]({changes_url})" msgstr "" -#: gui/slick/views/layouts/main.mako:223 sickbeard/webserve.py:2403 +#: gui/slick/views/layouts/main.mako:223 sickbeard/webserve.py:2402 msgid "Changelog" msgstr "" -#: gui/slick/views/layouts/main.mako:190 sickbeard/webserve.py:2413 -#: sickbeard/webserve.py:3855 sickbeard/webserve.py:4341 +#: gui/slick/views/layouts/main.mako:190 sickbeard/webserve.py:2412 +#: sickbeard/webserve.py:3826 sickbeard/webserve.py:4312 msgid "Post Processing" msgstr "" -#: gui/slick/views/layouts/main.mako:128 sickbeard/webserve.py:2445 +#: gui/slick/views/layouts/main.mako:128 sickbeard/webserve.py:2444 msgid "Add Shows" msgstr "" -#: sickbeard/webserve.py:2510 +#: sickbeard/webserve.py:2509 msgid "No folders selected." msgstr "" -#: sickbeard/webserve.py:2632 +#: sickbeard/webserve.py:2631 msgid "New Show" msgstr "" -#: sickbeard/webserve.py:2647 +#: sickbeard/webserve.py:2646 msgid "Trending Shows" msgstr "" -#: sickbeard/webserve.py:2649 sickbeard/webserve.py:2772 +#: sickbeard/webserve.py:2648 sickbeard/webserve.py:2771 msgid "Popular Shows" msgstr "" -#: sickbeard/webserve.py:2651 sickbeard/webserve.py:2665 +#: sickbeard/webserve.py:2650 sickbeard/webserve.py:2664 msgid "Most Anticipated Shows" msgstr "" -#: sickbeard/webserve.py:2653 +#: sickbeard/webserve.py:2652 msgid "Most Collected Shows" msgstr "" -#: sickbeard/webserve.py:2655 +#: sickbeard/webserve.py:2654 msgid "Most Watched Shows" msgstr "" -#: sickbeard/webserve.py:2657 +#: sickbeard/webserve.py:2656 msgid "Most Played Shows" msgstr "" -#: sickbeard/webserve.py:2659 +#: sickbeard/webserve.py:2658 msgid "Recommended Shows" msgstr "" -#: gui/slick/views/addShows_trendingShows.mako:60 sickbeard/webserve.py:2661 +#: gui/slick/views/addShows_trendingShows.mako:60 sickbeard/webserve.py:2660 msgid "New Shows" msgstr "Нові Серіали" -#: gui/slick/views/addShows_trendingShows.mako:61 sickbeard/webserve.py:2663 +#: gui/slick/views/addShows_trendingShows.mako:61 sickbeard/webserve.py:2662 msgid "Season Premieres" msgstr "Прем'єри сезону" -#: sickbeard/webserve.py:2792 sickbeard/webserve.py:2793 +#: sickbeard/webserve.py:2791 sickbeard/webserve.py:2792 msgid "Existing Show" msgstr "" -#: sickbeard/webserve.py:2871 +#: sickbeard/webserve.py:2870 msgid "No root directories setup, please go back and add one." msgstr "" -#: sickbeard/webserve.py:2883 sickbeard/webserve.py:3002 +#: sickbeard/webserve.py:2882 sickbeard/webserve.py:3001 msgid "Show added" msgstr "" -#: sickbeard/webserve.py:2883 +#: sickbeard/webserve.py:2882 msgid "Adding the specified show {show_name}" msgstr "" -#: sickbeard/webserve.py:2924 +#: sickbeard/webserve.py:2923 msgid "Missing params, no Indexer ID or folder: {show_to_add} and {root_dir}/{show_path}" msgstr "" -#: sickbeard/webserve.py:2933 +#: sickbeard/webserve.py:2932 msgid "Unknown error. Unable to add show due to problem with show selection." msgstr "" -#: sickbeard/webserve.py:2957 sickbeard/webserve.py:2967 +#: sickbeard/webserve.py:2956 sickbeard/webserve.py:2966 msgid "Unable to add show" msgstr "" -#: sickbeard/webserve.py:2957 +#: sickbeard/webserve.py:2956 msgid "Folder {show_dir} exists already" msgstr "" -#: sickbeard/webserve.py:2968 +#: sickbeard/webserve.py:2967 msgid "Unable to create the folder {show_dir}, can't add the show" msgstr "" -#: sickbeard/webserve.py:3002 +#: sickbeard/webserve.py:3001 msgid "Adding the specified show into {show_dir}" msgstr "" -#: sickbeard/webserve.py:3078 +#: sickbeard/webserve.py:3077 msgid "Shows Added" msgstr "" -#: sickbeard/webserve.py:3079 +#: sickbeard/webserve.py:3078 msgid "Automatically added {num_shows} from their existing metadata files" msgstr "" -#: gui/slick/views/layouts/main.mako:153 sickbeard/webserve.py:3096 +#: gui/slick/views/layouts/main.mako:153 sickbeard/webserve.py:3095 msgid "Mass Update" msgstr "" -#: sickbeard/webserve.py:3134 sickbeard/webserve.py:3161 sickbeard/webserve.py:3237 -#: sickbeard/webserve.py:3238 +#: sickbeard/webserve.py:3133 sickbeard/webserve.py:3160 sickbeard/webserve.py:3236 +#: sickbeard/webserve.py:3237 msgid "Episode Overview" msgstr "" -#: sickbeard/webserve.py:3270 +#: sickbeard/webserve.py:3269 msgid "Missing Subtitles" msgstr "" -#: gui/slick/views/layouts/main.mako:154 sickbeard/webserve.py:3356 -#: sickbeard/webserve.py:3357 +#: gui/slick/views/layouts/main.mako:154 sickbeard/webserve.py:3355 +#: sickbeard/webserve.py:3356 msgid "Backlog Overview" msgstr "" -#: sickbeard/webserve.py:3481 +#: sickbeard/webserve.py:3480 msgid "Mass Edit" msgstr "" -#: sickbeard/webserve.py:3586 +#: sickbeard/webserve.py:3585 msgid "Unable to update show: {excption_format}" msgstr "" -#: sickbeard/webserve.py:3594 +#: sickbeard/webserve.py:3593 msgid "Unable to refresh show {show_name}: {excption_format}" msgstr "" -#: sickbeard/webserve.py:3605 +#: sickbeard/webserve.py:3604 msgid "Errors encountered" msgstr "" -#: gui/slick/views/config_general.mako:261 sickbeard/webserve.py:3611 +#: gui/slick/views/config_general.mako:261 sickbeard/webserve.py:3610 msgid "Updates" msgstr "" -#: sickbeard/webserve.py:3616 +#: sickbeard/webserve.py:3615 msgid "Refreshes" msgstr "" -#: sickbeard/webserve.py:3621 +#: sickbeard/webserve.py:3620 msgid "Renames" msgstr "" #: gui/slick/views/displayShow.mako:260 gui/slick/views/displayShow.mako:435 #: gui/slick/views/editShow.mako:119 gui/slick/views/inc_addShowOptions.mako:20 -#: gui/slick/views/manage_massEdit.mako:262 sickbeard/webserve.py:3626 -#: sickbeard/webserve.py:5244 +#: gui/slick/views/manage_massEdit.mako:262 sickbeard/webserve.py:3625 +#: sickbeard/webserve.py:5215 msgid "Subtitles" msgstr "" -#: sickbeard/webserve.py:3631 +#: sickbeard/webserve.py:3630 msgid "The following actions were queued" msgstr "" -#: sickbeard/webserve.py:3651 -msgid "For best results please set the Download Station alias as" -msgstr "" - -#: sickbeard/webserve.py:3652 -msgid "You can check this setting in the Synology DSM" -msgstr "" - -#: sickbeard/webserve.py:3652 sickbeard/webserve.py:3654 -msgid "Control Panel" -msgstr "" - -#: sickbeard/webserve.py:3652 -msgid "Application Portal" -msgstr "" - -#: sickbeard/webserve.py:3653 -msgid "Make sure you allow DSM to be embedded with iFrames too in" -msgstr "" - -#: sickbeard/webserve.py:3654 -msgid "DSM Settings" -msgstr "" - -#: sickbeard/webserve.py:3654 -msgid "Security" -msgstr "" - -#: gui/slick/views/layouts/main.mako:167 sickbeard/webserve.py:3662 -msgid "Manage Torrents" -msgstr "" - -#: gui/slick/views/layouts/main.mako:170 sickbeard/webserve.py:3683 +#: gui/slick/views/layouts/main.mako:170 sickbeard/webserve.py:3654 msgid "Failed Downloads" msgstr "" -#: gui/slick/views/layouts/main.mako:155 sickbeard/webserve.py:3701 +#: gui/slick/views/layouts/main.mako:155 sickbeard/webserve.py:3672 msgid "Manage Searches" msgstr "" -#: sickbeard/webserve.py:3709 +#: sickbeard/webserve.py:3680 msgid "Backlog search started" msgstr "" -#: sickbeard/webserve.py:3719 +#: sickbeard/webserve.py:3690 msgid "Daily search started" msgstr "" -#: sickbeard/webserve.py:3728 +#: sickbeard/webserve.py:3699 msgid "Find propers search started" msgstr "" -#: sickbeard/webserve.py:3737 +#: sickbeard/webserve.py:3708 msgid "Subtitle search started" msgstr "" -#: sickbeard/webserve.py:3801 +#: sickbeard/webserve.py:3772 msgid "Remove Selected" msgstr "" -#: sickbeard/webserve.py:3802 +#: sickbeard/webserve.py:3773 msgid "Clear History" msgstr "" -#: sickbeard/webserve.py:3803 +#: sickbeard/webserve.py:3774 msgid "Trim History" msgstr "" -#: sickbeard/webserve.py:3823 +#: sickbeard/webserve.py:3794 msgid "Selected history entries removed" msgstr "" -#: sickbeard/webserve.py:3830 +#: sickbeard/webserve.py:3801 msgid "History cleared" msgstr "" -#: sickbeard/webserve.py:3837 +#: sickbeard/webserve.py:3808 msgid "Removed history entries older than 30 days" msgstr "" -#: gui/slick/views/layouts/main.mako:185 sickbeard/webserve.py:3850 +#: gui/slick/views/layouts/main.mako:185 sickbeard/webserve.py:3821 msgid "General" msgstr "" -#: sickbeard/webserve.py:3851 sickbeard/webserve.py:4143 +#: sickbeard/webserve.py:3822 sickbeard/webserve.py:4114 msgid "Backup/Restore" msgstr "" -#: gui/slick/views/layouts/main.mako:187 sickbeard/webserve.py:3852 -#: sickbeard/webserve.py:4206 +#: gui/slick/views/layouts/main.mako:187 sickbeard/webserve.py:3823 +#: sickbeard/webserve.py:4177 msgid "Search Settings" msgstr "" -#: gui/slick/views/layouts/main.mako:188 sickbeard/webserve.py:3853 -#: sickbeard/webserve.py:4518 +#: gui/slick/views/layouts/main.mako:188 sickbeard/webserve.py:3824 +#: sickbeard/webserve.py:4489 msgid "Search Providers" msgstr "" -#: gui/slick/views/layouts/main.mako:189 sickbeard/webserve.py:3854 +#: gui/slick/views/layouts/main.mako:189 sickbeard/webserve.py:3825 msgid "Subtitles Settings" msgstr "" -#: gui/slick/views/layouts/main.mako:191 sickbeard/webserve.py:3856 -#: sickbeard/webserve.py:4964 +#: gui/slick/views/layouts/main.mako:191 sickbeard/webserve.py:3827 +#: sickbeard/webserve.py:4935 msgid "Notifications" msgstr "" @@ -1240,142 +1237,142 @@ msgstr "" #: gui/slick/views/home.mako:35 gui/slick/views/inc_addShowOptions.mako:79 #: gui/slick/views/inc_home_showList.mako:179 gui/slick/views/layouts/main.mako:192 #: gui/slick/views/manage.mako:44 gui/slick/views/manage_massEdit.mako:202 -#: sickbeard/webserve.py:3857 sickbeard/webserve.py:5309 +#: sickbeard/webserve.py:3828 sickbeard/webserve.py:5280 msgid "Anime" msgstr "" -#: sickbeard/webserve.py:3895 sickbeard/webserve.py:3896 +#: sickbeard/webserve.py:3866 sickbeard/webserve.py:3867 msgid "SickRage Configuration" msgstr "" -#: sickbeard/webserve.py:3910 +#: sickbeard/webserve.py:3881 msgid "Config - Shares" msgstr "" -#: sickbeard/webserve.py:3910 +#: sickbeard/webserve.py:3881 msgid "Windows Shares Configuration" msgstr "" -#: sickbeard/webserve.py:3937 +#: sickbeard/webserve.py:3908 msgid "Saved Shares" msgstr "" -#: sickbeard/webserve.py:3937 +#: sickbeard/webserve.py:3908 msgid "Your Windows share settings have been saved" msgstr "" -#: sickbeard/webserve.py:3948 +#: sickbeard/webserve.py:3919 msgid "Config - General" msgstr "" -#: sickbeard/webserve.py:3948 +#: sickbeard/webserve.py:3919 msgid "General Configuration" msgstr "" -#: sickbeard/webserve.py:3988 +#: sickbeard/webserve.py:3959 msgid "Saved Defaults" msgstr "" -#: sickbeard/webserve.py:3988 +#: sickbeard/webserve.py:3959 msgid "Your \"add show\" defaults have been set to your current selections." msgstr "" -#: sickbeard/webserve.py:4095 +#: sickbeard/webserve.py:4066 msgid "Unable to create directory {directory}, log directory not changed." msgstr "" -#: sickbeard/webserve.py:4103 +#: sickbeard/webserve.py:4074 msgid "Unable to create directory {directory}, https cert directory not changed." msgstr "" -#: sickbeard/webserve.py:4107 +#: sickbeard/webserve.py:4078 msgid "Unable to create directory {directory}, https key directory not changed." msgstr "" -#: sickbeard/webserve.py:4126 sickbeard/webserve.py:4324 sickbeard/webserve.py:4456 -#: sickbeard/webserve.py:5227 +#: sickbeard/webserve.py:4097 sickbeard/webserve.py:4295 sickbeard/webserve.py:4427 +#: sickbeard/webserve.py:5198 msgid "Error(s) Saving Configuration" msgstr "" -#: sickbeard/webserve.py:4129 sickbeard/webserve.py:4327 sickbeard/webserve.py:4458 -#: sickbeard/webserve.py:4950 sickbeard/webserve.py:5230 sickbeard/webserve.py:5294 -#: sickbeard/webserve.py:5323 +#: sickbeard/webserve.py:4100 sickbeard/webserve.py:4298 sickbeard/webserve.py:4429 +#: sickbeard/webserve.py:4921 sickbeard/webserve.py:5201 sickbeard/webserve.py:5265 +#: sickbeard/webserve.py:5294 msgid "Configuration Saved" msgstr "" -#: sickbeard/webserve.py:4142 +#: sickbeard/webserve.py:4113 msgid "Config - Backup/Restore" msgstr "" -#: sickbeard/webserve.py:4205 +#: sickbeard/webserve.py:4176 msgid "Config - Episode Search" msgstr "" -#: sickbeard/webserve.py:4340 +#: sickbeard/webserve.py:4311 msgid "Config - Post Processing" msgstr "" -#: sickbeard/webserve.py:4380 +#: sickbeard/webserve.py:4351 msgid "Unpacking Not Supported, disabling unpack setting" msgstr "" -#: sickbeard/webserve.py:4431 +#: sickbeard/webserve.py:4402 msgid "You tried saving an invalid normal naming config, not saving your naming settings" msgstr "" -#: sickbeard/webserve.py:4439 +#: sickbeard/webserve.py:4410 msgid "You tried saving an invalid anime naming config, not saving your naming settings" msgstr "" -#: sickbeard/webserve.py:4517 +#: sickbeard/webserve.py:4488 msgid "Config - Providers" msgstr "" -#: sickbeard/webserve.py:4547 +#: sickbeard/webserve.py:4518 msgid "No Provider Name specified" msgstr "" -#: sickbeard/webserve.py:4549 +#: sickbeard/webserve.py:4520 msgid "No Provider Url specified" msgstr "" -#: sickbeard/webserve.py:4551 +#: sickbeard/webserve.py:4522 msgid "No Provider Api key specified" msgstr "" -#: sickbeard/webserve.py:4963 +#: sickbeard/webserve.py:4934 msgid "Config - Notifications" msgstr "" -#: sickbeard/webserve.py:5243 +#: sickbeard/webserve.py:5214 msgid "Config - Subtitles" msgstr "" -#: sickbeard/webserve.py:5308 +#: sickbeard/webserve.py:5279 msgid "Config - Anime" msgstr "" -#: sickbeard/webserve.py:5336 +#: sickbeard/webserve.py:5307 msgid "Clear Errors" msgstr "" -#: sickbeard/webserve.py:5342 +#: sickbeard/webserve.py:5313 msgid "Clear Warnings" msgstr "" -#: sickbeard/webserve.py:5348 +#: sickbeard/webserve.py:5319 msgid "Submit Errors" msgstr "" -#: sickbeard/webserve.py:5363 +#: sickbeard/webserve.py:5334 msgid "Logs & Errors" msgstr "" -#: sickbeard/webserve.py:5388 +#: sickbeard/webserve.py:5359 msgid "Log File" msgstr "" -#: sickbeard/webserve.py:5388 +#: sickbeard/webserve.py:5359 msgid "Logs" msgstr "" @@ -1383,30 +1380,166 @@ msgstr "" msgid "This is a test notification from SickRage" msgstr "" -#: gui/slick/js/core.js:481 gui/slick/js/core.js:502 gui/slick/js/core.js:524 -#: gui/slick/js/core.js:548 gui/slick/js/core.js:573 gui/slick/js/core.js:596 -#: gui/slick/js/core.js:625 gui/slick/js/core.js:645 gui/slick/js/core.js:690 -#: gui/slick/js/core.js:769 gui/slick/js/core.js:829 gui/slick/js/core.js:849 -#: gui/slick/js/core.js:879 gui/slick/js/core.js:909 gui/slick/js/core.js:969 -#: gui/slick/js/core.js:1046 gui/slick/js/core.js:1066 gui/slick/js/core.js:1085 +#: gui/slick/js/browser.js:6 +msgid "Choose Directory" +msgstr "" + +#: gui/slick/js/core.js:443 +msgid "Select log file folder location" +msgstr "" + +#: gui/slick/js/core.js:445 +msgid "Select CSS file" +msgstr "" + +#: gui/slick/js/core.js:469 +msgid "Select backup folder to save to" +msgstr "" + +#: gui/slick/js/core.js:470 +msgid "Select backup files to restore" +msgstr "" + +#: gui/slick/js/core.js:479 gui/slick/js/core.js:500 gui/slick/js/core.js:522 +#: gui/slick/js/core.js:546 gui/slick/js/core.js:571 gui/slick/js/core.js:594 +#: gui/slick/js/core.js:623 gui/slick/js/core.js:643 gui/slick/js/core.js:688 +#: gui/slick/js/core.js:767 gui/slick/js/core.js:827 gui/slick/js/core.js:847 +#: gui/slick/js/core.js:877 gui/slick/js/core.js:907 gui/slick/js/core.js:967 +#: gui/slick/js/core.js:1044 gui/slick/js/core.js:1064 gui/slick/js/core.js:1083 msgid "Please fill out the necessary fields above." msgstr "" -#: gui/slick/js/core.js:1328 gui/slick/js/core.js:1378 gui/slick/js/core.js:1427 -#: gui/slick/js/core.js:1493 +#: gui/slick/js/core.js:680 +msgid "<b>Step 1:</b> Confirm Authorization" +msgstr "" + +#: gui/slick/js/core.js:977 +msgid "Check blacklist name; the value needs to be a trakt slug" +msgstr "" + +#: gui/slick/js/core.js:1022 +msgid "You must provide a recipient email address!" +msgstr "" + +#: gui/slick/js/core.js:1107 +msgid "You didn't supply a Pushbullet api key" +msgstr "" + +#: gui/slick/js/core.js:1133 gui/slick/js/core.js:1162 +msgid "Don't forget to save your new pushbullet settings." +msgstr "" + +#: gui/slick/js/core.js:1262 +msgid "Select TV Download Directory" +msgstr "" + +#: gui/slick/js/core.js:1263 +msgid "Select Unpack Directory" +msgstr "" + +#: gui/slick/js/core.js:1326 gui/slick/js/core.js:1376 gui/slick/js/core.js:1425 +#: gui/slick/js/core.js:1491 msgid "This pattern is invalid." msgstr "" -#: gui/slick/js/core.js:1336 gui/slick/js/core.js:1386 gui/slick/js/core.js:1435 -#: gui/slick/js/core.js:1501 +#: gui/slick/js/core.js:1334 gui/slick/js/core.js:1384 gui/slick/js/core.js:1433 +#: gui/slick/js/core.js:1499 msgid "This pattern would be invalid without the folders, using it will force \"Season Folders\" on for all shows." msgstr "" -#: gui/slick/js/core.js:1344 gui/slick/js/core.js:1394 gui/slick/js/core.js:1443 -#: gui/slick/js/core.js:1509 +#: gui/slick/js/core.js:1342 gui/slick/js/core.js:1392 gui/slick/js/core.js:1441 +#: gui/slick/js/core.js:1507 msgid "This pattern is valid." msgstr "" +#: gui/slick/js/core.js:1818 +msgid "Select .nzb black hole/watch location" +msgstr "" + +#: gui/slick/js/core.js:1819 +msgid "Select .torrent black hole/watch location" +msgstr "" + +#: gui/slick/js/core.js:1820 +msgid "Select .torrent download location" +msgstr "" + +#: gui/slick/js/core.js:1900 +msgid "Minimum seeding time is" +msgstr "" + +#: gui/slick/js/core.js:1902 +msgid "URL to your uTorrent client (e.g. http://localhost:8000)" +msgstr "" + +#: gui/slick/js/core.js:1905 +msgid "Stop seeding when inactive for" +msgstr "" + +#: gui/slick/js/core.js:1911 +msgid "URL to your Transmission client (e.g. http://localhost:9091)" +msgstr "" + +#: gui/slick/js/core.js:1921 +msgid "URL to your Deluge client (e.g. http://localhost:8112)" +msgstr "" + +#: gui/slick/js/core.js:1930 +msgid "IP or Hostname of your Deluge Daemon (e.g. scgi://localhost:58846)" +msgstr "" + +#: gui/slick/js/core.js:1937 +msgid "URL to your Synology DS client (e.g. http://localhost:5000)" +msgstr "" + +#: gui/slick/js/core.js:1941 +msgid "URL to your rTorrent client (e.g. scgi://localhost:5000 <br> or https://localhost/rutorrent/plugins/httprpc/action.php)" +msgstr "" + +#: gui/slick/js/core.js:1952 +msgid "URL to your qBittorrent client (e.g. http://localhost:8080)" +msgstr "" + +#: gui/slick/js/core.js:1962 +msgid "URL to your MLDonkey (e.g. http://localhost:4080)" +msgstr "" + +#: gui/slick/js/core.js:1974 +msgid "URL to your putio client (e.g. http://localhost:8080)" +msgstr "" + +#: gui/slick/js/core.js:1975 +msgid "<a herf=\"https://app.put.io/oauth/apps/new\" target=\"_blank\"> Create a new OAuth app for put.io</a>" +msgstr "" + +#: gui/slick/js/core.js:1977 +msgid "Put.io Parent Folder" +msgstr "" + +#: gui/slick/js/core.js:1978 +msgid "Put.io OAuth Token" +msgstr "" + +#: gui/slick/js/core.js:3383 gui/slick/views/displayShow.mako:410 +msgid "Show Episodes" +msgstr "" + +#: gui/slick/js/core.js:3388 gui/slick/views/displayShow.mako:408 +msgid "Hide Episodes" +msgstr "" + +#: gui/slick/js/core.js:3396 +msgid "Select Show Location" +msgstr "" + +#: gui/slick/js/core.js:3460 +msgid "Select Unprocessed Episode Folder" +msgstr "" + +#: gui/slick/js/core.js:3790 +msgid "DELETED" +msgstr "" + #: gui/slick/js/core.js:4082 msgid "Resume updating the log on this page." msgstr "" @@ -1415,6 +1548,26 @@ msgstr "" msgid "Pause updating the log on this page." msgstr "" +#: gui/slick/js/core.js:4323 +msgid "searching {searchingFor}..." +msgstr "" + +#: gui/slick/js/core.js:4334 +msgid "search timed out, try again or try another indexer" +msgstr "" + +#: gui/slick/js/core.js:4503 +msgid "loading folders..." +msgstr "" + +#: gui/slick/js/parsers.js:7 gui/slick/js/parsers.js:8 +#: gui/slick/js/plotTooltip.js:6 gui/slick/js/sceneExceptionsTooltip.js:6 +#: gui/slick/views/inc_home_showList.mako:209 +#: gui/slick/views/inc_home_showList.mako:215 +#: gui/slick/views/inc_home_showList.mako:231 +msgid "Loading..." +msgstr "" + #: gui/slick/views/404.mako:5 msgid "You have reached this page by accident, please check the url." msgstr "Ви попали на цю сторінку випадково, будь ласка, перевірте ссилку." @@ -5711,14 +5864,6 @@ msgstr "" msgid "Select Columns" msgstr "" -#: gui/slick/views/displayShow.mako:408 -msgid "Hide Episodes" -msgstr "" - -#: gui/slick/views/displayShow.mako:410 -msgid "Show Episodes" -msgstr "" - #: gui/slick/views/displayShow.mako:424 msgid "NFO" msgstr "" @@ -6232,12 +6377,6 @@ msgstr "" msgid "loading" msgstr "" -#: gui/slick/views/inc_home_showList.mako:209 -#: gui/slick/views/inc_home_showList.mako:215 -#: gui/slick/views/inc_home_showList.mako:231 -msgid "Loading..." -msgstr "" - #: gui/slick/views/inc_qualityChooser.mako:31 msgid "<p><b><u>Preferred</u></b> qualities will replace those in <b><u>allowed</u></b>, even if they are lower.</p>" msgstr "" @@ -6775,6 +6914,10 @@ msgstr "" msgid "Update Emby" msgstr "" +#: gui/slick/views/layouts/main.mako:167 +msgid "Manage Torrents" +msgstr "" + #: gui/slick/views/layouts/main.mako:173 msgid "Missed Subtitle Management" msgstr "" diff --git a/locale/vi_VN/LC_MESSAGES/messages.json b/locale/vi_VN/LC_MESSAGES/messages.json index e996f9573df8ecf068cba90296c06c59b38d4866..0dc7d09faa73bb3ddf78f49d01db7b22f6206829 100644 --- a/locale/vi_VN/LC_MESSAGES/messages.json +++ b/locale/vi_VN/LC_MESSAGES/messages.json @@ -1 +1 @@ -{"messages":{"domain":"messages","locale_data":{"messages":{"100":[null,""],"250":[null,""],"500":[null,""],"":{"domain":"messages","plural_forms":"nplurals=1; plural=0","lang":"vi_VN"},"Drama":[null,""],"Mystery":[null,""],"Science-Fiction":[null,""],"Crime":[null,""],"Action":[null,""],"Comedy":[null,""],"Thriller":[null,""],"Animation":[null,""],"Family":[null,""],"Fantasy":[null,""],"Adventure":[null,""],"Horror":[null,""],"Film-Noir":[null,""],"Sci-Fi":[null,""],"Romance":[null,""],"Sport":[null,""],"War":[null,""],"Biography":[null,""],"History":[null,""],"Music":[null,""],"Western":[null,""],"News":[null,""],"Sitcom":[null,""],"Reality-TV":[null,""],"Documentary":[null,""],"Game-Show":[null,""],"Musical":[null,""],"Talk-Show":[null,""],"Started Download":[null,""],"Download Finished":[null,""],"Subtitle Download Finished":[null,""],"SickRage Updated":[null,""],"SickRage Updated To Commit#: ":[null,""],"SickRage new login":[null,""],"New login from IP: {0}. http://geomaplookup.net/?ip={0}":[null,""],"Repeat":[null,""],"Repeat (Separated)":[null,""],"Extend":[null,""],"Extend (Limited)":[null,""],"Extend (Limited, E-prefixed)":[null,""],"Downloaded":[null,""],"Snatched":[null,""],"Snatched (Proper)":[null,""],"Failed":[null,""],"Snatched (Best)":[null,""],"Archived":[null,""],"Unknown":[null,""],"Unaired":[null,""],"Skipped":[null,""],"Wanted":[null,""],"Ignored":[null,""],"Subtitled":[null,""],"<No Filter>":[null,""],"Daily Searcher":[null,""],"Backlog":[null,""],"Show Updater":[null,""],"Check Version":[null,""],"Show Queue":[null,""],"Search Queue (All)":[null,""],"Search Queue (Daily Searcher)":[null,""],"Search Queue (Backlog)":[null,""],"Search Queue (Manual)":[null,""],"Search Queue (Retry/Failed)":[null,""],"Search Queue (RSS)":[null,""],"Find Propers":[null,""],"Postprocessor":[null,""],"Find Subtitles":[null,""],"Trakt Checker":[null,""],"Event":[null,""],"Error":[null,""],"Tornado":[null,""],"Thread":[null,""],"Main":[null,""],"Loading":[null,""],"New update found for SickRage, starting auto-updater":[null,""],"Update was successful":[null,""],"Update failed!":[null,""],"Backup":[null,""],"Config backup in progress...":[null,""],"Config backup successful, updating...":[null,""],"Config backup failed, aborting update":[null,""],"No update needed":[null,""],"Mako Error":[null,""],"Oops":[null,""],"Wrong API key used":[null,""],"Login":[null,""],"API Key not generated":[null,""],"API Builder":[null,""],"Schedule":[null,""],"Test 1":[null,""],"This is test number 1":[null,""],"Test 2":[null,""],"This is test number 2":[null,""],"You're using the {branch} branch. Please use 'master' unless specifically asked":[null,""],"Invalid show parameters":[null,""],"Invalid parameters":[null,""],"Episode couldn't be retrieved":[null,""],"Home":[null,""],"Show List":[null,""],"Error: Unsupported Request. Send jsonp request with 'callback' variable in the query string.":[null,""],"Success. Connected and authenticated":[null,""],"Authentication failed. SABnzbd expects":[null,""],"as authentication method":[null,""],"Unable to connect to host":[null,""],"SMS sent successfully":[null,""],"Problem sending SMS: {message}":[null,""],"Telegram notification succeeded. Check your Telegram clients to make sure it worked":[null,""],"Error sending Telegram notification: {message}":[null,""],"join notification succeeded. Check your join clients to make sure it worked":[null,""],"Error sending join notification: {message}":[null,""]," with password":[null,""],"Registered and Tested growl successfully {growl_host}":[null,""],"Registration and Testing of growl failed {growl_host}":[null,""],"Test prowl notice sent successfully":[null,""],"Test prowl notice failed":[null,""],"Boxcar2 notification succeeded. Check your Boxcar2 clients to make sure it worked":[null,""],"Error sending Boxcar2 notification":[null,""],"Pushover notification succeeded. Check your Pushover clients to make sure it worked":[null,""],"Error sending Pushover notification":[null,""],"Key verification successful":[null,""],"Unable to verify key":[null,""],"Tweet successful, check your twitter to make sure it worked":[null,""],"Error sending tweet":[null,""],"Please enter a valid account sid":[null,""],"Please enter a valid auth token":[null,""],"Please enter a valid phone sid":[null,""],"Please format the phone number as \"+1-###-###-####\"":[null,""],"Authorization successful and number ownership verified":[null,""],"Error sending sms":[null,""],"Slack message successful":[null,""],"Slack message failed":[null,""],"Discord message successful":[null,""],"Discord message failed":[null,""],"Test KODI notice sent successfully to {kodi_host}":[null,""],"Test KODI notice failed to {kodi_host}":[null,""],"Successful test notice sent to Plex Home Theater ... {plex_clients}":[null,""],"Test failed for Plex Home Theater ... {plex_clients}":[null,""],"Tested Plex Home Theater(s)":[null,""],"Successful test of Plex Media Server(s) ... {plex_servers}":[null,""],"Test failed, No Plex Media Server host specified":[null,""],"Test failed for Plex Media Server(s) ... {plex_servers}":[null,""],"Tested Plex Media Server host(s)":[null,""],"Tried sending desktop notification via libnotify":[null,""],"Test notice sent successfully to {emby_host}":[null,""],"Test notice failed to {emby_host}":[null,""],"Successfully started the scan update":[null,""],"Test failed to start the scan update":[null,""],"Test notice sent successfully to {nmj2_host}":[null,""],"Test notice failed to {nmj2_host}":[null,""],"Trakt Authorized":[null,""],"Trakt Not Authorized!":[null,""],"Test email sent successfully! Check inbox.":[null,""],"ERROR: {last_error}":[null,""],"Test NMA notice sent successfully":[null,""],"Test NMA notice failed":[null,""],"Pushalot notification succeeded. Check your Pushalot clients to make sure it worked":[null,""],"Error sending Pushalot notification":[null,""],"Pushbullet notification succeeded. Check your device to make sure it worked":[null,""],"Error sending Pushbullet notification":[null,""],"Status":[null,""],"Restarting SickRage":[null,""],"Update Failed":[null,""],"Update wasn't successful, not restarting. Check your log for more information.":[null,""],"Checking out branch":[null,""],"Already on branch":[null,""],"Invalid show ID: {show}":[null,""],"Show not in show list":[null,""],"Edit":[null,""],"This show is in the process of being downloaded - the info below is incomplete.":[null,""],"The information on this page is in the process of being updated.":[null,""],"The episodes below are currently being refreshed from disk":[null,""],"Currently downloading subtitles for this show":[null,""],"This show is queued to be refreshed.":[null,""],"This show is queued and awaiting an update.":[null,""],"This show is queued and awaiting subtitles download.":[null,""],"Resume":[null,""],"Pause":[null,""],"Remove":[null,""],"Re-scan files":[null,""],"Force Full Update":[null,""],"Update show in KODI":[null,""],"Update show in Emby":[null,""],"Hide specials":[null,""],"Show specials":[null,""],"Preview Rename":[null,""],"Download Subtitles":[null,""],"No scene exceptions":[null,""],"Invalid show ID":[null,""],"Unable to find the specified show":[null,""],"Unable to retreive Fansub Groups from AniDB.":[null,""],"Edit Show":[null,""],"Unable to refresh this show: {error}":[null,""],"New location <tt>{location}</tt> does not exist":[null,""],"Unable to update show: {error}":[null,""],"Unable to force an update on scene exceptions of the show.":[null,""],"Unable to force an update on scene numbering of the show.":[null,""],"{num_errors:d} error{plural} while saving changes:":[null,""],"{show_name} has been {paused_resumed}":[null,""],"resumed":[null,""],"paused":[null,""],"{show_name} has been {deleted_trashed} {was_deleted}":[null,""],"deleted":[null,""],"trashed":[null,""],"(media untouched)":[null,""],"(with all related media)":[null,""],"Unable to refresh this show.":[null,""],"Unable to update this show.":[null,""],"Library update command sent to KODI host(s)): {kodi_hosts}":[null,""],"Unable to contact one or more KODI host(s)): {kodi_hosts}":[null,""],"Library update command sent to Plex Media Server host: {plex_server}":[null,""],"Unable to contact Plex Media Server host: {plex_server}":[null,""],"Library update command sent to Emby host: {emby_host}":[null,""],"Unable to contact Emby host: {emby_host}":[null,""],"You must specify a show and at least one episode":[null,""],"Invalid status":[null,""],"Backlog was automatically started for the following seasons of <b>{show_name}</b>":[null,""],"Season":[null,""],"Backlog started":[null,""],"Retrying Search was automatically started for the following season of <b>{show_name}</b>":[null,""],"Retry Search started":[null,""],"You must specify a show":[null,""],"Can't rename episodes when the show dir is missing.":[null,""],"New subtitles downloaded: {new_subtitle_languages}":[null,""],"No subtitles downloaded":[null,""],"IRC":[null,""],"Could not load news from the repo. [Click here for news.md])({news_url})":[null,""],"The was a problem connecting to github, please refresh and try again":[null,""],"Could not load changes from the repo. [Click here for CHANGES.md]({changes_url})":[null,""],"Changelog":[null,""],"Post Processing":[null,""],"Add Shows":[null,""],"No folders selected.":[null,""],"New Show":[null,""],"Trending Shows":[null,""],"Popular Shows":[null,""],"Most Anticipated Shows":[null,""],"Most Collected Shows":[null,""],"Most Watched Shows":[null,""],"Most Played Shows":[null,""],"Recommended Shows":[null,""],"New Shows":[null,""],"Season Premieres":[null,""],"Existing Show":[null,""],"No root directories setup, please go back and add one.":[null,""],"Show added":[null,""],"Adding the specified show {show_name}":[null,""],"Missing params, no Indexer ID or folder: {show_to_add} and {root_dir}/{show_path}":[null,""],"Unknown error. Unable to add show due to problem with show selection.":[null,""],"Unable to add show":[null,""],"Folder {show_dir} exists already":[null,""],"Unable to create the folder {show_dir}, can't add the show":[null,""],"Adding the specified show into {show_dir}":[null,""],"Shows Added":[null,""],"Automatically added {num_shows} from their existing metadata files":[null,""],"Mass Update":[null,""],"Episode Overview":[null,""],"Missing Subtitles":[null,""],"Backlog Overview":[null,""],"Mass Edit":[null,""],"Unable to update show: {excption_format}":[null,""],"Unable to refresh show {show_name}: {excption_format}":[null,""],"Errors encountered":[null,""],"Updates":[null,""],"Refreshes":[null,""],"Renames":[null,""],"Subtitles":[null,""],"The following actions were queued":[null,""],"For best results please set the Download Station alias as":[null,""],"You can check this setting in the Synology DSM":[null,""],"Control Panel":[null,""],"Application Portal":[null,""],"Make sure you allow DSM to be embedded with iFrames too in":[null,""],"DSM Settings":[null,""],"Security":[null,""],"Manage Torrents":[null,""],"Failed Downloads":[null,""],"Manage Searches":[null,""],"Backlog search started":[null,""],"Daily search started":[null,""],"Find propers search started":[null,""],"Subtitle search started":[null,""],"Remove Selected":[null,""],"Clear History":[null,""],"Trim History":[null,""],"Selected history entries removed":[null,""],"History cleared":[null,""],"Removed history entries older than 30 days":[null,""],"General":[null,""],"Backup/Restore":[null,""],"Search Settings":[null,""],"Search Providers":[null,""],"Subtitles Settings":[null,""],"Notifications":[null,""],"Anime":[null,""],"SickRage Configuration":[null,""],"Config - Shares":[null,""],"Windows Shares Configuration":[null,""],"Saved Shares":[null,""],"Your Windows share settings have been saved":[null,""],"Config - General":[null,""],"General Configuration":[null,""],"Saved Defaults":[null,""],"Your \"add show\" defaults have been set to your current selections.":[null,""],"Unable to create directory {directory}, log directory not changed.":[null,""],"Unable to create directory {directory}, https cert directory not changed.":[null,""],"Unable to create directory {directory}, https key directory not changed.":[null,""],"Error(s) Saving Configuration":[null,""],"Configuration Saved":[null,""],"Config - Backup/Restore":[null,""],"Config - Episode Search":[null,""],"Config - Post Processing":[null,""],"Unpacking Not Supported, disabling unpack setting":[null,""],"You tried saving an invalid normal naming config, not saving your naming settings":[null,""],"You tried saving an invalid anime naming config, not saving your naming settings":[null,""],"Config - Providers":[null,""],"No Provider Name specified":[null,""],"No Provider Url specified":[null,""],"No Provider Api key specified":[null,""],"Config - Notifications":[null,""],"Config - Subtitles":[null,""],"Config - Anime":[null,""],"Clear Errors":[null,""],"Clear Warnings":[null,""],"Submit Errors":[null,""],"Logs & Errors":[null,""],"Log File":[null,""],"Logs":[null,""],"This is a test notification from SickRage":[null,""],"Please fill out the necessary fields above.":[null,""],"This pattern is invalid.":[null,""],"This pattern would be invalid without the folders, using it will force \"Season Folders\" on for all shows.":[null,""],"This pattern is valid.":[null,""],"Resume updating the log on this page.":[null,""],"Pause updating the log on this page.":[null,""],"You have reached this page by accident, please check the url.":[null,""],"A mako error has occured.<br>\n If this happened during an update a simple page refresh may be the solution.<br>\n Mako errors that happen during updates may be a one time error if there were significant ui changes.":[null,""],"Show/Hide Error":[null,""],"Add New Show":[null,""],"For shows that you haven't downloaded yet, this option finds a show on theTVDB.com, creates a directory for it's episodes, and adds it to SickRage.":[null,""],"Add From Trakt Lists":[null,""],"For shows that you haven't downloaded yet, this option lets you choose from a show from one of the Trakt lists to add to SickRage.":[null,""],"Add From IMDB's Popular Shows":[null,""],"View IMDB's list of the most popular shows. This feature uses IMDB's MOVIEMeter algorithm to identify popular TV Series.":[null,""],"Add Existing Shows":[null,""],"Use this option to add shows that already have a folder created on your hard drive. SickRage will scan your existing metadata/episodes and add the show accordingly.":[null,""],"Add Existing Show":[null,""],"Manage Directories":[null,""],"Customize Options":[null,""],"SickRage can add existing shows, using the current options, by using locally stored NFO/XML metadata to eliminate user interaction. If you would rather have SickRage prompt you to customize each show, then use the checkbox below.":[null,""],"Prompt me to set settings for each show":[null,""],"Displaying folders within these directories which aren't already added to SickRage":[null,""],"Submit":[null,""],"Find a show on theTVDB":[null,""],"Show retrieved from existing metadata":[null,""],"All Indexers":[null,""],"Search":[null,""],"This will only affect the language of the retrieved metadata file contents and episode filenames.":[null,""],"This <b>DOES NOT</b> allow SickRage to download non-english TV episodes!":[null,""],"Pick the parent folder":[null,""],"Pre-chosen Destination Folder":[null,""],"Customize options":[null,""],"Add Show":[null,""],"Skip Show":[null,""],"Sort By":[null,""],"Name":[null,""],"Original":[null,""],"Votes":[null,""],"Rating":[null,""],"Rating > Votes":[null,""],"Sort Order":[null,""],"Asc":[null,""],"Desc":[null,""],"Fetching of IMDB Data failed. Are you online?":[null,""],"Exception":[null,""],"Select Trakt List":[null,""],"Most Anticipated":[null,""],"Trending":[null,""],"Popular":[null,""],"Most Watched":[null,""],"Most Played":[null,""],"Most Collected":[null,""],"Recommended":[null,""],"Toggle navigation":[null,""],"Profile":[null,""],"JSONP":[null,""],"Back to SickRage":[null,""],"Parameters":[null,""],"Required":[null,""],"Description":[null,""],"Type":[null,""],"Default value":[null,""],"Allowed values":[null,""],"Playground":[null,""],"Clear":[null,""],"Yes":[null,""],"No":[null,""],"season":[null,""],"episode":[null,""],"Python Version":[null,""],"SSL Version":[null,""],"OS":[null,""],"Locale":[null,""],"User":[null,""],"Program Folder":[null,""],"Config File":[null,""],"Database File":[null,""],"Cache Folder":[null,""],"Log Folder":[null,""],"Arguments":[null,""],"Web Root":[null,""],"Website":[null,""],"Wiki":[null,""],"Source":[null,""],"IRC Chat":[null,""],"AnimeDB Settings":[null,""],"Look & Feel":[null,""],"AniDB is non-profit database of anime information that is freely open to the public":[null,""],"Enable":[null,""],"should SickRage use data from AniDB?":[null,""],"AniDB Username":[null,""],"username of your AniDB account":[null,""],"AniDB Password":[null,""],"password of your AniDB account":[null,""],"AniDB MyList":[null,""],"do you want to add the PostProcessed episodes to the MyList?":[null,""],"Look and Feel":[null,""],"How should the anime functions show and behave.":[null,""],"Split show lists":[null,""],"separate anime and normal shows in groups":[null,""],"Split in tabs":[null,""],"use tabs for when splitting show lists":[null,""],"Restore":[null,""],"Backup your main database file and config.":[null,""],"Select the folder you wish to save your backup file to":[null,""],"Restore your main database file and config.":[null,""],"Select the backup file you wish to restore":[null,""],"Misc":[null,""],"Interface":[null,""],"Advanced Settings":[null,""],"Startup options. Indexer options. Log and show file locations.":[null,""],"Some options may require a manual restart to take effect.":[null,""],"Default Indexer Language":[null,""],"for adding shows and metadata providers":[null,""],"Launch browser":[null,""],"open the SickRage home page on startup":[null,""],"Initial page":[null,""],"Shows":[null,""],"when launching SickRage interface":[null,""],"Choose hour to update shows":[null,""],"with information such as next air dates, show ended, etc. Use 15 for 3pm, 4 for 4am etc.":[null,""],"note":[null,""],"minutes are randomized each time SickRage is started":[null,""],"Send to trash for actions":[null,""],"when using show \"Remove\" and delete files":[null,""],"on scheduled deletes of the oldest log files":[null,""],"selected actions use trash (recycle bin) instead of the default permanent delete":[null,""],"Log file folder location":[null,""],"Number of Log files saved":[null,""],"number of log files saved when rotating logs (default: 5) (REQUIRES RESTART)":[null,""],"Size of Log files saved":[null,""],"maximum size in MB of the log file (default: 1MB) (REQUIRES RESTART)":[null,""],"Use initial indexer set to":[null,""],"as the default selection when adding new shows":[null,""],"Timeout show indexer at":[null,""],"seconds of inactivity when finding new shows (default:20)":[null,""],"Show root directories":[null,""],"where the files of shows are located":[null,""],"Save Changes":[null,""],"Options for software updates.":[null,""],"Check software updates":[null,""],"and display notifications when updates are available. Checks are run on startup and at the frequency set below*":[null,""],"Automatically update":[null,""],"fetch and install software updates. Updates are run on startup and in the background at the frequency set below*":[null,""],"Check the server every*":[null,""],"hours for software updates (default:1)":[null,""],"Notify on software update":[null,""],"send a message to all enabled notifiers when SickRage has been updated":[null,""],"User Interface":[null,""],"Options for visual appearance.":[null,""],"Interface Language":[null,""],"System Language":[null,""],"for appearance to take effect, save then refresh your browser":[null,""],"Display theme":[null,""],"Dark":[null,""],"Light":[null,""],"Use a background image":[null,""],"use a custom image as background for SickRage":[null,""],"Background Path":[null,""],"Path to the background image":[null,""],"Show fanart in the background":[null,""],"on the show summary page":[null,""],"Fanart transparency":[null,""],"transparency of the fanart in the background":[null,""],"Use a custom stylesheet file":[null,""],"use a custom .css file to style SickRage (for advanced users)":[null,""],"Stylesheet File Path":[null,""],"Path to the stylesheet (.css) file":[null,""],"Show all seasons":[null,""],"Sort with \"The\", \"A\", \"An\"":[null,""],"include articles (\"The\", \"A\", \"An\") when sorting show lists":[null,""],"Missed episodes range":[null,""],"set the range in days of the missed episodes in the Schedule page":[null,""],"Display fuzzy dates":[null,""],"move absolute dates into tooltips and display e.g. \"Last Thu\", \"On Tue\"":[null,""],"Trim zero padding":[null,""],"remove the leading number \"0\" shown on hour of day, and date of month":[null,""],"Date style":[null,""],"Use System Default":[null,""],"Time style":[null,""],"seconds are only shown on the History page":[null,""],"Timezone":[null,""],"Local":[null,""],"Network":[null,""],"display dates and times in either your timezone or the shows network timezone":[null,""],"use local timezone to start searching for episodes minutes after show ends (depends on your dailysearch frequency)":[null,""],"Download url":[null,""],"URL where the shows can be downloaded.":[null,""],"Web Interface":[null,""],"it is recommended that you enable a username and password to secure SickRage from being tampered with remotely.":[null,""],"these options require a manual restart to take effect.":[null,""],"API key":[null,""],"used to give 3rd party programs limited access to SickRage":[null,""],"you can try all the features of the API":[null,""],"here":[null,""],"HTTP logs":[null,""],"enable logs from the internal Tornado web server":[null,""],"HTTP username":[null,""],"set blank for no login":[null,""],"HTTP password":[null,""],"blank = no authentication":[null,""],"HTTP port":[null,""],"web port to browse and access SickRage (default:8081)":[null,""],"Notify on login":[null,""],"enable to be notified when a new login happens in webserver":[null,""],"Listen on IPv6":[null,""],"attempt binding to any available IPv6 address":[null,""],"Enable HTTPS":[null,""],"enable access to the web interface using a HTTPS address":[null,""],"HTTPS certificate":[null,""],"file name or path to HTTPS certificate":[null,""],"HTTPS key":[null,""],"file name or path to HTTPS key":[null,""],"Reverse proxy headers":[null,""],"accept the following reverse proxy headers (advanced)...":[null,""],"(X-Forwarded-For, X-Forwarded-Host, and X-Forwarded-Proto)":[null,""],"CPU throttling":[null,""],"Normal (default). High is lower and Low is higher CPU use":[null,""],"Anonymous redirect":[null,""],"backlink protection via anonymizer service, must end in \"?\"":[null,""],"Enable debug":[null,""],"enable debug logs":[null,""],"Verify SSL Certs":[null,""],"verify SSL Certificates (Disable this for broken SSL installs (Like QNAP))":[null,""],"No Restart":[null,""],"only shutdown when restarting SR":[null,""],"only select this when you have external software restarting SR automatically when it stops (like FireDaemon)":[null,""],"Encrypt passwords":[null,""],"in the <code>config.ini</code> file":[null,""],"warning":[null,""],"passwords must only contain":[null,""],"ASCII characters":[null,""],"Unprotected calendar":[null,""],"allow subscribing to the calendar without user and password":[null,""],"some services like Google Calendar only work this way":[null,""],"Google Calendar Icons":[null,""],"show an icon next to exported calendar events in Google Calendar":[null,""],"Proxy host":[null,""],"blank to disable or proxy to use when connecting to providers":[null,""],"also use global proxy setting for indexers (tvdb, xem, anidb, etc.)":[null,""],"Skip Remove Detection":[null,""],"skip detection of removed files":[null,""],"if disabled the episode will be set to the default deleted status":[null,""],"Default deleted episode status":[null,""],"define the status to be set for media file that has been deleted.":[null,""],"Archived option will keep previous downloaded quality":[null,""],"example: Downloaded (1080p WEB-DL) ==> Archived (1080p WEB-DL)":[null,""],"Options for github related features.":[null,""],"Branch version":[null,""],"error: No branches found.":[null,""],"select branch to use (restart required)":[null,""],"Authorization Type":[null,""],"Username and password":[null,""],"Personal access token":[null,""],"You must use a personal access token if you're using \"two-factor authentication\" on GitHub.":[null,""],"GitHub username":[null,""],"*** (REQUIRED FOR SUBMITTING ISSUES) ***":[null,""],"GitHub password":[null,""],"GitHub personal access token":[null,""],"Generate Token":[null,""],"Manage Tokens":[null,""],"GitHub remote for branch":[null,""],"access repo configured remotes (save then refresh browser)":[null,""],"default":[null,""],"origin":[null,""],"Git executable path":[null,""],"only needed if OS is unable to locate git from env":[null,""],"Git reset":[null,""],"removes untracked files and performs a hard reset on git branch automatically to help resolve update issues":[null,""],"Home Theater / NAS":[null,""],"Devices":[null,""],"Social":[null,""],"A free and open source cross-platform media center and home entertainment system software with a 10-foot user interface designed for the living-room TV.":[null,""],"send KODI commands?":[null,""],"Always on":[null,""],"log errors when unreachable?":[null,""],"Notify on snatch":[null,""],"send a notification when a download starts?":[null,""],"Notify on download":[null,""],"send a notification when a download finishes?":[null,""],"Notify on subtitle download":[null,""],"send a notification when subtitles are downloaded?":[null,""],"Update library":[null,""],"update KODI library when a download finishes?":[null,""],"Full library update":[null,""],"perform a full library update if update per-show fails?":[null,""],"Only update first host":[null,""],"only send library updates to the first active host?":[null,""],"KODI IP:Port":[null,""],"host running KODI (eg. 192.168.1.100:8080)":[null,""],"(multiple host strings must be separated by commas)":[null,""],"Username":[null,""],"username for your KODI server (blank for none)":[null,""],"Password":[null,""],"password for your KODI server (blank for none)":[null,""],"Click below to test.":[null,""],"Experience your media on a visually stunning, easy to use interface on your Mac connected to your TV. Your media library has never looked this good!":[null,""],"For sending notifications to Plex Home Theater (PHT) clients, use the KODI notifier with port <b>3005</b>.":[null,""],"send Plex Media Server library updates?":[null,""],"Plex Media Server Auth Token":[null,""],"auth token used by Plex":[null,""],"Update Library":[null,""],"update Plex Media Server library when a download finishes":[null,""],"Plex Media Server IP:Port":[null,""],"one or more hosts running Plex Media Server<br/>(eg. 192.168.1.1:32400, 192.168.1.2:32400)":[null,""],"HTTPS":[null,""],"use https for plex media server requests?":[null,""],"Click below to test Plex Media Server(s)":[null,""],"Test Plex Media Server":[null,""],"Plex Home Theater":[null,""],"send Plex Home Theater notifications?":[null,""],"Plex Home Theater IP:Port":[null,""],"one or more hosts running Plex Home Theater<br>(eg. 192.168.1.100:3000, 192.168.1.101:3000)":[null,""],"Click below to test Plex Home Theater(s)":[null,""],"Test Plex Home Theater":[null,""],"some Plex Home Theaters <b class=\"boldest\">do not</b> support notifications e.g. Plexapp for Samsung TVs":[null,""],"Emby":[null,""],"A home media server built using other popular open source technologies.":[null,""],"send update commands to Emby?":[null,""],"Emby IP:Port":[null,""],"host running Emby (eg. 192.168.1.100:8096)":[null,""],"Emby API Key":[null,""],"Networked Media Jukebox":[null,""],"The Networked Media Jukebox, or NMJ, is the official media jukebox interface made available for the Popcorn Hour 200-series.":[null,""],"send update commands to NMJ?":[null,""],"Popcorn IP address":[null,""],"IP address of Popcorn 200-series (eg. 192.168.1.100)":[null,""],"Get settings":[null,""],"Get Settings":[null,""],"the Popcorn Hour device must be powered on and NMJ running.":[null,""],"NMJ database":[null,""],"automatically filled via the 'Get Settings' button.":[null,""],"NMJ mount url":[null,""],"Networked Media Jukebox v2":[null,""],"The Networked Media Jukebox, or NMJv2, is the official media jukebox interface made available for the Popcorn Hour 300 & 400-series.":[null,""],"send update commands to NMJv2?":[null,""],"IP address of Popcorn 300/400-series (eg. 192.168.1.100)":[null,""],"Database location":[null,""],"Database instance":[null,""],"adjust this value if the wrong database is selected.":[null,""],"Find database":[null,""],"Find Database":[null,""],"the Popcorn Hour device must be powered on.":[null,""],"NMJv2 database":[null,""],"automatically filled via the 'Find Database' buttons.":[null,""],"Synology":[null,""],"The Synology DiskStation NAS.":[null,""],"Synology Indexer is the daemon running on the Synology NAS to build its media database.":[null,""],"send Synology notifications?":[null,""],"requires SickRage to be running on your Synology NAS.":[null,""],"Synology Indexer":[null,""],"Synology Notifier is the notification system of Synology DSM":[null,""],"send notifications to the Synology Notifier?":[null,""],"pyTivo":[null,""],"pyTivo is both an HMO and GoBack server. This notifier will load the completed downloads to your Tivo.":[null,""],"send notifications to pyTivo?":[null,""],"requires the downloaded files to be accessible by pyTivo.":[null,""],"pyTivo IP:Port":[null,""],"host running pyTivo (eg. 192.168.1.1:9032)":[null,""],"pyTivo share name":[null,""],"value used in pyTivo Web Configuration to name the share.":[null,""],"Tivo name":[null,""],"(Messages & Settings > Account & System Information > System Information > DVR name)":[null,""],"Growl":[null,""],"A cross-platform unobtrusive global notification system.":[null,""],"send Growl notifications?":[null,""],"Growl IP:Port":[null,""],"host running Growl (eg. 192.168.1.100:23053)":[null,""],"may leave blank if SickRage is on the same host.":[null,""],"otherwise Growl <b>requires</b> a password to be used.":[null,""],"Click below to register and test Growl, this is required for Growl notifications to work.":[null,""],"Register Growl":[null,""],"Prowl":[null,""],"A Growl client for iOS.":[null,""],"send Prowl notifications?":[null,""],"Prowl Message Title":[null,""],"Global Prowl API key(s)":[null,""],"Prowl API(s) listed here, separated by commas if applicable, will<br> receive notifications for <b>all</b> shows. Your Prowl API key is available at:":[null,""],"(this field may be blank except when testing.)":[null,""],"Show notification list":[null,""],"-- Select a Show --":[null,""],"Configure per-show notifications here by entering Prowl API key(s), separated by commas, '\n 'after selecting a show in the drop-down box. Be sure to activate the 'Save for this show' '\n 'button below after each entry.":[null,""],"Save for this show":[null,""],"Prowl priority":[null,""],"Very Low":[null,""],"Moderate":[null,""],"Normal":[null,""],"High":[null,""],"Emergency":[null,""],"priority of Prowl messages from SickRage.":[null,""],"Libnotify":[null,""],"The standard desktop notification API for Linux/*nix systems. This notifier will only function if the pynotify module is installed (Ubuntu/Debian package <a href=\"apt:python-notify\">python-notify</a>).":[null,""],"send Libnotify notifications?":[null,""],"Pushover":[null,""],"Pushover makes it easy to send real-time notifications to your Android and iOS devices.":[null,""],"send Pushover notifications?":[null,""],"Pushover key":[null,""],"user key of your Pushover account":[null,""],"Pushover API key":[null,""],"click here":[null,""]," to create a Pushover API key":[null,""],"Pushover devices":[null,""],"comma separated list of pushover devices you want to send notifications to":[null,""],"Pushover notification sound":[null,""],"Bike":[null,""],"Bugle":[null,""],"Cash Register":[null,""],"Classical":[null,""],"Cosmic":[null,""],"Falling":[null,""],"Gamelan":[null,""],"Incoming":[null,""],"Intermission":[null,""],"Magic":[null,""],"Mechanical":[null,""],"Piano Bar":[null,""],"Siren":[null,""],"Space Alarm":[null,""],"Tug Boat":[null,""],"Alien Alarm (long)":[null,""],"Climb (long)":[null,""],"Persistent (long)":[null,""],"Pushover Echo (long)":[null,""],"Up Down (long)":[null,""],"None (silent)":[null,""],"Device specific":[null,""],"choose notification sound to use":[null,""],"Pushover priority":[null,""],"Choose priority to use":[null,""],"Boxcar 2":[null,""],"Read your messages where and when you want them!":[null,""],"send Boxcar notifications?":[null,""],"Boxcar2 access token":[null,""],"access token for your Boxcar account.":[null,""],"NMA":[null,""],"Notify My Android":[null,""],"Notify My Android is a Prowl-like Android App and API that offers an easy way to send notifications from your application directly to your Android device.":[null,""],"send NMA notifications?":[null,""],"NMA API key":[null,""],"(multiple keys must be separated by commas, up to a maximum of 5)":[null,""],"NMA priority":[null,""],"priority of NMA messages from SickRage.":[null,""],"Pushalot":[null,""],"Pushalot is a platform for receiving custom push notifications to connected devices running Windows Phone or Windows 8.":[null,""],"send Pushalot notifications ?":[null,""],"Pushalot authorization token":[null,""],"authorization token of your Pushalot account.":[null,""],"Pushbullet":[null,""],"Pushbullet is a platform for receiving custom push notifications to connected devices running Android/iOS and desktop browsers such as Chrome, Firefox or Opera.":[null,""],"send Pushbullet notifications?":[null,""],"Pushbullet API key":[null,""],"API key of your Pushbullet account":[null,""],"Pushbullet devices":[null,""],"Update device list":[null,""],"Pushbullet channels":[null,""],"Free Mobile":[null,""],"Free Mobile is a famous French cellular network provider.<br> It provides to their customer a free SMS API.":[null,""],"send SMS notifications?":[null,""],"send a SMS when a download starts?":[null,""],"send a SMS when a download finishes?":[null,""],"send a SMS when subtitles are downloaded?":[null,""],"Free Mobile customer ID":[null,""],"it's your Free Mobile customer ID (8 digits)":[null,""],"Free Mobile API key":[null,""],"find your API key in your customer portal.":[null,""],"Click below to test your settings.":[null,""],"Telegram":[null,""],"Telegram is a cloud-based instant messaging service.":[null,""],"send Telegram notifications?":[null,""],"send a message when a download starts?":[null,""],"send a message when a download finishes?":[null,""],"send a message when subtitles are downloaded?":[null,""],"User/group ID":[null,""],"contact @myidbot on Telegram to get an ID":[null,""],"Bot API token":[null,""],"contact @BotFather on Telegram to set up one":[null,""],"Join":[null,""],"Join all of your devices together!":[null,""],"send Join notifications?":[null,""],"Device ID":[null,""],"per device specific id":[null,""]," to create a Join API key":[null,""],"Twilio":[null,""],"Twilio is a webservice API that allows you to communicate directly with a mobile number. This notifier will send a text directly to your mobile device.":[null,""],"should SickRage text your mobile device?":[null,""],"Twilio Account SID":[null,""],"account SID of your Twilio account.":[null,""],"Twilio Auth Token":[null,""],"Twilio Phone SID":[null,""],"phone SID that you would like to send the sms from":[null,""],"Your phone number":[null,""],"phone number that will receive the sms. Please use the format +1-###-###-####":[null,""],"Twitter":[null,""],"A social networking and microblogging service, enabling its users to send and read other users' messages called tweets.":[null,""],"should SickRage post tweets on Twitter?":[null,""],"you may want to use a secondary account.":[null,""],"send direct message":[null,""],"send a notification via Direct Message, not via status update":[null,""],"send DM to":[null,""],"Twitter account to send Direct Messages to (must follow you)":[null,""],"Step One":[null,""],"Request Authorization":[null,""],"Click the \"Request Authorization\" button.<br> This will open a new page containing an auth key.<br> <b>note:</b> if nothing happens check your popup blocker.":[null,""],"Step Two":[null,""],"Enter the key Twitter gave you below, and click \"Verify Key\".":[null,""],"Trakt":[null,""],"Trakt helps keep a record of what TV shows and movies you are watching. Based on your favorites, Trakt recommends additional shows and movies you'll enjoy!":[null,""],"send Trakt.tv notifications?":[null,""],"username of your Trakt account.":[null,""],"Trakt PIN":[null,""],"Get Trakt PIN":[null,""],"PIN code to authorize SickRage to access Trakt on your behalf.":[null,""],"API Timeout":[null,""],"seconds to wait for Trakt API to respond. (Use 0 to wait forever)":[null,""],"Default indexer":[null,""],"Sync libraries":[null,""],"sync your SickRage show library with your trakt show library.":[null,""],"Remove Episodes From Collection":[null,""],"remove an episode from your Trakt Collection if it is not in your SickRage Library.":[null,""],"Sync watchlist":[null,""],"sync your SickRage show watchlist with your trakt show watchlist (either Show and Episode).":[null,""],"episode will be added on watch list when wanted or snatched and will be removed when downloaded ":[null,""],"Watchlist add method":[null,""],"Skip All":[null,""],"Download Pilot Only":[null,""],"Get whole show":[null,""],"method in which to download episodes for new shows.":[null,""],"Remove episode":[null,""],"remove an episode from your watchlist after it is downloaded.":[null,""],"Remove series":[null,""],"remove the whole series from your watchlist after any download.":[null,""],"Remove watched show":[null,""],"remove the show from sickrage if it's ended and completely watched":[null,""],"Start paused":[null,""],"shows grabbed from your trakt watchlist start paused.":[null,""],"Trakt blackList name":[null,""],"name (slug) of list on Trakt for blacklisting show on 'Add Trending Show' & 'Add Recommended Shows' pages":[null,""],"Email":[null,""],"Allows configuration of email notifications on a per show basis.":[null,""],"send email notifications?":[null,""],"SMTP host":[null,""],"hostname of your SMTP email server.":[null,""],"SMTP port":[null,""],"port number used to connect to your SMTP host.":[null,""],"SMTP from":[null,""],"sender email address, some hosts require a real address.":[null,""],"Use TLS":[null,""],"check to use TLS encryption.":[null,""],"SMTP user":[null,""],"(optional) your SMTP server username.":[null,""],"SMTP password":[null,""],"(optional) your SMTP server password.":[null,""],"Global email list":[null,""],"email addresses listed here, separated by commas if applicable, will<br> receive notifications for <b>all</b> shows.":[null,""],"(This field may be blank except when testing.)":[null,""],"Email Subject":[null,""],"use a custom subject for some privacy protection?":[null,""],"(leave blank for the default SickRage subject)":[null,""],"configure per-show notifications here by entering email address(es), separated by commas,":[null,""],"after selecting a show in the drop-down box. Be sure to activate the 'Save for this show'":[null,""],"button below after each entry.":[null,""],"Slack":[null,""],"Slack brings all your communication together in one place. It's real-time messaging, archiving and search for modern teams.":[null,""],"should SickRage post messages on Slack?":[null,""],"Slack Incoming Webhook":[null,""],"Discord":[null,""],"All-in-one voice and text chat for gamers that's free, secure, and works on both your desktop and phone.":[null,""],"Should SickRage post messages on Discord?":[null,""],"Discord Incoming Webhook":[null,""],"Create webhook under channel settings.":[null,""],"Discord Bot Name":[null,""],"Blank will use webhook default Name.":[null,""],"Discord Avatar URL":[null,""],"Blank will use webhook default Avatar.":[null,""],"Discord TTS":[null,""],"Send notifications using text-to-speech":[null,""],"Post-Processing":[null,""],"Episode Naming":[null,""],"Metadata":[null,""],"Settings that dictate how SickRage should process completed downloads.":[null,""],"enable the automatic post processor to scan and process any files in your Post Processing Dir":[null,""],"do not use if you use an external Post Processing script":[null,""],"Post Processing Dir":[null,""],"the folder where your download client puts the completed TV downloads.":[null,""],"please use seperate downloading and completed folders in your download client if possible.":[null,""],"Processing Method":[null,""],"what method should be used to put files into the library?":[null,""],"if you keep seeding torrents after they finish, please avoid the 'move' processing method to prevent errors.":[null,""],"Auto Post-Processing Frequency":[null,""],"time in minutes to check for new files to auto post-process (min 10)":[null,""],"Postpone post processing":[null,""],"wait to process a folder if sync files are present.":[null,""],"Sync File Extensions":[null,""],"comma seperated list of extensions or filename globs SickRage ignores when Post Processing":[null,""],"Rename Episodes":[null,""],"rename episode using the Episode Naming settings?":[null,""],"Create missing show directories":[null,""],"create missing show directories when they get deleted":[null,""],"Add shows without directory":[null,""],"add shows without creating a directory (not recommended)":[null,""],"Move associated files":[null,""],"move associated (srt/srr/sfv/etc) files while post processing?":[null,""],"Rename .nfo file":[null,""],"rename the original .nfo file to .nfo-orig to avoid conflicts?":[null,""],"Associated file extensions":[null,""],"comma separated list of associated file extensions SickRage should keep while post processing.":[null,""],"leaving it empty means no associated files will be post processed":[null,""],"Delete non associated files":[null,""],"delete non associated files while post processing?":[null,""],"Change File Date":[null,""],"set last modified filedate to the date that the episode aired?":[null,""],"some systems may ignore this feature.":[null,""],"Timezone for File Date":[null,""],"local":[null,""],"network":[null,""],"what timezone should be used to change File Date?":[null,""],"Unpack":[null,""],"What to do with archived releases found in your <i>TV Download Dir</i>?":[null,""],"Ignore (do not process contents)":[null,""],"Unpack (process contents)":[null,""],"Treat as video (process archive as-is)":[null,""],"'Unpack' only works with RAR archives":[null,""],"Windows":[null,""],"WinRar is required on windows":[null,""],"Unpack Directory":[null,""],"Choose a path to unpack files, leave blank to unpack in download dir":[null,""],"Unrar Location":[null,""],"add the path to unrar if it is not in the system path":[null,""],"Alternate Unrar Tool":[null,""],"add the path to an alternate unrar tool if it is not in the system path":[null,""],"Delete RAR contents":[null,""],"delete content of RAR files, even if Process Method not set to move?":[null,""],"only working with RAR archive":[null,""],"Don't delete empty folders":[null,""],"leave empty folders when Post Processing?":[null,""],"can be overridden using manual Post Processing":[null,""],"Follow symbolic-links":[null,""],"follow down symbolic links in download directory?":[null,""],"<b>EXPERTS ONLY.</b><br>Enable only if you know what <b>circular symbolic links</b> are,<br>and can <b>verify that you have none</b>.":[null,""],"Use icacls":[null,""],"Windows only":[null,""],"sets video permissions after using the move method in post processing":[null,""],"Extra Scripts":[null,""],"see":[null,""],"for script arguments description and usage.":[null,""],"How SickRage will name and sort your episodes.":[null,""],"Name Pattern":[null,""],"Toggle Naming Legend":[null,""],"don't forget to add quality pattern. Otherwise after post-processing the episode will have UNKNOWN quality":[null,""],"Meaning":[null,""],"Pattern":[null,""],"Result":[null,""],"Use lower case if you want lower case names (eg. %sn, %e.n, %q_n etc)":[null,""],"Show Name":[null,""],"Show.Name":[null,""],"Show_Name":[null,""],"Season Number":[null,""],"XEM Season Number":[null,""],"Episode Number":[null,""],"XEM Episode Number":[null,""],"Episode Name":[null,""],"Episode.Name":[null,""],"Episode_Name":[null,""],"Air Date":[null,""],"Post-Processing Date":[null,""],"Quality":[null,""],"Scene Quality":[null,""],"Release Name":[null,""],"SickRage' is used in place of RLSGROUP if it could not be properly detected":[null,""],"Release Group":[null,""],"If episode is proper/repack add 'proper' to name.":[null,""],"Release Type":[null,""],"Multi-Episode Style":[null,""],"Single-EP Sample":[null,""],"Multi-EP sample":[null,""],"Strip Show Year":[null,""],"remove the TV show's year when renaming the file?":[null,""],"only applies to shows that have year inside parentheses":[null,""],"Custom Air-By-Date":[null,""],"name air-by-date shows differently than regular shows?":[null,""],"Toggle ABD Naming Legend":[null,""],"Regular Air Date":[null,""],"Year":[null,""],"Month":[null,""],"Day":[null,""],"Multi-EP style is ignored":[null,""],"Custom Sports":[null,""],"name sports shows differently than regular shows?":[null,""],"Toggle Sports Naming Legend":[null,""],"Sports Air Date":[null,""],"Custom Anime":[null,""],"name anime shows differently than regular shows?":[null,""],"Toggle Anime Naming Legend":[null,""],">XEM Season Number":[null,""],"Single-EP Anime Sample":[null,""],"Multi-EP Anime sample":[null,""],"Add Absolute Number":[null,""],"add the absolute number to the season/episode format?":[null,""],"only applies to anime. (eg. S15E45 - 310 vs S15E45)":[null,""],"Only Absolute Number":[null,""],"replace season/episode format with absolute number":[null,""],"only applies to anime.":[null,""],"No Absolute Number":[null,""],"don't include the absolute number":[null,""],"The data associated to the data. These are files associated to a TV show in the form of images and text that, when supported, will enhance the viewing experience.":[null,""],"Metadata Type":[null,""],"toggle metadata options that you wish to be created":[null,""],"multiple targets may be used":[null,""],"Select Metadata":[null,""],"Provider Priorities":[null,""],"Provider Options":[null,""],"Configure Custom Newznab Providers":[null,""],"Configure Custom Torrent Providers":[null,""],"Check off and drag the providers into the order you want them to be used.":[null,""],"At least one provider is required but two are recommended.":[null,""],"Torrent providers can be toggled in ":[null,""],"Provider does not support backlog searches at this time.":[null,""],"Provider is <b>NOT WORKING</b>.":[null,""],"Configure individual provider settings here.":[null,""],"Check with provider's website on how to obtain an API key if needed.":[null,""],"Configure provider":[null,""],"no providers available to configure.":[null,""],"URL":[null,""],"Enable daily searches":[null,""],"enable provider to perform daily searches.":[null,""],"Enable backlog searches":[null,""],"enable provider to perform backlog searches.":[null,""],"Season search mode":[null,""],"when searching for complete seasons you can choose to have it look for season packs only, or choose to have it build a complete season from just single episodes.":[null,""],"season packs only.":[null,""],"episodes only.":[null,""],"Enable fallback":[null,""],"when searching for a complete season depending on search mode you may return no results, this helps by restarting the search using the opposite search mode.":[null,""],"Custom URL":[null,""],"the URL should include the protocol (and port if applicable). Examples: http://192.168.1.4/ or http://localhost:3000/":[null,""],"Api key":[null,""],"Digest":[null,""],"Hash":[null,""],"Passkey":[null,""],"Cookies":[null,""],"example: uid=1234;pass=567845439634987<br>note: uid and pass are not your username/password.<br>use DevTools or Firebug to get these values after logging in on your browser.":[null,""],"Pin":[null,""],"Seed ratio":[null,""],"stop transfer when ratio is reached<br>(-1 SickRage default to seed forever, or leave blank for downloader default)":[null,""],"Minimum seeders":[null,""],"Minimum leechers":[null,""],"Confirmed download":[null,""],"only download torrents from trusted or verified uploaders ?":[null,""],"Ranked torrents":[null,""],"only download ranked torrents (trusted releases)":[null,""],"English torrents":[null,""],"only download english torrents, or torrents containing english subtitles":[null,""],"For Spanish torrents":[null,""],"ONLY search on this provider if show info is defined as \"Spanish\" (avoid provider's use for VOS shows)":[null,""],"Sorting results by":[null,""],"Freeleech":[null,""],"only download <b>\"FreeLeech\"</b> torrents.":[null,""],"Category":[null,""],"select torrent with Italian subtitle":[null,""],"Configure Custom<br>Newznab Providers":[null,""],"Add and setup or remove custom Newznab providers.":[null,""],"Select provider":[null,""],"-- add new provider --":[null,""],"Provider name":[null,""],"Site URL":[null,""],"Newznab search categories":[null,""],"select your Newznab categories on the left, and click the \"update categories\" button to use them for searching.) <b>don't forget to to save the form!":[null,""],"Update Categories":[null,""],"Add":[null,""],"Delete":[null,""],"Add and setup or remove custom RSS providers.":[null,""],"RSS URL":[null,""],"Search element":[null,""],"eg: title":[null,""],"Episode Search":[null,""],"NZB Search":[null,""],"Torrent Search":[null,""],"How to manage searching with":[null,""],"Randomize Providers":[null,""],"randomize the provider search order instead of going in order of placement":[null,""],"Download propers":[null,""],"replace original download with \"Proper\" or \"Repack\" if nuked":[null,""],"Check propers every":[null,""],"24 hours":[null,""],"4 hours":[null,""],"90 mins":[null,""],"45 mins":[null,""],"15 mins":[null,""],"Backlog search day(s)":[null,""],"number of day(s) that the \"Forced Backlog Search\" will cover (e.g. 7 Days)":[null,""],"Backlog search frequency":[null,""],"time in minutes between searches (min.":[null,""],"Daily search frequency":[null,""],"Usenet retention":[null,""],"age limit in days for usenet articles to be used (e.g. 500)":[null,""],"Ignore words":[null,""],"results with one or more word from this list will be ignored<br>separate words with a comma, e.g. \"word1,word2,word3\"":[null,""],"Require words":[null,""],"results with no word from this list will be ignored<br>separate words with a comma, e.g. \"word1,word2,word3\"":[null,""],"Trackers list":[null,""],"trackers that will be added to magnets without trackers<br>separate trackers with a comma, e.g. \"tracker1,tracker2,tracker3\"":[null,""],"Ignore language names in subbed results":[null,""],"ignore subbed releases based on language names <br>\n Example: \"dk\" will ignore words: dksub, dksubs, dksubbed, dksubed <br>\n separate languages with a comma, e.g. \"lang1,lang2,lang3":[null,""],"Allow high priority":[null,""],"set downloads of recently aired episodes to high priority":[null,""],"Use Failed Downloads":[null,""],"use Failed Download Handling?":[null,""],"will only work with snatched/downloaded episodes after enabling this":[null,""],"Delete Failed":[null,""],"delete files left over from a failed download?":[null,""],"this only works if Use Failed Downloads is enabled.":[null,""],"How to handle NZB search results.":[null,""],"Search NZBs":[null,""],"enable NZB search providers":[null,""],"Send .nzb files to":[null,""],"SABnzbd server URL":[null,""],"URL to your SABnzbd server (e.g. http://localhost:8080/)":[null,""],"SABnzbd username":[null,""],"(blank for none)":[null,""],"SABnzbd password":[null,""],"SABnzbd API key":[null,""],"locate at... SABnzbd Config -> General -> API Key":[null,""],"Use SABnzbd category":[null,""],"add downloads to this category (e.g. TV)":[null,""],"Use SABnzbd category (backlog episodes)":[null,""],"add downloads of old episodes to this category (e.g. TV)":[null,""],"Use SABnzbd category for anime":[null,""],"add anime downloads to this category (e.g. anime)":[null,""],"Use SABnzbd category for anime (backlog episodes)":[null,""],"add anime downloads of old episodes to this category (e.g. anime)":[null,""],"Use forced priority":[null,""],"enable to change priority from HIGH to FORCED":[null,""],"Black hole folder location":[null,""],"<b>.nzb</b> files are stored at this location for external software to find and use":[null,""],"Connect using HTTPS":[null,""],"enable Secure control in NZBGet and set the correct Secure Port here":[null,""],"NZBget host:port":[null,""],"(e.g. localhost:6789)":[null,""],"NZBget RPC host name and port number (not NZBgetweb!)":[null,""],"NZBget username":[null,""],"locate in nzbget.conf (default:nzbget)":[null,""],"NZBget password":[null,""],"locate in nzbget.conf (default:tegbzn6789)":[null,""],"Use NZBget category":[null,""],"send downloads marked this category (e.g. TV)":[null,""],"Use NZBget category (backlog episodes)":[null,""],"send downloads of old episodes marked this category (e.g. TV)":[null,""],"Use NZBget category for anime":[null,""],"send anime downloads marked this category (e.g. anime)":[null,""],"Use NZBget category for anime (backlog episodes)":[null,""],"send anime downloads of old episodes marked this category (e.g. anime)":[null,""],"NZBget priority":[null,""],"Very low":[null,""],"Low":[null,""],"Very high":[null,""],"Force":[null,""],"priority for daily snatches (no backlog)":[null,""],"Torrent host:port":[null,""],"URL to your Synology DSM (e.g. http://localhost:5000/)":[null,""],"Client username":[null,""],"Client password":[null,""],"Downloaded files location":[null,""],"where Synology Download Station will save downloaded files (blank for client default)":[null,""],"the destination has to be a shared folder for Synology DS":[null,""],"Click below to test":[null,""],"How to handle Torrent search results.":[null,""],"Search torrents":[null,""],"enable torrent search providers":[null,""],"Send .torrent files to":[null,""],"<b>.torrent</b> files are stored at this location for external software to find and use":[null,""],"URL to your torrent client (e.g. http://localhost:8000/)":[null,""],"Torrent RPC URL":[null,""],"the path without leading and trailing slashes (e.g. transmission)":[null,""],"Http Authentication":[null,""],"Verify certificate":[null,""],"disable if you get \"Deluge: Authentication Error\" in your log":[null,""],"verify SSL certificates for HTTPS requests":[null,""],"Add label to torrent":[null,""],"(blank spaces are not allowed)":[null,""],"label plugin must be enabled in Deluge clients":[null,""],"for QBitTorrent 3.3.1 and up":[null,""],"Add label to torrent for anime":[null,""],"for QBitTorrent 3.3.1 and up ":[null,""],"where <span id=\"torrent_client\">the torrent client</span> will save downloaded files (blank for client default)":[null,""],"the destination has to be a shared folder for Synology DS</span>":[null,""],"Minimum seeding time":[null,""],"time in hours":[null,""],"(default:'0' passes blank to client and '-1' passes nothing)":[null,""],"Start torrent paused":[null,""],"add .torrent to client but do <b style=\"font-weight:900\">not</b> start downloading":[null,""],"Allow high bandwidth":[null,""],"use high bandwidth allocation if priority is high":[null,""],"Test Connection":[null,""],"Windows Shares":[null,""],"Defines your existing windows shares so that we can add them to the browse dialog":[null,""],"Share #{number}":[null,""],"Share label":[null,""],"Hostname or IP":[null,""],"Share path":[null,""],"Subtitles Search":[null,""],"Subtitles Plugin":[null,""],"Plugin Settings":[null,""],"Settings that dictate how SickRage handles subtitles search results.":[null,""],"Search Subtitles":[null,""],"Subtitle Languages":[null,""],"Subtitle Directory":[null,""],"the directory where SickRage should store your <i>Subtitles</i> files.":[null,""],"leave empty if you want store subtitle in episode path.":[null,""],"Subtitle Find Frequency":[null,""],"time in hours between scans (default: 1)":[null,""],"Include Specials":[null,""],"include the show's specials when searching for subtitles?":[null,""],"Perfect matches":[null,""],"only download subtitles that match: release group, video codec, audio codec and resolution":[null,""],"if disabled you may get out of sync subtitles":[null,""],"Subtitles History":[null,""],"log downloaded Subtitle on History page?":[null,""],"Subtitles Multi-Language":[null,""],"append language codes to subtitle filenames?":[null,""],"this option is required if you use multiple subtitle languages":[null,""],"Delete unwanted subtitles":[null,""],"enable to delete unwanted subtitle languages bundled with release":[null,""],"Embedded Subtitles":[null,""],"ignore subtitles embedded inside video file?":[null,""],"this will ignore <u>all</u> embedded subtitles for every video file!":[null,""],"Hearing Impaired Subtitles":[null,""],"download hearing impaired style subtitles?":[null,""],"See":[null,""],"for a script arguments description.":[null,""],"Additional scripts separated by <b>|</b>.":[null,""],"Scripts are called after each episode has searched and downloaded subtitles.":[null,""],"For any scripted languages, include the interpreter executable before the script. See the following example":[null,""],"For Windows:":[null,""],"For Linux / OS X:":[null,""],"Subtitle Providers":[null,""],"Check off and drag the plugins into the order you want them to be used.":[null,""],"At least one plugin is required.":[null,""]," Web-scraping plugin":[null,""],"Provider Settings":[null,""],"Set user and password for each provider":[null,""],"User Name":[null,""],"Change Show":[null,""],"Prev Show":[null,""],"Next Show":[null,""],"Jump to Season":[null,""],"Specials":[null,""],"Poster for":[null,""],"Stars":[null,""],"minutes":[null,""],"View other popular {genre} shows on trakt.tv.":[null,""],"View other popular {imdbgenre} shows on IMDB.":[null,""],"Allowed":[null,""],"Preferred":[null,""],"Originally Airs":[null,""],"Show Status":[null,""],"Default EP Status":[null,""],"Location":[null,""],"Missing":[null,""],"Scene Name":[null,""],"Required Words":[null,""],"Ignored Words":[null,""],"Size":[null,""],"Info Language":[null,""],"Subtitles SR Metadata":[null,""],"Season Folders":[null,""],"Paused":[null,""],"Air-by-Date":[null,""],"Sports":[null,""],"DVD Order":[null,""],"Scene Numbering":[null,""],"Select Filtered Episodes":[null,""],"Clear All":[null,""],"Change selected episodes to":[null,""],"Select Columns":[null,""],"Hide Episodes":[null,""],"Show Episodes":[null,""],"NFO":[null,""],"TBN":[null,""],"Episode":[null,""],"Absolute":[null,""],"Scene":[null,""],"Scene Absolute":[null,""],"File Name":[null,""],"Airdate":[null,""],"Download":[null,""],"Change the value here if scene numbering differs from the indexer episode numbering":[null,""],"Change the value here if scene absolute numbering differs from the indexer absolute numbering":[null,""],"Manual Search":[null,""],"Do you want to mark this episode as failed?":[null,""],"The episode release name will be added to the failed history, preventing it to be downloaded again.":[null,""],"Do you want to include the current episode quality in the search?":[null,""],"Choosing No will ignore any releases with the same episode quality as the one currently downloaded/snatched.":[null,""],"Download subtitle":[null,""],"Do you want to re-download the subtitle for this language?":[null,""],"It will overwrite your current subtitle":[null,""],"Format":[null,""],"Advanced":[null,""],"Main Settings":[null,""],"Show Location":[null,""],"Preferred Quality":[null,""],"Default Episode Status":[null,""],"this will set the status for future episodes.":[null,""],"this only applies to episode filenames and the contents of metadata files.":[null,""],"search for subtitles":[null,""],"Use SR Metdata":[null,""],"use SickRage metadata when searching for subtitle, this will override the autodiscovered metadata":[null,""],"pause this show (SickRage will not download episodes)":[null,""],"Format Settings":[null,""],"Air by date":[null,""],"check if the show is released as Show.03.02.2010 rather than Show.S02E03.":[null,""],"in case of an air date conflict between regular and special episodes, the later will be ignored.":[null,""],"check if the show is Anime and episodes are released as Show.265 rather than Show.S02E03":[null,""],"check if the show is a sporting or MMA event released as Show.03.02.2010 rather than Show.S02E03":[null,""],"Season folders":[null,""],"group episodes by season folder (uncheck to store in a single folder)":[null,""],"search by scene numbering (uncheck to search by indexer numbering)":[null,""],"use the DVD order instead of the air order":[null,""],"a \"Force Full Update\" is necessary, and if you have existing episodes you need to sort them manually.":[null,""],"comma-separated <i>e.g. \"word1,word2,word3</i>\"":[null,""],"search results with one or more words from this list will be ignored.":[null,""],"e.g. \"word1,word2,word3\"":[null,""],"search results with no words from this list will be ignored.":[null,""],"Scene Exception":[null,""],"this will affect episode search on NZB and torrent providers.":[null,""],"this list appends to the original show name.":[null,""],"WARNING logs":[null,""],"ERROR logs":[null,""],"There are no events to display.":[null,""],"Limit":[null,""],"Layout":[null,""],"HistoryLayout":[null,""],"Compact":[null,""],"Detailed":[null,""],"Time":[null,""],"Provider":[null,""],"Missing Provider":[null,""],"missing provider":[null,""],"Directory":[null,""],"Show Name (tvshow.nfo)":[null,""],"Indexer":[null,""],"Enter the folder containing the episode":[null,""],"Process Method to be used":[null,""],"Copy":[null,""],"Move":[null,""],"Hard Link":[null,""],"Symbolic Link":[null,""],"Symbolic Link Reversed":[null,""],"Force already Post Processed Dir/Files":[null,""],"Mark Dir/Files as priority download":[null,""],"(Check it to replace the file even if it exists at higher quality)":[null,""],"Delete files and folders":[null,""],"(Check it to delete files and folders like auto processing)":[null,""],"Don't use processing queue":[null,""],"(If checked this will return the result of the process here, but may be slow!)":[null,""],"Mark download as failed":[null,""],"Process":[null,""],"Download subtitles for this show?":[null,""],"use SickRage metadata when searching for subtitle, <br />this will override the autodiscovered metadata":[null,""],"Status for previously aired episodes":[null,""],"Status for all future episodes":[null,""],"Group episodes by season folder?":[null,""],"Is this show an Anime?":[null,""],"Is this show scene numbered?":[null,""],"Save Defaults":[null,""],"Use current values as the defaults":[null,""],"<p>Select your preferred fansub groups from the <b>Available Groups</b> and add them to the <b>Whitelist</b>. Add groups to the <b>Blacklist</b> to ignore them.</p>\n <p>The <b>Whitelist</b> is checked <i>before</i> the <b>Blacklist</b>.</p>\n <p>Groups are shown as <b>Name</b> | <b>Rating</b> | <b>Number of subbed episodes</b>.</p>\n <p>You may also add any fansub group not listed to either list manually.</p>\n <p>When doing this please note that you can only use groups listed on anidb for this anime.\n <br>If a group is not listed on anidb but subbed this anime, please correct anidb's data.</p>":[null,""],"Whitelist":[null,""],"Available Groups":[null,""],"Add to Whitelist":[null,""],"Add to Blacklist":[null,""],"Blacklist":[null,""],"Custom Group":[null,""],"Allowed Quality:":[null,""],"Preferred Quality:":[null,""],"Filter Show Name":[null,""],"Root":[null,""],"All":[null,""],"Clear Filter(s)":[null,""],"Poster":[null,""],"Small Poster":[null,""],"Banner":[null,""],"Simple":[null,""],"Next Episode":[null,""],"Progress":[null,""],"Direction":[null,""],"Ascending":[null,""],"Descending":[null,""],"Poster Size":[null,""],"Continuing":[null,""],"Ended":[null,""],"Total":[null,""],"Invalid date":[null,""],"No Network":[null,""],"Next Ep":[null,""],"Prev Ep":[null,""],"Show":[null,""],"Downloads":[null,""],"Active":[null,""],"loading":[null,""],"Loading...":[null,""],"<p><b><u>Preferred</u></b> qualities will replace those in <b><u>allowed</u></b>, even if they are lower.</p>":[null,""],"New":[null,""],"Set as Default":[null,""],"Remember me":[null,""],"Edit Selected":[null,""],"Subtitle":[null,""],"Default Ep Status":[null,""],"Update":[null,""],"Rescan":[null,""],"Rename":[null,""],"Search Subtitle":[null,""],"Force Metadata Regen":[null,""],"Snatched (Allowed)":[null,""],"Jump to Show":[null,""],"Force Backlog":[null,""],"Manage episodes with status":[null,""],"Manage":[null,""],"None of your episodes have status":[null,""],"Shows containing":[null,""],"episodes":[null,""],"Set checked shows/episodes to":[null,""],"Go":[null,""],"Select all":[null,""],"Clear all":[null,""],"Release":[null,""],"Backlog Search":[null,""],"Not in progress":[null,""],"In Progress":[null,""],"Daily Search":[null,""],"Find Propers Search":[null,""],"Propers search disabled":[null,""],"Subtitle Search":[null,""],"Subtitle search disabled":[null,""],"Search Queue":[null,""],"pending items":[null,""],"Daily":[null,""],"Manual":[null,""],"Changing any settings marked with (<span class=\"separator\">*</span>) will force a refresh of the selected shows.":[null,""],"Selected Shows":[null,""],"Root Directories":[null,""],"Current":[null,""],"Keep":[null,""],"Custom":[null,""],"Group episodes by season folder (set to \"No\" to store in a single folder).":[null,""],"Pause these shows (SickRage will not download episodes).":[null,""],"This will set the status for future episodes.":[null,""],"Search by scene numbering (set to \"No\" to search by indexer numbering).":[null,""],"Set if these shows are Anime and episodes are released as Show.265 rather than Show.S02E03":[null,""],"Set if these shows are sporting or MMA events released as Show.03.02.2010 rather than Show.S02E03.":[null,""],"In case of an air date conflict between regular and special episodes, the later will be ignored.":[null,""],"Set if these shows are released as Show.03.02.2010 rather than Show.S02E03.":[null,""],"Search for subtitles.":[null,""],"All of your episodes have {subsLanguage} subtitles.":[null,""],"Manage episodes without":[null,""],"Episodes without {subsLanguage} subtitles.":[null,""],"Episodes without {subtitleLanguage} (undefined) subtitles.":[null,""],"Download missed subtitles for selected episodes":[null,""],"Performing Restart":[null,""],"Waiting for SickRage to shut down":[null,""],"Waiting for SickRage to start again":[null,""],"Loading the default page":[null,""],"Error: The restart has timed out, perhaps something prevented SickRage from starting again?":[null,""],"Key":[null,""],"Missed":[null,""],"Today":[null,""],"Soon":[null,""],"Later":[null,""],"Subscribe":[null,""],"Date":[null,""],"View Paused":[null,""],"Hidden":[null,""],"Shown":[null,""],"Calendar":[null,""],"List":[null,""],"Ends":[null,""],"Next Ep Name":[null,""],"Run time":[null,""],"Indexers":[null,""],"No shows for this day":[null,""],"Airs":[null,""],"Plot":[null,""],"Show Update":[null,""],"Version Check":[null,""],"Proper Finder":[null,""],"Post Process":[null,""],"Subtitles Finder":[null,""],"Scheduler":[null,""],"Alive":[null,""],"Start Time":[null,""],"Cycle Time":[null,""],"Next Run":[null,""],"Last Run":[null,""],"Silent":[null,""],"True":[null,""],"N/A":[null,""],"Show id":[null,""],"Show name":[null,""],"Priority":[null,""],"Added":[null,""],"Queue type":[null,""],"LOW":[null,""],"NORMAL":[null,""],"HIGH":[null,""],"Disk Space":[null,""],"Free space":[null,""],"TV Download Directory":[null,""],"Media Root Directories":[null,""],"Preview of the proposed name changes":[null,""],"All Seasons":[null,""],"select all":[null,""],"Rename Selected":[null,""],"Cancel Rename":[null,""],"Old Location":[null,""],"New Location":[null,""],"Trakt API did not return any results, please check your config.":[null,""],"votes":[null,""],"Remove Show":[null,""],"Level":[null,""],"Filter":[null,""],"All non-absolute folder locations are relative to ":[null,""],"Manual Post-Processing":[null,""],"Episode Status Management":[null,""],"Update PLEX":[null,""],"Update KODI":[null,""],"Update Emby":[null,""],"Missed Subtitle Management":[null,""],"Help & Info":[null,""],"Backup & Restore":[null,""],"Tools":[null,""],"Support SickRage":[null,""],"View Errors":[null,""],"View Warnings":[null,""],"View Log":[null,""],"Check For Updates":[null,""],"Restart":[null,""],"Shutdown":[null,""],"Logout":[null,""],"Server Status":[null,""],"View overview of snatched episodes":[null,""],"Episodes Downloaded":[null,""],"Memory used":[null,""],"Load time":[null,""],"Branch":[null,""],"Now":[null,""]}}}} \ No newline at end of file +{"messages":{"domain":"messages","locale_data":{"messages":{"100":[null,""],"250":[null,""],"500":[null,""],"":{"domain":"messages","plural_forms":"nplurals=1; plural=0","lang":"vi_VN"},"Drama":[null,""],"Mystery":[null,""],"Science-Fiction":[null,""],"Crime":[null,""],"Action":[null,""],"Comedy":[null,""],"Thriller":[null,""],"Animation":[null,""],"Family":[null,""],"Fantasy":[null,""],"Adventure":[null,""],"Horror":[null,""],"Film-Noir":[null,""],"Sci-Fi":[null,""],"Romance":[null,""],"Sport":[null,""],"War":[null,""],"Biography":[null,""],"History":[null,""],"Music":[null,""],"Western":[null,""],"News":[null,""],"Sitcom":[null,""],"Reality-TV":[null,""],"Documentary":[null,""],"Game-Show":[null,""],"Musical":[null,""],"Talk-Show":[null,""],"Started Download":[null,""],"Download Finished":[null,""],"Subtitle Download Finished":[null,""],"SickRage Updated":[null,""],"SickRage Updated To Commit#: ":[null,""],"SickRage new login":[null,""],"New login from IP: {0}. http://geomaplookup.net/?ip={0}":[null,""],"Repeat":[null,""],"Repeat (Separated)":[null,""],"Extend":[null,""],"Extend (Limited)":[null,""],"Extend (Limited, E-prefixed)":[null,""],"Downloaded":[null,""],"Snatched":[null,""],"Snatched (Proper)":[null,""],"Failed":[null,""],"Snatched (Best)":[null,""],"Archived":[null,""],"Unknown":[null,""],"Unaired":[null,""],"Skipped":[null,""],"Wanted":[null,""],"Ignored":[null,""],"Subtitled":[null,""],"For best results please set the Download Station alias as":[null,""],"You can check this setting in the Synology DSM":[null,""],"Control Panel":[null,""],"Application Portal":[null,""],"Make sure you allow DSM to be embedded with iFrames too in":[null,""],"DSM Settings":[null,""],"Security":[null,""],"<No Filter>":[null,""],"Daily Searcher":[null,""],"Backlog":[null,""],"Show Updater":[null,""],"Check Version":[null,""],"Show Queue":[null,""],"Search Queue (All)":[null,""],"Search Queue (Daily Searcher)":[null,""],"Search Queue (Backlog)":[null,""],"Search Queue (Manual)":[null,""],"Search Queue (Retry/Failed)":[null,""],"Search Queue (RSS)":[null,""],"Find Propers":[null,""],"Postprocessor":[null,""],"Find Subtitles":[null,""],"Trakt Checker":[null,""],"Event":[null,""],"Error":[null,""],"Tornado":[null,""],"Thread":[null,""],"Main":[null,""],"Loading":[null,""],"New update found for SickRage, starting auto-updater":[null,""],"Update was successful":[null,""],"Update failed!":[null,""],"Backup":[null,""],"Config backup in progress...":[null,""],"Config backup successful, updating...":[null,""],"Config backup failed, aborting update":[null,""],"No update needed":[null,""],"Mako Error":[null,""],"Oops":[null,""],"Wrong API key used":[null,""],"Login":[null,""],"API Key not generated":[null,""],"API Builder":[null,""],"Schedule":[null,""],"Test 1":[null,""],"This is test number 1":[null,""],"Test 2":[null,""],"This is test number 2":[null,""],"You're using the {branch} branch. Please use 'master' unless specifically asked":[null,""],"Invalid show parameters":[null,""],"Invalid parameters":[null,""],"Episode couldn't be retrieved":[null,""],"Home":[null,""],"Show List":[null,""],"Error: Unsupported Request. Send jsonp request with 'callback' variable in the query string.":[null,""],"Success. Connected and authenticated":[null,""],"Authentication failed. SABnzbd expects":[null,""],"as authentication method":[null,""],"Unable to connect to host":[null,""],"SMS sent successfully":[null,""],"Problem sending SMS: {message}":[null,""],"Telegram notification succeeded. Check your Telegram clients to make sure it worked":[null,""],"Error sending Telegram notification: {message}":[null,""],"join notification succeeded. Check your join clients to make sure it worked":[null,""],"Error sending join notification: {message}":[null,""]," with password":[null,""],"Registered and Tested growl successfully {growl_host}":[null,""],"Registration and Testing of growl failed {growl_host}":[null,""],"Test prowl notice sent successfully":[null,""],"Test prowl notice failed":[null,""],"Boxcar2 notification succeeded. Check your Boxcar2 clients to make sure it worked":[null,""],"Error sending Boxcar2 notification":[null,""],"Pushover notification succeeded. Check your Pushover clients to make sure it worked":[null,""],"Error sending Pushover notification":[null,""],"Key verification successful":[null,""],"Unable to verify key":[null,""],"Tweet successful, check your twitter to make sure it worked":[null,""],"Error sending tweet":[null,""],"Please enter a valid account sid":[null,""],"Please enter a valid auth token":[null,""],"Please enter a valid phone sid":[null,""],"Please format the phone number as \"+1-###-###-####\"":[null,""],"Authorization successful and number ownership verified":[null,""],"Error sending sms":[null,""],"Slack message successful":[null,""],"Slack message failed":[null,""],"Discord message successful":[null,""],"Discord message failed":[null,""],"Test KODI notice sent successfully to {kodi_host}":[null,""],"Test KODI notice failed to {kodi_host}":[null,""],"Successful test notice sent to Plex Home Theater ... {plex_clients}":[null,""],"Test failed for Plex Home Theater ... {plex_clients}":[null,""],"Tested Plex Home Theater(s)":[null,""],"Successful test of Plex Media Server(s) ... {plex_servers}":[null,""],"Test failed, No Plex Media Server host specified":[null,""],"Test failed for Plex Media Server(s) ... {plex_servers}":[null,""],"Tested Plex Media Server host(s)":[null,""],"Tried sending desktop notification via libnotify":[null,""],"Test notice sent successfully to {emby_host}":[null,""],"Test notice failed to {emby_host}":[null,""],"Successfully started the scan update":[null,""],"Test failed to start the scan update":[null,""],"Test notice sent successfully to {nmj2_host}":[null,""],"Test notice failed to {nmj2_host}":[null,""],"Trakt Authorized":[null,""],"Trakt Not Authorized!":[null,""],"Test email sent successfully! Check inbox.":[null,""],"ERROR: {last_error}":[null,""],"Test NMA notice sent successfully":[null,""],"Test NMA notice failed":[null,""],"Pushalot notification succeeded. Check your Pushalot clients to make sure it worked":[null,""],"Error sending Pushalot notification":[null,""],"Pushbullet notification succeeded. Check your device to make sure it worked":[null,""],"Error sending Pushbullet notification":[null,""],"Status":[null,""],"Restarting SickRage":[null,""],"Update Failed":[null,""],"Update wasn't successful, not restarting. Check your log for more information.":[null,""],"Checking out branch":[null,""],"Already on branch":[null,""],"Invalid show ID: {show}":[null,""],"Show not in show list":[null,""],"Edit":[null,""],"This show is in the process of being downloaded - the info below is incomplete.":[null,""],"The information on this page is in the process of being updated.":[null,""],"The episodes below are currently being refreshed from disk":[null,""],"Currently downloading subtitles for this show":[null,""],"This show is queued to be refreshed.":[null,""],"This show is queued and awaiting an update.":[null,""],"This show is queued and awaiting subtitles download.":[null,""],"Resume":[null,""],"Pause":[null,""],"Remove":[null,""],"Re-scan files":[null,""],"Force Full Update":[null,""],"Update show in KODI":[null,""],"Update show in Emby":[null,""],"Hide specials":[null,""],"Show specials":[null,""],"Preview Rename":[null,""],"Download Subtitles":[null,""],"No scene exceptions":[null,""],"Invalid show ID":[null,""],"Unable to find the specified show":[null,""],"Unable to retreive Fansub Groups from AniDB.":[null,""],"Edit Show":[null,""],"Unable to refresh this show: {error}":[null,""],"New location <tt>{location}</tt> does not exist":[null,""],"Unable to update show: {error}":[null,""],"Unable to force an update on scene exceptions of the show.":[null,""],"Unable to force an update on scene numbering of the show.":[null,""],"{num_errors:d} error{plural} while saving changes:":[null,""],"{show_name} has been {paused_resumed}":[null,""],"resumed":[null,""],"paused":[null,""],"{show_name} has been {deleted_trashed} {was_deleted}":[null,""],"deleted":[null,""],"trashed":[null,""],"(media untouched)":[null,""],"(with all related media)":[null,""],"Unable to refresh this show.":[null,""],"Unable to update this show.":[null,""],"Library update command sent to KODI host(s)): {kodi_hosts}":[null,""],"Unable to contact one or more KODI host(s)): {kodi_hosts}":[null,""],"Library update command sent to Plex Media Server host: {plex_server}":[null,""],"Unable to contact Plex Media Server host: {plex_server}":[null,""],"Library update command sent to Emby host: {emby_host}":[null,""],"Unable to contact Emby host: {emby_host}":[null,""],"You must specify a show and at least one episode":[null,""],"Invalid status":[null,""],"Backlog was automatically started for the following seasons of <b>{show_name}</b>":[null,""],"Season":[null,""],"Backlog started":[null,""],"Retrying Search was automatically started for the following season of <b>{show_name}</b>":[null,""],"Retry Search started":[null,""],"You must specify a show":[null,""],"Can't rename episodes when the show dir is missing.":[null,""],"New subtitles downloaded: {new_subtitle_languages}":[null,""],"No subtitles downloaded":[null,""],"IRC":[null,""],"Could not load news from the repo. [Click here for news.md])({news_url})":[null,""],"The was a problem connecting to github, please refresh and try again":[null,""],"Could not load changes from the repo. [Click here for CHANGES.md]({changes_url})":[null,""],"Changelog":[null,""],"Post Processing":[null,""],"Add Shows":[null,""],"No folders selected.":[null,""],"New Show":[null,""],"Trending Shows":[null,""],"Popular Shows":[null,""],"Most Anticipated Shows":[null,""],"Most Collected Shows":[null,""],"Most Watched Shows":[null,""],"Most Played Shows":[null,""],"Recommended Shows":[null,""],"New Shows":[null,""],"Season Premieres":[null,""],"Existing Show":[null,""],"No root directories setup, please go back and add one.":[null,""],"Show added":[null,""],"Adding the specified show {show_name}":[null,""],"Missing params, no Indexer ID or folder: {show_to_add} and {root_dir}/{show_path}":[null,""],"Unknown error. Unable to add show due to problem with show selection.":[null,""],"Unable to add show":[null,""],"Folder {show_dir} exists already":[null,""],"Unable to create the folder {show_dir}, can't add the show":[null,""],"Adding the specified show into {show_dir}":[null,""],"Shows Added":[null,""],"Automatically added {num_shows} from their existing metadata files":[null,""],"Mass Update":[null,""],"Episode Overview":[null,""],"Missing Subtitles":[null,""],"Backlog Overview":[null,""],"Mass Edit":[null,""],"Unable to update show: {excption_format}":[null,""],"Unable to refresh show {show_name}: {excption_format}":[null,""],"Errors encountered":[null,""],"Updates":[null,""],"Refreshes":[null,""],"Renames":[null,""],"Subtitles":[null,""],"The following actions were queued":[null,""],"Failed Downloads":[null,""],"Manage Searches":[null,""],"Backlog search started":[null,""],"Daily search started":[null,""],"Find propers search started":[null,""],"Subtitle search started":[null,""],"Remove Selected":[null,""],"Clear History":[null,""],"Trim History":[null,""],"Selected history entries removed":[null,""],"History cleared":[null,""],"Removed history entries older than 30 days":[null,""],"General":[null,""],"Backup/Restore":[null,""],"Search Settings":[null,""],"Search Providers":[null,""],"Subtitles Settings":[null,""],"Notifications":[null,""],"Anime":[null,""],"SickRage Configuration":[null,""],"Config - Shares":[null,""],"Windows Shares Configuration":[null,""],"Saved Shares":[null,""],"Your Windows share settings have been saved":[null,""],"Config - General":[null,""],"General Configuration":[null,""],"Saved Defaults":[null,""],"Your \"add show\" defaults have been set to your current selections.":[null,""],"Unable to create directory {directory}, log directory not changed.":[null,""],"Unable to create directory {directory}, https cert directory not changed.":[null,""],"Unable to create directory {directory}, https key directory not changed.":[null,""],"Error(s) Saving Configuration":[null,""],"Configuration Saved":[null,""],"Config - Backup/Restore":[null,""],"Config - Episode Search":[null,""],"Config - Post Processing":[null,""],"Unpacking Not Supported, disabling unpack setting":[null,""],"You tried saving an invalid normal naming config, not saving your naming settings":[null,""],"You tried saving an invalid anime naming config, not saving your naming settings":[null,""],"Config - Providers":[null,""],"No Provider Name specified":[null,""],"No Provider Url specified":[null,""],"No Provider Api key specified":[null,""],"Config - Notifications":[null,""],"Config - Subtitles":[null,""],"Config - Anime":[null,""],"Clear Errors":[null,""],"Clear Warnings":[null,""],"Submit Errors":[null,""],"Logs & Errors":[null,""],"Log File":[null,""],"Logs":[null,""],"This is a test notification from SickRage":[null,""],"Choose Directory":[null,""],"Select log file folder location":[null,""],"Select CSS file":[null,""],"Select backup folder to save to":[null,""],"Select backup files to restore":[null,""],"Please fill out the necessary fields above.":[null,""],"<b>Step 1:</b> Confirm Authorization":[null,""],"Check blacklist name; the value needs to be a trakt slug":[null,""],"You must provide a recipient email address!":[null,""],"You didn't supply a Pushbullet api key":[null,""],"Don't forget to save your new pushbullet settings.":[null,""],"Select TV Download Directory":[null,""],"Select Unpack Directory":[null,""],"This pattern is invalid.":[null,""],"This pattern would be invalid without the folders, using it will force \"Season Folders\" on for all shows.":[null,""],"This pattern is valid.":[null,""],"Select .nzb black hole/watch location":[null,""],"Select .torrent black hole/watch location":[null,""],"Select .torrent download location":[null,""],"Minimum seeding time is":[null,""],"URL to your uTorrent client (e.g. http://localhost:8000)":[null,""],"Stop seeding when inactive for":[null,""],"URL to your Transmission client (e.g. http://localhost:9091)":[null,""],"URL to your Deluge client (e.g. http://localhost:8112)":[null,""],"IP or Hostname of your Deluge Daemon (e.g. scgi://localhost:58846)":[null,""],"URL to your Synology DS client (e.g. http://localhost:5000)":[null,""],"URL to your rTorrent client (e.g. scgi://localhost:5000 <br> or https://localhost/rutorrent/plugins/httprpc/action.php)":[null,""],"URL to your qBittorrent client (e.g. http://localhost:8080)":[null,""],"URL to your MLDonkey (e.g. http://localhost:4080)":[null,""],"URL to your putio client (e.g. http://localhost:8080)":[null,""],"<a herf=\"https://app.put.io/oauth/apps/new\" target=\"_blank\"> Create a new OAuth app for put.io</a>":[null,""],"Put.io Parent Folder":[null,""],"Put.io OAuth Token":[null,""],"Show Episodes":[null,""],"Hide Episodes":[null,""],"Select Show Location":[null,""],"Select Unprocessed Episode Folder":[null,""],"DELETED":[null,""],"Resume updating the log on this page.":[null,""],"Pause updating the log on this page.":[null,""],"searching {searchingFor}...":[null,""],"search timed out, try again or try another indexer":[null,""],"loading folders...":[null,""],"Loading...":[null,""],"You have reached this page by accident, please check the url.":[null,""],"A mako error has occured.<br>\n If this happened during an update a simple page refresh may be the solution.<br>\n Mako errors that happen during updates may be a one time error if there were significant ui changes.":[null,""],"Show/Hide Error":[null,""],"Add New Show":[null,""],"For shows that you haven't downloaded yet, this option finds a show on theTVDB.com, creates a directory for it's episodes, and adds it to SickRage.":[null,""],"Add From Trakt Lists":[null,""],"For shows that you haven't downloaded yet, this option lets you choose from a show from one of the Trakt lists to add to SickRage.":[null,""],"Add From IMDB's Popular Shows":[null,""],"View IMDB's list of the most popular shows. This feature uses IMDB's MOVIEMeter algorithm to identify popular TV Series.":[null,""],"Add Existing Shows":[null,""],"Use this option to add shows that already have a folder created on your hard drive. SickRage will scan your existing metadata/episodes and add the show accordingly.":[null,""],"Add Existing Show":[null,""],"Manage Directories":[null,""],"Customize Options":[null,""],"SickRage can add existing shows, using the current options, by using locally stored NFO/XML metadata to eliminate user interaction. If you would rather have SickRage prompt you to customize each show, then use the checkbox below.":[null,""],"Prompt me to set settings for each show":[null,""],"Displaying folders within these directories which aren't already added to SickRage":[null,""],"Submit":[null,""],"Find a show on theTVDB":[null,""],"Show retrieved from existing metadata":[null,""],"All Indexers":[null,""],"Search":[null,""],"This will only affect the language of the retrieved metadata file contents and episode filenames.":[null,""],"This <b>DOES NOT</b> allow SickRage to download non-english TV episodes!":[null,""],"Pick the parent folder":[null,""],"Pre-chosen Destination Folder":[null,""],"Customize options":[null,""],"Add Show":[null,""],"Skip Show":[null,""],"Sort By":[null,""],"Name":[null,""],"Original":[null,""],"Votes":[null,""],"Rating":[null,""],"Rating > Votes":[null,""],"Sort Order":[null,""],"Asc":[null,""],"Desc":[null,""],"Fetching of IMDB Data failed. Are you online?":[null,""],"Exception":[null,""],"Select Trakt List":[null,""],"Most Anticipated":[null,""],"Trending":[null,""],"Popular":[null,""],"Most Watched":[null,""],"Most Played":[null,""],"Most Collected":[null,""],"Recommended":[null,""],"Toggle navigation":[null,""],"Profile":[null,""],"JSONP":[null,""],"Back to SickRage":[null,""],"Parameters":[null,""],"Required":[null,""],"Description":[null,""],"Type":[null,""],"Default value":[null,""],"Allowed values":[null,""],"Playground":[null,""],"Clear":[null,""],"Yes":[null,""],"No":[null,""],"season":[null,""],"episode":[null,""],"Python Version":[null,""],"SSL Version":[null,""],"OS":[null,""],"Locale":[null,""],"User":[null,""],"Program Folder":[null,""],"Config File":[null,""],"Database File":[null,""],"Cache Folder":[null,""],"Log Folder":[null,""],"Arguments":[null,""],"Web Root":[null,""],"Website":[null,""],"Wiki":[null,""],"Source":[null,""],"IRC Chat":[null,""],"AnimeDB Settings":[null,""],"Look & Feel":[null,""],"AniDB is non-profit database of anime information that is freely open to the public":[null,""],"Enable":[null,""],"should SickRage use data from AniDB?":[null,""],"AniDB Username":[null,""],"username of your AniDB account":[null,""],"AniDB Password":[null,""],"password of your AniDB account":[null,""],"AniDB MyList":[null,""],"do you want to add the PostProcessed episodes to the MyList?":[null,""],"Look and Feel":[null,""],"How should the anime functions show and behave.":[null,""],"Split show lists":[null,""],"separate anime and normal shows in groups":[null,""],"Split in tabs":[null,""],"use tabs for when splitting show lists":[null,""],"Restore":[null,""],"Backup your main database file and config.":[null,""],"Select the folder you wish to save your backup file to":[null,""],"Restore your main database file and config.":[null,""],"Select the backup file you wish to restore":[null,""],"Misc":[null,""],"Interface":[null,""],"Advanced Settings":[null,""],"Startup options. Indexer options. Log and show file locations.":[null,""],"Some options may require a manual restart to take effect.":[null,""],"Default Indexer Language":[null,""],"for adding shows and metadata providers":[null,""],"Launch browser":[null,""],"open the SickRage home page on startup":[null,""],"Initial page":[null,""],"Shows":[null,""],"when launching SickRage interface":[null,""],"Choose hour to update shows":[null,""],"with information such as next air dates, show ended, etc. Use 15 for 3pm, 4 for 4am etc.":[null,""],"note":[null,""],"minutes are randomized each time SickRage is started":[null,""],"Send to trash for actions":[null,""],"when using show \"Remove\" and delete files":[null,""],"on scheduled deletes of the oldest log files":[null,""],"selected actions use trash (recycle bin) instead of the default permanent delete":[null,""],"Log file folder location":[null,""],"Number of Log files saved":[null,""],"number of log files saved when rotating logs (default: 5) (REQUIRES RESTART)":[null,""],"Size of Log files saved":[null,""],"maximum size in MB of the log file (default: 1MB) (REQUIRES RESTART)":[null,""],"Use initial indexer set to":[null,""],"as the default selection when adding new shows":[null,""],"Timeout show indexer at":[null,""],"seconds of inactivity when finding new shows (default:20)":[null,""],"Show root directories":[null,""],"where the files of shows are located":[null,""],"Save Changes":[null,""],"Options for software updates.":[null,""],"Check software updates":[null,""],"and display notifications when updates are available. Checks are run on startup and at the frequency set below*":[null,""],"Automatically update":[null,""],"fetch and install software updates. Updates are run on startup and in the background at the frequency set below*":[null,""],"Check the server every*":[null,""],"hours for software updates (default:1)":[null,""],"Notify on software update":[null,""],"send a message to all enabled notifiers when SickRage has been updated":[null,""],"User Interface":[null,""],"Options for visual appearance.":[null,""],"Interface Language":[null,""],"System Language":[null,""],"for appearance to take effect, save then refresh your browser":[null,""],"Display theme":[null,""],"Dark":[null,""],"Light":[null,""],"Use a background image":[null,""],"use a custom image as background for SickRage":[null,""],"Background Path":[null,""],"Path to the background image":[null,""],"Show fanart in the background":[null,""],"on the show summary page":[null,""],"Fanart transparency":[null,""],"transparency of the fanart in the background":[null,""],"Use a custom stylesheet file":[null,""],"use a custom .css file to style SickRage (for advanced users)":[null,""],"Stylesheet File Path":[null,""],"Path to the stylesheet (.css) file":[null,""],"Show all seasons":[null,""],"Sort with \"The\", \"A\", \"An\"":[null,""],"include articles (\"The\", \"A\", \"An\") when sorting show lists":[null,""],"Missed episodes range":[null,""],"set the range in days of the missed episodes in the Schedule page":[null,""],"Display fuzzy dates":[null,""],"move absolute dates into tooltips and display e.g. \"Last Thu\", \"On Tue\"":[null,""],"Trim zero padding":[null,""],"remove the leading number \"0\" shown on hour of day, and date of month":[null,""],"Date style":[null,""],"Use System Default":[null,""],"Time style":[null,""],"seconds are only shown on the History page":[null,""],"Timezone":[null,""],"Local":[null,""],"Network":[null,""],"display dates and times in either your timezone or the shows network timezone":[null,""],"use local timezone to start searching for episodes minutes after show ends (depends on your dailysearch frequency)":[null,""],"Download url":[null,""],"URL where the shows can be downloaded.":[null,""],"Web Interface":[null,""],"it is recommended that you enable a username and password to secure SickRage from being tampered with remotely.":[null,""],"these options require a manual restart to take effect.":[null,""],"API key":[null,""],"used to give 3rd party programs limited access to SickRage":[null,""],"you can try all the features of the API":[null,""],"here":[null,""],"HTTP logs":[null,""],"enable logs from the internal Tornado web server":[null,""],"HTTP username":[null,""],"set blank for no login":[null,""],"HTTP password":[null,""],"blank = no authentication":[null,""],"HTTP port":[null,""],"web port to browse and access SickRage (default:8081)":[null,""],"Notify on login":[null,""],"enable to be notified when a new login happens in webserver":[null,""],"Listen on IPv6":[null,""],"attempt binding to any available IPv6 address":[null,""],"Enable HTTPS":[null,""],"enable access to the web interface using a HTTPS address":[null,""],"HTTPS certificate":[null,""],"file name or path to HTTPS certificate":[null,""],"HTTPS key":[null,""],"file name or path to HTTPS key":[null,""],"Reverse proxy headers":[null,""],"accept the following reverse proxy headers (advanced)...":[null,""],"(X-Forwarded-For, X-Forwarded-Host, and X-Forwarded-Proto)":[null,""],"CPU throttling":[null,""],"Normal (default). High is lower and Low is higher CPU use":[null,""],"Anonymous redirect":[null,""],"backlink protection via anonymizer service, must end in \"?\"":[null,""],"Enable debug":[null,""],"enable debug logs":[null,""],"Verify SSL Certs":[null,""],"verify SSL Certificates (Disable this for broken SSL installs (Like QNAP))":[null,""],"No Restart":[null,""],"only shutdown when restarting SR":[null,""],"only select this when you have external software restarting SR automatically when it stops (like FireDaemon)":[null,""],"Encrypt passwords":[null,""],"in the <code>config.ini</code> file":[null,""],"warning":[null,""],"passwords must only contain":[null,""],"ASCII characters":[null,""],"Unprotected calendar":[null,""],"allow subscribing to the calendar without user and password":[null,""],"some services like Google Calendar only work this way":[null,""],"Google Calendar Icons":[null,""],"show an icon next to exported calendar events in Google Calendar":[null,""],"Proxy host":[null,""],"blank to disable or proxy to use when connecting to providers":[null,""],"also use global proxy setting for indexers (tvdb, xem, anidb, etc.)":[null,""],"Skip Remove Detection":[null,""],"skip detection of removed files":[null,""],"if disabled the episode will be set to the default deleted status":[null,""],"Default deleted episode status":[null,""],"define the status to be set for media file that has been deleted.":[null,""],"Archived option will keep previous downloaded quality":[null,""],"example: Downloaded (1080p WEB-DL) ==> Archived (1080p WEB-DL)":[null,""],"Options for github related features.":[null,""],"Branch version":[null,""],"error: No branches found.":[null,""],"select branch to use (restart required)":[null,""],"Authorization Type":[null,""],"Username and password":[null,""],"Personal access token":[null,""],"You must use a personal access token if you're using \"two-factor authentication\" on GitHub.":[null,""],"GitHub username":[null,""],"*** (REQUIRED FOR SUBMITTING ISSUES) ***":[null,""],"GitHub password":[null,""],"GitHub personal access token":[null,""],"Generate Token":[null,""],"Manage Tokens":[null,""],"GitHub remote for branch":[null,""],"access repo configured remotes (save then refresh browser)":[null,""],"default":[null,""],"origin":[null,""],"Git executable path":[null,""],"only needed if OS is unable to locate git from env":[null,""],"Git reset":[null,""],"removes untracked files and performs a hard reset on git branch automatically to help resolve update issues":[null,""],"Home Theater / NAS":[null,""],"Devices":[null,""],"Social":[null,""],"A free and open source cross-platform media center and home entertainment system software with a 10-foot user interface designed for the living-room TV.":[null,""],"send KODI commands?":[null,""],"Always on":[null,""],"log errors when unreachable?":[null,""],"Notify on snatch":[null,""],"send a notification when a download starts?":[null,""],"Notify on download":[null,""],"send a notification when a download finishes?":[null,""],"Notify on subtitle download":[null,""],"send a notification when subtitles are downloaded?":[null,""],"Update library":[null,""],"update KODI library when a download finishes?":[null,""],"Full library update":[null,""],"perform a full library update if update per-show fails?":[null,""],"Only update first host":[null,""],"only send library updates to the first active host?":[null,""],"KODI IP:Port":[null,""],"host running KODI (eg. 192.168.1.100:8080)":[null,""],"(multiple host strings must be separated by commas)":[null,""],"Username":[null,""],"username for your KODI server (blank for none)":[null,""],"Password":[null,""],"password for your KODI server (blank for none)":[null,""],"Click below to test.":[null,""],"Experience your media on a visually stunning, easy to use interface on your Mac connected to your TV. Your media library has never looked this good!":[null,""],"For sending notifications to Plex Home Theater (PHT) clients, use the KODI notifier with port <b>3005</b>.":[null,""],"send Plex Media Server library updates?":[null,""],"Plex Media Server Auth Token":[null,""],"auth token used by Plex":[null,""],"Update Library":[null,""],"update Plex Media Server library when a download finishes":[null,""],"Plex Media Server IP:Port":[null,""],"one or more hosts running Plex Media Server<br/>(eg. 192.168.1.1:32400, 192.168.1.2:32400)":[null,""],"HTTPS":[null,""],"use https for plex media server requests?":[null,""],"Click below to test Plex Media Server(s)":[null,""],"Test Plex Media Server":[null,""],"Plex Home Theater":[null,""],"send Plex Home Theater notifications?":[null,""],"Plex Home Theater IP:Port":[null,""],"one or more hosts running Plex Home Theater<br>(eg. 192.168.1.100:3000, 192.168.1.101:3000)":[null,""],"Click below to test Plex Home Theater(s)":[null,""],"Test Plex Home Theater":[null,""],"some Plex Home Theaters <b class=\"boldest\">do not</b> support notifications e.g. Plexapp for Samsung TVs":[null,""],"Emby":[null,""],"A home media server built using other popular open source technologies.":[null,""],"send update commands to Emby?":[null,""],"Emby IP:Port":[null,""],"host running Emby (eg. 192.168.1.100:8096)":[null,""],"Emby API Key":[null,""],"Networked Media Jukebox":[null,""],"The Networked Media Jukebox, or NMJ, is the official media jukebox interface made available for the Popcorn Hour 200-series.":[null,""],"send update commands to NMJ?":[null,""],"Popcorn IP address":[null,""],"IP address of Popcorn 200-series (eg. 192.168.1.100)":[null,""],"Get settings":[null,""],"Get Settings":[null,""],"the Popcorn Hour device must be powered on and NMJ running.":[null,""],"NMJ database":[null,""],"automatically filled via the 'Get Settings' button.":[null,""],"NMJ mount url":[null,""],"Networked Media Jukebox v2":[null,""],"The Networked Media Jukebox, or NMJv2, is the official media jukebox interface made available for the Popcorn Hour 300 & 400-series.":[null,""],"send update commands to NMJv2?":[null,""],"IP address of Popcorn 300/400-series (eg. 192.168.1.100)":[null,""],"Database location":[null,""],"Database instance":[null,""],"adjust this value if the wrong database is selected.":[null,""],"Find database":[null,""],"Find Database":[null,""],"the Popcorn Hour device must be powered on.":[null,""],"NMJv2 database":[null,""],"automatically filled via the 'Find Database' buttons.":[null,""],"Synology":[null,""],"The Synology DiskStation NAS.":[null,""],"Synology Indexer is the daemon running on the Synology NAS to build its media database.":[null,""],"send Synology notifications?":[null,""],"requires SickRage to be running on your Synology NAS.":[null,""],"Synology Indexer":[null,""],"Synology Notifier is the notification system of Synology DSM":[null,""],"send notifications to the Synology Notifier?":[null,""],"pyTivo":[null,""],"pyTivo is both an HMO and GoBack server. This notifier will load the completed downloads to your Tivo.":[null,""],"send notifications to pyTivo?":[null,""],"requires the downloaded files to be accessible by pyTivo.":[null,""],"pyTivo IP:Port":[null,""],"host running pyTivo (eg. 192.168.1.1:9032)":[null,""],"pyTivo share name":[null,""],"value used in pyTivo Web Configuration to name the share.":[null,""],"Tivo name":[null,""],"(Messages & Settings > Account & System Information > System Information > DVR name)":[null,""],"Growl":[null,""],"A cross-platform unobtrusive global notification system.":[null,""],"send Growl notifications?":[null,""],"Growl IP:Port":[null,""],"host running Growl (eg. 192.168.1.100:23053)":[null,""],"may leave blank if SickRage is on the same host.":[null,""],"otherwise Growl <b>requires</b> a password to be used.":[null,""],"Click below to register and test Growl, this is required for Growl notifications to work.":[null,""],"Register Growl":[null,""],"Prowl":[null,""],"A Growl client for iOS.":[null,""],"send Prowl notifications?":[null,""],"Prowl Message Title":[null,""],"Global Prowl API key(s)":[null,""],"Prowl API(s) listed here, separated by commas if applicable, will<br> receive notifications for <b>all</b> shows. Your Prowl API key is available at:":[null,""],"(this field may be blank except when testing.)":[null,""],"Show notification list":[null,""],"-- Select a Show --":[null,""],"Configure per-show notifications here by entering Prowl API key(s), separated by commas, '\n 'after selecting a show in the drop-down box. Be sure to activate the 'Save for this show' '\n 'button below after each entry.":[null,""],"Save for this show":[null,""],"Prowl priority":[null,""],"Very Low":[null,""],"Moderate":[null,""],"Normal":[null,""],"High":[null,""],"Emergency":[null,""],"priority of Prowl messages from SickRage.":[null,""],"Libnotify":[null,""],"The standard desktop notification API for Linux/*nix systems. This notifier will only function if the pynotify module is installed (Ubuntu/Debian package <a href=\"apt:python-notify\">python-notify</a>).":[null,""],"send Libnotify notifications?":[null,""],"Pushover":[null,""],"Pushover makes it easy to send real-time notifications to your Android and iOS devices.":[null,""],"send Pushover notifications?":[null,""],"Pushover key":[null,""],"user key of your Pushover account":[null,""],"Pushover API key":[null,""],"click here":[null,""]," to create a Pushover API key":[null,""],"Pushover devices":[null,""],"comma separated list of pushover devices you want to send notifications to":[null,""],"Pushover notification sound":[null,""],"Bike":[null,""],"Bugle":[null,""],"Cash Register":[null,""],"Classical":[null,""],"Cosmic":[null,""],"Falling":[null,""],"Gamelan":[null,""],"Incoming":[null,""],"Intermission":[null,""],"Magic":[null,""],"Mechanical":[null,""],"Piano Bar":[null,""],"Siren":[null,""],"Space Alarm":[null,""],"Tug Boat":[null,""],"Alien Alarm (long)":[null,""],"Climb (long)":[null,""],"Persistent (long)":[null,""],"Pushover Echo (long)":[null,""],"Up Down (long)":[null,""],"None (silent)":[null,""],"Device specific":[null,""],"choose notification sound to use":[null,""],"Pushover priority":[null,""],"Choose priority to use":[null,""],"Boxcar 2":[null,""],"Read your messages where and when you want them!":[null,""],"send Boxcar notifications?":[null,""],"Boxcar2 access token":[null,""],"access token for your Boxcar account.":[null,""],"NMA":[null,""],"Notify My Android":[null,""],"Notify My Android is a Prowl-like Android App and API that offers an easy way to send notifications from your application directly to your Android device.":[null,""],"send NMA notifications?":[null,""],"NMA API key":[null,""],"(multiple keys must be separated by commas, up to a maximum of 5)":[null,""],"NMA priority":[null,""],"priority of NMA messages from SickRage.":[null,""],"Pushalot":[null,""],"Pushalot is a platform for receiving custom push notifications to connected devices running Windows Phone or Windows 8.":[null,""],"send Pushalot notifications ?":[null,""],"Pushalot authorization token":[null,""],"authorization token of your Pushalot account.":[null,""],"Pushbullet":[null,""],"Pushbullet is a platform for receiving custom push notifications to connected devices running Android/iOS and desktop browsers such as Chrome, Firefox or Opera.":[null,""],"send Pushbullet notifications?":[null,""],"Pushbullet API key":[null,""],"API key of your Pushbullet account":[null,""],"Pushbullet devices":[null,""],"Update device list":[null,""],"Pushbullet channels":[null,""],"Free Mobile":[null,""],"Free Mobile is a famous French cellular network provider.<br> It provides to their customer a free SMS API.":[null,""],"send SMS notifications?":[null,""],"send a SMS when a download starts?":[null,""],"send a SMS when a download finishes?":[null,""],"send a SMS when subtitles are downloaded?":[null,""],"Free Mobile customer ID":[null,""],"it's your Free Mobile customer ID (8 digits)":[null,""],"Free Mobile API key":[null,""],"find your API key in your customer portal.":[null,""],"Click below to test your settings.":[null,""],"Telegram":[null,""],"Telegram is a cloud-based instant messaging service.":[null,""],"send Telegram notifications?":[null,""],"send a message when a download starts?":[null,""],"send a message when a download finishes?":[null,""],"send a message when subtitles are downloaded?":[null,""],"User/group ID":[null,""],"contact @myidbot on Telegram to get an ID":[null,""],"Bot API token":[null,""],"contact @BotFather on Telegram to set up one":[null,""],"Join":[null,""],"Join all of your devices together!":[null,""],"send Join notifications?":[null,""],"Device ID":[null,""],"per device specific id":[null,""]," to create a Join API key":[null,""],"Twilio":[null,""],"Twilio is a webservice API that allows you to communicate directly with a mobile number. This notifier will send a text directly to your mobile device.":[null,""],"should SickRage text your mobile device?":[null,""],"Twilio Account SID":[null,""],"account SID of your Twilio account.":[null,""],"Twilio Auth Token":[null,""],"Twilio Phone SID":[null,""],"phone SID that you would like to send the sms from":[null,""],"Your phone number":[null,""],"phone number that will receive the sms. Please use the format +1-###-###-####":[null,""],"Twitter":[null,""],"A social networking and microblogging service, enabling its users to send and read other users' messages called tweets.":[null,""],"should SickRage post tweets on Twitter?":[null,""],"you may want to use a secondary account.":[null,""],"send direct message":[null,""],"send a notification via Direct Message, not via status update":[null,""],"send DM to":[null,""],"Twitter account to send Direct Messages to (must follow you)":[null,""],"Step One":[null,""],"Request Authorization":[null,""],"Click the \"Request Authorization\" button.<br> This will open a new page containing an auth key.<br> <b>note:</b> if nothing happens check your popup blocker.":[null,""],"Step Two":[null,""],"Enter the key Twitter gave you below, and click \"Verify Key\".":[null,""],"Trakt":[null,""],"Trakt helps keep a record of what TV shows and movies you are watching. Based on your favorites, Trakt recommends additional shows and movies you'll enjoy!":[null,""],"send Trakt.tv notifications?":[null,""],"username of your Trakt account.":[null,""],"Trakt PIN":[null,""],"Get Trakt PIN":[null,""],"PIN code to authorize SickRage to access Trakt on your behalf.":[null,""],"API Timeout":[null,""],"seconds to wait for Trakt API to respond. (Use 0 to wait forever)":[null,""],"Default indexer":[null,""],"Sync libraries":[null,""],"sync your SickRage show library with your trakt show library.":[null,""],"Remove Episodes From Collection":[null,""],"remove an episode from your Trakt Collection if it is not in your SickRage Library.":[null,""],"Sync watchlist":[null,""],"sync your SickRage show watchlist with your trakt show watchlist (either Show and Episode).":[null,""],"episode will be added on watch list when wanted or snatched and will be removed when downloaded ":[null,""],"Watchlist add method":[null,""],"Skip All":[null,""],"Download Pilot Only":[null,""],"Get whole show":[null,""],"method in which to download episodes for new shows.":[null,""],"Remove episode":[null,""],"remove an episode from your watchlist after it is downloaded.":[null,""],"Remove series":[null,""],"remove the whole series from your watchlist after any download.":[null,""],"Remove watched show":[null,""],"remove the show from sickrage if it's ended and completely watched":[null,""],"Start paused":[null,""],"shows grabbed from your trakt watchlist start paused.":[null,""],"Trakt blackList name":[null,""],"name (slug) of list on Trakt for blacklisting show on 'Add Trending Show' & 'Add Recommended Shows' pages":[null,""],"Email":[null,""],"Allows configuration of email notifications on a per show basis.":[null,""],"send email notifications?":[null,""],"SMTP host":[null,""],"hostname of your SMTP email server.":[null,""],"SMTP port":[null,""],"port number used to connect to your SMTP host.":[null,""],"SMTP from":[null,""],"sender email address, some hosts require a real address.":[null,""],"Use TLS":[null,""],"check to use TLS encryption.":[null,""],"SMTP user":[null,""],"(optional) your SMTP server username.":[null,""],"SMTP password":[null,""],"(optional) your SMTP server password.":[null,""],"Global email list":[null,""],"email addresses listed here, separated by commas if applicable, will<br> receive notifications for <b>all</b> shows.":[null,""],"(This field may be blank except when testing.)":[null,""],"Email Subject":[null,""],"use a custom subject for some privacy protection?":[null,""],"(leave blank for the default SickRage subject)":[null,""],"configure per-show notifications here by entering email address(es), separated by commas,":[null,""],"after selecting a show in the drop-down box. Be sure to activate the 'Save for this show'":[null,""],"button below after each entry.":[null,""],"Slack":[null,""],"Slack brings all your communication together in one place. It's real-time messaging, archiving and search for modern teams.":[null,""],"should SickRage post messages on Slack?":[null,""],"Slack Incoming Webhook":[null,""],"Discord":[null,""],"All-in-one voice and text chat for gamers that's free, secure, and works on both your desktop and phone.":[null,""],"Should SickRage post messages on Discord?":[null,""],"Discord Incoming Webhook":[null,""],"Create webhook under channel settings.":[null,""],"Discord Bot Name":[null,""],"Blank will use webhook default Name.":[null,""],"Discord Avatar URL":[null,""],"Blank will use webhook default Avatar.":[null,""],"Discord TTS":[null,""],"Send notifications using text-to-speech":[null,""],"Post-Processing":[null,""],"Episode Naming":[null,""],"Metadata":[null,""],"Settings that dictate how SickRage should process completed downloads.":[null,""],"enable the automatic post processor to scan and process any files in your Post Processing Dir":[null,""],"do not use if you use an external Post Processing script":[null,""],"Post Processing Dir":[null,""],"the folder where your download client puts the completed TV downloads.":[null,""],"please use seperate downloading and completed folders in your download client if possible.":[null,""],"Processing Method":[null,""],"what method should be used to put files into the library?":[null,""],"if you keep seeding torrents after they finish, please avoid the 'move' processing method to prevent errors.":[null,""],"Auto Post-Processing Frequency":[null,""],"time in minutes to check for new files to auto post-process (min 10)":[null,""],"Postpone post processing":[null,""],"wait to process a folder if sync files are present.":[null,""],"Sync File Extensions":[null,""],"comma seperated list of extensions or filename globs SickRage ignores when Post Processing":[null,""],"Rename Episodes":[null,""],"rename episode using the Episode Naming settings?":[null,""],"Create missing show directories":[null,""],"create missing show directories when they get deleted":[null,""],"Add shows without directory":[null,""],"add shows without creating a directory (not recommended)":[null,""],"Move associated files":[null,""],"move associated (srt/srr/sfv/etc) files while post processing?":[null,""],"Rename .nfo file":[null,""],"rename the original .nfo file to .nfo-orig to avoid conflicts?":[null,""],"Associated file extensions":[null,""],"comma separated list of associated file extensions SickRage should keep while post processing.":[null,""],"leaving it empty means no associated files will be post processed":[null,""],"Delete non associated files":[null,""],"delete non associated files while post processing?":[null,""],"Change File Date":[null,""],"set last modified filedate to the date that the episode aired?":[null,""],"some systems may ignore this feature.":[null,""],"Timezone for File Date":[null,""],"local":[null,""],"network":[null,""],"what timezone should be used to change File Date?":[null,""],"Unpack":[null,""],"What to do with archived releases found in your <i>TV Download Dir</i>?":[null,""],"Ignore (do not process contents)":[null,""],"Unpack (process contents)":[null,""],"Treat as video (process archive as-is)":[null,""],"'Unpack' only works with RAR archives":[null,""],"Windows":[null,""],"WinRar is required on windows":[null,""],"Unpack Directory":[null,""],"Choose a path to unpack files, leave blank to unpack in download dir":[null,""],"Unrar Location":[null,""],"add the path to unrar if it is not in the system path":[null,""],"Alternate Unrar Tool":[null,""],"add the path to an alternate unrar tool if it is not in the system path":[null,""],"Delete RAR contents":[null,""],"delete content of RAR files, even if Process Method not set to move?":[null,""],"only working with RAR archive":[null,""],"Don't delete empty folders":[null,""],"leave empty folders when Post Processing?":[null,""],"can be overridden using manual Post Processing":[null,""],"Follow symbolic-links":[null,""],"follow down symbolic links in download directory?":[null,""],"<b>EXPERTS ONLY.</b><br>Enable only if you know what <b>circular symbolic links</b> are,<br>and can <b>verify that you have none</b>.":[null,""],"Use icacls":[null,""],"Windows only":[null,""],"sets video permissions after using the move method in post processing":[null,""],"Extra Scripts":[null,""],"see":[null,""],"for script arguments description and usage.":[null,""],"How SickRage will name and sort your episodes.":[null,""],"Name Pattern":[null,""],"Toggle Naming Legend":[null,""],"don't forget to add quality pattern. Otherwise after post-processing the episode will have UNKNOWN quality":[null,""],"Meaning":[null,""],"Pattern":[null,""],"Result":[null,""],"Use lower case if you want lower case names (eg. %sn, %e.n, %q_n etc)":[null,""],"Show Name":[null,""],"Show.Name":[null,""],"Show_Name":[null,""],"Season Number":[null,""],"XEM Season Number":[null,""],"Episode Number":[null,""],"XEM Episode Number":[null,""],"Episode Name":[null,""],"Episode.Name":[null,""],"Episode_Name":[null,""],"Air Date":[null,""],"Post-Processing Date":[null,""],"Quality":[null,""],"Scene Quality":[null,""],"Release Name":[null,""],"SickRage' is used in place of RLSGROUP if it could not be properly detected":[null,""],"Release Group":[null,""],"If episode is proper/repack add 'proper' to name.":[null,""],"Release Type":[null,""],"Multi-Episode Style":[null,""],"Single-EP Sample":[null,""],"Multi-EP sample":[null,""],"Strip Show Year":[null,""],"remove the TV show's year when renaming the file?":[null,""],"only applies to shows that have year inside parentheses":[null,""],"Custom Air-By-Date":[null,""],"name air-by-date shows differently than regular shows?":[null,""],"Toggle ABD Naming Legend":[null,""],"Regular Air Date":[null,""],"Year":[null,""],"Month":[null,""],"Day":[null,""],"Multi-EP style is ignored":[null,""],"Custom Sports":[null,""],"name sports shows differently than regular shows?":[null,""],"Toggle Sports Naming Legend":[null,""],"Sports Air Date":[null,""],"Custom Anime":[null,""],"name anime shows differently than regular shows?":[null,""],"Toggle Anime Naming Legend":[null,""],">XEM Season Number":[null,""],"Single-EP Anime Sample":[null,""],"Multi-EP Anime sample":[null,""],"Add Absolute Number":[null,""],"add the absolute number to the season/episode format?":[null,""],"only applies to anime. (eg. S15E45 - 310 vs S15E45)":[null,""],"Only Absolute Number":[null,""],"replace season/episode format with absolute number":[null,""],"only applies to anime.":[null,""],"No Absolute Number":[null,""],"don't include the absolute number":[null,""],"The data associated to the data. These are files associated to a TV show in the form of images and text that, when supported, will enhance the viewing experience.":[null,""],"Metadata Type":[null,""],"toggle metadata options that you wish to be created":[null,""],"multiple targets may be used":[null,""],"Select Metadata":[null,""],"Provider Priorities":[null,""],"Provider Options":[null,""],"Configure Custom Newznab Providers":[null,""],"Configure Custom Torrent Providers":[null,""],"Check off and drag the providers into the order you want them to be used.":[null,""],"At least one provider is required but two are recommended.":[null,""],"Torrent providers can be toggled in ":[null,""],"Provider does not support backlog searches at this time.":[null,""],"Provider is <b>NOT WORKING</b>.":[null,""],"Configure individual provider settings here.":[null,""],"Check with provider's website on how to obtain an API key if needed.":[null,""],"Configure provider":[null,""],"no providers available to configure.":[null,""],"URL":[null,""],"Enable daily searches":[null,""],"enable provider to perform daily searches.":[null,""],"Enable backlog searches":[null,""],"enable provider to perform backlog searches.":[null,""],"Season search mode":[null,""],"when searching for complete seasons you can choose to have it look for season packs only, or choose to have it build a complete season from just single episodes.":[null,""],"season packs only.":[null,""],"episodes only.":[null,""],"Enable fallback":[null,""],"when searching for a complete season depending on search mode you may return no results, this helps by restarting the search using the opposite search mode.":[null,""],"Custom URL":[null,""],"the URL should include the protocol (and port if applicable). Examples: http://192.168.1.4/ or http://localhost:3000/":[null,""],"Api key":[null,""],"Digest":[null,""],"Hash":[null,""],"Passkey":[null,""],"Cookies":[null,""],"example: uid=1234;pass=567845439634987<br>note: uid and pass are not your username/password.<br>use DevTools or Firebug to get these values after logging in on your browser.":[null,""],"Pin":[null,""],"Seed ratio":[null,""],"stop transfer when ratio is reached<br>(-1 SickRage default to seed forever, or leave blank for downloader default)":[null,""],"Minimum seeders":[null,""],"Minimum leechers":[null,""],"Confirmed download":[null,""],"only download torrents from trusted or verified uploaders ?":[null,""],"Ranked torrents":[null,""],"only download ranked torrents (trusted releases)":[null,""],"English torrents":[null,""],"only download english torrents, or torrents containing english subtitles":[null,""],"For Spanish torrents":[null,""],"ONLY search on this provider if show info is defined as \"Spanish\" (avoid provider's use for VOS shows)":[null,""],"Sorting results by":[null,""],"Freeleech":[null,""],"only download <b>\"FreeLeech\"</b> torrents.":[null,""],"Category":[null,""],"select torrent with Italian subtitle":[null,""],"Configure Custom<br>Newznab Providers":[null,""],"Add and setup or remove custom Newznab providers.":[null,""],"Select provider":[null,""],"-- add new provider --":[null,""],"Provider name":[null,""],"Site URL":[null,""],"Newznab search categories":[null,""],"select your Newznab categories on the left, and click the \"update categories\" button to use them for searching.) <b>don't forget to to save the form!":[null,""],"Update Categories":[null,""],"Add":[null,""],"Delete":[null,""],"Add and setup or remove custom RSS providers.":[null,""],"RSS URL":[null,""],"Search element":[null,""],"eg: title":[null,""],"Episode Search":[null,""],"NZB Search":[null,""],"Torrent Search":[null,""],"How to manage searching with":[null,""],"Randomize Providers":[null,""],"randomize the provider search order instead of going in order of placement":[null,""],"Download propers":[null,""],"replace original download with \"Proper\" or \"Repack\" if nuked":[null,""],"Check propers every":[null,""],"24 hours":[null,""],"4 hours":[null,""],"90 mins":[null,""],"45 mins":[null,""],"15 mins":[null,""],"Backlog search day(s)":[null,""],"number of day(s) that the \"Forced Backlog Search\" will cover (e.g. 7 Days)":[null,""],"Backlog search frequency":[null,""],"time in minutes between searches (min.":[null,""],"Daily search frequency":[null,""],"Usenet retention":[null,""],"age limit in days for usenet articles to be used (e.g. 500)":[null,""],"Ignore words":[null,""],"results with one or more word from this list will be ignored<br>separate words with a comma, e.g. \"word1,word2,word3\"":[null,""],"Require words":[null,""],"results with no word from this list will be ignored<br>separate words with a comma, e.g. \"word1,word2,word3\"":[null,""],"Trackers list":[null,""],"trackers that will be added to magnets without trackers<br>separate trackers with a comma, e.g. \"tracker1,tracker2,tracker3\"":[null,""],"Ignore language names in subbed results":[null,""],"ignore subbed releases based on language names <br>\n Example: \"dk\" will ignore words: dksub, dksubs, dksubbed, dksubed <br>\n separate languages with a comma, e.g. \"lang1,lang2,lang3":[null,""],"Allow high priority":[null,""],"set downloads of recently aired episodes to high priority":[null,""],"Use Failed Downloads":[null,""],"use Failed Download Handling?":[null,""],"will only work with snatched/downloaded episodes after enabling this":[null,""],"Delete Failed":[null,""],"delete files left over from a failed download?":[null,""],"this only works if Use Failed Downloads is enabled.":[null,""],"How to handle NZB search results.":[null,""],"Search NZBs":[null,""],"enable NZB search providers":[null,""],"Send .nzb files to":[null,""],"SABnzbd server URL":[null,""],"URL to your SABnzbd server (e.g. http://localhost:8080/)":[null,""],"SABnzbd username":[null,""],"(blank for none)":[null,""],"SABnzbd password":[null,""],"SABnzbd API key":[null,""],"locate at... SABnzbd Config -> General -> API Key":[null,""],"Use SABnzbd category":[null,""],"add downloads to this category (e.g. TV)":[null,""],"Use SABnzbd category (backlog episodes)":[null,""],"add downloads of old episodes to this category (e.g. TV)":[null,""],"Use SABnzbd category for anime":[null,""],"add anime downloads to this category (e.g. anime)":[null,""],"Use SABnzbd category for anime (backlog episodes)":[null,""],"add anime downloads of old episodes to this category (e.g. anime)":[null,""],"Use forced priority":[null,""],"enable to change priority from HIGH to FORCED":[null,""],"Black hole folder location":[null,""],"<b>.nzb</b> files are stored at this location for external software to find and use":[null,""],"Connect using HTTPS":[null,""],"enable Secure control in NZBGet and set the correct Secure Port here":[null,""],"NZBget host:port":[null,""],"(e.g. localhost:6789)":[null,""],"NZBget RPC host name and port number (not NZBgetweb!)":[null,""],"NZBget username":[null,""],"locate in nzbget.conf (default:nzbget)":[null,""],"NZBget password":[null,""],"locate in nzbget.conf (default:tegbzn6789)":[null,""],"Use NZBget category":[null,""],"send downloads marked this category (e.g. TV)":[null,""],"Use NZBget category (backlog episodes)":[null,""],"send downloads of old episodes marked this category (e.g. TV)":[null,""],"Use NZBget category for anime":[null,""],"send anime downloads marked this category (e.g. anime)":[null,""],"Use NZBget category for anime (backlog episodes)":[null,""],"send anime downloads of old episodes marked this category (e.g. anime)":[null,""],"NZBget priority":[null,""],"Very low":[null,""],"Low":[null,""],"Very high":[null,""],"Force":[null,""],"priority for daily snatches (no backlog)":[null,""],"Torrent host:port":[null,""],"URL to your Synology DSM (e.g. http://localhost:5000/)":[null,""],"Client username":[null,""],"Client password":[null,""],"Downloaded files location":[null,""],"where Synology Download Station will save downloaded files (blank for client default)":[null,""],"the destination has to be a shared folder for Synology DS":[null,""],"Click below to test":[null,""],"How to handle Torrent search results.":[null,""],"Search torrents":[null,""],"enable torrent search providers":[null,""],"Send .torrent files to":[null,""],"<b>.torrent</b> files are stored at this location for external software to find and use":[null,""],"URL to your torrent client (e.g. http://localhost:8000/)":[null,""],"Torrent RPC URL":[null,""],"the path without leading and trailing slashes (e.g. transmission)":[null,""],"Http Authentication":[null,""],"Verify certificate":[null,""],"disable if you get \"Deluge: Authentication Error\" in your log":[null,""],"verify SSL certificates for HTTPS requests":[null,""],"Add label to torrent":[null,""],"(blank spaces are not allowed)":[null,""],"label plugin must be enabled in Deluge clients":[null,""],"for QBitTorrent 3.3.1 and up":[null,""],"Add label to torrent for anime":[null,""],"for QBitTorrent 3.3.1 and up ":[null,""],"where <span id=\"torrent_client\">the torrent client</span> will save downloaded files (blank for client default)":[null,""],"the destination has to be a shared folder for Synology DS</span>":[null,""],"Minimum seeding time":[null,""],"time in hours":[null,""],"(default:'0' passes blank to client and '-1' passes nothing)":[null,""],"Start torrent paused":[null,""],"add .torrent to client but do <b style=\"font-weight:900\">not</b> start downloading":[null,""],"Allow high bandwidth":[null,""],"use high bandwidth allocation if priority is high":[null,""],"Test Connection":[null,""],"Windows Shares":[null,""],"Defines your existing windows shares so that we can add them to the browse dialog":[null,""],"Share #{number}":[null,""],"Share label":[null,""],"Hostname or IP":[null,""],"Share path":[null,""],"Subtitles Search":[null,""],"Subtitles Plugin":[null,""],"Plugin Settings":[null,""],"Settings that dictate how SickRage handles subtitles search results.":[null,""],"Search Subtitles":[null,""],"Subtitle Languages":[null,""],"Subtitle Directory":[null,""],"the directory where SickRage should store your <i>Subtitles</i> files.":[null,""],"leave empty if you want store subtitle in episode path.":[null,""],"Subtitle Find Frequency":[null,""],"time in hours between scans (default: 1)":[null,""],"Include Specials":[null,""],"include the show's specials when searching for subtitles?":[null,""],"Perfect matches":[null,""],"only download subtitles that match: release group, video codec, audio codec and resolution":[null,""],"if disabled you may get out of sync subtitles":[null,""],"Subtitles History":[null,""],"log downloaded Subtitle on History page?":[null,""],"Subtitles Multi-Language":[null,""],"append language codes to subtitle filenames?":[null,""],"this option is required if you use multiple subtitle languages":[null,""],"Delete unwanted subtitles":[null,""],"enable to delete unwanted subtitle languages bundled with release":[null,""],"Embedded Subtitles":[null,""],"ignore subtitles embedded inside video file?":[null,""],"this will ignore <u>all</u> embedded subtitles for every video file!":[null,""],"Hearing Impaired Subtitles":[null,""],"download hearing impaired style subtitles?":[null,""],"See":[null,""],"for a script arguments description.":[null,""],"Additional scripts separated by <b>|</b>.":[null,""],"Scripts are called after each episode has searched and downloaded subtitles.":[null,""],"For any scripted languages, include the interpreter executable before the script. See the following example":[null,""],"For Windows:":[null,""],"For Linux / OS X:":[null,""],"Subtitle Providers":[null,""],"Check off and drag the plugins into the order you want them to be used.":[null,""],"At least one plugin is required.":[null,""]," Web-scraping plugin":[null,""],"Provider Settings":[null,""],"Set user and password for each provider":[null,""],"User Name":[null,""],"Change Show":[null,""],"Prev Show":[null,""],"Next Show":[null,""],"Jump to Season":[null,""],"Specials":[null,""],"Poster for":[null,""],"Stars":[null,""],"minutes":[null,""],"View other popular {genre} shows on trakt.tv.":[null,""],"View other popular {imdbgenre} shows on IMDB.":[null,""],"Allowed":[null,""],"Preferred":[null,""],"Originally Airs":[null,""],"Show Status":[null,""],"Default EP Status":[null,""],"Location":[null,""],"Missing":[null,""],"Scene Name":[null,""],"Required Words":[null,""],"Ignored Words":[null,""],"Size":[null,""],"Info Language":[null,""],"Subtitles SR Metadata":[null,""],"Season Folders":[null,""],"Paused":[null,""],"Air-by-Date":[null,""],"Sports":[null,""],"DVD Order":[null,""],"Scene Numbering":[null,""],"Select Filtered Episodes":[null,""],"Clear All":[null,""],"Change selected episodes to":[null,""],"Select Columns":[null,""],"NFO":[null,""],"TBN":[null,""],"Episode":[null,""],"Absolute":[null,""],"Scene":[null,""],"Scene Absolute":[null,""],"File Name":[null,""],"Airdate":[null,""],"Download":[null,""],"Change the value here if scene numbering differs from the indexer episode numbering":[null,""],"Change the value here if scene absolute numbering differs from the indexer absolute numbering":[null,""],"Manual Search":[null,""],"Do you want to mark this episode as failed?":[null,""],"The episode release name will be added to the failed history, preventing it to be downloaded again.":[null,""],"Do you want to include the current episode quality in the search?":[null,""],"Choosing No will ignore any releases with the same episode quality as the one currently downloaded/snatched.":[null,""],"Download subtitle":[null,""],"Do you want to re-download the subtitle for this language?":[null,""],"It will overwrite your current subtitle":[null,""],"Format":[null,""],"Advanced":[null,""],"Main Settings":[null,""],"Show Location":[null,""],"Preferred Quality":[null,""],"Default Episode Status":[null,""],"this will set the status for future episodes.":[null,""],"this only applies to episode filenames and the contents of metadata files.":[null,""],"search for subtitles":[null,""],"Use SR Metdata":[null,""],"use SickRage metadata when searching for subtitle, this will override the autodiscovered metadata":[null,""],"pause this show (SickRage will not download episodes)":[null,""],"Format Settings":[null,""],"Air by date":[null,""],"check if the show is released as Show.03.02.2010 rather than Show.S02E03.":[null,""],"in case of an air date conflict between regular and special episodes, the later will be ignored.":[null,""],"check if the show is Anime and episodes are released as Show.265 rather than Show.S02E03":[null,""],"check if the show is a sporting or MMA event released as Show.03.02.2010 rather than Show.S02E03":[null,""],"Season folders":[null,""],"group episodes by season folder (uncheck to store in a single folder)":[null,""],"search by scene numbering (uncheck to search by indexer numbering)":[null,""],"use the DVD order instead of the air order":[null,""],"a \"Force Full Update\" is necessary, and if you have existing episodes you need to sort them manually.":[null,""],"comma-separated <i>e.g. \"word1,word2,word3</i>\"":[null,""],"search results with one or more words from this list will be ignored.":[null,""],"e.g. \"word1,word2,word3\"":[null,""],"search results with no words from this list will be ignored.":[null,""],"Scene Exception":[null,""],"this will affect episode search on NZB and torrent providers.":[null,""],"this list appends to the original show name.":[null,""],"WARNING logs":[null,""],"ERROR logs":[null,""],"There are no events to display.":[null,""],"Limit":[null,""],"Layout":[null,""],"HistoryLayout":[null,""],"Compact":[null,""],"Detailed":[null,""],"Time":[null,""],"Provider":[null,""],"Missing Provider":[null,""],"missing provider":[null,""],"Directory":[null,""],"Show Name (tvshow.nfo)":[null,""],"Indexer":[null,""],"Enter the folder containing the episode":[null,""],"Process Method to be used":[null,""],"Copy":[null,""],"Move":[null,""],"Hard Link":[null,""],"Symbolic Link":[null,""],"Symbolic Link Reversed":[null,""],"Force already Post Processed Dir/Files":[null,""],"Mark Dir/Files as priority download":[null,""],"(Check it to replace the file even if it exists at higher quality)":[null,""],"Delete files and folders":[null,""],"(Check it to delete files and folders like auto processing)":[null,""],"Don't use processing queue":[null,""],"(If checked this will return the result of the process here, but may be slow!)":[null,""],"Mark download as failed":[null,""],"Process":[null,""],"Download subtitles for this show?":[null,""],"use SickRage metadata when searching for subtitle, <br />this will override the autodiscovered metadata":[null,""],"Status for previously aired episodes":[null,""],"Status for all future episodes":[null,""],"Group episodes by season folder?":[null,""],"Is this show an Anime?":[null,""],"Is this show scene numbered?":[null,""],"Save Defaults":[null,""],"Use current values as the defaults":[null,""],"<p>Select your preferred fansub groups from the <b>Available Groups</b> and add them to the <b>Whitelist</b>. Add groups to the <b>Blacklist</b> to ignore them.</p>\n <p>The <b>Whitelist</b> is checked <i>before</i> the <b>Blacklist</b>.</p>\n <p>Groups are shown as <b>Name</b> | <b>Rating</b> | <b>Number of subbed episodes</b>.</p>\n <p>You may also add any fansub group not listed to either list manually.</p>\n <p>When doing this please note that you can only use groups listed on anidb for this anime.\n <br>If a group is not listed on anidb but subbed this anime, please correct anidb's data.</p>":[null,""],"Whitelist":[null,""],"Available Groups":[null,""],"Add to Whitelist":[null,""],"Add to Blacklist":[null,""],"Blacklist":[null,""],"Custom Group":[null,""],"Allowed Quality:":[null,""],"Preferred Quality:":[null,""],"Filter Show Name":[null,""],"Root":[null,""],"All":[null,""],"Clear Filter(s)":[null,""],"Poster":[null,""],"Small Poster":[null,""],"Banner":[null,""],"Simple":[null,""],"Next Episode":[null,""],"Progress":[null,""],"Direction":[null,""],"Ascending":[null,""],"Descending":[null,""],"Poster Size":[null,""],"Continuing":[null,""],"Ended":[null,""],"Total":[null,""],"Invalid date":[null,""],"No Network":[null,""],"Next Ep":[null,""],"Prev Ep":[null,""],"Show":[null,""],"Downloads":[null,""],"Active":[null,""],"loading":[null,""],"<p><b><u>Preferred</u></b> qualities will replace those in <b><u>allowed</u></b>, even if they are lower.</p>":[null,""],"New":[null,""],"Set as Default":[null,""],"Remember me":[null,""],"Edit Selected":[null,""],"Subtitle":[null,""],"Default Ep Status":[null,""],"Update":[null,""],"Rescan":[null,""],"Rename":[null,""],"Search Subtitle":[null,""],"Force Metadata Regen":[null,""],"Snatched (Allowed)":[null,""],"Jump to Show":[null,""],"Force Backlog":[null,""],"Manage episodes with status":[null,""],"Manage":[null,""],"None of your episodes have status":[null,""],"Shows containing":[null,""],"episodes":[null,""],"Set checked shows/episodes to":[null,""],"Go":[null,""],"Select all":[null,""],"Clear all":[null,""],"Release":[null,""],"Backlog Search":[null,""],"Not in progress":[null,""],"In Progress":[null,""],"Daily Search":[null,""],"Find Propers Search":[null,""],"Propers search disabled":[null,""],"Subtitle Search":[null,""],"Subtitle search disabled":[null,""],"Search Queue":[null,""],"pending items":[null,""],"Daily":[null,""],"Manual":[null,""],"Changing any settings marked with (<span class=\"separator\">*</span>) will force a refresh of the selected shows.":[null,""],"Selected Shows":[null,""],"Root Directories":[null,""],"Current":[null,""],"Keep":[null,""],"Custom":[null,""],"Group episodes by season folder (set to \"No\" to store in a single folder).":[null,""],"Pause these shows (SickRage will not download episodes).":[null,""],"This will set the status for future episodes.":[null,""],"Search by scene numbering (set to \"No\" to search by indexer numbering).":[null,""],"Set if these shows are Anime and episodes are released as Show.265 rather than Show.S02E03":[null,""],"Set if these shows are sporting or MMA events released as Show.03.02.2010 rather than Show.S02E03.":[null,""],"In case of an air date conflict between regular and special episodes, the later will be ignored.":[null,""],"Set if these shows are released as Show.03.02.2010 rather than Show.S02E03.":[null,""],"Search for subtitles.":[null,""],"All of your episodes have {subsLanguage} subtitles.":[null,""],"Manage episodes without":[null,""],"Episodes without {subsLanguage} subtitles.":[null,""],"Episodes without {subtitleLanguage} (undefined) subtitles.":[null,""],"Download missed subtitles for selected episodes":[null,""],"Performing Restart":[null,""],"Waiting for SickRage to shut down":[null,""],"Waiting for SickRage to start again":[null,""],"Loading the default page":[null,""],"Error: The restart has timed out, perhaps something prevented SickRage from starting again?":[null,""],"Key":[null,""],"Missed":[null,""],"Today":[null,""],"Soon":[null,""],"Later":[null,""],"Subscribe":[null,""],"Date":[null,""],"View Paused":[null,""],"Hidden":[null,""],"Shown":[null,""],"Calendar":[null,""],"List":[null,""],"Ends":[null,""],"Next Ep Name":[null,""],"Run time":[null,""],"Indexers":[null,""],"No shows for this day":[null,""],"Airs":[null,""],"Plot":[null,""],"Show Update":[null,""],"Version Check":[null,""],"Proper Finder":[null,""],"Post Process":[null,""],"Subtitles Finder":[null,""],"Scheduler":[null,""],"Alive":[null,""],"Start Time":[null,""],"Cycle Time":[null,""],"Next Run":[null,""],"Last Run":[null,""],"Silent":[null,""],"True":[null,""],"N/A":[null,""],"Show id":[null,""],"Show name":[null,""],"Priority":[null,""],"Added":[null,""],"Queue type":[null,""],"LOW":[null,""],"NORMAL":[null,""],"HIGH":[null,""],"Disk Space":[null,""],"Free space":[null,""],"TV Download Directory":[null,""],"Media Root Directories":[null,""],"Preview of the proposed name changes":[null,""],"All Seasons":[null,""],"select all":[null,""],"Rename Selected":[null,""],"Cancel Rename":[null,""],"Old Location":[null,""],"New Location":[null,""],"Trakt API did not return any results, please check your config.":[null,""],"votes":[null,""],"Remove Show":[null,""],"Level":[null,""],"Filter":[null,""],"All non-absolute folder locations are relative to ":[null,""],"Manual Post-Processing":[null,""],"Episode Status Management":[null,""],"Update PLEX":[null,""],"Update KODI":[null,""],"Update Emby":[null,""],"Manage Torrents":[null,""],"Missed Subtitle Management":[null,""],"Help & Info":[null,""],"Backup & Restore":[null,""],"Tools":[null,""],"Support SickRage":[null,""],"View Errors":[null,""],"View Warnings":[null,""],"View Log":[null,""],"Check For Updates":[null,""],"Restart":[null,""],"Shutdown":[null,""],"Logout":[null,""],"Server Status":[null,""],"View overview of snatched episodes":[null,""],"Episodes Downloaded":[null,""],"Memory used":[null,""],"Load time":[null,""],"Branch":[null,""],"Now":[null,""]}}}} \ No newline at end of file diff --git a/locale/vi_VN/LC_MESSAGES/messages.mo b/locale/vi_VN/LC_MESSAGES/messages.mo index 0128d727d30f9d49c70ac51c5273d128b9d87ff6..452c9605b4da987940e0c551b9832a5e0e363bfb 100644 Binary files a/locale/vi_VN/LC_MESSAGES/messages.mo and b/locale/vi_VN/LC_MESSAGES/messages.mo differ diff --git a/locale/vi_VN/LC_MESSAGES/messages.po b/locale/vi_VN/LC_MESSAGES/messages.po index 09bf63c5d668b49325c869fba997f05e04778b85..89aad3b87bff27bdc07b866ff68999de7e0fc36d 100644 --- a/locale/vi_VN/LC_MESSAGES/messages.po +++ b/locale/vi_VN/LC_MESSAGES/messages.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: sickrage\n" "Report-Msgid-Bugs-To: miigotu@gmail.com\n" -"POT-Creation-Date: 2017-03-25 09:28-0700\n" +"POT-Creation-Date: 2017-03-28 09:10-0700\n" "PO-Revision-Date: 2016-04-18 02:59-0400\n" "Last-Translator: miigotu <miigotu@gmail.com>\n" "Language: vi_VN\n" @@ -87,7 +87,7 @@ msgid "Biography" msgstr "" #: gui/slick/views/config_general.mako:78 gui/slick/views/layouts/main.mako:145 -#: sickbeard/__init__.py:79 sickbeard/webserve.py:3807 +#: sickbeard/__init__.py:79 sickbeard/webserve.py:3778 msgid "History" msgstr "" @@ -100,7 +100,7 @@ msgid "Western" msgstr "" #: gui/slick/views/config_general.mako:79 gui/slick/views/layouts/main.mako:221 -#: sickbeard/__init__.py:80 sickbeard/webserve.py:2385 +#: sickbeard/__init__.py:80 sickbeard/webserve.py:2384 msgid "News" msgstr "" @@ -236,6 +236,34 @@ msgstr "" msgid "Subtitled" msgstr "" +#: sickbeard/helpers.py:1887 +msgid "For best results please set the Download Station alias as" +msgstr "" + +#: sickbeard/helpers.py:1888 +msgid "You can check this setting in the Synology DSM" +msgstr "" + +#: sickbeard/helpers.py:1888 sickbeard/helpers.py:1890 +msgid "Control Panel" +msgstr "" + +#: sickbeard/helpers.py:1888 +msgid "Application Portal" +msgstr "" + +#: sickbeard/helpers.py:1889 +msgid "Make sure you allow DSM to be embedded with iFrames too in" +msgstr "" + +#: sickbeard/helpers.py:1890 +msgid "DSM Settings" +msgstr "" + +#: sickbeard/helpers.py:1890 +msgid "Security" +msgstr "" + #: sickbeard/logger.py:474 msgid "<No Filter>" msgstr "" @@ -306,19 +334,19 @@ msgstr "" msgid "Event" msgstr "" -#: sickbeard/logger.py:491 sickbeard/webserve.py:1339 -#: sickbeard/webserve.py:1342 sickbeard/webserve.py:1520 -#: sickbeard/webserve.py:1529 sickbeard/webserve.py:1717 -#: sickbeard/webserve.py:1728 sickbeard/webserve.py:1751 -#: sickbeard/webserve.py:1764 sickbeard/webserve.py:1769 -#: sickbeard/webserve.py:1785 sickbeard/webserve.py:1790 -#: sickbeard/webserve.py:1854 sickbeard/webserve.py:1857 -#: sickbeard/webserve.py:1863 sickbeard/webserve.py:1866 -#: sickbeard/webserve.py:1873 sickbeard/webserve.py:1876 -#: sickbeard/webserve.py:1899 sickbeard/webserve.py:1997 -#: sickbeard/webserve.py:2002 sickbeard/webserve.py:2007 -#: sickbeard/webserve.py:2036 sickbeard/webserve.py:2040 -#: sickbeard/webserve.py:2045 +#: sickbeard/logger.py:491 sickbeard/webserve.py:1338 +#: sickbeard/webserve.py:1341 sickbeard/webserve.py:1519 +#: sickbeard/webserve.py:1528 sickbeard/webserve.py:1716 +#: sickbeard/webserve.py:1727 sickbeard/webserve.py:1750 +#: sickbeard/webserve.py:1763 sickbeard/webserve.py:1768 +#: sickbeard/webserve.py:1784 sickbeard/webserve.py:1789 +#: sickbeard/webserve.py:1853 sickbeard/webserve.py:1856 +#: sickbeard/webserve.py:1862 sickbeard/webserve.py:1865 +#: sickbeard/webserve.py:1872 sickbeard/webserve.py:1875 +#: sickbeard/webserve.py:1898 sickbeard/webserve.py:1996 +#: sickbeard/webserve.py:2001 sickbeard/webserve.py:2006 +#: sickbeard/webserve.py:2035 sickbeard/webserve.py:2039 +#: sickbeard/webserve.py:2044 msgid "Error" msgstr "" @@ -335,6 +363,7 @@ msgstr "" msgid "Main" msgstr "" +#: gui/slick/js/ajaxEpSearch.js:146 gui/slick/js/ajaxEpSearch.js:147 #: gui/slick/views/inc_home_showList.mako:27 sickbeard/show_queue.py:298 msgid "Loading" msgstr "" @@ -374,901 +403,869 @@ msgstr "" msgid "No update needed" msgstr "" -#: sickbeard/webserve.py:170 +#: sickbeard/webserve.py:171 msgid "Mako Error" msgstr "" -#: sickbeard/webserve.py:195 +#: sickbeard/webserve.py:196 msgid "Oops" msgstr "" -#: sickbeard/webserve.py:197 +#: sickbeard/webserve.py:198 msgid "Wrong API key used" msgstr "" -#: gui/slick/views/login.mako:34 sickbeard/webserve.py:302 +#: gui/slick/views/login.mako:34 sickbeard/webserve.py:303 msgid "Login" msgstr "" -#: sickbeard/webserve.py:406 +#: sickbeard/webserve.py:392 msgid "API Key not generated" msgstr "" -#: sickbeard/webserve.py:409 +#: sickbeard/webserve.py:395 msgid "API Builder" msgstr "" #: gui/slick/views/config_general.mako:77 gui/slick/views/layouts/main.mako:141 -#: sickbeard/webserve.py:512 +#: sickbeard/webserve.py:498 msgid "Schedule" msgstr "" -#: sickbeard/webserve.py:610 +#: sickbeard/webserve.py:609 msgid "Test 1" msgstr "" -#: sickbeard/webserve.py:610 +#: sickbeard/webserve.py:609 msgid "This is test number 1" msgstr "" -#: sickbeard/webserve.py:611 +#: sickbeard/webserve.py:610 msgid "Test 2" msgstr "" -#: sickbeard/webserve.py:611 +#: sickbeard/webserve.py:610 msgid "This is test number 2" msgstr "" -#: sickbeard/webserve.py:634 +#: sickbeard/webserve.py:633 msgid "" "You're using the {branch} branch. Please use 'master' unless specifically" " asked" msgstr "" -#: sickbeard/webserve.py:698 sickbeard/webserve.py:703 +#: sickbeard/webserve.py:697 sickbeard/webserve.py:702 msgid "Invalid show parameters" msgstr "" -#: sickbeard/webserve.py:710 +#: sickbeard/webserve.py:709 msgid "Invalid parameters" msgstr "" -#: sickbeard/webserve.py:713 sickbeard/webserve.py:1899 +#: sickbeard/webserve.py:712 sickbeard/webserve.py:1898 msgid "Episode couldn't be retrieved" msgstr "" -#: sickbeard/webserve.py:759 sickbeard/webserve.py:1268 -#: sickbeard/webserve.py:1297 +#: sickbeard/webserve.py:758 sickbeard/webserve.py:1267 +#: sickbeard/webserve.py:1296 msgid "Home" msgstr "" -#: gui/slick/views/layouts/main.mako:127 sickbeard/webserve.py:759 +#: gui/slick/views/layouts/main.mako:127 sickbeard/webserve.py:758 msgid "Show List" msgstr "" -#: sickbeard/webserve.py:807 +#: sickbeard/webserve.py:806 msgid "" "Error: Unsupported Request. Send jsonp request with 'callback' variable " "in the query string." msgstr "" -#: sickbeard/webserve.py:851 +#: sickbeard/webserve.py:850 msgid "Success. Connected and authenticated" msgstr "" -#: sickbeard/webserve.py:853 +#: sickbeard/webserve.py:852 msgid "Authentication failed. SABnzbd expects" msgstr "" -#: sickbeard/webserve.py:853 +#: sickbeard/webserve.py:852 msgid "as authentication method" msgstr "" -#: sickbeard/webserve.py:855 +#: sickbeard/webserve.py:854 msgid "Unable to connect to host" msgstr "" -#: sickbeard/webserve.py:876 +#: sickbeard/webserve.py:875 msgid "SMS sent successfully" msgstr "" -#: sickbeard/webserve.py:878 +#: sickbeard/webserve.py:877 msgid "Problem sending SMS: {message}" msgstr "" -#: sickbeard/webserve.py:885 +#: sickbeard/webserve.py:884 msgid "" "Telegram notification succeeded. Check your Telegram clients to make sure" " it worked" msgstr "" -#: sickbeard/webserve.py:887 +#: sickbeard/webserve.py:886 msgid "Error sending Telegram notification: {message}" msgstr "" -#: sickbeard/webserve.py:894 +#: sickbeard/webserve.py:893 msgid "" "join notification succeeded. Check your join clients to make sure it " "worked" msgstr "" -#: sickbeard/webserve.py:896 +#: sickbeard/webserve.py:895 msgid "Error sending join notification: {message}" msgstr "" -#: sickbeard/webserve.py:906 +#: sickbeard/webserve.py:905 msgid " with password" msgstr "" -#: sickbeard/webserve.py:908 +#: sickbeard/webserve.py:907 msgid "Registered and Tested growl successfully {growl_host}" msgstr "" -#: sickbeard/webserve.py:910 +#: sickbeard/webserve.py:909 msgid "Registration and Testing of growl failed {growl_host}" msgstr "" -#: sickbeard/webserve.py:917 +#: sickbeard/webserve.py:916 msgid "Test prowl notice sent successfully" msgstr "" -#: sickbeard/webserve.py:919 +#: sickbeard/webserve.py:918 msgid "Test prowl notice failed" msgstr "" -#: sickbeard/webserve.py:926 +#: sickbeard/webserve.py:925 msgid "" "Boxcar2 notification succeeded. Check your Boxcar2 clients to make sure " "it worked" msgstr "" -#: sickbeard/webserve.py:928 +#: sickbeard/webserve.py:927 msgid "Error sending Boxcar2 notification" msgstr "" -#: sickbeard/webserve.py:935 +#: sickbeard/webserve.py:934 msgid "" "Pushover notification succeeded. Check your Pushover clients to make sure" " it worked" msgstr "" -#: sickbeard/webserve.py:937 +#: sickbeard/webserve.py:936 msgid "Error sending Pushover notification" msgstr "" -#: sickbeard/webserve.py:949 +#: sickbeard/webserve.py:948 msgid "Key verification successful" msgstr "" -#: sickbeard/webserve.py:951 +#: sickbeard/webserve.py:950 msgid "Unable to verify key" msgstr "" -#: sickbeard/webserve.py:958 +#: sickbeard/webserve.py:957 msgid "Tweet successful, check your twitter to make sure it worked" msgstr "" -#: sickbeard/webserve.py:960 +#: sickbeard/webserve.py:959 msgid "Error sending tweet" msgstr "" -#: sickbeard/webserve.py:965 +#: sickbeard/webserve.py:964 msgid "Please enter a valid account sid" msgstr "" -#: sickbeard/webserve.py:968 +#: sickbeard/webserve.py:967 msgid "Please enter a valid auth token" msgstr "" -#: sickbeard/webserve.py:971 +#: sickbeard/webserve.py:970 msgid "Please enter a valid phone sid" msgstr "" -#: sickbeard/webserve.py:974 +#: sickbeard/webserve.py:973 msgid "Please format the phone number as \"+1-###-###-####\"" msgstr "" -#: sickbeard/webserve.py:978 +#: sickbeard/webserve.py:977 msgid "Authorization successful and number ownership verified" msgstr "" -#: sickbeard/webserve.py:980 +#: sickbeard/webserve.py:979 msgid "Error sending sms" msgstr "" -#: sickbeard/webserve.py:986 +#: sickbeard/webserve.py:985 msgid "Slack message successful" msgstr "" -#: sickbeard/webserve.py:988 +#: sickbeard/webserve.py:987 msgid "Slack message failed" msgstr "" -#: sickbeard/webserve.py:994 +#: sickbeard/webserve.py:993 msgid "Discord message successful" msgstr "" -#: sickbeard/webserve.py:996 +#: sickbeard/webserve.py:995 msgid "Discord message failed" msgstr "" -#: sickbeard/webserve.py:1006 +#: sickbeard/webserve.py:1005 msgid "Test KODI notice sent successfully to {kodi_host}" msgstr "" -#: sickbeard/webserve.py:1008 +#: sickbeard/webserve.py:1007 msgid "Test KODI notice failed to {kodi_host}" msgstr "" -#: sickbeard/webserve.py:1023 +#: sickbeard/webserve.py:1022 msgid "Successful test notice sent to Plex Home Theater ... {plex_clients}" msgstr "" -#: sickbeard/webserve.py:1025 +#: sickbeard/webserve.py:1024 msgid "Test failed for Plex Home Theater ... {plex_clients}" msgstr "" -#: sickbeard/webserve.py:1028 +#: sickbeard/webserve.py:1027 msgid "Tested Plex Home Theater(s)" msgstr "" -#: sickbeard/webserve.py:1042 +#: sickbeard/webserve.py:1041 msgid "Successful test of Plex Media Server(s) ... {plex_servers}" msgstr "" -#: sickbeard/webserve.py:1044 +#: sickbeard/webserve.py:1043 msgid "Test failed, No Plex Media Server host specified" msgstr "" -#: sickbeard/webserve.py:1046 +#: sickbeard/webserve.py:1045 msgid "Test failed for Plex Media Server(s) ... {plex_servers}" msgstr "" -#: sickbeard/webserve.py:1049 +#: sickbeard/webserve.py:1048 msgid "Tested Plex Media Server host(s)" msgstr "" -#: sickbeard/webserve.py:1057 +#: sickbeard/webserve.py:1056 msgid "Tried sending desktop notification via libnotify" msgstr "" -#: sickbeard/webserve.py:1066 +#: sickbeard/webserve.py:1065 msgid "Test notice sent successfully to {emby_host}" msgstr "" -#: sickbeard/webserve.py:1068 +#: sickbeard/webserve.py:1067 msgid "Test notice failed to {emby_host}" msgstr "" -#: sickbeard/webserve.py:1076 +#: sickbeard/webserve.py:1075 msgid "Successfully started the scan update" msgstr "" -#: sickbeard/webserve.py:1078 +#: sickbeard/webserve.py:1077 msgid "Test failed to start the scan update" msgstr "" -#: sickbeard/webserve.py:1097 +#: sickbeard/webserve.py:1096 msgid "Test notice sent successfully to {nmj2_host}" msgstr "" -#: sickbeard/webserve.py:1099 +#: sickbeard/webserve.py:1098 msgid "Test notice failed to {nmj2_host}" msgstr "" -#: sickbeard/webserve.py:1119 +#: sickbeard/webserve.py:1118 msgid "Trakt Authorized" msgstr "" -#: sickbeard/webserve.py:1120 +#: sickbeard/webserve.py:1119 msgid "Trakt Not Authorized!" msgstr "" -#: sickbeard/webserve.py:1184 +#: sickbeard/webserve.py:1183 msgid "Test email sent successfully! Check inbox." msgstr "" -#: sickbeard/webserve.py:1186 +#: sickbeard/webserve.py:1185 msgid "ERROR: {last_error}" msgstr "" -#: sickbeard/webserve.py:1193 +#: sickbeard/webserve.py:1192 msgid "Test NMA notice sent successfully" msgstr "" -#: sickbeard/webserve.py:1195 +#: sickbeard/webserve.py:1194 msgid "Test NMA notice failed" msgstr "" -#: sickbeard/webserve.py:1202 +#: sickbeard/webserve.py:1201 msgid "" "Pushalot notification succeeded. Check your Pushalot clients to make sure" " it worked" msgstr "" -#: sickbeard/webserve.py:1204 +#: sickbeard/webserve.py:1203 msgid "Error sending Pushalot notification" msgstr "" -#: sickbeard/webserve.py:1211 +#: sickbeard/webserve.py:1210 msgid "" "Pushbullet notification succeeded. Check your device to make sure it " "worked" msgstr "" -#: sickbeard/webserve.py:1213 sickbeard/webserve.py:1223 -#: sickbeard/webserve.py:1232 +#: sickbeard/webserve.py:1212 sickbeard/webserve.py:1222 +#: sickbeard/webserve.py:1231 msgid "Error sending Pushbullet notification" msgstr "" #: gui/slick/views/displayShow.mako:436 #: gui/slick/views/inc_home_showList.mako:174 gui/slick/views/manage.mako:49 -#: sickbeard/webserve.py:1249 +#: sickbeard/webserve.py:1248 msgid "Status" msgstr "" -#: sickbeard/webserve.py:1268 sickbeard/webserve.py:1297 +#: sickbeard/webserve.py:1267 sickbeard/webserve.py:1296 msgid "Restarting SickRage" msgstr "" -#: sickbeard/webserve.py:1300 +#: sickbeard/webserve.py:1299 msgid "Update Failed" msgstr "" -#: sickbeard/webserve.py:1301 +#: sickbeard/webserve.py:1300 msgid "" "Update wasn't successful, not restarting. Check your log for more " "information." msgstr "" -#: sickbeard/webserve.py:1308 +#: sickbeard/webserve.py:1307 msgid "Checking out branch" msgstr "" -#: sickbeard/webserve.py:1311 +#: sickbeard/webserve.py:1310 msgid "Already on branch" msgstr "" -#: sickbeard/webserve.py:1339 +#: sickbeard/webserve.py:1338 msgid "Invalid show ID: {show}" msgstr "" -#: sickbeard/webserve.py:1342 sickbeard/webserve.py:1871 -#: sickbeard/webserve.py:2002 sickbeard/webserve.py:2040 +#: sickbeard/webserve.py:1341 sickbeard/webserve.py:1870 +#: sickbeard/webserve.py:2001 sickbeard/webserve.py:2039 msgid "Show not in show list" msgstr "" #: gui/slick/views/inc_rootDirs.mako:31 gui/slick/views/manage.mako:38 -#: gui/slick/views/manage_massEdit.mako:74 sickbeard/webserve.py:1358 -#: sickbeard/webserve.py:2027 +#: gui/slick/views/manage_massEdit.mako:74 sickbeard/webserve.py:1357 +#: sickbeard/webserve.py:2026 msgid "Edit" msgstr "" -#: sickbeard/webserve.py:1368 +#: sickbeard/webserve.py:1367 msgid "" "This show is in the process of being downloaded - the info below is " "incomplete." msgstr "" -#: sickbeard/webserve.py:1371 +#: sickbeard/webserve.py:1370 msgid "The information on this page is in the process of being updated." msgstr "" -#: sickbeard/webserve.py:1374 +#: sickbeard/webserve.py:1373 msgid "The episodes below are currently being refreshed from disk" msgstr "" -#: sickbeard/webserve.py:1377 +#: sickbeard/webserve.py:1376 msgid "Currently downloading subtitles for this show" msgstr "" -#: sickbeard/webserve.py:1380 +#: sickbeard/webserve.py:1379 msgid "This show is queued to be refreshed." msgstr "" -#: sickbeard/webserve.py:1383 +#: sickbeard/webserve.py:1382 msgid "This show is queued and awaiting an update." msgstr "" -#: sickbeard/webserve.py:1386 +#: sickbeard/webserve.py:1385 msgid "This show is queued and awaiting subtitles download." msgstr "" -#: gui/slick/js/core.js:4081 sickbeard/webserve.py:1391 +#: gui/slick/js/core.js:4081 sickbeard/webserve.py:1390 msgid "Resume" msgstr "" #: gui/slick/js/core.js:4081 gui/slick/views/viewlogs.mako:12 -#: sickbeard/webserve.py:1393 +#: sickbeard/webserve.py:1392 msgid "Pause" msgstr "" #: gui/slick/views/editShow.mako:345 gui/slick/views/inc_blackwhitelist.mako:40 #: gui/slick/views/inc_blackwhitelist.mako:85 gui/slick/views/manage.mako:58 -#: gui/slick/views/manage_failedDownloads.mako:43 sickbeard/webserve.py:1395 +#: gui/slick/views/manage_failedDownloads.mako:43 sickbeard/webserve.py:1394 msgid "Remove" msgstr "" -#: sickbeard/webserve.py:1396 +#: sickbeard/webserve.py:1395 msgid "Re-scan files" msgstr "" -#: sickbeard/webserve.py:1397 +#: sickbeard/webserve.py:1396 msgid "Force Full Update" msgstr "" -#: sickbeard/webserve.py:1398 +#: sickbeard/webserve.py:1397 msgid "Update show in KODI" msgstr "" -#: sickbeard/webserve.py:1399 +#: sickbeard/webserve.py:1398 msgid "Update show in Emby" msgstr "" -#: sickbeard/webserve.py:1402 +#: sickbeard/webserve.py:1401 msgid "Hide specials" msgstr "" -#: sickbeard/webserve.py:1404 +#: sickbeard/webserve.py:1403 msgid "Show specials" msgstr "" -#: sickbeard/webserve.py:1406 sickbeard/webserve.py:2030 -#: sickbeard/webserve.py:2031 +#: sickbeard/webserve.py:1405 sickbeard/webserve.py:2029 +#: sickbeard/webserve.py:2030 msgid "Preview Rename" msgstr "" -#: sickbeard/webserve.py:1409 +#: sickbeard/webserve.py:1408 msgid "Download Subtitles" msgstr "" -#: sickbeard/webserve.py:1498 +#: sickbeard/webserve.py:1497 msgid "No scene exceptions" msgstr "" -#: sickbeard/webserve.py:1516 sickbeard/webserve.py:1764 -#: sickbeard/webserve.py:1785 +#: sickbeard/webserve.py:1515 sickbeard/webserve.py:1763 +#: sickbeard/webserve.py:1784 msgid "Invalid show ID" msgstr "" -#: sickbeard/webserve.py:1525 sickbeard/webserve.py:1769 -#: sickbeard/webserve.py:1790 +#: sickbeard/webserve.py:1524 sickbeard/webserve.py:1768 +#: sickbeard/webserve.py:1789 msgid "Unable to find the specified show" msgstr "" -#: sickbeard/webserve.py:1550 +#: sickbeard/webserve.py:1549 msgid "Unable to retreive Fansub Groups from AniDB." msgstr "" -#: sickbeard/webserve.py:1559 sickbeard/webserve.py:1561 +#: sickbeard/webserve.py:1558 sickbeard/webserve.py:1560 msgid "Edit Show" msgstr "" -#: sickbeard/webserve.py:1637 sickbeard/webserve.py:1671 +#: sickbeard/webserve.py:1636 sickbeard/webserve.py:1670 msgid "Unable to refresh this show: {error}" msgstr "" -#: sickbeard/webserve.py:1663 +#: sickbeard/webserve.py:1662 msgid "New location <tt>{location}</tt> does not exist" msgstr "" -#: sickbeard/webserve.py:1688 +#: sickbeard/webserve.py:1687 msgid "Unable to update show: {error}" msgstr "" -#: sickbeard/webserve.py:1695 +#: sickbeard/webserve.py:1694 msgid "Unable to force an update on scene exceptions of the show." msgstr "" -#: sickbeard/webserve.py:1702 +#: sickbeard/webserve.py:1701 msgid "Unable to force an update on scene numbering of the show." msgstr "" -#: sickbeard/webserve.py:1708 sickbeard/webserve.py:3540 +#: sickbeard/webserve.py:1707 sickbeard/webserve.py:3539 msgid "{num_errors:d} error{plural} while saving changes:" msgstr "" -#: sickbeard/webserve.py:1719 +#: sickbeard/webserve.py:1718 msgid "{show_name} has been {paused_resumed}" msgstr "" -#: sickbeard/webserve.py:1719 +#: sickbeard/webserve.py:1718 msgid "resumed" msgstr "" -#: sickbeard/webserve.py:1719 +#: sickbeard/webserve.py:1718 msgid "paused" msgstr "" -#: sickbeard/webserve.py:1731 +#: sickbeard/webserve.py:1730 msgid "{show_name} has been {deleted_trashed} {was_deleted}" msgstr "" -#: sickbeard/webserve.py:1733 +#: sickbeard/webserve.py:1732 msgid "deleted" msgstr "" -#: sickbeard/webserve.py:1733 +#: sickbeard/webserve.py:1732 msgid "trashed" msgstr "" -#: sickbeard/webserve.py:1734 +#: sickbeard/webserve.py:1733 msgid "(media untouched)" msgstr "" -#: sickbeard/webserve.py:1734 +#: sickbeard/webserve.py:1733 msgid "(with all related media)" msgstr "" -#: sickbeard/webserve.py:1755 +#: sickbeard/webserve.py:1754 msgid "Unable to refresh this show." msgstr "" -#: sickbeard/webserve.py:1775 +#: sickbeard/webserve.py:1774 msgid "Unable to update this show." msgstr "" -#: sickbeard/webserve.py:1814 +#: sickbeard/webserve.py:1813 msgid "Library update command sent to KODI host(s)): {kodi_hosts}" msgstr "" -#: sickbeard/webserve.py:1816 +#: sickbeard/webserve.py:1815 msgid "Unable to contact one or more KODI host(s)): {kodi_hosts}" msgstr "" -#: sickbeard/webserve.py:1825 +#: sickbeard/webserve.py:1824 msgid "Library update command sent to Plex Media Server host: {plex_server}" msgstr "" -#: sickbeard/webserve.py:1828 +#: sickbeard/webserve.py:1827 msgid "Unable to contact Plex Media Server host: {plex_server}" msgstr "" -#: sickbeard/webserve.py:1840 +#: sickbeard/webserve.py:1839 msgid "Library update command sent to Emby host: {emby_host}" msgstr "" -#: sickbeard/webserve.py:1842 +#: sickbeard/webserve.py:1841 msgid "Unable to contact Emby host: {emby_host}" msgstr "" -#: sickbeard/webserve.py:1852 sickbeard/webserve.py:2036 +#: sickbeard/webserve.py:1851 sickbeard/webserve.py:2035 msgid "You must specify a show and at least one episode" msgstr "" -#: sickbeard/webserve.py:1861 +#: sickbeard/webserve.py:1860 msgid "Invalid status" msgstr "" -#: sickbeard/webserve.py:1954 +#: sickbeard/webserve.py:1953 msgid "" "Backlog was automatically started for the following seasons of " "<b>{show_name}</b>" msgstr "" #: gui/slick/views/displayShow.mako:74 gui/slick/views/displayShow.mako:79 -#: gui/slick/views/displayShow.mako:404 sickbeard/webserve.py:1961 -#: sickbeard/webserve.py:1980 +#: gui/slick/views/displayShow.mako:404 sickbeard/webserve.py:1960 +#: sickbeard/webserve.py:1979 msgid "Season" msgstr "" -#: sickbeard/webserve.py:1968 +#: sickbeard/webserve.py:1967 msgid "Backlog started" msgstr "" -#: sickbeard/webserve.py:1973 +#: sickbeard/webserve.py:1972 msgid "" "Retrying Search was automatically started for the following season of " "<b>{show_name}</b>" msgstr "" -#: sickbeard/webserve.py:1987 +#: sickbeard/webserve.py:1986 msgid "Retry Search started" msgstr "" -#: sickbeard/webserve.py:1997 +#: sickbeard/webserve.py:1996 msgid "You must specify a show" msgstr "" -#: sickbeard/webserve.py:2007 sickbeard/webserve.py:2045 +#: sickbeard/webserve.py:2006 sickbeard/webserve.py:2044 msgid "Can't rename episodes when the show dir is missing." msgstr "" -#: sickbeard/webserve.py:2212 sickbeard/webserve.py:2233 +#: sickbeard/webserve.py:2211 sickbeard/webserve.py:2232 msgid "New subtitles downloaded: {new_subtitle_languages}" msgstr "" -#: sickbeard/webserve.py:2215 sickbeard/webserve.py:2236 +#: sickbeard/webserve.py:2214 sickbeard/webserve.py:2235 msgid "No subtitles downloaded" msgstr "" #: gui/slick/views/config_general.mako:80 gui/slick/views/layouts/main.mako:222 -#: sickbeard/webserve.py:2363 +#: sickbeard/webserve.py:2362 msgid "IRC" msgstr "" -#: sickbeard/webserve.py:2376 +#: sickbeard/webserve.py:2375 msgid "Could not load news from the repo. [Click here for news.md])({news_url})" msgstr "" -#: sickbeard/webserve.py:2383 sickbeard/webserve.py:2401 +#: sickbeard/webserve.py:2382 sickbeard/webserve.py:2400 msgid "The was a problem connecting to github, please refresh and try again" msgstr "" -#: sickbeard/webserve.py:2398 +#: sickbeard/webserve.py:2397 msgid "" "Could not load changes from the repo. [Click here for " "CHANGES.md]({changes_url})" msgstr "" -#: gui/slick/views/layouts/main.mako:223 sickbeard/webserve.py:2403 +#: gui/slick/views/layouts/main.mako:223 sickbeard/webserve.py:2402 msgid "Changelog" msgstr "" -#: gui/slick/views/layouts/main.mako:190 sickbeard/webserve.py:2413 -#: sickbeard/webserve.py:3855 sickbeard/webserve.py:4341 +#: gui/slick/views/layouts/main.mako:190 sickbeard/webserve.py:2412 +#: sickbeard/webserve.py:3826 sickbeard/webserve.py:4312 msgid "Post Processing" msgstr "" -#: gui/slick/views/layouts/main.mako:128 sickbeard/webserve.py:2445 +#: gui/slick/views/layouts/main.mako:128 sickbeard/webserve.py:2444 msgid "Add Shows" msgstr "" -#: sickbeard/webserve.py:2510 +#: sickbeard/webserve.py:2509 msgid "No folders selected." msgstr "" -#: sickbeard/webserve.py:2632 +#: sickbeard/webserve.py:2631 msgid "New Show" msgstr "" -#: sickbeard/webserve.py:2647 +#: sickbeard/webserve.py:2646 msgid "Trending Shows" msgstr "" -#: sickbeard/webserve.py:2649 sickbeard/webserve.py:2772 +#: sickbeard/webserve.py:2648 sickbeard/webserve.py:2771 msgid "Popular Shows" msgstr "" -#: sickbeard/webserve.py:2651 sickbeard/webserve.py:2665 +#: sickbeard/webserve.py:2650 sickbeard/webserve.py:2664 msgid "Most Anticipated Shows" msgstr "" -#: sickbeard/webserve.py:2653 +#: sickbeard/webserve.py:2652 msgid "Most Collected Shows" msgstr "" -#: sickbeard/webserve.py:2655 +#: sickbeard/webserve.py:2654 msgid "Most Watched Shows" msgstr "" -#: sickbeard/webserve.py:2657 +#: sickbeard/webserve.py:2656 msgid "Most Played Shows" msgstr "" -#: sickbeard/webserve.py:2659 +#: sickbeard/webserve.py:2658 msgid "Recommended Shows" msgstr "" -#: gui/slick/views/addShows_trendingShows.mako:60 sickbeard/webserve.py:2661 +#: gui/slick/views/addShows_trendingShows.mako:60 sickbeard/webserve.py:2660 msgid "New Shows" msgstr "" -#: gui/slick/views/addShows_trendingShows.mako:61 sickbeard/webserve.py:2663 +#: gui/slick/views/addShows_trendingShows.mako:61 sickbeard/webserve.py:2662 msgid "Season Premieres" msgstr "" -#: sickbeard/webserve.py:2792 sickbeard/webserve.py:2793 +#: sickbeard/webserve.py:2791 sickbeard/webserve.py:2792 msgid "Existing Show" msgstr "" -#: sickbeard/webserve.py:2871 +#: sickbeard/webserve.py:2870 msgid "No root directories setup, please go back and add one." msgstr "" -#: sickbeard/webserve.py:2883 sickbeard/webserve.py:3002 +#: sickbeard/webserve.py:2882 sickbeard/webserve.py:3001 msgid "Show added" msgstr "" -#: sickbeard/webserve.py:2883 +#: sickbeard/webserve.py:2882 msgid "Adding the specified show {show_name}" msgstr "" -#: sickbeard/webserve.py:2924 +#: sickbeard/webserve.py:2923 msgid "" "Missing params, no Indexer ID or folder: {show_to_add} and " "{root_dir}/{show_path}" msgstr "" -#: sickbeard/webserve.py:2933 +#: sickbeard/webserve.py:2932 msgid "Unknown error. Unable to add show due to problem with show selection." msgstr "" -#: sickbeard/webserve.py:2957 sickbeard/webserve.py:2967 +#: sickbeard/webserve.py:2956 sickbeard/webserve.py:2966 msgid "Unable to add show" msgstr "" -#: sickbeard/webserve.py:2957 +#: sickbeard/webserve.py:2956 msgid "Folder {show_dir} exists already" msgstr "" -#: sickbeard/webserve.py:2968 +#: sickbeard/webserve.py:2967 msgid "Unable to create the folder {show_dir}, can't add the show" msgstr "" -#: sickbeard/webserve.py:3002 +#: sickbeard/webserve.py:3001 msgid "Adding the specified show into {show_dir}" msgstr "" -#: sickbeard/webserve.py:3078 +#: sickbeard/webserve.py:3077 msgid "Shows Added" msgstr "" -#: sickbeard/webserve.py:3079 +#: sickbeard/webserve.py:3078 msgid "Automatically added {num_shows} from their existing metadata files" msgstr "" -#: gui/slick/views/layouts/main.mako:153 sickbeard/webserve.py:3096 +#: gui/slick/views/layouts/main.mako:153 sickbeard/webserve.py:3095 msgid "Mass Update" msgstr "" -#: sickbeard/webserve.py:3134 sickbeard/webserve.py:3161 -#: sickbeard/webserve.py:3237 sickbeard/webserve.py:3238 +#: sickbeard/webserve.py:3133 sickbeard/webserve.py:3160 +#: sickbeard/webserve.py:3236 sickbeard/webserve.py:3237 msgid "Episode Overview" msgstr "" -#: sickbeard/webserve.py:3270 +#: sickbeard/webserve.py:3269 msgid "Missing Subtitles" msgstr "" -#: gui/slick/views/layouts/main.mako:154 sickbeard/webserve.py:3356 -#: sickbeard/webserve.py:3357 +#: gui/slick/views/layouts/main.mako:154 sickbeard/webserve.py:3355 +#: sickbeard/webserve.py:3356 msgid "Backlog Overview" msgstr "" -#: sickbeard/webserve.py:3481 +#: sickbeard/webserve.py:3480 msgid "Mass Edit" msgstr "" -#: sickbeard/webserve.py:3586 +#: sickbeard/webserve.py:3585 msgid "Unable to update show: {excption_format}" msgstr "" -#: sickbeard/webserve.py:3594 +#: sickbeard/webserve.py:3593 msgid "Unable to refresh show {show_name}: {excption_format}" msgstr "" -#: sickbeard/webserve.py:3605 +#: sickbeard/webserve.py:3604 msgid "Errors encountered" msgstr "" -#: gui/slick/views/config_general.mako:261 sickbeard/webserve.py:3611 +#: gui/slick/views/config_general.mako:261 sickbeard/webserve.py:3610 msgid "Updates" msgstr "" -#: sickbeard/webserve.py:3616 +#: sickbeard/webserve.py:3615 msgid "Refreshes" msgstr "" -#: sickbeard/webserve.py:3621 +#: sickbeard/webserve.py:3620 msgid "Renames" msgstr "" #: gui/slick/views/displayShow.mako:260 gui/slick/views/displayShow.mako:435 #: gui/slick/views/editShow.mako:119 gui/slick/views/inc_addShowOptions.mako:20 -#: gui/slick/views/manage_massEdit.mako:262 sickbeard/webserve.py:3626 -#: sickbeard/webserve.py:5244 +#: gui/slick/views/manage_massEdit.mako:262 sickbeard/webserve.py:3625 +#: sickbeard/webserve.py:5215 msgid "Subtitles" msgstr "" -#: sickbeard/webserve.py:3631 +#: sickbeard/webserve.py:3630 msgid "The following actions were queued" msgstr "" -#: sickbeard/webserve.py:3651 -msgid "For best results please set the Download Station alias as" -msgstr "" - -#: sickbeard/webserve.py:3652 -msgid "You can check this setting in the Synology DSM" -msgstr "" - -#: sickbeard/webserve.py:3652 sickbeard/webserve.py:3654 -msgid "Control Panel" -msgstr "" - -#: sickbeard/webserve.py:3652 -msgid "Application Portal" -msgstr "" - -#: sickbeard/webserve.py:3653 -msgid "Make sure you allow DSM to be embedded with iFrames too in" -msgstr "" - -#: sickbeard/webserve.py:3654 -msgid "DSM Settings" -msgstr "" - -#: sickbeard/webserve.py:3654 -msgid "Security" -msgstr "" - -#: gui/slick/views/layouts/main.mako:167 sickbeard/webserve.py:3662 -msgid "Manage Torrents" -msgstr "" - -#: gui/slick/views/layouts/main.mako:170 sickbeard/webserve.py:3683 +#: gui/slick/views/layouts/main.mako:170 sickbeard/webserve.py:3654 msgid "Failed Downloads" msgstr "" -#: gui/slick/views/layouts/main.mako:155 sickbeard/webserve.py:3701 +#: gui/slick/views/layouts/main.mako:155 sickbeard/webserve.py:3672 msgid "Manage Searches" msgstr "" -#: sickbeard/webserve.py:3709 +#: sickbeard/webserve.py:3680 msgid "Backlog search started" msgstr "" -#: sickbeard/webserve.py:3719 +#: sickbeard/webserve.py:3690 msgid "Daily search started" msgstr "" -#: sickbeard/webserve.py:3728 +#: sickbeard/webserve.py:3699 msgid "Find propers search started" msgstr "" -#: sickbeard/webserve.py:3737 +#: sickbeard/webserve.py:3708 msgid "Subtitle search started" msgstr "" -#: sickbeard/webserve.py:3801 +#: sickbeard/webserve.py:3772 msgid "Remove Selected" msgstr "" -#: sickbeard/webserve.py:3802 +#: sickbeard/webserve.py:3773 msgid "Clear History" msgstr "" -#: sickbeard/webserve.py:3803 +#: sickbeard/webserve.py:3774 msgid "Trim History" msgstr "" -#: sickbeard/webserve.py:3823 +#: sickbeard/webserve.py:3794 msgid "Selected history entries removed" msgstr "" -#: sickbeard/webserve.py:3830 +#: sickbeard/webserve.py:3801 msgid "History cleared" msgstr "" -#: sickbeard/webserve.py:3837 +#: sickbeard/webserve.py:3808 msgid "Removed history entries older than 30 days" msgstr "" -#: gui/slick/views/layouts/main.mako:185 sickbeard/webserve.py:3850 +#: gui/slick/views/layouts/main.mako:185 sickbeard/webserve.py:3821 msgid "General" msgstr "" -#: sickbeard/webserve.py:3851 sickbeard/webserve.py:4143 +#: sickbeard/webserve.py:3822 sickbeard/webserve.py:4114 msgid "Backup/Restore" msgstr "" -#: gui/slick/views/layouts/main.mako:187 sickbeard/webserve.py:3852 -#: sickbeard/webserve.py:4206 +#: gui/slick/views/layouts/main.mako:187 sickbeard/webserve.py:3823 +#: sickbeard/webserve.py:4177 msgid "Search Settings" msgstr "" -#: gui/slick/views/layouts/main.mako:188 sickbeard/webserve.py:3853 -#: sickbeard/webserve.py:4518 +#: gui/slick/views/layouts/main.mako:188 sickbeard/webserve.py:3824 +#: sickbeard/webserve.py:4489 msgid "Search Providers" msgstr "" -#: gui/slick/views/layouts/main.mako:189 sickbeard/webserve.py:3854 +#: gui/slick/views/layouts/main.mako:189 sickbeard/webserve.py:3825 msgid "Subtitles Settings" msgstr "" -#: gui/slick/views/layouts/main.mako:191 sickbeard/webserve.py:3856 -#: sickbeard/webserve.py:4964 +#: gui/slick/views/layouts/main.mako:191 sickbeard/webserve.py:3827 +#: sickbeard/webserve.py:4935 msgid "Notifications" msgstr "" @@ -1276,148 +1273,148 @@ msgstr "" #: gui/slick/views/home.mako:35 gui/slick/views/inc_addShowOptions.mako:79 #: gui/slick/views/inc_home_showList.mako:179 #: gui/slick/views/layouts/main.mako:192 gui/slick/views/manage.mako:44 -#: gui/slick/views/manage_massEdit.mako:202 sickbeard/webserve.py:3857 -#: sickbeard/webserve.py:5309 +#: gui/slick/views/manage_massEdit.mako:202 sickbeard/webserve.py:3828 +#: sickbeard/webserve.py:5280 msgid "Anime" msgstr "" -#: sickbeard/webserve.py:3895 sickbeard/webserve.py:3896 +#: sickbeard/webserve.py:3866 sickbeard/webserve.py:3867 msgid "SickRage Configuration" msgstr "" -#: sickbeard/webserve.py:3910 +#: sickbeard/webserve.py:3881 msgid "Config - Shares" msgstr "" -#: sickbeard/webserve.py:3910 +#: sickbeard/webserve.py:3881 msgid "Windows Shares Configuration" msgstr "" -#: sickbeard/webserve.py:3937 +#: sickbeard/webserve.py:3908 msgid "Saved Shares" msgstr "" -#: sickbeard/webserve.py:3937 +#: sickbeard/webserve.py:3908 msgid "Your Windows share settings have been saved" msgstr "" -#: sickbeard/webserve.py:3948 +#: sickbeard/webserve.py:3919 msgid "Config - General" msgstr "" -#: sickbeard/webserve.py:3948 +#: sickbeard/webserve.py:3919 msgid "General Configuration" msgstr "" -#: sickbeard/webserve.py:3988 +#: sickbeard/webserve.py:3959 msgid "Saved Defaults" msgstr "" -#: sickbeard/webserve.py:3988 +#: sickbeard/webserve.py:3959 msgid "Your \"add show\" defaults have been set to your current selections." msgstr "" -#: sickbeard/webserve.py:4095 +#: sickbeard/webserve.py:4066 msgid "Unable to create directory {directory}, log directory not changed." msgstr "" -#: sickbeard/webserve.py:4103 +#: sickbeard/webserve.py:4074 msgid "Unable to create directory {directory}, https cert directory not changed." msgstr "" -#: sickbeard/webserve.py:4107 +#: sickbeard/webserve.py:4078 msgid "Unable to create directory {directory}, https key directory not changed." msgstr "" -#: sickbeard/webserve.py:4126 sickbeard/webserve.py:4324 -#: sickbeard/webserve.py:4456 sickbeard/webserve.py:5227 +#: sickbeard/webserve.py:4097 sickbeard/webserve.py:4295 +#: sickbeard/webserve.py:4427 sickbeard/webserve.py:5198 msgid "Error(s) Saving Configuration" msgstr "" -#: sickbeard/webserve.py:4129 sickbeard/webserve.py:4327 -#: sickbeard/webserve.py:4458 sickbeard/webserve.py:4950 -#: sickbeard/webserve.py:5230 sickbeard/webserve.py:5294 -#: sickbeard/webserve.py:5323 +#: sickbeard/webserve.py:4100 sickbeard/webserve.py:4298 +#: sickbeard/webserve.py:4429 sickbeard/webserve.py:4921 +#: sickbeard/webserve.py:5201 sickbeard/webserve.py:5265 +#: sickbeard/webserve.py:5294 msgid "Configuration Saved" msgstr "" -#: sickbeard/webserve.py:4142 +#: sickbeard/webserve.py:4113 msgid "Config - Backup/Restore" msgstr "" -#: sickbeard/webserve.py:4205 +#: sickbeard/webserve.py:4176 msgid "Config - Episode Search" msgstr "" -#: sickbeard/webserve.py:4340 +#: sickbeard/webserve.py:4311 msgid "Config - Post Processing" msgstr "" -#: sickbeard/webserve.py:4380 +#: sickbeard/webserve.py:4351 msgid "Unpacking Not Supported, disabling unpack setting" msgstr "" -#: sickbeard/webserve.py:4431 +#: sickbeard/webserve.py:4402 msgid "" "You tried saving an invalid normal naming config, not saving your naming " "settings" msgstr "" -#: sickbeard/webserve.py:4439 +#: sickbeard/webserve.py:4410 msgid "" "You tried saving an invalid anime naming config, not saving your naming " "settings" msgstr "" -#: sickbeard/webserve.py:4517 +#: sickbeard/webserve.py:4488 msgid "Config - Providers" msgstr "" -#: sickbeard/webserve.py:4547 +#: sickbeard/webserve.py:4518 msgid "No Provider Name specified" msgstr "" -#: sickbeard/webserve.py:4549 +#: sickbeard/webserve.py:4520 msgid "No Provider Url specified" msgstr "" -#: sickbeard/webserve.py:4551 +#: sickbeard/webserve.py:4522 msgid "No Provider Api key specified" msgstr "" -#: sickbeard/webserve.py:4963 +#: sickbeard/webserve.py:4934 msgid "Config - Notifications" msgstr "" -#: sickbeard/webserve.py:5243 +#: sickbeard/webserve.py:5214 msgid "Config - Subtitles" msgstr "" -#: sickbeard/webserve.py:5308 +#: sickbeard/webserve.py:5279 msgid "Config - Anime" msgstr "" -#: sickbeard/webserve.py:5336 +#: sickbeard/webserve.py:5307 msgid "Clear Errors" msgstr "" -#: sickbeard/webserve.py:5342 +#: sickbeard/webserve.py:5313 msgid "Clear Warnings" msgstr "" -#: sickbeard/webserve.py:5348 +#: sickbeard/webserve.py:5319 msgid "Submit Errors" msgstr "" -#: sickbeard/webserve.py:5363 +#: sickbeard/webserve.py:5334 msgid "Logs & Errors" msgstr "" -#: sickbeard/webserve.py:5388 +#: sickbeard/webserve.py:5359 msgid "Log File" msgstr "" -#: sickbeard/webserve.py:5388 +#: sickbeard/webserve.py:5359 msgid "Logs" msgstr "" @@ -1425,33 +1422,173 @@ msgstr "" msgid "This is a test notification from SickRage" msgstr "" -#: gui/slick/js/core.js:481 gui/slick/js/core.js:502 gui/slick/js/core.js:524 -#: gui/slick/js/core.js:548 gui/slick/js/core.js:573 gui/slick/js/core.js:596 -#: gui/slick/js/core.js:625 gui/slick/js/core.js:645 gui/slick/js/core.js:690 -#: gui/slick/js/core.js:769 gui/slick/js/core.js:829 gui/slick/js/core.js:849 -#: gui/slick/js/core.js:879 gui/slick/js/core.js:909 gui/slick/js/core.js:969 -#: gui/slick/js/core.js:1046 gui/slick/js/core.js:1066 -#: gui/slick/js/core.js:1085 +#: gui/slick/js/browser.js:6 +msgid "Choose Directory" +msgstr "" + +#: gui/slick/js/core.js:443 +msgid "Select log file folder location" +msgstr "" + +#: gui/slick/js/core.js:445 +msgid "Select CSS file" +msgstr "" + +#: gui/slick/js/core.js:469 +msgid "Select backup folder to save to" +msgstr "" + +#: gui/slick/js/core.js:470 +msgid "Select backup files to restore" +msgstr "" + +#: gui/slick/js/core.js:479 gui/slick/js/core.js:500 gui/slick/js/core.js:522 +#: gui/slick/js/core.js:546 gui/slick/js/core.js:571 gui/slick/js/core.js:594 +#: gui/slick/js/core.js:623 gui/slick/js/core.js:643 gui/slick/js/core.js:688 +#: gui/slick/js/core.js:767 gui/slick/js/core.js:827 gui/slick/js/core.js:847 +#: gui/slick/js/core.js:877 gui/slick/js/core.js:907 gui/slick/js/core.js:967 +#: gui/slick/js/core.js:1044 gui/slick/js/core.js:1064 +#: gui/slick/js/core.js:1083 msgid "Please fill out the necessary fields above." msgstr "" -#: gui/slick/js/core.js:1328 gui/slick/js/core.js:1378 -#: gui/slick/js/core.js:1427 gui/slick/js/core.js:1493 +#: gui/slick/js/core.js:680 +msgid "<b>Step 1:</b> Confirm Authorization" +msgstr "" + +#: gui/slick/js/core.js:977 +msgid "Check blacklist name; the value needs to be a trakt slug" +msgstr "" + +#: gui/slick/js/core.js:1022 +msgid "You must provide a recipient email address!" +msgstr "" + +#: gui/slick/js/core.js:1107 +msgid "You didn't supply a Pushbullet api key" +msgstr "" + +#: gui/slick/js/core.js:1133 gui/slick/js/core.js:1162 +msgid "Don't forget to save your new pushbullet settings." +msgstr "" + +#: gui/slick/js/core.js:1262 +msgid "Select TV Download Directory" +msgstr "" + +#: gui/slick/js/core.js:1263 +msgid "Select Unpack Directory" +msgstr "" + +#: gui/slick/js/core.js:1326 gui/slick/js/core.js:1376 +#: gui/slick/js/core.js:1425 gui/slick/js/core.js:1491 msgid "This pattern is invalid." msgstr "" -#: gui/slick/js/core.js:1336 gui/slick/js/core.js:1386 -#: gui/slick/js/core.js:1435 gui/slick/js/core.js:1501 +#: gui/slick/js/core.js:1334 gui/slick/js/core.js:1384 +#: gui/slick/js/core.js:1433 gui/slick/js/core.js:1499 msgid "" "This pattern would be invalid without the folders, using it will force " "\"Season Folders\" on for all shows." msgstr "" -#: gui/slick/js/core.js:1344 gui/slick/js/core.js:1394 -#: gui/slick/js/core.js:1443 gui/slick/js/core.js:1509 +#: gui/slick/js/core.js:1342 gui/slick/js/core.js:1392 +#: gui/slick/js/core.js:1441 gui/slick/js/core.js:1507 msgid "This pattern is valid." msgstr "" +#: gui/slick/js/core.js:1818 +msgid "Select .nzb black hole/watch location" +msgstr "" + +#: gui/slick/js/core.js:1819 +msgid "Select .torrent black hole/watch location" +msgstr "" + +#: gui/slick/js/core.js:1820 +msgid "Select .torrent download location" +msgstr "" + +#: gui/slick/js/core.js:1900 +msgid "Minimum seeding time is" +msgstr "" + +#: gui/slick/js/core.js:1902 +msgid "URL to your uTorrent client (e.g. http://localhost:8000)" +msgstr "" + +#: gui/slick/js/core.js:1905 +msgid "Stop seeding when inactive for" +msgstr "" + +#: gui/slick/js/core.js:1911 +msgid "URL to your Transmission client (e.g. http://localhost:9091)" +msgstr "" + +#: gui/slick/js/core.js:1921 +msgid "URL to your Deluge client (e.g. http://localhost:8112)" +msgstr "" + +#: gui/slick/js/core.js:1930 +msgid "IP or Hostname of your Deluge Daemon (e.g. scgi://localhost:58846)" +msgstr "" + +#: gui/slick/js/core.js:1937 +msgid "URL to your Synology DS client (e.g. http://localhost:5000)" +msgstr "" + +#: gui/slick/js/core.js:1941 +msgid "" +"URL to your rTorrent client (e.g. scgi://localhost:5000 <br> or " +"https://localhost/rutorrent/plugins/httprpc/action.php)" +msgstr "" + +#: gui/slick/js/core.js:1952 +msgid "URL to your qBittorrent client (e.g. http://localhost:8080)" +msgstr "" + +#: gui/slick/js/core.js:1962 +msgid "URL to your MLDonkey (e.g. http://localhost:4080)" +msgstr "" + +#: gui/slick/js/core.js:1974 +msgid "URL to your putio client (e.g. http://localhost:8080)" +msgstr "" + +#: gui/slick/js/core.js:1975 +msgid "" +"<a herf=\"https://app.put.io/oauth/apps/new\" target=\"_blank\"> Create a" +" new OAuth app for put.io</a>" +msgstr "" + +#: gui/slick/js/core.js:1977 +msgid "Put.io Parent Folder" +msgstr "" + +#: gui/slick/js/core.js:1978 +msgid "Put.io OAuth Token" +msgstr "" + +#: gui/slick/js/core.js:3383 gui/slick/views/displayShow.mako:410 +msgid "Show Episodes" +msgstr "" + +#: gui/slick/js/core.js:3388 gui/slick/views/displayShow.mako:408 +msgid "Hide Episodes" +msgstr "" + +#: gui/slick/js/core.js:3396 +msgid "Select Show Location" +msgstr "" + +#: gui/slick/js/core.js:3460 +msgid "Select Unprocessed Episode Folder" +msgstr "" + +#: gui/slick/js/core.js:3790 +msgid "DELETED" +msgstr "" + #: gui/slick/js/core.js:4082 msgid "Resume updating the log on this page." msgstr "" @@ -1460,6 +1597,26 @@ msgstr "" msgid "Pause updating the log on this page." msgstr "" +#: gui/slick/js/core.js:4323 +msgid "searching {searchingFor}..." +msgstr "" + +#: gui/slick/js/core.js:4334 +msgid "search timed out, try again or try another indexer" +msgstr "" + +#: gui/slick/js/core.js:4503 +msgid "loading folders..." +msgstr "" + +#: gui/slick/js/parsers.js:7 gui/slick/js/parsers.js:8 +#: gui/slick/js/plotTooltip.js:6 gui/slick/js/sceneExceptionsTooltip.js:6 +#: gui/slick/views/inc_home_showList.mako:209 +#: gui/slick/views/inc_home_showList.mako:215 +#: gui/slick/views/inc_home_showList.mako:231 +msgid "Loading..." +msgstr "" + #: gui/slick/views/404.mako:5 msgid "You have reached this page by accident, please check the url." msgstr "" @@ -5982,14 +6139,6 @@ msgstr "" msgid "Select Columns" msgstr "" -#: gui/slick/views/displayShow.mako:408 -msgid "Hide Episodes" -msgstr "" - -#: gui/slick/views/displayShow.mako:410 -msgid "Show Episodes" -msgstr "" - #: gui/slick/views/displayShow.mako:424 msgid "NFO" msgstr "" @@ -6536,12 +6685,6 @@ msgstr "" msgid "loading" msgstr "" -#: gui/slick/views/inc_home_showList.mako:209 -#: gui/slick/views/inc_home_showList.mako:215 -#: gui/slick/views/inc_home_showList.mako:231 -msgid "Loading..." -msgstr "" - #: gui/slick/views/inc_qualityChooser.mako:31 msgid "" "<p><b><u>Preferred</u></b> qualities will replace those in " @@ -7096,6 +7239,10 @@ msgstr "" msgid "Update Emby" msgstr "" +#: gui/slick/views/layouts/main.mako:167 +msgid "Manage Torrents" +msgstr "" + #: gui/slick/views/layouts/main.mako:173 msgid "Missed Subtitle Management" msgstr "" diff --git a/locale/zh_CN/LC_MESSAGES/messages.json b/locale/zh_CN/LC_MESSAGES/messages.json index dbba9348072c1e4e46131fa4640710b3c592e20c..bb9f0f38dce836b51c24804c8c74cf0a406e8a86 100644 --- a/locale/zh_CN/LC_MESSAGES/messages.json +++ b/locale/zh_CN/LC_MESSAGES/messages.json @@ -1 +1 @@ -{"messages":{"domain":"messages","locale_data":{"messages":{"100":[null,""],"250":[null,""],"500":[null,""],"":{"domain":"messages","plural_forms":"nplurals=1; plural=0;","lang":"zh_CN"},"Drama":[null,""],"Mystery":[null,""],"Science-Fiction":[null,""],"Crime":[null,""],"Action":[null,""],"Comedy":[null,""],"Thriller":[null,""],"Animation":[null,""],"Family":[null,""],"Fantasy":[null,""],"Adventure":[null,""],"Horror":[null,""],"Film-Noir":[null,""],"Sci-Fi":[null,""],"Romance":[null,""],"Sport":[null,""],"War":[null,""],"Biography":[null,""],"History":[null,""],"Music":[null,""],"Western":[null,""],"News":[null,""],"Sitcom":[null,""],"Reality-TV":[null,""],"Documentary":[null,""],"Game-Show":[null,""],"Musical":[null,""],"Talk-Show":[null,""],"Started Download":[null,"开始下载"],"Download Finished":[null,"下载完成"],"Subtitle Download Finished":[null,"字幕下载完成"],"SickRage Updated":[null,"SickRage更新完成"],"SickRage Updated To Commit#: ":[null,"SickRage更新至Commit#: "],"SickRage new login":[null,"SickRage新的登录"],"New login from IP: {0}. http://geomaplookup.net/?ip={0}":[null,"您的账户在 ip 地址 ︰ {0}. http://geomaplookup.net/?ip={0} 登录"],"Repeat":[null,""],"Repeat (Separated)":[null,""],"Extend":[null,""],"Extend (Limited)":[null,""],"Extend (Limited, E-prefixed)":[null,""],"Downloaded":[null,"已下载"],"Snatched":[null,"已获取"],"Snatched (Proper)":[null,""],"Failed":[null,"失败"],"Snatched (Best)":[null,""],"Archived":[null,"已存档"],"Unknown":[null,"未知 !"],"Unaired":[null,"未播出"],"Skipped":[null,"跳过"],"Wanted":[null,"想要"],"Ignored":[null,"已忽略"],"Subtitled":[null,"有字幕"],"<No Filter>":[null,""],"Daily Searcher":[null,""],"Backlog":[null,""],"Show Updater":[null,""],"Check Version":[null,""],"Show Queue":[null,""],"Search Queue (All)":[null,""],"Search Queue (Daily Searcher)":[null,""],"Search Queue (Backlog)":[null,""],"Search Queue (Manual)":[null,""],"Search Queue (Retry/Failed)":[null,""],"Search Queue (RSS)":[null,""],"Find Propers":[null,""],"Postprocessor":[null,""],"Find Subtitles":[null,""],"Trakt Checker":[null,""],"Event":[null,""],"Error":[null,"错误"],"Tornado":[null,""],"Thread":[null,""],"Main":[null,""],"Loading":[null,""],"New update found for SickRage, starting auto-updater":[null,""],"Update was successful":[null,""],"Update failed!":[null,""],"Backup":[null,""],"Config backup in progress...":[null,""],"Config backup successful, updating...":[null,""],"Config backup failed, aborting update":[null,""],"No update needed":[null,""],"Mako Error":[null,""],"Oops":[null,"哎呀"],"Wrong API key used":[null,"错误的API密钥"],"Login":[null,"登录"],"API Key not generated":[null,"API密钥未生成"],"API Builder":[null,"API 生成器"],"Schedule":[null,"日程"],"Test 1":[null,"测试 1"],"This is test number 1":[null,"这是测试1"],"Test 2":[null,"测试 2"],"This is test number 2":[null,"这是测试2"],"You're using the {branch} branch. Please use 'master' unless specifically asked":[null,""],"Invalid show parameters":[null,"无效的显示参数"],"Invalid parameters":[null,""],"Episode couldn't be retrieved":[null,"无法获取此集"],"Home":[null,"首页"],"Show List":[null,"节目清单"],"Error: Unsupported Request. Send jsonp request with 'callback' variable in the query string.":[null,"错误 ︰ 不支持的请求。请以callback作为变量发送jsonp请求"],"Success. Connected and authenticated":[null,"成功。已连接并通过身份验证"],"Authentication failed. SABnzbd expects":[null,""],"as authentication method":[null,"作为身份验证方法"],"Unable to connect to host":[null,"无法连接到主机"],"SMS sent successfully":[null,""],"Problem sending SMS: {message}":[null,""],"Telegram notification succeeded. Check your Telegram clients to make sure it worked":[null,""],"Error sending Telegram notification: {message}":[null,""],"join notification succeeded. Check your join clients to make sure it worked":[null,""],"Error sending join notification: {message}":[null,""]," with password":[null,""],"Registered and Tested growl successfully {growl_host}":[null,""],"Registration and Testing of growl failed {growl_host}":[null,""],"Test prowl notice sent successfully":[null,""],"Test prowl notice failed":[null,""],"Boxcar2 notification succeeded. Check your Boxcar2 clients to make sure it worked":[null,""],"Error sending Boxcar2 notification":[null,""],"Pushover notification succeeded. Check your Pushover clients to make sure it worked":[null,""],"Error sending Pushover notification":[null,""],"Key verification successful":[null,""],"Unable to verify key":[null,""],"Tweet successful, check your twitter to make sure it worked":[null,""],"Error sending tweet":[null,""],"Please enter a valid account sid":[null,""],"Please enter a valid auth token":[null,""],"Please enter a valid phone sid":[null,""],"Please format the phone number as \"+1-###-###-####\"":[null,""],"Authorization successful and number ownership verified":[null,""],"Error sending sms":[null,""],"Slack message successful":[null,""],"Slack message failed":[null,""],"Discord message successful":[null,""],"Discord message failed":[null,""],"Test KODI notice sent successfully to {kodi_host}":[null,""],"Test KODI notice failed to {kodi_host}":[null,""],"Successful test notice sent to Plex Home Theater ... {plex_clients}":[null,""],"Test failed for Plex Home Theater ... {plex_clients}":[null,""],"Tested Plex Home Theater(s)":[null,""],"Successful test of Plex Media Server(s) ... {plex_servers}":[null,""],"Test failed, No Plex Media Server host specified":[null,""],"Test failed for Plex Media Server(s) ... {plex_servers}":[null,""],"Tested Plex Media Server host(s)":[null,""],"Tried sending desktop notification via libnotify":[null,""],"Test notice sent successfully to {emby_host}":[null,""],"Test notice failed to {emby_host}":[null,""],"Successfully started the scan update":[null,""],"Test failed to start the scan update":[null,""],"Test notice sent successfully to {nmj2_host}":[null,""],"Test notice failed to {nmj2_host}":[null,""],"Trakt Authorized":[null,""],"Trakt Not Authorized!":[null,""],"Test email sent successfully! Check inbox.":[null,""],"ERROR: {last_error}":[null,""],"Test NMA notice sent successfully":[null,""],"Test NMA notice failed":[null,""],"Pushalot notification succeeded. Check your Pushalot clients to make sure it worked":[null,""],"Error sending Pushalot notification":[null,""],"Pushbullet notification succeeded. Check your device to make sure it worked":[null,""],"Error sending Pushbullet notification":[null,""],"Status":[null,""],"Restarting SickRage":[null,""],"Update Failed":[null,"更新失败"],"Update wasn't successful, not restarting. Check your log for more information.":[null,"更新不成功,不重新启动。请检查您的日志以了解更多信息。"],"Checking out branch":[null,"检出branch"],"Already on branch":[null,"已经在branch上"],"Invalid show ID: {show}":[null,"无效的节目ID: {show}"],"Show not in show list":[null,"节目不在清单中"],"Edit":[null,"更改"],"This show is in the process of being downloaded - the info below is incomplete.":[null,""],"The information on this page is in the process of being updated.":[null,""],"The episodes below are currently being refreshed from disk":[null,""],"Currently downloading subtitles for this show":[null,""],"This show is queued to be refreshed.":[null,""],"This show is queued and awaiting an update.":[null,""],"This show is queued and awaiting subtitles download.":[null,""],"Resume":[null,"继续"],"Pause":[null,"暂停"],"Remove":[null,"移除"],"Re-scan files":[null,"重新扫描文件"],"Force Full Update":[null,"强制全部更新"],"Update show in KODI":[null,"在KODI中更新节目"],"Update show in Emby":[null,"在Emby中更新节目"],"Hide specials":[null,""],"Show specials":[null,""],"Preview Rename":[null,"预览重命名"],"Download Subtitles":[null,"下载字幕"],"No scene exceptions":[null,""],"Invalid show ID":[null,"无效的节目ID"],"Unable to find the specified show":[null,"无法找到指定的节目"],"Unable to retreive Fansub Groups from AniDB.":[null,""],"Edit Show":[null,"编辑节目"],"Unable to refresh this show: {error}":[null,"无法刷新此显节目︰ {error}"],"New location <tt>{location}</tt> does not exist":[null,""],"Unable to update show: {error}":[null,""],"Unable to force an update on scene exceptions of the show.":[null,""],"Unable to force an update on scene numbering of the show.":[null,""],"{num_errors:d} error{plural} while saving changes:":[null,""],"{show_name} has been {paused_resumed}":[null,""],"resumed":[null,""],"paused":[null,""],"{show_name} has been {deleted_trashed} {was_deleted}":[null,""],"deleted":[null,""],"trashed":[null,""],"(media untouched)":[null,""],"(with all related media)":[null,""],"Unable to refresh this show.":[null,""],"Unable to update this show.":[null,""],"Library update command sent to KODI host(s)): {kodi_hosts}":[null,""],"Unable to contact one or more KODI host(s)): {kodi_hosts}":[null,""],"Library update command sent to Plex Media Server host: {plex_server}":[null,""],"Unable to contact Plex Media Server host: {plex_server}":[null,""],"Library update command sent to Emby host: {emby_host}":[null,""],"Unable to contact Emby host: {emby_host}":[null,""],"You must specify a show and at least one episode":[null,""],"Invalid status":[null,""],"Backlog was automatically started for the following seasons of <b>{show_name}</b>":[null,""],"Season":[null,""],"Backlog started":[null,""],"Retrying Search was automatically started for the following season of <b>{show_name}</b>":[null,""],"Retry Search started":[null,""],"You must specify a show":[null,""],"Can't rename episodes when the show dir is missing.":[null,""],"New subtitles downloaded: {new_subtitle_languages}":[null,""],"No subtitles downloaded":[null,""],"IRC":[null,""],"Could not load news from the repo. [Click here for news.md])({news_url})":[null,""],"The was a problem connecting to github, please refresh and try again":[null,""],"Could not load changes from the repo. [Click here for CHANGES.md]({changes_url})":[null,""],"Changelog":[null,""],"Post Processing":[null,""],"Add Shows":[null,""],"No folders selected.":[null,""],"New Show":[null,""],"Trending Shows":[null,""],"Popular Shows":[null,""],"Most Anticipated Shows":[null,""],"Most Collected Shows":[null,""],"Most Watched Shows":[null,""],"Most Played Shows":[null,""],"Recommended Shows":[null,""],"New Shows":[null,""],"Season Premieres":[null,""],"Existing Show":[null,""],"No root directories setup, please go back and add one.":[null,""],"Show added":[null,""],"Adding the specified show {show_name}":[null,""],"Missing params, no Indexer ID or folder: {show_to_add} and {root_dir}/{show_path}":[null,""],"Unknown error. Unable to add show due to problem with show selection.":[null,""],"Unable to add show":[null,""],"Folder {show_dir} exists already":[null,""],"Unable to create the folder {show_dir}, can't add the show":[null,""],"Adding the specified show into {show_dir}":[null,""],"Shows Added":[null,""],"Automatically added {num_shows} from their existing metadata files":[null,""],"Mass Update":[null,""],"Episode Overview":[null,""],"Missing Subtitles":[null,""],"Backlog Overview":[null,""],"Mass Edit":[null,""],"Unable to update show: {excption_format}":[null,""],"Unable to refresh show {show_name}: {excption_format}":[null,""],"Errors encountered":[null,""],"Updates":[null,""],"Refreshes":[null,""],"Renames":[null,""],"Subtitles":[null,""],"The following actions were queued":[null,""],"For best results please set the Download Station alias as":[null,""],"You can check this setting in the Synology DSM":[null,""],"Control Panel":[null,""],"Application Portal":[null,""],"Make sure you allow DSM to be embedded with iFrames too in":[null,""],"DSM Settings":[null,""],"Security":[null,""],"Manage Torrents":[null,""],"Failed Downloads":[null,""],"Manage Searches":[null,""],"Backlog search started":[null,""],"Daily search started":[null,""],"Find propers search started":[null,""],"Subtitle search started":[null,""],"Remove Selected":[null,""],"Clear History":[null,""],"Trim History":[null,""],"Selected history entries removed":[null,""],"History cleared":[null,""],"Removed history entries older than 30 days":[null,""],"General":[null,""],"Backup/Restore":[null,""],"Search Settings":[null,""],"Search Providers":[null,""],"Subtitles Settings":[null,""],"Notifications":[null,""],"Anime":[null,""],"SickRage Configuration":[null,""],"Config - Shares":[null,""],"Windows Shares Configuration":[null,""],"Saved Shares":[null,""],"Your Windows share settings have been saved":[null,""],"Config - General":[null,""],"General Configuration":[null,""],"Saved Defaults":[null,""],"Your \"add show\" defaults have been set to your current selections.":[null,""],"Unable to create directory {directory}, log directory not changed.":[null,""],"Unable to create directory {directory}, https cert directory not changed.":[null,""],"Unable to create directory {directory}, https key directory not changed.":[null,""],"Error(s) Saving Configuration":[null,""],"Configuration Saved":[null,""],"Config - Backup/Restore":[null,""],"Config - Episode Search":[null,""],"Config - Post Processing":[null,""],"Unpacking Not Supported, disabling unpack setting":[null,""],"You tried saving an invalid normal naming config, not saving your naming settings":[null,""],"You tried saving an invalid anime naming config, not saving your naming settings":[null,""],"Config - Providers":[null,""],"No Provider Name specified":[null,""],"No Provider Url specified":[null,""],"No Provider Api key specified":[null,""],"Config - Notifications":[null,""],"Config - Subtitles":[null,""],"Config - Anime":[null,""],"Clear Errors":[null,""],"Clear Warnings":[null,""],"Submit Errors":[null,""],"Logs & Errors":[null,""],"Log File":[null,""],"Logs":[null,""],"This is a test notification from SickRage":[null,""],"Please fill out the necessary fields above.":[null,""],"This pattern is invalid.":[null,""],"This pattern would be invalid without the folders, using it will force \"Season Folders\" on for all shows.":[null,""],"This pattern is valid.":[null,""],"Resume updating the log on this page.":[null,""],"Pause updating the log on this page.":[null,""],"You have reached this page by accident, please check the url.":[null,""],"A mako error has occured.<br>\n If this happened during an update a simple page refresh may be the solution.<br>\n Mako errors that happen during updates may be a one time error if there were significant ui changes.":[null,""],"Show/Hide Error":[null,""],"Add New Show":[null,""],"For shows that you haven't downloaded yet, this option finds a show on theTVDB.com, creates a directory for it's episodes, and adds it to SickRage.":[null,""],"Add From Trakt Lists":[null,""],"For shows that you haven't downloaded yet, this option lets you choose from a show from one of the Trakt lists to add to SickRage.":[null,""],"Add From IMDB's Popular Shows":[null,""],"View IMDB's list of the most popular shows. This feature uses IMDB's MOVIEMeter algorithm to identify popular TV Series.":[null,""],"Add Existing Shows":[null,""],"Use this option to add shows that already have a folder created on your hard drive. SickRage will scan your existing metadata/episodes and add the show accordingly.":[null,""],"Add Existing Show":[null,""],"Manage Directories":[null,""],"Customize Options":[null,""],"SickRage can add existing shows, using the current options, by using locally stored NFO/XML metadata to eliminate user interaction. If you would rather have SickRage prompt you to customize each show, then use the checkbox below.":[null,""],"Prompt me to set settings for each show":[null,""],"Displaying folders within these directories which aren't already added to SickRage":[null,""],"Submit":[null,""],"Find a show on theTVDB":[null,""],"Show retrieved from existing metadata":[null,""],"All Indexers":[null,""],"Search":[null,""],"This will only affect the language of the retrieved metadata file contents and episode filenames.":[null,""],"This <b>DOES NOT</b> allow SickRage to download non-english TV episodes!":[null,""],"Pick the parent folder":[null,""],"Pre-chosen Destination Folder":[null,""],"Customize options":[null,""],"Add Show":[null,""],"Skip Show":[null,""],"Sort By":[null,""],"Name":[null,""],"Original":[null,""],"Votes":[null,""],"Rating":[null,""],"Rating > Votes":[null,""],"Sort Order":[null,""],"Asc":[null,""],"Desc":[null,""],"Fetching of IMDB Data failed. Are you online?":[null,""],"Exception":[null,""],"Select Trakt List":[null,""],"Most Anticipated":[null,""],"Trending":[null,""],"Popular":[null,""],"Most Watched":[null,""],"Most Played":[null,""],"Most Collected":[null,""],"Recommended":[null,""],"Toggle navigation":[null,""],"Profile":[null,""],"JSONP":[null,""],"Back to SickRage":[null,""],"Parameters":[null,""],"Required":[null,""],"Description":[null,""],"Type":[null,""],"Default value":[null,""],"Allowed values":[null,""],"Playground":[null,""],"Clear":[null,""],"Yes":[null,""],"No":[null,""],"season":[null,""],"episode":[null,""],"Python Version":[null,""],"SSL Version":[null,""],"OS":[null,""],"Locale":[null,""],"User":[null,""],"Program Folder":[null,""],"Config File":[null,""],"Database File":[null,""],"Cache Folder":[null,""],"Log Folder":[null,""],"Arguments":[null,""],"Web Root":[null,""],"Website":[null,""],"Wiki":[null,""],"Source":[null,""],"IRC Chat":[null,""],"AnimeDB Settings":[null,""],"Look & Feel":[null,""],"AniDB is non-profit database of anime information that is freely open to the public":[null,""],"Enable":[null,""],"should SickRage use data from AniDB?":[null,""],"AniDB Username":[null,""],"username of your AniDB account":[null,""],"AniDB Password":[null,""],"password of your AniDB account":[null,""],"AniDB MyList":[null,""],"do you want to add the PostProcessed episodes to the MyList?":[null,""],"Look and Feel":[null,""],"How should the anime functions show and behave.":[null,""],"Split show lists":[null,""],"separate anime and normal shows in groups":[null,""],"Split in tabs":[null,""],"use tabs for when splitting show lists":[null,""],"Restore":[null,""],"Backup your main database file and config.":[null,""],"Select the folder you wish to save your backup file to":[null,""],"Restore your main database file and config.":[null,""],"Select the backup file you wish to restore":[null,""],"Misc":[null,""],"Interface":[null,""],"Advanced Settings":[null,""],"Startup options. Indexer options. Log and show file locations.":[null,""],"Some options may require a manual restart to take effect.":[null,""],"Default Indexer Language":[null,""],"for adding shows and metadata providers":[null,""],"Launch browser":[null,""],"open the SickRage home page on startup":[null,""],"Initial page":[null,""],"Shows":[null,""],"when launching SickRage interface":[null,""],"Choose hour to update shows":[null,""],"with information such as next air dates, show ended, etc. Use 15 for 3pm, 4 for 4am etc.":[null,""],"note":[null,""],"minutes are randomized each time SickRage is started":[null,""],"Send to trash for actions":[null,""],"when using show \"Remove\" and delete files":[null,""],"on scheduled deletes of the oldest log files":[null,""],"selected actions use trash (recycle bin) instead of the default permanent delete":[null,""],"Log file folder location":[null,""],"Number of Log files saved":[null,""],"number of log files saved when rotating logs (default: 5) (REQUIRES RESTART)":[null,""],"Size of Log files saved":[null,""],"maximum size in MB of the log file (default: 1MB) (REQUIRES RESTART)":[null,""],"Use initial indexer set to":[null,""],"as the default selection when adding new shows":[null,""],"Timeout show indexer at":[null,""],"seconds of inactivity when finding new shows (default:20)":[null,""],"Show root directories":[null,""],"where the files of shows are located":[null,""],"Save Changes":[null,""],"Options for software updates.":[null,""],"Check software updates":[null,""],"and display notifications when updates are available. Checks are run on startup and at the frequency set below*":[null,""],"Automatically update":[null,""],"fetch and install software updates. Updates are run on startup and in the background at the frequency set below*":[null,""],"Check the server every*":[null,""],"hours for software updates (default:1)":[null,""],"Notify on software update":[null,""],"send a message to all enabled notifiers when SickRage has been updated":[null,""],"User Interface":[null,""],"Options for visual appearance.":[null,""],"Interface Language":[null,""],"System Language":[null,""],"for appearance to take effect, save then refresh your browser":[null,""],"Display theme":[null,""],"Dark":[null,""],"Light":[null,""],"Use a background image":[null,""],"use a custom image as background for SickRage":[null,""],"Background Path":[null,""],"Path to the background image":[null,""],"Show fanart in the background":[null,""],"on the show summary page":[null,""],"Fanart transparency":[null,""],"transparency of the fanart in the background":[null,""],"Use a custom stylesheet file":[null,""],"use a custom .css file to style SickRage (for advanced users)":[null,""],"Stylesheet File Path":[null,""],"Path to the stylesheet (.css) file":[null,""],"Show all seasons":[null,""],"Sort with \"The\", \"A\", \"An\"":[null,""],"include articles (\"The\", \"A\", \"An\") when sorting show lists":[null,""],"Missed episodes range":[null,""],"set the range in days of the missed episodes in the Schedule page":[null,""],"Display fuzzy dates":[null,""],"move absolute dates into tooltips and display e.g. \"Last Thu\", \"On Tue\"":[null,""],"Trim zero padding":[null,""],"remove the leading number \"0\" shown on hour of day, and date of month":[null,""],"Date style":[null,""],"Use System Default":[null,""],"Time style":[null,""],"seconds are only shown on the History page":[null,""],"Timezone":[null,""],"Local":[null,""],"Network":[null,""],"display dates and times in either your timezone or the shows network timezone":[null,""],"use local timezone to start searching for episodes minutes after show ends (depends on your dailysearch frequency)":[null,""],"Download url":[null,""],"URL where the shows can be downloaded.":[null,""],"Web Interface":[null,""],"it is recommended that you enable a username and password to secure SickRage from being tampered with remotely.":[null,""],"these options require a manual restart to take effect.":[null,""],"API key":[null,""],"used to give 3rd party programs limited access to SickRage":[null,""],"you can try all the features of the API":[null,""],"here":[null,""],"HTTP logs":[null,""],"enable logs from the internal Tornado web server":[null,""],"HTTP username":[null,""],"set blank for no login":[null,""],"HTTP password":[null,""],"blank = no authentication":[null,""],"HTTP port":[null,""],"web port to browse and access SickRage (default:8081)":[null,""],"Notify on login":[null,""],"enable to be notified when a new login happens in webserver":[null,""],"Listen on IPv6":[null,""],"attempt binding to any available IPv6 address":[null,""],"Enable HTTPS":[null,""],"enable access to the web interface using a HTTPS address":[null,""],"HTTPS certificate":[null,""],"file name or path to HTTPS certificate":[null,""],"HTTPS key":[null,""],"file name or path to HTTPS key":[null,""],"Reverse proxy headers":[null,""],"accept the following reverse proxy headers (advanced)...":[null,""],"(X-Forwarded-For, X-Forwarded-Host, and X-Forwarded-Proto)":[null,""],"CPU throttling":[null,""],"Normal (default). High is lower and Low is higher CPU use":[null,""],"Anonymous redirect":[null,""],"backlink protection via anonymizer service, must end in \"?\"":[null,""],"Enable debug":[null,""],"enable debug logs":[null,""],"Verify SSL Certs":[null,""],"verify SSL Certificates (Disable this for broken SSL installs (Like QNAP))":[null,""],"No Restart":[null,""],"only shutdown when restarting SR":[null,""],"only select this when you have external software restarting SR automatically when it stops (like FireDaemon)":[null,""],"Encrypt passwords":[null,""],"in the <code>config.ini</code> file":[null,""],"warning":[null,""],"passwords must only contain":[null,""],"ASCII characters":[null,""],"Unprotected calendar":[null,""],"allow subscribing to the calendar without user and password":[null,""],"some services like Google Calendar only work this way":[null,""],"Google Calendar Icons":[null,""],"show an icon next to exported calendar events in Google Calendar":[null,""],"Proxy host":[null,""],"blank to disable or proxy to use when connecting to providers":[null,""],"also use global proxy setting for indexers (tvdb, xem, anidb, etc.)":[null,""],"Skip Remove Detection":[null,""],"skip detection of removed files":[null,""],"if disabled the episode will be set to the default deleted status":[null,""],"Default deleted episode status":[null,""],"define the status to be set for media file that has been deleted.":[null,""],"Archived option will keep previous downloaded quality":[null,""],"example: Downloaded (1080p WEB-DL) ==> Archived (1080p WEB-DL)":[null,""],"Options for github related features.":[null,""],"Branch version":[null,""],"error: No branches found.":[null,""],"select branch to use (restart required)":[null,""],"Authorization Type":[null,""],"Username and password":[null,""],"Personal access token":[null,""],"You must use a personal access token if you're using \"two-factor authentication\" on GitHub.":[null,""],"GitHub username":[null,""],"*** (REQUIRED FOR SUBMITTING ISSUES) ***":[null,""],"GitHub password":[null,""],"GitHub personal access token":[null,""],"Generate Token":[null,""],"Manage Tokens":[null,""],"GitHub remote for branch":[null,""],"access repo configured remotes (save then refresh browser)":[null,""],"default":[null,""],"origin":[null,""],"Git executable path":[null,""],"only needed if OS is unable to locate git from env":[null,""],"Git reset":[null,""],"removes untracked files and performs a hard reset on git branch automatically to help resolve update issues":[null,""],"Home Theater / NAS":[null,""],"Devices":[null,""],"Social":[null,""],"A free and open source cross-platform media center and home entertainment system software with a 10-foot user interface designed for the living-room TV.":[null,""],"send KODI commands?":[null,""],"Always on":[null,""],"log errors when unreachable?":[null,""],"Notify on snatch":[null,""],"send a notification when a download starts?":[null,""],"Notify on download":[null,""],"send a notification when a download finishes?":[null,""],"Notify on subtitle download":[null,""],"send a notification when subtitles are downloaded?":[null,""],"Update library":[null,""],"update KODI library when a download finishes?":[null,""],"Full library update":[null,""],"perform a full library update if update per-show fails?":[null,""],"Only update first host":[null,""],"only send library updates to the first active host?":[null,""],"KODI IP:Port":[null,""],"host running KODI (eg. 192.168.1.100:8080)":[null,""],"(multiple host strings must be separated by commas)":[null,""],"Username":[null,""],"username for your KODI server (blank for none)":[null,""],"Password":[null,""],"password for your KODI server (blank for none)":[null,""],"Click below to test.":[null,""],"Experience your media on a visually stunning, easy to use interface on your Mac connected to your TV. Your media library has never looked this good!":[null,""],"For sending notifications to Plex Home Theater (PHT) clients, use the KODI notifier with port <b>3005</b>.":[null,""],"send Plex Media Server library updates?":[null,""],"Plex Media Server Auth Token":[null,""],"auth token used by Plex":[null,""],"Update Library":[null,""],"update Plex Media Server library when a download finishes":[null,""],"Plex Media Server IP:Port":[null,""],"one or more hosts running Plex Media Server<br/>(eg. 192.168.1.1:32400, 192.168.1.2:32400)":[null,""],"HTTPS":[null,""],"use https for plex media server requests?":[null,""],"Click below to test Plex Media Server(s)":[null,""],"Test Plex Media Server":[null,""],"Plex Home Theater":[null,""],"send Plex Home Theater notifications?":[null,""],"Plex Home Theater IP:Port":[null,""],"one or more hosts running Plex Home Theater<br>(eg. 192.168.1.100:3000, 192.168.1.101:3000)":[null,""],"Click below to test Plex Home Theater(s)":[null,""],"Test Plex Home Theater":[null,""],"some Plex Home Theaters <b class=\"boldest\">do not</b> support notifications e.g. Plexapp for Samsung TVs":[null,""],"Emby":[null,""],"A home media server built using other popular open source technologies.":[null,""],"send update commands to Emby?":[null,""],"Emby IP:Port":[null,""],"host running Emby (eg. 192.168.1.100:8096)":[null,""],"Emby API Key":[null,""],"Networked Media Jukebox":[null,""],"The Networked Media Jukebox, or NMJ, is the official media jukebox interface made available for the Popcorn Hour 200-series.":[null,""],"send update commands to NMJ?":[null,""],"Popcorn IP address":[null,""],"IP address of Popcorn 200-series (eg. 192.168.1.100)":[null,""],"Get settings":[null,""],"Get Settings":[null,""],"the Popcorn Hour device must be powered on and NMJ running.":[null,""],"NMJ database":[null,""],"automatically filled via the 'Get Settings' button.":[null,""],"NMJ mount url":[null,""],"Networked Media Jukebox v2":[null,""],"The Networked Media Jukebox, or NMJv2, is the official media jukebox interface made available for the Popcorn Hour 300 & 400-series.":[null,""],"send update commands to NMJv2?":[null,""],"IP address of Popcorn 300/400-series (eg. 192.168.1.100)":[null,""],"Database location":[null,""],"Database instance":[null,""],"adjust this value if the wrong database is selected.":[null,""],"Find database":[null,""],"Find Database":[null,""],"the Popcorn Hour device must be powered on.":[null,""],"NMJv2 database":[null,""],"automatically filled via the 'Find Database' buttons.":[null,""],"Synology":[null,""],"The Synology DiskStation NAS.":[null,""],"Synology Indexer is the daemon running on the Synology NAS to build its media database.":[null,""],"send Synology notifications?":[null,""],"requires SickRage to be running on your Synology NAS.":[null,""],"Synology Indexer":[null,""],"Synology Notifier is the notification system of Synology DSM":[null,""],"send notifications to the Synology Notifier?":[null,""],"pyTivo":[null,""],"pyTivo is both an HMO and GoBack server. This notifier will load the completed downloads to your Tivo.":[null,""],"send notifications to pyTivo?":[null,""],"requires the downloaded files to be accessible by pyTivo.":[null,""],"pyTivo IP:Port":[null,""],"host running pyTivo (eg. 192.168.1.1:9032)":[null,""],"pyTivo share name":[null,""],"value used in pyTivo Web Configuration to name the share.":[null,""],"Tivo name":[null,""],"(Messages & Settings > Account & System Information > System Information > DVR name)":[null,""],"Growl":[null,""],"A cross-platform unobtrusive global notification system.":[null,""],"send Growl notifications?":[null,""],"Growl IP:Port":[null,""],"host running Growl (eg. 192.168.1.100:23053)":[null,""],"may leave blank if SickRage is on the same host.":[null,""],"otherwise Growl <b>requires</b> a password to be used.":[null,""],"Click below to register and test Growl, this is required for Growl notifications to work.":[null,""],"Register Growl":[null,""],"Prowl":[null,""],"A Growl client for iOS.":[null,""],"send Prowl notifications?":[null,""],"Prowl Message Title":[null,""],"Global Prowl API key(s)":[null,""],"Prowl API(s) listed here, separated by commas if applicable, will<br> receive notifications for <b>all</b> shows. Your Prowl API key is available at:":[null,""],"(this field may be blank except when testing.)":[null,""],"Show notification list":[null,""],"-- Select a Show --":[null,""],"Configure per-show notifications here by entering Prowl API key(s), separated by commas, '\n 'after selecting a show in the drop-down box. Be sure to activate the 'Save for this show' '\n 'button below after each entry.":[null,""],"Save for this show":[null,""],"Prowl priority":[null,""],"Very Low":[null,""],"Moderate":[null,""],"Normal":[null,""],"High":[null,""],"Emergency":[null,""],"priority of Prowl messages from SickRage.":[null,""],"Libnotify":[null,""],"The standard desktop notification API for Linux/*nix systems. This notifier will only function if the pynotify module is installed (Ubuntu/Debian package <a href=\"apt:python-notify\">python-notify</a>).":[null,""],"send Libnotify notifications?":[null,""],"Pushover":[null,""],"Pushover makes it easy to send real-time notifications to your Android and iOS devices.":[null,""],"send Pushover notifications?":[null,""],"Pushover key":[null,""],"user key of your Pushover account":[null,""],"Pushover API key":[null,""],"click here":[null,""]," to create a Pushover API key":[null,""],"Pushover devices":[null,""],"comma separated list of pushover devices you want to send notifications to":[null,""],"Pushover notification sound":[null,""],"Bike":[null,""],"Bugle":[null,""],"Cash Register":[null,""],"Classical":[null,""],"Cosmic":[null,""],"Falling":[null,""],"Gamelan":[null,""],"Incoming":[null,""],"Intermission":[null,""],"Magic":[null,""],"Mechanical":[null,""],"Piano Bar":[null,""],"Siren":[null,""],"Space Alarm":[null,""],"Tug Boat":[null,""],"Alien Alarm (long)":[null,""],"Climb (long)":[null,""],"Persistent (long)":[null,""],"Pushover Echo (long)":[null,""],"Up Down (long)":[null,""],"None (silent)":[null,""],"Device specific":[null,""],"choose notification sound to use":[null,""],"Pushover priority":[null,""],"Choose priority to use":[null,""],"Boxcar 2":[null,""],"Read your messages where and when you want them!":[null,""],"send Boxcar notifications?":[null,""],"Boxcar2 access token":[null,""],"access token for your Boxcar account.":[null,""],"NMA":[null,""],"Notify My Android":[null,""],"Notify My Android is a Prowl-like Android App and API that offers an easy way to send notifications from your application directly to your Android device.":[null,""],"send NMA notifications?":[null,""],"NMA API key":[null,""],"(multiple keys must be separated by commas, up to a maximum of 5)":[null,""],"NMA priority":[null,""],"priority of NMA messages from SickRage.":[null,""],"Pushalot":[null,""],"Pushalot is a platform for receiving custom push notifications to connected devices running Windows Phone or Windows 8.":[null,""],"send Pushalot notifications ?":[null,""],"Pushalot authorization token":[null,""],"authorization token of your Pushalot account.":[null,""],"Pushbullet":[null,""],"Pushbullet is a platform for receiving custom push notifications to connected devices running Android/iOS and desktop browsers such as Chrome, Firefox or Opera.":[null,""],"send Pushbullet notifications?":[null,""],"Pushbullet API key":[null,""],"API key of your Pushbullet account":[null,""],"Pushbullet devices":[null,""],"Update device list":[null,""],"Pushbullet channels":[null,""],"Free Mobile":[null,""],"Free Mobile is a famous French cellular network provider.<br> It provides to their customer a free SMS API.":[null,""],"send SMS notifications?":[null,""],"send a SMS when a download starts?":[null,""],"send a SMS when a download finishes?":[null,""],"send a SMS when subtitles are downloaded?":[null,""],"Free Mobile customer ID":[null,""],"it's your Free Mobile customer ID (8 digits)":[null,""],"Free Mobile API key":[null,""],"find your API key in your customer portal.":[null,""],"Click below to test your settings.":[null,""],"Telegram":[null,""],"Telegram is a cloud-based instant messaging service.":[null,""],"send Telegram notifications?":[null,""],"send a message when a download starts?":[null,""],"send a message when a download finishes?":[null,""],"send a message when subtitles are downloaded?":[null,""],"User/group ID":[null,""],"contact @myidbot on Telegram to get an ID":[null,""],"Bot API token":[null,""],"contact @BotFather on Telegram to set up one":[null,""],"Join":[null,""],"Join all of your devices together!":[null,""],"send Join notifications?":[null,""],"Device ID":[null,""],"per device specific id":[null,""]," to create a Join API key":[null,""],"Twilio":[null,""],"Twilio is a webservice API that allows you to communicate directly with a mobile number. This notifier will send a text directly to your mobile device.":[null,""],"should SickRage text your mobile device?":[null,""],"Twilio Account SID":[null,""],"account SID of your Twilio account.":[null,""],"Twilio Auth Token":[null,""],"Twilio Phone SID":[null,""],"phone SID that you would like to send the sms from":[null,""],"Your phone number":[null,""],"phone number that will receive the sms. Please use the format +1-###-###-####":[null,""],"Twitter":[null,""],"A social networking and microblogging service, enabling its users to send and read other users' messages called tweets.":[null,""],"should SickRage post tweets on Twitter?":[null,""],"you may want to use a secondary account.":[null,""],"send direct message":[null,""],"send a notification via Direct Message, not via status update":[null,""],"send DM to":[null,""],"Twitter account to send Direct Messages to (must follow you)":[null,""],"Step One":[null,""],"Request Authorization":[null,""],"Click the \"Request Authorization\" button.<br> This will open a new page containing an auth key.<br> <b>note:</b> if nothing happens check your popup blocker.":[null,""],"Step Two":[null,""],"Enter the key Twitter gave you below, and click \"Verify Key\".":[null,""],"Trakt":[null,""],"Trakt helps keep a record of what TV shows and movies you are watching. Based on your favorites, Trakt recommends additional shows and movies you'll enjoy!":[null,""],"send Trakt.tv notifications?":[null,""],"username of your Trakt account.":[null,""],"Trakt PIN":[null,""],"Get Trakt PIN":[null,""],"PIN code to authorize SickRage to access Trakt on your behalf.":[null,""],"API Timeout":[null,""],"seconds to wait for Trakt API to respond. (Use 0 to wait forever)":[null,""],"Default indexer":[null,""],"Sync libraries":[null,""],"sync your SickRage show library with your trakt show library.":[null,""],"Remove Episodes From Collection":[null,""],"remove an episode from your Trakt Collection if it is not in your SickRage Library.":[null,""],"Sync watchlist":[null,""],"sync your SickRage show watchlist with your trakt show watchlist (either Show and Episode).":[null,""],"episode will be added on watch list when wanted or snatched and will be removed when downloaded ":[null,""],"Watchlist add method":[null,""],"Skip All":[null,""],"Download Pilot Only":[null,""],"Get whole show":[null,""],"method in which to download episodes for new shows.":[null,""],"Remove episode":[null,""],"remove an episode from your watchlist after it is downloaded.":[null,""],"Remove series":[null,""],"remove the whole series from your watchlist after any download.":[null,""],"Remove watched show":[null,""],"remove the show from sickrage if it's ended and completely watched":[null,""],"Start paused":[null,""],"shows grabbed from your trakt watchlist start paused.":[null,""],"Trakt blackList name":[null,""],"name (slug) of list on Trakt for blacklisting show on 'Add Trending Show' & 'Add Recommended Shows' pages":[null,""],"Email":[null,""],"Allows configuration of email notifications on a per show basis.":[null,""],"send email notifications?":[null,""],"SMTP host":[null,""],"hostname of your SMTP email server.":[null,""],"SMTP port":[null,""],"port number used to connect to your SMTP host.":[null,""],"SMTP from":[null,""],"sender email address, some hosts require a real address.":[null,""],"Use TLS":[null,""],"check to use TLS encryption.":[null,""],"SMTP user":[null,""],"(optional) your SMTP server username.":[null,""],"SMTP password":[null,""],"(optional) your SMTP server password.":[null,""],"Global email list":[null,""],"email addresses listed here, separated by commas if applicable, will<br> receive notifications for <b>all</b> shows.":[null,""],"(This field may be blank except when testing.)":[null,""],"Email Subject":[null,""],"use a custom subject for some privacy protection?":[null,""],"(leave blank for the default SickRage subject)":[null,""],"configure per-show notifications here by entering email address(es), separated by commas,":[null,""],"after selecting a show in the drop-down box. Be sure to activate the 'Save for this show'":[null,""],"button below after each entry.":[null,""],"Slack":[null,""],"Slack brings all your communication together in one place. It's real-time messaging, archiving and search for modern teams.":[null,""],"should SickRage post messages on Slack?":[null,""],"Slack Incoming Webhook":[null,""],"Discord":[null,""],"All-in-one voice and text chat for gamers that's free, secure, and works on both your desktop and phone.":[null,""],"Should SickRage post messages on Discord?":[null,""],"Discord Incoming Webhook":[null,""],"Create webhook under channel settings.":[null,""],"Discord Bot Name":[null,""],"Blank will use webhook default Name.":[null,""],"Discord Avatar URL":[null,""],"Blank will use webhook default Avatar.":[null,""],"Discord TTS":[null,""],"Send notifications using text-to-speech":[null,""],"Post-Processing":[null,""],"Episode Naming":[null,""],"Metadata":[null,""],"Settings that dictate how SickRage should process completed downloads.":[null,""],"enable the automatic post processor to scan and process any files in your Post Processing Dir":[null,""],"do not use if you use an external Post Processing script":[null,""],"Post Processing Dir":[null,""],"the folder where your download client puts the completed TV downloads.":[null,""],"please use seperate downloading and completed folders in your download client if possible.":[null,""],"Processing Method":[null,""],"what method should be used to put files into the library?":[null,""],"if you keep seeding torrents after they finish, please avoid the 'move' processing method to prevent errors.":[null,""],"Auto Post-Processing Frequency":[null,""],"time in minutes to check for new files to auto post-process (min 10)":[null,""],"Postpone post processing":[null,""],"wait to process a folder if sync files are present.":[null,""],"Sync File Extensions":[null,""],"comma seperated list of extensions or filename globs SickRage ignores when Post Processing":[null,""],"Rename Episodes":[null,""],"rename episode using the Episode Naming settings?":[null,""],"Create missing show directories":[null,""],"create missing show directories when they get deleted":[null,""],"Add shows without directory":[null,""],"add shows without creating a directory (not recommended)":[null,""],"Move associated files":[null,""],"move associated (srt/srr/sfv/etc) files while post processing?":[null,""],"Rename .nfo file":[null,""],"rename the original .nfo file to .nfo-orig to avoid conflicts?":[null,""],"Associated file extensions":[null,""],"comma separated list of associated file extensions SickRage should keep while post processing.":[null,""],"leaving it empty means no associated files will be post processed":[null,""],"Delete non associated files":[null,""],"delete non associated files while post processing?":[null,""],"Change File Date":[null,""],"set last modified filedate to the date that the episode aired?":[null,""],"some systems may ignore this feature.":[null,""],"Timezone for File Date":[null,""],"local":[null,""],"network":[null,""],"what timezone should be used to change File Date?":[null,""],"Unpack":[null,""],"What to do with archived releases found in your <i>TV Download Dir</i>?":[null,""],"Ignore (do not process contents)":[null,""],"Unpack (process contents)":[null,""],"Treat as video (process archive as-is)":[null,""],"'Unpack' only works with RAR archives":[null,""],"Windows":[null,""],"WinRar is required on windows":[null,""],"Unpack Directory":[null,""],"Choose a path to unpack files, leave blank to unpack in download dir":[null,""],"Unrar Location":[null,""],"add the path to unrar if it is not in the system path":[null,""],"Alternate Unrar Tool":[null,""],"add the path to an alternate unrar tool if it is not in the system path":[null,""],"Delete RAR contents":[null,""],"delete content of RAR files, even if Process Method not set to move?":[null,""],"only working with RAR archive":[null,""],"Don't delete empty folders":[null,""],"leave empty folders when Post Processing?":[null,""],"can be overridden using manual Post Processing":[null,""],"Follow symbolic-links":[null,""],"follow down symbolic links in download directory?":[null,""],"<b>EXPERTS ONLY.</b><br>Enable only if you know what <b>circular symbolic links</b> are,<br>and can <b>verify that you have none</b>.":[null,""],"Use icacls":[null,""],"Windows only":[null,""],"sets video permissions after using the move method in post processing":[null,""],"Extra Scripts":[null,""],"see":[null,""],"for script arguments description and usage.":[null,""],"How SickRage will name and sort your episodes.":[null,""],"Name Pattern":[null,""],"Toggle Naming Legend":[null,""],"don't forget to add quality pattern. Otherwise after post-processing the episode will have UNKNOWN quality":[null,""],"Meaning":[null,""],"Pattern":[null,""],"Result":[null,""],"Use lower case if you want lower case names (eg. %sn, %e.n, %q_n etc)":[null,""],"Show Name":[null,""],"Show.Name":[null,""],"Show_Name":[null,""],"Season Number":[null,""],"XEM Season Number":[null,""],"Episode Number":[null,""],"XEM Episode Number":[null,""],"Episode Name":[null,""],"Episode.Name":[null,""],"Episode_Name":[null,""],"Air Date":[null,""],"Post-Processing Date":[null,""],"Quality":[null,""],"Scene Quality":[null,""],"Release Name":[null,""],"SickRage' is used in place of RLSGROUP if it could not be properly detected":[null,""],"Release Group":[null,""],"If episode is proper/repack add 'proper' to name.":[null,""],"Release Type":[null,""],"Multi-Episode Style":[null,""],"Single-EP Sample":[null,""],"Multi-EP sample":[null,""],"Strip Show Year":[null,""],"remove the TV show's year when renaming the file?":[null,""],"only applies to shows that have year inside parentheses":[null,""],"Custom Air-By-Date":[null,""],"name air-by-date shows differently than regular shows?":[null,""],"Toggle ABD Naming Legend":[null,""],"Regular Air Date":[null,""],"Year":[null,""],"Month":[null,""],"Day":[null,""],"Multi-EP style is ignored":[null,""],"Custom Sports":[null,""],"name sports shows differently than regular shows?":[null,""],"Toggle Sports Naming Legend":[null,""],"Sports Air Date":[null,""],"Custom Anime":[null,""],"name anime shows differently than regular shows?":[null,""],"Toggle Anime Naming Legend":[null,""],">XEM Season Number":[null,""],"Single-EP Anime Sample":[null,""],"Multi-EP Anime sample":[null,""],"Add Absolute Number":[null,""],"add the absolute number to the season/episode format?":[null,""],"only applies to anime. (eg. S15E45 - 310 vs S15E45)":[null,""],"Only Absolute Number":[null,""],"replace season/episode format with absolute number":[null,""],"only applies to anime.":[null,""],"No Absolute Number":[null,""],"don't include the absolute number":[null,""],"The data associated to the data. These are files associated to a TV show in the form of images and text that, when supported, will enhance the viewing experience.":[null,""],"Metadata Type":[null,""],"toggle metadata options that you wish to be created":[null,""],"multiple targets may be used":[null,""],"Select Metadata":[null,""],"Provider Priorities":[null,""],"Provider Options":[null,""],"Configure Custom Newznab Providers":[null,""],"Configure Custom Torrent Providers":[null,""],"Check off and drag the providers into the order you want them to be used.":[null,""],"At least one provider is required but two are recommended.":[null,""],"Torrent providers can be toggled in ":[null,""],"Provider does not support backlog searches at this time.":[null,""],"Provider is <b>NOT WORKING</b>.":[null,""],"Configure individual provider settings here.":[null,""],"Check with provider's website on how to obtain an API key if needed.":[null,""],"Configure provider":[null,""],"no providers available to configure.":[null,""],"URL":[null,""],"Enable daily searches":[null,""],"enable provider to perform daily searches.":[null,""],"Enable backlog searches":[null,""],"enable provider to perform backlog searches.":[null,""],"Season search mode":[null,""],"when searching for complete seasons you can choose to have it look for season packs only, or choose to have it build a complete season from just single episodes.":[null,""],"season packs only.":[null,""],"episodes only.":[null,""],"Enable fallback":[null,""],"when searching for a complete season depending on search mode you may return no results, this helps by restarting the search using the opposite search mode.":[null,""],"Custom URL":[null,""],"the URL should include the protocol (and port if applicable). Examples: http://192.168.1.4/ or http://localhost:3000/":[null,""],"Api key":[null,""],"Digest":[null,""],"Hash":[null,""],"Passkey":[null,""],"Cookies":[null,""],"example: uid=1234;pass=567845439634987<br>note: uid and pass are not your username/password.<br>use DevTools or Firebug to get these values after logging in on your browser.":[null,""],"Pin":[null,""],"Seed ratio":[null,""],"stop transfer when ratio is reached<br>(-1 SickRage default to seed forever, or leave blank for downloader default)":[null,""],"Minimum seeders":[null,""],"Minimum leechers":[null,""],"Confirmed download":[null,""],"only download torrents from trusted or verified uploaders ?":[null,""],"Ranked torrents":[null,""],"only download ranked torrents (trusted releases)":[null,""],"English torrents":[null,""],"only download english torrents, or torrents containing english subtitles":[null,""],"For Spanish torrents":[null,""],"ONLY search on this provider if show info is defined as \"Spanish\" (avoid provider's use for VOS shows)":[null,""],"Sorting results by":[null,""],"Freeleech":[null,""],"only download <b>\"FreeLeech\"</b> torrents.":[null,""],"Category":[null,""],"select torrent with Italian subtitle":[null,""],"Configure Custom<br>Newznab Providers":[null,""],"Add and setup or remove custom Newznab providers.":[null,""],"Select provider":[null,""],"-- add new provider --":[null,""],"Provider name":[null,""],"Site URL":[null,""],"Newznab search categories":[null,""],"select your Newznab categories on the left, and click the \"update categories\" button to use them for searching.) <b>don't forget to to save the form!":[null,""],"Update Categories":[null,""],"Add":[null,""],"Delete":[null,""],"Add and setup or remove custom RSS providers.":[null,""],"RSS URL":[null,""],"Search element":[null,""],"eg: title":[null,""],"Episode Search":[null,""],"NZB Search":[null,""],"Torrent Search":[null,""],"How to manage searching with":[null,""],"Randomize Providers":[null,""],"randomize the provider search order instead of going in order of placement":[null,""],"Download propers":[null,""],"replace original download with \"Proper\" or \"Repack\" if nuked":[null,""],"Check propers every":[null,""],"24 hours":[null,""],"4 hours":[null,""],"90 mins":[null,""],"45 mins":[null,""],"15 mins":[null,""],"Backlog search day(s)":[null,""],"number of day(s) that the \"Forced Backlog Search\" will cover (e.g. 7 Days)":[null,""],"Backlog search frequency":[null,""],"time in minutes between searches (min.":[null,""],"Daily search frequency":[null,""],"Usenet retention":[null,""],"age limit in days for usenet articles to be used (e.g. 500)":[null,""],"Ignore words":[null,""],"results with one or more word from this list will be ignored<br>separate words with a comma, e.g. \"word1,word2,word3\"":[null,""],"Require words":[null,""],"results with no word from this list will be ignored<br>separate words with a comma, e.g. \"word1,word2,word3\"":[null,""],"Trackers list":[null,""],"trackers that will be added to magnets without trackers<br>separate trackers with a comma, e.g. \"tracker1,tracker2,tracker3\"":[null,""],"Ignore language names in subbed results":[null,""],"ignore subbed releases based on language names <br>\n Example: \"dk\" will ignore words: dksub, dksubs, dksubbed, dksubed <br>\n separate languages with a comma, e.g. \"lang1,lang2,lang3":[null,""],"Allow high priority":[null,""],"set downloads of recently aired episodes to high priority":[null,""],"Use Failed Downloads":[null,""],"use Failed Download Handling?":[null,""],"will only work with snatched/downloaded episodes after enabling this":[null,""],"Delete Failed":[null,""],"delete files left over from a failed download?":[null,""],"this only works if Use Failed Downloads is enabled.":[null,""],"How to handle NZB search results.":[null,""],"Search NZBs":[null,""],"enable NZB search providers":[null,""],"Send .nzb files to":[null,""],"SABnzbd server URL":[null,""],"URL to your SABnzbd server (e.g. http://localhost:8080/)":[null,""],"SABnzbd username":[null,""],"(blank for none)":[null,""],"SABnzbd password":[null,""],"SABnzbd API key":[null,""],"locate at... SABnzbd Config -> General -> API Key":[null,""],"Use SABnzbd category":[null,""],"add downloads to this category (e.g. TV)":[null,""],"Use SABnzbd category (backlog episodes)":[null,""],"add downloads of old episodes to this category (e.g. TV)":[null,""],"Use SABnzbd category for anime":[null,""],"add anime downloads to this category (e.g. anime)":[null,""],"Use SABnzbd category for anime (backlog episodes)":[null,""],"add anime downloads of old episodes to this category (e.g. anime)":[null,""],"Use forced priority":[null,""],"enable to change priority from HIGH to FORCED":[null,""],"Black hole folder location":[null,""],"<b>.nzb</b> files are stored at this location for external software to find and use":[null,""],"Connect using HTTPS":[null,""],"enable Secure control in NZBGet and set the correct Secure Port here":[null,""],"NZBget host:port":[null,""],"(e.g. localhost:6789)":[null,""],"NZBget RPC host name and port number (not NZBgetweb!)":[null,""],"NZBget username":[null,""],"locate in nzbget.conf (default:nzbget)":[null,""],"NZBget password":[null,""],"locate in nzbget.conf (default:tegbzn6789)":[null,""],"Use NZBget category":[null,""],"send downloads marked this category (e.g. TV)":[null,""],"Use NZBget category (backlog episodes)":[null,""],"send downloads of old episodes marked this category (e.g. TV)":[null,""],"Use NZBget category for anime":[null,""],"send anime downloads marked this category (e.g. anime)":[null,""],"Use NZBget category for anime (backlog episodes)":[null,""],"send anime downloads of old episodes marked this category (e.g. anime)":[null,""],"NZBget priority":[null,""],"Very low":[null,""],"Low":[null,""],"Very high":[null,""],"Force":[null,""],"priority for daily snatches (no backlog)":[null,""],"Torrent host:port":[null,""],"URL to your Synology DSM (e.g. http://localhost:5000/)":[null,""],"Client username":[null,""],"Client password":[null,""],"Downloaded files location":[null,""],"where Synology Download Station will save downloaded files (blank for client default)":[null,""],"the destination has to be a shared folder for Synology DS":[null,""],"Click below to test":[null,""],"How to handle Torrent search results.":[null,""],"Search torrents":[null,""],"enable torrent search providers":[null,""],"Send .torrent files to":[null,""],"<b>.torrent</b> files are stored at this location for external software to find and use":[null,""],"URL to your torrent client (e.g. http://localhost:8000/)":[null,""],"Torrent RPC URL":[null,""],"the path without leading and trailing slashes (e.g. transmission)":[null,""],"Http Authentication":[null,""],"Verify certificate":[null,""],"disable if you get \"Deluge: Authentication Error\" in your log":[null,""],"verify SSL certificates for HTTPS requests":[null,""],"Add label to torrent":[null,""],"(blank spaces are not allowed)":[null,""],"label plugin must be enabled in Deluge clients":[null,""],"for QBitTorrent 3.3.1 and up":[null,""],"Add label to torrent for anime":[null,""],"for QBitTorrent 3.3.1 and up ":[null,""],"where <span id=\"torrent_client\">the torrent client</span> will save downloaded files (blank for client default)":[null,""],"the destination has to be a shared folder for Synology DS</span>":[null,""],"Minimum seeding time":[null,""],"time in hours":[null,""],"(default:'0' passes blank to client and '-1' passes nothing)":[null,""],"Start torrent paused":[null,""],"add .torrent to client but do <b style=\"font-weight:900\">not</b> start downloading":[null,""],"Allow high bandwidth":[null,""],"use high bandwidth allocation if priority is high":[null,""],"Test Connection":[null,""],"Windows Shares":[null,""],"Defines your existing windows shares so that we can add them to the browse dialog":[null,""],"Share #{number}":[null,""],"Share label":[null,""],"Hostname or IP":[null,""],"Share path":[null,""],"Subtitles Search":[null,""],"Subtitles Plugin":[null,""],"Plugin Settings":[null,""],"Settings that dictate how SickRage handles subtitles search results.":[null,""],"Search Subtitles":[null,""],"Subtitle Languages":[null,""],"Subtitle Directory":[null,""],"the directory where SickRage should store your <i>Subtitles</i> files.":[null,""],"leave empty if you want store subtitle in episode path.":[null,""],"Subtitle Find Frequency":[null,""],"time in hours between scans (default: 1)":[null,""],"Include Specials":[null,""],"include the show's specials when searching for subtitles?":[null,""],"Perfect matches":[null,""],"only download subtitles that match: release group, video codec, audio codec and resolution":[null,""],"if disabled you may get out of sync subtitles":[null,""],"Subtitles History":[null,""],"log downloaded Subtitle on History page?":[null,""],"Subtitles Multi-Language":[null,""],"append language codes to subtitle filenames?":[null,""],"this option is required if you use multiple subtitle languages":[null,""],"Delete unwanted subtitles":[null,""],"enable to delete unwanted subtitle languages bundled with release":[null,""],"Embedded Subtitles":[null,""],"ignore subtitles embedded inside video file?":[null,""],"this will ignore <u>all</u> embedded subtitles for every video file!":[null,""],"Hearing Impaired Subtitles":[null,""],"download hearing impaired style subtitles?":[null,""],"See":[null,""],"for a script arguments description.":[null,""],"Additional scripts separated by <b>|</b>.":[null,""],"Scripts are called after each episode has searched and downloaded subtitles.":[null,""],"For any scripted languages, include the interpreter executable before the script. See the following example":[null,""],"For Windows:":[null,""],"For Linux / OS X:":[null,""],"Subtitle Providers":[null,""],"Check off and drag the plugins into the order you want them to be used.":[null,""],"At least one plugin is required.":[null,""]," Web-scraping plugin":[null,""],"Provider Settings":[null,""],"Set user and password for each provider":[null,""],"User Name":[null,""],"Change Show":[null,""],"Prev Show":[null,""],"Next Show":[null,""],"Jump to Season":[null,""],"Specials":[null,""],"Poster for":[null,""],"Stars":[null,""],"minutes":[null,""],"View other popular {genre} shows on trakt.tv.":[null,""],"View other popular {imdbgenre} shows on IMDB.":[null,""],"Allowed":[null,""],"Preferred":[null,""],"Originally Airs":[null,""],"Show Status":[null,""],"Default EP Status":[null,""],"Location":[null,""],"Missing":[null,""],"Scene Name":[null,""],"Required Words":[null,""],"Ignored Words":[null,""],"Size":[null,""],"Info Language":[null,""],"Subtitles SR Metadata":[null,""],"Season Folders":[null,""],"Paused":[null,""],"Air-by-Date":[null,""],"Sports":[null,""],"DVD Order":[null,""],"Scene Numbering":[null,""],"Select Filtered Episodes":[null,""],"Clear All":[null,""],"Change selected episodes to":[null,""],"Select Columns":[null,""],"Hide Episodes":[null,""],"Show Episodes":[null,""],"NFO":[null,""],"TBN":[null,""],"Episode":[null,""],"Absolute":[null,""],"Scene":[null,""],"Scene Absolute":[null,""],"File Name":[null,""],"Airdate":[null,""],"Download":[null,""],"Change the value here if scene numbering differs from the indexer episode numbering":[null,""],"Change the value here if scene absolute numbering differs from the indexer absolute numbering":[null,""],"Manual Search":[null,""],"Do you want to mark this episode as failed?":[null,""],"The episode release name will be added to the failed history, preventing it to be downloaded again.":[null,""],"Do you want to include the current episode quality in the search?":[null,""],"Choosing No will ignore any releases with the same episode quality as the one currently downloaded/snatched.":[null,""],"Download subtitle":[null,""],"Do you want to re-download the subtitle for this language?":[null,""],"It will overwrite your current subtitle":[null,""],"Format":[null,""],"Advanced":[null,""],"Main Settings":[null,""],"Show Location":[null,""],"Preferred Quality":[null,""],"Default Episode Status":[null,""],"this will set the status for future episodes.":[null,""],"this only applies to episode filenames and the contents of metadata files.":[null,""],"search for subtitles":[null,""],"Use SR Metdata":[null,""],"use SickRage metadata when searching for subtitle, this will override the autodiscovered metadata":[null,""],"pause this show (SickRage will not download episodes)":[null,""],"Format Settings":[null,""],"Air by date":[null,""],"check if the show is released as Show.03.02.2010 rather than Show.S02E03.":[null,""],"in case of an air date conflict between regular and special episodes, the later will be ignored.":[null,""],"check if the show is Anime and episodes are released as Show.265 rather than Show.S02E03":[null,""],"check if the show is a sporting or MMA event released as Show.03.02.2010 rather than Show.S02E03":[null,""],"Season folders":[null,""],"group episodes by season folder (uncheck to store in a single folder)":[null,""],"search by scene numbering (uncheck to search by indexer numbering)":[null,""],"use the DVD order instead of the air order":[null,""],"a \"Force Full Update\" is necessary, and if you have existing episodes you need to sort them manually.":[null,""],"comma-separated <i>e.g. \"word1,word2,word3</i>\"":[null,""],"search results with one or more words from this list will be ignored.":[null,""],"e.g. \"word1,word2,word3\"":[null,""],"search results with no words from this list will be ignored.":[null,""],"Scene Exception":[null,""],"this will affect episode search on NZB and torrent providers.":[null,""],"this list appends to the original show name.":[null,""],"WARNING logs":[null,""],"ERROR logs":[null,""],"There are no events to display.":[null,""],"Limit":[null,""],"Layout":[null,""],"HistoryLayout":[null,""],"Compact":[null,""],"Detailed":[null,""],"Time":[null,""],"Provider":[null,""],"Missing Provider":[null,""],"missing provider":[null,""],"Directory":[null,""],"Show Name (tvshow.nfo)":[null,""],"Indexer":[null,""],"Enter the folder containing the episode":[null,""],"Process Method to be used":[null,""],"Copy":[null,""],"Move":[null,""],"Hard Link":[null,""],"Symbolic Link":[null,""],"Symbolic Link Reversed":[null,""],"Force already Post Processed Dir/Files":[null,""],"Mark Dir/Files as priority download":[null,""],"(Check it to replace the file even if it exists at higher quality)":[null,""],"Delete files and folders":[null,""],"(Check it to delete files and folders like auto processing)":[null,""],"Don't use processing queue":[null,""],"(If checked this will return the result of the process here, but may be slow!)":[null,""],"Mark download as failed":[null,""],"Process":[null,""],"Download subtitles for this show?":[null,""],"use SickRage metadata when searching for subtitle, <br />this will override the autodiscovered metadata":[null,""],"Status for previously aired episodes":[null,""],"Status for all future episodes":[null,""],"Group episodes by season folder?":[null,""],"Is this show an Anime?":[null,""],"Is this show scene numbered?":[null,""],"Save Defaults":[null,""],"Use current values as the defaults":[null,""],"<p>Select your preferred fansub groups from the <b>Available Groups</b> and add them to the <b>Whitelist</b>. Add groups to the <b>Blacklist</b> to ignore them.</p>\n <p>The <b>Whitelist</b> is checked <i>before</i> the <b>Blacklist</b>.</p>\n <p>Groups are shown as <b>Name</b> | <b>Rating</b> | <b>Number of subbed episodes</b>.</p>\n <p>You may also add any fansub group not listed to either list manually.</p>\n <p>When doing this please note that you can only use groups listed on anidb for this anime.\n <br>If a group is not listed on anidb but subbed this anime, please correct anidb's data.</p>":[null,""],"Whitelist":[null,""],"Available Groups":[null,""],"Add to Whitelist":[null,""],"Add to Blacklist":[null,""],"Blacklist":[null,""],"Custom Group":[null,""],"Allowed Quality:":[null,""],"Preferred Quality:":[null,""],"Filter Show Name":[null,""],"Root":[null,""],"All":[null,""],"Clear Filter(s)":[null,""],"Poster":[null,"海报"],"Small Poster":[null,""],"Banner":[null,"横幅"],"Simple":[null,""],"Next Episode":[null,""],"Progress":[null,""],"Direction":[null,""],"Ascending":[null,""],"Descending":[null,""],"Poster Size":[null,""],"Continuing":[null,""],"Ended":[null,""],"Total":[null,""],"Invalid date":[null,""],"No Network":[null,""],"Next Ep":[null,""],"Prev Ep":[null,""],"Show":[null,"显示"],"Downloads":[null,""],"Active":[null,""],"loading":[null,""],"Loading...":[null,""],"<p><b><u>Preferred</u></b> qualities will replace those in <b><u>allowed</u></b>, even if they are lower.</p>":[null,""],"New":[null,""],"Set as Default":[null,""],"Remember me":[null,""],"Edit Selected":[null,""],"Subtitle":[null,""],"Default Ep Status":[null,""],"Update":[null,""],"Rescan":[null,""],"Rename":[null,""],"Search Subtitle":[null,""],"Force Metadata Regen":[null,""],"Snatched (Allowed)":[null,""],"Jump to Show":[null,""],"Force Backlog":[null,""],"Manage episodes with status":[null,""],"Manage":[null,""],"None of your episodes have status":[null,""],"Shows containing":[null,""],"episodes":[null,""],"Set checked shows/episodes to":[null,""],"Go":[null,""],"Select all":[null,""],"Clear all":[null,""],"Release":[null,""],"Backlog Search":[null,""],"Not in progress":[null,""],"In Progress":[null,""],"Daily Search":[null,""],"Find Propers Search":[null,""],"Propers search disabled":[null,""],"Subtitle Search":[null,""],"Subtitle search disabled":[null,""],"Search Queue":[null,""],"pending items":[null,""],"Daily":[null,""],"Manual":[null,""],"Changing any settings marked with (<span class=\"separator\">*</span>) will force a refresh of the selected shows.":[null,""],"Selected Shows":[null,""],"Root Directories":[null,""],"Current":[null,""],"Keep":[null,""],"Custom":[null,""],"Group episodes by season folder (set to \"No\" to store in a single folder).":[null,""],"Pause these shows (SickRage will not download episodes).":[null,""],"This will set the status for future episodes.":[null,""],"Search by scene numbering (set to \"No\" to search by indexer numbering).":[null,""],"Set if these shows are Anime and episodes are released as Show.265 rather than Show.S02E03":[null,""],"Set if these shows are sporting or MMA events released as Show.03.02.2010 rather than Show.S02E03.":[null,""],"In case of an air date conflict between regular and special episodes, the later will be ignored.":[null,""],"Set if these shows are released as Show.03.02.2010 rather than Show.S02E03.":[null,""],"Search for subtitles.":[null,""],"All of your episodes have {subsLanguage} subtitles.":[null,""],"Manage episodes without":[null,""],"Episodes without {subsLanguage} subtitles.":[null,""],"Episodes without {subtitleLanguage} (undefined) subtitles.":[null,""],"Download missed subtitles for selected episodes":[null,""],"Performing Restart":[null,""],"Waiting for SickRage to shut down":[null,""],"Waiting for SickRage to start again":[null,""],"Loading the default page":[null,""],"Error: The restart has timed out, perhaps something prevented SickRage from starting again?":[null,""],"Key":[null,""],"Missed":[null,""],"Today":[null,""],"Soon":[null,""],"Later":[null,""],"Subscribe":[null,""],"Date":[null,""],"View Paused":[null,""],"Hidden":[null,""],"Shown":[null,""],"Calendar":[null,"日历"],"List":[null,"列表"],"Ends":[null,""],"Next Ep Name":[null,""],"Run time":[null,""],"Indexers":[null,""],"No shows for this day":[null,""],"Airs":[null,""],"Plot":[null,""],"Show Update":[null,""],"Version Check":[null,""],"Proper Finder":[null,""],"Post Process":[null,""],"Subtitles Finder":[null,""],"Scheduler":[null,""],"Alive":[null,""],"Start Time":[null,""],"Cycle Time":[null,""],"Next Run":[null,""],"Last Run":[null,""],"Silent":[null,""],"True":[null,""],"N/A":[null,""],"Show id":[null,""],"Show name":[null,""],"Priority":[null,""],"Added":[null,""],"Queue type":[null,""],"LOW":[null,""],"NORMAL":[null,""],"HIGH":[null,""],"Disk Space":[null,""],"Free space":[null,""],"TV Download Directory":[null,""],"Media Root Directories":[null,""],"Preview of the proposed name changes":[null,""],"All Seasons":[null,""],"select all":[null,""],"Rename Selected":[null,""],"Cancel Rename":[null,""],"Old Location":[null,""],"New Location":[null,""],"Trakt API did not return any results, please check your config.":[null,""],"votes":[null,""],"Remove Show":[null,""],"Level":[null,""],"Filter":[null,""],"All non-absolute folder locations are relative to ":[null,""],"Manual Post-Processing":[null,""],"Episode Status Management":[null,""],"Update PLEX":[null,""],"Update KODI":[null,""],"Update Emby":[null,""],"Missed Subtitle Management":[null,""],"Help & Info":[null,""],"Backup & Restore":[null,""],"Tools":[null,""],"Support SickRage":[null,""],"View Errors":[null,""],"View Warnings":[null,""],"View Log":[null,""],"Check For Updates":[null,""],"Restart":[null,""],"Shutdown":[null,""],"Logout":[null,""],"Server Status":[null,""],"View overview of snatched episodes":[null,""],"Episodes Downloaded":[null,""],"Memory used":[null,""],"Load time":[null,""],"Branch":[null,""],"Now":[null,""]}}}} \ No newline at end of file +{"messages":{"domain":"messages","locale_data":{"messages":{"100":[null,""],"250":[null,""],"500":[null,""],"":{"domain":"messages","plural_forms":"nplurals=1; plural=0;","lang":"zh_CN"},"Drama":[null,""],"Mystery":[null,""],"Science-Fiction":[null,""],"Crime":[null,""],"Action":[null,""],"Comedy":[null,""],"Thriller":[null,""],"Animation":[null,""],"Family":[null,""],"Fantasy":[null,""],"Adventure":[null,""],"Horror":[null,""],"Film-Noir":[null,""],"Sci-Fi":[null,""],"Romance":[null,""],"Sport":[null,""],"War":[null,""],"Biography":[null,""],"History":[null,""],"Music":[null,""],"Western":[null,""],"News":[null,""],"Sitcom":[null,""],"Reality-TV":[null,""],"Documentary":[null,""],"Game-Show":[null,""],"Musical":[null,""],"Talk-Show":[null,""],"Started Download":[null,"开始下载"],"Download Finished":[null,"下载完成"],"Subtitle Download Finished":[null,"字幕下载完成"],"SickRage Updated":[null,"SickRage更新完成"],"SickRage Updated To Commit#: ":[null,"SickRage更新至Commit#: "],"SickRage new login":[null,"SickRage新的登录"],"New login from IP: {0}. http://geomaplookup.net/?ip={0}":[null,"您的账户在 ip 地址 ︰ {0}. http://geomaplookup.net/?ip={0} 登录"],"Repeat":[null,""],"Repeat (Separated)":[null,""],"Extend":[null,""],"Extend (Limited)":[null,""],"Extend (Limited, E-prefixed)":[null,""],"Downloaded":[null,"已下载"],"Snatched":[null,"已获取"],"Snatched (Proper)":[null,""],"Failed":[null,"失败"],"Snatched (Best)":[null,""],"Archived":[null,"已存档"],"Unknown":[null,"未知 !"],"Unaired":[null,"未播出"],"Skipped":[null,"跳过"],"Wanted":[null,"想要"],"Ignored":[null,"已忽略"],"Subtitled":[null,"有字幕"],"For best results please set the Download Station alias as":[null,""],"You can check this setting in the Synology DSM":[null,""],"Control Panel":[null,""],"Application Portal":[null,""],"Make sure you allow DSM to be embedded with iFrames too in":[null,""],"DSM Settings":[null,""],"Security":[null,""],"<No Filter>":[null,""],"Daily Searcher":[null,""],"Backlog":[null,""],"Show Updater":[null,""],"Check Version":[null,""],"Show Queue":[null,""],"Search Queue (All)":[null,""],"Search Queue (Daily Searcher)":[null,""],"Search Queue (Backlog)":[null,""],"Search Queue (Manual)":[null,""],"Search Queue (Retry/Failed)":[null,""],"Search Queue (RSS)":[null,""],"Find Propers":[null,""],"Postprocessor":[null,""],"Find Subtitles":[null,""],"Trakt Checker":[null,""],"Event":[null,""],"Error":[null,"错误"],"Tornado":[null,""],"Thread":[null,""],"Main":[null,""],"Loading":[null,""],"New update found for SickRage, starting auto-updater":[null,""],"Update was successful":[null,""],"Update failed!":[null,""],"Backup":[null,""],"Config backup in progress...":[null,""],"Config backup successful, updating...":[null,""],"Config backup failed, aborting update":[null,""],"No update needed":[null,""],"Mako Error":[null,""],"Oops":[null,"哎呀"],"Wrong API key used":[null,"错误的API密钥"],"Login":[null,"登录"],"API Key not generated":[null,"API密钥未生成"],"API Builder":[null,"API 生成器"],"Schedule":[null,"日程"],"Test 1":[null,"测试 1"],"This is test number 1":[null,"这是测试1"],"Test 2":[null,"测试 2"],"This is test number 2":[null,"这是测试2"],"You're using the {branch} branch. Please use 'master' unless specifically asked":[null,""],"Invalid show parameters":[null,"无效的显示参数"],"Invalid parameters":[null,""],"Episode couldn't be retrieved":[null,"无法获取此集"],"Home":[null,"首页"],"Show List":[null,"节目清单"],"Error: Unsupported Request. Send jsonp request with 'callback' variable in the query string.":[null,"错误 ︰ 不支持的请求。请以callback作为变量发送jsonp请求"],"Success. Connected and authenticated":[null,"成功。已连接并通过身份验证"],"Authentication failed. SABnzbd expects":[null,""],"as authentication method":[null,"作为身份验证方法"],"Unable to connect to host":[null,"无法连接到主机"],"SMS sent successfully":[null,""],"Problem sending SMS: {message}":[null,""],"Telegram notification succeeded. Check your Telegram clients to make sure it worked":[null,""],"Error sending Telegram notification: {message}":[null,""],"join notification succeeded. Check your join clients to make sure it worked":[null,""],"Error sending join notification: {message}":[null,""]," with password":[null,""],"Registered and Tested growl successfully {growl_host}":[null,""],"Registration and Testing of growl failed {growl_host}":[null,""],"Test prowl notice sent successfully":[null,""],"Test prowl notice failed":[null,""],"Boxcar2 notification succeeded. Check your Boxcar2 clients to make sure it worked":[null,""],"Error sending Boxcar2 notification":[null,""],"Pushover notification succeeded. Check your Pushover clients to make sure it worked":[null,""],"Error sending Pushover notification":[null,""],"Key verification successful":[null,""],"Unable to verify key":[null,""],"Tweet successful, check your twitter to make sure it worked":[null,""],"Error sending tweet":[null,""],"Please enter a valid account sid":[null,""],"Please enter a valid auth token":[null,""],"Please enter a valid phone sid":[null,""],"Please format the phone number as \"+1-###-###-####\"":[null,""],"Authorization successful and number ownership verified":[null,""],"Error sending sms":[null,""],"Slack message successful":[null,""],"Slack message failed":[null,""],"Discord message successful":[null,""],"Discord message failed":[null,""],"Test KODI notice sent successfully to {kodi_host}":[null,""],"Test KODI notice failed to {kodi_host}":[null,""],"Successful test notice sent to Plex Home Theater ... {plex_clients}":[null,""],"Test failed for Plex Home Theater ... {plex_clients}":[null,""],"Tested Plex Home Theater(s)":[null,""],"Successful test of Plex Media Server(s) ... {plex_servers}":[null,""],"Test failed, No Plex Media Server host specified":[null,""],"Test failed for Plex Media Server(s) ... {plex_servers}":[null,""],"Tested Plex Media Server host(s)":[null,""],"Tried sending desktop notification via libnotify":[null,""],"Test notice sent successfully to {emby_host}":[null,""],"Test notice failed to {emby_host}":[null,""],"Successfully started the scan update":[null,""],"Test failed to start the scan update":[null,""],"Test notice sent successfully to {nmj2_host}":[null,""],"Test notice failed to {nmj2_host}":[null,""],"Trakt Authorized":[null,""],"Trakt Not Authorized!":[null,""],"Test email sent successfully! Check inbox.":[null,""],"ERROR: {last_error}":[null,""],"Test NMA notice sent successfully":[null,""],"Test NMA notice failed":[null,""],"Pushalot notification succeeded. Check your Pushalot clients to make sure it worked":[null,""],"Error sending Pushalot notification":[null,""],"Pushbullet notification succeeded. Check your device to make sure it worked":[null,""],"Error sending Pushbullet notification":[null,""],"Status":[null,""],"Restarting SickRage":[null,""],"Update Failed":[null,"更新失败"],"Update wasn't successful, not restarting. Check your log for more information.":[null,"更新不成功,不重新启动。请检查您的日志以了解更多信息。"],"Checking out branch":[null,"检出branch"],"Already on branch":[null,"已经在branch上"],"Invalid show ID: {show}":[null,"无效的节目ID: {show}"],"Show not in show list":[null,"节目不在清单中"],"Edit":[null,"更改"],"This show is in the process of being downloaded - the info below is incomplete.":[null,""],"The information on this page is in the process of being updated.":[null,""],"The episodes below are currently being refreshed from disk":[null,""],"Currently downloading subtitles for this show":[null,""],"This show is queued to be refreshed.":[null,""],"This show is queued and awaiting an update.":[null,""],"This show is queued and awaiting subtitles download.":[null,""],"Resume":[null,"继续"],"Pause":[null,"暂停"],"Remove":[null,"移除"],"Re-scan files":[null,"重新扫描文件"],"Force Full Update":[null,"强制全部更新"],"Update show in KODI":[null,"在KODI中更新节目"],"Update show in Emby":[null,"在Emby中更新节目"],"Hide specials":[null,""],"Show specials":[null,""],"Preview Rename":[null,"预览重命名"],"Download Subtitles":[null,"下载字幕"],"No scene exceptions":[null,""],"Invalid show ID":[null,"无效的节目ID"],"Unable to find the specified show":[null,"无法找到指定的节目"],"Unable to retreive Fansub Groups from AniDB.":[null,""],"Edit Show":[null,"编辑节目"],"Unable to refresh this show: {error}":[null,"无法刷新此显节目︰ {error}"],"New location <tt>{location}</tt> does not exist":[null,""],"Unable to update show: {error}":[null,""],"Unable to force an update on scene exceptions of the show.":[null,""],"Unable to force an update on scene numbering of the show.":[null,""],"{num_errors:d} error{plural} while saving changes:":[null,""],"{show_name} has been {paused_resumed}":[null,""],"resumed":[null,""],"paused":[null,""],"{show_name} has been {deleted_trashed} {was_deleted}":[null,""],"deleted":[null,""],"trashed":[null,""],"(media untouched)":[null,""],"(with all related media)":[null,""],"Unable to refresh this show.":[null,""],"Unable to update this show.":[null,""],"Library update command sent to KODI host(s)): {kodi_hosts}":[null,""],"Unable to contact one or more KODI host(s)): {kodi_hosts}":[null,""],"Library update command sent to Plex Media Server host: {plex_server}":[null,""],"Unable to contact Plex Media Server host: {plex_server}":[null,""],"Library update command sent to Emby host: {emby_host}":[null,""],"Unable to contact Emby host: {emby_host}":[null,""],"You must specify a show and at least one episode":[null,""],"Invalid status":[null,""],"Backlog was automatically started for the following seasons of <b>{show_name}</b>":[null,""],"Season":[null,""],"Backlog started":[null,""],"Retrying Search was automatically started for the following season of <b>{show_name}</b>":[null,""],"Retry Search started":[null,""],"You must specify a show":[null,""],"Can't rename episodes when the show dir is missing.":[null,""],"New subtitles downloaded: {new_subtitle_languages}":[null,""],"No subtitles downloaded":[null,""],"IRC":[null,""],"Could not load news from the repo. [Click here for news.md])({news_url})":[null,""],"The was a problem connecting to github, please refresh and try again":[null,""],"Could not load changes from the repo. [Click here for CHANGES.md]({changes_url})":[null,""],"Changelog":[null,""],"Post Processing":[null,""],"Add Shows":[null,""],"No folders selected.":[null,""],"New Show":[null,""],"Trending Shows":[null,""],"Popular Shows":[null,""],"Most Anticipated Shows":[null,""],"Most Collected Shows":[null,""],"Most Watched Shows":[null,""],"Most Played Shows":[null,""],"Recommended Shows":[null,""],"New Shows":[null,""],"Season Premieres":[null,""],"Existing Show":[null,""],"No root directories setup, please go back and add one.":[null,""],"Show added":[null,""],"Adding the specified show {show_name}":[null,""],"Missing params, no Indexer ID or folder: {show_to_add} and {root_dir}/{show_path}":[null,""],"Unknown error. Unable to add show due to problem with show selection.":[null,""],"Unable to add show":[null,""],"Folder {show_dir} exists already":[null,""],"Unable to create the folder {show_dir}, can't add the show":[null,""],"Adding the specified show into {show_dir}":[null,""],"Shows Added":[null,""],"Automatically added {num_shows} from their existing metadata files":[null,""],"Mass Update":[null,""],"Episode Overview":[null,""],"Missing Subtitles":[null,""],"Backlog Overview":[null,""],"Mass Edit":[null,""],"Unable to update show: {excption_format}":[null,""],"Unable to refresh show {show_name}: {excption_format}":[null,""],"Errors encountered":[null,""],"Updates":[null,""],"Refreshes":[null,""],"Renames":[null,""],"Subtitles":[null,""],"The following actions were queued":[null,""],"Failed Downloads":[null,""],"Manage Searches":[null,""],"Backlog search started":[null,""],"Daily search started":[null,""],"Find propers search started":[null,""],"Subtitle search started":[null,""],"Remove Selected":[null,""],"Clear History":[null,""],"Trim History":[null,""],"Selected history entries removed":[null,""],"History cleared":[null,""],"Removed history entries older than 30 days":[null,""],"General":[null,""],"Backup/Restore":[null,""],"Search Settings":[null,""],"Search Providers":[null,""],"Subtitles Settings":[null,""],"Notifications":[null,""],"Anime":[null,""],"SickRage Configuration":[null,""],"Config - Shares":[null,""],"Windows Shares Configuration":[null,""],"Saved Shares":[null,""],"Your Windows share settings have been saved":[null,""],"Config - General":[null,""],"General Configuration":[null,""],"Saved Defaults":[null,""],"Your \"add show\" defaults have been set to your current selections.":[null,""],"Unable to create directory {directory}, log directory not changed.":[null,""],"Unable to create directory {directory}, https cert directory not changed.":[null,""],"Unable to create directory {directory}, https key directory not changed.":[null,""],"Error(s) Saving Configuration":[null,""],"Configuration Saved":[null,""],"Config - Backup/Restore":[null,""],"Config - Episode Search":[null,""],"Config - Post Processing":[null,""],"Unpacking Not Supported, disabling unpack setting":[null,""],"You tried saving an invalid normal naming config, not saving your naming settings":[null,""],"You tried saving an invalid anime naming config, not saving your naming settings":[null,""],"Config - Providers":[null,""],"No Provider Name specified":[null,""],"No Provider Url specified":[null,""],"No Provider Api key specified":[null,""],"Config - Notifications":[null,""],"Config - Subtitles":[null,""],"Config - Anime":[null,""],"Clear Errors":[null,""],"Clear Warnings":[null,""],"Submit Errors":[null,""],"Logs & Errors":[null,""],"Log File":[null,""],"Logs":[null,""],"This is a test notification from SickRage":[null,""],"Choose Directory":[null,""],"Select log file folder location":[null,""],"Select CSS file":[null,""],"Select backup folder to save to":[null,""],"Select backup files to restore":[null,""],"Please fill out the necessary fields above.":[null,""],"<b>Step 1:</b> Confirm Authorization":[null,""],"Check blacklist name; the value needs to be a trakt slug":[null,""],"You must provide a recipient email address!":[null,""],"You didn't supply a Pushbullet api key":[null,""],"Don't forget to save your new pushbullet settings.":[null,""],"Select TV Download Directory":[null,""],"Select Unpack Directory":[null,""],"This pattern is invalid.":[null,""],"This pattern would be invalid without the folders, using it will force \"Season Folders\" on for all shows.":[null,""],"This pattern is valid.":[null,""],"Select .nzb black hole/watch location":[null,""],"Select .torrent black hole/watch location":[null,""],"Select .torrent download location":[null,""],"Minimum seeding time is":[null,""],"URL to your uTorrent client (e.g. http://localhost:8000)":[null,""],"Stop seeding when inactive for":[null,""],"URL to your Transmission client (e.g. http://localhost:9091)":[null,""],"URL to your Deluge client (e.g. http://localhost:8112)":[null,""],"IP or Hostname of your Deluge Daemon (e.g. scgi://localhost:58846)":[null,""],"URL to your Synology DS client (e.g. http://localhost:5000)":[null,""],"URL to your rTorrent client (e.g. scgi://localhost:5000 <br> or https://localhost/rutorrent/plugins/httprpc/action.php)":[null,""],"URL to your qBittorrent client (e.g. http://localhost:8080)":[null,""],"URL to your MLDonkey (e.g. http://localhost:4080)":[null,""],"URL to your putio client (e.g. http://localhost:8080)":[null,""],"<a herf=\"https://app.put.io/oauth/apps/new\" target=\"_blank\"> Create a new OAuth app for put.io</a>":[null,""],"Put.io Parent Folder":[null,""],"Put.io OAuth Token":[null,""],"Show Episodes":[null,""],"Hide Episodes":[null,""],"Select Show Location":[null,""],"Select Unprocessed Episode Folder":[null,""],"DELETED":[null,""],"Resume updating the log on this page.":[null,""],"Pause updating the log on this page.":[null,""],"searching {searchingFor}...":[null,""],"search timed out, try again or try another indexer":[null,""],"loading folders...":[null,""],"Loading...":[null,""],"You have reached this page by accident, please check the url.":[null,""],"A mako error has occured.<br>\n If this happened during an update a simple page refresh may be the solution.<br>\n Mako errors that happen during updates may be a one time error if there were significant ui changes.":[null,""],"Show/Hide Error":[null,""],"Add New Show":[null,""],"For shows that you haven't downloaded yet, this option finds a show on theTVDB.com, creates a directory for it's episodes, and adds it to SickRage.":[null,""],"Add From Trakt Lists":[null,""],"For shows that you haven't downloaded yet, this option lets you choose from a show from one of the Trakt lists to add to SickRage.":[null,""],"Add From IMDB's Popular Shows":[null,""],"View IMDB's list of the most popular shows. This feature uses IMDB's MOVIEMeter algorithm to identify popular TV Series.":[null,""],"Add Existing Shows":[null,""],"Use this option to add shows that already have a folder created on your hard drive. SickRage will scan your existing metadata/episodes and add the show accordingly.":[null,""],"Add Existing Show":[null,""],"Manage Directories":[null,""],"Customize Options":[null,""],"SickRage can add existing shows, using the current options, by using locally stored NFO/XML metadata to eliminate user interaction. If you would rather have SickRage prompt you to customize each show, then use the checkbox below.":[null,""],"Prompt me to set settings for each show":[null,""],"Displaying folders within these directories which aren't already added to SickRage":[null,""],"Submit":[null,""],"Find a show on theTVDB":[null,""],"Show retrieved from existing metadata":[null,""],"All Indexers":[null,""],"Search":[null,""],"This will only affect the language of the retrieved metadata file contents and episode filenames.":[null,""],"This <b>DOES NOT</b> allow SickRage to download non-english TV episodes!":[null,""],"Pick the parent folder":[null,""],"Pre-chosen Destination Folder":[null,""],"Customize options":[null,""],"Add Show":[null,""],"Skip Show":[null,""],"Sort By":[null,""],"Name":[null,""],"Original":[null,""],"Votes":[null,""],"Rating":[null,""],"Rating > Votes":[null,""],"Sort Order":[null,""],"Asc":[null,""],"Desc":[null,""],"Fetching of IMDB Data failed. Are you online?":[null,""],"Exception":[null,""],"Select Trakt List":[null,""],"Most Anticipated":[null,""],"Trending":[null,""],"Popular":[null,""],"Most Watched":[null,""],"Most Played":[null,""],"Most Collected":[null,""],"Recommended":[null,""],"Toggle navigation":[null,""],"Profile":[null,""],"JSONP":[null,""],"Back to SickRage":[null,""],"Parameters":[null,""],"Required":[null,""],"Description":[null,""],"Type":[null,""],"Default value":[null,""],"Allowed values":[null,""],"Playground":[null,""],"Clear":[null,""],"Yes":[null,""],"No":[null,""],"season":[null,""],"episode":[null,""],"Python Version":[null,""],"SSL Version":[null,""],"OS":[null,""],"Locale":[null,""],"User":[null,""],"Program Folder":[null,""],"Config File":[null,""],"Database File":[null,""],"Cache Folder":[null,""],"Log Folder":[null,""],"Arguments":[null,""],"Web Root":[null,""],"Website":[null,""],"Wiki":[null,""],"Source":[null,""],"IRC Chat":[null,""],"AnimeDB Settings":[null,""],"Look & Feel":[null,""],"AniDB is non-profit database of anime information that is freely open to the public":[null,""],"Enable":[null,""],"should SickRage use data from AniDB?":[null,""],"AniDB Username":[null,""],"username of your AniDB account":[null,""],"AniDB Password":[null,""],"password of your AniDB account":[null,""],"AniDB MyList":[null,""],"do you want to add the PostProcessed episodes to the MyList?":[null,""],"Look and Feel":[null,""],"How should the anime functions show and behave.":[null,""],"Split show lists":[null,""],"separate anime and normal shows in groups":[null,""],"Split in tabs":[null,""],"use tabs for when splitting show lists":[null,""],"Restore":[null,""],"Backup your main database file and config.":[null,""],"Select the folder you wish to save your backup file to":[null,""],"Restore your main database file and config.":[null,""],"Select the backup file you wish to restore":[null,""],"Misc":[null,""],"Interface":[null,""],"Advanced Settings":[null,""],"Startup options. Indexer options. Log and show file locations.":[null,""],"Some options may require a manual restart to take effect.":[null,""],"Default Indexer Language":[null,""],"for adding shows and metadata providers":[null,""],"Launch browser":[null,""],"open the SickRage home page on startup":[null,""],"Initial page":[null,""],"Shows":[null,""],"when launching SickRage interface":[null,""],"Choose hour to update shows":[null,""],"with information such as next air dates, show ended, etc. Use 15 for 3pm, 4 for 4am etc.":[null,""],"note":[null,""],"minutes are randomized each time SickRage is started":[null,""],"Send to trash for actions":[null,""],"when using show \"Remove\" and delete files":[null,""],"on scheduled deletes of the oldest log files":[null,""],"selected actions use trash (recycle bin) instead of the default permanent delete":[null,""],"Log file folder location":[null,""],"Number of Log files saved":[null,""],"number of log files saved when rotating logs (default: 5) (REQUIRES RESTART)":[null,""],"Size of Log files saved":[null,""],"maximum size in MB of the log file (default: 1MB) (REQUIRES RESTART)":[null,""],"Use initial indexer set to":[null,""],"as the default selection when adding new shows":[null,""],"Timeout show indexer at":[null,""],"seconds of inactivity when finding new shows (default:20)":[null,""],"Show root directories":[null,""],"where the files of shows are located":[null,""],"Save Changes":[null,""],"Options for software updates.":[null,""],"Check software updates":[null,""],"and display notifications when updates are available. Checks are run on startup and at the frequency set below*":[null,""],"Automatically update":[null,""],"fetch and install software updates. Updates are run on startup and in the background at the frequency set below*":[null,""],"Check the server every*":[null,""],"hours for software updates (default:1)":[null,""],"Notify on software update":[null,""],"send a message to all enabled notifiers when SickRage has been updated":[null,""],"User Interface":[null,""],"Options for visual appearance.":[null,""],"Interface Language":[null,""],"System Language":[null,""],"for appearance to take effect, save then refresh your browser":[null,""],"Display theme":[null,""],"Dark":[null,""],"Light":[null,""],"Use a background image":[null,""],"use a custom image as background for SickRage":[null,""],"Background Path":[null,""],"Path to the background image":[null,""],"Show fanart in the background":[null,""],"on the show summary page":[null,""],"Fanart transparency":[null,""],"transparency of the fanart in the background":[null,""],"Use a custom stylesheet file":[null,""],"use a custom .css file to style SickRage (for advanced users)":[null,""],"Stylesheet File Path":[null,""],"Path to the stylesheet (.css) file":[null,""],"Show all seasons":[null,""],"Sort with \"The\", \"A\", \"An\"":[null,""],"include articles (\"The\", \"A\", \"An\") when sorting show lists":[null,""],"Missed episodes range":[null,""],"set the range in days of the missed episodes in the Schedule page":[null,""],"Display fuzzy dates":[null,""],"move absolute dates into tooltips and display e.g. \"Last Thu\", \"On Tue\"":[null,""],"Trim zero padding":[null,""],"remove the leading number \"0\" shown on hour of day, and date of month":[null,""],"Date style":[null,""],"Use System Default":[null,""],"Time style":[null,""],"seconds are only shown on the History page":[null,""],"Timezone":[null,""],"Local":[null,""],"Network":[null,""],"display dates and times in either your timezone or the shows network timezone":[null,""],"use local timezone to start searching for episodes minutes after show ends (depends on your dailysearch frequency)":[null,""],"Download url":[null,""],"URL where the shows can be downloaded.":[null,""],"Web Interface":[null,""],"it is recommended that you enable a username and password to secure SickRage from being tampered with remotely.":[null,""],"these options require a manual restart to take effect.":[null,""],"API key":[null,""],"used to give 3rd party programs limited access to SickRage":[null,""],"you can try all the features of the API":[null,""],"here":[null,""],"HTTP logs":[null,""],"enable logs from the internal Tornado web server":[null,""],"HTTP username":[null,""],"set blank for no login":[null,""],"HTTP password":[null,""],"blank = no authentication":[null,""],"HTTP port":[null,""],"web port to browse and access SickRage (default:8081)":[null,""],"Notify on login":[null,""],"enable to be notified when a new login happens in webserver":[null,""],"Listen on IPv6":[null,""],"attempt binding to any available IPv6 address":[null,""],"Enable HTTPS":[null,""],"enable access to the web interface using a HTTPS address":[null,""],"HTTPS certificate":[null,""],"file name or path to HTTPS certificate":[null,""],"HTTPS key":[null,""],"file name or path to HTTPS key":[null,""],"Reverse proxy headers":[null,""],"accept the following reverse proxy headers (advanced)...":[null,""],"(X-Forwarded-For, X-Forwarded-Host, and X-Forwarded-Proto)":[null,""],"CPU throttling":[null,""],"Normal (default). High is lower and Low is higher CPU use":[null,""],"Anonymous redirect":[null,""],"backlink protection via anonymizer service, must end in \"?\"":[null,""],"Enable debug":[null,""],"enable debug logs":[null,""],"Verify SSL Certs":[null,""],"verify SSL Certificates (Disable this for broken SSL installs (Like QNAP))":[null,""],"No Restart":[null,""],"only shutdown when restarting SR":[null,""],"only select this when you have external software restarting SR automatically when it stops (like FireDaemon)":[null,""],"Encrypt passwords":[null,""],"in the <code>config.ini</code> file":[null,""],"warning":[null,""],"passwords must only contain":[null,""],"ASCII characters":[null,""],"Unprotected calendar":[null,""],"allow subscribing to the calendar without user and password":[null,""],"some services like Google Calendar only work this way":[null,""],"Google Calendar Icons":[null,""],"show an icon next to exported calendar events in Google Calendar":[null,""],"Proxy host":[null,""],"blank to disable or proxy to use when connecting to providers":[null,""],"also use global proxy setting for indexers (tvdb, xem, anidb, etc.)":[null,""],"Skip Remove Detection":[null,""],"skip detection of removed files":[null,""],"if disabled the episode will be set to the default deleted status":[null,""],"Default deleted episode status":[null,""],"define the status to be set for media file that has been deleted.":[null,""],"Archived option will keep previous downloaded quality":[null,""],"example: Downloaded (1080p WEB-DL) ==> Archived (1080p WEB-DL)":[null,""],"Options for github related features.":[null,""],"Branch version":[null,""],"error: No branches found.":[null,""],"select branch to use (restart required)":[null,""],"Authorization Type":[null,""],"Username and password":[null,""],"Personal access token":[null,""],"You must use a personal access token if you're using \"two-factor authentication\" on GitHub.":[null,""],"GitHub username":[null,""],"*** (REQUIRED FOR SUBMITTING ISSUES) ***":[null,""],"GitHub password":[null,""],"GitHub personal access token":[null,""],"Generate Token":[null,""],"Manage Tokens":[null,""],"GitHub remote for branch":[null,""],"access repo configured remotes (save then refresh browser)":[null,""],"default":[null,""],"origin":[null,""],"Git executable path":[null,""],"only needed if OS is unable to locate git from env":[null,""],"Git reset":[null,""],"removes untracked files and performs a hard reset on git branch automatically to help resolve update issues":[null,""],"Home Theater / NAS":[null,""],"Devices":[null,""],"Social":[null,""],"A free and open source cross-platform media center and home entertainment system software with a 10-foot user interface designed for the living-room TV.":[null,""],"send KODI commands?":[null,""],"Always on":[null,""],"log errors when unreachable?":[null,""],"Notify on snatch":[null,""],"send a notification when a download starts?":[null,""],"Notify on download":[null,""],"send a notification when a download finishes?":[null,""],"Notify on subtitle download":[null,""],"send a notification when subtitles are downloaded?":[null,""],"Update library":[null,""],"update KODI library when a download finishes?":[null,""],"Full library update":[null,""],"perform a full library update if update per-show fails?":[null,""],"Only update first host":[null,""],"only send library updates to the first active host?":[null,""],"KODI IP:Port":[null,""],"host running KODI (eg. 192.168.1.100:8080)":[null,""],"(multiple host strings must be separated by commas)":[null,""],"Username":[null,""],"username for your KODI server (blank for none)":[null,""],"Password":[null,""],"password for your KODI server (blank for none)":[null,""],"Click below to test.":[null,""],"Experience your media on a visually stunning, easy to use interface on your Mac connected to your TV. Your media library has never looked this good!":[null,""],"For sending notifications to Plex Home Theater (PHT) clients, use the KODI notifier with port <b>3005</b>.":[null,""],"send Plex Media Server library updates?":[null,""],"Plex Media Server Auth Token":[null,""],"auth token used by Plex":[null,""],"Update Library":[null,""],"update Plex Media Server library when a download finishes":[null,""],"Plex Media Server IP:Port":[null,""],"one or more hosts running Plex Media Server<br/>(eg. 192.168.1.1:32400, 192.168.1.2:32400)":[null,""],"HTTPS":[null,""],"use https for plex media server requests?":[null,""],"Click below to test Plex Media Server(s)":[null,""],"Test Plex Media Server":[null,""],"Plex Home Theater":[null,""],"send Plex Home Theater notifications?":[null,""],"Plex Home Theater IP:Port":[null,""],"one or more hosts running Plex Home Theater<br>(eg. 192.168.1.100:3000, 192.168.1.101:3000)":[null,""],"Click below to test Plex Home Theater(s)":[null,""],"Test Plex Home Theater":[null,""],"some Plex Home Theaters <b class=\"boldest\">do not</b> support notifications e.g. Plexapp for Samsung TVs":[null,""],"Emby":[null,""],"A home media server built using other popular open source technologies.":[null,""],"send update commands to Emby?":[null,""],"Emby IP:Port":[null,""],"host running Emby (eg. 192.168.1.100:8096)":[null,""],"Emby API Key":[null,""],"Networked Media Jukebox":[null,""],"The Networked Media Jukebox, or NMJ, is the official media jukebox interface made available for the Popcorn Hour 200-series.":[null,""],"send update commands to NMJ?":[null,""],"Popcorn IP address":[null,""],"IP address of Popcorn 200-series (eg. 192.168.1.100)":[null,""],"Get settings":[null,""],"Get Settings":[null,""],"the Popcorn Hour device must be powered on and NMJ running.":[null,""],"NMJ database":[null,""],"automatically filled via the 'Get Settings' button.":[null,""],"NMJ mount url":[null,""],"Networked Media Jukebox v2":[null,""],"The Networked Media Jukebox, or NMJv2, is the official media jukebox interface made available for the Popcorn Hour 300 & 400-series.":[null,""],"send update commands to NMJv2?":[null,""],"IP address of Popcorn 300/400-series (eg. 192.168.1.100)":[null,""],"Database location":[null,""],"Database instance":[null,""],"adjust this value if the wrong database is selected.":[null,""],"Find database":[null,""],"Find Database":[null,""],"the Popcorn Hour device must be powered on.":[null,""],"NMJv2 database":[null,""],"automatically filled via the 'Find Database' buttons.":[null,""],"Synology":[null,""],"The Synology DiskStation NAS.":[null,""],"Synology Indexer is the daemon running on the Synology NAS to build its media database.":[null,""],"send Synology notifications?":[null,""],"requires SickRage to be running on your Synology NAS.":[null,""],"Synology Indexer":[null,""],"Synology Notifier is the notification system of Synology DSM":[null,""],"send notifications to the Synology Notifier?":[null,""],"pyTivo":[null,""],"pyTivo is both an HMO and GoBack server. This notifier will load the completed downloads to your Tivo.":[null,""],"send notifications to pyTivo?":[null,""],"requires the downloaded files to be accessible by pyTivo.":[null,""],"pyTivo IP:Port":[null,""],"host running pyTivo (eg. 192.168.1.1:9032)":[null,""],"pyTivo share name":[null,""],"value used in pyTivo Web Configuration to name the share.":[null,""],"Tivo name":[null,""],"(Messages & Settings > Account & System Information > System Information > DVR name)":[null,""],"Growl":[null,""],"A cross-platform unobtrusive global notification system.":[null,""],"send Growl notifications?":[null,""],"Growl IP:Port":[null,""],"host running Growl (eg. 192.168.1.100:23053)":[null,""],"may leave blank if SickRage is on the same host.":[null,""],"otherwise Growl <b>requires</b> a password to be used.":[null,""],"Click below to register and test Growl, this is required for Growl notifications to work.":[null,""],"Register Growl":[null,""],"Prowl":[null,""],"A Growl client for iOS.":[null,""],"send Prowl notifications?":[null,""],"Prowl Message Title":[null,""],"Global Prowl API key(s)":[null,""],"Prowl API(s) listed here, separated by commas if applicable, will<br> receive notifications for <b>all</b> shows. Your Prowl API key is available at:":[null,""],"(this field may be blank except when testing.)":[null,""],"Show notification list":[null,""],"-- Select a Show --":[null,""],"Configure per-show notifications here by entering Prowl API key(s), separated by commas, '\n 'after selecting a show in the drop-down box. Be sure to activate the 'Save for this show' '\n 'button below after each entry.":[null,""],"Save for this show":[null,""],"Prowl priority":[null,""],"Very Low":[null,""],"Moderate":[null,""],"Normal":[null,""],"High":[null,""],"Emergency":[null,""],"priority of Prowl messages from SickRage.":[null,""],"Libnotify":[null,""],"The standard desktop notification API for Linux/*nix systems. This notifier will only function if the pynotify module is installed (Ubuntu/Debian package <a href=\"apt:python-notify\">python-notify</a>).":[null,""],"send Libnotify notifications?":[null,""],"Pushover":[null,""],"Pushover makes it easy to send real-time notifications to your Android and iOS devices.":[null,""],"send Pushover notifications?":[null,""],"Pushover key":[null,""],"user key of your Pushover account":[null,""],"Pushover API key":[null,""],"click here":[null,""]," to create a Pushover API key":[null,""],"Pushover devices":[null,""],"comma separated list of pushover devices you want to send notifications to":[null,""],"Pushover notification sound":[null,""],"Bike":[null,""],"Bugle":[null,""],"Cash Register":[null,""],"Classical":[null,""],"Cosmic":[null,""],"Falling":[null,""],"Gamelan":[null,""],"Incoming":[null,""],"Intermission":[null,""],"Magic":[null,""],"Mechanical":[null,""],"Piano Bar":[null,""],"Siren":[null,""],"Space Alarm":[null,""],"Tug Boat":[null,""],"Alien Alarm (long)":[null,""],"Climb (long)":[null,""],"Persistent (long)":[null,""],"Pushover Echo (long)":[null,""],"Up Down (long)":[null,""],"None (silent)":[null,""],"Device specific":[null,""],"choose notification sound to use":[null,""],"Pushover priority":[null,""],"Choose priority to use":[null,""],"Boxcar 2":[null,""],"Read your messages where and when you want them!":[null,""],"send Boxcar notifications?":[null,""],"Boxcar2 access token":[null,""],"access token for your Boxcar account.":[null,""],"NMA":[null,""],"Notify My Android":[null,""],"Notify My Android is a Prowl-like Android App and API that offers an easy way to send notifications from your application directly to your Android device.":[null,""],"send NMA notifications?":[null,""],"NMA API key":[null,""],"(multiple keys must be separated by commas, up to a maximum of 5)":[null,""],"NMA priority":[null,""],"priority of NMA messages from SickRage.":[null,""],"Pushalot":[null,""],"Pushalot is a platform for receiving custom push notifications to connected devices running Windows Phone or Windows 8.":[null,""],"send Pushalot notifications ?":[null,""],"Pushalot authorization token":[null,""],"authorization token of your Pushalot account.":[null,""],"Pushbullet":[null,""],"Pushbullet is a platform for receiving custom push notifications to connected devices running Android/iOS and desktop browsers such as Chrome, Firefox or Opera.":[null,""],"send Pushbullet notifications?":[null,""],"Pushbullet API key":[null,""],"API key of your Pushbullet account":[null,""],"Pushbullet devices":[null,""],"Update device list":[null,""],"Pushbullet channels":[null,""],"Free Mobile":[null,""],"Free Mobile is a famous French cellular network provider.<br> It provides to their customer a free SMS API.":[null,""],"send SMS notifications?":[null,""],"send a SMS when a download starts?":[null,""],"send a SMS when a download finishes?":[null,""],"send a SMS when subtitles are downloaded?":[null,""],"Free Mobile customer ID":[null,""],"it's your Free Mobile customer ID (8 digits)":[null,""],"Free Mobile API key":[null,""],"find your API key in your customer portal.":[null,""],"Click below to test your settings.":[null,""],"Telegram":[null,""],"Telegram is a cloud-based instant messaging service.":[null,""],"send Telegram notifications?":[null,""],"send a message when a download starts?":[null,""],"send a message when a download finishes?":[null,""],"send a message when subtitles are downloaded?":[null,""],"User/group ID":[null,""],"contact @myidbot on Telegram to get an ID":[null,""],"Bot API token":[null,""],"contact @BotFather on Telegram to set up one":[null,""],"Join":[null,""],"Join all of your devices together!":[null,""],"send Join notifications?":[null,""],"Device ID":[null,""],"per device specific id":[null,""]," to create a Join API key":[null,""],"Twilio":[null,""],"Twilio is a webservice API that allows you to communicate directly with a mobile number. This notifier will send a text directly to your mobile device.":[null,""],"should SickRage text your mobile device?":[null,""],"Twilio Account SID":[null,""],"account SID of your Twilio account.":[null,""],"Twilio Auth Token":[null,""],"Twilio Phone SID":[null,""],"phone SID that you would like to send the sms from":[null,""],"Your phone number":[null,""],"phone number that will receive the sms. Please use the format +1-###-###-####":[null,""],"Twitter":[null,""],"A social networking and microblogging service, enabling its users to send and read other users' messages called tweets.":[null,""],"should SickRage post tweets on Twitter?":[null,""],"you may want to use a secondary account.":[null,""],"send direct message":[null,""],"send a notification via Direct Message, not via status update":[null,""],"send DM to":[null,""],"Twitter account to send Direct Messages to (must follow you)":[null,""],"Step One":[null,""],"Request Authorization":[null,""],"Click the \"Request Authorization\" button.<br> This will open a new page containing an auth key.<br> <b>note:</b> if nothing happens check your popup blocker.":[null,""],"Step Two":[null,""],"Enter the key Twitter gave you below, and click \"Verify Key\".":[null,""],"Trakt":[null,""],"Trakt helps keep a record of what TV shows and movies you are watching. Based on your favorites, Trakt recommends additional shows and movies you'll enjoy!":[null,""],"send Trakt.tv notifications?":[null,""],"username of your Trakt account.":[null,""],"Trakt PIN":[null,""],"Get Trakt PIN":[null,""],"PIN code to authorize SickRage to access Trakt on your behalf.":[null,""],"API Timeout":[null,""],"seconds to wait for Trakt API to respond. (Use 0 to wait forever)":[null,""],"Default indexer":[null,""],"Sync libraries":[null,""],"sync your SickRage show library with your trakt show library.":[null,""],"Remove Episodes From Collection":[null,""],"remove an episode from your Trakt Collection if it is not in your SickRage Library.":[null,""],"Sync watchlist":[null,""],"sync your SickRage show watchlist with your trakt show watchlist (either Show and Episode).":[null,""],"episode will be added on watch list when wanted or snatched and will be removed when downloaded ":[null,""],"Watchlist add method":[null,""],"Skip All":[null,""],"Download Pilot Only":[null,""],"Get whole show":[null,""],"method in which to download episodes for new shows.":[null,""],"Remove episode":[null,""],"remove an episode from your watchlist after it is downloaded.":[null,""],"Remove series":[null,""],"remove the whole series from your watchlist after any download.":[null,""],"Remove watched show":[null,""],"remove the show from sickrage if it's ended and completely watched":[null,""],"Start paused":[null,""],"shows grabbed from your trakt watchlist start paused.":[null,""],"Trakt blackList name":[null,""],"name (slug) of list on Trakt for blacklisting show on 'Add Trending Show' & 'Add Recommended Shows' pages":[null,""],"Email":[null,""],"Allows configuration of email notifications on a per show basis.":[null,""],"send email notifications?":[null,""],"SMTP host":[null,""],"hostname of your SMTP email server.":[null,""],"SMTP port":[null,""],"port number used to connect to your SMTP host.":[null,""],"SMTP from":[null,""],"sender email address, some hosts require a real address.":[null,""],"Use TLS":[null,""],"check to use TLS encryption.":[null,""],"SMTP user":[null,""],"(optional) your SMTP server username.":[null,""],"SMTP password":[null,""],"(optional) your SMTP server password.":[null,""],"Global email list":[null,""],"email addresses listed here, separated by commas if applicable, will<br> receive notifications for <b>all</b> shows.":[null,""],"(This field may be blank except when testing.)":[null,""],"Email Subject":[null,""],"use a custom subject for some privacy protection?":[null,""],"(leave blank for the default SickRage subject)":[null,""],"configure per-show notifications here by entering email address(es), separated by commas,":[null,""],"after selecting a show in the drop-down box. Be sure to activate the 'Save for this show'":[null,""],"button below after each entry.":[null,""],"Slack":[null,""],"Slack brings all your communication together in one place. It's real-time messaging, archiving and search for modern teams.":[null,""],"should SickRage post messages on Slack?":[null,""],"Slack Incoming Webhook":[null,""],"Discord":[null,""],"All-in-one voice and text chat for gamers that's free, secure, and works on both your desktop and phone.":[null,""],"Should SickRage post messages on Discord?":[null,""],"Discord Incoming Webhook":[null,""],"Create webhook under channel settings.":[null,""],"Discord Bot Name":[null,""],"Blank will use webhook default Name.":[null,""],"Discord Avatar URL":[null,""],"Blank will use webhook default Avatar.":[null,""],"Discord TTS":[null,""],"Send notifications using text-to-speech":[null,""],"Post-Processing":[null,""],"Episode Naming":[null,""],"Metadata":[null,""],"Settings that dictate how SickRage should process completed downloads.":[null,""],"enable the automatic post processor to scan and process any files in your Post Processing Dir":[null,""],"do not use if you use an external Post Processing script":[null,""],"Post Processing Dir":[null,""],"the folder where your download client puts the completed TV downloads.":[null,""],"please use seperate downloading and completed folders in your download client if possible.":[null,""],"Processing Method":[null,""],"what method should be used to put files into the library?":[null,""],"if you keep seeding torrents after they finish, please avoid the 'move' processing method to prevent errors.":[null,""],"Auto Post-Processing Frequency":[null,""],"time in minutes to check for new files to auto post-process (min 10)":[null,""],"Postpone post processing":[null,""],"wait to process a folder if sync files are present.":[null,""],"Sync File Extensions":[null,""],"comma seperated list of extensions or filename globs SickRage ignores when Post Processing":[null,""],"Rename Episodes":[null,""],"rename episode using the Episode Naming settings?":[null,""],"Create missing show directories":[null,""],"create missing show directories when they get deleted":[null,""],"Add shows without directory":[null,""],"add shows without creating a directory (not recommended)":[null,""],"Move associated files":[null,""],"move associated (srt/srr/sfv/etc) files while post processing?":[null,""],"Rename .nfo file":[null,""],"rename the original .nfo file to .nfo-orig to avoid conflicts?":[null,""],"Associated file extensions":[null,""],"comma separated list of associated file extensions SickRage should keep while post processing.":[null,""],"leaving it empty means no associated files will be post processed":[null,""],"Delete non associated files":[null,""],"delete non associated files while post processing?":[null,""],"Change File Date":[null,""],"set last modified filedate to the date that the episode aired?":[null,""],"some systems may ignore this feature.":[null,""],"Timezone for File Date":[null,""],"local":[null,""],"network":[null,""],"what timezone should be used to change File Date?":[null,""],"Unpack":[null,""],"What to do with archived releases found in your <i>TV Download Dir</i>?":[null,""],"Ignore (do not process contents)":[null,""],"Unpack (process contents)":[null,""],"Treat as video (process archive as-is)":[null,""],"'Unpack' only works with RAR archives":[null,""],"Windows":[null,""],"WinRar is required on windows":[null,""],"Unpack Directory":[null,""],"Choose a path to unpack files, leave blank to unpack in download dir":[null,""],"Unrar Location":[null,""],"add the path to unrar if it is not in the system path":[null,""],"Alternate Unrar Tool":[null,""],"add the path to an alternate unrar tool if it is not in the system path":[null,""],"Delete RAR contents":[null,""],"delete content of RAR files, even if Process Method not set to move?":[null,""],"only working with RAR archive":[null,""],"Don't delete empty folders":[null,""],"leave empty folders when Post Processing?":[null,""],"can be overridden using manual Post Processing":[null,""],"Follow symbolic-links":[null,""],"follow down symbolic links in download directory?":[null,""],"<b>EXPERTS ONLY.</b><br>Enable only if you know what <b>circular symbolic links</b> are,<br>and can <b>verify that you have none</b>.":[null,""],"Use icacls":[null,""],"Windows only":[null,""],"sets video permissions after using the move method in post processing":[null,""],"Extra Scripts":[null,""],"see":[null,""],"for script arguments description and usage.":[null,""],"How SickRage will name and sort your episodes.":[null,""],"Name Pattern":[null,""],"Toggle Naming Legend":[null,""],"don't forget to add quality pattern. Otherwise after post-processing the episode will have UNKNOWN quality":[null,""],"Meaning":[null,""],"Pattern":[null,""],"Result":[null,""],"Use lower case if you want lower case names (eg. %sn, %e.n, %q_n etc)":[null,""],"Show Name":[null,""],"Show.Name":[null,""],"Show_Name":[null,""],"Season Number":[null,""],"XEM Season Number":[null,""],"Episode Number":[null,""],"XEM Episode Number":[null,""],"Episode Name":[null,""],"Episode.Name":[null,""],"Episode_Name":[null,""],"Air Date":[null,""],"Post-Processing Date":[null,""],"Quality":[null,""],"Scene Quality":[null,""],"Release Name":[null,""],"SickRage' is used in place of RLSGROUP if it could not be properly detected":[null,""],"Release Group":[null,""],"If episode is proper/repack add 'proper' to name.":[null,""],"Release Type":[null,""],"Multi-Episode Style":[null,""],"Single-EP Sample":[null,""],"Multi-EP sample":[null,""],"Strip Show Year":[null,""],"remove the TV show's year when renaming the file?":[null,""],"only applies to shows that have year inside parentheses":[null,""],"Custom Air-By-Date":[null,""],"name air-by-date shows differently than regular shows?":[null,""],"Toggle ABD Naming Legend":[null,""],"Regular Air Date":[null,""],"Year":[null,""],"Month":[null,""],"Day":[null,""],"Multi-EP style is ignored":[null,""],"Custom Sports":[null,""],"name sports shows differently than regular shows?":[null,""],"Toggle Sports Naming Legend":[null,""],"Sports Air Date":[null,""],"Custom Anime":[null,""],"name anime shows differently than regular shows?":[null,""],"Toggle Anime Naming Legend":[null,""],">XEM Season Number":[null,""],"Single-EP Anime Sample":[null,""],"Multi-EP Anime sample":[null,""],"Add Absolute Number":[null,""],"add the absolute number to the season/episode format?":[null,""],"only applies to anime. (eg. S15E45 - 310 vs S15E45)":[null,""],"Only Absolute Number":[null,""],"replace season/episode format with absolute number":[null,""],"only applies to anime.":[null,""],"No Absolute Number":[null,""],"don't include the absolute number":[null,""],"The data associated to the data. These are files associated to a TV show in the form of images and text that, when supported, will enhance the viewing experience.":[null,""],"Metadata Type":[null,""],"toggle metadata options that you wish to be created":[null,""],"multiple targets may be used":[null,""],"Select Metadata":[null,""],"Provider Priorities":[null,""],"Provider Options":[null,""],"Configure Custom Newznab Providers":[null,""],"Configure Custom Torrent Providers":[null,""],"Check off and drag the providers into the order you want them to be used.":[null,""],"At least one provider is required but two are recommended.":[null,""],"Torrent providers can be toggled in ":[null,""],"Provider does not support backlog searches at this time.":[null,""],"Provider is <b>NOT WORKING</b>.":[null,""],"Configure individual provider settings here.":[null,""],"Check with provider's website on how to obtain an API key if needed.":[null,""],"Configure provider":[null,""],"no providers available to configure.":[null,""],"URL":[null,""],"Enable daily searches":[null,""],"enable provider to perform daily searches.":[null,""],"Enable backlog searches":[null,""],"enable provider to perform backlog searches.":[null,""],"Season search mode":[null,""],"when searching for complete seasons you can choose to have it look for season packs only, or choose to have it build a complete season from just single episodes.":[null,""],"season packs only.":[null,""],"episodes only.":[null,""],"Enable fallback":[null,""],"when searching for a complete season depending on search mode you may return no results, this helps by restarting the search using the opposite search mode.":[null,""],"Custom URL":[null,""],"the URL should include the protocol (and port if applicable). Examples: http://192.168.1.4/ or http://localhost:3000/":[null,""],"Api key":[null,""],"Digest":[null,""],"Hash":[null,""],"Passkey":[null,""],"Cookies":[null,""],"example: uid=1234;pass=567845439634987<br>note: uid and pass are not your username/password.<br>use DevTools or Firebug to get these values after logging in on your browser.":[null,""],"Pin":[null,""],"Seed ratio":[null,""],"stop transfer when ratio is reached<br>(-1 SickRage default to seed forever, or leave blank for downloader default)":[null,""],"Minimum seeders":[null,""],"Minimum leechers":[null,""],"Confirmed download":[null,""],"only download torrents from trusted or verified uploaders ?":[null,""],"Ranked torrents":[null,""],"only download ranked torrents (trusted releases)":[null,""],"English torrents":[null,""],"only download english torrents, or torrents containing english subtitles":[null,""],"For Spanish torrents":[null,""],"ONLY search on this provider if show info is defined as \"Spanish\" (avoid provider's use for VOS shows)":[null,""],"Sorting results by":[null,""],"Freeleech":[null,""],"only download <b>\"FreeLeech\"</b> torrents.":[null,""],"Category":[null,""],"select torrent with Italian subtitle":[null,""],"Configure Custom<br>Newznab Providers":[null,""],"Add and setup or remove custom Newznab providers.":[null,""],"Select provider":[null,""],"-- add new provider --":[null,""],"Provider name":[null,""],"Site URL":[null,""],"Newznab search categories":[null,""],"select your Newznab categories on the left, and click the \"update categories\" button to use them for searching.) <b>don't forget to to save the form!":[null,""],"Update Categories":[null,""],"Add":[null,""],"Delete":[null,""],"Add and setup or remove custom RSS providers.":[null,""],"RSS URL":[null,""],"Search element":[null,""],"eg: title":[null,""],"Episode Search":[null,""],"NZB Search":[null,""],"Torrent Search":[null,""],"How to manage searching with":[null,""],"Randomize Providers":[null,""],"randomize the provider search order instead of going in order of placement":[null,""],"Download propers":[null,""],"replace original download with \"Proper\" or \"Repack\" if nuked":[null,""],"Check propers every":[null,""],"24 hours":[null,""],"4 hours":[null,""],"90 mins":[null,""],"45 mins":[null,""],"15 mins":[null,""],"Backlog search day(s)":[null,""],"number of day(s) that the \"Forced Backlog Search\" will cover (e.g. 7 Days)":[null,""],"Backlog search frequency":[null,""],"time in minutes between searches (min.":[null,""],"Daily search frequency":[null,""],"Usenet retention":[null,""],"age limit in days for usenet articles to be used (e.g. 500)":[null,""],"Ignore words":[null,""],"results with one or more word from this list will be ignored<br>separate words with a comma, e.g. \"word1,word2,word3\"":[null,""],"Require words":[null,""],"results with no word from this list will be ignored<br>separate words with a comma, e.g. \"word1,word2,word3\"":[null,""],"Trackers list":[null,""],"trackers that will be added to magnets without trackers<br>separate trackers with a comma, e.g. \"tracker1,tracker2,tracker3\"":[null,""],"Ignore language names in subbed results":[null,""],"ignore subbed releases based on language names <br>\n Example: \"dk\" will ignore words: dksub, dksubs, dksubbed, dksubed <br>\n separate languages with a comma, e.g. \"lang1,lang2,lang3":[null,""],"Allow high priority":[null,""],"set downloads of recently aired episodes to high priority":[null,""],"Use Failed Downloads":[null,""],"use Failed Download Handling?":[null,""],"will only work with snatched/downloaded episodes after enabling this":[null,""],"Delete Failed":[null,""],"delete files left over from a failed download?":[null,""],"this only works if Use Failed Downloads is enabled.":[null,""],"How to handle NZB search results.":[null,""],"Search NZBs":[null,""],"enable NZB search providers":[null,""],"Send .nzb files to":[null,""],"SABnzbd server URL":[null,""],"URL to your SABnzbd server (e.g. http://localhost:8080/)":[null,""],"SABnzbd username":[null,""],"(blank for none)":[null,""],"SABnzbd password":[null,""],"SABnzbd API key":[null,""],"locate at... SABnzbd Config -> General -> API Key":[null,""],"Use SABnzbd category":[null,""],"add downloads to this category (e.g. TV)":[null,""],"Use SABnzbd category (backlog episodes)":[null,""],"add downloads of old episodes to this category (e.g. TV)":[null,""],"Use SABnzbd category for anime":[null,""],"add anime downloads to this category (e.g. anime)":[null,""],"Use SABnzbd category for anime (backlog episodes)":[null,""],"add anime downloads of old episodes to this category (e.g. anime)":[null,""],"Use forced priority":[null,""],"enable to change priority from HIGH to FORCED":[null,""],"Black hole folder location":[null,""],"<b>.nzb</b> files are stored at this location for external software to find and use":[null,""],"Connect using HTTPS":[null,""],"enable Secure control in NZBGet and set the correct Secure Port here":[null,""],"NZBget host:port":[null,""],"(e.g. localhost:6789)":[null,""],"NZBget RPC host name and port number (not NZBgetweb!)":[null,""],"NZBget username":[null,""],"locate in nzbget.conf (default:nzbget)":[null,""],"NZBget password":[null,""],"locate in nzbget.conf (default:tegbzn6789)":[null,""],"Use NZBget category":[null,""],"send downloads marked this category (e.g. TV)":[null,""],"Use NZBget category (backlog episodes)":[null,""],"send downloads of old episodes marked this category (e.g. TV)":[null,""],"Use NZBget category for anime":[null,""],"send anime downloads marked this category (e.g. anime)":[null,""],"Use NZBget category for anime (backlog episodes)":[null,""],"send anime downloads of old episodes marked this category (e.g. anime)":[null,""],"NZBget priority":[null,""],"Very low":[null,""],"Low":[null,""],"Very high":[null,""],"Force":[null,""],"priority for daily snatches (no backlog)":[null,""],"Torrent host:port":[null,""],"URL to your Synology DSM (e.g. http://localhost:5000/)":[null,""],"Client username":[null,""],"Client password":[null,""],"Downloaded files location":[null,""],"where Synology Download Station will save downloaded files (blank for client default)":[null,""],"the destination has to be a shared folder for Synology DS":[null,""],"Click below to test":[null,""],"How to handle Torrent search results.":[null,""],"Search torrents":[null,""],"enable torrent search providers":[null,""],"Send .torrent files to":[null,""],"<b>.torrent</b> files are stored at this location for external software to find and use":[null,""],"URL to your torrent client (e.g. http://localhost:8000/)":[null,""],"Torrent RPC URL":[null,""],"the path without leading and trailing slashes (e.g. transmission)":[null,""],"Http Authentication":[null,""],"Verify certificate":[null,""],"disable if you get \"Deluge: Authentication Error\" in your log":[null,""],"verify SSL certificates for HTTPS requests":[null,""],"Add label to torrent":[null,""],"(blank spaces are not allowed)":[null,""],"label plugin must be enabled in Deluge clients":[null,""],"for QBitTorrent 3.3.1 and up":[null,""],"Add label to torrent for anime":[null,""],"for QBitTorrent 3.3.1 and up ":[null,""],"where <span id=\"torrent_client\">the torrent client</span> will save downloaded files (blank for client default)":[null,""],"the destination has to be a shared folder for Synology DS</span>":[null,""],"Minimum seeding time":[null,""],"time in hours":[null,""],"(default:'0' passes blank to client and '-1' passes nothing)":[null,""],"Start torrent paused":[null,""],"add .torrent to client but do <b style=\"font-weight:900\">not</b> start downloading":[null,""],"Allow high bandwidth":[null,""],"use high bandwidth allocation if priority is high":[null,""],"Test Connection":[null,""],"Windows Shares":[null,""],"Defines your existing windows shares so that we can add them to the browse dialog":[null,""],"Share #{number}":[null,""],"Share label":[null,""],"Hostname or IP":[null,""],"Share path":[null,""],"Subtitles Search":[null,""],"Subtitles Plugin":[null,""],"Plugin Settings":[null,""],"Settings that dictate how SickRage handles subtitles search results.":[null,""],"Search Subtitles":[null,""],"Subtitle Languages":[null,""],"Subtitle Directory":[null,""],"the directory where SickRage should store your <i>Subtitles</i> files.":[null,""],"leave empty if you want store subtitle in episode path.":[null,""],"Subtitle Find Frequency":[null,""],"time in hours between scans (default: 1)":[null,""],"Include Specials":[null,""],"include the show's specials when searching for subtitles?":[null,""],"Perfect matches":[null,""],"only download subtitles that match: release group, video codec, audio codec and resolution":[null,""],"if disabled you may get out of sync subtitles":[null,""],"Subtitles History":[null,""],"log downloaded Subtitle on History page?":[null,""],"Subtitles Multi-Language":[null,""],"append language codes to subtitle filenames?":[null,""],"this option is required if you use multiple subtitle languages":[null,""],"Delete unwanted subtitles":[null,""],"enable to delete unwanted subtitle languages bundled with release":[null,""],"Embedded Subtitles":[null,""],"ignore subtitles embedded inside video file?":[null,""],"this will ignore <u>all</u> embedded subtitles for every video file!":[null,""],"Hearing Impaired Subtitles":[null,""],"download hearing impaired style subtitles?":[null,""],"See":[null,""],"for a script arguments description.":[null,""],"Additional scripts separated by <b>|</b>.":[null,""],"Scripts are called after each episode has searched and downloaded subtitles.":[null,""],"For any scripted languages, include the interpreter executable before the script. See the following example":[null,""],"For Windows:":[null,""],"For Linux / OS X:":[null,""],"Subtitle Providers":[null,""],"Check off and drag the plugins into the order you want them to be used.":[null,""],"At least one plugin is required.":[null,""]," Web-scraping plugin":[null,""],"Provider Settings":[null,""],"Set user and password for each provider":[null,""],"User Name":[null,""],"Change Show":[null,""],"Prev Show":[null,""],"Next Show":[null,""],"Jump to Season":[null,""],"Specials":[null,""],"Poster for":[null,""],"Stars":[null,""],"minutes":[null,""],"View other popular {genre} shows on trakt.tv.":[null,""],"View other popular {imdbgenre} shows on IMDB.":[null,""],"Allowed":[null,""],"Preferred":[null,""],"Originally Airs":[null,""],"Show Status":[null,""],"Default EP Status":[null,""],"Location":[null,""],"Missing":[null,""],"Scene Name":[null,""],"Required Words":[null,""],"Ignored Words":[null,""],"Size":[null,""],"Info Language":[null,""],"Subtitles SR Metadata":[null,""],"Season Folders":[null,""],"Paused":[null,""],"Air-by-Date":[null,""],"Sports":[null,""],"DVD Order":[null,""],"Scene Numbering":[null,""],"Select Filtered Episodes":[null,""],"Clear All":[null,""],"Change selected episodes to":[null,""],"Select Columns":[null,""],"NFO":[null,""],"TBN":[null,""],"Episode":[null,""],"Absolute":[null,""],"Scene":[null,""],"Scene Absolute":[null,""],"File Name":[null,""],"Airdate":[null,""],"Download":[null,""],"Change the value here if scene numbering differs from the indexer episode numbering":[null,""],"Change the value here if scene absolute numbering differs from the indexer absolute numbering":[null,""],"Manual Search":[null,""],"Do you want to mark this episode as failed?":[null,""],"The episode release name will be added to the failed history, preventing it to be downloaded again.":[null,""],"Do you want to include the current episode quality in the search?":[null,""],"Choosing No will ignore any releases with the same episode quality as the one currently downloaded/snatched.":[null,""],"Download subtitle":[null,""],"Do you want to re-download the subtitle for this language?":[null,""],"It will overwrite your current subtitle":[null,""],"Format":[null,""],"Advanced":[null,""],"Main Settings":[null,""],"Show Location":[null,""],"Preferred Quality":[null,""],"Default Episode Status":[null,""],"this will set the status for future episodes.":[null,""],"this only applies to episode filenames and the contents of metadata files.":[null,""],"search for subtitles":[null,""],"Use SR Metdata":[null,""],"use SickRage metadata when searching for subtitle, this will override the autodiscovered metadata":[null,""],"pause this show (SickRage will not download episodes)":[null,""],"Format Settings":[null,""],"Air by date":[null,""],"check if the show is released as Show.03.02.2010 rather than Show.S02E03.":[null,""],"in case of an air date conflict between regular and special episodes, the later will be ignored.":[null,""],"check if the show is Anime and episodes are released as Show.265 rather than Show.S02E03":[null,""],"check if the show is a sporting or MMA event released as Show.03.02.2010 rather than Show.S02E03":[null,""],"Season folders":[null,""],"group episodes by season folder (uncheck to store in a single folder)":[null,""],"search by scene numbering (uncheck to search by indexer numbering)":[null,""],"use the DVD order instead of the air order":[null,""],"a \"Force Full Update\" is necessary, and if you have existing episodes you need to sort them manually.":[null,""],"comma-separated <i>e.g. \"word1,word2,word3</i>\"":[null,""],"search results with one or more words from this list will be ignored.":[null,""],"e.g. \"word1,word2,word3\"":[null,""],"search results with no words from this list will be ignored.":[null,""],"Scene Exception":[null,""],"this will affect episode search on NZB and torrent providers.":[null,""],"this list appends to the original show name.":[null,""],"WARNING logs":[null,""],"ERROR logs":[null,""],"There are no events to display.":[null,""],"Limit":[null,""],"Layout":[null,""],"HistoryLayout":[null,""],"Compact":[null,""],"Detailed":[null,""],"Time":[null,""],"Provider":[null,""],"Missing Provider":[null,""],"missing provider":[null,""],"Directory":[null,""],"Show Name (tvshow.nfo)":[null,""],"Indexer":[null,""],"Enter the folder containing the episode":[null,""],"Process Method to be used":[null,""],"Copy":[null,""],"Move":[null,""],"Hard Link":[null,""],"Symbolic Link":[null,""],"Symbolic Link Reversed":[null,""],"Force already Post Processed Dir/Files":[null,""],"Mark Dir/Files as priority download":[null,""],"(Check it to replace the file even if it exists at higher quality)":[null,""],"Delete files and folders":[null,""],"(Check it to delete files and folders like auto processing)":[null,""],"Don't use processing queue":[null,""],"(If checked this will return the result of the process here, but may be slow!)":[null,""],"Mark download as failed":[null,""],"Process":[null,""],"Download subtitles for this show?":[null,""],"use SickRage metadata when searching for subtitle, <br />this will override the autodiscovered metadata":[null,""],"Status for previously aired episodes":[null,""],"Status for all future episodes":[null,""],"Group episodes by season folder?":[null,""],"Is this show an Anime?":[null,""],"Is this show scene numbered?":[null,""],"Save Defaults":[null,""],"Use current values as the defaults":[null,""],"<p>Select your preferred fansub groups from the <b>Available Groups</b> and add them to the <b>Whitelist</b>. Add groups to the <b>Blacklist</b> to ignore them.</p>\n <p>The <b>Whitelist</b> is checked <i>before</i> the <b>Blacklist</b>.</p>\n <p>Groups are shown as <b>Name</b> | <b>Rating</b> | <b>Number of subbed episodes</b>.</p>\n <p>You may also add any fansub group not listed to either list manually.</p>\n <p>When doing this please note that you can only use groups listed on anidb for this anime.\n <br>If a group is not listed on anidb but subbed this anime, please correct anidb's data.</p>":[null,""],"Whitelist":[null,""],"Available Groups":[null,""],"Add to Whitelist":[null,""],"Add to Blacklist":[null,""],"Blacklist":[null,""],"Custom Group":[null,""],"Allowed Quality:":[null,""],"Preferred Quality:":[null,""],"Filter Show Name":[null,""],"Root":[null,""],"All":[null,""],"Clear Filter(s)":[null,""],"Poster":[null,"海报"],"Small Poster":[null,""],"Banner":[null,"横幅"],"Simple":[null,""],"Next Episode":[null,""],"Progress":[null,""],"Direction":[null,""],"Ascending":[null,""],"Descending":[null,""],"Poster Size":[null,""],"Continuing":[null,""],"Ended":[null,""],"Total":[null,""],"Invalid date":[null,""],"No Network":[null,""],"Next Ep":[null,""],"Prev Ep":[null,""],"Show":[null,"显示"],"Downloads":[null,""],"Active":[null,""],"loading":[null,""],"<p><b><u>Preferred</u></b> qualities will replace those in <b><u>allowed</u></b>, even if they are lower.</p>":[null,""],"New":[null,""],"Set as Default":[null,""],"Remember me":[null,""],"Edit Selected":[null,""],"Subtitle":[null,""],"Default Ep Status":[null,""],"Update":[null,""],"Rescan":[null,""],"Rename":[null,""],"Search Subtitle":[null,""],"Force Metadata Regen":[null,""],"Snatched (Allowed)":[null,""],"Jump to Show":[null,""],"Force Backlog":[null,""],"Manage episodes with status":[null,""],"Manage":[null,""],"None of your episodes have status":[null,""],"Shows containing":[null,""],"episodes":[null,""],"Set checked shows/episodes to":[null,""],"Go":[null,""],"Select all":[null,""],"Clear all":[null,""],"Release":[null,""],"Backlog Search":[null,""],"Not in progress":[null,""],"In Progress":[null,""],"Daily Search":[null,""],"Find Propers Search":[null,""],"Propers search disabled":[null,""],"Subtitle Search":[null,""],"Subtitle search disabled":[null,""],"Search Queue":[null,""],"pending items":[null,""],"Daily":[null,""],"Manual":[null,""],"Changing any settings marked with (<span class=\"separator\">*</span>) will force a refresh of the selected shows.":[null,""],"Selected Shows":[null,""],"Root Directories":[null,""],"Current":[null,""],"Keep":[null,""],"Custom":[null,""],"Group episodes by season folder (set to \"No\" to store in a single folder).":[null,""],"Pause these shows (SickRage will not download episodes).":[null,""],"This will set the status for future episodes.":[null,""],"Search by scene numbering (set to \"No\" to search by indexer numbering).":[null,""],"Set if these shows are Anime and episodes are released as Show.265 rather than Show.S02E03":[null,""],"Set if these shows are sporting or MMA events released as Show.03.02.2010 rather than Show.S02E03.":[null,""],"In case of an air date conflict between regular and special episodes, the later will be ignored.":[null,""],"Set if these shows are released as Show.03.02.2010 rather than Show.S02E03.":[null,""],"Search for subtitles.":[null,""],"All of your episodes have {subsLanguage} subtitles.":[null,""],"Manage episodes without":[null,""],"Episodes without {subsLanguage} subtitles.":[null,""],"Episodes without {subtitleLanguage} (undefined) subtitles.":[null,""],"Download missed subtitles for selected episodes":[null,""],"Performing Restart":[null,""],"Waiting for SickRage to shut down":[null,""],"Waiting for SickRage to start again":[null,""],"Loading the default page":[null,""],"Error: The restart has timed out, perhaps something prevented SickRage from starting again?":[null,""],"Key":[null,""],"Missed":[null,""],"Today":[null,""],"Soon":[null,""],"Later":[null,""],"Subscribe":[null,""],"Date":[null,""],"View Paused":[null,""],"Hidden":[null,""],"Shown":[null,""],"Calendar":[null,"日历"],"List":[null,"列表"],"Ends":[null,""],"Next Ep Name":[null,""],"Run time":[null,""],"Indexers":[null,""],"No shows for this day":[null,""],"Airs":[null,""],"Plot":[null,""],"Show Update":[null,""],"Version Check":[null,""],"Proper Finder":[null,""],"Post Process":[null,""],"Subtitles Finder":[null,""],"Scheduler":[null,""],"Alive":[null,""],"Start Time":[null,""],"Cycle Time":[null,""],"Next Run":[null,""],"Last Run":[null,""],"Silent":[null,""],"True":[null,""],"N/A":[null,""],"Show id":[null,""],"Show name":[null,""],"Priority":[null,""],"Added":[null,""],"Queue type":[null,""],"LOW":[null,""],"NORMAL":[null,""],"HIGH":[null,""],"Disk Space":[null,""],"Free space":[null,""],"TV Download Directory":[null,""],"Media Root Directories":[null,""],"Preview of the proposed name changes":[null,""],"All Seasons":[null,""],"select all":[null,""],"Rename Selected":[null,""],"Cancel Rename":[null,""],"Old Location":[null,""],"New Location":[null,""],"Trakt API did not return any results, please check your config.":[null,""],"votes":[null,""],"Remove Show":[null,""],"Level":[null,""],"Filter":[null,""],"All non-absolute folder locations are relative to ":[null,""],"Manual Post-Processing":[null,""],"Episode Status Management":[null,""],"Update PLEX":[null,""],"Update KODI":[null,""],"Update Emby":[null,""],"Manage Torrents":[null,""],"Missed Subtitle Management":[null,""],"Help & Info":[null,""],"Backup & Restore":[null,""],"Tools":[null,""],"Support SickRage":[null,""],"View Errors":[null,""],"View Warnings":[null,""],"View Log":[null,""],"Check For Updates":[null,""],"Restart":[null,""],"Shutdown":[null,""],"Logout":[null,""],"Server Status":[null,""],"View overview of snatched episodes":[null,""],"Episodes Downloaded":[null,""],"Memory used":[null,""],"Load time":[null,""],"Branch":[null,""],"Now":[null,""]}}}} \ No newline at end of file diff --git a/locale/zh_CN/LC_MESSAGES/messages.mo b/locale/zh_CN/LC_MESSAGES/messages.mo index d417f7f19359d2f2412f2a9e30fce3ae53d0955e..b03414e46ea121e5ccdc0fed1f0a059db7ca1481 100644 Binary files a/locale/zh_CN/LC_MESSAGES/messages.mo and b/locale/zh_CN/LC_MESSAGES/messages.mo differ diff --git a/locale/zh_CN/LC_MESSAGES/messages.po b/locale/zh_CN/LC_MESSAGES/messages.po index 63855823a2fd7f0101241580ef53fd6b8efe0589..b650f53922924f781b10ae99dc705c66ac278b09 100644 --- a/locale/zh_CN/LC_MESSAGES/messages.po +++ b/locale/zh_CN/LC_MESSAGES/messages.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: sickrage\n" "Report-Msgid-Bugs-To: miigotu@gmail.com\n" -"POT-Creation-Date: 2017-03-25 09:28-0700\n" -"PO-Revision-Date: 2017-03-25 12:29-0400\n" +"POT-Creation-Date: 2017-03-28 09:10-0700\n" +"PO-Revision-Date: 2017-03-28 12:11-0400\n" "Last-Translator: miigotu <miigotu@gmail.com>\n" "Language-Team: Chinese Simplified\n" "MIME-Version: 1.0\n" @@ -90,7 +90,7 @@ msgid "Biography" msgstr "" #: gui/slick/views/config_general.mako:78 gui/slick/views/layouts/main.mako:145 -#: sickbeard/__init__.py:79 sickbeard/webserve.py:3807 +#: sickbeard/__init__.py:79 sickbeard/webserve.py:3778 msgid "History" msgstr "" @@ -103,7 +103,7 @@ msgid "Western" msgstr "" #: gui/slick/views/config_general.mako:79 gui/slick/views/layouts/main.mako:221 -#: sickbeard/__init__.py:80 sickbeard/webserve.py:2385 +#: sickbeard/__init__.py:80 sickbeard/webserve.py:2384 msgid "News" msgstr "" @@ -238,6 +238,34 @@ msgstr "已忽略" msgid "Subtitled" msgstr "有字幕" +#: sickbeard/helpers.py:1887 +msgid "For best results please set the Download Station alias as" +msgstr "" + +#: sickbeard/helpers.py:1888 +msgid "You can check this setting in the Synology DSM" +msgstr "" + +#: sickbeard/helpers.py:1888 sickbeard/helpers.py:1890 +msgid "Control Panel" +msgstr "" + +#: sickbeard/helpers.py:1888 +msgid "Application Portal" +msgstr "" + +#: sickbeard/helpers.py:1889 +msgid "Make sure you allow DSM to be embedded with iFrames too in" +msgstr "" + +#: sickbeard/helpers.py:1890 +msgid "DSM Settings" +msgstr "" + +#: sickbeard/helpers.py:1890 +msgid "Security" +msgstr "" + #: sickbeard/logger.py:474 msgid "<No Filter>" msgstr "" @@ -308,15 +336,15 @@ msgstr "" msgid "Event" msgstr "" -#: sickbeard/logger.py:491 sickbeard/webserve.py:1339 sickbeard/webserve.py:1342 -#: sickbeard/webserve.py:1520 sickbeard/webserve.py:1529 sickbeard/webserve.py:1717 -#: sickbeard/webserve.py:1728 sickbeard/webserve.py:1751 sickbeard/webserve.py:1764 -#: sickbeard/webserve.py:1769 sickbeard/webserve.py:1785 sickbeard/webserve.py:1790 -#: sickbeard/webserve.py:1854 sickbeard/webserve.py:1857 sickbeard/webserve.py:1863 -#: sickbeard/webserve.py:1866 sickbeard/webserve.py:1873 sickbeard/webserve.py:1876 -#: sickbeard/webserve.py:1899 sickbeard/webserve.py:1997 sickbeard/webserve.py:2002 -#: sickbeard/webserve.py:2007 sickbeard/webserve.py:2036 sickbeard/webserve.py:2040 -#: sickbeard/webserve.py:2045 +#: sickbeard/logger.py:491 sickbeard/webserve.py:1338 sickbeard/webserve.py:1341 +#: sickbeard/webserve.py:1519 sickbeard/webserve.py:1528 sickbeard/webserve.py:1716 +#: sickbeard/webserve.py:1727 sickbeard/webserve.py:1750 sickbeard/webserve.py:1763 +#: sickbeard/webserve.py:1768 sickbeard/webserve.py:1784 sickbeard/webserve.py:1789 +#: sickbeard/webserve.py:1853 sickbeard/webserve.py:1856 sickbeard/webserve.py:1862 +#: sickbeard/webserve.py:1865 sickbeard/webserve.py:1872 sickbeard/webserve.py:1875 +#: sickbeard/webserve.py:1898 sickbeard/webserve.py:1996 sickbeard/webserve.py:2001 +#: sickbeard/webserve.py:2006 sickbeard/webserve.py:2035 sickbeard/webserve.py:2039 +#: sickbeard/webserve.py:2044 msgid "Error" msgstr "错误" @@ -333,6 +361,7 @@ msgstr "" msgid "Main" msgstr "" +#: gui/slick/js/ajaxEpSearch.js:146 gui/slick/js/ajaxEpSearch.js:147 #: gui/slick/views/inc_home_showList.mako:27 sickbeard/show_queue.py:298 msgid "Loading" msgstr "" @@ -372,867 +401,835 @@ msgstr "" msgid "No update needed" msgstr "" -#: sickbeard/webserve.py:170 +#: sickbeard/webserve.py:171 msgid "Mako Error" msgstr "" -#: sickbeard/webserve.py:195 +#: sickbeard/webserve.py:196 msgid "Oops" msgstr "哎呀" -#: sickbeard/webserve.py:197 +#: sickbeard/webserve.py:198 msgid "Wrong API key used" msgstr "错误的API密钥" -#: gui/slick/views/login.mako:34 sickbeard/webserve.py:302 +#: gui/slick/views/login.mako:34 sickbeard/webserve.py:303 msgid "Login" msgstr "登录" -#: sickbeard/webserve.py:406 +#: sickbeard/webserve.py:392 msgid "API Key not generated" msgstr "API密钥未生成" -#: sickbeard/webserve.py:409 +#: sickbeard/webserve.py:395 msgid "API Builder" msgstr "API 生成器" #: gui/slick/views/config_general.mako:77 gui/slick/views/layouts/main.mako:141 -#: sickbeard/webserve.py:512 +#: sickbeard/webserve.py:498 msgid "Schedule" msgstr "日程" -#: sickbeard/webserve.py:610 +#: sickbeard/webserve.py:609 msgid "Test 1" msgstr "测试 1" -#: sickbeard/webserve.py:610 +#: sickbeard/webserve.py:609 msgid "This is test number 1" msgstr "这是测试1" -#: sickbeard/webserve.py:611 +#: sickbeard/webserve.py:610 msgid "Test 2" msgstr "测试 2" -#: sickbeard/webserve.py:611 +#: sickbeard/webserve.py:610 msgid "This is test number 2" msgstr "这是测试2" -#: sickbeard/webserve.py:634 +#: sickbeard/webserve.py:633 msgid "You're using the {branch} branch. Please use 'master' unless specifically asked" msgstr "" -#: sickbeard/webserve.py:698 sickbeard/webserve.py:703 +#: sickbeard/webserve.py:697 sickbeard/webserve.py:702 msgid "Invalid show parameters" msgstr "无效的显示参数" -#: sickbeard/webserve.py:710 +#: sickbeard/webserve.py:709 msgid "Invalid parameters" msgstr "" -#: sickbeard/webserve.py:713 sickbeard/webserve.py:1899 +#: sickbeard/webserve.py:712 sickbeard/webserve.py:1898 msgid "Episode couldn't be retrieved" msgstr "无法获取此集" -#: sickbeard/webserve.py:759 sickbeard/webserve.py:1268 sickbeard/webserve.py:1297 +#: sickbeard/webserve.py:758 sickbeard/webserve.py:1267 sickbeard/webserve.py:1296 msgid "Home" msgstr "首页" -#: gui/slick/views/layouts/main.mako:127 sickbeard/webserve.py:759 +#: gui/slick/views/layouts/main.mako:127 sickbeard/webserve.py:758 msgid "Show List" msgstr "节目清单" -#: sickbeard/webserve.py:807 +#: sickbeard/webserve.py:806 msgid "Error: Unsupported Request. Send jsonp request with 'callback' variable in the query string." msgstr "错误 ︰ 不支持的请求。请以callback作为变量发送jsonp请求" -#: sickbeard/webserve.py:851 +#: sickbeard/webserve.py:850 msgid "Success. Connected and authenticated" msgstr "成功。已连接并通过身份验证" -#: sickbeard/webserve.py:853 +#: sickbeard/webserve.py:852 msgid "Authentication failed. SABnzbd expects" msgstr "" -#: sickbeard/webserve.py:853 +#: sickbeard/webserve.py:852 msgid "as authentication method" msgstr "作为身份验证方法" -#: sickbeard/webserve.py:855 +#: sickbeard/webserve.py:854 msgid "Unable to connect to host" msgstr "无法连接到主机" -#: sickbeard/webserve.py:876 +#: sickbeard/webserve.py:875 msgid "SMS sent successfully" msgstr "" -#: sickbeard/webserve.py:878 +#: sickbeard/webserve.py:877 msgid "Problem sending SMS: {message}" msgstr "" -#: sickbeard/webserve.py:885 +#: sickbeard/webserve.py:884 msgid "Telegram notification succeeded. Check your Telegram clients to make sure it worked" msgstr "" -#: sickbeard/webserve.py:887 +#: sickbeard/webserve.py:886 msgid "Error sending Telegram notification: {message}" msgstr "" -#: sickbeard/webserve.py:894 +#: sickbeard/webserve.py:893 msgid "join notification succeeded. Check your join clients to make sure it worked" msgstr "" -#: sickbeard/webserve.py:896 +#: sickbeard/webserve.py:895 msgid "Error sending join notification: {message}" msgstr "" -#: sickbeard/webserve.py:906 +#: sickbeard/webserve.py:905 msgid " with password" msgstr "" -#: sickbeard/webserve.py:908 +#: sickbeard/webserve.py:907 msgid "Registered and Tested growl successfully {growl_host}" msgstr "" -#: sickbeard/webserve.py:910 +#: sickbeard/webserve.py:909 msgid "Registration and Testing of growl failed {growl_host}" msgstr "" -#: sickbeard/webserve.py:917 +#: sickbeard/webserve.py:916 msgid "Test prowl notice sent successfully" msgstr "" -#: sickbeard/webserve.py:919 +#: sickbeard/webserve.py:918 msgid "Test prowl notice failed" msgstr "" -#: sickbeard/webserve.py:926 +#: sickbeard/webserve.py:925 msgid "Boxcar2 notification succeeded. Check your Boxcar2 clients to make sure it worked" msgstr "" -#: sickbeard/webserve.py:928 +#: sickbeard/webserve.py:927 msgid "Error sending Boxcar2 notification" msgstr "" -#: sickbeard/webserve.py:935 +#: sickbeard/webserve.py:934 msgid "Pushover notification succeeded. Check your Pushover clients to make sure it worked" msgstr "" -#: sickbeard/webserve.py:937 +#: sickbeard/webserve.py:936 msgid "Error sending Pushover notification" msgstr "" -#: sickbeard/webserve.py:949 +#: sickbeard/webserve.py:948 msgid "Key verification successful" msgstr "" -#: sickbeard/webserve.py:951 +#: sickbeard/webserve.py:950 msgid "Unable to verify key" msgstr "" -#: sickbeard/webserve.py:958 +#: sickbeard/webserve.py:957 msgid "Tweet successful, check your twitter to make sure it worked" msgstr "" -#: sickbeard/webserve.py:960 +#: sickbeard/webserve.py:959 msgid "Error sending tweet" msgstr "" -#: sickbeard/webserve.py:965 +#: sickbeard/webserve.py:964 msgid "Please enter a valid account sid" msgstr "" -#: sickbeard/webserve.py:968 +#: sickbeard/webserve.py:967 msgid "Please enter a valid auth token" msgstr "" -#: sickbeard/webserve.py:971 +#: sickbeard/webserve.py:970 msgid "Please enter a valid phone sid" msgstr "" -#: sickbeard/webserve.py:974 +#: sickbeard/webserve.py:973 msgid "Please format the phone number as \"+1-###-###-####\"" msgstr "" -#: sickbeard/webserve.py:978 +#: sickbeard/webserve.py:977 msgid "Authorization successful and number ownership verified" msgstr "" -#: sickbeard/webserve.py:980 +#: sickbeard/webserve.py:979 msgid "Error sending sms" msgstr "" -#: sickbeard/webserve.py:986 +#: sickbeard/webserve.py:985 msgid "Slack message successful" msgstr "" -#: sickbeard/webserve.py:988 +#: sickbeard/webserve.py:987 msgid "Slack message failed" msgstr "" -#: sickbeard/webserve.py:994 +#: sickbeard/webserve.py:993 msgid "Discord message successful" msgstr "" -#: sickbeard/webserve.py:996 +#: sickbeard/webserve.py:995 msgid "Discord message failed" msgstr "" -#: sickbeard/webserve.py:1006 +#: sickbeard/webserve.py:1005 msgid "Test KODI notice sent successfully to {kodi_host}" msgstr "" -#: sickbeard/webserve.py:1008 +#: sickbeard/webserve.py:1007 msgid "Test KODI notice failed to {kodi_host}" msgstr "" -#: sickbeard/webserve.py:1023 +#: sickbeard/webserve.py:1022 msgid "Successful test notice sent to Plex Home Theater ... {plex_clients}" msgstr "" -#: sickbeard/webserve.py:1025 +#: sickbeard/webserve.py:1024 msgid "Test failed for Plex Home Theater ... {plex_clients}" msgstr "" -#: sickbeard/webserve.py:1028 +#: sickbeard/webserve.py:1027 msgid "Tested Plex Home Theater(s)" msgstr "" -#: sickbeard/webserve.py:1042 +#: sickbeard/webserve.py:1041 msgid "Successful test of Plex Media Server(s) ... {plex_servers}" msgstr "" -#: sickbeard/webserve.py:1044 +#: sickbeard/webserve.py:1043 msgid "Test failed, No Plex Media Server host specified" msgstr "" -#: sickbeard/webserve.py:1046 +#: sickbeard/webserve.py:1045 msgid "Test failed for Plex Media Server(s) ... {plex_servers}" msgstr "" -#: sickbeard/webserve.py:1049 +#: sickbeard/webserve.py:1048 msgid "Tested Plex Media Server host(s)" msgstr "" -#: sickbeard/webserve.py:1057 +#: sickbeard/webserve.py:1056 msgid "Tried sending desktop notification via libnotify" msgstr "" -#: sickbeard/webserve.py:1066 +#: sickbeard/webserve.py:1065 msgid "Test notice sent successfully to {emby_host}" msgstr "" -#: sickbeard/webserve.py:1068 +#: sickbeard/webserve.py:1067 msgid "Test notice failed to {emby_host}" msgstr "" -#: sickbeard/webserve.py:1076 +#: sickbeard/webserve.py:1075 msgid "Successfully started the scan update" msgstr "" -#: sickbeard/webserve.py:1078 +#: sickbeard/webserve.py:1077 msgid "Test failed to start the scan update" msgstr "" -#: sickbeard/webserve.py:1097 +#: sickbeard/webserve.py:1096 msgid "Test notice sent successfully to {nmj2_host}" msgstr "" -#: sickbeard/webserve.py:1099 +#: sickbeard/webserve.py:1098 msgid "Test notice failed to {nmj2_host}" msgstr "" -#: sickbeard/webserve.py:1119 +#: sickbeard/webserve.py:1118 msgid "Trakt Authorized" msgstr "" -#: sickbeard/webserve.py:1120 +#: sickbeard/webserve.py:1119 msgid "Trakt Not Authorized!" msgstr "" -#: sickbeard/webserve.py:1184 +#: sickbeard/webserve.py:1183 msgid "Test email sent successfully! Check inbox." msgstr "" -#: sickbeard/webserve.py:1186 +#: sickbeard/webserve.py:1185 msgid "ERROR: {last_error}" msgstr "" -#: sickbeard/webserve.py:1193 +#: sickbeard/webserve.py:1192 msgid "Test NMA notice sent successfully" msgstr "" -#: sickbeard/webserve.py:1195 +#: sickbeard/webserve.py:1194 msgid "Test NMA notice failed" msgstr "" -#: sickbeard/webserve.py:1202 +#: sickbeard/webserve.py:1201 msgid "Pushalot notification succeeded. Check your Pushalot clients to make sure it worked" msgstr "" -#: sickbeard/webserve.py:1204 +#: sickbeard/webserve.py:1203 msgid "Error sending Pushalot notification" msgstr "" -#: sickbeard/webserve.py:1211 +#: sickbeard/webserve.py:1210 msgid "Pushbullet notification succeeded. Check your device to make sure it worked" msgstr "" -#: sickbeard/webserve.py:1213 sickbeard/webserve.py:1223 sickbeard/webserve.py:1232 +#: sickbeard/webserve.py:1212 sickbeard/webserve.py:1222 sickbeard/webserve.py:1231 msgid "Error sending Pushbullet notification" msgstr "" #: gui/slick/views/displayShow.mako:436 gui/slick/views/inc_home_showList.mako:174 -#: gui/slick/views/manage.mako:49 sickbeard/webserve.py:1249 +#: gui/slick/views/manage.mako:49 sickbeard/webserve.py:1248 msgid "Status" msgstr "" -#: sickbeard/webserve.py:1268 sickbeard/webserve.py:1297 +#: sickbeard/webserve.py:1267 sickbeard/webserve.py:1296 msgid "Restarting SickRage" msgstr "" -#: sickbeard/webserve.py:1300 +#: sickbeard/webserve.py:1299 msgid "Update Failed" msgstr "更新失败" -#: sickbeard/webserve.py:1301 +#: sickbeard/webserve.py:1300 msgid "Update wasn't successful, not restarting. Check your log for more information." msgstr "更新不成功,不重新启动。请检查您的日志以了解更多信息。" -#: sickbeard/webserve.py:1308 +#: sickbeard/webserve.py:1307 msgid "Checking out branch" msgstr "检出branch" -#: sickbeard/webserve.py:1311 +#: sickbeard/webserve.py:1310 msgid "Already on branch" msgstr "已经在branch上" -#: sickbeard/webserve.py:1339 +#: sickbeard/webserve.py:1338 msgid "Invalid show ID: {show}" msgstr "无效的节目ID: {show}" -#: sickbeard/webserve.py:1342 sickbeard/webserve.py:1871 sickbeard/webserve.py:2002 -#: sickbeard/webserve.py:2040 +#: sickbeard/webserve.py:1341 sickbeard/webserve.py:1870 sickbeard/webserve.py:2001 +#: sickbeard/webserve.py:2039 msgid "Show not in show list" msgstr "节目不在清单中" #: gui/slick/views/inc_rootDirs.mako:31 gui/slick/views/manage.mako:38 -#: gui/slick/views/manage_massEdit.mako:74 sickbeard/webserve.py:1358 -#: sickbeard/webserve.py:2027 +#: gui/slick/views/manage_massEdit.mako:74 sickbeard/webserve.py:1357 +#: sickbeard/webserve.py:2026 msgid "Edit" msgstr "更改" -#: sickbeard/webserve.py:1368 +#: sickbeard/webserve.py:1367 msgid "This show is in the process of being downloaded - the info below is incomplete." msgstr "" -#: sickbeard/webserve.py:1371 +#: sickbeard/webserve.py:1370 msgid "The information on this page is in the process of being updated." msgstr "" -#: sickbeard/webserve.py:1374 +#: sickbeard/webserve.py:1373 msgid "The episodes below are currently being refreshed from disk" msgstr "" -#: sickbeard/webserve.py:1377 +#: sickbeard/webserve.py:1376 msgid "Currently downloading subtitles for this show" msgstr "" -#: sickbeard/webserve.py:1380 +#: sickbeard/webserve.py:1379 msgid "This show is queued to be refreshed." msgstr "" -#: sickbeard/webserve.py:1383 +#: sickbeard/webserve.py:1382 msgid "This show is queued and awaiting an update." msgstr "" -#: sickbeard/webserve.py:1386 +#: sickbeard/webserve.py:1385 msgid "This show is queued and awaiting subtitles download." msgstr "" -#: gui/slick/js/core.js:4081 sickbeard/webserve.py:1391 +#: gui/slick/js/core.js:4081 sickbeard/webserve.py:1390 msgid "Resume" msgstr "继续" #: gui/slick/js/core.js:4081 gui/slick/views/viewlogs.mako:12 -#: sickbeard/webserve.py:1393 +#: sickbeard/webserve.py:1392 msgid "Pause" msgstr "暂停" #: gui/slick/views/editShow.mako:345 gui/slick/views/inc_blackwhitelist.mako:40 #: gui/slick/views/inc_blackwhitelist.mako:85 gui/slick/views/manage.mako:58 -#: gui/slick/views/manage_failedDownloads.mako:43 sickbeard/webserve.py:1395 +#: gui/slick/views/manage_failedDownloads.mako:43 sickbeard/webserve.py:1394 msgid "Remove" msgstr "移除" -#: sickbeard/webserve.py:1396 +#: sickbeard/webserve.py:1395 msgid "Re-scan files" msgstr "重新扫描文件" -#: sickbeard/webserve.py:1397 +#: sickbeard/webserve.py:1396 msgid "Force Full Update" msgstr "强制全部更新" -#: sickbeard/webserve.py:1398 +#: sickbeard/webserve.py:1397 msgid "Update show in KODI" msgstr "在KODI中更新节目" -#: sickbeard/webserve.py:1399 +#: sickbeard/webserve.py:1398 msgid "Update show in Emby" msgstr "在Emby中更新节目" -#: sickbeard/webserve.py:1402 +#: sickbeard/webserve.py:1401 msgid "Hide specials" msgstr "" -#: sickbeard/webserve.py:1404 +#: sickbeard/webserve.py:1403 msgid "Show specials" msgstr "" -#: sickbeard/webserve.py:1406 sickbeard/webserve.py:2030 sickbeard/webserve.py:2031 +#: sickbeard/webserve.py:1405 sickbeard/webserve.py:2029 sickbeard/webserve.py:2030 msgid "Preview Rename" msgstr "预览重命名" -#: sickbeard/webserve.py:1409 +#: sickbeard/webserve.py:1408 msgid "Download Subtitles" msgstr "下载字幕" -#: sickbeard/webserve.py:1498 +#: sickbeard/webserve.py:1497 msgid "No scene exceptions" msgstr "" -#: sickbeard/webserve.py:1516 sickbeard/webserve.py:1764 sickbeard/webserve.py:1785 +#: sickbeard/webserve.py:1515 sickbeard/webserve.py:1763 sickbeard/webserve.py:1784 msgid "Invalid show ID" msgstr "无效的节目ID" -#: sickbeard/webserve.py:1525 sickbeard/webserve.py:1769 sickbeard/webserve.py:1790 +#: sickbeard/webserve.py:1524 sickbeard/webserve.py:1768 sickbeard/webserve.py:1789 msgid "Unable to find the specified show" msgstr "无法找到指定的节目" -#: sickbeard/webserve.py:1550 +#: sickbeard/webserve.py:1549 msgid "Unable to retreive Fansub Groups from AniDB." msgstr "" -#: sickbeard/webserve.py:1559 sickbeard/webserve.py:1561 +#: sickbeard/webserve.py:1558 sickbeard/webserve.py:1560 msgid "Edit Show" msgstr "编辑节目" -#: sickbeard/webserve.py:1637 sickbeard/webserve.py:1671 +#: sickbeard/webserve.py:1636 sickbeard/webserve.py:1670 msgid "Unable to refresh this show: {error}" msgstr "无法刷新此显节目︰ {error}" -#: sickbeard/webserve.py:1663 +#: sickbeard/webserve.py:1662 msgid "New location <tt>{location}</tt> does not exist" msgstr "" -#: sickbeard/webserve.py:1688 +#: sickbeard/webserve.py:1687 msgid "Unable to update show: {error}" msgstr "" -#: sickbeard/webserve.py:1695 +#: sickbeard/webserve.py:1694 msgid "Unable to force an update on scene exceptions of the show." msgstr "" -#: sickbeard/webserve.py:1702 +#: sickbeard/webserve.py:1701 msgid "Unable to force an update on scene numbering of the show." msgstr "" -#: sickbeard/webserve.py:1708 sickbeard/webserve.py:3540 +#: sickbeard/webserve.py:1707 sickbeard/webserve.py:3539 msgid "{num_errors:d} error{plural} while saving changes:" msgstr "" -#: sickbeard/webserve.py:1719 +#: sickbeard/webserve.py:1718 msgid "{show_name} has been {paused_resumed}" msgstr "" -#: sickbeard/webserve.py:1719 +#: sickbeard/webserve.py:1718 msgid "resumed" msgstr "" -#: sickbeard/webserve.py:1719 +#: sickbeard/webserve.py:1718 msgid "paused" msgstr "" -#: sickbeard/webserve.py:1731 +#: sickbeard/webserve.py:1730 msgid "{show_name} has been {deleted_trashed} {was_deleted}" msgstr "" -#: sickbeard/webserve.py:1733 +#: sickbeard/webserve.py:1732 msgid "deleted" msgstr "" -#: sickbeard/webserve.py:1733 +#: sickbeard/webserve.py:1732 msgid "trashed" msgstr "" -#: sickbeard/webserve.py:1734 +#: sickbeard/webserve.py:1733 msgid "(media untouched)" msgstr "" -#: sickbeard/webserve.py:1734 +#: sickbeard/webserve.py:1733 msgid "(with all related media)" msgstr "" -#: sickbeard/webserve.py:1755 +#: sickbeard/webserve.py:1754 msgid "Unable to refresh this show." msgstr "" -#: sickbeard/webserve.py:1775 +#: sickbeard/webserve.py:1774 msgid "Unable to update this show." msgstr "" -#: sickbeard/webserve.py:1814 +#: sickbeard/webserve.py:1813 msgid "Library update command sent to KODI host(s)): {kodi_hosts}" msgstr "" -#: sickbeard/webserve.py:1816 +#: sickbeard/webserve.py:1815 msgid "Unable to contact one or more KODI host(s)): {kodi_hosts}" msgstr "" -#: sickbeard/webserve.py:1825 +#: sickbeard/webserve.py:1824 msgid "Library update command sent to Plex Media Server host: {plex_server}" msgstr "" -#: sickbeard/webserve.py:1828 +#: sickbeard/webserve.py:1827 msgid "Unable to contact Plex Media Server host: {plex_server}" msgstr "" -#: sickbeard/webserve.py:1840 +#: sickbeard/webserve.py:1839 msgid "Library update command sent to Emby host: {emby_host}" msgstr "" -#: sickbeard/webserve.py:1842 +#: sickbeard/webserve.py:1841 msgid "Unable to contact Emby host: {emby_host}" msgstr "" -#: sickbeard/webserve.py:1852 sickbeard/webserve.py:2036 +#: sickbeard/webserve.py:1851 sickbeard/webserve.py:2035 msgid "You must specify a show and at least one episode" msgstr "" -#: sickbeard/webserve.py:1861 +#: sickbeard/webserve.py:1860 msgid "Invalid status" msgstr "" -#: sickbeard/webserve.py:1954 +#: sickbeard/webserve.py:1953 msgid "Backlog was automatically started for the following seasons of <b>{show_name}</b>" msgstr "" #: gui/slick/views/displayShow.mako:74 gui/slick/views/displayShow.mako:79 -#: gui/slick/views/displayShow.mako:404 sickbeard/webserve.py:1961 -#: sickbeard/webserve.py:1980 +#: gui/slick/views/displayShow.mako:404 sickbeard/webserve.py:1960 +#: sickbeard/webserve.py:1979 msgid "Season" msgstr "" -#: sickbeard/webserve.py:1968 +#: sickbeard/webserve.py:1967 msgid "Backlog started" msgstr "" -#: sickbeard/webserve.py:1973 +#: sickbeard/webserve.py:1972 msgid "Retrying Search was automatically started for the following season of <b>{show_name}</b>" msgstr "" -#: sickbeard/webserve.py:1987 +#: sickbeard/webserve.py:1986 msgid "Retry Search started" msgstr "" -#: sickbeard/webserve.py:1997 +#: sickbeard/webserve.py:1996 msgid "You must specify a show" msgstr "" -#: sickbeard/webserve.py:2007 sickbeard/webserve.py:2045 +#: sickbeard/webserve.py:2006 sickbeard/webserve.py:2044 msgid "Can't rename episodes when the show dir is missing." msgstr "" -#: sickbeard/webserve.py:2212 sickbeard/webserve.py:2233 +#: sickbeard/webserve.py:2211 sickbeard/webserve.py:2232 msgid "New subtitles downloaded: {new_subtitle_languages}" msgstr "" -#: sickbeard/webserve.py:2215 sickbeard/webserve.py:2236 +#: sickbeard/webserve.py:2214 sickbeard/webserve.py:2235 msgid "No subtitles downloaded" msgstr "" #: gui/slick/views/config_general.mako:80 gui/slick/views/layouts/main.mako:222 -#: sickbeard/webserve.py:2363 +#: sickbeard/webserve.py:2362 msgid "IRC" msgstr "" -#: sickbeard/webserve.py:2376 +#: sickbeard/webserve.py:2375 msgid "Could not load news from the repo. [Click here for news.md])({news_url})" msgstr "" -#: sickbeard/webserve.py:2383 sickbeard/webserve.py:2401 +#: sickbeard/webserve.py:2382 sickbeard/webserve.py:2400 msgid "The was a problem connecting to github, please refresh and try again" msgstr "" -#: sickbeard/webserve.py:2398 +#: sickbeard/webserve.py:2397 msgid "Could not load changes from the repo. [Click here for CHANGES.md]({changes_url})" msgstr "" -#: gui/slick/views/layouts/main.mako:223 sickbeard/webserve.py:2403 +#: gui/slick/views/layouts/main.mako:223 sickbeard/webserve.py:2402 msgid "Changelog" msgstr "" -#: gui/slick/views/layouts/main.mako:190 sickbeard/webserve.py:2413 -#: sickbeard/webserve.py:3855 sickbeard/webserve.py:4341 +#: gui/slick/views/layouts/main.mako:190 sickbeard/webserve.py:2412 +#: sickbeard/webserve.py:3826 sickbeard/webserve.py:4312 msgid "Post Processing" msgstr "" -#: gui/slick/views/layouts/main.mako:128 sickbeard/webserve.py:2445 +#: gui/slick/views/layouts/main.mako:128 sickbeard/webserve.py:2444 msgid "Add Shows" msgstr "" -#: sickbeard/webserve.py:2510 +#: sickbeard/webserve.py:2509 msgid "No folders selected." msgstr "" -#: sickbeard/webserve.py:2632 +#: sickbeard/webserve.py:2631 msgid "New Show" msgstr "" -#: sickbeard/webserve.py:2647 +#: sickbeard/webserve.py:2646 msgid "Trending Shows" msgstr "" -#: sickbeard/webserve.py:2649 sickbeard/webserve.py:2772 +#: sickbeard/webserve.py:2648 sickbeard/webserve.py:2771 msgid "Popular Shows" msgstr "" -#: sickbeard/webserve.py:2651 sickbeard/webserve.py:2665 +#: sickbeard/webserve.py:2650 sickbeard/webserve.py:2664 msgid "Most Anticipated Shows" msgstr "" -#: sickbeard/webserve.py:2653 +#: sickbeard/webserve.py:2652 msgid "Most Collected Shows" msgstr "" -#: sickbeard/webserve.py:2655 +#: sickbeard/webserve.py:2654 msgid "Most Watched Shows" msgstr "" -#: sickbeard/webserve.py:2657 +#: sickbeard/webserve.py:2656 msgid "Most Played Shows" msgstr "" -#: sickbeard/webserve.py:2659 +#: sickbeard/webserve.py:2658 msgid "Recommended Shows" msgstr "" -#: gui/slick/views/addShows_trendingShows.mako:60 sickbeard/webserve.py:2661 +#: gui/slick/views/addShows_trendingShows.mako:60 sickbeard/webserve.py:2660 msgid "New Shows" msgstr "" -#: gui/slick/views/addShows_trendingShows.mako:61 sickbeard/webserve.py:2663 +#: gui/slick/views/addShows_trendingShows.mako:61 sickbeard/webserve.py:2662 msgid "Season Premieres" msgstr "" -#: sickbeard/webserve.py:2792 sickbeard/webserve.py:2793 +#: sickbeard/webserve.py:2791 sickbeard/webserve.py:2792 msgid "Existing Show" msgstr "" -#: sickbeard/webserve.py:2871 +#: sickbeard/webserve.py:2870 msgid "No root directories setup, please go back and add one." msgstr "" -#: sickbeard/webserve.py:2883 sickbeard/webserve.py:3002 +#: sickbeard/webserve.py:2882 sickbeard/webserve.py:3001 msgid "Show added" msgstr "" -#: sickbeard/webserve.py:2883 +#: sickbeard/webserve.py:2882 msgid "Adding the specified show {show_name}" msgstr "" -#: sickbeard/webserve.py:2924 +#: sickbeard/webserve.py:2923 msgid "Missing params, no Indexer ID or folder: {show_to_add} and {root_dir}/{show_path}" msgstr "" -#: sickbeard/webserve.py:2933 +#: sickbeard/webserve.py:2932 msgid "Unknown error. Unable to add show due to problem with show selection." msgstr "" -#: sickbeard/webserve.py:2957 sickbeard/webserve.py:2967 +#: sickbeard/webserve.py:2956 sickbeard/webserve.py:2966 msgid "Unable to add show" msgstr "" -#: sickbeard/webserve.py:2957 +#: sickbeard/webserve.py:2956 msgid "Folder {show_dir} exists already" msgstr "" -#: sickbeard/webserve.py:2968 +#: sickbeard/webserve.py:2967 msgid "Unable to create the folder {show_dir}, can't add the show" msgstr "" -#: sickbeard/webserve.py:3002 +#: sickbeard/webserve.py:3001 msgid "Adding the specified show into {show_dir}" msgstr "" -#: sickbeard/webserve.py:3078 +#: sickbeard/webserve.py:3077 msgid "Shows Added" msgstr "" -#: sickbeard/webserve.py:3079 +#: sickbeard/webserve.py:3078 msgid "Automatically added {num_shows} from their existing metadata files" msgstr "" -#: gui/slick/views/layouts/main.mako:153 sickbeard/webserve.py:3096 +#: gui/slick/views/layouts/main.mako:153 sickbeard/webserve.py:3095 msgid "Mass Update" msgstr "" -#: sickbeard/webserve.py:3134 sickbeard/webserve.py:3161 sickbeard/webserve.py:3237 -#: sickbeard/webserve.py:3238 +#: sickbeard/webserve.py:3133 sickbeard/webserve.py:3160 sickbeard/webserve.py:3236 +#: sickbeard/webserve.py:3237 msgid "Episode Overview" msgstr "" -#: sickbeard/webserve.py:3270 +#: sickbeard/webserve.py:3269 msgid "Missing Subtitles" msgstr "" -#: gui/slick/views/layouts/main.mako:154 sickbeard/webserve.py:3356 -#: sickbeard/webserve.py:3357 +#: gui/slick/views/layouts/main.mako:154 sickbeard/webserve.py:3355 +#: sickbeard/webserve.py:3356 msgid "Backlog Overview" msgstr "" -#: sickbeard/webserve.py:3481 +#: sickbeard/webserve.py:3480 msgid "Mass Edit" msgstr "" -#: sickbeard/webserve.py:3586 +#: sickbeard/webserve.py:3585 msgid "Unable to update show: {excption_format}" msgstr "" -#: sickbeard/webserve.py:3594 +#: sickbeard/webserve.py:3593 msgid "Unable to refresh show {show_name}: {excption_format}" msgstr "" -#: sickbeard/webserve.py:3605 +#: sickbeard/webserve.py:3604 msgid "Errors encountered" msgstr "" -#: gui/slick/views/config_general.mako:261 sickbeard/webserve.py:3611 +#: gui/slick/views/config_general.mako:261 sickbeard/webserve.py:3610 msgid "Updates" msgstr "" -#: sickbeard/webserve.py:3616 +#: sickbeard/webserve.py:3615 msgid "Refreshes" msgstr "" -#: sickbeard/webserve.py:3621 +#: sickbeard/webserve.py:3620 msgid "Renames" msgstr "" #: gui/slick/views/displayShow.mako:260 gui/slick/views/displayShow.mako:435 #: gui/slick/views/editShow.mako:119 gui/slick/views/inc_addShowOptions.mako:20 -#: gui/slick/views/manage_massEdit.mako:262 sickbeard/webserve.py:3626 -#: sickbeard/webserve.py:5244 +#: gui/slick/views/manage_massEdit.mako:262 sickbeard/webserve.py:3625 +#: sickbeard/webserve.py:5215 msgid "Subtitles" msgstr "" -#: sickbeard/webserve.py:3631 +#: sickbeard/webserve.py:3630 msgid "The following actions were queued" msgstr "" -#: sickbeard/webserve.py:3651 -msgid "For best results please set the Download Station alias as" -msgstr "" - -#: sickbeard/webserve.py:3652 -msgid "You can check this setting in the Synology DSM" -msgstr "" - -#: sickbeard/webserve.py:3652 sickbeard/webserve.py:3654 -msgid "Control Panel" -msgstr "" - -#: sickbeard/webserve.py:3652 -msgid "Application Portal" -msgstr "" - -#: sickbeard/webserve.py:3653 -msgid "Make sure you allow DSM to be embedded with iFrames too in" -msgstr "" - -#: sickbeard/webserve.py:3654 -msgid "DSM Settings" -msgstr "" - -#: sickbeard/webserve.py:3654 -msgid "Security" -msgstr "" - -#: gui/slick/views/layouts/main.mako:167 sickbeard/webserve.py:3662 -msgid "Manage Torrents" -msgstr "" - -#: gui/slick/views/layouts/main.mako:170 sickbeard/webserve.py:3683 +#: gui/slick/views/layouts/main.mako:170 sickbeard/webserve.py:3654 msgid "Failed Downloads" msgstr "" -#: gui/slick/views/layouts/main.mako:155 sickbeard/webserve.py:3701 +#: gui/slick/views/layouts/main.mako:155 sickbeard/webserve.py:3672 msgid "Manage Searches" msgstr "" -#: sickbeard/webserve.py:3709 +#: sickbeard/webserve.py:3680 msgid "Backlog search started" msgstr "" -#: sickbeard/webserve.py:3719 +#: sickbeard/webserve.py:3690 msgid "Daily search started" msgstr "" -#: sickbeard/webserve.py:3728 +#: sickbeard/webserve.py:3699 msgid "Find propers search started" msgstr "" -#: sickbeard/webserve.py:3737 +#: sickbeard/webserve.py:3708 msgid "Subtitle search started" msgstr "" -#: sickbeard/webserve.py:3801 +#: sickbeard/webserve.py:3772 msgid "Remove Selected" msgstr "" -#: sickbeard/webserve.py:3802 +#: sickbeard/webserve.py:3773 msgid "Clear History" msgstr "" -#: sickbeard/webserve.py:3803 +#: sickbeard/webserve.py:3774 msgid "Trim History" msgstr "" -#: sickbeard/webserve.py:3823 +#: sickbeard/webserve.py:3794 msgid "Selected history entries removed" msgstr "" -#: sickbeard/webserve.py:3830 +#: sickbeard/webserve.py:3801 msgid "History cleared" msgstr "" -#: sickbeard/webserve.py:3837 +#: sickbeard/webserve.py:3808 msgid "Removed history entries older than 30 days" msgstr "" -#: gui/slick/views/layouts/main.mako:185 sickbeard/webserve.py:3850 +#: gui/slick/views/layouts/main.mako:185 sickbeard/webserve.py:3821 msgid "General" msgstr "" -#: sickbeard/webserve.py:3851 sickbeard/webserve.py:4143 +#: sickbeard/webserve.py:3822 sickbeard/webserve.py:4114 msgid "Backup/Restore" msgstr "" -#: gui/slick/views/layouts/main.mako:187 sickbeard/webserve.py:3852 -#: sickbeard/webserve.py:4206 +#: gui/slick/views/layouts/main.mako:187 sickbeard/webserve.py:3823 +#: sickbeard/webserve.py:4177 msgid "Search Settings" msgstr "" -#: gui/slick/views/layouts/main.mako:188 sickbeard/webserve.py:3853 -#: sickbeard/webserve.py:4518 +#: gui/slick/views/layouts/main.mako:188 sickbeard/webserve.py:3824 +#: sickbeard/webserve.py:4489 msgid "Search Providers" msgstr "" -#: gui/slick/views/layouts/main.mako:189 sickbeard/webserve.py:3854 +#: gui/slick/views/layouts/main.mako:189 sickbeard/webserve.py:3825 msgid "Subtitles Settings" msgstr "" -#: gui/slick/views/layouts/main.mako:191 sickbeard/webserve.py:3856 -#: sickbeard/webserve.py:4964 +#: gui/slick/views/layouts/main.mako:191 sickbeard/webserve.py:3827 +#: sickbeard/webserve.py:4935 msgid "Notifications" msgstr "" @@ -1240,142 +1237,142 @@ msgstr "" #: gui/slick/views/home.mako:35 gui/slick/views/inc_addShowOptions.mako:79 #: gui/slick/views/inc_home_showList.mako:179 gui/slick/views/layouts/main.mako:192 #: gui/slick/views/manage.mako:44 gui/slick/views/manage_massEdit.mako:202 -#: sickbeard/webserve.py:3857 sickbeard/webserve.py:5309 +#: sickbeard/webserve.py:3828 sickbeard/webserve.py:5280 msgid "Anime" msgstr "" -#: sickbeard/webserve.py:3895 sickbeard/webserve.py:3896 +#: sickbeard/webserve.py:3866 sickbeard/webserve.py:3867 msgid "SickRage Configuration" msgstr "" -#: sickbeard/webserve.py:3910 +#: sickbeard/webserve.py:3881 msgid "Config - Shares" msgstr "" -#: sickbeard/webserve.py:3910 +#: sickbeard/webserve.py:3881 msgid "Windows Shares Configuration" msgstr "" -#: sickbeard/webserve.py:3937 +#: sickbeard/webserve.py:3908 msgid "Saved Shares" msgstr "" -#: sickbeard/webserve.py:3937 +#: sickbeard/webserve.py:3908 msgid "Your Windows share settings have been saved" msgstr "" -#: sickbeard/webserve.py:3948 +#: sickbeard/webserve.py:3919 msgid "Config - General" msgstr "" -#: sickbeard/webserve.py:3948 +#: sickbeard/webserve.py:3919 msgid "General Configuration" msgstr "" -#: sickbeard/webserve.py:3988 +#: sickbeard/webserve.py:3959 msgid "Saved Defaults" msgstr "" -#: sickbeard/webserve.py:3988 +#: sickbeard/webserve.py:3959 msgid "Your \"add show\" defaults have been set to your current selections." msgstr "" -#: sickbeard/webserve.py:4095 +#: sickbeard/webserve.py:4066 msgid "Unable to create directory {directory}, log directory not changed." msgstr "" -#: sickbeard/webserve.py:4103 +#: sickbeard/webserve.py:4074 msgid "Unable to create directory {directory}, https cert directory not changed." msgstr "" -#: sickbeard/webserve.py:4107 +#: sickbeard/webserve.py:4078 msgid "Unable to create directory {directory}, https key directory not changed." msgstr "" -#: sickbeard/webserve.py:4126 sickbeard/webserve.py:4324 sickbeard/webserve.py:4456 -#: sickbeard/webserve.py:5227 +#: sickbeard/webserve.py:4097 sickbeard/webserve.py:4295 sickbeard/webserve.py:4427 +#: sickbeard/webserve.py:5198 msgid "Error(s) Saving Configuration" msgstr "" -#: sickbeard/webserve.py:4129 sickbeard/webserve.py:4327 sickbeard/webserve.py:4458 -#: sickbeard/webserve.py:4950 sickbeard/webserve.py:5230 sickbeard/webserve.py:5294 -#: sickbeard/webserve.py:5323 +#: sickbeard/webserve.py:4100 sickbeard/webserve.py:4298 sickbeard/webserve.py:4429 +#: sickbeard/webserve.py:4921 sickbeard/webserve.py:5201 sickbeard/webserve.py:5265 +#: sickbeard/webserve.py:5294 msgid "Configuration Saved" msgstr "" -#: sickbeard/webserve.py:4142 +#: sickbeard/webserve.py:4113 msgid "Config - Backup/Restore" msgstr "" -#: sickbeard/webserve.py:4205 +#: sickbeard/webserve.py:4176 msgid "Config - Episode Search" msgstr "" -#: sickbeard/webserve.py:4340 +#: sickbeard/webserve.py:4311 msgid "Config - Post Processing" msgstr "" -#: sickbeard/webserve.py:4380 +#: sickbeard/webserve.py:4351 msgid "Unpacking Not Supported, disabling unpack setting" msgstr "" -#: sickbeard/webserve.py:4431 +#: sickbeard/webserve.py:4402 msgid "You tried saving an invalid normal naming config, not saving your naming settings" msgstr "" -#: sickbeard/webserve.py:4439 +#: sickbeard/webserve.py:4410 msgid "You tried saving an invalid anime naming config, not saving your naming settings" msgstr "" -#: sickbeard/webserve.py:4517 +#: sickbeard/webserve.py:4488 msgid "Config - Providers" msgstr "" -#: sickbeard/webserve.py:4547 +#: sickbeard/webserve.py:4518 msgid "No Provider Name specified" msgstr "" -#: sickbeard/webserve.py:4549 +#: sickbeard/webserve.py:4520 msgid "No Provider Url specified" msgstr "" -#: sickbeard/webserve.py:4551 +#: sickbeard/webserve.py:4522 msgid "No Provider Api key specified" msgstr "" -#: sickbeard/webserve.py:4963 +#: sickbeard/webserve.py:4934 msgid "Config - Notifications" msgstr "" -#: sickbeard/webserve.py:5243 +#: sickbeard/webserve.py:5214 msgid "Config - Subtitles" msgstr "" -#: sickbeard/webserve.py:5308 +#: sickbeard/webserve.py:5279 msgid "Config - Anime" msgstr "" -#: sickbeard/webserve.py:5336 +#: sickbeard/webserve.py:5307 msgid "Clear Errors" msgstr "" -#: sickbeard/webserve.py:5342 +#: sickbeard/webserve.py:5313 msgid "Clear Warnings" msgstr "" -#: sickbeard/webserve.py:5348 +#: sickbeard/webserve.py:5319 msgid "Submit Errors" msgstr "" -#: sickbeard/webserve.py:5363 +#: sickbeard/webserve.py:5334 msgid "Logs & Errors" msgstr "" -#: sickbeard/webserve.py:5388 +#: sickbeard/webserve.py:5359 msgid "Log File" msgstr "" -#: sickbeard/webserve.py:5388 +#: sickbeard/webserve.py:5359 msgid "Logs" msgstr "" @@ -1383,30 +1380,166 @@ msgstr "" msgid "This is a test notification from SickRage" msgstr "" -#: gui/slick/js/core.js:481 gui/slick/js/core.js:502 gui/slick/js/core.js:524 -#: gui/slick/js/core.js:548 gui/slick/js/core.js:573 gui/slick/js/core.js:596 -#: gui/slick/js/core.js:625 gui/slick/js/core.js:645 gui/slick/js/core.js:690 -#: gui/slick/js/core.js:769 gui/slick/js/core.js:829 gui/slick/js/core.js:849 -#: gui/slick/js/core.js:879 gui/slick/js/core.js:909 gui/slick/js/core.js:969 -#: gui/slick/js/core.js:1046 gui/slick/js/core.js:1066 gui/slick/js/core.js:1085 +#: gui/slick/js/browser.js:6 +msgid "Choose Directory" +msgstr "" + +#: gui/slick/js/core.js:443 +msgid "Select log file folder location" +msgstr "" + +#: gui/slick/js/core.js:445 +msgid "Select CSS file" +msgstr "" + +#: gui/slick/js/core.js:469 +msgid "Select backup folder to save to" +msgstr "" + +#: gui/slick/js/core.js:470 +msgid "Select backup files to restore" +msgstr "" + +#: gui/slick/js/core.js:479 gui/slick/js/core.js:500 gui/slick/js/core.js:522 +#: gui/slick/js/core.js:546 gui/slick/js/core.js:571 gui/slick/js/core.js:594 +#: gui/slick/js/core.js:623 gui/slick/js/core.js:643 gui/slick/js/core.js:688 +#: gui/slick/js/core.js:767 gui/slick/js/core.js:827 gui/slick/js/core.js:847 +#: gui/slick/js/core.js:877 gui/slick/js/core.js:907 gui/slick/js/core.js:967 +#: gui/slick/js/core.js:1044 gui/slick/js/core.js:1064 gui/slick/js/core.js:1083 msgid "Please fill out the necessary fields above." msgstr "" -#: gui/slick/js/core.js:1328 gui/slick/js/core.js:1378 gui/slick/js/core.js:1427 -#: gui/slick/js/core.js:1493 +#: gui/slick/js/core.js:680 +msgid "<b>Step 1:</b> Confirm Authorization" +msgstr "" + +#: gui/slick/js/core.js:977 +msgid "Check blacklist name; the value needs to be a trakt slug" +msgstr "" + +#: gui/slick/js/core.js:1022 +msgid "You must provide a recipient email address!" +msgstr "" + +#: gui/slick/js/core.js:1107 +msgid "You didn't supply a Pushbullet api key" +msgstr "" + +#: gui/slick/js/core.js:1133 gui/slick/js/core.js:1162 +msgid "Don't forget to save your new pushbullet settings." +msgstr "" + +#: gui/slick/js/core.js:1262 +msgid "Select TV Download Directory" +msgstr "" + +#: gui/slick/js/core.js:1263 +msgid "Select Unpack Directory" +msgstr "" + +#: gui/slick/js/core.js:1326 gui/slick/js/core.js:1376 gui/slick/js/core.js:1425 +#: gui/slick/js/core.js:1491 msgid "This pattern is invalid." msgstr "" -#: gui/slick/js/core.js:1336 gui/slick/js/core.js:1386 gui/slick/js/core.js:1435 -#: gui/slick/js/core.js:1501 +#: gui/slick/js/core.js:1334 gui/slick/js/core.js:1384 gui/slick/js/core.js:1433 +#: gui/slick/js/core.js:1499 msgid "This pattern would be invalid without the folders, using it will force \"Season Folders\" on for all shows." msgstr "" -#: gui/slick/js/core.js:1344 gui/slick/js/core.js:1394 gui/slick/js/core.js:1443 -#: gui/slick/js/core.js:1509 +#: gui/slick/js/core.js:1342 gui/slick/js/core.js:1392 gui/slick/js/core.js:1441 +#: gui/slick/js/core.js:1507 msgid "This pattern is valid." msgstr "" +#: gui/slick/js/core.js:1818 +msgid "Select .nzb black hole/watch location" +msgstr "" + +#: gui/slick/js/core.js:1819 +msgid "Select .torrent black hole/watch location" +msgstr "" + +#: gui/slick/js/core.js:1820 +msgid "Select .torrent download location" +msgstr "" + +#: gui/slick/js/core.js:1900 +msgid "Minimum seeding time is" +msgstr "" + +#: gui/slick/js/core.js:1902 +msgid "URL to your uTorrent client (e.g. http://localhost:8000)" +msgstr "" + +#: gui/slick/js/core.js:1905 +msgid "Stop seeding when inactive for" +msgstr "" + +#: gui/slick/js/core.js:1911 +msgid "URL to your Transmission client (e.g. http://localhost:9091)" +msgstr "" + +#: gui/slick/js/core.js:1921 +msgid "URL to your Deluge client (e.g. http://localhost:8112)" +msgstr "" + +#: gui/slick/js/core.js:1930 +msgid "IP or Hostname of your Deluge Daemon (e.g. scgi://localhost:58846)" +msgstr "" + +#: gui/slick/js/core.js:1937 +msgid "URL to your Synology DS client (e.g. http://localhost:5000)" +msgstr "" + +#: gui/slick/js/core.js:1941 +msgid "URL to your rTorrent client (e.g. scgi://localhost:5000 <br> or https://localhost/rutorrent/plugins/httprpc/action.php)" +msgstr "" + +#: gui/slick/js/core.js:1952 +msgid "URL to your qBittorrent client (e.g. http://localhost:8080)" +msgstr "" + +#: gui/slick/js/core.js:1962 +msgid "URL to your MLDonkey (e.g. http://localhost:4080)" +msgstr "" + +#: gui/slick/js/core.js:1974 +msgid "URL to your putio client (e.g. http://localhost:8080)" +msgstr "" + +#: gui/slick/js/core.js:1975 +msgid "<a herf=\"https://app.put.io/oauth/apps/new\" target=\"_blank\"> Create a new OAuth app for put.io</a>" +msgstr "" + +#: gui/slick/js/core.js:1977 +msgid "Put.io Parent Folder" +msgstr "" + +#: gui/slick/js/core.js:1978 +msgid "Put.io OAuth Token" +msgstr "" + +#: gui/slick/js/core.js:3383 gui/slick/views/displayShow.mako:410 +msgid "Show Episodes" +msgstr "" + +#: gui/slick/js/core.js:3388 gui/slick/views/displayShow.mako:408 +msgid "Hide Episodes" +msgstr "" + +#: gui/slick/js/core.js:3396 +msgid "Select Show Location" +msgstr "" + +#: gui/slick/js/core.js:3460 +msgid "Select Unprocessed Episode Folder" +msgstr "" + +#: gui/slick/js/core.js:3790 +msgid "DELETED" +msgstr "" + #: gui/slick/js/core.js:4082 msgid "Resume updating the log on this page." msgstr "" @@ -1415,6 +1548,26 @@ msgstr "" msgid "Pause updating the log on this page." msgstr "" +#: gui/slick/js/core.js:4323 +msgid "searching {searchingFor}..." +msgstr "" + +#: gui/slick/js/core.js:4334 +msgid "search timed out, try again or try another indexer" +msgstr "" + +#: gui/slick/js/core.js:4503 +msgid "loading folders..." +msgstr "" + +#: gui/slick/js/parsers.js:7 gui/slick/js/parsers.js:8 +#: gui/slick/js/plotTooltip.js:6 gui/slick/js/sceneExceptionsTooltip.js:6 +#: gui/slick/views/inc_home_showList.mako:209 +#: gui/slick/views/inc_home_showList.mako:215 +#: gui/slick/views/inc_home_showList.mako:231 +msgid "Loading..." +msgstr "" + #: gui/slick/views/404.mako:5 msgid "You have reached this page by accident, please check the url." msgstr "" @@ -5711,14 +5864,6 @@ msgstr "" msgid "Select Columns" msgstr "" -#: gui/slick/views/displayShow.mako:408 -msgid "Hide Episodes" -msgstr "" - -#: gui/slick/views/displayShow.mako:410 -msgid "Show Episodes" -msgstr "" - #: gui/slick/views/displayShow.mako:424 msgid "NFO" msgstr "" @@ -6232,12 +6377,6 @@ msgstr "" msgid "loading" msgstr "" -#: gui/slick/views/inc_home_showList.mako:209 -#: gui/slick/views/inc_home_showList.mako:215 -#: gui/slick/views/inc_home_showList.mako:231 -msgid "Loading..." -msgstr "" - #: gui/slick/views/inc_qualityChooser.mako:31 msgid "<p><b><u>Preferred</u></b> qualities will replace those in <b><u>allowed</u></b>, even if they are lower.</p>" msgstr "" @@ -6775,6 +6914,10 @@ msgstr "" msgid "Update Emby" msgstr "" +#: gui/slick/views/layouts/main.mako:167 +msgid "Manage Torrents" +msgstr "" + #: gui/slick/views/layouts/main.mako:173 msgid "Missed Subtitle Management" msgstr "" diff --git a/locale/zh_TW/LC_MESSAGES/messages.json b/locale/zh_TW/LC_MESSAGES/messages.json index ba0e9e89230cd34639b0d0af6c3cec462fbb0dd4..a3e6644d6ee75fbc276c083e49452fa097ed429d 100644 --- a/locale/zh_TW/LC_MESSAGES/messages.json +++ b/locale/zh_TW/LC_MESSAGES/messages.json @@ -1 +1 @@ -{"messages":{"domain":"messages","locale_data":{"messages":{"100":[null,""],"250":[null,""],"500":[null,""],"":{"domain":"messages","plural_forms":"nplurals=1; plural=0;","lang":"zh_TW"},"Drama":[null,""],"Mystery":[null,""],"Science-Fiction":[null,""],"Crime":[null,""],"Action":[null,""],"Comedy":[null,""],"Thriller":[null,""],"Animation":[null,""],"Family":[null,""],"Fantasy":[null,""],"Adventure":[null,""],"Horror":[null,""],"Film-Noir":[null,""],"Sci-Fi":[null,""],"Romance":[null,""],"Sport":[null,""],"War":[null,""],"Biography":[null,""],"History":[null,"紀錄"],"Music":[null,""],"Western":[null,""],"News":[null,"最新消息"],"Sitcom":[null,""],"Reality-TV":[null,""],"Documentary":[null,""],"Game-Show":[null,""],"Musical":[null,""],"Talk-Show":[null,""],"Started Download":[null,"已開始的下載"],"Download Finished":[null,"下載已經完成"],"Subtitle Download Finished":[null,"字幕下載完成"],"SickRage Updated":[null,"SickRage 已更新"],"SickRage Updated To Commit#: ":[null,"SickRage 更新到commit #: "],"SickRage new login":[null,"SickRage 新的登錄"],"New login from IP: {0}. http://geomaplookup.net/?ip={0}":[null,"來自此ip 位址的新登陸 ︰ {0}。HTTP://geomaplookup.net/?ip={0}"],"Repeat":[null,""],"Repeat (Separated)":[null,""],"Extend":[null,""],"Extend (Limited)":[null,""],"Extend (Limited, E-prefixed)":[null,""],"Downloaded":[null,"已下載"],"Snatched":[null,"取得節目檔案資訊,下載中"],"Snatched (Proper)":[null,"取得節目檔案資訊,下載中(proper版)"],"Failed":[null,"失敗"],"Snatched (Best)":[null,"取得節目檔案資訊,下載中(最佳畫質)"],"Archived":[null,"收藏"],"Unknown":[null,"不明"],"Unaired":[null,"未公播"],"Skipped":[null,"跳過此項"],"Wanted":[null,"待抓取"],"Ignored":[null,"忽略"],"Subtitled":[null,"字幕"],"<No Filter>":[null,""],"Daily Searcher":[null,""],"Backlog":[null,""],"Show Updater":[null,""],"Check Version":[null,""],"Show Queue":[null,""],"Search Queue (All)":[null,""],"Search Queue (Daily Searcher)":[null,""],"Search Queue (Backlog)":[null,""],"Search Queue (Manual)":[null,""],"Search Queue (Retry/Failed)":[null,""],"Search Queue (RSS)":[null,""],"Find Propers":[null,""],"Postprocessor":[null,""],"Find Subtitles":[null,""],"Trakt Checker":[null,""],"Event":[null,""],"Error":[null,""],"Tornado":[null,""],"Thread":[null,""],"Main":[null,""],"Loading":[null,""],"New update found for SickRage, starting auto-updater":[null,""],"Update was successful":[null,""],"Update failed!":[null,""],"Backup":[null,""],"Config backup in progress...":[null,""],"Config backup successful, updating...":[null,""],"Config backup failed, aborting update":[null,""],"No update needed":[null,""],"Mako Error":[null,""],"Oops":[null,"哎呀"],"Wrong API key used":[null,""],"Login":[null,"登入"],"API Key not generated":[null,"API密鑰未生成"],"API Builder":[null,"API 產生器"],"Schedule":[null,"任務安排"],"Test 1":[null,""],"This is test number 1":[null,""],"Test 2":[null,""],"This is test number 2":[null,""],"You're using the {branch} branch. Please use 'master' unless specifically asked":[null,""],"Invalid show parameters":[null,""],"Invalid parameters":[null,""],"Episode couldn't be retrieved":[null,""],"Home":[null,"首頁"],"Show List":[null,"節目清單"],"Error: Unsupported Request. Send jsonp request with 'callback' variable in the query string.":[null,""],"Success. Connected and authenticated":[null,""],"Authentication failed. SABnzbd expects":[null,""],"as authentication method":[null,""],"Unable to connect to host":[null,""],"SMS sent successfully":[null,""],"Problem sending SMS: {message}":[null,""],"Telegram notification succeeded. Check your Telegram clients to make sure it worked":[null,""],"Error sending Telegram notification: {message}":[null,""],"join notification succeeded. Check your join clients to make sure it worked":[null,""],"Error sending join notification: {message}":[null,""]," with password":[null,""],"Registered and Tested growl successfully {growl_host}":[null,""],"Registration and Testing of growl failed {growl_host}":[null,""],"Test prowl notice sent successfully":[null,""],"Test prowl notice failed":[null,""],"Boxcar2 notification succeeded. Check your Boxcar2 clients to make sure it worked":[null,""],"Error sending Boxcar2 notification":[null,""],"Pushover notification succeeded. Check your Pushover clients to make sure it worked":[null,""],"Error sending Pushover notification":[null,""],"Key verification successful":[null,""],"Unable to verify key":[null,""],"Tweet successful, check your twitter to make sure it worked":[null,""],"Error sending tweet":[null,""],"Please enter a valid account sid":[null,""],"Please enter a valid auth token":[null,""],"Please enter a valid phone sid":[null,""],"Please format the phone number as \"+1-###-###-####\"":[null,""],"Authorization successful and number ownership verified":[null,""],"Error sending sms":[null,""],"Slack message successful":[null,""],"Slack message failed":[null,""],"Discord message successful":[null,""],"Discord message failed":[null,""],"Test KODI notice sent successfully to {kodi_host}":[null,""],"Test KODI notice failed to {kodi_host}":[null,""],"Successful test notice sent to Plex Home Theater ... {plex_clients}":[null,""],"Test failed for Plex Home Theater ... {plex_clients}":[null,""],"Tested Plex Home Theater(s)":[null,""],"Successful test of Plex Media Server(s) ... {plex_servers}":[null,""],"Test failed, No Plex Media Server host specified":[null,""],"Test failed for Plex Media Server(s) ... {plex_servers}":[null,""],"Tested Plex Media Server host(s)":[null,""],"Tried sending desktop notification via libnotify":[null,""],"Test notice sent successfully to {emby_host}":[null,""],"Test notice failed to {emby_host}":[null,""],"Successfully started the scan update":[null,""],"Test failed to start the scan update":[null,""],"Test notice sent successfully to {nmj2_host}":[null,""],"Test notice failed to {nmj2_host}":[null,""],"Trakt Authorized":[null,""],"Trakt Not Authorized!":[null,""],"Test email sent successfully! Check inbox.":[null,""],"ERROR: {last_error}":[null,""],"Test NMA notice sent successfully":[null,""],"Test NMA notice failed":[null,""],"Pushalot notification succeeded. Check your Pushalot clients to make sure it worked":[null,""],"Error sending Pushalot notification":[null,""],"Pushbullet notification succeeded. Check your device to make sure it worked":[null,""],"Error sending Pushbullet notification":[null,""],"Status":[null,"狀態"],"Restarting SickRage":[null,"重新啟動 SickRage"],"Update Failed":[null,""],"Update wasn't successful, not restarting. Check your log for more information.":[null,""],"Checking out branch":[null,""],"Already on branch":[null,""],"Invalid show ID: {show}":[null,""],"Show not in show list":[null,""],"Edit":[null,"編輯"],"This show is in the process of being downloaded - the info below is incomplete.":[null,""],"The information on this page is in the process of being updated.":[null,""],"The episodes below are currently being refreshed from disk":[null,""],"Currently downloading subtitles for this show":[null,""],"This show is queued to be refreshed.":[null,""],"This show is queued and awaiting an update.":[null,""],"This show is queued and awaiting subtitles download.":[null,""],"Resume":[null,"繼續"],"Pause":[null,"暫停"],"Remove":[null,"移除"],"Re-scan files":[null,"重新掃描檔案"],"Force Full Update":[null,"強制完整更新"],"Update show in KODI":[null,""],"Update show in Emby":[null,""],"Hide specials":[null,""],"Show specials":[null,""],"Preview Rename":[null,"預覽重命名"],"Download Subtitles":[null,"下載字幕"],"No scene exceptions":[null,""],"Invalid show ID":[null,""],"Unable to find the specified show":[null,""],"Unable to retreive Fansub Groups from AniDB.":[null,""],"Edit Show":[null,"編輯節目"],"Unable to refresh this show: {error}":[null,""],"New location <tt>{location}</tt> does not exist":[null,""],"Unable to update show: {error}":[null,""],"Unable to force an update on scene exceptions of the show.":[null,""],"Unable to force an update on scene numbering of the show.":[null,""],"{num_errors:d} error{plural} while saving changes:":[null,""],"{show_name} has been {paused_resumed}":[null,""],"resumed":[null,""],"paused":[null,""],"{show_name} has been {deleted_trashed} {was_deleted}":[null,""],"deleted":[null,""],"trashed":[null,""],"(media untouched)":[null,""],"(with all related media)":[null,""],"Unable to refresh this show.":[null,""],"Unable to update this show.":[null,""],"Library update command sent to KODI host(s)): {kodi_hosts}":[null,""],"Unable to contact one or more KODI host(s)): {kodi_hosts}":[null,""],"Library update command sent to Plex Media Server host: {plex_server}":[null,""],"Unable to contact Plex Media Server host: {plex_server}":[null,""],"Library update command sent to Emby host: {emby_host}":[null,""],"Unable to contact Emby host: {emby_host}":[null,""],"You must specify a show and at least one episode":[null,""],"Invalid status":[null,""],"Backlog was automatically started for the following seasons of <b>{show_name}</b>":[null,""],"Season":[null,""],"Backlog started":[null,""],"Retrying Search was automatically started for the following season of <b>{show_name}</b>":[null,""],"Retry Search started":[null,""],"You must specify a show":[null,""],"Can't rename episodes when the show dir is missing.":[null,""],"New subtitles downloaded: {new_subtitle_languages}":[null,""],"No subtitles downloaded":[null,""],"IRC":[null,"IRC"],"Could not load news from the repo. [Click here for news.md])({news_url})":[null,""],"The was a problem connecting to github, please refresh and try again":[null,""],"Could not load changes from the repo. [Click here for CHANGES.md]({changes_url})":[null,""],"Changelog":[null,"更新日誌"],"Post Processing":[null,"檔案後置處理"],"Add Shows":[null,"加入節目"],"No folders selected.":[null,""],"New Show":[null,"新節目"],"Trending Shows":[null,""],"Popular Shows":[null,"熱門節目"],"Most Anticipated Shows":[null,""],"Most Collected Shows":[null,""],"Most Watched Shows":[null,""],"Most Played Shows":[null,""],"Recommended Shows":[null,""],"New Shows":[null,"新節目"],"Season Premieres":[null,"當季首播"],"Existing Show":[null,"已有的節目資料"],"No root directories setup, please go back and add one.":[null,""],"Show added":[null,""],"Adding the specified show {show_name}":[null,""],"Missing params, no Indexer ID or folder: {show_to_add} and {root_dir}/{show_path}":[null,""],"Unknown error. Unable to add show due to problem with show selection.":[null,""],"Unable to add show":[null,""],"Folder {show_dir} exists already":[null,""],"Unable to create the folder {show_dir}, can't add the show":[null,""],"Adding the specified show into {show_dir}":[null,""],"Shows Added":[null,""],"Automatically added {num_shows} from their existing metadata files":[null,""],"Mass Update":[null,"批量更新"],"Episode Overview":[null,"節目總覽"],"Missing Subtitles":[null,"缺少字幕"],"Backlog Overview":[null,"擷取搜尋總覽"],"Mass Edit":[null,"批量編輯"],"Unable to update show: {excption_format}":[null,""],"Unable to refresh show {show_name}: {excption_format}":[null,""],"Errors encountered":[null,""],"Updates":[null,""],"Refreshes":[null,""],"Renames":[null,""],"Subtitles":[null,"字幕"],"The following actions were queued":[null,""],"For best results please set the Download Station alias as":[null,""],"You can check this setting in the Synology DSM":[null,""],"Control Panel":[null,""],"Application Portal":[null,""],"Make sure you allow DSM to be embedded with iFrames too in":[null,""],"DSM Settings":[null,""],"Security":[null,""],"Manage Torrents":[null,"Torrent管理"],"Failed Downloads":[null,"失敗的下載"],"Manage Searches":[null,"搜尋進度管理"],"Backlog search started":[null,""],"Daily search started":[null,""],"Find propers search started":[null,""],"Subtitle search started":[null,""],"Remove Selected":[null,""],"Clear History":[null,"清除記錄"],"Trim History":[null,""],"Selected history entries removed":[null,""],"History cleared":[null,""],"Removed history entries older than 30 days":[null,""],"General":[null,"一般設定"],"Backup/Restore":[null,"備份/還原"],"Search Settings":[null,"搜尋設定"],"Search Providers":[null,"搜尋提供者"],"Subtitles Settings":[null,"字幕設定"],"Notifications":[null,"訊息通知"],"Anime":[null,"動漫"],"SickRage Configuration":[null,"SickRage 設定"],"Config - Shares":[null,""],"Windows Shares Configuration":[null,""],"Saved Shares":[null,""],"Your Windows share settings have been saved":[null,""],"Config - General":[null,"設定 - 一般"],"General Configuration":[null,"一般設定"],"Saved Defaults":[null,""],"Your \"add show\" defaults have been set to your current selections.":[null,""],"Unable to create directory {directory}, log directory not changed.":[null,""],"Unable to create directory {directory}, https cert directory not changed.":[null,""],"Unable to create directory {directory}, https key directory not changed.":[null,""],"Error(s) Saving Configuration":[null,""],"Configuration Saved":[null,""],"Config - Backup/Restore":[null,"設定 - 備份/還原"],"Config - Episode Search":[null,"設定 - 影集搜尋"],"Config - Post Processing":[null,"設定 - 抓取後檔案處理"],"Unpacking Not Supported, disabling unpack setting":[null,""],"You tried saving an invalid normal naming config, not saving your naming settings":[null,""],"You tried saving an invalid anime naming config, not saving your naming settings":[null,""],"Config - Providers":[null,"設定 - 影集資訊提供者"],"No Provider Name specified":[null,""],"No Provider Url specified":[null,""],"No Provider Api key specified":[null,""],"Config - Notifications":[null,"設定 - 訊息通知"],"Config - Subtitles":[null,"設定 - 字幕"],"Config - Anime":[null,"設定 - 動漫專用設定"],"Clear Errors":[null,""],"Clear Warnings":[null,""],"Submit Errors":[null,"提交錯誤"],"Logs & Errors":[null,""],"Log File":[null,"記錄檔"],"Logs":[null,"紀錄檔"],"This is a test notification from SickRage":[null,""],"Please fill out the necessary fields above.":[null,""],"This pattern is invalid.":[null,""],"This pattern would be invalid without the folders, using it will force \"Season Folders\" on for all shows.":[null,""],"This pattern is valid.":[null,""],"Resume updating the log on this page.":[null,""],"Pause updating the log on this page.":[null,""],"You have reached this page by accident, please check the url.":[null,"一些意料之外的狀況帶你到這裡了(驚),請檢查網址"],"A mako error has occured.<br>\n If this happened during an update a simple page refresh may be the solution.<br>\n Mako errors that happen during updates may be a one time error if there were significant ui changes.":[null,""],"Show/Hide Error":[null,""],"Add New Show":[null,"加入新節目"],"For shows that you haven't downloaded yet, this option finds a show on theTVDB.com, creates a directory for it's episodes, and adds it to SickRage.":[null,"若是想加入一個你沒下載過的節目,使用這個選項將幫你從TVDB找到該節目的訊息,建立節目專用的影集資料夾,然後加入SickRage節目清單內"],"Add From Trakt Lists":[null,"從Trakt推薦清單加入"],"For shows that you haven't downloaded yet, this option lets you choose from a show from one of the Trakt lists to add to SickRage.":[null,"若是想加入一個你沒下載過的節目,使用這個選項將讓你從Trakt推薦清單中挑選節目,建立節目專用的影集資料夾,然後加入SickRage節目清單內"],"Add From IMDB's Popular Shows":[null,"從IMDB的熱播節目清單加入"],"View IMDB's list of the most popular shows. This feature uses IMDB's MOVIEMeter algorithm to identify popular TV Series.":[null,"此選項會列出IMDB的熱播清單(most popular shows),IMDB的熱播清單是透過MOVIEMeter 演算法產生熱播排名"],"Add Existing Shows":[null,"加入已存節目"],"Use this option to add shows that already have a folder created on your hard drive. SickRage will scan your existing metadata/episodes and add the show accordingly.":[null,"當你已經在儲存空間內存有某個節目時,使用這個選項將可讓SickRage掃描已存節目的資訊,並加入節目清單"],"Add Existing Show":[null,"加入已存節目"],"Manage Directories":[null,"管理資料夾"],"Customize Options":[null,"自訂選項"],"SickRage can add existing shows, using the current options, by using locally stored NFO/XML metadata to eliminate user interaction. If you would rather have SickRage prompt you to customize each show, then use the checkbox below.":[null,""],"Prompt me to set settings for each show":[null,"提示我為各個影集進行設定"],"Displaying folders within these directories which aren't already added to SickRage":[null,"顯示下面核選的資料夾中,尚未加入SickRage節目清單的節目資料夾"],"Submit":[null,""],"Find a show on theTVDB":[null,"從TBDV搜尋節目資訊"],"Show retrieved from existing metadata":[null,""],"All Indexers":[null,"所有資料索引來源"],"Search":[null,""],"This will only affect the language of the retrieved metadata file contents and episode filenames.":[null,"語言選項只會影響儲存的節目資訊語言以及節目各集名稱所使用的語言"],"This <b>DOES NOT</b> allow SickRage to download non-english TV episodes!":[null,"就算選了不是英文的選項,SickRage也<b>無法</b>抓取非英文節目"],"Pick the parent folder":[null,"選擇節目要存放的主資料夾"],"Pre-chosen Destination Folder":[null,"預先選定的目的地檔案夾"],"Customize options":[null,"自訂選項"],"Add Show":[null,""],"Skip Show":[null,""],"Sort By":[null,""],"Name":[null,"名稱"],"Original":[null,"資料提供者原始排序"],"Votes":[null,"使用者投票"],"Rating":[null,"評價"],"Rating > Votes":[null,"評價>投票"],"Sort Order":[null,"排序"],"Asc":[null,"最小(差/前)到最大(好/後)"],"Desc":[null,"最大(好/後)到最小(差/前)"],"Fetching of IMDB Data failed. Are you online?":[null,"取得 IMDB 資料失敗,網路不通?"],"Exception":[null,"例外情況"],"Select Trakt List":[null,"Trakt 清單種類"],"Most Anticipated":[null,"Most Anticipated"],"Trending":[null,"熱潮中"],"Popular":[null,"受歡迎"],"Most Watched":[null,"最多觀看"],"Most Played":[null,"最多撥放"],"Most Collected":[null,"最多收集"],"Recommended":[null,"推薦"],"Toggle navigation":[null,"切換瀏覽樣式"],"Profile":[null,"設定檔"],"JSONP":[null,"JSONP"],"Back to SickRage":[null,"回到 SickRage"],"Parameters":[null,"參數"],"Required":[null,"必要項目"],"Description":[null,"說明"],"Type":[null,"類型"],"Default value":[null,"預設值"],"Allowed values":[null,"允許的值"],"Playground":[null,""],"Clear":[null,"清除"],"Yes":[null,"是"],"No":[null,"否"],"season":[null,"季"],"episode":[null,"集"],"Python Version":[null,"Python 版本"],"SSL Version":[null,"SSL 版本"],"OS":[null,"作業系統"],"Locale":[null,""],"User":[null,"使用者"],"Program Folder":[null,"程式資料夾"],"Config File":[null,"設定檔"],"Database File":[null,"資料庫檔案"],"Cache Folder":[null,"快取檔案夾"],"Log Folder":[null,"記錄檔資料夾"],"Arguments":[null,"參數"],"Web Root":[null,""],"Website":[null,"網站"],"Wiki":[null,"Wiki"],"Source":[null,"來源"],"IRC Chat":[null,"IRC 聊天室"],"AnimeDB Settings":[null,"動畫DB 設置"],"Look & Feel":[null,"調整外觀"],"AniDB is non-profit database of anime information that is freely open to the public":[null,"AniDB 是非營利向公眾免費開放的動漫資訊資料庫"],"Enable":[null,"啟用"],"should SickRage use data from AniDB?":[null,""],"AniDB Username":[null,"AniDB 使用者名稱"],"username of your AniDB account":[null,""],"AniDB Password":[null,"AniDB 密碼"],"password of your AniDB account":[null,""],"AniDB MyList":[null,"AniDB MyList"],"do you want to add the PostProcessed episodes to the MyList?":[null,""],"Look and Feel":[null,"調整外觀"],"How should the anime functions show and behave.":[null,""],"Split show lists":[null,""],"separate anime and normal shows in groups":[null,""],"Split in tabs":[null,""],"use tabs for when splitting show lists":[null,""],"Restore":[null,""],"Backup your main database file and config.":[null,""],"Select the folder you wish to save your backup file to":[null,""],"Restore your main database file and config.":[null,""],"Select the backup file you wish to restore":[null,""],"Misc":[null,""],"Interface":[null,""],"Advanced Settings":[null,""],"Startup options. Indexer options. Log and show file locations.":[null,""],"Some options may require a manual restart to take effect.":[null,""],"Default Indexer Language":[null,""],"for adding shows and metadata providers":[null,""],"Launch browser":[null,""],"open the SickRage home page on startup":[null,""],"Initial page":[null,""],"Shows":[null,""],"when launching SickRage interface":[null,""],"Choose hour to update shows":[null,""],"with information such as next air dates, show ended, etc. Use 15 for 3pm, 4 for 4am etc.":[null,""],"note":[null,""],"minutes are randomized each time SickRage is started":[null,""],"Send to trash for actions":[null,""],"when using show \"Remove\" and delete files":[null,""],"on scheduled deletes of the oldest log files":[null,""],"selected actions use trash (recycle bin) instead of the default permanent delete":[null,""],"Log file folder location":[null,""],"Number of Log files saved":[null,""],"number of log files saved when rotating logs (default: 5) (REQUIRES RESTART)":[null,""],"Size of Log files saved":[null,""],"maximum size in MB of the log file (default: 1MB) (REQUIRES RESTART)":[null,""],"Use initial indexer set to":[null,""],"as the default selection when adding new shows":[null,""],"Timeout show indexer at":[null,""],"seconds of inactivity when finding new shows (default:20)":[null,""],"Show root directories":[null,""],"where the files of shows are located":[null,""],"Save Changes":[null,"儲存變更"],"Options for software updates.":[null,""],"Check software updates":[null,""],"and display notifications when updates are available. Checks are run on startup and at the frequency set below*":[null,""],"Automatically update":[null,""],"fetch and install software updates. Updates are run on startup and in the background at the frequency set below*":[null,""],"Check the server every*":[null,"每隔多久檢查一次伺服器:*"],"hours for software updates (default:1)":[null,"小時檢查一次伺服器 (預設 ︰ 1)"],"Notify on software update":[null,"在軟體有更新時通知"],"send a message to all enabled notifiers when SickRage has been updated":[null,"當 SickRage 完成軟體更新後,向所有已啟用的通知接收器發送消息"],"User Interface":[null,""],"Options for visual appearance.":[null,""],"Interface Language":[null,""],"System Language":[null,""],"for appearance to take effect, save then refresh your browser":[null,"要使新的外觀設定生效,請在儲存設定後重新整理頁面"],"Display theme":[null,"顯示主題"],"Dark":[null,""],"Light":[null,""],"Use a background image":[null,""],"use a custom image as background for SickRage":[null,""],"Background Path":[null,""],"Path to the background image":[null,""],"Show fanart in the background":[null,""],"on the show summary page":[null,"顯示在節目摘要"],"Fanart transparency":[null,""],"transparency of the fanart in the background":[null,""],"Use a custom stylesheet file":[null,""],"use a custom .css file to style SickRage (for advanced users)":[null,""],"Stylesheet File Path":[null,""],"Path to the stylesheet (.css) file":[null,""],"Show all seasons":[null,"顯示每一季"],"Sort with \"The\", \"A\", \"An\"":[null,"排序時考慮\"The\" \"A\" \"An\""],"include articles (\"The\", \"A\", \"An\") when sorting show lists":[null,"排序時考慮\"The\" \"A\" \"An\"等冠詞"],"Missed episodes range":[null,"顯示未擷取的影集天數範圍"],"set the range in days of the missed episodes in the Schedule page":[null,""],"Display fuzzy dates":[null,""],"move absolute dates into tooltips and display e.g. \"Last Thu\", \"On Tue\"":[null,""],"Trim zero padding":[null,""],"remove the leading number \"0\" shown on hour of day, and date of month":[null,""],"Date style":[null,""],"Use System Default":[null,""],"Time style":[null,""],"seconds are only shown on the History page":[null,""],"Timezone":[null,""],"Local":[null,""],"Network":[null,""],"display dates and times in either your timezone or the shows network timezone":[null,""],"use local timezone to start searching for episodes minutes after show ends (depends on your dailysearch frequency)":[null,""],"Download url":[null,""],"URL where the shows can be downloaded.":[null,""],"Web Interface":[null,""],"it is recommended that you enable a username and password to secure SickRage from being tampered with remotely.":[null,""],"these options require a manual restart to take effect.":[null,""],"API key":[null,""],"used to give 3rd party programs limited access to SickRage":[null,""],"you can try all the features of the API":[null,""],"here":[null,""],"HTTP logs":[null,""],"enable logs from the internal Tornado web server":[null,""],"HTTP username":[null,""],"set blank for no login":[null,""],"HTTP password":[null,""],"blank = no authentication":[null,""],"HTTP port":[null,""],"web port to browse and access SickRage (default:8081)":[null,""],"Notify on login":[null,""],"enable to be notified when a new login happens in webserver":[null,""],"Listen on IPv6":[null,""],"attempt binding to any available IPv6 address":[null,""],"Enable HTTPS":[null,""],"enable access to the web interface using a HTTPS address":[null,""],"HTTPS certificate":[null,""],"file name or path to HTTPS certificate":[null,""],"HTTPS key":[null,""],"file name or path to HTTPS key":[null,""],"Reverse proxy headers":[null,""],"accept the following reverse proxy headers (advanced)...":[null,""],"(X-Forwarded-For, X-Forwarded-Host, and X-Forwarded-Proto)":[null,""],"CPU throttling":[null,""],"Normal (default). High is lower and Low is higher CPU use":[null,""],"Anonymous redirect":[null,""],"backlink protection via anonymizer service, must end in \"?\"":[null,""],"Enable debug":[null,""],"enable debug logs":[null,""],"Verify SSL Certs":[null,""],"verify SSL Certificates (Disable this for broken SSL installs (Like QNAP))":[null,""],"No Restart":[null,""],"only shutdown when restarting SR":[null,""],"only select this when you have external software restarting SR automatically when it stops (like FireDaemon)":[null,""],"Encrypt passwords":[null,""],"in the <code>config.ini</code> file":[null,""],"warning":[null,""],"passwords must only contain":[null,""],"ASCII characters":[null,""],"Unprotected calendar":[null,""],"allow subscribing to the calendar without user and password":[null,""],"some services like Google Calendar only work this way":[null,""],"Google Calendar Icons":[null,""],"show an icon next to exported calendar events in Google Calendar":[null,""],"Proxy host":[null,""],"blank to disable or proxy to use when connecting to providers":[null,""],"also use global proxy setting for indexers (tvdb, xem, anidb, etc.)":[null,""],"Skip Remove Detection":[null,""],"skip detection of removed files":[null,""],"if disabled the episode will be set to the default deleted status":[null,""],"Default deleted episode status":[null,""],"define the status to be set for media file that has been deleted.":[null,""],"Archived option will keep previous downloaded quality":[null,""],"example: Downloaded (1080p WEB-DL) ==> Archived (1080p WEB-DL)":[null,""],"Options for github related features.":[null,""],"Branch version":[null,""],"error: No branches found.":[null,""],"select branch to use (restart required)":[null,""],"Authorization Type":[null,""],"Username and password":[null,""],"Personal access token":[null,""],"You must use a personal access token if you're using \"two-factor authentication\" on GitHub.":[null,""],"GitHub username":[null,""],"*** (REQUIRED FOR SUBMITTING ISSUES) ***":[null,""],"GitHub password":[null,""],"GitHub personal access token":[null,""],"Generate Token":[null,""],"Manage Tokens":[null,""],"GitHub remote for branch":[null,""],"access repo configured remotes (save then refresh browser)":[null,""],"default":[null,""],"origin":[null,""],"Git executable path":[null,""],"only needed if OS is unable to locate git from env":[null,""],"Git reset":[null,""],"removes untracked files and performs a hard reset on git branch automatically to help resolve update issues":[null,""],"Home Theater / NAS":[null,""],"Devices":[null,""],"Social":[null,""],"A free and open source cross-platform media center and home entertainment system software with a 10-foot user interface designed for the living-room TV.":[null,""],"send KODI commands?":[null,""],"Always on":[null,""],"log errors when unreachable?":[null,""],"Notify on snatch":[null,""],"send a notification when a download starts?":[null,""],"Notify on download":[null,""],"send a notification when a download finishes?":[null,""],"Notify on subtitle download":[null,""],"send a notification when subtitles are downloaded?":[null,""],"Update library":[null,""],"update KODI library when a download finishes?":[null,""],"Full library update":[null,""],"perform a full library update if update per-show fails?":[null,""],"Only update first host":[null,""],"only send library updates to the first active host?":[null,""],"KODI IP:Port":[null,""],"host running KODI (eg. 192.168.1.100:8080)":[null,""],"(multiple host strings must be separated by commas)":[null,""],"Username":[null,""],"username for your KODI server (blank for none)":[null,""],"Password":[null,""],"password for your KODI server (blank for none)":[null,""],"Click below to test.":[null,""],"Experience your media on a visually stunning, easy to use interface on your Mac connected to your TV. Your media library has never looked this good!":[null,""],"For sending notifications to Plex Home Theater (PHT) clients, use the KODI notifier with port <b>3005</b>.":[null,""],"send Plex Media Server library updates?":[null,""],"Plex Media Server Auth Token":[null,""],"auth token used by Plex":[null,""],"Update Library":[null,""],"update Plex Media Server library when a download finishes":[null,""],"Plex Media Server IP:Port":[null,""],"one or more hosts running Plex Media Server<br/>(eg. 192.168.1.1:32400, 192.168.1.2:32400)":[null,""],"HTTPS":[null,""],"use https for plex media server requests?":[null,""],"Click below to test Plex Media Server(s)":[null,""],"Test Plex Media Server":[null,""],"Plex Home Theater":[null,""],"send Plex Home Theater notifications?":[null,""],"Plex Home Theater IP:Port":[null,""],"one or more hosts running Plex Home Theater<br>(eg. 192.168.1.100:3000, 192.168.1.101:3000)":[null,""],"Click below to test Plex Home Theater(s)":[null,""],"Test Plex Home Theater":[null,""],"some Plex Home Theaters <b class=\"boldest\">do not</b> support notifications e.g. Plexapp for Samsung TVs":[null,""],"Emby":[null,""],"A home media server built using other popular open source technologies.":[null,""],"send update commands to Emby?":[null,""],"Emby IP:Port":[null,""],"host running Emby (eg. 192.168.1.100:8096)":[null,""],"Emby API Key":[null,""],"Networked Media Jukebox":[null,""],"The Networked Media Jukebox, or NMJ, is the official media jukebox interface made available for the Popcorn Hour 200-series.":[null,""],"send update commands to NMJ?":[null,""],"Popcorn IP address":[null,""],"IP address of Popcorn 200-series (eg. 192.168.1.100)":[null,""],"Get settings":[null,""],"Get Settings":[null,""],"the Popcorn Hour device must be powered on and NMJ running.":[null,""],"NMJ database":[null,""],"automatically filled via the 'Get Settings' button.":[null,""],"NMJ mount url":[null,""],"Networked Media Jukebox v2":[null,""],"The Networked Media Jukebox, or NMJv2, is the official media jukebox interface made available for the Popcorn Hour 300 & 400-series.":[null,""],"send update commands to NMJv2?":[null,""],"IP address of Popcorn 300/400-series (eg. 192.168.1.100)":[null,""],"Database location":[null,""],"Database instance":[null,""],"adjust this value if the wrong database is selected.":[null,""],"Find database":[null,""],"Find Database":[null,""],"the Popcorn Hour device must be powered on.":[null,""],"NMJv2 database":[null,""],"automatically filled via the 'Find Database' buttons.":[null,""],"Synology":[null,""],"The Synology DiskStation NAS.":[null,""],"Synology Indexer is the daemon running on the Synology NAS to build its media database.":[null,""],"send Synology notifications?":[null,""],"requires SickRage to be running on your Synology NAS.":[null,""],"Synology Indexer":[null,""],"Synology Notifier is the notification system of Synology DSM":[null,""],"send notifications to the Synology Notifier?":[null,""],"pyTivo":[null,""],"pyTivo is both an HMO and GoBack server. This notifier will load the completed downloads to your Tivo.":[null,""],"send notifications to pyTivo?":[null,""],"requires the downloaded files to be accessible by pyTivo.":[null,""],"pyTivo IP:Port":[null,""],"host running pyTivo (eg. 192.168.1.1:9032)":[null,""],"pyTivo share name":[null,""],"value used in pyTivo Web Configuration to name the share.":[null,""],"Tivo name":[null,""],"(Messages & Settings > Account & System Information > System Information > DVR name)":[null,""],"Growl":[null,""],"A cross-platform unobtrusive global notification system.":[null,""],"send Growl notifications?":[null,""],"Growl IP:Port":[null,""],"host running Growl (eg. 192.168.1.100:23053)":[null,""],"may leave blank if SickRage is on the same host.":[null,""],"otherwise Growl <b>requires</b> a password to be used.":[null,""],"Click below to register and test Growl, this is required for Growl notifications to work.":[null,""],"Register Growl":[null,""],"Prowl":[null,""],"A Growl client for iOS.":[null,""],"send Prowl notifications?":[null,""],"Prowl Message Title":[null,""],"Global Prowl API key(s)":[null,""],"Prowl API(s) listed here, separated by commas if applicable, will<br> receive notifications for <b>all</b> shows. Your Prowl API key is available at:":[null,""],"(this field may be blank except when testing.)":[null,""],"Show notification list":[null,""],"-- Select a Show --":[null,""],"Configure per-show notifications here by entering Prowl API key(s), separated by commas, '\n 'after selecting a show in the drop-down box. Be sure to activate the 'Save for this show' '\n 'button below after each entry.":[null,""],"Save for this show":[null,""],"Prowl priority":[null,""],"Very Low":[null,""],"Moderate":[null,""],"Normal":[null,""],"High":[null,""],"Emergency":[null,""],"priority of Prowl messages from SickRage.":[null,""],"Libnotify":[null,""],"The standard desktop notification API for Linux/*nix systems. This notifier will only function if the pynotify module is installed (Ubuntu/Debian package <a href=\"apt:python-notify\">python-notify</a>).":[null,""],"send Libnotify notifications?":[null,""],"Pushover":[null,""],"Pushover makes it easy to send real-time notifications to your Android and iOS devices.":[null,""],"send Pushover notifications?":[null,""],"Pushover key":[null,""],"user key of your Pushover account":[null,""],"Pushover API key":[null,""],"click here":[null,""]," to create a Pushover API key":[null,""],"Pushover devices":[null,""],"comma separated list of pushover devices you want to send notifications to":[null,""],"Pushover notification sound":[null,""],"Bike":[null,""],"Bugle":[null,""],"Cash Register":[null,""],"Classical":[null,""],"Cosmic":[null,""],"Falling":[null,""],"Gamelan":[null,""],"Incoming":[null,""],"Intermission":[null,""],"Magic":[null,""],"Mechanical":[null,""],"Piano Bar":[null,""],"Siren":[null,""],"Space Alarm":[null,""],"Tug Boat":[null,""],"Alien Alarm (long)":[null,""],"Climb (long)":[null,""],"Persistent (long)":[null,""],"Pushover Echo (long)":[null,""],"Up Down (long)":[null,""],"None (silent)":[null,""],"Device specific":[null,""],"choose notification sound to use":[null,""],"Pushover priority":[null,""],"Choose priority to use":[null,""],"Boxcar 2":[null,""],"Read your messages where and when you want them!":[null,""],"send Boxcar notifications?":[null,""],"Boxcar2 access token":[null,""],"access token for your Boxcar account.":[null,""],"NMA":[null,""],"Notify My Android":[null,""],"Notify My Android is a Prowl-like Android App and API that offers an easy way to send notifications from your application directly to your Android device.":[null,""],"send NMA notifications?":[null,""],"NMA API key":[null,""],"(multiple keys must be separated by commas, up to a maximum of 5)":[null,""],"NMA priority":[null,""],"priority of NMA messages from SickRage.":[null,""],"Pushalot":[null,""],"Pushalot is a platform for receiving custom push notifications to connected devices running Windows Phone or Windows 8.":[null,""],"send Pushalot notifications ?":[null,""],"Pushalot authorization token":[null,""],"authorization token of your Pushalot account.":[null,""],"Pushbullet":[null,""],"Pushbullet is a platform for receiving custom push notifications to connected devices running Android/iOS and desktop browsers such as Chrome, Firefox or Opera.":[null,""],"send Pushbullet notifications?":[null,""],"Pushbullet API key":[null,""],"API key of your Pushbullet account":[null,""],"Pushbullet devices":[null,""],"Update device list":[null,""],"Pushbullet channels":[null,""],"Free Mobile":[null,""],"Free Mobile is a famous French cellular network provider.<br> It provides to their customer a free SMS API.":[null,""],"send SMS notifications?":[null,""],"send a SMS when a download starts?":[null,""],"send a SMS when a download finishes?":[null,""],"send a SMS when subtitles are downloaded?":[null,""],"Free Mobile customer ID":[null,""],"it's your Free Mobile customer ID (8 digits)":[null,""],"Free Mobile API key":[null,""],"find your API key in your customer portal.":[null,""],"Click below to test your settings.":[null,""],"Telegram":[null,""],"Telegram is a cloud-based instant messaging service.":[null,""],"send Telegram notifications?":[null,""],"send a message when a download starts?":[null,""],"send a message when a download finishes?":[null,""],"send a message when subtitles are downloaded?":[null,""],"User/group ID":[null,""],"contact @myidbot on Telegram to get an ID":[null,""],"Bot API token":[null,""],"contact @BotFather on Telegram to set up one":[null,""],"Join":[null,""],"Join all of your devices together!":[null,""],"send Join notifications?":[null,""],"Device ID":[null,""],"per device specific id":[null,""]," to create a Join API key":[null,""],"Twilio":[null,""],"Twilio is a webservice API that allows you to communicate directly with a mobile number. This notifier will send a text directly to your mobile device.":[null,""],"should SickRage text your mobile device?":[null,""],"Twilio Account SID":[null,""],"account SID of your Twilio account.":[null,""],"Twilio Auth Token":[null,""],"Twilio Phone SID":[null,""],"phone SID that you would like to send the sms from":[null,""],"Your phone number":[null,""],"phone number that will receive the sms. Please use the format +1-###-###-####":[null,""],"Twitter":[null,""],"A social networking and microblogging service, enabling its users to send and read other users' messages called tweets.":[null,""],"should SickRage post tweets on Twitter?":[null,""],"you may want to use a secondary account.":[null,""],"send direct message":[null,""],"send a notification via Direct Message, not via status update":[null,""],"send DM to":[null,""],"Twitter account to send Direct Messages to (must follow you)":[null,""],"Step One":[null,""],"Request Authorization":[null,""],"Click the \"Request Authorization\" button.<br> This will open a new page containing an auth key.<br> <b>note:</b> if nothing happens check your popup blocker.":[null,""],"Step Two":[null,""],"Enter the key Twitter gave you below, and click \"Verify Key\".":[null,""],"Trakt":[null,""],"Trakt helps keep a record of what TV shows and movies you are watching. Based on your favorites, Trakt recommends additional shows and movies you'll enjoy!":[null,""],"send Trakt.tv notifications?":[null,""],"username of your Trakt account.":[null,""],"Trakt PIN":[null,""],"Get Trakt PIN":[null,""],"PIN code to authorize SickRage to access Trakt on your behalf.":[null,""],"API Timeout":[null,""],"seconds to wait for Trakt API to respond. (Use 0 to wait forever)":[null,""],"Default indexer":[null,""],"Sync libraries":[null,""],"sync your SickRage show library with your trakt show library.":[null,""],"Remove Episodes From Collection":[null,""],"remove an episode from your Trakt Collection if it is not in your SickRage Library.":[null,""],"Sync watchlist":[null,""],"sync your SickRage show watchlist with your trakt show watchlist (either Show and Episode).":[null,""],"episode will be added on watch list when wanted or snatched and will be removed when downloaded ":[null,""],"Watchlist add method":[null,""],"Skip All":[null,""],"Download Pilot Only":[null,""],"Get whole show":[null,""],"method in which to download episodes for new shows.":[null,""],"Remove episode":[null,""],"remove an episode from your watchlist after it is downloaded.":[null,""],"Remove series":[null,""],"remove the whole series from your watchlist after any download.":[null,""],"Remove watched show":[null,""],"remove the show from sickrage if it's ended and completely watched":[null,""],"Start paused":[null,""],"shows grabbed from your trakt watchlist start paused.":[null,""],"Trakt blackList name":[null,""],"name (slug) of list on Trakt for blacklisting show on 'Add Trending Show' & 'Add Recommended Shows' pages":[null,""],"Email":[null,""],"Allows configuration of email notifications on a per show basis.":[null,""],"send email notifications?":[null,""],"SMTP host":[null,""],"hostname of your SMTP email server.":[null,""],"SMTP port":[null,""],"port number used to connect to your SMTP host.":[null,""],"SMTP from":[null,""],"sender email address, some hosts require a real address.":[null,""],"Use TLS":[null,""],"check to use TLS encryption.":[null,""],"SMTP user":[null,""],"(optional) your SMTP server username.":[null,""],"SMTP password":[null,""],"(optional) your SMTP server password.":[null,""],"Global email list":[null,""],"email addresses listed here, separated by commas if applicable, will<br> receive notifications for <b>all</b> shows.":[null,""],"(This field may be blank except when testing.)":[null,""],"Email Subject":[null,""],"use a custom subject for some privacy protection?":[null,""],"(leave blank for the default SickRage subject)":[null,""],"configure per-show notifications here by entering email address(es), separated by commas,":[null,""],"after selecting a show in the drop-down box. Be sure to activate the 'Save for this show'":[null,""],"button below after each entry.":[null,""],"Slack":[null,""],"Slack brings all your communication together in one place. It's real-time messaging, archiving and search for modern teams.":[null,""],"should SickRage post messages on Slack?":[null,""],"Slack Incoming Webhook":[null,""],"Discord":[null,""],"All-in-one voice and text chat for gamers that's free, secure, and works on both your desktop and phone.":[null,""],"Should SickRage post messages on Discord?":[null,""],"Discord Incoming Webhook":[null,""],"Create webhook under channel settings.":[null,""],"Discord Bot Name":[null,""],"Blank will use webhook default Name.":[null,""],"Discord Avatar URL":[null,""],"Blank will use webhook default Avatar.":[null,""],"Discord TTS":[null,""],"Send notifications using text-to-speech":[null,""],"Post-Processing":[null,""],"Episode Naming":[null,""],"Metadata":[null,""],"Settings that dictate how SickRage should process completed downloads.":[null,""],"enable the automatic post processor to scan and process any files in your Post Processing Dir":[null,""],"do not use if you use an external Post Processing script":[null,""],"Post Processing Dir":[null,""],"the folder where your download client puts the completed TV downloads.":[null,""],"please use seperate downloading and completed folders in your download client if possible.":[null,""],"Processing Method":[null,""],"what method should be used to put files into the library?":[null,""],"if you keep seeding torrents after they finish, please avoid the 'move' processing method to prevent errors.":[null,""],"Auto Post-Processing Frequency":[null,""],"time in minutes to check for new files to auto post-process (min 10)":[null,""],"Postpone post processing":[null,""],"wait to process a folder if sync files are present.":[null,""],"Sync File Extensions":[null,""],"comma seperated list of extensions or filename globs SickRage ignores when Post Processing":[null,""],"Rename Episodes":[null,""],"rename episode using the Episode Naming settings?":[null,""],"Create missing show directories":[null,""],"create missing show directories when they get deleted":[null,""],"Add shows without directory":[null,""],"add shows without creating a directory (not recommended)":[null,""],"Move associated files":[null,""],"move associated (srt/srr/sfv/etc) files while post processing?":[null,""],"Rename .nfo file":[null,""],"rename the original .nfo file to .nfo-orig to avoid conflicts?":[null,""],"Associated file extensions":[null,""],"comma separated list of associated file extensions SickRage should keep while post processing.":[null,""],"leaving it empty means no associated files will be post processed":[null,""],"Delete non associated files":[null,""],"delete non associated files while post processing?":[null,""],"Change File Date":[null,""],"set last modified filedate to the date that the episode aired?":[null,""],"some systems may ignore this feature.":[null,""],"Timezone for File Date":[null,""],"local":[null,""],"network":[null,""],"what timezone should be used to change File Date?":[null,""],"Unpack":[null,""],"What to do with archived releases found in your <i>TV Download Dir</i>?":[null,""],"Ignore (do not process contents)":[null,""],"Unpack (process contents)":[null,""],"Treat as video (process archive as-is)":[null,""],"'Unpack' only works with RAR archives":[null,""],"Windows":[null,""],"WinRar is required on windows":[null,""],"Unpack Directory":[null,""],"Choose a path to unpack files, leave blank to unpack in download dir":[null,""],"Unrar Location":[null,""],"add the path to unrar if it is not in the system path":[null,""],"Alternate Unrar Tool":[null,""],"add the path to an alternate unrar tool if it is not in the system path":[null,""],"Delete RAR contents":[null,""],"delete content of RAR files, even if Process Method not set to move?":[null,""],"only working with RAR archive":[null,""],"Don't delete empty folders":[null,""],"leave empty folders when Post Processing?":[null,""],"can be overridden using manual Post Processing":[null,""],"Follow symbolic-links":[null,""],"follow down symbolic links in download directory?":[null,""],"<b>EXPERTS ONLY.</b><br>Enable only if you know what <b>circular symbolic links</b> are,<br>and can <b>verify that you have none</b>.":[null,""],"Use icacls":[null,""],"Windows only":[null,""],"sets video permissions after using the move method in post processing":[null,""],"Extra Scripts":[null,""],"see":[null,""],"for script arguments description and usage.":[null,""],"How SickRage will name and sort your episodes.":[null,""],"Name Pattern":[null,""],"Toggle Naming Legend":[null,""],"don't forget to add quality pattern. Otherwise after post-processing the episode will have UNKNOWN quality":[null,""],"Meaning":[null,""],"Pattern":[null,""],"Result":[null,""],"Use lower case if you want lower case names (eg. %sn, %e.n, %q_n etc)":[null,""],"Show Name":[null,""],"Show.Name":[null,""],"Show_Name":[null,""],"Season Number":[null,""],"XEM Season Number":[null,""],"Episode Number":[null,""],"XEM Episode Number":[null,""],"Episode Name":[null,""],"Episode.Name":[null,""],"Episode_Name":[null,""],"Air Date":[null,""],"Post-Processing Date":[null,""],"Quality":[null,""],"Scene Quality":[null,""],"Release Name":[null,""],"SickRage' is used in place of RLSGROUP if it could not be properly detected":[null,""],"Release Group":[null,""],"If episode is proper/repack add 'proper' to name.":[null,""],"Release Type":[null,""],"Multi-Episode Style":[null,""],"Single-EP Sample":[null,""],"Multi-EP sample":[null,""],"Strip Show Year":[null,""],"remove the TV show's year when renaming the file?":[null,""],"only applies to shows that have year inside parentheses":[null,""],"Custom Air-By-Date":[null,""],"name air-by-date shows differently than regular shows?":[null,""],"Toggle ABD Naming Legend":[null,""],"Regular Air Date":[null,""],"Year":[null,""],"Month":[null,""],"Day":[null,""],"Multi-EP style is ignored":[null,""],"Custom Sports":[null,""],"name sports shows differently than regular shows?":[null,""],"Toggle Sports Naming Legend":[null,""],"Sports Air Date":[null,""],"Custom Anime":[null,""],"name anime shows differently than regular shows?":[null,""],"Toggle Anime Naming Legend":[null,""],">XEM Season Number":[null,""],"Single-EP Anime Sample":[null,""],"Multi-EP Anime sample":[null,""],"Add Absolute Number":[null,""],"add the absolute number to the season/episode format?":[null,""],"only applies to anime. (eg. S15E45 - 310 vs S15E45)":[null,""],"Only Absolute Number":[null,""],"replace season/episode format with absolute number":[null,""],"only applies to anime.":[null,""],"No Absolute Number":[null,""],"don't include the absolute number":[null,""],"The data associated to the data. These are files associated to a TV show in the form of images and text that, when supported, will enhance the viewing experience.":[null,""],"Metadata Type":[null,""],"toggle metadata options that you wish to be created":[null,""],"multiple targets may be used":[null,""],"Select Metadata":[null,""],"Provider Priorities":[null,""],"Provider Options":[null,""],"Configure Custom Newznab Providers":[null,""],"Configure Custom Torrent Providers":[null,""],"Check off and drag the providers into the order you want them to be used.":[null,""],"At least one provider is required but two are recommended.":[null,""],"Torrent providers can be toggled in ":[null,""],"Provider does not support backlog searches at this time.":[null,""],"Provider is <b>NOT WORKING</b>.":[null,""],"Configure individual provider settings here.":[null,""],"Check with provider's website on how to obtain an API key if needed.":[null,""],"Configure provider":[null,""],"no providers available to configure.":[null,""],"URL":[null,""],"Enable daily searches":[null,""],"enable provider to perform daily searches.":[null,""],"Enable backlog searches":[null,""],"enable provider to perform backlog searches.":[null,""],"Season search mode":[null,""],"when searching for complete seasons you can choose to have it look for season packs only, or choose to have it build a complete season from just single episodes.":[null,""],"season packs only.":[null,""],"episodes only.":[null,""],"Enable fallback":[null,""],"when searching for a complete season depending on search mode you may return no results, this helps by restarting the search using the opposite search mode.":[null,""],"Custom URL":[null,""],"the URL should include the protocol (and port if applicable). Examples: http://192.168.1.4/ or http://localhost:3000/":[null,""],"Api key":[null,""],"Digest":[null,""],"Hash":[null,""],"Passkey":[null,""],"Cookies":[null,""],"example: uid=1234;pass=567845439634987<br>note: uid and pass are not your username/password.<br>use DevTools or Firebug to get these values after logging in on your browser.":[null,""],"Pin":[null,""],"Seed ratio":[null,""],"stop transfer when ratio is reached<br>(-1 SickRage default to seed forever, or leave blank for downloader default)":[null,""],"Minimum seeders":[null,""],"Minimum leechers":[null,""],"Confirmed download":[null,""],"only download torrents from trusted or verified uploaders ?":[null,""],"Ranked torrents":[null,""],"only download ranked torrents (trusted releases)":[null,""],"English torrents":[null,""],"only download english torrents, or torrents containing english subtitles":[null,""],"For Spanish torrents":[null,""],"ONLY search on this provider if show info is defined as \"Spanish\" (avoid provider's use for VOS shows)":[null,""],"Sorting results by":[null,""],"Freeleech":[null,""],"only download <b>\"FreeLeech\"</b> torrents.":[null,""],"Category":[null,""],"select torrent with Italian subtitle":[null,""],"Configure Custom<br>Newznab Providers":[null,""],"Add and setup or remove custom Newznab providers.":[null,""],"Select provider":[null,""],"-- add new provider --":[null,""],"Provider name":[null,""],"Site URL":[null,""],"Newznab search categories":[null,""],"select your Newznab categories on the left, and click the \"update categories\" button to use them for searching.) <b>don't forget to to save the form!":[null,""],"Update Categories":[null,""],"Add":[null,""],"Delete":[null,""],"Add and setup or remove custom RSS providers.":[null,""],"RSS URL":[null,""],"Search element":[null,""],"eg: title":[null,""],"Episode Search":[null,""],"NZB Search":[null,""],"Torrent Search":[null,""],"How to manage searching with":[null,""],"Randomize Providers":[null,""],"randomize the provider search order instead of going in order of placement":[null,""],"Download propers":[null,""],"replace original download with \"Proper\" or \"Repack\" if nuked":[null,""],"Check propers every":[null,""],"24 hours":[null,""],"4 hours":[null,""],"90 mins":[null,""],"45 mins":[null,""],"15 mins":[null,""],"Backlog search day(s)":[null,""],"number of day(s) that the \"Forced Backlog Search\" will cover (e.g. 7 Days)":[null,""],"Backlog search frequency":[null,""],"time in minutes between searches (min.":[null,""],"Daily search frequency":[null,""],"Usenet retention":[null,""],"age limit in days for usenet articles to be used (e.g. 500)":[null,""],"Ignore words":[null,""],"results with one or more word from this list will be ignored<br>separate words with a comma, e.g. \"word1,word2,word3\"":[null,""],"Require words":[null,""],"results with no word from this list will be ignored<br>separate words with a comma, e.g. \"word1,word2,word3\"":[null,""],"Trackers list":[null,""],"trackers that will be added to magnets without trackers<br>separate trackers with a comma, e.g. \"tracker1,tracker2,tracker3\"":[null,""],"Ignore language names in subbed results":[null,""],"ignore subbed releases based on language names <br>\n Example: \"dk\" will ignore words: dksub, dksubs, dksubbed, dksubed <br>\n separate languages with a comma, e.g. \"lang1,lang2,lang3":[null,""],"Allow high priority":[null,""],"set downloads of recently aired episodes to high priority":[null,""],"Use Failed Downloads":[null,""],"use Failed Download Handling?":[null,""],"will only work with snatched/downloaded episodes after enabling this":[null,""],"Delete Failed":[null,""],"delete files left over from a failed download?":[null,""],"this only works if Use Failed Downloads is enabled.":[null,""],"How to handle NZB search results.":[null,""],"Search NZBs":[null,""],"enable NZB search providers":[null,""],"Send .nzb files to":[null,""],"SABnzbd server URL":[null,""],"URL to your SABnzbd server (e.g. http://localhost:8080/)":[null,""],"SABnzbd username":[null,""],"(blank for none)":[null,""],"SABnzbd password":[null,""],"SABnzbd API key":[null,""],"locate at... SABnzbd Config -> General -> API Key":[null,""],"Use SABnzbd category":[null,""],"add downloads to this category (e.g. TV)":[null,""],"Use SABnzbd category (backlog episodes)":[null,""],"add downloads of old episodes to this category (e.g. TV)":[null,""],"Use SABnzbd category for anime":[null,""],"add anime downloads to this category (e.g. anime)":[null,""],"Use SABnzbd category for anime (backlog episodes)":[null,""],"add anime downloads of old episodes to this category (e.g. anime)":[null,""],"Use forced priority":[null,""],"enable to change priority from HIGH to FORCED":[null,""],"Black hole folder location":[null,""],"<b>.nzb</b> files are stored at this location for external software to find and use":[null,""],"Connect using HTTPS":[null,""],"enable Secure control in NZBGet and set the correct Secure Port here":[null,""],"NZBget host:port":[null,""],"(e.g. localhost:6789)":[null,""],"NZBget RPC host name and port number (not NZBgetweb!)":[null,""],"NZBget username":[null,""],"locate in nzbget.conf (default:nzbget)":[null,""],"NZBget password":[null,""],"locate in nzbget.conf (default:tegbzn6789)":[null,""],"Use NZBget category":[null,""],"send downloads marked this category (e.g. TV)":[null,""],"Use NZBget category (backlog episodes)":[null,""],"send downloads of old episodes marked this category (e.g. TV)":[null,""],"Use NZBget category for anime":[null,""],"send anime downloads marked this category (e.g. anime)":[null,""],"Use NZBget category for anime (backlog episodes)":[null,""],"send anime downloads of old episodes marked this category (e.g. anime)":[null,""],"NZBget priority":[null,""],"Very low":[null,""],"Low":[null,""],"Very high":[null,""],"Force":[null,""],"priority for daily snatches (no backlog)":[null,""],"Torrent host:port":[null,""],"URL to your Synology DSM (e.g. http://localhost:5000/)":[null,""],"Client username":[null,""],"Client password":[null,""],"Downloaded files location":[null,""],"where Synology Download Station will save downloaded files (blank for client default)":[null,""],"the destination has to be a shared folder for Synology DS":[null,""],"Click below to test":[null,""],"How to handle Torrent search results.":[null,""],"Search torrents":[null,""],"enable torrent search providers":[null,""],"Send .torrent files to":[null,""],"<b>.torrent</b> files are stored at this location for external software to find and use":[null,""],"URL to your torrent client (e.g. http://localhost:8000/)":[null,""],"Torrent RPC URL":[null,""],"the path without leading and trailing slashes (e.g. transmission)":[null,""],"Http Authentication":[null,""],"Verify certificate":[null,""],"disable if you get \"Deluge: Authentication Error\" in your log":[null,""],"verify SSL certificates for HTTPS requests":[null,""],"Add label to torrent":[null,""],"(blank spaces are not allowed)":[null,""],"label plugin must be enabled in Deluge clients":[null,""],"for QBitTorrent 3.3.1 and up":[null,""],"Add label to torrent for anime":[null,""],"for QBitTorrent 3.3.1 and up ":[null,""],"where <span id=\"torrent_client\">the torrent client</span> will save downloaded files (blank for client default)":[null,""],"the destination has to be a shared folder for Synology DS</span>":[null,""],"Minimum seeding time":[null,""],"time in hours":[null,""],"(default:'0' passes blank to client and '-1' passes nothing)":[null,""],"Start torrent paused":[null,""],"add .torrent to client but do <b style=\"font-weight:900\">not</b> start downloading":[null,""],"Allow high bandwidth":[null,""],"use high bandwidth allocation if priority is high":[null,""],"Test Connection":[null,""],"Windows Shares":[null,""],"Defines your existing windows shares so that we can add them to the browse dialog":[null,""],"Share #{number}":[null,""],"Share label":[null,""],"Hostname or IP":[null,""],"Share path":[null,""],"Subtitles Search":[null,""],"Subtitles Plugin":[null,""],"Plugin Settings":[null,""],"Settings that dictate how SickRage handles subtitles search results.":[null,""],"Search Subtitles":[null,""],"Subtitle Languages":[null,""],"Subtitle Directory":[null,""],"the directory where SickRage should store your <i>Subtitles</i> files.":[null,""],"leave empty if you want store subtitle in episode path.":[null,""],"Subtitle Find Frequency":[null,""],"time in hours between scans (default: 1)":[null,""],"Include Specials":[null,""],"include the show's specials when searching for subtitles?":[null,""],"Perfect matches":[null,""],"only download subtitles that match: release group, video codec, audio codec and resolution":[null,""],"if disabled you may get out of sync subtitles":[null,""],"Subtitles History":[null,""],"log downloaded Subtitle on History page?":[null,""],"Subtitles Multi-Language":[null,""],"append language codes to subtitle filenames?":[null,""],"this option is required if you use multiple subtitle languages":[null,""],"Delete unwanted subtitles":[null,""],"enable to delete unwanted subtitle languages bundled with release":[null,""],"Embedded Subtitles":[null,""],"ignore subtitles embedded inside video file?":[null,""],"this will ignore <u>all</u> embedded subtitles for every video file!":[null,""],"Hearing Impaired Subtitles":[null,""],"download hearing impaired style subtitles?":[null,""],"See":[null,""],"for a script arguments description.":[null,""],"Additional scripts separated by <b>|</b>.":[null,""],"Scripts are called after each episode has searched and downloaded subtitles.":[null,""],"For any scripted languages, include the interpreter executable before the script. See the following example":[null,""],"For Windows:":[null,""],"For Linux / OS X:":[null,""],"Subtitle Providers":[null,""],"Check off and drag the plugins into the order you want them to be used.":[null,""],"At least one plugin is required.":[null,""]," Web-scraping plugin":[null,""],"Provider Settings":[null,""],"Set user and password for each provider":[null,""],"User Name":[null,""],"Change Show":[null,""],"Prev Show":[null,""],"Next Show":[null,""],"Jump to Season":[null,""],"Specials":[null,""],"Poster for":[null,""],"Stars":[null,""],"minutes":[null,""],"View other popular {genre} shows on trakt.tv.":[null,""],"View other popular {imdbgenre} shows on IMDB.":[null,""],"Allowed":[null,""],"Preferred":[null,""],"Originally Airs":[null,""],"Show Status":[null,""],"Default EP Status":[null,""],"Location":[null,""],"Missing":[null,""],"Scene Name":[null,""],"Required Words":[null,""],"Ignored Words":[null,""],"Size":[null,""],"Info Language":[null,""],"Subtitles SR Metadata":[null,""],"Season Folders":[null,""],"Paused":[null,""],"Air-by-Date":[null,""],"Sports":[null,""],"DVD Order":[null,""],"Scene Numbering":[null,""],"Select Filtered Episodes":[null,""],"Clear All":[null,""],"Change selected episodes to":[null,""],"Select Columns":[null,""],"Hide Episodes":[null,""],"Show Episodes":[null,""],"NFO":[null,""],"TBN":[null,""],"Episode":[null,""],"Absolute":[null,""],"Scene":[null,""],"Scene Absolute":[null,""],"File Name":[null,""],"Airdate":[null,""],"Download":[null,""],"Change the value here if scene numbering differs from the indexer episode numbering":[null,""],"Change the value here if scene absolute numbering differs from the indexer absolute numbering":[null,""],"Manual Search":[null,""],"Do you want to mark this episode as failed?":[null,""],"The episode release name will be added to the failed history, preventing it to be downloaded again.":[null,""],"Do you want to include the current episode quality in the search?":[null,""],"Choosing No will ignore any releases with the same episode quality as the one currently downloaded/snatched.":[null,""],"Download subtitle":[null,""],"Do you want to re-download the subtitle for this language?":[null,""],"It will overwrite your current subtitle":[null,""],"Format":[null,""],"Advanced":[null,""],"Main Settings":[null,""],"Show Location":[null,""],"Preferred Quality":[null,""],"Default Episode Status":[null,""],"this will set the status for future episodes.":[null,""],"this only applies to episode filenames and the contents of metadata files.":[null,""],"search for subtitles":[null,""],"Use SR Metdata":[null,""],"use SickRage metadata when searching for subtitle, this will override the autodiscovered metadata":[null,""],"pause this show (SickRage will not download episodes)":[null,""],"Format Settings":[null,""],"Air by date":[null,""],"check if the show is released as Show.03.02.2010 rather than Show.S02E03.":[null,""],"in case of an air date conflict between regular and special episodes, the later will be ignored.":[null,""],"check if the show is Anime and episodes are released as Show.265 rather than Show.S02E03":[null,""],"check if the show is a sporting or MMA event released as Show.03.02.2010 rather than Show.S02E03":[null,""],"Season folders":[null,""],"group episodes by season folder (uncheck to store in a single folder)":[null,""],"search by scene numbering (uncheck to search by indexer numbering)":[null,""],"use the DVD order instead of the air order":[null,""],"a \"Force Full Update\" is necessary, and if you have existing episodes you need to sort them manually.":[null,""],"comma-separated <i>e.g. \"word1,word2,word3</i>\"":[null,""],"search results with one or more words from this list will be ignored.":[null,""],"e.g. \"word1,word2,word3\"":[null,""],"search results with no words from this list will be ignored.":[null,""],"Scene Exception":[null,""],"this will affect episode search on NZB and torrent providers.":[null,""],"this list appends to the original show name.":[null,""],"WARNING logs":[null,""],"ERROR logs":[null,""],"There are no events to display.":[null,""],"Limit":[null,""],"Layout":[null,""],"HistoryLayout":[null,""],"Compact":[null,""],"Detailed":[null,""],"Time":[null,""],"Provider":[null,""],"Missing Provider":[null,""],"missing provider":[null,""],"Directory":[null,""],"Show Name (tvshow.nfo)":[null,""],"Indexer":[null,""],"Enter the folder containing the episode":[null,""],"Process Method to be used":[null,""],"Copy":[null,""],"Move":[null,""],"Hard Link":[null,""],"Symbolic Link":[null,""],"Symbolic Link Reversed":[null,""],"Force already Post Processed Dir/Files":[null,""],"Mark Dir/Files as priority download":[null,""],"(Check it to replace the file even if it exists at higher quality)":[null,""],"Delete files and folders":[null,""],"(Check it to delete files and folders like auto processing)":[null,""],"Don't use processing queue":[null,""],"(If checked this will return the result of the process here, but may be slow!)":[null,""],"Mark download as failed":[null,""],"Process":[null,""],"Download subtitles for this show?":[null,""],"use SickRage metadata when searching for subtitle, <br />this will override the autodiscovered metadata":[null,""],"Status for previously aired episodes":[null,""],"Status for all future episodes":[null,""],"Group episodes by season folder?":[null,""],"Is this show an Anime?":[null,""],"Is this show scene numbered?":[null,""],"Save Defaults":[null,""],"Use current values as the defaults":[null,""],"<p>Select your preferred fansub groups from the <b>Available Groups</b> and add them to the <b>Whitelist</b>. Add groups to the <b>Blacklist</b> to ignore them.</p>\n <p>The <b>Whitelist</b> is checked <i>before</i> the <b>Blacklist</b>.</p>\n <p>Groups are shown as <b>Name</b> | <b>Rating</b> | <b>Number of subbed episodes</b>.</p>\n <p>You may also add any fansub group not listed to either list manually.</p>\n <p>When doing this please note that you can only use groups listed on anidb for this anime.\n <br>If a group is not listed on anidb but subbed this anime, please correct anidb's data.</p>":[null,""],"Whitelist":[null,""],"Available Groups":[null,""],"Add to Whitelist":[null,""],"Add to Blacklist":[null,""],"Blacklist":[null,""],"Custom Group":[null,""],"Allowed Quality:":[null,""],"Preferred Quality:":[null,""],"Filter Show Name":[null,""],"Root":[null,""],"All":[null,""],"Clear Filter(s)":[null,""],"Poster":[null,"節目海報"],"Small Poster":[null,""],"Banner":[null,"節目看板"],"Simple":[null,""],"Next Episode":[null,""],"Progress":[null,""],"Direction":[null,""],"Ascending":[null,""],"Descending":[null,""],"Poster Size":[null,""],"Continuing":[null,""],"Ended":[null,""],"Total":[null,""],"Invalid date":[null,""],"No Network":[null,""],"Next Ep":[null,""],"Prev Ep":[null,""],"Show":[null,""],"Downloads":[null,""],"Active":[null,""],"loading":[null,""],"Loading...":[null,""],"<p><b><u>Preferred</u></b> qualities will replace those in <b><u>allowed</u></b>, even if they are lower.</p>":[null,""],"New":[null,""],"Set as Default":[null,""],"Remember me":[null,""],"Edit Selected":[null,""],"Subtitle":[null,""],"Default Ep Status":[null,""],"Update":[null,""],"Rescan":[null,""],"Rename":[null,""],"Search Subtitle":[null,""],"Force Metadata Regen":[null,""],"Snatched (Allowed)":[null,""],"Jump to Show":[null,""],"Force Backlog":[null,""],"Manage episodes with status":[null,""],"Manage":[null,""],"None of your episodes have status":[null,""],"Shows containing":[null,""],"episodes":[null,""],"Set checked shows/episodes to":[null,""],"Go":[null,""],"Select all":[null,""],"Clear all":[null,""],"Release":[null,""],"Backlog Search":[null,""],"Not in progress":[null,""],"In Progress":[null,""],"Daily Search":[null,""],"Find Propers Search":[null,""],"Propers search disabled":[null,""],"Subtitle Search":[null,""],"Subtitle search disabled":[null,""],"Search Queue":[null,""],"pending items":[null,""],"Daily":[null,""],"Manual":[null,""],"Changing any settings marked with (<span class=\"separator\">*</span>) will force a refresh of the selected shows.":[null,""],"Selected Shows":[null,""],"Root Directories":[null,""],"Current":[null,""],"Keep":[null,""],"Custom":[null,""],"Group episodes by season folder (set to \"No\" to store in a single folder).":[null,""],"Pause these shows (SickRage will not download episodes).":[null,""],"This will set the status for future episodes.":[null,""],"Search by scene numbering (set to \"No\" to search by indexer numbering).":[null,""],"Set if these shows are Anime and episodes are released as Show.265 rather than Show.S02E03":[null,""],"Set if these shows are sporting or MMA events released as Show.03.02.2010 rather than Show.S02E03.":[null,""],"In case of an air date conflict between regular and special episodes, the later will be ignored.":[null,""],"Set if these shows are released as Show.03.02.2010 rather than Show.S02E03.":[null,""],"Search for subtitles.":[null,""],"All of your episodes have {subsLanguage} subtitles.":[null,""],"Manage episodes without":[null,""],"Episodes without {subsLanguage} subtitles.":[null,""],"Episodes without {subtitleLanguage} (undefined) subtitles.":[null,""],"Download missed subtitles for selected episodes":[null,""],"Performing Restart":[null,""],"Waiting for SickRage to shut down":[null,""],"Waiting for SickRage to start again":[null,""],"Loading the default page":[null,""],"Error: The restart has timed out, perhaps something prevented SickRage from starting again?":[null,""],"Key":[null,""],"Missed":[null,""],"Today":[null,""],"Soon":[null,""],"Later":[null,""],"Subscribe":[null,""],"Date":[null,""],"View Paused":[null,""],"Hidden":[null,""],"Shown":[null,""],"Calendar":[null,"行事曆"],"List":[null,"清單"],"Ends":[null,""],"Next Ep Name":[null,""],"Run time":[null,""],"Indexers":[null,""],"No shows for this day":[null,""],"Airs":[null,""],"Plot":[null,""],"Show Update":[null,""],"Version Check":[null,""],"Proper Finder":[null,""],"Post Process":[null,""],"Subtitles Finder":[null,""],"Scheduler":[null,""],"Alive":[null,""],"Start Time":[null,""],"Cycle Time":[null,""],"Next Run":[null,""],"Last Run":[null,""],"Silent":[null,""],"True":[null,""],"N/A":[null,""],"Show id":[null,""],"Show name":[null,""],"Priority":[null,""],"Added":[null,""],"Queue type":[null,""],"LOW":[null,""],"NORMAL":[null,""],"HIGH":[null,""],"Disk Space":[null,""],"Free space":[null,""],"TV Download Directory":[null,""],"Media Root Directories":[null,""],"Preview of the proposed name changes":[null,""],"All Seasons":[null,""],"select all":[null,""],"Rename Selected":[null,""],"Cancel Rename":[null,""],"Old Location":[null,""],"New Location":[null,""],"Trakt API did not return any results, please check your config.":[null,""],"votes":[null,""],"Remove Show":[null,""],"Level":[null,""],"Filter":[null,""],"All non-absolute folder locations are relative to ":[null,""],"Manual Post-Processing":[null,""],"Episode Status Management":[null,""],"Update PLEX":[null,""],"Update KODI":[null,""],"Update Emby":[null,""],"Missed Subtitle Management":[null,""],"Help & Info":[null,""],"Backup & Restore":[null,""],"Tools":[null,""],"Support SickRage":[null,""],"View Errors":[null,""],"View Warnings":[null,""],"View Log":[null,""],"Check For Updates":[null,""],"Restart":[null,""],"Shutdown":[null,""],"Logout":[null,""],"Server Status":[null,""],"View overview of snatched episodes":[null,""],"Episodes Downloaded":[null,""],"Memory used":[null,""],"Load time":[null,""],"Branch":[null,""],"Now":[null,""]}}}} \ No newline at end of file +{"messages":{"domain":"messages","locale_data":{"messages":{"100":[null,""],"250":[null,""],"500":[null,""],"":{"domain":"messages","plural_forms":"nplurals=1; plural=0;","lang":"zh_TW"},"Drama":[null,""],"Mystery":[null,""],"Science-Fiction":[null,""],"Crime":[null,""],"Action":[null,""],"Comedy":[null,""],"Thriller":[null,""],"Animation":[null,""],"Family":[null,""],"Fantasy":[null,""],"Adventure":[null,""],"Horror":[null,""],"Film-Noir":[null,""],"Sci-Fi":[null,""],"Romance":[null,""],"Sport":[null,""],"War":[null,""],"Biography":[null,""],"History":[null,"紀錄"],"Music":[null,""],"Western":[null,""],"News":[null,"最新消息"],"Sitcom":[null,""],"Reality-TV":[null,""],"Documentary":[null,""],"Game-Show":[null,""],"Musical":[null,""],"Talk-Show":[null,""],"Started Download":[null,"已開始的下載"],"Download Finished":[null,"下載已經完成"],"Subtitle Download Finished":[null,"字幕下載完成"],"SickRage Updated":[null,"SickRage 已更新"],"SickRage Updated To Commit#: ":[null,"SickRage 更新到commit #: "],"SickRage new login":[null,"SickRage 新的登錄"],"New login from IP: {0}. http://geomaplookup.net/?ip={0}":[null,"來自此ip 位址的新登陸 ︰ {0}。HTTP://geomaplookup.net/?ip={0}"],"Repeat":[null,""],"Repeat (Separated)":[null,""],"Extend":[null,""],"Extend (Limited)":[null,""],"Extend (Limited, E-prefixed)":[null,""],"Downloaded":[null,"已下載"],"Snatched":[null,"取得節目檔案資訊,下載中"],"Snatched (Proper)":[null,"取得節目檔案資訊,下載中(proper版)"],"Failed":[null,"失敗"],"Snatched (Best)":[null,"取得節目檔案資訊,下載中(最佳畫質)"],"Archived":[null,"收藏"],"Unknown":[null,"不明"],"Unaired":[null,"未公播"],"Skipped":[null,"跳過此項"],"Wanted":[null,"待抓取"],"Ignored":[null,"忽略"],"Subtitled":[null,"字幕"],"For best results please set the Download Station alias as":[null,""],"You can check this setting in the Synology DSM":[null,""],"Control Panel":[null,""],"Application Portal":[null,""],"Make sure you allow DSM to be embedded with iFrames too in":[null,""],"DSM Settings":[null,""],"Security":[null,""],"<No Filter>":[null,""],"Daily Searcher":[null,""],"Backlog":[null,""],"Show Updater":[null,""],"Check Version":[null,""],"Show Queue":[null,""],"Search Queue (All)":[null,""],"Search Queue (Daily Searcher)":[null,""],"Search Queue (Backlog)":[null,""],"Search Queue (Manual)":[null,""],"Search Queue (Retry/Failed)":[null,""],"Search Queue (RSS)":[null,""],"Find Propers":[null,""],"Postprocessor":[null,""],"Find Subtitles":[null,""],"Trakt Checker":[null,""],"Event":[null,""],"Error":[null,""],"Tornado":[null,""],"Thread":[null,""],"Main":[null,""],"Loading":[null,""],"New update found for SickRage, starting auto-updater":[null,""],"Update was successful":[null,""],"Update failed!":[null,""],"Backup":[null,""],"Config backup in progress...":[null,""],"Config backup successful, updating...":[null,""],"Config backup failed, aborting update":[null,""],"No update needed":[null,""],"Mako Error":[null,""],"Oops":[null,"哎呀"],"Wrong API key used":[null,""],"Login":[null,"登入"],"API Key not generated":[null,"API密鑰未生成"],"API Builder":[null,"API 產生器"],"Schedule":[null,"任務安排"],"Test 1":[null,""],"This is test number 1":[null,""],"Test 2":[null,""],"This is test number 2":[null,""],"You're using the {branch} branch. Please use 'master' unless specifically asked":[null,""],"Invalid show parameters":[null,""],"Invalid parameters":[null,""],"Episode couldn't be retrieved":[null,""],"Home":[null,"首頁"],"Show List":[null,"節目清單"],"Error: Unsupported Request. Send jsonp request with 'callback' variable in the query string.":[null,""],"Success. Connected and authenticated":[null,""],"Authentication failed. SABnzbd expects":[null,""],"as authentication method":[null,""],"Unable to connect to host":[null,""],"SMS sent successfully":[null,""],"Problem sending SMS: {message}":[null,""],"Telegram notification succeeded. Check your Telegram clients to make sure it worked":[null,""],"Error sending Telegram notification: {message}":[null,""],"join notification succeeded. Check your join clients to make sure it worked":[null,""],"Error sending join notification: {message}":[null,""]," with password":[null,""],"Registered and Tested growl successfully {growl_host}":[null,""],"Registration and Testing of growl failed {growl_host}":[null,""],"Test prowl notice sent successfully":[null,""],"Test prowl notice failed":[null,""],"Boxcar2 notification succeeded. Check your Boxcar2 clients to make sure it worked":[null,""],"Error sending Boxcar2 notification":[null,""],"Pushover notification succeeded. Check your Pushover clients to make sure it worked":[null,""],"Error sending Pushover notification":[null,""],"Key verification successful":[null,""],"Unable to verify key":[null,""],"Tweet successful, check your twitter to make sure it worked":[null,""],"Error sending tweet":[null,""],"Please enter a valid account sid":[null,""],"Please enter a valid auth token":[null,""],"Please enter a valid phone sid":[null,""],"Please format the phone number as \"+1-###-###-####\"":[null,""],"Authorization successful and number ownership verified":[null,""],"Error sending sms":[null,""],"Slack message successful":[null,""],"Slack message failed":[null,""],"Discord message successful":[null,""],"Discord message failed":[null,""],"Test KODI notice sent successfully to {kodi_host}":[null,""],"Test KODI notice failed to {kodi_host}":[null,""],"Successful test notice sent to Plex Home Theater ... {plex_clients}":[null,""],"Test failed for Plex Home Theater ... {plex_clients}":[null,""],"Tested Plex Home Theater(s)":[null,""],"Successful test of Plex Media Server(s) ... {plex_servers}":[null,""],"Test failed, No Plex Media Server host specified":[null,""],"Test failed for Plex Media Server(s) ... {plex_servers}":[null,""],"Tested Plex Media Server host(s)":[null,""],"Tried sending desktop notification via libnotify":[null,""],"Test notice sent successfully to {emby_host}":[null,""],"Test notice failed to {emby_host}":[null,""],"Successfully started the scan update":[null,""],"Test failed to start the scan update":[null,""],"Test notice sent successfully to {nmj2_host}":[null,""],"Test notice failed to {nmj2_host}":[null,""],"Trakt Authorized":[null,""],"Trakt Not Authorized!":[null,""],"Test email sent successfully! Check inbox.":[null,""],"ERROR: {last_error}":[null,""],"Test NMA notice sent successfully":[null,""],"Test NMA notice failed":[null,""],"Pushalot notification succeeded. Check your Pushalot clients to make sure it worked":[null,""],"Error sending Pushalot notification":[null,""],"Pushbullet notification succeeded. Check your device to make sure it worked":[null,""],"Error sending Pushbullet notification":[null,""],"Status":[null,"狀態"],"Restarting SickRage":[null,"重新啟動 SickRage"],"Update Failed":[null,""],"Update wasn't successful, not restarting. Check your log for more information.":[null,""],"Checking out branch":[null,""],"Already on branch":[null,""],"Invalid show ID: {show}":[null,""],"Show not in show list":[null,""],"Edit":[null,"編輯"],"This show is in the process of being downloaded - the info below is incomplete.":[null,""],"The information on this page is in the process of being updated.":[null,""],"The episodes below are currently being refreshed from disk":[null,""],"Currently downloading subtitles for this show":[null,""],"This show is queued to be refreshed.":[null,""],"This show is queued and awaiting an update.":[null,""],"This show is queued and awaiting subtitles download.":[null,""],"Resume":[null,"繼續"],"Pause":[null,"暫停"],"Remove":[null,"移除"],"Re-scan files":[null,"重新掃描檔案"],"Force Full Update":[null,"強制完整更新"],"Update show in KODI":[null,""],"Update show in Emby":[null,""],"Hide specials":[null,""],"Show specials":[null,""],"Preview Rename":[null,"預覽重命名"],"Download Subtitles":[null,"下載字幕"],"No scene exceptions":[null,""],"Invalid show ID":[null,""],"Unable to find the specified show":[null,""],"Unable to retreive Fansub Groups from AniDB.":[null,""],"Edit Show":[null,"編輯節目"],"Unable to refresh this show: {error}":[null,""],"New location <tt>{location}</tt> does not exist":[null,""],"Unable to update show: {error}":[null,""],"Unable to force an update on scene exceptions of the show.":[null,""],"Unable to force an update on scene numbering of the show.":[null,""],"{num_errors:d} error{plural} while saving changes:":[null,""],"{show_name} has been {paused_resumed}":[null,""],"resumed":[null,""],"paused":[null,""],"{show_name} has been {deleted_trashed} {was_deleted}":[null,""],"deleted":[null,""],"trashed":[null,""],"(media untouched)":[null,""],"(with all related media)":[null,""],"Unable to refresh this show.":[null,""],"Unable to update this show.":[null,""],"Library update command sent to KODI host(s)): {kodi_hosts}":[null,""],"Unable to contact one or more KODI host(s)): {kodi_hosts}":[null,""],"Library update command sent to Plex Media Server host: {plex_server}":[null,""],"Unable to contact Plex Media Server host: {plex_server}":[null,""],"Library update command sent to Emby host: {emby_host}":[null,""],"Unable to contact Emby host: {emby_host}":[null,""],"You must specify a show and at least one episode":[null,""],"Invalid status":[null,""],"Backlog was automatically started for the following seasons of <b>{show_name}</b>":[null,""],"Season":[null,""],"Backlog started":[null,""],"Retrying Search was automatically started for the following season of <b>{show_name}</b>":[null,""],"Retry Search started":[null,""],"You must specify a show":[null,""],"Can't rename episodes when the show dir is missing.":[null,""],"New subtitles downloaded: {new_subtitle_languages}":[null,""],"No subtitles downloaded":[null,""],"IRC":[null,"IRC"],"Could not load news from the repo. [Click here for news.md])({news_url})":[null,""],"The was a problem connecting to github, please refresh and try again":[null,""],"Could not load changes from the repo. [Click here for CHANGES.md]({changes_url})":[null,""],"Changelog":[null,"更新日誌"],"Post Processing":[null,"檔案後置處理"],"Add Shows":[null,"加入節目"],"No folders selected.":[null,""],"New Show":[null,"新節目"],"Trending Shows":[null,""],"Popular Shows":[null,"熱門節目"],"Most Anticipated Shows":[null,""],"Most Collected Shows":[null,""],"Most Watched Shows":[null,""],"Most Played Shows":[null,""],"Recommended Shows":[null,""],"New Shows":[null,"新節目"],"Season Premieres":[null,"當季首播"],"Existing Show":[null,"已有的節目資料"],"No root directories setup, please go back and add one.":[null,""],"Show added":[null,""],"Adding the specified show {show_name}":[null,""],"Missing params, no Indexer ID or folder: {show_to_add} and {root_dir}/{show_path}":[null,""],"Unknown error. Unable to add show due to problem with show selection.":[null,""],"Unable to add show":[null,""],"Folder {show_dir} exists already":[null,""],"Unable to create the folder {show_dir}, can't add the show":[null,""],"Adding the specified show into {show_dir}":[null,""],"Shows Added":[null,""],"Automatically added {num_shows} from their existing metadata files":[null,""],"Mass Update":[null,"批量更新"],"Episode Overview":[null,"節目總覽"],"Missing Subtitles":[null,"缺少字幕"],"Backlog Overview":[null,"擷取搜尋總覽"],"Mass Edit":[null,"批量編輯"],"Unable to update show: {excption_format}":[null,""],"Unable to refresh show {show_name}: {excption_format}":[null,""],"Errors encountered":[null,""],"Updates":[null,""],"Refreshes":[null,""],"Renames":[null,""],"Subtitles":[null,"字幕"],"The following actions were queued":[null,""],"Failed Downloads":[null,"失敗的下載"],"Manage Searches":[null,"搜尋進度管理"],"Backlog search started":[null,""],"Daily search started":[null,""],"Find propers search started":[null,""],"Subtitle search started":[null,""],"Remove Selected":[null,""],"Clear History":[null,"清除記錄"],"Trim History":[null,""],"Selected history entries removed":[null,""],"History cleared":[null,""],"Removed history entries older than 30 days":[null,""],"General":[null,"一般設定"],"Backup/Restore":[null,"備份/還原"],"Search Settings":[null,"搜尋設定"],"Search Providers":[null,"搜尋提供者"],"Subtitles Settings":[null,"字幕設定"],"Notifications":[null,"訊息通知"],"Anime":[null,"動漫"],"SickRage Configuration":[null,"SickRage 設定"],"Config - Shares":[null,""],"Windows Shares Configuration":[null,""],"Saved Shares":[null,""],"Your Windows share settings have been saved":[null,""],"Config - General":[null,"設定 - 一般"],"General Configuration":[null,"一般設定"],"Saved Defaults":[null,""],"Your \"add show\" defaults have been set to your current selections.":[null,""],"Unable to create directory {directory}, log directory not changed.":[null,""],"Unable to create directory {directory}, https cert directory not changed.":[null,""],"Unable to create directory {directory}, https key directory not changed.":[null,""],"Error(s) Saving Configuration":[null,""],"Configuration Saved":[null,""],"Config - Backup/Restore":[null,"設定 - 備份/還原"],"Config - Episode Search":[null,"設定 - 影集搜尋"],"Config - Post Processing":[null,"設定 - 抓取後檔案處理"],"Unpacking Not Supported, disabling unpack setting":[null,""],"You tried saving an invalid normal naming config, not saving your naming settings":[null,""],"You tried saving an invalid anime naming config, not saving your naming settings":[null,""],"Config - Providers":[null,"設定 - 影集資訊提供者"],"No Provider Name specified":[null,""],"No Provider Url specified":[null,""],"No Provider Api key specified":[null,""],"Config - Notifications":[null,"設定 - 訊息通知"],"Config - Subtitles":[null,"設定 - 字幕"],"Config - Anime":[null,"設定 - 動漫專用設定"],"Clear Errors":[null,""],"Clear Warnings":[null,""],"Submit Errors":[null,"提交錯誤"],"Logs & Errors":[null,""],"Log File":[null,"記錄檔"],"Logs":[null,"紀錄檔"],"This is a test notification from SickRage":[null,""],"Choose Directory":[null,""],"Select log file folder location":[null,""],"Select CSS file":[null,""],"Select backup folder to save to":[null,""],"Select backup files to restore":[null,""],"Please fill out the necessary fields above.":[null,""],"<b>Step 1:</b> Confirm Authorization":[null,""],"Check blacklist name; the value needs to be a trakt slug":[null,""],"You must provide a recipient email address!":[null,""],"You didn't supply a Pushbullet api key":[null,""],"Don't forget to save your new pushbullet settings.":[null,""],"Select TV Download Directory":[null,""],"Select Unpack Directory":[null,""],"This pattern is invalid.":[null,""],"This pattern would be invalid without the folders, using it will force \"Season Folders\" on for all shows.":[null,""],"This pattern is valid.":[null,""],"Select .nzb black hole/watch location":[null,""],"Select .torrent black hole/watch location":[null,""],"Select .torrent download location":[null,""],"Minimum seeding time is":[null,""],"URL to your uTorrent client (e.g. http://localhost:8000)":[null,""],"Stop seeding when inactive for":[null,""],"URL to your Transmission client (e.g. http://localhost:9091)":[null,""],"URL to your Deluge client (e.g. http://localhost:8112)":[null,""],"IP or Hostname of your Deluge Daemon (e.g. scgi://localhost:58846)":[null,""],"URL to your Synology DS client (e.g. http://localhost:5000)":[null,""],"URL to your rTorrent client (e.g. scgi://localhost:5000 <br> or https://localhost/rutorrent/plugins/httprpc/action.php)":[null,""],"URL to your qBittorrent client (e.g. http://localhost:8080)":[null,""],"URL to your MLDonkey (e.g. http://localhost:4080)":[null,""],"URL to your putio client (e.g. http://localhost:8080)":[null,""],"<a herf=\"https://app.put.io/oauth/apps/new\" target=\"_blank\"> Create a new OAuth app for put.io</a>":[null,""],"Put.io Parent Folder":[null,""],"Put.io OAuth Token":[null,""],"Show Episodes":[null,""],"Hide Episodes":[null,""],"Select Show Location":[null,""],"Select Unprocessed Episode Folder":[null,""],"DELETED":[null,""],"Resume updating the log on this page.":[null,""],"Pause updating the log on this page.":[null,""],"searching {searchingFor}...":[null,""],"search timed out, try again or try another indexer":[null,""],"loading folders...":[null,""],"Loading...":[null,""],"You have reached this page by accident, please check the url.":[null,"一些意料之外的狀況帶你到這裡了(驚),請檢查網址"],"A mako error has occured.<br>\n If this happened during an update a simple page refresh may be the solution.<br>\n Mako errors that happen during updates may be a one time error if there were significant ui changes.":[null,""],"Show/Hide Error":[null,""],"Add New Show":[null,"加入新節目"],"For shows that you haven't downloaded yet, this option finds a show on theTVDB.com, creates a directory for it's episodes, and adds it to SickRage.":[null,"若是想加入一個你沒下載過的節目,使用這個選項將幫你從TVDB找到該節目的訊息,建立節目專用的影集資料夾,然後加入SickRage節目清單內"],"Add From Trakt Lists":[null,"從Trakt推薦清單加入"],"For shows that you haven't downloaded yet, this option lets you choose from a show from one of the Trakt lists to add to SickRage.":[null,"若是想加入一個你沒下載過的節目,使用這個選項將讓你從Trakt推薦清單中挑選節目,建立節目專用的影集資料夾,然後加入SickRage節目清單內"],"Add From IMDB's Popular Shows":[null,"從IMDB的熱播節目清單加入"],"View IMDB's list of the most popular shows. This feature uses IMDB's MOVIEMeter algorithm to identify popular TV Series.":[null,"此選項會列出IMDB的熱播清單(most popular shows),IMDB的熱播清單是透過MOVIEMeter 演算法產生熱播排名"],"Add Existing Shows":[null,"加入已存節目"],"Use this option to add shows that already have a folder created on your hard drive. SickRage will scan your existing metadata/episodes and add the show accordingly.":[null,"當你已經在儲存空間內存有某個節目時,使用這個選項將可讓SickRage掃描已存節目的資訊,並加入節目清單"],"Add Existing Show":[null,"加入已存節目"],"Manage Directories":[null,"管理資料夾"],"Customize Options":[null,"自訂選項"],"SickRage can add existing shows, using the current options, by using locally stored NFO/XML metadata to eliminate user interaction. If you would rather have SickRage prompt you to customize each show, then use the checkbox below.":[null,""],"Prompt me to set settings for each show":[null,"提示我為各個影集進行設定"],"Displaying folders within these directories which aren't already added to SickRage":[null,"顯示下面核選的資料夾中,尚未加入SickRage節目清單的節目資料夾"],"Submit":[null,""],"Find a show on theTVDB":[null,"從TBDV搜尋節目資訊"],"Show retrieved from existing metadata":[null,""],"All Indexers":[null,"所有資料索引來源"],"Search":[null,""],"This will only affect the language of the retrieved metadata file contents and episode filenames.":[null,"語言選項只會影響儲存的節目資訊語言以及節目各集名稱所使用的語言"],"This <b>DOES NOT</b> allow SickRage to download non-english TV episodes!":[null,"就算選了不是英文的選項,SickRage也<b>無法</b>抓取非英文節目"],"Pick the parent folder":[null,"選擇節目要存放的主資料夾"],"Pre-chosen Destination Folder":[null,"預先選定的目的地檔案夾"],"Customize options":[null,"自訂選項"],"Add Show":[null,""],"Skip Show":[null,""],"Sort By":[null,""],"Name":[null,"名稱"],"Original":[null,"資料提供者原始排序"],"Votes":[null,"使用者投票"],"Rating":[null,"評價"],"Rating > Votes":[null,"評價>投票"],"Sort Order":[null,"排序"],"Asc":[null,"最小(差/前)到最大(好/後)"],"Desc":[null,"最大(好/後)到最小(差/前)"],"Fetching of IMDB Data failed. Are you online?":[null,"取得 IMDB 資料失敗,網路不通?"],"Exception":[null,"例外情況"],"Select Trakt List":[null,"Trakt 清單種類"],"Most Anticipated":[null,"Most Anticipated"],"Trending":[null,"熱潮中"],"Popular":[null,"受歡迎"],"Most Watched":[null,"最多觀看"],"Most Played":[null,"最多撥放"],"Most Collected":[null,"最多收集"],"Recommended":[null,"推薦"],"Toggle navigation":[null,"切換瀏覽樣式"],"Profile":[null,"設定檔"],"JSONP":[null,"JSONP"],"Back to SickRage":[null,"回到 SickRage"],"Parameters":[null,"參數"],"Required":[null,"必要項目"],"Description":[null,"說明"],"Type":[null,"類型"],"Default value":[null,"預設值"],"Allowed values":[null,"允許的值"],"Playground":[null,""],"Clear":[null,"清除"],"Yes":[null,"是"],"No":[null,"否"],"season":[null,"季"],"episode":[null,"集"],"Python Version":[null,"Python 版本"],"SSL Version":[null,"SSL 版本"],"OS":[null,"作業系統"],"Locale":[null,""],"User":[null,"使用者"],"Program Folder":[null,"程式資料夾"],"Config File":[null,"設定檔"],"Database File":[null,"資料庫檔案"],"Cache Folder":[null,"快取檔案夾"],"Log Folder":[null,"記錄檔資料夾"],"Arguments":[null,"參數"],"Web Root":[null,""],"Website":[null,"網站"],"Wiki":[null,"Wiki"],"Source":[null,"來源"],"IRC Chat":[null,"IRC 聊天室"],"AnimeDB Settings":[null,"動畫DB 設置"],"Look & Feel":[null,"調整外觀"],"AniDB is non-profit database of anime information that is freely open to the public":[null,"AniDB 是非營利向公眾免費開放的動漫資訊資料庫"],"Enable":[null,"啟用"],"should SickRage use data from AniDB?":[null,""],"AniDB Username":[null,"AniDB 使用者名稱"],"username of your AniDB account":[null,""],"AniDB Password":[null,"AniDB 密碼"],"password of your AniDB account":[null,""],"AniDB MyList":[null,"AniDB MyList"],"do you want to add the PostProcessed episodes to the MyList?":[null,""],"Look and Feel":[null,"調整外觀"],"How should the anime functions show and behave.":[null,""],"Split show lists":[null,""],"separate anime and normal shows in groups":[null,""],"Split in tabs":[null,""],"use tabs for when splitting show lists":[null,""],"Restore":[null,""],"Backup your main database file and config.":[null,""],"Select the folder you wish to save your backup file to":[null,""],"Restore your main database file and config.":[null,""],"Select the backup file you wish to restore":[null,""],"Misc":[null,""],"Interface":[null,""],"Advanced Settings":[null,""],"Startup options. Indexer options. Log and show file locations.":[null,""],"Some options may require a manual restart to take effect.":[null,""],"Default Indexer Language":[null,""],"for adding shows and metadata providers":[null,""],"Launch browser":[null,""],"open the SickRage home page on startup":[null,""],"Initial page":[null,""],"Shows":[null,""],"when launching SickRage interface":[null,""],"Choose hour to update shows":[null,""],"with information such as next air dates, show ended, etc. Use 15 for 3pm, 4 for 4am etc.":[null,""],"note":[null,""],"minutes are randomized each time SickRage is started":[null,""],"Send to trash for actions":[null,""],"when using show \"Remove\" and delete files":[null,""],"on scheduled deletes of the oldest log files":[null,""],"selected actions use trash (recycle bin) instead of the default permanent delete":[null,""],"Log file folder location":[null,""],"Number of Log files saved":[null,""],"number of log files saved when rotating logs (default: 5) (REQUIRES RESTART)":[null,""],"Size of Log files saved":[null,""],"maximum size in MB of the log file (default: 1MB) (REQUIRES RESTART)":[null,""],"Use initial indexer set to":[null,""],"as the default selection when adding new shows":[null,""],"Timeout show indexer at":[null,""],"seconds of inactivity when finding new shows (default:20)":[null,""],"Show root directories":[null,""],"where the files of shows are located":[null,""],"Save Changes":[null,"儲存變更"],"Options for software updates.":[null,""],"Check software updates":[null,""],"and display notifications when updates are available. Checks are run on startup and at the frequency set below*":[null,""],"Automatically update":[null,""],"fetch and install software updates. Updates are run on startup and in the background at the frequency set below*":[null,""],"Check the server every*":[null,"每隔多久檢查一次伺服器:*"],"hours for software updates (default:1)":[null,"小時檢查一次伺服器 (預設 ︰ 1)"],"Notify on software update":[null,"在軟體有更新時通知"],"send a message to all enabled notifiers when SickRage has been updated":[null,"當 SickRage 完成軟體更新後,向所有已啟用的通知接收器發送消息"],"User Interface":[null,""],"Options for visual appearance.":[null,""],"Interface Language":[null,""],"System Language":[null,""],"for appearance to take effect, save then refresh your browser":[null,"要使新的外觀設定生效,請在儲存設定後重新整理頁面"],"Display theme":[null,"顯示主題"],"Dark":[null,""],"Light":[null,""],"Use a background image":[null,""],"use a custom image as background for SickRage":[null,""],"Background Path":[null,""],"Path to the background image":[null,""],"Show fanart in the background":[null,""],"on the show summary page":[null,"顯示在節目摘要"],"Fanart transparency":[null,""],"transparency of the fanart in the background":[null,""],"Use a custom stylesheet file":[null,""],"use a custom .css file to style SickRage (for advanced users)":[null,""],"Stylesheet File Path":[null,""],"Path to the stylesheet (.css) file":[null,""],"Show all seasons":[null,"顯示每一季"],"Sort with \"The\", \"A\", \"An\"":[null,"排序時考慮\"The\" \"A\" \"An\""],"include articles (\"The\", \"A\", \"An\") when sorting show lists":[null,"排序時考慮\"The\" \"A\" \"An\"等冠詞"],"Missed episodes range":[null,"顯示未擷取的影集天數範圍"],"set the range in days of the missed episodes in the Schedule page":[null,""],"Display fuzzy dates":[null,""],"move absolute dates into tooltips and display e.g. \"Last Thu\", \"On Tue\"":[null,""],"Trim zero padding":[null,""],"remove the leading number \"0\" shown on hour of day, and date of month":[null,""],"Date style":[null,""],"Use System Default":[null,""],"Time style":[null,""],"seconds are only shown on the History page":[null,""],"Timezone":[null,""],"Local":[null,""],"Network":[null,""],"display dates and times in either your timezone or the shows network timezone":[null,""],"use local timezone to start searching for episodes minutes after show ends (depends on your dailysearch frequency)":[null,""],"Download url":[null,""],"URL where the shows can be downloaded.":[null,""],"Web Interface":[null,""],"it is recommended that you enable a username and password to secure SickRage from being tampered with remotely.":[null,""],"these options require a manual restart to take effect.":[null,""],"API key":[null,""],"used to give 3rd party programs limited access to SickRage":[null,""],"you can try all the features of the API":[null,""],"here":[null,""],"HTTP logs":[null,""],"enable logs from the internal Tornado web server":[null,""],"HTTP username":[null,""],"set blank for no login":[null,""],"HTTP password":[null,""],"blank = no authentication":[null,""],"HTTP port":[null,""],"web port to browse and access SickRage (default:8081)":[null,""],"Notify on login":[null,""],"enable to be notified when a new login happens in webserver":[null,""],"Listen on IPv6":[null,""],"attempt binding to any available IPv6 address":[null,""],"Enable HTTPS":[null,""],"enable access to the web interface using a HTTPS address":[null,""],"HTTPS certificate":[null,""],"file name or path to HTTPS certificate":[null,""],"HTTPS key":[null,""],"file name or path to HTTPS key":[null,""],"Reverse proxy headers":[null,""],"accept the following reverse proxy headers (advanced)...":[null,""],"(X-Forwarded-For, X-Forwarded-Host, and X-Forwarded-Proto)":[null,""],"CPU throttling":[null,""],"Normal (default). High is lower and Low is higher CPU use":[null,""],"Anonymous redirect":[null,""],"backlink protection via anonymizer service, must end in \"?\"":[null,""],"Enable debug":[null,""],"enable debug logs":[null,""],"Verify SSL Certs":[null,""],"verify SSL Certificates (Disable this for broken SSL installs (Like QNAP))":[null,""],"No Restart":[null,""],"only shutdown when restarting SR":[null,""],"only select this when you have external software restarting SR automatically when it stops (like FireDaemon)":[null,""],"Encrypt passwords":[null,""],"in the <code>config.ini</code> file":[null,""],"warning":[null,""],"passwords must only contain":[null,""],"ASCII characters":[null,""],"Unprotected calendar":[null,""],"allow subscribing to the calendar without user and password":[null,""],"some services like Google Calendar only work this way":[null,""],"Google Calendar Icons":[null,""],"show an icon next to exported calendar events in Google Calendar":[null,""],"Proxy host":[null,""],"blank to disable or proxy to use when connecting to providers":[null,""],"also use global proxy setting for indexers (tvdb, xem, anidb, etc.)":[null,""],"Skip Remove Detection":[null,""],"skip detection of removed files":[null,""],"if disabled the episode will be set to the default deleted status":[null,""],"Default deleted episode status":[null,""],"define the status to be set for media file that has been deleted.":[null,""],"Archived option will keep previous downloaded quality":[null,""],"example: Downloaded (1080p WEB-DL) ==> Archived (1080p WEB-DL)":[null,""],"Options for github related features.":[null,""],"Branch version":[null,""],"error: No branches found.":[null,""],"select branch to use (restart required)":[null,""],"Authorization Type":[null,""],"Username and password":[null,""],"Personal access token":[null,""],"You must use a personal access token if you're using \"two-factor authentication\" on GitHub.":[null,""],"GitHub username":[null,""],"*** (REQUIRED FOR SUBMITTING ISSUES) ***":[null,""],"GitHub password":[null,""],"GitHub personal access token":[null,""],"Generate Token":[null,""],"Manage Tokens":[null,""],"GitHub remote for branch":[null,""],"access repo configured remotes (save then refresh browser)":[null,""],"default":[null,""],"origin":[null,""],"Git executable path":[null,""],"only needed if OS is unable to locate git from env":[null,""],"Git reset":[null,""],"removes untracked files and performs a hard reset on git branch automatically to help resolve update issues":[null,""],"Home Theater / NAS":[null,""],"Devices":[null,""],"Social":[null,""],"A free and open source cross-platform media center and home entertainment system software with a 10-foot user interface designed for the living-room TV.":[null,""],"send KODI commands?":[null,""],"Always on":[null,""],"log errors when unreachable?":[null,""],"Notify on snatch":[null,""],"send a notification when a download starts?":[null,""],"Notify on download":[null,""],"send a notification when a download finishes?":[null,""],"Notify on subtitle download":[null,""],"send a notification when subtitles are downloaded?":[null,""],"Update library":[null,""],"update KODI library when a download finishes?":[null,""],"Full library update":[null,""],"perform a full library update if update per-show fails?":[null,""],"Only update first host":[null,""],"only send library updates to the first active host?":[null,""],"KODI IP:Port":[null,""],"host running KODI (eg. 192.168.1.100:8080)":[null,""],"(multiple host strings must be separated by commas)":[null,""],"Username":[null,""],"username for your KODI server (blank for none)":[null,""],"Password":[null,""],"password for your KODI server (blank for none)":[null,""],"Click below to test.":[null,""],"Experience your media on a visually stunning, easy to use interface on your Mac connected to your TV. Your media library has never looked this good!":[null,""],"For sending notifications to Plex Home Theater (PHT) clients, use the KODI notifier with port <b>3005</b>.":[null,""],"send Plex Media Server library updates?":[null,""],"Plex Media Server Auth Token":[null,""],"auth token used by Plex":[null,""],"Update Library":[null,""],"update Plex Media Server library when a download finishes":[null,""],"Plex Media Server IP:Port":[null,""],"one or more hosts running Plex Media Server<br/>(eg. 192.168.1.1:32400, 192.168.1.2:32400)":[null,""],"HTTPS":[null,""],"use https for plex media server requests?":[null,""],"Click below to test Plex Media Server(s)":[null,""],"Test Plex Media Server":[null,""],"Plex Home Theater":[null,""],"send Plex Home Theater notifications?":[null,""],"Plex Home Theater IP:Port":[null,""],"one or more hosts running Plex Home Theater<br>(eg. 192.168.1.100:3000, 192.168.1.101:3000)":[null,""],"Click below to test Plex Home Theater(s)":[null,""],"Test Plex Home Theater":[null,""],"some Plex Home Theaters <b class=\"boldest\">do not</b> support notifications e.g. Plexapp for Samsung TVs":[null,""],"Emby":[null,""],"A home media server built using other popular open source technologies.":[null,""],"send update commands to Emby?":[null,""],"Emby IP:Port":[null,""],"host running Emby (eg. 192.168.1.100:8096)":[null,""],"Emby API Key":[null,""],"Networked Media Jukebox":[null,""],"The Networked Media Jukebox, or NMJ, is the official media jukebox interface made available for the Popcorn Hour 200-series.":[null,""],"send update commands to NMJ?":[null,""],"Popcorn IP address":[null,""],"IP address of Popcorn 200-series (eg. 192.168.1.100)":[null,""],"Get settings":[null,""],"Get Settings":[null,""],"the Popcorn Hour device must be powered on and NMJ running.":[null,""],"NMJ database":[null,""],"automatically filled via the 'Get Settings' button.":[null,""],"NMJ mount url":[null,""],"Networked Media Jukebox v2":[null,""],"The Networked Media Jukebox, or NMJv2, is the official media jukebox interface made available for the Popcorn Hour 300 & 400-series.":[null,""],"send update commands to NMJv2?":[null,""],"IP address of Popcorn 300/400-series (eg. 192.168.1.100)":[null,""],"Database location":[null,""],"Database instance":[null,""],"adjust this value if the wrong database is selected.":[null,""],"Find database":[null,""],"Find Database":[null,""],"the Popcorn Hour device must be powered on.":[null,""],"NMJv2 database":[null,""],"automatically filled via the 'Find Database' buttons.":[null,""],"Synology":[null,""],"The Synology DiskStation NAS.":[null,""],"Synology Indexer is the daemon running on the Synology NAS to build its media database.":[null,""],"send Synology notifications?":[null,""],"requires SickRage to be running on your Synology NAS.":[null,""],"Synology Indexer":[null,""],"Synology Notifier is the notification system of Synology DSM":[null,""],"send notifications to the Synology Notifier?":[null,""],"pyTivo":[null,""],"pyTivo is both an HMO and GoBack server. This notifier will load the completed downloads to your Tivo.":[null,""],"send notifications to pyTivo?":[null,""],"requires the downloaded files to be accessible by pyTivo.":[null,""],"pyTivo IP:Port":[null,""],"host running pyTivo (eg. 192.168.1.1:9032)":[null,""],"pyTivo share name":[null,""],"value used in pyTivo Web Configuration to name the share.":[null,""],"Tivo name":[null,""],"(Messages & Settings > Account & System Information > System Information > DVR name)":[null,""],"Growl":[null,""],"A cross-platform unobtrusive global notification system.":[null,""],"send Growl notifications?":[null,""],"Growl IP:Port":[null,""],"host running Growl (eg. 192.168.1.100:23053)":[null,""],"may leave blank if SickRage is on the same host.":[null,""],"otherwise Growl <b>requires</b> a password to be used.":[null,""],"Click below to register and test Growl, this is required for Growl notifications to work.":[null,""],"Register Growl":[null,""],"Prowl":[null,""],"A Growl client for iOS.":[null,""],"send Prowl notifications?":[null,""],"Prowl Message Title":[null,""],"Global Prowl API key(s)":[null,""],"Prowl API(s) listed here, separated by commas if applicable, will<br> receive notifications for <b>all</b> shows. Your Prowl API key is available at:":[null,""],"(this field may be blank except when testing.)":[null,""],"Show notification list":[null,""],"-- Select a Show --":[null,""],"Configure per-show notifications here by entering Prowl API key(s), separated by commas, '\n 'after selecting a show in the drop-down box. Be sure to activate the 'Save for this show' '\n 'button below after each entry.":[null,""],"Save for this show":[null,""],"Prowl priority":[null,""],"Very Low":[null,""],"Moderate":[null,""],"Normal":[null,""],"High":[null,""],"Emergency":[null,""],"priority of Prowl messages from SickRage.":[null,""],"Libnotify":[null,""],"The standard desktop notification API for Linux/*nix systems. This notifier will only function if the pynotify module is installed (Ubuntu/Debian package <a href=\"apt:python-notify\">python-notify</a>).":[null,""],"send Libnotify notifications?":[null,""],"Pushover":[null,""],"Pushover makes it easy to send real-time notifications to your Android and iOS devices.":[null,""],"send Pushover notifications?":[null,""],"Pushover key":[null,""],"user key of your Pushover account":[null,""],"Pushover API key":[null,""],"click here":[null,""]," to create a Pushover API key":[null,""],"Pushover devices":[null,""],"comma separated list of pushover devices you want to send notifications to":[null,""],"Pushover notification sound":[null,""],"Bike":[null,""],"Bugle":[null,""],"Cash Register":[null,""],"Classical":[null,""],"Cosmic":[null,""],"Falling":[null,""],"Gamelan":[null,""],"Incoming":[null,""],"Intermission":[null,""],"Magic":[null,""],"Mechanical":[null,""],"Piano Bar":[null,""],"Siren":[null,""],"Space Alarm":[null,""],"Tug Boat":[null,""],"Alien Alarm (long)":[null,""],"Climb (long)":[null,""],"Persistent (long)":[null,""],"Pushover Echo (long)":[null,""],"Up Down (long)":[null,""],"None (silent)":[null,""],"Device specific":[null,""],"choose notification sound to use":[null,""],"Pushover priority":[null,""],"Choose priority to use":[null,""],"Boxcar 2":[null,""],"Read your messages where and when you want them!":[null,""],"send Boxcar notifications?":[null,""],"Boxcar2 access token":[null,""],"access token for your Boxcar account.":[null,""],"NMA":[null,""],"Notify My Android":[null,""],"Notify My Android is a Prowl-like Android App and API that offers an easy way to send notifications from your application directly to your Android device.":[null,""],"send NMA notifications?":[null,""],"NMA API key":[null,""],"(multiple keys must be separated by commas, up to a maximum of 5)":[null,""],"NMA priority":[null,""],"priority of NMA messages from SickRage.":[null,""],"Pushalot":[null,""],"Pushalot is a platform for receiving custom push notifications to connected devices running Windows Phone or Windows 8.":[null,""],"send Pushalot notifications ?":[null,""],"Pushalot authorization token":[null,""],"authorization token of your Pushalot account.":[null,""],"Pushbullet":[null,""],"Pushbullet is a platform for receiving custom push notifications to connected devices running Android/iOS and desktop browsers such as Chrome, Firefox or Opera.":[null,""],"send Pushbullet notifications?":[null,""],"Pushbullet API key":[null,""],"API key of your Pushbullet account":[null,""],"Pushbullet devices":[null,""],"Update device list":[null,""],"Pushbullet channels":[null,""],"Free Mobile":[null,""],"Free Mobile is a famous French cellular network provider.<br> It provides to their customer a free SMS API.":[null,""],"send SMS notifications?":[null,""],"send a SMS when a download starts?":[null,""],"send a SMS when a download finishes?":[null,""],"send a SMS when subtitles are downloaded?":[null,""],"Free Mobile customer ID":[null,""],"it's your Free Mobile customer ID (8 digits)":[null,""],"Free Mobile API key":[null,""],"find your API key in your customer portal.":[null,""],"Click below to test your settings.":[null,""],"Telegram":[null,""],"Telegram is a cloud-based instant messaging service.":[null,""],"send Telegram notifications?":[null,""],"send a message when a download starts?":[null,""],"send a message when a download finishes?":[null,""],"send a message when subtitles are downloaded?":[null,""],"User/group ID":[null,""],"contact @myidbot on Telegram to get an ID":[null,""],"Bot API token":[null,""],"contact @BotFather on Telegram to set up one":[null,""],"Join":[null,""],"Join all of your devices together!":[null,""],"send Join notifications?":[null,""],"Device ID":[null,""],"per device specific id":[null,""]," to create a Join API key":[null,""],"Twilio":[null,""],"Twilio is a webservice API that allows you to communicate directly with a mobile number. This notifier will send a text directly to your mobile device.":[null,""],"should SickRage text your mobile device?":[null,""],"Twilio Account SID":[null,""],"account SID of your Twilio account.":[null,""],"Twilio Auth Token":[null,""],"Twilio Phone SID":[null,""],"phone SID that you would like to send the sms from":[null,""],"Your phone number":[null,""],"phone number that will receive the sms. Please use the format +1-###-###-####":[null,""],"Twitter":[null,""],"A social networking and microblogging service, enabling its users to send and read other users' messages called tweets.":[null,""],"should SickRage post tweets on Twitter?":[null,""],"you may want to use a secondary account.":[null,""],"send direct message":[null,""],"send a notification via Direct Message, not via status update":[null,""],"send DM to":[null,""],"Twitter account to send Direct Messages to (must follow you)":[null,""],"Step One":[null,""],"Request Authorization":[null,""],"Click the \"Request Authorization\" button.<br> This will open a new page containing an auth key.<br> <b>note:</b> if nothing happens check your popup blocker.":[null,""],"Step Two":[null,""],"Enter the key Twitter gave you below, and click \"Verify Key\".":[null,""],"Trakt":[null,""],"Trakt helps keep a record of what TV shows and movies you are watching. Based on your favorites, Trakt recommends additional shows and movies you'll enjoy!":[null,""],"send Trakt.tv notifications?":[null,""],"username of your Trakt account.":[null,""],"Trakt PIN":[null,""],"Get Trakt PIN":[null,""],"PIN code to authorize SickRage to access Trakt on your behalf.":[null,""],"API Timeout":[null,""],"seconds to wait for Trakt API to respond. (Use 0 to wait forever)":[null,""],"Default indexer":[null,""],"Sync libraries":[null,""],"sync your SickRage show library with your trakt show library.":[null,""],"Remove Episodes From Collection":[null,""],"remove an episode from your Trakt Collection if it is not in your SickRage Library.":[null,""],"Sync watchlist":[null,""],"sync your SickRage show watchlist with your trakt show watchlist (either Show and Episode).":[null,""],"episode will be added on watch list when wanted or snatched and will be removed when downloaded ":[null,""],"Watchlist add method":[null,""],"Skip All":[null,""],"Download Pilot Only":[null,""],"Get whole show":[null,""],"method in which to download episodes for new shows.":[null,""],"Remove episode":[null,""],"remove an episode from your watchlist after it is downloaded.":[null,""],"Remove series":[null,""],"remove the whole series from your watchlist after any download.":[null,""],"Remove watched show":[null,""],"remove the show from sickrage if it's ended and completely watched":[null,""],"Start paused":[null,""],"shows grabbed from your trakt watchlist start paused.":[null,""],"Trakt blackList name":[null,""],"name (slug) of list on Trakt for blacklisting show on 'Add Trending Show' & 'Add Recommended Shows' pages":[null,""],"Email":[null,""],"Allows configuration of email notifications on a per show basis.":[null,""],"send email notifications?":[null,""],"SMTP host":[null,""],"hostname of your SMTP email server.":[null,""],"SMTP port":[null,""],"port number used to connect to your SMTP host.":[null,""],"SMTP from":[null,""],"sender email address, some hosts require a real address.":[null,""],"Use TLS":[null,""],"check to use TLS encryption.":[null,""],"SMTP user":[null,""],"(optional) your SMTP server username.":[null,""],"SMTP password":[null,""],"(optional) your SMTP server password.":[null,""],"Global email list":[null,""],"email addresses listed here, separated by commas if applicable, will<br> receive notifications for <b>all</b> shows.":[null,""],"(This field may be blank except when testing.)":[null,""],"Email Subject":[null,""],"use a custom subject for some privacy protection?":[null,""],"(leave blank for the default SickRage subject)":[null,""],"configure per-show notifications here by entering email address(es), separated by commas,":[null,""],"after selecting a show in the drop-down box. Be sure to activate the 'Save for this show'":[null,""],"button below after each entry.":[null,""],"Slack":[null,""],"Slack brings all your communication together in one place. It's real-time messaging, archiving and search for modern teams.":[null,""],"should SickRage post messages on Slack?":[null,""],"Slack Incoming Webhook":[null,""],"Discord":[null,""],"All-in-one voice and text chat for gamers that's free, secure, and works on both your desktop and phone.":[null,""],"Should SickRage post messages on Discord?":[null,""],"Discord Incoming Webhook":[null,""],"Create webhook under channel settings.":[null,""],"Discord Bot Name":[null,""],"Blank will use webhook default Name.":[null,""],"Discord Avatar URL":[null,""],"Blank will use webhook default Avatar.":[null,""],"Discord TTS":[null,""],"Send notifications using text-to-speech":[null,""],"Post-Processing":[null,""],"Episode Naming":[null,""],"Metadata":[null,""],"Settings that dictate how SickRage should process completed downloads.":[null,""],"enable the automatic post processor to scan and process any files in your Post Processing Dir":[null,""],"do not use if you use an external Post Processing script":[null,""],"Post Processing Dir":[null,""],"the folder where your download client puts the completed TV downloads.":[null,""],"please use seperate downloading and completed folders in your download client if possible.":[null,""],"Processing Method":[null,""],"what method should be used to put files into the library?":[null,""],"if you keep seeding torrents after they finish, please avoid the 'move' processing method to prevent errors.":[null,""],"Auto Post-Processing Frequency":[null,""],"time in minutes to check for new files to auto post-process (min 10)":[null,""],"Postpone post processing":[null,""],"wait to process a folder if sync files are present.":[null,""],"Sync File Extensions":[null,""],"comma seperated list of extensions or filename globs SickRage ignores when Post Processing":[null,""],"Rename Episodes":[null,""],"rename episode using the Episode Naming settings?":[null,""],"Create missing show directories":[null,""],"create missing show directories when they get deleted":[null,""],"Add shows without directory":[null,""],"add shows without creating a directory (not recommended)":[null,""],"Move associated files":[null,""],"move associated (srt/srr/sfv/etc) files while post processing?":[null,""],"Rename .nfo file":[null,""],"rename the original .nfo file to .nfo-orig to avoid conflicts?":[null,""],"Associated file extensions":[null,""],"comma separated list of associated file extensions SickRage should keep while post processing.":[null,""],"leaving it empty means no associated files will be post processed":[null,""],"Delete non associated files":[null,""],"delete non associated files while post processing?":[null,""],"Change File Date":[null,""],"set last modified filedate to the date that the episode aired?":[null,""],"some systems may ignore this feature.":[null,""],"Timezone for File Date":[null,""],"local":[null,""],"network":[null,""],"what timezone should be used to change File Date?":[null,""],"Unpack":[null,""],"What to do with archived releases found in your <i>TV Download Dir</i>?":[null,""],"Ignore (do not process contents)":[null,""],"Unpack (process contents)":[null,""],"Treat as video (process archive as-is)":[null,""],"'Unpack' only works with RAR archives":[null,""],"Windows":[null,""],"WinRar is required on windows":[null,""],"Unpack Directory":[null,""],"Choose a path to unpack files, leave blank to unpack in download dir":[null,""],"Unrar Location":[null,""],"add the path to unrar if it is not in the system path":[null,""],"Alternate Unrar Tool":[null,""],"add the path to an alternate unrar tool if it is not in the system path":[null,""],"Delete RAR contents":[null,""],"delete content of RAR files, even if Process Method not set to move?":[null,""],"only working with RAR archive":[null,""],"Don't delete empty folders":[null,""],"leave empty folders when Post Processing?":[null,""],"can be overridden using manual Post Processing":[null,""],"Follow symbolic-links":[null,""],"follow down symbolic links in download directory?":[null,""],"<b>EXPERTS ONLY.</b><br>Enable only if you know what <b>circular symbolic links</b> are,<br>and can <b>verify that you have none</b>.":[null,""],"Use icacls":[null,""],"Windows only":[null,""],"sets video permissions after using the move method in post processing":[null,""],"Extra Scripts":[null,""],"see":[null,""],"for script arguments description and usage.":[null,""],"How SickRage will name and sort your episodes.":[null,""],"Name Pattern":[null,""],"Toggle Naming Legend":[null,""],"don't forget to add quality pattern. Otherwise after post-processing the episode will have UNKNOWN quality":[null,""],"Meaning":[null,""],"Pattern":[null,""],"Result":[null,""],"Use lower case if you want lower case names (eg. %sn, %e.n, %q_n etc)":[null,""],"Show Name":[null,""],"Show.Name":[null,""],"Show_Name":[null,""],"Season Number":[null,""],"XEM Season Number":[null,""],"Episode Number":[null,""],"XEM Episode Number":[null,""],"Episode Name":[null,""],"Episode.Name":[null,""],"Episode_Name":[null,""],"Air Date":[null,""],"Post-Processing Date":[null,""],"Quality":[null,""],"Scene Quality":[null,""],"Release Name":[null,""],"SickRage' is used in place of RLSGROUP if it could not be properly detected":[null,""],"Release Group":[null,""],"If episode is proper/repack add 'proper' to name.":[null,""],"Release Type":[null,""],"Multi-Episode Style":[null,""],"Single-EP Sample":[null,""],"Multi-EP sample":[null,""],"Strip Show Year":[null,""],"remove the TV show's year when renaming the file?":[null,""],"only applies to shows that have year inside parentheses":[null,""],"Custom Air-By-Date":[null,""],"name air-by-date shows differently than regular shows?":[null,""],"Toggle ABD Naming Legend":[null,""],"Regular Air Date":[null,""],"Year":[null,""],"Month":[null,""],"Day":[null,""],"Multi-EP style is ignored":[null,""],"Custom Sports":[null,""],"name sports shows differently than regular shows?":[null,""],"Toggle Sports Naming Legend":[null,""],"Sports Air Date":[null,""],"Custom Anime":[null,""],"name anime shows differently than regular shows?":[null,""],"Toggle Anime Naming Legend":[null,""],">XEM Season Number":[null,""],"Single-EP Anime Sample":[null,""],"Multi-EP Anime sample":[null,""],"Add Absolute Number":[null,""],"add the absolute number to the season/episode format?":[null,""],"only applies to anime. (eg. S15E45 - 310 vs S15E45)":[null,""],"Only Absolute Number":[null,""],"replace season/episode format with absolute number":[null,""],"only applies to anime.":[null,""],"No Absolute Number":[null,""],"don't include the absolute number":[null,""],"The data associated to the data. These are files associated to a TV show in the form of images and text that, when supported, will enhance the viewing experience.":[null,""],"Metadata Type":[null,""],"toggle metadata options that you wish to be created":[null,""],"multiple targets may be used":[null,""],"Select Metadata":[null,""],"Provider Priorities":[null,""],"Provider Options":[null,""],"Configure Custom Newznab Providers":[null,""],"Configure Custom Torrent Providers":[null,""],"Check off and drag the providers into the order you want them to be used.":[null,""],"At least one provider is required but two are recommended.":[null,""],"Torrent providers can be toggled in ":[null,""],"Provider does not support backlog searches at this time.":[null,""],"Provider is <b>NOT WORKING</b>.":[null,""],"Configure individual provider settings here.":[null,""],"Check with provider's website on how to obtain an API key if needed.":[null,""],"Configure provider":[null,""],"no providers available to configure.":[null,""],"URL":[null,""],"Enable daily searches":[null,""],"enable provider to perform daily searches.":[null,""],"Enable backlog searches":[null,""],"enable provider to perform backlog searches.":[null,""],"Season search mode":[null,""],"when searching for complete seasons you can choose to have it look for season packs only, or choose to have it build a complete season from just single episodes.":[null,""],"season packs only.":[null,""],"episodes only.":[null,""],"Enable fallback":[null,""],"when searching for a complete season depending on search mode you may return no results, this helps by restarting the search using the opposite search mode.":[null,""],"Custom URL":[null,""],"the URL should include the protocol (and port if applicable). Examples: http://192.168.1.4/ or http://localhost:3000/":[null,""],"Api key":[null,""],"Digest":[null,""],"Hash":[null,""],"Passkey":[null,""],"Cookies":[null,""],"example: uid=1234;pass=567845439634987<br>note: uid and pass are not your username/password.<br>use DevTools or Firebug to get these values after logging in on your browser.":[null,""],"Pin":[null,""],"Seed ratio":[null,""],"stop transfer when ratio is reached<br>(-1 SickRage default to seed forever, or leave blank for downloader default)":[null,""],"Minimum seeders":[null,""],"Minimum leechers":[null,""],"Confirmed download":[null,""],"only download torrents from trusted or verified uploaders ?":[null,""],"Ranked torrents":[null,""],"only download ranked torrents (trusted releases)":[null,""],"English torrents":[null,""],"only download english torrents, or torrents containing english subtitles":[null,""],"For Spanish torrents":[null,""],"ONLY search on this provider if show info is defined as \"Spanish\" (avoid provider's use for VOS shows)":[null,""],"Sorting results by":[null,""],"Freeleech":[null,""],"only download <b>\"FreeLeech\"</b> torrents.":[null,""],"Category":[null,""],"select torrent with Italian subtitle":[null,""],"Configure Custom<br>Newznab Providers":[null,""],"Add and setup or remove custom Newznab providers.":[null,""],"Select provider":[null,""],"-- add new provider --":[null,""],"Provider name":[null,""],"Site URL":[null,""],"Newznab search categories":[null,""],"select your Newznab categories on the left, and click the \"update categories\" button to use them for searching.) <b>don't forget to to save the form!":[null,""],"Update Categories":[null,""],"Add":[null,""],"Delete":[null,""],"Add and setup or remove custom RSS providers.":[null,""],"RSS URL":[null,""],"Search element":[null,""],"eg: title":[null,""],"Episode Search":[null,""],"NZB Search":[null,""],"Torrent Search":[null,""],"How to manage searching with":[null,""],"Randomize Providers":[null,""],"randomize the provider search order instead of going in order of placement":[null,""],"Download propers":[null,""],"replace original download with \"Proper\" or \"Repack\" if nuked":[null,""],"Check propers every":[null,""],"24 hours":[null,""],"4 hours":[null,""],"90 mins":[null,""],"45 mins":[null,""],"15 mins":[null,""],"Backlog search day(s)":[null,""],"number of day(s) that the \"Forced Backlog Search\" will cover (e.g. 7 Days)":[null,""],"Backlog search frequency":[null,""],"time in minutes between searches (min.":[null,""],"Daily search frequency":[null,""],"Usenet retention":[null,""],"age limit in days for usenet articles to be used (e.g. 500)":[null,""],"Ignore words":[null,""],"results with one or more word from this list will be ignored<br>separate words with a comma, e.g. \"word1,word2,word3\"":[null,""],"Require words":[null,""],"results with no word from this list will be ignored<br>separate words with a comma, e.g. \"word1,word2,word3\"":[null,""],"Trackers list":[null,""],"trackers that will be added to magnets without trackers<br>separate trackers with a comma, e.g. \"tracker1,tracker2,tracker3\"":[null,""],"Ignore language names in subbed results":[null,""],"ignore subbed releases based on language names <br>\n Example: \"dk\" will ignore words: dksub, dksubs, dksubbed, dksubed <br>\n separate languages with a comma, e.g. \"lang1,lang2,lang3":[null,""],"Allow high priority":[null,""],"set downloads of recently aired episodes to high priority":[null,""],"Use Failed Downloads":[null,""],"use Failed Download Handling?":[null,""],"will only work with snatched/downloaded episodes after enabling this":[null,""],"Delete Failed":[null,""],"delete files left over from a failed download?":[null,""],"this only works if Use Failed Downloads is enabled.":[null,""],"How to handle NZB search results.":[null,""],"Search NZBs":[null,""],"enable NZB search providers":[null,""],"Send .nzb files to":[null,""],"SABnzbd server URL":[null,""],"URL to your SABnzbd server (e.g. http://localhost:8080/)":[null,""],"SABnzbd username":[null,""],"(blank for none)":[null,""],"SABnzbd password":[null,""],"SABnzbd API key":[null,""],"locate at... SABnzbd Config -> General -> API Key":[null,""],"Use SABnzbd category":[null,""],"add downloads to this category (e.g. TV)":[null,""],"Use SABnzbd category (backlog episodes)":[null,""],"add downloads of old episodes to this category (e.g. TV)":[null,""],"Use SABnzbd category for anime":[null,""],"add anime downloads to this category (e.g. anime)":[null,""],"Use SABnzbd category for anime (backlog episodes)":[null,""],"add anime downloads of old episodes to this category (e.g. anime)":[null,""],"Use forced priority":[null,""],"enable to change priority from HIGH to FORCED":[null,""],"Black hole folder location":[null,""],"<b>.nzb</b> files are stored at this location for external software to find and use":[null,""],"Connect using HTTPS":[null,""],"enable Secure control in NZBGet and set the correct Secure Port here":[null,""],"NZBget host:port":[null,""],"(e.g. localhost:6789)":[null,""],"NZBget RPC host name and port number (not NZBgetweb!)":[null,""],"NZBget username":[null,""],"locate in nzbget.conf (default:nzbget)":[null,""],"NZBget password":[null,""],"locate in nzbget.conf (default:tegbzn6789)":[null,""],"Use NZBget category":[null,""],"send downloads marked this category (e.g. TV)":[null,""],"Use NZBget category (backlog episodes)":[null,""],"send downloads of old episodes marked this category (e.g. TV)":[null,""],"Use NZBget category for anime":[null,""],"send anime downloads marked this category (e.g. anime)":[null,""],"Use NZBget category for anime (backlog episodes)":[null,""],"send anime downloads of old episodes marked this category (e.g. anime)":[null,""],"NZBget priority":[null,""],"Very low":[null,""],"Low":[null,""],"Very high":[null,""],"Force":[null,""],"priority for daily snatches (no backlog)":[null,""],"Torrent host:port":[null,""],"URL to your Synology DSM (e.g. http://localhost:5000/)":[null,""],"Client username":[null,""],"Client password":[null,""],"Downloaded files location":[null,""],"where Synology Download Station will save downloaded files (blank for client default)":[null,""],"the destination has to be a shared folder for Synology DS":[null,""],"Click below to test":[null,""],"How to handle Torrent search results.":[null,""],"Search torrents":[null,""],"enable torrent search providers":[null,""],"Send .torrent files to":[null,""],"<b>.torrent</b> files are stored at this location for external software to find and use":[null,""],"URL to your torrent client (e.g. http://localhost:8000/)":[null,""],"Torrent RPC URL":[null,""],"the path without leading and trailing slashes (e.g. transmission)":[null,""],"Http Authentication":[null,""],"Verify certificate":[null,""],"disable if you get \"Deluge: Authentication Error\" in your log":[null,""],"verify SSL certificates for HTTPS requests":[null,""],"Add label to torrent":[null,""],"(blank spaces are not allowed)":[null,""],"label plugin must be enabled in Deluge clients":[null,""],"for QBitTorrent 3.3.1 and up":[null,""],"Add label to torrent for anime":[null,""],"for QBitTorrent 3.3.1 and up ":[null,""],"where <span id=\"torrent_client\">the torrent client</span> will save downloaded files (blank for client default)":[null,""],"the destination has to be a shared folder for Synology DS</span>":[null,""],"Minimum seeding time":[null,""],"time in hours":[null,""],"(default:'0' passes blank to client and '-1' passes nothing)":[null,""],"Start torrent paused":[null,""],"add .torrent to client but do <b style=\"font-weight:900\">not</b> start downloading":[null,""],"Allow high bandwidth":[null,""],"use high bandwidth allocation if priority is high":[null,""],"Test Connection":[null,""],"Windows Shares":[null,""],"Defines your existing windows shares so that we can add them to the browse dialog":[null,""],"Share #{number}":[null,""],"Share label":[null,""],"Hostname or IP":[null,""],"Share path":[null,""],"Subtitles Search":[null,""],"Subtitles Plugin":[null,""],"Plugin Settings":[null,""],"Settings that dictate how SickRage handles subtitles search results.":[null,""],"Search Subtitles":[null,""],"Subtitle Languages":[null,""],"Subtitle Directory":[null,""],"the directory where SickRage should store your <i>Subtitles</i> files.":[null,""],"leave empty if you want store subtitle in episode path.":[null,""],"Subtitle Find Frequency":[null,""],"time in hours between scans (default: 1)":[null,""],"Include Specials":[null,""],"include the show's specials when searching for subtitles?":[null,""],"Perfect matches":[null,""],"only download subtitles that match: release group, video codec, audio codec and resolution":[null,""],"if disabled you may get out of sync subtitles":[null,""],"Subtitles History":[null,""],"log downloaded Subtitle on History page?":[null,""],"Subtitles Multi-Language":[null,""],"append language codes to subtitle filenames?":[null,""],"this option is required if you use multiple subtitle languages":[null,""],"Delete unwanted subtitles":[null,""],"enable to delete unwanted subtitle languages bundled with release":[null,""],"Embedded Subtitles":[null,""],"ignore subtitles embedded inside video file?":[null,""],"this will ignore <u>all</u> embedded subtitles for every video file!":[null,""],"Hearing Impaired Subtitles":[null,""],"download hearing impaired style subtitles?":[null,""],"See":[null,""],"for a script arguments description.":[null,""],"Additional scripts separated by <b>|</b>.":[null,""],"Scripts are called after each episode has searched and downloaded subtitles.":[null,""],"For any scripted languages, include the interpreter executable before the script. See the following example":[null,""],"For Windows:":[null,""],"For Linux / OS X:":[null,""],"Subtitle Providers":[null,""],"Check off and drag the plugins into the order you want them to be used.":[null,""],"At least one plugin is required.":[null,""]," Web-scraping plugin":[null,""],"Provider Settings":[null,""],"Set user and password for each provider":[null,""],"User Name":[null,""],"Change Show":[null,""],"Prev Show":[null,""],"Next Show":[null,""],"Jump to Season":[null,""],"Specials":[null,""],"Poster for":[null,""],"Stars":[null,""],"minutes":[null,""],"View other popular {genre} shows on trakt.tv.":[null,""],"View other popular {imdbgenre} shows on IMDB.":[null,""],"Allowed":[null,""],"Preferred":[null,""],"Originally Airs":[null,""],"Show Status":[null,""],"Default EP Status":[null,""],"Location":[null,""],"Missing":[null,""],"Scene Name":[null,""],"Required Words":[null,""],"Ignored Words":[null,""],"Size":[null,""],"Info Language":[null,""],"Subtitles SR Metadata":[null,""],"Season Folders":[null,""],"Paused":[null,""],"Air-by-Date":[null,""],"Sports":[null,""],"DVD Order":[null,""],"Scene Numbering":[null,""],"Select Filtered Episodes":[null,""],"Clear All":[null,""],"Change selected episodes to":[null,""],"Select Columns":[null,""],"NFO":[null,""],"TBN":[null,""],"Episode":[null,""],"Absolute":[null,""],"Scene":[null,""],"Scene Absolute":[null,""],"File Name":[null,""],"Airdate":[null,""],"Download":[null,""],"Change the value here if scene numbering differs from the indexer episode numbering":[null,""],"Change the value here if scene absolute numbering differs from the indexer absolute numbering":[null,""],"Manual Search":[null,""],"Do you want to mark this episode as failed?":[null,""],"The episode release name will be added to the failed history, preventing it to be downloaded again.":[null,""],"Do you want to include the current episode quality in the search?":[null,""],"Choosing No will ignore any releases with the same episode quality as the one currently downloaded/snatched.":[null,""],"Download subtitle":[null,""],"Do you want to re-download the subtitle for this language?":[null,""],"It will overwrite your current subtitle":[null,""],"Format":[null,""],"Advanced":[null,""],"Main Settings":[null,""],"Show Location":[null,""],"Preferred Quality":[null,""],"Default Episode Status":[null,""],"this will set the status for future episodes.":[null,""],"this only applies to episode filenames and the contents of metadata files.":[null,""],"search for subtitles":[null,""],"Use SR Metdata":[null,""],"use SickRage metadata when searching for subtitle, this will override the autodiscovered metadata":[null,""],"pause this show (SickRage will not download episodes)":[null,""],"Format Settings":[null,""],"Air by date":[null,""],"check if the show is released as Show.03.02.2010 rather than Show.S02E03.":[null,""],"in case of an air date conflict between regular and special episodes, the later will be ignored.":[null,""],"check if the show is Anime and episodes are released as Show.265 rather than Show.S02E03":[null,""],"check if the show is a sporting or MMA event released as Show.03.02.2010 rather than Show.S02E03":[null,""],"Season folders":[null,""],"group episodes by season folder (uncheck to store in a single folder)":[null,""],"search by scene numbering (uncheck to search by indexer numbering)":[null,""],"use the DVD order instead of the air order":[null,""],"a \"Force Full Update\" is necessary, and if you have existing episodes you need to sort them manually.":[null,""],"comma-separated <i>e.g. \"word1,word2,word3</i>\"":[null,""],"search results with one or more words from this list will be ignored.":[null,""],"e.g. \"word1,word2,word3\"":[null,""],"search results with no words from this list will be ignored.":[null,""],"Scene Exception":[null,""],"this will affect episode search on NZB and torrent providers.":[null,""],"this list appends to the original show name.":[null,""],"WARNING logs":[null,""],"ERROR logs":[null,""],"There are no events to display.":[null,""],"Limit":[null,""],"Layout":[null,""],"HistoryLayout":[null,""],"Compact":[null,""],"Detailed":[null,""],"Time":[null,""],"Provider":[null,""],"Missing Provider":[null,""],"missing provider":[null,""],"Directory":[null,""],"Show Name (tvshow.nfo)":[null,""],"Indexer":[null,""],"Enter the folder containing the episode":[null,""],"Process Method to be used":[null,""],"Copy":[null,""],"Move":[null,""],"Hard Link":[null,""],"Symbolic Link":[null,""],"Symbolic Link Reversed":[null,""],"Force already Post Processed Dir/Files":[null,""],"Mark Dir/Files as priority download":[null,""],"(Check it to replace the file even if it exists at higher quality)":[null,""],"Delete files and folders":[null,""],"(Check it to delete files and folders like auto processing)":[null,""],"Don't use processing queue":[null,""],"(If checked this will return the result of the process here, but may be slow!)":[null,""],"Mark download as failed":[null,""],"Process":[null,""],"Download subtitles for this show?":[null,""],"use SickRage metadata when searching for subtitle, <br />this will override the autodiscovered metadata":[null,""],"Status for previously aired episodes":[null,""],"Status for all future episodes":[null,""],"Group episodes by season folder?":[null,""],"Is this show an Anime?":[null,""],"Is this show scene numbered?":[null,""],"Save Defaults":[null,""],"Use current values as the defaults":[null,""],"<p>Select your preferred fansub groups from the <b>Available Groups</b> and add them to the <b>Whitelist</b>. Add groups to the <b>Blacklist</b> to ignore them.</p>\n <p>The <b>Whitelist</b> is checked <i>before</i> the <b>Blacklist</b>.</p>\n <p>Groups are shown as <b>Name</b> | <b>Rating</b> | <b>Number of subbed episodes</b>.</p>\n <p>You may also add any fansub group not listed to either list manually.</p>\n <p>When doing this please note that you can only use groups listed on anidb for this anime.\n <br>If a group is not listed on anidb but subbed this anime, please correct anidb's data.</p>":[null,""],"Whitelist":[null,""],"Available Groups":[null,""],"Add to Whitelist":[null,""],"Add to Blacklist":[null,""],"Blacklist":[null,""],"Custom Group":[null,""],"Allowed Quality:":[null,""],"Preferred Quality:":[null,""],"Filter Show Name":[null,""],"Root":[null,""],"All":[null,""],"Clear Filter(s)":[null,""],"Poster":[null,"節目海報"],"Small Poster":[null,""],"Banner":[null,"節目看板"],"Simple":[null,""],"Next Episode":[null,""],"Progress":[null,""],"Direction":[null,""],"Ascending":[null,""],"Descending":[null,""],"Poster Size":[null,""],"Continuing":[null,""],"Ended":[null,""],"Total":[null,""],"Invalid date":[null,""],"No Network":[null,""],"Next Ep":[null,""],"Prev Ep":[null,""],"Show":[null,""],"Downloads":[null,""],"Active":[null,""],"loading":[null,""],"<p><b><u>Preferred</u></b> qualities will replace those in <b><u>allowed</u></b>, even if they are lower.</p>":[null,""],"New":[null,""],"Set as Default":[null,""],"Remember me":[null,""],"Edit Selected":[null,""],"Subtitle":[null,""],"Default Ep Status":[null,""],"Update":[null,""],"Rescan":[null,""],"Rename":[null,""],"Search Subtitle":[null,""],"Force Metadata Regen":[null,""],"Snatched (Allowed)":[null,""],"Jump to Show":[null,""],"Force Backlog":[null,""],"Manage episodes with status":[null,""],"Manage":[null,""],"None of your episodes have status":[null,""],"Shows containing":[null,""],"episodes":[null,""],"Set checked shows/episodes to":[null,""],"Go":[null,""],"Select all":[null,""],"Clear all":[null,""],"Release":[null,""],"Backlog Search":[null,""],"Not in progress":[null,""],"In Progress":[null,""],"Daily Search":[null,""],"Find Propers Search":[null,""],"Propers search disabled":[null,""],"Subtitle Search":[null,""],"Subtitle search disabled":[null,""],"Search Queue":[null,""],"pending items":[null,""],"Daily":[null,""],"Manual":[null,""],"Changing any settings marked with (<span class=\"separator\">*</span>) will force a refresh of the selected shows.":[null,""],"Selected Shows":[null,""],"Root Directories":[null,""],"Current":[null,""],"Keep":[null,""],"Custom":[null,""],"Group episodes by season folder (set to \"No\" to store in a single folder).":[null,""],"Pause these shows (SickRage will not download episodes).":[null,""],"This will set the status for future episodes.":[null,""],"Search by scene numbering (set to \"No\" to search by indexer numbering).":[null,""],"Set if these shows are Anime and episodes are released as Show.265 rather than Show.S02E03":[null,""],"Set if these shows are sporting or MMA events released as Show.03.02.2010 rather than Show.S02E03.":[null,""],"In case of an air date conflict between regular and special episodes, the later will be ignored.":[null,""],"Set if these shows are released as Show.03.02.2010 rather than Show.S02E03.":[null,""],"Search for subtitles.":[null,""],"All of your episodes have {subsLanguage} subtitles.":[null,""],"Manage episodes without":[null,""],"Episodes without {subsLanguage} subtitles.":[null,""],"Episodes without {subtitleLanguage} (undefined) subtitles.":[null,""],"Download missed subtitles for selected episodes":[null,""],"Performing Restart":[null,""],"Waiting for SickRage to shut down":[null,""],"Waiting for SickRage to start again":[null,""],"Loading the default page":[null,""],"Error: The restart has timed out, perhaps something prevented SickRage from starting again?":[null,""],"Key":[null,""],"Missed":[null,""],"Today":[null,""],"Soon":[null,""],"Later":[null,""],"Subscribe":[null,""],"Date":[null,""],"View Paused":[null,""],"Hidden":[null,""],"Shown":[null,""],"Calendar":[null,"行事曆"],"List":[null,"清單"],"Ends":[null,""],"Next Ep Name":[null,""],"Run time":[null,""],"Indexers":[null,""],"No shows for this day":[null,""],"Airs":[null,""],"Plot":[null,""],"Show Update":[null,""],"Version Check":[null,""],"Proper Finder":[null,""],"Post Process":[null,""],"Subtitles Finder":[null,""],"Scheduler":[null,""],"Alive":[null,""],"Start Time":[null,""],"Cycle Time":[null,""],"Next Run":[null,""],"Last Run":[null,""],"Silent":[null,""],"True":[null,""],"N/A":[null,""],"Show id":[null,""],"Show name":[null,""],"Priority":[null,""],"Added":[null,""],"Queue type":[null,""],"LOW":[null,""],"NORMAL":[null,""],"HIGH":[null,""],"Disk Space":[null,""],"Free space":[null,""],"TV Download Directory":[null,""],"Media Root Directories":[null,""],"Preview of the proposed name changes":[null,""],"All Seasons":[null,""],"select all":[null,""],"Rename Selected":[null,""],"Cancel Rename":[null,""],"Old Location":[null,""],"New Location":[null,""],"Trakt API did not return any results, please check your config.":[null,""],"votes":[null,""],"Remove Show":[null,""],"Level":[null,""],"Filter":[null,""],"All non-absolute folder locations are relative to ":[null,""],"Manual Post-Processing":[null,""],"Episode Status Management":[null,""],"Update PLEX":[null,""],"Update KODI":[null,""],"Update Emby":[null,""],"Manage Torrents":[null,"Torrent管理"],"Missed Subtitle Management":[null,""],"Help & Info":[null,""],"Backup & Restore":[null,""],"Tools":[null,""],"Support SickRage":[null,""],"View Errors":[null,""],"View Warnings":[null,""],"View Log":[null,""],"Check For Updates":[null,""],"Restart":[null,""],"Shutdown":[null,""],"Logout":[null,""],"Server Status":[null,""],"View overview of snatched episodes":[null,""],"Episodes Downloaded":[null,""],"Memory used":[null,""],"Load time":[null,""],"Branch":[null,""],"Now":[null,""]}}}} \ No newline at end of file diff --git a/locale/zh_TW/LC_MESSAGES/messages.mo b/locale/zh_TW/LC_MESSAGES/messages.mo index 44d556e5456b84fbb99f18a8e320ee5375fb1879..f3beec52622337ac5e512a3b5fbb430a9aba2d57 100644 Binary files a/locale/zh_TW/LC_MESSAGES/messages.mo and b/locale/zh_TW/LC_MESSAGES/messages.mo differ diff --git a/locale/zh_TW/LC_MESSAGES/messages.po b/locale/zh_TW/LC_MESSAGES/messages.po index d8e944fcce8a2a04aa278735e459759255c13c0e..0cb4e802d3bb529af0a5f5c7c93b2abdf88acf0c 100644 --- a/locale/zh_TW/LC_MESSAGES/messages.po +++ b/locale/zh_TW/LC_MESSAGES/messages.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: sickrage\n" "Report-Msgid-Bugs-To: miigotu@gmail.com\n" -"POT-Creation-Date: 2017-03-25 09:28-0700\n" -"PO-Revision-Date: 2017-03-25 12:29-0400\n" +"POT-Creation-Date: 2017-03-28 09:10-0700\n" +"PO-Revision-Date: 2017-03-28 12:11-0400\n" "Last-Translator: miigotu <miigotu@gmail.com>\n" "Language-Team: Chinese Traditional\n" "MIME-Version: 1.0\n" @@ -90,7 +90,7 @@ msgid "Biography" msgstr "" #: gui/slick/views/config_general.mako:78 gui/slick/views/layouts/main.mako:145 -#: sickbeard/__init__.py:79 sickbeard/webserve.py:3807 +#: sickbeard/__init__.py:79 sickbeard/webserve.py:3778 msgid "History" msgstr "紀錄" @@ -103,7 +103,7 @@ msgid "Western" msgstr "" #: gui/slick/views/config_general.mako:79 gui/slick/views/layouts/main.mako:221 -#: sickbeard/__init__.py:80 sickbeard/webserve.py:2385 +#: sickbeard/__init__.py:80 sickbeard/webserve.py:2384 msgid "News" msgstr "最新消息" @@ -238,6 +238,34 @@ msgstr "忽略" msgid "Subtitled" msgstr "字幕" +#: sickbeard/helpers.py:1887 +msgid "For best results please set the Download Station alias as" +msgstr "" + +#: sickbeard/helpers.py:1888 +msgid "You can check this setting in the Synology DSM" +msgstr "" + +#: sickbeard/helpers.py:1888 sickbeard/helpers.py:1890 +msgid "Control Panel" +msgstr "" + +#: sickbeard/helpers.py:1888 +msgid "Application Portal" +msgstr "" + +#: sickbeard/helpers.py:1889 +msgid "Make sure you allow DSM to be embedded with iFrames too in" +msgstr "" + +#: sickbeard/helpers.py:1890 +msgid "DSM Settings" +msgstr "" + +#: sickbeard/helpers.py:1890 +msgid "Security" +msgstr "" + #: sickbeard/logger.py:474 msgid "<No Filter>" msgstr "" @@ -308,15 +336,15 @@ msgstr "" msgid "Event" msgstr "" -#: sickbeard/logger.py:491 sickbeard/webserve.py:1339 sickbeard/webserve.py:1342 -#: sickbeard/webserve.py:1520 sickbeard/webserve.py:1529 sickbeard/webserve.py:1717 -#: sickbeard/webserve.py:1728 sickbeard/webserve.py:1751 sickbeard/webserve.py:1764 -#: sickbeard/webserve.py:1769 sickbeard/webserve.py:1785 sickbeard/webserve.py:1790 -#: sickbeard/webserve.py:1854 sickbeard/webserve.py:1857 sickbeard/webserve.py:1863 -#: sickbeard/webserve.py:1866 sickbeard/webserve.py:1873 sickbeard/webserve.py:1876 -#: sickbeard/webserve.py:1899 sickbeard/webserve.py:1997 sickbeard/webserve.py:2002 -#: sickbeard/webserve.py:2007 sickbeard/webserve.py:2036 sickbeard/webserve.py:2040 -#: sickbeard/webserve.py:2045 +#: sickbeard/logger.py:491 sickbeard/webserve.py:1338 sickbeard/webserve.py:1341 +#: sickbeard/webserve.py:1519 sickbeard/webserve.py:1528 sickbeard/webserve.py:1716 +#: sickbeard/webserve.py:1727 sickbeard/webserve.py:1750 sickbeard/webserve.py:1763 +#: sickbeard/webserve.py:1768 sickbeard/webserve.py:1784 sickbeard/webserve.py:1789 +#: sickbeard/webserve.py:1853 sickbeard/webserve.py:1856 sickbeard/webserve.py:1862 +#: sickbeard/webserve.py:1865 sickbeard/webserve.py:1872 sickbeard/webserve.py:1875 +#: sickbeard/webserve.py:1898 sickbeard/webserve.py:1996 sickbeard/webserve.py:2001 +#: sickbeard/webserve.py:2006 sickbeard/webserve.py:2035 sickbeard/webserve.py:2039 +#: sickbeard/webserve.py:2044 msgid "Error" msgstr "" @@ -333,6 +361,7 @@ msgstr "" msgid "Main" msgstr "" +#: gui/slick/js/ajaxEpSearch.js:146 gui/slick/js/ajaxEpSearch.js:147 #: gui/slick/views/inc_home_showList.mako:27 sickbeard/show_queue.py:298 msgid "Loading" msgstr "" @@ -372,867 +401,835 @@ msgstr "" msgid "No update needed" msgstr "" -#: sickbeard/webserve.py:170 +#: sickbeard/webserve.py:171 msgid "Mako Error" msgstr "" -#: sickbeard/webserve.py:195 +#: sickbeard/webserve.py:196 msgid "Oops" msgstr "哎呀" -#: sickbeard/webserve.py:197 +#: sickbeard/webserve.py:198 msgid "Wrong API key used" msgstr "" -#: gui/slick/views/login.mako:34 sickbeard/webserve.py:302 +#: gui/slick/views/login.mako:34 sickbeard/webserve.py:303 msgid "Login" msgstr "登入" -#: sickbeard/webserve.py:406 +#: sickbeard/webserve.py:392 msgid "API Key not generated" msgstr "API密鑰未生成" -#: sickbeard/webserve.py:409 +#: sickbeard/webserve.py:395 msgid "API Builder" msgstr "API 產生器" #: gui/slick/views/config_general.mako:77 gui/slick/views/layouts/main.mako:141 -#: sickbeard/webserve.py:512 +#: sickbeard/webserve.py:498 msgid "Schedule" msgstr "任務安排" -#: sickbeard/webserve.py:610 +#: sickbeard/webserve.py:609 msgid "Test 1" msgstr "" -#: sickbeard/webserve.py:610 +#: sickbeard/webserve.py:609 msgid "This is test number 1" msgstr "" -#: sickbeard/webserve.py:611 +#: sickbeard/webserve.py:610 msgid "Test 2" msgstr "" -#: sickbeard/webserve.py:611 +#: sickbeard/webserve.py:610 msgid "This is test number 2" msgstr "" -#: sickbeard/webserve.py:634 +#: sickbeard/webserve.py:633 msgid "You're using the {branch} branch. Please use 'master' unless specifically asked" msgstr "" -#: sickbeard/webserve.py:698 sickbeard/webserve.py:703 +#: sickbeard/webserve.py:697 sickbeard/webserve.py:702 msgid "Invalid show parameters" msgstr "" -#: sickbeard/webserve.py:710 +#: sickbeard/webserve.py:709 msgid "Invalid parameters" msgstr "" -#: sickbeard/webserve.py:713 sickbeard/webserve.py:1899 +#: sickbeard/webserve.py:712 sickbeard/webserve.py:1898 msgid "Episode couldn't be retrieved" msgstr "" -#: sickbeard/webserve.py:759 sickbeard/webserve.py:1268 sickbeard/webserve.py:1297 +#: sickbeard/webserve.py:758 sickbeard/webserve.py:1267 sickbeard/webserve.py:1296 msgid "Home" msgstr "首頁" -#: gui/slick/views/layouts/main.mako:127 sickbeard/webserve.py:759 +#: gui/slick/views/layouts/main.mako:127 sickbeard/webserve.py:758 msgid "Show List" msgstr "節目清單" -#: sickbeard/webserve.py:807 +#: sickbeard/webserve.py:806 msgid "Error: Unsupported Request. Send jsonp request with 'callback' variable in the query string." msgstr "" -#: sickbeard/webserve.py:851 +#: sickbeard/webserve.py:850 msgid "Success. Connected and authenticated" msgstr "" -#: sickbeard/webserve.py:853 +#: sickbeard/webserve.py:852 msgid "Authentication failed. SABnzbd expects" msgstr "" -#: sickbeard/webserve.py:853 +#: sickbeard/webserve.py:852 msgid "as authentication method" msgstr "" -#: sickbeard/webserve.py:855 +#: sickbeard/webserve.py:854 msgid "Unable to connect to host" msgstr "" -#: sickbeard/webserve.py:876 +#: sickbeard/webserve.py:875 msgid "SMS sent successfully" msgstr "" -#: sickbeard/webserve.py:878 +#: sickbeard/webserve.py:877 msgid "Problem sending SMS: {message}" msgstr "" -#: sickbeard/webserve.py:885 +#: sickbeard/webserve.py:884 msgid "Telegram notification succeeded. Check your Telegram clients to make sure it worked" msgstr "" -#: sickbeard/webserve.py:887 +#: sickbeard/webserve.py:886 msgid "Error sending Telegram notification: {message}" msgstr "" -#: sickbeard/webserve.py:894 +#: sickbeard/webserve.py:893 msgid "join notification succeeded. Check your join clients to make sure it worked" msgstr "" -#: sickbeard/webserve.py:896 +#: sickbeard/webserve.py:895 msgid "Error sending join notification: {message}" msgstr "" -#: sickbeard/webserve.py:906 +#: sickbeard/webserve.py:905 msgid " with password" msgstr "" -#: sickbeard/webserve.py:908 +#: sickbeard/webserve.py:907 msgid "Registered and Tested growl successfully {growl_host}" msgstr "" -#: sickbeard/webserve.py:910 +#: sickbeard/webserve.py:909 msgid "Registration and Testing of growl failed {growl_host}" msgstr "" -#: sickbeard/webserve.py:917 +#: sickbeard/webserve.py:916 msgid "Test prowl notice sent successfully" msgstr "" -#: sickbeard/webserve.py:919 +#: sickbeard/webserve.py:918 msgid "Test prowl notice failed" msgstr "" -#: sickbeard/webserve.py:926 +#: sickbeard/webserve.py:925 msgid "Boxcar2 notification succeeded. Check your Boxcar2 clients to make sure it worked" msgstr "" -#: sickbeard/webserve.py:928 +#: sickbeard/webserve.py:927 msgid "Error sending Boxcar2 notification" msgstr "" -#: sickbeard/webserve.py:935 +#: sickbeard/webserve.py:934 msgid "Pushover notification succeeded. Check your Pushover clients to make sure it worked" msgstr "" -#: sickbeard/webserve.py:937 +#: sickbeard/webserve.py:936 msgid "Error sending Pushover notification" msgstr "" -#: sickbeard/webserve.py:949 +#: sickbeard/webserve.py:948 msgid "Key verification successful" msgstr "" -#: sickbeard/webserve.py:951 +#: sickbeard/webserve.py:950 msgid "Unable to verify key" msgstr "" -#: sickbeard/webserve.py:958 +#: sickbeard/webserve.py:957 msgid "Tweet successful, check your twitter to make sure it worked" msgstr "" -#: sickbeard/webserve.py:960 +#: sickbeard/webserve.py:959 msgid "Error sending tweet" msgstr "" -#: sickbeard/webserve.py:965 +#: sickbeard/webserve.py:964 msgid "Please enter a valid account sid" msgstr "" -#: sickbeard/webserve.py:968 +#: sickbeard/webserve.py:967 msgid "Please enter a valid auth token" msgstr "" -#: sickbeard/webserve.py:971 +#: sickbeard/webserve.py:970 msgid "Please enter a valid phone sid" msgstr "" -#: sickbeard/webserve.py:974 +#: sickbeard/webserve.py:973 msgid "Please format the phone number as \"+1-###-###-####\"" msgstr "" -#: sickbeard/webserve.py:978 +#: sickbeard/webserve.py:977 msgid "Authorization successful and number ownership verified" msgstr "" -#: sickbeard/webserve.py:980 +#: sickbeard/webserve.py:979 msgid "Error sending sms" msgstr "" -#: sickbeard/webserve.py:986 +#: sickbeard/webserve.py:985 msgid "Slack message successful" msgstr "" -#: sickbeard/webserve.py:988 +#: sickbeard/webserve.py:987 msgid "Slack message failed" msgstr "" -#: sickbeard/webserve.py:994 +#: sickbeard/webserve.py:993 msgid "Discord message successful" msgstr "" -#: sickbeard/webserve.py:996 +#: sickbeard/webserve.py:995 msgid "Discord message failed" msgstr "" -#: sickbeard/webserve.py:1006 +#: sickbeard/webserve.py:1005 msgid "Test KODI notice sent successfully to {kodi_host}" msgstr "" -#: sickbeard/webserve.py:1008 +#: sickbeard/webserve.py:1007 msgid "Test KODI notice failed to {kodi_host}" msgstr "" -#: sickbeard/webserve.py:1023 +#: sickbeard/webserve.py:1022 msgid "Successful test notice sent to Plex Home Theater ... {plex_clients}" msgstr "" -#: sickbeard/webserve.py:1025 +#: sickbeard/webserve.py:1024 msgid "Test failed for Plex Home Theater ... {plex_clients}" msgstr "" -#: sickbeard/webserve.py:1028 +#: sickbeard/webserve.py:1027 msgid "Tested Plex Home Theater(s)" msgstr "" -#: sickbeard/webserve.py:1042 +#: sickbeard/webserve.py:1041 msgid "Successful test of Plex Media Server(s) ... {plex_servers}" msgstr "" -#: sickbeard/webserve.py:1044 +#: sickbeard/webserve.py:1043 msgid "Test failed, No Plex Media Server host specified" msgstr "" -#: sickbeard/webserve.py:1046 +#: sickbeard/webserve.py:1045 msgid "Test failed for Plex Media Server(s) ... {plex_servers}" msgstr "" -#: sickbeard/webserve.py:1049 +#: sickbeard/webserve.py:1048 msgid "Tested Plex Media Server host(s)" msgstr "" -#: sickbeard/webserve.py:1057 +#: sickbeard/webserve.py:1056 msgid "Tried sending desktop notification via libnotify" msgstr "" -#: sickbeard/webserve.py:1066 +#: sickbeard/webserve.py:1065 msgid "Test notice sent successfully to {emby_host}" msgstr "" -#: sickbeard/webserve.py:1068 +#: sickbeard/webserve.py:1067 msgid "Test notice failed to {emby_host}" msgstr "" -#: sickbeard/webserve.py:1076 +#: sickbeard/webserve.py:1075 msgid "Successfully started the scan update" msgstr "" -#: sickbeard/webserve.py:1078 +#: sickbeard/webserve.py:1077 msgid "Test failed to start the scan update" msgstr "" -#: sickbeard/webserve.py:1097 +#: sickbeard/webserve.py:1096 msgid "Test notice sent successfully to {nmj2_host}" msgstr "" -#: sickbeard/webserve.py:1099 +#: sickbeard/webserve.py:1098 msgid "Test notice failed to {nmj2_host}" msgstr "" -#: sickbeard/webserve.py:1119 +#: sickbeard/webserve.py:1118 msgid "Trakt Authorized" msgstr "" -#: sickbeard/webserve.py:1120 +#: sickbeard/webserve.py:1119 msgid "Trakt Not Authorized!" msgstr "" -#: sickbeard/webserve.py:1184 +#: sickbeard/webserve.py:1183 msgid "Test email sent successfully! Check inbox." msgstr "" -#: sickbeard/webserve.py:1186 +#: sickbeard/webserve.py:1185 msgid "ERROR: {last_error}" msgstr "" -#: sickbeard/webserve.py:1193 +#: sickbeard/webserve.py:1192 msgid "Test NMA notice sent successfully" msgstr "" -#: sickbeard/webserve.py:1195 +#: sickbeard/webserve.py:1194 msgid "Test NMA notice failed" msgstr "" -#: sickbeard/webserve.py:1202 +#: sickbeard/webserve.py:1201 msgid "Pushalot notification succeeded. Check your Pushalot clients to make sure it worked" msgstr "" -#: sickbeard/webserve.py:1204 +#: sickbeard/webserve.py:1203 msgid "Error sending Pushalot notification" msgstr "" -#: sickbeard/webserve.py:1211 +#: sickbeard/webserve.py:1210 msgid "Pushbullet notification succeeded. Check your device to make sure it worked" msgstr "" -#: sickbeard/webserve.py:1213 sickbeard/webserve.py:1223 sickbeard/webserve.py:1232 +#: sickbeard/webserve.py:1212 sickbeard/webserve.py:1222 sickbeard/webserve.py:1231 msgid "Error sending Pushbullet notification" msgstr "" #: gui/slick/views/displayShow.mako:436 gui/slick/views/inc_home_showList.mako:174 -#: gui/slick/views/manage.mako:49 sickbeard/webserve.py:1249 +#: gui/slick/views/manage.mako:49 sickbeard/webserve.py:1248 msgid "Status" msgstr "狀態" -#: sickbeard/webserve.py:1268 sickbeard/webserve.py:1297 +#: sickbeard/webserve.py:1267 sickbeard/webserve.py:1296 msgid "Restarting SickRage" msgstr "重新啟動 SickRage" -#: sickbeard/webserve.py:1300 +#: sickbeard/webserve.py:1299 msgid "Update Failed" msgstr "" -#: sickbeard/webserve.py:1301 +#: sickbeard/webserve.py:1300 msgid "Update wasn't successful, not restarting. Check your log for more information." msgstr "" -#: sickbeard/webserve.py:1308 +#: sickbeard/webserve.py:1307 msgid "Checking out branch" msgstr "" -#: sickbeard/webserve.py:1311 +#: sickbeard/webserve.py:1310 msgid "Already on branch" msgstr "" -#: sickbeard/webserve.py:1339 +#: sickbeard/webserve.py:1338 msgid "Invalid show ID: {show}" msgstr "" -#: sickbeard/webserve.py:1342 sickbeard/webserve.py:1871 sickbeard/webserve.py:2002 -#: sickbeard/webserve.py:2040 +#: sickbeard/webserve.py:1341 sickbeard/webserve.py:1870 sickbeard/webserve.py:2001 +#: sickbeard/webserve.py:2039 msgid "Show not in show list" msgstr "" #: gui/slick/views/inc_rootDirs.mako:31 gui/slick/views/manage.mako:38 -#: gui/slick/views/manage_massEdit.mako:74 sickbeard/webserve.py:1358 -#: sickbeard/webserve.py:2027 +#: gui/slick/views/manage_massEdit.mako:74 sickbeard/webserve.py:1357 +#: sickbeard/webserve.py:2026 msgid "Edit" msgstr "編輯" -#: sickbeard/webserve.py:1368 +#: sickbeard/webserve.py:1367 msgid "This show is in the process of being downloaded - the info below is incomplete." msgstr "" -#: sickbeard/webserve.py:1371 +#: sickbeard/webserve.py:1370 msgid "The information on this page is in the process of being updated." msgstr "" -#: sickbeard/webserve.py:1374 +#: sickbeard/webserve.py:1373 msgid "The episodes below are currently being refreshed from disk" msgstr "" -#: sickbeard/webserve.py:1377 +#: sickbeard/webserve.py:1376 msgid "Currently downloading subtitles for this show" msgstr "" -#: sickbeard/webserve.py:1380 +#: sickbeard/webserve.py:1379 msgid "This show is queued to be refreshed." msgstr "" -#: sickbeard/webserve.py:1383 +#: sickbeard/webserve.py:1382 msgid "This show is queued and awaiting an update." msgstr "" -#: sickbeard/webserve.py:1386 +#: sickbeard/webserve.py:1385 msgid "This show is queued and awaiting subtitles download." msgstr "" -#: gui/slick/js/core.js:4081 sickbeard/webserve.py:1391 +#: gui/slick/js/core.js:4081 sickbeard/webserve.py:1390 msgid "Resume" msgstr "繼續" #: gui/slick/js/core.js:4081 gui/slick/views/viewlogs.mako:12 -#: sickbeard/webserve.py:1393 +#: sickbeard/webserve.py:1392 msgid "Pause" msgstr "暫停" #: gui/slick/views/editShow.mako:345 gui/slick/views/inc_blackwhitelist.mako:40 #: gui/slick/views/inc_blackwhitelist.mako:85 gui/slick/views/manage.mako:58 -#: gui/slick/views/manage_failedDownloads.mako:43 sickbeard/webserve.py:1395 +#: gui/slick/views/manage_failedDownloads.mako:43 sickbeard/webserve.py:1394 msgid "Remove" msgstr "移除" -#: sickbeard/webserve.py:1396 +#: sickbeard/webserve.py:1395 msgid "Re-scan files" msgstr "重新掃描檔案" -#: sickbeard/webserve.py:1397 +#: sickbeard/webserve.py:1396 msgid "Force Full Update" msgstr "強制完整更新" -#: sickbeard/webserve.py:1398 +#: sickbeard/webserve.py:1397 msgid "Update show in KODI" msgstr "" -#: sickbeard/webserve.py:1399 +#: sickbeard/webserve.py:1398 msgid "Update show in Emby" msgstr "" -#: sickbeard/webserve.py:1402 +#: sickbeard/webserve.py:1401 msgid "Hide specials" msgstr "" -#: sickbeard/webserve.py:1404 +#: sickbeard/webserve.py:1403 msgid "Show specials" msgstr "" -#: sickbeard/webserve.py:1406 sickbeard/webserve.py:2030 sickbeard/webserve.py:2031 +#: sickbeard/webserve.py:1405 sickbeard/webserve.py:2029 sickbeard/webserve.py:2030 msgid "Preview Rename" msgstr "預覽重命名" -#: sickbeard/webserve.py:1409 +#: sickbeard/webserve.py:1408 msgid "Download Subtitles" msgstr "下載字幕" -#: sickbeard/webserve.py:1498 +#: sickbeard/webserve.py:1497 msgid "No scene exceptions" msgstr "" -#: sickbeard/webserve.py:1516 sickbeard/webserve.py:1764 sickbeard/webserve.py:1785 +#: sickbeard/webserve.py:1515 sickbeard/webserve.py:1763 sickbeard/webserve.py:1784 msgid "Invalid show ID" msgstr "" -#: sickbeard/webserve.py:1525 sickbeard/webserve.py:1769 sickbeard/webserve.py:1790 +#: sickbeard/webserve.py:1524 sickbeard/webserve.py:1768 sickbeard/webserve.py:1789 msgid "Unable to find the specified show" msgstr "" -#: sickbeard/webserve.py:1550 +#: sickbeard/webserve.py:1549 msgid "Unable to retreive Fansub Groups from AniDB." msgstr "" -#: sickbeard/webserve.py:1559 sickbeard/webserve.py:1561 +#: sickbeard/webserve.py:1558 sickbeard/webserve.py:1560 msgid "Edit Show" msgstr "編輯節目" -#: sickbeard/webserve.py:1637 sickbeard/webserve.py:1671 +#: sickbeard/webserve.py:1636 sickbeard/webserve.py:1670 msgid "Unable to refresh this show: {error}" msgstr "" -#: sickbeard/webserve.py:1663 +#: sickbeard/webserve.py:1662 msgid "New location <tt>{location}</tt> does not exist" msgstr "" -#: sickbeard/webserve.py:1688 +#: sickbeard/webserve.py:1687 msgid "Unable to update show: {error}" msgstr "" -#: sickbeard/webserve.py:1695 +#: sickbeard/webserve.py:1694 msgid "Unable to force an update on scene exceptions of the show." msgstr "" -#: sickbeard/webserve.py:1702 +#: sickbeard/webserve.py:1701 msgid "Unable to force an update on scene numbering of the show." msgstr "" -#: sickbeard/webserve.py:1708 sickbeard/webserve.py:3540 +#: sickbeard/webserve.py:1707 sickbeard/webserve.py:3539 msgid "{num_errors:d} error{plural} while saving changes:" msgstr "" -#: sickbeard/webserve.py:1719 +#: sickbeard/webserve.py:1718 msgid "{show_name} has been {paused_resumed}" msgstr "" -#: sickbeard/webserve.py:1719 +#: sickbeard/webserve.py:1718 msgid "resumed" msgstr "" -#: sickbeard/webserve.py:1719 +#: sickbeard/webserve.py:1718 msgid "paused" msgstr "" -#: sickbeard/webserve.py:1731 +#: sickbeard/webserve.py:1730 msgid "{show_name} has been {deleted_trashed} {was_deleted}" msgstr "" -#: sickbeard/webserve.py:1733 +#: sickbeard/webserve.py:1732 msgid "deleted" msgstr "" -#: sickbeard/webserve.py:1733 +#: sickbeard/webserve.py:1732 msgid "trashed" msgstr "" -#: sickbeard/webserve.py:1734 +#: sickbeard/webserve.py:1733 msgid "(media untouched)" msgstr "" -#: sickbeard/webserve.py:1734 +#: sickbeard/webserve.py:1733 msgid "(with all related media)" msgstr "" -#: sickbeard/webserve.py:1755 +#: sickbeard/webserve.py:1754 msgid "Unable to refresh this show." msgstr "" -#: sickbeard/webserve.py:1775 +#: sickbeard/webserve.py:1774 msgid "Unable to update this show." msgstr "" -#: sickbeard/webserve.py:1814 +#: sickbeard/webserve.py:1813 msgid "Library update command sent to KODI host(s)): {kodi_hosts}" msgstr "" -#: sickbeard/webserve.py:1816 +#: sickbeard/webserve.py:1815 msgid "Unable to contact one or more KODI host(s)): {kodi_hosts}" msgstr "" -#: sickbeard/webserve.py:1825 +#: sickbeard/webserve.py:1824 msgid "Library update command sent to Plex Media Server host: {plex_server}" msgstr "" -#: sickbeard/webserve.py:1828 +#: sickbeard/webserve.py:1827 msgid "Unable to contact Plex Media Server host: {plex_server}" msgstr "" -#: sickbeard/webserve.py:1840 +#: sickbeard/webserve.py:1839 msgid "Library update command sent to Emby host: {emby_host}" msgstr "" -#: sickbeard/webserve.py:1842 +#: sickbeard/webserve.py:1841 msgid "Unable to contact Emby host: {emby_host}" msgstr "" -#: sickbeard/webserve.py:1852 sickbeard/webserve.py:2036 +#: sickbeard/webserve.py:1851 sickbeard/webserve.py:2035 msgid "You must specify a show and at least one episode" msgstr "" -#: sickbeard/webserve.py:1861 +#: sickbeard/webserve.py:1860 msgid "Invalid status" msgstr "" -#: sickbeard/webserve.py:1954 +#: sickbeard/webserve.py:1953 msgid "Backlog was automatically started for the following seasons of <b>{show_name}</b>" msgstr "" #: gui/slick/views/displayShow.mako:74 gui/slick/views/displayShow.mako:79 -#: gui/slick/views/displayShow.mako:404 sickbeard/webserve.py:1961 -#: sickbeard/webserve.py:1980 +#: gui/slick/views/displayShow.mako:404 sickbeard/webserve.py:1960 +#: sickbeard/webserve.py:1979 msgid "Season" msgstr "" -#: sickbeard/webserve.py:1968 +#: sickbeard/webserve.py:1967 msgid "Backlog started" msgstr "" -#: sickbeard/webserve.py:1973 +#: sickbeard/webserve.py:1972 msgid "Retrying Search was automatically started for the following season of <b>{show_name}</b>" msgstr "" -#: sickbeard/webserve.py:1987 +#: sickbeard/webserve.py:1986 msgid "Retry Search started" msgstr "" -#: sickbeard/webserve.py:1997 +#: sickbeard/webserve.py:1996 msgid "You must specify a show" msgstr "" -#: sickbeard/webserve.py:2007 sickbeard/webserve.py:2045 +#: sickbeard/webserve.py:2006 sickbeard/webserve.py:2044 msgid "Can't rename episodes when the show dir is missing." msgstr "" -#: sickbeard/webserve.py:2212 sickbeard/webserve.py:2233 +#: sickbeard/webserve.py:2211 sickbeard/webserve.py:2232 msgid "New subtitles downloaded: {new_subtitle_languages}" msgstr "" -#: sickbeard/webserve.py:2215 sickbeard/webserve.py:2236 +#: sickbeard/webserve.py:2214 sickbeard/webserve.py:2235 msgid "No subtitles downloaded" msgstr "" #: gui/slick/views/config_general.mako:80 gui/slick/views/layouts/main.mako:222 -#: sickbeard/webserve.py:2363 +#: sickbeard/webserve.py:2362 msgid "IRC" msgstr "IRC" -#: sickbeard/webserve.py:2376 +#: sickbeard/webserve.py:2375 msgid "Could not load news from the repo. [Click here for news.md])({news_url})" msgstr "" -#: sickbeard/webserve.py:2383 sickbeard/webserve.py:2401 +#: sickbeard/webserve.py:2382 sickbeard/webserve.py:2400 msgid "The was a problem connecting to github, please refresh and try again" msgstr "" -#: sickbeard/webserve.py:2398 +#: sickbeard/webserve.py:2397 msgid "Could not load changes from the repo. [Click here for CHANGES.md]({changes_url})" msgstr "" -#: gui/slick/views/layouts/main.mako:223 sickbeard/webserve.py:2403 +#: gui/slick/views/layouts/main.mako:223 sickbeard/webserve.py:2402 msgid "Changelog" msgstr "更新日誌" -#: gui/slick/views/layouts/main.mako:190 sickbeard/webserve.py:2413 -#: sickbeard/webserve.py:3855 sickbeard/webserve.py:4341 +#: gui/slick/views/layouts/main.mako:190 sickbeard/webserve.py:2412 +#: sickbeard/webserve.py:3826 sickbeard/webserve.py:4312 msgid "Post Processing" msgstr "檔案後置處理" -#: gui/slick/views/layouts/main.mako:128 sickbeard/webserve.py:2445 +#: gui/slick/views/layouts/main.mako:128 sickbeard/webserve.py:2444 msgid "Add Shows" msgstr "加入節目" -#: sickbeard/webserve.py:2510 +#: sickbeard/webserve.py:2509 msgid "No folders selected." msgstr "" -#: sickbeard/webserve.py:2632 +#: sickbeard/webserve.py:2631 msgid "New Show" msgstr "新節目" -#: sickbeard/webserve.py:2647 +#: sickbeard/webserve.py:2646 msgid "Trending Shows" msgstr "" -#: sickbeard/webserve.py:2649 sickbeard/webserve.py:2772 +#: sickbeard/webserve.py:2648 sickbeard/webserve.py:2771 msgid "Popular Shows" msgstr "熱門節目" -#: sickbeard/webserve.py:2651 sickbeard/webserve.py:2665 +#: sickbeard/webserve.py:2650 sickbeard/webserve.py:2664 msgid "Most Anticipated Shows" msgstr "" -#: sickbeard/webserve.py:2653 +#: sickbeard/webserve.py:2652 msgid "Most Collected Shows" msgstr "" -#: sickbeard/webserve.py:2655 +#: sickbeard/webserve.py:2654 msgid "Most Watched Shows" msgstr "" -#: sickbeard/webserve.py:2657 +#: sickbeard/webserve.py:2656 msgid "Most Played Shows" msgstr "" -#: sickbeard/webserve.py:2659 +#: sickbeard/webserve.py:2658 msgid "Recommended Shows" msgstr "" -#: gui/slick/views/addShows_trendingShows.mako:60 sickbeard/webserve.py:2661 +#: gui/slick/views/addShows_trendingShows.mako:60 sickbeard/webserve.py:2660 msgid "New Shows" msgstr "新節目" -#: gui/slick/views/addShows_trendingShows.mako:61 sickbeard/webserve.py:2663 +#: gui/slick/views/addShows_trendingShows.mako:61 sickbeard/webserve.py:2662 msgid "Season Premieres" msgstr "當季首播" -#: sickbeard/webserve.py:2792 sickbeard/webserve.py:2793 +#: sickbeard/webserve.py:2791 sickbeard/webserve.py:2792 msgid "Existing Show" msgstr "已有的節目資料" -#: sickbeard/webserve.py:2871 +#: sickbeard/webserve.py:2870 msgid "No root directories setup, please go back and add one." msgstr "" -#: sickbeard/webserve.py:2883 sickbeard/webserve.py:3002 +#: sickbeard/webserve.py:2882 sickbeard/webserve.py:3001 msgid "Show added" msgstr "" -#: sickbeard/webserve.py:2883 +#: sickbeard/webserve.py:2882 msgid "Adding the specified show {show_name}" msgstr "" -#: sickbeard/webserve.py:2924 +#: sickbeard/webserve.py:2923 msgid "Missing params, no Indexer ID or folder: {show_to_add} and {root_dir}/{show_path}" msgstr "" -#: sickbeard/webserve.py:2933 +#: sickbeard/webserve.py:2932 msgid "Unknown error. Unable to add show due to problem with show selection." msgstr "" -#: sickbeard/webserve.py:2957 sickbeard/webserve.py:2967 +#: sickbeard/webserve.py:2956 sickbeard/webserve.py:2966 msgid "Unable to add show" msgstr "" -#: sickbeard/webserve.py:2957 +#: sickbeard/webserve.py:2956 msgid "Folder {show_dir} exists already" msgstr "" -#: sickbeard/webserve.py:2968 +#: sickbeard/webserve.py:2967 msgid "Unable to create the folder {show_dir}, can't add the show" msgstr "" -#: sickbeard/webserve.py:3002 +#: sickbeard/webserve.py:3001 msgid "Adding the specified show into {show_dir}" msgstr "" -#: sickbeard/webserve.py:3078 +#: sickbeard/webserve.py:3077 msgid "Shows Added" msgstr "" -#: sickbeard/webserve.py:3079 +#: sickbeard/webserve.py:3078 msgid "Automatically added {num_shows} from their existing metadata files" msgstr "" -#: gui/slick/views/layouts/main.mako:153 sickbeard/webserve.py:3096 +#: gui/slick/views/layouts/main.mako:153 sickbeard/webserve.py:3095 msgid "Mass Update" msgstr "批量更新" -#: sickbeard/webserve.py:3134 sickbeard/webserve.py:3161 sickbeard/webserve.py:3237 -#: sickbeard/webserve.py:3238 +#: sickbeard/webserve.py:3133 sickbeard/webserve.py:3160 sickbeard/webserve.py:3236 +#: sickbeard/webserve.py:3237 msgid "Episode Overview" msgstr "節目總覽" -#: sickbeard/webserve.py:3270 +#: sickbeard/webserve.py:3269 msgid "Missing Subtitles" msgstr "缺少字幕" -#: gui/slick/views/layouts/main.mako:154 sickbeard/webserve.py:3356 -#: sickbeard/webserve.py:3357 +#: gui/slick/views/layouts/main.mako:154 sickbeard/webserve.py:3355 +#: sickbeard/webserve.py:3356 msgid "Backlog Overview" msgstr "擷取搜尋總覽" -#: sickbeard/webserve.py:3481 +#: sickbeard/webserve.py:3480 msgid "Mass Edit" msgstr "批量編輯" -#: sickbeard/webserve.py:3586 +#: sickbeard/webserve.py:3585 msgid "Unable to update show: {excption_format}" msgstr "" -#: sickbeard/webserve.py:3594 +#: sickbeard/webserve.py:3593 msgid "Unable to refresh show {show_name}: {excption_format}" msgstr "" -#: sickbeard/webserve.py:3605 +#: sickbeard/webserve.py:3604 msgid "Errors encountered" msgstr "" -#: gui/slick/views/config_general.mako:261 sickbeard/webserve.py:3611 +#: gui/slick/views/config_general.mako:261 sickbeard/webserve.py:3610 msgid "Updates" msgstr "" -#: sickbeard/webserve.py:3616 +#: sickbeard/webserve.py:3615 msgid "Refreshes" msgstr "" -#: sickbeard/webserve.py:3621 +#: sickbeard/webserve.py:3620 msgid "Renames" msgstr "" #: gui/slick/views/displayShow.mako:260 gui/slick/views/displayShow.mako:435 #: gui/slick/views/editShow.mako:119 gui/slick/views/inc_addShowOptions.mako:20 -#: gui/slick/views/manage_massEdit.mako:262 sickbeard/webserve.py:3626 -#: sickbeard/webserve.py:5244 +#: gui/slick/views/manage_massEdit.mako:262 sickbeard/webserve.py:3625 +#: sickbeard/webserve.py:5215 msgid "Subtitles" msgstr "字幕" -#: sickbeard/webserve.py:3631 +#: sickbeard/webserve.py:3630 msgid "The following actions were queued" msgstr "" -#: sickbeard/webserve.py:3651 -msgid "For best results please set the Download Station alias as" -msgstr "" - -#: sickbeard/webserve.py:3652 -msgid "You can check this setting in the Synology DSM" -msgstr "" - -#: sickbeard/webserve.py:3652 sickbeard/webserve.py:3654 -msgid "Control Panel" -msgstr "" - -#: sickbeard/webserve.py:3652 -msgid "Application Portal" -msgstr "" - -#: sickbeard/webserve.py:3653 -msgid "Make sure you allow DSM to be embedded with iFrames too in" -msgstr "" - -#: sickbeard/webserve.py:3654 -msgid "DSM Settings" -msgstr "" - -#: sickbeard/webserve.py:3654 -msgid "Security" -msgstr "" - -#: gui/slick/views/layouts/main.mako:167 sickbeard/webserve.py:3662 -msgid "Manage Torrents" -msgstr "Torrent管理" - -#: gui/slick/views/layouts/main.mako:170 sickbeard/webserve.py:3683 +#: gui/slick/views/layouts/main.mako:170 sickbeard/webserve.py:3654 msgid "Failed Downloads" msgstr "失敗的下載" -#: gui/slick/views/layouts/main.mako:155 sickbeard/webserve.py:3701 +#: gui/slick/views/layouts/main.mako:155 sickbeard/webserve.py:3672 msgid "Manage Searches" msgstr "搜尋進度管理" -#: sickbeard/webserve.py:3709 +#: sickbeard/webserve.py:3680 msgid "Backlog search started" msgstr "" -#: sickbeard/webserve.py:3719 +#: sickbeard/webserve.py:3690 msgid "Daily search started" msgstr "" -#: sickbeard/webserve.py:3728 +#: sickbeard/webserve.py:3699 msgid "Find propers search started" msgstr "" -#: sickbeard/webserve.py:3737 +#: sickbeard/webserve.py:3708 msgid "Subtitle search started" msgstr "" -#: sickbeard/webserve.py:3801 +#: sickbeard/webserve.py:3772 msgid "Remove Selected" msgstr "" -#: sickbeard/webserve.py:3802 +#: sickbeard/webserve.py:3773 msgid "Clear History" msgstr "清除記錄" -#: sickbeard/webserve.py:3803 +#: sickbeard/webserve.py:3774 msgid "Trim History" msgstr "" -#: sickbeard/webserve.py:3823 +#: sickbeard/webserve.py:3794 msgid "Selected history entries removed" msgstr "" -#: sickbeard/webserve.py:3830 +#: sickbeard/webserve.py:3801 msgid "History cleared" msgstr "" -#: sickbeard/webserve.py:3837 +#: sickbeard/webserve.py:3808 msgid "Removed history entries older than 30 days" msgstr "" -#: gui/slick/views/layouts/main.mako:185 sickbeard/webserve.py:3850 +#: gui/slick/views/layouts/main.mako:185 sickbeard/webserve.py:3821 msgid "General" msgstr "一般設定" -#: sickbeard/webserve.py:3851 sickbeard/webserve.py:4143 +#: sickbeard/webserve.py:3822 sickbeard/webserve.py:4114 msgid "Backup/Restore" msgstr "備份/還原" -#: gui/slick/views/layouts/main.mako:187 sickbeard/webserve.py:3852 -#: sickbeard/webserve.py:4206 +#: gui/slick/views/layouts/main.mako:187 sickbeard/webserve.py:3823 +#: sickbeard/webserve.py:4177 msgid "Search Settings" msgstr "搜尋設定" -#: gui/slick/views/layouts/main.mako:188 sickbeard/webserve.py:3853 -#: sickbeard/webserve.py:4518 +#: gui/slick/views/layouts/main.mako:188 sickbeard/webserve.py:3824 +#: sickbeard/webserve.py:4489 msgid "Search Providers" msgstr "搜尋提供者" -#: gui/slick/views/layouts/main.mako:189 sickbeard/webserve.py:3854 +#: gui/slick/views/layouts/main.mako:189 sickbeard/webserve.py:3825 msgid "Subtitles Settings" msgstr "字幕設定" -#: gui/slick/views/layouts/main.mako:191 sickbeard/webserve.py:3856 -#: sickbeard/webserve.py:4964 +#: gui/slick/views/layouts/main.mako:191 sickbeard/webserve.py:3827 +#: sickbeard/webserve.py:4935 msgid "Notifications" msgstr "訊息通知" @@ -1240,142 +1237,142 @@ msgstr "訊息通知" #: gui/slick/views/home.mako:35 gui/slick/views/inc_addShowOptions.mako:79 #: gui/slick/views/inc_home_showList.mako:179 gui/slick/views/layouts/main.mako:192 #: gui/slick/views/manage.mako:44 gui/slick/views/manage_massEdit.mako:202 -#: sickbeard/webserve.py:3857 sickbeard/webserve.py:5309 +#: sickbeard/webserve.py:3828 sickbeard/webserve.py:5280 msgid "Anime" msgstr "動漫" -#: sickbeard/webserve.py:3895 sickbeard/webserve.py:3896 +#: sickbeard/webserve.py:3866 sickbeard/webserve.py:3867 msgid "SickRage Configuration" msgstr "SickRage 設定" -#: sickbeard/webserve.py:3910 +#: sickbeard/webserve.py:3881 msgid "Config - Shares" msgstr "" -#: sickbeard/webserve.py:3910 +#: sickbeard/webserve.py:3881 msgid "Windows Shares Configuration" msgstr "" -#: sickbeard/webserve.py:3937 +#: sickbeard/webserve.py:3908 msgid "Saved Shares" msgstr "" -#: sickbeard/webserve.py:3937 +#: sickbeard/webserve.py:3908 msgid "Your Windows share settings have been saved" msgstr "" -#: sickbeard/webserve.py:3948 +#: sickbeard/webserve.py:3919 msgid "Config - General" msgstr "設定 - 一般" -#: sickbeard/webserve.py:3948 +#: sickbeard/webserve.py:3919 msgid "General Configuration" msgstr "一般設定" -#: sickbeard/webserve.py:3988 +#: sickbeard/webserve.py:3959 msgid "Saved Defaults" msgstr "" -#: sickbeard/webserve.py:3988 +#: sickbeard/webserve.py:3959 msgid "Your \"add show\" defaults have been set to your current selections." msgstr "" -#: sickbeard/webserve.py:4095 +#: sickbeard/webserve.py:4066 msgid "Unable to create directory {directory}, log directory not changed." msgstr "" -#: sickbeard/webserve.py:4103 +#: sickbeard/webserve.py:4074 msgid "Unable to create directory {directory}, https cert directory not changed." msgstr "" -#: sickbeard/webserve.py:4107 +#: sickbeard/webserve.py:4078 msgid "Unable to create directory {directory}, https key directory not changed." msgstr "" -#: sickbeard/webserve.py:4126 sickbeard/webserve.py:4324 sickbeard/webserve.py:4456 -#: sickbeard/webserve.py:5227 +#: sickbeard/webserve.py:4097 sickbeard/webserve.py:4295 sickbeard/webserve.py:4427 +#: sickbeard/webserve.py:5198 msgid "Error(s) Saving Configuration" msgstr "" -#: sickbeard/webserve.py:4129 sickbeard/webserve.py:4327 sickbeard/webserve.py:4458 -#: sickbeard/webserve.py:4950 sickbeard/webserve.py:5230 sickbeard/webserve.py:5294 -#: sickbeard/webserve.py:5323 +#: sickbeard/webserve.py:4100 sickbeard/webserve.py:4298 sickbeard/webserve.py:4429 +#: sickbeard/webserve.py:4921 sickbeard/webserve.py:5201 sickbeard/webserve.py:5265 +#: sickbeard/webserve.py:5294 msgid "Configuration Saved" msgstr "" -#: sickbeard/webserve.py:4142 +#: sickbeard/webserve.py:4113 msgid "Config - Backup/Restore" msgstr "設定 - 備份/還原" -#: sickbeard/webserve.py:4205 +#: sickbeard/webserve.py:4176 msgid "Config - Episode Search" msgstr "設定 - 影集搜尋" -#: sickbeard/webserve.py:4340 +#: sickbeard/webserve.py:4311 msgid "Config - Post Processing" msgstr "設定 - 抓取後檔案處理" -#: sickbeard/webserve.py:4380 +#: sickbeard/webserve.py:4351 msgid "Unpacking Not Supported, disabling unpack setting" msgstr "" -#: sickbeard/webserve.py:4431 +#: sickbeard/webserve.py:4402 msgid "You tried saving an invalid normal naming config, not saving your naming settings" msgstr "" -#: sickbeard/webserve.py:4439 +#: sickbeard/webserve.py:4410 msgid "You tried saving an invalid anime naming config, not saving your naming settings" msgstr "" -#: sickbeard/webserve.py:4517 +#: sickbeard/webserve.py:4488 msgid "Config - Providers" msgstr "設定 - 影集資訊提供者" -#: sickbeard/webserve.py:4547 +#: sickbeard/webserve.py:4518 msgid "No Provider Name specified" msgstr "" -#: sickbeard/webserve.py:4549 +#: sickbeard/webserve.py:4520 msgid "No Provider Url specified" msgstr "" -#: sickbeard/webserve.py:4551 +#: sickbeard/webserve.py:4522 msgid "No Provider Api key specified" msgstr "" -#: sickbeard/webserve.py:4963 +#: sickbeard/webserve.py:4934 msgid "Config - Notifications" msgstr "設定 - 訊息通知" -#: sickbeard/webserve.py:5243 +#: sickbeard/webserve.py:5214 msgid "Config - Subtitles" msgstr "設定 - 字幕" -#: sickbeard/webserve.py:5308 +#: sickbeard/webserve.py:5279 msgid "Config - Anime" msgstr "設定 - 動漫專用設定" -#: sickbeard/webserve.py:5336 +#: sickbeard/webserve.py:5307 msgid "Clear Errors" msgstr "" -#: sickbeard/webserve.py:5342 +#: sickbeard/webserve.py:5313 msgid "Clear Warnings" msgstr "" -#: sickbeard/webserve.py:5348 +#: sickbeard/webserve.py:5319 msgid "Submit Errors" msgstr "提交錯誤" -#: sickbeard/webserve.py:5363 +#: sickbeard/webserve.py:5334 msgid "Logs & Errors" msgstr "" -#: sickbeard/webserve.py:5388 +#: sickbeard/webserve.py:5359 msgid "Log File" msgstr "記錄檔" -#: sickbeard/webserve.py:5388 +#: sickbeard/webserve.py:5359 msgid "Logs" msgstr "紀錄檔" @@ -1383,30 +1380,166 @@ msgstr "紀錄檔" msgid "This is a test notification from SickRage" msgstr "" -#: gui/slick/js/core.js:481 gui/slick/js/core.js:502 gui/slick/js/core.js:524 -#: gui/slick/js/core.js:548 gui/slick/js/core.js:573 gui/slick/js/core.js:596 -#: gui/slick/js/core.js:625 gui/slick/js/core.js:645 gui/slick/js/core.js:690 -#: gui/slick/js/core.js:769 gui/slick/js/core.js:829 gui/slick/js/core.js:849 -#: gui/slick/js/core.js:879 gui/slick/js/core.js:909 gui/slick/js/core.js:969 -#: gui/slick/js/core.js:1046 gui/slick/js/core.js:1066 gui/slick/js/core.js:1085 +#: gui/slick/js/browser.js:6 +msgid "Choose Directory" +msgstr "" + +#: gui/slick/js/core.js:443 +msgid "Select log file folder location" +msgstr "" + +#: gui/slick/js/core.js:445 +msgid "Select CSS file" +msgstr "" + +#: gui/slick/js/core.js:469 +msgid "Select backup folder to save to" +msgstr "" + +#: gui/slick/js/core.js:470 +msgid "Select backup files to restore" +msgstr "" + +#: gui/slick/js/core.js:479 gui/slick/js/core.js:500 gui/slick/js/core.js:522 +#: gui/slick/js/core.js:546 gui/slick/js/core.js:571 gui/slick/js/core.js:594 +#: gui/slick/js/core.js:623 gui/slick/js/core.js:643 gui/slick/js/core.js:688 +#: gui/slick/js/core.js:767 gui/slick/js/core.js:827 gui/slick/js/core.js:847 +#: gui/slick/js/core.js:877 gui/slick/js/core.js:907 gui/slick/js/core.js:967 +#: gui/slick/js/core.js:1044 gui/slick/js/core.js:1064 gui/slick/js/core.js:1083 msgid "Please fill out the necessary fields above." msgstr "" -#: gui/slick/js/core.js:1328 gui/slick/js/core.js:1378 gui/slick/js/core.js:1427 -#: gui/slick/js/core.js:1493 +#: gui/slick/js/core.js:680 +msgid "<b>Step 1:</b> Confirm Authorization" +msgstr "" + +#: gui/slick/js/core.js:977 +msgid "Check blacklist name; the value needs to be a trakt slug" +msgstr "" + +#: gui/slick/js/core.js:1022 +msgid "You must provide a recipient email address!" +msgstr "" + +#: gui/slick/js/core.js:1107 +msgid "You didn't supply a Pushbullet api key" +msgstr "" + +#: gui/slick/js/core.js:1133 gui/slick/js/core.js:1162 +msgid "Don't forget to save your new pushbullet settings." +msgstr "" + +#: gui/slick/js/core.js:1262 +msgid "Select TV Download Directory" +msgstr "" + +#: gui/slick/js/core.js:1263 +msgid "Select Unpack Directory" +msgstr "" + +#: gui/slick/js/core.js:1326 gui/slick/js/core.js:1376 gui/slick/js/core.js:1425 +#: gui/slick/js/core.js:1491 msgid "This pattern is invalid." msgstr "" -#: gui/slick/js/core.js:1336 gui/slick/js/core.js:1386 gui/slick/js/core.js:1435 -#: gui/slick/js/core.js:1501 +#: gui/slick/js/core.js:1334 gui/slick/js/core.js:1384 gui/slick/js/core.js:1433 +#: gui/slick/js/core.js:1499 msgid "This pattern would be invalid without the folders, using it will force \"Season Folders\" on for all shows." msgstr "" -#: gui/slick/js/core.js:1344 gui/slick/js/core.js:1394 gui/slick/js/core.js:1443 -#: gui/slick/js/core.js:1509 +#: gui/slick/js/core.js:1342 gui/slick/js/core.js:1392 gui/slick/js/core.js:1441 +#: gui/slick/js/core.js:1507 msgid "This pattern is valid." msgstr "" +#: gui/slick/js/core.js:1818 +msgid "Select .nzb black hole/watch location" +msgstr "" + +#: gui/slick/js/core.js:1819 +msgid "Select .torrent black hole/watch location" +msgstr "" + +#: gui/slick/js/core.js:1820 +msgid "Select .torrent download location" +msgstr "" + +#: gui/slick/js/core.js:1900 +msgid "Minimum seeding time is" +msgstr "" + +#: gui/slick/js/core.js:1902 +msgid "URL to your uTorrent client (e.g. http://localhost:8000)" +msgstr "" + +#: gui/slick/js/core.js:1905 +msgid "Stop seeding when inactive for" +msgstr "" + +#: gui/slick/js/core.js:1911 +msgid "URL to your Transmission client (e.g. http://localhost:9091)" +msgstr "" + +#: gui/slick/js/core.js:1921 +msgid "URL to your Deluge client (e.g. http://localhost:8112)" +msgstr "" + +#: gui/slick/js/core.js:1930 +msgid "IP or Hostname of your Deluge Daemon (e.g. scgi://localhost:58846)" +msgstr "" + +#: gui/slick/js/core.js:1937 +msgid "URL to your Synology DS client (e.g. http://localhost:5000)" +msgstr "" + +#: gui/slick/js/core.js:1941 +msgid "URL to your rTorrent client (e.g. scgi://localhost:5000 <br> or https://localhost/rutorrent/plugins/httprpc/action.php)" +msgstr "" + +#: gui/slick/js/core.js:1952 +msgid "URL to your qBittorrent client (e.g. http://localhost:8080)" +msgstr "" + +#: gui/slick/js/core.js:1962 +msgid "URL to your MLDonkey (e.g. http://localhost:4080)" +msgstr "" + +#: gui/slick/js/core.js:1974 +msgid "URL to your putio client (e.g. http://localhost:8080)" +msgstr "" + +#: gui/slick/js/core.js:1975 +msgid "<a herf=\"https://app.put.io/oauth/apps/new\" target=\"_blank\"> Create a new OAuth app for put.io</a>" +msgstr "" + +#: gui/slick/js/core.js:1977 +msgid "Put.io Parent Folder" +msgstr "" + +#: gui/slick/js/core.js:1978 +msgid "Put.io OAuth Token" +msgstr "" + +#: gui/slick/js/core.js:3383 gui/slick/views/displayShow.mako:410 +msgid "Show Episodes" +msgstr "" + +#: gui/slick/js/core.js:3388 gui/slick/views/displayShow.mako:408 +msgid "Hide Episodes" +msgstr "" + +#: gui/slick/js/core.js:3396 +msgid "Select Show Location" +msgstr "" + +#: gui/slick/js/core.js:3460 +msgid "Select Unprocessed Episode Folder" +msgstr "" + +#: gui/slick/js/core.js:3790 +msgid "DELETED" +msgstr "" + #: gui/slick/js/core.js:4082 msgid "Resume updating the log on this page." msgstr "" @@ -1415,6 +1548,26 @@ msgstr "" msgid "Pause updating the log on this page." msgstr "" +#: gui/slick/js/core.js:4323 +msgid "searching {searchingFor}..." +msgstr "" + +#: gui/slick/js/core.js:4334 +msgid "search timed out, try again or try another indexer" +msgstr "" + +#: gui/slick/js/core.js:4503 +msgid "loading folders..." +msgstr "" + +#: gui/slick/js/parsers.js:7 gui/slick/js/parsers.js:8 +#: gui/slick/js/plotTooltip.js:6 gui/slick/js/sceneExceptionsTooltip.js:6 +#: gui/slick/views/inc_home_showList.mako:209 +#: gui/slick/views/inc_home_showList.mako:215 +#: gui/slick/views/inc_home_showList.mako:231 +msgid "Loading..." +msgstr "" + #: gui/slick/views/404.mako:5 msgid "You have reached this page by accident, please check the url." msgstr "一些意料之外的狀況帶你到這裡了(驚),請檢查網址" @@ -5711,14 +5864,6 @@ msgstr "" msgid "Select Columns" msgstr "" -#: gui/slick/views/displayShow.mako:408 -msgid "Hide Episodes" -msgstr "" - -#: gui/slick/views/displayShow.mako:410 -msgid "Show Episodes" -msgstr "" - #: gui/slick/views/displayShow.mako:424 msgid "NFO" msgstr "" @@ -6232,12 +6377,6 @@ msgstr "" msgid "loading" msgstr "" -#: gui/slick/views/inc_home_showList.mako:209 -#: gui/slick/views/inc_home_showList.mako:215 -#: gui/slick/views/inc_home_showList.mako:231 -msgid "Loading..." -msgstr "" - #: gui/slick/views/inc_qualityChooser.mako:31 msgid "<p><b><u>Preferred</u></b> qualities will replace those in <b><u>allowed</u></b>, even if they are lower.</p>" msgstr "" @@ -6775,6 +6914,10 @@ msgstr "" msgid "Update Emby" msgstr "" +#: gui/slick/views/layouts/main.mako:167 +msgid "Manage Torrents" +msgstr "Torrent管理" + #: gui/slick/views/layouts/main.mako:173 msgid "Missed Subtitle Management" msgstr "" diff --git a/sickbeard/webserve.py b/sickbeard/webserve.py index 66489427ef233667540f9ef5bc053aacc26b291c..c46094ce425b8c22ccb7d2e2ce059215b0023bad 100644 --- a/sickbeard/webserve.py +++ b/sickbeard/webserve.py @@ -350,21 +350,6 @@ class KeyHandler(RequestHandler): self.finish({'success': False, 'error': 'Failed returning results'}) -class LocaleFileHandler(StaticFileHandler): - """ Handles serving locale data on /locale/messages.json for js-gettext """ - def initialize(self, path): - """ Alter 'path' to replace {lang_code} with the requested lang (for example: en_US) """ - self.abs_path = ek(os.path.normpath, path.format(lang_code=sickbeard.GUI_LANG)) - super(LocaleFileHandler, self).initialize(self.abs_path) - - def get(self, path='messages.json', include_body=True): - """ Get messages.json of the requested lang """ - if os.path.isfile(os.path.join(self.abs_path, path)): - super(LocaleFileHandler, self).get(path, include_body) - else: - raise HTTPError(404) - - @route('(.*)(/?)') class WebRoot(WebHandler): def __init__(self, *args, **kwargs): @@ -606,6 +591,19 @@ class UI(WebRoot): def __init__(self, *args, **kwargs): super(UI, self).__init__(*args, **kwargs) + def locale_json(self): + """ Get /locale/{lang_code}/LC_MESSAGES/messages.json """ + locale_file = ek(os.path.normpath, '{base}/{loc_dir}/{lang}/LC_MESSAGES/messages.json'.format( + base=sickbeard.PROG_DIR, loc_dir=sickbeard.LOCALE_DIR, lang=sickbeard.GUI_LANG)) + + if os.path.isfile(locale_file): + self.set_header('Content-Type', 'application/json') + with open(locale_file, 'r') as content: + return content.read() + else: + self.set_status(204) # "No Content" + return None + @staticmethod def add_message(): ui.notifications.message(_('Test 1'), _('This is test number 1')) diff --git a/sickbeard/webserveInit.py b/sickbeard/webserveInit.py index e69bb314f7610b5aeb0e5a3728a5135d2cd5c748..996803ebb701541ea74b9800d1c419cc734cffb4 100644 --- a/sickbeard/webserveInit.py +++ b/sickbeard/webserveInit.py @@ -13,7 +13,7 @@ import sickbeard from sickbeard import logger from sickbeard.helpers import create_https_certificates, generateApiKey from sickbeard.webapi import ApiHandler -from sickbeard.webserve import CalendarHandler, KeyHandler, LoginHandler, LogoutHandler, LocaleFileHandler +from sickbeard.webserve import CalendarHandler, KeyHandler, LoginHandler, LogoutHandler from sickrage.helper.encoding import ek @@ -113,10 +113,6 @@ class SRWebServer(threading.Thread): # pylint: disable=too-many-instance-attrib (r'{0}/images/(.*)'.format(self.options['web_root']), StaticFileHandler, {"path": ek(os.path.join, self.options['data_root'], 'images')}), - # locale - (r'{0}/locale/messages\.json'.format(self.options['web_root']), LocaleFileHandler, - {"path": ek(os.path.join, sickbeard.LOCALE_DIR, '{lang_code}/LC_MESSAGES')}), - # cached images (r'{0}/cache/images/(.*)'.format(self.options['web_root']), StaticFileHandler, {"path": ek(os.path.join, sickbeard.CACHE_DIR, 'images')}),